blob: 5fafb63aeb304b2f575d0feae4d3beb194454e43 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08002/*
Kumar Gala4c2e3da2009-07-28 21:49:52 -05003 * Copyright (C) Freescale Semiconductor, Inc. 2006.
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08004 * Author: Jason Jin<Jason.jin@freescale.com>
5 * Zhang Wei<wei.zhang@freescale.com>
6 *
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08007 * with the reference on libata and ahci drvier in kernel
Simon Glass7cf1afc2017-06-14 21:28:37 -06008 *
9 * This driver provides a SCSI interface to SATA.
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080010 */
11#include <common.h>
12
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080013#include <command.h>
Simon Glassff758cc2015-11-29 13:18:06 -070014#include <dm.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080015#include <pci.h>
16#include <asm/processor.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090017#include <linux/errno.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080018#include <asm/io.h>
19#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060020#include <memalign.h>
Simon Glass681357f2017-06-14 21:28:46 -060021#include <pci.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080022#include <scsi.h>
Rob Herring344ca0b2013-08-24 10:10:54 -050023#include <libata.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080024#include <linux/ctype.h>
25#include <ahci.h>
Simon Glass681357f2017-06-14 21:28:46 -060026#include <dm/device-internal.h>
27#include <dm/lists.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080028
Simon Glass225b1da2017-06-14 21:28:34 -060029static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port);
Marc Jones766b16f2012-10-29 05:24:02 +000030
Simon Glass4682c8a2017-06-14 21:28:40 -060031#ifndef CONFIG_DM_SCSI
Simon Glass2c9f9ef2017-06-14 21:28:32 -060032struct ahci_uc_priv *probe_ent = NULL;
Simon Glass4682c8a2017-06-14 21:28:40 -060033#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080034
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050035#define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
36
Vadim Bendebury284231e2012-10-29 05:23:44 +000037/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +000038 * Some controllers limit number of blocks they can read/write at once.
39 * Contemporary SSD devices work much faster if the read/write size is aligned
40 * to a power of 2. Let's set default to 128 and allowing to be overwritten if
41 * needed.
Vadim Bendebury284231e2012-10-29 05:23:44 +000042 */
Hung-Te Linb7a21b72012-10-29 05:23:53 +000043#ifndef MAX_SATA_BLOCKS_READ_WRITE
44#define MAX_SATA_BLOCKS_READ_WRITE 0x80
Vadim Bendebury284231e2012-10-29 05:23:44 +000045#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080046
Walter Murphy57847662012-10-29 05:24:00 +000047/* Maximum timeouts for each event */
Rob Herring7610b412013-08-24 10:10:53 -050048#define WAIT_MS_SPINUP 20000
Mark Langsdorff8b009e2015-06-05 00:58:46 +010049#define WAIT_MS_DATAIO 10000
Marc Jones766b16f2012-10-29 05:24:02 +000050#define WAIT_MS_FLUSH 5000
Ian Campbelle0ddcf92014-07-18 20:38:39 +010051#define WAIT_MS_LINKUP 200
Walter Murphy57847662012-10-29 05:24:00 +000052
Stefan Roese22f5de62016-08-31 10:02:15 +020053__weak void __iomem *ahci_port_base(void __iomem *base, u32 port)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080054{
55 return base + 0x100 + (port * 0x80);
56}
57
58
Tang Yuantianfa313772015-07-09 14:37:30 +080059static void ahci_setup_port(struct ahci_ioports *port, void __iomem *base,
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080060 unsigned int port_idx)
61{
62 base = ahci_port_base(base, port_idx);
63
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050064 port->cmd_addr = base;
65 port->scr_addr = base + PORT_SCR;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080066}
67
68
69#define msleep(a) udelay(a * 1000)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050070
Tang Yuantianfa313772015-07-09 14:37:30 +080071static void ahci_dcache_flush_range(unsigned long begin, unsigned long len)
Taylor Hutt90b276f2012-10-29 05:23:59 +000072{
73 const unsigned long start = begin;
74 const unsigned long end = start + len;
75
76 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
77 flush_dcache_range(start, end);
78}
79
80/*
81 * SATA controller DMAs to physical RAM. Ensure data from the
82 * controller is invalidated from dcache; next access comes from
83 * physical RAM.
84 */
Tang Yuantianfa313772015-07-09 14:37:30 +080085static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len)
Taylor Hutt90b276f2012-10-29 05:23:59 +000086{
87 const unsigned long start = begin;
88 const unsigned long end = start + len;
89
90 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
91 invalidate_dcache_range(start, end);
92}
93
94/*
95 * Ensure data for SATA controller is flushed out of dcache and
96 * written to physical memory.
97 */
98static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
99{
100 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
101 AHCI_PORT_PRIV_DMA_SZ);
102}
103
Tang Yuantianfa313772015-07-09 14:37:30 +0800104static int waiting_for_cmd_completed(void __iomem *offset,
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500105 int timeout_msec,
106 u32 sign)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800107{
108 int i;
109 u32 status;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500110
111 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800112 msleep(1);
113
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500114 return (i < timeout_msec) ? 0 : -1;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800115}
116
Simon Glass4b62b2f2017-06-14 21:28:33 -0600117int __weak ahci_link_up(struct ahci_uc_priv *uc_priv, u8 port)
Rob Herring124e9fa2013-08-24 10:10:51 -0500118{
119 u32 tmp;
120 int j = 0;
Simon Glass4b62b2f2017-06-14 21:28:33 -0600121 void __iomem *port_mmio = uc_priv->port[port].port_mmio;
Rob Herring124e9fa2013-08-24 10:10:51 -0500122
Wolfgang Denk3765b3e2013-10-07 13:07:26 +0200123 /*
Rob Herring124e9fa2013-08-24 10:10:51 -0500124 * Bring up SATA link.
125 * SATA link bringup time is usually less than 1 ms; only very
126 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
127 */
128 while (j < WAIT_MS_LINKUP) {
129 tmp = readl(port_mmio + PORT_SCR_STAT);
130 tmp &= PORT_SCR_STAT_DET_MASK;
131 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
132 return 0;
133 udelay(1000);
134 j++;
135 }
136 return 1;
137}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800138
Ian Campbella6e50a82014-07-18 20:38:41 +0100139#ifdef CONFIG_SUNXI_AHCI
140/* The sunxi AHCI controller requires this undocumented setup */
Tang Yuantianfa313772015-07-09 14:37:30 +0800141static void sunxi_dma_init(void __iomem *port_mmio)
Ian Campbella6e50a82014-07-18 20:38:41 +0100142{
143 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
144}
145#endif
146
Scott Wood9efaca32015-04-17 09:19:01 -0500147int ahci_reset(void __iomem *base)
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200148{
149 int i = 1000;
Scott Wood9efaca32015-04-17 09:19:01 -0500150 u32 __iomem *host_ctl_reg = base + HOST_CTL;
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200151 u32 tmp = readl(host_ctl_reg); /* global controller reset */
152
153 if ((tmp & HOST_RESET) == 0)
154 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
155
156 /*
157 * reset must complete within 1 second, or
158 * the hardware should be considered fried.
159 */
160 do {
161 udelay(1000);
162 tmp = readl(host_ctl_reg);
163 i--;
164 } while ((i > 0) && (tmp & HOST_RESET));
165
166 if (i == 0) {
167 printf("controller reset failed (0x%x)\n", tmp);
168 return -1;
169 }
170
171 return 0;
172}
173
Simon Glass225b1da2017-06-14 21:28:34 -0600174static int ahci_host_init(struct ahci_uc_priv *uc_priv)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800175{
Michal Simeke8a016b2016-09-08 15:06:45 +0200176#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glassff758cc2015-11-29 13:18:06 -0700177# ifdef CONFIG_DM_PCI
Simon Glass225b1da2017-06-14 21:28:34 -0600178 struct udevice *dev = uc_priv->dev;
Simon Glassff758cc2015-11-29 13:18:06 -0700179 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
180# else
Simon Glass225b1da2017-06-14 21:28:34 -0600181 pci_dev_t pdev = uc_priv->dev;
Rob Herring942e3142011-07-06 16:13:36 +0000182 unsigned short vendor;
Simon Glassff758cc2015-11-29 13:18:06 -0700183# endif
184 u16 tmp16;
Rob Herring942e3142011-07-06 16:13:36 +0000185#endif
Simon Glass225b1da2017-06-14 21:28:34 -0600186 void __iomem *mmio = uc_priv->mmio_base;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000187 u32 tmp, cap_save, cmd;
Rob Herring124e9fa2013-08-24 10:10:51 -0500188 int i, j, ret;
Tang Yuantianfa313772015-07-09 14:37:30 +0800189 void __iomem *port_mmio;
Richard Gibbs2915a022013-08-24 10:10:47 -0500190 u32 port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800191
Vadim Bendebury284231e2012-10-29 05:23:44 +0000192 debug("ahci_host_init: start\n");
193
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800194 cap_save = readl(mmio + HOST_CAP);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500195 cap_save &= ((1 << 28) | (1 << 17));
Marc Jones2a0c61d2012-10-29 05:24:01 +0000196 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800197
Simon Glass225b1da2017-06-14 21:28:34 -0600198 ret = ahci_reset(uc_priv->mmio_base);
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200199 if (ret)
200 return ret;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800201
202 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
203 writel(cap_save, mmio + HOST_CAP);
204 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
205
Michal Simeke8a016b2016-09-08 15:06:45 +0200206#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glassff758cc2015-11-29 13:18:06 -0700207# ifdef CONFIG_DM_PCI
208 if (pplat->vendor == PCI_VENDOR_ID_INTEL) {
209 u16 tmp16;
210
211 dm_pci_read_config16(dev, 0x92, &tmp16);
212 dm_pci_write_config16(dev, 0x92, tmp16 | 0xf);
213 }
214# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800215 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
216
217 if (vendor == PCI_VENDOR_ID_INTEL) {
218 u16 tmp16;
219 pci_read_config_word(pdev, 0x92, &tmp16);
220 tmp16 |= 0xf;
221 pci_write_config_word(pdev, 0x92, tmp16);
222 }
Simon Glassff758cc2015-11-29 13:18:06 -0700223# endif
Rob Herring942e3142011-07-06 16:13:36 +0000224#endif
Simon Glass225b1da2017-06-14 21:28:34 -0600225 uc_priv->cap = readl(mmio + HOST_CAP);
226 uc_priv->port_map = readl(mmio + HOST_PORTS_IMPL);
227 port_map = uc_priv->port_map;
228 uc_priv->n_ports = (uc_priv->cap & 0x1f) + 1;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800229
230 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Simon Glass225b1da2017-06-14 21:28:34 -0600231 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800232
Tuomas Tynkkynen0545ac92018-09-13 01:28:55 +0300233#if !defined(CONFIG_DM_SCSI)
Simon Glass225b1da2017-06-14 21:28:34 -0600234 if (uc_priv->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
235 uc_priv->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
Tuomas Tynkkynen0545ac92018-09-13 01:28:55 +0300236#endif
Vadim Bendebury284231e2012-10-29 05:23:44 +0000237
Simon Glass225b1da2017-06-14 21:28:34 -0600238 for (i = 0; i < uc_priv->n_ports; i++) {
Richard Gibbs2915a022013-08-24 10:10:47 -0500239 if (!(port_map & (1 << i)))
240 continue;
Simon Glass225b1da2017-06-14 21:28:34 -0600241 uc_priv->port[i].port_mmio = ahci_port_base(mmio, i);
242 port_mmio = (u8 *)uc_priv->port[i].port_mmio;
243 ahci_setup_port(&uc_priv->port[i], mmio, i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800244
245 /* make sure port is not active */
246 tmp = readl(port_mmio + PORT_CMD);
247 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
248 PORT_CMD_FIS_RX | PORT_CMD_START)) {
Stefan Reinauer7ba79172012-10-29 05:23:50 +0000249 debug("Port %d is active. Deactivating.\n", i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800250 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
251 PORT_CMD_FIS_RX | PORT_CMD_START);
252 writel_with_flush(tmp, port_mmio + PORT_CMD);
253
254 /* spec says 500 msecs for each bit, so
255 * this is slightly incorrect.
256 */
257 msleep(500);
258 }
259
Ian Campbella6e50a82014-07-18 20:38:41 +0100260#ifdef CONFIG_SUNXI_AHCI
261 sunxi_dma_init(port_mmio);
262#endif
263
Marc Jones2a0c61d2012-10-29 05:24:01 +0000264 /* Add the spinup command to whatever mode bits may
265 * already be on in the command register.
266 */
267 cmd = readl(port_mmio + PORT_CMD);
Marc Jones2a0c61d2012-10-29 05:24:01 +0000268 cmd |= PORT_CMD_SPIN_UP;
269 writel_with_flush(cmd, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800270
Rob Herring124e9fa2013-08-24 10:10:51 -0500271 /* Bring up SATA link. */
Simon Glass225b1da2017-06-14 21:28:34 -0600272 ret = ahci_link_up(uc_priv, i);
Rob Herring124e9fa2013-08-24 10:10:51 -0500273 if (ret) {
Marc Jones2a0c61d2012-10-29 05:24:01 +0000274 printf("SATA link %d timeout.\n", i);
275 continue;
276 } else {
277 debug("SATA link ok.\n");
278 }
279
280 /* Clear error status */
281 tmp = readl(port_mmio + PORT_SCR_ERR);
282 if (tmp)
283 writel(tmp, port_mmio + PORT_SCR_ERR);
284
285 debug("Spinning up device on SATA port %d... ", i);
286
287 j = 0;
288 while (j < WAIT_MS_SPINUP) {
289 tmp = readl(port_mmio + PORT_TFDATA);
Rob Herring344ca0b2013-08-24 10:10:54 -0500290 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
Marc Jones2a0c61d2012-10-29 05:24:01 +0000291 break;
292 udelay(1000);
Rob Herring17821082013-08-24 10:10:52 -0500293 tmp = readl(port_mmio + PORT_SCR_STAT);
294 tmp &= PORT_SCR_STAT_DET_MASK;
295 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
296 break;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000297 j++;
298 }
Rob Herring17821082013-08-24 10:10:52 -0500299
300 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
301 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
302 debug("SATA link %d down (COMINIT received), retrying...\n", i);
303 i--;
304 continue;
305 }
306
Marc Jones2a0c61d2012-10-29 05:24:01 +0000307 printf("Target spinup took %d ms.\n", j);
308 if (j == WAIT_MS_SPINUP)
Stefan Reinauer9a65b872012-10-29 05:23:49 +0000309 debug("timeout.\n");
310 else
311 debug("ok.\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800312
313 tmp = readl(port_mmio + PORT_SCR_ERR);
314 debug("PORT_SCR_ERR 0x%x\n", tmp);
315 writel(tmp, port_mmio + PORT_SCR_ERR);
316
317 /* ack any pending irq events for this port */
318 tmp = readl(port_mmio + PORT_IRQ_STAT);
319 debug("PORT_IRQ_STAT 0x%x\n", tmp);
320 if (tmp)
321 writel(tmp, port_mmio + PORT_IRQ_STAT);
322
323 writel(1 << i, mmio + HOST_IRQ_STAT);
324
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000325 /* register linkup ports */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800326 tmp = readl(port_mmio + PORT_SCR_STAT);
Marc Jones766b16f2012-10-29 05:24:02 +0000327 debug("SATA port %d status: 0x%x\n", i, tmp);
Rob Herring2bdb10d2013-08-24 10:10:50 -0500328 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
Simon Glass225b1da2017-06-14 21:28:34 -0600329 uc_priv->link_port_map |= (0x01 << i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800330 }
331
332 tmp = readl(mmio + HOST_CTL);
333 debug("HOST_CTL 0x%x\n", tmp);
334 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
335 tmp = readl(mmio + HOST_CTL);
336 debug("HOST_CTL 0x%x\n", tmp);
Michal Simeke8a016b2016-09-08 15:06:45 +0200337#if !defined(CONFIG_DM_SCSI)
Rob Herring942e3142011-07-06 16:13:36 +0000338#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-11-29 13:18:06 -0700339# ifdef CONFIG_DM_PCI
340 dm_pci_read_config16(dev, PCI_COMMAND, &tmp16);
341 tmp |= PCI_COMMAND_MASTER;
342 dm_pci_write_config16(dev, PCI_COMMAND, tmp16);
343# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800344 pci_read_config_word(pdev, PCI_COMMAND, &tmp16);
345 tmp |= PCI_COMMAND_MASTER;
346 pci_write_config_word(pdev, PCI_COMMAND, tmp16);
Simon Glassff758cc2015-11-29 13:18:06 -0700347# endif
Rob Herring942e3142011-07-06 16:13:36 +0000348#endif
Michal Simeke8a016b2016-09-08 15:06:45 +0200349#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800350 return 0;
351}
352
353
Simon Glass225b1da2017-06-14 21:28:34 -0600354static void ahci_print_info(struct ahci_uc_priv *uc_priv)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800355{
Michal Simeke8a016b2016-09-08 15:06:45 +0200356#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
357# if defined(CONFIG_DM_PCI)
Simon Glass225b1da2017-06-14 21:28:34 -0600358 struct udevice *dev = uc_priv->dev;
Simon Glassff758cc2015-11-29 13:18:06 -0700359# else
Simon Glass225b1da2017-06-14 21:28:34 -0600360 pci_dev_t pdev = uc_priv->dev;
Simon Glassff758cc2015-11-29 13:18:06 -0700361# endif
Rob Herring942e3142011-07-06 16:13:36 +0000362 u16 cc;
363#endif
Simon Glass225b1da2017-06-14 21:28:34 -0600364 void __iomem *mmio = uc_priv->mmio_base;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000365 u32 vers, cap, cap2, impl, speed;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800366 const char *speed_s;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800367 const char *scc_s;
368
369 vers = readl(mmio + HOST_VERSION);
Simon Glass225b1da2017-06-14 21:28:34 -0600370 cap = uc_priv->cap;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000371 cap2 = readl(mmio + HOST_CAP2);
Simon Glass225b1da2017-06-14 21:28:34 -0600372 impl = uc_priv->port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800373
374 speed = (cap >> 20) & 0xf;
375 if (speed == 1)
376 speed_s = "1.5";
377 else if (speed == 2)
378 speed_s = "3";
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000379 else if (speed == 3)
380 speed_s = "6";
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800381 else
382 speed_s = "?";
383
Michal Simeke8a016b2016-09-08 15:06:45 +0200384#if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI)
Rob Herring942e3142011-07-06 16:13:36 +0000385 scc_s = "SATA";
386#else
Simon Glassff758cc2015-11-29 13:18:06 -0700387# ifdef CONFIG_DM_PCI
388 dm_pci_read_config16(dev, 0x0a, &cc);
389# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800390 pci_read_config_word(pdev, 0x0a, &cc);
Simon Glassff758cc2015-11-29 13:18:06 -0700391# endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800392 if (cc == 0x0101)
393 scc_s = "IDE";
394 else if (cc == 0x0106)
395 scc_s = "SATA";
396 else if (cc == 0x0104)
397 scc_s = "RAID";
398 else
399 scc_s = "unknown";
Rob Herring942e3142011-07-06 16:13:36 +0000400#endif
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500401 printf("AHCI %02x%02x.%02x%02x "
402 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
403 (vers >> 24) & 0xff,
404 (vers >> 16) & 0xff,
405 (vers >> 8) & 0xff,
406 vers & 0xff,
407 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800408
409 printf("flags: "
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000410 "%s%s%s%s%s%s%s"
411 "%s%s%s%s%s%s%s"
412 "%s%s%s%s%s%s\n",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500413 cap & (1 << 31) ? "64bit " : "",
414 cap & (1 << 30) ? "ncq " : "",
415 cap & (1 << 28) ? "ilck " : "",
416 cap & (1 << 27) ? "stag " : "",
417 cap & (1 << 26) ? "pm " : "",
418 cap & (1 << 25) ? "led " : "",
419 cap & (1 << 24) ? "clo " : "",
420 cap & (1 << 19) ? "nz " : "",
421 cap & (1 << 18) ? "only " : "",
422 cap & (1 << 17) ? "pmp " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000423 cap & (1 << 16) ? "fbss " : "",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500424 cap & (1 << 15) ? "pio " : "",
425 cap & (1 << 14) ? "slum " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000426 cap & (1 << 13) ? "part " : "",
427 cap & (1 << 7) ? "ccc " : "",
428 cap & (1 << 6) ? "ems " : "",
429 cap & (1 << 5) ? "sxs " : "",
430 cap2 & (1 << 2) ? "apst " : "",
431 cap2 & (1 << 1) ? "nvmp " : "",
432 cap2 & (1 << 0) ? "boh " : "");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800433}
434
Simon Glass745a94f2017-07-04 13:31:18 -0600435#if defined(CONFIG_DM_SCSI) || !defined(CONFIG_SCSI_AHCI_PLAT)
Michal Simeke8a016b2016-09-08 15:06:45 +0200436# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Simon Glass4279efc2017-06-14 21:28:38 -0600437static int ahci_init_one(struct ahci_uc_priv *uc_priv, struct udevice *dev)
Simon Glassff758cc2015-11-29 13:18:06 -0700438# else
Simon Glass4279efc2017-06-14 21:28:38 -0600439static int ahci_init_one(struct ahci_uc_priv *uc_priv, pci_dev_t dev)
Simon Glassff758cc2015-11-29 13:18:06 -0700440# endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800441{
Michal Simeke8a016b2016-09-08 15:06:45 +0200442#if !defined(CONFIG_DM_SCSI)
Ed Swarthout63cec582007-08-02 14:09:49 -0500443 u16 vendor;
Michal Simeke8a016b2016-09-08 15:06:45 +0200444#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800445 int rc;
446
Simon Glass225b1da2017-06-14 21:28:34 -0600447 uc_priv->dev = dev;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800448
Simon Glass225b1da2017-06-14 21:28:34 -0600449 uc_priv->host_flags = ATA_FLAG_SATA
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500450 | ATA_FLAG_NO_LEGACY
451 | ATA_FLAG_MMIO
452 | ATA_FLAG_PIO_DMA
453 | ATA_FLAG_NO_ATAPI;
Simon Glass225b1da2017-06-14 21:28:34 -0600454 uc_priv->pio_mask = 0x1f;
455 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800456
Michal Simeke8a016b2016-09-08 15:06:45 +0200457#if !defined(CONFIG_DM_SCSI)
Simon Glassff758cc2015-11-29 13:18:06 -0700458#ifdef CONFIG_DM_PCI
Simon Glass225b1da2017-06-14 21:28:34 -0600459 uc_priv->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Simon Glassff758cc2015-11-29 13:18:06 -0700460 PCI_REGION_MEM);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800461
462 /* Take from kernel:
463 * JMicron-specific fixup:
464 * make sure we're in AHCI mode
465 */
Simon Glassff758cc2015-11-29 13:18:06 -0700466 dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500467 if (vendor == 0x197b)
Simon Glassff758cc2015-11-29 13:18:06 -0700468 dm_pci_write_config8(dev, 0x41, 0xa1);
469#else
Simon Glass225b1da2017-06-14 21:28:34 -0600470 uc_priv->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Simon Glassff758cc2015-11-29 13:18:06 -0700471 PCI_REGION_MEM);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800472
Simon Glassff758cc2015-11-29 13:18:06 -0700473 /* Take from kernel:
474 * JMicron-specific fixup:
475 * make sure we're in AHCI mode
476 */
477 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
478 if (vendor == 0x197b)
479 pci_write_config_byte(dev, 0x41, 0xa1);
480#endif
Michal Simeke8a016b2016-09-08 15:06:45 +0200481#else
Simon Glass1dc64f62017-06-14 21:28:31 -0600482 struct scsi_platdata *plat = dev_get_uclass_platdata(dev);
Simon Glass225b1da2017-06-14 21:28:34 -0600483 uc_priv->mmio_base = (void *)plat->base;
Michal Simeke8a016b2016-09-08 15:06:45 +0200484#endif
Simon Glassff758cc2015-11-29 13:18:06 -0700485
Simon Glass225b1da2017-06-14 21:28:34 -0600486 debug("ahci mmio_base=0x%p\n", uc_priv->mmio_base);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800487 /* initialize adapter */
Simon Glass225b1da2017-06-14 21:28:34 -0600488 rc = ahci_host_init(uc_priv);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800489 if (rc)
490 goto err_out;
491
Simon Glass225b1da2017-06-14 21:28:34 -0600492 ahci_print_info(uc_priv);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800493
494 return 0;
495
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500496 err_out:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800497 return rc;
498}
Rob Herring942e3142011-07-06 16:13:36 +0000499#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800500
501#define MAX_DATA_BYTE_COUNT (4*1024*1024)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500502
Simon Glass225b1da2017-06-14 21:28:34 -0600503static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
504 unsigned char *buf, int buf_len)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800505{
Simon Glass225b1da2017-06-14 21:28:34 -0600506 struct ahci_ioports *pp = &(uc_priv->port[port]);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800507 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
508 u32 sg_count;
509 int i;
510
511 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500512 if (sg_count > AHCI_MAX_SG) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800513 printf("Error:Too much sg!\n");
514 return -1;
515 }
516
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500517 for (i = 0; i < sg_count; i++) {
518 ahci_sg->addr =
Tang Yuantianfa313772015-07-09 14:37:30 +0800519 cpu_to_le32((unsigned long) buf + i * MAX_DATA_BYTE_COUNT);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800520 ahci_sg->addr_hi = 0;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500521 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
522 (buf_len < MAX_DATA_BYTE_COUNT
523 ? (buf_len - 1)
524 : (MAX_DATA_BYTE_COUNT - 1)));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800525 ahci_sg++;
526 buf_len -= MAX_DATA_BYTE_COUNT;
527 }
528
529 return sg_count;
530}
531
532
533static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
534{
535 pp->cmd_slot->opts = cpu_to_le32(opts);
536 pp->cmd_slot->status = 0;
Tang Yuantianfa313772015-07-09 14:37:30 +0800537 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
538#ifdef CONFIG_PHYS_64BIT
539 pp->cmd_slot->tbl_addr_hi =
540 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
541#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800542}
543
Tang Yuantianfa313772015-07-09 14:37:30 +0800544static int wait_spinup(void __iomem *port_mmio)
Bin Meng4df2b482014-12-31 17:18:39 +0800545{
546 ulong start;
547 u32 tf_data;
548
549 start = get_timer(0);
550 do {
551 tf_data = readl(port_mmio + PORT_TFDATA);
552 if (!(tf_data & ATA_BUSY))
553 return 0;
554 } while (get_timer(start) < WAIT_MS_SPINUP);
555
556 return -ETIMEDOUT;
557}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800558
Simon Glass225b1da2017-06-14 21:28:34 -0600559static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800560{
Simon Glass225b1da2017-06-14 21:28:34 -0600561 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +0800562 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800563 u32 port_status;
Tang Yuantianfa313772015-07-09 14:37:30 +0800564 void __iomem *mem;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800565
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500566 debug("Enter start port: %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800567 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500568 debug("Port %d status: %x\n", port, port_status);
569 if ((port_status & 0xf) != 0x03) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800570 printf("No Link on this port!\n");
571 return -1;
572 }
573
Tang Yuantianfa313772015-07-09 14:37:30 +0800574 mem = malloc(AHCI_PORT_PRIV_DMA_SZ + 2048);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800575 if (!mem) {
576 free(pp);
Roger Quadrosd73763a2013-11-11 16:56:37 +0200577 printf("%s: No mem for table!\n", __func__);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800578 return -ENOMEM;
579 }
580
Tang Yuantianfa313772015-07-09 14:37:30 +0800581 /* Aligned to 2048-bytes */
582 mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ);
583 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800584
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800585 /*
586 * First item in chunk of DMA memory: 32-slot command table,
587 * 32 bytes each in size
588 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000589 pp->cmd_slot =
590 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
Tang Yuantianfa313772015-07-09 14:37:30 +0800591 debug("cmd_slot = %p\n", pp->cmd_slot);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800592 mem += (AHCI_CMD_SLOT_SZ + 224);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500593
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800594 /*
595 * Second item: Received-FIS area
596 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000597 pp->rx_fis = virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800598 mem += AHCI_RX_FIS_SZ;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500599
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800600 /*
601 * Third item: data area for storing a single command
602 * and its scatter-gather table
603 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000604 pp->cmd_tbl = virt_to_phys((void *)mem);
Tang Yuantianfa313772015-07-09 14:37:30 +0800605 debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800606
607 mem += AHCI_CMD_TBL_HDR;
Taylor Hutt64738e82012-10-29 05:23:58 +0000608 pp->cmd_tbl_sg =
609 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800610
Tang Yuantianfa313772015-07-09 14:37:30 +0800611 writel_with_flush((unsigned long)pp->cmd_slot,
612 port_mmio + PORT_LST_ADDR);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800613
614 writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR);
615
Ian Campbella6e50a82014-07-18 20:38:41 +0100616#ifdef CONFIG_SUNXI_AHCI
617 sunxi_dma_init(port_mmio);
618#endif
619
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800620 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500621 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
622 PORT_CMD_START, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800623
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500624 debug("Exit start port %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800625
Bin Meng4df2b482014-12-31 17:18:39 +0800626 /*
627 * Make sure interface is not busy based on error and status
628 * information from task file data register before proceeding
629 */
630 return wait_spinup(port_mmio);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800631}
632
633
Simon Glass225b1da2017-06-14 21:28:34 -0600634static int ahci_device_data_io(struct ahci_uc_priv *uc_priv, u8 port, u8 *fis,
635 int fis_len, u8 *buf, int buf_len, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800636{
637
Simon Glass225b1da2017-06-14 21:28:34 -0600638 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +0800639 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800640 u32 opts;
641 u32 port_status;
642 int sg_count;
643
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000644 debug("Enter %s: for port %d\n", __func__, port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800645
Simon Glass225b1da2017-06-14 21:28:34 -0600646 if (port > uc_priv->n_ports) {
Taylor Hutt5a2b77f2012-10-29 05:23:56 +0000647 printf("Invalid port number %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800648 return -1;
649 }
650
651 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500652 if ((port_status & 0xf) != 0x03) {
653 debug("No Link on port %d!\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800654 return -1;
655 }
656
657 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
658
Simon Glass225b1da2017-06-14 21:28:34 -0600659 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000660 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800661 ahci_fill_cmd_slot(pp, opts);
662
Taylor Hutt90b276f2012-10-29 05:23:59 +0000663 ahci_dcache_flush_sata_cmd(pp);
Tang Yuantianfa313772015-07-09 14:37:30 +0800664 ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len);
Taylor Hutt90b276f2012-10-29 05:23:59 +0000665
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800666 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
667
Walter Murphy57847662012-10-29 05:24:00 +0000668 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
669 WAIT_MS_DATAIO, 0x1)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800670 printf("timeout exit!\n");
671 return -1;
672 }
Taylor Hutt90b276f2012-10-29 05:23:59 +0000673
Tang Yuantianfa313772015-07-09 14:37:30 +0800674 ahci_dcache_invalidate_range((unsigned long)buf,
675 (unsigned long)buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000676 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800677
678 return 0;
679}
680
681
682static char *ata_id_strcpy(u16 *target, u16 *src, int len)
683{
684 int i;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500685 for (i = 0; i < len / 2; i++)
Rob Herringe5a6c792011-06-01 09:10:26 +0000686 target[i] = swab16(src[i]);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800687 return (char *)target;
688}
689
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800690/*
691 * SCSI INQUIRY command operation.
692 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600693static int ata_scsiop_inquiry(struct ahci_uc_priv *uc_priv,
694 struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800695{
Rob Herring48c3a872013-08-24 10:10:48 -0500696 static const u8 hdr[] = {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800697 0,
698 0,
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500699 0x5, /* claim SPC-3 version compatibility */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800700 2,
701 95 - 4,
702 };
703 u8 fis[20];
Roger Quadros3f629712014-04-01 17:26:40 +0300704 u16 *idbuf;
Roger Quadros2faf5fb2013-11-11 16:56:38 +0200705 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800706 u8 port;
707
708 /* Clean ccb data buffer */
709 memset(pccb->pdata, 0, pccb->datalen);
710
711 memcpy(pccb->pdata, hdr, sizeof(hdr));
712
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500713 if (pccb->datalen <= 35)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800714 return 0;
715
Taylor Huttc8731112012-10-29 05:23:55 +0000716 memset(fis, 0, sizeof(fis));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800717 /* Construct the FIS */
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500718 fis[0] = 0x27; /* Host to device FIS. */
719 fis[1] = 1 << 7; /* Command FIS. */
Rob Herring344ca0b2013-08-24 10:10:54 -0500720 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800721
722 /* Read id from sata */
723 port = pccb->target;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800724
Simon Glass225b1da2017-06-14 21:28:34 -0600725 if (ahci_device_data_io(uc_priv, port, (u8 *)&fis, sizeof(fis),
726 (u8 *)tmpid, ATA_ID_WORDS * 2, 0)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800727 debug("scsi_ahci: SCSI inquiry command failure.\n");
728 return -EIO;
729 }
730
Simon Glass4b62b2f2017-06-14 21:28:33 -0600731 if (!uc_priv->ataid[port]) {
732 uc_priv->ataid[port] = malloc(ATA_ID_WORDS * 2);
733 if (!uc_priv->ataid[port]) {
Roger Quadros3f629712014-04-01 17:26:40 +0300734 printf("%s: No memory for ataid[port]\n", __func__);
735 return -ENOMEM;
736 }
737 }
738
Simon Glass4b62b2f2017-06-14 21:28:33 -0600739 idbuf = uc_priv->ataid[port];
Roger Quadros3f629712014-04-01 17:26:40 +0300740
741 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
742 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800743
744 memcpy(&pccb->pdata[8], "ATA ", 8);
Roger Quadros3f629712014-04-01 17:26:40 +0300745 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
746 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800747
Rob Herring344ca0b2013-08-24 10:10:54 -0500748#ifdef DEBUG
Roger Quadros3f629712014-04-01 17:26:40 +0300749 ata_dump_id(idbuf);
Rob Herring344ca0b2013-08-24 10:10:54 -0500750#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800751 return 0;
752}
753
754
755/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000756 * SCSI READ10/WRITE10 command operation.
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800757 */
Simon Glass225b1da2017-06-14 21:28:34 -0600758static int ata_scsiop_read_write(struct ahci_uc_priv *uc_priv,
759 struct scsi_cmd *pccb, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800760{
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100761 lbaint_t lba = 0;
Vadim Bendebury284231e2012-10-29 05:23:44 +0000762 u16 blocks = 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800763 u8 fis[20];
Vadim Bendebury284231e2012-10-29 05:23:44 +0000764 u8 *user_buffer = pccb->pdata;
765 u32 user_buffer_size = pccb->datalen;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800766
Vadim Bendebury284231e2012-10-29 05:23:44 +0000767 /* Retrieve the base LBA number from the ccb structure. */
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100768 if (pccb->cmd[0] == SCSI_READ16) {
769 memcpy(&lba, pccb->cmd + 2, 8);
770 lba = be64_to_cpu(lba);
771 } else {
772 u32 temp;
773 memcpy(&temp, pccb->cmd + 2, 4);
774 lba = be32_to_cpu(temp);
775 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800776
Vadim Bendebury284231e2012-10-29 05:23:44 +0000777 /*
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100778 * Retrieve the base LBA number and the block count from
779 * the ccb structure.
Vadim Bendebury284231e2012-10-29 05:23:44 +0000780 *
781 * For 10-byte and 16-byte SCSI R/W commands, transfer
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800782 * length 0 means transfer 0 block of data.
783 * However, for ATA R/W commands, sector count 0 means
784 * 256 or 65536 sectors, not 0 sectors as in SCSI.
785 *
786 * WARNING: one or two older ATA drives treat 0 as 0...
787 */
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100788 if (pccb->cmd[0] == SCSI_READ16)
789 blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]);
790 else
791 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000792
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100793 debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n",
794 is_write ? "write" : "read", blocks, lba);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000795
796 /* Preset the FIS */
Taylor Huttc8731112012-10-29 05:23:55 +0000797 memset(fis, 0, sizeof(fis));
Vadim Bendebury284231e2012-10-29 05:23:44 +0000798 fis[0] = 0x27; /* Host to device FIS. */
799 fis[1] = 1 << 7; /* Command FIS. */
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000800 /* Command byte (read/write). */
Walter Murphyfe1f8082012-10-29 05:24:03 +0000801 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800802
Vadim Bendebury284231e2012-10-29 05:23:44 +0000803 while (blocks) {
804 u16 now_blocks; /* number of blocks per iteration */
805 u32 transfer_size; /* number of bytes per iteration */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800806
Masahiro Yamadab4141192014-11-07 03:03:31 +0900807 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800808
Rob Herring344ca0b2013-08-24 10:10:54 -0500809 transfer_size = ATA_SECT_SIZE * now_blocks;
Vadim Bendebury284231e2012-10-29 05:23:44 +0000810 if (transfer_size > user_buffer_size) {
811 printf("scsi_ahci: Error: buffer too small.\n");
812 return -EIO;
813 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800814
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100815 /*
816 * LBA48 SATA command but only use 32bit address range within
817 * that (unless we've enabled 64bit LBA support). The next
818 * smaller command range (28bit) is too small.
Walter Murphyfe1f8082012-10-29 05:24:03 +0000819 */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000820 fis[4] = (lba >> 0) & 0xff;
821 fis[5] = (lba >> 8) & 0xff;
822 fis[6] = (lba >> 16) & 0xff;
Walter Murphyfe1f8082012-10-29 05:24:03 +0000823 fis[7] = 1 << 6; /* device reg: set LBA mode */
824 fis[8] = ((lba >> 24) & 0xff);
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100825#ifdef CONFIG_SYS_64BIT_LBA
826 if (pccb->cmd[0] == SCSI_READ16) {
827 fis[9] = ((lba >> 32) & 0xff);
828 fis[10] = ((lba >> 40) & 0xff);
829 }
830#endif
831
Walter Murphyfe1f8082012-10-29 05:24:03 +0000832 fis[3] = 0xe0; /* features */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000833
834 /* Block (sector) count */
835 fis[12] = (now_blocks >> 0) & 0xff;
836 fis[13] = (now_blocks >> 8) & 0xff;
837
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000838 /* Read/Write from ahci */
Simon Glass225b1da2017-06-14 21:28:34 -0600839 if (ahci_device_data_io(uc_priv, pccb->target, (u8 *)&fis,
840 sizeof(fis), user_buffer, transfer_size,
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000841 is_write)) {
842 debug("scsi_ahci: SCSI %s10 command failure.\n",
843 is_write ? "WRITE" : "READ");
Vadim Bendebury284231e2012-10-29 05:23:44 +0000844 return -EIO;
845 }
Marc Jones766b16f2012-10-29 05:24:02 +0000846
847 /* If this transaction is a write, do a following flush.
848 * Writes in u-boot are so rare, and the logic to know when is
849 * the last write and do a flush only there is sufficiently
850 * difficult. Just do a flush after every write. This incurs,
851 * usually, one extra flush when the rare writes do happen.
852 */
853 if (is_write) {
Simon Glass225b1da2017-06-14 21:28:34 -0600854 if (-EIO == ata_io_flush(uc_priv, pccb->target))
Marc Jones766b16f2012-10-29 05:24:02 +0000855 return -EIO;
856 }
Vadim Bendebury284231e2012-10-29 05:23:44 +0000857 user_buffer += transfer_size;
858 user_buffer_size -= transfer_size;
859 blocks -= now_blocks;
860 lba += now_blocks;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800861 }
862
863 return 0;
864}
865
866
867/*
868 * SCSI READ CAPACITY10 command operation.
869 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600870static int ata_scsiop_read_capacity10(struct ahci_uc_priv *uc_priv,
871 struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800872{
Kumar Galacb6d0b72009-07-13 09:24:00 -0500873 u32 cap;
Rob Herring344ca0b2013-08-24 10:10:54 -0500874 u64 cap64;
Gabe Black19d1d412012-10-29 05:23:54 +0000875 u32 block_size;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800876
Simon Glass4b62b2f2017-06-14 21:28:33 -0600877 if (!uc_priv->ataid[pccb->target]) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800878 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500879 "\tNo ATA info!\n"
Vagrant Cascadian1b25e582015-11-24 14:46:24 -0800880 "\tPlease run SCSI command INQUIRY first!\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800881 return -EPERM;
882 }
883
Simon Glass4b62b2f2017-06-14 21:28:33 -0600884 cap64 = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Rob Herring344ca0b2013-08-24 10:10:54 -0500885 if (cap64 > 0x100000000ULL)
886 cap64 = 0xffffffff;
Gabe Black19d1d412012-10-29 05:23:54 +0000887
Rob Herring344ca0b2013-08-24 10:10:54 -0500888 cap = cpu_to_be32(cap64);
Kumar Galacb6d0b72009-07-13 09:24:00 -0500889 memcpy(pccb->pdata, &cap, sizeof(cap));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800890
Gabe Black19d1d412012-10-29 05:23:54 +0000891 block_size = cpu_to_be32((u32)512);
892 memcpy(&pccb->pdata[4], &block_size, 4);
893
894 return 0;
895}
896
897
898/*
899 * SCSI READ CAPACITY16 command operation.
900 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600901static int ata_scsiop_read_capacity16(struct ahci_uc_priv *uc_priv,
902 struct scsi_cmd *pccb)
Gabe Black19d1d412012-10-29 05:23:54 +0000903{
904 u64 cap;
905 u64 block_size;
906
Simon Glass4b62b2f2017-06-14 21:28:33 -0600907 if (!uc_priv->ataid[pccb->target]) {
Gabe Black19d1d412012-10-29 05:23:54 +0000908 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
909 "\tNo ATA info!\n"
Vagrant Cascadian1b25e582015-11-24 14:46:24 -0800910 "\tPlease run SCSI command INQUIRY first!\n");
Gabe Black19d1d412012-10-29 05:23:54 +0000911 return -EPERM;
912 }
913
Simon Glass4b62b2f2017-06-14 21:28:33 -0600914 cap = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Gabe Black19d1d412012-10-29 05:23:54 +0000915 cap = cpu_to_be64(cap);
916 memcpy(pccb->pdata, &cap, sizeof(cap));
917
918 block_size = cpu_to_be64((u64)512);
919 memcpy(&pccb->pdata[8], &block_size, 8);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800920
921 return 0;
922}
923
924
925/*
926 * SCSI TEST UNIT READY command operation.
927 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600928static int ata_scsiop_test_unit_ready(struct ahci_uc_priv *uc_priv,
929 struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800930{
Simon Glass4b62b2f2017-06-14 21:28:33 -0600931 return (uc_priv->ataid[pccb->target]) ? 0 : -EPERM;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800932}
933
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500934
Simon Glass4e749012017-06-14 21:28:42 -0600935static int ahci_scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800936{
Simon Glass4682c8a2017-06-14 21:28:40 -0600937 struct ahci_uc_priv *uc_priv;
938#ifdef CONFIG_DM_SCSI
Simon Glassbfc1c6b2017-07-04 13:31:22 -0600939 uc_priv = dev_get_uclass_priv(dev->parent);
Simon Glass4682c8a2017-06-14 21:28:40 -0600940#else
941 uc_priv = probe_ent;
942#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800943 int ret;
944
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500945 switch (pccb->cmd[0]) {
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100946 case SCSI_READ16:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800947 case SCSI_READ10:
Simon Glass225b1da2017-06-14 21:28:34 -0600948 ret = ata_scsiop_read_write(uc_priv, pccb, 0);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000949 break;
950 case SCSI_WRITE10:
Simon Glass225b1da2017-06-14 21:28:34 -0600951 ret = ata_scsiop_read_write(uc_priv, pccb, 1);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800952 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000953 case SCSI_RD_CAPAC10:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600954 ret = ata_scsiop_read_capacity10(uc_priv, pccb);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800955 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000956 case SCSI_RD_CAPAC16:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600957 ret = ata_scsiop_read_capacity16(uc_priv, pccb);
Gabe Black19d1d412012-10-29 05:23:54 +0000958 break;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800959 case SCSI_TST_U_RDY:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600960 ret = ata_scsiop_test_unit_ready(uc_priv, pccb);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800961 break;
962 case SCSI_INQUIRY:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600963 ret = ata_scsiop_inquiry(uc_priv, pccb);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800964 break;
965 default:
966 printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
Simon Glassf6580ef2017-06-14 21:28:44 -0600967 return -ENOTSUPP;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800968 }
969
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500970 if (ret) {
971 debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
Simon Glassf6580ef2017-06-14 21:28:44 -0600972 return ret;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800973 }
Simon Glassf6580ef2017-06-14 21:28:44 -0600974 return 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800975
976}
977
Simon Glass62b4ec82017-06-14 21:28:36 -0600978static int ahci_start_ports(struct ahci_uc_priv *uc_priv)
979{
980 u32 linkmap;
981 int i;
982
983 linkmap = uc_priv->link_port_map;
984
Tuomas Tynkkynen8bf207d2018-09-13 01:28:54 +0300985 for (i = 0; i < uc_priv->n_ports; i++) {
Simon Glass62b4ec82017-06-14 21:28:36 -0600986 if (((linkmap >> i) & 0x01)) {
987 if (ahci_port_start(uc_priv, (u8) i)) {
988 printf("Can not start port %d\n", i);
989 continue;
990 }
991 }
992 }
993
994 return 0;
995}
996
Simon Glass7cf1afc2017-06-14 21:28:37 -0600997#ifndef CONFIG_DM_SCSI
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800998void scsi_low_level_init(int busdevfunc)
999{
Simon Glass225b1da2017-06-14 21:28:34 -06001000 struct ahci_uc_priv *uc_priv;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001001
Rob Herring942e3142011-07-06 16:13:36 +00001002#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glass4279efc2017-06-14 21:28:38 -06001003 probe_ent = calloc(1, sizeof(struct ahci_uc_priv));
1004 if (!probe_ent) {
1005 printf("%s: No memory for uc_priv\n", __func__);
1006 return;
1007 }
1008 uc_priv = probe_ent;
Michal Simeke8a016b2016-09-08 15:06:45 +02001009# if defined(CONFIG_DM_PCI)
Simon Glassff758cc2015-11-29 13:18:06 -07001010 struct udevice *dev;
1011 int ret;
1012
1013 ret = dm_pci_bus_find_bdf(busdevfunc, &dev);
1014 if (ret)
1015 return;
Simon Glass4279efc2017-06-14 21:28:38 -06001016 ahci_init_one(uc_priv, dev);
Simon Glassff758cc2015-11-29 13:18:06 -07001017# else
Simon Glass4279efc2017-06-14 21:28:38 -06001018 ahci_init_one(uc_priv, busdevfunc);
Simon Glassff758cc2015-11-29 13:18:06 -07001019# endif
Simon Glass4279efc2017-06-14 21:28:38 -06001020#else
Simon Glass225b1da2017-06-14 21:28:34 -06001021 uc_priv = probe_ent;
Simon Glass4279efc2017-06-14 21:28:38 -06001022#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001023
Simon Glass62b4ec82017-06-14 21:28:36 -06001024 ahci_start_ports(uc_priv);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001025}
Simon Glass7cf1afc2017-06-14 21:28:37 -06001026#endif
1027
1028#ifndef CONFIG_SCSI_AHCI_PLAT
1029# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Michal Simeke81589e2017-11-02 15:53:56 +01001030int ahci_init_one_dm(struct udevice *dev)
Simon Glass7cf1afc2017-06-14 21:28:37 -06001031{
Simon Glass4279efc2017-06-14 21:28:38 -06001032 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1033
1034 return ahci_init_one(uc_priv, dev);
Simon Glass7cf1afc2017-06-14 21:28:37 -06001035}
1036#endif
1037#endif
1038
Michal Simeke81589e2017-11-02 15:53:56 +01001039int ahci_start_ports_dm(struct udevice *dev)
Simon Glass7cf1afc2017-06-14 21:28:37 -06001040{
Simon Glass4279efc2017-06-14 21:28:38 -06001041 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass7cf1afc2017-06-14 21:28:37 -06001042
1043 return ahci_start_ports(uc_priv);
1044}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001045
Rob Herring942e3142011-07-06 16:13:36 +00001046#ifdef CONFIG_SCSI_AHCI_PLAT
Simon Glass4279efc2017-06-14 21:28:38 -06001047static int ahci_init_common(struct ahci_uc_priv *uc_priv, void __iomem *base)
Rob Herring942e3142011-07-06 16:13:36 +00001048{
Simon Glass4279efc2017-06-14 21:28:38 -06001049 int rc;
Rob Herring942e3142011-07-06 16:13:36 +00001050
Simon Glass225b1da2017-06-14 21:28:34 -06001051 uc_priv->host_flags = ATA_FLAG_SATA
Rob Herring942e3142011-07-06 16:13:36 +00001052 | ATA_FLAG_NO_LEGACY
1053 | ATA_FLAG_MMIO
1054 | ATA_FLAG_PIO_DMA
1055 | ATA_FLAG_NO_ATAPI;
Simon Glass225b1da2017-06-14 21:28:34 -06001056 uc_priv->pio_mask = 0x1f;
1057 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Rob Herring942e3142011-07-06 16:13:36 +00001058
Simon Glass225b1da2017-06-14 21:28:34 -06001059 uc_priv->mmio_base = base;
Rob Herring942e3142011-07-06 16:13:36 +00001060
1061 /* initialize adapter */
Simon Glass225b1da2017-06-14 21:28:34 -06001062 rc = ahci_host_init(uc_priv);
Rob Herring942e3142011-07-06 16:13:36 +00001063 if (rc)
1064 goto err_out;
1065
Simon Glass225b1da2017-06-14 21:28:34 -06001066 ahci_print_info(uc_priv);
Rob Herring942e3142011-07-06 16:13:36 +00001067
Simon Glass62b4ec82017-06-14 21:28:36 -06001068 rc = ahci_start_ports(uc_priv);
Rob Herring942e3142011-07-06 16:13:36 +00001069
Rob Herring942e3142011-07-06 16:13:36 +00001070err_out:
1071 return rc;
1072}
Ian Campbellc6f3d502014-03-07 01:20:56 +00001073
Simon Glass4279efc2017-06-14 21:28:38 -06001074#ifndef CONFIG_DM_SCSI
1075int ahci_init(void __iomem *base)
1076{
1077 struct ahci_uc_priv *uc_priv;
1078
1079 probe_ent = malloc(sizeof(struct ahci_uc_priv));
1080 if (!probe_ent) {
1081 printf("%s: No memory for uc_priv\n", __func__);
1082 return -ENOMEM;
1083 }
1084
1085 uc_priv = probe_ent;
1086 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
1087
1088 return ahci_init_common(uc_priv, base);
1089}
1090#endif
1091
1092int ahci_init_dm(struct udevice *dev, void __iomem *base)
1093{
1094 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1095
1096 return ahci_init_common(uc_priv, base);
1097}
1098
Ian Campbellc6f3d502014-03-07 01:20:56 +00001099void __weak scsi_init(void)
1100{
1101}
1102
Simon Glass4279efc2017-06-14 21:28:38 -06001103#endif /* CONFIG_SCSI_AHCI_PLAT */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001104
Marc Jones766b16f2012-10-29 05:24:02 +00001105/*
1106 * In the general case of generic rotating media it makes sense to have a
1107 * flush capability. It probably even makes sense in the case of SSDs because
1108 * one cannot always know for sure what kind of internal cache/flush mechanism
1109 * is embodied therein. At first it was planned to invoke this after the last
1110 * write to disk and before rebooting. In practice, knowing, a priori, which
1111 * is the last write is difficult. Because writing to the disk in u-boot is
1112 * very rare, this flush command will be invoked after every block write.
1113 */
Simon Glass225b1da2017-06-14 21:28:34 -06001114static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port)
Marc Jones766b16f2012-10-29 05:24:02 +00001115{
1116 u8 fis[20];
Simon Glass225b1da2017-06-14 21:28:34 -06001117 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +08001118 void __iomem *port_mmio = pp->port_mmio;
Marc Jones766b16f2012-10-29 05:24:02 +00001119 u32 cmd_fis_len = 5; /* five dwords */
1120
1121 /* Preset the FIS */
1122 memset(fis, 0, 20);
1123 fis[0] = 0x27; /* Host to device FIS. */
1124 fis[1] = 1 << 7; /* Command FIS. */
Walter Murphyfe1f8082012-10-29 05:24:03 +00001125 fis[2] = ATA_CMD_FLUSH_EXT;
Marc Jones766b16f2012-10-29 05:24:02 +00001126
1127 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1128 ahci_fill_cmd_slot(pp, cmd_fis_len);
Tang Yuantian75e14b12016-04-14 16:21:00 +08001129 ahci_dcache_flush_sata_cmd(pp);
Marc Jones766b16f2012-10-29 05:24:02 +00001130 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1131
1132 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1133 WAIT_MS_FLUSH, 0x1)) {
1134 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1135 return -EIO;
1136 }
1137
1138 return 0;
1139}
1140
Simon Glass4e749012017-06-14 21:28:42 -06001141static int ahci_scsi_bus_reset(struct udevice *dev)
1142{
1143 /* Not implemented */
1144
1145 return 0;
1146}
1147
Simon Glassf6ab5a92017-06-14 21:28:43 -06001148#ifdef CONFIG_DM_SCSI
Simon Glass681357f2017-06-14 21:28:46 -06001149int ahci_bind_scsi(struct udevice *ahci_dev, struct udevice **devp)
1150{
1151 struct udevice *dev;
1152 int ret;
1153
1154 ret = device_bind_driver(ahci_dev, "ahci_scsi", "ahci_scsi", &dev);
1155 if (ret)
1156 return ret;
1157 *devp = dev;
1158
1159 return 0;
1160}
1161
Simon Glass745a94f2017-07-04 13:31:18 -06001162int ahci_probe_scsi(struct udevice *ahci_dev, ulong base)
Simon Glass681357f2017-06-14 21:28:46 -06001163{
Simon Glass681357f2017-06-14 21:28:46 -06001164 struct ahci_uc_priv *uc_priv;
1165 struct scsi_platdata *uc_plat;
1166 struct udevice *dev;
1167 int ret;
1168
1169 device_find_first_child(ahci_dev, &dev);
1170 if (!dev)
1171 return -ENODEV;
1172 uc_plat = dev_get_uclass_platdata(dev);
Simon Glass745a94f2017-07-04 13:31:18 -06001173 uc_plat->base = base;
Simon Glass681357f2017-06-14 21:28:46 -06001174 uc_plat->max_lun = 1;
1175 uc_plat->max_id = 2;
Simon Glass745a94f2017-07-04 13:31:18 -06001176
1177 uc_priv = dev_get_uclass_priv(ahci_dev);
Simon Glass681357f2017-06-14 21:28:46 -06001178 ret = ahci_init_one(uc_priv, dev);
1179 if (ret)
1180 return ret;
1181 ret = ahci_start_ports(uc_priv);
1182 if (ret)
1183 return ret;
Simon Glass681357f2017-06-14 21:28:46 -06001184
1185 return 0;
1186}
1187
Simon Glass745a94f2017-07-04 13:31:18 -06001188#ifdef CONFIG_DM_PCI
1189int ahci_probe_scsi_pci(struct udevice *ahci_dev)
1190{
1191 ulong base;
1192
1193 base = (ulong)dm_pci_map_bar(ahci_dev, PCI_BASE_ADDRESS_5,
1194 PCI_REGION_MEM);
1195
1196 return ahci_probe_scsi(ahci_dev, base);
1197}
1198#endif
1199
Simon Glassf6ab5a92017-06-14 21:28:43 -06001200struct scsi_ops scsi_ops = {
1201 .exec = ahci_scsi_exec,
1202 .bus_reset = ahci_scsi_bus_reset,
1203};
Simon Glass681357f2017-06-14 21:28:46 -06001204
1205U_BOOT_DRIVER(ahci_scsi) = {
1206 .name = "ahci_scsi",
1207 .id = UCLASS_SCSI,
1208 .ops = &scsi_ops,
1209};
Simon Glassf6ab5a92017-06-14 21:28:43 -06001210#else
Simon Glass4e749012017-06-14 21:28:42 -06001211int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
1212{
1213 return ahci_scsi_exec(dev, pccb);
1214}
Marc Jones766b16f2012-10-29 05:24:02 +00001215
Simon Glass4682c8a2017-06-14 21:28:40 -06001216__weak int scsi_bus_reset(struct udevice *dev)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001217{
Simon Glass4e749012017-06-14 21:28:42 -06001218 return ahci_scsi_bus_reset(dev);
Simon Glass4682c8a2017-06-14 21:28:40 -06001219
1220 return 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001221}
Simon Glassf6ab5a92017-06-14 21:28:43 -06001222#endif