/* * This file is part of the coreboot project. * * Copyright (C) 2007-2009 coresystems GmbH * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "i945.h" #include "pcie_config.c" static int i945_silicon_revision(void) { return pci_read_config8(PCI_DEV(0, 0x00, 0), PCI_CLASS_REVISION); } static void i945m_detect_chipset(void) { u8 reg8; printk_info("\n"); reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe7) & 0x70) >> 4; switch (reg8) { case 1: printk_info("Mobile Intel(R) 82945GM/GME Express"); break; case 2: printk_info("Mobile Intel(R) 82945GMS/GU Express"); break; case 3: printk_info("Mobile Intel(R) 82945PM Express"); break; case 5: printk_info("Intel(R) 82945GT Express"); break; case 6: printk_info("Mobile Intel(R) 82943/82940GML Express"); break; default: printk_info("Unknown (%02x)", reg8); /* Others reserved. */ } printk_info(" Chipset\n"); printk_debug("(G)MCH capable of up to FSB "); reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe3) & 0xe0) >> 5; switch (reg8) { case 2: printk_debug("800 MHz"); /* According to 965 spec */ break; case 3: printk_debug("667 MHz"); break; case 4: printk_debug("533 MHz"); break; default: printk_debug("N/A MHz (%02x)", reg8); } printk_debug("\n"); printk_debug("(G)MCH capable of "); reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe4) & 0x07); switch (reg8) { case 2: printk_debug("up to DDR2-667"); break; case 3: printk_debug("up to DDR2-533"); break; case 4: printk_debug("DDR2-400"); break; default: printk_info("unknown max. RAM clock (%02x).", reg8); /* Others reserved. */ } printk_debug("\n"); } static void i945_detect_chipset(void) { u8 reg8; printk_info("\nIntel(R) "); reg8 = pci_read_config8(PCI_DEV(0, 0x00, 0), 0x8); switch (reg8) { case 0: case 1: printk_info("82945G"); break; case 2: printk_info("82945G/GZ/GC"); break; case 0x80: case 0x81: case 0x82: printk_info("82945P/PL"); break; default: printk_info("Unknown (%02x)", reg8); /* Others unknown. */ } printk_info(" Chipset\n"); printk_debug("(G)MCH capable of "); reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe4) & 0x07); switch (reg8) { case 0: printk_debug("up to DDR2-667"); break; case 3: printk_debug("up to DDR2-533"); break; default: printk_info("unknown max. RAM clock (%02x).", reg8); /* Others reserved. */ } printk_debug("\n"); } static void i945_setup_bars(void) { u8 reg8; /* As of now, we don't have all the A0 workarounds implemented */ if (i945_silicon_revision() == 0) printk_info ("Warning: i945 silicon revision A0 might not work correctly.\n"); /* Setting up Southbridge. In the northbridge code. */ printk_debug("Setting up static southbridge registers..."); pci_write_config32(PCI_DEV(0, 0x1f, 0), RCBA, DEFAULT_RCBA | 1); pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1); pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x44 /* ACPI_CNTL */ , 0x80); /* Enable ACPI BAR */ pci_write_config32(PCI_DEV(0, 0x1f, 0), GPIOBASE, DEFAULT_GPIOBASE | 1); pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x4c /* GC */ , 0x10); /* Enable GPIOs */ setup_ich7_gpios(); printk_debug(" done.\n"); printk_debug("Disabling Watchdog reboot..."); RCBA32(GCS) = (RCBA32(0x3410)) | (1 << 5); /* No reset */ outw((1 << 11), DEFAULT_PMBASE | 0x60 | 0x08); /* halt timer */ printk_debug(" done.\n"); printk_debug("Setting up static northbridge registers..."); /* Set up all hardcoded northbridge BARs */ pci_write_config32(PCI_DEV(0, 0x00, 0), EPBAR, DEFAULT_EPBAR | 1); pci_write_config32(PCI_DEV(0, 0x00, 0), MCHBAR, DEFAULT_MCHBAR | 1); pci_write_config32(PCI_DEV(0, 0x00, 0), PCIEXBAR, DEFAULT_PCIEXBAR | 5); /* 64MB - busses 0-63 */ pci_write_config32(PCI_DEV(0, 0x00, 0), DMIBAR, DEFAULT_DMIBAR | 1); pci_write_config32(PCI_DEV(0, 0x00, 0), X60BAR, DEFAULT_X60BAR | 1); /* Hardware default is 8MB UMA. If someone wants to make this a * CMOS or compile time option, send a patch. * pci_write_config16(PCI_DEV(0, 0x00, 0), GGC, 0x30); */ /* Set C0000-FFFFF to access RAM on both reads and writes */ pci_write_config8(PCI_DEV(0, 0x00, 0), PAM0, 0x30); pci_write_config8(PCI_DEV(0, 0x00, 0), PAM1, 0x33); pci_write_config8(PCI_DEV(0, 0x00, 0), PAM2, 0x33); pci_write_config8(PCI_DEV(0, 0x00, 0), PAM3, 0x33); pci_write_config8(PCI_DEV(0, 0x00, 0), PAM4, 0x33); pci_write_config8(PCI_DEV(0, 0x00, 0), PAM5, 0x33); pci_write_config8(PCI_DEV(0, 0x00, 0), PAM6, 0x33); pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafebabe); printk_debug(" done.\n"); /* Wait for MCH BAR to come up */ printk_debug("Waiting for MCHBAR to come up..."); if ((pci_read_config8(PCI_DEV(0, 0x0f, 0), 0xe6) & 0x2) == 0x00) { /* Bit 49 of CAPID0 */ do { reg8 = *(volatile u8 *)0xfed40000; } while (!(reg8 & 0x80)); } printk_debug("ok\n"); } static void i945_setup_egress_port(void) { u32 reg32; u32 timeout; printk_debug("Setting up Egress Port RCRB\n"); /* Egress Port Virtual Channel 0 Configuration */ /* map only TC0 to VC0 */ reg32 = EPBAR32(EPVC0RCTL); reg32 &= 0xffffff01; EPBAR32(EPVC0RCTL) = reg32; reg32 = EPBAR32(EPPVCCAP1); reg32 &= ~(7 << 0); reg32 |= 1; EPBAR32(EPPVCCAP1) = reg32; /* Egress Port Virtual Channel 1 Configuration */ reg32 = EPBAR32(0x2c); reg32 &= 0xffffff00; if ((MCHBAR32(CLKCFG) & 7) == 1) reg32 |= 0x0d; /* 533MHz */ if ((MCHBAR32(CLKCFG) & 7) == 3) reg32 |= 0x10; /* 667MHz */ EPBAR32(0x2c) = reg32; EPBAR32(EPVC1MTS) = 0x0a0a0a0a; reg32 = EPBAR32(EPVC1RCAP); reg32 &= ~(0x7f << 16); reg32 |= (0x0a << 16); EPBAR32(EPVC1RCAP) = reg32; if ((MCHBAR32(CLKCFG) & 7) == 1) { /* 533MHz */ EPBAR32(EPVC1IST + 0) = 0x009c009c; EPBAR32(EPVC1IST + 4) = 0x009c009c; } if ((MCHBAR32(CLKCFG) & 7) == 3) { /* 667MHz */ EPBAR32(EPVC1IST + 0) = 0x00c000c0; EPBAR32(EPVC1IST + 4) = 0x00c000c0; } /* Is internal graphics enabled? */ if (pci_read_config8(PCI_DEV(0, 0x0, 0), 0x54) & ((1 << 4) | (1 << 3))) { /* DEVEN */ MCHBAR32(MMARB1) |= (1 << 17); } /* Assign Virtual Channel ID 1 to VC1 */ reg32 = EPBAR32(EPVC1RCTL); reg32 &= ~(7 << 24); reg32 |= (1 << 24); EPBAR32(EPVC1RCTL) = reg32; reg32 = EPBAR32(EPVC1RCTL); reg32 &= 0xffffff01; reg32 |= (1 << 7); EPBAR32(EPVC1RCTL) = reg32; EPBAR32(PORTARB + 0x00) = 0x01000001; EPBAR32(PORTARB + 0x04) = 0x00040000; EPBAR32(PORTARB + 0x08) = 0x00001000; EPBAR32(PORTARB + 0x0c) = 0x00000040; EPBAR32(PORTARB + 0x10) = 0x01000001; EPBAR32(PORTARB + 0x14) = 0x00040000; EPBAR32(PORTARB + 0x18) = 0x00001000; EPBAR32(PORTARB + 0x1c) = 0x00000040; EPBAR32(EPVC1RCTL) |= (1 << 16); EPBAR32(EPVC1RCTL) |= (1 << 16); printk_debug("Loading port arbitration table ..."); /* Loop until bit 0 becomes 0 */ timeout = 0x7fffff; while ((EPBAR16(EPVC1RSTS) & 1) && --timeout) ; if (!timeout) printk_debug("timeout!\n"); else printk_debug("ok\n"); /* Now enable VC1 */ EPBAR32(EPVC1RCTL) |= (1 << 31); printk_debug("Wait for VC1 negotiation ..."); /* Wait for VC1 negotiation pending */ timeout = 0x7fff; while ((EPBAR16(EPVC1RSTS) & (1 << 1)) && --timeout) ; if (!timeout) printk_debug("timeout!\n"); else printk_debug("ok\n"); } static void ich7_setup_dmi_rcrb(void) { u16 reg16; u32 reg32; reg16 = RCBA16(LCTL); reg16 &= ~(3 << 0); reg16 |= 3; RCBA16(LCTL) = reg16; RCBA32(V0CTL) = 0x80000001; RCBA32(V1CAP) = 0x03128010; RCBA32(ESD) = 0x00000810; RCBA32(RP1D) = 0x01000003; RCBA32(RP2D) = 0x02000002; RCBA32(RP3D) = 0x03000002; RCBA32(RP4D) = 0x04000002; RCBA32(HDD) = 0x0f000003; RCBA32(RP5D) = 0x05000002; RCBA32(RPFN) = 0x00543210; pci_write_config16(PCI_DEV(0, 0x1c, 0), 0x42, 0x0141); pci_write_config16(PCI_DEV(0, 0x1c, 4), 0x42, 0x0141); pci_write_config16(PCI_DEV(0, 0x1c, 5), 0x42, 0x0141); pci_write_config32(PCI_DEV(0, 0x1c, 4), 0x54, 0x00480ce0); pci_write_config32(PCI_DEV(0, 0x1c, 5), 0x54, 0x00500ce0); reg32 = RCBA32(V1CTL); reg32 &= ~( (0x7f << 1) | (7 << 17) | (7 << 24) ); reg32 |= (0x40 << 1) | (4 << 17) | (1 << 24) | (1 << 31); RCBA32(V1CTL) = reg32; RCBA32(ESD) |= (2 << 16); RCBA32(ULD) |= (1 << 24) | (1 << 16); RCBA32(ULBA) = DEFAULT_DMIBAR; RCBA32(RP1D) |= (2 << 16); RCBA32(RP2D) |= (2 << 16); RCBA32(RP3D) |= (2 << 16); RCBA32(RP4D) |= (2 << 16); RCBA32(HDD) |= (2 << 16); RCBA32(RP5D) |= (2 << 16); RCBA32(RP6D) |= (2 << 16); RCBA32(LCAP) |= (3 << 10); } static void i945_setup_dmi_rcrb(void) { u32 reg32; u32 timeout; int activate_aspm = 1; printk_debug("Setting up DMI RCRB\n"); /* Virtual Channel 0 Configuration */ reg32 = DMIBAR32(DMIVC0RCTL0); reg32 &= 0xffffff01; DMIBAR32(DMIVC0RCTL0) = reg32; reg32 = DMIBAR32(DMIPVCCAP1); reg32 &= ~(7 << 0); reg32 |= 1; DMIBAR32(DMIPVCCAP1) = reg32; reg32 = DMIBAR32(DMIVC1RCTL); reg32 &= ~(7 << 24); reg32 |= (1 << 24); /* NOTE: This ID must match ICH7 side */ DMIBAR32(DMIVC1RCTL) = reg32; reg32 = DMIBAR32(DMIVC1RCTL); reg32 &= 0xffffff01; reg32 |= (1 << 7); DMIBAR32(DMIVC1RCTL) = reg32; /* Now enable VC1 */ DMIBAR32(DMIVC1RCTL) |= (1 << 31); printk_debug("Wait for VC1 negotiation ..."); /* Wait for VC1 negotiation pending */ timeout = 0x7ffff; while ((DMIBAR16(DMIVC1RSTS) & (1 << 1)) && --timeout) ; if (!timeout) printk_debug("timeout!\n"); else printk_debug("done..\n"); #if 1 /* Enable Active State Power Management (ASPM) L0 state */ reg32 = DMIBAR32(DMILCAP); reg32 &= ~(7 << 12); reg32 |= (2 << 12); reg32 &= ~(7 << 15); reg32 |= (2 << 15); DMIBAR32(DMILCAP) = reg32; reg32 = DMIBAR32(DMICC); reg32 &= 0x00ffffff; reg32 &= ~(3 << 0); reg32 |= (1 << 0); reg32 &= ~(3 << 20); reg32 |= (1 << 20); DMIBAR32(DMICC) = reg32; if (activate_aspm) { DMIBAR32(DMILCTL) |= (3 << 0); } #endif /* Last but not least, some additional steps */ reg32 = MCHBAR32(FSBSNPCTL); reg32 &= ~(0xff << 2); reg32 |= (0xaa << 2); MCHBAR32(FSBSNPCTL) = reg32; DMIBAR32(0x2c) = 0x86000040; reg32 = DMIBAR32(0x204); reg32 &= ~0x3ff; #if 1 reg32 |= 0x13f; /* for x4 DMI only */ #else reg32 |= 0x1e4; /* for x2 DMI only */ #endif DMIBAR32(0x204) = reg32; if (pci_read_config8(PCI_DEV(0, 0x0, 0), 0x54) & ((1 << 4) | (1 << 3))) { /* DEVEN */ printk_debug("Internal graphics: enabled\n"); DMIBAR32(0x200) |= (1 << 21); } else { printk_debug("Internal graphics: disabled\n"); DMIBAR32(0x200) &= ~(1 << 21); } reg32 = DMIBAR32(0x204); reg32 &= ~((1 << 11) | (1 << 10)); DMIBAR32(0x204) = reg32; reg32 = DMIBAR32(0x204); reg32 &= ~(0xff << 12); reg32 |= (0x0d << 12); DMIBAR32(0x204) = reg32; DMIBAR32(DMICTL1) |= (3 << 24); reg32 = DMIBAR32(0x200); reg32 &= ~(0x3 << 26); reg32 |= (0x02 << 26); DMIBAR32(0x200) = reg32; DMIBAR32(DMIDRCCFG) &= ~(1 << 31); DMIBAR32(DMICTL2) |= (1 << 31); if (i945_silicon_revision() >= 3) { reg32 = DMIBAR32(0xec0); reg32 &= 0x0fffffff; reg32 |= (2 << 28); DMIBAR32(0xec0) = reg32; reg32 = DMIBAR32(0xed4); reg32 &= 0x0fffffff; reg32 |= (2 << 28); DMIBAR32(0xed4) = reg32; reg32 = DMIBAR32(0xee8); reg32 &= 0x0fffffff; reg32 |= (2 << 28); DMIBAR32(0xee8) = reg32; reg32 = DMIBAR32(0xefc); reg32 &= 0x0fffffff; reg32 |= (2 << 28); DMIBAR32(0xefc) = reg32; } /* wait for bit toggle to 0 */ printk_debug("Waiting for DMI hardware..."); timeout = 0x7fffff; while ((DMIBAR8(0x32) & (1 << 1)) && --timeout) ; if (!timeout) printk_debug("timeout!\n"); else printk_debug("ok\n"); DMIBAR32(0x1c4) = 0xffffffff; DMIBAR32(0x1d0) = 0xffffffff; DMIBAR32(0x228) = 0xffffffff; DMIBAR32(0x308) = DMIBAR32(0x308); DMIBAR32(0x314) = DMIBAR32(0x314); DMIBAR32(0x324) = DMIBAR32(0x324); DMIBAR32(0x328) = DMIBAR32(0x328); DMIBAR32(0x338) = DMIBAR32(0x334); DMIBAR32(0x338) = DMIBAR32(0x338); if (i945_silicon_revision() == 1 && ((MCHBAR8(0xe08) & (1 << 5)) == 1)) { if ((MCHBAR32(0x214) & 0xf) != 0x3) { printk_info ("DMI link requires A1 stepping workaround. Rebooting.\n"); reg32 = DMIBAR32(0x224); reg32 &= ~(7 << 0); reg32 |= (3 << 0); DMIBAR32(0x224) = reg32; outb(0x06, 0xcf9); for (;;) ; /* wait for reset */ } } } static void i945_setup_pci_express_x16(void) { u32 timeout; u32 reg32; u16 reg16; u8 reg8; printk_debug("Enabling PCI Express x16 Link\n"); reg16 = pci_read_config16(PCI_DEV(0, 0x00, 0), DEVEN); reg16 |= DEVEN_D1F0; pci_write_config16(PCI_DEV(0, 0x00, 0), DEVEN, reg16); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x208); reg32 &= ~(1 << 8); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x208, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x224); reg32 &= ~(1 << 8); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x224, reg32); MCHBAR16(UPMC1) &= ~( (1 << 5) | (1 << 0) ); /* Initialze PEG_CAP */ reg16 = pcie_read_config16(PCI_DEV(0, 0x01, 0), 0xa2); reg16 |= (1 << 8); pcie_write_config16(PCI_DEV(0, 0x01, 0), 0xa2, reg16); /* Setup SLOTCAP */ /* TODO: These values are mainboard dependent and should * be set from Config.lb or Options.lb. */ /* NOTE: SLOTCAP becomes RO after the first write! */ reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xb4); reg32 &= 0x0007ffff; reg32 &= 0xfffe007f; pcie_write_config32(PCI_DEV(0, 0x01, 0), 0xb4, reg32); /* Wait for training to succeed */ printk_debug("Wait for PCIe x16 link training ..."); timeout = 0x7fff; while ((((pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x214) >> 16) & 4) != 3) && --timeout) ; if (!timeout) { printk_debug("timeout!\n"); printk_debug("Restrain PCIe port to x1\n"); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x214); reg32 &= ~(0xf << 1); reg32 |=1; pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x214, reg32); reg16 = pcie_read_config16(PCI_DEV(0, 0x01, 0), 0x3e); reg16 |= (1 << 6); pcie_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16); reg16 &= ~(1 << 6); pcie_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16); printk_debug("Wait for PCIe x1 link training ..."); timeout = 0x7fff; while ((((pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x214) >> 16) & 4) != 3) && --timeout) ; if (!timeout) { printk_debug("timeout!\n"); printk_debug("Disabling PCIe x16 port completely.\n"); goto disable_pciexpress_x16_link; } else { printk_debug("ok\n"); } } else { printk_debug("ok\n"); } reg16 = pcie_read_config16(PCI_DEV(0, 0x01, 0), 0xb2); reg16 >>= 4; reg16 &= 0x3f; /* reg16 == 1 -> x1; reg16 == 16 -> x16 */ printk_debug("PCIe x%d link training succeeded.\n", reg16); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x204); reg32 &= 0xfffffc00; /* clear [9:0] */ if (reg16 == 1) { reg32 |= 0x32b; // TODO } else if (reg16 == 16) { reg32 |= 0x0f4; // TODO } /* Enable GPEs */ reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xec); reg32 |= (1 << 2) | (1 << 1) | (1 << 0); /* PMEGPE, HPGPE, GENGPE */ pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x114, reg32); /* Virtual Channel Configuration: Only VC0 on PCIe x16 */ reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x114); reg32 &= 0xffffff01; pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x114, reg32); /* Extended VC count */ reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x104); reg32 &= ~(7 << 0); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x104, reg32); /* Active State Power Management ASPM */ /* TODO */ /* Clear error bits */ pcie_write_config16(PCI_DEV(0, 0x01, 0), 0x06, 0xffff); pcie_write_config16(PCI_DEV(0, 0x01, 0), 0x1e, 0xffff); pcie_write_config16(PCI_DEV(0, 0x01, 0), 0xaa, 0xffff); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x1c4, 0xffffffff); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x1d0, 0xffffffff); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x1f0, 0xffffffff); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x228, 0xffffffff); /* Program R/WO registers */ reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x308); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x308, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x314); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x314, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x324); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x324, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x328); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x328, reg32); reg8 = pcie_read_config8(PCI_DEV(0, 0x01, 0), 0xb4); pcie_write_config8(PCI_DEV(0, 0x01, 0), 0xb4, reg8); /* Additional PCIe graphics setup */ reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xf0); reg32 |= (3 << 26); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xf0); reg32 |= (3 << 24); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xf0); reg32 |= (1 << 5); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0x200); reg32 &= ~(3 << 26); reg32 |= (2 << 26); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0x200, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xe80); if (i945_silicon_revision() >= 2) { reg32 |= (1 << 12); } else { reg32 &= ~(1 << 12); } pcie_write_config32(PCI_DEV(0, 0x01, 0), 0xe80, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xeb4); reg32 &= ~(1 << 31); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0xeb4, reg32); reg32 = pcie_read_config32(PCI_DEV(0, 0x01, 0), 0xfc); reg32 |= (1 << 31); pcie_write_config32(PCI_DEV(0, 0x01, 0), 0xfc, reg32); if (i945_silicon_revision() >= 3) { static const u32 reglist[] = { 0xec0, 0xed4, 0xee8, 0xefc, 0xf10, 0xf24, 0xf38, 0xf4c, 0xf60, 0xf74, 0xf88, 0xf9c, 0xfb0, 0xfc4, 0xfd8, 0xfec }; int i; for (i=0; i