diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2022-03-28 18:05:36 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-03-30 01:18:14 +0000 |
commit | a84c00c9ceee83eb80ce64a8bd449491dd88d964 (patch) | |
tree | c70683cb32dc2c6363355276620cb54570ef7d7f /src/mainboard/amd | |
parent | 621a8d69d9c7d5eb86e409e7cdee665eaf845040 (diff) |
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>
Diffstat (limited to 'src/mainboard/amd')
-rw-r--r-- | src/mainboard/amd/chausie/port_descriptors.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mainboard/amd/chausie/port_descriptors.c b/src/mainboard/amd/chausie/port_descriptors.c index 02e82b8c97..260996114c 100644 --- a/src/mainboard/amd/chausie/port_descriptors.c +++ b/src/mainboard/amd/chausie/port_descriptors.c @@ -48,30 +48,30 @@ static const fsp_dxio_descriptor chausie_czn_dxio_descriptors[] = { }; 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, - .aux_index = DDI_AUX3, - .hdp_index = DDI_HDP3, - }, - { /* DDI3 - DP (type C) */ + { /* DDI2 - DP (type C) */ .connector_type = DDI_DP, .aux_index = DDI_AUX3, .hdp_index = DDI_HDP3, }, - { /* DDI4 - DP (type C) */ + { /* DDI3 - 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, } }; |