blob: db675dccdf5e4b4e9569b048fea420333d74aae5 [file] [log] [blame]
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +00001/*
2 * This file is part of the coreboot project.
Stefan Reinauer5ff7c132011-10-31 12:56:45 -07003 *
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +00004 * Copyright (C) 2007-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000015 */
16
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000017#include <stdint.h>
18#include <string.h>
19#include <arch/io.h>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000020#include <device/pci_def.h>
21#include <device/pnp_def.h>
22#include <cpu/x86/lapic.h>
Patrick Georgid0835952010-10-05 09:07:10 +000023#include <lib.h>
Kyösti Mälkki12d681b2014-06-14 18:51:34 +030024#include <arch/acpi.h>
Kyösti Mälkkia7c96112013-10-13 20:41:57 +030025#include <cbmem.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000026#include <pc80/mc146818rtc.h>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000027#include <console/console.h>
28#include <cpu/x86/bist.h>
Kyösti Mälkki15fa9922016-06-17 10:00:28 +030029#include <cpu/intel/romstage.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010030#include <halt.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110031#include <northbridge/intel/i945/i945.h>
32#include <northbridge/intel/i945/raminit.h>
33#include <southbridge/intel/i82801gx/i82801gx.h>
Patrick Georgiad0dda72015-07-13 19:25:01 +020034#include <timestamp.h>
Patrick Georgia4700192011-01-27 07:39:38 +000035#include "option_table.h"
Patrick Georgid0835952010-10-05 09:07:10 +000036
Patrick Georgid0835952010-10-05 09:07:10 +000037void setup_ich7_gpios(void)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000038{
39 u32 gpios;
40
41 printk(BIOS_DEBUG, " GPIOS...");
42 /* General Registers */
43 outl(0x1f28f7c2, DEFAULT_GPIOBASE + 0x00); /* GPIO_USE_SEL */
44 outl(0xe0e809c3, DEFAULT_GPIOBASE + 0x04); /* GP_IO_SEL */
45 // Power On value is eede1fbf, we set: (TODO explain why)
46 // -- [21] = 1
47 // -- [20] = 0
48 // -- [18] = 0
49 // -- [17] = 0
50 // -- [13] = 1
51 // -- [05] = 0
52 // -- [04] = 0
53 // -- [03] = 0
54 // -- [02] = 0
55 // We should probably do this explicitly bitwise, see below.
56 outl(0xeee83f83, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
57 /* Output Control Registers */
58 outl(0x00000000, DEFAULT_GPIOBASE + 0x18); /* GPO_BLINK */
59 /* Input Control Registers */
60 outl(0x00000180, DEFAULT_GPIOBASE + 0x2c); /* GPI_INV */
61 outl(0x000000e6, DEFAULT_GPIOBASE + 0x30); /* GPIO_USE_SEL2 */
62 outl(0x000000d0, DEFAULT_GPIOBASE + 0x34); /* GP_IO_SEL2 */
63 outl(0x00000034, DEFAULT_GPIOBASE + 0x38); /* GP_LVL2 */
64
65 printk(BIOS_SPEW, "\n Initializing drive bay...\n");
66 gpios = inl(DEFAULT_GPIOBASE + 0x38); // GPIO Level 2
67 gpios |= (1 << 0); // GPIO33 = ODD
68 gpios |= (1 << 1); // GPIO34 = IDE_RST#
69 outl(gpios, DEFAULT_GPIOBASE + 0x38); /* GP_LVL2 */
70
71 gpios = inl(DEFAULT_GPIOBASE + 0x0c); // GPIO Level
72 gpios &= ~(1 << 13); // ??
73 outl(gpios, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
74
75 printk(BIOS_SPEW, "\n Initializing Ethernet NIC...\n");
76 gpios = inl(DEFAULT_GPIOBASE + 0x0c); // GPIO Level
77 gpios &= ~(1 << 24); // Enable LAN Power
78 outl(gpios, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
79}
80
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000081static void ich7_enable_lpc(void)
82{
Patrick Georgia4700192011-01-27 07:39:38 +000083 int lpt_en = 0;
Patrick Georgib2517532011-05-10 21:53:13 +000084 if (read_option(lpt, 0) != 0) {
Elyes HAOUAS531b87a2016-09-19 09:46:33 -060085 lpt_en = 1 << 2; // enable LPT
Patrick Georgia4700192011-01-27 07:39:38 +000086 }
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000087 // Enable Serial IRQ
88 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x64, 0xd0);
89 // decode range
90 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0007);
91 // decode range
Patrick Georgia4700192011-01-27 07:39:38 +000092 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x3f0b | lpt_en);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000093 // Enable 0x02e0 - 0x2ff
94 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x84, 0x001c02e1);
95 // Enable 0x600 - 0x6ff
96 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x88, 0x00fc0601);
97 // Enable 0x68 - 0x6f
98 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x8c, 0x00040069);
99}
100
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000101/* This box has two superios, so enabling serial becomes slightly excessive.
102 * We disable a lot of stuff to make sure that there are no conflicts between
103 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
104 * but safe anyways" method.
105 */
Antonello Dettori771d7ec2016-11-08 18:44:46 +0100106static void pnp_enter_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000107{
108 unsigned int port = dev >> 8;
109 outb(0x55, port);
110}
111
Antonello Dettori771d7ec2016-11-08 18:44:46 +0100112static void pnp_exit_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000113{
114 unsigned int port = dev >> 8;
115 outb(0xaa, port);
116}
117
Antonello Dettori771d7ec2016-11-08 18:44:46 +0100118static void pnp_write_register(pnp_devfn_t dev, int reg, int val)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000119{
120 unsigned int port = dev >> 8;
121 outb(reg, port);
122 outb(val, port+1);
123}
124
125static void early_superio_config(void)
126{
Antonello Dettori771d7ec2016-11-08 18:44:46 +0100127 pnp_devfn_t dev;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000128
Elyes HAOUAS531b87a2016-09-19 09:46:33 -0600129 dev = PNP_DEV(0x4e, 0x00);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000130
131 pnp_enter_ext_func_mode(dev);
132 pnp_write_register(dev, 0x02, 0x0e); // UART power
133 pnp_write_register(dev, 0x1b, (0x3e8 >> 2)); // UART3 base
134 pnp_write_register(dev, 0x1c, (0x2e8 >> 2)); // UART4 base
135 pnp_write_register(dev, 0x1d, (5 << 4) | 11); // UART3,4 IRQ
136 pnp_write_register(dev, 0x1e, 1); // no 32khz clock
137 pnp_write_register(dev, 0x24, (0x3f8 >> 2)); // UART1 base
138 pnp_write_register(dev, 0x28, (4 << 4) | 0); // UART1,2 IRQ
139 pnp_write_register(dev, 0x2c, 0); // DMA0 FIR
140 pnp_write_register(dev, 0x30, (0x600 >> 4)); // Runtime Register Block Base
141
142 pnp_write_register(dev, 0x31, 0xce); // GPIO1 DIR
143 pnp_write_register(dev, 0x32, 0x00); // GPIO1 POL
144 pnp_write_register(dev, 0x33, 0x0f); // GPIO2 DIR
145 pnp_write_register(dev, 0x34, 0x00); // GPIO2 POL
146 pnp_write_register(dev, 0x35, 0xa8); // GPIO3 DIR
147 pnp_write_register(dev, 0x36, 0x00); // GPIO3 POL
148 pnp_write_register(dev, 0x37, 0xa8); // GPIO4 DIR
149 pnp_write_register(dev, 0x38, 0x00); // GPIO4 POL
150
151 pnp_write_register(dev, 0x39, 0x00); // GPIO1 OUT
152 pnp_write_register(dev, 0x40, 0x80); // GPIO2/MISC OUT
153 pnp_write_register(dev, 0x41, 0x00); // GPIO5 OUT
154 pnp_write_register(dev, 0x42, 0xa8); // GPIO5 DIR
155 pnp_write_register(dev, 0x43, 0x00); // GPIO5 POL
156 pnp_write_register(dev, 0x44, 0x00); // GPIO ALT1
157 pnp_write_register(dev, 0x45, 0x50); // GPIO ALT2
158 pnp_write_register(dev, 0x46, 0x00); // GPIO ALT3
159
160 pnp_write_register(dev, 0x48, 0x55); // GPIO ALT5
161 pnp_write_register(dev, 0x49, 0x55); // GPIO ALT6
162 pnp_write_register(dev, 0x4a, 0x55); // GPIO ALT7
163 pnp_write_register(dev, 0x4b, 0x55); // GPIO ALT8
164 pnp_write_register(dev, 0x4c, 0x55); // GPIO ALT9
165 pnp_write_register(dev, 0x4d, 0x55); // GPIO ALT10
166
167 pnp_exit_ext_func_mode(dev);
168}
169
170static void rcba_config(void)
171{
172 /* Set up virtual channel 0 */
173 //RCBA32(0x0014) = 0x80000001;
174 //RCBA32(0x001c) = 0x03128010;
175
176 /* Device 1f interrupt pin register */
177 RCBA32(0x3100) = 0x00042220;
178 /* Device 1d interrupt pin register */
179 RCBA32(0x310c) = 0x00214321;
180
181 /* dev irq route register */
182 RCBA16(0x3140) = 0x0232;
183 RCBA16(0x3142) = 0x3246;
184 RCBA16(0x3144) = 0x0237;
185 RCBA16(0x3146) = 0x3201;
186 RCBA16(0x3148) = 0x3216;
187
188 /* Enable IOAPIC */
189 RCBA8(0x31ff) = 0x03;
190
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000191 /* Disable unused devices */
192 RCBA32(0x3418) = FD_PCIE6 | FD_PCIE5 | FD_INTLAN | FD_ACMOD | FD_ACAUD | FD_PATA;
193 RCBA32(0x3418) |= (1 << 0); // Required.
194
195 /* Enable PCIe Root Port Clock Gate */
196 // RCBA32(0x341c) = 0x00000001;
197
198
199 /* This should probably go into the ACPI enable trap */
200 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
201 RCBA32(0x1e84) = 0x00020001;
202 RCBA32(0x1e80) = 0x0000fe01;
203
204 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
205 RCBA32(0x1e9c) = 0x000200f0;
206 RCBA32(0x1e98) = 0x000c0801;
207}
208
209static void early_ich7_init(void)
210{
211 uint8_t reg8;
212 uint32_t reg32;
213
214 // program secondary mlt XXX byte?
215 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
216
217 // reset rtc power status
218 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
219 reg8 &= ~(1 << 2);
220 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
221
222 // usb transient disconnect
223 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
224 reg8 |= (3 << 0);
225 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
226
227 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
228 reg32 |= (1 << 29) | (1 << 17);
229 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
230
231 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
232 reg32 |= (1 << 31) | (1 << 27);
233 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
234
235 RCBA32(0x0088) = 0x0011d000;
236 RCBA16(0x01fc) = 0x060f;
237 RCBA32(0x01f4) = 0x86000040;
238 RCBA32(0x0214) = 0x10030549;
239 RCBA32(0x0218) = 0x00020504;
240 RCBA8(0x0220) = 0xc5;
241 reg32 = RCBA32(0x3410);
242 reg32 |= (1 << 6);
243 RCBA32(0x3410) = reg32;
244 reg32 = RCBA32(0x3430);
245 reg32 &= ~(3 << 0);
246 reg32 |= (1 << 0);
247 RCBA32(0x3430) = reg32;
248 RCBA32(0x3418) |= (1 << 0);
249 RCBA16(0x0200) = 0x2008;
250 RCBA8(0x2027) = 0x0d;
251 RCBA16(0x3e08) |= (1 << 7);
252 RCBA16(0x3e48) |= (1 << 7);
253 RCBA32(0x3e0e) |= (1 << 7);
254 RCBA32(0x3e4e) |= (1 << 7);
255
256 // next step only on ich7m b0 and later:
257 reg32 = RCBA32(0x2034);
258 reg32 &= ~(0x0f << 16);
259 reg32 |= (5 << 16);
260 RCBA32(0x2034) = reg32;
261}
262
Kyösti Mälkki15fa9922016-06-17 10:00:28 +0300263void mainboard_romstage_entry(unsigned long bist)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000264{
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200265 int s3resume = 0;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000266
Patrick Georgiad0dda72015-07-13 19:25:01 +0200267 timestamp_init(timestamp_get());
268 timestamp_add_now(TS_START_ROMSTAGE);
269
Uwe Hermann7b997052010-11-21 22:47:22 +0000270 if (bist == 0)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000271 enable_lapic();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000272
273#if 0
274 /* Force PCIRST# */
275 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, SBR);
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000276 udelay(200 * 1000);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000277 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, 0);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000278#endif
279
280 ich7_enable_lpc();
281 early_superio_config();
282
283 /* Set up the console */
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000284 console_init();
285
286 /* Halt if there was a built in self test failure */
287 report_bist_failure(bist);
288
289 if (MCHBAR16(SSKPD) == 0xCAFE) {
290 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
291 outb(0x6, 0xcf9);
Patrick Georgi546953c2014-11-29 10:38:17 +0100292 halt();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000293 }
294
295 /* Perform some early chipset initialization required
296 * before RAM initialization can work
297 */
298 i945_early_initialization();
299
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200300 s3resume = southbridge_detect_s3_resume();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000301
302 /* Enable SPD ROMs and DDR-II DRAM */
303 enable_smbus();
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700304
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000305#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
306 dump_spd_registers();
307#endif
308
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200309 sdram_initialize(s3resume ? 2 : 0, NULL);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000310
311 /* Perform some initialization that must run before stage2 */
312 early_ich7_init();
313
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700314 /* This should probably go away. Until now it is required
315 * and mainboard specific
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000316 */
317 rcba_config();
318
319 /* Chipset Errata! */
320 fixup_i945_errata();
321
322 /* Initialize the internal PCIe links before we go into stage2 */
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200323 i945_late_initialization(s3resume);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000324}