Compile cbmem.c instead of including it in romstage,
[coreboot.git] / src / mainboard / getac / p470 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  * 
4  * Copyright (C) 2007-2009 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
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
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 <usbdebug.h>
31 #include <pc80/mc146818rtc.h>
32 #include <console/console.h>
33 #include <cpu/x86/bist.h>
34 #include "northbridge/intel/i945/i945.h"
35 #include "northbridge/intel/i945/raminit.h"
36 #include "southbridge/intel/i82801gx/i82801gx.h"
37
38 void setup_ich7_gpios(void)
39 {
40         u32 gpios;
41
42         printk(BIOS_DEBUG, " GPIOS...");
43         /* General Registers */
44         outl(0x1f28f7c2, DEFAULT_GPIOBASE + 0x00);      /* GPIO_USE_SEL */
45         outl(0xe0e809c3, DEFAULT_GPIOBASE + 0x04);      /* GP_IO_SEL */
46         // Power On value is eede1fbf, we set: (TODO explain why)
47         //   -- [21] = 1
48         //   -- [20] = 0
49         //   -- [18] = 0
50         //   -- [17] = 0
51         //   -- [13] = 1
52         //   -- [05] = 0
53         //   -- [04] = 0
54         //   -- [03] = 0
55         //   -- [02] = 0
56         //   We should probably do this explicitly bitwise, see below.
57         outl(0xeee83f83, DEFAULT_GPIOBASE + 0x0c);      /* GP_LVL */
58         /* Output Control Registers */
59         outl(0x00000000, DEFAULT_GPIOBASE + 0x18);      /* GPO_BLINK */
60         /* Input Control Registers */
61         outl(0x00000180, DEFAULT_GPIOBASE + 0x2c);      /* GPI_INV */
62         outl(0x000000e6, DEFAULT_GPIOBASE + 0x30);      /* GPIO_USE_SEL2 */
63         outl(0x000000d0, DEFAULT_GPIOBASE + 0x34);      /* GP_IO_SEL2 */
64         outl(0x00000034, DEFAULT_GPIOBASE + 0x38);      /* GP_LVL2 */
65
66         printk(BIOS_SPEW, "\n  Initializing drive bay...\n");
67         gpios = inl(DEFAULT_GPIOBASE + 0x38); // GPIO Level 2
68         gpios |= (1 << 0); // GPIO33 = ODD
69         gpios |= (1 << 1); // GPIO34 = IDE_RST#
70         outl(gpios, DEFAULT_GPIOBASE + 0x38);   /* GP_LVL2 */
71
72         gpios = inl(DEFAULT_GPIOBASE + 0x0c); // GPIO Level
73         gpios &= ~(1 << 13);    // ??
74         outl(gpios, DEFAULT_GPIOBASE + 0x0c);   /* GP_LVL */
75
76         printk(BIOS_SPEW, "\n  Initializing Ethernet NIC...\n");
77         gpios = inl(DEFAULT_GPIOBASE + 0x0c); // GPIO Level
78         gpios &= ~(1 << 24);    // Enable LAN Power
79         outl(gpios, DEFAULT_GPIOBASE + 0x0c);   /* GP_LVL */
80 }
81
82 static void ich7_enable_lpc(void)
83 {
84         // Enable Serial IRQ
85         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x64, 0xd0);
86         // decode range
87         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0007);
88         // decode range
89         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x3f0f);
90         // Enable 0x02e0 - 0x2ff
91         pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x84, 0x001c02e1);
92         // Enable 0x600 - 0x6ff
93         pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x88, 0x00fc0601);
94         // Enable 0x68 - 0x6f
95         pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x8c, 0x00040069);
96 }
97
98 /* This box has two superios, so enabling serial becomes slightly excessive.
99  * We disable a lot of stuff to make sure that there are no conflicts between
100  * the two. Also set up the GPIOs from the beginning. This is the "no schematic
101  * but safe anyways" method.
102  */
103 static void pnp_enter_ext_func_mode(device_t dev)
104 {
105         unsigned int port = dev >> 8;
106         outb(0x55, port);
107 }
108
109 static void pnp_exit_ext_func_mode(device_t dev)
110 {
111         unsigned int port = dev >> 8;
112         outb(0xaa, port);
113 }
114
115 static void pnp_write_register(device_t dev, int reg, int val)
116 {
117         unsigned int port = dev >> 8;
118         outb(reg, port);
119         outb(val, port+1);
120 }
121
122 static void early_superio_config(void)
123 {
124         device_t dev;
125
126         dev=PNP_DEV(0x4e, 0x00);
127
128         pnp_enter_ext_func_mode(dev);
129         pnp_write_register(dev, 0x02, 0x0e); // UART power
130         pnp_write_register(dev, 0x1b, (0x3e8 >> 2)); // UART3 base
131         pnp_write_register(dev, 0x1c, (0x2e8 >> 2)); // UART4 base
132         pnp_write_register(dev, 0x1d, (5 << 4) | 11); // UART3,4 IRQ
133         pnp_write_register(dev, 0x1e, 1); // no 32khz clock
134         pnp_write_register(dev, 0x24, (0x3f8 >> 2)); // UART1 base
135         pnp_write_register(dev, 0x28, (4 << 4) | 0); // UART1,2 IRQ
136         pnp_write_register(dev, 0x2c, 0); // DMA0 FIR
137         pnp_write_register(dev, 0x30, (0x600 >> 4)); // Runtime Register Block Base
138
139         pnp_write_register(dev, 0x31, 0xce); // GPIO1 DIR
140         pnp_write_register(dev, 0x32, 0x00); // GPIO1 POL
141         pnp_write_register(dev, 0x33, 0x0f); // GPIO2 DIR
142         pnp_write_register(dev, 0x34, 0x00); // GPIO2 POL
143         pnp_write_register(dev, 0x35, 0xa8); // GPIO3 DIR
144         pnp_write_register(dev, 0x36, 0x00); // GPIO3 POL
145         pnp_write_register(dev, 0x37, 0xa8); // GPIO4 DIR
146         pnp_write_register(dev, 0x38, 0x00); // GPIO4 POL
147
148         pnp_write_register(dev, 0x39, 0x00); // GPIO1 OUT
149         pnp_write_register(dev, 0x40, 0x80); // GPIO2/MISC OUT
150         pnp_write_register(dev, 0x41, 0x00); // GPIO5 OUT
151         pnp_write_register(dev, 0x42, 0xa8); // GPIO5 DIR
152         pnp_write_register(dev, 0x43, 0x00); // GPIO5 POL
153         pnp_write_register(dev, 0x44, 0x00); // GPIO ALT1
154         pnp_write_register(dev, 0x45, 0x50); // GPIO ALT2
155         pnp_write_register(dev, 0x46, 0x00); // GPIO ALT3
156
157         pnp_write_register(dev, 0x48, 0x55); // GPIO ALT5
158         pnp_write_register(dev, 0x49, 0x55); // GPIO ALT6
159         pnp_write_register(dev, 0x4a, 0x55); // GPIO ALT7
160         pnp_write_register(dev, 0x4b, 0x55); // GPIO ALT8
161         pnp_write_register(dev, 0x4c, 0x55); // GPIO ALT9
162         pnp_write_register(dev, 0x4d, 0x55); // GPIO ALT10
163
164         pnp_exit_ext_func_mode(dev);
165 }
166
167 static void rcba_config(void)
168 {
169         /* Set up virtual channel 0 */
170         //RCBA32(0x0014) = 0x80000001;
171         //RCBA32(0x001c) = 0x03128010;
172
173         /* Device 1f interrupt pin register */
174         RCBA32(0x3100) = 0x00042220;
175         /* Device 1d interrupt pin register */
176         RCBA32(0x310c) = 0x00214321;
177
178         /* dev irq route register */
179         RCBA16(0x3140) = 0x0232;
180         RCBA16(0x3142) = 0x3246;
181         RCBA16(0x3144) = 0x0237;
182         RCBA16(0x3146) = 0x3201;
183         RCBA16(0x3148) = 0x3216;
184
185         /* Enable IOAPIC */
186         RCBA8(0x31ff) = 0x03;
187
188         /* Enable upper 128bytes of CMOS */
189         RCBA32(0x3400) = (1 << 2);
190
191         /* Disable unused devices */
192         RCBA32(0x3418) = FD_PCIE6 | FD_PCIE5 | FD_INTLAN | FD_ACMOD | FD_ACAUD | FD_PATA;
193         RCBA32(0x3418) |= (1 << 0); // Required.
194
195         /* Enable PCIe Root Port Clock Gate */
196         // RCBA32(0x341c) = 0x00000001;
197
198
199         /* This should probably go into the ACPI enable trap */
200         /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
201         RCBA32(0x1e84) = 0x00020001;
202         RCBA32(0x1e80) = 0x0000fe01;
203
204         /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
205         RCBA32(0x1e9c) = 0x000200f0;
206         RCBA32(0x1e98) = 0x000c0801;
207 }
208
209 static void early_ich7_init(void)
210 {
211         uint8_t reg8;
212         uint32_t reg32;
213
214         // program secondary mlt XXX byte?
215         pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
216
217         // reset rtc power status
218         reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
219         reg8 &= ~(1 << 2);
220         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
221
222         // usb transient disconnect
223         reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
224         reg8 |= (3 << 0);
225         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
226
227         reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
228         reg32 |= (1 << 29) | (1 << 17);
229         pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
230
231         reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
232         reg32 |= (1 << 31) | (1 << 27);
233         pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
234
235         RCBA32(0x0088) = 0x0011d000;
236         RCBA16(0x01fc) = 0x060f;
237         RCBA32(0x01f4) = 0x86000040;
238         RCBA32(0x0214) = 0x10030549;
239         RCBA32(0x0218) = 0x00020504;
240         RCBA8(0x0220) = 0xc5;
241         reg32 = RCBA32(0x3410);
242         reg32 |= (1 << 6);
243         RCBA32(0x3410) = reg32;
244         reg32 = RCBA32(0x3430);
245         reg32 &= ~(3 << 0);
246         reg32 |= (1 << 0);
247         RCBA32(0x3430) = reg32;
248         RCBA32(0x3418) |= (1 << 0);
249         RCBA16(0x0200) = 0x2008;
250         RCBA8(0x2027) = 0x0d;
251         RCBA16(0x3e08) |= (1 << 7);
252         RCBA16(0x3e48) |= (1 << 7);
253         RCBA32(0x3e0e) |= (1 << 7);
254         RCBA32(0x3e4e) |= (1 << 7);
255
256         // next step only on ich7m b0 and later:
257         reg32 = RCBA32(0x2034);
258         reg32 &= ~(0x0f << 16);
259         reg32 |= (5 << 16);
260         RCBA32(0x2034) = reg32;
261 }
262
263 #include <cbmem.h>
264
265 void main(unsigned long bist)
266 {
267         u32 reg32;
268         int boot_mode = 0;
269
270         if (bist == 0)
271                 enable_lapic();
272
273 #if 0
274         /* Force PCIRST# */
275         pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, SBR);
276         udelay(200 * 1000);
277         pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, 0);
278 #endif
279
280         ich7_enable_lpc();
281         early_superio_config();
282
283         /* Set up the console */
284         uart_init();
285
286 #if CONFIG_USBDEBUG
287         i82801gx_enable_usbdebug(1);
288         early_usbdebug_init();
289 #endif
290         console_init();
291
292         /* Halt if there was a built in self test failure */
293         report_bist_failure(bist);
294
295         if (MCHBAR16(SSKPD) == 0xCAFE) {
296                 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
297                 outb(0x6, 0xcf9);
298                 while (1) asm("hlt");
299         }
300
301         /* Perform some early chipset initialization required
302          * before RAM initialization can work
303          */
304         i945_early_initialization();
305
306         /* Read PM1_CNT */
307         reg32 = inl(DEFAULT_PMBASE + 0x04);
308         printk(BIOS_DEBUG, "PM1_CNT: %08x\n", reg32);
309         if (((reg32 >> 10) & 7) == 5) {
310 #if CONFIG_HAVE_ACPI_RESUME
311                 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
312                 boot_mode = 2;
313                 /* Clear SLP_TYPE. This will break stage2 but
314                  * we care for that when we get there.
315                  */
316                 outl(reg32 & ~(7 << 10), DEFAULT_PMBASE + 0x04);
317
318 #else
319                 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
320 #endif
321         }
322
323         /* Enable SPD ROMs and DDR-II DRAM */
324         enable_smbus();
325         
326 #if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
327         dump_spd_registers();
328 #endif
329
330         sdram_initialize(boot_mode);
331
332         /* Perform some initialization that must run before stage2 */
333         early_ich7_init();
334
335         /* This should probably go away. Until now it is required 
336          * and mainboard specific 
337          */
338         rcba_config();
339
340         /* Chipset Errata! */
341         fixup_i945_errata();
342
343         /* Initialize the internal PCIe links before we go into stage2 */
344         i945_late_initialization();
345
346 #if CONFIG_HAVE_ACPI_RESUME == 0
347         /* When doing resume, we must not overwrite RAM */
348 #if CONFIG_DEBUG_RAM_SETUP
349         sdram_dump_mchbar_registers();
350
351         {
352                 /* This will not work if TSEG is in place! */
353                 u32 tom = pci_read_config32(PCI_DEV(0,2,0), 0x5c);
354
355                 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
356                 ram_check(0x00000000, 0x000a0000);
357                 ram_check(0x00100000, tom);
358         }
359 #endif
360 #endif
361         MCHBAR16(SSKPD) = 0xCAFE;
362
363 #if CONFIG_HAVE_ACPI_RESUME
364         /* Start address of high memory tables */
365         unsigned long high_ram_base = get_top_of_ram() - HIGH_MEMORY_SIZE;
366
367         /* If there is no high memory area, we didn't boot before, so
368          * this is not a resume. In that case we just create the cbmem toc.
369          */
370         if ((boot_mode == 2) && cbmem_reinit((u64)high_ram_base)) {
371                 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
372
373                 /* copy 1MB - 64K to high tables ram_base to prevent memory corruption
374                  * through stage 2. We could keep stuff like stack and heap in high tables
375                  * memory completely, but that's a wonderful clean up task for another
376                  * day.
377                  */
378                 if (resume_backup_memory) 
379                         memcpy(resume_backup_memory, (void *)CONFIG_RAMBASE, HIGH_MEMORY_SAVE);
380
381                 /* Magic for S3 resume */
382                 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
383         }
384 #endif
385 }