blob: 16ae55f68a7dde7952acd9dacba1ec84848e90bf [file] [log] [blame]
Stefan Reinauer278534d2008-10-29 04:51:07 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauerbf264e92010-05-14 19:09:20 +00004 * Copyright (C) 2007-2010 coresystems GmbH
Stefan Reinauer278534d2008-10-29 04:51:07 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Reinauer278534d2008-10-29 04:51:07 +000014 */
15
Patrick Georgid0835952010-10-05 09:07:10 +000016#include <stdint.h>
17#include <stdlib.h>
18#include <console/console.h>
Kyösti Mälkkia969ed32016-06-15 06:08:15 +030019#include <arch/acpi.h>
Patrick Georgid0835952010-10-05 09:07:10 +000020#include <arch/io.h>
Patrick Georgid0835952010-10-05 09:07:10 +000021#include <device/pci_def.h>
Vladimir Serbinenko55601882014-10-15 20:17:51 +020022#include <cbmem.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010023#include <halt.h>
Vladimir Serbinenko55601882014-10-15 20:17:51 +020024#include <string.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000025#include "i945.h"
Arthur Heymans874a8f92016-05-19 16:06:09 +020026#include <pc80/mc146818rtc.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000027
Patrick Georgid0835952010-10-05 09:07:10 +000028int i945_silicon_revision(void)
Stefan Reinauer278534d2008-10-29 04:51:07 +000029{
Stefan Reinauer779b3e32008-11-10 15:43:37 +000030 return pci_read_config8(PCI_DEV(0, 0x00, 0), PCI_CLASS_REVISION);
Stefan Reinauer278534d2008-10-29 04:51:07 +000031}
32
Stefan Reinauer71a3d962009-07-21 21:44:24 +000033static void i945m_detect_chipset(void)
Stefan Reinauer278534d2008-10-29 04:51:07 +000034{
35 u8 reg8;
36
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000037 printk(BIOS_INFO, "\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +000038 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe7) & 0x70) >> 4;
39 switch (reg8) {
40 case 1:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000041 printk(BIOS_INFO, "Mobile Intel(R) 82945GM/GME Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000042 break;
43 case 2:
Stefan Reinauer7981b942011-04-01 22:33:25 +020044 printk(BIOS_INFO, "Mobile Intel(R) 82945GMS/GU/GSE Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000045 break;
46 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000047 printk(BIOS_INFO, "Mobile Intel(R) 82945PM Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000048 break;
49 case 5:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000050 printk(BIOS_INFO, "Intel(R) 82945GT Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000051 break;
52 case 6:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000053 printk(BIOS_INFO, "Mobile Intel(R) 82943/82940GML Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000054 break;
55 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000056 printk(BIOS_INFO, "Unknown (%02x)", reg8); /* Others reserved. */
Stefan Reinauer278534d2008-10-29 04:51:07 +000057 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000058 printk(BIOS_INFO, " Chipset\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +000059
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000060 printk(BIOS_DEBUG, "(G)MCH capable of up to FSB ");
Stefan Reinauer278534d2008-10-29 04:51:07 +000061 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe3) & 0xe0) >> 5;
62 switch (reg8) {
63 case 2:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000064 printk(BIOS_DEBUG, "800 MHz"); /* According to 965 spec */
Stefan Reinauer278534d2008-10-29 04:51:07 +000065 break;
66 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000067 printk(BIOS_DEBUG, "667 MHz");
Stefan Reinauer278534d2008-10-29 04:51:07 +000068 break;
69 case 4:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000070 printk(BIOS_DEBUG, "533 MHz");
Stefan Reinauer278534d2008-10-29 04:51:07 +000071 break;
72 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000073 printk(BIOS_DEBUG, "N/A MHz (%02x)", reg8);
Stefan Reinauer278534d2008-10-29 04:51:07 +000074 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000075 printk(BIOS_DEBUG, "\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +000076
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000077 printk(BIOS_DEBUG, "(G)MCH capable of ");
Stefan Reinauer278534d2008-10-29 04:51:07 +000078 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe4) & 0x07);
79 switch (reg8) {
80 case 2:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000081 printk(BIOS_DEBUG, "up to DDR2-667");
Stefan Reinauer278534d2008-10-29 04:51:07 +000082 break;
83 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000084 printk(BIOS_DEBUG, "up to DDR2-533");
Stefan Reinauer278534d2008-10-29 04:51:07 +000085 break;
86 case 4:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000087 printk(BIOS_DEBUG, "DDR2-400");
Stefan Reinauer278534d2008-10-29 04:51:07 +000088 break;
89 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000090 printk(BIOS_INFO, "unknown max. RAM clock (%02x).", reg8); /* Others reserved. */
Stefan Reinauer278534d2008-10-29 04:51:07 +000091 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000092 printk(BIOS_DEBUG, "\n");
Elyes HAOUAS6372a0e2016-10-30 18:39:53 +010093
94 if (IS_ENABLED(CONFIG_NORTHBRIDGE_INTEL_SUBTYPE_I945GC))
95 printk(BIOS_ERR, "coreboot is compiled for the wrong chipset.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +000096}
97
Stefan Reinauer71a3d962009-07-21 21:44:24 +000098static void i945_detect_chipset(void)
99{
100 u8 reg8;
101
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000102 printk(BIOS_INFO, "\nIntel(R) ");
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000103
104 reg8 = ((pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe7) >> 5) & 4) | ((pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe4) >> 4) & 3);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000105 switch (reg8) {
106 case 0:
107 case 1:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000108 printk(BIOS_INFO, "82945G");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000109 break;
110 case 2:
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000111 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000112 printk(BIOS_INFO, "82945P");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000113 break;
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000114 case 4:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000115 printk(BIOS_INFO, "82945GC");
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000116 break;
117 case 5:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000118 printk(BIOS_INFO, "82945GZ");
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000119 break;
120 case 6:
121 case 7:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000122 printk(BIOS_INFO, "82945PL");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000123 break;
124 default:
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000125 break;
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000126 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000127 printk(BIOS_INFO, " Chipset\n");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000128
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000129 printk(BIOS_DEBUG, "(G)MCH capable of ");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000130 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe4) & 0x07);
131 switch (reg8) {
132 case 0:
Elyes HAOUAS5db94502016-10-30 18:30:21 +0100133 case 2:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000134 printk(BIOS_DEBUG, "up to DDR2-667");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000135 break;
136 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000137 printk(BIOS_DEBUG, "up to DDR2-533");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000138 break;
139 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000140 printk(BIOS_INFO, "unknown max. RAM clock (%02x).", reg8); /* Others reserved. */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000141 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000142 printk(BIOS_DEBUG, "\n");
Elyes HAOUAS6372a0e2016-10-30 18:39:53 +0100143
144 if (IS_ENABLED(CONFIG_NORTHBRIDGE_INTEL_SUBTYPE_I945GM))
145 printk(BIOS_ERR, "coreboot is compiled for the wrong chipset.\n");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000146}
147
Stefan Reinauer278534d2008-10-29 04:51:07 +0000148static void i945_setup_bars(void)
149{
Arthur Heymans874a8f92016-05-19 16:06:09 +0200150 u8 reg8, gfxsize;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000151
152 /* As of now, we don't have all the A0 workarounds implemented */
153 if (i945_silicon_revision() == 0)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000154 printk(BIOS_INFO, "Warning: i945 silicon revision A0 might not work correctly.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000155
156 /* Setting up Southbridge. In the northbridge code. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000157 printk(BIOS_DEBUG, "Setting up static southbridge registers...");
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800158 pci_write_config32(PCI_DEV(0, 0x1f, 0), RCBA, (uintptr_t)DEFAULT_RCBA | 1);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000159
160 pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1);
161 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x44 /* ACPI_CNTL */ , 0x80); /* Enable ACPI BAR */
162
163 pci_write_config32(PCI_DEV(0, 0x1f, 0), GPIOBASE, DEFAULT_GPIOBASE | 1);
164 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x4c /* GC */ , 0x10); /* Enable GPIOs */
165 setup_ich7_gpios();
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000166 printk(BIOS_DEBUG, " done.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000167
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000168 printk(BIOS_DEBUG, "Disabling Watchdog reboot...");
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000169 RCBA32(GCS) = RCBA32(GCS) | (1 << 5); /* No reset */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000170 outw((1 << 11), DEFAULT_PMBASE | 0x60 | 0x08); /* halt timer */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000171 printk(BIOS_DEBUG, " done.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000172
Vladimir Serbinenko4aad7432014-11-22 20:36:58 +0100173 /* Enable upper 128bytes of CMOS */
174 RCBA32(0x3400) = (1 << 2);
175
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000176 printk(BIOS_DEBUG, "Setting up static northbridge registers...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000177 /* Set up all hardcoded northbridge BARs */
178 pci_write_config32(PCI_DEV(0, 0x00, 0), EPBAR, DEFAULT_EPBAR | 1);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800179 pci_write_config32(PCI_DEV(0, 0x00, 0), MCHBAR, (uintptr_t)DEFAULT_MCHBAR | 1);
180 pci_write_config32(PCI_DEV(0, 0x00, 0), DMIBAR, (uintptr_t)DEFAULT_DMIBAR | 1);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000181 pci_write_config32(PCI_DEV(0, 0x00, 0), X60BAR, DEFAULT_X60BAR | 1);
182
Arthur Heymans874a8f92016-05-19 16:06:09 +0200183 /* vram size from cmos option */
184 if (get_option(&gfxsize, "gfx_uma_size") != CB_SUCCESS)
185 gfxsize = 2; /* 2 for 8MB */
186 /* make sure no invalid setting is used */
187 if (gfxsize > 6)
188 gfxsize = 2;
189 pci_write_config16(PCI_DEV(0, 0x00, 0), GGC, ((gfxsize + 1) << 4));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000190
191 /* Set C0000-FFFFF to access RAM on both reads and writes */
192 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM0, 0x30);
193 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM1, 0x33);
194 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM2, 0x33);
195 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM3, 0x33);
196 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM4, 0x33);
197 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM5, 0x33);
198 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM6, 0x33);
199
Sven Schnelled8c68a92011-06-15 09:26:34 +0200200 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, SKPAD_NORMAL_BOOT_MAGIC);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000201 printk(BIOS_DEBUG, " done.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000202
203 /* Wait for MCH BAR to come up */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000204 printk(BIOS_DEBUG, "Waiting for MCHBAR to come up...");
Elyes HAOUASa3ea1e42014-11-27 13:23:32 +0100205 if ((pci_read_config32(PCI_DEV(0, 0x00, 0), 0xe4) & 0x20000) == 0x00) { /* Bit 49 of CAPID0 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000206 do {
207 reg8 = *(volatile u8 *)0xfed40000;
208 } while (!(reg8 & 0x80));
209 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000210 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000211}
212
213static void i945_setup_egress_port(void)
214{
215 u32 reg32;
216 u32 timeout;
217
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000218 printk(BIOS_DEBUG, "Setting up Egress Port RCRB\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000219
220 /* Egress Port Virtual Channel 0 Configuration */
221
222 /* map only TC0 to VC0 */
223 reg32 = EPBAR32(EPVC0RCTL);
224 reg32 &= 0xffffff01;
225 EPBAR32(EPVC0RCTL) = reg32;
226
Stefan Reinauer278534d2008-10-29 04:51:07 +0000227 reg32 = EPBAR32(EPPVCCAP1);
228 reg32 &= ~(7 << 0);
229 reg32 |= 1;
230 EPBAR32(EPPVCCAP1) = reg32;
231
232 /* Egress Port Virtual Channel 1 Configuration */
233 reg32 = EPBAR32(0x2c);
234 reg32 &= 0xffffff00;
235 if ((MCHBAR32(CLKCFG) & 7) == 1)
236 reg32 |= 0x0d; /* 533MHz */
237 if ((MCHBAR32(CLKCFG) & 7) == 3)
238 reg32 |= 0x10; /* 667MHz */
239 EPBAR32(0x2c) = reg32;
240
241 EPBAR32(EPVC1MTS) = 0x0a0a0a0a;
242
243 reg32 = EPBAR32(EPVC1RCAP);
244 reg32 &= ~(0x7f << 16);
245 reg32 |= (0x0a << 16);
246 EPBAR32(EPVC1RCAP) = reg32;
247
248 if ((MCHBAR32(CLKCFG) & 7) == 1) { /* 533MHz */
249 EPBAR32(EPVC1IST + 0) = 0x009c009c;
250 EPBAR32(EPVC1IST + 4) = 0x009c009c;
251 }
252
253 if ((MCHBAR32(CLKCFG) & 7) == 3) { /* 667MHz */
254 EPBAR32(EPVC1IST + 0) = 0x00c000c0;
255 EPBAR32(EPVC1IST + 4) = 0x00c000c0;
256 }
257
258 /* Is internal graphics enabled? */
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +0300259 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1)) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000260 MCHBAR32(MMARB1) |= (1 << 17);
261 }
262
263 /* Assign Virtual Channel ID 1 to VC1 */
264 reg32 = EPBAR32(EPVC1RCTL);
265 reg32 &= ~(7 << 24);
266 reg32 |= (1 << 24);
267 EPBAR32(EPVC1RCTL) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000268
Stefan Reinauer278534d2008-10-29 04:51:07 +0000269 reg32 = EPBAR32(EPVC1RCTL);
270 reg32 &= 0xffffff01;
271 reg32 |= (1 << 7);
272 EPBAR32(EPVC1RCTL) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000273
Stefan Reinauer278534d2008-10-29 04:51:07 +0000274 EPBAR32(PORTARB + 0x00) = 0x01000001;
275 EPBAR32(PORTARB + 0x04) = 0x00040000;
276 EPBAR32(PORTARB + 0x08) = 0x00001000;
277 EPBAR32(PORTARB + 0x0c) = 0x00000040;
278 EPBAR32(PORTARB + 0x10) = 0x01000001;
279 EPBAR32(PORTARB + 0x14) = 0x00040000;
280 EPBAR32(PORTARB + 0x18) = 0x00001000;
281 EPBAR32(PORTARB + 0x1c) = 0x00000040;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000282
Stefan Reinauer278534d2008-10-29 04:51:07 +0000283 EPBAR32(EPVC1RCTL) |= (1 << 16);
284 EPBAR32(EPVC1RCTL) |= (1 << 16);
285
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000286 printk(BIOS_DEBUG, "Loading port arbitration table ...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000287 /* Loop until bit 0 becomes 0 */
288 timeout = 0x7fffff;
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200289 while ((EPBAR16(EPVC1RSTS) & 1) && --timeout);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000290 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000291 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000292 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000293 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000294
295 /* Now enable VC1 */
296 EPBAR32(EPVC1RCTL) |= (1 << 31);
297
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000298 printk(BIOS_DEBUG, "Wait for VC1 negotiation ...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000299 /* Wait for VC1 negotiation pending */
300 timeout = 0x7fff;
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200301 while ((EPBAR16(EPVC1RSTS) & (1 << 1)) && --timeout);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000302 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000303 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000304 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000305 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000306
307}
308
309static void ich7_setup_dmi_rcrb(void)
310{
311 u16 reg16;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000312 u32 reg32;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000313
Stefan Reinauer278534d2008-10-29 04:51:07 +0000314 reg16 = RCBA16(LCTL);
315 reg16 &= ~(3 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000316 reg16 |= 3;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000317 RCBA16(LCTL) = reg16;
318
319 RCBA32(V0CTL) = 0x80000001;
320 RCBA32(V1CAP) = 0x03128010;
321 RCBA32(ESD) = 0x00000810;
322 RCBA32(RP1D) = 0x01000003;
323 RCBA32(RP2D) = 0x02000002;
324 RCBA32(RP3D) = 0x03000002;
325 RCBA32(RP4D) = 0x04000002;
326 RCBA32(HDD) = 0x0f000003;
327 RCBA32(RP5D) = 0x05000002;
328
329 RCBA32(RPFN) = 0x00543210;
330
Stefan Reinauer30140a52009-03-11 16:20:39 +0000331 pci_write_config16(PCI_DEV(0, 0x1c, 0), 0x42, 0x0141);
332 pci_write_config16(PCI_DEV(0, 0x1c, 4), 0x42, 0x0141);
333 pci_write_config16(PCI_DEV(0, 0x1c, 5), 0x42, 0x0141);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000334
Stefan Reinauer30140a52009-03-11 16:20:39 +0000335 pci_write_config32(PCI_DEV(0, 0x1c, 4), 0x54, 0x00480ce0);
336 pci_write_config32(PCI_DEV(0, 0x1c, 5), 0x54, 0x00500ce0);
337
338 reg32 = RCBA32(V1CTL);
339 reg32 &= ~( (0x7f << 1) | (7 << 17) | (7 << 24) );
340 reg32 |= (0x40 << 1) | (4 << 17) | (1 << 24) | (1 << 31);
341 RCBA32(V1CTL) = reg32;
342
343 RCBA32(ESD) |= (2 << 16);
344
345 RCBA32(ULD) |= (1 << 24) | (1 << 16);
346
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800347 RCBA32(ULBA) = (uintptr_t)DEFAULT_DMIBAR;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000348
349 RCBA32(RP1D) |= (2 << 16);
350 RCBA32(RP2D) |= (2 << 16);
351 RCBA32(RP3D) |= (2 << 16);
352 RCBA32(RP4D) |= (2 << 16);
353 RCBA32(HDD) |= (2 << 16);
354 RCBA32(RP5D) |= (2 << 16);
355 RCBA32(RP6D) |= (2 << 16);
356
357 RCBA32(LCAP) |= (3 << 10);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000358}
359
360static void i945_setup_dmi_rcrb(void)
361{
362 u32 reg32;
363 u32 timeout;
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000364 int activate_aspm = 1; /* hardcode ASPM for now */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000365
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000366 printk(BIOS_DEBUG, "Setting up DMI RCRB\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000367
368 /* Virtual Channel 0 Configuration */
369 reg32 = DMIBAR32(DMIVC0RCTL0);
370 reg32 &= 0xffffff01;
371 DMIBAR32(DMIVC0RCTL0) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000372
Stefan Reinauer278534d2008-10-29 04:51:07 +0000373 reg32 = DMIBAR32(DMIPVCCAP1);
374 reg32 &= ~(7 << 0);
375 reg32 |= 1;
376 DMIBAR32(DMIPVCCAP1) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000377
Stefan Reinauer278534d2008-10-29 04:51:07 +0000378 reg32 = DMIBAR32(DMIVC1RCTL);
379 reg32 &= ~(7 << 24);
380 reg32 |= (1 << 24); /* NOTE: This ID must match ICH7 side */
381 DMIBAR32(DMIVC1RCTL) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000382
Stefan Reinauer278534d2008-10-29 04:51:07 +0000383 reg32 = DMIBAR32(DMIVC1RCTL);
384 reg32 &= 0xffffff01;
385 reg32 |= (1 << 7);
386 DMIBAR32(DMIVC1RCTL) = reg32;
387
388 /* Now enable VC1 */
389 DMIBAR32(DMIVC1RCTL) |= (1 << 31);
390
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000391 printk(BIOS_DEBUG, "Wait for VC1 negotiation ...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000392 /* Wait for VC1 negotiation pending */
393 timeout = 0x7ffff;
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200394 while ((DMIBAR16(DMIVC1RSTS) & (1 << 1)) && --timeout);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000395 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000396 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000397 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000398 printk(BIOS_DEBUG, "done..\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000399#if 1
400 /* Enable Active State Power Management (ASPM) L0 state */
401
402 reg32 = DMIBAR32(DMILCAP);
403 reg32 &= ~(7 << 12);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000404 reg32 |= (2 << 12);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000405
406 reg32 &= ~(7 << 15);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000407
Stefan Reinauer30140a52009-03-11 16:20:39 +0000408 reg32 |= (2 << 15);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000409 DMIBAR32(DMILCAP) = reg32;
410
411 reg32 = DMIBAR32(DMICC);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000412 reg32 &= 0x00ffffff;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000413 reg32 &= ~(3 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000414 reg32 |= (1 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000415 reg32 &= ~(3 << 20);
416 reg32 |= (1 << 20);
417
Stefan Reinauer278534d2008-10-29 04:51:07 +0000418 DMIBAR32(DMICC) = reg32;
419
Stefan Reinauer30140a52009-03-11 16:20:39 +0000420 if (activate_aspm) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000421 DMIBAR32(DMILCTL) |= (3 << 0);
422 }
423#endif
424
425 /* Last but not least, some additional steps */
426 reg32 = MCHBAR32(FSBSNPCTL);
427 reg32 &= ~(0xff << 2);
428 reg32 |= (0xaa << 2);
429 MCHBAR32(FSBSNPCTL) = reg32;
430
431 DMIBAR32(0x2c) = 0x86000040;
432
433 reg32 = DMIBAR32(0x204);
434 reg32 &= ~0x3ff;
435#if 1
436 reg32 |= 0x13f; /* for x4 DMI only */
437#else
438 reg32 |= 0x1e4; /* for x2 DMI only */
439#endif
440 DMIBAR32(0x204) = reg32;
441
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +0300442 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1)) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000443 printk(BIOS_DEBUG, "Internal graphics: enabled\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000444 DMIBAR32(0x200) |= (1 << 21);
445 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000446 printk(BIOS_DEBUG, "Internal graphics: disabled\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000447 DMIBAR32(0x200) &= ~(1 << 21);
448 }
449
450 reg32 = DMIBAR32(0x204);
451 reg32 &= ~((1 << 11) | (1 << 10));
452 DMIBAR32(0x204) = reg32;
453
454 reg32 = DMIBAR32(0x204);
455 reg32 &= ~(0xff << 12);
456 reg32 |= (0x0d << 12);
457 DMIBAR32(0x204) = reg32;
458
459 DMIBAR32(DMICTL1) |= (3 << 24);
460
461 reg32 = DMIBAR32(0x200);
462 reg32 &= ~(0x3 << 26);
463 reg32 |= (0x02 << 26);
464 DMIBAR32(0x200) = reg32;
465
466 DMIBAR32(DMIDRCCFG) &= ~(1 << 31);
467 DMIBAR32(DMICTL2) |= (1 << 31);
468
469 if (i945_silicon_revision() >= 3) {
470 reg32 = DMIBAR32(0xec0);
471 reg32 &= 0x0fffffff;
472 reg32 |= (2 << 28);
473 DMIBAR32(0xec0) = reg32;
474
475 reg32 = DMIBAR32(0xed4);
476 reg32 &= 0x0fffffff;
477 reg32 |= (2 << 28);
478 DMIBAR32(0xed4) = reg32;
479
480 reg32 = DMIBAR32(0xee8);
481 reg32 &= 0x0fffffff;
482 reg32 |= (2 << 28);
483 DMIBAR32(0xee8) = reg32;
484
485 reg32 = DMIBAR32(0xefc);
486 reg32 &= 0x0fffffff;
487 reg32 |= (2 << 28);
488 DMIBAR32(0xefc) = reg32;
489 }
490
491 /* wait for bit toggle to 0 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000492 printk(BIOS_DEBUG, "Waiting for DMI hardware...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000493 timeout = 0x7fffff;
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200494 while ((DMIBAR8(0x32) & (1 << 1)) && --timeout);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000495 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000496 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000497 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000498 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000499
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000500 /* Clear Error Status Bits! */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000501 DMIBAR32(0x1c4) = 0xffffffff;
502 DMIBAR32(0x1d0) = 0xffffffff;
503 DMIBAR32(0x228) = 0xffffffff;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000504
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000505 /* Program Read-Only Write-Once Registers */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000506 DMIBAR32(0x308) = DMIBAR32(0x308);
507 DMIBAR32(0x314) = DMIBAR32(0x314);
508 DMIBAR32(0x324) = DMIBAR32(0x324);
509 DMIBAR32(0x328) = DMIBAR32(0x328);
510 DMIBAR32(0x338) = DMIBAR32(0x334);
511 DMIBAR32(0x338) = DMIBAR32(0x338);
512
Patrick Georgia341a772014-09-29 19:51:21 +0200513 if (i945_silicon_revision() == 1 && (MCHBAR8(DFT_STRAP1) & (1 << 5))) {
Stefan Reinauer30140a52009-03-11 16:20:39 +0000514 if ((MCHBAR32(0x214) & 0xf) != 0x3) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000515 printk(BIOS_INFO, "DMI link requires A1 stepping workaround. Rebooting.\n");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000516 reg32 = DMIBAR32(0x224);
517 reg32 &= ~(7 << 0);
518 reg32 |= (3 << 0);
519 DMIBAR32(0x224) = reg32;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000520 outb(0x06, 0xcf9);
Patrick Georgi546953c2014-11-29 10:38:17 +0100521 halt(); /* wait for reset */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000522 }
523 }
524}
525
526static void i945_setup_pci_express_x16(void)
527{
528 u32 timeout;
529 u32 reg32;
530 u16 reg16;
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000531
Stefan Reinauer30140a52009-03-11 16:20:39 +0000532 u8 reg8;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000533
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000534 printk(BIOS_DEBUG, "Enabling PCI Express x16 Link\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000535
536 reg16 = pci_read_config16(PCI_DEV(0, 0x00, 0), DEVEN);
537 reg16 |= DEVEN_D1F0;
538 pci_write_config16(PCI_DEV(0, 0x00, 0), DEVEN, reg16);
539
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300540 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x208);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000541 reg32 &= ~(1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300542 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x208, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000543
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000544 /* We have no success with querying the usual PCIe registers
545 * for link setup success on the i945. Hence we assign a temporary
546 * PCI bus 0x0a and check whether we find a device on 0:a.0
547 */
548
549 /* First we reset the secondary bus */
550 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0x3e);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000551 reg16 |= (1 << 6); /* SRESET */
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000552 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16);
553 /* Read back and clear reset bit. */
554 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0x3e);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000555 reg16 &= ~(1 << 6); /* SRESET */
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000556 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16);
557
558 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0xba);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000559 printk(BIOS_DEBUG, "SLOTSTS: %04x\n", reg16);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000560 if (!(reg16 & 0x48)) {
561 goto disable_pciexpress_x16_link;
562 }
563 reg16 |= (1 << 4) | (1 << 0);
564 pci_write_config16(PCI_DEV(0, 0x01, 0), 0xba, reg16);
565
566 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x19, 0x00);
567 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x1a, 0x00);
568 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x19, 0x0a);
569 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x1a, 0x0a);
570
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300571 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x224);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000572 reg32 &= ~(1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300573 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x224, reg32);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000574
Stefan Reinauer30140a52009-03-11 16:20:39 +0000575 MCHBAR16(UPMC1) &= ~( (1 << 5) | (1 << 0) );
576
Martin Roth128c1042016-11-18 09:29:03 -0700577 /* Initialize PEG_CAP */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300578 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0xa2);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000579 reg16 |= (1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300580 pci_write_config16(PCI_DEV(0, 0x01, 0), 0xa2, reg16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000581
582 /* Setup SLOTCAP */
583 /* TODO: These values are mainboard dependent and should
Uwe Hermann607614d2010-11-18 20:12:13 +0000584 * be set from devicetree.cb.
Stefan Reinauer30140a52009-03-11 16:20:39 +0000585 */
586 /* NOTE: SLOTCAP becomes RO after the first write! */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300587 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xb4);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000588 reg32 &= 0x0007ffff;
589
590 reg32 &= 0xfffe007f;
591
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300592 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xb4, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000593
594 /* Wait for training to succeed */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000595 printk(BIOS_DEBUG, "PCIe link training ...");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000596 timeout = 0x7ffff;
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200597 while ((((pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS) >> 16) & 3) != 3) && --timeout);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000598
599 reg32 = pci_read_config32(PCI_DEV(0x0a, 0x0, 0), 0);
600 if (reg32 != 0x00000000 && reg32 != 0xffffffff) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000601 printk(BIOS_DEBUG, " Detected PCIe device %04x:%04x\n",
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000602 reg32 & 0xffff, reg32 >> 16);
603 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000604 printk(BIOS_DEBUG, " timeout!\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000605
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000606 printk(BIOS_DEBUG, "Restrain PCIe port to x1\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000607
Patrick Georgid3060ed2014-08-10 15:19:45 +0200608 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000609 reg32 &= ~(0xf << 1);
610 reg32 |=1;
Patrick Georgid3060ed2014-08-10 15:19:45 +0200611 pci_write_config32(PCI_DEV(0, 0x01, 0), PEGSTS, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000612
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300613 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0x3e);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000614
615 reg16 |= (1 << 6);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300616 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000617 reg16 &= ~(1 << 6);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300618 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000619
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000620 printk(BIOS_DEBUG, "PCIe link training ...");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000621 timeout = 0x7ffff;
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200622 while ((((pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS) >> 16) & 3) != 3) && --timeout);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000623
624 reg32 = pci_read_config32(PCI_DEV(0xa, 0x00, 0), 0);
625 if (reg32 != 0x00000000 && reg32 != 0xffffffff) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000626 printk(BIOS_DEBUG, " Detected PCIe x1 device %04x:%04x\n",
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000627 reg32 & 0xffff, reg32 >> 16);
628 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000629 printk(BIOS_DEBUG, " timeout!\n");
630 printk(BIOS_DEBUG, "Disabling PCIe x16 port completely.\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000631 goto disable_pciexpress_x16_link;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000632 }
Stefan Reinauer30140a52009-03-11 16:20:39 +0000633 }
634
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300635 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0xb2);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000636 reg16 >>= 4;
637 reg16 &= 0x3f;
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000638 /* reg16 == 1 -> x1; reg16 == 16 -> x16 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000639 printk(BIOS_DEBUG, "PCIe x%d link training succeeded.\n", reg16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000640
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300641 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x204);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000642 reg32 &= 0xfffffc00; /* clear [9:0] */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000643 if (reg16 == 1) {
644 reg32 |= 0x32b;
645 // TODO
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300646 /* pci_write_config32(PCI_DEV(0, 0x01, 0), 0x204, reg32); */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000647 } else if (reg16 == 16) {
648 reg32 |= 0x0f4;
649 // TODO
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300650 /* pci_write_config32(PCI_DEV(0, 0x01, 0), 0x204, reg32); */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000651 }
652
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000653 reg32 = (pci_read_config32(PCI_DEV(0xa, 0, 0), 0x8) >> 8);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000654 printk(BIOS_DEBUG, "PCIe device class: %06x\n", reg32);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000655 if (reg32 == 0x030000) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000656 printk(BIOS_DEBUG, "PCIe device is VGA. Disabling IGD.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000657 reg16 = (1 << 1);
658 pci_write_config16(PCI_DEV(0, 0x0, 0), 0x52, reg16);
659
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +0300660 reg32 = pci_read_config32(PCI_DEV(0, 0x0, 0), DEVEN);
661 reg32 &= ~(DEVEN_D2F0 | DEVEN_D2F1);
662 pci_write_config32(PCI_DEV(0, 0x0, 0), DEVEN, reg32);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000663
664 /* Set VGA enable bit in PCIe bridge */
665 reg16 = pci_read_config16(PCI_DEV(0, 0x1, 0), 0x3e);
666 reg16 |= (1 << 3);
667 pci_write_config16(PCI_DEV(0, 0x1, 0), 0x3e, reg16);
668 }
669
Stefan Reinauer30140a52009-03-11 16:20:39 +0000670 /* Enable GPEs */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300671 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xec);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000672 reg32 |= (1 << 2) | (1 << 1) | (1 << 0); /* PMEGPE, HPGPE, GENGPE */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300673 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x114, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000674
675 /* Virtual Channel Configuration: Only VC0 on PCIe x16 */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300676 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x114);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000677 reg32 &= 0xffffff01;
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300678 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x114, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000679
680 /* Extended VC count */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300681 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x104);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000682 reg32 &= ~(7 << 0);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300683 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x104, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000684
685 /* Active State Power Management ASPM */
686
687 /* TODO */
688
689 /* Clear error bits */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300690 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x06, 0xffff);
691 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x1e, 0xffff);
692 pci_write_config16(PCI_DEV(0, 0x01, 0), 0xaa, 0xffff);
693 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x1c4, 0xffffffff);
694 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x1d0, 0xffffffff);
695 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x1f0, 0xffffffff);
696 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x228, 0xffffffff);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000697
698 /* Program R/WO registers */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300699 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x308);
700 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x308, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000701
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300702 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x314);
703 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x314, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000704
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300705 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x324);
706 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x324, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000707
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300708 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x328);
709 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x328, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000710
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300711 reg8 = pci_read_config8(PCI_DEV(0, 0x01, 0), 0xb4);
712 pci_write_config8(PCI_DEV(0, 0x01, 0), 0xb4, reg8);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000713
714 /* Additional PCIe graphics setup */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300715 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000716 reg32 |= (3 << 26);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300717 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000718
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300719 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000720 reg32 |= (3 << 24);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300721 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000722
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300723 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000724 reg32 |= (1 << 5);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300725 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000726
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300727 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x200);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000728 reg32 &= ~(3 << 26);
729 reg32 |= (2 << 26);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300730 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x200, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000731
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300732 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xe80);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000733 if (i945_silicon_revision() >= 2) {
734 reg32 |= (1 << 12);
735 } else {
736 reg32 &= ~(1 << 12);
737 }
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300738 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xe80, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000739
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300740 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xeb4);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000741 reg32 &= ~(1 << 31);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300742 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xeb4, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000743
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300744 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xfc);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000745 reg32 |= (1 << 31);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300746 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xfc, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000747
748 if (i945_silicon_revision() >= 3) {
749 static const u32 reglist[] = {
750 0xec0, 0xed4, 0xee8, 0xefc, 0xf10, 0xf24,
751 0xf38, 0xf4c, 0xf60, 0xf74, 0xf88, 0xf9c,
752 0xfb0, 0xfc4, 0xfd8, 0xfec
753 };
754
755 int i;
Elyes HAOUAS0a15fe92016-09-17 19:12:27 +0200756 for (i = 0; i < ARRAY_SIZE(reglist); i++) {
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300757 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), reglist[i]);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000758 reg32 &= 0x0fffffff;
759 reg32 |= (2 << 28);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300760 pci_write_config32(PCI_DEV(0, 0x01, 0), reglist[i], reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000761 }
762 }
763
764 if (i945_silicon_revision() <= 2 ) {
765 /* Set voltage specific parameters */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300766 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xe80);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000767 reg32 &= (0xf << 4); /* Default case 1.05V */
Patrick Georgi3cb86de2014-09-29 20:42:33 +0200768 if ((MCHBAR32(DFT_STRAP1) & (1 << 20)) == 0) { /* 1.50V */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000769 reg32 |= (7 << 4);
770 }
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300771 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xe80, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000772 }
773
774 return;
775
776disable_pciexpress_x16_link:
Stefan Reinauer278534d2008-10-29 04:51:07 +0000777 /* For now we just disable the x16 link */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000778 printk(BIOS_DEBUG, "Disabling PCI Express x16 Link\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000779
780 MCHBAR16(UPMC1) |= (1 << 5) | (1 << 0);
781
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300782 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), BCTRL1);
Stefan Reinauer779b3e32008-11-10 15:43:37 +0000783 reg16 |= (1 << 6);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300784 pci_write_config16(PCI_DEV(0, 0x01, 0), BCTRL1, reg16);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000785
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300786 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x224);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000787 reg32 |= (1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300788 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x224, reg32);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000789
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300790 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), BCTRL1);
Stefan Reinauer779b3e32008-11-10 15:43:37 +0000791 reg16 &= ~(1 << 6);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300792 pci_write_config16(PCI_DEV(0, 0x01, 0), BCTRL1, reg16);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000793
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000794 printk(BIOS_DEBUG, "Wait for link to enter detect state... ");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000795 timeout = 0x7fffff;
Patrick Georgid3060ed2014-08-10 15:19:45 +0200796 for (reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS);
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200797 (reg32 & 0x000f0000) && --timeout;);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000798 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000799 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000800 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000801 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000802
803 /* Finally: Disable the PCI config header */
804 reg16 = pci_read_config16(PCI_DEV(0, 0x00, 0), DEVEN);
805 reg16 &= ~DEVEN_D1F0;
806 pci_write_config16(PCI_DEV(0, 0x00, 0), DEVEN, reg16);
807}
808
809static void i945_setup_root_complex_topology(void)
810{
811 u32 reg32;
812
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000813 printk(BIOS_DEBUG, "Setting up Root Complex Topology\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000814 /* Egress Port Root Topology */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000815
Stefan Reinauer278534d2008-10-29 04:51:07 +0000816 reg32 = EPBAR32(EPESD);
817 reg32 &= 0xff00ffff;
818 reg32 |= (1 << 16);
819 EPBAR32(EPESD) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000820
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000821 EPBAR32(EPLE1D) |= (1 << 16) | (1 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000822
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800823 EPBAR32(EPLE1A) = (uintptr_t)DEFAULT_DMIBAR;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000824
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000825 EPBAR32(EPLE2D) |= (1 << 16) | (1 << 0);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000826
827 /* DMI Port Root Topology */
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000828
Stefan Reinauer278534d2008-10-29 04:51:07 +0000829 reg32 = DMIBAR32(DMILE1D);
830 reg32 &= 0x00ffffff;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000831
Stefan Reinauer278534d2008-10-29 04:51:07 +0000832 reg32 &= 0xff00ffff;
833 reg32 |= (2 << 16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000834
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000835 reg32 |= (1 << 0);
836 DMIBAR32(DMILE1D) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000837
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800838 DMIBAR32(DMILE1A) = (uintptr_t)DEFAULT_RCBA;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000839
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000840 DMIBAR32(DMILE2D) |= (1 << 16) | (1 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000841
842 DMIBAR32(DMILE2A) = DEFAULT_EPBAR;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000843
844 /* PCI Express x16 Port Root Topology */
845 if (pci_read_config8(PCI_DEV(0, 0x00, 0), DEVEN) & DEVEN_D1F0) {
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300846 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x158, DEFAULT_EPBAR);
847 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x150);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000848 reg32 |= (1 << 0);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300849 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x150, reg32);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000850 }
851}
852
853static void ich7_setup_root_complex_topology(void)
854{
855 RCBA32(0x104) = 0x00000802;
856 RCBA32(0x110) = 0x00000001;
857 RCBA32(0x114) = 0x00000000;
858 RCBA32(0x118) = 0x00000000;
859}
860
861static void ich7_setup_pci_express(void)
862{
Stefan Reinauer30140a52009-03-11 16:20:39 +0000863 RCBA32(CG) |= (1 << 0);
864
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000865 /* Initialize slot power limit for root ports */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000866 pci_write_config32(PCI_DEV(0, 0x1c, 0), 0x54, 0x00000060);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000867#if 0
868 pci_write_config32(PCI_DEV(0, 0x1c, 4), 0x54, 0x00480ce0);
869 pci_write_config32(PCI_DEV(0, 0x1c, 5), 0x54, 0x00500ce0);
870#endif
Stefan Reinauer278534d2008-10-29 04:51:07 +0000871
872 pci_write_config32(PCI_DEV(0, 0x1c, 0), 0xd8, 0x00110000);
873}
874
Patrick Georgid0835952010-10-05 09:07:10 +0000875void i945_early_initialization(void)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000876{
877 /* Print some chipset specific information */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000878 switch (pci_read_config32(PCI_DEV(0, 0x00, 0), 0)) {
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000879 case 0x27708086: /* 82945G/GZ/GC/P/PL */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000880 i945_detect_chipset();
881 break;
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000882 case 0x27a08086: /* 945GME/GSE */
883 case 0x27ac8086: /* 945GM/PM/GMS/GU/GT, 943/940GML */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000884 i945m_detect_chipset();
885 break;
886 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000887
888 /* Setup all BARs required for early PCIe and raminit */
889 i945_setup_bars();
890
891 /* Change port80 to LPC */
892 RCBA32(GCS) &= (~0x04);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000893
894 /* Just do it that way */
895 RCBA32(0x2010) |= (1 << 10);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000896}
897
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200898static void i945_prepare_resume(int s3resume)
899{
900 int cbmem_was_initted;
901
902 cbmem_was_initted = !cbmem_recovery(s3resume);
903
904 /* If there is no high memory area, we didn't boot before, so
905 * this is not a resume. In that case we just create the cbmem toc.
906 */
907 if (s3resume && cbmem_was_initted) {
Kyösti Mälkkie6b5a4f2016-06-17 22:52:04 +0300908 acpi_prepare_for_resume();
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200909
910 /* Magic for S3 resume */
911 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD,
912 SKPAD_ACPI_S3_MAGIC);
913 }
914}
915
916void i945_late_initialization(int s3resume)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000917{
918 i945_setup_egress_port();
919
920 ich7_setup_root_complex_topology();
921
922 ich7_setup_pci_express();
923
924 ich7_setup_dmi_rcrb();
925
926 i945_setup_dmi_rcrb();
927
928 i945_setup_pci_express_x16();
929
930 i945_setup_root_complex_topology();
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200931
932#if !CONFIG_HAVE_ACPI_RESUME
933#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
934#if CONFIG_DEBUG_RAM_SETUP
935 sdram_dump_mchbar_registers();
936
937 {
938 /* This will not work if TSEG is in place! */
Paul Menzel9d3e1312014-06-05 08:50:17 +0200939 u32 tom = pci_read_config32(PCI_DEV(0, 2, 0), BSM);
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200940
941 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
942 ram_check(0x00000000, 0x000a0000);
943 ram_check(0x00100000, tom);
944 }
945#endif
946#endif
947#endif
948
949 MCHBAR16(SSKPD) = 0xCAFE;
950
951 i945_prepare_resume(s3resume);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000952}