Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / southbridge / intel / i82801ax / i82801ax_lpc.c
1 /*
2  * This file is part of the coreboot project.
3  *
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  */
23
24 /* From 82801DBM, needs to be fixed to support everything the 82801ER does. */
25
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>
33 #include "i82801ax.h"
34
35 #define GPIO_BASE_ADDR  0x00000500 /* GPIO Base Address Register */
36
37 #define NMI_OFF 0
38
39 typedef struct southbridge_intel_i82801ax_config config_t;
40
41 /* 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
63 #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
71 /*
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 */
76
77 static void i82801ax_enable_apic(struct device *dev)
78 {
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
83         /* 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
89         reg32 = pci_read_config32(dev, GEN_CNTL);
90         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 */
94         pci_write_config32(dev, GEN_CNTL, reg32);
95         printk(BIOS_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(BIOS_DEBUG, "Southbridge APIC ID = %x\n", reg32);
103         if (reg32 != (1 << 25))
104                 die("APIC Error\n");
105
106         /* TODO: From i82801ca, needed/useful on other ICH? */
107         *ioapic_index = 3; /* Select Boot Configuration register. */
108         *ioapic_data = 1; /* Use Processor System Bus to deliver interrupts. */
109 }
110
111 static void i82801ax_enable_serial_irqs(struct device *dev)
112 {
113         /* 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. */
119 }
120
121 static void i82801ax_pirq_init(device_t dev, uint16_t ich_model)
122 {
123         /* 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         }
149
150         /* Route PIRQE - PIRQH (for ICH2-ICH9). */
151         if (ich_model >= 0x2440) {
152
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                 }
176         }
177 }
178
179 static void i82801ax_power_options(device_t dev)
180 {
181         uint8_t byte;
182         int pwr_on = -1;
183         int nmi_option;
184
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(BIOS_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;
202         get_option(&nmi_option, "nmi");
203         if (nmi_option) {
204                 byte &= ~(1 << 7);      /* Set NMI. */
205                 outb(byte, 0x70);
206         }
207 }
208
209 static 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
223 static void i82801ax_rtc_init(struct device *dev)
224 {
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
243 static void i82801ax_lpc_route_dma(struct device *dev, uint8_t mask)
244 {
245         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);
256 }
257
258 static void i82801ax_lpc_decode_en(device_t dev, uint16_t ich_model)
259 {
260         /* 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);
272         }
273 }
274
275 static void lpc_init(struct device *dev)
276 {
277         uint16_t ich_model = pci_read_config16(dev, PCI_DEVICE_ID);
278
279         /* Set the value for PCI command register. */
280         pci_write_config16(dev, PCI_COMMAND, 0x000f);
281
282         /* IO APIC initialization. */
283         i82801ax_enable_apic(dev);
284
285         i82801ax_enable_serial_irqs(dev);
286
287         /* Setup the PIRQ. */
288         i82801ax_pirq_init(dev, ich_model);
289
290         /* Setup power options. */
291         i82801ax_power_options(dev);
292
293         /* Set the state of the GPIO lines. */
294         gpio_init(dev, ich_model);
295
296         /* Initialize the real time clock. */
297         i82801ax_rtc_init(dev);
298
299         /* Route DMA. */
300         i82801ax_lpc_route_dma(dev, 0xff);
301
302         /* Initialize ISA DMA. */
303         isa_dma_init();
304
305         /* Setup decode ports and LPC I/F enables. */
306         i82801ax_lpc_decode_en(dev, ich_model);
307 }
308
309 static void i82801ax_lpc_read_resources(device_t dev)
310 {
311         struct resource *res;
312
313         /* Get the normal PCI resources of this device. */
314         pci_dev_read_resources(dev);
315
316         /* Add an extra subtractive resource for both memory and I/O. */
317         res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
318         res->base = 0;
319         res->size = 0x1000;
320         res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
321                      IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
322
323         res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
324         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;
333 }
334
335 static void i82801ax_lpc_enable_resources(device_t dev)
336 {
337         pci_dev_enable_resources(dev);
338         enable_childrens_resources(dev);
339 }
340
341 static struct device_operations lpc_ops = {
342         .read_resources         = i82801ax_lpc_read_resources,
343         .set_resources          = pci_dev_set_resources,
344         .enable_resources       = i82801ax_lpc_enable_resources,
345         .init                   = lpc_init,
346         .scan_bus               = scan_static_bus,
347         .enable                 = i82801ax_enable,
348 };
349
350 static const struct pci_driver i82801aa_lpc __pci_driver = {
351         .ops    = &lpc_ops,
352         .vendor = PCI_VENDOR_ID_INTEL,
353         .device = 0x2410,
354 };
355
356 static const struct pci_driver i82801ab_lpc __pci_driver = {
357         .ops    = &lpc_ops,
358         .vendor = PCI_VENDOR_ID_INTEL,
359         .device = 0x2420,
360 };
361
362 static const struct pci_driver i82801ba_lpc __pci_driver = {
363         .ops    = &lpc_ops,
364         .vendor = PCI_VENDOR_ID_INTEL,
365         .device = 0x2440,
366 };
367
368 static const struct pci_driver i82801ca_lpc __pci_driver = {
369         .ops    = &lpc_ops,
370         .vendor = PCI_VENDOR_ID_INTEL,
371         .device = 0x2480,
372 };
373
374 static const struct pci_driver i82801db_lpc __pci_driver = {
375         .ops    = &lpc_ops,
376         .vendor = PCI_VENDOR_ID_INTEL,
377         .device = 0x24c0,
378 };
379
380 static const struct pci_driver i82801dbm_lpc __pci_driver = {
381         .ops    = &lpc_ops,
382         .vendor = PCI_VENDOR_ID_INTEL,
383         .device = 0x24cc,
384 };
385
386 /* 82801EB and 82801ER */
387 static const struct pci_driver i82801ex_lpc __pci_driver = {
388         .ops    = &lpc_ops,
389         .vendor = PCI_VENDOR_ID_INTEL,
390         .device = 0x24d0,
391 };