blob: 0d7e09c931ce4c605b021ec385642282d4854cd2 [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
Joseph Smith68d8a562007-10-30 21:55:11 +000035#define GPIO_BASE_ADDR 0x00000500 /* GPIO Base Address Register */
36
Corey Osgoode99bd102007-06-14 06:10:57 +000037#define NMI_OFF 0
38
Stefan Reinauer138be832010-02-27 01:50:21 +000039typedef struct southbridge_intel_i82801bx_config config_t;
Joseph Smith4f0154c2009-05-02 21:30:57 +000040
Joseph Smith68d8a562007-10-30 21:55:11 +000041/* PIRQ[n]_ROUT[3:0] - PIRQ Routing Control
42 * 0x00 - 0000 = Reserved
43 * 0x01 - 0001 = Reserved
44 * 0x02 - 0010 = Reserved
45 * 0x03 - 0011 = IRQ3
46 * 0x04 - 0100 = IRQ4
47 * 0x05 - 0101 = IRQ5
48 * 0x06 - 0110 = IRQ6
49 * 0x07 - 0111 = IRQ7
50 * 0x08 - 1000 = Reserved
51 * 0x09 - 1001 = IRQ9
52 * 0x0A - 1010 = IRQ10
53 * 0x0B - 1011 = IRQ11
54 * 0x0C - 1100 = IRQ12
55 * 0x0D - 1101 = Reserved
56 * 0x0E - 1110 = IRQ14
57 * 0x0F - 1111 = IRQ15
58 * PIRQ[n]_ROUT[7] - PIRQ Routing Control
59 * 0x80 - The PIRQ is not routed.
60 */
61
62#define PIRQA 0x03
Joseph Smith03c65ef2009-05-01 04:53:58 +000063#define PIRQB 0x04
64#define PIRQC 0x05
65#define PIRQD 0x06
66#define PIRQE 0x07
67#define PIRQF 0x09
68#define PIRQG 0x0A
69#define PIRQH 0x0B
70
Joseph Smith4f0154c2009-05-02 21:30:57 +000071/*
72 * Use 0x0ef8 for a bitmap to cover all these IRQ's.
73 * Use the defined IRQ values above or set mainboard
74 * specific IRQ values in your mainboards Config.lb.
75*/
Joseph Smith68d8a562007-10-30 21:55:11 +000076
Stefan Reinauer138be832010-02-27 01:50:21 +000077void i82801bx_enable_apic(struct device *dev)
Corey Osgoode99bd102007-06-14 06:10:57 +000078{
79 uint32_t reg32;
80 volatile uint32_t *ioapic_index = (volatile uint32_t *)0xfec00000;
81 volatile uint32_t *ioapic_data = (volatile uint32_t *)0xfec00010;
82
Joseph Smith68d8a562007-10-30 21:55:11 +000083 /* Set ACPI base address (I/O space). */
84 pci_write_config32(dev, PMBASE, (PMBASE_ADDR | 1));
85
86 /* Enable ACPI I/O and power management. */
87 pci_write_config8(dev, ACPI_CNTL, 0x10);
88
Corey Osgoode99bd102007-06-14 06:10:57 +000089 reg32 = pci_read_config32(dev, GEN_CNTL);
Uwe Hermanndfb3c132007-06-19 22:47:11 +000090 reg32 |= (3 << 7); /* Enable IOAPIC */
91 reg32 |= (1 << 13); /* Coprocessor error enable */
92 reg32 |= (1 << 1); /* Delayed transaction enable */
93 reg32 |= (1 << 2); /* DMA collection buffer enable */
Corey Osgoode99bd102007-06-14 06:10:57 +000094 pci_write_config32(dev, GEN_CNTL, reg32);
95 printk_debug("IOAPIC Southbridge enabled %x\n", reg32);
96
97 *ioapic_index = 0;
98 *ioapic_data = (1 << 25);
99
100 *ioapic_index = 0;
101 reg32 = *ioapic_data;
102 printk_debug("Southbridge APIC ID = %x\n", reg32);
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000103 if (reg32 != (1 << 25))
Corey Osgoode99bd102007-06-14 06:10:57 +0000104 die("APIC Error\n");
105
106 /* TODO: From i82801ca, needed/useful on other ICH? */
Joseph Smith68d8a562007-10-30 21:55:11 +0000107 *ioapic_index = 3; /* Select Boot Configuration register. */
108 *ioapic_data = 1; /* Use Processor System Bus to deliver interrupts. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000109}
110
Stefan Reinauer138be832010-02-27 01:50:21 +0000111void i82801bx_enable_serial_irqs(struct device *dev)
Corey Osgoode99bd102007-06-14 06:10:57 +0000112{
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000113 /* Set packet length and toggle silent mode bit. */
114 pci_write_config8(dev, SERIRQ_CNTL,
115 (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0));
116 pci_write_config8(dev, SERIRQ_CNTL,
117 (1 << 7) | (0 << 6) | ((21 - 17) << 2) | (0 << 0));
118 /* TODO: Explain/#define the real meaning of these magic numbers. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000119}
120
Stefan Reinauer138be832010-02-27 01:50:21 +0000121static void i82801bx_pirq_init(device_t dev, uint16_t ich_model)
Joseph Smith68d8a562007-10-30 21:55:11 +0000122{
Joseph Smith4f0154c2009-05-02 21:30:57 +0000123 /* Get the chip configuration */
124 config_t *config = dev->chip_info;
125
126 if (config->pirqa_routing) {
127 pci_write_config8(dev, PIRQA_ROUT, config->pirqa_routing);
128 } else {
129 pci_write_config8(dev, PIRQA_ROUT, PIRQA);
130 }
131
132 if (config->pirqb_routing) {
133 pci_write_config8(dev, PIRQB_ROUT, config->pirqb_routing);
134 } else {
135 pci_write_config8(dev, PIRQB_ROUT, PIRQB);
136 }
137
138 if (config->pirqc_routing) {
139 pci_write_config8(dev, PIRQC_ROUT, config->pirqc_routing);
140 } else {
141 pci_write_config8(dev, PIRQC_ROUT, PIRQC);
142 }
143
144 if (config->pirqd_routing) {
145 pci_write_config8(dev, PIRQD_ROUT, config->pirqd_routing);
146 } else {
147 pci_write_config8(dev, PIRQD_ROUT, PIRQD);
148 }
Joseph Smith68d8a562007-10-30 21:55:11 +0000149
150 /* Route PIRQE - PIRQH (for ICH2-ICH9). */
151 if (ich_model >= 0x2440) {
Joseph Smith4f0154c2009-05-02 21:30:57 +0000152
153 if (config->pirqe_routing) {
154 pci_write_config8(dev, PIRQE_ROUT, config->pirqe_routing);
155 } else {
156 pci_write_config8(dev, PIRQE_ROUT, PIRQE);
157 }
158
159 if (config->pirqf_routing) {
160 pci_write_config8(dev, PIRQF_ROUT, config->pirqf_routing);
161 } else {
162 pci_write_config8(dev, PIRQF_ROUT, PIRQF);
163 }
164
165 if (config->pirqg_routing) {
166 pci_write_config8(dev, PIRQG_ROUT, config->pirqg_routing);
167 } else {
168 pci_write_config8(dev, PIRQG_ROUT, PIRQG);
169 }
170
171 if (config->pirqh_routing) {
172 pci_write_config8(dev, PIRQH_ROUT, config->pirqh_routing);
173 } else {
174 pci_write_config8(dev, PIRQH_ROUT, PIRQH);
175 }
Joseph Smith68d8a562007-10-30 21:55:11 +0000176 }
177}
178
Stefan Reinauer138be832010-02-27 01:50:21 +0000179static void i82801bx_power_options(device_t dev)
Joseph Smith68d8a562007-10-30 21:55:11 +0000180{
181 uint8_t byte;
182 int pwr_on = -1;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000183 int nmi_option;
Joseph Smith68d8a562007-10-30 21:55:11 +0000184
185 /* power after power fail */
186 /* FIXME this doesn't work! */
187 /* Which state do we want to goto after g3 (power restored)?
188 * 0 == S0 Full On
189 * 1 == S5 Soft Off
190 */
191 pci_write_config8(dev, GEN_PMCON_3, pwr_on ? 0 : 1);
192 printk_info("Set power %s if power fails\n", pwr_on ? "on" : "off");
193
194 /* Set up NMI on errors. */
195 byte = inb(0x61);
196 byte &= ~(1 << 3); /* IOCHK# NMI Enable */
197 byte &= ~(1 << 2); /* PCI SERR# Enable */
198 outb(byte, 0x61);
199 byte = inb(0x70);
200
201 nmi_option = NMI_OFF;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000202 get_option(&nmi_option, "nmi");
Joseph Smith68d8a562007-10-30 21:55:11 +0000203 if (nmi_option) {
204 byte &= ~(1 << 7); /* Set NMI. */
205 outb(byte, 0x70);
206 }
207}
208
209static void gpio_init(device_t dev, uint16_t ich_model)
210{
211 /* Set the value for GPIO base address register and enable GPIO.
212 * Note: ICH-ICH5 registers differ from ICH6-ICH9.
213 */
214 if (ich_model <= 0x24D0) {
215 pci_write_config32(dev, GPIO_BASE_ICH0_5, (GPIO_BASE_ADDR | 1));
216 pci_write_config8(dev, GPIO_CNTL_ICH0_5, 0x10);
217 } else if (ich_model >= 0x2640) {
218 pci_write_config32(dev, GPIO_BASE_ICH6_9, (GPIO_BASE_ADDR | 1));
219 pci_write_config8(dev, GPIO_CNTL_ICH6_9, 0x10);
220 }
221}
222
Stefan Reinauer138be832010-02-27 01:50:21 +0000223void i82801bx_rtc_init(struct device *dev)
Joseph Smith68d8a562007-10-30 21:55:11 +0000224{
225 uint8_t reg8;
226 uint32_t reg32;
227 int rtc_failed;
228
229 reg8 = pci_read_config8(dev, GEN_PMCON_3);
230 rtc_failed = reg8 & RTC_BATTERY_DEAD;
231 if (rtc_failed) {
232 reg8 &= ~(1 << 1); /* Preserve the power fail state. */
233 pci_write_config8(dev, GEN_PMCON_3, reg8);
234 }
235 reg32 = pci_read_config32(dev, GEN_STS);
236 rtc_failed |= reg32 & (1 << 2);
237 rtc_init(rtc_failed);
238
239 /* Enable access to the upper 128 byte bank of CMOS RAM. */
240 pci_write_config8(dev, RTC_CONF, 0x04);
241}
242
Stefan Reinauer138be832010-02-27 01:50:21 +0000243void i82801bx_lpc_route_dma(struct device *dev, uint8_t mask)
Corey Osgoode99bd102007-06-14 06:10:57 +0000244{
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000245 uint16_t reg16;
246 int i;
247
248 reg16 = pci_read_config16(dev, PCI_DMA_CFG);
249 reg16 &= 0x300;
250 for (i = 0; i < 8; i++) {
251 if (i == 4)
252 continue;
253 reg16 |= ((mask & (1 << i)) ? 3 : 1) << (i * 2);
254 }
255 pci_write_config16(dev, PCI_DMA_CFG, reg16);
Corey Osgoode99bd102007-06-14 06:10:57 +0000256}
257
Stefan Reinauer138be832010-02-27 01:50:21 +0000258static void i82801bx_lpc_decode_en(device_t dev, uint16_t ich_model)
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000259{
Joseph Smith68d8a562007-10-30 21:55:11 +0000260 /* Decode 0x3F8-0x3FF (COM1) for COMA port, 0x2F8-0x2FF (COM2) for COMB.
261 * LPT decode defaults to 0x378-0x37F and 0x778-0x77F.
262 * Floppy decode defaults to 0x3F0-0x3F5, 0x3F7.
263 * We also need to set the value for LPC I/F Enables Register.
264 * Note: ICH-ICH5 registers differ from ICH6-ICH9.
265 */
266 if (ich_model <= 0x24D0) {
267 pci_write_config8(dev, COM_DEC, 0x10);
268 pci_write_config16(dev, LPC_EN_ICH0_5, 0x300F);
269 } else if (ich_model >= 0x2640) {
270 pci_write_config8(dev, LPC_IO_DEC, 0x10);
271 pci_write_config16(dev, LPC_EN_ICH6_9, 0x300F);
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000272 }
Corey Osgoode99bd102007-06-14 06:10:57 +0000273}
274
Corey Osgoode99bd102007-06-14 06:10:57 +0000275static void lpc_init(struct device *dev)
276{
Joseph Smith68d8a562007-10-30 21:55:11 +0000277 uint16_t ich_model = pci_read_config16(dev, PCI_DEVICE_ID);
Corey Osgoode99bd102007-06-14 06:10:57 +0000278
Joseph Smith68d8a562007-10-30 21:55:11 +0000279 /* Set the value for PCI command register. */
280 pci_write_config16(dev, PCI_COMMAND, 0x000f);
281
282 /* IO APIC initialization. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000283 i82801bx_enable_apic(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000284
Stefan Reinauer138be832010-02-27 01:50:21 +0000285 i82801bx_enable_serial_irqs(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000286
Joseph Smith68d8a562007-10-30 21:55:11 +0000287 /* Setup the PIRQ. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000288 i82801bx_pirq_init(dev, ich_model);
Corey Osgoode99bd102007-06-14 06:10:57 +0000289
Joseph Smith68d8a562007-10-30 21:55:11 +0000290 /* Setup power options. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000291 i82801bx_power_options(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000292
Joseph Smith68d8a562007-10-30 21:55:11 +0000293 /* Set the state of the GPIO lines. */
294 gpio_init(dev, ich_model);
Corey Osgoode99bd102007-06-14 06:10:57 +0000295
Joseph Smith68d8a562007-10-30 21:55:11 +0000296 /* Initialize the real time clock. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000297 i82801bx_rtc_init(dev);
Corey Osgoode99bd102007-06-14 06:10:57 +0000298
Joseph Smith68d8a562007-10-30 21:55:11 +0000299 /* Route DMA. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000300 i82801bx_lpc_route_dma(dev, 0xff);
Corey Osgoode99bd102007-06-14 06:10:57 +0000301
Joseph Smith68d8a562007-10-30 21:55:11 +0000302 /* Initialize ISA DMA. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000303 isa_dma_init();
304
Joseph Smith68d8a562007-10-30 21:55:11 +0000305 /* Setup decode ports and LPC I/F enables. */
Stefan Reinauer138be832010-02-27 01:50:21 +0000306 i82801bx_lpc_decode_en(dev, ich_model);
Corey Osgoode99bd102007-06-14 06:10:57 +0000307}
308
Stefan Reinauer138be832010-02-27 01:50:21 +0000309static void i82801bx_lpc_read_resources(device_t dev)
Corey Osgoode99bd102007-06-14 06:10:57 +0000310{
311 struct resource *res;
312
Joseph Smith68d8a562007-10-30 21:55:11 +0000313 /* Get the normal PCI resources of this device. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000314 pci_dev_read_resources(dev);
315
Joseph Smith68d8a562007-10-30 21:55:11 +0000316 /* Add an extra subtractive resource for both memory and I/O. */
Corey Osgoode99bd102007-06-14 06:10:57 +0000317 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000318 res->base = 0;
319 res->size = 0x1000;
320 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
321 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Corey Osgoode99bd102007-06-14 06:10:57 +0000322
323 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Myles Watson29cc9ed2009-07-02 18:56:24 +0000324 res->base = 0xff800000;
325 res->size = 0x00800000; /* 8 MB for flash */
326 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
327 IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
328
329 res = new_resource(dev, 3); /* IOAPIC */
330 res->base = 0xfec00000;
331 res->size = 0x00001000;
332 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Corey Osgoode99bd102007-06-14 06:10:57 +0000333}
334
Stefan Reinauer138be832010-02-27 01:50:21 +0000335static void i82801bx_lpc_enable_resources(device_t dev)
Corey Osgoode99bd102007-06-14 06:10:57 +0000336{
337 pci_dev_enable_resources(dev);
338 enable_childrens_resources(dev);
339}
340
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000341static struct device_operations lpc_ops = {
Stefan Reinauer138be832010-02-27 01:50:21 +0000342 .read_resources = i82801bx_lpc_read_resources,
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000343 .set_resources = pci_dev_set_resources,
Stefan Reinauer138be832010-02-27 01:50:21 +0000344 .enable_resources = i82801bx_lpc_enable_resources,
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000345 .init = lpc_init,
346 .scan_bus = scan_static_bus,
Stefan Reinauer138be832010-02-27 01:50:21 +0000347 .enable = i82801bx_enable,
Corey Osgoode99bd102007-06-14 06:10:57 +0000348};
349
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000350static const struct pci_driver i82801aa_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000351 .ops = &lpc_ops,
352 .vendor = PCI_VENDOR_ID_INTEL,
353 .device = 0x2410,
Corey Osgoode99bd102007-06-14 06:10:57 +0000354};
355
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000356static const struct pci_driver i82801ab_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000357 .ops = &lpc_ops,
358 .vendor = PCI_VENDOR_ID_INTEL,
359 .device = 0x2420,
Corey Osgoode99bd102007-06-14 06:10:57 +0000360};
361
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000362static const struct pci_driver i82801ba_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000363 .ops = &lpc_ops,
364 .vendor = PCI_VENDOR_ID_INTEL,
365 .device = 0x2440,
Corey Osgoode99bd102007-06-14 06:10:57 +0000366};
367
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000368static const struct pci_driver i82801ca_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000369 .ops = &lpc_ops,
370 .vendor = PCI_VENDOR_ID_INTEL,
371 .device = 0x2480,
Corey Osgoode99bd102007-06-14 06:10:57 +0000372};
373
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000374static const struct pci_driver i82801db_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000375 .ops = &lpc_ops,
376 .vendor = PCI_VENDOR_ID_INTEL,
377 .device = 0x24c0,
Corey Osgoode99bd102007-06-14 06:10:57 +0000378};
379
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000380static const struct pci_driver i82801dbm_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000381 .ops = &lpc_ops,
382 .vendor = PCI_VENDOR_ID_INTEL,
383 .device = 0x24cc,
Corey Osgoode99bd102007-06-14 06:10:57 +0000384};
385
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000386/* 82801EB and 82801ER */
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +0000387static const struct pci_driver i82801ex_lpc __pci_driver = {
Uwe Hermanndfb3c132007-06-19 22:47:11 +0000388 .ops = &lpc_ops,
389 .vendor = PCI_VENDOR_ID_INTEL,
390 .device = 0x24d0,
Corey Osgoode99bd102007-06-14 06:10:57 +0000391};