1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
4 * Terry Lv <r65388@freescale.com>
12 #include <dwc_ahsata.h>
20 #include <asm/cache.h>
22 #include <asm/arch/clock.h>
23 #include <asm/arch/sys_proto.h>
24 #include <asm/mach-imx/sata.h>
25 #include <linux/bitops.h>
26 #include <linux/ctype.h>
27 #include <linux/delay.h>
28 #include <linux/errno.h>
29 #include "dwc_ahsata_priv.h"
31 struct sata_port_regs {
55 struct sata_host_regs {
84 #define MAX_DATA_BYTES_PER_SG (4 * 1024 * 1024)
85 #define MAX_BYTES_PER_TRANS (AHCI_MAX_SG * MAX_DATA_BYTES_PER_SG)
87 #define writel_with_flush(a, b) do { writel(a, b); readl(b); } while (0)
89 static inline void __iomem *ahci_port_base(void __iomem *base, u32 port)
91 return base + 0x100 + (port * 0x80);
94 static int waiting_for_cmd_completed(u8 *offset,
102 ((status = readl(offset)) & sign) && i < timeout_msec;
106 return (i < timeout_msec) ? 0 : -1;
109 static int ahci_setup_oobr(struct ahci_uc_priv *uc_priv, int clk)
111 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
113 writel(SATA_HOST_OOBR_WE, &host_mmio->oobr);
114 writel(0x02060b14, &host_mmio->oobr);
119 static int ahci_host_init(struct ahci_uc_priv *uc_priv)
121 u32 tmp, cap_save, num_ports;
122 int i, j, timeout = 1000;
123 struct sata_port_regs *port_mmio = NULL;
124 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
125 int clk = mxc_get_clock(MXC_SATA_CLK);
127 cap_save = readl(&host_mmio->cap);
128 cap_save |= SATA_HOST_CAP_SSS;
130 /* global controller reset */
131 tmp = readl(&host_mmio->ghc);
132 if ((tmp & SATA_HOST_GHC_HR) == 0)
133 writel_with_flush(tmp | SATA_HOST_GHC_HR, &host_mmio->ghc);
135 while ((readl(&host_mmio->ghc) & SATA_HOST_GHC_HR) && --timeout)
139 debug("controller reset failed (0x%x)\n", tmp);
144 writel(clk / 1000, &host_mmio->timer1ms);
146 ahci_setup_oobr(uc_priv, 0);
148 writel_with_flush(SATA_HOST_GHC_AE, &host_mmio->ghc);
149 writel(cap_save, &host_mmio->cap);
150 num_ports = (cap_save & SATA_HOST_CAP_NP_MASK) + 1;
151 writel_with_flush((1 << num_ports) - 1, &host_mmio->pi);
154 * Determine which Ports are implemented by the DWC_ahsata,
155 * by reading the PI register. This bit map value aids the
156 * software to determine how many Ports are available and
157 * which Port registers need to be initialized.
159 uc_priv->cap = readl(&host_mmio->cap);
160 uc_priv->port_map = readl(&host_mmio->pi);
162 /* Determine how many command slots the HBA supports */
163 uc_priv->n_ports = (uc_priv->cap & SATA_HOST_CAP_NP_MASK) + 1;
165 debug("cap 0x%x port_map 0x%x n_ports %d\n",
166 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
168 for (i = 0; i < uc_priv->n_ports; i++) {
169 uc_priv->port[i].port_mmio = ahci_port_base(host_mmio, i);
170 port_mmio = uc_priv->port[i].port_mmio;
172 /* Ensure that the DWC_ahsata is in idle state */
173 tmp = readl(&port_mmio->cmd);
176 * When P#CMD.ST, P#CMD.CR, P#CMD.FRE and P#CMD.FR
177 * are all cleared, the Port is in an idle state.
179 if (tmp & (SATA_PORT_CMD_CR | SATA_PORT_CMD_FR |
180 SATA_PORT_CMD_FRE | SATA_PORT_CMD_ST)) {
183 * System software places a Port into the idle state by
184 * clearing P#CMD.ST and waiting for P#CMD.CR to return
187 tmp &= ~SATA_PORT_CMD_ST;
188 writel_with_flush(tmp, &port_mmio->cmd);
191 * spec says 500 msecs for each bit, so
192 * this is slightly incorrect.
197 while ((readl(&port_mmio->cmd) & SATA_PORT_CMD_CR)
202 debug("port reset failed (0x%x)\n", tmp);
208 tmp = readl(&port_mmio->cmd);
209 writel((tmp | SATA_PORT_CMD_SUD), &port_mmio->cmd);
211 /* Wait for spin-up to finish */
213 while (!(readl(&port_mmio->cmd) | SATA_PORT_CMD_SUD)
217 debug("Spin-Up can't finish!\n");
221 for (j = 0; j < 100; ++j) {
223 tmp = readl(&port_mmio->ssts);
224 if (((tmp & SATA_PORT_SSTS_DET_MASK) == 0x3) ||
225 ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x1))
229 /* Wait for COMINIT bit 26 (DIAG_X) in SERR */
231 while (!(readl(&port_mmio->serr) & SATA_PORT_SERR_DIAG_X)
235 debug("Can't find DIAG_X set!\n");
240 * For each implemented Port, clear the P#SERR
241 * register, by writing ones to each implemented\
244 tmp = readl(&port_mmio->serr);
245 debug("P#SERR 0x%x\n",
247 writel(tmp, &port_mmio->serr);
249 /* Ack any pending irq events for this port */
250 tmp = readl(&host_mmio->is);
251 debug("IS 0x%x\n", tmp);
253 writel(tmp, &host_mmio->is);
255 writel(1 << i, &host_mmio->is);
257 /* set irq mask (enables interrupts) */
258 writel(DEF_PORT_IRQ, &port_mmio->ie);
260 /* register linkup ports */
261 tmp = readl(&port_mmio->ssts);
262 debug("Port %d status: 0x%x\n", i, tmp);
263 if ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x03)
264 uc_priv->link_port_map |= (0x01 << i);
267 tmp = readl(&host_mmio->ghc);
268 debug("GHC 0x%x\n", tmp);
269 writel(tmp | SATA_HOST_GHC_IE, &host_mmio->ghc);
270 tmp = readl(&host_mmio->ghc);
271 debug("GHC 0x%x\n", tmp);
276 static void ahci_print_info(struct ahci_uc_priv *uc_priv)
278 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
279 u32 vers, cap, impl, speed;
283 vers = readl(&host_mmio->vs);
285 impl = uc_priv->port_map;
287 speed = (cap & SATA_HOST_CAP_ISS_MASK)
288 >> SATA_HOST_CAP_ISS_OFFSET;
298 printf("AHCI %02x%02x.%02x%02x "
299 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
304 ((cap >> 8) & 0x1f) + 1,
313 cap & (1 << 31) ? "64bit " : "",
314 cap & (1 << 30) ? "ncq " : "",
315 cap & (1 << 28) ? "ilck " : "",
316 cap & (1 << 27) ? "stag " : "",
317 cap & (1 << 26) ? "pm " : "",
318 cap & (1 << 25) ? "led " : "",
319 cap & (1 << 24) ? "clo " : "",
320 cap & (1 << 19) ? "nz " : "",
321 cap & (1 << 18) ? "only " : "",
322 cap & (1 << 17) ? "pmp " : "",
323 cap & (1 << 15) ? "pio " : "",
324 cap & (1 << 14) ? "slum " : "",
325 cap & (1 << 13) ? "part " : "");
328 static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
329 unsigned char *buf, int buf_len)
331 struct ahci_ioports *pp = &uc_priv->port[port];
332 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
333 u32 sg_count, max_bytes;
336 max_bytes = MAX_DATA_BYTES_PER_SG;
337 sg_count = ((buf_len - 1) / max_bytes) + 1;
338 if (sg_count > AHCI_MAX_SG) {
339 printf("Error:Too much sg!\n");
343 for (i = 0; i < sg_count; i++) {
345 cpu_to_le32((u32)buf + i * max_bytes);
346 ahci_sg->addr_hi = 0;
347 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
352 buf_len -= max_bytes;
358 static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 cmd_slot, u32 opts)
360 struct ahci_cmd_hdr *cmd_hdr = (struct ahci_cmd_hdr *)(pp->cmd_slot +
361 AHCI_CMD_SLOT_SZ * cmd_slot);
363 memset(cmd_hdr, 0, AHCI_CMD_SLOT_SZ);
364 cmd_hdr->opts = cpu_to_le32(opts);
366 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
367 #ifdef CONFIG_PHYS_64BIT
368 pp->cmd_slot->tbl_addr_hi =
369 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
373 #define AHCI_GET_CMD_SLOT(c) ((c) ? ffs(c) : 0)
375 static int ahci_exec_ata_cmd(struct ahci_uc_priv *uc_priv, u8 port,
376 struct sata_fis_h2d *cfis, u8 *buf, u32 buf_len,
379 struct ahci_ioports *pp = &uc_priv->port[port];
380 struct sata_port_regs *port_mmio = pp->port_mmio;
382 int sg_count = 0, cmd_slot = 0;
384 cmd_slot = AHCI_GET_CMD_SLOT(readl(&port_mmio->ci));
385 if (32 == cmd_slot) {
386 printf("Can't find empty command slot!\n");
390 /* Check xfer length */
391 if (buf_len > MAX_BYTES_PER_TRANS) {
392 printf("Max transfer length is %dB\n\r",
393 MAX_BYTES_PER_TRANS);
397 memcpy((u8 *)(pp->cmd_tbl), cfis, sizeof(struct sata_fis_h2d));
399 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
400 opts = (sizeof(struct sata_fis_h2d) >> 2) | (sg_count << 16);
403 flush_cache((ulong)buf, buf_len);
405 ahci_fill_cmd_slot(pp, cmd_slot, opts);
407 flush_cache((int)(pp->cmd_slot), AHCI_PORT_PRIV_DMA_SZ);
408 writel_with_flush(1 << cmd_slot, &port_mmio->ci);
410 if (waiting_for_cmd_completed((u8 *)&port_mmio->ci, 10000,
412 printf("timeout exit!\n");
415 invalidate_dcache_range((int)(pp->cmd_slot),
416 (int)(pp->cmd_slot)+AHCI_PORT_PRIV_DMA_SZ);
417 debug("ahci_exec_ata_cmd: %d byte transferred.\n",
418 pp->cmd_slot->status);
420 invalidate_dcache_range((ulong)buf, (ulong)buf+buf_len);
425 static void ahci_set_feature(struct ahci_uc_priv *uc_priv, u8 port)
427 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
428 struct sata_fis_h2d *cfis = &h2d;
430 memset(cfis, 0, sizeof(struct sata_fis_h2d));
431 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
432 cfis->pm_port_c = 1 << 7;
433 cfis->command = ATA_CMD_SET_FEATURES;
434 cfis->features = SETFEATURES_XFER;
435 cfis->sector_count = ffs(uc_priv->udma_mask + 1) + 0x3e;
437 ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, READ_CMD);
440 static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
442 struct ahci_ioports *pp = &uc_priv->port[port];
443 struct sata_port_regs *port_mmio = pp->port_mmio;
446 int timeout = 10000000;
448 debug("Enter start port: %d\n", port);
449 port_status = readl(&port_mmio->ssts);
450 debug("Port %d status: %x\n", port, port_status);
451 if ((port_status & 0xf) != 0x03) {
452 printf("No Link on this port!\n");
456 mem = (u32)malloc(AHCI_PORT_PRIV_DMA_SZ + 1024);
458 printf("No mem for table!\n");
462 mem = (mem + 0x400) & (~0x3ff); /* Aligned to 1024-bytes */
463 memset((u8 *)mem, 0, AHCI_PORT_PRIV_DMA_SZ);
466 * First item in chunk of DMA memory: 32-slot command table,
467 * 32 bytes each in size
469 pp->cmd_slot = (struct ahci_cmd_hdr *)mem;
470 debug("cmd_slot = 0x%x\n", (unsigned int) pp->cmd_slot);
471 mem += (AHCI_CMD_SLOT_SZ * DWC_AHSATA_MAX_CMD_SLOTS);
474 * Second item: Received-FIS area, 256-Byte aligned
477 mem += AHCI_RX_FIS_SZ;
480 * Third item: data area for storing a single command
481 * and its scatter-gather table
484 debug("cmd_tbl_dma = 0x%lx\n", pp->cmd_tbl);
486 mem += AHCI_CMD_TBL_HDR;
488 writel_with_flush(0x00004444, &port_mmio->dmacr);
489 pp->cmd_tbl_sg = (struct ahci_sg *)mem;
490 writel_with_flush((u32)pp->cmd_slot, &port_mmio->clb);
491 writel_with_flush(pp->rx_fis, &port_mmio->fb);
494 writel_with_flush((SATA_PORT_CMD_FRE | readl(&port_mmio->cmd)),
497 /* Wait device ready */
498 while ((readl(&port_mmio->tfd) & (SATA_PORT_TFD_STS_ERR |
499 SATA_PORT_TFD_STS_DRQ | SATA_PORT_TFD_STS_BSY))
503 debug("Device not ready for BSY, DRQ and"
508 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
509 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
510 PORT_CMD_START, &port_mmio->cmd);
512 debug("Exit start port %d\n", port);
517 static void dwc_ahsata_print_info(struct blk_desc *pdev)
519 printf("SATA Device Info:\n\r");
520 printf("S/N: %s\n\rProduct model number: %s\n\r"
521 "Firmware version: %s\n\rCapacity: " LBAFU " sectors\n\r",
522 pdev->product, pdev->vendor, pdev->revision, pdev->lba);
525 static void dwc_ahsata_identify(struct ahci_uc_priv *uc_priv, u16 *id)
527 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
528 struct sata_fis_h2d *cfis = &h2d;
529 u8 port = uc_priv->hard_port_no;
531 memset(cfis, 0, sizeof(struct sata_fis_h2d));
533 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
534 cfis->pm_port_c = 0x80; /* is command */
535 cfis->command = ATA_CMD_ID_ATA;
537 ahci_exec_ata_cmd(uc_priv, port, cfis, (u8 *)id, ATA_ID_WORDS * 2,
539 ata_swap_buf_le16(id, ATA_ID_WORDS);
542 static void dwc_ahsata_xfer_mode(struct ahci_uc_priv *uc_priv, u16 *id)
544 uc_priv->pio_mask = id[ATA_ID_PIO_MODES];
545 uc_priv->udma_mask = id[ATA_ID_UDMA_MODES];
546 debug("pio %04x, udma %04x\n\r", uc_priv->pio_mask, uc_priv->udma_mask);
549 static u32 dwc_ahsata_rw_cmd(struct ahci_uc_priv *uc_priv, u32 start,
550 u32 blkcnt, u8 *buffer, int is_write)
552 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
553 struct sata_fis_h2d *cfis = &h2d;
554 u8 port = uc_priv->hard_port_no;
559 memset(cfis, 0, sizeof(struct sata_fis_h2d));
561 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
562 cfis->pm_port_c = 0x80; /* is command */
563 cfis->command = (is_write) ? ATA_CMD_WRITE : ATA_CMD_READ;
564 cfis->device = ATA_LBA;
566 cfis->device |= (block >> 24) & 0xf;
567 cfis->lba_high = (block >> 16) & 0xff;
568 cfis->lba_mid = (block >> 8) & 0xff;
569 cfis->lba_low = block & 0xff;
570 cfis->sector_count = (u8)(blkcnt & 0xff);
572 if (ahci_exec_ata_cmd(uc_priv, port, cfis, buffer,
573 ATA_SECT_SIZE * blkcnt, is_write) > 0)
579 static void dwc_ahsata_flush_cache(struct ahci_uc_priv *uc_priv)
581 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
582 struct sata_fis_h2d *cfis = &h2d;
583 u8 port = uc_priv->hard_port_no;
585 memset(cfis, 0, sizeof(struct sata_fis_h2d));
587 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
588 cfis->pm_port_c = 0x80; /* is command */
589 cfis->command = ATA_CMD_FLUSH;
591 ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, 0);
594 static u32 dwc_ahsata_rw_cmd_ext(struct ahci_uc_priv *uc_priv, u32 start,
595 lbaint_t blkcnt, u8 *buffer, int is_write)
597 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
598 struct sata_fis_h2d *cfis = &h2d;
599 u8 port = uc_priv->hard_port_no;
604 memset(cfis, 0, sizeof(struct sata_fis_h2d));
606 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
607 cfis->pm_port_c = 0x80; /* is command */
609 cfis->command = (is_write) ? ATA_CMD_WRITE_EXT
612 cfis->lba_high_exp = (block >> 40) & 0xff;
613 cfis->lba_mid_exp = (block >> 32) & 0xff;
614 cfis->lba_low_exp = (block >> 24) & 0xff;
615 cfis->lba_high = (block >> 16) & 0xff;
616 cfis->lba_mid = (block >> 8) & 0xff;
617 cfis->lba_low = block & 0xff;
618 cfis->device = ATA_LBA;
619 cfis->sector_count_exp = (blkcnt >> 8) & 0xff;
620 cfis->sector_count = blkcnt & 0xff;
622 if (ahci_exec_ata_cmd(uc_priv, port, cfis, buffer,
623 ATA_SECT_SIZE * blkcnt, is_write) > 0)
629 static void dwc_ahsata_flush_cache_ext(struct ahci_uc_priv *uc_priv)
631 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
632 struct sata_fis_h2d *cfis = &h2d;
633 u8 port = uc_priv->hard_port_no;
635 memset(cfis, 0, sizeof(struct sata_fis_h2d));
637 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
638 cfis->pm_port_c = 0x80; /* is command */
639 cfis->command = ATA_CMD_FLUSH_EXT;
641 ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, 0);
644 static void dwc_ahsata_init_wcache(struct ahci_uc_priv *uc_priv, u16 *id)
646 if (ata_id_has_wcache(id) && ata_id_wcache_enabled(id))
647 uc_priv->flags |= SATA_FLAG_WCACHE;
648 if (ata_id_has_flush(id))
649 uc_priv->flags |= SATA_FLAG_FLUSH;
650 if (ata_id_has_flush_ext(id))
651 uc_priv->flags |= SATA_FLAG_FLUSH_EXT;
654 static u32 ata_low_level_rw_lba48(struct ahci_uc_priv *uc_priv, u32 blknr,
655 lbaint_t blkcnt, const void *buffer,
666 max_blks = ATA_MAX_SECTORS_LBA48;
669 if (blks > max_blks) {
670 if (max_blks != dwc_ahsata_rw_cmd_ext(uc_priv, start,
676 addr += ATA_SECT_SIZE * max_blks;
678 if (blks != dwc_ahsata_rw_cmd_ext(uc_priv, start, blks,
683 addr += ATA_SECT_SIZE * blks;
690 static u32 ata_low_level_rw_lba28(struct ahci_uc_priv *uc_priv, u32 blknr,
691 lbaint_t blkcnt, const void *buffer,
702 max_blks = ATA_MAX_SECTORS;
704 if (blks > max_blks) {
705 if (max_blks != dwc_ahsata_rw_cmd(uc_priv, start,
711 addr += ATA_SECT_SIZE * max_blks;
713 if (blks != dwc_ahsata_rw_cmd(uc_priv, start, blks,
718 addr += ATA_SECT_SIZE * blks;
725 static int dwc_ahci_start_ports(struct ahci_uc_priv *uc_priv)
730 linkmap = uc_priv->link_port_map;
733 printf("No port device detected!\n");
737 for (i = 0; i < uc_priv->n_ports; i++) {
738 if ((linkmap >> i) && ((linkmap >> i) & 0x01)) {
739 if (ahci_port_start(uc_priv, (u8)i)) {
740 printf("Can not start port %d\n", i);
743 uc_priv->hard_port_no = i;
751 static int dwc_ahsata_scan_common(struct ahci_uc_priv *uc_priv,
752 struct blk_desc *pdev)
754 u8 serial[ATA_ID_SERNO_LEN + 1] = { 0 };
755 u8 firmware[ATA_ID_FW_REV_LEN + 1] = { 0 };
756 u8 product[ATA_ID_PROD_LEN + 1] = { 0 };
757 u8 port = uc_priv->hard_port_no;
758 ALLOC_CACHE_ALIGN_BUFFER(u16, id, ATA_ID_WORDS);
760 /* Identify device to get information */
761 dwc_ahsata_identify(uc_priv, id);
764 ata_id_c_string(id, serial, ATA_ID_SERNO, sizeof(serial));
765 memcpy(pdev->product, serial, sizeof(serial));
767 /* Firmware version */
768 ata_id_c_string(id, firmware, ATA_ID_FW_REV, sizeof(firmware));
769 memcpy(pdev->revision, firmware, sizeof(firmware));
772 ata_id_c_string(id, product, ATA_ID_PROD, sizeof(product));
773 memcpy(pdev->vendor, product, sizeof(product));
776 pdev->lba = ata_id_n_sectors(id);
778 pdev->type = DEV_TYPE_HARDDISK;
779 pdev->blksz = ATA_SECT_SIZE;
782 /* Check if support LBA48 */
783 if (ata_id_has_lba48(id)) {
785 debug("Device support LBA48\n\r");
788 /* Get the NCQ queue depth from device */
789 uc_priv->flags &= (~SATA_FLAG_Q_DEP_MASK);
790 uc_priv->flags |= ata_id_queue_depth(id);
792 /* Get the xfer mode from device */
793 dwc_ahsata_xfer_mode(uc_priv, id);
795 /* Get the write cache status from device */
796 dwc_ahsata_init_wcache(uc_priv, id);
798 /* Set the xfer mode to highest speed */
799 ahci_set_feature(uc_priv, port);
801 dwc_ahsata_print_info(pdev);
807 * SATA interface between low level driver and command layer
809 static ulong sata_read_common(struct ahci_uc_priv *uc_priv,
810 struct blk_desc *desc, ulong blknr,
811 lbaint_t blkcnt, void *buffer)
816 rc = ata_low_level_rw_lba48(uc_priv, blknr, blkcnt, buffer,
819 rc = ata_low_level_rw_lba28(uc_priv, blknr, blkcnt, buffer,
825 static ulong sata_write_common(struct ahci_uc_priv *uc_priv,
826 struct blk_desc *desc, ulong blknr,
827 lbaint_t blkcnt, const void *buffer)
830 u32 flags = uc_priv->flags;
833 rc = ata_low_level_rw_lba48(uc_priv, blknr, blkcnt, buffer,
835 if ((flags & SATA_FLAG_WCACHE) && (flags & SATA_FLAG_FLUSH_EXT))
836 dwc_ahsata_flush_cache_ext(uc_priv);
838 rc = ata_low_level_rw_lba28(uc_priv, blknr, blkcnt, buffer,
840 if ((flags & SATA_FLAG_WCACHE) && (flags & SATA_FLAG_FLUSH))
841 dwc_ahsata_flush_cache(uc_priv);
847 #if !CONFIG_IS_ENABLED(AHCI)
848 static int ahci_init_one(int pdev)
851 struct ahci_uc_priv *uc_priv = NULL;
853 uc_priv = malloc(sizeof(struct ahci_uc_priv));
857 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
860 uc_priv->host_flags = ATA_FLAG_SATA
866 uc_priv->mmio_base = (void __iomem *)CONFIG_DWC_AHSATA_BASE_ADDR;
868 /* initialize adapter */
869 rc = ahci_host_init(uc_priv);
873 ahci_print_info(uc_priv);
875 /* Save the uc_private struct to block device struct */
876 sata_dev_desc[pdev].priv = uc_priv;
886 int init_sata(int dev)
888 struct ahci_uc_priv *uc_priv = NULL;
890 #if defined(CONFIG_MX6)
891 if (!is_mx6dq() && !is_mx6dqp())
894 if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) {
895 printf("The sata index %d is out of ranges\n\r", dev);
901 uc_priv = sata_dev_desc[dev].priv;
903 return dwc_ahci_start_ports(uc_priv) ? 1 : 0;
906 int reset_sata(int dev)
908 struct ahci_uc_priv *uc_priv;
909 struct sata_host_regs *host_mmio;
911 if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) {
912 printf("The sata index %d is out of ranges\n\r", dev);
916 uc_priv = sata_dev_desc[dev].priv;
918 /* not initialized, so nothing to reset */
921 host_mmio = uc_priv->mmio_base;
922 setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR);
923 while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR)
927 memset(&sata_dev_desc[dev], 0, sizeof(struct blk_desc));
932 int sata_port_status(int dev, int port)
934 struct sata_port_regs *port_mmio;
935 struct ahci_uc_priv *uc_priv = NULL;
937 if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1))
940 if (sata_dev_desc[dev].priv == NULL)
943 uc_priv = sata_dev_desc[dev].priv;
944 port_mmio = uc_priv->port[port].port_mmio;
946 return readl(&port_mmio->ssts) & SATA_PORT_SSTS_DET_MASK;
950 * SATA interface between low level driver and command layer
952 ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer)
954 struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
956 return sata_read_common(uc_priv, &sata_dev_desc[dev], blknr, blkcnt,
960 ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer)
962 struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
964 return sata_write_common(uc_priv, &sata_dev_desc[dev], blknr, blkcnt,
968 int scan_sata(int dev)
970 struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
971 struct blk_desc *pdev = &sata_dev_desc[dev];
973 return dwc_ahsata_scan_common(uc_priv, pdev);
975 #endif /* CONFIG_IS_ENABLED(AHCI) */
977 #if CONFIG_IS_ENABLED(AHCI)
979 int dwc_ahsata_port_status(struct udevice *dev, int port)
981 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
982 struct sata_port_regs *port_mmio;
984 port_mmio = uc_priv->port[port].port_mmio;
985 return readl(&port_mmio->ssts) & SATA_PORT_SSTS_DET_MASK ? 0 : -ENXIO;
988 int dwc_ahsata_bus_reset(struct udevice *dev)
990 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
991 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
993 setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR);
994 while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR)
1000 int dwc_ahsata_scan(struct udevice *dev)
1002 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1003 struct blk_desc *desc;
1004 struct udevice *blk;
1008 * Create only one block device and do detection
1009 * to make sure that there won't be a lot of
1010 * block devices created
1012 device_find_first_child(dev, &blk);
1014 ret = blk_create_devicef(dev, "dwc_ahsata_blk", "blk",
1015 IF_TYPE_SATA, -1, 512, 0, &blk);
1017 debug("Can't create device\n");
1022 desc = dev_get_uclass_plat(blk);
1023 ret = dwc_ahsata_scan_common(uc_priv, desc);
1025 debug("%s: Failed to scan bus\n", __func__);
1032 int dwc_ahsata_probe(struct udevice *dev)
1034 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1037 #if defined(CONFIG_MX6)
1040 uc_priv->host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
1041 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA | ATA_FLAG_NO_ATAPI;
1042 uc_priv->mmio_base = (void __iomem *)dev_read_addr(dev);
1044 /* initialize adapter */
1045 ret = ahci_host_init(uc_priv);
1049 ahci_print_info(uc_priv);
1051 return dwc_ahci_start_ports(uc_priv);
1054 static ulong dwc_ahsata_read(struct udevice *blk, lbaint_t blknr,
1055 lbaint_t blkcnt, void *buffer)
1057 struct blk_desc *desc = dev_get_uclass_plat(blk);
1058 struct udevice *dev = dev_get_parent(blk);
1059 struct ahci_uc_priv *uc_priv;
1061 uc_priv = dev_get_uclass_priv(dev);
1062 return sata_read_common(uc_priv, desc, blknr, blkcnt, buffer);
1065 static ulong dwc_ahsata_write(struct udevice *blk, lbaint_t blknr,
1066 lbaint_t blkcnt, const void *buffer)
1068 struct blk_desc *desc = dev_get_uclass_plat(blk);
1069 struct udevice *dev = dev_get_parent(blk);
1070 struct ahci_uc_priv *uc_priv;
1072 uc_priv = dev_get_uclass_priv(dev);
1073 return sata_write_common(uc_priv, desc, blknr, blkcnt, buffer);
1076 static const struct blk_ops dwc_ahsata_blk_ops = {
1077 .read = dwc_ahsata_read,
1078 .write = dwc_ahsata_write,
1081 U_BOOT_DRIVER(dwc_ahsata_blk) = {
1082 .name = "dwc_ahsata_blk",
1084 .ops = &dwc_ahsata_blk_ops,
1087 #if CONFIG_IS_ENABLED(DWC_AHSATA_AHCI)
1088 struct ahci_ops dwc_ahsata_ahci_ops = {
1089 .port_status = dwc_ahsata_port_status,
1090 .reset = dwc_ahsata_bus_reset,
1091 .scan = dwc_ahsata_scan,
1094 static const struct udevice_id dwc_ahsata_ahci_ids[] = {
1095 { .compatible = "fsl,imx6q-ahci" },
1099 U_BOOT_DRIVER(dwc_ahsata_ahci) = {
1100 .name = "dwc_ahsata_ahci",
1102 .of_match = dwc_ahsata_ahci_ids,
1103 .ops = &dwc_ahsata_ahci_ops,
1104 .probe = dwc_ahsata_probe,