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>
This commit is contained in:
parent
c07fb15f17
commit
2d5c0e6885
|
@ -96,14 +96,14 @@ PCIe_DDI_DESCRIPTOR DdiList [] = {
|
||||||
0, //Descriptor flags
|
0, //Descriptor flags
|
||||||
PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 8, 11),
|
PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 8, 11),
|
||||||
//PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux1, Hdp1)
|
//PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux1, Hdp1)
|
||||||
{ConnectorTypeDP, Aux1, Hdp1}
|
{ConnectorTypeLvds, Aux1, Hdp1}
|
||||||
},
|
},
|
||||||
// Initialize Ddi descriptor (DDI interface Lanes 12:15, DdB, ...)
|
// Initialize Ddi descriptor (DDI interface Lanes 12:15, DdB, ...)
|
||||||
{
|
{
|
||||||
DESCRIPTOR_TERMINATE_LIST, //Descriptor flags !!!IMPORTANT!!! Terminate last element of array
|
DESCRIPTOR_TERMINATE_LIST, //Descriptor flags !!!IMPORTANT!!! Terminate last element of array
|
||||||
PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 12, 15),
|
PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 12, 15),
|
||||||
//PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux2, Hdp2)
|
//PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux2, Hdp2)
|
||||||
{ConnectorTypeLvds, Aux2, Hdp2}
|
{ConnectorTypeDP, Aux2, Hdp2}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue