diff options
| author | Dmitry Baryshkov <[email protected]> | 2023-01-09 23:43:09 +0200 |
|---|---|---|
| committer | Dmitry Baryshkov <[email protected]> | 2023-01-12 21:45:16 +0200 |
| commit | 5dfc1b2e61601f8e15075b45656d6b962ecb3e99 (patch) | |
| tree | f6eb1636f696ed3555c29faecc096dcdf74091ad /drivers/gpu | |
| parent | 7eb75dbd62eb61695cffa31f0aa6311c25681906 (diff) | |
drm/msm/dpu: disable DSC blocks for SM8350
SM8350 has newer version of DSC blocks, which are not supported by the
driver yet. Remove them for now until these blocks are supported by the
driver.
Signed-off-by: Dmitry Baryshkov <[email protected]>
Patchwork: https://patchwork.freedesktop.org/patch/517629/
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Baryshkov <[email protected]>
Diffstat (limited to 'drivers/gpu')
| -rw-r--r-- | drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c index 4ac22ac858bd..b534c6006f34 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c @@ -1525,11 +1525,6 @@ static struct dpu_dsc_cfg sdm845_dsc[] = { DSC_BLK("dsc_3", DSC_3, 0x80c00), }; -static struct dpu_dsc_cfg sm8350_dsc[] = { - DSC_BLK("dsc_0", DSC_0, 0x80000), - DSC_BLK("dsc_1", DSC_1, 0x81000), -}; - /************************************************************* * INTF sub blocks config *************************************************************/ @@ -2339,8 +2334,6 @@ static const struct dpu_mdss_cfg sm8350_dpu_cfg = { .dspp = sm8150_dspp, .pingpong_count = ARRAY_SIZE(sm8350_pp), .pingpong = sm8350_pp, - .dsc_count = ARRAY_SIZE(sm8350_dsc), - .dsc = sm8350_dsc, .merge_3d_count = ARRAY_SIZE(sm8350_merge_3d), .merge_3d = sm8350_merge_3d, .intf_count = ARRAY_SIZE(sm8350_intf), |