blob: d29642be77339e6a2da694aebe4739ed9c07ef7c [file] [log] [blame]
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001/*
Kumar Gala4c2e3da2009-07-28 21:49:52 -05002 * Copyright (C) Freescale Semiconductor, Inc. 2006.
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08003 * Author: Jason Jin<Jason.jin@freescale.com>
4 * Zhang Wei<wei.zhang@freescale.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08007 *
8 * with the reference on libata and ahci drvier in kernel
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08009 */
10#include <common.h>
11
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080012#include <command.h>
Simon Glassff758cc2015-11-29 13:18:06 -070013#include <dm.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080014#include <pci.h>
15#include <asm/processor.h>
16#include <asm/errno.h>
17#include <asm/io.h>
18#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060019#include <memalign.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080020#include <scsi.h>
Rob Herring344ca0b2013-08-24 10:10:54 -050021#include <libata.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080022#include <linux/ctype.h>
23#include <ahci.h>
24
Marc Jones766b16f2012-10-29 05:24:02 +000025static int ata_io_flush(u8 port);
26
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080027struct ahci_probe_ent *probe_ent = NULL;
Rob Herring344ca0b2013-08-24 10:10:54 -050028u16 *ataid[AHCI_MAX_PORTS];
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080029
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050030#define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
31
Vadim Bendebury284231e2012-10-29 05:23:44 +000032/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +000033 * Some controllers limit number of blocks they can read/write at once.
34 * Contemporary SSD devices work much faster if the read/write size is aligned
35 * to a power of 2. Let's set default to 128 and allowing to be overwritten if
36 * needed.
Vadim Bendebury284231e2012-10-29 05:23:44 +000037 */
Hung-Te Linb7a21b72012-10-29 05:23:53 +000038#ifndef MAX_SATA_BLOCKS_READ_WRITE
39#define MAX_SATA_BLOCKS_READ_WRITE 0x80
Vadim Bendebury284231e2012-10-29 05:23:44 +000040#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080041
Walter Murphy57847662012-10-29 05:24:00 +000042/* Maximum timeouts for each event */
Rob Herring7610b412013-08-24 10:10:53 -050043#define WAIT_MS_SPINUP 20000
Mark Langsdorff8b009e2015-06-05 00:58:46 +010044#define WAIT_MS_DATAIO 10000
Marc Jones766b16f2012-10-29 05:24:02 +000045#define WAIT_MS_FLUSH 5000
Ian Campbelle0ddcf92014-07-18 20:38:39 +010046#define WAIT_MS_LINKUP 200
Walter Murphy57847662012-10-29 05:24:00 +000047
Tang Yuantianfa313772015-07-09 14:37:30 +080048static inline void __iomem *ahci_port_base(void __iomem *base, u32 port)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080049{
50 return base + 0x100 + (port * 0x80);
51}
52
53
Tang Yuantianfa313772015-07-09 14:37:30 +080054static void ahci_setup_port(struct ahci_ioports *port, void __iomem *base,
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080055 unsigned int port_idx)
56{
57 base = ahci_port_base(base, port_idx);
58
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050059 port->cmd_addr = base;
60 port->scr_addr = base + PORT_SCR;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080061}
62
63
64#define msleep(a) udelay(a * 1000)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050065
Tang Yuantianfa313772015-07-09 14:37:30 +080066static void ahci_dcache_flush_range(unsigned long begin, unsigned long len)
Taylor Hutt90b276f2012-10-29 05:23:59 +000067{
68 const unsigned long start = begin;
69 const unsigned long end = start + len;
70
71 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
72 flush_dcache_range(start, end);
73}
74
75/*
76 * SATA controller DMAs to physical RAM. Ensure data from the
77 * controller is invalidated from dcache; next access comes from
78 * physical RAM.
79 */
Tang Yuantianfa313772015-07-09 14:37:30 +080080static void ahci_dcache_invalidate_range(unsigned long begin, unsigned long len)
Taylor Hutt90b276f2012-10-29 05:23:59 +000081{
82 const unsigned long start = begin;
83 const unsigned long end = start + len;
84
85 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
86 invalidate_dcache_range(start, end);
87}
88
89/*
90 * Ensure data for SATA controller is flushed out of dcache and
91 * written to physical memory.
92 */
93static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
94{
95 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
96 AHCI_PORT_PRIV_DMA_SZ);
97}
98
Tang Yuantianfa313772015-07-09 14:37:30 +080099static int waiting_for_cmd_completed(void __iomem *offset,
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500100 int timeout_msec,
101 u32 sign)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800102{
103 int i;
104 u32 status;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500105
106 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800107 msleep(1);
108
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500109 return (i < timeout_msec) ? 0 : -1;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800110}
111
Rob Herring124e9fa2013-08-24 10:10:51 -0500112int __weak ahci_link_up(struct ahci_probe_ent *probe_ent, u8 port)
113{
114 u32 tmp;
115 int j = 0;
Tang Yuantianfa313772015-07-09 14:37:30 +0800116 void __iomem *port_mmio = probe_ent->port[port].port_mmio;
Rob Herring124e9fa2013-08-24 10:10:51 -0500117
Wolfgang Denk3765b3e2013-10-07 13:07:26 +0200118 /*
Rob Herring124e9fa2013-08-24 10:10:51 -0500119 * Bring up SATA link.
120 * SATA link bringup time is usually less than 1 ms; only very
121 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
122 */
123 while (j < WAIT_MS_LINKUP) {
124 tmp = readl(port_mmio + PORT_SCR_STAT);
125 tmp &= PORT_SCR_STAT_DET_MASK;
126 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
127 return 0;
128 udelay(1000);
129 j++;
130 }
131 return 1;
132}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800133
Ian Campbella6e50a82014-07-18 20:38:41 +0100134#ifdef CONFIG_SUNXI_AHCI
135/* The sunxi AHCI controller requires this undocumented setup */
Tang Yuantianfa313772015-07-09 14:37:30 +0800136static void sunxi_dma_init(void __iomem *port_mmio)
Ian Campbella6e50a82014-07-18 20:38:41 +0100137{
138 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
139}
140#endif
141
Scott Wood9efaca32015-04-17 09:19:01 -0500142int ahci_reset(void __iomem *base)
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200143{
144 int i = 1000;
Scott Wood9efaca32015-04-17 09:19:01 -0500145 u32 __iomem *host_ctl_reg = base + HOST_CTL;
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200146 u32 tmp = readl(host_ctl_reg); /* global controller reset */
147
148 if ((tmp & HOST_RESET) == 0)
149 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
150
151 /*
152 * reset must complete within 1 second, or
153 * the hardware should be considered fried.
154 */
155 do {
156 udelay(1000);
157 tmp = readl(host_ctl_reg);
158 i--;
159 } while ((i > 0) && (tmp & HOST_RESET));
160
161 if (i == 0) {
162 printf("controller reset failed (0x%x)\n", tmp);
163 return -1;
164 }
165
166 return 0;
167}
168
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800169static int ahci_host_init(struct ahci_probe_ent *probe_ent)
170{
Rob Herring942e3142011-07-06 16:13:36 +0000171#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-11-29 13:18:06 -0700172# ifdef CONFIG_DM_PCI
173 struct udevice *dev = probe_ent->dev;
174 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
175# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800176 pci_dev_t pdev = probe_ent->dev;
Rob Herring942e3142011-07-06 16:13:36 +0000177 unsigned short vendor;
Simon Glassff758cc2015-11-29 13:18:06 -0700178# endif
179 u16 tmp16;
Rob Herring942e3142011-07-06 16:13:36 +0000180#endif
Tang Yuantianfa313772015-07-09 14:37:30 +0800181 void __iomem *mmio = probe_ent->mmio_base;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000182 u32 tmp, cap_save, cmd;
Rob Herring124e9fa2013-08-24 10:10:51 -0500183 int i, j, ret;
Tang Yuantianfa313772015-07-09 14:37:30 +0800184 void __iomem *port_mmio;
Richard Gibbs2915a022013-08-24 10:10:47 -0500185 u32 port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800186
Vadim Bendebury284231e2012-10-29 05:23:44 +0000187 debug("ahci_host_init: start\n");
188
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800189 cap_save = readl(mmio + HOST_CAP);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500190 cap_save &= ((1 << 28) | (1 << 17));
Marc Jones2a0c61d2012-10-29 05:24:01 +0000191 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800192
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200193 ret = ahci_reset(probe_ent->mmio_base);
194 if (ret)
195 return ret;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800196
197 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
198 writel(cap_save, mmio + HOST_CAP);
199 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
200
Rob Herring942e3142011-07-06 16:13:36 +0000201#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-11-29 13:18:06 -0700202# ifdef CONFIG_DM_PCI
203 if (pplat->vendor == PCI_VENDOR_ID_INTEL) {
204 u16 tmp16;
205
206 dm_pci_read_config16(dev, 0x92, &tmp16);
207 dm_pci_write_config16(dev, 0x92, tmp16 | 0xf);
208 }
209# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800210 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
211
212 if (vendor == PCI_VENDOR_ID_INTEL) {
213 u16 tmp16;
214 pci_read_config_word(pdev, 0x92, &tmp16);
215 tmp16 |= 0xf;
216 pci_write_config_word(pdev, 0x92, tmp16);
217 }
Simon Glassff758cc2015-11-29 13:18:06 -0700218# endif
Rob Herring942e3142011-07-06 16:13:36 +0000219#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800220 probe_ent->cap = readl(mmio + HOST_CAP);
221 probe_ent->port_map = readl(mmio + HOST_PORTS_IMPL);
Richard Gibbs2915a022013-08-24 10:10:47 -0500222 port_map = probe_ent->port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800223 probe_ent->n_ports = (probe_ent->cap & 0x1f) + 1;
224
225 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500226 probe_ent->cap, probe_ent->port_map, probe_ent->n_ports);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800227
Vadim Bendebury284231e2012-10-29 05:23:44 +0000228 if (probe_ent->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
229 probe_ent->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
230
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800231 for (i = 0; i < probe_ent->n_ports; i++) {
Richard Gibbs2915a022013-08-24 10:10:47 -0500232 if (!(port_map & (1 << i)))
233 continue;
Tang Yuantianfa313772015-07-09 14:37:30 +0800234 probe_ent->port[i].port_mmio = ahci_port_base(mmio, i);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500235 port_mmio = (u8 *) probe_ent->port[i].port_mmio;
Tang Yuantianfa313772015-07-09 14:37:30 +0800236 ahci_setup_port(&probe_ent->port[i], mmio, i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800237
238 /* make sure port is not active */
239 tmp = readl(port_mmio + PORT_CMD);
240 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
241 PORT_CMD_FIS_RX | PORT_CMD_START)) {
Stefan Reinauer7ba79172012-10-29 05:23:50 +0000242 debug("Port %d is active. Deactivating.\n", i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800243 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
244 PORT_CMD_FIS_RX | PORT_CMD_START);
245 writel_with_flush(tmp, port_mmio + PORT_CMD);
246
247 /* spec says 500 msecs for each bit, so
248 * this is slightly incorrect.
249 */
250 msleep(500);
251 }
252
Ian Campbella6e50a82014-07-18 20:38:41 +0100253#ifdef CONFIG_SUNXI_AHCI
254 sunxi_dma_init(port_mmio);
255#endif
256
Marc Jones2a0c61d2012-10-29 05:24:01 +0000257 /* Add the spinup command to whatever mode bits may
258 * already be on in the command register.
259 */
260 cmd = readl(port_mmio + PORT_CMD);
Marc Jones2a0c61d2012-10-29 05:24:01 +0000261 cmd |= PORT_CMD_SPIN_UP;
262 writel_with_flush(cmd, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800263
Rob Herring124e9fa2013-08-24 10:10:51 -0500264 /* Bring up SATA link. */
265 ret = ahci_link_up(probe_ent, i);
266 if (ret) {
Marc Jones2a0c61d2012-10-29 05:24:01 +0000267 printf("SATA link %d timeout.\n", i);
268 continue;
269 } else {
270 debug("SATA link ok.\n");
271 }
272
273 /* Clear error status */
274 tmp = readl(port_mmio + PORT_SCR_ERR);
275 if (tmp)
276 writel(tmp, port_mmio + PORT_SCR_ERR);
277
278 debug("Spinning up device on SATA port %d... ", i);
279
280 j = 0;
281 while (j < WAIT_MS_SPINUP) {
282 tmp = readl(port_mmio + PORT_TFDATA);
Rob Herring344ca0b2013-08-24 10:10:54 -0500283 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
Marc Jones2a0c61d2012-10-29 05:24:01 +0000284 break;
285 udelay(1000);
Rob Herring17821082013-08-24 10:10:52 -0500286 tmp = readl(port_mmio + PORT_SCR_STAT);
287 tmp &= PORT_SCR_STAT_DET_MASK;
288 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
289 break;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000290 j++;
291 }
Rob Herring17821082013-08-24 10:10:52 -0500292
293 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
294 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
295 debug("SATA link %d down (COMINIT received), retrying...\n", i);
296 i--;
297 continue;
298 }
299
Marc Jones2a0c61d2012-10-29 05:24:01 +0000300 printf("Target spinup took %d ms.\n", j);
301 if (j == WAIT_MS_SPINUP)
Stefan Reinauer9a65b872012-10-29 05:23:49 +0000302 debug("timeout.\n");
303 else
304 debug("ok.\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800305
306 tmp = readl(port_mmio + PORT_SCR_ERR);
307 debug("PORT_SCR_ERR 0x%x\n", tmp);
308 writel(tmp, port_mmio + PORT_SCR_ERR);
309
310 /* ack any pending irq events for this port */
311 tmp = readl(port_mmio + PORT_IRQ_STAT);
312 debug("PORT_IRQ_STAT 0x%x\n", tmp);
313 if (tmp)
314 writel(tmp, port_mmio + PORT_IRQ_STAT);
315
316 writel(1 << i, mmio + HOST_IRQ_STAT);
317
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000318 /* register linkup ports */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800319 tmp = readl(port_mmio + PORT_SCR_STAT);
Marc Jones766b16f2012-10-29 05:24:02 +0000320 debug("SATA port %d status: 0x%x\n", i, tmp);
Rob Herring2bdb10d2013-08-24 10:10:50 -0500321 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500322 probe_ent->link_port_map |= (0x01 << i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800323 }
324
325 tmp = readl(mmio + HOST_CTL);
326 debug("HOST_CTL 0x%x\n", tmp);
327 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
328 tmp = readl(mmio + HOST_CTL);
329 debug("HOST_CTL 0x%x\n", tmp);
Rob Herring942e3142011-07-06 16:13:36 +0000330#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-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 Zhengxiong4782ac82006-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 Glassff758cc2015-11-29 13:18:06 -0700339# endif
Rob Herring942e3142011-07-06 16:13:36 +0000340#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800341 return 0;
342}
343
344
345static void ahci_print_info(struct ahci_probe_ent *probe_ent)
346{
Rob Herring942e3142011-07-06 16:13:36 +0000347#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-11-29 13:18:06 -0700348# ifdef CONFIG_DM_PCI
349 struct udevice *dev = probe_ent->dev;
350# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800351 pci_dev_t pdev = probe_ent->dev;
Simon Glassff758cc2015-11-29 13:18:06 -0700352# endif
Rob Herring942e3142011-07-06 16:13:36 +0000353 u16 cc;
354#endif
Tang Yuantianfa313772015-07-09 14:37:30 +0800355 void __iomem *mmio = probe_ent->mmio_base;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000356 u32 vers, cap, cap2, impl, speed;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800357 const char *speed_s;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800358 const char *scc_s;
359
360 vers = readl(mmio + HOST_VERSION);
361 cap = probe_ent->cap;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000362 cap2 = readl(mmio + HOST_CAP2);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800363 impl = probe_ent->port_map;
364
365 speed = (cap >> 20) & 0xf;
366 if (speed == 1)
367 speed_s = "1.5";
368 else if (speed == 2)
369 speed_s = "3";
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000370 else if (speed == 3)
371 speed_s = "6";
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800372 else
373 speed_s = "?";
374
Rob Herring942e3142011-07-06 16:13:36 +0000375#ifdef CONFIG_SCSI_AHCI_PLAT
376 scc_s = "SATA";
377#else
Simon Glassff758cc2015-11-29 13:18:06 -0700378# ifdef CONFIG_DM_PCI
379 dm_pci_read_config16(dev, 0x0a, &cc);
380# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800381 pci_read_config_word(pdev, 0x0a, &cc);
Simon Glassff758cc2015-11-29 13:18:06 -0700382# endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800383 if (cc == 0x0101)
384 scc_s = "IDE";
385 else if (cc == 0x0106)
386 scc_s = "SATA";
387 else if (cc == 0x0104)
388 scc_s = "RAID";
389 else
390 scc_s = "unknown";
Rob Herring942e3142011-07-06 16:13:36 +0000391#endif
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500392 printf("AHCI %02x%02x.%02x%02x "
393 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
394 (vers >> 24) & 0xff,
395 (vers >> 16) & 0xff,
396 (vers >> 8) & 0xff,
397 vers & 0xff,
398 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800399
400 printf("flags: "
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000401 "%s%s%s%s%s%s%s"
402 "%s%s%s%s%s%s%s"
403 "%s%s%s%s%s%s\n",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500404 cap & (1 << 31) ? "64bit " : "",
405 cap & (1 << 30) ? "ncq " : "",
406 cap & (1 << 28) ? "ilck " : "",
407 cap & (1 << 27) ? "stag " : "",
408 cap & (1 << 26) ? "pm " : "",
409 cap & (1 << 25) ? "led " : "",
410 cap & (1 << 24) ? "clo " : "",
411 cap & (1 << 19) ? "nz " : "",
412 cap & (1 << 18) ? "only " : "",
413 cap & (1 << 17) ? "pmp " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000414 cap & (1 << 16) ? "fbss " : "",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500415 cap & (1 << 15) ? "pio " : "",
416 cap & (1 << 14) ? "slum " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000417 cap & (1 << 13) ? "part " : "",
418 cap & (1 << 7) ? "ccc " : "",
419 cap & (1 << 6) ? "ems " : "",
420 cap & (1 << 5) ? "sxs " : "",
421 cap2 & (1 << 2) ? "apst " : "",
422 cap2 & (1 << 1) ? "nvmp " : "",
423 cap2 & (1 << 0) ? "boh " : "");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800424}
425
Rob Herring942e3142011-07-06 16:13:36 +0000426#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-11-29 13:18:06 -0700427# ifdef CONFIG_DM_PCI
428static int ahci_init_one(struct udevice *dev)
429# else
430static int ahci_init_one(pci_dev_t dev)
431# endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800432{
Ed Swarthout63cec582007-08-02 14:09:49 -0500433 u16 vendor;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800434 int rc;
435
Ed Swarthout594e7982007-08-14 14:06:45 -0500436 probe_ent = malloc(sizeof(struct ahci_probe_ent));
Roger Quadrosd73763a2013-11-11 16:56:37 +0200437 if (!probe_ent) {
438 printf("%s: No memory for probe_ent\n", __func__);
439 return -ENOMEM;
440 }
441
Ed Swarthout594e7982007-08-14 14:06:45 -0500442 memset(probe_ent, 0, sizeof(struct ahci_probe_ent));
Simon Glassff758cc2015-11-29 13:18:06 -0700443 probe_ent->dev = dev;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800444
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500445 probe_ent->host_flags = ATA_FLAG_SATA
446 | ATA_FLAG_NO_LEGACY
447 | ATA_FLAG_MMIO
448 | ATA_FLAG_PIO_DMA
449 | ATA_FLAG_NO_ATAPI;
450 probe_ent->pio_mask = 0x1f;
451 probe_ent->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800452
Simon Glassff758cc2015-11-29 13:18:06 -0700453#ifdef CONFIG_DM_PCI
454 probe_ent->mmio_base = dm_pci_map_bar(dev, PCI_BASE_ADDRESS_5,
455 PCI_REGION_MEM);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800456
457 /* Take from kernel:
458 * JMicron-specific fixup:
459 * make sure we're in AHCI mode
460 */
Simon Glassff758cc2015-11-29 13:18:06 -0700461 dm_pci_read_config16(dev, PCI_VENDOR_ID, &vendor);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500462 if (vendor == 0x197b)
Simon Glassff758cc2015-11-29 13:18:06 -0700463 dm_pci_write_config8(dev, 0x41, 0xa1);
464#else
465 probe_ent->mmio_base = pci_map_bar(dev, PCI_BASE_ADDRESS_5,
466 PCI_REGION_MEM);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800467
Simon Glassff758cc2015-11-29 13:18:06 -0700468 /* Take from kernel:
469 * JMicron-specific fixup:
470 * make sure we're in AHCI mode
471 */
472 pci_read_config_word(dev, PCI_VENDOR_ID, &vendor);
473 if (vendor == 0x197b)
474 pci_write_config_byte(dev, 0x41, 0xa1);
475#endif
476
477 debug("ahci mmio_base=0x%p\n", probe_ent->mmio_base);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800478 /* initialize adapter */
479 rc = ahci_host_init(probe_ent);
480 if (rc)
481 goto err_out;
482
483 ahci_print_info(probe_ent);
484
485 return 0;
486
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500487 err_out:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800488 return rc;
489}
Rob Herring942e3142011-07-06 16:13:36 +0000490#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800491
492#define MAX_DATA_BYTE_COUNT (4*1024*1024)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500493
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800494static int ahci_fill_sg(u8 port, unsigned char *buf, int buf_len)
495{
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800496 struct ahci_ioports *pp = &(probe_ent->port[port]);
497 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
498 u32 sg_count;
499 int i;
500
501 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500502 if (sg_count > AHCI_MAX_SG) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800503 printf("Error:Too much sg!\n");
504 return -1;
505 }
506
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500507 for (i = 0; i < sg_count; i++) {
508 ahci_sg->addr =
Tang Yuantianfa313772015-07-09 14:37:30 +0800509 cpu_to_le32((unsigned long) buf + i * MAX_DATA_BYTE_COUNT);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800510 ahci_sg->addr_hi = 0;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500511 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
512 (buf_len < MAX_DATA_BYTE_COUNT
513 ? (buf_len - 1)
514 : (MAX_DATA_BYTE_COUNT - 1)));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800515 ahci_sg++;
516 buf_len -= MAX_DATA_BYTE_COUNT;
517 }
518
519 return sg_count;
520}
521
522
523static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
524{
525 pp->cmd_slot->opts = cpu_to_le32(opts);
526 pp->cmd_slot->status = 0;
Tang Yuantianfa313772015-07-09 14:37:30 +0800527 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
528#ifdef CONFIG_PHYS_64BIT
529 pp->cmd_slot->tbl_addr_hi =
530 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
531#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800532}
533
Tang Yuantianfa313772015-07-09 14:37:30 +0800534static int wait_spinup(void __iomem *port_mmio)
Bin Meng4df2b482014-12-31 17:18:39 +0800535{
536 ulong start;
537 u32 tf_data;
538
539 start = get_timer(0);
540 do {
541 tf_data = readl(port_mmio + PORT_TFDATA);
542 if (!(tf_data & ATA_BUSY))
543 return 0;
544 } while (get_timer(start) < WAIT_MS_SPINUP);
545
546 return -ETIMEDOUT;
547}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800548
549static int ahci_port_start(u8 port)
550{
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800551 struct ahci_ioports *pp = &(probe_ent->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +0800552 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800553 u32 port_status;
Tang Yuantianfa313772015-07-09 14:37:30 +0800554 void __iomem *mem;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800555
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500556 debug("Enter start port: %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800557 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500558 debug("Port %d status: %x\n", port, port_status);
559 if ((port_status & 0xf) != 0x03) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800560 printf("No Link on this port!\n");
561 return -1;
562 }
563
Tang Yuantianfa313772015-07-09 14:37:30 +0800564 mem = malloc(AHCI_PORT_PRIV_DMA_SZ + 2048);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800565 if (!mem) {
566 free(pp);
Roger Quadrosd73763a2013-11-11 16:56:37 +0200567 printf("%s: No mem for table!\n", __func__);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800568 return -ENOMEM;
569 }
570
Tang Yuantianfa313772015-07-09 14:37:30 +0800571 /* Aligned to 2048-bytes */
572 mem = memalign(2048, AHCI_PORT_PRIV_DMA_SZ);
573 memset(mem, 0, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800574
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800575 /*
576 * First item in chunk of DMA memory: 32-slot command table,
577 * 32 bytes each in size
578 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000579 pp->cmd_slot =
580 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
Tang Yuantianfa313772015-07-09 14:37:30 +0800581 debug("cmd_slot = %p\n", pp->cmd_slot);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800582 mem += (AHCI_CMD_SLOT_SZ + 224);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500583
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800584 /*
585 * Second item: Received-FIS area
586 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000587 pp->rx_fis = virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800588 mem += AHCI_RX_FIS_SZ;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500589
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800590 /*
591 * Third item: data area for storing a single command
592 * and its scatter-gather table
593 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000594 pp->cmd_tbl = virt_to_phys((void *)mem);
Tang Yuantianfa313772015-07-09 14:37:30 +0800595 debug("cmd_tbl_dma = %lx\n", pp->cmd_tbl);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800596
597 mem += AHCI_CMD_TBL_HDR;
Taylor Hutt64738e82012-10-29 05:23:58 +0000598 pp->cmd_tbl_sg =
599 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800600
Tang Yuantianfa313772015-07-09 14:37:30 +0800601 writel_with_flush((unsigned long)pp->cmd_slot,
602 port_mmio + PORT_LST_ADDR);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800603
604 writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR);
605
Ian Campbella6e50a82014-07-18 20:38:41 +0100606#ifdef CONFIG_SUNXI_AHCI
607 sunxi_dma_init(port_mmio);
608#endif
609
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800610 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500611 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
612 PORT_CMD_START, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800613
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500614 debug("Exit start port %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800615
Bin Meng4df2b482014-12-31 17:18:39 +0800616 /*
617 * Make sure interface is not busy based on error and status
618 * information from task file data register before proceeding
619 */
620 return wait_spinup(port_mmio);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800621}
622
623
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000624static int ahci_device_data_io(u8 port, u8 *fis, int fis_len, u8 *buf,
625 int buf_len, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800626{
627
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500628 struct ahci_ioports *pp = &(probe_ent->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +0800629 void __iomem *port_mmio = pp->port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800630 u32 opts;
631 u32 port_status;
632 int sg_count;
633
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000634 debug("Enter %s: for port %d\n", __func__, port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800635
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500636 if (port > probe_ent->n_ports) {
Taylor Hutt5a2b77f2012-10-29 05:23:56 +0000637 printf("Invalid port number %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800638 return -1;
639 }
640
641 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500642 if ((port_status & 0xf) != 0x03) {
643 debug("No Link on port %d!\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800644 return -1;
645 }
646
647 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
648
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500649 sg_count = ahci_fill_sg(port, buf, buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000650 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800651 ahci_fill_cmd_slot(pp, opts);
652
Taylor Hutt90b276f2012-10-29 05:23:59 +0000653 ahci_dcache_flush_sata_cmd(pp);
Tang Yuantianfa313772015-07-09 14:37:30 +0800654 ahci_dcache_flush_range((unsigned long)buf, (unsigned long)buf_len);
Taylor Hutt90b276f2012-10-29 05:23:59 +0000655
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800656 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
657
Walter Murphy57847662012-10-29 05:24:00 +0000658 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
659 WAIT_MS_DATAIO, 0x1)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800660 printf("timeout exit!\n");
661 return -1;
662 }
Taylor Hutt90b276f2012-10-29 05:23:59 +0000663
Tang Yuantianfa313772015-07-09 14:37:30 +0800664 ahci_dcache_invalidate_range((unsigned long)buf,
665 (unsigned long)buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000666 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800667
668 return 0;
669}
670
671
672static char *ata_id_strcpy(u16 *target, u16 *src, int len)
673{
674 int i;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500675 for (i = 0; i < len / 2; i++)
Rob Herringe5a6c792011-06-01 09:10:26 +0000676 target[i] = swab16(src[i]);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800677 return (char *)target;
678}
679
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800680/*
681 * SCSI INQUIRY command operation.
682 */
683static int ata_scsiop_inquiry(ccb *pccb)
684{
Rob Herring48c3a872013-08-24 10:10:48 -0500685 static const u8 hdr[] = {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800686 0,
687 0,
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500688 0x5, /* claim SPC-3 version compatibility */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800689 2,
690 95 - 4,
691 };
692 u8 fis[20];
Roger Quadros3f629712014-04-01 17:26:40 +0300693 u16 *idbuf;
Roger Quadros2faf5fb2013-11-11 16:56:38 +0200694 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800695 u8 port;
696
697 /* Clean ccb data buffer */
698 memset(pccb->pdata, 0, pccb->datalen);
699
700 memcpy(pccb->pdata, hdr, sizeof(hdr));
701
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500702 if (pccb->datalen <= 35)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800703 return 0;
704
Taylor Huttc8731112012-10-29 05:23:55 +0000705 memset(fis, 0, sizeof(fis));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800706 /* Construct the FIS */
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500707 fis[0] = 0x27; /* Host to device FIS. */
708 fis[1] = 1 << 7; /* Command FIS. */
Rob Herring344ca0b2013-08-24 10:10:54 -0500709 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800710
711 /* Read id from sata */
712 port = pccb->target;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800713
Rob Herring344ca0b2013-08-24 10:10:54 -0500714 if (ahci_device_data_io(port, (u8 *) &fis, sizeof(fis), (u8 *)tmpid,
715 ATA_ID_WORDS * 2, 0)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800716 debug("scsi_ahci: SCSI inquiry command failure.\n");
717 return -EIO;
718 }
719
Roger Quadros3f629712014-04-01 17:26:40 +0300720 if (!ataid[port]) {
721 ataid[port] = malloc(ATA_ID_WORDS * 2);
722 if (!ataid[port]) {
723 printf("%s: No memory for ataid[port]\n", __func__);
724 return -ENOMEM;
725 }
726 }
727
728 idbuf = ataid[port];
729
730 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
731 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800732
733 memcpy(&pccb->pdata[8], "ATA ", 8);
Roger Quadros3f629712014-04-01 17:26:40 +0300734 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
735 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800736
Rob Herring344ca0b2013-08-24 10:10:54 -0500737#ifdef DEBUG
Roger Quadros3f629712014-04-01 17:26:40 +0300738 ata_dump_id(idbuf);
Rob Herring344ca0b2013-08-24 10:10:54 -0500739#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800740 return 0;
741}
742
743
744/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000745 * SCSI READ10/WRITE10 command operation.
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800746 */
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000747static int ata_scsiop_read_write(ccb *pccb, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800748{
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100749 lbaint_t lba = 0;
Vadim Bendebury284231e2012-10-29 05:23:44 +0000750 u16 blocks = 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800751 u8 fis[20];
Vadim Bendebury284231e2012-10-29 05:23:44 +0000752 u8 *user_buffer = pccb->pdata;
753 u32 user_buffer_size = pccb->datalen;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800754
Vadim Bendebury284231e2012-10-29 05:23:44 +0000755 /* Retrieve the base LBA number from the ccb structure. */
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100756 if (pccb->cmd[0] == SCSI_READ16) {
757 memcpy(&lba, pccb->cmd + 2, 8);
758 lba = be64_to_cpu(lba);
759 } else {
760 u32 temp;
761 memcpy(&temp, pccb->cmd + 2, 4);
762 lba = be32_to_cpu(temp);
763 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800764
Vadim Bendebury284231e2012-10-29 05:23:44 +0000765 /*
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100766 * Retrieve the base LBA number and the block count from
767 * the ccb structure.
Vadim Bendebury284231e2012-10-29 05:23:44 +0000768 *
769 * For 10-byte and 16-byte SCSI R/W commands, transfer
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800770 * length 0 means transfer 0 block of data.
771 * However, for ATA R/W commands, sector count 0 means
772 * 256 or 65536 sectors, not 0 sectors as in SCSI.
773 *
774 * WARNING: one or two older ATA drives treat 0 as 0...
775 */
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100776 if (pccb->cmd[0] == SCSI_READ16)
777 blocks = (((u16)pccb->cmd[13]) << 8) | ((u16) pccb->cmd[14]);
778 else
779 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000780
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100781 debug("scsi_ahci: %s %u blocks starting from lba 0x" LBAFU "\n",
782 is_write ? "write" : "read", blocks, lba);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000783
784 /* Preset the FIS */
Taylor Huttc8731112012-10-29 05:23:55 +0000785 memset(fis, 0, sizeof(fis));
Vadim Bendebury284231e2012-10-29 05:23:44 +0000786 fis[0] = 0x27; /* Host to device FIS. */
787 fis[1] = 1 << 7; /* Command FIS. */
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000788 /* Command byte (read/write). */
Walter Murphyfe1f8082012-10-29 05:24:03 +0000789 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800790
Vadim Bendebury284231e2012-10-29 05:23:44 +0000791 while (blocks) {
792 u16 now_blocks; /* number of blocks per iteration */
793 u32 transfer_size; /* number of bytes per iteration */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800794
Masahiro Yamadab4141192014-11-07 03:03:31 +0900795 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800796
Rob Herring344ca0b2013-08-24 10:10:54 -0500797 transfer_size = ATA_SECT_SIZE * now_blocks;
Vadim Bendebury284231e2012-10-29 05:23:44 +0000798 if (transfer_size > user_buffer_size) {
799 printf("scsi_ahci: Error: buffer too small.\n");
800 return -EIO;
801 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800802
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100803 /*
804 * LBA48 SATA command but only use 32bit address range within
805 * that (unless we've enabled 64bit LBA support). The next
806 * smaller command range (28bit) is too small.
Walter Murphyfe1f8082012-10-29 05:24:03 +0000807 */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000808 fis[4] = (lba >> 0) & 0xff;
809 fis[5] = (lba >> 8) & 0xff;
810 fis[6] = (lba >> 16) & 0xff;
Walter Murphyfe1f8082012-10-29 05:24:03 +0000811 fis[7] = 1 << 6; /* device reg: set LBA mode */
812 fis[8] = ((lba >> 24) & 0xff);
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100813#ifdef CONFIG_SYS_64BIT_LBA
814 if (pccb->cmd[0] == SCSI_READ16) {
815 fis[9] = ((lba >> 32) & 0xff);
816 fis[10] = ((lba >> 40) & 0xff);
817 }
818#endif
819
Walter Murphyfe1f8082012-10-29 05:24:03 +0000820 fis[3] = 0xe0; /* features */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000821
822 /* Block (sector) count */
823 fis[12] = (now_blocks >> 0) & 0xff;
824 fis[13] = (now_blocks >> 8) & 0xff;
825
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000826 /* Read/Write from ahci */
827 if (ahci_device_data_io(pccb->target, (u8 *) &fis, sizeof(fis),
Tang Yuantian8f6e1832015-03-31 15:02:43 +0800828 user_buffer, transfer_size,
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000829 is_write)) {
830 debug("scsi_ahci: SCSI %s10 command failure.\n",
831 is_write ? "WRITE" : "READ");
Vadim Bendebury284231e2012-10-29 05:23:44 +0000832 return -EIO;
833 }
Marc Jones766b16f2012-10-29 05:24:02 +0000834
835 /* If this transaction is a write, do a following flush.
836 * Writes in u-boot are so rare, and the logic to know when is
837 * the last write and do a flush only there is sufficiently
838 * difficult. Just do a flush after every write. This incurs,
839 * usually, one extra flush when the rare writes do happen.
840 */
841 if (is_write) {
842 if (-EIO == ata_io_flush(pccb->target))
843 return -EIO;
844 }
Vadim Bendebury284231e2012-10-29 05:23:44 +0000845 user_buffer += transfer_size;
846 user_buffer_size -= transfer_size;
847 blocks -= now_blocks;
848 lba += now_blocks;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800849 }
850
851 return 0;
852}
853
854
855/*
856 * SCSI READ CAPACITY10 command operation.
857 */
858static int ata_scsiop_read_capacity10(ccb *pccb)
859{
Kumar Galacb6d0b72009-07-13 09:24:00 -0500860 u32 cap;
Rob Herring344ca0b2013-08-24 10:10:54 -0500861 u64 cap64;
Gabe Black19d1d412012-10-29 05:23:54 +0000862 u32 block_size;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800863
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500864 if (!ataid[pccb->target]) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800865 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500866 "\tNo ATA info!\n"
Vagrant Cascadian1b25e582015-11-24 14:46:24 -0800867 "\tPlease run SCSI command INQUIRY first!\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800868 return -EPERM;
869 }
870
Rob Herring344ca0b2013-08-24 10:10:54 -0500871 cap64 = ata_id_n_sectors(ataid[pccb->target]);
872 if (cap64 > 0x100000000ULL)
873 cap64 = 0xffffffff;
Gabe Black19d1d412012-10-29 05:23:54 +0000874
Rob Herring344ca0b2013-08-24 10:10:54 -0500875 cap = cpu_to_be32(cap64);
Kumar Galacb6d0b72009-07-13 09:24:00 -0500876 memcpy(pccb->pdata, &cap, sizeof(cap));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800877
Gabe Black19d1d412012-10-29 05:23:54 +0000878 block_size = cpu_to_be32((u32)512);
879 memcpy(&pccb->pdata[4], &block_size, 4);
880
881 return 0;
882}
883
884
885/*
886 * SCSI READ CAPACITY16 command operation.
887 */
888static int ata_scsiop_read_capacity16(ccb *pccb)
889{
890 u64 cap;
891 u64 block_size;
892
893 if (!ataid[pccb->target]) {
894 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
895 "\tNo ATA info!\n"
Vagrant Cascadian1b25e582015-11-24 14:46:24 -0800896 "\tPlease run SCSI command INQUIRY first!\n");
Gabe Black19d1d412012-10-29 05:23:54 +0000897 return -EPERM;
898 }
899
Rob Herring344ca0b2013-08-24 10:10:54 -0500900 cap = ata_id_n_sectors(ataid[pccb->target]);
Gabe Black19d1d412012-10-29 05:23:54 +0000901 cap = cpu_to_be64(cap);
902 memcpy(pccb->pdata, &cap, sizeof(cap));
903
904 block_size = cpu_to_be64((u64)512);
905 memcpy(&pccb->pdata[8], &block_size, 8);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800906
907 return 0;
908}
909
910
911/*
912 * SCSI TEST UNIT READY command operation.
913 */
914static int ata_scsiop_test_unit_ready(ccb *pccb)
915{
916 return (ataid[pccb->target]) ? 0 : -EPERM;
917}
918
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500919
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800920int scsi_exec(ccb *pccb)
921{
922 int ret;
923
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500924 switch (pccb->cmd[0]) {
Mark Langsdorf2b42c932015-06-05 00:58:45 +0100925 case SCSI_READ16:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800926 case SCSI_READ10:
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000927 ret = ata_scsiop_read_write(pccb, 0);
928 break;
929 case SCSI_WRITE10:
930 ret = ata_scsiop_read_write(pccb, 1);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800931 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000932 case SCSI_RD_CAPAC10:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800933 ret = ata_scsiop_read_capacity10(pccb);
934 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000935 case SCSI_RD_CAPAC16:
936 ret = ata_scsiop_read_capacity16(pccb);
937 break;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800938 case SCSI_TST_U_RDY:
939 ret = ata_scsiop_test_unit_ready(pccb);
940 break;
941 case SCSI_INQUIRY:
942 ret = ata_scsiop_inquiry(pccb);
943 break;
944 default:
945 printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
York Sun472d5462013-04-01 11:29:11 -0700946 return false;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800947 }
948
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500949 if (ret) {
950 debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
York Sun472d5462013-04-01 11:29:11 -0700951 return false;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800952 }
York Sun472d5462013-04-01 11:29:11 -0700953 return true;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800954
955}
956
957
958void scsi_low_level_init(int busdevfunc)
959{
960 int i;
961 u32 linkmap;
962
Rob Herring942e3142011-07-06 16:13:36 +0000963#ifndef CONFIG_SCSI_AHCI_PLAT
Simon Glassff758cc2015-11-29 13:18:06 -0700964# ifdef CONFIG_DM_PCI
965 struct udevice *dev;
966 int ret;
967
968 ret = dm_pci_bus_find_bdf(busdevfunc, &dev);
969 if (ret)
970 return;
971 ahci_init_one(dev);
972# else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800973 ahci_init_one(busdevfunc);
Simon Glassff758cc2015-11-29 13:18:06 -0700974# endif
Rob Herring942e3142011-07-06 16:13:36 +0000975#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800976
977 linkmap = probe_ent->link_port_map;
978
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200979 for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500980 if (((linkmap >> i) & 0x01)) {
981 if (ahci_port_start((u8) i)) {
982 printf("Can not start port %d\n", i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800983 continue;
984 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800985 }
986 }
987}
988
Rob Herring942e3142011-07-06 16:13:36 +0000989#ifdef CONFIG_SCSI_AHCI_PLAT
Scott Wood9efaca32015-04-17 09:19:01 -0500990int ahci_init(void __iomem *base)
Rob Herring942e3142011-07-06 16:13:36 +0000991{
992 int i, rc = 0;
993 u32 linkmap;
994
Rob Herring942e3142011-07-06 16:13:36 +0000995 probe_ent = malloc(sizeof(struct ahci_probe_ent));
Roger Quadrosd73763a2013-11-11 16:56:37 +0200996 if (!probe_ent) {
997 printf("%s: No memory for probe_ent\n", __func__);
998 return -ENOMEM;
999 }
1000
Rob Herring942e3142011-07-06 16:13:36 +00001001 memset(probe_ent, 0, sizeof(struct ahci_probe_ent));
1002
1003 probe_ent->host_flags = ATA_FLAG_SATA
1004 | ATA_FLAG_NO_LEGACY
1005 | ATA_FLAG_MMIO
1006 | ATA_FLAG_PIO_DMA
1007 | ATA_FLAG_NO_ATAPI;
1008 probe_ent->pio_mask = 0x1f;
1009 probe_ent->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
1010
1011 probe_ent->mmio_base = base;
1012
1013 /* initialize adapter */
1014 rc = ahci_host_init(probe_ent);
1015 if (rc)
1016 goto err_out;
1017
1018 ahci_print_info(probe_ent);
1019
1020 linkmap = probe_ent->link_port_map;
1021
1022 for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
1023 if (((linkmap >> i) & 0x01)) {
1024 if (ahci_port_start((u8) i)) {
1025 printf("Can not start port %d\n", i);
1026 continue;
1027 }
Rob Herring942e3142011-07-06 16:13:36 +00001028 }
1029 }
1030err_out:
1031 return rc;
1032}
Ian Campbellc6f3d502014-03-07 01:20:56 +00001033
1034void __weak scsi_init(void)
1035{
1036}
1037
Rob Herring942e3142011-07-06 16:13:36 +00001038#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001039
Marc Jones766b16f2012-10-29 05:24:02 +00001040/*
1041 * In the general case of generic rotating media it makes sense to have a
1042 * flush capability. It probably even makes sense in the case of SSDs because
1043 * one cannot always know for sure what kind of internal cache/flush mechanism
1044 * is embodied therein. At first it was planned to invoke this after the last
1045 * write to disk and before rebooting. In practice, knowing, a priori, which
1046 * is the last write is difficult. Because writing to the disk in u-boot is
1047 * very rare, this flush command will be invoked after every block write.
1048 */
1049static int ata_io_flush(u8 port)
1050{
1051 u8 fis[20];
1052 struct ahci_ioports *pp = &(probe_ent->port[port]);
Tang Yuantianfa313772015-07-09 14:37:30 +08001053 void __iomem *port_mmio = pp->port_mmio;
Marc Jones766b16f2012-10-29 05:24:02 +00001054 u32 cmd_fis_len = 5; /* five dwords */
1055
1056 /* Preset the FIS */
1057 memset(fis, 0, 20);
1058 fis[0] = 0x27; /* Host to device FIS. */
1059 fis[1] = 1 << 7; /* Command FIS. */
Walter Murphyfe1f8082012-10-29 05:24:03 +00001060 fis[2] = ATA_CMD_FLUSH_EXT;
Marc Jones766b16f2012-10-29 05:24:02 +00001061
1062 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1063 ahci_fill_cmd_slot(pp, cmd_fis_len);
1064 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1065
1066 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1067 WAIT_MS_FLUSH, 0x1)) {
1068 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1069 return -EIO;
1070 }
1071
1072 return 0;
1073}
1074
1075
Dmitry Lifshitz1a33b732014-12-15 16:02:56 +02001076__weak void scsi_bus_reset(void)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001077{
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -05001078 /*Not implement*/
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001079}
1080
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -05001081void scsi_print_error(ccb * pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001082{
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -05001083 /*The ahci error info can be read in the ahci driver*/
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001084}