Various license header consistency fixes (trivial).
[coreboot.git] / src / southbridge / via / vt8237r / vt8237r_sata.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007, 2008 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 as published by
8  * the Free Software Foundation; version 2 of the License.
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_i_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         return;
44 }
45
46 static void sata_ii_init(struct device *dev)
47 {
48         u8 reg;
49
50         sata_i_init(dev);
51
52         /*
53          * Analog black magic, you may or may not need to adjust 0x60-0x6f,
54          * depends on PCB.
55          */
56
57         /*
58          * Analog PHY - gen1
59          * CDR bandwidth [6:5] = 3
60          * Squelch Window Select [4:3] = 1
61          * CDR Charge Pump [2:0] = 1
62          */
63
64         pci_write_config8(dev, 0x64, 0x49);
65
66         /* Adjust driver current source value to 9. */
67         reg = pci_read_config8(dev, 0x65);
68         reg &= 0xf0;
69         reg |= 0x9;
70         pci_write_config8(dev, 0x65, reg);
71
72         /* Set all manual termination 50ohm bits [2:0] and enable [4]. */
73         reg = pci_read_config8(dev, 0x6a);
74         reg |= 0xf;
75         pci_write_config8(dev, 0x6a, reg);
76
77         /*
78          * Analog PHY - gen2
79          * CDR bandwidth [5:4] = 2
80          * Pre / De-emphasis Level [7:6] controls bits [3:2], rest in 0x6e
81          * CDR Charge Pump [2:0] = 1
82          */
83
84         reg = pci_read_config8(dev, 0x6f);
85         reg &= 0x08;
86         reg |= 0x61;
87         pci_write_config8(dev, 0x6f, reg);
88
89         /* Check if staggered spinup is supported. */
90         reg = pci_read_config8(dev, 0x83);
91         if ((reg & 0x8) == 0) {
92                 /* Start OOB sequence on both drives. */
93                 reg |= 0x30;
94                 pci_write_config8(dev, 0x83, reg);
95         }
96 }
97
98 static const struct device_operations sata_i_ops = {
99         .read_resources         = pci_dev_read_resources,
100         .set_resources          = pci_dev_set_resources,
101         .enable_resources       = pci_dev_enable_resources,
102         .init                   = sata_i_init,
103         .enable                 = 0,
104         .ops_pci                = 0,
105 };
106
107 static const struct device_operations sata_ii_ops = {
108         .read_resources         = pci_dev_read_resources,
109         .set_resources          = pci_dev_set_resources,
110         .enable_resources       = pci_dev_enable_resources,
111         .init                   = sata_ii_init,
112         .enable                 = 0,
113         .ops_pci                = 0,
114 };
115
116 static const struct pci_driver northbridge_driver_ii __pci_driver = {
117         .ops    = &sata_ii_ops,
118         .vendor = PCI_VENDOR_ID_VIA,
119         .device = PCI_DEVICE_ID_VIA_VT8237_SATA,
120 };
121
122 static const struct pci_driver northbridge_driver_i __pci_driver = {
123         .ops    = &sata_i_ops,
124         .vendor = PCI_VENDOR_ID_VIA,
125         .device = PCI_DEVICE_ID_VIA_VT6420_SATA,
126 };