blob: c46ec3a6291e4e247647b1980356e8db2ccc9dc5 [file] [log] [blame]
Simon Glasscd0adb32014-11-14 18:18:38 -07001/*
2 * From Coreboot
3 * Copyright (C) 2008-2009 coresystems GmbH
4 *
5 * SPDX-License-Identifier: GPL-2.0
6 */
7
8#include <common.h>
Simon Glass5cc400b2016-01-17 16:11:35 -07009#include <dm.h>
Simon Glasscd0adb32014-11-14 18:18:38 -070010#include <fdtdec.h>
11#include <asm/io.h>
12#include <asm/pci.h>
13#include <asm/arch/pch.h>
14#include <asm/arch/bd82x6x.h>
15
Simon Glass5cc400b2016-01-17 16:11:35 -070016DECLARE_GLOBAL_DATA_PTR;
17
Simon Glasscd0adb32014-11-14 18:18:38 -070018static inline u32 sir_read(pci_dev_t dev, int idx)
19{
Simon Glass240d06d2015-03-05 12:25:15 -070020 x86_pci_write_config32(dev, SATA_SIRI, idx);
21 return x86_pci_read_config32(dev, SATA_SIRD);
Simon Glasscd0adb32014-11-14 18:18:38 -070022}
23
24static inline void sir_write(pci_dev_t dev, int idx, u32 value)
25{
Simon Glass240d06d2015-03-05 12:25:15 -070026 x86_pci_write_config32(dev, SATA_SIRI, idx);
27 x86_pci_write_config32(dev, SATA_SIRD, value);
Simon Glasscd0adb32014-11-14 18:18:38 -070028}
29
30static void common_sata_init(pci_dev_t dev, unsigned int port_map)
31{
32 u32 reg32;
33 u16 reg16;
34
35 /* Set IDE I/O Configuration */
36 reg32 = SIG_MODE_PRI_NORMAL | FAST_PCB1 | FAST_PCB0 | PCB1 | PCB0;
Simon Glass240d06d2015-03-05 12:25:15 -070037 x86_pci_write_config32(dev, IDE_CONFIG, reg32);
Simon Glasscd0adb32014-11-14 18:18:38 -070038
39 /* Port enable */
Simon Glass240d06d2015-03-05 12:25:15 -070040 reg16 = x86_pci_read_config16(dev, 0x92);
Simon Glasscd0adb32014-11-14 18:18:38 -070041 reg16 &= ~0x3f;
42 reg16 |= port_map;
Simon Glass240d06d2015-03-05 12:25:15 -070043 x86_pci_write_config16(dev, 0x92, reg16);
Simon Glasscd0adb32014-11-14 18:18:38 -070044
45 /* SATA Initialization register */
46 port_map &= 0xff;
Simon Glass240d06d2015-03-05 12:25:15 -070047 x86_pci_write_config32(dev, 0x94, ((port_map ^ 0x3f) << 24) | 0x183);
Simon Glasscd0adb32014-11-14 18:18:38 -070048}
49
50void bd82x6x_sata_init(pci_dev_t dev, const void *blob, int node)
51{
52 unsigned int port_map, speed_support, port_tx;
53 struct pci_controller *hose = pci_bus_to_hose(0);
54 const char *mode;
55 u32 reg32;
56 u16 reg16;
57
58 debug("SATA: Initializing...\n");
59
60 /* SATA configuration */
61 port_map = fdtdec_get_int(blob, node, "intel,sata-port-map", 0);
62 speed_support = fdtdec_get_int(blob, node,
63 "sata_interface_speed_support", 0);
64
65 /* Enable BARs */
Simon Glass240d06d2015-03-05 12:25:15 -070066 x86_pci_write_config16(dev, PCI_COMMAND, 0x0007);
Simon Glasscd0adb32014-11-14 18:18:38 -070067
68 mode = fdt_getprop(blob, node, "intel,sata-mode", NULL);
69 if (!mode || !strcmp(mode, "ahci")) {
70 u32 abar;
71
72 debug("SATA: Controller in AHCI mode\n");
73
74 /* Set Interrupt Line, Interrupt Pin is set by D31IP.PIP */
Simon Glass240d06d2015-03-05 12:25:15 -070075 x86_pci_write_config8(dev, INTR_LN, 0x0a);
Simon Glasscd0adb32014-11-14 18:18:38 -070076
77 /* Set timings */
Simon Glass240d06d2015-03-05 12:25:15 -070078 x86_pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
Simon Glasscd0adb32014-11-14 18:18:38 -070079 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
80 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
Simon Glass240d06d2015-03-05 12:25:15 -070081 x86_pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
Simon Glasscd0adb32014-11-14 18:18:38 -070082 IDE_ISP_5_CLOCKS | IDE_RCT_4_CLOCKS);
83
84 /* Sync DMA */
Simon Glass240d06d2015-03-05 12:25:15 -070085 x86_pci_write_config16(dev, IDE_SDMA_CNT, IDE_PSDE0);
86 x86_pci_write_config16(dev, IDE_SDMA_TIM, 0x0001);
Simon Glasscd0adb32014-11-14 18:18:38 -070087
88 common_sata_init(dev, 0x8000 | port_map);
89
90 /* Initialize AHCI memory-mapped space */
91 abar = pci_read_bar32(hose, dev, 5);
92 debug("ABAR: %08X\n", abar);
93 /* CAP (HBA Capabilities) : enable power management */
94 reg32 = readl(abar + 0x00);
95 reg32 |= 0x0c006000; /* set PSC+SSC+SALP+SSS */
96 reg32 &= ~0x00020060; /* clear SXS+EMS+PMS */
97 /* Set ISS, if available */
98 if (speed_support) {
99 reg32 &= ~0x00f00000;
100 reg32 |= (speed_support & 0x03) << 20;
101 }
102 writel(reg32, abar + 0x00);
103 /* PI (Ports implemented) */
104 writel(port_map, abar + 0x0c);
105 (void) readl(abar + 0x0c); /* Read back 1 */
106 (void) readl(abar + 0x0c); /* Read back 2 */
107 /* CAP2 (HBA Capabilities Extended)*/
108 reg32 = readl(abar + 0x24);
109 reg32 &= ~0x00000002;
110 writel(reg32, abar + 0x24);
111 /* VSP (Vendor Specific Register */
112 reg32 = readl(abar + 0xa0);
113 reg32 &= ~0x00000005;
114 writel(reg32, abar + 0xa0);
115 } else if (!strcmp(mode, "combined")) {
116 debug("SATA: Controller in combined mode\n");
117
118 /* No AHCI: clear AHCI base */
119 pci_write_bar32(hose, dev, 5, 0x00000000);
120 /* And without AHCI BAR no memory decoding */
Simon Glass240d06d2015-03-05 12:25:15 -0700121 reg16 = x86_pci_read_config16(dev, PCI_COMMAND);
Simon Glasscd0adb32014-11-14 18:18:38 -0700122 reg16 &= ~PCI_COMMAND_MEMORY;
Simon Glass240d06d2015-03-05 12:25:15 -0700123 x86_pci_write_config16(dev, PCI_COMMAND, reg16);
Simon Glasscd0adb32014-11-14 18:18:38 -0700124
Simon Glass240d06d2015-03-05 12:25:15 -0700125 x86_pci_write_config8(dev, 0x09, 0x80);
Simon Glasscd0adb32014-11-14 18:18:38 -0700126
127 /* Set timings */
Simon Glass240d06d2015-03-05 12:25:15 -0700128 x86_pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
Simon Glasscd0adb32014-11-14 18:18:38 -0700129 IDE_ISP_5_CLOCKS | IDE_RCT_4_CLOCKS);
Simon Glass240d06d2015-03-05 12:25:15 -0700130 x86_pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
Simon Glasscd0adb32014-11-14 18:18:38 -0700131 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
132 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
133
134 /* Sync DMA */
Simon Glass240d06d2015-03-05 12:25:15 -0700135 x86_pci_write_config16(dev, IDE_SDMA_CNT, IDE_SSDE0);
136 x86_pci_write_config16(dev, IDE_SDMA_TIM, 0x0200);
Simon Glasscd0adb32014-11-14 18:18:38 -0700137
138 common_sata_init(dev, port_map);
139 } else {
140 debug("SATA: Controller in plain-ide mode\n");
141
142 /* No AHCI: clear AHCI base */
143 pci_write_bar32(hose, dev, 5, 0x00000000);
144
145 /* And without AHCI BAR no memory decoding */
Simon Glass240d06d2015-03-05 12:25:15 -0700146 reg16 = x86_pci_read_config16(dev, PCI_COMMAND);
Simon Glasscd0adb32014-11-14 18:18:38 -0700147 reg16 &= ~PCI_COMMAND_MEMORY;
Simon Glass240d06d2015-03-05 12:25:15 -0700148 x86_pci_write_config16(dev, PCI_COMMAND, reg16);
Simon Glasscd0adb32014-11-14 18:18:38 -0700149
150 /*
151 * Native mode capable on both primary and secondary (0xa)
152 * OR'ed with enabled (0x50) = 0xf
153 */
Simon Glass240d06d2015-03-05 12:25:15 -0700154 x86_pci_write_config8(dev, 0x09, 0x8f);
Simon Glasscd0adb32014-11-14 18:18:38 -0700155
156 /* Set Interrupt Line */
157 /* Interrupt Pin is set by D31IP.PIP */
Simon Glass240d06d2015-03-05 12:25:15 -0700158 x86_pci_write_config8(dev, INTR_LN, 0xff);
Simon Glasscd0adb32014-11-14 18:18:38 -0700159
160 /* Set timings */
Simon Glass240d06d2015-03-05 12:25:15 -0700161 x86_pci_write_config16(dev, IDE_TIM_PRI, IDE_DECODE_ENABLE |
Simon Glasscd0adb32014-11-14 18:18:38 -0700162 IDE_ISP_3_CLOCKS | IDE_RCT_1_CLOCKS |
163 IDE_PPE0 | IDE_IE0 | IDE_TIME0);
Simon Glass240d06d2015-03-05 12:25:15 -0700164 x86_pci_write_config16(dev, IDE_TIM_SEC, IDE_DECODE_ENABLE |
Simon Glasscd0adb32014-11-14 18:18:38 -0700165 IDE_SITRE | IDE_ISP_3_CLOCKS |
166 IDE_RCT_1_CLOCKS | IDE_IE0 | IDE_TIME0);
167
168 /* Sync DMA */
Simon Glass240d06d2015-03-05 12:25:15 -0700169 x86_pci_write_config16(dev, IDE_SDMA_CNT,
170 IDE_SSDE0 | IDE_PSDE0);
171 x86_pci_write_config16(dev, IDE_SDMA_TIM, 0x0201);
Simon Glasscd0adb32014-11-14 18:18:38 -0700172
173 common_sata_init(dev, port_map);
174 }
175
176 /* Set Gen3 Transmitter settings if needed */
177 port_tx = fdtdec_get_int(blob, node, "intel,sata-port0-gen3-tx", 0);
178 if (port_tx)
179 pch_iobp_update(SATA_IOBP_SP0G3IR, 0, port_tx);
180
181 port_tx = fdtdec_get_int(blob, node, "intel,sata-port1-gen3-tx", 0);
182 if (port_tx)
183 pch_iobp_update(SATA_IOBP_SP1G3IR, 0, port_tx);
184
185 /* Additional Programming Requirements */
186 sir_write(dev, 0x04, 0x00001600);
187 sir_write(dev, 0x28, 0xa0000033);
188 reg32 = sir_read(dev, 0x54);
189 reg32 &= 0xff000000;
190 reg32 |= 0x5555aa;
191 sir_write(dev, 0x54, reg32);
192 sir_write(dev, 0x64, 0xcccc8484);
193 reg32 = sir_read(dev, 0x68);
194 reg32 &= 0xffff0000;
195 reg32 |= 0xcccc;
196 sir_write(dev, 0x68, reg32);
197 reg32 = sir_read(dev, 0x78);
198 reg32 &= 0x0000ffff;
199 reg32 |= 0x88880000;
200 sir_write(dev, 0x78, reg32);
201 sir_write(dev, 0x84, 0x001c7000);
202 sir_write(dev, 0x88, 0x88338822);
203 sir_write(dev, 0xa0, 0x001c7000);
204 sir_write(dev, 0xc4, 0x0c0c0c0c);
205 sir_write(dev, 0xc8, 0x0c0c0c0c);
206 sir_write(dev, 0xd4, 0x10000000);
207
208 pch_iobp_update(0xea004001, 0x3fffffff, 0xc0000000);
209 pch_iobp_update(0xea00408a, 0xfffffcff, 0x00000100);
210}
211
Simon Glass5cc400b2016-01-17 16:11:35 -0700212static void bd82x6x_sata_enable(pci_dev_t dev, const void *blob, int node)
Simon Glasscd0adb32014-11-14 18:18:38 -0700213{
214 unsigned port_map;
215 const char *mode;
216 u16 map = 0;
217
218 /*
219 * Set SATA controller mode early so the resource allocator can
220 * properly assign IO/Memory resources for the controller.
221 */
222 mode = fdt_getprop(blob, node, "intel,sata-mode", NULL);
223 if (mode && !strcmp(mode, "ahci"))
224 map = 0x0060;
225 port_map = fdtdec_get_int(blob, node, "intel,sata-port-map", 0);
226
227 map |= (port_map ^ 0x3f) << 8;
Simon Glass240d06d2015-03-05 12:25:15 -0700228 x86_pci_write_config16(dev, 0x90, map);
Simon Glasscd0adb32014-11-14 18:18:38 -0700229}
Simon Glass5cc400b2016-01-17 16:11:35 -0700230
231static int bd82x6x_sata_probe(struct udevice *dev)
232{
233 if (!(gd->flags & GD_FLG_RELOC))
234 bd82x6x_sata_enable(PCH_SATA_DEV, gd->fdt_blob, dev->of_offset);
235
236 return 0;
237}
238
239static const struct udevice_id bd82x6x_ahci_ids[] = {
240 { .compatible = "intel,pantherpoint-ahci" },
241 { }
242};
243
244U_BOOT_DRIVER(ahci_ivybridge_drv) = {
245 .name = "ahci_ivybridge",
246 .id = UCLASS_DISK,
247 .of_match = bd82x6x_ahci_ids,
248 .probe = bd82x6x_sata_probe,
249};