990263012239f2e32c07d9749f5202c9d1daf3ec
[coreboot.git] / src / mainboard / ibase / mb899 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2010 coresystems GmbH
5  *
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
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 // __PRE_RAM__ means: use "unsigned" for device, not a struct.
21
22 #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>
29 #include <lib.h>
30 #include "superio/winbond/w83627ehg/w83627ehg.h"
31 #include <pc80/mc146818rtc.h>
32 #include <console/console.h>
33 #include <usbdebug.h>
34 #include <cpu/x86/bist.h>
35 #include "superio/winbond/w83627ehg/w83627ehg_early_serial.c"
36 #include "northbridge/intel/i945/i945.h"
37 #include "northbridge/intel/i945/raminit.h"
38 #include "southbridge/intel/i82801gx/i82801gx.h"
39
40 #define SERIAL_DEV PNP_DEV(0x4e, W83627EHG_SP1)
41 #define DUMMY_DEV PNP_DEV(0x4e, 0)
42
43 void enable_smbus(void);
44
45 void setup_ich7_gpios(void)
46 {
47         printk(BIOS_DEBUG, " GPIOS...");
48         /* General Registers */
49         outl(0x1f1ff7c0, DEFAULT_GPIOBASE + 0x00);      /* GPIO_USE_SEL */
50         outl(0xe0e8efc3, DEFAULT_GPIOBASE + 0x04);      /* GP_IO_SEL */
51         outl(0xebffeeff, DEFAULT_GPIOBASE + 0x0c);      /* GP_LVL */
52         /* Output Control Registers */
53         outl(0x00000000, DEFAULT_GPIOBASE + 0x18);      /* GPO_BLINK */
54         /* Input Control Registers */
55         outl(0x00002180, DEFAULT_GPIOBASE + 0x2c);      /* GPI_INV */
56         outl(0x000100ff, DEFAULT_GPIOBASE + 0x30);      /* GPIO_USE_SEL2 */
57         outl(0x00000030, DEFAULT_GPIOBASE + 0x34);      /* GP_IO_SEL2 */
58         outl(0x00010035, DEFAULT_GPIOBASE + 0x38);      /* GP_LVL */
59 }
60
61 static 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/COM2/KBD/SuperIO1+2
68         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x340b);
69         // Enable HWM at 0x290
70         pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x84, 0x00fc0291);
71         // io 0x300 decode
72         pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x90, 0x00000301);
73 }
74
75 /* This box has one superio
76  * Also set up the GPIOs from the beginning. This is the "no schematic
77  * but safe anyways" method.
78  */
79 static void early_superio_config_w83627ehg(void)
80 {
81         device_t dev;
82
83         dev = DUMMY_DEV;
84         pnp_enter_ext_func_mode(dev);
85
86         pnp_write_config(dev, 0x24, 0xc4); // PNPCSV
87
88         pnp_write_config(dev, 0x29, 0x01); // GPIO settings
89         pnp_write_config(dev, 0x2a, 0x40); // GPIO settings should be fc but gets set to 02
90         pnp_write_config(dev, 0x2b, 0xc0); // GPIO settings?
91         pnp_write_config(dev, 0x2c, 0x03); // GPIO settings?
92         pnp_write_config(dev, 0x2d, 0x20); // GPIO settings?
93
94         dev=PNP_DEV(0x4e, W83627EHG_SP1);
95         pnp_set_logical_device(dev);
96         pnp_set_enable(dev, 0);
97         pnp_set_iobase(dev, PNP_IDX_IO0, 0x3f8);
98         pnp_set_irq(dev, PNP_IDX_IRQ0, 4);
99         pnp_set_enable(dev, 1);
100
101         dev=PNP_DEV(0x4e, W83627EHG_SP2);
102         pnp_set_logical_device(dev);
103         pnp_set_enable(dev, 0);
104         pnp_set_iobase(dev, PNP_IDX_IO0, 0x2f8);
105         pnp_set_irq(dev, PNP_IDX_IRQ0, 3);
106         // pnp_write_config(dev, 0xf1, 4); // IRMODE0
107         pnp_set_enable(dev, 1);
108
109         dev=PNP_DEV(0x4e, W83627EHG_KBC); // Keyboard
110         pnp_set_logical_device(dev);
111         pnp_set_enable(dev, 0);
112         pnp_set_iobase(dev, PNP_IDX_IO0, 0x60);
113         pnp_set_iobase(dev, PNP_IDX_IO1, 0x64);
114         //pnp_write_config(dev, 0xf0, 0x82);
115         pnp_set_enable(dev, 1);
116
117         dev=PNP_DEV(0x4e, W83627EHG_GPIO2);
118         pnp_set_logical_device(dev);
119         pnp_set_enable(dev, 1); // Just enable it
120
121         dev=PNP_DEV(0x4e, W83627EHG_GPIO3);
122         pnp_set_logical_device(dev);
123         pnp_set_enable(dev, 0);
124         pnp_write_config(dev, 0xf0, 0xfb); // GPIO bit 2 is output
125         pnp_write_config(dev, 0xf1, 0x00); // GPIO bit 2 is 0
126         pnp_write_config(dev, 0x30, 0x03); // Enable GPIO3+4. pnp_set_enable is not sufficient
127
128         dev=PNP_DEV(0x4e, W83627EHG_FDC);
129         pnp_set_logical_device(dev);
130         pnp_set_enable(dev, 0);
131
132         dev=PNP_DEV(0x4e, W83627EHG_PP);
133         pnp_set_logical_device(dev);
134         pnp_set_enable(dev, 0);
135
136         /* Enable HWM */
137         dev=PNP_DEV(0x4e, W83627EHG_HWM);
138         pnp_set_logical_device(dev);
139         pnp_set_enable(dev, 0);
140         pnp_set_iobase(dev, PNP_IDX_IO0, 0xa00);
141         pnp_set_enable(dev, 1);
142
143         pnp_exit_ext_func_mode(dev);
144 }
145
146 static void rcba_config(void)
147 {
148         /* Set up virtual channel 0 */
149         //RCBA32(0x0014) = 0x80000001;
150         //RCBA32(0x001c) = 0x03128010;
151
152         /* Device 1f interrupt pin register */
153         RCBA32(0x3100) = 0x00042210;
154         /* Device 1d interrupt pin register */
155         RCBA32(0x310c) = 0x00214321;
156
157         /* dev irq route register */
158         RCBA16(0x3140) = 0x0132;
159         RCBA16(0x3142) = 0x0146;
160         RCBA16(0x3144) = 0x0237;
161         RCBA16(0x3146) = 0x3201;
162         RCBA16(0x3148) = 0x0146;
163
164         /* Enable IOAPIC */
165         RCBA8(0x31ff) = 0x03;
166
167         /* Enable upper 128bytes of CMOS */
168         RCBA32(0x3400) = (1 << 2);
169
170         /* Enable PCIe Root Port Clock Gate */
171         // RCBA32(0x341c) = 0x00000001;
172 }
173
174 static void early_ich7_init(void)
175 {
176         uint8_t reg8;
177         uint32_t reg32;
178
179         // program secondary mlt XXX byte?
180         pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
181
182         // reset rtc power status
183         reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
184         reg8 &= ~(1 << 2);
185         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
186
187         // usb transient disconnect
188         reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
189         reg8 |= (3 << 0);
190         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
191
192         reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
193         reg32 |= (1 << 29) | (1 << 17);
194         pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
195
196         reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
197         reg32 |= (1 << 31) | (1 << 27);
198         pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
199
200         RCBA32(0x0088) = 0x0011d000;
201         RCBA16(0x01fc) = 0x060f;
202         RCBA32(0x01f4) = 0x86000040;
203         RCBA32(0x0214) = 0x10030549;
204         RCBA32(0x0218) = 0x00020504;
205         RCBA8(0x0220) = 0xc5;
206         reg32 = RCBA32(0x3410);
207         reg32 |= (1 << 6);
208         RCBA32(0x3410) = reg32;
209         reg32 = RCBA32(0x3430);
210         reg32 &= ~(3 << 0);
211         reg32 |= (1 << 0);
212         RCBA32(0x3430) = reg32;
213         RCBA32(0x3418) |= (1 << 0);
214         RCBA16(0x0200) = 0x2008;
215         RCBA8(0x2027) = 0x0d;
216         RCBA16(0x3e08) |= (1 << 7);
217         RCBA16(0x3e48) |= (1 << 7);
218         RCBA32(0x3e0e) |= (1 << 7);
219         RCBA32(0x3e4e) |= (1 << 7);
220
221         // next step only on ich7m b0 and later:
222         reg32 = RCBA32(0x2034);
223         reg32 &= ~(0x0f << 16);
224         reg32 |= (5 << 16);
225         RCBA32(0x2034) = reg32;
226 }
227
228 #include <cbmem.h>
229
230 // Now, this needs to be included because it relies on the symbol
231 // __PRE_RAM__ being set during CAR stage (in order to compile the
232 // BSS free versions of the functions). Either rewrite the code
233 // to be always BSS free, or invent a flag that's better suited than
234 // __PRE_RAM__ to determine whether we're in ram init stage (stage 1)
235 //
236 #include "lib/cbmem.c"
237
238 void main(unsigned long bist)
239 {
240         u32 reg32;
241         int boot_mode = 0;
242
243         if (bist == 0)
244                 enable_lapic();
245
246         ich7_enable_lpc();
247         early_superio_config_w83627ehg();
248
249         /* Set up the console */
250         uart_init();
251
252 #if CONFIG_USBDEBUG
253         i82801gx_enable_usbdebug(1);
254         early_usbdebug_init();
255 #endif
256
257         console_init();
258
259         /* Halt if there was a built in self test failure */
260         report_bist_failure(bist);
261
262         if (MCHBAR16(SSKPD) == 0xCAFE) {
263                 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
264                 outb(0x6, 0xcf9);
265                 while (1) asm("hlt");
266         }
267
268         /* Perform some early chipset initialization required
269          * before RAM initialization can work
270          */
271         i945_early_initialization();
272
273         /* Read PM1_CNT */
274         reg32 = inl(DEFAULT_PMBASE + 0x04);
275         printk(BIOS_DEBUG, "PM1_CNT: %08x\n", reg32);
276         if (((reg32 >> 10) & 7) == 5) {
277 #if CONFIG_HAVE_ACPI_RESUME
278                 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
279                 boot_mode = 2;
280                 /* Clear SLP_TYPE. This will break stage2 but
281                  * we care for that when we get there.
282                  */
283                 outl(reg32 & ~(7 << 10), DEFAULT_PMBASE + 0x04);
284 #else
285                 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
286 #endif
287         }
288
289         /* Enable SPD ROMs and DDR-II DRAM */
290         enable_smbus();
291
292 #if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
293         dump_spd_registers();
294 #endif
295
296         sdram_initialize(boot_mode);
297
298         /* Perform some initialization that must run before stage2 */
299         early_ich7_init();
300
301         /* This should probably go away. Until now it is required
302          * and mainboard specific
303          */
304         rcba_config();
305
306         /* Chipset Errata! */
307         fixup_i945_errata();
308
309         /* Initialize the internal PCIe links before we go into stage2 */
310         i945_late_initialization();
311
312 #if !CONFIG_HAVE_ACPI_RESUME
313 #if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
314 #if CONFIG_DEBUG_RAM_SETUP
315         sdram_dump_mchbar_registers();
316 #endif
317
318         {
319                 /* This will not work if TSEG is in place! */
320                 u32 tom = pci_read_config32(PCI_DEV(0,2,0), 0x5c);
321
322                 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
323                 ram_check(0x00000000, 0x000a0000);
324                 //ram_check(0x00100000, tom);
325         }
326 #endif
327 #endif
328
329         quick_ram_check();
330
331         MCHBAR16(SSKPD) = 0xCAFE;
332
333 #if CONFIG_HAVE_ACPI_RESUME
334         /* Start address of high memory tables */
335         unsigned long high_ram_base = get_top_of_ram() - HIGH_MEMORY_SIZE;
336
337         /* If there is no high memory area, we didn't boot before, so
338          * this is not a resume. In that case we just create the cbmem toc.
339          */
340         if ((boot_mode == 2) && cbmem_reinit((u64)high_ram_base)) {
341                 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
342
343                 /* copy 1MB - 64K to high tables ram_base to prevent memory corruption
344                  * through stage 2. We could keep stuff like stack and heap in high tables
345                  * memory completely, but that's a wonderful clean up task for another
346                  * day.
347                  */
348                 if (resume_backup_memory)
349                         memcpy(resume_backup_memory, (void *)CONFIG_RAMBASE, HIGH_MEMORY_SAVE);
350
351                 /* Magic for S3 resume */
352                 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
353         }
354 #endif
355 }