Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fdfc6159 authored by Alex Deucher's avatar Alex Deucher Committed by Dave Airlie
Browse files

drm/radeon/kms: fix DDIA enable on some rs690 systems



DVOOutputControl checks the value of of bios scratch reg 3
on some tables and assumes the encoder is already enabled
if the DFP2_ACTIVE bit is set.  Clear that bit so the table
sets the DDIA enable bit properly.

Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@kernel.org
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent d9ad77eb
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -1507,6 +1507,13 @@ radeon_atom_encoder_dpms(struct drm_encoder *encoder, int mode)
		switch (mode) {
		case DRM_MODE_DPMS_ON:
			args.ucAction = ATOM_ENABLE;
			/* workaround for DVOOutputControl on some RS690 systems */
			if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_DDI) {
				u32 reg = RREG32(RADEON_BIOS_3_SCRATCH);
				WREG32(RADEON_BIOS_3_SCRATCH, reg & ~ATOM_S3_DFP2I_ACTIVE);
				atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
				WREG32(RADEON_BIOS_3_SCRATCH, reg);
			} else
				atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
			if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
				args.ucAction = ATOM_LCD_BLON;