aec7afa06c0f099bcc43f407613aeb4b235adfe1
[coreboot.git] / src / southbridge / amd / cs5530 / cs5530_isa.c
1 /*
2  * This file is part of the LinuxBIOS 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 isa_init(struct device *dev)
29 {
30         uint8_t reg8;
31
32         // TODO: Test if needed, otherwise drop.
33
34         /* Set positive decode on ROM. */
35         reg8 = pci_read_config8(dev, DECODE_CONTROL_REG2);
36         reg8 |= BIOS_ROM_POSITIVE_DECODE;
37         pci_write_config8(dev, DECODE_CONTROL_REG2, reg8);
38 }
39
40 static void cs5530_pci_dev_enable_resources(device_t dev)
41 {
42         // TODO: Needed?
43         pci_dev_enable_resources(dev);
44         enable_childrens_resources(dev);
45 }
46
47 static struct device_operations isa_ops = {
48         .read_resources         = pci_dev_read_resources,
49         .set_resources          = pci_dev_set_resources,
50         .enable_resources       = cs5530_pci_dev_enable_resources,
51         .init                   = isa_init,
52         .enable                 = 0,
53         .scan_bus               = scan_static_bus,
54 };
55
56 static const struct pci_driver isa_driver __pci_driver = {
57         .ops    = &isa_ops,
58         .vendor = PCI_VENDOR_ID_CYRIX,
59         .device = PCI_DEVICE_ID_CYRIX_5530_LEGACY,
60 };