Lenovo ThinkPad X60 / X60s Support
[coreboot.git] / src / mainboard / lenovo / x60 / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
5  * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; version 2 of
10  * the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20  * MA 02110-1301 USA
21  */
22
23 // __PRE_RAM__ means: use "unsigned" for device, not a struct.
24
25 #include <stdint.h>
26 #include <string.h>
27 #include <arch/io.h>
28 #include <arch/romcc_io.h>
29 #include <device/pci_def.h>
30 #include <device/pnp_def.h>
31 #include <cpu/x86/lapic.h>
32 #include <lib.h>
33 #include <pc80/mc146818rtc.h>
34 #include <console/console.h>
35 #include <usbdebug.h>
36 #include <cpu/x86/bist.h>
37 #include "northbridge/intel/i945/i945.h"
38 #include "northbridge/intel/i945/raminit.h"
39 #include "southbridge/intel/i82801gx/i82801gx.h"
40
41 void setup_ich7_gpios(void)
42 {
43         printk(BIOS_DEBUG, " GPIOS...");
44
45         /* X60 GPIO:
46             1: HDD_PRESENCE#
47             6: Unknown (Pulled high by R215 to VCC3B)
48             7: BDC_PRESENCE#
49             8: H8_WAKE#
50             9: RTC_BAT_IN#
51            10: Unknown (Pulled high by R700 to VCC3M
52            12: H8SCI#
53            13: SLICE_ON_3M#
54            14: Unknown (Pulled high by R321 to VCC3)
55            15: Unknown (Pulled high by R258 to VCC3)
56            19: Unknown (Pulled low  by R594)
57            21: Unknown (Pulled high by R145 to VCC3)
58            22: FWH_WP#
59            25: MDC_KILL#
60            33: HDD_PRESENCE_2#
61            35: CLKREQ_SATA#
62            36: PLANARID0
63            37: PLANARID1
64            38: PLANARID2
65            39: PLANARID3
66            48: FWH_TBL#
67         */
68
69         outl(0x1f40f7c2, DEFAULT_GPIOBASE + 0x00);      /* GPIO_USE_SEL */
70         outl(0xe0e8ffc3, DEFAULT_GPIOBASE + 0x04);      /* GP_IO_SEL */
71         outl(0xfbf6ddfd, DEFAULT_GPIOBASE + 0x0c);      /* GP_LVL */
72         /* Output Control Registers */
73         outl(0x00040000, DEFAULT_GPIOBASE + 0x18);      /* GPO_BLINK */
74         /* Input Control Registers */
75         outl(0x000039ff, DEFAULT_GPIOBASE + 0x2c);      /* GPI_INV */
76         outl(0x000100f2, DEFAULT_GPIOBASE + 0x30);      /* GPIO_USE_SEL2 */
77         outl(0x000000f0, DEFAULT_GPIOBASE + 0x34);      /* GP_IO_SEL2 */
78         outl(0x00030043, DEFAULT_GPIOBASE + 0x38);      /* GP_LVL */
79 }
80
81 static void ich7_enable_lpc(void)
82 {
83         // Enable Serial IRQ
84         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x64, 0xd0);
85         // decode range
86         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0210);
87         // decode range
88         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x1f0d);
89
90         /* range 0x1600 - 0x167f */
91         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x84, 0x1601);
92         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x86, 0x007c);
93
94         /* range 0x15e0 - 0x10ef */
95         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x88, 0x15e1);
96         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x8a, 0x000c);
97
98         /* range 0x1680 - 0x169f */
99         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x8c, 0x1681);
100         pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x8e, 0x001c);
101 }
102
103 static void pnp_write_register(device_t dev, int reg, int val)
104 {
105         unsigned int port = dev >> 8;
106         outb(reg, port);
107         outb(val, port+1);
108 }
109
110 static void dock_write_register(int reg, int value)
111 {
112         outb(reg, 0x164e);
113         outb(value, 0x164f);
114         /* original software reads the chip id after every
115            I/O operation. Not sure if they are doing it for
116            some code switching depending on hardware or just
117            to have a delay after every operation.
118
119            Do it the same way for now, we may remove it later
120            if it isn't needed
121         */
122         outb(0x20, 0x164e);
123         inb(0x164f);
124 }
125
126 static void dock_dlpc_init(void)
127 {
128         /* Select DLPC module */
129         dock_write_register(0x07, 0x19);
130         /* DLPC Base Address 0x164c */
131         dock_write_register(0x60, 0x16);
132         dock_write_register(0x61, 0x4c);
133         /* Activate DLPC */
134         dock_write_register(0x30, 0x01);
135         outb(0x07, 0x164c);
136
137         while(!(inb(0x164c) & 8))
138                 udelay(100 * 100);
139 }
140
141 static void dock_gpio_set_mode(int port, int mode)
142 {
143         dock_write_register(0xf0, port);
144         dock_write_register(0xf1, mode);
145
146 }
147
148 static void dock_gpio_init(void)
149 {
150         /* Select GPIO module */
151         dock_write_register(0x07, 0x07);
152         /* GPIO Base Address 0x1680 */
153         dock_write_register(0x60, 0x16);
154         dock_write_register(0x61, 0x80);
155
156         /* Activate GPIO */
157         dock_write_register(0x30, 0x01);
158
159         dock_gpio_set_mode(0x00, 3);
160         dock_gpio_set_mode(0x01, 3);
161         dock_gpio_set_mode(0x02, 0);
162         dock_gpio_set_mode(0x03, 3);
163         dock_gpio_set_mode(0x04, 4);
164         dock_gpio_set_mode(0x20, 4);
165         dock_gpio_set_mode(0x21, 4);
166         dock_gpio_set_mode(0x23, 4);
167 }
168
169 static void connect_dock(void)
170 {
171         /* Enable 14.318MHz CLK on CLKIN */
172         dock_write_register(0x29, 0x00);
173         dock_write_register(0x29, 0xa0);
174         dock_gpio_init();
175         /* Assert D_PLTRST# */
176         outb(0xfe, 0x1680);
177         dock_dlpc_init();
178         /* Deassert D_PLTRST# */
179         outb(0xff, 0x1680);
180 }
181
182 static void early_superio_config(void)
183 {
184         device_t dev;
185
186         dev=PNP_DEV(0x2e, 0x00);
187         pnp_write_register(dev, 0x29, 0x06);
188
189         /* Enable COM1 */
190         pnp_write_register(dev, 0x07, 0x03);
191         pnp_write_register(dev, 0x60, 0x03);
192         pnp_write_register(dev, 0x61, 0xf8);
193         pnp_write_register(dev, 0x30, 0x01);
194 }
195
196 static void rcba_config(void)
197 {
198         /* Set up virtual channel 0 */
199         RCBA32(0x0014) = 0x80000001;
200         RCBA32(0x001c) = 0x03128010;
201
202         /* Device 1f interrupt pin register */
203         RCBA32(0x3100) = 0x00001230;
204         RCBA32(0x3108) = 0x40004321;
205
206         /* PCIe Interrupts */
207         RCBA32(0x310c) = 0x00004321;
208         /* HD Audio Interrupt */
209         RCBA32(0x3110) = 0x00000002;
210
211         /* dev irq route register */
212         RCBA16(0x3140) = 0x1007;
213         RCBA16(0x3142) = 0x0076;
214         RCBA16(0x3144) = 0x3210;
215         RCBA16(0x3146) = 0x7654;
216         RCBA16(0x3148) = 0x0010;
217
218         /* Enable IOAPIC */
219         RCBA8(0x31ff) = 0x03;
220
221         /* Enable upper 128bytes of CMOS */
222         RCBA32(0x3400) = (1 << 2);
223
224         /* Disable unused devices */
225         RCBA32(0x3418) = FD_PCIE6 | FD_PCIE5 | FD_INTLAN | FD_ACMOD | FD_ACAUD;
226         RCBA32(0x3418) |= (1 << 0); // Required.
227 }
228
229 static void early_ich7_init(void)
230 {
231         uint8_t reg8;
232         uint32_t reg32;
233
234         // program secondary mlt XXX byte?
235         pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
236
237         // reset rtc power status
238         reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
239         reg8 &= ~(1 << 2);
240         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
241
242         // usb transient disconnect
243         reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
244         reg8 |= (3 << 0);
245         pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
246
247         reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
248         reg32 |= (1 << 29) | (1 << 17);
249         pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
250
251         reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
252         reg32 |= (1 << 31) | (1 << 27);
253         pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
254
255         RCBA32(0x0088) = 0x0011d000;
256         RCBA16(0x01fc) = 0x060f;
257         RCBA32(0x01f4) = 0x86000040;
258         RCBA32(0x0214) = 0x10030549;
259         RCBA32(0x0218) = 0x00020504;
260         RCBA8(0x0220) = 0xc5;
261         reg32 = RCBA32(0x3410);
262         reg32 |= (1 << 6);
263         RCBA32(0x3410) = reg32;
264         reg32 = RCBA32(0x3430);
265         reg32 &= ~(3 << 0);
266         reg32 |= (1 << 0);
267         RCBA32(0x3430) = reg32;
268         RCBA32(0x3418) |= (1 << 0);
269         RCBA16(0x0200) = 0x2008;
270         RCBA8(0x2027) = 0x0d;
271         RCBA16(0x3e08) |= (1 << 7);
272         RCBA16(0x3e48) |= (1 << 7);
273         RCBA32(0x3e0e) |= (1 << 7);
274         RCBA32(0x3e4e) |= (1 << 7);
275
276         // next step only on ich7m b0 and later:
277         reg32 = RCBA32(0x2034);
278         reg32 &= ~(0x0f << 16);
279         reg32 |= (5 << 16);
280         RCBA32(0x2034) = reg32;
281 }
282
283 #include <cbmem.h>
284
285 void main(unsigned long bist)
286 {
287         u32 reg32;
288         int boot_mode = 0;
289
290         if (bist == 0)
291                 enable_lapic();
292
293         /* Force PCIRST# */
294         pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, SBR);
295         udelay(200 * 1000);
296         pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, 0);
297
298         ich7_enable_lpc();
299
300         connect_dock();
301
302         early_superio_config();
303
304         /* Set up the console */
305         uart_init();
306
307 #if CONFIG_USBDEBUG
308         i82801gx_enable_usbdebug(1);
309         early_usbdebug_init();
310 #endif
311
312         console_init();
313
314         /* Halt if there was a built in self test failure */
315         report_bist_failure(bist);
316
317         if (MCHBAR16(SSKPD) == 0xCAFE) {
318                 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
319                 outb(0x6, 0xcf9);
320                 while (1) asm("hlt");
321         }
322
323         /* Perform some early chipset initialization required
324          * before RAM initialization can work
325          */
326         i945_early_initialization();
327
328         /* Read PM1_CNT */
329         reg32 = inl(DEFAULT_PMBASE + 0x04);
330         printk(BIOS_DEBUG, "PM1_CNT: %08x\n", reg32);
331         if (((reg32 >> 10) & 7) == 5) {
332 #if CONFIG_HAVE_ACPI_RESUME
333                 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
334                 boot_mode = 2;
335                 /* Clear SLP_TYPE. This will break stage2 but
336                  * we care for that when we get there.
337                  */
338                 outl(reg32 & ~(7 << 10), DEFAULT_PMBASE + 0x04);
339
340 #else
341                 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
342 #endif
343         }
344
345         /* Enable SPD ROMs and DDR-II DRAM */
346         enable_smbus();
347
348 #if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
349         dump_spd_registers();
350 #endif
351
352         sdram_initialize(boot_mode);
353
354         /* Perform some initialization that must run before stage2 */
355         early_ich7_init();
356
357         /* This should probably go away. Until now it is required
358          * and mainboard specific
359          */
360         rcba_config();
361
362         /* Chipset Errata! */
363         fixup_i945_errata();
364
365         /* Initialize the internal PCIe links before we go into stage2 */
366         i945_late_initialization();
367
368 #if !CONFIG_HAVE_ACPI_RESUME
369 #if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
370 #if CONFIG_DEBUG_RAM_SETUP
371         sdram_dump_mchbar_registers();
372
373         {
374                 /* This will not work if TSEG is in place! */
375                 u32 tom = pci_read_config32(PCI_DEV(0,2,0), 0x5c);
376
377                 printk(BIOS_DEBUG, "TOM: 0x%08x\n", tom);
378                 ram_check(0x00000000, 0x000a0000);
379                 ram_check(0x00100000, tom);
380         }
381 #endif
382 #endif
383 #endif
384
385         MCHBAR16(SSKPD) = 0xCAFE;
386
387 #if CONFIG_HAVE_ACPI_RESUME
388         /* Start address of high memory tables */
389         unsigned long high_ram_base = get_top_of_ram() - HIGH_MEMORY_SIZE;
390
391         /* If there is no high memory area, we didn't boot before, so
392          * this is not a resume. In that case we just create the cbmem toc.
393          */
394         if ((boot_mode == 2) && cbmem_reinit((u64)high_ram_base)) {
395                 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
396
397                 /* copy 1MB - 64K to high tables ram_base to prevent memory corruption
398                  * through stage 2. We could keep stuff like stack and heap in high tables
399                  * memory completely, but that's a wonderful clean up task for another
400                  * day.
401                  */
402                 if (resume_backup_memory)
403                         memcpy(resume_backup_memory, (void *)CONFIG_RAMBASE, HIGH_MEMORY_SAVE);
404
405                 /* Magic for S3 resume */
406                 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
407         }
408 #endif
409         /* Set legacy Brightness control to full brightness */
410         pci_write_config8(PCI_DEV(0, 2, 1), 0xf4, 0xff);
411 }