--- linux/include/linux/pci_ids.h 2005-09-15 10:56:21.000000000 +0200 +++ linux-my/include/linux/pci_ids.h 2005-09-25 15:10:53.000000000 +0200 @@ -2192,6 +2192,7 @@ #define PCI_DEVICE_ID_FARSITE_TE1C 0x1612 #define PCI_VENDOR_ID_SIBYTE 0x166d +#define PCI_DEVICE_ID_BCM1250_PCI 0x0001 #define PCI_DEVICE_ID_BCM1250_HT 0x0002 #define PCI_VENDOR_ID_NETCELL 0x169c --- linux/arch/mips/pci/fixup-sb1250.c 2004-12-18 23:28:20.000000000 +0100 +++ linux-my/arch/mips/pci/fixup-sb1250.c 2005-09-25 15:25:02.000000000 +0200 @@ -20,5 +20,22 @@ { dev->class = PCI_CLASS_BRIDGE_PCI << 8; } + +/* + * Set PCI Trdy timeout to 0xff clock cycles + */ +static void __init quirk_sb1250_pci(struct pci_dev *dev) +{ + u32 pci_timeout; + + pci_read_config_dword(dev, 0x40, &pci_timeout); + pci_timeout|=0xff; + pci_write_config_dword(dev,0x40,pci_timeout); +} + DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SIBYTE, PCI_DEVICE_ID_BCM1250_HT, quirk_sb1250_ht); + +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SIBYTE, PCI_DEVICE_ID_BCM1250_PCI, + quirk_sb1250_pci); +