We define IO_APIC_ADDR in <arch/ioapic.h>, let's use it.
[coreboot.git] / src / southbridge / amd / cs5530 / cs5530_isa.c
1 /*
2  * This file is part of the coreboot project.
3  *
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 <console/console.h>
22 #include <arch/io.h>
23 #include <arch/ioapic.h>
24 #include <device/device.h>
25 #include <device/pci.h>
26 #include <device/pci_ids.h>
27 #include "cs5530.h"
28
29 static void cs5530_read_resources(device_t dev)
30 {
31         struct resource* res;
32
33         pci_dev_read_resources(dev);
34
35         res = new_resource(dev, 1);
36         res->base = 0x0UL;
37         res->size = 0x1000UL;
38         res->limit = 0xffffUL;
39         res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
40
41         res = new_resource(dev, 3); /* IOAPIC */
42         res->base = IO_APIC_ADDR;
43         res->size = 0x00001000;
44         res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
45 }
46
47 static void isa_init(struct device *dev)
48 {
49 }
50
51 static struct device_operations isa_ops = {
52         .read_resources         = cs5530_read_resources,
53         .set_resources          = pci_dev_set_resources,
54         .enable_resources       = pci_dev_enable_resources,
55         .init                   = isa_init,
56         .enable                 = 0,
57         .scan_bus               = scan_static_bus,
58 };
59
60 static const struct pci_driver isa_driver __pci_driver = {
61         .ops    = &isa_ops,
62         .vendor = PCI_VENDOR_ID_CYRIX,
63         .device = PCI_DEVICE_ID_CYRIX_5530_LEGACY,
64 };