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