From f349e894e731a3ff86fc6b5317e315ec0efe78cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Sat, 14 Jan 2017 13:01:16 +0200 Subject: [PATCH] UPSTREAM: pcengines/apu2: Remove DDI configuration Assembled SoC part does not have integrated graphics. BUG=none BRANCH=none TEST=none Change-Id: Ie3ca1ab1421f57e4a91fee1a2fc8824c44ab0a69 Signed-off-by: Patrick Georgi Original-Commit-Id: 7747757772f725ed091e5bfe706852a3f868bc5e Original-Change-Id: I5d157063cd850d343df73d448e6904c188a09730 Original-Signed-off-by: Kysti Mlkki Original-Reviewed-on: https://review.coreboot.org/18150 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Martin Roth Reviewed-on: https://chromium-review.googlesource.com/430620 Commit-Ready: Aaron Durbin Tested-by: Aaron Durbin Reviewed-by: Aaron Durbin --- src/mainboard/pcengines/apu2/OemCustomize.c | 23 +-------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/src/mainboard/pcengines/apu2/OemCustomize.c b/src/mainboard/pcengines/apu2/OemCustomize.c index 06a8f3d8af..ea494a492e 100644 --- a/src/mainboard/pcengines/apu2/OemCustomize.c +++ b/src/mainboard/pcengines/apu2/OemCustomize.c @@ -69,32 +69,11 @@ static const PCIe_PORT_DESCRIPTOR PortList [] = { } }; -static const PCIe_DDI_DESCRIPTOR DdiList [] = { - /* DP0 to HDMI0/DP */ - { - 0, - PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 8, 11), - PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux1, Hdp1) - }, - /* DP1 to FCH */ - { - 0, - PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 12, 15), - PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux2, Hdp2) - }, - /* DP2 to HDMI1/DP */ - { - DESCRIPTOR_TERMINATE_LIST, - PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 16, 19), - PCIE_DDI_DATA_INITIALIZER (ConnectorTypeCrt, Aux3, Hdp3) - }, -}; - static const PCIe_COMPLEX_DESCRIPTOR PcieComplex = { .Flags = DESCRIPTOR_TERMINATE_LIST, .SocketId = 0, .PciePortList = PortList, - .DdiLinkList = DdiList + .DdiLinkList = NULL, }; /*---------------------------------------------------------------------------------------*/