Thee lines in i82801xx_pci.c need to be removed. They cause the
i82801DB to reset. See this thread for more info: http://article.gmane.org/gmane.linux.bios/26791 Signed-off-by: Joseph Smith <joe@smittys.pointclark.net> Acked-by: Corey Osgood <corey.osgood@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2816 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
e4d4ebabbd
commit
3617103cc7
|
@ -34,13 +34,6 @@ static void pci_init(struct device *dev)
|
|||
reg16 |= 0xf900; /* Clear possible errors */
|
||||
pci_write_config16(dev, 0x06, reg16);
|
||||
|
||||
/* i82801er has this commented out, wonder why? */
|
||||
/* System error enable */
|
||||
reg32 = pci_read_config32(dev, 0x04);
|
||||
reg32 |= (1 << 8); /* SERR# Enable */
|
||||
reg32 |= (1 << 6); /* Parity Error Response */
|
||||
pci_write_config32(dev, 0x04, reg32);
|
||||
|
||||
reg16 = pci_read_config16(dev, 0x1e);
|
||||
reg16 |= 0xf800; /* Clear possible errors */
|
||||
pci_write_config16(dev, 0x1e, reg16);
|
||||
|
|
Loading…
Reference in New Issue