blob: b12ad3a63e334d97b6b709f2afa9faf906ac477d [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer278534d2008-10-29 04:51:07 +000018 */
19
Patrick Georgid0835952010-10-05 09:07:10 +000020#include <stdint.h>
21#include <stdlib.h>
22#include <console/console.h>
23#include <arch/io.h>
Patrick Georgid0835952010-10-05 09:07:10 +000024#include <device/pci_def.h>
Vladimir Serbinenko55601882014-10-15 20:17:51 +020025#include <cbmem.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010026#include <halt.h>
Vladimir Serbinenko55601882014-10-15 20:17:51 +020027#include <string.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000028#include "i945.h"
Stefan Reinauer278534d2008-10-29 04:51:07 +000029
Patrick Georgid0835952010-10-05 09:07:10 +000030int i945_silicon_revision(void)
Stefan Reinauer278534d2008-10-29 04:51:07 +000031{
Stefan Reinauer779b3e32008-11-10 15:43:37 +000032 return pci_read_config8(PCI_DEV(0, 0x00, 0), PCI_CLASS_REVISION);
Stefan Reinauer278534d2008-10-29 04:51:07 +000033}
34
Stefan Reinauer71a3d962009-07-21 21:44:24 +000035static void i945m_detect_chipset(void)
Stefan Reinauer278534d2008-10-29 04:51:07 +000036{
37 u8 reg8;
38
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000039 printk(BIOS_INFO, "\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +000040 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe7) & 0x70) >> 4;
41 switch (reg8) {
42 case 1:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000043 printk(BIOS_INFO, "Mobile Intel(R) 82945GM/GME Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000044 break;
45 case 2:
Stefan Reinauer7981b942011-04-01 22:33:25 +020046 printk(BIOS_INFO, "Mobile Intel(R) 82945GMS/GU/GSE Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000047 break;
48 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000049 printk(BIOS_INFO, "Mobile Intel(R) 82945PM Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000050 break;
51 case 5:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000052 printk(BIOS_INFO, "Intel(R) 82945GT Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000053 break;
54 case 6:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000055 printk(BIOS_INFO, "Mobile Intel(R) 82943/82940GML Express");
Stefan Reinauer278534d2008-10-29 04:51:07 +000056 break;
57 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000058 printk(BIOS_INFO, "Unknown (%02x)", reg8); /* Others reserved. */
Stefan Reinauer278534d2008-10-29 04:51:07 +000059 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000060 printk(BIOS_INFO, " Chipset\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +000061
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000062 printk(BIOS_DEBUG, "(G)MCH capable of up to FSB ");
Stefan Reinauer278534d2008-10-29 04:51:07 +000063 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe3) & 0xe0) >> 5;
64 switch (reg8) {
65 case 2:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000066 printk(BIOS_DEBUG, "800 MHz"); /* According to 965 spec */
Stefan Reinauer278534d2008-10-29 04:51:07 +000067 break;
68 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000069 printk(BIOS_DEBUG, "667 MHz");
Stefan Reinauer278534d2008-10-29 04:51:07 +000070 break;
71 case 4:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000072 printk(BIOS_DEBUG, "533 MHz");
Stefan Reinauer278534d2008-10-29 04:51:07 +000073 break;
74 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000075 printk(BIOS_DEBUG, "N/A MHz (%02x)", reg8);
Stefan Reinauer278534d2008-10-29 04:51:07 +000076 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000077 printk(BIOS_DEBUG, "\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +000078
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000079 printk(BIOS_DEBUG, "(G)MCH capable of ");
Stefan Reinauer278534d2008-10-29 04:51:07 +000080 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe4) & 0x07);
81 switch (reg8) {
82 case 2:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000083 printk(BIOS_DEBUG, "up to DDR2-667");
Stefan Reinauer278534d2008-10-29 04:51:07 +000084 break;
85 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000086 printk(BIOS_DEBUG, "up to DDR2-533");
Stefan Reinauer278534d2008-10-29 04:51:07 +000087 break;
88 case 4:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000089 printk(BIOS_DEBUG, "DDR2-400");
Stefan Reinauer278534d2008-10-29 04:51:07 +000090 break;
91 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000092 printk(BIOS_INFO, "unknown max. RAM clock (%02x).", reg8); /* Others reserved. */
Stefan Reinauer278534d2008-10-29 04:51:07 +000093 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000094 printk(BIOS_DEBUG, "\n");
Kyösti Mälkkieb5e28f2012-02-24 16:08:18 +020095#if CONFIG_NORTHBRIDGE_INTEL_SUBTYPE_I945GC
Stefan Reinauer7981b942011-04-01 22:33:25 +020096 printk(BIOS_ERR, "coreboot is compiled for the wrong chipset.\n");
97#endif
Stefan Reinauer278534d2008-10-29 04:51:07 +000098}
99
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000100static void i945_detect_chipset(void)
101{
102 u8 reg8;
103
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000104 printk(BIOS_INFO, "\nIntel(R) ");
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000105
106 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 +0000107 switch (reg8) {
108 case 0:
109 case 1:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000110 printk(BIOS_INFO, "82945G");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000111 break;
112 case 2:
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000113 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000114 printk(BIOS_INFO, "82945P");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000115 break;
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000116 case 4:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000117 printk(BIOS_INFO, "82945GC");
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000118 break;
119 case 5:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000120 printk(BIOS_INFO, "82945GZ");
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000121 break;
122 case 6:
123 case 7:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000124 printk(BIOS_INFO, "82945PL");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000125 break;
126 default:
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000127 break;
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000128 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000129 printk(BIOS_INFO, " Chipset\n");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000130
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000131 printk(BIOS_DEBUG, "(G)MCH capable of ");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000132 reg8 = (pci_read_config8(PCI_DEV(0, 0x00, 0), 0xe4) & 0x07);
133 switch (reg8) {
134 case 0:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000135 printk(BIOS_DEBUG, "up to DDR2-667");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000136 break;
137 case 3:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000138 printk(BIOS_DEBUG, "up to DDR2-533");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000139 break;
140 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000141 printk(BIOS_INFO, "unknown max. RAM clock (%02x).", reg8); /* Others reserved. */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000142 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000143 printk(BIOS_DEBUG, "\n");
Kyösti Mälkkieb5e28f2012-02-24 16:08:18 +0200144#if CONFIG_NORTHBRIDGE_INTEL_SUBTYPE_I945GM
Stefan Reinauer7981b942011-04-01 22:33:25 +0200145 printk(BIOS_ERR, "coreboot is compiled for the wrong chipset.\n");
146#endif
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000147}
148
Stefan Reinauer278534d2008-10-29 04:51:07 +0000149static void i945_setup_bars(void)
150{
151 u8 reg8;
152
153 /* As of now, we don't have all the A0 workarounds implemented */
154 if (i945_silicon_revision() == 0)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000155 printk(BIOS_INFO, "Warning: i945 silicon revision A0 might not work correctly.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000156
157 /* Setting up Southbridge. In the northbridge code. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000158 printk(BIOS_DEBUG, "Setting up static southbridge registers...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000159 pci_write_config32(PCI_DEV(0, 0x1f, 0), RCBA, DEFAULT_RCBA | 1);
160
161 pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1);
162 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x44 /* ACPI_CNTL */ , 0x80); /* Enable ACPI BAR */
163
164 pci_write_config32(PCI_DEV(0, 0x1f, 0), GPIOBASE, DEFAULT_GPIOBASE | 1);
165 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x4c /* GC */ , 0x10); /* Enable GPIOs */
166 setup_ich7_gpios();
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000167 printk(BIOS_DEBUG, " done.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000168
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000169 printk(BIOS_DEBUG, "Disabling Watchdog reboot...");
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000170 RCBA32(GCS) = RCBA32(GCS) | (1 << 5); /* No reset */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000171 outw((1 << 11), DEFAULT_PMBASE | 0x60 | 0x08); /* halt timer */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000172 printk(BIOS_DEBUG, " done.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000173
Vladimir Serbinenko4aad7432014-11-22 20:36:58 +0100174 /* Enable upper 128bytes of CMOS */
175 RCBA32(0x3400) = (1 << 2);
176
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000177 printk(BIOS_DEBUG, "Setting up static northbridge registers...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000178 /* Set up all hardcoded northbridge BARs */
179 pci_write_config32(PCI_DEV(0, 0x00, 0), EPBAR, DEFAULT_EPBAR | 1);
180 pci_write_config32(PCI_DEV(0, 0x00, 0), MCHBAR, DEFAULT_MCHBAR | 1);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000181 pci_write_config32(PCI_DEV(0, 0x00, 0), DMIBAR, DEFAULT_DMIBAR | 1);
182 pci_write_config32(PCI_DEV(0, 0x00, 0), X60BAR, DEFAULT_X60BAR | 1);
183
184 /* Hardware default is 8MB UMA. If someone wants to make this a
185 * CMOS or compile time option, send a patch.
186 * pci_write_config16(PCI_DEV(0, 0x00, 0), GGC, 0x30);
187 */
188
189 /* Set C0000-FFFFF to access RAM on both reads and writes */
190 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM0, 0x30);
191 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM1, 0x33);
192 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM2, 0x33);
193 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM3, 0x33);
194 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM4, 0x33);
195 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM5, 0x33);
196 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM6, 0x33);
197
Sven Schnelled8c68a92011-06-15 09:26:34 +0200198 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, SKPAD_NORMAL_BOOT_MAGIC);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000199 printk(BIOS_DEBUG, " done.\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000200
201 /* Wait for MCH BAR to come up */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000202 printk(BIOS_DEBUG, "Waiting for MCHBAR to come up...");
Elyes HAOUASa3ea1e42014-11-27 13:23:32 +0100203 if ((pci_read_config32(PCI_DEV(0, 0x00, 0), 0xe4) & 0x20000) == 0x00) { /* Bit 49 of CAPID0 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000204 do {
205 reg8 = *(volatile u8 *)0xfed40000;
206 } while (!(reg8 & 0x80));
207 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000208 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000209}
210
211static void i945_setup_egress_port(void)
212{
213 u32 reg32;
214 u32 timeout;
215
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000216 printk(BIOS_DEBUG, "Setting up Egress Port RCRB\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000217
218 /* Egress Port Virtual Channel 0 Configuration */
219
220 /* map only TC0 to VC0 */
221 reg32 = EPBAR32(EPVC0RCTL);
222 reg32 &= 0xffffff01;
223 EPBAR32(EPVC0RCTL) = reg32;
224
Stefan Reinauer278534d2008-10-29 04:51:07 +0000225 reg32 = EPBAR32(EPPVCCAP1);
226 reg32 &= ~(7 << 0);
227 reg32 |= 1;
228 EPBAR32(EPPVCCAP1) = reg32;
229
230 /* Egress Port Virtual Channel 1 Configuration */
231 reg32 = EPBAR32(0x2c);
232 reg32 &= 0xffffff00;
233 if ((MCHBAR32(CLKCFG) & 7) == 1)
234 reg32 |= 0x0d; /* 533MHz */
235 if ((MCHBAR32(CLKCFG) & 7) == 3)
236 reg32 |= 0x10; /* 667MHz */
237 EPBAR32(0x2c) = reg32;
238
239 EPBAR32(EPVC1MTS) = 0x0a0a0a0a;
240
241 reg32 = EPBAR32(EPVC1RCAP);
242 reg32 &= ~(0x7f << 16);
243 reg32 |= (0x0a << 16);
244 EPBAR32(EPVC1RCAP) = reg32;
245
246 if ((MCHBAR32(CLKCFG) & 7) == 1) { /* 533MHz */
247 EPBAR32(EPVC1IST + 0) = 0x009c009c;
248 EPBAR32(EPVC1IST + 4) = 0x009c009c;
249 }
250
251 if ((MCHBAR32(CLKCFG) & 7) == 3) { /* 667MHz */
252 EPBAR32(EPVC1IST + 0) = 0x00c000c0;
253 EPBAR32(EPVC1IST + 4) = 0x00c000c0;
254 }
255
256 /* Is internal graphics enabled? */
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +0300257 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1)) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000258 MCHBAR32(MMARB1) |= (1 << 17);
259 }
260
261 /* Assign Virtual Channel ID 1 to VC1 */
262 reg32 = EPBAR32(EPVC1RCTL);
263 reg32 &= ~(7 << 24);
264 reg32 |= (1 << 24);
265 EPBAR32(EPVC1RCTL) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000266
Stefan Reinauer278534d2008-10-29 04:51:07 +0000267 reg32 = EPBAR32(EPVC1RCTL);
268 reg32 &= 0xffffff01;
269 reg32 |= (1 << 7);
270 EPBAR32(EPVC1RCTL) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000271
Stefan Reinauer278534d2008-10-29 04:51:07 +0000272 EPBAR32(PORTARB + 0x00) = 0x01000001;
273 EPBAR32(PORTARB + 0x04) = 0x00040000;
274 EPBAR32(PORTARB + 0x08) = 0x00001000;
275 EPBAR32(PORTARB + 0x0c) = 0x00000040;
276 EPBAR32(PORTARB + 0x10) = 0x01000001;
277 EPBAR32(PORTARB + 0x14) = 0x00040000;
278 EPBAR32(PORTARB + 0x18) = 0x00001000;
279 EPBAR32(PORTARB + 0x1c) = 0x00000040;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000280
Stefan Reinauer278534d2008-10-29 04:51:07 +0000281 EPBAR32(EPVC1RCTL) |= (1 << 16);
282 EPBAR32(EPVC1RCTL) |= (1 << 16);
283
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000284 printk(BIOS_DEBUG, "Loading port arbitration table ...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000285 /* Loop until bit 0 becomes 0 */
286 timeout = 0x7fffff;
287 while ((EPBAR16(EPVC1RSTS) & 1) && --timeout) ;
288 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000289 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000290 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000291 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000292
293 /* Now enable VC1 */
294 EPBAR32(EPVC1RCTL) |= (1 << 31);
295
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000296 printk(BIOS_DEBUG, "Wait for VC1 negotiation ...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000297 /* Wait for VC1 negotiation pending */
298 timeout = 0x7fff;
299 while ((EPBAR16(EPVC1RSTS) & (1 << 1)) && --timeout) ;
300 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000301 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000302 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000303 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000304
305}
306
307static void ich7_setup_dmi_rcrb(void)
308{
309 u16 reg16;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000310 u32 reg32;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000311
Stefan Reinauer278534d2008-10-29 04:51:07 +0000312 reg16 = RCBA16(LCTL);
313 reg16 &= ~(3 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000314 reg16 |= 3;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000315 RCBA16(LCTL) = reg16;
316
317 RCBA32(V0CTL) = 0x80000001;
318 RCBA32(V1CAP) = 0x03128010;
319 RCBA32(ESD) = 0x00000810;
320 RCBA32(RP1D) = 0x01000003;
321 RCBA32(RP2D) = 0x02000002;
322 RCBA32(RP3D) = 0x03000002;
323 RCBA32(RP4D) = 0x04000002;
324 RCBA32(HDD) = 0x0f000003;
325 RCBA32(RP5D) = 0x05000002;
326
327 RCBA32(RPFN) = 0x00543210;
328
Stefan Reinauer30140a52009-03-11 16:20:39 +0000329 pci_write_config16(PCI_DEV(0, 0x1c, 0), 0x42, 0x0141);
330 pci_write_config16(PCI_DEV(0, 0x1c, 4), 0x42, 0x0141);
331 pci_write_config16(PCI_DEV(0, 0x1c, 5), 0x42, 0x0141);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000332
Stefan Reinauer30140a52009-03-11 16:20:39 +0000333 pci_write_config32(PCI_DEV(0, 0x1c, 4), 0x54, 0x00480ce0);
334 pci_write_config32(PCI_DEV(0, 0x1c, 5), 0x54, 0x00500ce0);
335
336 reg32 = RCBA32(V1CTL);
337 reg32 &= ~( (0x7f << 1) | (7 << 17) | (7 << 24) );
338 reg32 |= (0x40 << 1) | (4 << 17) | (1 << 24) | (1 << 31);
339 RCBA32(V1CTL) = reg32;
340
341 RCBA32(ESD) |= (2 << 16);
342
343 RCBA32(ULD) |= (1 << 24) | (1 << 16);
344
345 RCBA32(ULBA) = DEFAULT_DMIBAR;
346
347 RCBA32(RP1D) |= (2 << 16);
348 RCBA32(RP2D) |= (2 << 16);
349 RCBA32(RP3D) |= (2 << 16);
350 RCBA32(RP4D) |= (2 << 16);
351 RCBA32(HDD) |= (2 << 16);
352 RCBA32(RP5D) |= (2 << 16);
353 RCBA32(RP6D) |= (2 << 16);
354
355 RCBA32(LCAP) |= (3 << 10);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000356}
357
358static void i945_setup_dmi_rcrb(void)
359{
360 u32 reg32;
361 u32 timeout;
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000362 int activate_aspm = 1; /* hardcode ASPM for now */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000363
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000364 printk(BIOS_DEBUG, "Setting up DMI RCRB\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000365
366 /* Virtual Channel 0 Configuration */
367 reg32 = DMIBAR32(DMIVC0RCTL0);
368 reg32 &= 0xffffff01;
369 DMIBAR32(DMIVC0RCTL0) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000370
Stefan Reinauer278534d2008-10-29 04:51:07 +0000371 reg32 = DMIBAR32(DMIPVCCAP1);
372 reg32 &= ~(7 << 0);
373 reg32 |= 1;
374 DMIBAR32(DMIPVCCAP1) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000375
Stefan Reinauer278534d2008-10-29 04:51:07 +0000376 reg32 = DMIBAR32(DMIVC1RCTL);
377 reg32 &= ~(7 << 24);
378 reg32 |= (1 << 24); /* NOTE: This ID must match ICH7 side */
379 DMIBAR32(DMIVC1RCTL) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000380
Stefan Reinauer278534d2008-10-29 04:51:07 +0000381 reg32 = DMIBAR32(DMIVC1RCTL);
382 reg32 &= 0xffffff01;
383 reg32 |= (1 << 7);
384 DMIBAR32(DMIVC1RCTL) = reg32;
385
386 /* Now enable VC1 */
387 DMIBAR32(DMIVC1RCTL) |= (1 << 31);
388
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000389 printk(BIOS_DEBUG, "Wait for VC1 negotiation ...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000390 /* Wait for VC1 negotiation pending */
391 timeout = 0x7ffff;
392 while ((DMIBAR16(DMIVC1RSTS) & (1 << 1)) && --timeout) ;
393 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000394 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000395 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000396 printk(BIOS_DEBUG, "done..\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000397#if 1
398 /* Enable Active State Power Management (ASPM) L0 state */
399
400 reg32 = DMIBAR32(DMILCAP);
401 reg32 &= ~(7 << 12);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000402 reg32 |= (2 << 12);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000403
404 reg32 &= ~(7 << 15);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000405
Stefan Reinauer30140a52009-03-11 16:20:39 +0000406 reg32 |= (2 << 15);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000407 DMIBAR32(DMILCAP) = reg32;
408
409 reg32 = DMIBAR32(DMICC);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000410 reg32 &= 0x00ffffff;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000411 reg32 &= ~(3 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000412 reg32 |= (1 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000413 reg32 &= ~(3 << 20);
414 reg32 |= (1 << 20);
415
Stefan Reinauer278534d2008-10-29 04:51:07 +0000416 DMIBAR32(DMICC) = reg32;
417
Stefan Reinauer30140a52009-03-11 16:20:39 +0000418 if (activate_aspm) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000419 DMIBAR32(DMILCTL) |= (3 << 0);
420 }
421#endif
422
423 /* Last but not least, some additional steps */
424 reg32 = MCHBAR32(FSBSNPCTL);
425 reg32 &= ~(0xff << 2);
426 reg32 |= (0xaa << 2);
427 MCHBAR32(FSBSNPCTL) = reg32;
428
429 DMIBAR32(0x2c) = 0x86000040;
430
431 reg32 = DMIBAR32(0x204);
432 reg32 &= ~0x3ff;
433#if 1
434 reg32 |= 0x13f; /* for x4 DMI only */
435#else
436 reg32 |= 0x1e4; /* for x2 DMI only */
437#endif
438 DMIBAR32(0x204) = reg32;
439
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +0300440 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1)) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000441 printk(BIOS_DEBUG, "Internal graphics: enabled\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000442 DMIBAR32(0x200) |= (1 << 21);
443 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000444 printk(BIOS_DEBUG, "Internal graphics: disabled\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000445 DMIBAR32(0x200) &= ~(1 << 21);
446 }
447
448 reg32 = DMIBAR32(0x204);
449 reg32 &= ~((1 << 11) | (1 << 10));
450 DMIBAR32(0x204) = reg32;
451
452 reg32 = DMIBAR32(0x204);
453 reg32 &= ~(0xff << 12);
454 reg32 |= (0x0d << 12);
455 DMIBAR32(0x204) = reg32;
456
457 DMIBAR32(DMICTL1) |= (3 << 24);
458
459 reg32 = DMIBAR32(0x200);
460 reg32 &= ~(0x3 << 26);
461 reg32 |= (0x02 << 26);
462 DMIBAR32(0x200) = reg32;
463
464 DMIBAR32(DMIDRCCFG) &= ~(1 << 31);
465 DMIBAR32(DMICTL2) |= (1 << 31);
466
467 if (i945_silicon_revision() >= 3) {
468 reg32 = DMIBAR32(0xec0);
469 reg32 &= 0x0fffffff;
470 reg32 |= (2 << 28);
471 DMIBAR32(0xec0) = reg32;
472
473 reg32 = DMIBAR32(0xed4);
474 reg32 &= 0x0fffffff;
475 reg32 |= (2 << 28);
476 DMIBAR32(0xed4) = reg32;
477
478 reg32 = DMIBAR32(0xee8);
479 reg32 &= 0x0fffffff;
480 reg32 |= (2 << 28);
481 DMIBAR32(0xee8) = reg32;
482
483 reg32 = DMIBAR32(0xefc);
484 reg32 &= 0x0fffffff;
485 reg32 |= (2 << 28);
486 DMIBAR32(0xefc) = reg32;
487 }
488
489 /* wait for bit toggle to 0 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000490 printk(BIOS_DEBUG, "Waiting for DMI hardware...");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000491 timeout = 0x7fffff;
492 while ((DMIBAR8(0x32) & (1 << 1)) && --timeout) ;
493 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000494 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000495 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000496 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000497
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000498 /* Clear Error Status Bits! */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000499 DMIBAR32(0x1c4) = 0xffffffff;
500 DMIBAR32(0x1d0) = 0xffffffff;
501 DMIBAR32(0x228) = 0xffffffff;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000502
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000503 /* Program Read-Only Write-Once Registers */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000504 DMIBAR32(0x308) = DMIBAR32(0x308);
505 DMIBAR32(0x314) = DMIBAR32(0x314);
506 DMIBAR32(0x324) = DMIBAR32(0x324);
507 DMIBAR32(0x328) = DMIBAR32(0x328);
508 DMIBAR32(0x338) = DMIBAR32(0x334);
509 DMIBAR32(0x338) = DMIBAR32(0x338);
510
Patrick Georgia341a772014-09-29 19:51:21 +0200511 if (i945_silicon_revision() == 1 && (MCHBAR8(DFT_STRAP1) & (1 << 5))) {
Stefan Reinauer30140a52009-03-11 16:20:39 +0000512 if ((MCHBAR32(0x214) & 0xf) != 0x3) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000513 printk(BIOS_INFO, "DMI link requires A1 stepping workaround. Rebooting.\n");
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000514 reg32 = DMIBAR32(0x224);
515 reg32 &= ~(7 << 0);
516 reg32 |= (3 << 0);
517 DMIBAR32(0x224) = reg32;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000518 outb(0x06, 0xcf9);
Patrick Georgi546953c2014-11-29 10:38:17 +0100519 halt(); /* wait for reset */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000520 }
521 }
522}
523
524static void i945_setup_pci_express_x16(void)
525{
526 u32 timeout;
527 u32 reg32;
528 u16 reg16;
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000529
Stefan Reinauer30140a52009-03-11 16:20:39 +0000530 u8 reg8;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000531
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000532 printk(BIOS_DEBUG, "Enabling PCI Express x16 Link\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000533
534 reg16 = pci_read_config16(PCI_DEV(0, 0x00, 0), DEVEN);
535 reg16 |= DEVEN_D1F0;
536 pci_write_config16(PCI_DEV(0, 0x00, 0), DEVEN, reg16);
537
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300538 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x208);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000539 reg32 &= ~(1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300540 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x208, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000541
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000542 /* We have no success with querying the usual PCIe registers
543 * for link setup success on the i945. Hence we assign a temporary
544 * PCI bus 0x0a and check whether we find a device on 0:a.0
545 */
546
547 /* First we reset the secondary bus */
548 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0x3e);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000549 reg16 |= (1 << 6); /* SRESET */
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000550 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16);
551 /* Read back and clear reset bit. */
552 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0x3e);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000553 reg16 &= ~(1 << 6); /* SRESET */
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000554 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16);
555
556 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0xba);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000557 printk(BIOS_DEBUG, "SLOTSTS: %04x\n", reg16);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000558 if (!(reg16 & 0x48)) {
559 goto disable_pciexpress_x16_link;
560 }
561 reg16 |= (1 << 4) | (1 << 0);
562 pci_write_config16(PCI_DEV(0, 0x01, 0), 0xba, reg16);
563
564 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x19, 0x00);
565 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x1a, 0x00);
566 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x19, 0x0a);
567 pci_write_config8(PCI_DEV(0, 0x01, 0), 0x1a, 0x0a);
568
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300569 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x224);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000570 reg32 &= ~(1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300571 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x224, reg32);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000572
Stefan Reinauer30140a52009-03-11 16:20:39 +0000573 MCHBAR16(UPMC1) &= ~( (1 << 5) | (1 << 0) );
574
575 /* Initialze PEG_CAP */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300576 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0xa2);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000577 reg16 |= (1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300578 pci_write_config16(PCI_DEV(0, 0x01, 0), 0xa2, reg16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000579
580 /* Setup SLOTCAP */
581 /* TODO: These values are mainboard dependent and should
Uwe Hermann607614d2010-11-18 20:12:13 +0000582 * be set from devicetree.cb.
Stefan Reinauer30140a52009-03-11 16:20:39 +0000583 */
584 /* NOTE: SLOTCAP becomes RO after the first write! */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300585 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xb4);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000586 reg32 &= 0x0007ffff;
587
588 reg32 &= 0xfffe007f;
589
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300590 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xb4, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000591
592 /* Wait for training to succeed */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000593 printk(BIOS_DEBUG, "PCIe link training ...");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000594 timeout = 0x7ffff;
Patrick Georgid3060ed2014-08-10 15:19:45 +0200595 while ((((pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS) >> 16) & 3) != 3) && --timeout) ;
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000596
597 reg32 = pci_read_config32(PCI_DEV(0x0a, 0x0, 0), 0);
598 if (reg32 != 0x00000000 && reg32 != 0xffffffff) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000599 printk(BIOS_DEBUG, " Detected PCIe device %04x:%04x\n",
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000600 reg32 & 0xffff, reg32 >> 16);
601 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000602 printk(BIOS_DEBUG, " timeout!\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000603
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000604 printk(BIOS_DEBUG, "Restrain PCIe port to x1\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000605
Patrick Georgid3060ed2014-08-10 15:19:45 +0200606 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000607 reg32 &= ~(0xf << 1);
608 reg32 |=1;
Patrick Georgid3060ed2014-08-10 15:19:45 +0200609 pci_write_config32(PCI_DEV(0, 0x01, 0), PEGSTS, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000610
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300611 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0x3e);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000612
613 reg16 |= (1 << 6);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300614 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x3e, reg16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000615 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
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000618 printk(BIOS_DEBUG, "PCIe link training ...");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000619 timeout = 0x7ffff;
Patrick Georgid3060ed2014-08-10 15:19:45 +0200620 while ((((pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS) >> 16) & 3) != 3) && --timeout) ;
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000621
622 reg32 = pci_read_config32(PCI_DEV(0xa, 0x00, 0), 0);
623 if (reg32 != 0x00000000 && reg32 != 0xffffffff) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000624 printk(BIOS_DEBUG, " Detected PCIe x1 device %04x:%04x\n",
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000625 reg32 & 0xffff, reg32 >> 16);
626 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000627 printk(BIOS_DEBUG, " timeout!\n");
628 printk(BIOS_DEBUG, "Disabling PCIe x16 port completely.\n");
Stefan Reinauer30140a52009-03-11 16:20:39 +0000629 goto disable_pciexpress_x16_link;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000630 }
Stefan Reinauer30140a52009-03-11 16:20:39 +0000631 }
632
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300633 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), 0xb2);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000634 reg16 >>= 4;
635 reg16 &= 0x3f;
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000636 /* reg16 == 1 -> x1; reg16 == 16 -> x16 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000637 printk(BIOS_DEBUG, "PCIe x%d link training succeeded.\n", reg16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000638
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300639 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x204);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000640 reg32 &= 0xfffffc00; /* clear [9:0] */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000641 if (reg16 == 1) {
642 reg32 |= 0x32b;
643 // TODO
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300644 /* pci_write_config32(PCI_DEV(0, 0x01, 0), 0x204, reg32); */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000645 } else if (reg16 == 16) {
646 reg32 |= 0x0f4;
647 // TODO
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300648 /* pci_write_config32(PCI_DEV(0, 0x01, 0), 0x204, reg32); */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000649 }
650
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000651 reg32 = (pci_read_config32(PCI_DEV(0xa, 0, 0), 0x8) >> 8);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000652 printk(BIOS_DEBUG, "PCIe device class: %06x\n", reg32);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000653 if (reg32 == 0x030000) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000654 printk(BIOS_DEBUG, "PCIe device is VGA. Disabling IGD.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000655 reg16 = (1 << 1);
656 pci_write_config16(PCI_DEV(0, 0x0, 0), 0x52, reg16);
657
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +0300658 reg32 = pci_read_config32(PCI_DEV(0, 0x0, 0), DEVEN);
659 reg32 &= ~(DEVEN_D2F0 | DEVEN_D2F1);
660 pci_write_config32(PCI_DEV(0, 0x0, 0), DEVEN, reg32);
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000661
662 /* Set VGA enable bit in PCIe bridge */
663 reg16 = pci_read_config16(PCI_DEV(0, 0x1, 0), 0x3e);
664 reg16 |= (1 << 3);
665 pci_write_config16(PCI_DEV(0, 0x1, 0), 0x3e, reg16);
666 }
667
Stefan Reinauer30140a52009-03-11 16:20:39 +0000668 /* Enable GPEs */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300669 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xec);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000670 reg32 |= (1 << 2) | (1 << 1) | (1 << 0); /* PMEGPE, HPGPE, GENGPE */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300671 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x114, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000672
673 /* Virtual Channel Configuration: Only VC0 on PCIe x16 */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300674 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x114);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000675 reg32 &= 0xffffff01;
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300676 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x114, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000677
678 /* Extended VC count */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300679 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x104);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000680 reg32 &= ~(7 << 0);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300681 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x104, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000682
683 /* Active State Power Management ASPM */
684
685 /* TODO */
686
687 /* Clear error bits */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300688 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x06, 0xffff);
689 pci_write_config16(PCI_DEV(0, 0x01, 0), 0x1e, 0xffff);
690 pci_write_config16(PCI_DEV(0, 0x01, 0), 0xaa, 0xffff);
691 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x1c4, 0xffffffff);
692 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x1d0, 0xffffffff);
693 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x1f0, 0xffffffff);
694 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x228, 0xffffffff);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000695
696 /* Program R/WO registers */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300697 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x308);
698 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x308, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000699
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300700 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x314);
701 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x314, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000702
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300703 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x324);
704 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x324, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000705
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300706 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x328);
707 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x328, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000708
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300709 reg8 = pci_read_config8(PCI_DEV(0, 0x01, 0), 0xb4);
710 pci_write_config8(PCI_DEV(0, 0x01, 0), 0xb4, reg8);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000711
712 /* Additional PCIe graphics setup */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300713 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000714 reg32 |= (3 << 26);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300715 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000716
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300717 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000718 reg32 |= (3 << 24);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300719 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000720
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300721 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xf0);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000722 reg32 |= (1 << 5);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300723 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xf0, reg32);
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000724
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300725 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x200);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000726 reg32 &= ~(3 << 26);
727 reg32 |= (2 << 26);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300728 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x200, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000729
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300730 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xe80);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000731 if (i945_silicon_revision() >= 2) {
732 reg32 |= (1 << 12);
733 } else {
734 reg32 &= ~(1 << 12);
735 }
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300736 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xe80, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000737
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300738 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xeb4);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000739 reg32 &= ~(1 << 31);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300740 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xeb4, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000741
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300742 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xfc);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000743 reg32 |= (1 << 31);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300744 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xfc, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000745
746 if (i945_silicon_revision() >= 3) {
747 static const u32 reglist[] = {
748 0xec0, 0xed4, 0xee8, 0xefc, 0xf10, 0xf24,
749 0xf38, 0xf4c, 0xf60, 0xf74, 0xf88, 0xf9c,
750 0xfb0, 0xfc4, 0xfd8, 0xfec
751 };
752
753 int i;
754 for (i=0; i<ARRAY_SIZE(reglist); i++) {
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300755 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), reglist[i]);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000756 reg32 &= 0x0fffffff;
757 reg32 |= (2 << 28);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300758 pci_write_config32(PCI_DEV(0, 0x01, 0), reglist[i], reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000759 }
760 }
761
762 if (i945_silicon_revision() <= 2 ) {
763 /* Set voltage specific parameters */
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300764 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0xe80);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000765 reg32 &= (0xf << 4); /* Default case 1.05V */
Patrick Georgi3cb86de2014-09-29 20:42:33 +0200766 if ((MCHBAR32(DFT_STRAP1) & (1 << 20)) == 0) { /* 1.50V */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000767 reg32 |= (7 << 4);
768 }
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300769 pci_write_config32(PCI_DEV(0, 0x01, 0), 0xe80, reg32);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000770 }
771
772 return;
773
774disable_pciexpress_x16_link:
Stefan Reinauer278534d2008-10-29 04:51:07 +0000775 /* For now we just disable the x16 link */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000776 printk(BIOS_DEBUG, "Disabling PCI Express x16 Link\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000777
778 MCHBAR16(UPMC1) |= (1 << 5) | (1 << 0);
779
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300780 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), BCTRL1);
Stefan Reinauer779b3e32008-11-10 15:43:37 +0000781 reg16 |= (1 << 6);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300782 pci_write_config16(PCI_DEV(0, 0x01, 0), BCTRL1, reg16);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000783
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300784 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x224);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000785 reg32 |= (1 << 8);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300786 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x224, reg32);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000787
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300788 reg16 = pci_read_config16(PCI_DEV(0, 0x01, 0), BCTRL1);
Stefan Reinauer779b3e32008-11-10 15:43:37 +0000789 reg16 &= ~(1 << 6);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300790 pci_write_config16(PCI_DEV(0, 0x01, 0), BCTRL1, reg16);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000791
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000792 printk(BIOS_DEBUG, "Wait for link to enter detect state... ");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000793 timeout = 0x7fffff;
Patrick Georgid3060ed2014-08-10 15:19:45 +0200794 for (reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), PEGSTS);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000795 (reg32 & 0x000f0000) && --timeout;) ;
796 if (!timeout)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000797 printk(BIOS_DEBUG, "timeout!\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000798 else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000799 printk(BIOS_DEBUG, "ok\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000800
801 /* Finally: Disable the PCI config header */
802 reg16 = pci_read_config16(PCI_DEV(0, 0x00, 0), DEVEN);
803 reg16 &= ~DEVEN_D1F0;
804 pci_write_config16(PCI_DEV(0, 0x00, 0), DEVEN, reg16);
805}
806
807static void i945_setup_root_complex_topology(void)
808{
809 u32 reg32;
810
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000811 printk(BIOS_DEBUG, "Setting up Root Complex Topology\n");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000812 /* Egress Port Root Topology */
Stefan Reinauer30140a52009-03-11 16:20:39 +0000813
Stefan Reinauer278534d2008-10-29 04:51:07 +0000814 reg32 = EPBAR32(EPESD);
815 reg32 &= 0xff00ffff;
816 reg32 |= (1 << 16);
817 EPBAR32(EPESD) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000818
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000819 EPBAR32(EPLE1D) |= (1 << 16) | (1 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000820
821 EPBAR32(EPLE1A) = DEFAULT_DMIBAR;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000822
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000823 EPBAR32(EPLE2D) |= (1 << 16) | (1 << 0);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000824
825 /* DMI Port Root Topology */
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000826
Stefan Reinauer278534d2008-10-29 04:51:07 +0000827 reg32 = DMIBAR32(DMILE1D);
828 reg32 &= 0x00ffffff;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000829
Stefan Reinauer278534d2008-10-29 04:51:07 +0000830 reg32 &= 0xff00ffff;
831 reg32 |= (2 << 16);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000832
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000833 reg32 |= (1 << 0);
834 DMIBAR32(DMILE1D) = reg32;
Stefan Reinauer30140a52009-03-11 16:20:39 +0000835
836 DMIBAR32(DMILE1A) = DEFAULT_RCBA;
837
Stefan Reinauer24b4df52010-01-17 13:47:35 +0000838 DMIBAR32(DMILE2D) |= (1 << 16) | (1 << 0);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000839
840 DMIBAR32(DMILE2A) = DEFAULT_EPBAR;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000841
842 /* PCI Express x16 Port Root Topology */
843 if (pci_read_config8(PCI_DEV(0, 0x00, 0), DEVEN) & DEVEN_D1F0) {
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300844 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x158, DEFAULT_EPBAR);
845 reg32 = pci_read_config32(PCI_DEV(0, 0x01, 0), 0x150);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000846 reg32 |= (1 << 0);
Kyösti Mälkki8aa7e832013-07-26 08:52:10 +0300847 pci_write_config32(PCI_DEV(0, 0x01, 0), 0x150, reg32);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000848 }
849}
850
851static void ich7_setup_root_complex_topology(void)
852{
853 RCBA32(0x104) = 0x00000802;
854 RCBA32(0x110) = 0x00000001;
855 RCBA32(0x114) = 0x00000000;
856 RCBA32(0x118) = 0x00000000;
857}
858
859static void ich7_setup_pci_express(void)
860{
Stefan Reinauer30140a52009-03-11 16:20:39 +0000861 RCBA32(CG) |= (1 << 0);
862
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000863 /* Initialize slot power limit for root ports */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000864 pci_write_config32(PCI_DEV(0, 0x1c, 0), 0x54, 0x00000060);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000865#if 0
866 pci_write_config32(PCI_DEV(0, 0x1c, 4), 0x54, 0x00480ce0);
867 pci_write_config32(PCI_DEV(0, 0x1c, 5), 0x54, 0x00500ce0);
868#endif
Stefan Reinauer278534d2008-10-29 04:51:07 +0000869
870 pci_write_config32(PCI_DEV(0, 0x1c, 0), 0xd8, 0x00110000);
871}
872
Patrick Georgid0835952010-10-05 09:07:10 +0000873void i945_early_initialization(void)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000874{
875 /* Print some chipset specific information */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000876 switch (pci_read_config32(PCI_DEV(0, 0x00, 0), 0)) {
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000877 case 0x27708086: /* 82945G/GZ/GC/P/PL */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000878 i945_detect_chipset();
879 break;
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000880 case 0x27a08086: /* 945GME/GSE */
881 case 0x27ac8086: /* 945GM/PM/GMS/GU/GT, 943/940GML */
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000882 i945m_detect_chipset();
883 break;
884 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000885
886 /* Setup all BARs required for early PCIe and raminit */
887 i945_setup_bars();
888
889 /* Change port80 to LPC */
890 RCBA32(GCS) &= (~0x04);
Stefan Reinauer30140a52009-03-11 16:20:39 +0000891
892 /* Just do it that way */
893 RCBA32(0x2010) |= (1 << 10);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000894}
895
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200896static void i945_prepare_resume(int s3resume)
897{
898 int cbmem_was_initted;
899
900 cbmem_was_initted = !cbmem_recovery(s3resume);
901
902 /* If there is no high memory area, we didn't boot before, so
903 * this is not a resume. In that case we just create the cbmem toc.
904 */
905 if (s3resume && cbmem_was_initted) {
906 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
907
908 /* copy 1MB - 64K to high tables ram_base to prevent memory corruption
909 * through stage 2. We could keep stuff like stack and heap in high tables
910 * memory completely, but that's a wonderful clean up task for another
911 * day.
912 */
913 if (resume_backup_memory)
914 memcpy(resume_backup_memory, (void *)CONFIG_RAMBASE,
915 HIGH_MEMORY_SAVE);
916
917 /* Magic for S3 resume */
918 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD,
919 SKPAD_ACPI_S3_MAGIC);
920 }
921}
922
923void i945_late_initialization(int s3resume)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000924{
925 i945_setup_egress_port();
926
927 ich7_setup_root_complex_topology();
928
929 ich7_setup_pci_express();
930
931 ich7_setup_dmi_rcrb();
932
933 i945_setup_dmi_rcrb();
934
935 i945_setup_pci_express_x16();
936
937 i945_setup_root_complex_topology();
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200938
939#if !CONFIG_HAVE_ACPI_RESUME
940#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
941#if CONFIG_DEBUG_RAM_SETUP
942 sdram_dump_mchbar_registers();
943
944 {
945 /* This will not work if TSEG is in place! */
946 u32 tom = pci_read_config32(PCI_DEV(0, 2, 0), 0x5c);
947
948 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
949 ram_check(0x00000000, 0x000a0000);
950 ram_check(0x00100000, tom);
951 }
952#endif
953#endif
954#endif
955
956 MCHBAR16(SSKPD) = 0xCAFE;
957
958 i945_prepare_resume(s3resume);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000959}