blob: e27194aab988e1e2b1717432294ef2bf7f0a828f [file] [log] [blame]
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +00001/*
2 * This file is part of the coreboot project.
Stefan Reinauer5ff7c132011-10-31 12:56:45 -07003 *
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +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 Reinauer7cfa7f92010-05-16 14:24:41 +000015 */
16
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000017#include <stdint.h>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000018#include <arch/io.h>
Elyes HAOUASd07048a2019-04-21 20:17:11 +020019#include <cf9_reset.h>
Kyösti Mälkki7fbed222019-07-11 08:14:07 +030020#include <delay.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +020021#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000023#include <device/pci_def.h>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000024#include <cpu/x86/lapic.h>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000025#include <pc80/mc146818rtc.h>
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000026#include <console/console.h>
Kyösti Mälkkicd7a70f2019-08-17 20:51:08 +030027#include <arch/romstage.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110028#include <northbridge/intel/i945/i945.h>
29#include <northbridge/intel/i945/raminit.h>
30#include <southbridge/intel/i82801gx/i82801gx.h>
Patrick Rudolph425e75a2019-03-24 15:06:17 +010031#include <southbridge/intel/common/pmclib.h>
Patrick Georgia4700192011-01-27 07:39:38 +000032#include "option_table.h"
Patrick Georgid0835952010-10-05 09:07:10 +000033
Arthur Heymans62902ca2016-11-29 14:13:43 +010034static void setup_special_ich7_gpios(void)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000035{
36 u32 gpios;
37
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000038 printk(BIOS_SPEW, "\n Initializing drive bay...\n");
39 gpios = inl(DEFAULT_GPIOBASE + 0x38); // GPIO Level 2
40 gpios |= (1 << 0); // GPIO33 = ODD
41 gpios |= (1 << 1); // GPIO34 = IDE_RST#
42 outl(gpios, DEFAULT_GPIOBASE + 0x38); /* GP_LVL2 */
43
44 gpios = inl(DEFAULT_GPIOBASE + 0x0c); // GPIO Level
45 gpios &= ~(1 << 13); // ??
46 outl(gpios, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
47
48 printk(BIOS_SPEW, "\n Initializing Ethernet NIC...\n");
49 gpios = inl(DEFAULT_GPIOBASE + 0x0c); // GPIO Level
50 gpios &= ~(1 << 24); // Enable LAN Power
51 outl(gpios, DEFAULT_GPIOBASE + 0x0c); /* GP_LVL */
52}
53
Arthur Heymansfecf7772019-11-09 14:19:04 +010054/* Override the default lpc decode ranges */
55static void mb_lpc_decode(void)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000056{
Patrick Georgia4700192011-01-27 07:39:38 +000057 int lpt_en = 0;
Arthur Heymansb451df22017-08-15 20:59:09 +020058 if (read_option(lpt, 0) != 0)
59 lpt_en = LPT_LPC_EN;
60
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000061 // decode range
Arthur Heymansb451df22017-08-15 20:59:09 +020062 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000063 // decode range
Arthur Heymansfecf7772019-11-09 14:19:04 +010064 pci_update_config32(PCI_DEV(0, 0x1f, 0), LPC_EN, ~LPT_LPC_EN, lpt_en);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000065}
66
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000067/* This box has two superios, so enabling serial becomes slightly excessive.
68 * We disable a lot of stuff to make sure that there are no conflicts between
69 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
70 * but safe anyways" method.
71 */
Antonello Dettori771d7ec2016-11-08 18:44:46 +010072static void pnp_enter_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000073{
74 unsigned int port = dev >> 8;
75 outb(0x55, port);
76}
77
Antonello Dettori771d7ec2016-11-08 18:44:46 +010078static void pnp_exit_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000079{
80 unsigned int port = dev >> 8;
81 outb(0xaa, port);
82}
83
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000084static void early_superio_config(void)
85{
Antonello Dettori771d7ec2016-11-08 18:44:46 +010086 pnp_devfn_t dev;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000087
Elyes HAOUAS531b87a2016-09-19 09:46:33 -060088 dev = PNP_DEV(0x4e, 0x00);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +000089
90 pnp_enter_ext_func_mode(dev);
Elyes HAOUASd6c8bdc2019-10-11 13:58:29 +020091 pnp_write_config(dev, 0x02, 0x0e); // UART power
92 pnp_write_config(dev, 0x1b, (0x3e8 >> 2)); // UART3 base
93 pnp_write_config(dev, 0x1c, (0x2e8 >> 2)); // UART4 base
94 pnp_write_config(dev, 0x1d, (5 << 4) | 11); // UART3,4 IRQ
95 pnp_write_config(dev, 0x1e, 1); // no 32khz clock
96 pnp_write_config(dev, 0x24, (0x3f8 >> 2)); // UART1 base
97 pnp_write_config(dev, 0x28, (4 << 4) | 0); // UART1,2 IRQ
98 pnp_write_config(dev, 0x2c, 0); // DMA0 FIR
99 pnp_write_config(dev, 0x30, (0x600 >> 4)); // Runtime Register Block Base
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000100
Elyes HAOUASd6c8bdc2019-10-11 13:58:29 +0200101 pnp_write_config(dev, 0x31, 0xce); // GPIO1 DIR
102 pnp_write_config(dev, 0x32, 0x00); // GPIO1 POL
103 pnp_write_config(dev, 0x33, 0x0f); // GPIO2 DIR
104 pnp_write_config(dev, 0x34, 0x00); // GPIO2 POL
105 pnp_write_config(dev, 0x35, 0xa8); // GPIO3 DIR
106 pnp_write_config(dev, 0x36, 0x00); // GPIO3 POL
107 pnp_write_config(dev, 0x37, 0xa8); // GPIO4 DIR
108 pnp_write_config(dev, 0x38, 0x00); // GPIO4 POL
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000109
Elyes HAOUASd6c8bdc2019-10-11 13:58:29 +0200110 pnp_write_config(dev, 0x39, 0x00); // GPIO1 OUT
111 pnp_write_config(dev, 0x40, 0x80); // GPIO2/MISC OUT
112 pnp_write_config(dev, 0x41, 0x00); // GPIO5 OUT
113 pnp_write_config(dev, 0x42, 0xa8); // GPIO5 DIR
114 pnp_write_config(dev, 0x43, 0x00); // GPIO5 POL
115 pnp_write_config(dev, 0x44, 0x00); // GPIO ALT1
116 pnp_write_config(dev, 0x45, 0x50); // GPIO ALT2
117 pnp_write_config(dev, 0x46, 0x00); // GPIO ALT3
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000118
Elyes HAOUASd6c8bdc2019-10-11 13:58:29 +0200119 pnp_write_config(dev, 0x48, 0x55); // GPIO ALT5
120 pnp_write_config(dev, 0x49, 0x55); // GPIO ALT6
121 pnp_write_config(dev, 0x4a, 0x55); // GPIO ALT7
122 pnp_write_config(dev, 0x4b, 0x55); // GPIO ALT8
123 pnp_write_config(dev, 0x4c, 0x55); // GPIO ALT9
124 pnp_write_config(dev, 0x4d, 0x55); // GPIO ALT10
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000125
126 pnp_exit_ext_func_mode(dev);
127}
128
129static void rcba_config(void)
130{
131 /* Set up virtual channel 0 */
132 //RCBA32(0x0014) = 0x80000001;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000133
134 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200135 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000136 /* Device 1d interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200137 RCBA32(D28IP) = 0x00214321;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000138
139 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200140 RCBA16(D31IR) = 0x0232;
141 RCBA16(D30IR) = 0x3246;
142 RCBA16(D29IR) = 0x0237;
143 RCBA16(D28IR) = 0x3201;
144 RCBA16(D27IR) = 0x3216;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000145
146 /* Enable IOAPIC */
Arthur Heymansb451df22017-08-15 20:59:09 +0200147 RCBA8(OIC) = 0x03;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000148
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000149 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +0100150 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000151
152 /* Enable PCIe Root Port Clock Gate */
153 // RCBA32(0x341c) = 0x00000001;
154
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000155 /* This should probably go into the ACPI enable trap */
156 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
157 RCBA32(0x1e84) = 0x00020001;
158 RCBA32(0x1e80) = 0x0000fe01;
159
160 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
161 RCBA32(0x1e9c) = 0x000200f0;
162 RCBA32(0x1e98) = 0x000c0801;
163}
164
165static void early_ich7_init(void)
166{
167 uint8_t reg8;
168 uint32_t reg32;
169
170 // program secondary mlt XXX byte?
Elyes HAOUAS6df210b2019-10-25 14:05:17 +0200171 pci_write_config8(PCI_DEV(0, 0x1e, 0), SMLT, 0x20);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000172
173 // reset rtc power status
Elyes HAOUAS6df210b2019-10-25 14:05:17 +0200174 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
175 reg8 &= ~RTC_BATTERY_DEAD;
176 pci_write_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3, reg8);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000177
178 // usb transient disconnect
179 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
180 reg8 |= (3 << 0);
181 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
182
183 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
184 reg32 |= (1 << 29) | (1 << 17);
185 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
186
187 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
188 reg32 |= (1 << 31) | (1 << 27);
189 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
190
Arthur Heymans2437fe92019-10-04 13:59:29 +0200191 ich7_setup_cir();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000192}
193
Kyösti Mälkki157b1892019-08-16 14:02:25 +0300194void mainboard_romstage_entry(void)
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000195{
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200196 int s3resume = 0;
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000197
Kyösti Mälkki157b1892019-08-16 14:02:25 +0300198 enable_lapic();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000199
Arthur Heymansfecf7772019-11-09 14:19:04 +0100200 i82801gx_lpc_setup();
201 mb_lpc_decode();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000202 early_superio_config();
203
204 /* Set up the console */
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000205 console_init();
206
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000207 if (MCHBAR16(SSKPD) == 0xCAFE) {
Elyes HAOUASd07048a2019-04-21 20:17:11 +0200208 system_reset();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000209 }
210
211 /* Perform some early chipset initialization required
212 * before RAM initialization can work
213 */
214 i945_early_initialization();
215
Arthur Heymans62902ca2016-11-29 14:13:43 +0100216 setup_special_ich7_gpios();
217
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200218 s3resume = southbridge_detect_s3_resume();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000219
220 /* Enable SPD ROMs and DDR-II DRAM */
221 enable_smbus();
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700222
Kyösti Mälkki346d2012019-03-23 10:07:16 +0200223 if (CONFIG(DEBUG_RAM_SETUP))
224 dump_spd_registers();
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000225
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200226 sdram_initialize(s3resume ? 2 : 0, NULL);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000227
228 /* Perform some initialization that must run before stage2 */
229 early_ich7_init();
230
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700231 /* This should probably go away. Until now it is required
232 * and mainboard specific
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000233 */
234 rcba_config();
235
236 /* Chipset Errata! */
237 fixup_i945_errata();
238
239 /* Initialize the internal PCIe links before we go into stage2 */
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200240 i945_late_initialization(s3resume);
Stefan Reinauer7cfa7f92010-05-16 14:24:41 +0000241}