Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/msm/dpu: fix sm8450 CTL configuration

Correct the CTL size on sm8450 platform. This fixes the incorrect merge
of sm8350 support, which unfortunately also touched the SM8450 setup.

Fixes: 0e91bcbb0016 ("drm/msm/dpu: Add SM8350 to hw catalog")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
Patchwork: https://patchwork.freedesktop.org/patch/519671/
Link: https://lore.kernel.org/r/20230123080818.3069266-1-dmitry.baryshkov@linaro.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

+5 -5
+5 -5
drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c
··· 972 972 }, 973 973 { 974 974 .name = "ctl_1", .id = CTL_1, 975 - .base = 0x16000, .len = 0x1e8, 975 + .base = 0x16000, .len = 0x204, 976 976 .features = BIT(DPU_CTL_SPLIT_DISPLAY) | CTL_SC7280_MASK, 977 977 .intr_start = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR2, 10), 978 978 }, 979 979 { 980 980 .name = "ctl_2", .id = CTL_2, 981 - .base = 0x17000, .len = 0x1e8, 981 + .base = 0x17000, .len = 0x204, 982 982 .features = CTL_SC7280_MASK, 983 983 .intr_start = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR2, 11), 984 984 }, 985 985 { 986 986 .name = "ctl_3", .id = CTL_3, 987 - .base = 0x18000, .len = 0x1e8, 987 + .base = 0x18000, .len = 0x204, 988 988 .features = CTL_SC7280_MASK, 989 989 .intr_start = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR2, 12), 990 990 }, 991 991 { 992 992 .name = "ctl_4", .id = CTL_4, 993 - .base = 0x19000, .len = 0x1e8, 993 + .base = 0x19000, .len = 0x204, 994 994 .features = CTL_SC7280_MASK, 995 995 .intr_start = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR2, 13), 996 996 }, 997 997 { 998 998 .name = "ctl_5", .id = CTL_5, 999 - .base = 0x1a000, .len = 0x1e8, 999 + .base = 0x1a000, .len = 0x204, 1000 1000 .features = CTL_SC7280_MASK, 1001 1001 .intr_start = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR2, 23), 1002 1002 },