]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
4782ac80 | 2 | /* |
4c2e3da8 | 3 | * Copyright (C) Freescale Semiconductor, Inc. 2006. |
4782ac80 JZ |
4 | * Author: Jason Jin<[email protected]> |
5 | * Zhang Wei<[email protected]> | |
6 | * | |
4782ac80 | 7 | * with the reference on libata and ahci drvier in kernel |
7cf1afce SG |
8 | * |
9 | * This driver provides a SCSI interface to SATA. | |
4782ac80 JZ |
10 | */ |
11 | #include <common.h> | |
e6f6f9e6 | 12 | #include <blk.h> |
1eb69ae4 | 13 | #include <cpu_func.h> |
f7ae49fc | 14 | #include <log.h> |
4782ac80 | 15 | |
4782ac80 | 16 | #include <command.h> |
ff758ccc | 17 | #include <dm.h> |
4782ac80 JZ |
18 | #include <pci.h> |
19 | #include <asm/processor.h> | |
1221ce45 | 20 | #include <linux/errno.h> |
4782ac80 JZ |
21 | #include <asm/io.h> |
22 | #include <malloc.h> | |
cf92e05c | 23 | #include <memalign.h> |
681357ff | 24 | #include <pci.h> |
4782ac80 | 25 | #include <scsi.h> |
344ca0b4 | 26 | #include <libata.h> |
4782ac80 JZ |
27 | #include <linux/ctype.h> |
28 | #include <ahci.h> | |
681357ff SG |
29 | #include <dm/device-internal.h> |
30 | #include <dm/lists.h> | |
4782ac80 | 31 | |
225b1da7 | 32 | static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port); |
766b16fe | 33 | |
4682c8a1 | 34 | #ifndef CONFIG_DM_SCSI |
2c9f9efb | 35 | struct ahci_uc_priv *probe_ent = NULL; |
4682c8a1 | 36 | #endif |
4782ac80 | 37 | |
4a7cc0f2 JL |
38 | #define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0) |
39 | ||
284231e4 | 40 | /* |
b7a21b70 HTL |
41 | * Some controllers limit number of blocks they can read/write at once. |
42 | * Contemporary SSD devices work much faster if the read/write size is aligned | |
43 | * to a power of 2. Let's set default to 128 and allowing to be overwritten if | |
44 | * needed. | |
284231e4 | 45 | */ |
b7a21b70 HTL |
46 | #ifndef MAX_SATA_BLOCKS_READ_WRITE |
47 | #define MAX_SATA_BLOCKS_READ_WRITE 0x80 | |
284231e4 | 48 | #endif |
4782ac80 | 49 | |
57847660 | 50 | /* Maximum timeouts for each event */ |
7610b41d | 51 | #define WAIT_MS_SPINUP 20000 |
f8b009e8 | 52 | #define WAIT_MS_DATAIO 10000 |
766b16fe | 53 | #define WAIT_MS_FLUSH 5000 |
e0ddcf93 | 54 | #define WAIT_MS_LINKUP 200 |
57847660 | 55 | |
6e732553 RK |
56 | #define AHCI_CAP_S64A BIT(31) |
57 | ||
22f5de6b | 58 | __weak void __iomem *ahci_port_base(void __iomem *base, u32 port) |
4782ac80 JZ |
59 | { |
60 | return base + 0x100 + (port * 0x80); | |
61 | } | |
62 | ||
4782ac80 | 63 | #define msleep(a) udelay(a * 1000) |
4a7cc0f2 | 64 | |
fa31377e | 65 | static void ahci_dcache_flush_range(unsigned long begin, unsigned long len) |
90b276f6 TH |
66 | { |
67 | const unsigned long start = begin; | |
68 | const unsigned long end = start + len; | |
69 | ||
70 | debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end); | |
71 | flush_dcache_range(start, end); | |
72 | } | |
73 | ||
74 | /* | |
75 | * SATA controller DMAs to physical RAM. Ensure data from the | |
76 | * controller is invalidated from dcache; next access comes from | |
77 | * physical RAM. | |
78 | */ | |
fa31377e | 79 | static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len) |
90b276f6 TH |
80 | { |
81 | const unsigned long start = begin; | |
82 | const unsigned long end = start + len; | |
83 | ||
84 | debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end); | |
85 | invalidate_dcache_range(start, end); | |
86 | } | |
87 | ||
88 | /* | |
89 | * Ensure data for SATA controller is flushed out of dcache and | |
90 | * written to physical memory. | |
91 | */ | |
92 | static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp) | |
93 | { | |
94 | ahci_dcache_flush_range((unsigned long)pp->cmd_slot, | |
95 | AHCI_PORT_PRIV_DMA_SZ); | |
96 | } | |
97 | ||
fa31377e | 98 | static int waiting_for_cmd_completed(void __iomem *offset, |
4a7cc0f2 JL |
99 | int timeout_msec, |
100 | u32 sign) | |
4782ac80 JZ |
101 | { |
102 | int i; | |
103 | u32 status; | |
4a7cc0f2 JL |
104 | |
105 | for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++) | |
4782ac80 JZ |
106 | msleep(1); |
107 | ||
4a7cc0f2 | 108 | return (i < timeout_msec) ? 0 : -1; |
4782ac80 JZ |
109 | } |
110 | ||
4b62b2ff | 111 | int __weak ahci_link_up(struct ahci_uc_priv *uc_priv, u8 port) |
124e9fa1 RH |
112 | { |
113 | u32 tmp; | |
114 | int j = 0; | |
4b62b2ff | 115 | void __iomem *port_mmio = uc_priv->port[port].port_mmio; |
124e9fa1 | 116 | |
3765b3e7 | 117 | /* |
124e9fa1 RH |
118 | * Bring up SATA link. |
119 | * SATA link bringup time is usually less than 1 ms; only very | |
120 | * rarely has it taken between 1-2 ms. Never seen it above 2 ms. | |
121 | */ | |
122 | while (j < WAIT_MS_LINKUP) { | |
123 | tmp = readl(port_mmio + PORT_SCR_STAT); | |
124 | tmp &= PORT_SCR_STAT_DET_MASK; | |
125 | if (tmp == PORT_SCR_STAT_DET_PHYRDY) | |
126 | return 0; | |
127 | udelay(1000); | |
128 | j++; | |
129 | } | |
130 | return 1; | |
131 | } | |
4782ac80 | 132 | |
a6e50a88 IC |
133 | #ifdef CONFIG_SUNXI_AHCI |
134 | /* The sunxi AHCI controller requires this undocumented setup */ | |
fa31377e | 135 | static void sunxi_dma_init(void __iomem *port_mmio) |
a6e50a88 IC |
136 | { |
137 | clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400); | |
138 | } | |
139 | #endif | |
140 | ||
9efaca3e | 141 | int ahci_reset(void __iomem *base) |
6b68888a DL |
142 | { |
143 | int i = 1000; | |
9efaca3e | 144 | u32 __iomem *host_ctl_reg = base + HOST_CTL; |
6b68888a DL |
145 | u32 tmp = readl(host_ctl_reg); /* global controller reset */ |
146 | ||
147 | if ((tmp & HOST_RESET) == 0) | |
148 | writel_with_flush(tmp | HOST_RESET, host_ctl_reg); | |
149 | ||
150 | /* | |
151 | * reset must complete within 1 second, or | |
152 | * the hardware should be considered fried. | |
153 | */ | |
154 | do { | |
155 | udelay(1000); | |
156 | tmp = readl(host_ctl_reg); | |
157 | i--; | |
158 | } while ((i > 0) && (tmp & HOST_RESET)); | |
159 | ||
160 | if (i == 0) { | |
161 | printf("controller reset failed (0x%x)\n", tmp); | |
162 | return -1; | |
163 | } | |
164 | ||
165 | return 0; | |
166 | } | |
167 | ||
225b1da7 | 168 | static int ahci_host_init(struct ahci_uc_priv *uc_priv) |
4782ac80 | 169 | { |
e8a016b5 | 170 | #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI) |
ff758ccc | 171 | # ifdef CONFIG_DM_PCI |
225b1da7 | 172 | struct udevice *dev = uc_priv->dev; |
ff758ccc SG |
173 | struct pci_child_platdata *pplat = dev_get_parent_platdata(dev); |
174 | # else | |
225b1da7 | 175 | pci_dev_t pdev = uc_priv->dev; |
942e3143 | 176 | unsigned short vendor; |
ff758ccc SG |
177 | # endif |
178 | u16 tmp16; | |
942e3143 | 179 | #endif |
225b1da7 | 180 | void __iomem *mmio = uc_priv->mmio_base; |
2a0c61d4 | 181 | u32 tmp, cap_save, cmd; |
124e9fa1 | 182 | int i, j, ret; |
fa31377e | 183 | void __iomem *port_mmio; |
2915a022 | 184 | u32 port_map; |
4782ac80 | 185 | |
284231e4 VB |
186 | debug("ahci_host_init: start\n"); |
187 | ||
4782ac80 | 188 | cap_save = readl(mmio + HOST_CAP); |
4a7cc0f2 | 189 | cap_save &= ((1 << 28) | (1 << 17)); |
2a0c61d4 | 190 | cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */ |
4782ac80 | 191 | |
225b1da7 | 192 | ret = ahci_reset(uc_priv->mmio_base); |
6b68888a DL |
193 | if (ret) |
194 | return ret; | |
4782ac80 JZ |
195 | |
196 | writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL); | |
197 | writel(cap_save, mmio + HOST_CAP); | |
198 | writel_with_flush(0xf, mmio + HOST_PORTS_IMPL); | |
199 | ||
e8a016b5 | 200 | #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI) |
ff758ccc SG |
201 | # ifdef CONFIG_DM_PCI |
202 | if (pplat->vendor == PCI_VENDOR_ID_INTEL) { | |
203 | u16 tmp16; | |
204 | ||
205 | dm_pci_read_config16(dev, 0x92, &tmp16); | |
206 | dm_pci_write_config16(dev, 0x92, tmp16 | 0xf); | |
207 | } | |
208 | # else | |
4782ac80 JZ |
209 | pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor); |
210 | ||
211 | if (vendor == PCI_VENDOR_ID_INTEL) { | |
212 | u16 tmp16; | |
213 | pci_read_config_word(pdev, 0x92, &tmp16); | |
214 | tmp16 |= 0xf; | |
215 | pci_write_config_word(pdev, 0x92, tmp16); | |
216 | } | |
ff758ccc | 217 | # endif |
942e3143 | 218 | #endif |
225b1da7 SG |
219 | uc_priv->cap = readl(mmio + HOST_CAP); |
220 | uc_priv->port_map = readl(mmio + HOST_PORTS_IMPL); | |
221 | port_map = uc_priv->port_map; | |
222 | uc_priv->n_ports = (uc_priv->cap & 0x1f) + 1; | |
4782ac80 JZ |
223 | |
224 | debug("cap 0x%x port_map 0x%x n_ports %d\n", | |
225b1da7 | 225 | uc_priv->cap, uc_priv->port_map, uc_priv->n_ports); |
4782ac80 | 226 | |
0545ac98 | 227 | #if !defined(CONFIG_DM_SCSI) |
225b1da7 SG |
228 | if (uc_priv->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID) |
229 | uc_priv->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID; | |
0545ac98 | 230 | #endif |
284231e4 | 231 | |
225b1da7 | 232 | for (i = 0; i < uc_priv->n_ports; i++) { |
2915a022 RG |
233 | if (!(port_map & (1 << i))) |
234 | continue; | |
225b1da7 SG |
235 | uc_priv->port[i].port_mmio = ahci_port_base(mmio, i); |
236 | port_mmio = (u8 *)uc_priv->port[i].port_mmio; | |
4782ac80 JZ |
237 | |
238 | /* make sure port is not active */ | |
239 | tmp = readl(port_mmio + PORT_CMD); | |
240 | if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON | | |
241 | PORT_CMD_FIS_RX | PORT_CMD_START)) { | |
7ba7917c | 242 | debug("Port %d is active. Deactivating.\n", i); |
4782ac80 JZ |
243 | tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON | |
244 | PORT_CMD_FIS_RX | PORT_CMD_START); | |
245 | writel_with_flush(tmp, port_mmio + PORT_CMD); | |
246 | ||
247 | /* spec says 500 msecs for each bit, so | |
248 | * this is slightly incorrect. | |
249 | */ | |
250 | msleep(500); | |
251 | } | |
252 | ||
a6e50a88 IC |
253 | #ifdef CONFIG_SUNXI_AHCI |
254 | sunxi_dma_init(port_mmio); | |
255 | #endif | |
256 | ||
2a0c61d4 MJ |
257 | /* Add the spinup command to whatever mode bits may |
258 | * already be on in the command register. | |
259 | */ | |
260 | cmd = readl(port_mmio + PORT_CMD); | |
2a0c61d4 MJ |
261 | cmd |= PORT_CMD_SPIN_UP; |
262 | writel_with_flush(cmd, port_mmio + PORT_CMD); | |
263 | ||
124e9fa1 | 264 | /* Bring up SATA link. */ |
225b1da7 | 265 | ret = ahci_link_up(uc_priv, i); |
124e9fa1 | 266 | if (ret) { |
2a0c61d4 MJ |
267 | printf("SATA link %d timeout.\n", i); |
268 | continue; | |
269 | } else { | |
270 | debug("SATA link ok.\n"); | |
271 | } | |
272 | ||
273 | /* Clear error status */ | |
274 | tmp = readl(port_mmio + PORT_SCR_ERR); | |
275 | if (tmp) | |
276 | writel(tmp, port_mmio + PORT_SCR_ERR); | |
277 | ||
278 | debug("Spinning up device on SATA port %d... ", i); | |
279 | ||
280 | j = 0; | |
281 | while (j < WAIT_MS_SPINUP) { | |
282 | tmp = readl(port_mmio + PORT_TFDATA); | |
344ca0b4 | 283 | if (!(tmp & (ATA_BUSY | ATA_DRQ))) |
2a0c61d4 MJ |
284 | break; |
285 | udelay(1000); | |
17821084 RH |
286 | tmp = readl(port_mmio + PORT_SCR_STAT); |
287 | tmp &= PORT_SCR_STAT_DET_MASK; | |
288 | if (tmp == PORT_SCR_STAT_DET_PHYRDY) | |
289 | break; | |
2a0c61d4 MJ |
290 | j++; |
291 | } | |
17821084 RH |
292 | |
293 | tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK; | |
294 | if (tmp == PORT_SCR_STAT_DET_COMINIT) { | |
295 | debug("SATA link %d down (COMINIT received), retrying...\n", i); | |
296 | i--; | |
297 | continue; | |
298 | } | |
299 | ||
2a0c61d4 MJ |
300 | printf("Target spinup took %d ms.\n", j); |
301 | if (j == WAIT_MS_SPINUP) | |
9a65b875 SR |
302 | debug("timeout.\n"); |
303 | else | |
304 | debug("ok.\n"); | |
4782ac80 JZ |
305 | |
306 | tmp = readl(port_mmio + PORT_SCR_ERR); | |
307 | debug("PORT_SCR_ERR 0x%x\n", tmp); | |
308 | writel(tmp, port_mmio + PORT_SCR_ERR); | |
309 | ||
310 | /* ack any pending irq events for this port */ | |
311 | tmp = readl(port_mmio + PORT_IRQ_STAT); | |
312 | debug("PORT_IRQ_STAT 0x%x\n", tmp); | |
313 | if (tmp) | |
314 | writel(tmp, port_mmio + PORT_IRQ_STAT); | |
315 | ||
316 | writel(1 << i, mmio + HOST_IRQ_STAT); | |
317 | ||
4e422bce | 318 | /* register linkup ports */ |
4782ac80 | 319 | tmp = readl(port_mmio + PORT_SCR_STAT); |
766b16fe | 320 | debug("SATA port %d status: 0x%x\n", i, tmp); |
2bdb10db | 321 | if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY) |
225b1da7 | 322 | uc_priv->link_port_map |= (0x01 << i); |
4782ac80 JZ |
323 | } |
324 | ||
325 | tmp = readl(mmio + HOST_CTL); | |
326 | debug("HOST_CTL 0x%x\n", tmp); | |
327 | writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL); | |
328 | tmp = readl(mmio + HOST_CTL); | |
329 | debug("HOST_CTL 0x%x\n", tmp); | |
e8a016b5 | 330 | #if !defined(CONFIG_DM_SCSI) |
942e3143 | 331 | #ifndef CONFIG_SCSI_AHCI_PLAT |
ff758ccc SG |
332 | # ifdef CONFIG_DM_PCI |
333 | dm_pci_read_config16(dev, PCI_COMMAND, &tmp16); | |
334 | tmp |= PCI_COMMAND_MASTER; | |
335 | dm_pci_write_config16(dev, PCI_COMMAND, tmp16); | |
336 | # else | |
4782ac80 JZ |
337 | pci_read_config_word(pdev, PCI_COMMAND, &tmp16); |
338 | tmp |= PCI_COMMAND_MASTER; | |
339 | pci_write_config_word(pdev, PCI_COMMAND, tmp16); | |
ff758ccc | 340 | # endif |
e8a016b5 | 341 | #endif |
942e3143 | 342 | #endif |
4782ac80 JZ |
343 | return 0; |
344 | } | |
345 | ||
346 | ||
225b1da7 | 347 | static void ahci_print_info(struct ahci_uc_priv *uc_priv) |
4782ac80 | 348 | { |
e8a016b5 MS |
349 | #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI) |
350 | # if defined(CONFIG_DM_PCI) | |
225b1da7 | 351 | struct udevice *dev = uc_priv->dev; |
ff758ccc | 352 | # else |
225b1da7 | 353 | pci_dev_t pdev = uc_priv->dev; |
ff758ccc | 354 | # endif |
942e3143 RH |
355 | u16 cc; |
356 | #endif | |
225b1da7 | 357 | void __iomem *mmio = uc_priv->mmio_base; |
4e422bce | 358 | u32 vers, cap, cap2, impl, speed; |
4782ac80 | 359 | const char *speed_s; |
4782ac80 JZ |
360 | const char *scc_s; |
361 | ||
362 | vers = readl(mmio + HOST_VERSION); | |
225b1da7 | 363 | cap = uc_priv->cap; |
4e422bce | 364 | cap2 = readl(mmio + HOST_CAP2); |
225b1da7 | 365 | impl = uc_priv->port_map; |
4782ac80 JZ |
366 | |
367 | speed = (cap >> 20) & 0xf; | |
368 | if (speed == 1) | |
369 | speed_s = "1.5"; | |
370 | else if (speed == 2) | |
371 | speed_s = "3"; | |
4e422bce SR |
372 | else if (speed == 3) |
373 | speed_s = "6"; | |
4782ac80 JZ |
374 | else |
375 | speed_s = "?"; | |
376 | ||
e8a016b5 | 377 | #if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI) |
942e3143 RH |
378 | scc_s = "SATA"; |
379 | #else | |
ff758ccc SG |
380 | # ifdef CONFIG_DM_PCI |
381 | dm_pci_read_config16(dev, 0x0a, &cc); | |
382 | # else | |
4782ac80 | 383 | pci_read_config_word(pdev, 0x0a, &cc); |
ff758ccc | 384 | # endif |
4782ac80 JZ |
385 | if (cc == 0x0101) |
386 | scc_s = "IDE"; | |
387 | else if (cc == 0x0106) | |
388 | scc_s = "SATA"; | |
389 | else if (cc == 0x0104) | |
390 | scc_s = "RAID"; | |
391 | else | |
392 | scc_s = "unknown"; | |
942e3143 | 393 | #endif |
4a7cc0f2 JL |
394 | printf("AHCI %02x%02x.%02x%02x " |
395 | "%u slots %u ports %s Gbps 0x%x impl %s mode\n", | |
396 | (vers >> 24) & 0xff, | |
397 | (vers >> 16) & 0xff, | |
398 | (vers >> 8) & 0xff, | |
399 | vers & 0xff, | |
400 | ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s); | |
4782ac80 JZ |
401 | |
402 | printf("flags: " | |
4e422bce SR |
403 | "%s%s%s%s%s%s%s" |
404 | "%s%s%s%s%s%s%s" | |
405 | "%s%s%s%s%s%s\n", | |
4a7cc0f2 JL |
406 | cap & (1 << 31) ? "64bit " : "", |
407 | cap & (1 << 30) ? "ncq " : "", | |
408 | cap & (1 << 28) ? "ilck " : "", | |
409 | cap & (1 << 27) ? "stag " : "", | |
410 | cap & (1 << 26) ? "pm " : "", | |
411 | cap & (1 << 25) ? "led " : "", | |
412 | cap & (1 << 24) ? "clo " : "", | |
413 | cap & (1 << 19) ? "nz " : "", | |
414 | cap & (1 << 18) ? "only " : "", | |
415 | cap & (1 << 17) ? "pmp " : "", | |
4e422bce | 416 | cap & (1 << 16) ? "fbss " : "", |
4a7cc0f2 JL |
417 | cap & (1 << 15) ? "pio " : "", |
418 | cap & (1 << 14) ? "slum " : "", | |
4e422bce SR |
419 | cap & (1 << 13) ? "part " : "", |
420 | cap & (1 << 7) ? "ccc " : "", | |
421 | cap & (1 << 6) ? "ems " : "", | |
422 | cap & (1 << 5) ? "sxs " : "", | |
423 | cap2 & (1 << 2) ? "apst " : "", | |
424 | cap2 & (1 << 1) ? "nvmp " : "", | |
425 | cap2 & (1 << 0) ? "boh " : ""); | |
4782ac80 JZ |
426 | } |
427 | ||
745a94f3 | 428 | #if defined(CONFIG_DM_SCSI) || !defined(CONFIG_SCSI_AHCI_PLAT) |
e8a016b5 | 429 | # if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI) |
4279efc4 | 430 | static int ahci_init_one(struct ahci_uc_priv *uc_priv, struct udevice *dev) |
ff758ccc | 431 | # else |
4279efc4 | 432 | static int ahci_init_one(struct ahci_uc_priv *uc_priv, pci_dev_t dev) |
ff758ccc | 433 | # endif |
4782ac80 | 434 | { |
e8a016b5 | 435 | #if !defined(CONFIG_DM_SCSI) |
63cec581 | 436 | u16 vendor; |
e8a016b5 | 437 | #endif |
4782ac80 JZ |
438 | int rc; |
439 | ||
225b1da7 | 440 | uc_priv->dev = dev; |
4782ac80 | 441 | |
225b1da7 | 442 | uc_priv->host_flags = ATA_FLAG_SATA |
4a7cc0f2 JL |
443 | | ATA_FLAG_NO_LEGACY |
444 | | ATA_FLAG_MMIO | |
445 | | ATA_FLAG_PIO_DMA | |
446 | | ATA_FLAG_NO_ATAPI; | |
225b1da7 SG |
447 | uc_priv->pio_mask = 0x1f; |
448 | uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */ | |
4782ac80 | 449 | |
e8a016b5 | 450 | #if !defined(CONFIG_DM_SCSI) |
ff758ccc | 451 | #ifdef CONFIG_DM_PCI |
225b1da7 | 452 | uc_priv->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5, |
ff758ccc SG |
453 | PCI_REGION_MEM); |
454 | ||
455 | /* Take from kernel: | |
456 | * JMicron-specific fixup: | |
457 | * make sure we're in AHCI mode | |
458 | */ | |
459 | dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor); | |
460 | if (vendor == 0x197b) | |
461 | dm_pci_write_config8(dev, 0x41, 0xa1); | |
462 | #else | |
225b1da7 | 463 | uc_priv->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5, |
9efaca3e | 464 | PCI_REGION_MEM); |
4782ac80 JZ |
465 | |
466 | /* Take from kernel: | |
467 | * JMicron-specific fixup: | |
468 | * make sure we're in AHCI mode | |
469 | */ | |
ff758ccc | 470 | pci_read_config_word(dev, PCI_VENDOR_ID, &vendor); |
4a7cc0f2 | 471 | if (vendor == 0x197b) |
ff758ccc SG |
472 | pci_write_config_byte(dev, 0x41, 0xa1); |
473 | #endif | |
e8a016b5 | 474 | #else |
1dc64f6c | 475 | struct scsi_platdata *plat = dev_get_uclass_platdata(dev); |
225b1da7 | 476 | uc_priv->mmio_base = (void *)plat->base; |
e8a016b5 | 477 | #endif |
4782ac80 | 478 | |
225b1da7 | 479 | debug("ahci mmio_base=0x%p\n", uc_priv->mmio_base); |
4782ac80 | 480 | /* initialize adapter */ |
225b1da7 | 481 | rc = ahci_host_init(uc_priv); |
4782ac80 JZ |
482 | if (rc) |
483 | goto err_out; | |
484 | ||
225b1da7 | 485 | ahci_print_info(uc_priv); |
4782ac80 JZ |
486 | |
487 | return 0; | |
488 | ||
4a7cc0f2 | 489 | err_out: |
4782ac80 JZ |
490 | return rc; |
491 | } | |
942e3143 | 492 | #endif |
4782ac80 JZ |
493 | |
494 | #define MAX_DATA_BYTE_COUNT (4*1024*1024) | |
4a7cc0f2 | 495 | |
225b1da7 SG |
496 | static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port, |
497 | unsigned char *buf, int buf_len) | |
4782ac80 | 498 | { |
225b1da7 | 499 | struct ahci_ioports *pp = &(uc_priv->port[port]); |
4782ac80 JZ |
500 | struct ahci_sg *ahci_sg = pp->cmd_tbl_sg; |
501 | u32 sg_count; | |
502 | int i; | |
503 | ||
504 | sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1; | |
4a7cc0f2 | 505 | if (sg_count > AHCI_MAX_SG) { |
4782ac80 JZ |
506 | printf("Error:Too much sg!\n"); |
507 | return -1; | |
508 | } | |
509 | ||
4a7cc0f2 | 510 | for (i = 0; i < sg_count; i++) { |
6e732553 RK |
511 | /* We assume virt=phys */ |
512 | phys_addr_t pa = (unsigned long)buf + i * MAX_DATA_BYTE_COUNT; | |
513 | ||
514 | ahci_sg->addr = cpu_to_le32(lower_32_bits(pa)); | |
515 | ahci_sg->addr_hi = cpu_to_le32(upper_32_bits(pa)); | |
516 | if (ahci_sg->addr_hi && !(uc_priv->cap & AHCI_CAP_S64A)) { | |
517 | printf("Error: DMA address too high\n"); | |
518 | return -1; | |
519 | } | |
4a7cc0f2 JL |
520 | ahci_sg->flags_size = cpu_to_le32(0x3fffff & |
521 | (buf_len < MAX_DATA_BYTE_COUNT | |
522 | ? (buf_len - 1) | |
523 | : (MAX_DATA_BYTE_COUNT - 1))); | |
4782ac80 JZ |
524 | ahci_sg++; |
525 | buf_len -= MAX_DATA_BYTE_COUNT; | |
526 | } | |
527 | ||
528 | return sg_count; | |
529 | } | |
530 | ||
531 | ||
532 | static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts) | |
533 | { | |
534 | pp->cmd_slot->opts = cpu_to_le32(opts); | |
535 | pp->cmd_slot->status = 0; | |
fa31377e TY |
536 | pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff); |
537 | #ifdef CONFIG_PHYS_64BIT | |
538 | pp->cmd_slot->tbl_addr_hi = | |
539 | cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16)); | |
540 | #endif | |
4782ac80 JZ |
541 | } |
542 | ||
fa31377e | 543 | static int wait_spinup(void __iomem *port_mmio) |
4df2b48f BM |
544 | { |
545 | ulong start; | |
546 | u32 tf_data; | |
547 | ||
548 | start = get_timer(0); | |
549 | do { | |
550 | tf_data = readl(port_mmio + PORT_TFDATA); | |
551 | if (!(tf_data & ATA_BUSY)) | |
552 | return 0; | |
553 | } while (get_timer(start) < WAIT_MS_SPINUP); | |
554 | ||
555 | return -ETIMEDOUT; | |
556 | } | |
4782ac80 | 557 | |
225b1da7 | 558 | static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port) |
4782ac80 | 559 | { |
225b1da7 | 560 | struct ahci_ioports *pp = &(uc_priv->port[port]); |
fa31377e | 561 | void __iomem *port_mmio = pp->port_mmio; |
5b7a2bf3 | 562 | u64 dma_addr; |
4782ac80 | 563 | u32 port_status; |
fa31377e | 564 | void __iomem *mem; |
4782ac80 | 565 | |
4a7cc0f2 | 566 | debug("Enter start port: %d\n", port); |
4782ac80 | 567 | port_status = readl(port_mmio + PORT_SCR_STAT); |
4a7cc0f2 JL |
568 | debug("Port %d status: %x\n", port, port_status); |
569 | if ((port_status & 0xf) != 0x03) { | |
4782ac80 JZ |
570 | printf("No Link on this port!\n"); |
571 | return -1; | |
572 | } | |
573 | ||
28b4ba94 | 574 | mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ); |
4782ac80 JZ |
575 | if (!mem) { |
576 | free(pp); | |
d73763a4 | 577 | printf("%s: No mem for table!\n", __func__); |
4782ac80 JZ |
578 | return -ENOMEM; |
579 | } | |
fa31377e | 580 | memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ); |
4782ac80 | 581 | |
4782ac80 JZ |
582 | /* |
583 | * First item in chunk of DMA memory: 32-slot command table, | |
584 | * 32 bytes each in size | |
585 | */ | |
64738e8a TH |
586 | pp->cmd_slot = |
587 | (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem); | |
fa31377e | 588 | debug("cmd_slot = %p\n", pp->cmd_slot); |
4782ac80 | 589 | mem += (AHCI_CMD_SLOT_SZ + 224); |
4a7cc0f2 | 590 | |
4782ac80 JZ |
591 | /* |
592 | * Second item: Received-FIS area | |
593 | */ | |
64738e8a | 594 | pp->rx_fis = virt_to_phys((void *)mem); |
4782ac80 | 595 | mem += AHCI_RX_FIS_SZ; |
4a7cc0f2 | 596 | |
4782ac80 JZ |
597 | /* |
598 | * Third item: data area for storing a single command | |
599 | * and its scatter-gather table | |
600 | */ | |
64738e8a | 601 | pp->cmd_tbl = virt_to_phys((void *)mem); |
fa31377e | 602 | debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl); |
4782ac80 JZ |
603 | |
604 | mem += AHCI_CMD_TBL_HDR; | |
64738e8a TH |
605 | pp->cmd_tbl_sg = |
606 | (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem); | |
4782ac80 | 607 | |
5b7a2bf3 OR |
608 | dma_addr = (ulong)pp->cmd_slot; |
609 | writel_with_flush(dma_addr, port_mmio + PORT_LST_ADDR); | |
610 | writel_with_flush(dma_addr >> 32, port_mmio + PORT_LST_ADDR_HI); | |
611 | dma_addr = (ulong)pp->rx_fis; | |
612 | writel_with_flush(dma_addr, port_mmio + PORT_FIS_ADDR); | |
613 | writel_with_flush(dma_addr >> 32, port_mmio + PORT_FIS_ADDR_HI); | |
4782ac80 | 614 | |
a6e50a88 IC |
615 | #ifdef CONFIG_SUNXI_AHCI |
616 | sunxi_dma_init(port_mmio); | |
617 | #endif | |
618 | ||
4782ac80 | 619 | writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX | |
4a7cc0f2 JL |
620 | PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP | |
621 | PORT_CMD_START, port_mmio + PORT_CMD); | |
4782ac80 | 622 | |
4a7cc0f2 | 623 | debug("Exit start port %d\n", port); |
4782ac80 | 624 | |
4df2b48f BM |
625 | /* |
626 | * Make sure interface is not busy based on error and status | |
627 | * information from task file data register before proceeding | |
628 | */ | |
629 | return wait_spinup(port_mmio); | |
4782ac80 JZ |
630 | } |
631 | ||
632 | ||
225b1da7 SG |
633 | static int ahci_device_data_io(struct ahci_uc_priv *uc_priv, u8 port, u8 *fis, |
634 | int fis_len, u8 *buf, int buf_len, u8 is_write) | |
4782ac80 JZ |
635 | { |
636 | ||
225b1da7 | 637 | struct ahci_ioports *pp = &(uc_priv->port[port]); |
fa31377e | 638 | void __iomem *port_mmio = pp->port_mmio; |
4782ac80 JZ |
639 | u32 opts; |
640 | u32 port_status; | |
641 | int sg_count; | |
642 | ||
b7a21b70 | 643 | debug("Enter %s: for port %d\n", __func__, port); |
4782ac80 | 644 | |
225b1da7 | 645 | if (port > uc_priv->n_ports) { |
5a2b77f4 | 646 | printf("Invalid port number %d\n", port); |
4782ac80 JZ |
647 | return -1; |
648 | } | |
649 | ||
650 | port_status = readl(port_mmio + PORT_SCR_STAT); | |
4a7cc0f2 JL |
651 | if ((port_status & 0xf) != 0x03) { |
652 | debug("No Link on port %d!\n", port); | |
4782ac80 JZ |
653 | return -1; |
654 | } | |
655 | ||
656 | memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len); | |
657 | ||
225b1da7 | 658 | sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len); |
b7a21b70 | 659 | opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6); |
4782ac80 JZ |
660 | ahci_fill_cmd_slot(pp, opts); |
661 | ||
90b276f6 | 662 | ahci_dcache_flush_sata_cmd(pp); |
fa31377e | 663 | ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len); |
90b276f6 | 664 | |
4782ac80 JZ |
665 | writel_with_flush(1, port_mmio + PORT_CMD_ISSUE); |
666 | ||
57847660 WM |
667 | if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE, |
668 | WAIT_MS_DATAIO, 0x1)) { | |
4782ac80 JZ |
669 | printf("timeout exit!\n"); |
670 | return -1; | |
671 | } | |
90b276f6 | 672 | |
fa31377e TY |
673 | ahci_dcache_invalidate_range((unsigned long)buf, |
674 | (unsigned long)buf_len); | |
b7a21b70 | 675 | debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status); |
4782ac80 JZ |
676 | |
677 | return 0; | |
678 | } | |
679 | ||
680 | ||
681 | static char *ata_id_strcpy(u16 *target, u16 *src, int len) | |
682 | { | |
683 | int i; | |
4a7cc0f2 | 684 | for (i = 0; i < len / 2; i++) |
e5a6c79d | 685 | target[i] = swab16(src[i]); |
4782ac80 JZ |
686 | return (char *)target; |
687 | } | |
688 | ||
4782ac80 JZ |
689 | /* |
690 | * SCSI INQUIRY command operation. | |
691 | */ | |
4b62b2ff SG |
692 | static int ata_scsiop_inquiry(struct ahci_uc_priv *uc_priv, |
693 | struct scsi_cmd *pccb) | |
4782ac80 | 694 | { |
48c3a87c | 695 | static const u8 hdr[] = { |
4782ac80 JZ |
696 | 0, |
697 | 0, | |
4a7cc0f2 | 698 | 0x5, /* claim SPC-3 version compatibility */ |
4782ac80 JZ |
699 | 2, |
700 | 95 - 4, | |
701 | }; | |
702 | u8 fis[20]; | |
3f629711 | 703 | u16 *idbuf; |
2faf5fb8 | 704 | ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS); |
4782ac80 JZ |
705 | u8 port; |
706 | ||
707 | /* Clean ccb data buffer */ | |
708 | memset(pccb->pdata, 0, pccb->datalen); | |
709 | ||
710 | memcpy(pccb->pdata, hdr, sizeof(hdr)); | |
711 | ||
4a7cc0f2 | 712 | if (pccb->datalen <= 35) |
4782ac80 JZ |
713 | return 0; |
714 | ||
c8731115 | 715 | memset(fis, 0, sizeof(fis)); |
4782ac80 | 716 | /* Construct the FIS */ |
4a7cc0f2 JL |
717 | fis[0] = 0x27; /* Host to device FIS. */ |
718 | fis[1] = 1 << 7; /* Command FIS. */ | |
344ca0b4 | 719 | fis[2] = ATA_CMD_ID_ATA; /* Command byte. */ |
4782ac80 JZ |
720 | |
721 | /* Read id from sata */ | |
722 | port = pccb->target; | |
4782ac80 | 723 | |
225b1da7 SG |
724 | if (ahci_device_data_io(uc_priv, port, (u8 *)&fis, sizeof(fis), |
725 | (u8 *)tmpid, ATA_ID_WORDS * 2, 0)) { | |
4782ac80 JZ |
726 | debug("scsi_ahci: SCSI inquiry command failure.\n"); |
727 | return -EIO; | |
728 | } | |
729 | ||
4b62b2ff SG |
730 | if (!uc_priv->ataid[port]) { |
731 | uc_priv->ataid[port] = malloc(ATA_ID_WORDS * 2); | |
732 | if (!uc_priv->ataid[port]) { | |
3f629711 RQ |
733 | printf("%s: No memory for ataid[port]\n", __func__); |
734 | return -ENOMEM; | |
735 | } | |
736 | } | |
737 | ||
4b62b2ff | 738 | idbuf = uc_priv->ataid[port]; |
3f629711 RQ |
739 | |
740 | memcpy(idbuf, tmpid, ATA_ID_WORDS * 2); | |
741 | ata_swap_buf_le16(idbuf, ATA_ID_WORDS); | |
4782ac80 JZ |
742 | |
743 | memcpy(&pccb->pdata[8], "ATA ", 8); | |
3f629711 RQ |
744 | ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16); |
745 | ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4); | |
4782ac80 | 746 | |
344ca0b4 | 747 | #ifdef DEBUG |
3f629711 | 748 | ata_dump_id(idbuf); |
344ca0b4 | 749 | #endif |
4782ac80 JZ |
750 | return 0; |
751 | } | |
752 | ||
753 | ||
754 | /* | |
b7a21b70 | 755 | * SCSI READ10/WRITE10 command operation. |
4782ac80 | 756 | */ |
225b1da7 SG |
757 | static int ata_scsiop_read_write(struct ahci_uc_priv *uc_priv, |
758 | struct scsi_cmd *pccb, u8 is_write) | |
4782ac80 | 759 | { |
2b42c931 | 760 | lbaint_t lba = 0; |
284231e4 | 761 | u16 blocks = 0; |
4782ac80 | 762 | u8 fis[20]; |
284231e4 VB |
763 | u8 *user_buffer = pccb->pdata; |
764 | u32 user_buffer_size = pccb->datalen; | |
4782ac80 | 765 | |
284231e4 | 766 | /* Retrieve the base LBA number from the ccb structure. */ |
2b42c931 ML |
767 | if (pccb->cmd[0] == SCSI_READ16) { |
768 | memcpy(&lba, pccb->cmd + 2, 8); | |
769 | lba = be64_to_cpu(lba); | |
770 | } else { | |
771 | u32 temp; | |
772 | memcpy(&temp, pccb->cmd + 2, 4); | |
773 | lba = be32_to_cpu(temp); | |
774 | } | |
4782ac80 | 775 | |
284231e4 | 776 | /* |
2b42c931 ML |
777 | * Retrieve the base LBA number and the block count from |
778 | * the ccb structure. | |
284231e4 VB |
779 | * |
780 | * For 10-byte and 16-byte SCSI R/W commands, transfer | |
4782ac80 JZ |
781 | * length 0 means transfer 0 block of data. |
782 | * However, for ATA R/W commands, sector count 0 means | |
783 | * 256 or 65536 sectors, not 0 sectors as in SCSI. | |
784 | * | |
785 | * WARNING: one or two older ATA drives treat 0 as 0... | |
786 | */ | |
2b42c931 ML |
787 | if (pccb->cmd[0] == SCSI_READ16) |
788 | blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]); | |
789 | else | |
790 | blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]); | |
284231e4 | 791 | |
2b42c931 ML |
792 | debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n", |
793 | is_write ? "write" : "read", blocks, lba); | |
284231e4 VB |
794 | |
795 | /* Preset the FIS */ | |
c8731115 | 796 | memset(fis, 0, sizeof(fis)); |
284231e4 VB |
797 | fis[0] = 0x27; /* Host to device FIS. */ |
798 | fis[1] = 1 << 7; /* Command FIS. */ | |
b7a21b70 | 799 | /* Command byte (read/write). */ |
fe1f808c | 800 | fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT; |
4782ac80 | 801 | |
284231e4 VB |
802 | while (blocks) { |
803 | u16 now_blocks; /* number of blocks per iteration */ | |
804 | u32 transfer_size; /* number of bytes per iteration */ | |
805 | ||
b4141195 | 806 | now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks); |
284231e4 | 807 | |
344ca0b4 | 808 | transfer_size = ATA_SECT_SIZE * now_blocks; |
284231e4 VB |
809 | if (transfer_size > user_buffer_size) { |
810 | printf("scsi_ahci: Error: buffer too small.\n"); | |
811 | return -EIO; | |
812 | } | |
813 | ||
2b42c931 ML |
814 | /* |
815 | * LBA48 SATA command but only use 32bit address range within | |
816 | * that (unless we've enabled 64bit LBA support). The next | |
817 | * smaller command range (28bit) is too small. | |
fe1f808c | 818 | */ |
284231e4 VB |
819 | fis[4] = (lba >> 0) & 0xff; |
820 | fis[5] = (lba >> 8) & 0xff; | |
821 | fis[6] = (lba >> 16) & 0xff; | |
fe1f808c WM |
822 | fis[7] = 1 << 6; /* device reg: set LBA mode */ |
823 | fis[8] = ((lba >> 24) & 0xff); | |
2b42c931 ML |
824 | #ifdef CONFIG_SYS_64BIT_LBA |
825 | if (pccb->cmd[0] == SCSI_READ16) { | |
826 | fis[9] = ((lba >> 32) & 0xff); | |
827 | fis[10] = ((lba >> 40) & 0xff); | |
828 | } | |
829 | #endif | |
830 | ||
fe1f808c | 831 | fis[3] = 0xe0; /* features */ |
284231e4 VB |
832 | |
833 | /* Block (sector) count */ | |
834 | fis[12] = (now_blocks >> 0) & 0xff; | |
835 | fis[13] = (now_blocks >> 8) & 0xff; | |
836 | ||
b7a21b70 | 837 | /* Read/Write from ahci */ |
225b1da7 SG |
838 | if (ahci_device_data_io(uc_priv, pccb->target, (u8 *)&fis, |
839 | sizeof(fis), user_buffer, transfer_size, | |
b7a21b70 HTL |
840 | is_write)) { |
841 | debug("scsi_ahci: SCSI %s10 command failure.\n", | |
842 | is_write ? "WRITE" : "READ"); | |
284231e4 VB |
843 | return -EIO; |
844 | } | |
766b16fe MJ |
845 | |
846 | /* If this transaction is a write, do a following flush. | |
847 | * Writes in u-boot are so rare, and the logic to know when is | |
848 | * the last write and do a flush only there is sufficiently | |
849 | * difficult. Just do a flush after every write. This incurs, | |
850 | * usually, one extra flush when the rare writes do happen. | |
851 | */ | |
852 | if (is_write) { | |
225b1da7 | 853 | if (-EIO == ata_io_flush(uc_priv, pccb->target)) |
766b16fe MJ |
854 | return -EIO; |
855 | } | |
284231e4 VB |
856 | user_buffer += transfer_size; |
857 | user_buffer_size -= transfer_size; | |
858 | blocks -= now_blocks; | |
859 | lba += now_blocks; | |
4782ac80 JZ |
860 | } |
861 | ||
862 | return 0; | |
863 | } | |
864 | ||
865 | ||
866 | /* | |
867 | * SCSI READ CAPACITY10 command operation. | |
868 | */ | |
4b62b2ff SG |
869 | static int ata_scsiop_read_capacity10(struct ahci_uc_priv *uc_priv, |
870 | struct scsi_cmd *pccb) | |
4782ac80 | 871 | { |
cb6d0b72 | 872 | u32 cap; |
344ca0b4 | 873 | u64 cap64; |
19d1d41e | 874 | u32 block_size; |
4782ac80 | 875 | |
4b62b2ff | 876 | if (!uc_priv->ataid[pccb->target]) { |
4782ac80 | 877 | printf("scsi_ahci: SCSI READ CAPACITY10 command failure. " |
4a7cc0f2 | 878 | "\tNo ATA info!\n" |
1b25e586 | 879 | "\tPlease run SCSI command INQUIRY first!\n"); |
4782ac80 JZ |
880 | return -EPERM; |
881 | } | |
882 | ||
4b62b2ff | 883 | cap64 = ata_id_n_sectors(uc_priv->ataid[pccb->target]); |
344ca0b4 RH |
884 | if (cap64 > 0x100000000ULL) |
885 | cap64 = 0xffffffff; | |
19d1d41e | 886 | |
344ca0b4 | 887 | cap = cpu_to_be32(cap64); |
cb6d0b72 | 888 | memcpy(pccb->pdata, &cap, sizeof(cap)); |
4782ac80 | 889 | |
19d1d41e GB |
890 | block_size = cpu_to_be32((u32)512); |
891 | memcpy(&pccb->pdata[4], &block_size, 4); | |
892 | ||
893 | return 0; | |
894 | } | |
895 | ||
896 | ||
897 | /* | |
898 | * SCSI READ CAPACITY16 command operation. | |
899 | */ | |
4b62b2ff SG |
900 | static int ata_scsiop_read_capacity16(struct ahci_uc_priv *uc_priv, |
901 | struct scsi_cmd *pccb) | |
19d1d41e GB |
902 | { |
903 | u64 cap; | |
904 | u64 block_size; | |
905 | ||
4b62b2ff | 906 | if (!uc_priv->ataid[pccb->target]) { |
19d1d41e GB |
907 | printf("scsi_ahci: SCSI READ CAPACITY16 command failure. " |
908 | "\tNo ATA info!\n" | |
1b25e586 | 909 | "\tPlease run SCSI command INQUIRY first!\n"); |
19d1d41e GB |
910 | return -EPERM; |
911 | } | |
912 | ||
4b62b2ff | 913 | cap = ata_id_n_sectors(uc_priv->ataid[pccb->target]); |
19d1d41e GB |
914 | cap = cpu_to_be64(cap); |
915 | memcpy(pccb->pdata, &cap, sizeof(cap)); | |
916 | ||
917 | block_size = cpu_to_be64((u64)512); | |
918 | memcpy(&pccb->pdata[8], &block_size, 8); | |
4782ac80 JZ |
919 | |
920 | return 0; | |
921 | } | |
922 | ||
923 | ||
924 | /* | |
925 | * SCSI TEST UNIT READY command operation. | |
926 | */ | |
4b62b2ff SG |
927 | static int ata_scsiop_test_unit_ready(struct ahci_uc_priv *uc_priv, |
928 | struct scsi_cmd *pccb) | |
4782ac80 | 929 | { |
4b62b2ff | 930 | return (uc_priv->ataid[pccb->target]) ? 0 : -EPERM; |
4782ac80 JZ |
931 | } |
932 | ||
4a7cc0f2 | 933 | |
4e749014 | 934 | static int ahci_scsi_exec(struct udevice *dev, struct scsi_cmd *pccb) |
4782ac80 | 935 | { |
4682c8a1 SG |
936 | struct ahci_uc_priv *uc_priv; |
937 | #ifdef CONFIG_DM_SCSI | |
bfc1c6b4 | 938 | uc_priv = dev_get_uclass_priv(dev->parent); |
4682c8a1 SG |
939 | #else |
940 | uc_priv = probe_ent; | |
941 | #endif | |
4782ac80 JZ |
942 | int ret; |
943 | ||
4a7cc0f2 | 944 | switch (pccb->cmd[0]) { |
2b42c931 | 945 | case SCSI_READ16: |
4782ac80 | 946 | case SCSI_READ10: |
225b1da7 | 947 | ret = ata_scsiop_read_write(uc_priv, pccb, 0); |
b7a21b70 HTL |
948 | break; |
949 | case SCSI_WRITE10: | |
225b1da7 | 950 | ret = ata_scsiop_read_write(uc_priv, pccb, 1); |
4782ac80 | 951 | break; |
19d1d41e | 952 | case SCSI_RD_CAPAC10: |
4b62b2ff | 953 | ret = ata_scsiop_read_capacity10(uc_priv, pccb); |
4782ac80 | 954 | break; |
19d1d41e | 955 | case SCSI_RD_CAPAC16: |
4b62b2ff | 956 | ret = ata_scsiop_read_capacity16(uc_priv, pccb); |
19d1d41e | 957 | break; |
4782ac80 | 958 | case SCSI_TST_U_RDY: |
4b62b2ff | 959 | ret = ata_scsiop_test_unit_ready(uc_priv, pccb); |
4782ac80 JZ |
960 | break; |
961 | case SCSI_INQUIRY: | |
4b62b2ff | 962 | ret = ata_scsiop_inquiry(uc_priv, pccb); |
4782ac80 JZ |
963 | break; |
964 | default: | |
965 | printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]); | |
f6580ef3 | 966 | return -ENOTSUPP; |
4782ac80 JZ |
967 | } |
968 | ||
4a7cc0f2 JL |
969 | if (ret) { |
970 | debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret); | |
f6580ef3 | 971 | return ret; |
4782ac80 | 972 | } |
f6580ef3 | 973 | return 0; |
4782ac80 JZ |
974 | |
975 | } | |
976 | ||
62b4ec8e SG |
977 | static int ahci_start_ports(struct ahci_uc_priv *uc_priv) |
978 | { | |
979 | u32 linkmap; | |
980 | int i; | |
981 | ||
982 | linkmap = uc_priv->link_port_map; | |
983 | ||
8bf207d2 | 984 | for (i = 0; i < uc_priv->n_ports; i++) { |
62b4ec8e SG |
985 | if (((linkmap >> i) & 0x01)) { |
986 | if (ahci_port_start(uc_priv, (u8) i)) { | |
987 | printf("Can not start port %d\n", i); | |
988 | continue; | |
989 | } | |
990 | } | |
991 | } | |
992 | ||
993 | return 0; | |
994 | } | |
995 | ||
7cf1afce | 996 | #ifndef CONFIG_DM_SCSI |
4782ac80 JZ |
997 | void scsi_low_level_init(int busdevfunc) |
998 | { | |
225b1da7 | 999 | struct ahci_uc_priv *uc_priv; |
4782ac80 | 1000 | |
942e3143 | 1001 | #ifndef CONFIG_SCSI_AHCI_PLAT |
4279efc4 SG |
1002 | probe_ent = calloc(1, sizeof(struct ahci_uc_priv)); |
1003 | if (!probe_ent) { | |
1004 | printf("%s: No memory for uc_priv\n", __func__); | |
1005 | return; | |
1006 | } | |
1007 | uc_priv = probe_ent; | |
e8a016b5 | 1008 | # if defined(CONFIG_DM_PCI) |
ff758ccc SG |
1009 | struct udevice *dev; |
1010 | int ret; | |
1011 | ||
1012 | ret = dm_pci_bus_find_bdf(busdevfunc, &dev); | |
1013 | if (ret) | |
1014 | return; | |
4279efc4 | 1015 | ahci_init_one(uc_priv, dev); |
ff758ccc | 1016 | # else |
4279efc4 | 1017 | ahci_init_one(uc_priv, busdevfunc); |
ff758ccc | 1018 | # endif |
4279efc4 | 1019 | #else |
225b1da7 | 1020 | uc_priv = probe_ent; |
4279efc4 | 1021 | #endif |
4782ac80 | 1022 | |
62b4ec8e | 1023 | ahci_start_ports(uc_priv); |
4782ac80 | 1024 | } |
7cf1afce SG |
1025 | #endif |
1026 | ||
1027 | #ifndef CONFIG_SCSI_AHCI_PLAT | |
1028 | # if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI) | |
e81589ea | 1029 | int ahci_init_one_dm(struct udevice *dev) |
7cf1afce | 1030 | { |
4279efc4 SG |
1031 | struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev); |
1032 | ||
1033 | return ahci_init_one(uc_priv, dev); | |
7cf1afce SG |
1034 | } |
1035 | #endif | |
1036 | #endif | |
1037 | ||
e81589ea | 1038 | int ahci_start_ports_dm(struct udevice *dev) |
7cf1afce | 1039 | { |
4279efc4 | 1040 | struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev); |
7cf1afce SG |
1041 | |
1042 | return ahci_start_ports(uc_priv); | |
1043 | } | |
4782ac80 | 1044 | |
942e3143 | 1045 | #ifdef CONFIG_SCSI_AHCI_PLAT |
4279efc4 | 1046 | static int ahci_init_common(struct ahci_uc_priv *uc_priv, void __iomem *base) |
942e3143 | 1047 | { |
4279efc4 | 1048 | int rc; |
942e3143 | 1049 | |
225b1da7 | 1050 | uc_priv->host_flags = ATA_FLAG_SATA |
942e3143 RH |
1051 | | ATA_FLAG_NO_LEGACY |
1052 | | ATA_FLAG_MMIO | |
1053 | | ATA_FLAG_PIO_DMA | |
1054 | | ATA_FLAG_NO_ATAPI; | |
225b1da7 SG |
1055 | uc_priv->pio_mask = 0x1f; |
1056 | uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */ | |
942e3143 | 1057 | |
225b1da7 | 1058 | uc_priv->mmio_base = base; |
942e3143 RH |
1059 | |
1060 | /* initialize adapter */ | |
225b1da7 | 1061 | rc = ahci_host_init(uc_priv); |
942e3143 RH |
1062 | if (rc) |
1063 | goto err_out; | |
1064 | ||
225b1da7 | 1065 | ahci_print_info(uc_priv); |
942e3143 | 1066 | |
62b4ec8e | 1067 | rc = ahci_start_ports(uc_priv); |
942e3143 | 1068 | |
942e3143 RH |
1069 | err_out: |
1070 | return rc; | |
1071 | } | |
c6f3d50b | 1072 | |
4279efc4 SG |
1073 | #ifndef CONFIG_DM_SCSI |
1074 | int ahci_init(void __iomem *base) | |
1075 | { | |
1076 | struct ahci_uc_priv *uc_priv; | |
1077 | ||
1078 | probe_ent = malloc(sizeof(struct ahci_uc_priv)); | |
1079 | if (!probe_ent) { | |
1080 | printf("%s: No memory for uc_priv\n", __func__); | |
1081 | return -ENOMEM; | |
1082 | } | |
1083 | ||
1084 | uc_priv = probe_ent; | |
1085 | memset(uc_priv, 0, sizeof(struct ahci_uc_priv)); | |
1086 | ||
1087 | return ahci_init_common(uc_priv, base); | |
1088 | } | |
1089 | #endif | |
1090 | ||
1091 | int ahci_init_dm(struct udevice *dev, void __iomem *base) | |
1092 | { | |
1093 | struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev); | |
1094 | ||
1095 | return ahci_init_common(uc_priv, base); | |
1096 | } | |
1097 | ||
c6f3d50b IC |
1098 | void __weak scsi_init(void) |
1099 | { | |
1100 | } | |
1101 | ||
4279efc4 | 1102 | #endif /* CONFIG_SCSI_AHCI_PLAT */ |
4782ac80 | 1103 | |
766b16fe MJ |
1104 | /* |
1105 | * In the general case of generic rotating media it makes sense to have a | |
1106 | * flush capability. It probably even makes sense in the case of SSDs because | |
1107 | * one cannot always know for sure what kind of internal cache/flush mechanism | |
1108 | * is embodied therein. At first it was planned to invoke this after the last | |
1109 | * write to disk and before rebooting. In practice, knowing, a priori, which | |
1110 | * is the last write is difficult. Because writing to the disk in u-boot is | |
1111 | * very rare, this flush command will be invoked after every block write. | |
1112 | */ | |
225b1da7 | 1113 | static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port) |
766b16fe MJ |
1114 | { |
1115 | u8 fis[20]; | |
225b1da7 | 1116 | struct ahci_ioports *pp = &(uc_priv->port[port]); |
fa31377e | 1117 | void __iomem *port_mmio = pp->port_mmio; |
766b16fe MJ |
1118 | u32 cmd_fis_len = 5; /* five dwords */ |
1119 | ||
1120 | /* Preset the FIS */ | |
1121 | memset(fis, 0, 20); | |
1122 | fis[0] = 0x27; /* Host to device FIS. */ | |
1123 | fis[1] = 1 << 7; /* Command FIS. */ | |
fe1f808c | 1124 | fis[2] = ATA_CMD_FLUSH_EXT; |
766b16fe MJ |
1125 | |
1126 | memcpy((unsigned char *)pp->cmd_tbl, fis, 20); | |
1127 | ahci_fill_cmd_slot(pp, cmd_fis_len); | |
75e14b1a | 1128 | ahci_dcache_flush_sata_cmd(pp); |
766b16fe MJ |
1129 | writel_with_flush(1, port_mmio + PORT_CMD_ISSUE); |
1130 | ||
1131 | if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE, | |
1132 | WAIT_MS_FLUSH, 0x1)) { | |
1133 | debug("scsi_ahci: flush command timeout on port %d.\n", port); | |
1134 | return -EIO; | |
1135 | } | |
1136 | ||
1137 | return 0; | |
1138 | } | |
1139 | ||
4e749014 SG |
1140 | static int ahci_scsi_bus_reset(struct udevice *dev) |
1141 | { | |
1142 | /* Not implemented */ | |
1143 | ||
1144 | return 0; | |
1145 | } | |
1146 | ||
f6ab5a92 | 1147 | #ifdef CONFIG_DM_SCSI |
681357ff SG |
1148 | int ahci_bind_scsi(struct udevice *ahci_dev, struct udevice **devp) |
1149 | { | |
1150 | struct udevice *dev; | |
1151 | int ret; | |
1152 | ||
1153 | ret = device_bind_driver(ahci_dev, "ahci_scsi", "ahci_scsi", &dev); | |
1154 | if (ret) | |
1155 | return ret; | |
1156 | *devp = dev; | |
1157 | ||
1158 | return 0; | |
1159 | } | |
1160 | ||
745a94f3 | 1161 | int ahci_probe_scsi(struct udevice *ahci_dev, ulong base) |
681357ff | 1162 | { |
681357ff SG |
1163 | struct ahci_uc_priv *uc_priv; |
1164 | struct scsi_platdata *uc_plat; | |
1165 | struct udevice *dev; | |
1166 | int ret; | |
1167 | ||
1168 | device_find_first_child(ahci_dev, &dev); | |
1169 | if (!dev) | |
1170 | return -ENODEV; | |
1171 | uc_plat = dev_get_uclass_platdata(dev); | |
745a94f3 | 1172 | uc_plat->base = base; |
681357ff SG |
1173 | uc_plat->max_lun = 1; |
1174 | uc_plat->max_id = 2; | |
745a94f3 SG |
1175 | |
1176 | uc_priv = dev_get_uclass_priv(ahci_dev); | |
681357ff SG |
1177 | ret = ahci_init_one(uc_priv, dev); |
1178 | if (ret) | |
1179 | return ret; | |
1180 | ret = ahci_start_ports(uc_priv); | |
1181 | if (ret) | |
1182 | return ret; | |
681357ff | 1183 | |
bd98e6ae PA |
1184 | /* |
1185 | * scsi_scan_dev() scans devices up-to the number of max_id. | |
1186 | * Update max_id if the number of detected ports exceeds max_id. | |
1187 | * This allows SCSI to scan all detected ports. | |
1188 | */ | |
1189 | uc_plat->max_id = max_t(unsigned long, uc_priv->n_ports, | |
1190 | uc_plat->max_id); | |
1191 | ||
681357ff SG |
1192 | return 0; |
1193 | } | |
1194 | ||
745a94f3 SG |
1195 | #ifdef CONFIG_DM_PCI |
1196 | int ahci_probe_scsi_pci(struct udevice *ahci_dev) | |
1197 | { | |
1198 | ulong base; | |
1199 | ||
1200 | base = (ulong)dm_pci_map_bar(ahci_dev, PCI_BASE_ADDRESS_5, | |
1201 | PCI_REGION_MEM); | |
1202 | ||
1203 | return ahci_probe_scsi(ahci_dev, base); | |
1204 | } | |
1205 | #endif | |
1206 | ||
f6ab5a92 SG |
1207 | struct scsi_ops scsi_ops = { |
1208 | .exec = ahci_scsi_exec, | |
1209 | .bus_reset = ahci_scsi_bus_reset, | |
1210 | }; | |
681357ff SG |
1211 | |
1212 | U_BOOT_DRIVER(ahci_scsi) = { | |
1213 | .name = "ahci_scsi", | |
1214 | .id = UCLASS_SCSI, | |
1215 | .ops = &scsi_ops, | |
1216 | }; | |
f6ab5a92 | 1217 | #else |
4e749014 SG |
1218 | int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb) |
1219 | { | |
1220 | return ahci_scsi_exec(dev, pccb); | |
1221 | } | |
766b16fe | 1222 | |
4682c8a1 | 1223 | __weak int scsi_bus_reset(struct udevice *dev) |
4782ac80 | 1224 | { |
4e749014 | 1225 | return ahci_scsi_bus_reset(dev); |
4682c8a1 SG |
1226 | |
1227 | return 0; | |
4782ac80 | 1228 | } |
f6ab5a92 | 1229 | #endif |