mb/amd/birman/port_descriptors_*: use DDI_DP_W_TYPEC type for DDI 2..4

DDI 2..4 are the display outputs multiplexed onto the 3 USB type C ports
as DisplayPort alternate function, so use the DDI_DP_W_TYPEC connector
type for those.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I659d62bfb426e3e47214203490c34e9c200beee2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74299
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Held 2023-04-11 15:11:16 +02:00
parent 7c6b0e9862
commit 46a972022b
2 changed files with 8 additions and 8 deletions

View File

@ -63,17 +63,17 @@ static fsp_ddi_descriptor birman_ddi_descriptors[] = {
.hdp_index = DDI_HDP2 .hdp_index = DDI_HDP2
}, },
{ /* DDI2 - DP (type C) */ { /* DDI2 - DP (type C) */
.connector_type = DDI_DP, .connector_type = DDI_DP_W_TYPEC,
.aux_index = DDI_AUX3, .aux_index = DDI_AUX3,
.hdp_index = DDI_HDP3, .hdp_index = DDI_HDP3,
}, },
{ /* DDI3 - DP (type C) */ { /* DDI3 - DP (type C) */
.connector_type = DDI_DP, .connector_type = DDI_DP_W_TYPEC,
.aux_index = DDI_AUX4, .aux_index = DDI_AUX4,
.hdp_index = DDI_HDP4, .hdp_index = DDI_HDP4,
}, },
{ /* DDI4 - unused */ { /* DDI4 - DP (type C) */
.connector_type = DDI_UNUSED_TYPE, .connector_type = DDI_DP_W_TYPEC,
.aux_index = DDI_AUX5, .aux_index = DDI_AUX5,
.hdp_index = DDI_HDP5, .hdp_index = DDI_HDP5,
} }

View File

@ -63,17 +63,17 @@ static fsp_ddi_descriptor birman_ddi_descriptors[] = {
.hdp_index = DDI_HDP2 .hdp_index = DDI_HDP2
}, },
{ /* DDI2 - DP (type C) */ { /* DDI2 - DP (type C) */
.connector_type = DDI_DP, .connector_type = DDI_DP_W_TYPEC,
.aux_index = DDI_AUX3, .aux_index = DDI_AUX3,
.hdp_index = DDI_HDP3, .hdp_index = DDI_HDP3,
}, },
{ /* DDI3 - DP (type C) */ { /* DDI3 - DP (type C) */
.connector_type = DDI_DP, .connector_type = DDI_DP_W_TYPEC,
.aux_index = DDI_AUX4, .aux_index = DDI_AUX4,
.hdp_index = DDI_HDP4, .hdp_index = DDI_HDP4,
}, },
{ /* DDI4 - unused */ { /* DDI4 - DP (type C) */
.connector_type = DDI_UNUSED_TYPE, .connector_type = DDI_DP_W_TYPEC,
.aux_index = DDI_AUX5, .aux_index = DDI_AUX5,
.hdp_index = DDI_HDP5, .hdp_index = DDI_HDP5,
} }