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