blob: 5a20b97c4b8469f23942e2acd8cec994823df567 [file] [log] [blame]
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001/*
Kumar Gala6a6d9482009-07-28 21:49:52 -05002 * Copyright (C) Freescale Semiconductor, Inc. 2006.
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08003 * Author: Jason Jin<Jason.jin@freescale.com>
4 * Zhang Wei<wei.zhang@freescale.com>
5 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08007 *
8 * with the reference on libata and ahci drvier in kernel
Simon Glass84fac542017-06-14 21:28:37 -06009 *
10 * This driver provides a SCSI interface to SATA.
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080011 */
12#include <common.h>
13
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080014#include <command.h>
Simon Glass6f9135b2015-11-29 13:18:06 -070015#include <dm.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080016#include <pci.h>
17#include <asm/processor.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090018#include <linux/errno.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080019#include <asm/io.h>
20#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060021#include <memalign.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>
26
Simon Glasse0c419b2017-06-14 21:28:34 -060027static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port);
Marc Jones49ec4b12012-10-29 05:24:02 +000028
Simon Glass11b2b622017-06-14 21:28:40 -060029#ifndef CONFIG_DM_SCSI
Simon Glass5ce59672017-06-14 21:28:32 -060030struct ahci_uc_priv *probe_ent = NULL;
Simon Glass11b2b622017-06-14 21:28:40 -060031#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080032
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050033#define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
34
Vadim Bendebury700f85c2012-10-29 05:23:44 +000035/*
Hung-Te Lin0f10bd42012-10-29 05:23:53 +000036 * Some controllers limit number of blocks they can read/write at once.
37 * Contemporary SSD devices work much faster if the read/write size is aligned
38 * to a power of 2. Let's set default to 128 and allowing to be overwritten if
39 * needed.
Vadim Bendebury700f85c2012-10-29 05:23:44 +000040 */
Hung-Te Lin0f10bd42012-10-29 05:23:53 +000041#ifndef MAX_SATA_BLOCKS_READ_WRITE
42#define MAX_SATA_BLOCKS_READ_WRITE 0x80
Vadim Bendebury700f85c2012-10-29 05:23:44 +000043#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080044
Walter Murphyefd49b42012-10-29 05:24:00 +000045/* Maximum timeouts for each event */
Rob Herring249b9372013-08-24 10:10:53 -050046#define WAIT_MS_SPINUP 20000
Mark Langsdorf2cc6e1b2015-06-05 00:58:46 +010047#define WAIT_MS_DATAIO 10000
Marc Jones49ec4b12012-10-29 05:24:02 +000048#define WAIT_MS_FLUSH 5000
Ian Campbell368989b2014-07-18 20:38:39 +010049#define WAIT_MS_LINKUP 200
Walter Murphyefd49b42012-10-29 05:24:00 +000050
Stefan Roesed99a30e2016-08-31 10:02:15 +020051__weak void __iomem *ahci_port_base(void __iomem *base, u32 port)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080052{
53 return base + 0x100 + (port * 0x80);
54}
55
56
Tang Yuantian3f262d02015-07-09 14:37:30 +080057static void ahci_setup_port(struct ahci_ioports *port, void __iomem *base,
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080058 unsigned int port_idx)
59{
60 base = ahci_port_base(base, port_idx);
61
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050062 port->cmd_addr = base;
63 port->scr_addr = base + PORT_SCR;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080064}
65
66
67#define msleep(a) udelay(a * 1000)
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050068
Tang Yuantian3f262d02015-07-09 14:37:30 +080069static void ahci_dcache_flush_range(unsigned long begin, unsigned long len)
Taylor Hutt33e4c2f2012-10-29 05:23:59 +000070{
71 const unsigned long start = begin;
72 const unsigned long end = start + len;
73
74 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
75 flush_dcache_range(start, end);
76}
77
78/*
79 * SATA controller DMAs to physical RAM. Ensure data from the
80 * controller is invalidated from dcache; next access comes from
81 * physical RAM.
82 */
Tang Yuantian3f262d02015-07-09 14:37:30 +080083static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len)
Taylor Hutt33e4c2f2012-10-29 05:23:59 +000084{
85 const unsigned long start = begin;
86 const unsigned long end = start + len;
87
88 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
89 invalidate_dcache_range(start, end);
90}
91
92/*
93 * Ensure data for SATA controller is flushed out of dcache and
94 * written to physical memory.
95 */
96static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
97{
98 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
99 AHCI_PORT_PRIV_DMA_SZ);
100}
101
Tang Yuantian3f262d02015-07-09 14:37:30 +0800102static int waiting_for_cmd_completed(void __iomem *offset,
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500103 int timeout_msec,
104 u32 sign)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800105{
106 int i;
107 u32 status;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500108
109 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800110 msleep(1);
111
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500112 return (i < timeout_msec) ? 0 : -1;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800113}
114
Simon Glasscb875242017-06-14 21:28:33 -0600115int __weak ahci_link_up(struct ahci_uc_priv *uc_priv, u8 port)
Rob Herringaaec0982013-08-24 10:10:51 -0500116{
117 u32 tmp;
118 int j = 0;
Simon Glasscb875242017-06-14 21:28:33 -0600119 void __iomem *port_mmio = uc_priv->port[port].port_mmio;
Rob Herringaaec0982013-08-24 10:10:51 -0500120
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +0200121 /*
Rob Herringaaec0982013-08-24 10:10:51 -0500122 * Bring up SATA link.
123 * SATA link bringup time is usually less than 1 ms; only very
124 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
125 */
126 while (j < WAIT_MS_LINKUP) {
127 tmp = readl(port_mmio + PORT_SCR_STAT);
128 tmp &= PORT_SCR_STAT_DET_MASK;
129 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
130 return 0;
131 udelay(1000);
132 j++;
133 }
134 return 1;
135}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800136
Ian Campbella2ebf922014-07-18 20:38:41 +0100137#ifdef CONFIG_SUNXI_AHCI
138/* The sunxi AHCI controller requires this undocumented setup */
Tang Yuantian3f262d02015-07-09 14:37:30 +0800139static void sunxi_dma_init(void __iomem *port_mmio)
Ian Campbella2ebf922014-07-18 20:38:41 +0100140{
141 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
142}
143#endif
144
Scott Wood16519a32015-04-17 09:19:01 -0500145int ahci_reset(void __iomem *base)
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200146{
147 int i = 1000;
Scott Wood16519a32015-04-17 09:19:01 -0500148 u32 __iomem *host_ctl_reg = base + HOST_CTL;
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200149 u32 tmp = readl(host_ctl_reg); /* global controller reset */
150
151 if ((tmp & HOST_RESET) == 0)
152 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
153
154 /*
155 * reset must complete within 1 second, or
156 * the hardware should be considered fried.
157 */
158 do {
159 udelay(1000);
160 tmp = readl(host_ctl_reg);
161 i--;
162 } while ((i > 0) && (tmp & HOST_RESET));
163
164 if (i == 0) {
165 printf("controller reset failed (0x%x)\n", tmp);
166 return -1;
167 }
168
169 return 0;
170}
171
Simon Glasse0c419b2017-06-14 21:28:34 -0600172static int ahci_host_init(struct ahci_uc_priv *uc_priv)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800173{
Michal Simekc886f352016-09-08 15:06:45 +0200174#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700175# ifdef CONFIG_DM_PCI
Simon Glasse0c419b2017-06-14 21:28:34 -0600176 struct udevice *dev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700177 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
178# else
Simon Glasse0c419b2017-06-14 21:28:34 -0600179 pci_dev_t pdev = uc_priv->dev;
Rob Herringc2829ff2011-07-06 16:13:36 +0000180 unsigned short vendor;
Simon Glass6f9135b2015-11-29 13:18:06 -0700181# endif
182 u16 tmp16;
Rob Herringc2829ff2011-07-06 16:13:36 +0000183#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600184 void __iomem *mmio = uc_priv->mmio_base;
Marc Jonesbbb57842012-10-29 05:24:01 +0000185 u32 tmp, cap_save, cmd;
Rob Herringaaec0982013-08-24 10:10:51 -0500186 int i, j, ret;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800187 void __iomem *port_mmio;
Richard Gibbs8bc0ab72013-08-24 10:10:47 -0500188 u32 port_map;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800189
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000190 debug("ahci_host_init: start\n");
191
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800192 cap_save = readl(mmio + HOST_CAP);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500193 cap_save &= ((1 << 28) | (1 << 17));
Marc Jonesbbb57842012-10-29 05:24:01 +0000194 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800195
Simon Glasse0c419b2017-06-14 21:28:34 -0600196 ret = ahci_reset(uc_priv->mmio_base);
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200197 if (ret)
198 return ret;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800199
200 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
201 writel(cap_save, mmio + HOST_CAP);
202 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
203
Michal Simekc886f352016-09-08 15:06:45 +0200204#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700205# ifdef CONFIG_DM_PCI
206 if (pplat->vendor == PCI_VENDOR_ID_INTEL) {
207 u16 tmp16;
208
209 dm_pci_read_config16(dev, 0x92, &tmp16);
210 dm_pci_write_config16(dev, 0x92, tmp16 | 0xf);
211 }
212# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800213 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
214
215 if (vendor == PCI_VENDOR_ID_INTEL) {
216 u16 tmp16;
217 pci_read_config_word(pdev, 0x92, &tmp16);
218 tmp16 |= 0xf;
219 pci_write_config_word(pdev, 0x92, tmp16);
220 }
Simon Glass6f9135b2015-11-29 13:18:06 -0700221# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000222#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600223 uc_priv->cap = readl(mmio + HOST_CAP);
224 uc_priv->port_map = readl(mmio + HOST_PORTS_IMPL);
225 port_map = uc_priv->port_map;
226 uc_priv->n_ports = (uc_priv->cap & 0x1f) + 1;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800227
228 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Simon Glasse0c419b2017-06-14 21:28:34 -0600229 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800230
Simon Glasse0c419b2017-06-14 21:28:34 -0600231 if (uc_priv->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
232 uc_priv->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000233
Simon Glasse0c419b2017-06-14 21:28:34 -0600234 for (i = 0; i < uc_priv->n_ports; i++) {
Richard Gibbs8bc0ab72013-08-24 10:10:47 -0500235 if (!(port_map & (1 << i)))
236 continue;
Simon Glasse0c419b2017-06-14 21:28:34 -0600237 uc_priv->port[i].port_mmio = ahci_port_base(mmio, i);
238 port_mmio = (u8 *)uc_priv->port[i].port_mmio;
239 ahci_setup_port(&uc_priv->port[i], mmio, i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800240
241 /* make sure port is not active */
242 tmp = readl(port_mmio + PORT_CMD);
243 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
244 PORT_CMD_FIS_RX | PORT_CMD_START)) {
Stefan Reinauer7ee0e4372012-10-29 05:23:50 +0000245 debug("Port %d is active. Deactivating.\n", i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800246 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
247 PORT_CMD_FIS_RX | PORT_CMD_START);
248 writel_with_flush(tmp, port_mmio + PORT_CMD);
249
250 /* spec says 500 msecs for each bit, so
251 * this is slightly incorrect.
252 */
253 msleep(500);
254 }
255
Ian Campbella2ebf922014-07-18 20:38:41 +0100256#ifdef CONFIG_SUNXI_AHCI
257 sunxi_dma_init(port_mmio);
258#endif
259
Marc Jonesbbb57842012-10-29 05:24:01 +0000260 /* Add the spinup command to whatever mode bits may
261 * already be on in the command register.
262 */
263 cmd = readl(port_mmio + PORT_CMD);
Marc Jonesbbb57842012-10-29 05:24:01 +0000264 cmd |= PORT_CMD_SPIN_UP;
265 writel_with_flush(cmd, port_mmio + PORT_CMD);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800266
Rob Herringaaec0982013-08-24 10:10:51 -0500267 /* Bring up SATA link. */
Simon Glasse0c419b2017-06-14 21:28:34 -0600268 ret = ahci_link_up(uc_priv, i);
Rob Herringaaec0982013-08-24 10:10:51 -0500269 if (ret) {
Marc Jonesbbb57842012-10-29 05:24:01 +0000270 printf("SATA link %d timeout.\n", i);
271 continue;
272 } else {
273 debug("SATA link ok.\n");
274 }
275
276 /* Clear error status */
277 tmp = readl(port_mmio + PORT_SCR_ERR);
278 if (tmp)
279 writel(tmp, port_mmio + PORT_SCR_ERR);
280
281 debug("Spinning up device on SATA port %d... ", i);
282
283 j = 0;
284 while (j < WAIT_MS_SPINUP) {
285 tmp = readl(port_mmio + PORT_TFDATA);
Rob Herring83f66482013-08-24 10:10:54 -0500286 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
Marc Jonesbbb57842012-10-29 05:24:01 +0000287 break;
288 udelay(1000);
Rob Herringc4698542013-08-24 10:10:52 -0500289 tmp = readl(port_mmio + PORT_SCR_STAT);
290 tmp &= PORT_SCR_STAT_DET_MASK;
291 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
292 break;
Marc Jonesbbb57842012-10-29 05:24:01 +0000293 j++;
294 }
Rob Herringc4698542013-08-24 10:10:52 -0500295
296 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
297 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
298 debug("SATA link %d down (COMINIT received), retrying...\n", i);
299 i--;
300 continue;
301 }
302
Marc Jonesbbb57842012-10-29 05:24:01 +0000303 printf("Target spinup took %d ms.\n", j);
304 if (j == WAIT_MS_SPINUP)
Stefan Reinauera63341c2012-10-29 05:23:49 +0000305 debug("timeout.\n");
306 else
307 debug("ok.\n");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800308
309 tmp = readl(port_mmio + PORT_SCR_ERR);
310 debug("PORT_SCR_ERR 0x%x\n", tmp);
311 writel(tmp, port_mmio + PORT_SCR_ERR);
312
313 /* ack any pending irq events for this port */
314 tmp = readl(port_mmio + PORT_IRQ_STAT);
315 debug("PORT_IRQ_STAT 0x%x\n", tmp);
316 if (tmp)
317 writel(tmp, port_mmio + PORT_IRQ_STAT);
318
319 writel(1 << i, mmio + HOST_IRQ_STAT);
320
Stefan Reinauer48791f12012-10-29 05:23:51 +0000321 /* register linkup ports */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800322 tmp = readl(port_mmio + PORT_SCR_STAT);
Marc Jones49ec4b12012-10-29 05:24:02 +0000323 debug("SATA port %d status: 0x%x\n", i, tmp);
Rob Herring723a2812013-08-24 10:10:50 -0500324 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
Simon Glasse0c419b2017-06-14 21:28:34 -0600325 uc_priv->link_port_map |= (0x01 << i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800326 }
327
328 tmp = readl(mmio + HOST_CTL);
329 debug("HOST_CTL 0x%x\n", tmp);
330 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
331 tmp = readl(mmio + HOST_CTL);
332 debug("HOST_CTL 0x%x\n", tmp);
Michal Simekc886f352016-09-08 15:06:45 +0200333#if !defined(CONFIG_DM_SCSI)
Rob Herringc2829ff2011-07-06 16:13:36 +0000334#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glass6f9135b2015-11-29 13:18:06 -0700335# ifdef CONFIG_DM_PCI
336 dm_pci_read_config16(dev, PCI_COMMAND, &tmp16);
337 tmp |= PCI_COMMAND_MASTER;
338 dm_pci_write_config16(dev, PCI_COMMAND, tmp16);
339# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800340 pci_read_config_word(pdev, PCI_COMMAND, &tmp16);
341 tmp |= PCI_COMMAND_MASTER;
342 pci_write_config_word(pdev, PCI_COMMAND, tmp16);
Simon Glass6f9135b2015-11-29 13:18:06 -0700343# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000344#endif
Michal Simekc886f352016-09-08 15:06:45 +0200345#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800346 return 0;
347}
348
349
Simon Glasse0c419b2017-06-14 21:28:34 -0600350static void ahci_print_info(struct ahci_uc_priv *uc_priv)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800351{
Michal Simekc886f352016-09-08 15:06:45 +0200352#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
353# if defined(CONFIG_DM_PCI)
Simon Glasse0c419b2017-06-14 21:28:34 -0600354 struct udevice *dev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700355# else
Simon Glasse0c419b2017-06-14 21:28:34 -0600356 pci_dev_t pdev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700357# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000358 u16 cc;
359#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600360 void __iomem *mmio = uc_priv->mmio_base;
Stefan Reinauer48791f12012-10-29 05:23:51 +0000361 u32 vers, cap, cap2, impl, speed;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800362 const char *speed_s;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800363 const char *scc_s;
364
365 vers = readl(mmio + HOST_VERSION);
Simon Glasse0c419b2017-06-14 21:28:34 -0600366 cap = uc_priv->cap;
Stefan Reinauer48791f12012-10-29 05:23:51 +0000367 cap2 = readl(mmio + HOST_CAP2);
Simon Glasse0c419b2017-06-14 21:28:34 -0600368 impl = uc_priv->port_map;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800369
370 speed = (cap >> 20) & 0xf;
371 if (speed == 1)
372 speed_s = "1.5";
373 else if (speed == 2)
374 speed_s = "3";
Stefan Reinauer48791f12012-10-29 05:23:51 +0000375 else if (speed == 3)
376 speed_s = "6";
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800377 else
378 speed_s = "?";
379
Michal Simekc886f352016-09-08 15:06:45 +0200380#if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI)
Rob Herringc2829ff2011-07-06 16:13:36 +0000381 scc_s = "SATA";
382#else
Simon Glass6f9135b2015-11-29 13:18:06 -0700383# ifdef CONFIG_DM_PCI
384 dm_pci_read_config16(dev, 0x0a, &cc);
385# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800386 pci_read_config_word(pdev, 0x0a, &cc);
Simon Glass6f9135b2015-11-29 13:18:06 -0700387# endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800388 if (cc == 0x0101)
389 scc_s = "IDE";
390 else if (cc == 0x0106)
391 scc_s = "SATA";
392 else if (cc == 0x0104)
393 scc_s = "RAID";
394 else
395 scc_s = "unknown";
Rob Herringc2829ff2011-07-06 16:13:36 +0000396#endif
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500397 printf("AHCI %02x%02x.%02x%02x "
398 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
399 (vers >> 24) & 0xff,
400 (vers >> 16) & 0xff,
401 (vers >> 8) & 0xff,
402 vers & 0xff,
403 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800404
405 printf("flags: "
Stefan Reinauer48791f12012-10-29 05:23:51 +0000406 "%s%s%s%s%s%s%s"
407 "%s%s%s%s%s%s%s"
408 "%s%s%s%s%s%s\n",
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500409 cap & (1 << 31) ? "64bit " : "",
410 cap & (1 << 30) ? "ncq " : "",
411 cap & (1 << 28) ? "ilck " : "",
412 cap & (1 << 27) ? "stag " : "",
413 cap & (1 << 26) ? "pm " : "",
414 cap & (1 << 25) ? "led " : "",
415 cap & (1 << 24) ? "clo " : "",
416 cap & (1 << 19) ? "nz " : "",
417 cap & (1 << 18) ? "only " : "",
418 cap & (1 << 17) ? "pmp " : "",
Stefan Reinauer48791f12012-10-29 05:23:51 +0000419 cap & (1 << 16) ? "fbss " : "",
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500420 cap & (1 << 15) ? "pio " : "",
421 cap & (1 << 14) ? "slum " : "",
Stefan Reinauer48791f12012-10-29 05:23:51 +0000422 cap & (1 << 13) ? "part " : "",
423 cap & (1 << 7) ? "ccc " : "",
424 cap & (1 << 6) ? "ems " : "",
425 cap & (1 << 5) ? "sxs " : "",
426 cap2 & (1 << 2) ? "apst " : "",
427 cap2 & (1 << 1) ? "nvmp " : "",
428 cap2 & (1 << 0) ? "boh " : "");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800429}
430
Rob Herringc2829ff2011-07-06 16:13:36 +0000431#ifndef CONFIG_SCSI_AHCI_PLAT
Michal Simekc886f352016-09-08 15:06:45 +0200432# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Simon Glasscf01b5b2017-06-14 21:28:38 -0600433static int ahci_init_one(struct ahci_uc_priv *uc_priv, struct udevice *dev)
Simon Glass6f9135b2015-11-29 13:18:06 -0700434# else
Simon Glasscf01b5b2017-06-14 21:28:38 -0600435static int ahci_init_one(struct ahci_uc_priv *uc_priv, pci_dev_t dev)
Simon Glass6f9135b2015-11-29 13:18:06 -0700436# endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800437{
Michal Simekc886f352016-09-08 15:06:45 +0200438#if !defined(CONFIG_DM_SCSI)
Ed Swarthout91080f72007-08-02 14:09:49 -0500439 u16 vendor;
Michal Simekc886f352016-09-08 15:06:45 +0200440#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800441 int rc;
442
Simon Glasse0c419b2017-06-14 21:28:34 -0600443 uc_priv->dev = dev;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800444
Simon Glasse0c419b2017-06-14 21:28:34 -0600445 uc_priv->host_flags = ATA_FLAG_SATA
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500446 | ATA_FLAG_NO_LEGACY
447 | ATA_FLAG_MMIO
448 | ATA_FLAG_PIO_DMA
449 | ATA_FLAG_NO_ATAPI;
Simon Glasse0c419b2017-06-14 21:28:34 -0600450 uc_priv->pio_mask = 0x1f;
451 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800452
Michal Simekc886f352016-09-08 15:06:45 +0200453#if !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700454#ifdef CONFIG_DM_PCI
Simon Glasse0c419b2017-06-14 21:28:34 -0600455 uc_priv->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Simon Glass6f9135b2015-11-29 13:18:06 -0700456 PCI_REGION_MEM);
457
458 /* Take from kernel:
459 * JMicron-specific fixup:
460 * make sure we're in AHCI mode
461 */
462 dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor);
463 if (vendor == 0x197b)
464 dm_pci_write_config8(dev, 0x41, 0xa1);
465#else
Simon Glasse0c419b2017-06-14 21:28:34 -0600466 uc_priv->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Scott Wood16519a32015-04-17 09:19:01 -0500467 PCI_REGION_MEM);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800468
469 /* Take from kernel:
470 * JMicron-specific fixup:
471 * make sure we're in AHCI mode
472 */
Simon Glass6f9135b2015-11-29 13:18:06 -0700473 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500474 if (vendor == 0x197b)
Simon Glass6f9135b2015-11-29 13:18:06 -0700475 pci_write_config_byte(dev, 0x41, 0xa1);
476#endif
Michal Simekc886f352016-09-08 15:06:45 +0200477#else
Simon Glassb08fbff2017-06-14 21:28:31 -0600478 struct scsi_platdata *plat = dev_get_uclass_platdata(dev);
Simon Glasse0c419b2017-06-14 21:28:34 -0600479 uc_priv->mmio_base = (void *)plat->base;
Michal Simekc886f352016-09-08 15:06:45 +0200480#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800481
Simon Glasse0c419b2017-06-14 21:28:34 -0600482 debug("ahci mmio_base=0x%p\n", uc_priv->mmio_base);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800483 /* initialize adapter */
Simon Glasse0c419b2017-06-14 21:28:34 -0600484 rc = ahci_host_init(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800485 if (rc)
486 goto err_out;
487
Simon Glasse0c419b2017-06-14 21:28:34 -0600488 ahci_print_info(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800489
490 return 0;
491
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500492 err_out:
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800493 return rc;
494}
Rob Herringc2829ff2011-07-06 16:13:36 +0000495#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800496
497#define MAX_DATA_BYTE_COUNT (4*1024*1024)
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500498
Simon Glasse0c419b2017-06-14 21:28:34 -0600499static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
500 unsigned char *buf, int buf_len)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800501{
Simon Glasse0c419b2017-06-14 21:28:34 -0600502 struct ahci_ioports *pp = &(uc_priv->port[port]);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800503 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
504 u32 sg_count;
505 int i;
506
507 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500508 if (sg_count > AHCI_MAX_SG) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800509 printf("Error:Too much sg!\n");
510 return -1;
511 }
512
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500513 for (i = 0; i < sg_count; i++) {
514 ahci_sg->addr =
Tang Yuantian3f262d02015-07-09 14:37:30 +0800515 cpu_to_le32((unsigned long) buf + i * MAX_DATA_BYTE_COUNT);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800516 ahci_sg->addr_hi = 0;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500517 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
518 (buf_len < MAX_DATA_BYTE_COUNT
519 ? (buf_len - 1)
520 : (MAX_DATA_BYTE_COUNT - 1)));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800521 ahci_sg++;
522 buf_len -= MAX_DATA_BYTE_COUNT;
523 }
524
525 return sg_count;
526}
527
528
529static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
530{
531 pp->cmd_slot->opts = cpu_to_le32(opts);
532 pp->cmd_slot->status = 0;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800533 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
534#ifdef CONFIG_PHYS_64BIT
535 pp->cmd_slot->tbl_addr_hi =
536 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
537#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800538}
539
Tang Yuantian3f262d02015-07-09 14:37:30 +0800540static int wait_spinup(void __iomem *port_mmio)
Bin Mengb138e912014-12-31 17:18:39 +0800541{
542 ulong start;
543 u32 tf_data;
544
545 start = get_timer(0);
546 do {
547 tf_data = readl(port_mmio + PORT_TFDATA);
548 if (!(tf_data & ATA_BUSY))
549 return 0;
550 } while (get_timer(start) < WAIT_MS_SPINUP);
551
552 return -ETIMEDOUT;
553}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800554
Simon Glasse0c419b2017-06-14 21:28:34 -0600555static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800556{
Simon Glasse0c419b2017-06-14 21:28:34 -0600557 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800558 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800559 u32 port_status;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800560 void __iomem *mem;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800561
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500562 debug("Enter start port: %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800563 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500564 debug("Port %d status: %x\n", port, port_status);
565 if ((port_status & 0xf) != 0x03) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800566 printf("No Link on this port!\n");
567 return -1;
568 }
569
Tang Yuantian3f262d02015-07-09 14:37:30 +0800570 mem = malloc(AHCI_PORT_PRIV_DMA_SZ + 2048);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800571 if (!mem) {
572 free(pp);
Roger Quadros7b6cb612013-11-11 16:56:37 +0200573 printf("%s: No mem for table!\n", __func__);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800574 return -ENOMEM;
575 }
576
Tang Yuantian3f262d02015-07-09 14:37:30 +0800577 /* Aligned to 2048-bytes */
578 mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ);
579 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800580
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800581 /*
582 * First item in chunk of DMA memory: 32-slot command table,
583 * 32 bytes each in size
584 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000585 pp->cmd_slot =
586 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800587 debug("cmd_slot = %p\n", pp->cmd_slot);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800588 mem += (AHCI_CMD_SLOT_SZ + 224);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500589
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800590 /*
591 * Second item: Received-FIS area
592 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000593 pp->rx_fis = virt_to_phys((void *)mem);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800594 mem += AHCI_RX_FIS_SZ;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500595
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800596 /*
597 * Third item: data area for storing a single command
598 * and its scatter-gather table
599 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000600 pp->cmd_tbl = virt_to_phys((void *)mem);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800601 debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800602
603 mem += AHCI_CMD_TBL_HDR;
Taylor Hutt3455f532012-10-29 05:23:58 +0000604 pp->cmd_tbl_sg =
605 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800606
Tang Yuantian3f262d02015-07-09 14:37:30 +0800607 writel_with_flush((unsigned long)pp->cmd_slot,
608 port_mmio + PORT_LST_ADDR);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800609
610 writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR);
611
Ian Campbella2ebf922014-07-18 20:38:41 +0100612#ifdef CONFIG_SUNXI_AHCI
613 sunxi_dma_init(port_mmio);
614#endif
615
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800616 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500617 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
618 PORT_CMD_START, port_mmio + PORT_CMD);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800619
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500620 debug("Exit start port %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800621
Bin Mengb138e912014-12-31 17:18:39 +0800622 /*
623 * Make sure interface is not busy based on error and status
624 * information from task file data register before proceeding
625 */
626 return wait_spinup(port_mmio);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800627}
628
629
Simon Glasse0c419b2017-06-14 21:28:34 -0600630static int ahci_device_data_io(struct ahci_uc_priv *uc_priv, u8 port, u8 *fis,
631 int fis_len, u8 *buf, int buf_len, u8 is_write)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800632{
633
Simon Glasse0c419b2017-06-14 21:28:34 -0600634 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800635 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800636 u32 opts;
637 u32 port_status;
638 int sg_count;
639
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000640 debug("Enter %s: for port %d\n", __func__, port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800641
Simon Glasse0c419b2017-06-14 21:28:34 -0600642 if (port > uc_priv->n_ports) {
Taylor Hutt1b1d42e2012-10-29 05:23:56 +0000643 printf("Invalid port number %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800644 return -1;
645 }
646
647 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500648 if ((port_status & 0xf) != 0x03) {
649 debug("No Link on port %d!\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800650 return -1;
651 }
652
653 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
654
Simon Glasse0c419b2017-06-14 21:28:34 -0600655 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000656 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800657 ahci_fill_cmd_slot(pp, opts);
658
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000659 ahci_dcache_flush_sata_cmd(pp);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800660 ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len);
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000661
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800662 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
663
Walter Murphyefd49b42012-10-29 05:24:00 +0000664 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
665 WAIT_MS_DATAIO, 0x1)) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800666 printf("timeout exit!\n");
667 return -1;
668 }
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000669
Tang Yuantian3f262d02015-07-09 14:37:30 +0800670 ahci_dcache_invalidate_range((unsigned long)buf,
671 (unsigned long)buf_len);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000672 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800673
674 return 0;
675}
676
677
678static char *ata_id_strcpy(u16 *target, u16 *src, int len)
679{
680 int i;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500681 for (i = 0; i < len / 2; i++)
Rob Herring336018392011-06-01 09:10:26 +0000682 target[i] = swab16(src[i]);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800683 return (char *)target;
684}
685
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800686/*
687 * SCSI INQUIRY command operation.
688 */
Simon Glasscb875242017-06-14 21:28:33 -0600689static int ata_scsiop_inquiry(struct ahci_uc_priv *uc_priv,
690 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800691{
Rob Herring9855a232013-08-24 10:10:48 -0500692 static const u8 hdr[] = {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800693 0,
694 0,
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500695 0x5, /* claim SPC-3 version compatibility */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800696 2,
697 95 - 4,
698 };
699 u8 fis[20];
Roger Quadrosda3976e2014-04-01 17:26:40 +0300700 u16 *idbuf;
Roger Quadrosff56ee12013-11-11 16:56:38 +0200701 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800702 u8 port;
703
704 /* Clean ccb data buffer */
705 memset(pccb->pdata, 0, pccb->datalen);
706
707 memcpy(pccb->pdata, hdr, sizeof(hdr));
708
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500709 if (pccb->datalen <= 35)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800710 return 0;
711
Taylor Hutt54d0f552012-10-29 05:23:55 +0000712 memset(fis, 0, sizeof(fis));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800713 /* Construct the FIS */
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500714 fis[0] = 0x27; /* Host to device FIS. */
715 fis[1] = 1 << 7; /* Command FIS. */
Rob Herring83f66482013-08-24 10:10:54 -0500716 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800717
718 /* Read id from sata */
719 port = pccb->target;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800720
Simon Glasse0c419b2017-06-14 21:28:34 -0600721 if (ahci_device_data_io(uc_priv, port, (u8 *)&fis, sizeof(fis),
722 (u8 *)tmpid, ATA_ID_WORDS * 2, 0)) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800723 debug("scsi_ahci: SCSI inquiry command failure.\n");
724 return -EIO;
725 }
726
Simon Glasscb875242017-06-14 21:28:33 -0600727 if (!uc_priv->ataid[port]) {
728 uc_priv->ataid[port] = malloc(ATA_ID_WORDS * 2);
729 if (!uc_priv->ataid[port]) {
Roger Quadrosda3976e2014-04-01 17:26:40 +0300730 printf("%s: No memory for ataid[port]\n", __func__);
731 return -ENOMEM;
732 }
733 }
734
Simon Glasscb875242017-06-14 21:28:33 -0600735 idbuf = uc_priv->ataid[port];
Roger Quadrosda3976e2014-04-01 17:26:40 +0300736
737 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
738 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800739
740 memcpy(&pccb->pdata[8], "ATA ", 8);
Roger Quadrosda3976e2014-04-01 17:26:40 +0300741 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
742 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800743
Rob Herring83f66482013-08-24 10:10:54 -0500744#ifdef DEBUG
Roger Quadrosda3976e2014-04-01 17:26:40 +0300745 ata_dump_id(idbuf);
Rob Herring83f66482013-08-24 10:10:54 -0500746#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800747 return 0;
748}
749
750
751/*
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000752 * SCSI READ10/WRITE10 command operation.
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800753 */
Simon Glasse0c419b2017-06-14 21:28:34 -0600754static int ata_scsiop_read_write(struct ahci_uc_priv *uc_priv,
755 struct scsi_cmd *pccb, u8 is_write)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800756{
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100757 lbaint_t lba = 0;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000758 u16 blocks = 0;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800759 u8 fis[20];
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000760 u8 *user_buffer = pccb->pdata;
761 u32 user_buffer_size = pccb->datalen;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800762
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000763 /* Retrieve the base LBA number from the ccb structure. */
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100764 if (pccb->cmd[0] == SCSI_READ16) {
765 memcpy(&lba, pccb->cmd + 2, 8);
766 lba = be64_to_cpu(lba);
767 } else {
768 u32 temp;
769 memcpy(&temp, pccb->cmd + 2, 4);
770 lba = be32_to_cpu(temp);
771 }
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800772
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000773 /*
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100774 * Retrieve the base LBA number and the block count from
775 * the ccb structure.
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000776 *
777 * For 10-byte and 16-byte SCSI R/W commands, transfer
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800778 * length 0 means transfer 0 block of data.
779 * However, for ATA R/W commands, sector count 0 means
780 * 256 or 65536 sectors, not 0 sectors as in SCSI.
781 *
782 * WARNING: one or two older ATA drives treat 0 as 0...
783 */
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100784 if (pccb->cmd[0] == SCSI_READ16)
785 blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]);
786 else
787 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000788
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100789 debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n",
790 is_write ? "write" : "read", blocks, lba);
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000791
792 /* Preset the FIS */
Taylor Hutt54d0f552012-10-29 05:23:55 +0000793 memset(fis, 0, sizeof(fis));
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000794 fis[0] = 0x27; /* Host to device FIS. */
795 fis[1] = 1 << 7; /* Command FIS. */
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000796 /* Command byte (read/write). */
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000797 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800798
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000799 while (blocks) {
800 u16 now_blocks; /* number of blocks per iteration */
801 u32 transfer_size; /* number of bytes per iteration */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800802
Masahiro Yamadadb204642014-11-07 03:03:31 +0900803 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800804
Rob Herring83f66482013-08-24 10:10:54 -0500805 transfer_size = ATA_SECT_SIZE * now_blocks;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000806 if (transfer_size > user_buffer_size) {
807 printf("scsi_ahci: Error: buffer too small.\n");
808 return -EIO;
809 }
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800810
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100811 /*
812 * LBA48 SATA command but only use 32bit address range within
813 * that (unless we've enabled 64bit LBA support). The next
814 * smaller command range (28bit) is too small.
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000815 */
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000816 fis[4] = (lba >> 0) & 0xff;
817 fis[5] = (lba >> 8) & 0xff;
818 fis[6] = (lba >> 16) & 0xff;
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000819 fis[7] = 1 << 6; /* device reg: set LBA mode */
820 fis[8] = ((lba >> 24) & 0xff);
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100821#ifdef CONFIG_SYS_64BIT_LBA
822 if (pccb->cmd[0] == SCSI_READ16) {
823 fis[9] = ((lba >> 32) & 0xff);
824 fis[10] = ((lba >> 40) & 0xff);
825 }
826#endif
827
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000828 fis[3] = 0xe0; /* features */
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000829
830 /* Block (sector) count */
831 fis[12] = (now_blocks >> 0) & 0xff;
832 fis[13] = (now_blocks >> 8) & 0xff;
833
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000834 /* Read/Write from ahci */
Simon Glasse0c419b2017-06-14 21:28:34 -0600835 if (ahci_device_data_io(uc_priv, pccb->target, (u8 *)&fis,
836 sizeof(fis), user_buffer, transfer_size,
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000837 is_write)) {
838 debug("scsi_ahci: SCSI %s10 command failure.\n",
839 is_write ? "WRITE" : "READ");
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000840 return -EIO;
841 }
Marc Jones49ec4b12012-10-29 05:24:02 +0000842
843 /* If this transaction is a write, do a following flush.
844 * Writes in u-boot are so rare, and the logic to know when is
845 * the last write and do a flush only there is sufficiently
846 * difficult. Just do a flush after every write. This incurs,
847 * usually, one extra flush when the rare writes do happen.
848 */
849 if (is_write) {
Simon Glasse0c419b2017-06-14 21:28:34 -0600850 if (-EIO == ata_io_flush(uc_priv, pccb->target))
Marc Jones49ec4b12012-10-29 05:24:02 +0000851 return -EIO;
852 }
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000853 user_buffer += transfer_size;
854 user_buffer_size -= transfer_size;
855 blocks -= now_blocks;
856 lba += now_blocks;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800857 }
858
859 return 0;
860}
861
862
863/*
864 * SCSI READ CAPACITY10 command operation.
865 */
Simon Glasscb875242017-06-14 21:28:33 -0600866static int ata_scsiop_read_capacity10(struct ahci_uc_priv *uc_priv,
867 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800868{
Kumar Gala8a190652009-07-13 09:24:00 -0500869 u32 cap;
Rob Herring83f66482013-08-24 10:10:54 -0500870 u64 cap64;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000871 u32 block_size;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800872
Simon Glasscb875242017-06-14 21:28:33 -0600873 if (!uc_priv->ataid[pccb->target]) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800874 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500875 "\tNo ATA info!\n"
Vagrant Cascadianbeb288b2015-11-24 14:46:24 -0800876 "\tPlease run SCSI command INQUIRY first!\n");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800877 return -EPERM;
878 }
879
Simon Glasscb875242017-06-14 21:28:33 -0600880 cap64 = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Rob Herring83f66482013-08-24 10:10:54 -0500881 if (cap64 > 0x100000000ULL)
882 cap64 = 0xffffffff;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000883
Rob Herring83f66482013-08-24 10:10:54 -0500884 cap = cpu_to_be32(cap64);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000885 memcpy(pccb->pdata, &cap, sizeof(cap));
886
887 block_size = cpu_to_be32((u32)512);
888 memcpy(&pccb->pdata[4], &block_size, 4);
889
890 return 0;
891}
892
893
894/*
895 * SCSI READ CAPACITY16 command operation.
896 */
Simon Glasscb875242017-06-14 21:28:33 -0600897static int ata_scsiop_read_capacity16(struct ahci_uc_priv *uc_priv,
898 struct scsi_cmd *pccb)
Gabe Blackdd2c7342012-10-29 05:23:54 +0000899{
900 u64 cap;
901 u64 block_size;
902
Simon Glasscb875242017-06-14 21:28:33 -0600903 if (!uc_priv->ataid[pccb->target]) {
Gabe Blackdd2c7342012-10-29 05:23:54 +0000904 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
905 "\tNo ATA info!\n"
Vagrant Cascadianbeb288b2015-11-24 14:46:24 -0800906 "\tPlease run SCSI command INQUIRY first!\n");
Gabe Blackdd2c7342012-10-29 05:23:54 +0000907 return -EPERM;
908 }
909
Simon Glasscb875242017-06-14 21:28:33 -0600910 cap = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000911 cap = cpu_to_be64(cap);
Kumar Gala8a190652009-07-13 09:24:00 -0500912 memcpy(pccb->pdata, &cap, sizeof(cap));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800913
Gabe Blackdd2c7342012-10-29 05:23:54 +0000914 block_size = cpu_to_be64((u64)512);
915 memcpy(&pccb->pdata[8], &block_size, 8);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800916
917 return 0;
918}
919
920
921/*
922 * SCSI TEST UNIT READY command operation.
923 */
Simon Glasscb875242017-06-14 21:28:33 -0600924static int ata_scsiop_test_unit_ready(struct ahci_uc_priv *uc_priv,
925 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800926{
Simon Glasscb875242017-06-14 21:28:33 -0600927 return (uc_priv->ataid[pccb->target]) ? 0 : -EPERM;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800928}
929
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500930
Simon Glass23123c62017-06-14 21:28:42 -0600931static int ahci_scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800932{
Simon Glass11b2b622017-06-14 21:28:40 -0600933 struct ahci_uc_priv *uc_priv;
934#ifdef CONFIG_DM_SCSI
935 uc_priv = dev_get_uclass_priv(dev);
936#else
937 uc_priv = probe_ent;
938#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800939 int ret;
940
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500941 switch (pccb->cmd[0]) {
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100942 case SCSI_READ16:
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800943 case SCSI_READ10:
Simon Glasse0c419b2017-06-14 21:28:34 -0600944 ret = ata_scsiop_read_write(uc_priv, pccb, 0);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000945 break;
946 case SCSI_WRITE10:
Simon Glasse0c419b2017-06-14 21:28:34 -0600947 ret = ata_scsiop_read_write(uc_priv, pccb, 1);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800948 break;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000949 case SCSI_RD_CAPAC10:
Simon Glasscb875242017-06-14 21:28:33 -0600950 ret = ata_scsiop_read_capacity10(uc_priv, pccb);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800951 break;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000952 case SCSI_RD_CAPAC16:
Simon Glasscb875242017-06-14 21:28:33 -0600953 ret = ata_scsiop_read_capacity16(uc_priv, pccb);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000954 break;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800955 case SCSI_TST_U_RDY:
Simon Glasscb875242017-06-14 21:28:33 -0600956 ret = ata_scsiop_test_unit_ready(uc_priv, pccb);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800957 break;
958 case SCSI_INQUIRY:
Simon Glasscb875242017-06-14 21:28:33 -0600959 ret = ata_scsiop_inquiry(uc_priv, pccb);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800960 break;
961 default:
962 printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
York Sun4a598092013-04-01 11:29:11 -0700963 return false;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800964 }
965
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500966 if (ret) {
967 debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
York Sun4a598092013-04-01 11:29:11 -0700968 return false;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800969 }
York Sun4a598092013-04-01 11:29:11 -0700970 return true;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800971
972}
973
Simon Glass0a47bbb2017-06-14 21:28:36 -0600974static int ahci_start_ports(struct ahci_uc_priv *uc_priv)
975{
976 u32 linkmap;
977 int i;
978
979 linkmap = uc_priv->link_port_map;
980
981 for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
982 if (((linkmap >> i) & 0x01)) {
983 if (ahci_port_start(uc_priv, (u8) i)) {
984 printf("Can not start port %d\n", i);
985 continue;
986 }
987 }
988 }
989
990 return 0;
991}
992
Simon Glass84fac542017-06-14 21:28:37 -0600993#ifndef CONFIG_DM_SCSI
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800994void scsi_low_level_init(int busdevfunc)
995{
Simon Glasse0c419b2017-06-14 21:28:34 -0600996 struct ahci_uc_priv *uc_priv;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800997
Rob Herringc2829ff2011-07-06 16:13:36 +0000998#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glasscf01b5b2017-06-14 21:28:38 -0600999 probe_ent = calloc(1, sizeof(struct ahci_uc_priv));
1000 if (!probe_ent) {
1001 printf("%s: No memory for uc_priv\n", __func__);
1002 return;
1003 }
1004 uc_priv = probe_ent;
Michal Simekc886f352016-09-08 15:06:45 +02001005# if defined(CONFIG_DM_PCI)
Simon Glass6f9135b2015-11-29 13:18:06 -07001006 struct udevice *dev;
1007 int ret;
1008
1009 ret = dm_pci_bus_find_bdf(busdevfunc, &dev);
1010 if (ret)
1011 return;
Simon Glasscf01b5b2017-06-14 21:28:38 -06001012 ahci_init_one(uc_priv, dev);
Simon Glass6f9135b2015-11-29 13:18:06 -07001013# else
Simon Glasscf01b5b2017-06-14 21:28:38 -06001014 ahci_init_one(uc_priv, busdevfunc);
Simon Glass6f9135b2015-11-29 13:18:06 -07001015# endif
Simon Glasscf01b5b2017-06-14 21:28:38 -06001016#else
Simon Glasse0c419b2017-06-14 21:28:34 -06001017 uc_priv = probe_ent;
Simon Glasscf01b5b2017-06-14 21:28:38 -06001018#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001019
Simon Glass0a47bbb2017-06-14 21:28:36 -06001020 ahci_start_ports(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001021}
Simon Glass84fac542017-06-14 21:28:37 -06001022#endif
1023
1024#ifndef CONFIG_SCSI_AHCI_PLAT
1025# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
1026int achi_init_one_dm(struct udevice *dev)
1027{
Simon Glasscf01b5b2017-06-14 21:28:38 -06001028 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1029
1030 return ahci_init_one(uc_priv, dev);
Simon Glass84fac542017-06-14 21:28:37 -06001031}
1032#endif
1033#endif
1034
1035int achi_start_ports_dm(struct udevice *dev)
1036{
Simon Glasscf01b5b2017-06-14 21:28:38 -06001037 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass84fac542017-06-14 21:28:37 -06001038
1039 return ahci_start_ports(uc_priv);
1040}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001041
Rob Herringc2829ff2011-07-06 16:13:36 +00001042#ifdef CONFIG_SCSI_AHCI_PLAT
Simon Glasscf01b5b2017-06-14 21:28:38 -06001043static int ahci_init_common(struct ahci_uc_priv *uc_priv, void __iomem *base)
Rob Herringc2829ff2011-07-06 16:13:36 +00001044{
Simon Glasscf01b5b2017-06-14 21:28:38 -06001045 int rc;
Rob Herringc2829ff2011-07-06 16:13:36 +00001046
Simon Glasse0c419b2017-06-14 21:28:34 -06001047 uc_priv->host_flags = ATA_FLAG_SATA
Rob Herringc2829ff2011-07-06 16:13:36 +00001048 | ATA_FLAG_NO_LEGACY
1049 | ATA_FLAG_MMIO
1050 | ATA_FLAG_PIO_DMA
1051 | ATA_FLAG_NO_ATAPI;
Simon Glasse0c419b2017-06-14 21:28:34 -06001052 uc_priv->pio_mask = 0x1f;
1053 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Rob Herringc2829ff2011-07-06 16:13:36 +00001054
Simon Glasse0c419b2017-06-14 21:28:34 -06001055 uc_priv->mmio_base = base;
Rob Herringc2829ff2011-07-06 16:13:36 +00001056
1057 /* initialize adapter */
Simon Glasse0c419b2017-06-14 21:28:34 -06001058 rc = ahci_host_init(uc_priv);
Rob Herringc2829ff2011-07-06 16:13:36 +00001059 if (rc)
1060 goto err_out;
1061
Simon Glasse0c419b2017-06-14 21:28:34 -06001062 ahci_print_info(uc_priv);
Rob Herringc2829ff2011-07-06 16:13:36 +00001063
Simon Glass0a47bbb2017-06-14 21:28:36 -06001064 rc = ahci_start_ports(uc_priv);
Rob Herringc2829ff2011-07-06 16:13:36 +00001065
Rob Herringc2829ff2011-07-06 16:13:36 +00001066err_out:
1067 return rc;
1068}
Simon Glasscf01b5b2017-06-14 21:28:38 -06001069
1070#ifndef CONFIG_DM_SCSI
1071int ahci_init(void __iomem *base)
1072{
1073 struct ahci_uc_priv *uc_priv;
1074
1075 probe_ent = malloc(sizeof(struct ahci_uc_priv));
1076 if (!probe_ent) {
1077 printf("%s: No memory for uc_priv\n", __func__);
1078 return -ENOMEM;
1079 }
1080
1081 uc_priv = probe_ent;
1082 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
1083
1084 return ahci_init_common(uc_priv, base);
1085}
1086#endif
1087
1088int ahci_init_dm(struct udevice *dev, void __iomem *base)
1089{
1090 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1091
1092 return ahci_init_common(uc_priv, base);
1093}
Ian Campbell19349962014-03-07 01:20:56 +00001094
1095void __weak scsi_init(void)
1096{
1097}
1098
Simon Glasscf01b5b2017-06-14 21:28:38 -06001099#endif /* CONFIG_SCSI_AHCI_PLAT */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001100
Marc Jones49ec4b12012-10-29 05:24:02 +00001101/*
1102 * In the general case of generic rotating media it makes sense to have a
1103 * flush capability. It probably even makes sense in the case of SSDs because
1104 * one cannot always know for sure what kind of internal cache/flush mechanism
1105 * is embodied therein. At first it was planned to invoke this after the last
1106 * write to disk and before rebooting. In practice, knowing, a priori, which
1107 * is the last write is difficult. Because writing to the disk in u-boot is
1108 * very rare, this flush command will be invoked after every block write.
1109 */
Simon Glasse0c419b2017-06-14 21:28:34 -06001110static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port)
Marc Jones49ec4b12012-10-29 05:24:02 +00001111{
1112 u8 fis[20];
Simon Glasse0c419b2017-06-14 21:28:34 -06001113 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +08001114 void __iomem *port_mmio = pp->port_mmio;
Marc Jones49ec4b12012-10-29 05:24:02 +00001115 u32 cmd_fis_len = 5; /* five dwords */
1116
1117 /* Preset the FIS */
1118 memset(fis, 0, 20);
1119 fis[0] = 0x27; /* Host to device FIS. */
1120 fis[1] = 1 << 7; /* Command FIS. */
Walter Murphyd1cb64b2012-10-29 05:24:03 +00001121 fis[2] = ATA_CMD_FLUSH_EXT;
Marc Jones49ec4b12012-10-29 05:24:02 +00001122
1123 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1124 ahci_fill_cmd_slot(pp, cmd_fis_len);
Tang Yuantian93b99e02016-04-14 16:21:00 +08001125 ahci_dcache_flush_sata_cmd(pp);
Marc Jones49ec4b12012-10-29 05:24:02 +00001126 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1127
1128 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1129 WAIT_MS_FLUSH, 0x1)) {
1130 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1131 return -EIO;
1132 }
1133
1134 return 0;
1135}
1136
Simon Glass23123c62017-06-14 21:28:42 -06001137static int ahci_scsi_bus_reset(struct udevice *dev)
1138{
1139 /* Not implemented */
1140
1141 return 0;
1142}
1143
Simon Glassc4dfa892017-06-14 21:28:43 -06001144#ifdef CONFIG_DM_SCSI
1145struct scsi_ops scsi_ops = {
1146 .exec = ahci_scsi_exec,
1147 .bus_reset = ahci_scsi_bus_reset,
1148};
1149#else
Simon Glass23123c62017-06-14 21:28:42 -06001150int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
1151{
1152 return ahci_scsi_exec(dev, pccb);
1153}
Marc Jones49ec4b12012-10-29 05:24:02 +00001154
Simon Glass11b2b622017-06-14 21:28:40 -06001155__weak int scsi_bus_reset(struct udevice *dev)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001156{
Simon Glass23123c62017-06-14 21:28:42 -06001157 return ahci_scsi_bus_reset(dev);
Simon Glass11b2b622017-06-14 21:28:40 -06001158
1159 return 0;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001160}
Simon Glassc4dfa892017-06-14 21:28:43 -06001161#endif