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