Patch "drm/msm: Fix the a650 hw_apriv check" has been added to the 5.9-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/msm: Fix the a650 hw_apriv check

to the 5.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-msm-fix-the-a650-hw_apriv-check.patch
and it can be found in the queue-5.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit eae518731863aa0d63b56be0f98ffadde0e35bb8
Author: Jordan Crouse <jcrouse@xxxxxxxxxxxxxx>
Date:   Tue Sep 15 10:35:51 2020 -0600

    drm/msm: Fix the a650 hw_apriv check
    
    [ Upstream commit e9ba8d550dd1e28870a0bdc7c11af026c2a94702 ]
    
    Commit 604234f33658 ("drm/msm: Enable expanded apriv support for a650")
    was checking the result of adreno_is_a650() before the gpu revision
    got probed in adreno_gpu_init() so it was always coming across as
    false. Snoop into the revision ID ahead of time to correctly set the
    hw_apriv flag so that it can be used by msm_gpu to properly setup
    global buffers.
    
    Fixes: 604234f33658 ("drm/msm: Enable expanded apriv support for a650")
    Reported-by: Jonathan Marek <jonathan@xxxxxxxx>
    Signed-off-by: Jordan Crouse <jcrouse@xxxxxxxxxxxxxx>
    Tested-by: Jonathan Marek <jonathan@xxxxxxxx>
    Signed-off-by: Rob Clark <robdclark@xxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/msm/adreno/a6xx_gpu.c b/drivers/gpu/drm/msm/adreno/a6xx_gpu.c
index 66a95e22b7b3d..456d729c81c39 100644
--- a/drivers/gpu/drm/msm/adreno/a6xx_gpu.c
+++ b/drivers/gpu/drm/msm/adreno/a6xx_gpu.c
@@ -1048,6 +1048,8 @@ struct msm_gpu *a6xx_gpu_init(struct drm_device *dev)
 {
 	struct msm_drm_private *priv = dev->dev_private;
 	struct platform_device *pdev = priv->gpu_pdev;
+	struct adreno_platform_config *config = pdev->dev.platform_data;
+	const struct adreno_info *info;
 	struct device_node *node;
 	struct a6xx_gpu *a6xx_gpu;
 	struct adreno_gpu *adreno_gpu;
@@ -1064,7 +1066,14 @@ struct msm_gpu *a6xx_gpu_init(struct drm_device *dev)
 	adreno_gpu->registers = NULL;
 	adreno_gpu->reg_offsets = a6xx_register_offsets;
 
-	if (adreno_is_a650(adreno_gpu))
+	/*
+	 * We need to know the platform type before calling into adreno_gpu_init
+	 * so that the hw_apriv flag can be correctly set. Snoop into the info
+	 * and grab the revision number
+	 */
+	info = adreno_info(config->rev);
+
+	if (info && info->revn == 650)
 		adreno_gpu->base.hw_apriv = true;
 
 	ret = adreno_gpu_init(dev, pdev, adreno_gpu, &funcs, 1);



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux