blob: e9e0810de171fcd8d5e339a63a6549f1dc570e1f [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2014 Google Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
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 <arch/io.h>
22#include <console/console.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <delay.h>
27#include <broadwell/iobp.h>
28#include <broadwell/ramstage.h>
29#include <broadwell/rcba.h>
30#include <broadwell/sata.h>
31#include <chip.h>
32
33static inline u32 sir_read(struct device *dev, int idx)
34{
35 pci_write_config32(dev, SATA_SIRI, idx);
36 return pci_read_config32(dev, SATA_SIRD);
37}
38
39static inline void sir_write(struct device *dev, int idx, u32 value)
40{
41 pci_write_config32(dev, SATA_SIRI, idx);
42 pci_write_config32(dev, SATA_SIRD, value);
43}
44
45static void sata_init(struct device *dev)
46{
47 config_t *config = dev->chip_info;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080048 u32 reg32;
49 u8 *abar;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070050 u16 reg16;
Duncan Laurie1b0d5a32014-08-13 16:59:34 -070051 int port;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070052
53 printk(BIOS_DEBUG, "SATA: Initializing controller in AHCI mode.\n");
54
55 /* Enable BARs */
56 pci_write_config16(dev, PCI_COMMAND, 0x0007);
57
58 /* Set Interrupt Line */
59 /* Interrupt Pin is set by D31IP.PIP */
60 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0x0a);
61
62 /* Set timings */
Kane Chen8c1fd782014-08-19 10:51:46 -070063 pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE);
64 pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070065
66 /* for AHCI, Port Enable is managed in memory mapped space */
67 reg16 = pci_read_config16(dev, 0x92);
68 reg16 &= ~0x3f;
69 reg16 |= 0x8000 | config->sata_port_map;
70 pci_write_config16(dev, 0x92, reg16);
71 udelay(2);
72
73 /* Setup register 98h */
Kane Chen8c1fd782014-08-19 10:51:46 -070074 reg32 = pci_read_config32(dev, 0x98);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070075 reg32 &= ~((1 << 31) | (1 << 30));
76 reg32 |= 1 << 23;
Duncan Laurie1b0d5a32014-08-13 16:59:34 -070077 reg32 |= 1 << 24; /* Enable MPHY Dynamic Power Gating */
Duncan Lauriec88c54c2014-04-30 16:36:13 -070078 pci_write_config32(dev, 0x98, reg32);
79
80 /* Setup register 9Ch */
81 reg16 = 0; /* Disable alternate ID */
82 reg16 = 1 << 5; /* BWG step 12 */
83 pci_write_config16(dev, 0x9c, reg16);
84
85 /* SATA Initialization register */
86 reg32 = 0x183;
87 reg32 |= (config->sata_port_map ^ 0x3f) << 24;
88 reg32 |= (config->sata_devslp_mux & 1) << 15;
89 pci_write_config32(dev, 0x94, reg32);
90
91 /* Initialize AHCI memory-mapped space */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080092 abar = (u8 *)(pci_read_config32(dev, PCI_BASE_ADDRESS_5));
93 printk(BIOS_DEBUG, "ABAR: %p\n", abar);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070094
Duncan Lauriec88c54c2014-04-30 16:36:13 -070095 /* PI (Ports implemented) */
96 write32(abar + 0x0c, config->sata_port_map);
97 (void) read32(abar + 0x0c); /* Read back 1 */
98 (void) read32(abar + 0x0c); /* Read back 2 */
99
100 /* CAP2 (HBA Capabilities Extended)*/
Duncan Laurie1b0d5a32014-08-13 16:59:34 -0700101 if (config->sata_devslp_disable) {
102 reg32 = read32(abar + 0x24);
103 reg32 &= ~(1 << 3);
104 write32(abar + 0x24, reg32);
105 } else {
106 /* Enable DEVSLP */
107 reg32 = read32(abar + 0x24);
108 reg32 |= (1 << 5)|(1 << 4)|(1 << 3)|(1 << 2);
109 write32(abar + 0x24, reg32);
110
111 for (port = 0; port < 4; port++) {
112 if (!(config->sata_port_map & (1 << port)))
113 continue;
114 reg32 = read32(abar + 0x144 + (0x80 * port));
115 reg32 |= (1 << 1); /* DEVSLP DSP */
116 write32(abar + 0x144 + (0x80 * port), reg32);
117 }
118 }
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700119
120 /*
121 * Static Power Gating for unused ports
122 */
123 reg32 = RCBA32(0x3a84);
124 /* Port 3 and 2 disabled */
125 if ((config->sata_port_map & ((1 << 3)|(1 << 2))) == 0)
126 reg32 |= (1 << 24) | (1 << 26);
127 /* Port 1 and 0 disabled */
128 if ((config->sata_port_map & ((1 << 1)|(1 << 0))) == 0)
129 reg32 |= (1 << 20) | (1 << 18);
130 RCBA32(0x3a84) = reg32;
131
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700132 /* Set Gen3 Transmitter settings if needed */
133 if (config->sata_port0_gen3_tx)
134 pch_iobp_update(SATA_IOBP_SP0G3IR, 0,
135 config->sata_port0_gen3_tx);
136
137 if (config->sata_port1_gen3_tx)
138 pch_iobp_update(SATA_IOBP_SP1G3IR, 0,
139 config->sata_port1_gen3_tx);
140
141 /* Set Gen3 DTLE DATA / EDGE registers if needed */
142 if (config->sata_port0_gen3_dtle) {
143 pch_iobp_update(SATA_IOBP_SP0DTLE_DATA,
144 ~(SATA_DTLE_MASK << SATA_DTLE_DATA_SHIFT),
145 (config->sata_port0_gen3_dtle & SATA_DTLE_MASK)
146 << SATA_DTLE_DATA_SHIFT);
147
148 pch_iobp_update(SATA_IOBP_SP0DTLE_EDGE,
149 ~(SATA_DTLE_MASK << SATA_DTLE_EDGE_SHIFT),
150 (config->sata_port0_gen3_dtle & SATA_DTLE_MASK)
151 << SATA_DTLE_EDGE_SHIFT);
152 }
153
154 if (config->sata_port1_gen3_dtle) {
155 pch_iobp_update(SATA_IOBP_SP1DTLE_DATA,
156 ~(SATA_DTLE_MASK << SATA_DTLE_DATA_SHIFT),
157 (config->sata_port1_gen3_dtle & SATA_DTLE_MASK)
158 << SATA_DTLE_DATA_SHIFT);
159
160 pch_iobp_update(SATA_IOBP_SP1DTLE_EDGE,
161 ~(SATA_DTLE_MASK << SATA_DTLE_EDGE_SHIFT),
162 (config->sata_port1_gen3_dtle & SATA_DTLE_MASK)
163 << SATA_DTLE_EDGE_SHIFT);
164 }
165
166 /*
167 * Additional Programming Requirements for Power Optimizer
168 */
169
170 /* Step 1 */
171 sir_write(dev, 0x64, 0x883c9003);
172
173 /* Step 2: SIR 68h[15:0] = 880Ah */
174 reg32 = sir_read(dev, 0x68);
175 reg32 &= 0xffff0000;
176 reg32 |= 0x880a;
177 sir_write(dev, 0x68, reg32);
178
179 /* Step 3: SIR 60h[3] = 1 */
180 reg32 = sir_read(dev, 0x60);
181 reg32 |= (1 << 3);
182 sir_write(dev, 0x60, reg32);
183
184 /* Step 4: SIR 60h[0] = 1 */
185 reg32 = sir_read(dev, 0x60);
186 reg32 |= (1 << 0);
187 sir_write(dev, 0x60, reg32);
188
189 /* Step 5: SIR 60h[1] = 1 */
190 reg32 = sir_read(dev, 0x60);
191 reg32 |= (1 << 1);
192 sir_write(dev, 0x60, reg32);
193
194 /* Clock Gating */
195 sir_write(dev, 0x70, 0x3f00bf1f);
196 sir_write(dev, 0x54, 0xcf000f0f);
197 sir_write(dev, 0x58, 0x00190000);
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700198 RCBA32_AND_OR(0x333c, 0xffcfffff, 0x00c00000);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700199
200 reg32 = pci_read_config32(dev, 0x300);
Duncan Laurie446fb8e2014-08-08 09:59:43 -0700201 reg32 |= (1 << 17) | (1 << 16) | (1 << 19);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700202 reg32 |= (1 << 31) | (1 << 30) | (1 << 29);
203 pci_write_config32(dev, 0x300, reg32);
Kane Chen8c1fd782014-08-19 10:51:46 -0700204
205 /* Register Lock */
206 reg32 = pci_read_config32(dev, 0x9c);
207 reg32 |= (1 << 31);
208 pci_write_config32(dev, 0x9c, reg32);
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700209}
210
211/*
212 * Set SATA controller mode early so the resource allocator can
213 * properly assign IO/Memory resources for the controller.
214 */
215static void sata_enable(device_t dev)
216{
217 /* Get the chip configuration */
218 config_t *config = dev->chip_info;
219 u16 map = 0x0060;
220
221 map |= (config->sata_port_map ^ 0x3f) << 8;
222
223 pci_write_config16(dev, 0x90, map);
224}
225
226static struct device_operations sata_ops = {
227 .read_resources = &pci_dev_read_resources,
228 .set_resources = &pci_dev_set_resources,
229 .enable_resources = &pci_dev_enable_resources,
230 .init = &sata_init,
231 .enable = &sata_enable,
232 .ops_pci = &broadwell_pci_ops,
233};
234
235static const unsigned short pci_device_ids[] = {
236 0x9c03, 0x9c05, 0x9c07, 0x9c0f, /* LynxPoint-LP */
237 0x9c83, 0x9c85, 0x282a, 0x9c87, 0x282a, 0x9c8f, /* WildcatPoint */
238 0
239};
240
241static const struct pci_driver pch_sata __pci_driver = {
242 .ops = &sata_ops,
243 .vendor = PCI_VENDOR_ID_INTEL,
244 .devices = pci_device_ids,
245};