Skip to content

Commit

Permalink
drm/msm/adreno: fix a7xx gpu init
Browse files Browse the repository at this point in the history
The gpulist has twice the a6xx gpulist, replace the second one
with the a7xx gpulist.

Solves:
msm_dpu ae01000.display-controller: Unknown GPU revision: 7.3.0.1
msm_dpu ae01000.display-controller: Unknown GPU revision: 67.5.10.1
msm_dpu ae01000.display-controller: Unknown GPU revision: 67.5.20.1

on SM8450, SM8550 & SM8560.

Fixes: 8ed322f ("drm/msm/adreno: Split up giant device table")
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/600939/
Signed-off-by: Rob Clark <robdclark@chromium.org>
  • Loading branch information
superna9999 authored and robclark committed Jun 29, 2024
1 parent add1585 commit 181914b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/msm/adreno/adreno_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static const struct adreno_gpulist *gpulists[] = {
&a4xx_gpulist,
&a5xx_gpulist,
&a6xx_gpulist,
&a6xx_gpulist,
&a7xx_gpulist,
};

static const struct adreno_info *adreno_info(uint32_t chip_id)
Expand Down

0 comments on commit 181914b

Please sign in to comment.