blob: 086ab089888b88d7466f9dfa865a3f8070ea9152 [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
Stefan Reinauer838c5a52010-01-17 14:08:17 +000017#include <stdint.h>
Stefan Reinauer838c5a52010-01-17 14:08:17 +000018#include <arch/io.h>
Elyes HAOUASd07048a2019-04-21 20:17:11 +020019#include <cf9_reset.h>
Kyösti Mälkki3855c012019-03-03 08:45:19 +020020#include <device/pnp_ops.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020021#include <device/pci_ops.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>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000024#include <pc80/mc146818rtc.h>
Stefan Reinauer8a7d34b2010-02-22 09:15:13 +000025#include <console/console.h>
Kyösti Mälkkicd7a70f2019-08-17 20:51:08 +030026#include <arch/romstage.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110027#include <northbridge/intel/i945/i945.h>
28#include <northbridge/intel/i945/raminit.h>
29#include <southbridge/intel/i82801gx/i82801gx.h>
Patrick Rudolph425e75a2019-03-24 15:06:17 +010030#include <southbridge/intel/common/pmclib.h>
Patrick Georgia4700192011-01-27 07:39:38 +000031#include "option_table.h"
Patrick Georgid0835952010-10-05 09:07:10 +000032
Stefan Reinauer838c5a52010-01-17 14:08:17 +000033static void ich7_enable_lpc(void)
34{
Patrick Georgia4700192011-01-27 07:39:38 +000035 int lpt_en = 0;
Arthur Heymansb451df22017-08-15 20:59:09 +020036 if (read_option(lpt, 0) != 0)
37 lpt_en = LPT_LPC_EN; /* enable LPT */
38
Elyes HAOUASec16e932016-10-07 18:22:44 +020039 /* Enable Serial IRQ */
Arthur Heymansb451df22017-08-15 20:59:09 +020040 pci_write_config8(PCI_DEV(0, 0x1f, 0), SERIRQ_CNTL, 0xd0);
Elyes HAOUASec16e932016-10-07 18:22:44 +020041 /* decode range */
Arthur Heymansb451df22017-08-15 20:59:09 +020042 pci_write_config16(PCI_DEV(0, 0x1f, 0), LPC_IO_DEC, 0x0007);
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_EN, CNF2_LPC_EN | CNF1_LPC_EN
45 | MC_LPC_EN | KBC_LPC_EN | GAMEH_LPC_EN | GAMEL_LPC_EN
46 | FDD_LPC_EN | lpt_en | COMB_LPC_EN | COMA_LPC_EN);
47 /* COM3 and COM4 decode? */
48 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN1_DEC, 0x1c02e1);
49 /* ??decode?? */
50 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN2_DEC, 0x00fc0601);
51 /* EC decode? */
52 pci_write_config32(PCI_DEV(0, 0x1f, 0), GEN3_DEC, 0x00040069);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000053}
54
Stefan Reinauer838c5a52010-01-17 14:08:17 +000055/* This box has two superios, so enabling serial becomes slightly excessive.
56 * We disable a lot of stuff to make sure that there are no conflicts between
57 * the two. Also set up the GPIOs from the beginning. This is the "no schematic
58 * but safe anyways" method.
59 */
Antonello Dettori63028fd2016-11-08 18:44:46 +010060static inline void pnp_enter_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000061{
62 unsigned int port = dev >> 8;
63 outb(0x55, port);
64}
65
Antonello Dettori63028fd2016-11-08 18:44:46 +010066static void pnp_exit_ext_func_mode(pnp_devfn_t dev)
Stefan Reinauer838c5a52010-01-17 14:08:17 +000067{
68 unsigned int port = dev >> 8;
69 outb(0xaa, port);
70}
71
Stefan Reinauer838c5a52010-01-17 14:08:17 +000072static void early_superio_config(void)
73{
Antonello Dettori63028fd2016-11-08 18:44:46 +010074 pnp_devfn_t dev;
Stefan Reinauer838c5a52010-01-17 14:08:17 +000075
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060076 dev = PNP_DEV(0x2e, 0x00);
Stefan Reinauer838c5a52010-01-17 14:08:17 +000077
78 pnp_enter_ext_func_mode(dev);
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020079 pnp_write_config(dev, 0x01, 0x94); /* Extended Parport modes */
80 pnp_write_config(dev, 0x02, 0x88); /* UART power on */
81 pnp_write_config(dev, 0x03, 0x72); /* Floppy */
82 pnp_write_config(dev, 0x04, 0x01); /* EPP + SPP */
83 pnp_write_config(dev, 0x14, 0x03); /* Floppy */
84 pnp_write_config(dev, 0x20, (0x3f0 >> 2)); /* Floppy */
85 pnp_write_config(dev, 0x23, (0x378 >> 2)); /* PP base */
86 pnp_write_config(dev, 0x24, (0x3f8 >> 2)); /* UART1 base */
87 pnp_write_config(dev, 0x25, (0x2f8 >> 2)); /* UART2 base */
88 pnp_write_config(dev, 0x26, (2 << 4) | 0); /* FDC + PP DMA */
89 pnp_write_config(dev, 0x27, (6 << 4) | 7); /* FDC + PP DMA */
90 pnp_write_config(dev, 0x28, (4 << 4) | 3); /* UART1,2 IRQ */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000091 /* These are the SMI status registers in the SIO: */
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020092 pnp_write_config(dev, 0x30, (0x600 >> 4)); /* Runtime Register Block Base */
Stefan Reinauer838c5a52010-01-17 14:08:17 +000093
Elyes HAOUAScd7adbf2019-10-11 14:03:52 +020094 pnp_write_config(dev, 0x31, 0x00); /* GPIO1 DIR */
95 pnp_write_config(dev, 0x32, 0x00); /* GPIO1 POL */
96 pnp_write_config(dev, 0x33, 0x40); /* GPIO2 DIR */
97 pnp_write_config(dev, 0x34, 0x00); /* GPIO2 POL */
98 pnp_write_config(dev, 0x35, 0xff); /* GPIO3 DIR */
99 pnp_write_config(dev, 0x36, 0x00); /* GPIO3 POL */
100 pnp_write_config(dev, 0x37, 0xe0); /* GPIO4 DIR */
101 pnp_write_config(dev, 0x38, 0x00); /* GPIO4 POL */
102 pnp_write_config(dev, 0x39, 0x80); /* GPIO4 POL */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000103
104 pnp_exit_ext_func_mode(dev);
105}
106
107static void rcba_config(void)
108{
109 /* Set up virtual channel 0 */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000110
111 /* Device 1f interrupt pin register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200112 RCBA32(D31IP) = 0x00042220;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000113
114 /* dev irq route register */
Arthur Heymansb451df22017-08-15 20:59:09 +0200115 RCBA16(D31IR) = 0x0232;
116 RCBA16(D30IR) = 0x3246;
117 RCBA16(D29IR) = 0x0237;
118 RCBA16(D28IR) = 0x3201;
119 RCBA16(D27IR) = 0x3216;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000120
121 /* Enable IOAPIC */
Arthur Heymansb451df22017-08-15 20:59:09 +0200122 RCBA8(OIC) = 0x03;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000123
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000124 /* Disable unused devices */
Arthur Heymans6267f5d2018-12-15 23:46:48 +0100125 RCBA32(FD) |= FD_INTLAN;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000126
127 /* This should probably go into the ACPI OS Init trap */
128
129 /* Set up I/O Trap #0 for 0xfe00 (SMIC) */
130 RCBA32(0x1e84) = 0x00020001;
131 RCBA32(0x1e80) = 0x0000fe01;
132
133 /* Set up I/O Trap #3 for 0x800-0x80c (Trap) */
134 RCBA32(0x1e9c) = 0x000200f0;
135 RCBA32(0x1e98) = 0x000c0801;
136}
137
138static void early_ich7_init(void)
139{
140 uint8_t reg8;
141 uint32_t reg32;
142
Elyes HAOUASec16e932016-10-07 18:22:44 +0200143 /* program secondary mlt XXX byte? */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000144 pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
145
Elyes HAOUASec16e932016-10-07 18:22:44 +0200146 /* reset rtc power status */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000147 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
148 reg8 &= ~(1 << 2);
149 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
150
Elyes HAOUASec16e932016-10-07 18:22:44 +0200151 /* usb transient disconnect */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000152 reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);
153 reg8 |= (3 << 0);
154 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xad, reg8);
155
156 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xfc);
157 reg32 |= (1 << 29) | (1 << 17);
158 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xfc, reg32);
159
160 reg32 = pci_read_config32(PCI_DEV(0, 0x1d, 7), 0xdc);
161 reg32 |= (1 << 31) | (1 << 27);
162 pci_write_config32(PCI_DEV(0, 0x1d, 7), 0xdc, reg32);
163
Arthur Heymans2437fe92019-10-04 13:59:29 +0200164 ich7_setup_cir();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000165}
166
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000167static void init_artec_dongle(void)
168{
Elyes HAOUASec16e932016-10-07 18:22:44 +0200169 /* Enable 4MB decoding */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000170 outb(0xf1, 0x88);
171 outb(0xf4, 0x88);
172}
173
Kyösti Mälkki157b1892019-08-16 14:02:25 +0300174void mainboard_romstage_entry(void)
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000175{
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200176 int s3resume = 0;
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000177
Kyösti Mälkki157b1892019-08-16 14:02:25 +0300178 enable_lapic();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000179
Stefan Reinauerbc8613e2010-08-25 18:35:42 +0000180 ich7_enable_lpc();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000181 early_superio_config();
182
183 /* Set up the console */
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000184 console_init();
185
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000186 if (MCHBAR16(SSKPD) == 0xCAFE) {
Stefan Reinauerbf264e92010-05-14 19:09:20 +0000187 printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n");
Elyes HAOUASd07048a2019-04-21 20:17:11 +0200188 system_reset();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000189 }
190
191 /* Perform some early chipset initialization required
192 * before RAM initialization can work
193 */
194 i945_early_initialization();
195
196 /* This has to happen after i945_early_initialization() */
197 init_artec_dongle();
198
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200199 s3resume = southbridge_detect_s3_resume();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000200
201 /* Enable SPD ROMs and DDR-II DRAM */
202 enable_smbus();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000203
Kyösti Mälkki346d2012019-03-23 10:07:16 +0200204 if (CONFIG(DEBUG_RAM_SETUP))
205 dump_spd_registers();
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000206
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200207 sdram_initialize(s3resume ? 2 : 0, NULL);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000208
209 /* Perform some initialization that must run before stage2 */
210 early_ich7_init();
211
Stefan Reinauer14e22772010-04-27 06:56:47 +0000212 /* This should probably go away. Until now it is required
213 * and mainboard specific
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000214 */
215 rcba_config();
216
217 /* Chipset Errata! */
218 fixup_i945_errata();
219
220 /* Initialize the internal PCIe links before we go into stage2 */
Vladimir Serbinenko55601882014-10-15 20:17:51 +0200221 i945_late_initialization(s3resume);
Stefan Reinauer838c5a52010-01-17 14:08:17 +0000222}