optimize read link bug fixed.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1836 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
bf0ed60514
commit
e089f00ad4
|
@ -187,8 +187,8 @@ static void misc_control_init(struct device *dev)
|
|||
/* This works on an Athlon64 because unimplemented links return 0 */
|
||||
reg = 0x98 + (link * 0x20);
|
||||
link_type = pci_read_config32(f0_dev, reg);
|
||||
if (link_type & LinkConnected) {
|
||||
cmd &= 0xff << (link *8);
|
||||
if ((link_type & 7) == 3) { /* only handle coherent link here please */
|
||||
cmd &= ~(0xff << (link *8));
|
||||
/* FIXME this assumes the device on the other side is an AMD device */
|
||||
cmd |= 0x25 << (link *8);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue