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