blob: 9b77afa0e163673168161579ff58c35314791fa2 [file] [log] [blame]
Stefan Reinauer838c5a52010-01-17 14:08:17 +00001/*
2 * This file is part of the coreboot project.
Stefan Reinauer14e22772010-04-27 06:56:47 +00003 *
Stefan Reinauer838c5a52010-01-17 14:08:17 +00004 * 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.
Stefan Reinauer838c5a52010-01-17 14:08:17 +000015 */
16
Elyes HAOUASec16e932016-10-07 18:22:44 +020017/* __PRE_RAM__ means: use "unsigned" for device, not a struct. */
Stefan Reinauer5e328232010-03-29 19:19:16 +000018
Stefan Reinauer838c5a52010-01-17 14:08:17 +000019#include <stdint.h>
20#include <string.h>
21#include <arch/io.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000022#include <device/pci_def.h>
23#include <device/pnp_def.h>
24#include <cpu/x86/lapic.h>
Patrick Georgid0835952010-10-05 09:07:10 +000025#include <lib.h>
Kyösti Mälkki12d681b2014-06-14 18:51:34 +030026#include <arch/acpi.h>
Kyösti Mälkkia7c96112013-10-13 20:41:57 +030027#include <cbmem.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000028#include <pc80/mc146818rtc.h>
Stefan Reinauer8a7d34b2010-02-22 09:15:13 +000029#include <console/console.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000030#include <cpu/x86/bist.h>
Kyösti Mälkki15fa9922016-06-17 10:00:28 +030031#include <cpu/intel/romstage.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010032#include <halt.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110033#include <northbridge/intel/i945/i945.h>
34#include <northbridge/intel/i945/raminit.h>
35#include <southbridge/intel/i82801gx/i82801gx.h>
Patrick Georgia4700192011-01-27 07:39:38 +000036#include "option_table.h"
Patrick Georgid0835952010-10-05 09:07:10 +000037
Patrick Georgid0835952010-10-05 09:07:10 +000038void setup_ich7_gpios(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000039{
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000040 printk(BIOS_DEBUG, " GPIOS...");
Stefan Reinauer838c5a52010-01-17 14:08:17 +000041 /* General Registers */
42 outl(0xbfc0f7c0, DEFAULT_GPIOBASE + 0x00); /* GPIO_USE_SEL */
43 outl(0x70a87d83, DEFAULT_GPIOBASE + 0x04); /* GP_IO_SEL */
Elyes HAOUASec16e932016-10-07 18:22:44 +020044 /* ------------------------------------------------------------
45 * 0 - GPO6 - Enable power of SATA channel 0
46 * 0 - GPO9 - Wireless LAN power on
47 * 0 - GPO15 - FAN on
48 * 1 - GPO22 - FWH WP
49 * 1 - GPO24 - GPS on
50 * 0 - GPO25 - External Antenna Mux on
51 * 0 - GPO26 - BT on
52 * 0 - GPO27 - GSM on
53 */
Patrick Georgief329652011-01-14 07:41:42 +000054 outl(0x01400000, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
Elyes HAOUASec16e932016-10-07 18:22:44 +020055 /* ------------------------------------------------------------ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000056 /* 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(0x000100e8, DEFAULT_GPIOBASE + 0x30); /* GPIO_USE_SEL2 */
61 outl(0x00000030, DEFAULT_GPIOBASE + 0x34); /* GP_IO_SEL2 */
Elyes HAOUASec16e932016-10-07 18:22:44 +020062 /* ------------------------------------------------------------ */
63 /* 1 - GPO48 - FWH TBL# */
Patrick Georgief329652011-01-14 07:41:42 +000064 outl(0x00010000, DEFAULT_GPIOBASE + 0x38); /* GP_LVL */
Elyes HAOUASec16e932016-10-07 18:22:44 +020065 /* ------------------------------------------------------------ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000066}
67
Stefan Reinauer838c5a52010-01-17 14:08:17 +000068static void ich7_enable_lpc(void)
69{
Patrick Georgia4700192011-01-27 07:39:38 +000070 int lpt_en = 0;
Patrick Georgib2517532011-05-10 21:53:13 +000071 if (read_option(lpt, 0) != 0) {
Elyes HAOUASec16e932016-10-07 18:22:44 +020072 lpt_en = 1 << 2; /* enable LPT */
Patrick Georgia4700192011-01-27 07:39:38 +000073 }
Elyes HAOUASec16e932016-10-07 18:22:44 +020074 /* Enable Serial IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000075 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x64, 0xd0);
Elyes HAOUASec16e932016-10-07 18:22:44 +020076 /* decode range */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000077 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x80, 0x0007);
Elyes HAOUASec16e932016-10-07 18:22:44 +020078 /* decode range */
Patrick Georgia4700192011-01-27 07:39:38 +000079 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x82, 0x3f0b | lpt_en);
Elyes HAOUASec16e932016-10-07 18:22:44 +020080 /* Enable 0x02e0 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000081 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x84, 0x02e1);
82 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0x86, 0x001c);
Elyes HAOUASec16e932016-10-07 18:22:44 +020083 /* COM3 decode */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000084 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x88, 0x00fc0601);
Elyes HAOUASec16e932016-10-07 18:22:44 +020085 /* COM4 decode */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000086 pci_write_config32(PCI_DEV(0, 0x1f, 0), 0x8c, 0x00040069);
87}
88
Stefan Reinauer838c5a52010-01-17 14:08:17 +000089/* This box has two superios, so enabling serial becomes slightly excessive.
90 * We disable a lot of stuff to make sure that there are no conflicts between
91 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
92 * but safe anyways" method.
93 */
94static inline void pnp_enter_ext_func_mode(device_t dev)
95{
96 unsigned int port = dev >> 8;
97 outb(0x55, port);
98}
99
100static void pnp_exit_ext_func_mode(device_t dev)
101{
102 unsigned int port = dev >> 8;
103 outb(0xaa, port);
104}
105
106static void pnp_write_register(device_t dev, int reg, int val)
107{
108 unsigned int port = dev >> 8;
109 outb(reg, port);
110 outb(val, port+1);
111}
112
113static void early_superio_config(void)
114{
115 device_t dev;
116
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -0600117 dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000118
119 pnp_enter_ext_func_mode(dev);
Elyes HAOUASec16e932016-10-07 18:22:44 +0200120 pnp_write_register(dev, 0x01, 0x94); /* Extended Parport modes */
121 pnp_write_register(dev, 0x02, 0x88); /* UART power on */
122 pnp_write_register(dev, 0x03, 0x72); /* Floppy */
123 pnp_write_register(dev, 0x04, 0x01); /* EPP + SPP */
124 pnp_write_register(dev, 0x14, 0x03); /* Floppy */
125 pnp_write_register(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
126 pnp_write_register(dev, 0x23, (0x378 >> 2)); /* PP base */
127 pnp_write_register(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
128 pnp_write_register(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
129 pnp_write_register(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
130 pnp_write_register(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
131 pnp_write_register(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000132 /* These are the SMI status registers in the SIO: */
Elyes HAOUASec16e932016-10-07 18:22:44 +0200133 pnp_write_register(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000134
Elyes HAOUASec16e932016-10-07 18:22:44 +0200135 pnp_write_register(dev, 0x31, 0x00); /* GPIO1 DIR */
136 pnp_write_register(dev, 0x32, 0x00); /* GPIO1 POL */
137 pnp_write_register(dev, 0x33, 0x40); /* GPIO2 DIR */
138 pnp_write_register(dev, 0x34, 0x00); /* GPIO2 POL */
139 pnp_write_register(dev, 0x35, 0xff); /* GPIO3 DIR */
140 pnp_write_register(dev, 0x36, 0x00); /* GPIO3 POL */
141 pnp_write_register(dev, 0x37, 0xe0); /* GPIO4 DIR */
142 pnp_write_register(dev, 0x38, 0x00); /* GPIO4 POL */
143 pnp_write_register(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000144
145 pnp_exit_ext_func_mode(dev);
146}
147
148static void rcba_config(void)
149{
150 /* Set up virtual channel 0 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000151
152 /* Device 1f interrupt pin register */
153 RCBA32(0x3100) = 0x00042220;
154 /* Device 1d interrupt pin register */
155 RCBA32(0x310c) = 0x00214321;
156
157 /* dev irq route register */
158 RCBA16(0x3140) = 0x0232;
159 RCBA16(0x3142) = 0x3246;
160 RCBA16(0x3144) = 0x0237;
161 RCBA16(0x3146) = 0x3201;
162 RCBA16(0x3148) = 0x3216;
163
164 /* Enable IOAPIC */
165 RCBA8(0x31ff) = 0x03;
166
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000167 /* Disable unused devices */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000168 RCBA32(0x3418) = FD_PCIE6 | FD_PCIE5 | FD_PCIE3 | FD_PCIE2 |
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000169 FD_INTLAN | FD_ACMOD | FD_HDAUD | FD_PATA;
Elyes HAOUASec16e932016-10-07 18:22:44 +0200170 RCBA32(0x3418) |= (1 << 0); /* Required. */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000171
172 /* This should probably go into the ACPI OS Init trap */
173
174 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
175 RCBA32(0x1e84) = 0x00020001;
176 RCBA32(0x1e80) = 0x0000fe01;
177
178 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
179 RCBA32(0x1e9c) = 0x000200f0;
180 RCBA32(0x1e98) = 0x000c0801;
181}
182
183static void early_ich7_init(void)
184{
185 uint8_t reg8;
186 uint32_t reg32;
187
Elyes HAOUASec16e932016-10-07 18:22:44 +0200188 /* program secondary mlt XXX byte? */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000189 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
190
Elyes HAOUASec16e932016-10-07 18:22:44 +0200191 /* reset rtc power status */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000192 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
193 reg8 &= ~(1 << 2);
194 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
195
Elyes HAOUASec16e932016-10-07 18:22:44 +0200196 /* usb transient disconnect */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000197 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
198 reg8 |= (3 << 0);
199 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
200
201 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
202 reg32 |= (1 << 29) | (1 << 17);
203 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
204
205 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
206 reg32 |= (1 << 31) | (1 << 27);
207 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
208
209 RCBA32(0x0088) = 0x0011d000;
210 RCBA16(0x01fc) = 0x060f;
211 RCBA32(0x01f4) = 0x86000040;
212 RCBA32(0x0214) = 0x10030549;
213 RCBA32(0x0218) = 0x00020504;
214 RCBA8(0x0220) = 0xc5;
215 reg32 = RCBA32(0x3410);
216 reg32 |= (1 << 6);
217 RCBA32(0x3410) = reg32;
218 reg32 = RCBA32(0x3430);
219 reg32 &= ~(3 << 0);
220 reg32 |= (1 << 0);
221 RCBA32(0x3430) = reg32;
222 RCBA32(0x3418) |= (1 << 0);
223 RCBA16(0x0200) = 0x2008;
224 RCBA8(0x2027) = 0x0d;
225 RCBA16(0x3e08) |= (1 << 7);
226 RCBA16(0x3e48) |= (1 << 7);
227 RCBA32(0x3e0e) |= (1 << 7);
228 RCBA32(0x3e4e) |= (1 << 7);
229
Elyes HAOUASec16e932016-10-07 18:22:44 +0200230 /* next step only on ich7m b0 and later: */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000231 reg32 = RCBA32(0x2034);
232 reg32 &= ~(0x0f << 16);
233 reg32 |= (5 << 16);
234 RCBA32(0x2034) = reg32;
235}
236
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000237static void init_artec_dongle(void)
238{
Elyes HAOUASec16e932016-10-07 18:22:44 +0200239 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000240 outb(0xf1, 0x88);
241 outb(0xf4, 0x88);
242}
243
Kyösti Mälkki15fa9922016-06-17 10:00:28 +0300244void mainboard_romstage_entry(unsigned long bist)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000245{
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200246 int s3resume = 0;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000247
Uwe Hermann7b997052010-11-21 22:47:22 +0000248 if (bist == 0)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000249 enable_lapic();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000250
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000251 /* Force PCIRST# */
252 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, SBR);
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000253 udelay(200 * 1000);
254 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, 0);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000255
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000256 ich7_enable_lpc();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000257 early_superio_config();
258
259 /* Set up the console */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000260 console_init();
261
262 /* Halt if there was a built in self test failure */
263 report_bist_failure(bist);
264
265 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000266 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
267 outb(0x6, 0xcf9);
Patrick Georgi546953c2014-11-29 10:38:17 +0100268 halt();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000269 }
270
271 /* Perform some early chipset initialization required
272 * before RAM initialization can work
273 */
274 i945_early_initialization();
275
276 /* This has to happen after i945_early_initialization() */
277 init_artec_dongle();
278
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200279 s3resume = southbridge_detect_s3_resume();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000280
281 /* Enable SPD ROMs and DDR-II DRAM */
282 enable_smbus();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000283
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000284#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
285 dump_spd_registers();
286#endif
287
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200288 sdram_initialize(s3resume ? 2 : 0, NULL);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000289
290 /* Perform some initialization that must run before stage2 */
291 early_ich7_init();
292
Stefan Reinauer14e22772010-04-27 06:56:47 +0000293 /* This should probably go away. Until now it is required
294 * and mainboard specific
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000295 */
296 rcba_config();
297
298 /* Chipset Errata! */
299 fixup_i945_errata();
300
301 /* Initialize the internal PCIe links before we go into stage2 */
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200302 i945_late_initialization(s3resume);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000303}