mainboard/asus/kgpe-d16: Fix I/O link detection
Change-Id: Ibefc9dc2e1e0267389eb8d716408bae6026ce084 Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-on: http://review.coreboot.org/12024 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
parent
4530df431e
commit
48bfcdf006
|
@ -551,7 +551,8 @@ BOOL AMD_CB_ManualBUIDSwapList (u8 node, u8 link, const u8 **List)
|
||||||
{
|
{
|
||||||
/* Force BUID to 0 */
|
/* Force BUID to 0 */
|
||||||
static const u8 swaplist[] = {0, 0, 0xFF, 0, 0xFF};
|
static const u8 swaplist[] = {0, 0, 0xFF, 0, 0xFF};
|
||||||
if ((node == 0) && (link == 1)) { /* BSP SB link */
|
if ((is_fam15h() && (node == 0) && (link == 1)) /* Family 15h BSP SB link */
|
||||||
|
|| (!is_fam15h() && (node == 0) && (link == 3))) { /* Family 10h BSP SB link */
|
||||||
*List = swaplist;
|
*List = swaplist;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue