blob: d025bf2393b20dc03459b4c1b0340ac94671ad1d [file] [log] [blame]
Uwe Hermann9da69f82007-11-30 02:08:26 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermann9da69f82007-11-30 02:08:26 +00003 *
4 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdint.h>
22#include <console/console.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <pc80/isa-dma.h>
27#include <pc80/mc146818rtc.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000028#include <arch/ioapic.h>
Uwe Hermann9da69f82007-11-30 02:08:26 +000029#include "i82371eb.h"
30
Uwe Hermannb34ff662010-10-28 14:22:20 +000031#if CONFIG_IOAPIC
Uwe Hermann77180542010-10-28 08:19:22 +000032static void enable_intel_82093aa_ioapic(void)
33{
34 u16 reg16;
35 u32 reg32;
36 u8 ioapic_id = 2;
37 volatile u32 *ioapic_index = (volatile u32 *)(IO_APIC_ADDR);
38 volatile u32 *ioapic_data = (volatile u32 *)(IO_APIC_ADDR + 0x10);
39 device_t dev;
40
41 dev = dev_find_device(PCI_VENDOR_ID_INTEL,
42 PCI_DEVICE_ID_INTEL_82371AB_ISA, 0);
43
44 /* Enable IOAPIC. */
45 reg16 = pci_read_config16(dev, XBCS);
46 reg16 |= (1 << 8); /* APIC Chip Select */
47 pci_write_config16(dev, XBCS, reg16);
48
49 /* Set the IOAPIC ID. */
50 *ioapic_index = 0;
51 *ioapic_data = ioapic_id << 24;
52
53 /* Read back and verify the IOAPIC ID. */
54 *ioapic_index = 0;
55 reg32 = (*ioapic_data >> 24) & 0x0f;
56 printk(BIOS_DEBUG, "IOAPIC ID = %x\n", reg32);
57 if (reg32 != ioapic_id)
58 die("IOAPIC error!\n");
59}
Uwe Hermannb34ff662010-10-28 14:22:20 +000060#endif
Uwe Hermann77180542010-10-28 08:19:22 +000061
Uwe Hermann9da69f82007-11-30 02:08:26 +000062static void isa_init(struct device *dev)
63{
Uwe Hermann9da69f82007-11-30 02:08:26 +000064 u32 reg32;
65
66 /* Initialize the real time clock (RTC). */
67 rtc_init(0);
68
Uwe Hermann9da69f82007-11-30 02:08:26 +000069 /*
Tobias Diedriche87c38e2010-11-27 09:40:16 +000070 * Enable special cycles, needed for soft poweroff.
71 */
72 reg32 = pci_read_config16(dev, PCI_COMMAND);
73 reg32 |= PCI_COMMAND_SPECIAL;
74 pci_write_config16(dev, PCI_COMMAND, reg32);
75
76 /*
Uwe Hermann9da69f82007-11-30 02:08:26 +000077 * The PIIX4 can support the full ISA bus, or the Extended I/O (EIO)
78 * bus, which is a subset of ISA. We select the full ISA bus here.
79 */
80 reg32 = pci_read_config32(dev, GENCFG);
81 reg32 |= ISA; /* Select ISA, not EIO. */
82 pci_write_config16(dev, GENCFG, reg32);
83
84 /* Initialize ISA DMA. */
85 isa_dma_init();
Uwe Hermann77180542010-10-28 08:19:22 +000086
87#if CONFIG_IOAPIC
88 /*
89 * Unlike most other southbridges the 82371EB doesn't have a built-in
90 * IOAPIC. Instead, 82371EB-based boards that support multiple CPUs
91 * have a discrete IOAPIC (Intel 82093AA) soldered onto the board.
92 *
93 * Thus, we can/must only enable the IOAPIC if it actually exists,
94 * i.e. the respective mainboard does "select IOAPIC".
95 */
96 enable_intel_82093aa_ioapic();
97#endif
Uwe Hermann9da69f82007-11-30 02:08:26 +000098}
99
Myles Watson29cc9ed2009-07-02 18:56:24 +0000100static void sb_read_resources(struct device *dev)
101{
102 struct resource *res;
103
104 pci_dev_read_resources(dev);
105
106 res = new_resource(dev, 1);
107 res->base = 0x0UL;
108 res->size = 0x1000UL;
109 res->limit = 0xffffUL;
110 res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
111
112 res = new_resource(dev, 2);
113 res->base = 0xff800000UL;
114 res->size = 0x00800000UL; /* 8 MB for flash */
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000115 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
116 IORESOURCE_RESERVE;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000117
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000118#if CONFIG_IOAPIC
Myles Watson29cc9ed2009-07-02 18:56:24 +0000119 res = new_resource(dev, 3); /* IOAPIC */
Uwe Hermann74d1a6e2010-10-12 17:34:08 +0000120 res->base = IO_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000121 res->size = 0x00001000;
Tobias Diedriche87c38e2010-11-27 09:40:16 +0000122 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED |
123 IORESOURCE_RESERVE;
124#endif
Myles Watson29cc9ed2009-07-02 18:56:24 +0000125}
126
Uwe Hermann312673c2009-10-27 21:49:33 +0000127static const struct device_operations isa_ops = {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000128 .read_resources = sb_read_resources,
Uwe Hermann9da69f82007-11-30 02:08:26 +0000129 .set_resources = pci_dev_set_resources,
130 .enable_resources = pci_dev_enable_resources,
131 .init = isa_init,
132 .scan_bus = scan_static_bus, /* TODO: Needed? */
133 .enable = 0,
134 .ops_pci = 0, /* No subsystem IDs on 82371EB! */
135};
136
137static const struct pci_driver isa_driver __pci_driver = {
138 .ops = &isa_ops,
139 .vendor = PCI_VENDOR_ID_INTEL,
140 .device = PCI_DEVICE_ID_INTEL_82371AB_ISA,
141};
Myles Watson0520d552009-05-11 22:44:14 +0000142
143static const struct pci_driver isa_SB_driver __pci_driver = {
144 .ops = &isa_ops,
145 .vendor = PCI_VENDOR_ID_INTEL,
146 .device = PCI_DEVICE_ID_INTEL_82371SB_ISA,
147};