1 /* SPDX-License-Identifier: GPL-2.0-only */
5 #include <console/console.h>
6 #include <device/pci_ops.h>
7 #include <device/pci.h>
9 #include <romstage_handoff.h>
14 int i945_silicon_revision(void)
16 return pci_read_config8(HOST_BRIDGE
, PCI_CLASS_REVISION
);
19 static void i945m_detect_chipset(void)
23 printk(BIOS_INFO
, "\n");
24 reg8
= (pci_read_config8(HOST_BRIDGE
, 0xe7) & 0x70) >> 4;
27 printk(BIOS_INFO
, "Mobile Intel(R) 82945GM/GME Express");
30 printk(BIOS_INFO
, "Mobile Intel(R) 82945GMS/GU/GSE Express");
33 printk(BIOS_INFO
, "Mobile Intel(R) 82945PM Express");
36 printk(BIOS_INFO
, "Intel(R) 82945GT Express");
39 printk(BIOS_INFO
, "Mobile Intel(R) 82943/82940GML Express");
41 default: /* Others reserved. */
42 printk(BIOS_INFO
, "Unknown (%02x)", reg8
);
44 printk(BIOS_INFO
, " Chipset\n");
46 printk(BIOS_DEBUG
, "(G)MCH capable of up to FSB ");
47 reg8
= (pci_read_config8(HOST_BRIDGE
, 0xe3) & 0xe0) >> 5;
50 printk(BIOS_DEBUG
, "800 MHz"); /* According to 965 spec */
53 printk(BIOS_DEBUG
, "667 MHz");
56 printk(BIOS_DEBUG
, "533 MHz");
59 printk(BIOS_DEBUG
, "N/A MHz (%02x)", reg8
);
61 printk(BIOS_DEBUG
, "\n");
63 printk(BIOS_DEBUG
, "(G)MCH capable of ");
64 reg8
= (pci_read_config8(HOST_BRIDGE
, 0xe4) & 0x07);
67 printk(BIOS_DEBUG
, "up to DDR2-667");
70 printk(BIOS_DEBUG
, "up to DDR2-533");
73 printk(BIOS_DEBUG
, "DDR2-400");
75 default: /* Others reserved. */
76 printk(BIOS_INFO
, "unknown max. RAM clock (%02x).", reg8
);
78 printk(BIOS_DEBUG
, "\n");
80 if (CONFIG(NORTHBRIDGE_INTEL_SUBTYPE_I945GC
))
81 printk(BIOS_ERR
, "coreboot is compiled for the wrong chipset.\n");
84 static void i945_detect_chipset(void)
88 printk(BIOS_INFO
, "\nIntel(R) ");
90 reg8
= ((pci_read_config8(HOST_BRIDGE
, 0xe7) >> 5) & 4)
91 | ((pci_read_config8(HOST_BRIDGE
, 0xe4) >> 4) & 3);
95 printk(BIOS_INFO
, "82945G");
99 printk(BIOS_INFO
, "82945P");
102 printk(BIOS_INFO
, "82945GC");
105 printk(BIOS_INFO
, "82945GZ");
109 printk(BIOS_INFO
, "82945PL");
114 printk(BIOS_INFO
, " Chipset\n");
116 printk(BIOS_DEBUG
, "(G)MCH capable of ");
117 reg8
= (pci_read_config8(HOST_BRIDGE
, 0xe4) & 0x07);
121 printk(BIOS_DEBUG
, "up to DDR2-667");
124 printk(BIOS_DEBUG
, "up to DDR2-533");
126 default: /* Others reserved. */
127 printk(BIOS_INFO
, "unknown max. RAM clock (%02x).", reg8
);
129 printk(BIOS_DEBUG
, "\n");
131 if (CONFIG(NORTHBRIDGE_INTEL_SUBTYPE_I945GM
))
132 printk(BIOS_ERR
, "coreboot is compiled for the wrong chipset.\n");
135 static void i945_setup_bars(void)
139 /* As of now, we don't have all the A0 workarounds implemented */
140 if (i945_silicon_revision() == 0)
141 printk(BIOS_INFO
, "Warning: i945 silicon revision A0 might not work correctly.\n");
143 printk(BIOS_DEBUG
, "Setting up static northbridge registers...");
144 /* Set up all hardcoded northbridge BARs */
145 pci_write_config32(HOST_BRIDGE
, EPBAR
, CONFIG_FIXED_EPBAR_MMIO_BASE
| 1);
146 pci_write_config32(HOST_BRIDGE
, MCHBAR
, CONFIG_FIXED_MCHBAR_MMIO_BASE
| 1);
147 pci_write_config32(HOST_BRIDGE
, DMIBAR
, CONFIG_FIXED_DMIBAR_MMIO_BASE
| 1);
148 pci_write_config32(HOST_BRIDGE
, X60BAR
, DEFAULT_X60BAR
| 1);
150 /* vram size from CMOS option */
151 gfxsize
= get_uint_option("gfx_uma_size", 2); /* 2 for 8MB */
152 /* make sure no invalid setting is used */
155 pci_write_config16(HOST_BRIDGE
, GGC
, ((gfxsize
+ 1) << 4));
156 /* TSEG 2M, This amount can easily be covered by SMRR MTRR's,
157 which requires to have TSEG_BASE aligned to TSEG_SIZE. */
158 pci_update_config8(HOST_BRIDGE
, ESMRAMC
, ~0x07, (1 << 1) | (1 << 0));
160 /* Set C0000-FFFFF to access RAM on both reads and writes */
161 pci_write_config8(HOST_BRIDGE
, PAM0
, 0x30);
162 pci_write_config8(HOST_BRIDGE
, PAM1
, 0x33);
163 pci_write_config8(HOST_BRIDGE
, PAM2
, 0x33);
164 pci_write_config8(HOST_BRIDGE
, PAM3
, 0x33);
165 pci_write_config8(HOST_BRIDGE
, PAM4
, 0x33);
166 pci_write_config8(HOST_BRIDGE
, PAM5
, 0x33);
167 pci_write_config8(HOST_BRIDGE
, PAM6
, 0x33);
169 printk(BIOS_DEBUG
, " done.\n");
171 /* Wait for MCH BAR to come up */
172 printk(BIOS_DEBUG
, "Waiting for MCHBAR to come up...");
173 if ((pci_read_config32(HOST_BRIDGE
, 0xe4) & 0x20000) == 0x00) { /* Bit 49 of CAPID0 */
175 reg8
= *(volatile u8
*)0xfed40000;
176 } while (!(reg8
& 0x80));
178 printk(BIOS_DEBUG
, "ok\n");
181 static void i945_setup_egress_port(void)
186 printk(BIOS_DEBUG
, "Setting up Egress Port RCRB\n");
188 /* Egress Port Virtual Channel 0 Configuration */
190 /* map only TC0 to VC0 */
191 reg32
= epbar_read32(EPVC0RCTL
);
193 epbar_write32(EPVC0RCTL
, reg32
);
195 reg32
= epbar_read32(EPPVCCAP1
);
198 epbar_write32(EPPVCCAP1
, reg32
);
200 /* Egress Port Virtual Channel 1 Configuration */
201 reg32
= epbar_read32(0x2c);
203 if (CONFIG(NORTHBRIDGE_INTEL_SUBTYPE_I945GC
)) {
204 if ((mchbar_read32(CLKCFG
) & 7) == 0)
205 reg32
|= 0x1a; /* 1067MHz */
207 if ((mchbar_read32(CLKCFG
) & 7) == 1)
208 reg32
|= 0x0d; /* 533MHz */
209 if ((mchbar_read32(CLKCFG
) & 7) == 2)
210 reg32
|= 0x14; /* 800MHz */
211 if ((mchbar_read32(CLKCFG
) & 7) == 3)
212 reg32
|= 0x10; /* 667MHz */
213 epbar_write32(0x2c, reg32
);
215 epbar_write32(EPVC1MTS
, 0x0a0a0a0a);
217 reg32
= epbar_read32(EPVC1RCAP
);
218 reg32
&= ~(0x7f << 16);
219 reg32
|= (0x0a << 16);
220 epbar_write32(EPVC1RCAP
, reg32
);
222 if (CONFIG(NORTHBRIDGE_INTEL_SUBTYPE_I945GC
)) {
223 if ((mchbar_read32(CLKCFG
) & 7) == 0) { /* 1067MHz */
224 epbar_write32(EPVC1IST
+ 0, 0x01380138);
225 epbar_write32(EPVC1IST
+ 4, 0x01380138);
229 if ((mchbar_read32(CLKCFG
) & 7) == 1) { /* 533MHz */
230 epbar_write32(EPVC1IST
+ 0, 0x009c009c);
231 epbar_write32(EPVC1IST
+ 4, 0x009c009c);
234 if ((mchbar_read32(CLKCFG
) & 7) == 2) { /* 800MHz */
235 epbar_write32(EPVC1IST
+ 0, 0x00f000f0);
236 epbar_write32(EPVC1IST
+ 4, 0x00f000f0);
239 if ((mchbar_read32(CLKCFG
) & 7) == 3) { /* 667MHz */
240 epbar_write32(EPVC1IST
+ 0, 0x00c000c0);
241 epbar_write32(EPVC1IST
+ 4, 0x00c000c0);
244 /* Is internal graphics enabled? */
245 if (pci_read_config8(HOST_BRIDGE
, DEVEN
) & (DEVEN_D2F0
| DEVEN_D2F1
))
246 mchbar_setbits32(MMARB1
, 1 << 17);
248 /* Assign Virtual Channel ID 1 to VC1 */
249 reg32
= epbar_read32(EPVC1RCTL
);
252 epbar_write32(EPVC1RCTL
, reg32
);
254 reg32
= epbar_read32(EPVC1RCTL
);
257 epbar_write32(EPVC1RCTL
, reg32
);
259 epbar_write32(PORTARB
+ 0x00, 0x01000001);
260 epbar_write32(PORTARB
+ 0x04, 0x00040000);
261 epbar_write32(PORTARB
+ 0x08, 0x00001000);
262 epbar_write32(PORTARB
+ 0x0c, 0x00000040);
263 epbar_write32(PORTARB
+ 0x10, 0x01000001);
264 epbar_write32(PORTARB
+ 0x14, 0x00040000);
265 epbar_write32(PORTARB
+ 0x18, 0x00001000);
266 epbar_write32(PORTARB
+ 0x1c, 0x00000040);
268 epbar_setbits32(EPVC1RCTL
, 1 << 16);
269 epbar_setbits32(EPVC1RCTL
, 1 << 16);
271 printk(BIOS_DEBUG
, "Loading port arbitration table ...");
272 /* Loop until bit 0 becomes 0 */
274 while ((epbar_read16(EPVC1RSTS
) & (1 << 0)) && --timeout
)
277 printk(BIOS_DEBUG
, "timeout!\n");
279 printk(BIOS_DEBUG
, "ok\n");
282 epbar_setbits32(EPVC1RCTL
, 1 << 31);
284 printk(BIOS_DEBUG
, "Wait for VC1 negotiation ...");
285 /* Wait for VC1 negotiation pending */
287 while ((epbar_read16(EPVC1RSTS
) & (1 << 1)) && --timeout
)
290 printk(BIOS_DEBUG
, "timeout!\n");
292 printk(BIOS_DEBUG
, "ok\n");
295 static void ich7_setup_dmi_rcrb(void)
300 reg16
= RCBA16(LCTL
);
303 RCBA16(LCTL
) = reg16
;
305 RCBA32(V0CTL
) = 0x80000001;
306 RCBA32(V1CAP
) = 0x03128010;
308 pci_write_config16(PCI_DEV(0, 0x1c, 0), 0x42, 0x0141);
309 pci_write_config16(PCI_DEV(0, 0x1c, 4), 0x42, 0x0141);
310 pci_write_config16(PCI_DEV(0, 0x1c, 5), 0x42, 0x0141);
312 pci_write_config32(PCI_DEV(0, 0x1c, 4), 0x54, 0x00480ce0);
313 pci_write_config32(PCI_DEV(0, 0x1c, 5), 0x54, 0x00500ce0);
315 reg32
= RCBA32(V1CTL
);
316 reg32
&= ~((0x7f << 1) | (7 << 17) | (7 << 24));
317 reg32
|= (0x40 << 1) | (4 << 17) | (1 << 24) | (1 << 31);
318 RCBA32(V1CTL
) = reg32
;
320 RCBA32(LCAP
) |= (3 << 10);
323 static void i945_setup_dmi_rcrb(void)
327 int activate_aspm
= 1; /* hardcode ASPM for now */
329 printk(BIOS_DEBUG
, "Setting up DMI RCRB\n");
331 /* Virtual Channel 0 Configuration */
332 reg32
= dmibar_read32(DMIVC0RCTL0
);
334 dmibar_write32(DMIVC0RCTL0
, reg32
);
336 reg32
= dmibar_read32(DMIPVCCAP1
);
339 dmibar_write32(DMIPVCCAP1
, reg32
);
341 reg32
= dmibar_read32(DMIVC1RCTL
);
343 reg32
|= (1 << 24); /* NOTE: This ID must match ICH7 side */
344 dmibar_write32(DMIVC1RCTL
, reg32
);
346 reg32
= dmibar_read32(DMIVC1RCTL
);
349 dmibar_write32(DMIVC1RCTL
, reg32
);
352 dmibar_setbits32(DMIVC1RCTL
, 1 << 31);
354 printk(BIOS_DEBUG
, "Wait for VC1 negotiation ...");
355 /* Wait for VC1 negotiation pending */
357 while ((dmibar_read16(DMIVC1RSTS
) & (1 << 1)) && --timeout
)
360 printk(BIOS_DEBUG
, "timeout!\n");
362 printk(BIOS_DEBUG
, "done..\n");
364 /* Enable Active State Power Management (ASPM) L0 state */
366 reg32
= dmibar_read32(DMILCAP
);
373 dmibar_write32(DMILCAP
, reg32
);
375 reg32
= dmibar_read32(DMICC
);
382 dmibar_write32(DMICC
, reg32
);
385 dmibar_setbits32(DMILCTL
, 3 << 0);
387 /* Last but not least, some additional steps */
388 reg32
= mchbar_read32(FSBSNPCTL
);
389 reg32
&= ~(0xff << 2);
390 reg32
|= (0xaa << 2);
391 mchbar_write32(FSBSNPCTL
, reg32
);
393 dmibar_write32(0x2c, 0x86000040);
395 reg32
= dmibar_read32(0x204);
398 reg32
|= 0x13f; /* for x4 DMI only */
400 reg32
|= 0x1e4; /* for x2 DMI only */
402 dmibar_write32(0x204, reg32
);
404 if (pci_read_config8(HOST_BRIDGE
, DEVEN
) & (DEVEN_D2F0
| DEVEN_D2F1
)) {
405 printk(BIOS_DEBUG
, "Internal graphics: enabled\n");
406 dmibar_setbits32(0x200, 1 << 21);
408 printk(BIOS_DEBUG
, "Internal graphics: disabled\n");
409 dmibar_clrbits32(0x200, 1 << 21);
412 reg32
= dmibar_read32(0x204);
413 reg32
&= ~((1 << 11) | (1 << 10));
414 dmibar_write32(0x204, reg32
);
416 reg32
= dmibar_read32(0x204);
417 reg32
&= ~(0xff << 12);
418 reg32
|= (0x0d << 12);
419 dmibar_write32(0x204, reg32
);
421 dmibar_setbits32(DMICTL1
, 3 << 24);
423 reg32
= dmibar_read32(0x200);
424 reg32
&= ~(0x3 << 26);
425 reg32
|= (0x02 << 26);
426 dmibar_write32(0x200, reg32
);
428 dmibar_clrbits32(DMIDRCCFG
, 1 << 31);
429 dmibar_setbits32(DMICTL2
, 1 << 31);
431 if (i945_silicon_revision() >= 3) {
432 reg32
= dmibar_read32(0xec0);
435 dmibar_write32(0xec0, reg32
);
437 reg32
= dmibar_read32(0xed4);
440 dmibar_write32(0xed4, reg32
);
442 reg32
= dmibar_read32(0xee8);
445 dmibar_write32(0xee8, reg32
);
447 reg32
= dmibar_read32(0xefc);
450 dmibar_write32(0xefc, reg32
);
453 /* wait for bit toggle to 0 */
454 printk(BIOS_DEBUG
, "Waiting for DMI hardware...");
456 while ((dmibar_read8(0x32) & (1 << 1)) && --timeout
)
459 printk(BIOS_DEBUG
, "timeout!\n");
461 printk(BIOS_DEBUG
, "ok\n");
463 /* Clear Error Status Bits! */
464 dmibar_write32(0x1c4, 0xffffffff);
465 dmibar_write32(0x1d0, 0xffffffff);
466 dmibar_write32(0x228, 0xffffffff);
468 /* Program Read-Only Write-Once Registers */
469 dmibar_setbits32(0x308, 0);
470 dmibar_setbits32(0x314, 0);
471 dmibar_setbits32(0x324, 0);
472 dmibar_setbits32(0x328, 0);
473 dmibar_setbits32(0x334, 0);
474 dmibar_setbits32(0x338, 0);
476 if (i945_silicon_revision() == 1 && (mchbar_read8(DFT_STRAP1
) & (1 << 5))) {
477 if ((mchbar_read32(0x214) & 0xf) != 0x3) {
478 printk(BIOS_INFO
, "DMI link requires A1 stepping workaround. Rebooting.\n");
479 reg32
= dmibar_read32(0x224);
482 dmibar_write32(0x224, reg32
);
488 static void i945_setup_pci_express_x16(void)
493 const pci_devfn_t p2peg
= PCI_DEV(0, 0x01, 0);
495 u8 tmp_secondary
= 0x0a;
496 const pci_devfn_t peg_plugin
= PCI_DEV(tmp_secondary
, 0, 0);
498 printk(BIOS_DEBUG
, "Enabling PCI Express x16 Link\n");
500 pci_or_config16(HOST_BRIDGE
, DEVEN
, DEVEN_D1F0
);
502 pci_and_config32(p2peg
, PEGCC
, ~(1 << 8));
504 /* We have no success with querying the usual PCIe registers
505 * for link setup success on the i945. Hence we assign a temporary
506 * PCI bus 0x0a and check whether we find a device on 0:a.0
510 pci_s_assert_secondary_reset(p2peg
);
511 pci_s_deassert_secondary_reset(p2peg
);
513 reg16
= pci_read_config16(p2peg
, SLOTSTS
);
514 printk(BIOS_DEBUG
, "SLOTSTS: %04x\n", reg16
);
516 goto disable_pciexpress_x16_link
;
517 reg16
|= (1 << 4) | (1 << 0);
518 pci_write_config16(p2peg
, SLOTSTS
, reg16
);
520 pci_s_bridge_set_secondary(p2peg
, tmp_secondary
);
522 pci_and_config32(p2peg
, 0x224, ~(1 << 8));
524 mchbar_clrbits16(UPMC1
, 1 << 5 | 1 << 0);
526 /* Initialize PEG_CAP */
527 pci_or_config16(p2peg
, PEG_CAP
, 1 << 8);
530 /* TODO: These values are mainboard dependent and should be set from devicetree.cb.
532 /* NOTE: SLOTCAP becomes RO after the first write! */
533 reg32
= pci_read_config32(p2peg
, SLOTCAP
);
538 pci_write_config32(p2peg
, SLOTCAP
, reg32
);
540 /* Wait for training to succeed */
541 printk(BIOS_DEBUG
, "PCIe link training ...");
543 while ((((pci_read_config32(p2peg
, PEGSTS
) >> 16) & 3) != 3) && --timeout
)
546 reg32
= pci_read_config32(peg_plugin
, PCI_VENDOR_ID
);
547 if (reg32
!= 0x00000000 && reg32
!= 0xffffffff) {
548 printk(BIOS_DEBUG
, " Detected PCIe device %04x:%04x\n",
549 reg32
& 0xffff, reg32
>> 16);
551 printk(BIOS_DEBUG
, " timeout!\n");
553 printk(BIOS_DEBUG
, "Restrain PCIe port to x1\n");
555 pci_update_config32(p2peg
, PEGSTS
, ~(0xf << 1), 1);
558 pci_s_assert_secondary_reset(p2peg
);
559 pci_s_deassert_secondary_reset(p2peg
);
561 printk(BIOS_DEBUG
, "PCIe link training ...");
563 while ((((pci_read_config32(p2peg
, PEGSTS
) >> 16) & 3) != 3) && --timeout
)
566 reg32
= pci_read_config32(peg_plugin
, PCI_VENDOR_ID
);
567 if (reg32
!= 0x00000000 && reg32
!= 0xffffffff) {
568 printk(BIOS_DEBUG
, " Detected PCIe x1 device %04x:%04x\n",
569 reg32
& 0xffff, reg32
>> 16);
571 printk(BIOS_DEBUG
, " timeout!\n");
572 printk(BIOS_DEBUG
, "Disabling PCIe x16 port completely.\n");
573 goto disable_pciexpress_x16_link
;
577 reg16
= pci_read_config16(p2peg
, 0xb2);
580 /* reg16 == 1 -> x1; reg16 == 16 -> x16 */
581 printk(BIOS_DEBUG
, "PCIe x%d link training succeeded.\n", reg16
);
583 reg32
= pci_read_config32(p2peg
, PEGTC
);
584 reg32
&= 0xfffffc00; /* clear [9:0] */
588 /* pci_write_config32(p2peg, PEGTC, reg32); */
589 else if (reg16
== 16)
592 /* pci_write_config32(p2peg, PEGTC, reg32); */
594 reg32
= (pci_read_config32(peg_plugin
, 0x8) >> 8);
595 printk(BIOS_DEBUG
, "PCIe device class: %06x\n", reg32
);
596 if (reg32
== 0x030000) {
597 printk(BIOS_DEBUG
, "PCIe device is VGA. Disabling IGD.\n");
599 pci_write_config16(HOST_BRIDGE
, GGC
, reg16
);
601 pci_and_config32(HOST_BRIDGE
, DEVEN
, ~(DEVEN_D2F0
| DEVEN_D2F1
));
604 /* Enable GPEs: PMEGPE, HPGPE, GENGPE */
605 pci_or_config32(p2peg
, PEG_LC
, (1 << 2) | (1 << 1) | (1 << 0));
607 /* Virtual Channel Configuration: Only VC0 on PCIe x16 */
608 pci_and_config32(p2peg
, VC0RCTL
, ~0x000000fe);
610 /* Extended VC count */
611 pci_and_config32(p2peg
, PVCCAP1
, ~(7 << 0));
613 /* Active State Power Management ASPM */
617 /* Clear error bits */
618 pci_write_config16(p2peg
, PCISTS1
, 0xffff);
619 pci_write_config16(p2peg
, SSTS1
, 0xffff);
620 pci_write_config16(p2peg
, DSTS
, 0xffff);
621 pci_write_config32(p2peg
, UESTS
, 0xffffffff);
622 pci_write_config32(p2peg
, CESTS
, 0xffffffff);
623 pci_write_config32(p2peg
, 0x1f0, 0xffffffff);
624 pci_write_config32(p2peg
, 0x228, 0xffffffff);
626 /* Program R/WO registers */
627 pci_update_config32(p2peg
, 0x308, ~0, 0);
628 pci_update_config32(p2peg
, 0x314, ~0, 0);
629 pci_update_config32(p2peg
, 0x324, ~0, 0);
630 pci_update_config32(p2peg
, 0x328, ~0, 0);
632 /* Additional PCIe graphics setup */
633 pci_or_config32(p2peg
, 0xf0, 3 << 26);
634 pci_or_config32(p2peg
, 0xf0, 3 << 24);
635 pci_or_config32(p2peg
, 0xf0, 1 << 5);
637 pci_update_config32(p2peg
, 0x200, ~(3 << 26), 2 << 26);
639 reg32
= pci_read_config32(p2peg
, 0xe80);
640 if (i945_silicon_revision() >= 2)
644 pci_write_config32(p2peg
, 0xe80, reg32
);
646 pci_and_config32(p2peg
, 0xeb4, ~(1 << 31));
648 pci_or_config32(p2peg
, 0xfc, 1 << 31);
650 if (i945_silicon_revision() >= 3) {
651 static const u32 reglist
[] = {
652 0xec0, 0xed4, 0xee8, 0xefc, 0xf10, 0xf24, 0xf38, 0xf4c,
653 0xf60, 0xf74, 0xf88, 0xf9c, 0xfb0, 0xfc4, 0xfd8, 0xfec
657 for (i
= 0; i
< ARRAY_SIZE(reglist
); i
++)
658 pci_update_config32(p2peg
, reglist
[i
], ~(0xf << 28), 2 << 28);
661 if (i945_silicon_revision() <= 2) {
662 /* Set voltage specific parameters */
663 reg32
= pci_read_config32(p2peg
, 0xe80);
664 reg32
&= (0xf << 4); /* Default case 1.05V */
665 if ((mchbar_read32(DFT_STRAP1
) & (1 << 20)) == 0) { /* 1.50V */
668 pci_write_config32(p2peg
, 0xe80, reg32
);
673 disable_pciexpress_x16_link
:
674 /* For now we just disable the x16 link */
675 printk(BIOS_DEBUG
, "Disabling PCI Express x16 Link\n");
677 mchbar_setbits16(UPMC1
, 1 << 5 | 1 << 0);
680 pci_s_assert_secondary_reset(p2peg
);
682 pci_or_config32(p2peg
, 0x224, 1 << 8);
684 pci_s_deassert_secondary_reset(p2peg
);
686 printk(BIOS_DEBUG
, "Wait for link to enter detect state... ");
688 for (reg32
= pci_read_config32(p2peg
, PEGSTS
);
689 (reg32
& 0x000f0000) && --timeout
;)
692 printk(BIOS_DEBUG
, "timeout!\n");
694 printk(BIOS_DEBUG
, "ok\n");
696 /* Finally: Disable the PCI config header */
697 pci_and_config16(HOST_BRIDGE
, DEVEN
, ~DEVEN_D1F0
);
700 static void i945_setup_root_complex_topology(void)
703 const pci_devfn_t p2peg
= PCI_DEV(0, 0x01, 0);
705 printk(BIOS_DEBUG
, "Setting up Root Complex Topology\n");
706 /* Egress Port Root Topology */
708 reg32
= epbar_read32(EPESD
);
711 epbar_write32(EPESD
, reg32
);
713 epbar_setbits32(EPLE1D
, 1 << 16 | 1 << 0);
715 epbar_write32(EPLE1A
, CONFIG_FIXED_DMIBAR_MMIO_BASE
);
717 epbar_setbits32(EPLE2D
, 1 << 16 | 1 << 0);
719 /* DMI Port Root Topology */
721 reg32
= dmibar_read32(DMILE1D
);
728 dmibar_write32(DMILE1D
, reg32
);
730 dmibar_write32(DMILE1A
, CONFIG_FIXED_RCBA_MMIO_BASE
);
732 dmibar_setbits32(DMILE2D
, 1 << 16 | 1 << 0);
734 dmibar_write32(DMILE2A
, CONFIG_FIXED_EPBAR_MMIO_BASE
);
736 /* PCI Express x16 Port Root Topology */
737 if (pci_read_config8(HOST_BRIDGE
, DEVEN
) & DEVEN_D1F0
) {
738 pci_write_config32(p2peg
, LE1A
, CONFIG_FIXED_EPBAR_MMIO_BASE
);
739 pci_or_config32(p2peg
, LE1D
, 1 << 0);
743 static void ich7_setup_root_complex_topology(void)
745 /* Write the R/WO registers */
747 RCBA32(ESD
) |= (2 << 16);
749 RCBA32(ULD
) |= (1 << 24) | (1 << 16);
751 RCBA32(ULBA
) = CONFIG_FIXED_DMIBAR_MMIO_BASE
;
752 /* Write ESD.CID to TCID */
753 RCBA32(RP1D
) |= (2 << 16);
754 RCBA32(RP2D
) |= (2 << 16);
755 RCBA32(RP3D
) |= (2 << 16);
756 RCBA32(RP4D
) |= (2 << 16);
757 RCBA32(HDD
) |= (2 << 16);
758 RCBA32(RP5D
) |= (2 << 16);
759 RCBA32(RP6D
) |= (2 << 16);
762 static void ich7_setup_pci_express(void)
764 /* Enable PCIe Root Port Clock Gate */
765 RCBA32(CG
) |= (1 << 0);
767 /* Initialize slot power limit for root ports */
768 pci_write_config32(PCI_DEV(0, 0x1c, 0), 0x54, 0x00000060);
770 pci_write_config32(PCI_DEV(0, 0x1c, 0), 0xd8, 0x00110000);
773 void i945_early_initialization(void)
775 /* Print some chipset specific information */
776 switch (pci_read_config32(HOST_BRIDGE
, 0)) {
777 case 0x27708086: /* 82945G/GZ/GC/P/PL */
778 i945_detect_chipset();
780 case 0x27a08086: /* 945GME/GSE */
781 case 0x27ac8086: /* 945GM/PM/GMS/GU/GT, 943/940GML */
782 i945m_detect_chipset();
786 /* Setup all BARs required for early PCIe and raminit */
789 /* Change port80 to LPC */
790 RCBA32(GCS
) &= (~0x04);
792 /* Just do it that way */
793 RCBA32(0x2010) |= (1 << 10);
796 static void i945_prepare_resume(int s3resume
)
798 int cbmem_was_initted
;
800 cbmem_was_initted
= !cbmem_recovery(s3resume
);
802 romstage_handoff_init(cbmem_was_initted
&& s3resume
);
805 void i945_late_initialization(int s3resume
)
807 i945_setup_egress_port();
809 ich7_setup_root_complex_topology();
811 ich7_setup_pci_express();
813 ich7_setup_dmi_rcrb();
815 i945_setup_dmi_rcrb();
817 if (CONFIG(NORTHBRIDGE_INTEL_SUBTYPE_I945GM
))
818 i945_setup_pci_express_x16();
820 i945_setup_root_complex_topology();
822 if (CONFIG(DEBUG_RAM_SETUP
))
823 sdram_dump_mchbar_registers();
825 mchbar_write16(SSKPD
, 0xcafe);
827 i945_prepare_resume(s3resume
);