blob: 4cd7420c3cac38f84bd2a7a29b2e7397e5061ebf [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>
Simon Glass1eb69ae2019-11-14 12:57:39 -070012#include <cpu_func.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080013
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080014#include <command.h>
Simon Glassff758cc2015-11-29 13:18:06 -070015#include <dm.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080016#include <pci.h>
17#include <asm/processor.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090018#include <linux/errno.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080019#include <asm/io.h>
20#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060021#include <memalign.h>
Simon Glass681357f2017-06-14 21:28:46 -060022#include <pci.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080023#include <scsi.h>
Rob Herring344ca0b2013-08-24 10:10:54 -050024#include <libata.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080025#include <linux/ctype.h>
26#include <ahci.h>
Simon Glass681357f2017-06-14 21:28:46 -060027#include <dm/device-internal.h>
28#include <dm/lists.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080029
Simon Glass225b1da2017-06-14 21:28:34 -060030static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port);
Marc Jones766b16f2012-10-29 05:24:02 +000031
Simon Glass4682c8a2017-06-14 21:28:40 -060032#ifndef CONFIG_DM_SCSI
Simon Glass2c9f9ef2017-06-14 21:28:32 -060033struct ahci_uc_priv *probe_ent = NULL;
Simon Glass4682c8a2017-06-14 21:28:40 -060034#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080035
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050036#define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
37
Vadim Bendebury284231e2012-10-29 05:23:44 +000038/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +000039 * Some controllers limit number of blocks they can read/write at once.
40 * Contemporary SSD devices work much faster if the read/write size is aligned
41 * to a power of 2. Let's set default to 128 and allowing to be overwritten if
42 * needed.
Vadim Bendebury284231e2012-10-29 05:23:44 +000043 */
Hung-Te Linb7a21b72012-10-29 05:23:53 +000044#ifndef MAX_SATA_BLOCKS_READ_WRITE
45#define MAX_SATA_BLOCKS_READ_WRITE 0x80
Vadim Bendebury284231e2012-10-29 05:23:44 +000046#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080047
Walter Murphy57847662012-10-29 05:24:00 +000048/* Maximum timeouts for each event */
Rob Herring7610b412013-08-24 10:10:53 -050049#define WAIT_MS_SPINUP 20000
Mark Langsdorff8b009e2015-06-05 00:58:46 +010050#define WAIT_MS_DATAIO 10000
Marc Jones766b16f2012-10-29 05:24:02 +000051#define WAIT_MS_FLUSH 5000
Ian Campbelle0ddcf92014-07-18 20:38:39 +010052#define WAIT_MS_LINKUP 200
Walter Murphy57847662012-10-29 05:24:00 +000053
Roman Kapl6e732552019-10-14 11:21:09 +020054#define AHCI_CAP_S64A BIT(31)
55
Stefan Roese22f5de62016-08-31 10:02:15 +020056__weak void __iomem *ahci_port_base(void __iomem *base, u32 port)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080057{
58 return base + 0x100 + (port * 0x80);
59}
60
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080061#define msleep(a) udelay(a * 1000)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050062
Tang Yuantianfa313772015-07-09 14:37:30 +080063static void ahci_dcache_flush_range(unsigned long begin, unsigned long len)
Taylor Hutt90b276f2012-10-29 05:23:59 +000064{
65 const unsigned long start = begin;
66 const unsigned long end = start + len;
67
68 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
69 flush_dcache_range(start, end);
70}
71
72/*
73 * SATA controller DMAs to physical RAM. Ensure data from the
74 * controller is invalidated from dcache; next access comes from
75 * physical RAM.
76 */
Tang Yuantianfa313772015-07-09 14:37:30 +080077static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len)
Taylor Hutt90b276f2012-10-29 05:23:59 +000078{
79 const unsigned long start = begin;
80 const unsigned long end = start + len;
81
82 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
83 invalidate_dcache_range(start, end);
84}
85
86/*
87 * Ensure data for SATA controller is flushed out of dcache and
88 * written to physical memory.
89 */
90static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
91{
92 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
93 AHCI_PORT_PRIV_DMA_SZ);
94}
95
Tang Yuantianfa313772015-07-09 14:37:30 +080096static int waiting_for_cmd_completed(void __iomem *offset,
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050097 int timeout_msec,
98 u32 sign)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080099{
100 int i;
101 u32 status;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500102
103 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800104 msleep(1);
105
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500106 return (i < timeout_msec) ? 0 : -1;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800107}
108
Simon Glass4b62b2f2017-06-14 21:28:33 -0600109int __weak ahci_link_up(struct ahci_uc_priv *uc_priv, u8 port)
Rob Herring124e9fa2013-08-24 10:10:51 -0500110{
111 u32 tmp;
112 int j = 0;
Simon Glass4b62b2f2017-06-14 21:28:33 -0600113 void __iomem *port_mmio = uc_priv->port[port].port_mmio;
Rob Herring124e9fa2013-08-24 10:10:51 -0500114
Wolfgang Denk3765b3e2013-10-07 13:07:26 +0200115 /*
Rob Herring124e9fa2013-08-24 10:10:51 -0500116 * Bring up SATA link.
117 * SATA link bringup time is usually less than 1 ms; only very
118 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
119 */
120 while (j < WAIT_MS_LINKUP) {
121 tmp = readl(port_mmio + PORT_SCR_STAT);
122 tmp &= PORT_SCR_STAT_DET_MASK;
123 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
124 return 0;
125 udelay(1000);
126 j++;
127 }
128 return 1;
129}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800130
Ian Campbella6e50a82014-07-18 20:38:41 +0100131#ifdef CONFIG_SUNXI_AHCI
132/* The sunxi AHCI controller requires this undocumented setup */
Tang Yuantianfa313772015-07-09 14:37:30 +0800133static void sunxi_dma_init(void __iomem *port_mmio)
Ian Campbella6e50a82014-07-18 20:38:41 +0100134{
135 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
136}
137#endif
138
Scott Wood9efaca32015-04-17 09:19:01 -0500139int ahci_reset(void __iomem *base)
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200140{
141 int i = 1000;
Scott Wood9efaca32015-04-17 09:19:01 -0500142 u32 __iomem *host_ctl_reg = base + HOST_CTL;
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200143 u32 tmp = readl(host_ctl_reg); /* global controller reset */
144
145 if ((tmp & HOST_RESET) == 0)
146 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
147
148 /*
149 * reset must complete within 1 second, or
150 * the hardware should be considered fried.
151 */
152 do {
153 udelay(1000);
154 tmp = readl(host_ctl_reg);
155 i--;
156 } while ((i > 0) && (tmp & HOST_RESET));
157
158 if (i == 0) {
159 printf("controller reset failed (0x%x)\n", tmp);
160 return -1;
161 }
162
163 return 0;
164}
165
Simon Glass225b1da2017-06-14 21:28:34 -0600166static int ahci_host_init(struct ahci_uc_priv *uc_priv)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800167{
Michal Simeke8a016b2016-09-08 15:06:45 +0200168#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glassff758cc2015-11-29 13:18:06 -0700169# ifdef CONFIG_DM_PCI
Simon Glass225b1da2017-06-14 21:28:34 -0600170 struct udevice *dev = uc_priv->dev;
Simon Glassff758cc2015-11-29 13:18:06 -0700171 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
172# else
Simon Glass225b1da2017-06-14 21:28:34 -0600173 pci_dev_t pdev = uc_priv->dev;
Rob Herring942e3142011-07-06 16:13:36 +0000174 unsigned short vendor;
Simon Glassff758cc2015-11-29 13:18:06 -0700175# endif
176 u16 tmp16;
Rob Herring942e3142011-07-06 16:13:36 +0000177#endif
Simon Glass225b1da2017-06-14 21:28:34 -0600178 void __iomem *mmio = uc_priv->mmio_base;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000179 u32 tmp, cap_save, cmd;
Rob Herring124e9fa2013-08-24 10:10:51 -0500180 int i, j, ret;
Tang Yuantianfa313772015-07-09 14:37:30 +0800181 void __iomem *port_mmio;
Richard Gibbs2915a022013-08-24 10:10:47 -0500182 u32 port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800183
Vadim Bendebury284231e2012-10-29 05:23:44 +0000184 debug("ahci_host_init: start\n");
185
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800186 cap_save = readl(mmio + HOST_CAP);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500187 cap_save &= ((1 << 28) | (1 << 17));
Marc Jones2a0c61d2012-10-29 05:24:01 +0000188 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800189
Simon Glass225b1da2017-06-14 21:28:34 -0600190 ret = ahci_reset(uc_priv->mmio_base);
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200191 if (ret)
192 return ret;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800193
194 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
195 writel(cap_save, mmio + HOST_CAP);
196 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
197
Michal Simeke8a016b2016-09-08 15:06:45 +0200198#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glassff758cc2015-11-29 13:18:06 -0700199# ifdef CONFIG_DM_PCI
200 if (pplat->vendor == PCI_VENDOR_ID_INTEL) {
201 u16 tmp16;
202
203 dm_pci_read_config16(dev, 0x92, &tmp16);
204 dm_pci_write_config16(dev, 0x92, tmp16 | 0xf);
205 }
206# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800207 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
208
209 if (vendor == PCI_VENDOR_ID_INTEL) {
210 u16 tmp16;
211 pci_read_config_word(pdev, 0x92, &tmp16);
212 tmp16 |= 0xf;
213 pci_write_config_word(pdev, 0x92, tmp16);
214 }
Simon Glassff758cc2015-11-29 13:18:06 -0700215# endif
Rob Herring942e3142011-07-06 16:13:36 +0000216#endif
Simon Glass225b1da2017-06-14 21:28:34 -0600217 uc_priv->cap = readl(mmio + HOST_CAP);
218 uc_priv->port_map = readl(mmio + HOST_PORTS_IMPL);
219 port_map = uc_priv->port_map;
220 uc_priv->n_ports = (uc_priv->cap & 0x1f) + 1;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800221
222 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Simon Glass225b1da2017-06-14 21:28:34 -0600223 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800224
Tuomas Tynkkynen0545ac92018-09-13 01:28:55 +0300225#if !defined(CONFIG_DM_SCSI)
Simon Glass225b1da2017-06-14 21:28:34 -0600226 if (uc_priv->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
227 uc_priv->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
Tuomas Tynkkynen0545ac92018-09-13 01:28:55 +0300228#endif
Vadim Bendebury284231e2012-10-29 05:23:44 +0000229
Simon Glass225b1da2017-06-14 21:28:34 -0600230 for (i = 0; i < uc_priv->n_ports; i++) {
Richard Gibbs2915a022013-08-24 10:10:47 -0500231 if (!(port_map & (1 << i)))
232 continue;
Simon Glass225b1da2017-06-14 21:28:34 -0600233 uc_priv->port[i].port_mmio = ahci_port_base(mmio, i);
234 port_mmio = (u8 *)uc_priv->port[i].port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800235
236 /* make sure port is not active */
237 tmp = readl(port_mmio + PORT_CMD);
238 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
239 PORT_CMD_FIS_RX | PORT_CMD_START)) {
Stefan Reinauer7ba79172012-10-29 05:23:50 +0000240 debug("Port %d is active. Deactivating.\n", i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800241 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
242 PORT_CMD_FIS_RX | PORT_CMD_START);
243 writel_with_flush(tmp, port_mmio + PORT_CMD);
244
245 /* spec says 500 msecs for each bit, so
246 * this is slightly incorrect.
247 */
248 msleep(500);
249 }
250
Ian Campbella6e50a82014-07-18 20:38:41 +0100251#ifdef CONFIG_SUNXI_AHCI
252 sunxi_dma_init(port_mmio);
253#endif
254
Marc Jones2a0c61d2012-10-29 05:24:01 +0000255 /* Add the spinup command to whatever mode bits may
256 * already be on in the command register.
257 */
258 cmd = readl(port_mmio + PORT_CMD);
Marc Jones2a0c61d2012-10-29 05:24:01 +0000259 cmd |= PORT_CMD_SPIN_UP;
260 writel_with_flush(cmd, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800261
Rob Herring124e9fa2013-08-24 10:10:51 -0500262 /* Bring up SATA link. */
Simon Glass225b1da2017-06-14 21:28:34 -0600263 ret = ahci_link_up(uc_priv, i);
Rob Herring124e9fa2013-08-24 10:10:51 -0500264 if (ret) {
Marc Jones2a0c61d2012-10-29 05:24:01 +0000265 printf("SATA link %d timeout.\n", i);
266 continue;
267 } else {
268 debug("SATA link ok.\n");
269 }
270
271 /* Clear error status */
272 tmp = readl(port_mmio + PORT_SCR_ERR);
273 if (tmp)
274 writel(tmp, port_mmio + PORT_SCR_ERR);
275
276 debug("Spinning up device on SATA port %d... ", i);
277
278 j = 0;
279 while (j < WAIT_MS_SPINUP) {
280 tmp = readl(port_mmio + PORT_TFDATA);
Rob Herring344ca0b2013-08-24 10:10:54 -0500281 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
Marc Jones2a0c61d2012-10-29 05:24:01 +0000282 break;
283 udelay(1000);
Rob Herring17821082013-08-24 10:10:52 -0500284 tmp = readl(port_mmio + PORT_SCR_STAT);
285 tmp &= PORT_SCR_STAT_DET_MASK;
286 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
287 break;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000288 j++;
289 }
Rob Herring17821082013-08-24 10:10:52 -0500290
291 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
292 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
293 debug("SATA link %d down (COMINIT received), retrying...\n", i);
294 i--;
295 continue;
296 }
297
Marc Jones2a0c61d2012-10-29 05:24:01 +0000298 printf("Target spinup took %d ms.\n", j);
299 if (j == WAIT_MS_SPINUP)
Stefan Reinauer9a65b872012-10-29 05:23:49 +0000300 debug("timeout.\n");
301 else
302 debug("ok.\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800303
304 tmp = readl(port_mmio + PORT_SCR_ERR);
305 debug("PORT_SCR_ERR 0x%x\n", tmp);
306 writel(tmp, port_mmio + PORT_SCR_ERR);
307
308 /* ack any pending irq events for this port */
309 tmp = readl(port_mmio + PORT_IRQ_STAT);
310 debug("PORT_IRQ_STAT 0x%x\n", tmp);
311 if (tmp)
312 writel(tmp, port_mmio + PORT_IRQ_STAT);
313
314 writel(1 << i, mmio + HOST_IRQ_STAT);
315
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000316 /* register linkup ports */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800317 tmp = readl(port_mmio + PORT_SCR_STAT);
Marc Jones766b16f2012-10-29 05:24:02 +0000318 debug("SATA port %d status: 0x%x\n", i, tmp);
Rob Herring2bdb10d2013-08-24 10:10:50 -0500319 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
Simon Glass225b1da2017-06-14 21:28:34 -0600320 uc_priv->link_port_map |= (0x01 << i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800321 }
322
323 tmp = readl(mmio + HOST_CTL);
324 debug("HOST_CTL 0x%x\n", tmp);
325 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
326 tmp = readl(mmio + HOST_CTL);
327 debug("HOST_CTL 0x%x\n", tmp);
Michal Simeke8a016b2016-09-08 15:06:45 +0200328#if !defined(CONFIG_DM_SCSI)
Rob Herring942e3142011-07-06 16:13:36 +0000329#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-11-29 13:18:06 -0700330# ifdef CONFIG_DM_PCI
331 dm_pci_read_config16(dev, PCI_COMMAND, &tmp16);
332 tmp |= PCI_COMMAND_MASTER;
333 dm_pci_write_config16(dev, PCI_COMMAND, tmp16);
334# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800335 pci_read_config_word(pdev, PCI_COMMAND, &tmp16);
336 tmp |= PCI_COMMAND_MASTER;
337 pci_write_config_word(pdev, PCI_COMMAND, tmp16);
Simon Glassff758cc2015-11-29 13:18:06 -0700338# endif
Rob Herring942e3142011-07-06 16:13:36 +0000339#endif
Michal Simeke8a016b2016-09-08 15:06:45 +0200340#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800341 return 0;
342}
343
344
Simon Glass225b1da2017-06-14 21:28:34 -0600345static void ahci_print_info(struct ahci_uc_priv *uc_priv)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800346{
Michal Simeke8a016b2016-09-08 15:06:45 +0200347#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
348# if defined(CONFIG_DM_PCI)
Simon Glass225b1da2017-06-14 21:28:34 -0600349 struct udevice *dev = uc_priv->dev;
Simon Glassff758cc2015-11-29 13:18:06 -0700350# else
Simon Glass225b1da2017-06-14 21:28:34 -0600351 pci_dev_t pdev = uc_priv->dev;
Simon Glassff758cc2015-11-29 13:18:06 -0700352# endif
Rob Herring942e3142011-07-06 16:13:36 +0000353 u16 cc;
354#endif
Simon Glass225b1da2017-06-14 21:28:34 -0600355 void __iomem *mmio = uc_priv->mmio_base;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000356 u32 vers, cap, cap2, impl, speed;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800357 const char *speed_s;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800358 const char *scc_s;
359
360 vers = readl(mmio + HOST_VERSION);
Simon Glass225b1da2017-06-14 21:28:34 -0600361 cap = uc_priv->cap;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000362 cap2 = readl(mmio + HOST_CAP2);
Simon Glass225b1da2017-06-14 21:28:34 -0600363 impl = uc_priv->port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800364
365 speed = (cap >> 20) & 0xf;
366 if (speed == 1)
367 speed_s = "1.5";
368 else if (speed == 2)
369 speed_s = "3";
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000370 else if (speed == 3)
371 speed_s = "6";
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800372 else
373 speed_s = "?";
374
Michal Simeke8a016b2016-09-08 15:06:45 +0200375#if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI)
Rob Herring942e3142011-07-06 16:13:36 +0000376 scc_s = "SATA";
377#else
Simon Glassff758cc2015-11-29 13:18:06 -0700378# ifdef CONFIG_DM_PCI
379 dm_pci_read_config16(dev, 0x0a, &cc);
380# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800381 pci_read_config_word(pdev, 0x0a, &cc);
Simon Glassff758cc2015-11-29 13:18:06 -0700382# endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800383 if (cc == 0x0101)
384 scc_s = "IDE";
385 else if (cc == 0x0106)
386 scc_s = "SATA";
387 else if (cc == 0x0104)
388 scc_s = "RAID";
389 else
390 scc_s = "unknown";
Rob Herring942e3142011-07-06 16:13:36 +0000391#endif
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500392 printf("AHCI %02x%02x.%02x%02x "
393 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
394 (vers >> 24) & 0xff,
395 (vers >> 16) & 0xff,
396 (vers >> 8) & 0xff,
397 vers & 0xff,
398 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800399
400 printf("flags: "
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000401 "%s%s%s%s%s%s%s"
402 "%s%s%s%s%s%s%s"
403 "%s%s%s%s%s%s\n",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500404 cap & (1 << 31) ? "64bit " : "",
405 cap & (1 << 30) ? "ncq " : "",
406 cap & (1 << 28) ? "ilck " : "",
407 cap & (1 << 27) ? "stag " : "",
408 cap & (1 << 26) ? "pm " : "",
409 cap & (1 << 25) ? "led " : "",
410 cap & (1 << 24) ? "clo " : "",
411 cap & (1 << 19) ? "nz " : "",
412 cap & (1 << 18) ? "only " : "",
413 cap & (1 << 17) ? "pmp " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000414 cap & (1 << 16) ? "fbss " : "",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500415 cap & (1 << 15) ? "pio " : "",
416 cap & (1 << 14) ? "slum " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000417 cap & (1 << 13) ? "part " : "",
418 cap & (1 << 7) ? "ccc " : "",
419 cap & (1 << 6) ? "ems " : "",
420 cap & (1 << 5) ? "sxs " : "",
421 cap2 & (1 << 2) ? "apst " : "",
422 cap2 & (1 << 1) ? "nvmp " : "",
423 cap2 & (1 << 0) ? "boh " : "");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800424}
425
Simon Glass745a94f2017-07-04 13:31:18 -0600426#if defined(CONFIG_DM_SCSI) || !defined(CONFIG_SCSI_AHCI_PLAT)
Michal Simeke8a016b2016-09-08 15:06:45 +0200427# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Simon Glass4279efc2017-06-14 21:28:38 -0600428static int ahci_init_one(struct ahci_uc_priv *uc_priv, struct udevice *dev)
Simon Glassff758cc2015-11-29 13:18:06 -0700429# else
Simon Glass4279efc2017-06-14 21:28:38 -0600430static int ahci_init_one(struct ahci_uc_priv *uc_priv, pci_dev_t dev)
Simon Glassff758cc2015-11-29 13:18:06 -0700431# endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800432{
Michal Simeke8a016b2016-09-08 15:06:45 +0200433#if !defined(CONFIG_DM_SCSI)
Ed Swarthout63cec582007-08-02 14:09:49 -0500434 u16 vendor;
Michal Simeke8a016b2016-09-08 15:06:45 +0200435#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800436 int rc;
437
Simon Glass225b1da2017-06-14 21:28:34 -0600438 uc_priv->dev = dev;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800439
Simon Glass225b1da2017-06-14 21:28:34 -0600440 uc_priv->host_flags = ATA_FLAG_SATA
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500441 | ATA_FLAG_NO_LEGACY
442 | ATA_FLAG_MMIO
443 | ATA_FLAG_PIO_DMA
444 | ATA_FLAG_NO_ATAPI;
Simon Glass225b1da2017-06-14 21:28:34 -0600445 uc_priv->pio_mask = 0x1f;
446 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800447
Michal Simeke8a016b2016-09-08 15:06:45 +0200448#if !defined(CONFIG_DM_SCSI)
Simon Glassff758cc2015-11-29 13:18:06 -0700449#ifdef CONFIG_DM_PCI
Simon Glass225b1da2017-06-14 21:28:34 -0600450 uc_priv->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Simon Glassff758cc2015-11-29 13:18:06 -0700451 PCI_REGION_MEM);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800452
453 /* Take from kernel:
454 * JMicron-specific fixup:
455 * make sure we're in AHCI mode
456 */
Simon Glassff758cc2015-11-29 13:18:06 -0700457 dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500458 if (vendor == 0x197b)
Simon Glassff758cc2015-11-29 13:18:06 -0700459 dm_pci_write_config8(dev, 0x41, 0xa1);
460#else
Simon Glass225b1da2017-06-14 21:28:34 -0600461 uc_priv->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Simon Glassff758cc2015-11-29 13:18:06 -0700462 PCI_REGION_MEM);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800463
Simon Glassff758cc2015-11-29 13:18:06 -0700464 /* Take from kernel:
465 * JMicron-specific fixup:
466 * make sure we're in AHCI mode
467 */
468 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
469 if (vendor == 0x197b)
470 pci_write_config_byte(dev, 0x41, 0xa1);
471#endif
Michal Simeke8a016b2016-09-08 15:06:45 +0200472#else
Simon Glass1dc64f62017-06-14 21:28:31 -0600473 struct scsi_platdata *plat = dev_get_uclass_platdata(dev);
Simon Glass225b1da2017-06-14 21:28:34 -0600474 uc_priv->mmio_base = (void *)plat->base;
Michal Simeke8a016b2016-09-08 15:06:45 +0200475#endif
Simon Glassff758cc2015-11-29 13:18:06 -0700476
Simon Glass225b1da2017-06-14 21:28:34 -0600477 debug("ahci mmio_base=0x%p\n", uc_priv->mmio_base);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800478 /* initialize adapter */
Simon Glass225b1da2017-06-14 21:28:34 -0600479 rc = ahci_host_init(uc_priv);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800480 if (rc)
481 goto err_out;
482
Simon Glass225b1da2017-06-14 21:28:34 -0600483 ahci_print_info(uc_priv);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800484
485 return 0;
486
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500487 err_out:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800488 return rc;
489}
Rob Herring942e3142011-07-06 16:13:36 +0000490#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800491
492#define MAX_DATA_BYTE_COUNT (4*1024*1024)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500493
Simon Glass225b1da2017-06-14 21:28:34 -0600494static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
495 unsigned char *buf, int buf_len)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800496{
Simon Glass225b1da2017-06-14 21:28:34 -0600497 struct ahci_ioports *pp = &(uc_priv->port[port]);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800498 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
499 u32 sg_count;
500 int i;
501
502 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500503 if (sg_count > AHCI_MAX_SG) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800504 printf("Error:Too much sg!\n");
505 return -1;
506 }
507
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500508 for (i = 0; i < sg_count; i++) {
Roman Kapl6e732552019-10-14 11:21:09 +0200509 /* We assume virt=phys */
510 phys_addr_t pa = (unsigned long)buf + i * MAX_DATA_BYTE_COUNT;
511
512 ahci_sg->addr = cpu_to_le32(lower_32_bits(pa));
513 ahci_sg->addr_hi = cpu_to_le32(upper_32_bits(pa));
514 if (ahci_sg->addr_hi && !(uc_priv->cap & AHCI_CAP_S64A)) {
515 printf("Error: DMA address too high\n");
516 return -1;
517 }
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500518 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
519 (buf_len < MAX_DATA_BYTE_COUNT
520 ? (buf_len - 1)
521 : (MAX_DATA_BYTE_COUNT - 1)));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800522 ahci_sg++;
523 buf_len -= MAX_DATA_BYTE_COUNT;
524 }
525
526 return sg_count;
527}
528
529
530static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
531{
532 pp->cmd_slot->opts = cpu_to_le32(opts);
533 pp->cmd_slot->status = 0;
Tang Yuantianfa313772015-07-09 14:37:30 +0800534 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
535#ifdef CONFIG_PHYS_64BIT
536 pp->cmd_slot->tbl_addr_hi =
537 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
538#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800539}
540
Tang Yuantianfa313772015-07-09 14:37:30 +0800541static int wait_spinup(void __iomem *port_mmio)
Bin Meng4df2b482014-12-31 17:18:39 +0800542{
543 ulong start;
544 u32 tf_data;
545
546 start = get_timer(0);
547 do {
548 tf_data = readl(port_mmio + PORT_TFDATA);
549 if (!(tf_data & ATA_BUSY))
550 return 0;
551 } while (get_timer(start) < WAIT_MS_SPINUP);
552
553 return -ETIMEDOUT;
554}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800555
Simon Glass225b1da2017-06-14 21:28:34 -0600556static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800557{
Simon Glass225b1da2017-06-14 21:28:34 -0600558 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +0800559 void __iomem *port_mmio = pp->port_mmio;
Oleksandr Rybalko5b7a2bf2019-08-22 12:26:56 +0200560 u64 dma_addr;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800561 u32 port_status;
Tang Yuantianfa313772015-07-09 14:37:30 +0800562 void __iomem *mem;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800563
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500564 debug("Enter start port: %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800565 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500566 debug("Port %d status: %x\n", port, port_status);
567 if ((port_status & 0xf) != 0x03) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800568 printf("No Link on this port!\n");
569 return -1;
570 }
571
Christian Gmeiner28b4ba92019-05-06 15:18:54 +0200572 mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800573 if (!mem) {
574 free(pp);
Roger Quadrosd73763a2013-11-11 16:56:37 +0200575 printf("%s: No mem for table!\n", __func__);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800576 return -ENOMEM;
577 }
Tang Yuantianfa313772015-07-09 14:37:30 +0800578 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800579
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800580 /*
581 * First item in chunk of DMA memory: 32-slot command table,
582 * 32 bytes each in size
583 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000584 pp->cmd_slot =
585 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
Tang Yuantianfa313772015-07-09 14:37:30 +0800586 debug("cmd_slot = %p\n", pp->cmd_slot);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800587 mem += (AHCI_CMD_SLOT_SZ + 224);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500588
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800589 /*
590 * Second item: Received-FIS area
591 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000592 pp->rx_fis = virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800593 mem += AHCI_RX_FIS_SZ;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500594
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800595 /*
596 * Third item: data area for storing a single command
597 * and its scatter-gather table
598 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000599 pp->cmd_tbl = virt_to_phys((void *)mem);
Tang Yuantianfa313772015-07-09 14:37:30 +0800600 debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800601
602 mem += AHCI_CMD_TBL_HDR;
Taylor Hutt64738e82012-10-29 05:23:58 +0000603 pp->cmd_tbl_sg =
604 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800605
Oleksandr Rybalko5b7a2bf2019-08-22 12:26:56 +0200606 dma_addr = (ulong)pp->cmd_slot;
607 writel_with_flush(dma_addr, port_mmio + PORT_LST_ADDR);
608 writel_with_flush(dma_addr >> 32, port_mmio + PORT_LST_ADDR_HI);
609 dma_addr = (ulong)pp->rx_fis;
610 writel_with_flush(dma_addr, port_mmio + PORT_FIS_ADDR);
611 writel_with_flush(dma_addr >> 32, port_mmio + PORT_FIS_ADDR_HI);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800612
Ian Campbella6e50a82014-07-18 20:38:41 +0100613#ifdef CONFIG_SUNXI_AHCI
614 sunxi_dma_init(port_mmio);
615#endif
616
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800617 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500618 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
619 PORT_CMD_START, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800620
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500621 debug("Exit start port %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800622
Bin Meng4df2b482014-12-31 17:18:39 +0800623 /*
624 * Make sure interface is not busy based on error and status
625 * information from task file data register before proceeding
626 */
627 return wait_spinup(port_mmio);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800628}
629
630
Simon Glass225b1da2017-06-14 21:28:34 -0600631static int ahci_device_data_io(struct ahci_uc_priv *uc_priv, u8 port, u8 *fis,
632 int fis_len, u8 *buf, int buf_len, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800633{
634
Simon Glass225b1da2017-06-14 21:28:34 -0600635 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +0800636 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800637 u32 opts;
638 u32 port_status;
639 int sg_count;
640
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000641 debug("Enter %s: for port %d\n", __func__, port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800642
Simon Glass225b1da2017-06-14 21:28:34 -0600643 if (port > uc_priv->n_ports) {
Taylor Hutt5a2b77f2012-10-29 05:23:56 +0000644 printf("Invalid port number %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800645 return -1;
646 }
647
648 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500649 if ((port_status & 0xf) != 0x03) {
650 debug("No Link on port %d!\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800651 return -1;
652 }
653
654 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
655
Simon Glass225b1da2017-06-14 21:28:34 -0600656 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000657 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800658 ahci_fill_cmd_slot(pp, opts);
659
Taylor Hutt90b276f2012-10-29 05:23:59 +0000660 ahci_dcache_flush_sata_cmd(pp);
Tang Yuantianfa313772015-07-09 14:37:30 +0800661 ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len);
Taylor Hutt90b276f2012-10-29 05:23:59 +0000662
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800663 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
664
Walter Murphy57847662012-10-29 05:24:00 +0000665 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
666 WAIT_MS_DATAIO, 0x1)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800667 printf("timeout exit!\n");
668 return -1;
669 }
Taylor Hutt90b276f2012-10-29 05:23:59 +0000670
Tang Yuantianfa313772015-07-09 14:37:30 +0800671 ahci_dcache_invalidate_range((unsigned long)buf,
672 (unsigned long)buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000673 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800674
675 return 0;
676}
677
678
679static char *ata_id_strcpy(u16 *target, u16 *src, int len)
680{
681 int i;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500682 for (i = 0; i < len / 2; i++)
Rob Herringe5a6c792011-06-01 09:10:26 +0000683 target[i] = swab16(src[i]);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800684 return (char *)target;
685}
686
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800687/*
688 * SCSI INQUIRY command operation.
689 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600690static int ata_scsiop_inquiry(struct ahci_uc_priv *uc_priv,
691 struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800692{
Rob Herring48c3a872013-08-24 10:10:48 -0500693 static const u8 hdr[] = {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800694 0,
695 0,
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500696 0x5, /* claim SPC-3 version compatibility */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800697 2,
698 95 - 4,
699 };
700 u8 fis[20];
Roger Quadros3f629712014-04-01 17:26:40 +0300701 u16 *idbuf;
Roger Quadros2faf5fb2013-11-11 16:56:38 +0200702 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800703 u8 port;
704
705 /* Clean ccb data buffer */
706 memset(pccb->pdata, 0, pccb->datalen);
707
708 memcpy(pccb->pdata, hdr, sizeof(hdr));
709
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500710 if (pccb->datalen <= 35)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800711 return 0;
712
Taylor Huttc8731112012-10-29 05:23:55 +0000713 memset(fis, 0, sizeof(fis));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800714 /* Construct the FIS */
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500715 fis[0] = 0x27; /* Host to device FIS. */
716 fis[1] = 1 << 7; /* Command FIS. */
Rob Herring344ca0b2013-08-24 10:10:54 -0500717 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800718
719 /* Read id from sata */
720 port = pccb->target;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800721
Simon Glass225b1da2017-06-14 21:28:34 -0600722 if (ahci_device_data_io(uc_priv, port, (u8 *)&fis, sizeof(fis),
723 (u8 *)tmpid, ATA_ID_WORDS * 2, 0)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800724 debug("scsi_ahci: SCSI inquiry command failure.\n");
725 return -EIO;
726 }
727
Simon Glass4b62b2f2017-06-14 21:28:33 -0600728 if (!uc_priv->ataid[port]) {
729 uc_priv->ataid[port] = malloc(ATA_ID_WORDS * 2);
730 if (!uc_priv->ataid[port]) {
Roger Quadros3f629712014-04-01 17:26:40 +0300731 printf("%s: No memory for ataid[port]\n", __func__);
732 return -ENOMEM;
733 }
734 }
735
Simon Glass4b62b2f2017-06-14 21:28:33 -0600736 idbuf = uc_priv->ataid[port];
Roger Quadros3f629712014-04-01 17:26:40 +0300737
738 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
739 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800740
741 memcpy(&pccb->pdata[8], "ATA ", 8);
Roger Quadros3f629712014-04-01 17:26:40 +0300742 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
743 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800744
Rob Herring344ca0b2013-08-24 10:10:54 -0500745#ifdef DEBUG
Roger Quadros3f629712014-04-01 17:26:40 +0300746 ata_dump_id(idbuf);
Rob Herring344ca0b2013-08-24 10:10:54 -0500747#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800748 return 0;
749}
750
751
752/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000753 * SCSI READ10/WRITE10 command operation.
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800754 */
Simon Glass225b1da2017-06-14 21:28:34 -0600755static int ata_scsiop_read_write(struct ahci_uc_priv *uc_priv,
756 struct scsi_cmd *pccb, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800757{
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100758 lbaint_t lba = 0;
Vadim Bendebury284231e2012-10-29 05:23:44 +0000759 u16 blocks = 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800760 u8 fis[20];
Vadim Bendebury284231e2012-10-29 05:23:44 +0000761 u8 *user_buffer = pccb->pdata;
762 u32 user_buffer_size = pccb->datalen;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800763
Vadim Bendebury284231e2012-10-29 05:23:44 +0000764 /* Retrieve the base LBA number from the ccb structure. */
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100765 if (pccb->cmd[0] == SCSI_READ16) {
766 memcpy(&lba, pccb->cmd + 2, 8);
767 lba = be64_to_cpu(lba);
768 } else {
769 u32 temp;
770 memcpy(&temp, pccb->cmd + 2, 4);
771 lba = be32_to_cpu(temp);
772 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800773
Vadim Bendebury284231e2012-10-29 05:23:44 +0000774 /*
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100775 * Retrieve the base LBA number and the block count from
776 * the ccb structure.
Vadim Bendebury284231e2012-10-29 05:23:44 +0000777 *
778 * For 10-byte and 16-byte SCSI R/W commands, transfer
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800779 * length 0 means transfer 0 block of data.
780 * However, for ATA R/W commands, sector count 0 means
781 * 256 or 65536 sectors, not 0 sectors as in SCSI.
782 *
783 * WARNING: one or two older ATA drives treat 0 as 0...
784 */
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100785 if (pccb->cmd[0] == SCSI_READ16)
786 blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]);
787 else
788 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000789
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100790 debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n",
791 is_write ? "write" : "read", blocks, lba);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000792
793 /* Preset the FIS */
Taylor Huttc8731112012-10-29 05:23:55 +0000794 memset(fis, 0, sizeof(fis));
Vadim Bendebury284231e2012-10-29 05:23:44 +0000795 fis[0] = 0x27; /* Host to device FIS. */
796 fis[1] = 1 << 7; /* Command FIS. */
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000797 /* Command byte (read/write). */
Walter Murphyfe1f8082012-10-29 05:24:03 +0000798 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800799
Vadim Bendebury284231e2012-10-29 05:23:44 +0000800 while (blocks) {
801 u16 now_blocks; /* number of blocks per iteration */
802 u32 transfer_size; /* number of bytes per iteration */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800803
Masahiro Yamadab4141192014-11-07 03:03:31 +0900804 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800805
Rob Herring344ca0b2013-08-24 10:10:54 -0500806 transfer_size = ATA_SECT_SIZE * now_blocks;
Vadim Bendebury284231e2012-10-29 05:23:44 +0000807 if (transfer_size > user_buffer_size) {
808 printf("scsi_ahci: Error: buffer too small.\n");
809 return -EIO;
810 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800811
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100812 /*
813 * LBA48 SATA command but only use 32bit address range within
814 * that (unless we've enabled 64bit LBA support). The next
815 * smaller command range (28bit) is too small.
Walter Murphyfe1f8082012-10-29 05:24:03 +0000816 */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000817 fis[4] = (lba >> 0) & 0xff;
818 fis[5] = (lba >> 8) & 0xff;
819 fis[6] = (lba >> 16) & 0xff;
Walter Murphyfe1f8082012-10-29 05:24:03 +0000820 fis[7] = 1 << 6; /* device reg: set LBA mode */
821 fis[8] = ((lba >> 24) & 0xff);
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100822#ifdef CONFIG_SYS_64BIT_LBA
823 if (pccb->cmd[0] == SCSI_READ16) {
824 fis[9] = ((lba >> 32) & 0xff);
825 fis[10] = ((lba >> 40) & 0xff);
826 }
827#endif
828
Walter Murphyfe1f8082012-10-29 05:24:03 +0000829 fis[3] = 0xe0; /* features */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000830
831 /* Block (sector) count */
832 fis[12] = (now_blocks >> 0) & 0xff;
833 fis[13] = (now_blocks >> 8) & 0xff;
834
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000835 /* Read/Write from ahci */
Simon Glass225b1da2017-06-14 21:28:34 -0600836 if (ahci_device_data_io(uc_priv, pccb->target, (u8 *)&fis,
837 sizeof(fis), user_buffer, transfer_size,
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000838 is_write)) {
839 debug("scsi_ahci: SCSI %s10 command failure.\n",
840 is_write ? "WRITE" : "READ");
Vadim Bendebury284231e2012-10-29 05:23:44 +0000841 return -EIO;
842 }
Marc Jones766b16f2012-10-29 05:24:02 +0000843
844 /* If this transaction is a write, do a following flush.
845 * Writes in u-boot are so rare, and the logic to know when is
846 * the last write and do a flush only there is sufficiently
847 * difficult. Just do a flush after every write. This incurs,
848 * usually, one extra flush when the rare writes do happen.
849 */
850 if (is_write) {
Simon Glass225b1da2017-06-14 21:28:34 -0600851 if (-EIO == ata_io_flush(uc_priv, pccb->target))
Marc Jones766b16f2012-10-29 05:24:02 +0000852 return -EIO;
853 }
Vadim Bendebury284231e2012-10-29 05:23:44 +0000854 user_buffer += transfer_size;
855 user_buffer_size -= transfer_size;
856 blocks -= now_blocks;
857 lba += now_blocks;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800858 }
859
860 return 0;
861}
862
863
864/*
865 * SCSI READ CAPACITY10 command operation.
866 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600867static int ata_scsiop_read_capacity10(struct ahci_uc_priv *uc_priv,
868 struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800869{
Kumar Galacb6d0b72009-07-13 09:24:00 -0500870 u32 cap;
Rob Herring344ca0b2013-08-24 10:10:54 -0500871 u64 cap64;
Gabe Black19d1d412012-10-29 05:23:54 +0000872 u32 block_size;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800873
Simon Glass4b62b2f2017-06-14 21:28:33 -0600874 if (!uc_priv->ataid[pccb->target]) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800875 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500876 "\tNo ATA info!\n"
Vagrant Cascadian1b25e582015-11-24 14:46:24 -0800877 "\tPlease run SCSI command INQUIRY first!\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800878 return -EPERM;
879 }
880
Simon Glass4b62b2f2017-06-14 21:28:33 -0600881 cap64 = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Rob Herring344ca0b2013-08-24 10:10:54 -0500882 if (cap64 > 0x100000000ULL)
883 cap64 = 0xffffffff;
Gabe Black19d1d412012-10-29 05:23:54 +0000884
Rob Herring344ca0b2013-08-24 10:10:54 -0500885 cap = cpu_to_be32(cap64);
Kumar Galacb6d0b72009-07-13 09:24:00 -0500886 memcpy(pccb->pdata, &cap, sizeof(cap));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800887
Gabe Black19d1d412012-10-29 05:23:54 +0000888 block_size = cpu_to_be32((u32)512);
889 memcpy(&pccb->pdata[4], &block_size, 4);
890
891 return 0;
892}
893
894
895/*
896 * SCSI READ CAPACITY16 command operation.
897 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600898static int ata_scsiop_read_capacity16(struct ahci_uc_priv *uc_priv,
899 struct scsi_cmd *pccb)
Gabe Black19d1d412012-10-29 05:23:54 +0000900{
901 u64 cap;
902 u64 block_size;
903
Simon Glass4b62b2f2017-06-14 21:28:33 -0600904 if (!uc_priv->ataid[pccb->target]) {
Gabe Black19d1d412012-10-29 05:23:54 +0000905 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
906 "\tNo ATA info!\n"
Vagrant Cascadian1b25e582015-11-24 14:46:24 -0800907 "\tPlease run SCSI command INQUIRY first!\n");
Gabe Black19d1d412012-10-29 05:23:54 +0000908 return -EPERM;
909 }
910
Simon Glass4b62b2f2017-06-14 21:28:33 -0600911 cap = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Gabe Black19d1d412012-10-29 05:23:54 +0000912 cap = cpu_to_be64(cap);
913 memcpy(pccb->pdata, &cap, sizeof(cap));
914
915 block_size = cpu_to_be64((u64)512);
916 memcpy(&pccb->pdata[8], &block_size, 8);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800917
918 return 0;
919}
920
921
922/*
923 * SCSI TEST UNIT READY command operation.
924 */
Simon Glass4b62b2f2017-06-14 21:28:33 -0600925static int ata_scsiop_test_unit_ready(struct ahci_uc_priv *uc_priv,
926 struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800927{
Simon Glass4b62b2f2017-06-14 21:28:33 -0600928 return (uc_priv->ataid[pccb->target]) ? 0 : -EPERM;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800929}
930
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500931
Simon Glass4e749012017-06-14 21:28:42 -0600932static int ahci_scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800933{
Simon Glass4682c8a2017-06-14 21:28:40 -0600934 struct ahci_uc_priv *uc_priv;
935#ifdef CONFIG_DM_SCSI
Simon Glassbfc1c6b2017-07-04 13:31:22 -0600936 uc_priv = dev_get_uclass_priv(dev->parent);
Simon Glass4682c8a2017-06-14 21:28:40 -0600937#else
938 uc_priv = probe_ent;
939#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800940 int ret;
941
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500942 switch (pccb->cmd[0]) {
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100943 case SCSI_READ16:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800944 case SCSI_READ10:
Simon Glass225b1da2017-06-14 21:28:34 -0600945 ret = ata_scsiop_read_write(uc_priv, pccb, 0);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000946 break;
947 case SCSI_WRITE10:
Simon Glass225b1da2017-06-14 21:28:34 -0600948 ret = ata_scsiop_read_write(uc_priv, pccb, 1);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800949 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000950 case SCSI_RD_CAPAC10:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600951 ret = ata_scsiop_read_capacity10(uc_priv, pccb);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800952 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000953 case SCSI_RD_CAPAC16:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600954 ret = ata_scsiop_read_capacity16(uc_priv, pccb);
Gabe Black19d1d412012-10-29 05:23:54 +0000955 break;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800956 case SCSI_TST_U_RDY:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600957 ret = ata_scsiop_test_unit_ready(uc_priv, pccb);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800958 break;
959 case SCSI_INQUIRY:
Simon Glass4b62b2f2017-06-14 21:28:33 -0600960 ret = ata_scsiop_inquiry(uc_priv, pccb);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800961 break;
962 default:
963 printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
Simon Glassf6580ef2017-06-14 21:28:44 -0600964 return -ENOTSUPP;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800965 }
966
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500967 if (ret) {
968 debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
Simon Glassf6580ef2017-06-14 21:28:44 -0600969 return ret;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800970 }
Simon Glassf6580ef2017-06-14 21:28:44 -0600971 return 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800972
973}
974
Simon Glass62b4ec82017-06-14 21:28:36 -0600975static int ahci_start_ports(struct ahci_uc_priv *uc_priv)
976{
977 u32 linkmap;
978 int i;
979
980 linkmap = uc_priv->link_port_map;
981
Tuomas Tynkkynen8bf207d2018-09-13 01:28:54 +0300982 for (i = 0; i < uc_priv->n_ports; i++) {
Simon Glass62b4ec82017-06-14 21:28:36 -0600983 if (((linkmap >> i) & 0x01)) {
984 if (ahci_port_start(uc_priv, (u8) i)) {
985 printf("Can not start port %d\n", i);
986 continue;
987 }
988 }
989 }
990
991 return 0;
992}
993
Simon Glass7cf1afc2017-06-14 21:28:37 -0600994#ifndef CONFIG_DM_SCSI
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800995void scsi_low_level_init(int busdevfunc)
996{
Simon Glass225b1da2017-06-14 21:28:34 -0600997 struct ahci_uc_priv *uc_priv;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800998
Rob Herring942e3142011-07-06 16:13:36 +0000999#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glass4279efc2017-06-14 21:28:38 -06001000 probe_ent = calloc(1, sizeof(struct ahci_uc_priv));
1001 if (!probe_ent) {
1002 printf("%s: No memory for uc_priv\n", __func__);
1003 return;
1004 }
1005 uc_priv = probe_ent;
Michal Simeke8a016b2016-09-08 15:06:45 +02001006# if defined(CONFIG_DM_PCI)
Simon Glassff758cc2015-11-29 13:18:06 -07001007 struct udevice *dev;
1008 int ret;
1009
1010 ret = dm_pci_bus_find_bdf(busdevfunc, &dev);
1011 if (ret)
1012 return;
Simon Glass4279efc2017-06-14 21:28:38 -06001013 ahci_init_one(uc_priv, dev);
Simon Glassff758cc2015-11-29 13:18:06 -07001014# else
Simon Glass4279efc2017-06-14 21:28:38 -06001015 ahci_init_one(uc_priv, busdevfunc);
Simon Glassff758cc2015-11-29 13:18:06 -07001016# endif
Simon Glass4279efc2017-06-14 21:28:38 -06001017#else
Simon Glass225b1da2017-06-14 21:28:34 -06001018 uc_priv = probe_ent;
Simon Glass4279efc2017-06-14 21:28:38 -06001019#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001020
Simon Glass62b4ec82017-06-14 21:28:36 -06001021 ahci_start_ports(uc_priv);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001022}
Simon Glass7cf1afc2017-06-14 21:28:37 -06001023#endif
1024
1025#ifndef CONFIG_SCSI_AHCI_PLAT
1026# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Michal Simeke81589e2017-11-02 15:53:56 +01001027int ahci_init_one_dm(struct udevice *dev)
Simon Glass7cf1afc2017-06-14 21:28:37 -06001028{
Simon Glass4279efc2017-06-14 21:28:38 -06001029 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1030
1031 return ahci_init_one(uc_priv, dev);
Simon Glass7cf1afc2017-06-14 21:28:37 -06001032}
1033#endif
1034#endif
1035
Michal Simeke81589e2017-11-02 15:53:56 +01001036int ahci_start_ports_dm(struct udevice *dev)
Simon Glass7cf1afc2017-06-14 21:28:37 -06001037{
Simon Glass4279efc2017-06-14 21:28:38 -06001038 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass7cf1afc2017-06-14 21:28:37 -06001039
1040 return ahci_start_ports(uc_priv);
1041}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001042
Rob Herring942e3142011-07-06 16:13:36 +00001043#ifdef CONFIG_SCSI_AHCI_PLAT
Simon Glass4279efc2017-06-14 21:28:38 -06001044static int ahci_init_common(struct ahci_uc_priv *uc_priv, void __iomem *base)
Rob Herring942e3142011-07-06 16:13:36 +00001045{
Simon Glass4279efc2017-06-14 21:28:38 -06001046 int rc;
Rob Herring942e3142011-07-06 16:13:36 +00001047
Simon Glass225b1da2017-06-14 21:28:34 -06001048 uc_priv->host_flags = ATA_FLAG_SATA
Rob Herring942e3142011-07-06 16:13:36 +00001049 | ATA_FLAG_NO_LEGACY
1050 | ATA_FLAG_MMIO
1051 | ATA_FLAG_PIO_DMA
1052 | ATA_FLAG_NO_ATAPI;
Simon Glass225b1da2017-06-14 21:28:34 -06001053 uc_priv->pio_mask = 0x1f;
1054 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Rob Herring942e3142011-07-06 16:13:36 +00001055
Simon Glass225b1da2017-06-14 21:28:34 -06001056 uc_priv->mmio_base = base;
Rob Herring942e3142011-07-06 16:13:36 +00001057
1058 /* initialize adapter */
Simon Glass225b1da2017-06-14 21:28:34 -06001059 rc = ahci_host_init(uc_priv);
Rob Herring942e3142011-07-06 16:13:36 +00001060 if (rc)
1061 goto err_out;
1062
Simon Glass225b1da2017-06-14 21:28:34 -06001063 ahci_print_info(uc_priv);
Rob Herring942e3142011-07-06 16:13:36 +00001064
Simon Glass62b4ec82017-06-14 21:28:36 -06001065 rc = ahci_start_ports(uc_priv);
Rob Herring942e3142011-07-06 16:13:36 +00001066
Rob Herring942e3142011-07-06 16:13:36 +00001067err_out:
1068 return rc;
1069}
Ian Campbellc6f3d502014-03-07 01:20:56 +00001070
Simon Glass4279efc2017-06-14 21:28:38 -06001071#ifndef CONFIG_DM_SCSI
1072int ahci_init(void __iomem *base)
1073{
1074 struct ahci_uc_priv *uc_priv;
1075
1076 probe_ent = malloc(sizeof(struct ahci_uc_priv));
1077 if (!probe_ent) {
1078 printf("%s: No memory for uc_priv\n", __func__);
1079 return -ENOMEM;
1080 }
1081
1082 uc_priv = probe_ent;
1083 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
1084
1085 return ahci_init_common(uc_priv, base);
1086}
1087#endif
1088
1089int ahci_init_dm(struct udevice *dev, void __iomem *base)
1090{
1091 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1092
1093 return ahci_init_common(uc_priv, base);
1094}
1095
Ian Campbellc6f3d502014-03-07 01:20:56 +00001096void __weak scsi_init(void)
1097{
1098}
1099
Simon Glass4279efc2017-06-14 21:28:38 -06001100#endif /* CONFIG_SCSI_AHCI_PLAT */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001101
Marc Jones766b16f2012-10-29 05:24:02 +00001102/*
1103 * In the general case of generic rotating media it makes sense to have a
1104 * flush capability. It probably even makes sense in the case of SSDs because
1105 * one cannot always know for sure what kind of internal cache/flush mechanism
1106 * is embodied therein. At first it was planned to invoke this after the last
1107 * write to disk and before rebooting. In practice, knowing, a priori, which
1108 * is the last write is difficult. Because writing to the disk in u-boot is
1109 * very rare, this flush command will be invoked after every block write.
1110 */
Simon Glass225b1da2017-06-14 21:28:34 -06001111static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port)
Marc Jones766b16f2012-10-29 05:24:02 +00001112{
1113 u8 fis[20];
Simon Glass225b1da2017-06-14 21:28:34 -06001114 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +08001115 void __iomem *port_mmio = pp->port_mmio;
Marc Jones766b16f2012-10-29 05:24:02 +00001116 u32 cmd_fis_len = 5; /* five dwords */
1117
1118 /* Preset the FIS */
1119 memset(fis, 0, 20);
1120 fis[0] = 0x27; /* Host to device FIS. */
1121 fis[1] = 1 << 7; /* Command FIS. */
Walter Murphyfe1f8082012-10-29 05:24:03 +00001122 fis[2] = ATA_CMD_FLUSH_EXT;
Marc Jones766b16f2012-10-29 05:24:02 +00001123
1124 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1125 ahci_fill_cmd_slot(pp, cmd_fis_len);
Tang Yuantian75e14b12016-04-14 16:21:00 +08001126 ahci_dcache_flush_sata_cmd(pp);
Marc Jones766b16f2012-10-29 05:24:02 +00001127 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1128
1129 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1130 WAIT_MS_FLUSH, 0x1)) {
1131 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1132 return -EIO;
1133 }
1134
1135 return 0;
1136}
1137
Simon Glass4e749012017-06-14 21:28:42 -06001138static int ahci_scsi_bus_reset(struct udevice *dev)
1139{
1140 /* Not implemented */
1141
1142 return 0;
1143}
1144
Simon Glassf6ab5a92017-06-14 21:28:43 -06001145#ifdef CONFIG_DM_SCSI
Simon Glass681357f2017-06-14 21:28:46 -06001146int ahci_bind_scsi(struct udevice *ahci_dev, struct udevice **devp)
1147{
1148 struct udevice *dev;
1149 int ret;
1150
1151 ret = device_bind_driver(ahci_dev, "ahci_scsi", "ahci_scsi", &dev);
1152 if (ret)
1153 return ret;
1154 *devp = dev;
1155
1156 return 0;
1157}
1158
Simon Glass745a94f2017-07-04 13:31:18 -06001159int ahci_probe_scsi(struct udevice *ahci_dev, ulong base)
Simon Glass681357f2017-06-14 21:28:46 -06001160{
Simon Glass681357f2017-06-14 21:28:46 -06001161 struct ahci_uc_priv *uc_priv;
1162 struct scsi_platdata *uc_plat;
1163 struct udevice *dev;
1164 int ret;
1165
1166 device_find_first_child(ahci_dev, &dev);
1167 if (!dev)
1168 return -ENODEV;
1169 uc_plat = dev_get_uclass_platdata(dev);
Simon Glass745a94f2017-07-04 13:31:18 -06001170 uc_plat->base = base;
Simon Glass681357f2017-06-14 21:28:46 -06001171 uc_plat->max_lun = 1;
1172 uc_plat->max_id = 2;
Simon Glass745a94f2017-07-04 13:31:18 -06001173
1174 uc_priv = dev_get_uclass_priv(ahci_dev);
Simon Glass681357f2017-06-14 21:28:46 -06001175 ret = ahci_init_one(uc_priv, dev);
1176 if (ret)
1177 return ret;
1178 ret = ahci_start_ports(uc_priv);
1179 if (ret)
1180 return ret;
Simon Glass681357f2017-06-14 21:28:46 -06001181
Park, Aidenbd98e6a2019-08-20 16:47:42 +00001182 /*
1183 * scsi_scan_dev() scans devices up-to the number of max_id.
1184 * Update max_id if the number of detected ports exceeds max_id.
1185 * This allows SCSI to scan all detected ports.
1186 */
1187 uc_plat->max_id = max_t(unsigned long, uc_priv->n_ports,
1188 uc_plat->max_id);
1189
Simon Glass681357f2017-06-14 21:28:46 -06001190 return 0;
1191}
1192
Simon Glass745a94f2017-07-04 13:31:18 -06001193#ifdef CONFIG_DM_PCI
1194int ahci_probe_scsi_pci(struct udevice *ahci_dev)
1195{
1196 ulong base;
1197
1198 base = (ulong)dm_pci_map_bar(ahci_dev, PCI_BASE_ADDRESS_5,
1199 PCI_REGION_MEM);
1200
1201 return ahci_probe_scsi(ahci_dev, base);
1202}
1203#endif
1204
Simon Glassf6ab5a92017-06-14 21:28:43 -06001205struct scsi_ops scsi_ops = {
1206 .exec = ahci_scsi_exec,
1207 .bus_reset = ahci_scsi_bus_reset,
1208};
Simon Glass681357f2017-06-14 21:28:46 -06001209
1210U_BOOT_DRIVER(ahci_scsi) = {
1211 .name = "ahci_scsi",
1212 .id = UCLASS_SCSI,
1213 .ops = &scsi_ops,
1214};
Simon Glassf6ab5a92017-06-14 21:28:43 -06001215#else
Simon Glass4e749012017-06-14 21:28:42 -06001216int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
1217{
1218 return ahci_scsi_exec(dev, pccb);
1219}
Marc Jones766b16f2012-10-29 05:24:02 +00001220
Simon Glass4682c8a2017-06-14 21:28:40 -06001221__weak int scsi_bus_reset(struct udevice *dev)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001222{
Simon Glass4e749012017-06-14 21:28:42 -06001223 return ahci_scsi_bus_reset(dev);
Simon Glass4682c8a2017-06-14 21:28:40 -06001224
1225 return 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001226}
Simon Glassf6ab5a92017-06-14 21:28:43 -06001227#endif