blob: 337d8567586704aa206823899fd72ea80db4792d [file] [log] [blame]
Stefan Reinauer1a08f582009-10-28 16:52:48 +00001/*
2 * This file is part of the coreboot project.
Stefan Reinauer14e22772010-04-27 06:56:47 +00003 *
Stefan Reinauer1a08f582009-10-28 16:52:48 +00004 * Copyright (C) 2007-2008 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
Uwe Hermann2d2f0c12009-10-28 17:36:11 +00008 * published by the Free Software Foundation; version 2 of the License.
Stefan Reinauer1a08f582009-10-28 16:52:48 +00009 *
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
Uwe Hermann2d2f0c12009-10-28 17:36:11 +000017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer1a08f582009-10-28 16:52:48 +000018 */
19
Myles Watson1d6d45e2009-11-06 17:02:51 +000020// __PRE_RAM__ means: use "unsigned" for device, not a struct.
Stefan Reinauer5e328232010-03-29 19:19:16 +000021
Stefan Reinauer67cd8022010-01-16 16:35:38 +000022/* Configuration of the i945 driver */
23#define CHIPSET_I945GC 1
24#define CHANNEL_XOR_RANDOMIZATION 1
25
Stefan Reinauer1a08f582009-10-28 16:52:48 +000026#include <stdint.h>
27#include <string.h>
28#include <arch/io.h>
29#include <arch/romcc_io.h>
30#include <device/pci_def.h>
31#include <device/pnp_def.h>
32#include <cpu/x86/lapic.h>
33
34#include "superio/smsc/lpc47m15x/lpc47m15x.h"
35
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000036#include <pc80/mc146818rtc.h>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000037
Stefan Reinauer8a7d34b2010-02-22 09:15:13 +000038#include <console/console.h>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000039#include <cpu/x86/bist.h>
40
Stefan Reinauer7e00a442010-05-25 17:09:05 +000041#if CONFIG_USBDEBUG
Stefan Reinauer1a08f582009-10-28 16:52:48 +000042#include "southbridge/intel/i82801gx/i82801gx_usb_debug.c"
Stefan Reinauerda323732010-05-25 16:17:45 +000043#include "pc80/usbdebug_serial.c"
Stefan Reinauer1a08f582009-10-28 16:52:48 +000044#endif
45
46#include "lib/ramtest.c"
47#include "southbridge/intel/i82801gx/i82801gx_early_smbus.c"
Stefan Reinauer1a08f582009-10-28 16:52:48 +000048#include "superio/smsc/lpc47m15x/lpc47m15x_early_serial.c"
49
50#include "northbridge/intel/i945/udelay.c"
51
52#define SERIAL_DEV PNP_DEV(0x2e, W83627THG_SP1)
53
54#include "southbridge/intel/i82801gx/i82801gx.h"
55static void setup_ich7_gpios(void)
56{
57 /* TODO: This is highly board specific and should be moved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000058 printk(BIOS_DEBUG, " GPIOS...");
Stefan Reinauer1a08f582009-10-28 16:52:48 +000059 /* General Registers */
60 outl(0x3f3df7c1, DEFAULT_GPIOBASE + 0x00); /* GPIO_USE_SEL */
61 outl(0xc6fcbfc3, DEFAULT_GPIOBASE + 0x04); /* GP_IO_SEL */
62 outl(0xecfefdff, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
63 /* Output Control Registers */
64 outl(0x00040000, DEFAULT_GPIOBASE + 0x18); /* GPO_BLINK */
65 /* Input Control Registers */
66 outl(0x0000a000, DEFAULT_GPIOBASE + 0x2c); /* GPI_INV */
67 outl(0x000000ff, DEFAULT_GPIOBASE + 0x30); /* GPIO_USE_SEL2 */
68 outl(0x000000bf, DEFAULT_GPIOBASE + 0x34); /* GP_IO_SEL2 */
69 outl(0x000300fd, DEFAULT_GPIOBASE + 0x38); /* GP_LVL */
70}
71
72#include "northbridge/intel/i945/early_init.c"
73
74static inline int spd_read_byte(unsigned device, unsigned address)
75{
76 return smbus_read_byte(device, address);
77}
78
Stefan Reinauer1a08f582009-10-28 16:52:48 +000079#include "northbridge/intel/i945/raminit.h"
80#include "northbridge/intel/i945/raminit.c"
Stefan Reinauer1a08f582009-10-28 16:52:48 +000081#include "northbridge/intel/i945/errata.c"
Stefan Reinauer67cd8022010-01-16 16:35:38 +000082#include "northbridge/intel/i945/debug.c"
Stefan Reinauer1a08f582009-10-28 16:52:48 +000083
84static void ich7_enable_lpc(void)
85{
86 // Enable Serial IRQ
87 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x64, 0xd0);
88 // Set COM1/COM2 decode range
89 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0010);
90 // Enable COM1
91 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x140d);
92 // Enable SuperIO Power Management Events
93 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x84, 0x007c0681);
94}
95
Stefan Reinauer1a08f582009-10-28 16:52:48 +000096/* This box has two superios, so enabling serial becomes slightly excessive.
97 * We disable a lot of stuff to make sure that there are no conflicts between
98 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
99 * but safe anyways" method.
100 */
101static void early_superio_config_lpc47m15x(void)
102{
103 device_t dev;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000104
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000105 dev=PNP_DEV(0x2e, LPC47M15X_SP1);
106 pnp_enter_conf_state(dev);
107
108 pnp_set_logical_device(dev);
109 pnp_set_enable(dev, 0);
110 pnp_set_iobase(dev, PNP_IDX_IO0, 0x3f8);
111 pnp_set_irq(dev, PNP_IDX_IRQ0, 4);
112 pnp_set_enable(dev, 1);
113
114 /* Enable SuperIO PM */
115 dev=PNP_DEV(0x2e, LPC47M15X_PME);
116 pnp_set_logical_device(dev);
117 pnp_set_enable(dev, 0);
118 pnp_set_iobase(dev, PNP_IDX_IO0, 0x680);
119 pnp_set_enable(dev, 1);
120
121 pnp_exit_conf_state(dev);
122}
123
124static void rcba_config(void)
125{
126 /* Set up virtual channel 0 */
127 //RCBA32(0x0014) = 0x80000001;
128 //RCBA32(0x001c) = 0x03128010;
129
130 /* Device 1f interrupt pin register */
131 RCBA32(0x3100) = 0x00042210;
132 /* Device 1d interrupt pin register */
133 RCBA32(0x310c) = 0x00214321;
134
135 /* dev irq route register */
136 RCBA16(0x3140) = 0x0132;
137 RCBA16(0x3142) = 0x0146;
138 RCBA16(0x3144) = 0x0237;
139 RCBA16(0x3146) = 0x3201;
140 RCBA16(0x3148) = 0x0146;
141
142 /* Enable IOAPIC */
143 RCBA8(0x31ff) = 0x03;
144
145 /* Enable upper 128bytes of CMOS */
146 RCBA32(0x3400) = (1 << 2);
147
148 /* Disable unused devices */
149 //RCBA32(0x3418) = FD_PCIE6|FD_PCIE5|FD_PCIE4|FD_ACMOD|FD_ACAUD|FD_PATA;
150 // RCBA32(0x3418) |= (1 << 0); // Required.
151 // FIXME look me up!
152 RCBA32(0x3418) = 0x003204e1;
153
154 /* Enable PCIe Root Port Clock Gate */
155 // RCBA32(0x341c) = 0x00000001;
156}
157
158static void early_ich7_init(void)
159{
160 uint8_t reg8;
161 uint32_t reg32;
162
163 // program secondary mlt XXX byte?
164 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
165
166 // reset rtc power status
167 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
168 reg8 &= ~(1 << 2);
169 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
170
171 // usb transient disconnect
172 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
173 reg8 |= (3 << 0);
174 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
175
176 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
177 reg32 |= (1 << 29) | (1 << 17);
178 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
179
180 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
181 reg32 |= (1 << 31) | (1 << 27);
182 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
183
184 RCBA32(0x0088) = 0x0011d000;
185 RCBA16(0x01fc) = 0x060f;
186 RCBA32(0x01f4) = 0x86000040;
187 RCBA32(0x0214) = 0x10030549;
188 RCBA32(0x0218) = 0x00020504;
189 RCBA8(0x0220) = 0xc5;
190 reg32 = RCBA32(0x3410);
191 reg32 |= (1 << 6);
192 RCBA32(0x3410) = reg32;
193 reg32 = RCBA32(0x3430);
194 reg32 &= ~(3 << 0);
195 reg32 |= (1 << 0);
196 RCBA32(0x3430) = reg32;
197 RCBA32(0x3418) |= (1 << 0);
198 RCBA16(0x0200) = 0x2008;
199 RCBA8(0x2027) = 0x0d;
200 RCBA16(0x3e08) |= (1 << 7);
201 RCBA16(0x3e48) |= (1 << 7);
202 RCBA32(0x3e0e) |= (1 << 7);
203 RCBA32(0x3e4e) |= (1 << 7);
204
205 // next step only on ich7m b0 and later:
206 reg32 = RCBA32(0x2034);
207 reg32 &= ~(0x0f << 16);
208 reg32 |= (5 << 16);
209 RCBA32(0x2034) = reg32;
210}
211
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000212#include <cbmem.h>
213
214// Now, this needs to be included because it relies on the symbol
Myles Watson1d6d45e2009-11-06 17:02:51 +0000215// __PRE_RAM__ being set during CAR stage (in order to compile the
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000216// BSS free versions of the functions). Either rewrite the code
217// to be always BSS free, or invent a flag that's better suited than
Myles Watson1d6d45e2009-11-06 17:02:51 +0000218// __PRE_RAM__ to determine whether we're in ram init stage (stage 1)
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000219//
220#include "lib/cbmem.c"
221
Stefan Reinauer170679b2010-04-13 00:11:59 +0000222void main(unsigned long bist)
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000223{
224 u32 reg32;
225 int boot_mode = 0;
226
227 if (bist == 0) {
228 enable_lapic();
229 }
230
231 ich7_enable_lpc();
232 early_superio_config_lpc47m15x();
233
234 /* Set up the console */
235 uart_init();
236
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000237#if CONFIG_USBDEBUG
Uwe Hermann370d9792010-09-25 14:23:31 +0000238 i82801gx_enable_usbdebug(1);
Stefan Reinauer75a05dc2010-05-25 16:35:51 +0000239 early_usbdebug_init();
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000240#endif
241
242 console_init();
243
244 /* Halt if there was a built in self test failure */
245 report_bist_failure(bist);
246
247 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000248 printk(BIOS_DEBUG, "soft reset detected.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000249 boot_mode = 1;
250 }
251
252 /* Perform some early chipset initialization required
253 * before RAM initialization can work
254 */
255 i945_early_initialization();
256
257 /* Read PM1_CNT */
258 reg32 = inl(DEFAULT_PMBASE + 0x04);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000259 printk(BIOS_DEBUG, "PM1_CNT: %08x\n", reg32);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000260 if (((reg32 >> 10) & 7) == 5) {
261#if CONFIG_HAVE_ACPI_RESUME
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000262 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000263 boot_mode = 2;
264 /* Clear SLP_TYPE. This will break stage2 but
265 * we care for that when we get there.
266 */
267 outl(reg32 & ~(7 << 10), DEFAULT_PMBASE + 0x04);
268#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000269 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000270#endif
271 }
272
273 /* Enable SPD ROMs and DDR-II DRAM */
274 enable_smbus();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000275
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000276#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
277 dump_spd_registers();
278#endif
279
280 sdram_initialize(boot_mode);
281
282 /* Perform some initialization that must run before stage2 */
283 early_ich7_init();
284
Stefan Reinauer14e22772010-04-27 06:56:47 +0000285 /* This should probably go away. Until now it is required
286 * and mainboard specific
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000287 */
288 rcba_config();
289
290 /* Chipset Errata! */
291 fixup_i945_errata();
292
293 /* Initialize the internal PCIe links before we go into stage2 */
294 i945_late_initialization();
295
296#if !CONFIG_HAVE_ACPI_RESUME
297#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
Uwe Hermannf14c9192010-09-25 14:58:28 +0000298#if CONFIG_DEBUG_RAM_SETUP
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000299 sdram_dump_mchbar_registers();
300#endif
301
302 {
303 /* This will not work if TSEG is in place! */
304 u32 tom = pci_read_config32(PCI_DEV(0,2,0), 0x5c);
305
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000306 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000307 ram_check(0x00000000, 0x000a0000);
308 //ram_check(0x00100000, tom);
309 }
310#endif
311#endif
312
313 MCHBAR16(SSKPD) = 0xCAFE;
314
315#if CONFIG_HAVE_ACPI_RESUME
316 /* Start address of high memory tables */
317 unsigned long high_ram_base = get_top_of_ram() - HIGH_MEMORY_SIZE;
318
319 /* If there is no high memory area, we didn't boot before, so
320 * this is not a resume. In that case we just create the cbmem toc.
321 */
322 if ((boot_mode == 2) && cbmem_reinit((u64)high_ram_base)) {
323 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
324
325 /* copy 1MB - 64K to high tables ram_base to prevent memory corruption
326 * through stage 2. We could keep stuff like stack and heap in high tables
327 * memory completely, but that's a wonderful clean up task for another
328 * day.
329 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000330 if (resume_backup_memory)
Stefan Reinauer53b0ea42010-03-22 11:50:52 +0000331 memcpy(resume_backup_memory, (void *)CONFIG_RAMBASE, HIGH_MEMORY_SAVE);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000332
333 /* Magic for S3 resume */
334 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
335 }
336#endif
337}
338