blob: e3135bb75fddb303cd3e826f02926df0c25e2cfe [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08002/*
Kumar Gala6a6d9482009-07-28 21:49:52 -05003 * Copyright (C) Freescale Semiconductor, Inc. 2006.
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08004 * Author: Jason Jin<Jason.jin@freescale.com>
5 * Zhang Wei<wei.zhang@freescale.com>
6 *
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08007 * with the reference on libata and ahci drvier in kernel
Simon Glass84fac542017-06-14 21:28:37 -06008 *
9 * This driver provides a SCSI interface to SATA.
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080010 */
11#include <common.h>
12
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080013#include <command.h>
Simon Glass6f9135b2015-11-29 13:18:06 -070014#include <dm.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080015#include <pci.h>
16#include <asm/processor.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090017#include <linux/errno.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080018#include <asm/io.h>
19#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060020#include <memalign.h>
Simon Glassc6b44302017-06-14 21:28:46 -060021#include <pci.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080022#include <scsi.h>
Rob Herring83f66482013-08-24 10:10:54 -050023#include <libata.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080024#include <linux/ctype.h>
25#include <ahci.h>
Simon Glassc6b44302017-06-14 21:28:46 -060026#include <dm/device-internal.h>
27#include <dm/lists.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080028
Simon Glasse0c419b2017-06-14 21:28:34 -060029static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port);
Marc Jones49ec4b12012-10-29 05:24:02 +000030
Simon Glass11b2b622017-06-14 21:28:40 -060031#ifndef CONFIG_DM_SCSI
Simon Glass5ce59672017-06-14 21:28:32 -060032struct ahci_uc_priv *probe_ent = NULL;
Simon Glass11b2b622017-06-14 21:28:40 -060033#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080034
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050035#define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
36
Vadim Bendebury700f85c2012-10-29 05:23:44 +000037/*
Hung-Te Lin0f10bd42012-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 Bendebury700f85c2012-10-29 05:23:44 +000042 */
Hung-Te Lin0f10bd42012-10-29 05:23:53 +000043#ifndef MAX_SATA_BLOCKS_READ_WRITE
44#define MAX_SATA_BLOCKS_READ_WRITE 0x80
Vadim Bendebury700f85c2012-10-29 05:23:44 +000045#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080046
Walter Murphyefd49b42012-10-29 05:24:00 +000047/* Maximum timeouts for each event */
Rob Herring249b9372013-08-24 10:10:53 -050048#define WAIT_MS_SPINUP 20000
Mark Langsdorf2cc6e1b2015-06-05 00:58:46 +010049#define WAIT_MS_DATAIO 10000
Marc Jones49ec4b12012-10-29 05:24:02 +000050#define WAIT_MS_FLUSH 5000
Ian Campbell368989b2014-07-18 20:38:39 +010051#define WAIT_MS_LINKUP 200
Walter Murphyefd49b42012-10-29 05:24:00 +000052
Stefan Roesed99a30e2016-08-31 10:02:15 +020053__weak void __iomem *ahci_port_base(void __iomem *base, u32 port)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080054{
55 return base + 0x100 + (port * 0x80);
56}
57
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080058#define msleep(a) udelay(a * 1000)
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050059
Tang Yuantian3f262d02015-07-09 14:37:30 +080060static void ahci_dcache_flush_range(unsigned long begin, unsigned long len)
Taylor Hutt33e4c2f2012-10-29 05:23:59 +000061{
62 const unsigned long start = begin;
63 const unsigned long end = start + len;
64
65 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
66 flush_dcache_range(start, end);
67}
68
69/*
70 * SATA controller DMAs to physical RAM. Ensure data from the
71 * controller is invalidated from dcache; next access comes from
72 * physical RAM.
73 */
Tang Yuantian3f262d02015-07-09 14:37:30 +080074static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len)
Taylor Hutt33e4c2f2012-10-29 05:23:59 +000075{
76 const unsigned long start = begin;
77 const unsigned long end = start + len;
78
79 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
80 invalidate_dcache_range(start, end);
81}
82
83/*
84 * Ensure data for SATA controller is flushed out of dcache and
85 * written to physical memory.
86 */
87static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
88{
89 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
90 AHCI_PORT_PRIV_DMA_SZ);
91}
92
Tang Yuantian3f262d02015-07-09 14:37:30 +080093static int waiting_for_cmd_completed(void __iomem *offset,
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050094 int timeout_msec,
95 u32 sign)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080096{
97 int i;
98 u32 status;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050099
100 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800101 msleep(1);
102
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500103 return (i < timeout_msec) ? 0 : -1;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800104}
105
Simon Glasscb875242017-06-14 21:28:33 -0600106int __weak ahci_link_up(struct ahci_uc_priv *uc_priv, u8 port)
Rob Herringaaec0982013-08-24 10:10:51 -0500107{
108 u32 tmp;
109 int j = 0;
Simon Glasscb875242017-06-14 21:28:33 -0600110 void __iomem *port_mmio = uc_priv->port[port].port_mmio;
Rob Herringaaec0982013-08-24 10:10:51 -0500111
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +0200112 /*
Rob Herringaaec0982013-08-24 10:10:51 -0500113 * Bring up SATA link.
114 * SATA link bringup time is usually less than 1 ms; only very
115 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
116 */
117 while (j < WAIT_MS_LINKUP) {
118 tmp = readl(port_mmio + PORT_SCR_STAT);
119 tmp &= PORT_SCR_STAT_DET_MASK;
120 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
121 return 0;
122 udelay(1000);
123 j++;
124 }
125 return 1;
126}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800127
Ian Campbella2ebf922014-07-18 20:38:41 +0100128#ifdef CONFIG_SUNXI_AHCI
129/* The sunxi AHCI controller requires this undocumented setup */
Tang Yuantian3f262d02015-07-09 14:37:30 +0800130static void sunxi_dma_init(void __iomem *port_mmio)
Ian Campbella2ebf922014-07-18 20:38:41 +0100131{
132 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
133}
134#endif
135
Scott Wood16519a32015-04-17 09:19:01 -0500136int ahci_reset(void __iomem *base)
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200137{
138 int i = 1000;
Scott Wood16519a32015-04-17 09:19:01 -0500139 u32 __iomem *host_ctl_reg = base + HOST_CTL;
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200140 u32 tmp = readl(host_ctl_reg); /* global controller reset */
141
142 if ((tmp & HOST_RESET) == 0)
143 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
144
145 /*
146 * reset must complete within 1 second, or
147 * the hardware should be considered fried.
148 */
149 do {
150 udelay(1000);
151 tmp = readl(host_ctl_reg);
152 i--;
153 } while ((i > 0) && (tmp & HOST_RESET));
154
155 if (i == 0) {
156 printf("controller reset failed (0x%x)\n", tmp);
157 return -1;
158 }
159
160 return 0;
161}
162
Simon Glasse0c419b2017-06-14 21:28:34 -0600163static int ahci_host_init(struct ahci_uc_priv *uc_priv)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800164{
Michal Simekc886f352016-09-08 15:06:45 +0200165#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700166# ifdef CONFIG_DM_PCI
Simon Glasse0c419b2017-06-14 21:28:34 -0600167 struct udevice *dev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700168 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
169# else
Simon Glasse0c419b2017-06-14 21:28:34 -0600170 pci_dev_t pdev = uc_priv->dev;
Rob Herringc2829ff2011-07-06 16:13:36 +0000171 unsigned short vendor;
Simon Glass6f9135b2015-11-29 13:18:06 -0700172# endif
173 u16 tmp16;
Rob Herringc2829ff2011-07-06 16:13:36 +0000174#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600175 void __iomem *mmio = uc_priv->mmio_base;
Marc Jonesbbb57842012-10-29 05:24:01 +0000176 u32 tmp, cap_save, cmd;
Rob Herringaaec0982013-08-24 10:10:51 -0500177 int i, j, ret;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800178 void __iomem *port_mmio;
Richard Gibbs8bc0ab72013-08-24 10:10:47 -0500179 u32 port_map;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800180
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000181 debug("ahci_host_init: start\n");
182
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800183 cap_save = readl(mmio + HOST_CAP);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500184 cap_save &= ((1 << 28) | (1 << 17));
Marc Jonesbbb57842012-10-29 05:24:01 +0000185 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800186
Simon Glasse0c419b2017-06-14 21:28:34 -0600187 ret = ahci_reset(uc_priv->mmio_base);
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200188 if (ret)
189 return ret;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800190
191 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
192 writel(cap_save, mmio + HOST_CAP);
193 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
194
Michal Simekc886f352016-09-08 15:06:45 +0200195#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700196# ifdef CONFIG_DM_PCI
197 if (pplat->vendor == PCI_VENDOR_ID_INTEL) {
198 u16 tmp16;
199
200 dm_pci_read_config16(dev, 0x92, &tmp16);
201 dm_pci_write_config16(dev, 0x92, tmp16 | 0xf);
202 }
203# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800204 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
205
206 if (vendor == PCI_VENDOR_ID_INTEL) {
207 u16 tmp16;
208 pci_read_config_word(pdev, 0x92, &tmp16);
209 tmp16 |= 0xf;
210 pci_write_config_word(pdev, 0x92, tmp16);
211 }
Simon Glass6f9135b2015-11-29 13:18:06 -0700212# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000213#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600214 uc_priv->cap = readl(mmio + HOST_CAP);
215 uc_priv->port_map = readl(mmio + HOST_PORTS_IMPL);
216 port_map = uc_priv->port_map;
217 uc_priv->n_ports = (uc_priv->cap & 0x1f) + 1;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800218
219 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Simon Glasse0c419b2017-06-14 21:28:34 -0600220 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800221
Tuomas Tynkkynenb3e45ed2018-09-13 01:28:55 +0300222#if !defined(CONFIG_DM_SCSI)
Simon Glasse0c419b2017-06-14 21:28:34 -0600223 if (uc_priv->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
224 uc_priv->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
Tuomas Tynkkynenb3e45ed2018-09-13 01:28:55 +0300225#endif
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000226
Simon Glasse0c419b2017-06-14 21:28:34 -0600227 for (i = 0; i < uc_priv->n_ports; i++) {
Richard Gibbs8bc0ab72013-08-24 10:10:47 -0500228 if (!(port_map & (1 << i)))
229 continue;
Simon Glasse0c419b2017-06-14 21:28:34 -0600230 uc_priv->port[i].port_mmio = ahci_port_base(mmio, i);
231 port_mmio = (u8 *)uc_priv->port[i].port_mmio;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800232
233 /* make sure port is not active */
234 tmp = readl(port_mmio + PORT_CMD);
235 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
236 PORT_CMD_FIS_RX | PORT_CMD_START)) {
Stefan Reinauer7ee0e4372012-10-29 05:23:50 +0000237 debug("Port %d is active. Deactivating.\n", i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800238 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
239 PORT_CMD_FIS_RX | PORT_CMD_START);
240 writel_with_flush(tmp, port_mmio + PORT_CMD);
241
242 /* spec says 500 msecs for each bit, so
243 * this is slightly incorrect.
244 */
245 msleep(500);
246 }
247
Ian Campbella2ebf922014-07-18 20:38:41 +0100248#ifdef CONFIG_SUNXI_AHCI
249 sunxi_dma_init(port_mmio);
250#endif
251
Marc Jonesbbb57842012-10-29 05:24:01 +0000252 /* Add the spinup command to whatever mode bits may
253 * already be on in the command register.
254 */
255 cmd = readl(port_mmio + PORT_CMD);
Marc Jonesbbb57842012-10-29 05:24:01 +0000256 cmd |= PORT_CMD_SPIN_UP;
257 writel_with_flush(cmd, port_mmio + PORT_CMD);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800258
Rob Herringaaec0982013-08-24 10:10:51 -0500259 /* Bring up SATA link. */
Simon Glasse0c419b2017-06-14 21:28:34 -0600260 ret = ahci_link_up(uc_priv, i);
Rob Herringaaec0982013-08-24 10:10:51 -0500261 if (ret) {
Marc Jonesbbb57842012-10-29 05:24:01 +0000262 printf("SATA link %d timeout.\n", i);
263 continue;
264 } else {
265 debug("SATA link ok.\n");
266 }
267
268 /* Clear error status */
269 tmp = readl(port_mmio + PORT_SCR_ERR);
270 if (tmp)
271 writel(tmp, port_mmio + PORT_SCR_ERR);
272
273 debug("Spinning up device on SATA port %d... ", i);
274
275 j = 0;
276 while (j < WAIT_MS_SPINUP) {
277 tmp = readl(port_mmio + PORT_TFDATA);
Rob Herring83f66482013-08-24 10:10:54 -0500278 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
Marc Jonesbbb57842012-10-29 05:24:01 +0000279 break;
280 udelay(1000);
Rob Herringc4698542013-08-24 10:10:52 -0500281 tmp = readl(port_mmio + PORT_SCR_STAT);
282 tmp &= PORT_SCR_STAT_DET_MASK;
283 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
284 break;
Marc Jonesbbb57842012-10-29 05:24:01 +0000285 j++;
286 }
Rob Herringc4698542013-08-24 10:10:52 -0500287
288 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
289 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
290 debug("SATA link %d down (COMINIT received), retrying...\n", i);
291 i--;
292 continue;
293 }
294
Marc Jonesbbb57842012-10-29 05:24:01 +0000295 printf("Target spinup took %d ms.\n", j);
296 if (j == WAIT_MS_SPINUP)
Stefan Reinauera63341c2012-10-29 05:23:49 +0000297 debug("timeout.\n");
298 else
299 debug("ok.\n");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800300
301 tmp = readl(port_mmio + PORT_SCR_ERR);
302 debug("PORT_SCR_ERR 0x%x\n", tmp);
303 writel(tmp, port_mmio + PORT_SCR_ERR);
304
305 /* ack any pending irq events for this port */
306 tmp = readl(port_mmio + PORT_IRQ_STAT);
307 debug("PORT_IRQ_STAT 0x%x\n", tmp);
308 if (tmp)
309 writel(tmp, port_mmio + PORT_IRQ_STAT);
310
311 writel(1 << i, mmio + HOST_IRQ_STAT);
312
Stefan Reinauer48791f12012-10-29 05:23:51 +0000313 /* register linkup ports */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800314 tmp = readl(port_mmio + PORT_SCR_STAT);
Marc Jones49ec4b12012-10-29 05:24:02 +0000315 debug("SATA port %d status: 0x%x\n", i, tmp);
Rob Herring723a2812013-08-24 10:10:50 -0500316 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
Simon Glasse0c419b2017-06-14 21:28:34 -0600317 uc_priv->link_port_map |= (0x01 << i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800318 }
319
320 tmp = readl(mmio + HOST_CTL);
321 debug("HOST_CTL 0x%x\n", tmp);
322 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
323 tmp = readl(mmio + HOST_CTL);
324 debug("HOST_CTL 0x%x\n", tmp);
Michal Simekc886f352016-09-08 15:06:45 +0200325#if !defined(CONFIG_DM_SCSI)
Rob Herringc2829ff2011-07-06 16:13:36 +0000326#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glass6f9135b2015-11-29 13:18:06 -0700327# ifdef CONFIG_DM_PCI
328 dm_pci_read_config16(dev, PCI_COMMAND, &tmp16);
329 tmp |= PCI_COMMAND_MASTER;
330 dm_pci_write_config16(dev, PCI_COMMAND, tmp16);
331# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800332 pci_read_config_word(pdev, PCI_COMMAND, &tmp16);
333 tmp |= PCI_COMMAND_MASTER;
334 pci_write_config_word(pdev, PCI_COMMAND, tmp16);
Simon Glass6f9135b2015-11-29 13:18:06 -0700335# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000336#endif
Michal Simekc886f352016-09-08 15:06:45 +0200337#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800338 return 0;
339}
340
341
Simon Glasse0c419b2017-06-14 21:28:34 -0600342static void ahci_print_info(struct ahci_uc_priv *uc_priv)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800343{
Michal Simekc886f352016-09-08 15:06:45 +0200344#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
345# if defined(CONFIG_DM_PCI)
Simon Glasse0c419b2017-06-14 21:28:34 -0600346 struct udevice *dev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700347# else
Simon Glasse0c419b2017-06-14 21:28:34 -0600348 pci_dev_t pdev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700349# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000350 u16 cc;
351#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600352 void __iomem *mmio = uc_priv->mmio_base;
Stefan Reinauer48791f12012-10-29 05:23:51 +0000353 u32 vers, cap, cap2, impl, speed;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800354 const char *speed_s;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800355 const char *scc_s;
356
357 vers = readl(mmio + HOST_VERSION);
Simon Glasse0c419b2017-06-14 21:28:34 -0600358 cap = uc_priv->cap;
Stefan Reinauer48791f12012-10-29 05:23:51 +0000359 cap2 = readl(mmio + HOST_CAP2);
Simon Glasse0c419b2017-06-14 21:28:34 -0600360 impl = uc_priv->port_map;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800361
362 speed = (cap >> 20) & 0xf;
363 if (speed == 1)
364 speed_s = "1.5";
365 else if (speed == 2)
366 speed_s = "3";
Stefan Reinauer48791f12012-10-29 05:23:51 +0000367 else if (speed == 3)
368 speed_s = "6";
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800369 else
370 speed_s = "?";
371
Michal Simekc886f352016-09-08 15:06:45 +0200372#if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI)
Rob Herringc2829ff2011-07-06 16:13:36 +0000373 scc_s = "SATA";
374#else
Simon Glass6f9135b2015-11-29 13:18:06 -0700375# ifdef CONFIG_DM_PCI
376 dm_pci_read_config16(dev, 0x0a, &cc);
377# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800378 pci_read_config_word(pdev, 0x0a, &cc);
Simon Glass6f9135b2015-11-29 13:18:06 -0700379# endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800380 if (cc == 0x0101)
381 scc_s = "IDE";
382 else if (cc == 0x0106)
383 scc_s = "SATA";
384 else if (cc == 0x0104)
385 scc_s = "RAID";
386 else
387 scc_s = "unknown";
Rob Herringc2829ff2011-07-06 16:13:36 +0000388#endif
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500389 printf("AHCI %02x%02x.%02x%02x "
390 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
391 (vers >> 24) & 0xff,
392 (vers >> 16) & 0xff,
393 (vers >> 8) & 0xff,
394 vers & 0xff,
395 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800396
397 printf("flags: "
Stefan Reinauer48791f12012-10-29 05:23:51 +0000398 "%s%s%s%s%s%s%s"
399 "%s%s%s%s%s%s%s"
400 "%s%s%s%s%s%s\n",
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500401 cap & (1 << 31) ? "64bit " : "",
402 cap & (1 << 30) ? "ncq " : "",
403 cap & (1 << 28) ? "ilck " : "",
404 cap & (1 << 27) ? "stag " : "",
405 cap & (1 << 26) ? "pm " : "",
406 cap & (1 << 25) ? "led " : "",
407 cap & (1 << 24) ? "clo " : "",
408 cap & (1 << 19) ? "nz " : "",
409 cap & (1 << 18) ? "only " : "",
410 cap & (1 << 17) ? "pmp " : "",
Stefan Reinauer48791f12012-10-29 05:23:51 +0000411 cap & (1 << 16) ? "fbss " : "",
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500412 cap & (1 << 15) ? "pio " : "",
413 cap & (1 << 14) ? "slum " : "",
Stefan Reinauer48791f12012-10-29 05:23:51 +0000414 cap & (1 << 13) ? "part " : "",
415 cap & (1 << 7) ? "ccc " : "",
416 cap & (1 << 6) ? "ems " : "",
417 cap & (1 << 5) ? "sxs " : "",
418 cap2 & (1 << 2) ? "apst " : "",
419 cap2 & (1 << 1) ? "nvmp " : "",
420 cap2 & (1 << 0) ? "boh " : "");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800421}
422
Simon Glass89e7d972017-07-04 13:31:18 -0600423#if defined(CONFIG_DM_SCSI) || !defined(CONFIG_SCSI_AHCI_PLAT)
Michal Simekc886f352016-09-08 15:06:45 +0200424# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Simon Glasscf01b5b2017-06-14 21:28:38 -0600425static int ahci_init_one(struct ahci_uc_priv *uc_priv, struct udevice *dev)
Simon Glass6f9135b2015-11-29 13:18:06 -0700426# else
Simon Glasscf01b5b2017-06-14 21:28:38 -0600427static int ahci_init_one(struct ahci_uc_priv *uc_priv, pci_dev_t dev)
Simon Glass6f9135b2015-11-29 13:18:06 -0700428# endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800429{
Michal Simekc886f352016-09-08 15:06:45 +0200430#if !defined(CONFIG_DM_SCSI)
Ed Swarthout91080f72007-08-02 14:09:49 -0500431 u16 vendor;
Michal Simekc886f352016-09-08 15:06:45 +0200432#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800433 int rc;
434
Simon Glasse0c419b2017-06-14 21:28:34 -0600435 uc_priv->dev = dev;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800436
Simon Glasse0c419b2017-06-14 21:28:34 -0600437 uc_priv->host_flags = ATA_FLAG_SATA
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500438 | ATA_FLAG_NO_LEGACY
439 | ATA_FLAG_MMIO
440 | ATA_FLAG_PIO_DMA
441 | ATA_FLAG_NO_ATAPI;
Simon Glasse0c419b2017-06-14 21:28:34 -0600442 uc_priv->pio_mask = 0x1f;
443 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800444
Michal Simekc886f352016-09-08 15:06:45 +0200445#if !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700446#ifdef CONFIG_DM_PCI
Simon Glasse0c419b2017-06-14 21:28:34 -0600447 uc_priv->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Simon Glass6f9135b2015-11-29 13:18:06 -0700448 PCI_REGION_MEM);
449
450 /* Take from kernel:
451 * JMicron-specific fixup:
452 * make sure we're in AHCI mode
453 */
454 dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor);
455 if (vendor == 0x197b)
456 dm_pci_write_config8(dev, 0x41, 0xa1);
457#else
Simon Glasse0c419b2017-06-14 21:28:34 -0600458 uc_priv->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Scott Wood16519a32015-04-17 09:19:01 -0500459 PCI_REGION_MEM);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800460
461 /* Take from kernel:
462 * JMicron-specific fixup:
463 * make sure we're in AHCI mode
464 */
Simon Glass6f9135b2015-11-29 13:18:06 -0700465 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500466 if (vendor == 0x197b)
Simon Glass6f9135b2015-11-29 13:18:06 -0700467 pci_write_config_byte(dev, 0x41, 0xa1);
468#endif
Michal Simekc886f352016-09-08 15:06:45 +0200469#else
Simon Glassb08fbff2017-06-14 21:28:31 -0600470 struct scsi_platdata *plat = dev_get_uclass_platdata(dev);
Simon Glasse0c419b2017-06-14 21:28:34 -0600471 uc_priv->mmio_base = (void *)plat->base;
Michal Simekc886f352016-09-08 15:06:45 +0200472#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800473
Simon Glasse0c419b2017-06-14 21:28:34 -0600474 debug("ahci mmio_base=0x%p\n", uc_priv->mmio_base);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800475 /* initialize adapter */
Simon Glasse0c419b2017-06-14 21:28:34 -0600476 rc = ahci_host_init(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800477 if (rc)
478 goto err_out;
479
Simon Glasse0c419b2017-06-14 21:28:34 -0600480 ahci_print_info(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800481
482 return 0;
483
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500484 err_out:
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800485 return rc;
486}
Rob Herringc2829ff2011-07-06 16:13:36 +0000487#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800488
489#define MAX_DATA_BYTE_COUNT (4*1024*1024)
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500490
Simon Glasse0c419b2017-06-14 21:28:34 -0600491static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
492 unsigned char *buf, int buf_len)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800493{
Simon Glasse0c419b2017-06-14 21:28:34 -0600494 struct ahci_ioports *pp = &(uc_priv->port[port]);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800495 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
496 u32 sg_count;
497 int i;
498
499 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500500 if (sg_count > AHCI_MAX_SG) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800501 printf("Error:Too much sg!\n");
502 return -1;
503 }
504
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500505 for (i = 0; i < sg_count; i++) {
506 ahci_sg->addr =
Tang Yuantian3f262d02015-07-09 14:37:30 +0800507 cpu_to_le32((unsigned long) buf + i * MAX_DATA_BYTE_COUNT);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800508 ahci_sg->addr_hi = 0;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500509 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
510 (buf_len < MAX_DATA_BYTE_COUNT
511 ? (buf_len - 1)
512 : (MAX_DATA_BYTE_COUNT - 1)));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800513 ahci_sg++;
514 buf_len -= MAX_DATA_BYTE_COUNT;
515 }
516
517 return sg_count;
518}
519
520
521static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
522{
523 pp->cmd_slot->opts = cpu_to_le32(opts);
524 pp->cmd_slot->status = 0;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800525 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
526#ifdef CONFIG_PHYS_64BIT
527 pp->cmd_slot->tbl_addr_hi =
528 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
529#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800530}
531
Tang Yuantian3f262d02015-07-09 14:37:30 +0800532static int wait_spinup(void __iomem *port_mmio)
Bin Mengb138e912014-12-31 17:18:39 +0800533{
534 ulong start;
535 u32 tf_data;
536
537 start = get_timer(0);
538 do {
539 tf_data = readl(port_mmio + PORT_TFDATA);
540 if (!(tf_data & ATA_BUSY))
541 return 0;
542 } while (get_timer(start) < WAIT_MS_SPINUP);
543
544 return -ETIMEDOUT;
545}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800546
Simon Glasse0c419b2017-06-14 21:28:34 -0600547static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800548{
Simon Glasse0c419b2017-06-14 21:28:34 -0600549 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800550 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800551 u32 port_status;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800552 void __iomem *mem;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800553
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500554 debug("Enter start port: %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800555 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500556 debug("Port %d status: %x\n", port, port_status);
557 if ((port_status & 0xf) != 0x03) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800558 printf("No Link on this port!\n");
559 return -1;
560 }
561
Christian Gmeiner66aca962019-05-06 15:18:54 +0200562 mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800563 if (!mem) {
564 free(pp);
Roger Quadros7b6cb612013-11-11 16:56:37 +0200565 printf("%s: No mem for table!\n", __func__);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800566 return -ENOMEM;
567 }
Tang Yuantian3f262d02015-07-09 14:37:30 +0800568 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800569
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800570 /*
571 * First item in chunk of DMA memory: 32-slot command table,
572 * 32 bytes each in size
573 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000574 pp->cmd_slot =
575 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800576 debug("cmd_slot = %p\n", pp->cmd_slot);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800577 mem += (AHCI_CMD_SLOT_SZ + 224);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500578
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800579 /*
580 * Second item: Received-FIS area
581 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000582 pp->rx_fis = virt_to_phys((void *)mem);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800583 mem += AHCI_RX_FIS_SZ;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500584
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800585 /*
586 * Third item: data area for storing a single command
587 * and its scatter-gather table
588 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000589 pp->cmd_tbl = virt_to_phys((void *)mem);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800590 debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800591
592 mem += AHCI_CMD_TBL_HDR;
Taylor Hutt3455f532012-10-29 05:23:58 +0000593 pp->cmd_tbl_sg =
594 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800595
Tang Yuantian3f262d02015-07-09 14:37:30 +0800596 writel_with_flush((unsigned long)pp->cmd_slot,
597 port_mmio + PORT_LST_ADDR);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800598
599 writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR);
600
Ian Campbella2ebf922014-07-18 20:38:41 +0100601#ifdef CONFIG_SUNXI_AHCI
602 sunxi_dma_init(port_mmio);
603#endif
604
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800605 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500606 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
607 PORT_CMD_START, port_mmio + PORT_CMD);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800608
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500609 debug("Exit start port %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800610
Bin Mengb138e912014-12-31 17:18:39 +0800611 /*
612 * Make sure interface is not busy based on error and status
613 * information from task file data register before proceeding
614 */
615 return wait_spinup(port_mmio);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800616}
617
618
Simon Glasse0c419b2017-06-14 21:28:34 -0600619static int ahci_device_data_io(struct ahci_uc_priv *uc_priv, u8 port, u8 *fis,
620 int fis_len, u8 *buf, int buf_len, u8 is_write)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800621{
622
Simon Glasse0c419b2017-06-14 21:28:34 -0600623 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800624 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800625 u32 opts;
626 u32 port_status;
627 int sg_count;
628
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000629 debug("Enter %s: for port %d\n", __func__, port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800630
Simon Glasse0c419b2017-06-14 21:28:34 -0600631 if (port > uc_priv->n_ports) {
Taylor Hutt1b1d42e2012-10-29 05:23:56 +0000632 printf("Invalid port number %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800633 return -1;
634 }
635
636 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500637 if ((port_status & 0xf) != 0x03) {
638 debug("No Link on port %d!\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800639 return -1;
640 }
641
642 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
643
Simon Glasse0c419b2017-06-14 21:28:34 -0600644 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000645 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800646 ahci_fill_cmd_slot(pp, opts);
647
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000648 ahci_dcache_flush_sata_cmd(pp);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800649 ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len);
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000650
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800651 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
652
Walter Murphyefd49b42012-10-29 05:24:00 +0000653 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
654 WAIT_MS_DATAIO, 0x1)) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800655 printf("timeout exit!\n");
656 return -1;
657 }
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000658
Tang Yuantian3f262d02015-07-09 14:37:30 +0800659 ahci_dcache_invalidate_range((unsigned long)buf,
660 (unsigned long)buf_len);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000661 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800662
663 return 0;
664}
665
666
667static char *ata_id_strcpy(u16 *target, u16 *src, int len)
668{
669 int i;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500670 for (i = 0; i < len / 2; i++)
Rob Herring336018392011-06-01 09:10:26 +0000671 target[i] = swab16(src[i]);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800672 return (char *)target;
673}
674
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800675/*
676 * SCSI INQUIRY command operation.
677 */
Simon Glasscb875242017-06-14 21:28:33 -0600678static int ata_scsiop_inquiry(struct ahci_uc_priv *uc_priv,
679 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800680{
Rob Herring9855a232013-08-24 10:10:48 -0500681 static const u8 hdr[] = {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800682 0,
683 0,
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500684 0x5, /* claim SPC-3 version compatibility */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800685 2,
686 95 - 4,
687 };
688 u8 fis[20];
Roger Quadrosda3976e2014-04-01 17:26:40 +0300689 u16 *idbuf;
Roger Quadrosff56ee12013-11-11 16:56:38 +0200690 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800691 u8 port;
692
693 /* Clean ccb data buffer */
694 memset(pccb->pdata, 0, pccb->datalen);
695
696 memcpy(pccb->pdata, hdr, sizeof(hdr));
697
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500698 if (pccb->datalen <= 35)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800699 return 0;
700
Taylor Hutt54d0f552012-10-29 05:23:55 +0000701 memset(fis, 0, sizeof(fis));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800702 /* Construct the FIS */
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500703 fis[0] = 0x27; /* Host to device FIS. */
704 fis[1] = 1 << 7; /* Command FIS. */
Rob Herring83f66482013-08-24 10:10:54 -0500705 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800706
707 /* Read id from sata */
708 port = pccb->target;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800709
Simon Glasse0c419b2017-06-14 21:28:34 -0600710 if (ahci_device_data_io(uc_priv, port, (u8 *)&fis, sizeof(fis),
711 (u8 *)tmpid, ATA_ID_WORDS * 2, 0)) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800712 debug("scsi_ahci: SCSI inquiry command failure.\n");
713 return -EIO;
714 }
715
Simon Glasscb875242017-06-14 21:28:33 -0600716 if (!uc_priv->ataid[port]) {
717 uc_priv->ataid[port] = malloc(ATA_ID_WORDS * 2);
718 if (!uc_priv->ataid[port]) {
Roger Quadrosda3976e2014-04-01 17:26:40 +0300719 printf("%s: No memory for ataid[port]\n", __func__);
720 return -ENOMEM;
721 }
722 }
723
Simon Glasscb875242017-06-14 21:28:33 -0600724 idbuf = uc_priv->ataid[port];
Roger Quadrosda3976e2014-04-01 17:26:40 +0300725
726 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
727 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800728
729 memcpy(&pccb->pdata[8], "ATA ", 8);
Roger Quadrosda3976e2014-04-01 17:26:40 +0300730 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
731 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800732
Rob Herring83f66482013-08-24 10:10:54 -0500733#ifdef DEBUG
Roger Quadrosda3976e2014-04-01 17:26:40 +0300734 ata_dump_id(idbuf);
Rob Herring83f66482013-08-24 10:10:54 -0500735#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800736 return 0;
737}
738
739
740/*
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000741 * SCSI READ10/WRITE10 command operation.
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800742 */
Simon Glasse0c419b2017-06-14 21:28:34 -0600743static int ata_scsiop_read_write(struct ahci_uc_priv *uc_priv,
744 struct scsi_cmd *pccb, u8 is_write)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800745{
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100746 lbaint_t lba = 0;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000747 u16 blocks = 0;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800748 u8 fis[20];
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000749 u8 *user_buffer = pccb->pdata;
750 u32 user_buffer_size = pccb->datalen;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800751
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000752 /* Retrieve the base LBA number from the ccb structure. */
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100753 if (pccb->cmd[0] == SCSI_READ16) {
754 memcpy(&lba, pccb->cmd + 2, 8);
755 lba = be64_to_cpu(lba);
756 } else {
757 u32 temp;
758 memcpy(&temp, pccb->cmd + 2, 4);
759 lba = be32_to_cpu(temp);
760 }
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800761
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000762 /*
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100763 * Retrieve the base LBA number and the block count from
764 * the ccb structure.
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000765 *
766 * For 10-byte and 16-byte SCSI R/W commands, transfer
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800767 * length 0 means transfer 0 block of data.
768 * However, for ATA R/W commands, sector count 0 means
769 * 256 or 65536 sectors, not 0 sectors as in SCSI.
770 *
771 * WARNING: one or two older ATA drives treat 0 as 0...
772 */
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100773 if (pccb->cmd[0] == SCSI_READ16)
774 blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]);
775 else
776 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000777
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100778 debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n",
779 is_write ? "write" : "read", blocks, lba);
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000780
781 /* Preset the FIS */
Taylor Hutt54d0f552012-10-29 05:23:55 +0000782 memset(fis, 0, sizeof(fis));
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000783 fis[0] = 0x27; /* Host to device FIS. */
784 fis[1] = 1 << 7; /* Command FIS. */
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000785 /* Command byte (read/write). */
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000786 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800787
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000788 while (blocks) {
789 u16 now_blocks; /* number of blocks per iteration */
790 u32 transfer_size; /* number of bytes per iteration */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800791
Masahiro Yamadadb204642014-11-07 03:03:31 +0900792 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800793
Rob Herring83f66482013-08-24 10:10:54 -0500794 transfer_size = ATA_SECT_SIZE * now_blocks;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000795 if (transfer_size > user_buffer_size) {
796 printf("scsi_ahci: Error: buffer too small.\n");
797 return -EIO;
798 }
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800799
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100800 /*
801 * LBA48 SATA command but only use 32bit address range within
802 * that (unless we've enabled 64bit LBA support). The next
803 * smaller command range (28bit) is too small.
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000804 */
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000805 fis[4] = (lba >> 0) & 0xff;
806 fis[5] = (lba >> 8) & 0xff;
807 fis[6] = (lba >> 16) & 0xff;
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000808 fis[7] = 1 << 6; /* device reg: set LBA mode */
809 fis[8] = ((lba >> 24) & 0xff);
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100810#ifdef CONFIG_SYS_64BIT_LBA
811 if (pccb->cmd[0] == SCSI_READ16) {
812 fis[9] = ((lba >> 32) & 0xff);
813 fis[10] = ((lba >> 40) & 0xff);
814 }
815#endif
816
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000817 fis[3] = 0xe0; /* features */
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000818
819 /* Block (sector) count */
820 fis[12] = (now_blocks >> 0) & 0xff;
821 fis[13] = (now_blocks >> 8) & 0xff;
822
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000823 /* Read/Write from ahci */
Simon Glasse0c419b2017-06-14 21:28:34 -0600824 if (ahci_device_data_io(uc_priv, pccb->target, (u8 *)&fis,
825 sizeof(fis), user_buffer, transfer_size,
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000826 is_write)) {
827 debug("scsi_ahci: SCSI %s10 command failure.\n",
828 is_write ? "WRITE" : "READ");
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000829 return -EIO;
830 }
Marc Jones49ec4b12012-10-29 05:24:02 +0000831
832 /* If this transaction is a write, do a following flush.
833 * Writes in u-boot are so rare, and the logic to know when is
834 * the last write and do a flush only there is sufficiently
835 * difficult. Just do a flush after every write. This incurs,
836 * usually, one extra flush when the rare writes do happen.
837 */
838 if (is_write) {
Simon Glasse0c419b2017-06-14 21:28:34 -0600839 if (-EIO == ata_io_flush(uc_priv, pccb->target))
Marc Jones49ec4b12012-10-29 05:24:02 +0000840 return -EIO;
841 }
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000842 user_buffer += transfer_size;
843 user_buffer_size -= transfer_size;
844 blocks -= now_blocks;
845 lba += now_blocks;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800846 }
847
848 return 0;
849}
850
851
852/*
853 * SCSI READ CAPACITY10 command operation.
854 */
Simon Glasscb875242017-06-14 21:28:33 -0600855static int ata_scsiop_read_capacity10(struct ahci_uc_priv *uc_priv,
856 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800857{
Kumar Gala8a190652009-07-13 09:24:00 -0500858 u32 cap;
Rob Herring83f66482013-08-24 10:10:54 -0500859 u64 cap64;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000860 u32 block_size;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800861
Simon Glasscb875242017-06-14 21:28:33 -0600862 if (!uc_priv->ataid[pccb->target]) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800863 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500864 "\tNo ATA info!\n"
Vagrant Cascadianbeb288b2015-11-24 14:46:24 -0800865 "\tPlease run SCSI command INQUIRY first!\n");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800866 return -EPERM;
867 }
868
Simon Glasscb875242017-06-14 21:28:33 -0600869 cap64 = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Rob Herring83f66482013-08-24 10:10:54 -0500870 if (cap64 > 0x100000000ULL)
871 cap64 = 0xffffffff;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000872
Rob Herring83f66482013-08-24 10:10:54 -0500873 cap = cpu_to_be32(cap64);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000874 memcpy(pccb->pdata, &cap, sizeof(cap));
875
876 block_size = cpu_to_be32((u32)512);
877 memcpy(&pccb->pdata[4], &block_size, 4);
878
879 return 0;
880}
881
882
883/*
884 * SCSI READ CAPACITY16 command operation.
885 */
Simon Glasscb875242017-06-14 21:28:33 -0600886static int ata_scsiop_read_capacity16(struct ahci_uc_priv *uc_priv,
887 struct scsi_cmd *pccb)
Gabe Blackdd2c7342012-10-29 05:23:54 +0000888{
889 u64 cap;
890 u64 block_size;
891
Simon Glasscb875242017-06-14 21:28:33 -0600892 if (!uc_priv->ataid[pccb->target]) {
Gabe Blackdd2c7342012-10-29 05:23:54 +0000893 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
894 "\tNo ATA info!\n"
Vagrant Cascadianbeb288b2015-11-24 14:46:24 -0800895 "\tPlease run SCSI command INQUIRY first!\n");
Gabe Blackdd2c7342012-10-29 05:23:54 +0000896 return -EPERM;
897 }
898
Simon Glasscb875242017-06-14 21:28:33 -0600899 cap = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000900 cap = cpu_to_be64(cap);
Kumar Gala8a190652009-07-13 09:24:00 -0500901 memcpy(pccb->pdata, &cap, sizeof(cap));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800902
Gabe Blackdd2c7342012-10-29 05:23:54 +0000903 block_size = cpu_to_be64((u64)512);
904 memcpy(&pccb->pdata[8], &block_size, 8);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800905
906 return 0;
907}
908
909
910/*
911 * SCSI TEST UNIT READY command operation.
912 */
Simon Glasscb875242017-06-14 21:28:33 -0600913static int ata_scsiop_test_unit_ready(struct ahci_uc_priv *uc_priv,
914 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800915{
Simon Glasscb875242017-06-14 21:28:33 -0600916 return (uc_priv->ataid[pccb->target]) ? 0 : -EPERM;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800917}
918
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500919
Simon Glass23123c62017-06-14 21:28:42 -0600920static int ahci_scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800921{
Simon Glass11b2b622017-06-14 21:28:40 -0600922 struct ahci_uc_priv *uc_priv;
923#ifdef CONFIG_DM_SCSI
Simon Glass8c679342017-07-04 13:31:22 -0600924 uc_priv = dev_get_uclass_priv(dev->parent);
Simon Glass11b2b622017-06-14 21:28:40 -0600925#else
926 uc_priv = probe_ent;
927#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800928 int ret;
929
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500930 switch (pccb->cmd[0]) {
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100931 case SCSI_READ16:
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800932 case SCSI_READ10:
Simon Glasse0c419b2017-06-14 21:28:34 -0600933 ret = ata_scsiop_read_write(uc_priv, pccb, 0);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000934 break;
935 case SCSI_WRITE10:
Simon Glasse0c419b2017-06-14 21:28:34 -0600936 ret = ata_scsiop_read_write(uc_priv, pccb, 1);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800937 break;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000938 case SCSI_RD_CAPAC10:
Simon Glasscb875242017-06-14 21:28:33 -0600939 ret = ata_scsiop_read_capacity10(uc_priv, pccb);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800940 break;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000941 case SCSI_RD_CAPAC16:
Simon Glasscb875242017-06-14 21:28:33 -0600942 ret = ata_scsiop_read_capacity16(uc_priv, pccb);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000943 break;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800944 case SCSI_TST_U_RDY:
Simon Glasscb875242017-06-14 21:28:33 -0600945 ret = ata_scsiop_test_unit_ready(uc_priv, pccb);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800946 break;
947 case SCSI_INQUIRY:
Simon Glasscb875242017-06-14 21:28:33 -0600948 ret = ata_scsiop_inquiry(uc_priv, pccb);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800949 break;
950 default:
951 printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
Simon Glassa140e862017-06-14 21:28:44 -0600952 return -ENOTSUPP;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800953 }
954
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500955 if (ret) {
956 debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
Simon Glassa140e862017-06-14 21:28:44 -0600957 return ret;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800958 }
Simon Glassa140e862017-06-14 21:28:44 -0600959 return 0;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800960
961}
962
Simon Glass0a47bbb2017-06-14 21:28:36 -0600963static int ahci_start_ports(struct ahci_uc_priv *uc_priv)
964{
965 u32 linkmap;
966 int i;
967
968 linkmap = uc_priv->link_port_map;
969
Tuomas Tynkkynen69a38992018-09-13 01:28:54 +0300970 for (i = 0; i < uc_priv->n_ports; i++) {
Simon Glass0a47bbb2017-06-14 21:28:36 -0600971 if (((linkmap >> i) & 0x01)) {
972 if (ahci_port_start(uc_priv, (u8) i)) {
973 printf("Can not start port %d\n", i);
974 continue;
975 }
976 }
977 }
978
979 return 0;
980}
981
Simon Glass84fac542017-06-14 21:28:37 -0600982#ifndef CONFIG_DM_SCSI
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800983void scsi_low_level_init(int busdevfunc)
984{
Simon Glasse0c419b2017-06-14 21:28:34 -0600985 struct ahci_uc_priv *uc_priv;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800986
Rob Herringc2829ff2011-07-06 16:13:36 +0000987#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glasscf01b5b2017-06-14 21:28:38 -0600988 probe_ent = calloc(1, sizeof(struct ahci_uc_priv));
989 if (!probe_ent) {
990 printf("%s: No memory for uc_priv\n", __func__);
991 return;
992 }
993 uc_priv = probe_ent;
Michal Simekc886f352016-09-08 15:06:45 +0200994# if defined(CONFIG_DM_PCI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700995 struct udevice *dev;
996 int ret;
997
998 ret = dm_pci_bus_find_bdf(busdevfunc, &dev);
999 if (ret)
1000 return;
Simon Glasscf01b5b2017-06-14 21:28:38 -06001001 ahci_init_one(uc_priv, dev);
Simon Glass6f9135b2015-11-29 13:18:06 -07001002# else
Simon Glasscf01b5b2017-06-14 21:28:38 -06001003 ahci_init_one(uc_priv, busdevfunc);
Simon Glass6f9135b2015-11-29 13:18:06 -07001004# endif
Simon Glasscf01b5b2017-06-14 21:28:38 -06001005#else
Simon Glasse0c419b2017-06-14 21:28:34 -06001006 uc_priv = probe_ent;
Simon Glasscf01b5b2017-06-14 21:28:38 -06001007#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001008
Simon Glass0a47bbb2017-06-14 21:28:36 -06001009 ahci_start_ports(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001010}
Simon Glass84fac542017-06-14 21:28:37 -06001011#endif
1012
1013#ifndef CONFIG_SCSI_AHCI_PLAT
1014# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Michal Simek2d72d3c2017-11-02 15:53:56 +01001015int ahci_init_one_dm(struct udevice *dev)
Simon Glass84fac542017-06-14 21:28:37 -06001016{
Simon Glasscf01b5b2017-06-14 21:28:38 -06001017 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1018
1019 return ahci_init_one(uc_priv, dev);
Simon Glass84fac542017-06-14 21:28:37 -06001020}
1021#endif
1022#endif
1023
Michal Simek2d72d3c2017-11-02 15:53:56 +01001024int ahci_start_ports_dm(struct udevice *dev)
Simon Glass84fac542017-06-14 21:28:37 -06001025{
Simon Glasscf01b5b2017-06-14 21:28:38 -06001026 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass84fac542017-06-14 21:28:37 -06001027
1028 return ahci_start_ports(uc_priv);
1029}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001030
Rob Herringc2829ff2011-07-06 16:13:36 +00001031#ifdef CONFIG_SCSI_AHCI_PLAT
Simon Glasscf01b5b2017-06-14 21:28:38 -06001032static int ahci_init_common(struct ahci_uc_priv *uc_priv, void __iomem *base)
Rob Herringc2829ff2011-07-06 16:13:36 +00001033{
Simon Glasscf01b5b2017-06-14 21:28:38 -06001034 int rc;
Rob Herringc2829ff2011-07-06 16:13:36 +00001035
Simon Glasse0c419b2017-06-14 21:28:34 -06001036 uc_priv->host_flags = ATA_FLAG_SATA
Rob Herringc2829ff2011-07-06 16:13:36 +00001037 | ATA_FLAG_NO_LEGACY
1038 | ATA_FLAG_MMIO
1039 | ATA_FLAG_PIO_DMA
1040 | ATA_FLAG_NO_ATAPI;
Simon Glasse0c419b2017-06-14 21:28:34 -06001041 uc_priv->pio_mask = 0x1f;
1042 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Rob Herringc2829ff2011-07-06 16:13:36 +00001043
Simon Glasse0c419b2017-06-14 21:28:34 -06001044 uc_priv->mmio_base = base;
Rob Herringc2829ff2011-07-06 16:13:36 +00001045
1046 /* initialize adapter */
Simon Glasse0c419b2017-06-14 21:28:34 -06001047 rc = ahci_host_init(uc_priv);
Rob Herringc2829ff2011-07-06 16:13:36 +00001048 if (rc)
1049 goto err_out;
1050
Simon Glasse0c419b2017-06-14 21:28:34 -06001051 ahci_print_info(uc_priv);
Rob Herringc2829ff2011-07-06 16:13:36 +00001052
Simon Glass0a47bbb2017-06-14 21:28:36 -06001053 rc = ahci_start_ports(uc_priv);
Rob Herringc2829ff2011-07-06 16:13:36 +00001054
Rob Herringc2829ff2011-07-06 16:13:36 +00001055err_out:
1056 return rc;
1057}
Simon Glasscf01b5b2017-06-14 21:28:38 -06001058
1059#ifndef CONFIG_DM_SCSI
1060int ahci_init(void __iomem *base)
1061{
1062 struct ahci_uc_priv *uc_priv;
1063
1064 probe_ent = malloc(sizeof(struct ahci_uc_priv));
1065 if (!probe_ent) {
1066 printf("%s: No memory for uc_priv\n", __func__);
1067 return -ENOMEM;
1068 }
1069
1070 uc_priv = probe_ent;
1071 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
1072
1073 return ahci_init_common(uc_priv, base);
1074}
1075#endif
1076
1077int ahci_init_dm(struct udevice *dev, void __iomem *base)
1078{
1079 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1080
1081 return ahci_init_common(uc_priv, base);
1082}
Ian Campbell19349962014-03-07 01:20:56 +00001083
1084void __weak scsi_init(void)
1085{
1086}
1087
Simon Glasscf01b5b2017-06-14 21:28:38 -06001088#endif /* CONFIG_SCSI_AHCI_PLAT */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001089
Marc Jones49ec4b12012-10-29 05:24:02 +00001090/*
1091 * In the general case of generic rotating media it makes sense to have a
1092 * flush capability. It probably even makes sense in the case of SSDs because
1093 * one cannot always know for sure what kind of internal cache/flush mechanism
1094 * is embodied therein. At first it was planned to invoke this after the last
1095 * write to disk and before rebooting. In practice, knowing, a priori, which
1096 * is the last write is difficult. Because writing to the disk in u-boot is
1097 * very rare, this flush command will be invoked after every block write.
1098 */
Simon Glasse0c419b2017-06-14 21:28:34 -06001099static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port)
Marc Jones49ec4b12012-10-29 05:24:02 +00001100{
1101 u8 fis[20];
Simon Glasse0c419b2017-06-14 21:28:34 -06001102 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +08001103 void __iomem *port_mmio = pp->port_mmio;
Marc Jones49ec4b12012-10-29 05:24:02 +00001104 u32 cmd_fis_len = 5; /* five dwords */
1105
1106 /* Preset the FIS */
1107 memset(fis, 0, 20);
1108 fis[0] = 0x27; /* Host to device FIS. */
1109 fis[1] = 1 << 7; /* Command FIS. */
Walter Murphyd1cb64b2012-10-29 05:24:03 +00001110 fis[2] = ATA_CMD_FLUSH_EXT;
Marc Jones49ec4b12012-10-29 05:24:02 +00001111
1112 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1113 ahci_fill_cmd_slot(pp, cmd_fis_len);
Tang Yuantian93b99e02016-04-14 16:21:00 +08001114 ahci_dcache_flush_sata_cmd(pp);
Marc Jones49ec4b12012-10-29 05:24:02 +00001115 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1116
1117 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1118 WAIT_MS_FLUSH, 0x1)) {
1119 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1120 return -EIO;
1121 }
1122
1123 return 0;
1124}
1125
Simon Glass23123c62017-06-14 21:28:42 -06001126static int ahci_scsi_bus_reset(struct udevice *dev)
1127{
1128 /* Not implemented */
1129
1130 return 0;
1131}
1132
Simon Glassc4dfa892017-06-14 21:28:43 -06001133#ifdef CONFIG_DM_SCSI
Simon Glassc6b44302017-06-14 21:28:46 -06001134int ahci_bind_scsi(struct udevice *ahci_dev, struct udevice **devp)
1135{
1136 struct udevice *dev;
1137 int ret;
1138
1139 ret = device_bind_driver(ahci_dev, "ahci_scsi", "ahci_scsi", &dev);
1140 if (ret)
1141 return ret;
1142 *devp = dev;
1143
1144 return 0;
1145}
1146
Simon Glass89e7d972017-07-04 13:31:18 -06001147int ahci_probe_scsi(struct udevice *ahci_dev, ulong base)
Simon Glassc6b44302017-06-14 21:28:46 -06001148{
Simon Glassc6b44302017-06-14 21:28:46 -06001149 struct ahci_uc_priv *uc_priv;
1150 struct scsi_platdata *uc_plat;
1151 struct udevice *dev;
1152 int ret;
1153
1154 device_find_first_child(ahci_dev, &dev);
1155 if (!dev)
1156 return -ENODEV;
1157 uc_plat = dev_get_uclass_platdata(dev);
Simon Glass89e7d972017-07-04 13:31:18 -06001158 uc_plat->base = base;
Simon Glassc6b44302017-06-14 21:28:46 -06001159 uc_plat->max_lun = 1;
1160 uc_plat->max_id = 2;
Simon Glass89e7d972017-07-04 13:31:18 -06001161
1162 uc_priv = dev_get_uclass_priv(ahci_dev);
Simon Glassc6b44302017-06-14 21:28:46 -06001163 ret = ahci_init_one(uc_priv, dev);
1164 if (ret)
1165 return ret;
1166 ret = ahci_start_ports(uc_priv);
1167 if (ret)
1168 return ret;
Simon Glassc6b44302017-06-14 21:28:46 -06001169
1170 return 0;
1171}
1172
Simon Glass89e7d972017-07-04 13:31:18 -06001173#ifdef CONFIG_DM_PCI
1174int ahci_probe_scsi_pci(struct udevice *ahci_dev)
1175{
1176 ulong base;
1177
1178 base = (ulong)dm_pci_map_bar(ahci_dev, PCI_BASE_ADDRESS_5,
1179 PCI_REGION_MEM);
1180
1181 return ahci_probe_scsi(ahci_dev, base);
1182}
1183#endif
1184
Simon Glassc4dfa892017-06-14 21:28:43 -06001185struct scsi_ops scsi_ops = {
1186 .exec = ahci_scsi_exec,
1187 .bus_reset = ahci_scsi_bus_reset,
1188};
Simon Glassc6b44302017-06-14 21:28:46 -06001189
1190U_BOOT_DRIVER(ahci_scsi) = {
1191 .name = "ahci_scsi",
1192 .id = UCLASS_SCSI,
1193 .ops = &scsi_ops,
1194};
Simon Glassc4dfa892017-06-14 21:28:43 -06001195#else
Simon Glass23123c62017-06-14 21:28:42 -06001196int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
1197{
1198 return ahci_scsi_exec(dev, pccb);
1199}
Marc Jones49ec4b12012-10-29 05:24:02 +00001200
Simon Glass11b2b622017-06-14 21:28:40 -06001201__weak int scsi_bus_reset(struct udevice *dev)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001202{
Simon Glass23123c62017-06-14 21:28:42 -06001203 return ahci_scsi_bus_reset(dev);
Simon Glass11b2b622017-06-14 21:28:40 -06001204
1205 return 0;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001206}
Simon Glassc4dfa892017-06-14 21:28:43 -06001207#endif