blob: 8d155d1662a58263bb2c9cd7d3079e5790b6cbc3 [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 Reinauer1a08f582009-10-28 16:52:48 +000022#include <stdint.h>
23#include <string.h>
24#include <arch/io.h>
25#include <arch/romcc_io.h>
26#include <device/pci_def.h>
27#include <device/pnp_def.h>
28#include <cpu/x86/lapic.h>
Patrick Georgid0835952010-10-05 09:07:10 +000029#include <lib.h>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000030#include "superio/smsc/lpc47m15x/lpc47m15x.h"
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000031#include <pc80/mc146818rtc.h>
Stefan Reinauer8a7d34b2010-02-22 09:15:13 +000032#include <console/console.h>
Patrick Georgi5692c572010-10-05 13:40:31 +000033#include <usbdebug.h>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000034#include <cpu/x86/bist.h>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000035#include "superio/smsc/lpc47m15x/lpc47m15x_early_serial.c"
Patrick Georgid0835952010-10-05 09:07:10 +000036#include "northbridge/intel/i945/i945.h"
37#include "northbridge/intel/i945/raminit.h"
Stefan Reinauer1a08f582009-10-28 16:52:48 +000038#include "southbridge/intel/i82801gx/i82801gx.h"
Patrick Georgid0835952010-10-05 09:07:10 +000039
Uwe Hermann57b2ff82010-11-21 17:29:59 +000040#define SERIAL_DEV PNP_DEV(0x2e, W83627THG_SP1)
41
Patrick Georgid0835952010-10-05 09:07:10 +000042void enable_smbus(void);
43
44void setup_ich7_gpios(void)
Stefan Reinauer1a08f582009-10-28 16:52:48 +000045{
46 /* TODO: This is highly board specific and should be moved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000047 printk(BIOS_DEBUG, " GPIOS...");
Stefan Reinauer1a08f582009-10-28 16:52:48 +000048 /* General Registers */
49 outl(0x3f3df7c1, DEFAULT_GPIOBASE + 0x00); /* GPIO_USE_SEL */
50 outl(0xc6fcbfc3, DEFAULT_GPIOBASE + 0x04); /* GP_IO_SEL */
51 outl(0xecfefdff, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
52 /* Output Control Registers */
53 outl(0x00040000, DEFAULT_GPIOBASE + 0x18); /* GPO_BLINK */
54 /* Input Control Registers */
55 outl(0x0000a000, DEFAULT_GPIOBASE + 0x2c); /* GPI_INV */
56 outl(0x000000ff, DEFAULT_GPIOBASE + 0x30); /* GPIO_USE_SEL2 */
57 outl(0x000000bf, DEFAULT_GPIOBASE + 0x34); /* GP_IO_SEL2 */
58 outl(0x000300fd, DEFAULT_GPIOBASE + 0x38); /* GP_LVL */
59}
60
Stefan Reinauer1a08f582009-10-28 16:52:48 +000061static void ich7_enable_lpc(void)
62{
63 // Enable Serial IRQ
64 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x64, 0xd0);
65 // Set COM1/COM2 decode range
66 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0010);
67 // Enable COM1
68 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x140d);
69 // Enable SuperIO Power Management Events
70 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x84, 0x007c0681);
71}
72
Stefan Reinauer1a08f582009-10-28 16:52:48 +000073/* This box has two superios, so enabling serial becomes slightly excessive.
74 * We disable a lot of stuff to make sure that there are no conflicts between
75 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
76 * but safe anyways" method.
77 */
78static void early_superio_config_lpc47m15x(void)
79{
80 device_t dev;
Stefan Reinauer14e22772010-04-27 06:56:47 +000081
Stefan Reinauer1a08f582009-10-28 16:52:48 +000082 dev=PNP_DEV(0x2e, LPC47M15X_SP1);
83 pnp_enter_conf_state(dev);
84
85 pnp_set_logical_device(dev);
86 pnp_set_enable(dev, 0);
87 pnp_set_iobase(dev, PNP_IDX_IO0, 0x3f8);
88 pnp_set_irq(dev, PNP_IDX_IRQ0, 4);
89 pnp_set_enable(dev, 1);
90
91 /* Enable SuperIO PM */
92 dev=PNP_DEV(0x2e, LPC47M15X_PME);
93 pnp_set_logical_device(dev);
94 pnp_set_enable(dev, 0);
95 pnp_set_iobase(dev, PNP_IDX_IO0, 0x680);
96 pnp_set_enable(dev, 1);
97
98 pnp_exit_conf_state(dev);
99}
100
101static void rcba_config(void)
102{
103 /* Set up virtual channel 0 */
104 //RCBA32(0x0014) = 0x80000001;
105 //RCBA32(0x001c) = 0x03128010;
106
107 /* Device 1f interrupt pin register */
108 RCBA32(0x3100) = 0x00042210;
109 /* Device 1d interrupt pin register */
110 RCBA32(0x310c) = 0x00214321;
111
112 /* dev irq route register */
113 RCBA16(0x3140) = 0x0132;
114 RCBA16(0x3142) = 0x0146;
115 RCBA16(0x3144) = 0x0237;
116 RCBA16(0x3146) = 0x3201;
117 RCBA16(0x3148) = 0x0146;
118
119 /* Enable IOAPIC */
120 RCBA8(0x31ff) = 0x03;
121
122 /* Enable upper 128bytes of CMOS */
123 RCBA32(0x3400) = (1 << 2);
124
125 /* Disable unused devices */
126 //RCBA32(0x3418) = FD_PCIE6|FD_PCIE5|FD_PCIE4|FD_ACMOD|FD_ACAUD|FD_PATA;
127 // RCBA32(0x3418) |= (1 << 0); // Required.
128 // FIXME look me up!
129 RCBA32(0x3418) = 0x003204e1;
130
131 /* Enable PCIe Root Port Clock Gate */
132 // RCBA32(0x341c) = 0x00000001;
133}
134
135static void early_ich7_init(void)
136{
137 uint8_t reg8;
138 uint32_t reg32;
139
140 // program secondary mlt XXX byte?
141 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
142
143 // reset rtc power status
144 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
145 reg8 &= ~(1 << 2);
146 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
147
148 // usb transient disconnect
149 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
150 reg8 |= (3 << 0);
151 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
152
153 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
154 reg32 |= (1 << 29) | (1 << 17);
155 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
156
157 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
158 reg32 |= (1 << 31) | (1 << 27);
159 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
160
161 RCBA32(0x0088) = 0x0011d000;
162 RCBA16(0x01fc) = 0x060f;
163 RCBA32(0x01f4) = 0x86000040;
164 RCBA32(0x0214) = 0x10030549;
165 RCBA32(0x0218) = 0x00020504;
166 RCBA8(0x0220) = 0xc5;
167 reg32 = RCBA32(0x3410);
168 reg32 |= (1 << 6);
169 RCBA32(0x3410) = reg32;
170 reg32 = RCBA32(0x3430);
171 reg32 &= ~(3 << 0);
172 reg32 |= (1 << 0);
173 RCBA32(0x3430) = reg32;
174 RCBA32(0x3418) |= (1 << 0);
175 RCBA16(0x0200) = 0x2008;
176 RCBA8(0x2027) = 0x0d;
177 RCBA16(0x3e08) |= (1 << 7);
178 RCBA16(0x3e48) |= (1 << 7);
179 RCBA32(0x3e0e) |= (1 << 7);
180 RCBA32(0x3e4e) |= (1 << 7);
181
182 // next step only on ich7m b0 and later:
183 reg32 = RCBA32(0x2034);
184 reg32 &= ~(0x0f << 16);
185 reg32 |= (5 << 16);
186 RCBA32(0x2034) = reg32;
187}
188
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000189#include <cbmem.h>
190
191// Now, this needs to be included because it relies on the symbol
Myles Watson1d6d45e2009-11-06 17:02:51 +0000192// __PRE_RAM__ being set during CAR stage (in order to compile the
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000193// BSS free versions of the functions). Either rewrite the code
194// to be always BSS free, or invent a flag that's better suited than
Myles Watson1d6d45e2009-11-06 17:02:51 +0000195// __PRE_RAM__ to determine whether we're in ram init stage (stage 1)
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000196//
197#include "lib/cbmem.c"
198
Stefan Reinauer170679b2010-04-13 00:11:59 +0000199void main(unsigned long bist)
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000200{
201 u32 reg32;
202 int boot_mode = 0;
203
204 if (bist == 0) {
205 enable_lapic();
206 }
207
208 ich7_enable_lpc();
209 early_superio_config_lpc47m15x();
210
211 /* Set up the console */
212 uart_init();
213
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000214#if CONFIG_USBDEBUG
Uwe Hermann370d9792010-09-25 14:23:31 +0000215 i82801gx_enable_usbdebug(1);
Stefan Reinauer75a05dc2010-05-25 16:35:51 +0000216 early_usbdebug_init();
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000217#endif
218
219 console_init();
220
221 /* Halt if there was a built in self test failure */
222 report_bist_failure(bist);
223
224 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000225 printk(BIOS_DEBUG, "soft reset detected.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000226 boot_mode = 1;
227 }
228
229 /* Perform some early chipset initialization required
230 * before RAM initialization can work
231 */
232 i945_early_initialization();
233
234 /* Read PM1_CNT */
235 reg32 = inl(DEFAULT_PMBASE + 0x04);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000236 printk(BIOS_DEBUG, "PM1_CNT: %08x\n", reg32);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000237 if (((reg32 >> 10) & 7) == 5) {
238#if CONFIG_HAVE_ACPI_RESUME
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000239 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000240 boot_mode = 2;
241 /* Clear SLP_TYPE. This will break stage2 but
242 * we care for that when we get there.
243 */
244 outl(reg32 & ~(7 << 10), DEFAULT_PMBASE + 0x04);
245#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000246 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000247#endif
248 }
249
250 /* Enable SPD ROMs and DDR-II DRAM */
251 enable_smbus();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000252
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000253#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
254 dump_spd_registers();
255#endif
256
257 sdram_initialize(boot_mode);
258
259 /* Perform some initialization that must run before stage2 */
260 early_ich7_init();
261
Stefan Reinauer14e22772010-04-27 06:56:47 +0000262 /* This should probably go away. Until now it is required
263 * and mainboard specific
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000264 */
265 rcba_config();
266
267 /* Chipset Errata! */
268 fixup_i945_errata();
269
270 /* Initialize the internal PCIe links before we go into stage2 */
271 i945_late_initialization();
272
273#if !CONFIG_HAVE_ACPI_RESUME
274#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
Uwe Hermannf14c9192010-09-25 14:58:28 +0000275#if CONFIG_DEBUG_RAM_SETUP
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000276 sdram_dump_mchbar_registers();
277#endif
278
279 {
280 /* This will not work if TSEG is in place! */
281 u32 tom = pci_read_config32(PCI_DEV(0,2,0), 0x5c);
282
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000283 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000284 ram_check(0x00000000, 0x000a0000);
285 //ram_check(0x00100000, tom);
286 }
287#endif
288#endif
289
290 MCHBAR16(SSKPD) = 0xCAFE;
291
292#if CONFIG_HAVE_ACPI_RESUME
293 /* Start address of high memory tables */
294 unsigned long high_ram_base = get_top_of_ram() - HIGH_MEMORY_SIZE;
295
296 /* If there is no high memory area, we didn't boot before, so
297 * this is not a resume. In that case we just create the cbmem toc.
298 */
299 if ((boot_mode == 2) && cbmem_reinit((u64)high_ram_base)) {
300 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
301
302 /* copy 1MB - 64K to high tables ram_base to prevent memory corruption
303 * through stage 2. We could keep stuff like stack and heap in high tables
304 * memory completely, but that's a wonderful clean up task for another
305 * day.
306 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000307 if (resume_backup_memory)
Stefan Reinauer53b0ea42010-03-22 11:50:52 +0000308 memcpy(resume_backup_memory, (void *)CONFIG_RAMBASE, HIGH_MEMORY_SAVE);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000309
310 /* Magic for S3 resume */
311 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
312 }
313#endif
314}