diff options
| author | Dillon Varone <[email protected]> | 2022-03-01 21:15:03 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2022-06-03 20:43:38 +0000 |
| commit | e42ce1366ae806ba2c1f884997703be68df428f4 (patch) | |
| tree | c29bf9dfb81a21611a95266650ec7e777d55af82 /drivers/gpu/drm/amd/display/dc/bios/command_table.c | |
| parent | drm/amd: Add GFX11 modifiers support to AMDGPU (v3) (diff) | |
| download | kernel-e42ce1366ae806ba2c1f884997703be68df428f4.tar.gz kernel-e42ce1366ae806ba2c1f884997703be68df428f4.zip | |
drm/amd/display: Fix USBC link creation
[Description]
Add USBC connector ID to align with new VBIOS parsing.
Add seperate DCN321 link encoder due to different PHY version affecting
DP ALT related registers.
Signed-off-by: Dillon Varone <[email protected]>
Acked-by: Jerry Zuo <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/bios/command_table.c')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/bios/command_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/bios/command_table.c b/drivers/gpu/drm/amd/display/dc/bios/command_table.c index 32efa92422e8..818a529cacc3 100644 --- a/drivers/gpu/drm/amd/display/dc/bios/command_table.c +++ b/drivers/gpu/drm/amd/display/dc/bios/command_table.c @@ -522,8 +522,8 @@ static enum bp_result transmitter_control_v2( */ params.acConfig.ucEncoderSel = 1; - if (CONNECTOR_ID_DISPLAY_PORT == connector_id - || CONNECTOR_ID_USBC == connector_id) + if (CONNECTOR_ID_DISPLAY_PORT == connector_id || + CONNECTOR_ID_USBC == connector_id) /* Bit4: DP connector flag * =0 connector is none-DP connector * =1 connector is DP connector |
