blob: 29f878dec326fa8924117d8c244a100241209b05 [file] [log] [blame]
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer54309d62009-01-20 22:53:10 +00004 * Copyright (C) 2008-2009 coresystems GmbH
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00005 *
Stefan Reinauera8e11682009-03-11 14:54:18 +00006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000010 *
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.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000015 */
16
17#include <console/console.h>
18#include <device/device.h>
19#include <device/pci.h>
20#include <device/pci_ids.h>
21#include "i82801gx.h"
22
23typedef struct southbridge_intel_i82801gx_config config_t;
24
25static void sata_init(struct device *dev)
26{
27 u32 reg32;
Stefan Reinauera8e11682009-03-11 14:54:18 +000028 u16 reg16;
Sven Schnelleb2f173e2011-10-27 13:05:40 +020029 u32 *ahci_bar;
30
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000031 /* Get the chip configuration */
32 config_t *config = dev->chip_info;
33
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000034 printk(BIOS_DEBUG, "i82801gx_sata: initializing...\n");
Stefan Reinauera8e11682009-03-11 14:54:18 +000035
Stefan Reinauer573f7d42009-07-21 21:50:34 +000036 if (config == NULL) {
Uwe Hermann607614d2010-11-18 20:12:13 +000037 printk(BIOS_ERR, "i82801gx_sata: error: device not in devicetree.cb!\n");
Stefan Reinauer573f7d42009-07-21 21:50:34 +000038 return;
39 }
Stefan Reinauera8e11682009-03-11 14:54:18 +000040
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000041 /* SATA configuration */
42
43 /* Enable BARs */
Stefan Reinauera8e11682009-03-11 14:54:18 +000044 pci_write_config16(dev, PCI_COMMAND, 0x0007);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000045
46 if (config->ide_legacy_combined) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000047 printk(BIOS_DEBUG, "SATA controller in combined mode.\n");
Stefan Reinauera8e11682009-03-11 14:54:18 +000048 /* No AHCI: clear AHCI base */
49 pci_write_config32(dev, 0x24, 0x00000000);
50 /* And without AHCI BAR no memory decoding */
51 reg16 = pci_read_config16(dev, PCI_COMMAND);
52 reg16 &= ~PCI_COMMAND_MEMORY;
53 pci_write_config16(dev, PCI_COMMAND, reg16);
54
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000055 pci_write_config8(dev, 0x09, 0x80);
56
57 /* Set timings */
Stefan Reinauer573f7d42009-07-21 21:50:34 +000058 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
59 IDE_ISP_5_CLOCKS | IDE_RCT_4_CLOCKS);
60 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
61 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
62 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000063
64 /* Sync DMA */
Stefan Reinauer573f7d42009-07-21 21:50:34 +000065 pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0);
66 pci_write_config16(dev, IDE_SDMA_TIM, 0x0200);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000067
Stefan Reinauera8e11682009-03-11 14:54:18 +000068 /* Set IDE I/O Configuration */
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000069 reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
Stefan Reinauera8e11682009-03-11 14:54:18 +000070 pci_write_config32(dev, IDE_CONFIG, reg32);
71
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000072 /* Combine IDE - SATA configuration */
73 pci_write_config8(dev, 0x90, 0x02);
74
75 /* Port 0 & 1 enable */
76 pci_write_config8(dev, 0x92, 0x0f);
77
78 /* SATA Initialization register */
Stefan Reinauera8e11682009-03-11 14:54:18 +000079 pci_write_config32(dev, 0x94, 0x5a000180);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000080 } else if(config->sata_ahci) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000081 printk(BIOS_DEBUG, "SATA controller in AHCI mode.\n");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000082 /* Allow both Legacy and Native mode */
83 pci_write_config8(dev, 0x09, 0x8f);
84
85 /* Set Interrupt Line */
86 /* Interrupt Pin is set by D31IP.PIP */
87 pci_write_config8(dev, INTR_LN, 0x0a);
88
89 /* Set timings */
Stefan Reinauer573f7d42009-07-21 21:50:34 +000090 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
91 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
92 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
93 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
94 IDE_ISP_5_CLOCKS | IDE_RCT_4_CLOCKS);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000095
96 /* Sync DMA */
Stefan Reinauer573f7d42009-07-21 21:50:34 +000097 pci_write_config16(dev, IDE_SDMA_CNT, IDE_PSDE0);
98 pci_write_config16(dev, IDE_SDMA_TIM, 0x0001);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000099
100 /* Set IDE I/O Configuration */
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000101 reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000102 pci_write_config32(dev, IDE_CONFIG, reg32);
103
104 /* Set Sata Controller Mode. */
Bernhard M. Wiedermann67693962010-04-22 22:47:29 +0000105 pci_write_config8(dev, 0x90, 0x40); // 40=AHCI
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000106
Sven Schnelleb2f173e2011-10-27 13:05:40 +0200107 /* In ACHI mode, bit[3:0] must always be set
108 * (Port status is controlled through AHCI BAR)
109 */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000110 pci_write_config8(dev, 0x92, 0x0f);
111
Sven Schnelleb2f173e2011-10-27 13:05:40 +0200112 ahci_bar = (u32 *)(pci_read_config32(dev, 0x27) & ~0x3ff);
113 ahci_bar[3] = config->sata_ports_implemented;
114
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000115 /* SATA Initialization register */
116 pci_write_config32(dev, 0x94, 0x1a000180);
117 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000118 printk(BIOS_DEBUG, "SATA controller in plain mode.\n");
Stefan Reinauera8e11682009-03-11 14:54:18 +0000119 /* Set Sata Controller Mode. No Mapping(?) */
120 pci_write_config8(dev, 0x90, 0x00);
121
122 /* No AHCI: clear AHCI base */
123 pci_write_config32(dev, 0x24, 0x00000000);
124
125 /* And without AHCI BAR no memory decoding */
126 reg16 = pci_read_config16(dev, PCI_COMMAND);
127 reg16 &= ~PCI_COMMAND_MEMORY;
128 pci_write_config16(dev, PCI_COMMAND, reg16);
129
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000130 /* Native mode capable on both primary and secondary (0xa)
131 * or'ed with enabled (0x50) = 0xf
132 */
133 pci_write_config8(dev, 0x09, 0x8f);
134
135 /* Set Interrupt Line */
136 /* Interrupt Pin is set by D31IP.PIP */
137 pci_write_config8(dev, INTR_LN, 0xff);
Stefan Reinauer109ab312009-08-12 16:08:05 +0000138
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000139 /* Set timings */
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000140 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
141 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
142 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
143 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
Stefan Reinauer109ab312009-08-12 16:08:05 +0000144 IDE_SITRE | IDE_ISP_3_CLOCKS |
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000145 IDE_RCT_1_CLOCKS | IDE_IE0 | IDE_TIME0);
Stefan Reinauer109ab312009-08-12 16:08:05 +0000146
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000147 /* Sync DMA */
Stefan Reinauer573f7d42009-07-21 21:50:34 +0000148 pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0 | IDE_PSDE0);
149 pci_write_config16(dev, IDE_SDMA_TIM, 0x0201);
Stefan Reinauer109ab312009-08-12 16:08:05 +0000150
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000151 /* Set IDE I/O Configuration */
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000152 reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000153 pci_write_config32(dev, IDE_CONFIG, reg32);
Stefan Reinauer109ab312009-08-12 16:08:05 +0000154
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000155 /* Port 0 & 1 enable XXX */
156 pci_write_config8(dev, 0x92, 0x15);
Stefan Reinauer109ab312009-08-12 16:08:05 +0000157
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000158 /* SATA Initialization register */
159 pci_write_config32(dev, 0x94, 0x1a000180);
160 }
161
162 /* All configurations need this SATA initialization sequence */
163 pci_write_config8(dev, 0xa0, 0x40);
164 pci_write_config8(dev, 0xa6, 0x22);
165 pci_write_config8(dev, 0xa0, 0x78);
166 pci_write_config8(dev, 0xa6, 0x22);
167 pci_write_config8(dev, 0xa0, 0x88);
168 reg32 = pci_read_config32(dev, 0xa4);
169 reg32 &= 0xc0c0c0c0;
170 reg32 |= 0x1b1b1212;
171 pci_write_config32(dev, 0xa4, reg32);
172 pci_write_config8(dev, 0xa0, 0x8c);
173 reg32 = pci_read_config32(dev, 0xa4);
174 reg32 &= 0xc0c0ff00;
175 reg32 |= 0x121200aa;
176 pci_write_config32(dev, 0xa4, reg32);
177 pci_write_config8(dev, 0xa0, 0x00);
Stefan Reinauer54309d62009-01-20 22:53:10 +0000178
179 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Stefan Reinauera8e11682009-03-11 14:54:18 +0000180
181 /* Sata Initialization Register */
182 reg32 = pci_read_config32(dev, 0x94);
183 reg32 |= (1 << 30); // due to some bug
184 pci_write_config32(dev, 0x94, reg32);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000185}
186
Stefan Reinauera8e11682009-03-11 14:54:18 +0000187static void sata_set_subsystem(device_t dev, unsigned vendor, unsigned device)
188{
189 if (!vendor || !device) {
190 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
191 pci_read_config32(dev, PCI_VENDOR_ID));
192 } else {
193 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
194 ((device & 0xffff) << 16) | (vendor & 0xffff));
195 }
196}
197
198static struct pci_operations sata_pci_ops = {
199 .set_subsystem = sata_set_subsystem,
200};
201
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000202static struct device_operations sata_ops = {
203 .read_resources = pci_dev_read_resources,
204 .set_resources = pci_dev_set_resources,
205 .enable_resources = pci_dev_enable_resources,
206 .init = sata_init,
207 .scan_bus = 0,
208 .enable = i82801gx_enable,
Stefan Reinauera8e11682009-03-11 14:54:18 +0000209 .ops_pci = &sata_pci_ops,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000210};
211
Patrick Georgiefff7332012-07-26 19:48:23 +0200212static const unsigned short sata_ids[] = {
213 0x27c0, /* Desktop Non-AHCI and Non-RAID Mode: 82801GB/GR/GDH (ICH7/ICH7R/ICH7DH) */
214 0x27c4, /* Mobile Non-AHCI and Non-RAID Mode: 82801GBM/GHM (ICH7-M/ICH7-M DH) */
215 /* NOTE: Any of the below are not properly supported yet. */
216 0x27c1, /* Desktop AHCI Mode: 82801GB/GR/GDH (ICH7/ICH7R/ICH7DH) */
217 0x27c3, /* Desktop RAID mode: 82801GB/GR/GDH (ICH7/ICH7R/ICH7DH) */
218 0x27c5, /* Mobile AHCI Mode: 82801GBM/GHM (ICH7-M/ICH7-M DH) */
219 0x27c6, /* ICH7M DH Raid Mode: 82801GHM (ICH7-M DH) */
220 0
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000221};
222
Patrick Georgiefff7332012-07-26 19:48:23 +0200223static const struct pci_driver i82801gx_sata_driver __pci_driver = {
Stefan Reinauera8e11682009-03-11 14:54:18 +0000224 .ops = &sata_ops,
225 .vendor = PCI_VENDOR_ID_INTEL,
Patrick Georgiefff7332012-07-26 19:48:23 +0200226 .devices= sata_ids,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000227};