blob: 69d4232eddc657c343de5b0469509e25ce63f553 [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>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000025#include <device/pci_def.h>
26#include <device/pnp_def.h>
27#include <cpu/x86/lapic.h>
Patrick Georgid0835952010-10-05 09:07:10 +000028#include <lib.h>
Kyösti Mälkkia7c96112013-10-13 20:41:57 +030029#include <cbmem.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>
Stefan Reinauer1a08f582009-10-28 16:52:48 +000033#include <cpu/x86/bist.h>
stepan8301d832010-12-08 07:07:33 +000034#include "superio/smsc/lpc47m15x/early_serial.c"
Patrick Georgid0835952010-10-05 09:07:10 +000035#include "northbridge/intel/i945/i945.h"
36#include "northbridge/intel/i945/raminit.h"
Stefan Reinauer1a08f582009-10-28 16:52:48 +000037#include "southbridge/intel/i82801gx/i82801gx.h"
Patrick Georgid0835952010-10-05 09:07:10 +000038
Uwe Hermann57b2ff82010-11-21 17:29:59 +000039#define SERIAL_DEV PNP_DEV(0x2e, W83627THG_SP1)
40
Patrick Georgid0835952010-10-05 09:07:10 +000041void setup_ich7_gpios(void)
Stefan Reinauer1a08f582009-10-28 16:52:48 +000042{
43 /* TODO: This is highly board specific and should be moved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000044 printk(BIOS_DEBUG, " GPIOS...");
Stefan Reinauer1a08f582009-10-28 16:52:48 +000045 /* General Registers */
46 outl(0x3f3df7c1, DEFAULT_GPIOBASE + 0x00); /* GPIO_USE_SEL */
47 outl(0xc6fcbfc3, DEFAULT_GPIOBASE + 0x04); /* GP_IO_SEL */
48 outl(0xecfefdff, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
49 /* Output Control Registers */
50 outl(0x00040000, DEFAULT_GPIOBASE + 0x18); /* GPO_BLINK */
51 /* Input Control Registers */
52 outl(0x0000a000, DEFAULT_GPIOBASE + 0x2c); /* GPI_INV */
53 outl(0x000000ff, DEFAULT_GPIOBASE + 0x30); /* GPIO_USE_SEL2 */
54 outl(0x000000bf, DEFAULT_GPIOBASE + 0x34); /* GP_IO_SEL2 */
55 outl(0x000300fd, DEFAULT_GPIOBASE + 0x38); /* GP_LVL */
56}
57
Stefan Reinauer1a08f582009-10-28 16:52:48 +000058static void ich7_enable_lpc(void)
59{
60 // Enable Serial IRQ
61 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x64, 0xd0);
62 // Set COM1/COM2 decode range
63 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0010);
64 // Enable COM1
65 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x140d);
66 // Enable SuperIO Power Management Events
67 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x84, 0x007c0681);
68}
69
Stefan Reinauer1a08f582009-10-28 16:52:48 +000070/* This box has two superios, so enabling serial becomes slightly excessive.
71 * We disable a lot of stuff to make sure that there are no conflicts between
72 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
73 * but safe anyways" method.
74 */
75static void early_superio_config_lpc47m15x(void)
76{
77 device_t dev;
Stefan Reinauer14e22772010-04-27 06:56:47 +000078
Stefan Reinauer1a08f582009-10-28 16:52:48 +000079 dev=PNP_DEV(0x2e, LPC47M15X_SP1);
80 pnp_enter_conf_state(dev);
81
82 pnp_set_logical_device(dev);
83 pnp_set_enable(dev, 0);
84 pnp_set_iobase(dev, PNP_IDX_IO0, 0x3f8);
85 pnp_set_irq(dev, PNP_IDX_IRQ0, 4);
86 pnp_set_enable(dev, 1);
87
88 /* Enable SuperIO PM */
89 dev=PNP_DEV(0x2e, LPC47M15X_PME);
90 pnp_set_logical_device(dev);
91 pnp_set_enable(dev, 0);
92 pnp_set_iobase(dev, PNP_IDX_IO0, 0x680);
93 pnp_set_enable(dev, 1);
94
95 pnp_exit_conf_state(dev);
96}
97
98static void rcba_config(void)
99{
100 /* Set up virtual channel 0 */
101 //RCBA32(0x0014) = 0x80000001;
102 //RCBA32(0x001c) = 0x03128010;
103
104 /* Device 1f interrupt pin register */
105 RCBA32(0x3100) = 0x00042210;
106 /* Device 1d interrupt pin register */
107 RCBA32(0x310c) = 0x00214321;
108
109 /* dev irq route register */
110 RCBA16(0x3140) = 0x0132;
111 RCBA16(0x3142) = 0x0146;
112 RCBA16(0x3144) = 0x0237;
113 RCBA16(0x3146) = 0x3201;
114 RCBA16(0x3148) = 0x0146;
115
116 /* Enable IOAPIC */
117 RCBA8(0x31ff) = 0x03;
118
119 /* Enable upper 128bytes of CMOS */
120 RCBA32(0x3400) = (1 << 2);
121
122 /* Disable unused devices */
123 //RCBA32(0x3418) = FD_PCIE6|FD_PCIE5|FD_PCIE4|FD_ACMOD|FD_ACAUD|FD_PATA;
124 // RCBA32(0x3418) |= (1 << 0); // Required.
125 // FIXME look me up!
126 RCBA32(0x3418) = 0x003204e1;
127
128 /* Enable PCIe Root Port Clock Gate */
129 // RCBA32(0x341c) = 0x00000001;
130}
131
132static void early_ich7_init(void)
133{
134 uint8_t reg8;
135 uint32_t reg32;
136
137 // program secondary mlt XXX byte?
138 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
139
140 // reset rtc power status
141 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
142 reg8 &= ~(1 << 2);
143 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
144
145 // usb transient disconnect
146 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
147 reg8 |= (3 << 0);
148 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
149
150 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
151 reg32 |= (1 << 29) | (1 << 17);
152 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
153
154 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
155 reg32 |= (1 << 31) | (1 << 27);
156 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
157
158 RCBA32(0x0088) = 0x0011d000;
159 RCBA16(0x01fc) = 0x060f;
160 RCBA32(0x01f4) = 0x86000040;
161 RCBA32(0x0214) = 0x10030549;
162 RCBA32(0x0218) = 0x00020504;
163 RCBA8(0x0220) = 0xc5;
164 reg32 = RCBA32(0x3410);
165 reg32 |= (1 << 6);
166 RCBA32(0x3410) = reg32;
167 reg32 = RCBA32(0x3430);
168 reg32 &= ~(3 << 0);
169 reg32 |= (1 << 0);
170 RCBA32(0x3430) = reg32;
171 RCBA32(0x3418) |= (1 << 0);
172 RCBA16(0x0200) = 0x2008;
173 RCBA8(0x2027) = 0x0d;
174 RCBA16(0x3e08) |= (1 << 7);
175 RCBA16(0x3e48) |= (1 << 7);
176 RCBA32(0x3e0e) |= (1 << 7);
177 RCBA32(0x3e4e) |= (1 << 7);
178
179 // next step only on ich7m b0 and later:
180 reg32 = RCBA32(0x2034);
181 reg32 &= ~(0x0f << 16);
182 reg32 |= (5 << 16);
183 RCBA32(0x2034) = reg32;
184}
185
Stefan Reinauer170679b2010-04-13 00:11:59 +0000186void main(unsigned long bist)
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000187{
188 u32 reg32;
189 int boot_mode = 0;
Kyösti Mälkkia7c96112013-10-13 20:41:57 +0300190 int cbmem_was_initted;
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000191
Uwe Hermann7b997052010-11-21 22:47:22 +0000192 if (bist == 0)
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000193 enable_lapic();
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000194
195 ich7_enable_lpc();
196 early_superio_config_lpc47m15x();
197
198 /* Set up the console */
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000199 console_init();
200
201 /* Halt if there was a built in self test failure */
202 report_bist_failure(bist);
203
204 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000205 printk(BIOS_DEBUG, "soft reset detected.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000206 boot_mode = 1;
207 }
208
209 /* Perform some early chipset initialization required
210 * before RAM initialization can work
211 */
212 i945_early_initialization();
213
214 /* Read PM1_CNT */
215 reg32 = inl(DEFAULT_PMBASE + 0x04);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000216 printk(BIOS_DEBUG, "PM1_CNT: %08x\n", reg32);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000217 if (((reg32 >> 10) & 7) == 5) {
218#if CONFIG_HAVE_ACPI_RESUME
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000219 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000220 boot_mode = 2;
221 /* Clear SLP_TYPE. This will break stage2 but
222 * we care for that when we get there.
223 */
224 outl(reg32 & ~(7 << 10), DEFAULT_PMBASE + 0x04);
225#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000226 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000227#endif
228 }
229
230 /* Enable SPD ROMs and DDR-II DRAM */
231 enable_smbus();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000232
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000233#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
234 dump_spd_registers();
235#endif
236
Sven Schnelle541269b2011-02-21 09:39:17 +0000237 sdram_initialize(boot_mode, NULL);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000238
239 /* Perform some initialization that must run before stage2 */
240 early_ich7_init();
241
Stefan Reinauer14e22772010-04-27 06:56:47 +0000242 /* This should probably go away. Until now it is required
243 * and mainboard specific
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000244 */
245 rcba_config();
246
247 /* Chipset Errata! */
248 fixup_i945_errata();
249
250 /* Initialize the internal PCIe links before we go into stage2 */
251 i945_late_initialization();
252
253#if !CONFIG_HAVE_ACPI_RESUME
254#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
Uwe Hermannf14c9192010-09-25 14:58:28 +0000255#if CONFIG_DEBUG_RAM_SETUP
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000256 sdram_dump_mchbar_registers();
257#endif
258
259 {
260 /* This will not work if TSEG is in place! */
261 u32 tom = pci_read_config32(PCI_DEV(0,2,0), 0x5c);
262
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000263 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000264 ram_check(0x00000000, 0x000a0000);
265 //ram_check(0x00100000, tom);
266 }
267#endif
268#endif
269
270 MCHBAR16(SSKPD) = 0xCAFE;
271
Kyösti Mälkki2d8520b2014-01-06 17:20:31 +0200272 cbmem_was_initted = !cbmem_recovery(boot_mode==2);
Kyösti Mälkkia7c96112013-10-13 20:41:57 +0300273
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000274#if CONFIG_HAVE_ACPI_RESUME
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000275 /* If there is no high memory area, we didn't boot before, so
276 * this is not a resume. In that case we just create the cbmem toc.
277 */
Kyösti Mälkkia7c96112013-10-13 20:41:57 +0300278 if ((boot_mode == 2) && cbmem_was_initted) {
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000279 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
280
281 /* copy 1MB - 64K to high tables ram_base to prevent memory corruption
282 * through stage 2. We could keep stuff like stack and heap in high tables
283 * memory completely, but that's a wonderful clean up task for another
284 * day.
285 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000286 if (resume_backup_memory)
Stefan Reinauer53b0ea42010-03-22 11:50:52 +0000287 memcpy(resume_backup_memory, (void *)CONFIG_RAMBASE, HIGH_MEMORY_SAVE);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000288
289 /* Magic for S3 resume */
Sven Schnelled8c68a92011-06-15 09:26:34 +0200290 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, SKPAD_ACPI_S3_MAGIC);
Stefan Reinauer1a08f582009-10-28 16:52:48 +0000291 }
292#endif
293}