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