Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/63163 )
Change subject: mb/amd/chausie/port_descriptors: update DDI descriptors ......................................................................
mb/amd/chausie/port_descriptors: update DDI descriptors
Signed-off-by: Nikolai Vyssotski nikolai.vyssotski@amd.corp-partner.google.com Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I31db6c138a21dc22e7aa473f2215ca2c7594326c Reviewed-on: https://review.coreboot.org/c/coreboot/+/63163 Reviewed-by: Raul Rangel rrangel@chromium.org Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/mainboard/amd/chausie/port_descriptors.c 1 file changed, 10 insertions(+), 10 deletions(-)
Approvals: build bot (Jenkins): Verified Raul Rangel: Looks good to me, approved
diff --git a/src/mainboard/amd/chausie/port_descriptors.c b/src/mainboard/amd/chausie/port_descriptors.c index 02e82b8..2609961 100644 --- a/src/mainboard/amd/chausie/port_descriptors.c +++ b/src/mainboard/amd/chausie/port_descriptors.c @@ -48,30 +48,30 @@ };
static const fsp_ddi_descriptor chausie_czn_ddi_descriptors[] = { - { /* DDI0 - DP */ - .connector_type = DDI_DP, + { /* DDI0 - eDP */ + .connector_type = DDI_EDP, .aux_index = DDI_AUX1, .hdp_index = DDI_HDP1 }, - { /* DDI1 - HDMI */ + { /* DDI1 - HDMI - TODO: add runtime HDMI/DP connector card detection */ .connector_type = DDI_HDMI, .aux_index = DDI_AUX2, .hdp_index = DDI_HDP2 }, - { /* DDI2 */ - .connector_type = DDI_UNUSED_TYPE, + { /* DDI2 - DP (type C) */ + .connector_type = DDI_DP, .aux_index = DDI_AUX3, .hdp_index = DDI_HDP3, }, { /* DDI3 - DP (type C) */ .connector_type = DDI_DP, - .aux_index = DDI_AUX3, - .hdp_index = DDI_HDP3, - }, - { /* DDI4 - DP (type C) */ - .connector_type = DDI_DP, .aux_index = DDI_AUX4, .hdp_index = DDI_HDP4, + }, + { /* DDI4 - unused */ + .connector_type = DDI_UNUSED_TYPE, + .aux_index = DDI_AUX5, + .hdp_index = DDI_HDP5, } };