Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 1 | /* |
Kumar Gala | 6a6d948 | 2009-07-28 21:49:52 -0500 | [diff] [blame] | 2 | * Copyright (C) Freescale Semiconductor, Inc. 2006. |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 3 | * Author: Jason Jin<Jason.jin@freescale.com> |
| 4 | * Zhang Wei<wei.zhang@freescale.com> |
| 5 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 7 | * |
| 8 | * with the reference on libata and ahci drvier in kernel |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 9 | */ |
| 10 | #include <common.h> |
| 11 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 12 | #include <command.h> |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 13 | #include <dm.h> |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 14 | #include <pci.h> |
| 15 | #include <asm/processor.h> |
Masahiro Yamada | 56a931c | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 16 | #include <linux/errno.h> |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 17 | #include <asm/io.h> |
| 18 | #include <malloc.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 19 | #include <memalign.h> |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 20 | #include <scsi.h> |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 21 | #include <libata.h> |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 22 | #include <linux/ctype.h> |
| 23 | #include <ahci.h> |
| 24 | |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 25 | static int ata_io_flush(u8 port); |
| 26 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 27 | struct ahci_probe_ent *probe_ent = NULL; |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 28 | u16 *ataid[AHCI_MAX_PORTS]; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 29 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 30 | #define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0) |
| 31 | |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 32 | /* |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 33 | * Some controllers limit number of blocks they can read/write at once. |
| 34 | * Contemporary SSD devices work much faster if the read/write size is aligned |
| 35 | * to a power of 2. Let's set default to 128 and allowing to be overwritten if |
| 36 | * needed. |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 37 | */ |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 38 | #ifndef MAX_SATA_BLOCKS_READ_WRITE |
| 39 | #define MAX_SATA_BLOCKS_READ_WRITE 0x80 |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 40 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 41 | |
Walter Murphy | efd49b4 | 2012-10-29 05:24:00 +0000 | [diff] [blame] | 42 | /* Maximum timeouts for each event */ |
Rob Herring | 249b937 | 2013-08-24 10:10:53 -0500 | [diff] [blame] | 43 | #define WAIT_MS_SPINUP 20000 |
Mark Langsdorf | 2cc6e1b | 2015-06-05 00:58:46 +0100 | [diff] [blame] | 44 | #define WAIT_MS_DATAIO 10000 |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 45 | #define WAIT_MS_FLUSH 5000 |
Ian Campbell | 368989b | 2014-07-18 20:38:39 +0100 | [diff] [blame] | 46 | #define WAIT_MS_LINKUP 200 |
Walter Murphy | efd49b4 | 2012-10-29 05:24:00 +0000 | [diff] [blame] | 47 | |
Stefan Roese | d99a30e | 2016-08-31 10:02:15 +0200 | [diff] [blame] | 48 | __weak void __iomem *ahci_port_base(void __iomem *base, u32 port) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 49 | { |
| 50 | return base + 0x100 + (port * 0x80); |
| 51 | } |
| 52 | |
| 53 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 54 | static void ahci_setup_port(struct ahci_ioports *port, void __iomem *base, |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 55 | unsigned int port_idx) |
| 56 | { |
| 57 | base = ahci_port_base(base, port_idx); |
| 58 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 59 | port->cmd_addr = base; |
| 60 | port->scr_addr = base + PORT_SCR; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | |
| 64 | #define msleep(a) udelay(a * 1000) |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 65 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 66 | static void ahci_dcache_flush_range(unsigned long begin, unsigned long len) |
Taylor Hutt | 33e4c2f | 2012-10-29 05:23:59 +0000 | [diff] [blame] | 67 | { |
| 68 | const unsigned long start = begin; |
| 69 | const unsigned long end = start + len; |
| 70 | |
| 71 | debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end); |
| 72 | flush_dcache_range(start, end); |
| 73 | } |
| 74 | |
| 75 | /* |
| 76 | * SATA controller DMAs to physical RAM. Ensure data from the |
| 77 | * controller is invalidated from dcache; next access comes from |
| 78 | * physical RAM. |
| 79 | */ |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 80 | static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len) |
Taylor Hutt | 33e4c2f | 2012-10-29 05:23:59 +0000 | [diff] [blame] | 81 | { |
| 82 | const unsigned long start = begin; |
| 83 | const unsigned long end = start + len; |
| 84 | |
| 85 | debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end); |
| 86 | invalidate_dcache_range(start, end); |
| 87 | } |
| 88 | |
| 89 | /* |
| 90 | * Ensure data for SATA controller is flushed out of dcache and |
| 91 | * written to physical memory. |
| 92 | */ |
| 93 | static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp) |
| 94 | { |
| 95 | ahci_dcache_flush_range((unsigned long)pp->cmd_slot, |
| 96 | AHCI_PORT_PRIV_DMA_SZ); |
| 97 | } |
| 98 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 99 | static int waiting_for_cmd_completed(void __iomem *offset, |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 100 | int timeout_msec, |
| 101 | u32 sign) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 102 | { |
| 103 | int i; |
| 104 | u32 status; |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 105 | |
| 106 | for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 107 | msleep(1); |
| 108 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 109 | return (i < timeout_msec) ? 0 : -1; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 110 | } |
| 111 | |
Rob Herring | aaec098 | 2013-08-24 10:10:51 -0500 | [diff] [blame] | 112 | int __weak ahci_link_up(struct ahci_probe_ent *probe_ent, u8 port) |
| 113 | { |
| 114 | u32 tmp; |
| 115 | int j = 0; |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 116 | void __iomem *port_mmio = probe_ent->port[port].port_mmio; |
Rob Herring | aaec098 | 2013-08-24 10:10:51 -0500 | [diff] [blame] | 117 | |
Wolfgang Denk | bd8ec7e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 118 | /* |
Rob Herring | aaec098 | 2013-08-24 10:10:51 -0500 | [diff] [blame] | 119 | * Bring up SATA link. |
| 120 | * SATA link bringup time is usually less than 1 ms; only very |
| 121 | * rarely has it taken between 1-2 ms. Never seen it above 2 ms. |
| 122 | */ |
| 123 | while (j < WAIT_MS_LINKUP) { |
| 124 | tmp = readl(port_mmio + PORT_SCR_STAT); |
| 125 | tmp &= PORT_SCR_STAT_DET_MASK; |
| 126 | if (tmp == PORT_SCR_STAT_DET_PHYRDY) |
| 127 | return 0; |
| 128 | udelay(1000); |
| 129 | j++; |
| 130 | } |
| 131 | return 1; |
| 132 | } |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 133 | |
Ian Campbell | a2ebf92 | 2014-07-18 20:38:41 +0100 | [diff] [blame] | 134 | #ifdef CONFIG_SUNXI_AHCI |
| 135 | /* The sunxi AHCI controller requires this undocumented setup */ |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 136 | static void sunxi_dma_init(void __iomem *port_mmio) |
Ian Campbell | a2ebf92 | 2014-07-18 20:38:41 +0100 | [diff] [blame] | 137 | { |
| 138 | clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400); |
| 139 | } |
| 140 | #endif |
| 141 | |
Scott Wood | 16519a3 | 2015-04-17 09:19:01 -0500 | [diff] [blame] | 142 | int ahci_reset(void __iomem *base) |
Dmitry Lifshitz | cff59a7 | 2014-12-15 16:02:55 +0200 | [diff] [blame] | 143 | { |
| 144 | int i = 1000; |
Scott Wood | 16519a3 | 2015-04-17 09:19:01 -0500 | [diff] [blame] | 145 | u32 __iomem *host_ctl_reg = base + HOST_CTL; |
Dmitry Lifshitz | cff59a7 | 2014-12-15 16:02:55 +0200 | [diff] [blame] | 146 | u32 tmp = readl(host_ctl_reg); /* global controller reset */ |
| 147 | |
| 148 | if ((tmp & HOST_RESET) == 0) |
| 149 | writel_with_flush(tmp | HOST_RESET, host_ctl_reg); |
| 150 | |
| 151 | /* |
| 152 | * reset must complete within 1 second, or |
| 153 | * the hardware should be considered fried. |
| 154 | */ |
| 155 | do { |
| 156 | udelay(1000); |
| 157 | tmp = readl(host_ctl_reg); |
| 158 | i--; |
| 159 | } while ((i > 0) && (tmp & HOST_RESET)); |
| 160 | |
| 161 | if (i == 0) { |
| 162 | printf("controller reset failed (0x%x)\n", tmp); |
| 163 | return -1; |
| 164 | } |
| 165 | |
| 166 | return 0; |
| 167 | } |
| 168 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 169 | static int ahci_host_init(struct ahci_probe_ent *probe_ent) |
| 170 | { |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 171 | #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI) |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 172 | # ifdef CONFIG_DM_PCI |
| 173 | struct udevice *dev = probe_ent->dev; |
| 174 | struct pci_child_platdata *pplat = dev_get_parent_platdata(dev); |
| 175 | # else |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 176 | pci_dev_t pdev = probe_ent->dev; |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 177 | unsigned short vendor; |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 178 | # endif |
| 179 | u16 tmp16; |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 180 | #endif |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 181 | void __iomem *mmio = probe_ent->mmio_base; |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 182 | u32 tmp, cap_save, cmd; |
Rob Herring | aaec098 | 2013-08-24 10:10:51 -0500 | [diff] [blame] | 183 | int i, j, ret; |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 184 | void __iomem *port_mmio; |
Richard Gibbs | 8bc0ab7 | 2013-08-24 10:10:47 -0500 | [diff] [blame] | 185 | u32 port_map; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 186 | |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 187 | debug("ahci_host_init: start\n"); |
| 188 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 189 | cap_save = readl(mmio + HOST_CAP); |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 190 | cap_save &= ((1 << 28) | (1 << 17)); |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 191 | cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 192 | |
Dmitry Lifshitz | cff59a7 | 2014-12-15 16:02:55 +0200 | [diff] [blame] | 193 | ret = ahci_reset(probe_ent->mmio_base); |
| 194 | if (ret) |
| 195 | return ret; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 196 | |
| 197 | writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL); |
| 198 | writel(cap_save, mmio + HOST_CAP); |
| 199 | writel_with_flush(0xf, mmio + HOST_PORTS_IMPL); |
| 200 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 201 | #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI) |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 202 | # ifdef CONFIG_DM_PCI |
| 203 | if (pplat->vendor == PCI_VENDOR_ID_INTEL) { |
| 204 | u16 tmp16; |
| 205 | |
| 206 | dm_pci_read_config16(dev, 0x92, &tmp16); |
| 207 | dm_pci_write_config16(dev, 0x92, tmp16 | 0xf); |
| 208 | } |
| 209 | # else |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 210 | pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor); |
| 211 | |
| 212 | if (vendor == PCI_VENDOR_ID_INTEL) { |
| 213 | u16 tmp16; |
| 214 | pci_read_config_word(pdev, 0x92, &tmp16); |
| 215 | tmp16 |= 0xf; |
| 216 | pci_write_config_word(pdev, 0x92, tmp16); |
| 217 | } |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 218 | # endif |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 219 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 220 | probe_ent->cap = readl(mmio + HOST_CAP); |
| 221 | probe_ent->port_map = readl(mmio + HOST_PORTS_IMPL); |
Richard Gibbs | 8bc0ab7 | 2013-08-24 10:10:47 -0500 | [diff] [blame] | 222 | port_map = probe_ent->port_map; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 223 | probe_ent->n_ports = (probe_ent->cap & 0x1f) + 1; |
| 224 | |
| 225 | debug("cap 0x%x port_map 0x%x n_ports %d\n", |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 226 | probe_ent->cap, probe_ent->port_map, probe_ent->n_ports); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 227 | |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 228 | if (probe_ent->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID) |
| 229 | probe_ent->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID; |
| 230 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 231 | for (i = 0; i < probe_ent->n_ports; i++) { |
Richard Gibbs | 8bc0ab7 | 2013-08-24 10:10:47 -0500 | [diff] [blame] | 232 | if (!(port_map & (1 << i))) |
| 233 | continue; |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 234 | probe_ent->port[i].port_mmio = ahci_port_base(mmio, i); |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 235 | port_mmio = (u8 *) probe_ent->port[i].port_mmio; |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 236 | ahci_setup_port(&probe_ent->port[i], mmio, i); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 237 | |
| 238 | /* make sure port is not active */ |
| 239 | tmp = readl(port_mmio + PORT_CMD); |
| 240 | if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON | |
| 241 | PORT_CMD_FIS_RX | PORT_CMD_START)) { |
Stefan Reinauer | 7ee0e437 | 2012-10-29 05:23:50 +0000 | [diff] [blame] | 242 | debug("Port %d is active. Deactivating.\n", i); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 243 | tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON | |
| 244 | PORT_CMD_FIS_RX | PORT_CMD_START); |
| 245 | writel_with_flush(tmp, port_mmio + PORT_CMD); |
| 246 | |
| 247 | /* spec says 500 msecs for each bit, so |
| 248 | * this is slightly incorrect. |
| 249 | */ |
| 250 | msleep(500); |
| 251 | } |
| 252 | |
Ian Campbell | a2ebf92 | 2014-07-18 20:38:41 +0100 | [diff] [blame] | 253 | #ifdef CONFIG_SUNXI_AHCI |
| 254 | sunxi_dma_init(port_mmio); |
| 255 | #endif |
| 256 | |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 257 | /* Add the spinup command to whatever mode bits may |
| 258 | * already be on in the command register. |
| 259 | */ |
| 260 | cmd = readl(port_mmio + PORT_CMD); |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 261 | cmd |= PORT_CMD_SPIN_UP; |
| 262 | writel_with_flush(cmd, port_mmio + PORT_CMD); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 263 | |
Rob Herring | aaec098 | 2013-08-24 10:10:51 -0500 | [diff] [blame] | 264 | /* Bring up SATA link. */ |
| 265 | ret = ahci_link_up(probe_ent, i); |
| 266 | if (ret) { |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 267 | printf("SATA link %d timeout.\n", i); |
| 268 | continue; |
| 269 | } else { |
| 270 | debug("SATA link ok.\n"); |
| 271 | } |
| 272 | |
| 273 | /* Clear error status */ |
| 274 | tmp = readl(port_mmio + PORT_SCR_ERR); |
| 275 | if (tmp) |
| 276 | writel(tmp, port_mmio + PORT_SCR_ERR); |
| 277 | |
| 278 | debug("Spinning up device on SATA port %d... ", i); |
| 279 | |
| 280 | j = 0; |
| 281 | while (j < WAIT_MS_SPINUP) { |
| 282 | tmp = readl(port_mmio + PORT_TFDATA); |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 283 | if (!(tmp & (ATA_BUSY | ATA_DRQ))) |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 284 | break; |
| 285 | udelay(1000); |
Rob Herring | c469854 | 2013-08-24 10:10:52 -0500 | [diff] [blame] | 286 | tmp = readl(port_mmio + PORT_SCR_STAT); |
| 287 | tmp &= PORT_SCR_STAT_DET_MASK; |
| 288 | if (tmp == PORT_SCR_STAT_DET_PHYRDY) |
| 289 | break; |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 290 | j++; |
| 291 | } |
Rob Herring | c469854 | 2013-08-24 10:10:52 -0500 | [diff] [blame] | 292 | |
| 293 | tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK; |
| 294 | if (tmp == PORT_SCR_STAT_DET_COMINIT) { |
| 295 | debug("SATA link %d down (COMINIT received), retrying...\n", i); |
| 296 | i--; |
| 297 | continue; |
| 298 | } |
| 299 | |
Marc Jones | bbb5784 | 2012-10-29 05:24:01 +0000 | [diff] [blame] | 300 | printf("Target spinup took %d ms.\n", j); |
| 301 | if (j == WAIT_MS_SPINUP) |
Stefan Reinauer | a63341c | 2012-10-29 05:23:49 +0000 | [diff] [blame] | 302 | debug("timeout.\n"); |
| 303 | else |
| 304 | debug("ok.\n"); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 305 | |
| 306 | tmp = readl(port_mmio + PORT_SCR_ERR); |
| 307 | debug("PORT_SCR_ERR 0x%x\n", tmp); |
| 308 | writel(tmp, port_mmio + PORT_SCR_ERR); |
| 309 | |
| 310 | /* ack any pending irq events for this port */ |
| 311 | tmp = readl(port_mmio + PORT_IRQ_STAT); |
| 312 | debug("PORT_IRQ_STAT 0x%x\n", tmp); |
| 313 | if (tmp) |
| 314 | writel(tmp, port_mmio + PORT_IRQ_STAT); |
| 315 | |
| 316 | writel(1 << i, mmio + HOST_IRQ_STAT); |
| 317 | |
Stefan Reinauer | 48791f1 | 2012-10-29 05:23:51 +0000 | [diff] [blame] | 318 | /* register linkup ports */ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 319 | tmp = readl(port_mmio + PORT_SCR_STAT); |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 320 | debug("SATA port %d status: 0x%x\n", i, tmp); |
Rob Herring | 723a281 | 2013-08-24 10:10:50 -0500 | [diff] [blame] | 321 | if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY) |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 322 | probe_ent->link_port_map |= (0x01 << i); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | tmp = readl(mmio + HOST_CTL); |
| 326 | debug("HOST_CTL 0x%x\n", tmp); |
| 327 | writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL); |
| 328 | tmp = readl(mmio + HOST_CTL); |
| 329 | debug("HOST_CTL 0x%x\n", tmp); |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 330 | #if !defined(CONFIG_DM_SCSI) |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 331 | #ifndef CONFIG_SCSI_AHCI_PLAT |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 332 | # ifdef CONFIG_DM_PCI |
| 333 | dm_pci_read_config16(dev, PCI_COMMAND, &tmp16); |
| 334 | tmp |= PCI_COMMAND_MASTER; |
| 335 | dm_pci_write_config16(dev, PCI_COMMAND, tmp16); |
| 336 | # else |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 337 | pci_read_config_word(pdev, PCI_COMMAND, &tmp16); |
| 338 | tmp |= PCI_COMMAND_MASTER; |
| 339 | pci_write_config_word(pdev, PCI_COMMAND, tmp16); |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 340 | # endif |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 341 | #endif |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 342 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | |
| 347 | static void ahci_print_info(struct ahci_probe_ent *probe_ent) |
| 348 | { |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 349 | #if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI) |
| 350 | # if defined(CONFIG_DM_PCI) |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 351 | struct udevice *dev = probe_ent->dev; |
| 352 | # else |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 353 | pci_dev_t pdev = probe_ent->dev; |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 354 | # endif |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 355 | u16 cc; |
| 356 | #endif |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 357 | void __iomem *mmio = probe_ent->mmio_base; |
Stefan Reinauer | 48791f1 | 2012-10-29 05:23:51 +0000 | [diff] [blame] | 358 | u32 vers, cap, cap2, impl, speed; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 359 | const char *speed_s; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 360 | const char *scc_s; |
| 361 | |
| 362 | vers = readl(mmio + HOST_VERSION); |
| 363 | cap = probe_ent->cap; |
Stefan Reinauer | 48791f1 | 2012-10-29 05:23:51 +0000 | [diff] [blame] | 364 | cap2 = readl(mmio + HOST_CAP2); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 365 | impl = probe_ent->port_map; |
| 366 | |
| 367 | speed = (cap >> 20) & 0xf; |
| 368 | if (speed == 1) |
| 369 | speed_s = "1.5"; |
| 370 | else if (speed == 2) |
| 371 | speed_s = "3"; |
Stefan Reinauer | 48791f1 | 2012-10-29 05:23:51 +0000 | [diff] [blame] | 372 | else if (speed == 3) |
| 373 | speed_s = "6"; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 374 | else |
| 375 | speed_s = "?"; |
| 376 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 377 | #if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI) |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 378 | scc_s = "SATA"; |
| 379 | #else |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 380 | # ifdef CONFIG_DM_PCI |
| 381 | dm_pci_read_config16(dev, 0x0a, &cc); |
| 382 | # else |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 383 | pci_read_config_word(pdev, 0x0a, &cc); |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 384 | # endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 385 | if (cc == 0x0101) |
| 386 | scc_s = "IDE"; |
| 387 | else if (cc == 0x0106) |
| 388 | scc_s = "SATA"; |
| 389 | else if (cc == 0x0104) |
| 390 | scc_s = "RAID"; |
| 391 | else |
| 392 | scc_s = "unknown"; |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 393 | #endif |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 394 | printf("AHCI %02x%02x.%02x%02x " |
| 395 | "%u slots %u ports %s Gbps 0x%x impl %s mode\n", |
| 396 | (vers >> 24) & 0xff, |
| 397 | (vers >> 16) & 0xff, |
| 398 | (vers >> 8) & 0xff, |
| 399 | vers & 0xff, |
| 400 | ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 401 | |
| 402 | printf("flags: " |
Stefan Reinauer | 48791f1 | 2012-10-29 05:23:51 +0000 | [diff] [blame] | 403 | "%s%s%s%s%s%s%s" |
| 404 | "%s%s%s%s%s%s%s" |
| 405 | "%s%s%s%s%s%s\n", |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 406 | cap & (1 << 31) ? "64bit " : "", |
| 407 | cap & (1 << 30) ? "ncq " : "", |
| 408 | cap & (1 << 28) ? "ilck " : "", |
| 409 | cap & (1 << 27) ? "stag " : "", |
| 410 | cap & (1 << 26) ? "pm " : "", |
| 411 | cap & (1 << 25) ? "led " : "", |
| 412 | cap & (1 << 24) ? "clo " : "", |
| 413 | cap & (1 << 19) ? "nz " : "", |
| 414 | cap & (1 << 18) ? "only " : "", |
| 415 | cap & (1 << 17) ? "pmp " : "", |
Stefan Reinauer | 48791f1 | 2012-10-29 05:23:51 +0000 | [diff] [blame] | 416 | cap & (1 << 16) ? "fbss " : "", |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 417 | cap & (1 << 15) ? "pio " : "", |
| 418 | cap & (1 << 14) ? "slum " : "", |
Stefan Reinauer | 48791f1 | 2012-10-29 05:23:51 +0000 | [diff] [blame] | 419 | cap & (1 << 13) ? "part " : "", |
| 420 | cap & (1 << 7) ? "ccc " : "", |
| 421 | cap & (1 << 6) ? "ems " : "", |
| 422 | cap & (1 << 5) ? "sxs " : "", |
| 423 | cap2 & (1 << 2) ? "apst " : "", |
| 424 | cap2 & (1 << 1) ? "nvmp " : "", |
| 425 | cap2 & (1 << 0) ? "boh " : ""); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 426 | } |
| 427 | |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 428 | #ifndef CONFIG_SCSI_AHCI_PLAT |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 429 | # if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI) |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 430 | static int ahci_init_one(struct udevice *dev) |
| 431 | # else |
| 432 | static int ahci_init_one(pci_dev_t dev) |
| 433 | # endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 434 | { |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 435 | #if !defined(CONFIG_DM_SCSI) |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 436 | u16 vendor; |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 437 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 438 | int rc; |
| 439 | |
Ed Swarthout | afd2519 | 2007-08-14 14:06:45 -0500 | [diff] [blame] | 440 | probe_ent = malloc(sizeof(struct ahci_probe_ent)); |
Roger Quadros | 7b6cb61 | 2013-11-11 16:56:37 +0200 | [diff] [blame] | 441 | if (!probe_ent) { |
| 442 | printf("%s: No memory for probe_ent\n", __func__); |
| 443 | return -ENOMEM; |
| 444 | } |
| 445 | |
Ed Swarthout | afd2519 | 2007-08-14 14:06:45 -0500 | [diff] [blame] | 446 | memset(probe_ent, 0, sizeof(struct ahci_probe_ent)); |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 447 | probe_ent->dev = dev; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 448 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 449 | probe_ent->host_flags = ATA_FLAG_SATA |
| 450 | | ATA_FLAG_NO_LEGACY |
| 451 | | ATA_FLAG_MMIO |
| 452 | | ATA_FLAG_PIO_DMA |
| 453 | | ATA_FLAG_NO_ATAPI; |
| 454 | probe_ent->pio_mask = 0x1f; |
| 455 | probe_ent->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 456 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 457 | #if !defined(CONFIG_DM_SCSI) |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 458 | #ifdef CONFIG_DM_PCI |
| 459 | probe_ent->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5, |
| 460 | PCI_REGION_MEM); |
| 461 | |
| 462 | /* Take from kernel: |
| 463 | * JMicron-specific fixup: |
| 464 | * make sure we're in AHCI mode |
| 465 | */ |
| 466 | dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor); |
| 467 | if (vendor == 0x197b) |
| 468 | dm_pci_write_config8(dev, 0x41, 0xa1); |
| 469 | #else |
| 470 | probe_ent->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5, |
Scott Wood | 16519a3 | 2015-04-17 09:19:01 -0500 | [diff] [blame] | 471 | PCI_REGION_MEM); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 472 | |
| 473 | /* Take from kernel: |
| 474 | * JMicron-specific fixup: |
| 475 | * make sure we're in AHCI mode |
| 476 | */ |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 477 | pci_read_config_word(dev, PCI_VENDOR_ID, &vendor); |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 478 | if (vendor == 0x197b) |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 479 | pci_write_config_byte(dev, 0x41, 0xa1); |
| 480 | #endif |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 481 | #else |
Simon Glass | b08fbff | 2017-06-14 21:28:31 -0600 | [diff] [blame^] | 482 | struct scsi_platdata *plat = dev_get_uclass_platdata(dev); |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 483 | probe_ent->mmio_base = (void *)plat->base; |
| 484 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 485 | |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 486 | debug("ahci mmio_base=0x%p\n", probe_ent->mmio_base); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 487 | /* initialize adapter */ |
| 488 | rc = ahci_host_init(probe_ent); |
| 489 | if (rc) |
| 490 | goto err_out; |
| 491 | |
| 492 | ahci_print_info(probe_ent); |
| 493 | |
| 494 | return 0; |
| 495 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 496 | err_out: |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 497 | return rc; |
| 498 | } |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 499 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 500 | |
| 501 | #define MAX_DATA_BYTE_COUNT (4*1024*1024) |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 502 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 503 | static int ahci_fill_sg(u8 port, unsigned char *buf, int buf_len) |
| 504 | { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 505 | struct ahci_ioports *pp = &(probe_ent->port[port]); |
| 506 | struct ahci_sg *ahci_sg = pp->cmd_tbl_sg; |
| 507 | u32 sg_count; |
| 508 | int i; |
| 509 | |
| 510 | sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1; |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 511 | if (sg_count > AHCI_MAX_SG) { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 512 | printf("Error:Too much sg!\n"); |
| 513 | return -1; |
| 514 | } |
| 515 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 516 | for (i = 0; i < sg_count; i++) { |
| 517 | ahci_sg->addr = |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 518 | cpu_to_le32((unsigned long) buf + i * MAX_DATA_BYTE_COUNT); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 519 | ahci_sg->addr_hi = 0; |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 520 | ahci_sg->flags_size = cpu_to_le32(0x3fffff & |
| 521 | (buf_len < MAX_DATA_BYTE_COUNT |
| 522 | ? (buf_len - 1) |
| 523 | : (MAX_DATA_BYTE_COUNT - 1))); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 524 | ahci_sg++; |
| 525 | buf_len -= MAX_DATA_BYTE_COUNT; |
| 526 | } |
| 527 | |
| 528 | return sg_count; |
| 529 | } |
| 530 | |
| 531 | |
| 532 | static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts) |
| 533 | { |
| 534 | pp->cmd_slot->opts = cpu_to_le32(opts); |
| 535 | pp->cmd_slot->status = 0; |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 536 | pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff); |
| 537 | #ifdef CONFIG_PHYS_64BIT |
| 538 | pp->cmd_slot->tbl_addr_hi = |
| 539 | cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16)); |
| 540 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 541 | } |
| 542 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 543 | static int wait_spinup(void __iomem *port_mmio) |
Bin Meng | b138e91 | 2014-12-31 17:18:39 +0800 | [diff] [blame] | 544 | { |
| 545 | ulong start; |
| 546 | u32 tf_data; |
| 547 | |
| 548 | start = get_timer(0); |
| 549 | do { |
| 550 | tf_data = readl(port_mmio + PORT_TFDATA); |
| 551 | if (!(tf_data & ATA_BUSY)) |
| 552 | return 0; |
| 553 | } while (get_timer(start) < WAIT_MS_SPINUP); |
| 554 | |
| 555 | return -ETIMEDOUT; |
| 556 | } |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 557 | |
| 558 | static int ahci_port_start(u8 port) |
| 559 | { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 560 | struct ahci_ioports *pp = &(probe_ent->port[port]); |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 561 | void __iomem *port_mmio = pp->port_mmio; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 562 | u32 port_status; |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 563 | void __iomem *mem; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 564 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 565 | debug("Enter start port: %d\n", port); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 566 | port_status = readl(port_mmio + PORT_SCR_STAT); |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 567 | debug("Port %d status: %x\n", port, port_status); |
| 568 | if ((port_status & 0xf) != 0x03) { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 569 | printf("No Link on this port!\n"); |
| 570 | return -1; |
| 571 | } |
| 572 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 573 | mem = malloc(AHCI_PORT_PRIV_DMA_SZ + 2048); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 574 | if (!mem) { |
| 575 | free(pp); |
Roger Quadros | 7b6cb61 | 2013-11-11 16:56:37 +0200 | [diff] [blame] | 576 | printf("%s: No mem for table!\n", __func__); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 577 | return -ENOMEM; |
| 578 | } |
| 579 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 580 | /* Aligned to 2048-bytes */ |
| 581 | mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ); |
| 582 | memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 583 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 584 | /* |
| 585 | * First item in chunk of DMA memory: 32-slot command table, |
| 586 | * 32 bytes each in size |
| 587 | */ |
Taylor Hutt | 3455f53 | 2012-10-29 05:23:58 +0000 | [diff] [blame] | 588 | pp->cmd_slot = |
| 589 | (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem); |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 590 | debug("cmd_slot = %p\n", pp->cmd_slot); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 591 | mem += (AHCI_CMD_SLOT_SZ + 224); |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 592 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 593 | /* |
| 594 | * Second item: Received-FIS area |
| 595 | */ |
Taylor Hutt | 3455f53 | 2012-10-29 05:23:58 +0000 | [diff] [blame] | 596 | pp->rx_fis = virt_to_phys((void *)mem); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 597 | mem += AHCI_RX_FIS_SZ; |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 598 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 599 | /* |
| 600 | * Third item: data area for storing a single command |
| 601 | * and its scatter-gather table |
| 602 | */ |
Taylor Hutt | 3455f53 | 2012-10-29 05:23:58 +0000 | [diff] [blame] | 603 | pp->cmd_tbl = virt_to_phys((void *)mem); |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 604 | debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 605 | |
| 606 | mem += AHCI_CMD_TBL_HDR; |
Taylor Hutt | 3455f53 | 2012-10-29 05:23:58 +0000 | [diff] [blame] | 607 | pp->cmd_tbl_sg = |
| 608 | (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 609 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 610 | writel_with_flush((unsigned long)pp->cmd_slot, |
| 611 | port_mmio + PORT_LST_ADDR); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 612 | |
| 613 | writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR); |
| 614 | |
Ian Campbell | a2ebf92 | 2014-07-18 20:38:41 +0100 | [diff] [blame] | 615 | #ifdef CONFIG_SUNXI_AHCI |
| 616 | sunxi_dma_init(port_mmio); |
| 617 | #endif |
| 618 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 619 | writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 620 | PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP | |
| 621 | PORT_CMD_START, port_mmio + PORT_CMD); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 622 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 623 | debug("Exit start port %d\n", port); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 624 | |
Bin Meng | b138e91 | 2014-12-31 17:18:39 +0800 | [diff] [blame] | 625 | /* |
| 626 | * Make sure interface is not busy based on error and status |
| 627 | * information from task file data register before proceeding |
| 628 | */ |
| 629 | return wait_spinup(port_mmio); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 633 | static int ahci_device_data_io(u8 port, u8 *fis, int fis_len, u8 *buf, |
| 634 | int buf_len, u8 is_write) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 635 | { |
| 636 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 637 | struct ahci_ioports *pp = &(probe_ent->port[port]); |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 638 | void __iomem *port_mmio = pp->port_mmio; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 639 | u32 opts; |
| 640 | u32 port_status; |
| 641 | int sg_count; |
| 642 | |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 643 | debug("Enter %s: for port %d\n", __func__, port); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 644 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 645 | if (port > probe_ent->n_ports) { |
Taylor Hutt | 1b1d42e | 2012-10-29 05:23:56 +0000 | [diff] [blame] | 646 | printf("Invalid port number %d\n", port); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 647 | return -1; |
| 648 | } |
| 649 | |
| 650 | port_status = readl(port_mmio + PORT_SCR_STAT); |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 651 | if ((port_status & 0xf) != 0x03) { |
| 652 | debug("No Link on port %d!\n", port); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 653 | return -1; |
| 654 | } |
| 655 | |
| 656 | memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len); |
| 657 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 658 | sg_count = ahci_fill_sg(port, buf, buf_len); |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 659 | opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 660 | ahci_fill_cmd_slot(pp, opts); |
| 661 | |
Taylor Hutt | 33e4c2f | 2012-10-29 05:23:59 +0000 | [diff] [blame] | 662 | ahci_dcache_flush_sata_cmd(pp); |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 663 | ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len); |
Taylor Hutt | 33e4c2f | 2012-10-29 05:23:59 +0000 | [diff] [blame] | 664 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 665 | writel_with_flush(1, port_mmio + PORT_CMD_ISSUE); |
| 666 | |
Walter Murphy | efd49b4 | 2012-10-29 05:24:00 +0000 | [diff] [blame] | 667 | if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE, |
| 668 | WAIT_MS_DATAIO, 0x1)) { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 669 | printf("timeout exit!\n"); |
| 670 | return -1; |
| 671 | } |
Taylor Hutt | 33e4c2f | 2012-10-29 05:23:59 +0000 | [diff] [blame] | 672 | |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 673 | ahci_dcache_invalidate_range((unsigned long)buf, |
| 674 | (unsigned long)buf_len); |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 675 | debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 676 | |
| 677 | return 0; |
| 678 | } |
| 679 | |
| 680 | |
| 681 | static char *ata_id_strcpy(u16 *target, u16 *src, int len) |
| 682 | { |
| 683 | int i; |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 684 | for (i = 0; i < len / 2; i++) |
Rob Herring | 33601839 | 2011-06-01 09:10:26 +0000 | [diff] [blame] | 685 | target[i] = swab16(src[i]); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 686 | return (char *)target; |
| 687 | } |
| 688 | |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 689 | /* |
| 690 | * SCSI INQUIRY command operation. |
| 691 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 692 | static int ata_scsiop_inquiry(struct scsi_cmd *pccb) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 693 | { |
Rob Herring | 9855a23 | 2013-08-24 10:10:48 -0500 | [diff] [blame] | 694 | static const u8 hdr[] = { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 695 | 0, |
| 696 | 0, |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 697 | 0x5, /* claim SPC-3 version compatibility */ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 698 | 2, |
| 699 | 95 - 4, |
| 700 | }; |
| 701 | u8 fis[20]; |
Roger Quadros | da3976e | 2014-04-01 17:26:40 +0300 | [diff] [blame] | 702 | u16 *idbuf; |
Roger Quadros | ff56ee1 | 2013-11-11 16:56:38 +0200 | [diff] [blame] | 703 | ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 704 | u8 port; |
| 705 | |
| 706 | /* Clean ccb data buffer */ |
| 707 | memset(pccb->pdata, 0, pccb->datalen); |
| 708 | |
| 709 | memcpy(pccb->pdata, hdr, sizeof(hdr)); |
| 710 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 711 | if (pccb->datalen <= 35) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 712 | return 0; |
| 713 | |
Taylor Hutt | 54d0f55 | 2012-10-29 05:23:55 +0000 | [diff] [blame] | 714 | memset(fis, 0, sizeof(fis)); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 715 | /* Construct the FIS */ |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 716 | fis[0] = 0x27; /* Host to device FIS. */ |
| 717 | fis[1] = 1 << 7; /* Command FIS. */ |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 718 | fis[2] = ATA_CMD_ID_ATA; /* Command byte. */ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 719 | |
| 720 | /* Read id from sata */ |
| 721 | port = pccb->target; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 722 | |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 723 | if (ahci_device_data_io(port, (u8 *) &fis, sizeof(fis), (u8 *)tmpid, |
| 724 | ATA_ID_WORDS * 2, 0)) { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 725 | debug("scsi_ahci: SCSI inquiry command failure.\n"); |
| 726 | return -EIO; |
| 727 | } |
| 728 | |
Roger Quadros | da3976e | 2014-04-01 17:26:40 +0300 | [diff] [blame] | 729 | if (!ataid[port]) { |
| 730 | ataid[port] = malloc(ATA_ID_WORDS * 2); |
| 731 | if (!ataid[port]) { |
| 732 | printf("%s: No memory for ataid[port]\n", __func__); |
| 733 | return -ENOMEM; |
| 734 | } |
| 735 | } |
| 736 | |
| 737 | idbuf = ataid[port]; |
| 738 | |
| 739 | memcpy(idbuf, tmpid, ATA_ID_WORDS * 2); |
| 740 | ata_swap_buf_le16(idbuf, ATA_ID_WORDS); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 741 | |
| 742 | memcpy(&pccb->pdata[8], "ATA ", 8); |
Roger Quadros | da3976e | 2014-04-01 17:26:40 +0300 | [diff] [blame] | 743 | ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16); |
| 744 | ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 745 | |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 746 | #ifdef DEBUG |
Roger Quadros | da3976e | 2014-04-01 17:26:40 +0300 | [diff] [blame] | 747 | ata_dump_id(idbuf); |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 748 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 749 | return 0; |
| 750 | } |
| 751 | |
| 752 | |
| 753 | /* |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 754 | * SCSI READ10/WRITE10 command operation. |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 755 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 756 | static int ata_scsiop_read_write(struct scsi_cmd *pccb, u8 is_write) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 757 | { |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 758 | lbaint_t lba = 0; |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 759 | u16 blocks = 0; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 760 | u8 fis[20]; |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 761 | u8 *user_buffer = pccb->pdata; |
| 762 | u32 user_buffer_size = pccb->datalen; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 763 | |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 764 | /* Retrieve the base LBA number from the ccb structure. */ |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 765 | if (pccb->cmd[0] == SCSI_READ16) { |
| 766 | memcpy(&lba, pccb->cmd + 2, 8); |
| 767 | lba = be64_to_cpu(lba); |
| 768 | } else { |
| 769 | u32 temp; |
| 770 | memcpy(&temp, pccb->cmd + 2, 4); |
| 771 | lba = be32_to_cpu(temp); |
| 772 | } |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 773 | |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 774 | /* |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 775 | * Retrieve the base LBA number and the block count from |
| 776 | * the ccb structure. |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 777 | * |
| 778 | * For 10-byte and 16-byte SCSI R/W commands, transfer |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 779 | * length 0 means transfer 0 block of data. |
| 780 | * However, for ATA R/W commands, sector count 0 means |
| 781 | * 256 or 65536 sectors, not 0 sectors as in SCSI. |
| 782 | * |
| 783 | * WARNING: one or two older ATA drives treat 0 as 0... |
| 784 | */ |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 785 | if (pccb->cmd[0] == SCSI_READ16) |
| 786 | blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]); |
| 787 | else |
| 788 | blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]); |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 789 | |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 790 | debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n", |
| 791 | is_write ? "write" : "read", blocks, lba); |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 792 | |
| 793 | /* Preset the FIS */ |
Taylor Hutt | 54d0f55 | 2012-10-29 05:23:55 +0000 | [diff] [blame] | 794 | memset(fis, 0, sizeof(fis)); |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 795 | fis[0] = 0x27; /* Host to device FIS. */ |
| 796 | fis[1] = 1 << 7; /* Command FIS. */ |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 797 | /* Command byte (read/write). */ |
Walter Murphy | d1cb64b | 2012-10-29 05:24:03 +0000 | [diff] [blame] | 798 | fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 799 | |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 800 | while (blocks) { |
| 801 | u16 now_blocks; /* number of blocks per iteration */ |
| 802 | u32 transfer_size; /* number of bytes per iteration */ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 803 | |
Masahiro Yamada | db20464 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 804 | now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 805 | |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 806 | transfer_size = ATA_SECT_SIZE * now_blocks; |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 807 | if (transfer_size > user_buffer_size) { |
| 808 | printf("scsi_ahci: Error: buffer too small.\n"); |
| 809 | return -EIO; |
| 810 | } |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 811 | |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 812 | /* |
| 813 | * LBA48 SATA command but only use 32bit address range within |
| 814 | * that (unless we've enabled 64bit LBA support). The next |
| 815 | * smaller command range (28bit) is too small. |
Walter Murphy | d1cb64b | 2012-10-29 05:24:03 +0000 | [diff] [blame] | 816 | */ |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 817 | fis[4] = (lba >> 0) & 0xff; |
| 818 | fis[5] = (lba >> 8) & 0xff; |
| 819 | fis[6] = (lba >> 16) & 0xff; |
Walter Murphy | d1cb64b | 2012-10-29 05:24:03 +0000 | [diff] [blame] | 820 | fis[7] = 1 << 6; /* device reg: set LBA mode */ |
| 821 | fis[8] = ((lba >> 24) & 0xff); |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 822 | #ifdef CONFIG_SYS_64BIT_LBA |
| 823 | if (pccb->cmd[0] == SCSI_READ16) { |
| 824 | fis[9] = ((lba >> 32) & 0xff); |
| 825 | fis[10] = ((lba >> 40) & 0xff); |
| 826 | } |
| 827 | #endif |
| 828 | |
Walter Murphy | d1cb64b | 2012-10-29 05:24:03 +0000 | [diff] [blame] | 829 | fis[3] = 0xe0; /* features */ |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 830 | |
| 831 | /* Block (sector) count */ |
| 832 | fis[12] = (now_blocks >> 0) & 0xff; |
| 833 | fis[13] = (now_blocks >> 8) & 0xff; |
| 834 | |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 835 | /* Read/Write from ahci */ |
| 836 | if (ahci_device_data_io(pccb->target, (u8 *) &fis, sizeof(fis), |
Tang Yuantian | 5fb2c9e | 2015-03-31 15:02:43 +0800 | [diff] [blame] | 837 | user_buffer, transfer_size, |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 838 | is_write)) { |
| 839 | debug("scsi_ahci: SCSI %s10 command failure.\n", |
| 840 | is_write ? "WRITE" : "READ"); |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 841 | return -EIO; |
| 842 | } |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 843 | |
| 844 | /* If this transaction is a write, do a following flush. |
| 845 | * Writes in u-boot are so rare, and the logic to know when is |
| 846 | * the last write and do a flush only there is sufficiently |
| 847 | * difficult. Just do a flush after every write. This incurs, |
| 848 | * usually, one extra flush when the rare writes do happen. |
| 849 | */ |
| 850 | if (is_write) { |
| 851 | if (-EIO == ata_io_flush(pccb->target)) |
| 852 | return -EIO; |
| 853 | } |
Vadim Bendebury | 700f85c | 2012-10-29 05:23:44 +0000 | [diff] [blame] | 854 | user_buffer += transfer_size; |
| 855 | user_buffer_size -= transfer_size; |
| 856 | blocks -= now_blocks; |
| 857 | lba += now_blocks; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | return 0; |
| 861 | } |
| 862 | |
| 863 | |
| 864 | /* |
| 865 | * SCSI READ CAPACITY10 command operation. |
| 866 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 867 | static int ata_scsiop_read_capacity10(struct scsi_cmd *pccb) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 868 | { |
Kumar Gala | 8a19065 | 2009-07-13 09:24:00 -0500 | [diff] [blame] | 869 | u32 cap; |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 870 | u64 cap64; |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 871 | u32 block_size; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 872 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 873 | if (!ataid[pccb->target]) { |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 874 | printf("scsi_ahci: SCSI READ CAPACITY10 command failure. " |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 875 | "\tNo ATA info!\n" |
Vagrant Cascadian | beb288b | 2015-11-24 14:46:24 -0800 | [diff] [blame] | 876 | "\tPlease run SCSI command INQUIRY first!\n"); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 877 | return -EPERM; |
| 878 | } |
| 879 | |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 880 | cap64 = ata_id_n_sectors(ataid[pccb->target]); |
| 881 | if (cap64 > 0x100000000ULL) |
| 882 | cap64 = 0xffffffff; |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 883 | |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 884 | cap = cpu_to_be32(cap64); |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 885 | memcpy(pccb->pdata, &cap, sizeof(cap)); |
| 886 | |
| 887 | block_size = cpu_to_be32((u32)512); |
| 888 | memcpy(&pccb->pdata[4], &block_size, 4); |
| 889 | |
| 890 | return 0; |
| 891 | } |
| 892 | |
| 893 | |
| 894 | /* |
| 895 | * SCSI READ CAPACITY16 command operation. |
| 896 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 897 | static int ata_scsiop_read_capacity16(struct scsi_cmd *pccb) |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 898 | { |
| 899 | u64 cap; |
| 900 | u64 block_size; |
| 901 | |
| 902 | if (!ataid[pccb->target]) { |
| 903 | printf("scsi_ahci: SCSI READ CAPACITY16 command failure. " |
| 904 | "\tNo ATA info!\n" |
Vagrant Cascadian | beb288b | 2015-11-24 14:46:24 -0800 | [diff] [blame] | 905 | "\tPlease run SCSI command INQUIRY first!\n"); |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 906 | return -EPERM; |
| 907 | } |
| 908 | |
Rob Herring | 83f6648 | 2013-08-24 10:10:54 -0500 | [diff] [blame] | 909 | cap = ata_id_n_sectors(ataid[pccb->target]); |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 910 | cap = cpu_to_be64(cap); |
Kumar Gala | 8a19065 | 2009-07-13 09:24:00 -0500 | [diff] [blame] | 911 | memcpy(pccb->pdata, &cap, sizeof(cap)); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 912 | |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 913 | block_size = cpu_to_be64((u64)512); |
| 914 | memcpy(&pccb->pdata[8], &block_size, 8); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 915 | |
| 916 | return 0; |
| 917 | } |
| 918 | |
| 919 | |
| 920 | /* |
| 921 | * SCSI TEST UNIT READY command operation. |
| 922 | */ |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 923 | static int ata_scsiop_test_unit_ready(struct scsi_cmd *pccb) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 924 | { |
| 925 | return (ataid[pccb->target]) ? 0 : -EPERM; |
| 926 | } |
| 927 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 928 | |
Simon Glass | 5fb559d | 2017-06-14 21:28:30 -0600 | [diff] [blame] | 929 | int scsi_exec(struct scsi_cmd *pccb) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 930 | { |
| 931 | int ret; |
| 932 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 933 | switch (pccb->cmd[0]) { |
Mark Langsdorf | 5ed06fc | 2015-06-05 00:58:45 +0100 | [diff] [blame] | 934 | case SCSI_READ16: |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 935 | case SCSI_READ10: |
Hung-Te Lin | 0f10bd4 | 2012-10-29 05:23:53 +0000 | [diff] [blame] | 936 | ret = ata_scsiop_read_write(pccb, 0); |
| 937 | break; |
| 938 | case SCSI_WRITE10: |
| 939 | ret = ata_scsiop_read_write(pccb, 1); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 940 | break; |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 941 | case SCSI_RD_CAPAC10: |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 942 | ret = ata_scsiop_read_capacity10(pccb); |
| 943 | break; |
Gabe Black | dd2c734 | 2012-10-29 05:23:54 +0000 | [diff] [blame] | 944 | case SCSI_RD_CAPAC16: |
| 945 | ret = ata_scsiop_read_capacity16(pccb); |
| 946 | break; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 947 | case SCSI_TST_U_RDY: |
| 948 | ret = ata_scsiop_test_unit_ready(pccb); |
| 949 | break; |
| 950 | case SCSI_INQUIRY: |
| 951 | ret = ata_scsiop_inquiry(pccb); |
| 952 | break; |
| 953 | default: |
| 954 | printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]); |
York Sun | 4a59809 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 955 | return false; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 956 | } |
| 957 | |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 958 | if (ret) { |
| 959 | debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret); |
York Sun | 4a59809 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 960 | return false; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 961 | } |
York Sun | 4a59809 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 962 | return true; |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 963 | |
| 964 | } |
| 965 | |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 966 | #if defined(CONFIG_DM_SCSI) |
| 967 | void scsi_low_level_init(int busdevfunc, struct udevice *dev) |
| 968 | #else |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 969 | void scsi_low_level_init(int busdevfunc) |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 970 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 971 | { |
| 972 | int i; |
| 973 | u32 linkmap; |
| 974 | |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 975 | #ifndef CONFIG_SCSI_AHCI_PLAT |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 976 | # if defined(CONFIG_DM_PCI) |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 977 | struct udevice *dev; |
| 978 | int ret; |
| 979 | |
| 980 | ret = dm_pci_bus_find_bdf(busdevfunc, &dev); |
| 981 | if (ret) |
| 982 | return; |
| 983 | ahci_init_one(dev); |
Michal Simek | c886f35 | 2016-09-08 15:06:45 +0200 | [diff] [blame] | 984 | # elif defined(CONFIG_DM_SCSI) |
| 985 | ahci_init_one(dev); |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 986 | # else |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 987 | ahci_init_one(busdevfunc); |
Simon Glass | 6f9135b | 2015-11-29 13:18:06 -0700 | [diff] [blame] | 988 | # endif |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 989 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 990 | |
| 991 | linkmap = probe_ent->link_port_map; |
| 992 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 993 | for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) { |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 994 | if (((linkmap >> i) & 0x01)) { |
| 995 | if (ahci_port_start((u8) i)) { |
| 996 | printf("Can not start port %d\n", i); |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 997 | continue; |
| 998 | } |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 999 | } |
| 1000 | } |
| 1001 | } |
| 1002 | |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 1003 | #ifdef CONFIG_SCSI_AHCI_PLAT |
Scott Wood | 16519a3 | 2015-04-17 09:19:01 -0500 | [diff] [blame] | 1004 | int ahci_init(void __iomem *base) |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 1005 | { |
| 1006 | int i, rc = 0; |
| 1007 | u32 linkmap; |
| 1008 | |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 1009 | probe_ent = malloc(sizeof(struct ahci_probe_ent)); |
Roger Quadros | 7b6cb61 | 2013-11-11 16:56:37 +0200 | [diff] [blame] | 1010 | if (!probe_ent) { |
| 1011 | printf("%s: No memory for probe_ent\n", __func__); |
| 1012 | return -ENOMEM; |
| 1013 | } |
| 1014 | |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 1015 | memset(probe_ent, 0, sizeof(struct ahci_probe_ent)); |
| 1016 | |
| 1017 | probe_ent->host_flags = ATA_FLAG_SATA |
| 1018 | | ATA_FLAG_NO_LEGACY |
| 1019 | | ATA_FLAG_MMIO |
| 1020 | | ATA_FLAG_PIO_DMA |
| 1021 | | ATA_FLAG_NO_ATAPI; |
| 1022 | probe_ent->pio_mask = 0x1f; |
| 1023 | probe_ent->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */ |
| 1024 | |
| 1025 | probe_ent->mmio_base = base; |
| 1026 | |
| 1027 | /* initialize adapter */ |
| 1028 | rc = ahci_host_init(probe_ent); |
| 1029 | if (rc) |
| 1030 | goto err_out; |
| 1031 | |
| 1032 | ahci_print_info(probe_ent); |
| 1033 | |
| 1034 | linkmap = probe_ent->link_port_map; |
| 1035 | |
| 1036 | for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) { |
| 1037 | if (((linkmap >> i) & 0x01)) { |
| 1038 | if (ahci_port_start((u8) i)) { |
| 1039 | printf("Can not start port %d\n", i); |
| 1040 | continue; |
| 1041 | } |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 1042 | } |
| 1043 | } |
| 1044 | err_out: |
| 1045 | return rc; |
| 1046 | } |
Ian Campbell | 1934996 | 2014-03-07 01:20:56 +0000 | [diff] [blame] | 1047 | |
| 1048 | void __weak scsi_init(void) |
| 1049 | { |
| 1050 | } |
| 1051 | |
Rob Herring | c2829ff | 2011-07-06 16:13:36 +0000 | [diff] [blame] | 1052 | #endif |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 1053 | |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 1054 | /* |
| 1055 | * In the general case of generic rotating media it makes sense to have a |
| 1056 | * flush capability. It probably even makes sense in the case of SSDs because |
| 1057 | * one cannot always know for sure what kind of internal cache/flush mechanism |
| 1058 | * is embodied therein. At first it was planned to invoke this after the last |
| 1059 | * write to disk and before rebooting. In practice, knowing, a priori, which |
| 1060 | * is the last write is difficult. Because writing to the disk in u-boot is |
| 1061 | * very rare, this flush command will be invoked after every block write. |
| 1062 | */ |
| 1063 | static int ata_io_flush(u8 port) |
| 1064 | { |
| 1065 | u8 fis[20]; |
| 1066 | struct ahci_ioports *pp = &(probe_ent->port[port]); |
Tang Yuantian | 3f262d0 | 2015-07-09 14:37:30 +0800 | [diff] [blame] | 1067 | void __iomem *port_mmio = pp->port_mmio; |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 1068 | u32 cmd_fis_len = 5; /* five dwords */ |
| 1069 | |
| 1070 | /* Preset the FIS */ |
| 1071 | memset(fis, 0, 20); |
| 1072 | fis[0] = 0x27; /* Host to device FIS. */ |
| 1073 | fis[1] = 1 << 7; /* Command FIS. */ |
Walter Murphy | d1cb64b | 2012-10-29 05:24:03 +0000 | [diff] [blame] | 1074 | fis[2] = ATA_CMD_FLUSH_EXT; |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 1075 | |
| 1076 | memcpy((unsigned char *)pp->cmd_tbl, fis, 20); |
| 1077 | ahci_fill_cmd_slot(pp, cmd_fis_len); |
Tang Yuantian | 93b99e0 | 2016-04-14 16:21:00 +0800 | [diff] [blame] | 1078 | ahci_dcache_flush_sata_cmd(pp); |
Marc Jones | 49ec4b1 | 2012-10-29 05:24:02 +0000 | [diff] [blame] | 1079 | writel_with_flush(1, port_mmio + PORT_CMD_ISSUE); |
| 1080 | |
| 1081 | if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE, |
| 1082 | WAIT_MS_FLUSH, 0x1)) { |
| 1083 | debug("scsi_ahci: flush command timeout on port %d.\n", port); |
| 1084 | return -EIO; |
| 1085 | } |
| 1086 | |
| 1087 | return 0; |
| 1088 | } |
| 1089 | |
| 1090 | |
Dmitry Lifshitz | 533d33f | 2014-12-15 16:02:56 +0200 | [diff] [blame] | 1091 | __weak void scsi_bus_reset(void) |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 1092 | { |
Jon Loeliger | c0b0cda | 2006-08-23 11:04:43 -0500 | [diff] [blame] | 1093 | /*Not implement*/ |
Jin Zhengxiong | ae180dc | 2006-08-23 19:10:44 +0800 | [diff] [blame] | 1094 | } |