blob: 3c420484871e4208d2ff62a5e5ecac6192459833 [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>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000023#include <cpu/x86/lapic.h>
Kyösti Mälkki12d681b2014-06-14 18:51:34 +030024#include <arch/acpi.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000025#include <pc80/mc146818rtc.h>
Stefan Reinauer8a7d34b2010-02-22 09:15:13 +000026#include <console/console.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000027#include <cpu/x86/bist.h>
Kyösti Mälkki15fa9922016-06-17 10:00:28 +030028#include <cpu/intel/romstage.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010029#include <halt.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110030#include <northbridge/intel/i945/i945.h>
31#include <northbridge/intel/i945/raminit.h>
32#include <southbridge/intel/i82801gx/i82801gx.h>
Patrick Georgia4700192011-01-27 07:39:38 +000033#include "option_table.h"
Patrick Georgid0835952010-10-05 09:07:10 +000034
Stefan Reinauer838c5a52010-01-17 14:08:17 +000035static void ich7_enable_lpc(void)
36{
Patrick Georgia4700192011-01-27 07:39:38 +000037 int lpt_en = 0;
Arthur Heymansb451df22017-08-15 20:59:09 +020038 if (read_option(lpt, 0) != 0)
39 lpt_en = LPT_LPC_EN; /* enable LPT */
40
Elyes HAOUASec16e932016-10-07 18:22:44 +020041 /* Enable Serial IRQ */
Arthur Heymansb451df22017-08-15 20:59:09 +020042 pci_write_config8(PCI_DEV(0, 0x1f, 0), SERIRQ_CNTL, 0xd0);
Elyes HAOUASec16e932016-10-07 18:22:44 +020043 /* decode range */
Arthur Heymansb451df22017-08-15 20:59:09 +020044 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
Elyes HAOUASec16e932016-10-07 18:22:44 +020045 /* decode range */
Arthur Heymansb451df22017-08-15 20:59:09 +020046 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, CNF2_LPC_EN | CNF1_LPC_EN
47 | MC_LPC_EN | KBC_LPC_EN | GAMEH_LPC_EN | GAMEL_LPC_EN
48 | FDD_LPC_EN | lpt_en | COMB_LPC_EN | COMA_LPC_EN);
49 /* COM3 and COM4 decode? */
50 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN1_DEC, 0x1c02e1);
51 /* ??decode?? */
52 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN2_DEC, 0x00fc0601);
53 /* EC decode? */
54 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN3_DEC, 0x00040069);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000055}
56
Stefan Reinauer838c5a52010-01-17 14:08:17 +000057/* This box has two superios, so enabling serial becomes slightly excessive.
58 * We disable a lot of stuff to make sure that there are no conflicts between
59 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
60 * but safe anyways" method.
61 */
Antonello Dettori63028fd2016-11-08 18:44:46 +010062static inline void pnp_enter_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000063{
64 unsigned int port = dev >> 8;
65 outb(0x55, port);
66}
67
Antonello Dettori63028fd2016-11-08 18:44:46 +010068static void pnp_exit_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000069{
70 unsigned int port = dev >> 8;
71 outb(0xaa, port);
72}
73
Antonello Dettori63028fd2016-11-08 18:44:46 +010074static void pnp_write_register(pnp_devfn_t dev, int reg, int val)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000075{
76 unsigned int port = dev >> 8;
77 outb(reg, port);
78 outb(val, port+1);
79}
80
81static void early_superio_config(void)
82{
Antonello Dettori63028fd2016-11-08 18:44:46 +010083 pnp_devfn_t dev;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000084
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060085 dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000086
87 pnp_enter_ext_func_mode(dev);
Elyes HAOUASec16e932016-10-07 18:22:44 +020088 pnp_write_register(dev, 0x01, 0x94); /* Extended Parport modes */
89 pnp_write_register(dev, 0x02, 0x88); /* UART power on */
90 pnp_write_register(dev, 0x03, 0x72); /* Floppy */
91 pnp_write_register(dev, 0x04, 0x01); /* EPP + SPP */
92 pnp_write_register(dev, 0x14, 0x03); /* Floppy */
93 pnp_write_register(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
94 pnp_write_register(dev, 0x23, (0x378 >> 2)); /* PP base */
95 pnp_write_register(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
96 pnp_write_register(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
97 pnp_write_register(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
98 pnp_write_register(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
99 pnp_write_register(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000100 /* These are the SMI status registers in the SIO: */
Elyes HAOUASec16e932016-10-07 18:22:44 +0200101 pnp_write_register(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000102
Elyes HAOUASec16e932016-10-07 18:22:44 +0200103 pnp_write_register(dev, 0x31, 0x00); /* GPIO1 DIR */
104 pnp_write_register(dev, 0x32, 0x00); /* GPIO1 POL */
105 pnp_write_register(dev, 0x33, 0x40); /* GPIO2 DIR */
106 pnp_write_register(dev, 0x34, 0x00); /* GPIO2 POL */
107 pnp_write_register(dev, 0x35, 0xff); /* GPIO3 DIR */
108 pnp_write_register(dev, 0x36, 0x00); /* GPIO3 POL */
109 pnp_write_register(dev, 0x37, 0xe0); /* GPIO4 DIR */
110 pnp_write_register(dev, 0x38, 0x00); /* GPIO4 POL */
111 pnp_write_register(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000112
113 pnp_exit_ext_func_mode(dev);
114}
115
116static void rcba_config(void)
117{
118 /* Set up virtual channel 0 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000119
120 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200121 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000122
123 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200124 RCBA16(D31IR) = 0x0232;
125 RCBA16(D30IR) = 0x3246;
126 RCBA16(D29IR) = 0x0237;
127 RCBA16(D28IR) = 0x3201;
128 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000129
130 /* Enable IOAPIC */
Arthur Heymansb451df22017-08-15 20:59:09 +0200131 RCBA8(OIC) = 0x03;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000132
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000133 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +0100134 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000135
136 /* This should probably go into the ACPI OS Init trap */
137
138 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
139 RCBA32(0x1e84) = 0x00020001;
140 RCBA32(0x1e80) = 0x0000fe01;
141
142 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
143 RCBA32(0x1e9c) = 0x000200f0;
144 RCBA32(0x1e98) = 0x000c0801;
145}
146
147static void early_ich7_init(void)
148{
149 uint8_t reg8;
150 uint32_t reg32;
151
Elyes HAOUASec16e932016-10-07 18:22:44 +0200152 /* program secondary mlt XXX byte? */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000153 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
154
Elyes HAOUASec16e932016-10-07 18:22:44 +0200155 /* reset rtc power status */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000156 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
157 reg8 &= ~(1 << 2);
158 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
159
Elyes HAOUASec16e932016-10-07 18:22:44 +0200160 /* usb transient disconnect */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000161 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
162 reg8 |= (3 << 0);
163 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
164
165 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
166 reg32 |= (1 << 29) | (1 << 17);
167 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
168
169 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
170 reg32 |= (1 << 31) | (1 << 27);
171 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
172
173 RCBA32(0x0088) = 0x0011d000;
174 RCBA16(0x01fc) = 0x060f;
175 RCBA32(0x01f4) = 0x86000040;
176 RCBA32(0x0214) = 0x10030549;
177 RCBA32(0x0218) = 0x00020504;
178 RCBA8(0x0220) = 0xc5;
Arthur Heymansb451df22017-08-15 20:59:09 +0200179 reg32 = RCBA32(GCS);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000180 reg32 |= (1 << 6);
Arthur Heymansb451df22017-08-15 20:59:09 +0200181 RCBA32(GCS) = reg32;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000182 reg32 = RCBA32(0x3430);
183 reg32 &= ~(3 << 0);
184 reg32 |= (1 << 0);
185 RCBA32(0x3430) = reg32;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000186 RCBA16(0x0200) = 0x2008;
187 RCBA8(0x2027) = 0x0d;
188 RCBA16(0x3e08) |= (1 << 7);
189 RCBA16(0x3e48) |= (1 << 7);
190 RCBA32(0x3e0e) |= (1 << 7);
191 RCBA32(0x3e4e) |= (1 << 7);
192
Elyes HAOUASec16e932016-10-07 18:22:44 +0200193 /* next step only on ich7m b0 and later: */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000194 reg32 = RCBA32(0x2034);
195 reg32 &= ~(0x0f << 16);
196 reg32 |= (5 << 16);
197 RCBA32(0x2034) = reg32;
198}
199
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000200static void init_artec_dongle(void)
201{
Elyes HAOUASec16e932016-10-07 18:22:44 +0200202 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000203 outb(0xf1, 0x88);
204 outb(0xf4, 0x88);
205}
206
Kyösti Mälkki15fa9922016-06-17 10:00:28 +0300207void mainboard_romstage_entry(unsigned long bist)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000208{
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200209 int s3resume = 0;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000210
Uwe Hermann7b997052010-11-21 22:47:22 +0000211 if (bist == 0)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000212 enable_lapic();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000213
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000214 /* Force PCIRST# */
215 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, SBR);
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000216 udelay(200 * 1000);
217 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, 0);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000218
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000219 ich7_enable_lpc();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000220 early_superio_config();
221
222 /* Set up the console */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000223 console_init();
224
225 /* Halt if there was a built in self test failure */
226 report_bist_failure(bist);
227
228 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000229 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
230 outb(0x6, 0xcf9);
Patrick Georgi546953c2014-11-29 10:38:17 +0100231 halt();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000232 }
233
234 /* Perform some early chipset initialization required
235 * before RAM initialization can work
236 */
237 i945_early_initialization();
238
239 /* This has to happen after i945_early_initialization() */
240 init_artec_dongle();
241
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200242 s3resume = southbridge_detect_s3_resume();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000243
244 /* Enable SPD ROMs and DDR-II DRAM */
245 enable_smbus();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000246
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000247#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
248 dump_spd_registers();
249#endif
250
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200251 sdram_initialize(s3resume ? 2 : 0, NULL);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000252
253 /* Perform some initialization that must run before stage2 */
254 early_ich7_init();
255
Stefan Reinauer14e22772010-04-27 06:56:47 +0000256 /* This should probably go away. Until now it is required
257 * and mainboard specific
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000258 */
259 rcba_config();
260
261 /* Chipset Errata! */
262 fixup_i945_errata();
263
264 /* Initialize the internal PCIe links before we go into stage2 */
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200265 i945_late_initialization(s3resume);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000266}