summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/bilby/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/amd/bilby/Kconfig')
-rw-r--r--src/mainboard/amd/bilby/Kconfig32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mainboard/amd/bilby/Kconfig b/src/mainboard/amd/bilby/Kconfig
index 9510238944..daa6b6ef54 100644
--- a/src/mainboard/amd/bilby/Kconfig
+++ b/src/mainboard/amd/bilby/Kconfig
@@ -106,4 +106,36 @@ config EFS_SPI_MICRON_FLAG
int
default 0
+choice
+ prompt "DDI-0 connector type"
+ default CONNECT_DP_ON_DDI_0
+
+config CONNECT_HDMI_ON_DDI_0
+ bool "Use HDMI interface"
+
+config CONNECT_DP_ON_DDI_0
+ bool "Use Displayport interface"
+endchoice
+
+config DDI0_CONNECTOR_TYPE
+ int
+ default 0 if CONNECT_DP_ON_DDI_0
+ default 4 if CONNECT_HDMI_ON_DDI_0
+
+choice
+ prompt "DDI-1 connector type"
+ default CONNECT_DP_ON_DDI_1
+
+config CONNECT_HDMI_ON_DDI_1
+ bool "Use HDMI interface"
+
+config CONNECT_DP_ON_DDI_1
+ bool "Use Displayport interface"
+endchoice
+
+config DDI1_CONNECTOR_TYPE
+ int
+ default 0 if CONNECT_DP_ON_DDI_1
+ default 4 if CONNECT_HDMI_ON_DDI_1
+
endif # BOARD_AMD_BILBY