1cf2976327ec130f0571cef44f001558f998e0fd
[coreboot.git] / src / southbridge / via / vt8237r / vt8237r_sata.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
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 v2 as published by
8  * the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <console/console.h>
21 #include <device/device.h>
22 #include <device/pci.h>
23 #include <device/pci_ids.h>
24
25 #define SATA_MISC_CTRL 0x45
26
27 static void sata_init(struct device *dev)
28 {
29         u8 reg;
30
31         printk_debug("Configuring VIA SATA controller\n");
32
33         /* Class IDE Disk */
34         reg = pci_read_config8(dev, SATA_MISC_CTRL);
35         reg &= 0x7f;            /* Sub Class Write Protect off */
36         pci_write_config8(dev, SATA_MISC_CTRL, reg);
37
38         /* Change the device class to SATA from RAID. */
39         pci_write_config8(dev, PCI_CLASS_DEVICE, 0x1);
40         reg |= 0x80;            /* Sub Class Write Protect on */
41         pci_write_config8(dev, SATA_MISC_CTRL, reg);
42 }
43
44 static const struct device_operations sata_ops = {
45         .read_resources         = pci_dev_read_resources,
46         .set_resources          = pci_dev_set_resources,
47         .enable_resources       = pci_dev_enable_resources,
48         .init                   = sata_init,
49         .enable                 = 0,
50         .ops_pci                = 0,
51 };
52
53 static const struct pci_driver northbridge_driver __pci_driver = {
54         .ops    = &sata_ops,
55         .vendor = PCI_VENDOR_ID_VIA,
56         .device = PCI_DEVICE_ID_VIA_VT6420_SATA,
57 };