blob: 9492ca130490d79d59163551f809a22b7c72308f [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>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000023#include <device/pci_def.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000024#include <cpu/x86/lapic.h>
Kyösti Mälkki12d681b2014-06-14 18:51:34 +030025#include <arch/acpi.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 Georgia4700192011-01-27 07:39:38 +000034#include "option_table.h"
Patrick Georgid0835952010-10-05 09:07:10 +000035
Stefan Reinauer838c5a52010-01-17 14:08:17 +000036static void ich7_enable_lpc(void)
37{
Patrick Georgia4700192011-01-27 07:39:38 +000038 int lpt_en = 0;
Arthur Heymansb451df22017-08-15 20:59:09 +020039 if (read_option(lpt, 0) != 0)
40 lpt_en = LPT_LPC_EN; /* enable LPT */
41
Elyes HAOUASec16e932016-10-07 18:22:44 +020042 /* Enable Serial IRQ */
Arthur Heymansb451df22017-08-15 20:59:09 +020043 pci_write_config8(PCI_DEV(0, 0x1f, 0), SERIRQ_CNTL, 0xd0);
Elyes HAOUASec16e932016-10-07 18:22:44 +020044 /* decode range */
Arthur Heymansb451df22017-08-15 20:59:09 +020045 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
Elyes HAOUASec16e932016-10-07 18:22:44 +020046 /* decode range */
Arthur Heymansb451df22017-08-15 20:59:09 +020047 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_EN, CNF2_LPC_EN | CNF1_LPC_EN
48 | MC_LPC_EN | KBC_LPC_EN | GAMEH_LPC_EN | GAMEL_LPC_EN
49 | FDD_LPC_EN | lpt_en | COMB_LPC_EN | COMA_LPC_EN);
50 /* COM3 and COM4 decode? */
51 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN1_DEC, 0x1c02e1);
52 /* ??decode?? */
53 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN2_DEC, 0x00fc0601);
54 /* EC decode? */
55 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN3_DEC, 0x00040069);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000056}
57
Stefan Reinauer838c5a52010-01-17 14:08:17 +000058/* This box has two superios, so enabling serial becomes slightly excessive.
59 * We disable a lot of stuff to make sure that there are no conflicts between
60 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
61 * but safe anyways" method.
62 */
Antonello Dettori63028fd2016-11-08 18:44:46 +010063static inline void pnp_enter_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000064{
65 unsigned int port = dev >> 8;
66 outb(0x55, port);
67}
68
Antonello Dettori63028fd2016-11-08 18:44:46 +010069static void pnp_exit_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000070{
71 unsigned int port = dev >> 8;
72 outb(0xaa, port);
73}
74
Antonello Dettori63028fd2016-11-08 18:44:46 +010075static void pnp_write_register(pnp_devfn_t dev, int reg, int val)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000076{
77 unsigned int port = dev >> 8;
78 outb(reg, port);
79 outb(val, port+1);
80}
81
82static void early_superio_config(void)
83{
Antonello Dettori63028fd2016-11-08 18:44:46 +010084 pnp_devfn_t dev;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000085
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060086 dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000087
88 pnp_enter_ext_func_mode(dev);
Elyes HAOUASec16e932016-10-07 18:22:44 +020089 pnp_write_register(dev, 0x01, 0x94); /* Extended Parport modes */
90 pnp_write_register(dev, 0x02, 0x88); /* UART power on */
91 pnp_write_register(dev, 0x03, 0x72); /* Floppy */
92 pnp_write_register(dev, 0x04, 0x01); /* EPP + SPP */
93 pnp_write_register(dev, 0x14, 0x03); /* Floppy */
94 pnp_write_register(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
95 pnp_write_register(dev, 0x23, (0x378 >> 2)); /* PP base */
96 pnp_write_register(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
97 pnp_write_register(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
98 pnp_write_register(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
99 pnp_write_register(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
100 pnp_write_register(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000101 /* These are the SMI status registers in the SIO: */
Elyes HAOUASec16e932016-10-07 18:22:44 +0200102 pnp_write_register(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000103
Elyes HAOUASec16e932016-10-07 18:22:44 +0200104 pnp_write_register(dev, 0x31, 0x00); /* GPIO1 DIR */
105 pnp_write_register(dev, 0x32, 0x00); /* GPIO1 POL */
106 pnp_write_register(dev, 0x33, 0x40); /* GPIO2 DIR */
107 pnp_write_register(dev, 0x34, 0x00); /* GPIO2 POL */
108 pnp_write_register(dev, 0x35, 0xff); /* GPIO3 DIR */
109 pnp_write_register(dev, 0x36, 0x00); /* GPIO3 POL */
110 pnp_write_register(dev, 0x37, 0xe0); /* GPIO4 DIR */
111 pnp_write_register(dev, 0x38, 0x00); /* GPIO4 POL */
112 pnp_write_register(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000113
114 pnp_exit_ext_func_mode(dev);
115}
116
117static void rcba_config(void)
118{
119 /* Set up virtual channel 0 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000120
121 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200122 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000123
124 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200125 RCBA16(D31IR) = 0x0232;
126 RCBA16(D30IR) = 0x3246;
127 RCBA16(D29IR) = 0x0237;
128 RCBA16(D28IR) = 0x3201;
129 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000130
131 /* Enable IOAPIC */
Arthur Heymansb451df22017-08-15 20:59:09 +0200132 RCBA8(OIC) = 0x03;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000133
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000134 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +0100135 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000136
137 /* This should probably go into the ACPI OS Init trap */
138
139 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
140 RCBA32(0x1e84) = 0x00020001;
141 RCBA32(0x1e80) = 0x0000fe01;
142
143 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
144 RCBA32(0x1e9c) = 0x000200f0;
145 RCBA32(0x1e98) = 0x000c0801;
146}
147
148static void early_ich7_init(void)
149{
150 uint8_t reg8;
151 uint32_t reg32;
152
Elyes HAOUASec16e932016-10-07 18:22:44 +0200153 /* program secondary mlt XXX byte? */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000154 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
155
Elyes HAOUASec16e932016-10-07 18:22:44 +0200156 /* reset rtc power status */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000157 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
158 reg8 &= ~(1 << 2);
159 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
160
Elyes HAOUASec16e932016-10-07 18:22:44 +0200161 /* usb transient disconnect */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000162 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
163 reg8 |= (3 << 0);
164 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
165
166 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
167 reg32 |= (1 << 29) | (1 << 17);
168 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
169
170 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
171 reg32 |= (1 << 31) | (1 << 27);
172 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
173
174 RCBA32(0x0088) = 0x0011d000;
175 RCBA16(0x01fc) = 0x060f;
176 RCBA32(0x01f4) = 0x86000040;
177 RCBA32(0x0214) = 0x10030549;
178 RCBA32(0x0218) = 0x00020504;
179 RCBA8(0x0220) = 0xc5;
Arthur Heymansb451df22017-08-15 20:59:09 +0200180 reg32 = RCBA32(GCS);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000181 reg32 |= (1 << 6);
Arthur Heymansb451df22017-08-15 20:59:09 +0200182 RCBA32(GCS) = reg32;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000183 reg32 = RCBA32(0x3430);
184 reg32 &= ~(3 << 0);
185 reg32 |= (1 << 0);
186 RCBA32(0x3430) = reg32;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000187 RCBA16(0x0200) = 0x2008;
188 RCBA8(0x2027) = 0x0d;
189 RCBA16(0x3e08) |= (1 << 7);
190 RCBA16(0x3e48) |= (1 << 7);
191 RCBA32(0x3e0e) |= (1 << 7);
192 RCBA32(0x3e4e) |= (1 << 7);
193
Elyes HAOUASec16e932016-10-07 18:22:44 +0200194 /* next step only on ich7m b0 and later: */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000195 reg32 = RCBA32(0x2034);
196 reg32 &= ~(0x0f << 16);
197 reg32 |= (5 << 16);
198 RCBA32(0x2034) = reg32;
199}
200
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000201static void init_artec_dongle(void)
202{
Elyes HAOUASec16e932016-10-07 18:22:44 +0200203 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000204 outb(0xf1, 0x88);
205 outb(0xf4, 0x88);
206}
207
Kyösti Mälkki15fa9922016-06-17 10:00:28 +0300208void mainboard_romstage_entry(unsigned long bist)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000209{
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200210 int s3resume = 0;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000211
Uwe Hermann7b997052010-11-21 22:47:22 +0000212 if (bist == 0)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000213 enable_lapic();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000214
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000215 /* Force PCIRST# */
216 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, SBR);
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000217 udelay(200 * 1000);
218 pci_write_config16(PCI_DEV(0, 0x1e, 0), BCTRL, 0);
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000219
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000220 ich7_enable_lpc();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000221 early_superio_config();
222
223 /* Set up the console */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000224 console_init();
225
226 /* Halt if there was a built in self test failure */
227 report_bist_failure(bist);
228
229 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000230 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
231 outb(0x6, 0xcf9);
Patrick Georgi546953c2014-11-29 10:38:17 +0100232 halt();
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
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000248#if CONFIG_DEFAULT_CONSOLE_LOGLEVEL > 8
249 dump_spd_registers();
250#endif
251
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200252 sdram_initialize(s3resume ? 2 : 0, NULL);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000253
254 /* Perform some initialization that must run before stage2 */
255 early_ich7_init();
256
Stefan Reinauer14e22772010-04-27 06:56:47 +0000257 /* This should probably go away. Until now it is required
258 * and mainboard specific
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000259 */
260 rcba_config();
261
262 /* Chipset Errata! */
263 fixup_i945_errata();
264
265 /* Initialize the internal PCIe links before we go into stage2 */
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200266 i945_late_initialization(s3resume);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000267}