blob: e85da1f480485f967bf9edf6414a28bc2763c417 [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>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000020#include <arch/io.h>
Elyes HAOUASd07048a2019-04-21 20:17:11 +020021#include <cf9_reset.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +020022#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020023#include <device/pci_ops.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000024#include <device/pci_def.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000025#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000026#include <pc80/mc146818rtc.h>
Stefan Reinauer8a7d34b2010-02-22 09:15:13 +000027#include <console/console.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000028#include <cpu/x86/bist.h>
Kyösti Mälkki15fa9922016-06-17 10:00:28 +030029#include <cpu/intel/romstage.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010030#include <halt.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110031#include <northbridge/intel/i945/i945.h>
32#include <northbridge/intel/i945/raminit.h>
33#include <southbridge/intel/i82801gx/i82801gx.h>
Patrick Rudolph425e75a2019-03-24 15:06:17 +010034#include <southbridge/intel/common/pmclib.h>
Patrick Georgia4700192011-01-27 07:39:38 +000035#include "option_table.h"
Patrick Georgid0835952010-10-05 09:07:10 +000036
Stefan Reinauer838c5a52010-01-17 14:08:17 +000037static void ich7_enable_lpc(void)
38{
Patrick Georgia4700192011-01-27 07:39:38 +000039 int lpt_en = 0;
Arthur Heymansb451df22017-08-15 20:59:09 +020040 if (read_option(lpt, 0) != 0)
41 lpt_en = LPT_LPC_EN; /* enable LPT */
42
Elyes HAOUASec16e932016-10-07 18:22:44 +020043 /* Enable Serial IRQ */
Arthur Heymansb451df22017-08-15 20:59:09 +020044 pci_write_config8(PCI_DEV(0, 0x1f, 0), SERIRQ_CNTL, 0xd0);
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_IO_DEC, 0x0007);
Elyes HAOUASec16e932016-10-07 18:22:44 +020047 /* decode range */
Arthur Heymansb451df22017-08-15 20:59:09 +020048 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, CNF2_LPC_EN | CNF1_LPC_EN
49 | MC_LPC_EN | KBC_LPC_EN | GAMEH_LPC_EN | GAMEL_LPC_EN
50 | FDD_LPC_EN | lpt_en | COMB_LPC_EN | COMA_LPC_EN);
51 /* COM3 and COM4 decode? */
52 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN1_DEC, 0x1c02e1);
53 /* ??decode?? */
54 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN2_DEC, 0x00fc0601);
55 /* EC decode? */
56 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN3_DEC, 0x00040069);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000057}
58
Stefan Reinauer838c5a52010-01-17 14:08:17 +000059/* This box has two superios, so enabling serial becomes slightly excessive.
60 * We disable a lot of stuff to make sure that there are no conflicts between
61 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
62 * but safe anyways" method.
63 */
Antonello Dettori63028fd2016-11-08 18:44:46 +010064static inline void pnp_enter_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000065{
66 unsigned int port = dev >> 8;
67 outb(0x55, port);
68}
69
Antonello Dettori63028fd2016-11-08 18:44:46 +010070static void pnp_exit_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000071{
72 unsigned int port = dev >> 8;
73 outb(0xaa, port);
74}
75
Antonello Dettori63028fd2016-11-08 18:44:46 +010076static void pnp_write_register(pnp_devfn_t dev, int reg, int val)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000077{
78 unsigned int port = dev >> 8;
79 outb(reg, port);
80 outb(val, port+1);
81}
82
83static void early_superio_config(void)
84{
Antonello Dettori63028fd2016-11-08 18:44:46 +010085 pnp_devfn_t dev;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000086
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060087 dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000088
89 pnp_enter_ext_func_mode(dev);
Elyes HAOUASec16e932016-10-07 18:22:44 +020090 pnp_write_register(dev, 0x01, 0x94); /* Extended Parport modes */
91 pnp_write_register(dev, 0x02, 0x88); /* UART power on */
92 pnp_write_register(dev, 0x03, 0x72); /* Floppy */
93 pnp_write_register(dev, 0x04, 0x01); /* EPP + SPP */
94 pnp_write_register(dev, 0x14, 0x03); /* Floppy */
95 pnp_write_register(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
96 pnp_write_register(dev, 0x23, (0x378 >> 2)); /* PP base */
97 pnp_write_register(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
98 pnp_write_register(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
99 pnp_write_register(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
100 pnp_write_register(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
101 pnp_write_register(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000102 /* These are the SMI status registers in the SIO: */
Elyes HAOUASec16e932016-10-07 18:22:44 +0200103 pnp_write_register(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000104
Elyes HAOUASec16e932016-10-07 18:22:44 +0200105 pnp_write_register(dev, 0x31, 0x00); /* GPIO1 DIR */
106 pnp_write_register(dev, 0x32, 0x00); /* GPIO1 POL */
107 pnp_write_register(dev, 0x33, 0x40); /* GPIO2 DIR */
108 pnp_write_register(dev, 0x34, 0x00); /* GPIO2 POL */
109 pnp_write_register(dev, 0x35, 0xff); /* GPIO3 DIR */
110 pnp_write_register(dev, 0x36, 0x00); /* GPIO3 POL */
111 pnp_write_register(dev, 0x37, 0xe0); /* GPIO4 DIR */
112 pnp_write_register(dev, 0x38, 0x00); /* GPIO4 POL */
113 pnp_write_register(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000114
115 pnp_exit_ext_func_mode(dev);
116}
117
118static void rcba_config(void)
119{
120 /* Set up virtual channel 0 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000121
122 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200123 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000124
125 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200126 RCBA16(D31IR) = 0x0232;
127 RCBA16(D30IR) = 0x3246;
128 RCBA16(D29IR) = 0x0237;
129 RCBA16(D28IR) = 0x3201;
130 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000131
132 /* Enable IOAPIC */
Arthur Heymansb451df22017-08-15 20:59:09 +0200133 RCBA8(OIC) = 0x03;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000134
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000135 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +0100136 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000137
138 /* This should probably go into the ACPI OS Init trap */
139
140 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
141 RCBA32(0x1e84) = 0x00020001;
142 RCBA32(0x1e80) = 0x0000fe01;
143
144 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
145 RCBA32(0x1e9c) = 0x000200f0;
146 RCBA32(0x1e98) = 0x000c0801;
147}
148
149static void early_ich7_init(void)
150{
151 uint8_t reg8;
152 uint32_t reg32;
153
Elyes HAOUASec16e932016-10-07 18:22:44 +0200154 /* program secondary mlt XXX byte? */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000155 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
156
Elyes HAOUASec16e932016-10-07 18:22:44 +0200157 /* reset rtc power status */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000158 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
159 reg8 &= ~(1 << 2);
160 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
161
Elyes HAOUASec16e932016-10-07 18:22:44 +0200162 /* usb transient disconnect */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000163 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
164 reg8 |= (3 << 0);
165 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
166
167 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
168 reg32 |= (1 << 29) | (1 << 17);
169 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
170
171 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
172 reg32 |= (1 << 31) | (1 << 27);
173 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
174
175 RCBA32(0x0088) = 0x0011d000;
176 RCBA16(0x01fc) = 0x060f;
177 RCBA32(0x01f4) = 0x86000040;
178 RCBA32(0x0214) = 0x10030549;
179 RCBA32(0x0218) = 0x00020504;
180 RCBA8(0x0220) = 0xc5;
Arthur Heymansb451df22017-08-15 20:59:09 +0200181 reg32 = RCBA32(GCS);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000182 reg32 |= (1 << 6);
Arthur Heymansb451df22017-08-15 20:59:09 +0200183 RCBA32(GCS) = reg32;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000184 reg32 = RCBA32(0x3430);
185 reg32 &= ~(3 << 0);
186 reg32 |= (1 << 0);
187 RCBA32(0x3430) = reg32;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000188 RCBA16(0x0200) = 0x2008;
189 RCBA8(0x2027) = 0x0d;
190 RCBA16(0x3e08) |= (1 << 7);
191 RCBA16(0x3e48) |= (1 << 7);
192 RCBA32(0x3e0e) |= (1 << 7);
193 RCBA32(0x3e4e) |= (1 << 7);
194
Elyes HAOUASec16e932016-10-07 18:22:44 +0200195 /* next step only on ich7m b0 and later: */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000196 reg32 = RCBA32(0x2034);
197 reg32 &= ~(0x0f << 16);
198 reg32 |= (5 << 16);
199 RCBA32(0x2034) = reg32;
200}
201
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000202static void init_artec_dongle(void)
203{
Elyes HAOUASec16e932016-10-07 18:22:44 +0200204 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000205 outb(0xf1, 0x88);
206 outb(0xf4, 0x88);
207}
208
Kyösti Mälkki15fa9922016-06-17 10:00:28 +0300209void mainboard_romstage_entry(unsigned long bist)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000210{
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200211 int s3resume = 0;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000212
Uwe Hermann7b997052010-11-21 22:47:22 +0000213 if (bist == 0)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000214 enable_lapic();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000215
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000216 /* Force PCIRST# */
217 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, SBR);
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000218 udelay(200 * 1000);
219 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, 0);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000220
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000221 ich7_enable_lpc();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000222 early_superio_config();
223
224 /* Set up the console */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000225 console_init();
226
227 /* Halt if there was a built in self test failure */
228 report_bist_failure(bist);
229
230 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000231 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
Elyes HAOUASd07048a2019-04-21 20:17:11 +0200232 system_reset();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000233 }
234
235 /* Perform some early chipset initialization required
236 * before RAM initialization can work
237 */
238 i945_early_initialization();
239
240 /* This has to happen after i945_early_initialization() */
241 init_artec_dongle();
242
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200243 s3resume = southbridge_detect_s3_resume();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000244
245 /* Enable SPD ROMs and DDR-II DRAM */
246 enable_smbus();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000247
Kyösti Mälkki346d2012019-03-23 10:07:16 +0200248 if (CONFIG(DEBUG_RAM_SETUP))
249 dump_spd_registers();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000250
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}