9d287b2b9b8f5406a07f5f326b024d217edced43
[coreboot.git] / src / southbridge / intel / i82801bx / i82801bx_ide.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2005 Tyan Computer
5  * (Written by Yinghai Lu <yinghailu@gmail.com> for Tyan Computer)
6  * Copyright (C) 2005 Digital Design Corporation
7  * (Written by Steven J. Magnani <steve@digidescorp.com> for Digital Design)
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 #include <console/console.h>
25 #include <device/device.h>
26 #include <device/pci.h>
27 #include <device/pci_ids.h>
28 #include "i82801bx.h"
29
30 typedef struct southbridge_intel_i82801bx_config config_t;
31
32 static void ide_init(struct device *dev)
33 {
34         /* Get the chip configuration */
35         config_t *config = dev->chip_info;
36
37         /* TODO: Needs to be tested for compatibility with ICH5(R). */
38         /* Enable IDE devices so the Linux IDE driver will work. */
39         uint16_t ideTimingConfig;
40
41         ideTimingConfig = pci_read_config16(dev, IDE_TIM_PRI);
42         ideTimingConfig &= ~IDE_DECODE_ENABLE;
43         if (!config || config->ide0_enable) {
44                 /* Enable primary IDE interface. */
45                 ideTimingConfig |= IDE_DECODE_ENABLE;
46                 printk(BIOS_DEBUG, "IDE0: Primary IDE interface is enabled\n");
47         } else {
48                 printk(BIOS_INFO, "IDE0: Primary IDE interface is disabled\n");
49         }
50         pci_write_config16(dev, IDE_TIM_PRI, ideTimingConfig);
51
52         ideTimingConfig = pci_read_config16(dev, IDE_TIM_SEC);
53         ideTimingConfig &= ~IDE_DECODE_ENABLE;
54         if (!config || config->ide1_enable) {
55                 /* Enable secondary IDE interface. */
56                 ideTimingConfig |= IDE_DECODE_ENABLE;
57                 printk(BIOS_DEBUG, "IDE1: Secondary IDE interface is enabled\n");
58         } else {
59                 printk(BIOS_INFO, "IDE1: Secondary IDE interface is disabled\n");
60         }
61         pci_write_config16(dev, IDE_TIM_SEC, ideTimingConfig);
62 }
63
64 static struct device_operations ide_ops = {
65         .read_resources         = pci_dev_read_resources,
66         .set_resources          = pci_dev_set_resources,
67         .enable_resources       = pci_dev_enable_resources,
68         .init                   = ide_init,
69         .scan_bus               = 0,
70         .enable                 = i82801bx_enable,
71 };
72
73 /* 82801AA */
74 static const struct pci_driver i82801aa_ide __pci_driver = {
75         .ops    = &ide_ops,
76         .vendor = PCI_VENDOR_ID_INTEL,
77         .device = 0x2411,
78 };
79
80 /* 82801AB */
81 static const struct pci_driver i82801ab_ide __pci_driver = {
82         .ops    = &ide_ops,
83         .vendor = PCI_VENDOR_ID_INTEL,
84         .device = 0x2421,
85 };
86
87 /* 82801BA */
88 static const struct pci_driver i82801ba_ide __pci_driver = {
89         .ops    = &ide_ops,
90         .vendor = PCI_VENDOR_ID_INTEL,
91         .device = 0x244b,
92 };
93
94 /* 82801CA */
95 static const struct pci_driver i82801ca_ide __pci_driver = {
96         .ops    = &ide_ops,
97         .vendor = PCI_VENDOR_ID_INTEL,
98         .device = 0x248b,
99 };
100
101 /* 82801DB */
102 static const struct pci_driver i82801db_ide __pci_driver = {
103         .ops    = &ide_ops,
104         .vendor = PCI_VENDOR_ID_INTEL,
105         .device = 0x24cb,
106 };
107
108 /* 82801DBM */
109 static const struct pci_driver i82801dbm_ide __pci_driver = {
110         .ops    = &ide_ops,
111         .vendor = PCI_VENDOR_ID_INTEL,
112         .device = 0x24ca,
113 };
114
115 /* 82801EB & 82801ER */
116 static const struct pci_driver i82801ex_ide __pci_driver = {
117         .ops    = &ide_ops,
118         .vendor = PCI_VENDOR_ID_INTEL,
119         .device = 0x24db,
120 };