c7e8f43f751a4f2c32f2acf23746f511f45e7aae
[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 <device/device.h>
24 #include <device/pci.h>
25 #include <device/pci_ids.h>
26 #include "cs5530.h"
27
28 static void cs5530_read_resources(device_t dev)
29 {
30         struct resource* res;
31
32         pci_dev_read_resources(dev);
33
34         res = new_resource(dev, 1);
35         res->base = 0x0UL;
36         res->size = 0x1000UL;
37         res->limit = 0xffffUL;
38         res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
39
40         res = new_resource(dev, 3); /* IOAPIC */
41         res->base = 0xfec00000;
42         res->size = 0x00001000;
43         res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
44 }
45
46 static void isa_init(struct device *dev)
47 {
48 }
49
50 static struct device_operations isa_ops = {
51         .read_resources         = cs5530_read_resources,
52         .set_resources          = pci_dev_set_resources,
53         .enable_resources       = pci_dev_enable_resources,
54         .init                   = isa_init,
55         .enable                 = 0,
56         .scan_bus               = scan_static_bus,
57 };
58
59 static const struct pci_driver isa_driver __pci_driver = {
60         .ops    = &isa_ops,
61         .vendor = PCI_VENDOR_ID_CYRIX,
62         .device = PCI_DEVICE_ID_CYRIX_5530_LEGACY,
63 };