drm/amd/display: change dsc image width cap for dcn32 and dcn321

Set appropriate caps for DCN3.2.x.

Signed-off-by: Dillon Varone <dillon.varone@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Dillon Varone 2022-04-11 10:29:57 -04:00 committed by Alex Deucher
parent da1db031cd
commit 3378aed7e2
2 changed files with 6 additions and 0 deletions

View File

@ -1695,6 +1695,9 @@ static struct display_stream_compressor *dcn32_dsc_create(
}
dsc2_construct(dsc, ctx, inst, &dsc_regs[inst], &dsc_shift, &dsc_mask);
dsc->max_image_width = 6016;
return &dsc->base;
}

View File

@ -1679,6 +1679,9 @@ static struct display_stream_compressor *dcn321_dsc_create(
}
dsc2_construct(dsc, ctx, inst, &dsc_regs[inst], &dsc_shift, &dsc_mask);
dsc->max_image_width = 6016;
return &dsc->base;
}