blob: 4830bcdca00665a7d5d376c60cf3588c40f83967 [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
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08009 */
10#include <common.h>
11
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080012#include <command.h>
Simon Glass6f9135b2015-11-29 13:18:06 -070013#include <dm.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080014#include <pci.h>
15#include <asm/processor.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090016#include <linux/errno.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080017#include <asm/io.h>
18#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060019#include <memalign.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080020#include <scsi.h>
Rob Herring83f66482013-08-24 10:10:54 -050021#include <libata.h>
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080022#include <linux/ctype.h>
23#include <ahci.h>
24
Simon Glasse0c419b2017-06-14 21:28:34 -060025static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port);
Marc Jones49ec4b12012-10-29 05:24:02 +000026
Simon Glass5ce59672017-06-14 21:28:32 -060027struct ahci_uc_priv *probe_ent = NULL;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080028
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050029#define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
30
Vadim Bendebury700f85c2012-10-29 05:23:44 +000031/*
Hung-Te Lin0f10bd42012-10-29 05:23:53 +000032 * Some controllers limit number of blocks they can read/write at once.
33 * Contemporary SSD devices work much faster if the read/write size is aligned
34 * to a power of 2. Let's set default to 128 and allowing to be overwritten if
35 * needed.
Vadim Bendebury700f85c2012-10-29 05:23:44 +000036 */
Hung-Te Lin0f10bd42012-10-29 05:23:53 +000037#ifndef MAX_SATA_BLOCKS_READ_WRITE
38#define MAX_SATA_BLOCKS_READ_WRITE 0x80
Vadim Bendebury700f85c2012-10-29 05:23:44 +000039#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080040
Walter Murphyefd49b42012-10-29 05:24:00 +000041/* Maximum timeouts for each event */
Rob Herring249b9372013-08-24 10:10:53 -050042#define WAIT_MS_SPINUP 20000
Mark Langsdorf2cc6e1b2015-06-05 00:58:46 +010043#define WAIT_MS_DATAIO 10000
Marc Jones49ec4b12012-10-29 05:24:02 +000044#define WAIT_MS_FLUSH 5000
Ian Campbell368989b2014-07-18 20:38:39 +010045#define WAIT_MS_LINKUP 200
Walter Murphyefd49b42012-10-29 05:24:00 +000046
Stefan Roesed99a30e2016-08-31 10:02:15 +020047__weak void __iomem *ahci_port_base(void __iomem *base, u32 port)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080048{
49 return base + 0x100 + (port * 0x80);
50}
51
52
Tang Yuantian3f262d02015-07-09 14:37:30 +080053static void ahci_setup_port(struct ahci_ioports *port, void __iomem *base,
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080054 unsigned int port_idx)
55{
56 base = ahci_port_base(base, port_idx);
57
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050058 port->cmd_addr = base;
59 port->scr_addr = base + PORT_SCR;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +080060}
61
62
63#define msleep(a) udelay(a * 1000)
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050064
Tang Yuantian3f262d02015-07-09 14:37:30 +080065static void ahci_dcache_flush_range(unsigned long begin, unsigned long len)
Taylor Hutt33e4c2f2012-10-29 05:23:59 +000066{
67 const unsigned long start = begin;
68 const unsigned long end = start + len;
69
70 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
71 flush_dcache_range(start, end);
72}
73
74/*
75 * SATA controller DMAs to physical RAM. Ensure data from the
76 * controller is invalidated from dcache; next access comes from
77 * physical RAM.
78 */
Tang Yuantian3f262d02015-07-09 14:37:30 +080079static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len)
Taylor Hutt33e4c2f2012-10-29 05:23:59 +000080{
81 const unsigned long start = begin;
82 const unsigned long end = start + len;
83
84 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
85 invalidate_dcache_range(start, end);
86}
87
88/*
89 * Ensure data for SATA controller is flushed out of dcache and
90 * written to physical memory.
91 */
92static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
93{
94 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
95 AHCI_PORT_PRIV_DMA_SZ);
96}
97
Tang Yuantian3f262d02015-07-09 14:37:30 +080098static int waiting_for_cmd_completed(void __iomem *offset,
Jon Loeligerc0b0cda2006-08-23 11:04:43 -050099 int timeout_msec,
100 u32 sign)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800101{
102 int i;
103 u32 status;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500104
105 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800106 msleep(1);
107
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500108 return (i < timeout_msec) ? 0 : -1;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800109}
110
Simon Glasscb875242017-06-14 21:28:33 -0600111int __weak ahci_link_up(struct ahci_uc_priv *uc_priv, u8 port)
Rob Herringaaec0982013-08-24 10:10:51 -0500112{
113 u32 tmp;
114 int j = 0;
Simon Glasscb875242017-06-14 21:28:33 -0600115 void __iomem *port_mmio = uc_priv->port[port].port_mmio;
Rob Herringaaec0982013-08-24 10:10:51 -0500116
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +0200117 /*
Rob Herringaaec0982013-08-24 10:10:51 -0500118 * Bring up SATA link.
119 * SATA link bringup time is usually less than 1 ms; only very
120 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
121 */
122 while (j < WAIT_MS_LINKUP) {
123 tmp = readl(port_mmio + PORT_SCR_STAT);
124 tmp &= PORT_SCR_STAT_DET_MASK;
125 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
126 return 0;
127 udelay(1000);
128 j++;
129 }
130 return 1;
131}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800132
Ian Campbella2ebf922014-07-18 20:38:41 +0100133#ifdef CONFIG_SUNXI_AHCI
134/* The sunxi AHCI controller requires this undocumented setup */
Tang Yuantian3f262d02015-07-09 14:37:30 +0800135static void sunxi_dma_init(void __iomem *port_mmio)
Ian Campbella2ebf922014-07-18 20:38:41 +0100136{
137 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
138}
139#endif
140
Scott Wood16519a32015-04-17 09:19:01 -0500141int ahci_reset(void __iomem *base)
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200142{
143 int i = 1000;
Scott Wood16519a32015-04-17 09:19:01 -0500144 u32 __iomem *host_ctl_reg = base + HOST_CTL;
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200145 u32 tmp = readl(host_ctl_reg); /* global controller reset */
146
147 if ((tmp & HOST_RESET) == 0)
148 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
149
150 /*
151 * reset must complete within 1 second, or
152 * the hardware should be considered fried.
153 */
154 do {
155 udelay(1000);
156 tmp = readl(host_ctl_reg);
157 i--;
158 } while ((i > 0) && (tmp & HOST_RESET));
159
160 if (i == 0) {
161 printf("controller reset failed (0x%x)\n", tmp);
162 return -1;
163 }
164
165 return 0;
166}
167
Simon Glasse0c419b2017-06-14 21:28:34 -0600168static int ahci_host_init(struct ahci_uc_priv *uc_priv)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800169{
Michal Simekc886f352016-09-08 15:06:45 +0200170#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700171# ifdef CONFIG_DM_PCI
Simon Glasse0c419b2017-06-14 21:28:34 -0600172 struct udevice *dev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700173 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
174# else
Simon Glasse0c419b2017-06-14 21:28:34 -0600175 pci_dev_t pdev = uc_priv->dev;
Rob Herringc2829ff2011-07-06 16:13:36 +0000176 unsigned short vendor;
Simon Glass6f9135b2015-11-29 13:18:06 -0700177# endif
178 u16 tmp16;
Rob Herringc2829ff2011-07-06 16:13:36 +0000179#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600180 void __iomem *mmio = uc_priv->mmio_base;
Marc Jonesbbb57842012-10-29 05:24:01 +0000181 u32 tmp, cap_save, cmd;
Rob Herringaaec0982013-08-24 10:10:51 -0500182 int i, j, ret;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800183 void __iomem *port_mmio;
Richard Gibbs8bc0ab72013-08-24 10:10:47 -0500184 u32 port_map;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800185
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000186 debug("ahci_host_init: start\n");
187
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800188 cap_save = readl(mmio + HOST_CAP);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500189 cap_save &= ((1 << 28) | (1 << 17));
Marc Jonesbbb57842012-10-29 05:24:01 +0000190 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800191
Simon Glasse0c419b2017-06-14 21:28:34 -0600192 ret = ahci_reset(uc_priv->mmio_base);
Dmitry Lifshitzcff59a72014-12-15 16:02:55 +0200193 if (ret)
194 return ret;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800195
196 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
197 writel(cap_save, mmio + HOST_CAP);
198 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
199
Michal Simekc886f352016-09-08 15:06:45 +0200200#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700201# ifdef CONFIG_DM_PCI
202 if (pplat->vendor == PCI_VENDOR_ID_INTEL) {
203 u16 tmp16;
204
205 dm_pci_read_config16(dev, 0x92, &tmp16);
206 dm_pci_write_config16(dev, 0x92, tmp16 | 0xf);
207 }
208# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800209 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
210
211 if (vendor == PCI_VENDOR_ID_INTEL) {
212 u16 tmp16;
213 pci_read_config_word(pdev, 0x92, &tmp16);
214 tmp16 |= 0xf;
215 pci_write_config_word(pdev, 0x92, tmp16);
216 }
Simon Glass6f9135b2015-11-29 13:18:06 -0700217# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000218#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600219 uc_priv->cap = readl(mmio + HOST_CAP);
220 uc_priv->port_map = readl(mmio + HOST_PORTS_IMPL);
221 port_map = uc_priv->port_map;
222 uc_priv->n_ports = (uc_priv->cap & 0x1f) + 1;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800223
224 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Simon Glasse0c419b2017-06-14 21:28:34 -0600225 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800226
Simon Glasse0c419b2017-06-14 21:28:34 -0600227 if (uc_priv->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
228 uc_priv->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000229
Simon Glasse0c419b2017-06-14 21:28:34 -0600230 for (i = 0; i < uc_priv->n_ports; i++) {
Richard Gibbs8bc0ab72013-08-24 10:10:47 -0500231 if (!(port_map & (1 << i)))
232 continue;
Simon Glasse0c419b2017-06-14 21:28:34 -0600233 uc_priv->port[i].port_mmio = ahci_port_base(mmio, i);
234 port_mmio = (u8 *)uc_priv->port[i].port_mmio;
235 ahci_setup_port(&uc_priv->port[i], mmio, i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800236
237 /* make sure port is not active */
238 tmp = readl(port_mmio + PORT_CMD);
239 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
240 PORT_CMD_FIS_RX | PORT_CMD_START)) {
Stefan Reinauer7ee0e4372012-10-29 05:23:50 +0000241 debug("Port %d is active. Deactivating.\n", i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800242 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
243 PORT_CMD_FIS_RX | PORT_CMD_START);
244 writel_with_flush(tmp, port_mmio + PORT_CMD);
245
246 /* spec says 500 msecs for each bit, so
247 * this is slightly incorrect.
248 */
249 msleep(500);
250 }
251
Ian Campbella2ebf922014-07-18 20:38:41 +0100252#ifdef CONFIG_SUNXI_AHCI
253 sunxi_dma_init(port_mmio);
254#endif
255
Marc Jonesbbb57842012-10-29 05:24:01 +0000256 /* Add the spinup command to whatever mode bits may
257 * already be on in the command register.
258 */
259 cmd = readl(port_mmio + PORT_CMD);
Marc Jonesbbb57842012-10-29 05:24:01 +0000260 cmd |= PORT_CMD_SPIN_UP;
261 writel_with_flush(cmd, port_mmio + PORT_CMD);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800262
Rob Herringaaec0982013-08-24 10:10:51 -0500263 /* Bring up SATA link. */
Simon Glasse0c419b2017-06-14 21:28:34 -0600264 ret = ahci_link_up(uc_priv, i);
Rob Herringaaec0982013-08-24 10:10:51 -0500265 if (ret) {
Marc Jonesbbb57842012-10-29 05:24:01 +0000266 printf("SATA link %d timeout.\n", i);
267 continue;
268 } else {
269 debug("SATA link ok.\n");
270 }
271
272 /* Clear error status */
273 tmp = readl(port_mmio + PORT_SCR_ERR);
274 if (tmp)
275 writel(tmp, port_mmio + PORT_SCR_ERR);
276
277 debug("Spinning up device on SATA port %d... ", i);
278
279 j = 0;
280 while (j < WAIT_MS_SPINUP) {
281 tmp = readl(port_mmio + PORT_TFDATA);
Rob Herring83f66482013-08-24 10:10:54 -0500282 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
Marc Jonesbbb57842012-10-29 05:24:01 +0000283 break;
284 udelay(1000);
Rob Herringc4698542013-08-24 10:10:52 -0500285 tmp = readl(port_mmio + PORT_SCR_STAT);
286 tmp &= PORT_SCR_STAT_DET_MASK;
287 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
288 break;
Marc Jonesbbb57842012-10-29 05:24:01 +0000289 j++;
290 }
Rob Herringc4698542013-08-24 10:10:52 -0500291
292 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
293 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
294 debug("SATA link %d down (COMINIT received), retrying...\n", i);
295 i--;
296 continue;
297 }
298
Marc Jonesbbb57842012-10-29 05:24:01 +0000299 printf("Target spinup took %d ms.\n", j);
300 if (j == WAIT_MS_SPINUP)
Stefan Reinauera63341c2012-10-29 05:23:49 +0000301 debug("timeout.\n");
302 else
303 debug("ok.\n");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800304
305 tmp = readl(port_mmio + PORT_SCR_ERR);
306 debug("PORT_SCR_ERR 0x%x\n", tmp);
307 writel(tmp, port_mmio + PORT_SCR_ERR);
308
309 /* ack any pending irq events for this port */
310 tmp = readl(port_mmio + PORT_IRQ_STAT);
311 debug("PORT_IRQ_STAT 0x%x\n", tmp);
312 if (tmp)
313 writel(tmp, port_mmio + PORT_IRQ_STAT);
314
315 writel(1 << i, mmio + HOST_IRQ_STAT);
316
Stefan Reinauer48791f12012-10-29 05:23:51 +0000317 /* register linkup ports */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800318 tmp = readl(port_mmio + PORT_SCR_STAT);
Marc Jones49ec4b12012-10-29 05:24:02 +0000319 debug("SATA port %d status: 0x%x\n", i, tmp);
Rob Herring723a2812013-08-24 10:10:50 -0500320 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
Simon Glasse0c419b2017-06-14 21:28:34 -0600321 uc_priv->link_port_map |= (0x01 << i);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800322 }
323
324 tmp = readl(mmio + HOST_CTL);
325 debug("HOST_CTL 0x%x\n", tmp);
326 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
327 tmp = readl(mmio + HOST_CTL);
328 debug("HOST_CTL 0x%x\n", tmp);
Michal Simekc886f352016-09-08 15:06:45 +0200329#if !defined(CONFIG_DM_SCSI)
Rob Herringc2829ff2011-07-06 16:13:36 +0000330#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glass6f9135b2015-11-29 13:18:06 -0700331# ifdef CONFIG_DM_PCI
332 dm_pci_read_config16(dev, PCI_COMMAND, &tmp16);
333 tmp |= PCI_COMMAND_MASTER;
334 dm_pci_write_config16(dev, PCI_COMMAND, tmp16);
335# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800336 pci_read_config_word(pdev, PCI_COMMAND, &tmp16);
337 tmp |= PCI_COMMAND_MASTER;
338 pci_write_config_word(pdev, PCI_COMMAND, tmp16);
Simon Glass6f9135b2015-11-29 13:18:06 -0700339# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000340#endif
Michal Simekc886f352016-09-08 15:06:45 +0200341#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800342 return 0;
343}
344
345
Simon Glasse0c419b2017-06-14 21:28:34 -0600346static void ahci_print_info(struct ahci_uc_priv *uc_priv)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800347{
Michal Simekc886f352016-09-08 15:06:45 +0200348#if !defined(CONFIG_SCSI_AHCI_PLAT) && !defined(CONFIG_DM_SCSI)
349# if defined(CONFIG_DM_PCI)
Simon Glasse0c419b2017-06-14 21:28:34 -0600350 struct udevice *dev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700351# else
Simon Glasse0c419b2017-06-14 21:28:34 -0600352 pci_dev_t pdev = uc_priv->dev;
Simon Glass6f9135b2015-11-29 13:18:06 -0700353# endif
Rob Herringc2829ff2011-07-06 16:13:36 +0000354 u16 cc;
355#endif
Simon Glasse0c419b2017-06-14 21:28:34 -0600356 void __iomem *mmio = uc_priv->mmio_base;
Stefan Reinauer48791f12012-10-29 05:23:51 +0000357 u32 vers, cap, cap2, impl, speed;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800358 const char *speed_s;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800359 const char *scc_s;
360
361 vers = readl(mmio + HOST_VERSION);
Simon Glasse0c419b2017-06-14 21:28:34 -0600362 cap = uc_priv->cap;
Stefan Reinauer48791f12012-10-29 05:23:51 +0000363 cap2 = readl(mmio + HOST_CAP2);
Simon Glasse0c419b2017-06-14 21:28:34 -0600364 impl = uc_priv->port_map;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800365
366 speed = (cap >> 20) & 0xf;
367 if (speed == 1)
368 speed_s = "1.5";
369 else if (speed == 2)
370 speed_s = "3";
Stefan Reinauer48791f12012-10-29 05:23:51 +0000371 else if (speed == 3)
372 speed_s = "6";
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800373 else
374 speed_s = "?";
375
Michal Simekc886f352016-09-08 15:06:45 +0200376#if defined(CONFIG_SCSI_AHCI_PLAT) || defined(CONFIG_DM_SCSI)
Rob Herringc2829ff2011-07-06 16:13:36 +0000377 scc_s = "SATA";
378#else
Simon Glass6f9135b2015-11-29 13:18:06 -0700379# ifdef CONFIG_DM_PCI
380 dm_pci_read_config16(dev, 0x0a, &cc);
381# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800382 pci_read_config_word(pdev, 0x0a, &cc);
Simon Glass6f9135b2015-11-29 13:18:06 -0700383# endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800384 if (cc == 0x0101)
385 scc_s = "IDE";
386 else if (cc == 0x0106)
387 scc_s = "SATA";
388 else if (cc == 0x0104)
389 scc_s = "RAID";
390 else
391 scc_s = "unknown";
Rob Herringc2829ff2011-07-06 16:13:36 +0000392#endif
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500393 printf("AHCI %02x%02x.%02x%02x "
394 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
395 (vers >> 24) & 0xff,
396 (vers >> 16) & 0xff,
397 (vers >> 8) & 0xff,
398 vers & 0xff,
399 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800400
401 printf("flags: "
Stefan Reinauer48791f12012-10-29 05:23:51 +0000402 "%s%s%s%s%s%s%s"
403 "%s%s%s%s%s%s%s"
404 "%s%s%s%s%s%s\n",
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500405 cap & (1 << 31) ? "64bit " : "",
406 cap & (1 << 30) ? "ncq " : "",
407 cap & (1 << 28) ? "ilck " : "",
408 cap & (1 << 27) ? "stag " : "",
409 cap & (1 << 26) ? "pm " : "",
410 cap & (1 << 25) ? "led " : "",
411 cap & (1 << 24) ? "clo " : "",
412 cap & (1 << 19) ? "nz " : "",
413 cap & (1 << 18) ? "only " : "",
414 cap & (1 << 17) ? "pmp " : "",
Stefan Reinauer48791f12012-10-29 05:23:51 +0000415 cap & (1 << 16) ? "fbss " : "",
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500416 cap & (1 << 15) ? "pio " : "",
417 cap & (1 << 14) ? "slum " : "",
Stefan Reinauer48791f12012-10-29 05:23:51 +0000418 cap & (1 << 13) ? "part " : "",
419 cap & (1 << 7) ? "ccc " : "",
420 cap & (1 << 6) ? "ems " : "",
421 cap & (1 << 5) ? "sxs " : "",
422 cap2 & (1 << 2) ? "apst " : "",
423 cap2 & (1 << 1) ? "nvmp " : "",
424 cap2 & (1 << 0) ? "boh " : "");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800425}
426
Rob Herringc2829ff2011-07-06 16:13:36 +0000427#ifndef CONFIG_SCSI_AHCI_PLAT
Michal Simekc886f352016-09-08 15:06:45 +0200428# if defined(CONFIG_DM_PCI) || defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700429static int ahci_init_one(struct udevice *dev)
430# else
431static int ahci_init_one(pci_dev_t dev)
432# endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800433{
Simon Glasse0c419b2017-06-14 21:28:34 -0600434 struct ahci_uc_priv *uc_priv;
Michal Simekc886f352016-09-08 15:06:45 +0200435#if !defined(CONFIG_DM_SCSI)
Ed Swarthout91080f72007-08-02 14:09:49 -0500436 u16 vendor;
Michal Simekc886f352016-09-08 15:06:45 +0200437#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800438 int rc;
439
Simon Glass5ce59672017-06-14 21:28:32 -0600440 probe_ent = malloc(sizeof(struct ahci_uc_priv));
Roger Quadros7b6cb612013-11-11 16:56:37 +0200441 if (!probe_ent) {
Simon Glasse0c419b2017-06-14 21:28:34 -0600442 printf("%s: No memory for uc_priv\n", __func__);
Roger Quadros7b6cb612013-11-11 16:56:37 +0200443 return -ENOMEM;
444 }
445
Simon Glasse0c419b2017-06-14 21:28:34 -0600446 uc_priv = probe_ent;
447 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
448 uc_priv->dev = dev;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800449
Simon Glasse0c419b2017-06-14 21:28:34 -0600450 uc_priv->host_flags = ATA_FLAG_SATA
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500451 | ATA_FLAG_NO_LEGACY
452 | ATA_FLAG_MMIO
453 | ATA_FLAG_PIO_DMA
454 | ATA_FLAG_NO_ATAPI;
Simon Glasse0c419b2017-06-14 21:28:34 -0600455 uc_priv->pio_mask = 0x1f;
456 uc_priv->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800457
Michal Simekc886f352016-09-08 15:06:45 +0200458#if !defined(CONFIG_DM_SCSI)
Simon Glass6f9135b2015-11-29 13:18:06 -0700459#ifdef CONFIG_DM_PCI
Simon Glasse0c419b2017-06-14 21:28:34 -0600460 uc_priv->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Simon Glass6f9135b2015-11-29 13:18:06 -0700461 PCI_REGION_MEM);
462
463 /* Take from kernel:
464 * JMicron-specific fixup:
465 * make sure we're in AHCI mode
466 */
467 dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor);
468 if (vendor == 0x197b)
469 dm_pci_write_config8(dev, 0x41, 0xa1);
470#else
Simon Glasse0c419b2017-06-14 21:28:34 -0600471 uc_priv->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5,
Scott Wood16519a32015-04-17 09:19:01 -0500472 PCI_REGION_MEM);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800473
474 /* Take from kernel:
475 * JMicron-specific fixup:
476 * make sure we're in AHCI mode
477 */
Simon Glass6f9135b2015-11-29 13:18:06 -0700478 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500479 if (vendor == 0x197b)
Simon Glass6f9135b2015-11-29 13:18:06 -0700480 pci_write_config_byte(dev, 0x41, 0xa1);
481#endif
Michal Simekc886f352016-09-08 15:06:45 +0200482#else
Simon Glassb08fbff2017-06-14 21:28:31 -0600483 struct scsi_platdata *plat = dev_get_uclass_platdata(dev);
Simon Glasse0c419b2017-06-14 21:28:34 -0600484 uc_priv->mmio_base = (void *)plat->base;
Michal Simekc886f352016-09-08 15:06:45 +0200485#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800486
Simon Glasse0c419b2017-06-14 21:28:34 -0600487 debug("ahci mmio_base=0x%p\n", uc_priv->mmio_base);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800488 /* initialize adapter */
Simon Glasse0c419b2017-06-14 21:28:34 -0600489 rc = ahci_host_init(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800490 if (rc)
491 goto err_out;
492
Simon Glasse0c419b2017-06-14 21:28:34 -0600493 ahci_print_info(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800494
495 return 0;
496
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500497 err_out:
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800498 return rc;
499}
Rob Herringc2829ff2011-07-06 16:13:36 +0000500#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800501
502#define MAX_DATA_BYTE_COUNT (4*1024*1024)
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500503
Simon Glasse0c419b2017-06-14 21:28:34 -0600504static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
505 unsigned char *buf, int buf_len)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800506{
Simon Glasse0c419b2017-06-14 21:28:34 -0600507 struct ahci_ioports *pp = &(uc_priv->port[port]);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800508 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
509 u32 sg_count;
510 int i;
511
512 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500513 if (sg_count > AHCI_MAX_SG) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800514 printf("Error:Too much sg!\n");
515 return -1;
516 }
517
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500518 for (i = 0; i < sg_count; i++) {
519 ahci_sg->addr =
Tang Yuantian3f262d02015-07-09 14:37:30 +0800520 cpu_to_le32((unsigned long) buf + i * MAX_DATA_BYTE_COUNT);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800521 ahci_sg->addr_hi = 0;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500522 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
523 (buf_len < MAX_DATA_BYTE_COUNT
524 ? (buf_len - 1)
525 : (MAX_DATA_BYTE_COUNT - 1)));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800526 ahci_sg++;
527 buf_len -= MAX_DATA_BYTE_COUNT;
528 }
529
530 return sg_count;
531}
532
533
534static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
535{
536 pp->cmd_slot->opts = cpu_to_le32(opts);
537 pp->cmd_slot->status = 0;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800538 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
539#ifdef CONFIG_PHYS_64BIT
540 pp->cmd_slot->tbl_addr_hi =
541 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
542#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800543}
544
Tang Yuantian3f262d02015-07-09 14:37:30 +0800545static int wait_spinup(void __iomem *port_mmio)
Bin Mengb138e912014-12-31 17:18:39 +0800546{
547 ulong start;
548 u32 tf_data;
549
550 start = get_timer(0);
551 do {
552 tf_data = readl(port_mmio + PORT_TFDATA);
553 if (!(tf_data & ATA_BUSY))
554 return 0;
555 } while (get_timer(start) < WAIT_MS_SPINUP);
556
557 return -ETIMEDOUT;
558}
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800559
Simon Glasse0c419b2017-06-14 21:28:34 -0600560static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800561{
Simon Glasse0c419b2017-06-14 21:28:34 -0600562 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800563 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800564 u32 port_status;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800565 void __iomem *mem;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800566
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500567 debug("Enter start port: %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800568 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500569 debug("Port %d status: %x\n", port, port_status);
570 if ((port_status & 0xf) != 0x03) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800571 printf("No Link on this port!\n");
572 return -1;
573 }
574
Tang Yuantian3f262d02015-07-09 14:37:30 +0800575 mem = malloc(AHCI_PORT_PRIV_DMA_SZ + 2048);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800576 if (!mem) {
577 free(pp);
Roger Quadros7b6cb612013-11-11 16:56:37 +0200578 printf("%s: No mem for table!\n", __func__);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800579 return -ENOMEM;
580 }
581
Tang Yuantian3f262d02015-07-09 14:37:30 +0800582 /* Aligned to 2048-bytes */
583 mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ);
584 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800585
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800586 /*
587 * First item in chunk of DMA memory: 32-slot command table,
588 * 32 bytes each in size
589 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000590 pp->cmd_slot =
591 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800592 debug("cmd_slot = %p\n", pp->cmd_slot);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800593 mem += (AHCI_CMD_SLOT_SZ + 224);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500594
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800595 /*
596 * Second item: Received-FIS area
597 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000598 pp->rx_fis = virt_to_phys((void *)mem);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800599 mem += AHCI_RX_FIS_SZ;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500600
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800601 /*
602 * Third item: data area for storing a single command
603 * and its scatter-gather table
604 */
Taylor Hutt3455f532012-10-29 05:23:58 +0000605 pp->cmd_tbl = virt_to_phys((void *)mem);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800606 debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800607
608 mem += AHCI_CMD_TBL_HDR;
Taylor Hutt3455f532012-10-29 05:23:58 +0000609 pp->cmd_tbl_sg =
610 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800611
Tang Yuantian3f262d02015-07-09 14:37:30 +0800612 writel_with_flush((unsigned long)pp->cmd_slot,
613 port_mmio + PORT_LST_ADDR);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800614
615 writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR);
616
Ian Campbella2ebf922014-07-18 20:38:41 +0100617#ifdef CONFIG_SUNXI_AHCI
618 sunxi_dma_init(port_mmio);
619#endif
620
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800621 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500622 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
623 PORT_CMD_START, port_mmio + PORT_CMD);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800624
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500625 debug("Exit start port %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800626
Bin Mengb138e912014-12-31 17:18:39 +0800627 /*
628 * Make sure interface is not busy based on error and status
629 * information from task file data register before proceeding
630 */
631 return wait_spinup(port_mmio);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800632}
633
634
Simon Glasse0c419b2017-06-14 21:28:34 -0600635static int ahci_device_data_io(struct ahci_uc_priv *uc_priv, u8 port, u8 *fis,
636 int fis_len, u8 *buf, int buf_len, u8 is_write)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800637{
638
Simon Glasse0c419b2017-06-14 21:28:34 -0600639 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800640 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800641 u32 opts;
642 u32 port_status;
643 int sg_count;
644
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000645 debug("Enter %s: for port %d\n", __func__, port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800646
Simon Glasse0c419b2017-06-14 21:28:34 -0600647 if (port > uc_priv->n_ports) {
Taylor Hutt1b1d42e2012-10-29 05:23:56 +0000648 printf("Invalid port number %d\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800649 return -1;
650 }
651
652 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500653 if ((port_status & 0xf) != 0x03) {
654 debug("No Link on port %d!\n", port);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800655 return -1;
656 }
657
658 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
659
Simon Glasse0c419b2017-06-14 21:28:34 -0600660 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000661 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800662 ahci_fill_cmd_slot(pp, opts);
663
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000664 ahci_dcache_flush_sata_cmd(pp);
Tang Yuantian3f262d02015-07-09 14:37:30 +0800665 ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len);
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000666
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800667 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
668
Walter Murphyefd49b42012-10-29 05:24:00 +0000669 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
670 WAIT_MS_DATAIO, 0x1)) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800671 printf("timeout exit!\n");
672 return -1;
673 }
Taylor Hutt33e4c2f2012-10-29 05:23:59 +0000674
Tang Yuantian3f262d02015-07-09 14:37:30 +0800675 ahci_dcache_invalidate_range((unsigned long)buf,
676 (unsigned long)buf_len);
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000677 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800678
679 return 0;
680}
681
682
683static char *ata_id_strcpy(u16 *target, u16 *src, int len)
684{
685 int i;
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500686 for (i = 0; i < len / 2; i++)
Rob Herring336018392011-06-01 09:10:26 +0000687 target[i] = swab16(src[i]);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800688 return (char *)target;
689}
690
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800691/*
692 * SCSI INQUIRY command operation.
693 */
Simon Glasscb875242017-06-14 21:28:33 -0600694static int ata_scsiop_inquiry(struct ahci_uc_priv *uc_priv,
695 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800696{
Rob Herring9855a232013-08-24 10:10:48 -0500697 static const u8 hdr[] = {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800698 0,
699 0,
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500700 0x5, /* claim SPC-3 version compatibility */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800701 2,
702 95 - 4,
703 };
704 u8 fis[20];
Roger Quadrosda3976e2014-04-01 17:26:40 +0300705 u16 *idbuf;
Roger Quadrosff56ee12013-11-11 16:56:38 +0200706 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800707 u8 port;
708
709 /* Clean ccb data buffer */
710 memset(pccb->pdata, 0, pccb->datalen);
711
712 memcpy(pccb->pdata, hdr, sizeof(hdr));
713
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500714 if (pccb->datalen <= 35)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800715 return 0;
716
Taylor Hutt54d0f552012-10-29 05:23:55 +0000717 memset(fis, 0, sizeof(fis));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800718 /* Construct the FIS */
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500719 fis[0] = 0x27; /* Host to device FIS. */
720 fis[1] = 1 << 7; /* Command FIS. */
Rob Herring83f66482013-08-24 10:10:54 -0500721 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800722
723 /* Read id from sata */
724 port = pccb->target;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800725
Simon Glasse0c419b2017-06-14 21:28:34 -0600726 if (ahci_device_data_io(uc_priv, port, (u8 *)&fis, sizeof(fis),
727 (u8 *)tmpid, ATA_ID_WORDS * 2, 0)) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800728 debug("scsi_ahci: SCSI inquiry command failure.\n");
729 return -EIO;
730 }
731
Simon Glasscb875242017-06-14 21:28:33 -0600732 if (!uc_priv->ataid[port]) {
733 uc_priv->ataid[port] = malloc(ATA_ID_WORDS * 2);
734 if (!uc_priv->ataid[port]) {
Roger Quadrosda3976e2014-04-01 17:26:40 +0300735 printf("%s: No memory for ataid[port]\n", __func__);
736 return -ENOMEM;
737 }
738 }
739
Simon Glasscb875242017-06-14 21:28:33 -0600740 idbuf = uc_priv->ataid[port];
Roger Quadrosda3976e2014-04-01 17:26:40 +0300741
742 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
743 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800744
745 memcpy(&pccb->pdata[8], "ATA ", 8);
Roger Quadrosda3976e2014-04-01 17:26:40 +0300746 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
747 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800748
Rob Herring83f66482013-08-24 10:10:54 -0500749#ifdef DEBUG
Roger Quadrosda3976e2014-04-01 17:26:40 +0300750 ata_dump_id(idbuf);
Rob Herring83f66482013-08-24 10:10:54 -0500751#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800752 return 0;
753}
754
755
756/*
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000757 * SCSI READ10/WRITE10 command operation.
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800758 */
Simon Glasse0c419b2017-06-14 21:28:34 -0600759static int ata_scsiop_read_write(struct ahci_uc_priv *uc_priv,
760 struct scsi_cmd *pccb, u8 is_write)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800761{
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100762 lbaint_t lba = 0;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000763 u16 blocks = 0;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800764 u8 fis[20];
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000765 u8 *user_buffer = pccb->pdata;
766 u32 user_buffer_size = pccb->datalen;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800767
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000768 /* Retrieve the base LBA number from the ccb structure. */
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100769 if (pccb->cmd[0] == SCSI_READ16) {
770 memcpy(&lba, pccb->cmd + 2, 8);
771 lba = be64_to_cpu(lba);
772 } else {
773 u32 temp;
774 memcpy(&temp, pccb->cmd + 2, 4);
775 lba = be32_to_cpu(temp);
776 }
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800777
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000778 /*
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100779 * Retrieve the base LBA number and the block count from
780 * the ccb structure.
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000781 *
782 * For 10-byte and 16-byte SCSI R/W commands, transfer
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800783 * length 0 means transfer 0 block of data.
784 * However, for ATA R/W commands, sector count 0 means
785 * 256 or 65536 sectors, not 0 sectors as in SCSI.
786 *
787 * WARNING: one or two older ATA drives treat 0 as 0...
788 */
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100789 if (pccb->cmd[0] == SCSI_READ16)
790 blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]);
791 else
792 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000793
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100794 debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n",
795 is_write ? "write" : "read", blocks, lba);
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000796
797 /* Preset the FIS */
Taylor Hutt54d0f552012-10-29 05:23:55 +0000798 memset(fis, 0, sizeof(fis));
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000799 fis[0] = 0x27; /* Host to device FIS. */
800 fis[1] = 1 << 7; /* Command FIS. */
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000801 /* Command byte (read/write). */
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000802 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800803
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000804 while (blocks) {
805 u16 now_blocks; /* number of blocks per iteration */
806 u32 transfer_size; /* number of bytes per iteration */
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800807
Masahiro Yamadadb204642014-11-07 03:03:31 +0900808 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800809
Rob Herring83f66482013-08-24 10:10:54 -0500810 transfer_size = ATA_SECT_SIZE * now_blocks;
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000811 if (transfer_size > user_buffer_size) {
812 printf("scsi_ahci: Error: buffer too small.\n");
813 return -EIO;
814 }
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800815
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100816 /*
817 * LBA48 SATA command but only use 32bit address range within
818 * that (unless we've enabled 64bit LBA support). The next
819 * smaller command range (28bit) is too small.
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000820 */
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000821 fis[4] = (lba >> 0) & 0xff;
822 fis[5] = (lba >> 8) & 0xff;
823 fis[6] = (lba >> 16) & 0xff;
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000824 fis[7] = 1 << 6; /* device reg: set LBA mode */
825 fis[8] = ((lba >> 24) & 0xff);
Mark Langsdorf5ed06fc2015-06-05 00:58:45 +0100826#ifdef CONFIG_SYS_64BIT_LBA
827 if (pccb->cmd[0] == SCSI_READ16) {
828 fis[9] = ((lba >> 32) & 0xff);
829 fis[10] = ((lba >> 40) & 0xff);
830 }
831#endif
832
Walter Murphyd1cb64b2012-10-29 05:24:03 +0000833 fis[3] = 0xe0; /* features */
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000834
835 /* Block (sector) count */
836 fis[12] = (now_blocks >> 0) & 0xff;
837 fis[13] = (now_blocks >> 8) & 0xff;
838
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000839 /* Read/Write from ahci */
Simon Glasse0c419b2017-06-14 21:28:34 -0600840 if (ahci_device_data_io(uc_priv, pccb->target, (u8 *)&fis,
841 sizeof(fis), user_buffer, transfer_size,
Hung-Te Lin0f10bd42012-10-29 05:23:53 +0000842 is_write)) {
843 debug("scsi_ahci: SCSI %s10 command failure.\n",
844 is_write ? "WRITE" : "READ");
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000845 return -EIO;
846 }
Marc Jones49ec4b12012-10-29 05:24:02 +0000847
848 /* If this transaction is a write, do a following flush.
849 * Writes in u-boot are so rare, and the logic to know when is
850 * the last write and do a flush only there is sufficiently
851 * difficult. Just do a flush after every write. This incurs,
852 * usually, one extra flush when the rare writes do happen.
853 */
854 if (is_write) {
Simon Glasse0c419b2017-06-14 21:28:34 -0600855 if (-EIO == ata_io_flush(uc_priv, pccb->target))
Marc Jones49ec4b12012-10-29 05:24:02 +0000856 return -EIO;
857 }
Vadim Bendebury700f85c2012-10-29 05:23:44 +0000858 user_buffer += transfer_size;
859 user_buffer_size -= transfer_size;
860 blocks -= now_blocks;
861 lba += now_blocks;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800862 }
863
864 return 0;
865}
866
867
868/*
869 * SCSI READ CAPACITY10 command operation.
870 */
Simon Glasscb875242017-06-14 21:28:33 -0600871static int ata_scsiop_read_capacity10(struct ahci_uc_priv *uc_priv,
872 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800873{
Kumar Gala8a190652009-07-13 09:24:00 -0500874 u32 cap;
Rob Herring83f66482013-08-24 10:10:54 -0500875 u64 cap64;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000876 u32 block_size;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800877
Simon Glasscb875242017-06-14 21:28:33 -0600878 if (!uc_priv->ataid[pccb->target]) {
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800879 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500880 "\tNo ATA info!\n"
Vagrant Cascadianbeb288b2015-11-24 14:46:24 -0800881 "\tPlease run SCSI command INQUIRY first!\n");
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800882 return -EPERM;
883 }
884
Simon Glasscb875242017-06-14 21:28:33 -0600885 cap64 = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Rob Herring83f66482013-08-24 10:10:54 -0500886 if (cap64 > 0x100000000ULL)
887 cap64 = 0xffffffff;
Gabe Blackdd2c7342012-10-29 05:23:54 +0000888
Rob Herring83f66482013-08-24 10:10:54 -0500889 cap = cpu_to_be32(cap64);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000890 memcpy(pccb->pdata, &cap, sizeof(cap));
891
892 block_size = cpu_to_be32((u32)512);
893 memcpy(&pccb->pdata[4], &block_size, 4);
894
895 return 0;
896}
897
898
899/*
900 * SCSI READ CAPACITY16 command operation.
901 */
Simon Glasscb875242017-06-14 21:28:33 -0600902static int ata_scsiop_read_capacity16(struct ahci_uc_priv *uc_priv,
903 struct scsi_cmd *pccb)
Gabe Blackdd2c7342012-10-29 05:23:54 +0000904{
905 u64 cap;
906 u64 block_size;
907
Simon Glasscb875242017-06-14 21:28:33 -0600908 if (!uc_priv->ataid[pccb->target]) {
Gabe Blackdd2c7342012-10-29 05:23:54 +0000909 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
910 "\tNo ATA info!\n"
Vagrant Cascadianbeb288b2015-11-24 14:46:24 -0800911 "\tPlease run SCSI command INQUIRY first!\n");
Gabe Blackdd2c7342012-10-29 05:23:54 +0000912 return -EPERM;
913 }
914
Simon Glasscb875242017-06-14 21:28:33 -0600915 cap = ata_id_n_sectors(uc_priv->ataid[pccb->target]);
Gabe Blackdd2c7342012-10-29 05:23:54 +0000916 cap = cpu_to_be64(cap);
Kumar Gala8a190652009-07-13 09:24:00 -0500917 memcpy(pccb->pdata, &cap, sizeof(cap));
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800918
Gabe Blackdd2c7342012-10-29 05:23:54 +0000919 block_size = cpu_to_be64((u64)512);
920 memcpy(&pccb->pdata[8], &block_size, 8);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800921
922 return 0;
923}
924
925
926/*
927 * SCSI TEST UNIT READY command operation.
928 */
Simon Glasscb875242017-06-14 21:28:33 -0600929static int ata_scsiop_test_unit_ready(struct ahci_uc_priv *uc_priv,
930 struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800931{
Simon Glasscb875242017-06-14 21:28:33 -0600932 return (uc_priv->ataid[pccb->target]) ? 0 : -EPERM;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800933}
934
Jon Loeligerc0b0cda2006-08-23 11:04:43 -0500935
Simon Glass5fb559d2017-06-14 21:28:30 -0600936int scsi_exec(struct scsi_cmd *pccb)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800937{
Simon Glasscb875242017-06-14 21:28:33 -0600938 struct ahci_uc_priv *uc_priv = probe_ent;
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
Michal Simekc886f352016-09-08 15:06:45 +0200993#if defined(CONFIG_DM_SCSI)
994void scsi_low_level_init(int busdevfunc, struct udevice *dev)
995#else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800996void scsi_low_level_init(int busdevfunc)
Michal Simekc886f352016-09-08 15:06:45 +0200997#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +0800998{
Simon Glasse0c419b2017-06-14 21:28:34 -0600999 struct ahci_uc_priv *uc_priv;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001000
Rob Herringc2829ff2011-07-06 16:13:36 +00001001#ifndef CONFIG_SCSI_AHCI_PLAT
Michal Simekc886f352016-09-08 15:06:45 +02001002# if defined(CONFIG_DM_PCI)
Simon Glass6f9135b2015-11-29 13:18:06 -07001003 struct udevice *dev;
1004 int ret;
1005
1006 ret = dm_pci_bus_find_bdf(busdevfunc, &dev);
1007 if (ret)
1008 return;
1009 ahci_init_one(dev);
Michal Simekc886f352016-09-08 15:06:45 +02001010# elif defined(CONFIG_DM_SCSI)
1011 ahci_init_one(dev);
Simon Glass6f9135b2015-11-29 13:18:06 -07001012# else
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001013 ahci_init_one(busdevfunc);
Simon Glass6f9135b2015-11-29 13:18:06 -07001014# endif
Rob Herringc2829ff2011-07-06 16:13:36 +00001015#endif
Simon Glasse0c419b2017-06-14 21:28:34 -06001016 uc_priv = probe_ent;
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001017
Simon Glass0a47bbb2017-06-14 21:28:36 -06001018 ahci_start_ports(uc_priv);
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001019}
1020
Rob Herringc2829ff2011-07-06 16:13:36 +00001021#ifdef CONFIG_SCSI_AHCI_PLAT
Scott Wood16519a32015-04-17 09:19:01 -05001022int ahci_init(void __iomem *base)
Rob Herringc2829ff2011-07-06 16:13:36 +00001023{
Simon Glasse0c419b2017-06-14 21:28:34 -06001024 struct ahci_uc_priv *uc_priv;
Simon Glass0a47bbb2017-06-14 21:28:36 -06001025 int rc = 0;
Rob Herringc2829ff2011-07-06 16:13:36 +00001026
Simon Glass5ce59672017-06-14 21:28:32 -06001027 probe_ent = malloc(sizeof(struct ahci_uc_priv));
Roger Quadros7b6cb612013-11-11 16:56:37 +02001028 if (!probe_ent) {
Simon Glasse0c419b2017-06-14 21:28:34 -06001029 printf("%s: No memory for uc_priv\n", __func__);
Roger Quadros7b6cb612013-11-11 16:56:37 +02001030 return -ENOMEM;
1031 }
1032
Simon Glasse0c419b2017-06-14 21:28:34 -06001033 uc_priv = probe_ent;
1034 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
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}
Ian Campbell19349962014-03-07 01:20:56 +00001058
1059void __weak scsi_init(void)
1060{
1061}
1062
Rob Herringc2829ff2011-07-06 16:13:36 +00001063#endif
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001064
Marc Jones49ec4b12012-10-29 05:24:02 +00001065/*
1066 * In the general case of generic rotating media it makes sense to have a
1067 * flush capability. It probably even makes sense in the case of SSDs because
1068 * one cannot always know for sure what kind of internal cache/flush mechanism
1069 * is embodied therein. At first it was planned to invoke this after the last
1070 * write to disk and before rebooting. In practice, knowing, a priori, which
1071 * is the last write is difficult. Because writing to the disk in u-boot is
1072 * very rare, this flush command will be invoked after every block write.
1073 */
Simon Glasse0c419b2017-06-14 21:28:34 -06001074static int ata_io_flush(struct ahci_uc_priv *uc_priv, u8 port)
Marc Jones49ec4b12012-10-29 05:24:02 +00001075{
1076 u8 fis[20];
Simon Glasse0c419b2017-06-14 21:28:34 -06001077 struct ahci_ioports *pp = &(uc_priv->port[port]);
Tang Yuantian3f262d02015-07-09 14:37:30 +08001078 void __iomem *port_mmio = pp->port_mmio;
Marc Jones49ec4b12012-10-29 05:24:02 +00001079 u32 cmd_fis_len = 5; /* five dwords */
1080
1081 /* Preset the FIS */
1082 memset(fis, 0, 20);
1083 fis[0] = 0x27; /* Host to device FIS. */
1084 fis[1] = 1 << 7; /* Command FIS. */
Walter Murphyd1cb64b2012-10-29 05:24:03 +00001085 fis[2] = ATA_CMD_FLUSH_EXT;
Marc Jones49ec4b12012-10-29 05:24:02 +00001086
1087 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1088 ahci_fill_cmd_slot(pp, cmd_fis_len);
Tang Yuantian93b99e02016-04-14 16:21:00 +08001089 ahci_dcache_flush_sata_cmd(pp);
Marc Jones49ec4b12012-10-29 05:24:02 +00001090 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1091
1092 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1093 WAIT_MS_FLUSH, 0x1)) {
1094 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1095 return -EIO;
1096 }
1097
1098 return 0;
1099}
1100
1101
Dmitry Lifshitz533d33f2014-12-15 16:02:56 +02001102__weak void scsi_bus_reset(void)
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001103{
Jon Loeligerc0b0cda2006-08-23 11:04:43 -05001104 /*Not implement*/
Jin Zhengxiongae180dc2006-08-23 19:10:44 +08001105}