intel/i945: Define p2peg for PCIe x16 slot
Change-Id: I0e9dd06376c1076be4a4c41ff87dfd3cf820d7bc Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35675 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
df128a55b1
commit
444d2af9a9
|
@ -529,6 +529,7 @@ static void i945_setup_pci_express_x16(void)
|
||||||
u32 timeout;
|
u32 timeout;
|
||||||
u32 reg32;
|
u32 reg32;
|
||||||
u16 reg16;
|
u16 reg16;
|
||||||
|
pci_devfn_t p2peg = PCI_DEV(0, 0x01, 0);
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Enabling PCI Express x16 Link\n");
|
printk(BIOS_DEBUG, "Enabling PCI Express x16 Link\n");
|
||||||
|
|
||||||
|
@ -536,9 +537,9 @@ static void i945_setup_pci_express_x16(void)
|
||||||
reg16 |= DEVEN_D1F0;
|
reg16 |= DEVEN_D1F0;
|
||||||
pci_write_config16(PCI_DEV(0, 0x00, 0), DEVEN, reg16);
|
pci_write_config16(PCI_DEV(0, 0x00, 0), DEVEN, reg16);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGCC);
|
reg32 = pci_read_config32(p2peg, PEGCC);
|
||||||
reg32 &= ~(1 << 8);
|
reg32 &= ~(1 << 8);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), PEGCC, reg32);
|
pci_write_config32(p2peg, PEGCC, reg32);
|
||||||
|
|
||||||
/* We have no success with querying the usual PCIe registers
|
/* We have no success with querying the usual PCIe registers
|
||||||
* for link setup success on the i945. Hence we assign a temporary
|
* for link setup success on the i945. Hence we assign a temporary
|
||||||
|
@ -546,53 +547,53 @@ static void i945_setup_pci_express_x16(void)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* First we reset the secondary bus */
|
/* First we reset the secondary bus */
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL);
|
reg16 = pci_read_config16(p2peg, PCI_BRIDGE_CONTROL);
|
||||||
reg16 |= PCI_BRIDGE_CTL_BUS_RESET;
|
reg16 |= PCI_BRIDGE_CTL_BUS_RESET;
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL, reg16);
|
pci_write_config16(p2peg, PCI_BRIDGE_CONTROL, reg16);
|
||||||
/* Read back and clear reset bit. */
|
/* Read back and clear reset bit. */
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL);
|
reg16 = pci_read_config16(p2peg, PCI_BRIDGE_CONTROL);
|
||||||
reg16 &= ~PCI_BRIDGE_CTL_BUS_RESET; /* SRESET */
|
reg16 &= ~PCI_BRIDGE_CTL_BUS_RESET; /* SRESET */
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL, reg16);
|
pci_write_config16(p2peg, PCI_BRIDGE_CONTROL, reg16);
|
||||||
|
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), SLOTSTS);
|
reg16 = pci_read_config16(p2peg, SLOTSTS);
|
||||||
printk(BIOS_DEBUG, "SLOTSTS: %04x\n", reg16);
|
printk(BIOS_DEBUG, "SLOTSTS: %04x\n", reg16);
|
||||||
if (!(reg16 & 0x48))
|
if (!(reg16 & 0x48))
|
||||||
goto disable_pciexpress_x16_link;
|
goto disable_pciexpress_x16_link;
|
||||||
reg16 |= (1 << 4) | (1 << 0);
|
reg16 |= (1 << 4) | (1 << 0);
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), SLOTSTS, reg16);
|
pci_write_config16(p2peg, SLOTSTS, reg16);
|
||||||
|
|
||||||
pci_write_config8(PCI_DEV(0, 0x01, 0), SBUSN1, 0x00);
|
pci_write_config8(p2peg, SBUSN1, 0x00);
|
||||||
pci_write_config8(PCI_DEV(0, 0x01, 0), SUBUSN1, 0x00);
|
pci_write_config8(p2peg, SUBUSN1, 0x00);
|
||||||
pci_write_config8(PCI_DEV(0, 0x01, 0), SBUSN1, 0x0a);
|
pci_write_config8(p2peg, SBUSN1, 0x0a);
|
||||||
pci_write_config8(PCI_DEV(0, 0x01, 0), SUBUSN1, 0x0a);
|
pci_write_config8(p2peg, SUBUSN1, 0x0a);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x224);
|
reg32 = pci_read_config32(p2peg, 0x224);
|
||||||
reg32 &= ~(1 << 8);
|
reg32 &= ~(1 << 8);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x224, reg32);
|
pci_write_config32(p2peg, 0x224, reg32);
|
||||||
|
|
||||||
MCHBAR16(UPMC1) &= ~((1 << 5) | (1 << 0));
|
MCHBAR16(UPMC1) &= ~((1 << 5) | (1 << 0));
|
||||||
|
|
||||||
/* Initialize PEG_CAP */
|
/* Initialize PEG_CAP */
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), PEG_CAP);
|
reg16 = pci_read_config16(p2peg, PEG_CAP);
|
||||||
reg16 |= (1 << 8);
|
reg16 |= (1 << 8);
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PEG_CAP, reg16);
|
pci_write_config16(p2peg, PEG_CAP, reg16);
|
||||||
|
|
||||||
/* Setup SLOTCAP */
|
/* Setup SLOTCAP */
|
||||||
/* TODO: These values are mainboard dependent and should
|
/* TODO: These values are mainboard dependent and should
|
||||||
* be set from devicetree.cb.
|
* be set from devicetree.cb.
|
||||||
*/
|
*/
|
||||||
/* NOTE: SLOTCAP becomes RO after the first write! */
|
/* NOTE: SLOTCAP becomes RO after the first write! */
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), SLOTCAP);
|
reg32 = pci_read_config32(p2peg, SLOTCAP);
|
||||||
reg32 &= 0x0007ffff;
|
reg32 &= 0x0007ffff;
|
||||||
|
|
||||||
reg32 &= 0xfffe007f;
|
reg32 &= 0xfffe007f;
|
||||||
|
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), SLOTCAP, reg32);
|
pci_write_config32(p2peg, SLOTCAP, reg32);
|
||||||
|
|
||||||
/* Wait for training to succeed */
|
/* Wait for training to succeed */
|
||||||
printk(BIOS_DEBUG, "PCIe link training ...");
|
printk(BIOS_DEBUG, "PCIe link training ...");
|
||||||
timeout = 0x7ffff;
|
timeout = 0x7ffff;
|
||||||
while ((((pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS) >> 16) & 3) != 3)
|
while ((((pci_read_config32(p2peg, PEGSTS) >> 16) & 3) != 3)
|
||||||
&& --timeout)
|
&& --timeout)
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -605,20 +606,20 @@ static void i945_setup_pci_express_x16(void)
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Restrain PCIe port to x1\n");
|
printk(BIOS_DEBUG, "Restrain PCIe port to x1\n");
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS);
|
reg32 = pci_read_config32(p2peg, PEGSTS);
|
||||||
reg32 &= ~(0xf << 1);
|
reg32 &= ~(0xf << 1);
|
||||||
reg32 |= 1;
|
reg32 |= 1;
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), PEGSTS, reg32);
|
pci_write_config32(p2peg, PEGSTS, reg32);
|
||||||
|
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL);
|
reg16 = pci_read_config16(p2peg, PCI_BRIDGE_CONTROL);
|
||||||
reg16 |= PCI_BRIDGE_CTL_BUS_RESET;
|
reg16 |= PCI_BRIDGE_CTL_BUS_RESET;
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL, reg16);
|
pci_write_config16(p2peg, PCI_BRIDGE_CONTROL, reg16);
|
||||||
reg16 &= ~PCI_BRIDGE_CTL_BUS_RESET;
|
reg16 &= ~PCI_BRIDGE_CTL_BUS_RESET;
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL, reg16);
|
pci_write_config16(p2peg, PCI_BRIDGE_CONTROL, reg16);
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "PCIe link training ...");
|
printk(BIOS_DEBUG, "PCIe link training ...");
|
||||||
timeout = 0x7ffff;
|
timeout = 0x7ffff;
|
||||||
while ((((pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS) >> 16) & 3) != 3)
|
while ((((pci_read_config32(p2peg, PEGSTS) >> 16) & 3) != 3)
|
||||||
&& --timeout)
|
&& --timeout)
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -633,22 +634,22 @@ static void i945_setup_pci_express_x16(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0xb2);
|
reg16 = pci_read_config16(p2peg, 0xb2);
|
||||||
reg16 >>= 4;
|
reg16 >>= 4;
|
||||||
reg16 &= 0x3f;
|
reg16 &= 0x3f;
|
||||||
/* reg16 == 1 -> x1; reg16 == 16 -> x16 */
|
/* reg16 == 1 -> x1; reg16 == 16 -> x16 */
|
||||||
printk(BIOS_DEBUG, "PCIe x%d link training succeeded.\n", reg16);
|
printk(BIOS_DEBUG, "PCIe x%d link training succeeded.\n", reg16);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGTC);
|
reg32 = pci_read_config32(p2peg, PEGTC);
|
||||||
reg32 &= 0xfffffc00; /* clear [9:0] */
|
reg32 &= 0xfffffc00; /* clear [9:0] */
|
||||||
if (reg16 == 1)
|
if (reg16 == 1)
|
||||||
reg32 |= 0x32b;
|
reg32 |= 0x32b;
|
||||||
// TODO
|
// TODO
|
||||||
/* pci_write_config32(PCI_DEV(0, 0x01, 0), PEGTC, reg32); */
|
/* pci_write_config32(p2peg, PEGTC, reg32); */
|
||||||
else if (reg16 == 16)
|
else if (reg16 == 16)
|
||||||
reg32 |= 0x0f4;
|
reg32 |= 0x0f4;
|
||||||
// TODO
|
// TODO
|
||||||
/* pci_write_config32(PCI_DEV(0, 0x01, 0), PEGTC, reg32); */
|
/* pci_write_config32(p2peg, PEGTC, reg32); */
|
||||||
|
|
||||||
reg32 = (pci_read_config32(PCI_DEV(0xa, 0, 0), 0x8) >> 8);
|
reg32 = (pci_read_config32(PCI_DEV(0xa, 0, 0), 0x8) >> 8);
|
||||||
printk(BIOS_DEBUG, "PCIe device class: %06x\n", reg32);
|
printk(BIOS_DEBUG, "PCIe device class: %06x\n", reg32);
|
||||||
|
@ -662,84 +663,84 @@ static void i945_setup_pci_express_x16(void)
|
||||||
pci_write_config32(PCI_DEV(0, 0x0, 0), DEVEN, reg32);
|
pci_write_config32(PCI_DEV(0, 0x0, 0), DEVEN, reg32);
|
||||||
|
|
||||||
/* Set VGA enable bit in PCIe bridge */
|
/* Set VGA enable bit in PCIe bridge */
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x1, 0), PCI_BRIDGE_CONTROL);
|
reg16 = pci_read_config16(p2peg, PCI_BRIDGE_CONTROL);
|
||||||
reg16 |= PCI_BRIDGE_CTL_VGA;
|
reg16 |= PCI_BRIDGE_CTL_VGA;
|
||||||
pci_write_config16(PCI_DEV(0, 0x1, 0), PCI_BRIDGE_CONTROL, reg16);
|
pci_write_config16(p2peg, PCI_BRIDGE_CONTROL, reg16);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Enable GPEs */
|
/* Enable GPEs */
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEG_LC);
|
reg32 = pci_read_config32(p2peg, PEG_LC);
|
||||||
reg32 |= (1 << 2) | (1 << 1) | (1 << 0); /* PMEGPE, HPGPE, GENGPE */
|
reg32 |= (1 << 2) | (1 << 1) | (1 << 0); /* PMEGPE, HPGPE, GENGPE */
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), PEG_LC, reg32);
|
pci_write_config32(p2peg, PEG_LC, reg32);
|
||||||
|
|
||||||
/* Virtual Channel Configuration: Only VC0 on PCIe x16 */
|
/* Virtual Channel Configuration: Only VC0 on PCIe x16 */
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), VC0RCTL);
|
reg32 = pci_read_config32(p2peg, VC0RCTL);
|
||||||
reg32 &= 0xffffff01;
|
reg32 &= 0xffffff01;
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), VC0RCTL, reg32);
|
pci_write_config32(p2peg, VC0RCTL, reg32);
|
||||||
|
|
||||||
/* Extended VC count */
|
/* Extended VC count */
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PVCCAP1);
|
reg32 = pci_read_config32(p2peg, PVCCAP1);
|
||||||
reg32 &= ~(7 << 0);
|
reg32 &= ~(7 << 0);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), PVCCAP1, reg32);
|
pci_write_config32(p2peg, PVCCAP1, reg32);
|
||||||
|
|
||||||
/* Active State Power Management ASPM */
|
/* Active State Power Management ASPM */
|
||||||
|
|
||||||
/* TODO */
|
/* TODO */
|
||||||
|
|
||||||
/* Clear error bits */
|
/* Clear error bits */
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PCISTS1, 0xffff);
|
pci_write_config16(p2peg, PCISTS1, 0xffff);
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), SSTS1, 0xffff);
|
pci_write_config16(p2peg, SSTS1, 0xffff);
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), DSTS, 0xffff);
|
pci_write_config16(p2peg, DSTS, 0xffff);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), UESTS, 0xffffffff);
|
pci_write_config32(p2peg, UESTS, 0xffffffff);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), CESTS, 0xffffffff);
|
pci_write_config32(p2peg, CESTS, 0xffffffff);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x1f0, 0xffffffff);
|
pci_write_config32(p2peg, 0x1f0, 0xffffffff);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x228, 0xffffffff);
|
pci_write_config32(p2peg, 0x228, 0xffffffff);
|
||||||
|
|
||||||
/* Program R/WO registers */
|
/* Program R/WO registers */
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x308);
|
reg32 = pci_read_config32(p2peg, 0x308);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x308, reg32);
|
pci_write_config32(p2peg, 0x308, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x314);
|
reg32 = pci_read_config32(p2peg, 0x314);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x314, reg32);
|
pci_write_config32(p2peg, 0x314, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x324);
|
reg32 = pci_read_config32(p2peg, 0x324);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x324, reg32);
|
pci_write_config32(p2peg, 0x324, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x328);
|
reg32 = pci_read_config32(p2peg, 0x328);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x328, reg32);
|
pci_write_config32(p2peg, 0x328, reg32);
|
||||||
|
|
||||||
/* Additional PCIe graphics setup */
|
/* Additional PCIe graphics setup */
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
|
reg32 = pci_read_config32(p2peg, 0xf0);
|
||||||
reg32 |= (3 << 26);
|
reg32 |= (3 << 26);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
|
pci_write_config32(p2peg, 0xf0, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
|
reg32 = pci_read_config32(p2peg, 0xf0);
|
||||||
reg32 |= (3 << 24);
|
reg32 |= (3 << 24);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
|
pci_write_config32(p2peg, 0xf0, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
|
reg32 = pci_read_config32(p2peg, 0xf0);
|
||||||
reg32 |= (1 << 5);
|
reg32 |= (1 << 5);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
|
pci_write_config32(p2peg, 0xf0, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x200);
|
reg32 = pci_read_config32(p2peg, 0x200);
|
||||||
reg32 &= ~(3 << 26);
|
reg32 &= ~(3 << 26);
|
||||||
reg32 |= (2 << 26);
|
reg32 |= (2 << 26);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x200, reg32);
|
pci_write_config32(p2peg, 0x200, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xe80);
|
reg32 = pci_read_config32(p2peg, 0xe80);
|
||||||
if (i945_silicon_revision() >= 2)
|
if (i945_silicon_revision() >= 2)
|
||||||
reg32 |= (1 << 12);
|
reg32 |= (1 << 12);
|
||||||
else
|
else
|
||||||
reg32 &= ~(1 << 12);
|
reg32 &= ~(1 << 12);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0xe80, reg32);
|
pci_write_config32(p2peg, 0xe80, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xeb4);
|
reg32 = pci_read_config32(p2peg, 0xeb4);
|
||||||
reg32 &= ~(1 << 31);
|
reg32 &= ~(1 << 31);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0xeb4, reg32);
|
pci_write_config32(p2peg, 0xeb4, reg32);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xfc);
|
reg32 = pci_read_config32(p2peg, 0xfc);
|
||||||
reg32 |= (1 << 31);
|
reg32 |= (1 << 31);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0xfc, reg32);
|
pci_write_config32(p2peg, 0xfc, reg32);
|
||||||
|
|
||||||
if (i945_silicon_revision() >= 3) {
|
if (i945_silicon_revision() >= 3) {
|
||||||
static const u32 reglist[] = {
|
static const u32 reglist[] = {
|
||||||
|
@ -750,21 +751,21 @@ static void i945_setup_pci_express_x16(void)
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < ARRAY_SIZE(reglist); i++) {
|
for (i = 0; i < ARRAY_SIZE(reglist); i++) {
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), reglist[i]);
|
reg32 = pci_read_config32(p2peg, reglist[i]);
|
||||||
reg32 &= 0x0fffffff;
|
reg32 &= 0x0fffffff;
|
||||||
reg32 |= (2 << 28);
|
reg32 |= (2 << 28);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), reglist[i], reg32);
|
pci_write_config32(p2peg, reglist[i], reg32);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i945_silicon_revision() <= 2) {
|
if (i945_silicon_revision() <= 2) {
|
||||||
/* Set voltage specific parameters */
|
/* Set voltage specific parameters */
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xe80);
|
reg32 = pci_read_config32(p2peg, 0xe80);
|
||||||
reg32 &= (0xf << 4); /* Default case 1.05V */
|
reg32 &= (0xf << 4); /* Default case 1.05V */
|
||||||
if ((MCHBAR32(DFT_STRAP1) & (1 << 20)) == 0) { /* 1.50V */
|
if ((MCHBAR32(DFT_STRAP1) & (1 << 20)) == 0) { /* 1.50V */
|
||||||
reg32 |= (7 << 4);
|
reg32 |= (7 << 4);
|
||||||
}
|
}
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0xe80, reg32);
|
pci_write_config32(p2peg, 0xe80, reg32);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -775,21 +776,21 @@ disable_pciexpress_x16_link:
|
||||||
|
|
||||||
MCHBAR16(UPMC1) |= (1 << 5) | (1 << 0);
|
MCHBAR16(UPMC1) |= (1 << 5) | (1 << 0);
|
||||||
|
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL);
|
reg16 = pci_read_config16(p2peg, PCI_BRIDGE_CONTROL);
|
||||||
reg16 |= PCI_BRIDGE_CTL_BUS_RESET;
|
reg16 |= PCI_BRIDGE_CTL_BUS_RESET;
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL, reg16);
|
pci_write_config16(p2peg, PCI_BRIDGE_CONTROL, reg16);
|
||||||
|
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x224);
|
reg32 = pci_read_config32(p2peg, 0x224);
|
||||||
reg32 |= (1 << 8);
|
reg32 |= (1 << 8);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), 0x224, reg32);
|
pci_write_config32(p2peg, 0x224, reg32);
|
||||||
|
|
||||||
reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL);
|
reg16 = pci_read_config16(p2peg, PCI_BRIDGE_CONTROL);
|
||||||
reg16 &= ~PCI_BRIDGE_CTL_BUS_RESET;
|
reg16 &= ~PCI_BRIDGE_CTL_BUS_RESET;
|
||||||
pci_write_config16(PCI_DEV(0, 0x01, 0), PCI_BRIDGE_CONTROL, reg16);
|
pci_write_config16(p2peg, PCI_BRIDGE_CONTROL, reg16);
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Wait for link to enter detect state... ");
|
printk(BIOS_DEBUG, "Wait for link to enter detect state... ");
|
||||||
timeout = 0x7fffff;
|
timeout = 0x7fffff;
|
||||||
for (reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS);
|
for (reg32 = pci_read_config32(p2peg, PEGSTS);
|
||||||
(reg32 & 0x000f0000) && --timeout;)
|
(reg32 & 0x000f0000) && --timeout;)
|
||||||
;
|
;
|
||||||
if (!timeout)
|
if (!timeout)
|
||||||
|
@ -806,6 +807,7 @@ disable_pciexpress_x16_link:
|
||||||
static void i945_setup_root_complex_topology(void)
|
static void i945_setup_root_complex_topology(void)
|
||||||
{
|
{
|
||||||
u32 reg32;
|
u32 reg32;
|
||||||
|
pci_devfn_t p2peg = PCI_DEV(0, 0x01, 0);
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Setting up Root Complex Topology\n");
|
printk(BIOS_DEBUG, "Setting up Root Complex Topology\n");
|
||||||
/* Egress Port Root Topology */
|
/* Egress Port Root Topology */
|
||||||
|
@ -840,10 +842,10 @@ static void i945_setup_root_complex_topology(void)
|
||||||
|
|
||||||
/* PCI Express x16 Port Root Topology */
|
/* PCI Express x16 Port Root Topology */
|
||||||
if (pci_read_config8(PCI_DEV(0, 0x00, 0), DEVEN) & DEVEN_D1F0) {
|
if (pci_read_config8(PCI_DEV(0, 0x00, 0), DEVEN) & DEVEN_D1F0) {
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), LE1A, DEFAULT_EPBAR);
|
pci_write_config32(p2peg, LE1A, DEFAULT_EPBAR);
|
||||||
reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), LE1D);
|
reg32 = pci_read_config32(p2peg, LE1D);
|
||||||
reg32 |= (1 << 0);
|
reg32 |= (1 << 0);
|
||||||
pci_write_config32(PCI_DEV(0, 0x01, 0), LE1D, reg32);
|
pci_write_config32(p2peg, LE1D, reg32);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue