blob: 8b5e4af21adf72839505a4105d8b5625be5b0771 [file] [log] [blame]
Corey Osgoode99bd102007-06-14 06:10:57 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Corey Osgoode99bd102007-06-14 06:10:57 +00003 *
4 * Copyright (C) 2003 Linux Networx
5 * Copyright (C) 2003 SuSE Linux AG
6 * Copyright (C) 2005 Tyan Computer
7 * (Written by Yinghai Lu <yinghailu@gmail.com> for Tyan Computer)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
Uwe Hermanndfb3c132007-06-19 22:47:11 +000023
24/* From 82801DBM, needs to be fixed to support everything the 82801ER does. */
Corey Osgoode99bd102007-06-14 06:10:57 +000025
26#include <console/console.h>
27#include <device/device.h>
28#include <device/pci.h>
29#include <device/pci_ids.h>
30#include <pc80/mc146818rtc.h>
31#include <pc80/isa-dma.h>
32#include <arch/io.h>
Stefan Reinauer138be832010-02-27 01:50:21 +000033#include "i82801bx.h"
Corey Osgoode99bd102007-06-14 06:10:57 +000034
35#define NMI_OFF 0
36
Stefan Reinauer138be832010-02-27 01:50:21 +000037typedef struct southbridge_intel_i82801bx_config config_t;
Joseph Smith4f0154c2009-05-02 21:30:57 +000038
Joseph Smith68d8a562007-10-30 21:55:11 +000039/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
40 * 0x00 - 0000 = Reserved
41 * 0x01 - 0001 = Reserved
42 * 0x02 - 0010 = Reserved
43 * 0x03 - 0011 = IRQ3
44 * 0x04 - 0100 = IRQ4
45 * 0x05 - 0101 = IRQ5
46 * 0x06 - 0110 = IRQ6
47 * 0x07 - 0111 = IRQ7
48 * 0x08 - 1000 = Reserved
49 * 0x09 - 1001 = IRQ9
50 * 0x0A - 1010 = IRQ10
51 * 0x0B - 1011 = IRQ11
52 * 0x0C - 1100 = IRQ12
53 * 0x0D - 1101 = Reserved
54 * 0x0E - 1110 = IRQ14
55 * 0x0F - 1111 = IRQ15
56 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
57 * 0x80 - The PIRQ is not routed.
58 */
59
60#define PIRQA 0x03
Joseph Smith03c65ef2009-05-01 04:53:58 +000061#define PIRQB 0x04
62#define PIRQC 0x05
63#define PIRQD 0x06
64#define PIRQE 0x07
65#define PIRQF 0x09
66#define PIRQG 0x0A
67#define PIRQH 0x0B
68
Stefan Reinauer14e22772010-04-27 06:56:47 +000069/*
70 * Use 0x0ef8 for a bitmap to cover all these IRQ's.
Joseph Smith4f0154c2009-05-02 21:30:57 +000071 * Use the defined IRQ values above or set mainboard
72 * specific IRQ values in your mainboards Config.lb.
73*/
Joseph Smith68d8a562007-10-30 21:55:11 +000074
Myles Watsone32d3992010-07-07 15:09:09 +000075static void i82801bx_enable_apic(struct device *dev)
Corey Osgoode99bd102007-06-14 06:10:57 +000076{
77 uint32_t reg32;
78 volatile uint32_t *ioapic_index = (volatile uint32_t *)0xfec00000;
79 volatile uint32_t *ioapic_data = (volatile uint32_t *)0xfec00010;
80
Joseph Smith68d8a562007-10-30 21:55:11 +000081 /* Set ACPI base address (I/O space). */
82 pci_write_config32(dev, PMBASE, (PMBASE_ADDR | 1));
83
84 /* Enable ACPI I/O and power management. */
85 pci_write_config8(dev, ACPI_CNTL, 0x10);
86
Corey Osgoode99bd102007-06-14 06:10:57 +000087 reg32 = pci_read_config32(dev, GEN_CNTL);
Uwe Hermanndfb3c132007-06-19 22:47:11 +000088 reg32 |= (3 << 7); /* Enable IOAPIC */
89 reg32 |= (1 << 13); /* Coprocessor error enable */
90 reg32 |= (1 << 1); /* Delayed transaction enable */
91 reg32 |= (1 << 2); /* DMA collection buffer enable */
Corey Osgoode99bd102007-06-14 06:10:57 +000092 pci_write_config32(dev, GEN_CNTL, reg32);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000093 printk(BIOS_DEBUG, "IOAPIC Southbridge enabled %x\n", reg32);
Corey Osgoode99bd102007-06-14 06:10:57 +000094
95 *ioapic_index = 0;
96 *ioapic_data = (1 << 25);
97
98 *ioapic_index = 0;
99 reg32 = *ioapic_data;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000100 printk(BIOS_DEBUG, "Southbridge APIC ID = %x\n", reg32);
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000101 if (reg32 != (1 << 25))
Corey Osgoode99bd102007-06-14 06:10:57 +0000102 die("APIC Error\n");
103
104 /* TODO: From i82801ca, needed/useful on other ICH? */
Joseph Smith68d8a562007-10-30 21:55:11 +0000105 *ioapic_index = 3; /* Select Boot Configuration register. */
106 *ioapic_data = 1; /* Use Processor System Bus to deliver interrupts. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000107}
108
Myles Watsone32d3992010-07-07 15:09:09 +0000109static void i82801bx_enable_serial_irqs(struct device *dev)
Corey Osgoode99bd102007-06-14 06:10:57 +0000110{
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000111 /* Set packet length and toggle silent mode bit. */
112 pci_write_config8(dev, SERIRQ_CNTL,
113 (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
114 pci_write_config8(dev, SERIRQ_CNTL,
115 (1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
116 /* TODO: Explain/#define the real meaning of these magic numbers. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000117}
118
Stefan Reinauer138be832010-02-27 01:50:21 +0000119static void i82801bx_pirq_init(device_t dev, uint16_t ich_model)
Joseph Smith68d8a562007-10-30 21:55:11 +0000120{
Joseph Smith4f0154c2009-05-02 21:30:57 +0000121 /* Get the chip configuration */
122 config_t *config = dev->chip_info;
123
124 if (config->pirqa_routing) {
125 pci_write_config8(dev, PIRQA_ROUT, config->pirqa_routing);
126 } else {
127 pci_write_config8(dev, PIRQA_ROUT, PIRQA);
128 }
129
130 if (config->pirqb_routing) {
131 pci_write_config8(dev, PIRQB_ROUT, config->pirqb_routing);
132 } else {
133 pci_write_config8(dev, PIRQB_ROUT, PIRQB);
134 }
135
136 if (config->pirqc_routing) {
137 pci_write_config8(dev, PIRQC_ROUT, config->pirqc_routing);
138 } else {
139 pci_write_config8(dev, PIRQC_ROUT, PIRQC);
140 }
141
142 if (config->pirqd_routing) {
143 pci_write_config8(dev, PIRQD_ROUT, config->pirqd_routing);
144 } else {
145 pci_write_config8(dev, PIRQD_ROUT, PIRQD);
146 }
Joseph Smith68d8a562007-10-30 21:55:11 +0000147
148 /* Route PIRQE - PIRQH (for ICH2-ICH9). */
149 if (ich_model >= 0x2440) {
Joseph Smith4f0154c2009-05-02 21:30:57 +0000150
151 if (config->pirqe_routing) {
152 pci_write_config8(dev, PIRQE_ROUT, config->pirqe_routing);
153 } else {
154 pci_write_config8(dev, PIRQE_ROUT, PIRQE);
155 }
156
157 if (config->pirqf_routing) {
158 pci_write_config8(dev, PIRQF_ROUT, config->pirqf_routing);
159 } else {
160 pci_write_config8(dev, PIRQF_ROUT, PIRQF);
161 }
162
163 if (config->pirqg_routing) {
164 pci_write_config8(dev, PIRQG_ROUT, config->pirqg_routing);
165 } else {
166 pci_write_config8(dev, PIRQG_ROUT, PIRQG);
167 }
168
169 if (config->pirqh_routing) {
170 pci_write_config8(dev, PIRQH_ROUT, config->pirqh_routing);
171 } else {
172 pci_write_config8(dev, PIRQH_ROUT, PIRQH);
173 }
Joseph Smith68d8a562007-10-30 21:55:11 +0000174 }
175}
176
Stefan Reinauer138be832010-02-27 01:50:21 +0000177static void i82801bx_power_options(device_t dev)
Joseph Smith68d8a562007-10-30 21:55:11 +0000178{
179 uint8_t byte;
180 int pwr_on = -1;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000181 int nmi_option;
Joseph Smith68d8a562007-10-30 21:55:11 +0000182
183 /* power after power fail */
184 /* FIXME this doesn't work! */
185 /* Which state do we want to goto after g3 (power restored)?
186 * 0 == S0 Full On
187 * 1 == S5 Soft Off
188 */
189 pci_write_config8(dev, GEN_PMCON_3, pwr_on ? 0 : 1);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000190 printk(BIOS_INFO, "Set power %s if power fails\n", pwr_on ? "on" : "off");
Joseph Smith68d8a562007-10-30 21:55:11 +0000191
192 /* Set up NMI on errors. */
193 byte = inb(0x61);
194 byte &= ~(1 << 3); /* IOCHK# NMI Enable */
195 byte &= ~(1 << 2); /* PCI SERR# Enable */
196 outb(byte, 0x61);
197 byte = inb(0x70);
198
199 nmi_option = NMI_OFF;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000200 get_option(&nmi_option, "nmi");
Joseph Smith68d8a562007-10-30 21:55:11 +0000201 if (nmi_option) {
202 byte &= ~(1 << 7); /* Set NMI. */
203 outb(byte, 0x70);
204 }
205}
206
Joseph Smithb94a79f2010-06-21 23:25:06 +0000207static void gpio_init(device_t dev)
Joseph Smith68d8a562007-10-30 21:55:11 +0000208{
Joseph Smithb94a79f2010-06-21 23:25:06 +0000209 /* Set the value for GPIO base address register and enable GPIO. */
210 pci_write_config32(dev, GPIO_BASE, (GPIO_BASE_ADDR | 1));
211 pci_write_config8(dev, GPIO_CNTL, 0x10);
Joseph Smith68d8a562007-10-30 21:55:11 +0000212}
213
Myles Watsone32d3992010-07-07 15:09:09 +0000214static void i82801bx_rtc_init(struct device *dev)
Joseph Smith68d8a562007-10-30 21:55:11 +0000215{
216 uint8_t reg8;
217 uint32_t reg32;
218 int rtc_failed;
219
220 reg8 = pci_read_config8(dev, GEN_PMCON_3);
221 rtc_failed = reg8 & RTC_BATTERY_DEAD;
222 if (rtc_failed) {
223 reg8 &= ~(1 << 1); /* Preserve the power fail state. */
224 pci_write_config8(dev, GEN_PMCON_3, reg8);
225 }
226 reg32 = pci_read_config32(dev, GEN_STS);
227 rtc_failed |= reg32 & (1 << 2);
228 rtc_init(rtc_failed);
229
230 /* Enable access to the upper 128 byte bank of CMOS RAM. */
231 pci_write_config8(dev, RTC_CONF, 0x04);
232}
233
Myles Watsone32d3992010-07-07 15:09:09 +0000234static void i82801bx_lpc_route_dma(struct device *dev, uint8_t mask)
Corey Osgoode99bd102007-06-14 06:10:57 +0000235{
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000236 uint16_t reg16;
237 int i;
238
239 reg16 = pci_read_config16(dev, PCI_DMA_CFG);
240 reg16 &= 0x300;
241 for (i = 0; i < 8; i++) {
242 if (i == 4)
243 continue;
244 reg16 |= ((mask & (1 << i)) ? 3 : 1) << (i * 2);
245 }
246 pci_write_config16(dev, PCI_DMA_CFG, reg16);
Corey Osgoode99bd102007-06-14 06:10:57 +0000247}
248
Stefan Reinauer138be832010-02-27 01:50:21 +0000249static void i82801bx_lpc_decode_en(device_t dev, uint16_t ich_model)
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000250{
Joseph Smith68d8a562007-10-30 21:55:11 +0000251 /* Decode 0x3F8-0x3FF (COM1) for COMA port, 0x2F8-0x2FF (COM2) for COMB.
252 * LPT decode defaults to 0x378-0x37F and 0x778-0x77F.
253 * Floppy decode defaults to 0x3F0-0x3F5, 0x3F7.
254 * We also need to set the value for LPC I/F Enables Register.
255 * Note: ICH-ICH5 registers differ from ICH6-ICH9.
256 */
257 if (ich_model <= 0x24D0) {
258 pci_write_config8(dev, COM_DEC, 0x10);
259 pci_write_config16(dev, LPC_EN_ICH0_5, 0x300F);
260 } else if (ich_model >= 0x2640) {
261 pci_write_config8(dev, LPC_IO_DEC, 0x10);
262 pci_write_config16(dev, LPC_EN_ICH6_9, 0x300F);
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000263 }
Corey Osgoode99bd102007-06-14 06:10:57 +0000264}
265
Corey Osgoode99bd102007-06-14 06:10:57 +0000266static void lpc_init(struct device *dev)
267{
Joseph Smith68d8a562007-10-30 21:55:11 +0000268 uint16_t ich_model = pci_read_config16(dev, PCI_DEVICE_ID);
Corey Osgoode99bd102007-06-14 06:10:57 +0000269
Joseph Smith68d8a562007-10-30 21:55:11 +0000270 /* Set the value for PCI command register. */
271 pci_write_config16(dev, PCI_COMMAND, 0x000f);
272
273 /* IO APIC initialization. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000274 i82801bx_enable_apic(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000275
Stefan Reinauer138be832010-02-27 01:50:21 +0000276 i82801bx_enable_serial_irqs(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000277
Joseph Smith68d8a562007-10-30 21:55:11 +0000278 /* Setup the PIRQ. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000279 i82801bx_pirq_init(dev, ich_model);
Corey Osgoode99bd102007-06-14 06:10:57 +0000280
Joseph Smith68d8a562007-10-30 21:55:11 +0000281 /* Setup power options. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000282 i82801bx_power_options(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000283
Joseph Smith68d8a562007-10-30 21:55:11 +0000284 /* Set the state of the GPIO lines. */
Joseph Smithb94a79f2010-06-21 23:25:06 +0000285 gpio_init(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000286
Joseph Smith68d8a562007-10-30 21:55:11 +0000287 /* Initialize the real time clock. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000288 i82801bx_rtc_init(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000289
Joseph Smith68d8a562007-10-30 21:55:11 +0000290 /* Route DMA. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000291 i82801bx_lpc_route_dma(dev, 0xff);
Corey Osgoode99bd102007-06-14 06:10:57 +0000292
Joseph Smith68d8a562007-10-30 21:55:11 +0000293 /* Initialize ISA DMA. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000294 isa_dma_init();
295
Joseph Smith68d8a562007-10-30 21:55:11 +0000296 /* Setup decode ports and LPC I/F enables. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000297 i82801bx_lpc_decode_en(dev, ich_model);
Corey Osgoode99bd102007-06-14 06:10:57 +0000298}
299
Stefan Reinauer138be832010-02-27 01:50:21 +0000300static void i82801bx_lpc_read_resources(device_t dev)
Corey Osgoode99bd102007-06-14 06:10:57 +0000301{
302 struct resource *res;
303
Joseph Smith68d8a562007-10-30 21:55:11 +0000304 /* Get the normal PCI resources of this device. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000305 pci_dev_read_resources(dev);
306
Joseph Smith68d8a562007-10-30 21:55:11 +0000307 /* Add an extra subtractive resource for both memory and I/O. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000308 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000309 res->base = 0;
310 res->size = 0x1000;
311 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
312 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Corey Osgoode99bd102007-06-14 06:10:57 +0000313
314 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000315 res->base = 0xff800000;
316 res->size = 0x00800000; /* 8 MB for flash */
317 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
318 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
319
320 res = new_resource(dev, 3); /* IOAPIC */
321 res->base = 0xfec00000;
322 res->size = 0x00001000;
323 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Corey Osgoode99bd102007-06-14 06:10:57 +0000324}
325
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000326static struct device_operations lpc_ops = {
Stefan Reinauer138be832010-02-27 01:50:21 +0000327 .read_resources = i82801bx_lpc_read_resources,
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000328 .set_resources = pci_dev_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000329 .enable_resources = pci_dev_enable_resources,
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000330 .init = lpc_init,
331 .scan_bus = scan_static_bus,
Stefan Reinauer138be832010-02-27 01:50:21 +0000332 .enable = i82801bx_enable,
Corey Osgoode99bd102007-06-14 06:10:57 +0000333};
334
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000335static const struct pci_driver i82801aa_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000336 .ops = &lpc_ops,
337 .vendor = PCI_VENDOR_ID_INTEL,
338 .device = 0x2410,
Corey Osgoode99bd102007-06-14 06:10:57 +0000339};
340
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000341static const struct pci_driver i82801ab_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000342 .ops = &lpc_ops,
343 .vendor = PCI_VENDOR_ID_INTEL,
344 .device = 0x2420,
Corey Osgoode99bd102007-06-14 06:10:57 +0000345};
346
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000347static const struct pci_driver i82801ba_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000348 .ops = &lpc_ops,
349 .vendor = PCI_VENDOR_ID_INTEL,
350 .device = 0x2440,
Corey Osgoode99bd102007-06-14 06:10:57 +0000351};
352
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000353static const struct pci_driver i82801ca_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000354 .ops = &lpc_ops,
355 .vendor = PCI_VENDOR_ID_INTEL,
356 .device = 0x2480,
Corey Osgoode99bd102007-06-14 06:10:57 +0000357};
358
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000359static const struct pci_driver i82801db_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000360 .ops = &lpc_ops,
361 .vendor = PCI_VENDOR_ID_INTEL,
362 .device = 0x24c0,
Corey Osgoode99bd102007-06-14 06:10:57 +0000363};
364
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000365static const struct pci_driver i82801dbm_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000366 .ops = &lpc_ops,
367 .vendor = PCI_VENDOR_ID_INTEL,
368 .device = 0x24cc,
Corey Osgoode99bd102007-06-14 06:10:57 +0000369};
370
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000371/* 82801EB and 82801ER */
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000372static const struct pci_driver i82801ex_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000373 .ops = &lpc_ops,
374 .vendor = PCI_VENDOR_ID_INTEL,
375 .device = 0x24d0,
Corey Osgoode99bd102007-06-14 06:10:57 +0000376};