Commit 3378aed7 authored by Dillon Varone's avatar Dillon Varone Committed by Alex Deucher
Browse files

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



Set appropriate caps for DCN3.2.x.

Signed-off-by: default avatarDillon Varone <dillon.varone@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent da1db031
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;
}

+3 −0
Original line number Diff line number Diff line
@@ -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;
}