2 * Copyright (C) Freescale Semiconductor, Inc. 2006.
3 * Author: Jason Jin<Jason.jin@freescale.com>
4 * Zhang Wei<wei.zhang@freescale.com>
6 * SPDX-License-Identifier: GPL-2.0+
8 * with the reference on libata and ahci drvier in kernel
10 * This driver provides a SCSI interface to SATA.
17 #include <asm/processor.h>
18 #include <linux/errno.h>
24 #include <linux/ctype.h>
27 static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port);
29 #ifndef CONFIG_DM_SCSI
30 struct ahci_uc_priv *probe_ent = NULL;
33 #define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
36 * Some controllers limit number of blocks they can read/write at once.
37 * Contemporary SSD devices work much faster if the read/write size is aligned
38 * to a power of 2. Let's set default to 128 and allowing to be overwritten if
41 #ifndef MAX_SATA_BLOCKS_READ_WRITE
42 #define MAX_SATA_BLOCKS_READ_WRITE 0x80
45 /* Maximum timeouts for each event */
46 #define WAIT_MS_SPINUP 20000
47 #define WAIT_MS_DATAIO 10000
48 #define WAIT_MS_FLUSH 5000
49 #define WAIT_MS_LINKUP 200
51 __weak void __iomem *ahci_port_base(void __iomem *base, u32 port)
53 return base + 0x100 + (port * 0x80);
57 static void ahci_setup_port(struct ahci_ioports *port, void __iomem *base,
58 unsigned int port_idx)
60 base = ahci_port_base(base, port_idx);
62 port->cmd_addr = base;
63 port->scr_addr = base + PORT_SCR;
67 #define msleep(a) udelay(a * 1000)
69 static void ahci_dcache_flush_range(unsigned long begin, unsigned long len)
71 const unsigned long start = begin;
72 const unsigned long end = start + len;
74 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
75 flush_dcache_range(start, end);
79 * SATA controller DMAs to physical RAM. Ensure data from the
80 * controller is invalidated from dcache; next access comes from
83 static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len)
85 const unsigned long start = begin;
86 const unsigned long end = start + len;
88 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
89 invalidate_dcache_range(start, end);
93 * Ensure data for SATA controller is flushed out of dcache and
94 * written to physical memory.
96 static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
98 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
99 AHCI_PORT_PRIV_DMA_SZ);
102 static int waiting_for_cmd_completed(void __iomem *offset,
109 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
112 return (i < timeout_msec) ? 0 : -1;
115 int __weak ahci_link_up(struct ahci_uc_priv *uc_priv, u8 port)
119 void __iomem *port_mmio = uc_priv->port[port].port_mmio;
122 * Bring up SATA link.
123 * SATA link bringup time is usually less than 1 ms; only very
124 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
126 while (j < WAIT_MS_LINKUP) {
127 tmp = readl(port_mmio + PORT_SCR_STAT);
128 tmp &= PORT_SCR_STAT_DET_MASK;
129 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
137 #ifdef CONFIG_SUNXI_AHCI
138 /* The sunxi AHCI controller requires this undocumented setup */
139 static void sunxi_dma_init(void __iomem *port_mmio)
141 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
145 int ahci_reset(void __iomem *base)
148 u32 __iomem *host_ctl_reg = base + HOST_CTL;
149 u32 tmp = readl(host_ctl_reg); /* global controller reset */
151 if ((tmp & HOST_RESET) == 0)
152 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
155 * reset must complete within 1 second, or
156 * the hardware should be considered fried.
160 tmp = readl(host_ctl_reg);
162 } while ((i > 0) && (tmp & HOST_RESET));
165 printf("controller reset failed (0x%x)\n", tmp);
172 static int ahci_host_init(struct ahci_uc_priv *uc_priv)
174 #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
175 # ifdef CONFIG_DM_PCI
176 struct udevice *dev = uc_priv->dev;
177 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
179 pci_dev_t pdev = uc_priv->dev;
180 unsigned short vendor;
184 void __iomem *mmio = uc_priv->mmio_base;
185 u32 tmp, cap_save, cmd;
187 void __iomem *port_mmio;
190 debug("ahci_host_init: start\n");
192 cap_save = readl(mmio + HOST_CAP);
193 cap_save &= ((1 << 28) | (1 << 17));
194 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
196 ret = ahci_reset(uc_priv->mmio_base);
200 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
201 writel(cap_save, mmio + HOST_CAP);
202 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
204 #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
205 # ifdef CONFIG_DM_PCI
206 if (pplat->vendor == PCI_VENDOR_ID_INTEL) {
209 dm_pci_read_config16(dev, 0x92, &tmp16);
210 dm_pci_write_config16(dev, 0x92, tmp16 | 0xf);
213 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
215 if (vendor == PCI_VENDOR_ID_INTEL) {
217 pci_read_config_word(pdev, 0x92, &tmp16);
219 pci_write_config_word(pdev, 0x92, tmp16);
223 uc_priv->cap = readl(mmio + HOST_CAP);
224 uc_priv->port_map = readl(mmio + HOST_PORTS_IMPL);
225 port_map = uc_priv->port_map;
226 uc_priv->n_ports = (uc_priv->cap & 0x1f) + 1;
228 debug("cap 0x%x port_map 0x%x n_ports %d\n",
229 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
231 if (uc_priv->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
232 uc_priv->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
234 for (i = 0; i < uc_priv->n_ports; i++) {
235 if (!(port_map & (1 << i)))
237 uc_priv->port[i].port_mmio = ahci_port_base(mmio, i);
238 port_mmio = (u8 *)uc_priv->port[i].port_mmio;
239 ahci_setup_port(&uc_priv->port[i], mmio, i);
241 /* make sure port is not active */
242 tmp = readl(port_mmio + PORT_CMD);
243 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
244 PORT_CMD_FIS_RX | PORT_CMD_START)) {
245 debug("Port %d is active. Deactivating.\n", i);
246 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
247 PORT_CMD_FIS_RX | PORT_CMD_START);
248 writel_with_flush(tmp, port_mmio + PORT_CMD);
250 /* spec says 500 msecs for each bit, so
251 * this is slightly incorrect.
256 #ifdef CONFIG_SUNXI_AHCI
257 sunxi_dma_init(port_mmio);
260 /* Add the spinup command to whatever mode bits may
261 * already be on in the command register.
263 cmd = readl(port_mmio + PORT_CMD);
264 cmd |= PORT_CMD_SPIN_UP;
265 writel_with_flush(cmd, port_mmio + PORT_CMD);
267 /* Bring up SATA link. */
268 ret = ahci_link_up(uc_priv, i);
270 printf("SATA link %d timeout.\n", i);
273 debug("SATA link ok.\n");
276 /* Clear error status */
277 tmp = readl(port_mmio + PORT_SCR_ERR);
279 writel(tmp, port_mmio + PORT_SCR_ERR);
281 debug("Spinning up device on SATA port %d... ", i);
284 while (j < WAIT_MS_SPINUP) {
285 tmp = readl(port_mmio + PORT_TFDATA);
286 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
289 tmp = readl(port_mmio + PORT_SCR_STAT);
290 tmp &= PORT_SCR_STAT_DET_MASK;
291 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
296 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
297 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
298 debug("SATA link %d down (COMINIT received), retrying...\n", i);
303 printf("Target spinup took %d ms.\n", j);
304 if (j == WAIT_MS_SPINUP)
309 tmp = readl(port_mmio + PORT_SCR_ERR);
310 debug("PORT_SCR_ERR 0x%x\n", tmp);
311 writel(tmp, port_mmio + PORT_SCR_ERR);
313 /* ack any pending irq events for this port */
314 tmp = readl(port_mmio + PORT_IRQ_STAT);
315 debug("PORT_IRQ_STAT 0x%x\n", tmp);
317 writel(tmp, port_mmio + PORT_IRQ_STAT);
319 writel(1 << i, mmio + HOST_IRQ_STAT);
321 /* register linkup ports */
322 tmp = readl(port_mmio + PORT_SCR_STAT);
323 debug("SATA port %d status: 0x%x\n", i, tmp);
324 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
325 uc_priv->link_port_map |= (0x01 << i);
328 tmp = readl(mmio + HOST_CTL);
329 debug("HOST_CTL 0x%x\n", tmp);
330 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
331 tmp = readl(mmio + HOST_CTL);
332 debug("HOST_CTL 0x%x\n", tmp);
333 #if !defined(CONFIG_DM_SCSI)
334 #ifndef CONFIG_SCSI_AHCI_PLAT
335 # ifdef CONFIG_DM_PCI
336 dm_pci_read_config16(dev, PCI_COMMAND, &tmp16);
337 tmp |= PCI_COMMAND_MASTER;
338 dm_pci_write_config16(dev, PCI_COMMAND, tmp16);
340 pci_read_config_word(pdev, PCI_COMMAND, &tmp16);
341 tmp |= PCI_COMMAND_MASTER;
342 pci_write_config_word(pdev, PCI_COMMAND, tmp16);
350 static void ahci_print_info(struct ahci_uc_priv *uc_priv)
352 #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
353 # if defined(CONFIG_DM_PCI)
354 struct udevice *dev = uc_priv->dev;
356 pci_dev_t pdev = uc_priv->dev;
360 void __iomem *mmio = uc_priv->mmio_base;
361 u32 vers, cap, cap2, impl, speed;
365 vers = readl(mmio + HOST_VERSION);
367 cap2 = readl(mmio + HOST_CAP2);
368 impl = uc_priv->port_map;
370 speed = (cap >> 20) & 0xf;
380 #if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI)
383 # ifdef CONFIG_DM_PCI
384 dm_pci_read_config16(dev, 0x0a, &cc);
386 pci_read_config_word(pdev, 0x0a, &cc);
390 else if (cc == 0x0106)
392 else if (cc == 0x0104)
397 printf("AHCI %02x%02x.%02x%02x "
398 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
403 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
409 cap & (1 << 31) ? "64bit " : "",
410 cap & (1 << 30) ? "ncq " : "",
411 cap & (1 << 28) ? "ilck " : "",
412 cap & (1 << 27) ? "stag " : "",
413 cap & (1 << 26) ? "pm " : "",
414 cap & (1 << 25) ? "led " : "",
415 cap & (1 << 24) ? "clo " : "",
416 cap & (1 << 19) ? "nz " : "",
417 cap & (1 << 18) ? "only " : "",
418 cap & (1 << 17) ? "pmp " : "",
419 cap & (1 << 16) ? "fbss " : "",
420 cap & (1 << 15) ? "pio " : "",
421 cap & (1 << 14) ? "slum " : "",
422 cap & (1 << 13) ? "part " : "",
423 cap & (1 << 7) ? "ccc " : "",
424 cap & (1 << 6) ? "ems " : "",
425 cap & (1 << 5) ? "sxs " : "",
426 cap2 & (1 << 2) ? "apst " : "",
427 cap2 & (1 << 1) ? "nvmp " : "",
428 cap2 & (1 << 0) ? "boh " : "");
431 #ifndef CONFIG_SCSI_AHCI_PLAT
432 # if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
433 static int ahci_init_one(struct ahci_uc_priv *uc_priv, struct udevice *dev)
435 static int ahci_init_one(struct ahci_uc_priv *uc_priv, pci_dev_t dev)
438 #if !defined(CONFIG_DM_SCSI)
445 uc_priv->host_flags = ATA_FLAG_SATA
450 uc_priv->pio_mask = 0x1f;
451 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
453 #if !defined(CONFIG_DM_SCSI)
455 uc_priv->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5,
459 * JMicron-specific fixup:
460 * make sure we're in AHCI mode
462 dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor);
463 if (vendor == 0x197b)
464 dm_pci_write_config8(dev, 0x41, 0xa1);
466 uc_priv->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5,
470 * JMicron-specific fixup:
471 * make sure we're in AHCI mode
473 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
474 if (vendor == 0x197b)
475 pci_write_config_byte(dev, 0x41, 0xa1);
478 struct scsi_platdata *plat = dev_get_uclass_platdata(dev);
479 uc_priv->mmio_base = (void *)plat->base;
482 debug("ahci mmio_base=0x%p\n", uc_priv->mmio_base);
483 /* initialize adapter */
484 rc = ahci_host_init(uc_priv);
488 ahci_print_info(uc_priv);
497 #define MAX_DATA_BYTE_COUNT (4*1024*1024)
499 static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
500 unsigned char *buf, int buf_len)
502 struct ahci_ioports *pp = &(uc_priv->port[port]);
503 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
507 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
508 if (sg_count > AHCI_MAX_SG) {
509 printf("Error:Too much sg!\n");
513 for (i = 0; i < sg_count; i++) {
515 cpu_to_le32((unsigned long) buf + i * MAX_DATA_BYTE_COUNT);
516 ahci_sg->addr_hi = 0;
517 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
518 (buf_len < MAX_DATA_BYTE_COUNT
520 : (MAX_DATA_BYTE_COUNT - 1)));
522 buf_len -= MAX_DATA_BYTE_COUNT;
529 static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
531 pp->cmd_slot->opts = cpu_to_le32(opts);
532 pp->cmd_slot->status = 0;
533 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
534 #ifdef CONFIG_PHYS_64BIT
535 pp->cmd_slot->tbl_addr_hi =
536 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
540 static int wait_spinup(void __iomem *port_mmio)
545 start = get_timer(0);
547 tf_data = readl(port_mmio + PORT_TFDATA);
548 if (!(tf_data & ATA_BUSY))
550 } while (get_timer(start) < WAIT_MS_SPINUP);
555 static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
557 struct ahci_ioports *pp = &(uc_priv->port[port]);
558 void __iomem *port_mmio = pp->port_mmio;
562 debug("Enter start port: %d\n", port);
563 port_status = readl(port_mmio + PORT_SCR_STAT);
564 debug("Port %d status: %x\n", port, port_status);
565 if ((port_status & 0xf) != 0x03) {
566 printf("No Link on this port!\n");
570 mem = malloc(AHCI_PORT_PRIV_DMA_SZ + 2048);
573 printf("%s: No mem for table!\n", __func__);
577 /* Aligned to 2048-bytes */
578 mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ);
579 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
582 * First item in chunk of DMA memory: 32-slot command table,
583 * 32 bytes each in size
586 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
587 debug("cmd_slot = %p\n", pp->cmd_slot);
588 mem += (AHCI_CMD_SLOT_SZ + 224);
591 * Second item: Received-FIS area
593 pp->rx_fis = virt_to_phys((void *)mem);
594 mem += AHCI_RX_FIS_SZ;
597 * Third item: data area for storing a single command
598 * and its scatter-gather table
600 pp->cmd_tbl = virt_to_phys((void *)mem);
601 debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl);
603 mem += AHCI_CMD_TBL_HDR;
605 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
607 writel_with_flush((unsigned long)pp->cmd_slot,
608 port_mmio + PORT_LST_ADDR);
610 writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR);
612 #ifdef CONFIG_SUNXI_AHCI
613 sunxi_dma_init(port_mmio);
616 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
617 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
618 PORT_CMD_START, port_mmio + PORT_CMD);
620 debug("Exit start port %d\n", port);
623 * Make sure interface is not busy based on error and status
624 * information from task file data register before proceeding
626 return wait_spinup(port_mmio);
630 static int ahci_device_data_io(struct ahci_uc_priv *uc_priv, u8 port, u8 *fis,
631 int fis_len, u8 *buf, int buf_len, u8 is_write)
634 struct ahci_ioports *pp = &(uc_priv->port[port]);
635 void __iomem *port_mmio = pp->port_mmio;
640 debug("Enter %s: for port %d\n", __func__, port);
642 if (port > uc_priv->n_ports) {
643 printf("Invalid port number %d\n", port);
647 port_status = readl(port_mmio + PORT_SCR_STAT);
648 if ((port_status & 0xf) != 0x03) {
649 debug("No Link on port %d!\n", port);
653 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
655 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
656 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
657 ahci_fill_cmd_slot(pp, opts);
659 ahci_dcache_flush_sata_cmd(pp);
660 ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len);
662 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
664 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
665 WAIT_MS_DATAIO, 0x1)) {
666 printf("timeout exit!\n");
670 ahci_dcache_invalidate_range((unsigned long)buf,
671 (unsigned long)buf_len);
672 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
678 static char *ata_id_strcpy(u16 *target, u16 *src, int len)
681 for (i = 0; i < len / 2; i++)
682 target[i] = swab16(src[i]);
683 return (char *)target;
687 * SCSI INQUIRY command operation.
689 static int ata_scsiop_inquiry(struct ahci_uc_priv *uc_priv,
690 struct scsi_cmd *pccb)
692 static const u8 hdr[] = {
695 0x5, /* claim SPC-3 version compatibility */
701 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
704 /* Clean ccb data buffer */
705 memset(pccb->pdata, 0, pccb->datalen);
707 memcpy(pccb->pdata, hdr, sizeof(hdr));
709 if (pccb->datalen <= 35)
712 memset(fis, 0, sizeof(fis));
713 /* Construct the FIS */
714 fis[0] = 0x27; /* Host to device FIS. */
715 fis[1] = 1 << 7; /* Command FIS. */
716 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
718 /* Read id from sata */
721 if (ahci_device_data_io(uc_priv, port, (u8 *)&fis, sizeof(fis),
722 (u8 *)tmpid, ATA_ID_WORDS * 2, 0)) {
723 debug("scsi_ahci: SCSI inquiry command failure.\n");
727 if (!uc_priv->ataid[port]) {
728 uc_priv->ataid[port] = malloc(ATA_ID_WORDS * 2);
729 if (!uc_priv->ataid[port]) {
730 printf("%s: No memory for ataid[port]\n", __func__);
735 idbuf = uc_priv->ataid[port];
737 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
738 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
740 memcpy(&pccb->pdata[8], "ATA ", 8);
741 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
742 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
752 * SCSI READ10/WRITE10 command operation.
754 static int ata_scsiop_read_write(struct ahci_uc_priv *uc_priv,
755 struct scsi_cmd *pccb, u8 is_write)
760 u8 *user_buffer = pccb->pdata;
761 u32 user_buffer_size = pccb->datalen;
763 /* Retrieve the base LBA number from the ccb structure. */
764 if (pccb->cmd[0] == SCSI_READ16) {
765 memcpy(&lba, pccb->cmd + 2, 8);
766 lba = be64_to_cpu(lba);
769 memcpy(&temp, pccb->cmd + 2, 4);
770 lba = be32_to_cpu(temp);
774 * Retrieve the base LBA number and the block count from
777 * For 10-byte and 16-byte SCSI R/W commands, transfer
778 * length 0 means transfer 0 block of data.
779 * However, for ATA R/W commands, sector count 0 means
780 * 256 or 65536 sectors, not 0 sectors as in SCSI.
782 * WARNING: one or two older ATA drives treat 0 as 0...
784 if (pccb->cmd[0] == SCSI_READ16)
785 blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]);
787 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
789 debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n",
790 is_write ? "write" : "read", blocks, lba);
793 memset(fis, 0, sizeof(fis));
794 fis[0] = 0x27; /* Host to device FIS. */
795 fis[1] = 1 << 7; /* Command FIS. */
796 /* Command byte (read/write). */
797 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
800 u16 now_blocks; /* number of blocks per iteration */
801 u32 transfer_size; /* number of bytes per iteration */
803 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
805 transfer_size = ATA_SECT_SIZE * now_blocks;
806 if (transfer_size > user_buffer_size) {
807 printf("scsi_ahci: Error: buffer too small.\n");
812 * LBA48 SATA command but only use 32bit address range within
813 * that (unless we've enabled 64bit LBA support). The next
814 * smaller command range (28bit) is too small.
816 fis[4] = (lba >> 0) & 0xff;
817 fis[5] = (lba >> 8) & 0xff;
818 fis[6] = (lba >> 16) & 0xff;
819 fis[7] = 1 << 6; /* device reg: set LBA mode */
820 fis[8] = ((lba >> 24) & 0xff);
821 #ifdef CONFIG_SYS_64BIT_LBA
822 if (pccb->cmd[0] == SCSI_READ16) {
823 fis[9] = ((lba >> 32) & 0xff);
824 fis[10] = ((lba >> 40) & 0xff);
828 fis[3] = 0xe0; /* features */
830 /* Block (sector) count */
831 fis[12] = (now_blocks >> 0) & 0xff;
832 fis[13] = (now_blocks >> 8) & 0xff;
834 /* Read/Write from ahci */
835 if (ahci_device_data_io(uc_priv, pccb->target, (u8 *)&fis,
836 sizeof(fis), user_buffer, transfer_size,
838 debug("scsi_ahci: SCSI %s10 command failure.\n",
839 is_write ? "WRITE" : "READ");
843 /* If this transaction is a write, do a following flush.
844 * Writes in u-boot are so rare, and the logic to know when is
845 * the last write and do a flush only there is sufficiently
846 * difficult. Just do a flush after every write. This incurs,
847 * usually, one extra flush when the rare writes do happen.
850 if (-EIO == ata_io_flush(uc_priv, pccb->target))
853 user_buffer += transfer_size;
854 user_buffer_size -= transfer_size;
855 blocks -= now_blocks;
864 * SCSI READ CAPACITY10 command operation.
866 static int ata_scsiop_read_capacity10(struct ahci_uc_priv *uc_priv,
867 struct scsi_cmd *pccb)
873 if (!uc_priv->ataid[pccb->target]) {
874 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
876 "\tPlease run SCSI command INQUIRY first!\n");
880 cap64 = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
881 if (cap64 > 0x100000000ULL)
884 cap = cpu_to_be32(cap64);
885 memcpy(pccb->pdata, &cap, sizeof(cap));
887 block_size = cpu_to_be32((u32)512);
888 memcpy(&pccb->pdata[4], &block_size, 4);
895 * SCSI READ CAPACITY16 command operation.
897 static int ata_scsiop_read_capacity16(struct ahci_uc_priv *uc_priv,
898 struct scsi_cmd *pccb)
903 if (!uc_priv->ataid[pccb->target]) {
904 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
906 "\tPlease run SCSI command INQUIRY first!\n");
910 cap = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
911 cap = cpu_to_be64(cap);
912 memcpy(pccb->pdata, &cap, sizeof(cap));
914 block_size = cpu_to_be64((u64)512);
915 memcpy(&pccb->pdata[8], &block_size, 8);
922 * SCSI TEST UNIT READY command operation.
924 static int ata_scsiop_test_unit_ready(struct ahci_uc_priv *uc_priv,
925 struct scsi_cmd *pccb)
927 return (uc_priv->ataid[pccb->target]) ? 0 : -EPERM;
931 static int ahci_scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
933 struct ahci_uc_priv *uc_priv;
934 #ifdef CONFIG_DM_SCSI
935 uc_priv = dev_get_uclass_priv(dev);
941 switch (pccb->cmd[0]) {
944 ret = ata_scsiop_read_write(uc_priv, pccb, 0);
947 ret = ata_scsiop_read_write(uc_priv, pccb, 1);
949 case SCSI_RD_CAPAC10:
950 ret = ata_scsiop_read_capacity10(uc_priv, pccb);
952 case SCSI_RD_CAPAC16:
953 ret = ata_scsiop_read_capacity16(uc_priv, pccb);
956 ret = ata_scsiop_test_unit_ready(uc_priv, pccb);
959 ret = ata_scsiop_inquiry(uc_priv, pccb);
962 printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
967 debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
974 static int ahci_start_ports(struct ahci_uc_priv *uc_priv)
979 linkmap = uc_priv->link_port_map;
981 for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
982 if (((linkmap >> i) & 0x01)) {
983 if (ahci_port_start(uc_priv, (u8) i)) {
984 printf("Can not start port %d\n", i);
993 #ifndef CONFIG_DM_SCSI
994 void scsi_low_level_init(int busdevfunc)
996 struct ahci_uc_priv *uc_priv;
998 #ifndef CONFIG_SCSI_AHCI_PLAT
999 probe_ent = calloc(1, sizeof(struct ahci_uc_priv));
1001 printf("%s: No memory for uc_priv\n", __func__);
1004 uc_priv = probe_ent;
1005 # if defined(CONFIG_DM_PCI)
1006 struct udevice *dev;
1009 ret = dm_pci_bus_find_bdf(busdevfunc, &dev);
1012 ahci_init_one(uc_priv, dev);
1014 ahci_init_one(uc_priv, busdevfunc);
1017 uc_priv = probe_ent;
1020 ahci_start_ports(uc_priv);
1024 #ifndef CONFIG_SCSI_AHCI_PLAT
1025 # if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
1026 int achi_init_one_dm(struct udevice *dev)
1028 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1030 return ahci_init_one(uc_priv, dev);
1035 int achi_start_ports_dm(struct udevice *dev)
1037 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1039 return ahci_start_ports(uc_priv);
1042 #ifdef CONFIG_SCSI_AHCI_PLAT
1043 static int ahci_init_common(struct ahci_uc_priv *uc_priv, void __iomem *base)
1047 uc_priv->host_flags = ATA_FLAG_SATA
1048 | ATA_FLAG_NO_LEGACY
1051 | ATA_FLAG_NO_ATAPI;
1052 uc_priv->pio_mask = 0x1f;
1053 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
1055 uc_priv->mmio_base = base;
1057 /* initialize adapter */
1058 rc = ahci_host_init(uc_priv);
1062 ahci_print_info(uc_priv);
1064 rc = ahci_start_ports(uc_priv);
1070 #ifndef CONFIG_DM_SCSI
1071 int ahci_init(void __iomem *base)
1073 struct ahci_uc_priv *uc_priv;
1075 probe_ent = malloc(sizeof(struct ahci_uc_priv));
1077 printf("%s: No memory for uc_priv\n", __func__);
1081 uc_priv = probe_ent;
1082 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
1084 return ahci_init_common(uc_priv, base);
1088 int ahci_init_dm(struct udevice *dev, void __iomem *base)
1090 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1092 return ahci_init_common(uc_priv, base);
1095 void __weak scsi_init(void)
1099 #endif /* CONFIG_SCSI_AHCI_PLAT */
1102 * In the general case of generic rotating media it makes sense to have a
1103 * flush capability. It probably even makes sense in the case of SSDs because
1104 * one cannot always know for sure what kind of internal cache/flush mechanism
1105 * is embodied therein. At first it was planned to invoke this after the last
1106 * write to disk and before rebooting. In practice, knowing, a priori, which
1107 * is the last write is difficult. Because writing to the disk in u-boot is
1108 * very rare, this flush command will be invoked after every block write.
1110 static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port)
1113 struct ahci_ioports *pp = &(uc_priv->port[port]);
1114 void __iomem *port_mmio = pp->port_mmio;
1115 u32 cmd_fis_len = 5; /* five dwords */
1117 /* Preset the FIS */
1119 fis[0] = 0x27; /* Host to device FIS. */
1120 fis[1] = 1 << 7; /* Command FIS. */
1121 fis[2] = ATA_CMD_FLUSH_EXT;
1123 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1124 ahci_fill_cmd_slot(pp, cmd_fis_len);
1125 ahci_dcache_flush_sata_cmd(pp);
1126 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1128 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1129 WAIT_MS_FLUSH, 0x1)) {
1130 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1137 static int ahci_scsi_bus_reset(struct udevice *dev)
1139 /* Not implemented */
1144 #ifdef CONFIG_DM_SCSI
1145 struct scsi_ops scsi_ops = {
1146 .exec = ahci_scsi_exec,
1147 .bus_reset = ahci_scsi_bus_reset,
1150 int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
1152 return ahci_scsi_exec(dev, pccb);
1155 __weak int scsi_bus_reset(struct udevice *dev)
1157 return ahci_scsi_bus_reset(dev);