diff options
author | Dave Frodin <dave.frodin@se-eng.com> | 2013-02-01 08:21:50 -0700 |
---|---|---|
committer | Dave Frodin <dave.frodin@se-eng.com> | 2013-02-01 17:41:10 +0100 |
commit | 2d5c0e6885baff21d345e63c7521a7899f9485ac (patch) | |
tree | 0946811f5a51a98db553afa959bfd80a86da14b3 /src/mainboard | |
parent | c07fb15f17c7da73ec3bb97fe565f7740a879987 (diff) |
AMD/Persimmon: LVDS assignment was made to wrong DPx
The LVDS is on DP0, not DP1.
Change-Id: I724764d0f013e7a10d974a8716e075139982ded2
Signed-off-by: Dave Frodin <dave.frodin@se-eng.com>
Reviewed-on: http://review.coreboot.org/2259
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martin.roth@se-eng.com>
Reviewed-by: Mike Loptien <mike.loptien@se-eng.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/amd/persimmon/PlatformGnbPcie.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/amd/persimmon/PlatformGnbPcie.c b/src/mainboard/amd/persimmon/PlatformGnbPcie.c index 5697d60370..e3cba858ac 100644 --- a/src/mainboard/amd/persimmon/PlatformGnbPcie.c +++ b/src/mainboard/amd/persimmon/PlatformGnbPcie.c @@ -96,14 +96,14 @@ PCIe_DDI_DESCRIPTOR DdiList [] = { 0, //Descriptor flags PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 8, 11), //PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux1, Hdp1) - {ConnectorTypeDP, Aux1, Hdp1} + {ConnectorTypeLvds, Aux1, Hdp1} }, // Initialize Ddi descriptor (DDI interface Lanes 12:15, DdB, ...) { DESCRIPTOR_TERMINATE_LIST, //Descriptor flags !!!IMPORTANT!!! Terminate last element of array PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 12, 15), //PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux2, Hdp2) - {ConnectorTypeLvds, Aux2, Hdp2} + {ConnectorTypeDP, Aux2, Hdp2} } }; |