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