blob: 37d2d2a28eef53bbd2477b7bb06b37f415e68735 [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>
13#include <pci.h>
14#include <asm/processor.h>
15#include <asm/errno.h>
16#include <asm/io.h>
17#include <malloc.h>
18#include <scsi.h>
Rob Herring344ca0b2013-08-24 10:10:54 -050019#include <libata.h>
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080020#include <linux/ctype.h>
21#include <ahci.h>
22
Marc Jones766b16f2012-10-29 05:24:02 +000023static int ata_io_flush(u8 port);
24
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080025struct ahci_probe_ent *probe_ent = NULL;
Rob Herring344ca0b2013-08-24 10:10:54 -050026u16 *ataid[AHCI_MAX_PORTS];
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080027
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050028#define writel_with_flush(a,b) do { writel(a,b); readl(b); } while (0)
29
Vadim Bendebury284231e2012-10-29 05:23:44 +000030/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +000031 * Some controllers limit number of blocks they can read/write at once.
32 * Contemporary SSD devices work much faster if the read/write size is aligned
33 * to a power of 2. Let's set default to 128 and allowing to be overwritten if
34 * needed.
Vadim Bendebury284231e2012-10-29 05:23:44 +000035 */
Hung-Te Linb7a21b72012-10-29 05:23:53 +000036#ifndef MAX_SATA_BLOCKS_READ_WRITE
37#define MAX_SATA_BLOCKS_READ_WRITE 0x80
Vadim Bendebury284231e2012-10-29 05:23:44 +000038#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080039
Walter Murphy57847662012-10-29 05:24:00 +000040/* Maximum timeouts for each event */
Rob Herring7610b412013-08-24 10:10:53 -050041#define WAIT_MS_SPINUP 20000
Walter Murphy57847662012-10-29 05:24:00 +000042#define WAIT_MS_DATAIO 5000
Marc Jones766b16f2012-10-29 05:24:02 +000043#define WAIT_MS_FLUSH 5000
Ian Campbelle0ddcf92014-07-18 20:38:39 +010044#define WAIT_MS_LINKUP 200
Walter Murphy57847662012-10-29 05:24:00 +000045
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080046static inline u32 ahci_port_base(u32 base, u32 port)
47{
48 return base + 0x100 + (port * 0x80);
49}
50
51
52static void ahci_setup_port(struct ahci_ioports *port, unsigned long base,
53 unsigned int port_idx)
54{
55 base = ahci_port_base(base, port_idx);
56
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050057 port->cmd_addr = base;
58 port->scr_addr = base + PORT_SCR;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +080059}
60
61
62#define msleep(a) udelay(a * 1000)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050063
Taylor Hutt90b276f2012-10-29 05:23:59 +000064static void ahci_dcache_flush_range(unsigned begin, unsigned len)
65{
66 const unsigned long start = begin;
67 const unsigned long end = start + len;
68
69 debug("%s: flush dcache: [%#lx, %#lx)\n", __func__, start, end);
70 flush_dcache_range(start, end);
71}
72
73/*
74 * SATA controller DMAs to physical RAM. Ensure data from the
75 * controller is invalidated from dcache; next access comes from
76 * physical RAM.
77 */
78static void ahci_dcache_invalidate_range(unsigned begin, unsigned len)
79{
80 const unsigned long start = begin;
81 const unsigned long end = start + len;
82
83 debug("%s: invalidate dcache: [%#lx, %#lx)\n", __func__, start, end);
84 invalidate_dcache_range(start, end);
85}
86
87/*
88 * Ensure data for SATA controller is flushed out of dcache and
89 * written to physical memory.
90 */
91static void ahci_dcache_flush_sata_cmd(struct ahci_ioports *pp)
92{
93 ahci_dcache_flush_range((unsigned long)pp->cmd_slot,
94 AHCI_PORT_PRIV_DMA_SZ);
95}
96
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -050097static int waiting_for_cmd_completed(volatile u8 *offset,
98 int timeout_msec,
99 u32 sign)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800100{
101 int i;
102 u32 status;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500103
104 for (i = 0; ((status = readl(offset)) & sign) && i < timeout_msec; i++)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800105 msleep(1);
106
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500107 return (i < timeout_msec) ? 0 : -1;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800108}
109
Rob Herring124e9fa2013-08-24 10:10:51 -0500110int __weak ahci_link_up(struct ahci_probe_ent *probe_ent, u8 port)
111{
112 u32 tmp;
113 int j = 0;
114 u8 *port_mmio = (u8 *)probe_ent->port[port].port_mmio;
115
Wolfgang Denk3765b3e2013-10-07 13:07:26 +0200116 /*
Rob Herring124e9fa2013-08-24 10:10:51 -0500117 * Bring up SATA link.
118 * SATA link bringup time is usually less than 1 ms; only very
119 * rarely has it taken between 1-2 ms. Never seen it above 2 ms.
120 */
121 while (j < WAIT_MS_LINKUP) {
122 tmp = readl(port_mmio + PORT_SCR_STAT);
123 tmp &= PORT_SCR_STAT_DET_MASK;
124 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
125 return 0;
126 udelay(1000);
127 j++;
128 }
129 return 1;
130}
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800131
Ian Campbella6e50a82014-07-18 20:38:41 +0100132#ifdef CONFIG_SUNXI_AHCI
133/* The sunxi AHCI controller requires this undocumented setup */
134static void sunxi_dma_init(volatile u8 *port_mmio)
135{
136 clrsetbits_le32(port_mmio + PORT_P0DMACR, 0x0000ff00, 0x00004400);
137}
138#endif
139
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200140int ahci_reset(u32 base)
141{
142 int i = 1000;
143 u32 host_ctl_reg = base + HOST_CTL;
144 u32 tmp = readl(host_ctl_reg); /* global controller reset */
145
146 if ((tmp & HOST_RESET) == 0)
147 writel_with_flush(tmp | HOST_RESET, host_ctl_reg);
148
149 /*
150 * reset must complete within 1 second, or
151 * the hardware should be considered fried.
152 */
153 do {
154 udelay(1000);
155 tmp = readl(host_ctl_reg);
156 i--;
157 } while ((i > 0) && (tmp & HOST_RESET));
158
159 if (i == 0) {
160 printf("controller reset failed (0x%x)\n", tmp);
161 return -1;
162 }
163
164 return 0;
165}
166
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800167static int ahci_host_init(struct ahci_probe_ent *probe_ent)
168{
Rob Herring942e3142011-07-06 16:13:36 +0000169#ifndef CONFIG_SCSI_AHCI_PLAT
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800170 pci_dev_t pdev = probe_ent->dev;
Rob Herring942e3142011-07-06 16:13:36 +0000171 u16 tmp16;
172 unsigned short vendor;
173#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800174 volatile u8 *mmio = (volatile u8 *)probe_ent->mmio_base;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000175 u32 tmp, cap_save, cmd;
Rob Herring124e9fa2013-08-24 10:10:51 -0500176 int i, j, ret;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500177 volatile u8 *port_mmio;
Richard Gibbs2915a022013-08-24 10:10:47 -0500178 u32 port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800179
Vadim Bendebury284231e2012-10-29 05:23:44 +0000180 debug("ahci_host_init: start\n");
181
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800182 cap_save = readl(mmio + HOST_CAP);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500183 cap_save &= ((1 << 28) | (1 << 17));
Marc Jones2a0c61d2012-10-29 05:24:01 +0000184 cap_save |= (1 << 27); /* Staggered Spin-up. Not needed. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800185
Dmitry Lifshitz6b688882014-12-15 16:02:55 +0200186 ret = ahci_reset(probe_ent->mmio_base);
187 if (ret)
188 return ret;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800189
190 writel_with_flush(HOST_AHCI_EN, mmio + HOST_CTL);
191 writel(cap_save, mmio + HOST_CAP);
192 writel_with_flush(0xf, mmio + HOST_PORTS_IMPL);
193
Rob Herring942e3142011-07-06 16:13:36 +0000194#ifndef CONFIG_SCSI_AHCI_PLAT
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800195 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
196
197 if (vendor == PCI_VENDOR_ID_INTEL) {
198 u16 tmp16;
199 pci_read_config_word(pdev, 0x92, &tmp16);
200 tmp16 |= 0xf;
201 pci_write_config_word(pdev, 0x92, tmp16);
202 }
Rob Herring942e3142011-07-06 16:13:36 +0000203#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800204 probe_ent->cap = readl(mmio + HOST_CAP);
205 probe_ent->port_map = readl(mmio + HOST_PORTS_IMPL);
Richard Gibbs2915a022013-08-24 10:10:47 -0500206 port_map = probe_ent->port_map;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800207 probe_ent->n_ports = (probe_ent->cap & 0x1f) + 1;
208
209 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500210 probe_ent->cap, probe_ent->port_map, probe_ent->n_ports);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800211
Vadim Bendebury284231e2012-10-29 05:23:44 +0000212 if (probe_ent->n_ports > CONFIG_SYS_SCSI_MAX_SCSI_ID)
213 probe_ent->n_ports = CONFIG_SYS_SCSI_MAX_SCSI_ID;
214
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800215 for (i = 0; i < probe_ent->n_ports; i++) {
Richard Gibbs2915a022013-08-24 10:10:47 -0500216 if (!(port_map & (1 << i)))
217 continue;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500218 probe_ent->port[i].port_mmio = ahci_port_base((u32) mmio, i);
219 port_mmio = (u8 *) probe_ent->port[i].port_mmio;
220 ahci_setup_port(&probe_ent->port[i], (unsigned long)mmio, i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800221
222 /* make sure port is not active */
223 tmp = readl(port_mmio + PORT_CMD);
224 if (tmp & (PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
225 PORT_CMD_FIS_RX | PORT_CMD_START)) {
Stefan Reinauer7ba79172012-10-29 05:23:50 +0000226 debug("Port %d is active. Deactivating.\n", i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800227 tmp &= ~(PORT_CMD_LIST_ON | PORT_CMD_FIS_ON |
228 PORT_CMD_FIS_RX | PORT_CMD_START);
229 writel_with_flush(tmp, port_mmio + PORT_CMD);
230
231 /* spec says 500 msecs for each bit, so
232 * this is slightly incorrect.
233 */
234 msleep(500);
235 }
236
Ian Campbella6e50a82014-07-18 20:38:41 +0100237#ifdef CONFIG_SUNXI_AHCI
238 sunxi_dma_init(port_mmio);
239#endif
240
Marc Jones2a0c61d2012-10-29 05:24:01 +0000241 /* Add the spinup command to whatever mode bits may
242 * already be on in the command register.
243 */
244 cmd = readl(port_mmio + PORT_CMD);
Marc Jones2a0c61d2012-10-29 05:24:01 +0000245 cmd |= PORT_CMD_SPIN_UP;
246 writel_with_flush(cmd, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800247
Rob Herring124e9fa2013-08-24 10:10:51 -0500248 /* Bring up SATA link. */
249 ret = ahci_link_up(probe_ent, i);
250 if (ret) {
Marc Jones2a0c61d2012-10-29 05:24:01 +0000251 printf("SATA link %d timeout.\n", i);
252 continue;
253 } else {
254 debug("SATA link ok.\n");
255 }
256
257 /* Clear error status */
258 tmp = readl(port_mmio + PORT_SCR_ERR);
259 if (tmp)
260 writel(tmp, port_mmio + PORT_SCR_ERR);
261
262 debug("Spinning up device on SATA port %d... ", i);
263
264 j = 0;
265 while (j < WAIT_MS_SPINUP) {
266 tmp = readl(port_mmio + PORT_TFDATA);
Rob Herring344ca0b2013-08-24 10:10:54 -0500267 if (!(tmp & (ATA_BUSY | ATA_DRQ)))
Marc Jones2a0c61d2012-10-29 05:24:01 +0000268 break;
269 udelay(1000);
Rob Herring17821082013-08-24 10:10:52 -0500270 tmp = readl(port_mmio + PORT_SCR_STAT);
271 tmp &= PORT_SCR_STAT_DET_MASK;
272 if (tmp == PORT_SCR_STAT_DET_PHYRDY)
273 break;
Marc Jones2a0c61d2012-10-29 05:24:01 +0000274 j++;
275 }
Rob Herring17821082013-08-24 10:10:52 -0500276
277 tmp = readl(port_mmio + PORT_SCR_STAT) & PORT_SCR_STAT_DET_MASK;
278 if (tmp == PORT_SCR_STAT_DET_COMINIT) {
279 debug("SATA link %d down (COMINIT received), retrying...\n", i);
280 i--;
281 continue;
282 }
283
Marc Jones2a0c61d2012-10-29 05:24:01 +0000284 printf("Target spinup took %d ms.\n", j);
285 if (j == WAIT_MS_SPINUP)
Stefan Reinauer9a65b872012-10-29 05:23:49 +0000286 debug("timeout.\n");
287 else
288 debug("ok.\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800289
290 tmp = readl(port_mmio + PORT_SCR_ERR);
291 debug("PORT_SCR_ERR 0x%x\n", tmp);
292 writel(tmp, port_mmio + PORT_SCR_ERR);
293
294 /* ack any pending irq events for this port */
295 tmp = readl(port_mmio + PORT_IRQ_STAT);
296 debug("PORT_IRQ_STAT 0x%x\n", tmp);
297 if (tmp)
298 writel(tmp, port_mmio + PORT_IRQ_STAT);
299
300 writel(1 << i, mmio + HOST_IRQ_STAT);
301
302 /* set irq mask (enables interrupts) */
303 writel(DEF_PORT_IRQ, port_mmio + PORT_IRQ_MASK);
304
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000305 /* register linkup ports */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800306 tmp = readl(port_mmio + PORT_SCR_STAT);
Marc Jones766b16f2012-10-29 05:24:02 +0000307 debug("SATA port %d status: 0x%x\n", i, tmp);
Rob Herring2bdb10d2013-08-24 10:10:50 -0500308 if ((tmp & PORT_SCR_STAT_DET_MASK) == PORT_SCR_STAT_DET_PHYRDY)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500309 probe_ent->link_port_map |= (0x01 << i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800310 }
311
312 tmp = readl(mmio + HOST_CTL);
313 debug("HOST_CTL 0x%x\n", tmp);
314 writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL);
315 tmp = readl(mmio + HOST_CTL);
316 debug("HOST_CTL 0x%x\n", tmp);
Rob Herring942e3142011-07-06 16:13:36 +0000317#ifndef CONFIG_SCSI_AHCI_PLAT
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800318 pci_read_config_word(pdev, PCI_COMMAND, &tmp16);
319 tmp |= PCI_COMMAND_MASTER;
320 pci_write_config_word(pdev, PCI_COMMAND, tmp16);
Rob Herring942e3142011-07-06 16:13:36 +0000321#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800322 return 0;
323}
324
325
326static void ahci_print_info(struct ahci_probe_ent *probe_ent)
327{
Rob Herring942e3142011-07-06 16:13:36 +0000328#ifndef CONFIG_SCSI_AHCI_PLAT
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800329 pci_dev_t pdev = probe_ent->dev;
Rob Herring942e3142011-07-06 16:13:36 +0000330 u16 cc;
331#endif
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500332 volatile u8 *mmio = (volatile u8 *)probe_ent->mmio_base;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000333 u32 vers, cap, cap2, impl, speed;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800334 const char *speed_s;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800335 const char *scc_s;
336
337 vers = readl(mmio + HOST_VERSION);
338 cap = probe_ent->cap;
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000339 cap2 = readl(mmio + HOST_CAP2);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800340 impl = probe_ent->port_map;
341
342 speed = (cap >> 20) & 0xf;
343 if (speed == 1)
344 speed_s = "1.5";
345 else if (speed == 2)
346 speed_s = "3";
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000347 else if (speed == 3)
348 speed_s = "6";
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800349 else
350 speed_s = "?";
351
Rob Herring942e3142011-07-06 16:13:36 +0000352#ifdef CONFIG_SCSI_AHCI_PLAT
353 scc_s = "SATA";
354#else
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800355 pci_read_config_word(pdev, 0x0a, &cc);
356 if (cc == 0x0101)
357 scc_s = "IDE";
358 else if (cc == 0x0106)
359 scc_s = "SATA";
360 else if (cc == 0x0104)
361 scc_s = "RAID";
362 else
363 scc_s = "unknown";
Rob Herring942e3142011-07-06 16:13:36 +0000364#endif
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500365 printf("AHCI %02x%02x.%02x%02x "
366 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
367 (vers >> 24) & 0xff,
368 (vers >> 16) & 0xff,
369 (vers >> 8) & 0xff,
370 vers & 0xff,
371 ((cap >> 8) & 0x1f) + 1, (cap & 0x1f) + 1, speed_s, impl, scc_s);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800372
373 printf("flags: "
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000374 "%s%s%s%s%s%s%s"
375 "%s%s%s%s%s%s%s"
376 "%s%s%s%s%s%s\n",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500377 cap & (1 << 31) ? "64bit " : "",
378 cap & (1 << 30) ? "ncq " : "",
379 cap & (1 << 28) ? "ilck " : "",
380 cap & (1 << 27) ? "stag " : "",
381 cap & (1 << 26) ? "pm " : "",
382 cap & (1 << 25) ? "led " : "",
383 cap & (1 << 24) ? "clo " : "",
384 cap & (1 << 19) ? "nz " : "",
385 cap & (1 << 18) ? "only " : "",
386 cap & (1 << 17) ? "pmp " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000387 cap & (1 << 16) ? "fbss " : "",
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500388 cap & (1 << 15) ? "pio " : "",
389 cap & (1 << 14) ? "slum " : "",
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000390 cap & (1 << 13) ? "part " : "",
391 cap & (1 << 7) ? "ccc " : "",
392 cap & (1 << 6) ? "ems " : "",
393 cap & (1 << 5) ? "sxs " : "",
394 cap2 & (1 << 2) ? "apst " : "",
395 cap2 & (1 << 1) ? "nvmp " : "",
396 cap2 & (1 << 0) ? "boh " : "");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800397}
398
Rob Herring942e3142011-07-06 16:13:36 +0000399#ifndef CONFIG_SCSI_AHCI_PLAT
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500400static int ahci_init_one(pci_dev_t pdev)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800401{
Ed Swarthout63cec582007-08-02 14:09:49 -0500402 u16 vendor;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800403 int rc;
404
Ed Swarthout594e7982007-08-14 14:06:45 -0500405 probe_ent = malloc(sizeof(struct ahci_probe_ent));
Roger Quadrosd73763a2013-11-11 16:56:37 +0200406 if (!probe_ent) {
407 printf("%s: No memory for probe_ent\n", __func__);
408 return -ENOMEM;
409 }
410
Ed Swarthout594e7982007-08-14 14:06:45 -0500411 memset(probe_ent, 0, sizeof(struct ahci_probe_ent));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800412 probe_ent->dev = pdev;
413
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500414 probe_ent->host_flags = ATA_FLAG_SATA
415 | ATA_FLAG_NO_LEGACY
416 | ATA_FLAG_MMIO
417 | ATA_FLAG_PIO_DMA
418 | ATA_FLAG_NO_ATAPI;
419 probe_ent->pio_mask = 0x1f;
420 probe_ent->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800421
Vadim Bendebury284231e2012-10-29 05:23:44 +0000422 pci_read_config_dword(pdev, PCI_BASE_ADDRESS_5, &probe_ent->mmio_base);
423 debug("ahci mmio_base=0x%08x\n", probe_ent->mmio_base);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800424
425 /* Take from kernel:
426 * JMicron-specific fixup:
427 * make sure we're in AHCI mode
428 */
429 pci_read_config_word(pdev, PCI_VENDOR_ID, &vendor);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500430 if (vendor == 0x197b)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800431 pci_write_config_byte(pdev, 0x41, 0xa1);
432
433 /* initialize adapter */
434 rc = ahci_host_init(probe_ent);
435 if (rc)
436 goto err_out;
437
438 ahci_print_info(probe_ent);
439
440 return 0;
441
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500442 err_out:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800443 return rc;
444}
Rob Herring942e3142011-07-06 16:13:36 +0000445#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800446
447#define MAX_DATA_BYTE_COUNT (4*1024*1024)
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500448
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800449static int ahci_fill_sg(u8 port, unsigned char *buf, int buf_len)
450{
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800451 struct ahci_ioports *pp = &(probe_ent->port[port]);
452 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
453 u32 sg_count;
454 int i;
455
456 sg_count = ((buf_len - 1) / MAX_DATA_BYTE_COUNT) + 1;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500457 if (sg_count > AHCI_MAX_SG) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800458 printf("Error:Too much sg!\n");
459 return -1;
460 }
461
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500462 for (i = 0; i < sg_count; i++) {
463 ahci_sg->addr =
464 cpu_to_le32((u32) buf + i * MAX_DATA_BYTE_COUNT);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800465 ahci_sg->addr_hi = 0;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500466 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
467 (buf_len < MAX_DATA_BYTE_COUNT
468 ? (buf_len - 1)
469 : (MAX_DATA_BYTE_COUNT - 1)));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800470 ahci_sg++;
471 buf_len -= MAX_DATA_BYTE_COUNT;
472 }
473
474 return sg_count;
475}
476
477
478static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 opts)
479{
480 pp->cmd_slot->opts = cpu_to_le32(opts);
481 pp->cmd_slot->status = 0;
482 pp->cmd_slot->tbl_addr = cpu_to_le32(pp->cmd_tbl & 0xffffffff);
483 pp->cmd_slot->tbl_addr_hi = 0;
484}
485
486
Gabe Blacke81058c2012-10-29 05:23:52 +0000487#ifdef CONFIG_AHCI_SETFEATURES_XFER
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800488static void ahci_set_feature(u8 port)
489{
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800490 struct ahci_ioports *pp = &(probe_ent->port[port]);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500491 volatile u8 *port_mmio = (volatile u8 *)pp->port_mmio;
492 u32 cmd_fis_len = 5; /* five dwords */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800493 u8 fis[20];
494
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000495 /* set feature */
Taylor Huttc8731112012-10-29 05:23:55 +0000496 memset(fis, 0, sizeof(fis));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800497 fis[0] = 0x27;
498 fis[1] = 1 << 7;
Rob Herring344ca0b2013-08-24 10:10:54 -0500499 fis[2] = ATA_CMD_SET_FEATURES;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800500 fis[3] = SETFEATURES_XFER;
501 fis[12] = __ilog2(probe_ent->udma_mask + 1) + 0x40 - 0x01;
502
Taylor Huttc8731112012-10-29 05:23:55 +0000503 memcpy((unsigned char *)pp->cmd_tbl, fis, sizeof(fis));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800504 ahci_fill_cmd_slot(pp, cmd_fis_len);
Taylor Hutt90b276f2012-10-29 05:23:59 +0000505 ahci_dcache_flush_sata_cmd(pp);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800506 writel(1, port_mmio + PORT_CMD_ISSUE);
507 readl(port_mmio + PORT_CMD_ISSUE);
508
Walter Murphy57847662012-10-29 05:24:00 +0000509 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
510 WAIT_MS_DATAIO, 0x1)) {
Stefan Reinauer4e422bc2012-10-29 05:23:51 +0000511 printf("set feature error on port %d!\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800512 }
513}
Gabe Blacke81058c2012-10-29 05:23:52 +0000514#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800515
516
517static int ahci_port_start(u8 port)
518{
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800519 struct ahci_ioports *pp = &(probe_ent->port[port]);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500520 volatile u8 *port_mmio = (volatile u8 *)pp->port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800521 u32 port_status;
522 u32 mem;
523
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500524 debug("Enter start port: %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800525 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500526 debug("Port %d status: %x\n", port, port_status);
527 if ((port_status & 0xf) != 0x03) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800528 printf("No Link on this port!\n");
529 return -1;
530 }
531
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500532 mem = (u32) malloc(AHCI_PORT_PRIV_DMA_SZ + 2048);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800533 if (!mem) {
534 free(pp);
Roger Quadrosd73763a2013-11-11 16:56:37 +0200535 printf("%s: No mem for table!\n", __func__);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800536 return -ENOMEM;
537 }
538
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500539 mem = (mem + 0x800) & (~0x7ff); /* Aligned to 2048-bytes */
540 memset((u8 *) mem, 0, AHCI_PORT_PRIV_DMA_SZ);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800541
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800542 /*
543 * First item in chunk of DMA memory: 32-slot command table,
544 * 32 bytes each in size
545 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000546 pp->cmd_slot =
547 (struct ahci_cmd_hdr *)(uintptr_t)virt_to_phys((void *)mem);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000548 debug("cmd_slot = 0x%x\n", (unsigned)pp->cmd_slot);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800549 mem += (AHCI_CMD_SLOT_SZ + 224);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500550
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800551 /*
552 * Second item: Received-FIS area
553 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000554 pp->rx_fis = virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800555 mem += AHCI_RX_FIS_SZ;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500556
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800557 /*
558 * Third item: data area for storing a single command
559 * and its scatter-gather table
560 */
Taylor Hutt64738e82012-10-29 05:23:58 +0000561 pp->cmd_tbl = virt_to_phys((void *)mem);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500562 debug("cmd_tbl_dma = 0x%x\n", pp->cmd_tbl);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800563
564 mem += AHCI_CMD_TBL_HDR;
Taylor Hutt64738e82012-10-29 05:23:58 +0000565 pp->cmd_tbl_sg =
566 (struct ahci_sg *)(uintptr_t)virt_to_phys((void *)mem);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800567
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500568 writel_with_flush((u32) pp->cmd_slot, port_mmio + PORT_LST_ADDR);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800569
570 writel_with_flush(pp->rx_fis, port_mmio + PORT_FIS_ADDR);
571
Ian Campbella6e50a82014-07-18 20:38:41 +0100572#ifdef CONFIG_SUNXI_AHCI
573 sunxi_dma_init(port_mmio);
574#endif
575
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800576 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500577 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
578 PORT_CMD_START, port_mmio + PORT_CMD);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800579
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500580 debug("Exit start port %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800581
582 return 0;
583}
584
585
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000586static int ahci_device_data_io(u8 port, u8 *fis, int fis_len, u8 *buf,
587 int buf_len, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800588{
589
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500590 struct ahci_ioports *pp = &(probe_ent->port[port]);
591 volatile u8 *port_mmio = (volatile u8 *)pp->port_mmio;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800592 u32 opts;
593 u32 port_status;
594 int sg_count;
595
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000596 debug("Enter %s: for port %d\n", __func__, port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800597
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500598 if (port > probe_ent->n_ports) {
Taylor Hutt5a2b77f2012-10-29 05:23:56 +0000599 printf("Invalid port number %d\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800600 return -1;
601 }
602
603 port_status = readl(port_mmio + PORT_SCR_STAT);
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500604 if ((port_status & 0xf) != 0x03) {
605 debug("No Link on port %d!\n", port);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800606 return -1;
607 }
608
609 memcpy((unsigned char *)pp->cmd_tbl, fis, fis_len);
610
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500611 sg_count = ahci_fill_sg(port, buf, buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000612 opts = (fis_len >> 2) | (sg_count << 16) | (is_write << 6);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800613 ahci_fill_cmd_slot(pp, opts);
614
Taylor Hutt90b276f2012-10-29 05:23:59 +0000615 ahci_dcache_flush_sata_cmd(pp);
616 ahci_dcache_flush_range((unsigned)buf, (unsigned)buf_len);
617
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800618 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
619
Walter Murphy57847662012-10-29 05:24:00 +0000620 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
621 WAIT_MS_DATAIO, 0x1)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800622 printf("timeout exit!\n");
623 return -1;
624 }
Taylor Hutt90b276f2012-10-29 05:23:59 +0000625
626 ahci_dcache_invalidate_range((unsigned)buf, (unsigned)buf_len);
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000627 debug("%s: %d byte transferred.\n", __func__, pp->cmd_slot->status);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800628
629 return 0;
630}
631
632
633static char *ata_id_strcpy(u16 *target, u16 *src, int len)
634{
635 int i;
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500636 for (i = 0; i < len / 2; i++)
Rob Herringe5a6c792011-06-01 09:10:26 +0000637 target[i] = swab16(src[i]);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800638 return (char *)target;
639}
640
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800641/*
642 * SCSI INQUIRY command operation.
643 */
644static int ata_scsiop_inquiry(ccb *pccb)
645{
Rob Herring48c3a872013-08-24 10:10:48 -0500646 static const u8 hdr[] = {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800647 0,
648 0,
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500649 0x5, /* claim SPC-3 version compatibility */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800650 2,
651 95 - 4,
652 };
653 u8 fis[20];
Roger Quadros3f629712014-04-01 17:26:40 +0300654 u16 *idbuf;
Roger Quadros2faf5fb2013-11-11 16:56:38 +0200655 ALLOC_CACHE_ALIGN_BUFFER(u16, tmpid, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800656 u8 port;
657
658 /* Clean ccb data buffer */
659 memset(pccb->pdata, 0, pccb->datalen);
660
661 memcpy(pccb->pdata, hdr, sizeof(hdr));
662
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500663 if (pccb->datalen <= 35)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800664 return 0;
665
Taylor Huttc8731112012-10-29 05:23:55 +0000666 memset(fis, 0, sizeof(fis));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800667 /* Construct the FIS */
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500668 fis[0] = 0x27; /* Host to device FIS. */
669 fis[1] = 1 << 7; /* Command FIS. */
Rob Herring344ca0b2013-08-24 10:10:54 -0500670 fis[2] = ATA_CMD_ID_ATA; /* Command byte. */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800671
672 /* Read id from sata */
673 port = pccb->target;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800674
Rob Herring344ca0b2013-08-24 10:10:54 -0500675 if (ahci_device_data_io(port, (u8 *) &fis, sizeof(fis), (u8 *)tmpid,
676 ATA_ID_WORDS * 2, 0)) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800677 debug("scsi_ahci: SCSI inquiry command failure.\n");
678 return -EIO;
679 }
680
Roger Quadros3f629712014-04-01 17:26:40 +0300681 if (!ataid[port]) {
682 ataid[port] = malloc(ATA_ID_WORDS * 2);
683 if (!ataid[port]) {
684 printf("%s: No memory for ataid[port]\n", __func__);
685 return -ENOMEM;
686 }
687 }
688
689 idbuf = ataid[port];
690
691 memcpy(idbuf, tmpid, ATA_ID_WORDS * 2);
692 ata_swap_buf_le16(idbuf, ATA_ID_WORDS);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800693
694 memcpy(&pccb->pdata[8], "ATA ", 8);
Roger Quadros3f629712014-04-01 17:26:40 +0300695 ata_id_strcpy((u16 *)&pccb->pdata[16], &idbuf[ATA_ID_PROD], 16);
696 ata_id_strcpy((u16 *)&pccb->pdata[32], &idbuf[ATA_ID_FW_REV], 4);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800697
Rob Herring344ca0b2013-08-24 10:10:54 -0500698#ifdef DEBUG
Roger Quadros3f629712014-04-01 17:26:40 +0300699 ata_dump_id(idbuf);
Rob Herring344ca0b2013-08-24 10:10:54 -0500700#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800701 return 0;
702}
703
704
705/*
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000706 * SCSI READ10/WRITE10 command operation.
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800707 */
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000708static int ata_scsiop_read_write(ccb *pccb, u8 is_write)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800709{
Vadim Bendebury284231e2012-10-29 05:23:44 +0000710 u32 lba = 0;
711 u16 blocks = 0;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800712 u8 fis[20];
Vadim Bendebury284231e2012-10-29 05:23:44 +0000713 u8 *user_buffer = pccb->pdata;
714 u32 user_buffer_size = pccb->datalen;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800715
Vadim Bendebury284231e2012-10-29 05:23:44 +0000716 /* Retrieve the base LBA number from the ccb structure. */
717 memcpy(&lba, pccb->cmd + 2, sizeof(lba));
718 lba = be32_to_cpu(lba);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800719
Vadim Bendebury284231e2012-10-29 05:23:44 +0000720 /*
721 * And the number of blocks.
722 *
723 * For 10-byte and 16-byte SCSI R/W commands, transfer
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800724 * length 0 means transfer 0 block of data.
725 * However, for ATA R/W commands, sector count 0 means
726 * 256 or 65536 sectors, not 0 sectors as in SCSI.
727 *
728 * WARNING: one or two older ATA drives treat 0 as 0...
729 */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000730 blocks = (((u16)pccb->cmd[7]) << 8) | ((u16) pccb->cmd[8]);
731
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000732 debug("scsi_ahci: %s %d blocks starting from lba 0x%x\n",
733 is_write ? "write" : "read", (unsigned)lba, blocks);
Vadim Bendebury284231e2012-10-29 05:23:44 +0000734
735 /* Preset the FIS */
Taylor Huttc8731112012-10-29 05:23:55 +0000736 memset(fis, 0, sizeof(fis));
Vadim Bendebury284231e2012-10-29 05:23:44 +0000737 fis[0] = 0x27; /* Host to device FIS. */
738 fis[1] = 1 << 7; /* Command FIS. */
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000739 /* Command byte (read/write). */
Walter Murphyfe1f8082012-10-29 05:24:03 +0000740 fis[2] = is_write ? ATA_CMD_WRITE_EXT : ATA_CMD_READ_EXT;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800741
Vadim Bendebury284231e2012-10-29 05:23:44 +0000742 while (blocks) {
743 u16 now_blocks; /* number of blocks per iteration */
744 u32 transfer_size; /* number of bytes per iteration */
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800745
Masahiro Yamadab4141192014-11-07 03:03:31 +0900746 now_blocks = min((u16)MAX_SATA_BLOCKS_READ_WRITE, blocks);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800747
Rob Herring344ca0b2013-08-24 10:10:54 -0500748 transfer_size = ATA_SECT_SIZE * now_blocks;
Vadim Bendebury284231e2012-10-29 05:23:44 +0000749 if (transfer_size > user_buffer_size) {
750 printf("scsi_ahci: Error: buffer too small.\n");
751 return -EIO;
752 }
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800753
Walter Murphyfe1f8082012-10-29 05:24:03 +0000754 /* LBA48 SATA command but only use 32bit address range within
755 * that. The next smaller command range (28bit) is too small.
756 */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000757 fis[4] = (lba >> 0) & 0xff;
758 fis[5] = (lba >> 8) & 0xff;
759 fis[6] = (lba >> 16) & 0xff;
Walter Murphyfe1f8082012-10-29 05:24:03 +0000760 fis[7] = 1 << 6; /* device reg: set LBA mode */
761 fis[8] = ((lba >> 24) & 0xff);
762 fis[3] = 0xe0; /* features */
Vadim Bendebury284231e2012-10-29 05:23:44 +0000763
764 /* Block (sector) count */
765 fis[12] = (now_blocks >> 0) & 0xff;
766 fis[13] = (now_blocks >> 8) & 0xff;
767
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000768 /* Read/Write from ahci */
769 if (ahci_device_data_io(pccb->target, (u8 *) &fis, sizeof(fis),
770 user_buffer, user_buffer_size,
771 is_write)) {
772 debug("scsi_ahci: SCSI %s10 command failure.\n",
773 is_write ? "WRITE" : "READ");
Vadim Bendebury284231e2012-10-29 05:23:44 +0000774 return -EIO;
775 }
Marc Jones766b16f2012-10-29 05:24:02 +0000776
777 /* If this transaction is a write, do a following flush.
778 * Writes in u-boot are so rare, and the logic to know when is
779 * the last write and do a flush only there is sufficiently
780 * difficult. Just do a flush after every write. This incurs,
781 * usually, one extra flush when the rare writes do happen.
782 */
783 if (is_write) {
784 if (-EIO == ata_io_flush(pccb->target))
785 return -EIO;
786 }
Vadim Bendebury284231e2012-10-29 05:23:44 +0000787 user_buffer += transfer_size;
788 user_buffer_size -= transfer_size;
789 blocks -= now_blocks;
790 lba += now_blocks;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800791 }
792
793 return 0;
794}
795
796
797/*
798 * SCSI READ CAPACITY10 command operation.
799 */
800static int ata_scsiop_read_capacity10(ccb *pccb)
801{
Kumar Galacb6d0b72009-07-13 09:24:00 -0500802 u32 cap;
Rob Herring344ca0b2013-08-24 10:10:54 -0500803 u64 cap64;
Gabe Black19d1d412012-10-29 05:23:54 +0000804 u32 block_size;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800805
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500806 if (!ataid[pccb->target]) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800807 printf("scsi_ahci: SCSI READ CAPACITY10 command failure. "
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500808 "\tNo ATA info!\n"
809 "\tPlease run SCSI commmand INQUIRY firstly!\n");
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800810 return -EPERM;
811 }
812
Rob Herring344ca0b2013-08-24 10:10:54 -0500813 cap64 = ata_id_n_sectors(ataid[pccb->target]);
814 if (cap64 > 0x100000000ULL)
815 cap64 = 0xffffffff;
Gabe Black19d1d412012-10-29 05:23:54 +0000816
Rob Herring344ca0b2013-08-24 10:10:54 -0500817 cap = cpu_to_be32(cap64);
Kumar Galacb6d0b72009-07-13 09:24:00 -0500818 memcpy(pccb->pdata, &cap, sizeof(cap));
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800819
Gabe Black19d1d412012-10-29 05:23:54 +0000820 block_size = cpu_to_be32((u32)512);
821 memcpy(&pccb->pdata[4], &block_size, 4);
822
823 return 0;
824}
825
826
827/*
828 * SCSI READ CAPACITY16 command operation.
829 */
830static int ata_scsiop_read_capacity16(ccb *pccb)
831{
832 u64 cap;
833 u64 block_size;
834
835 if (!ataid[pccb->target]) {
836 printf("scsi_ahci: SCSI READ CAPACITY16 command failure. "
837 "\tNo ATA info!\n"
838 "\tPlease run SCSI commmand INQUIRY firstly!\n");
839 return -EPERM;
840 }
841
Rob Herring344ca0b2013-08-24 10:10:54 -0500842 cap = ata_id_n_sectors(ataid[pccb->target]);
Gabe Black19d1d412012-10-29 05:23:54 +0000843 cap = cpu_to_be64(cap);
844 memcpy(pccb->pdata, &cap, sizeof(cap));
845
846 block_size = cpu_to_be64((u64)512);
847 memcpy(&pccb->pdata[8], &block_size, 8);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800848
849 return 0;
850}
851
852
853/*
854 * SCSI TEST UNIT READY command operation.
855 */
856static int ata_scsiop_test_unit_ready(ccb *pccb)
857{
858 return (ataid[pccb->target]) ? 0 : -EPERM;
859}
860
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500861
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800862int scsi_exec(ccb *pccb)
863{
864 int ret;
865
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500866 switch (pccb->cmd[0]) {
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800867 case SCSI_READ10:
Hung-Te Linb7a21b72012-10-29 05:23:53 +0000868 ret = ata_scsiop_read_write(pccb, 0);
869 break;
870 case SCSI_WRITE10:
871 ret = ata_scsiop_read_write(pccb, 1);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800872 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000873 case SCSI_RD_CAPAC10:
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800874 ret = ata_scsiop_read_capacity10(pccb);
875 break;
Gabe Black19d1d412012-10-29 05:23:54 +0000876 case SCSI_RD_CAPAC16:
877 ret = ata_scsiop_read_capacity16(pccb);
878 break;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800879 case SCSI_TST_U_RDY:
880 ret = ata_scsiop_test_unit_ready(pccb);
881 break;
882 case SCSI_INQUIRY:
883 ret = ata_scsiop_inquiry(pccb);
884 break;
885 default:
886 printf("Unsupport SCSI command 0x%02x\n", pccb->cmd[0]);
York Sun472d5462013-04-01 11:29:11 -0700887 return false;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800888 }
889
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500890 if (ret) {
891 debug("SCSI command 0x%02x ret errno %d\n", pccb->cmd[0], ret);
York Sun472d5462013-04-01 11:29:11 -0700892 return false;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800893 }
York Sun472d5462013-04-01 11:29:11 -0700894 return true;
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800895
896}
897
898
899void scsi_low_level_init(int busdevfunc)
900{
901 int i;
902 u32 linkmap;
903
Rob Herring942e3142011-07-06 16:13:36 +0000904#ifndef CONFIG_SCSI_AHCI_PLAT
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800905 ahci_init_one(busdevfunc);
Rob Herring942e3142011-07-06 16:13:36 +0000906#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800907
908 linkmap = probe_ent->link_port_map;
909
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200910 for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500911 if (((linkmap >> i) & 0x01)) {
912 if (ahci_port_start((u8) i)) {
913 printf("Can not start port %d\n", i);
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800914 continue;
915 }
Gabe Blacke81058c2012-10-29 05:23:52 +0000916#ifdef CONFIG_AHCI_SETFEATURES_XFER
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -0500917 ahci_set_feature((u8) i);
Gabe Blacke81058c2012-10-29 05:23:52 +0000918#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800919 }
920 }
921}
922
Rob Herring942e3142011-07-06 16:13:36 +0000923#ifdef CONFIG_SCSI_AHCI_PLAT
924int ahci_init(u32 base)
925{
926 int i, rc = 0;
927 u32 linkmap;
928
Rob Herring942e3142011-07-06 16:13:36 +0000929 probe_ent = malloc(sizeof(struct ahci_probe_ent));
Roger Quadrosd73763a2013-11-11 16:56:37 +0200930 if (!probe_ent) {
931 printf("%s: No memory for probe_ent\n", __func__);
932 return -ENOMEM;
933 }
934
Rob Herring942e3142011-07-06 16:13:36 +0000935 memset(probe_ent, 0, sizeof(struct ahci_probe_ent));
936
937 probe_ent->host_flags = ATA_FLAG_SATA
938 | ATA_FLAG_NO_LEGACY
939 | ATA_FLAG_MMIO
940 | ATA_FLAG_PIO_DMA
941 | ATA_FLAG_NO_ATAPI;
942 probe_ent->pio_mask = 0x1f;
943 probe_ent->udma_mask = 0x7f; /*Fixme,assume to support UDMA6 */
944
945 probe_ent->mmio_base = base;
946
947 /* initialize adapter */
948 rc = ahci_host_init(probe_ent);
949 if (rc)
950 goto err_out;
951
952 ahci_print_info(probe_ent);
953
954 linkmap = probe_ent->link_port_map;
955
956 for (i = 0; i < CONFIG_SYS_SCSI_MAX_SCSI_ID; i++) {
957 if (((linkmap >> i) & 0x01)) {
958 if (ahci_port_start((u8) i)) {
959 printf("Can not start port %d\n", i);
960 continue;
961 }
Gabe Blacke81058c2012-10-29 05:23:52 +0000962#ifdef CONFIG_AHCI_SETFEATURES_XFER
Rob Herring942e3142011-07-06 16:13:36 +0000963 ahci_set_feature((u8) i);
Gabe Blacke81058c2012-10-29 05:23:52 +0000964#endif
Rob Herring942e3142011-07-06 16:13:36 +0000965 }
966 }
967err_out:
968 return rc;
969}
Ian Campbellc6f3d502014-03-07 01:20:56 +0000970
971void __weak scsi_init(void)
972{
973}
974
Rob Herring942e3142011-07-06 16:13:36 +0000975#endif
Jin Zhengxiong4782ac82006-08-23 19:10:44 +0800976
Marc Jones766b16f2012-10-29 05:24:02 +0000977/*
978 * In the general case of generic rotating media it makes sense to have a
979 * flush capability. It probably even makes sense in the case of SSDs because
980 * one cannot always know for sure what kind of internal cache/flush mechanism
981 * is embodied therein. At first it was planned to invoke this after the last
982 * write to disk and before rebooting. In practice, knowing, a priori, which
983 * is the last write is difficult. Because writing to the disk in u-boot is
984 * very rare, this flush command will be invoked after every block write.
985 */
986static int ata_io_flush(u8 port)
987{
988 u8 fis[20];
989 struct ahci_ioports *pp = &(probe_ent->port[port]);
990 volatile u8 *port_mmio = (volatile u8 *)pp->port_mmio;
991 u32 cmd_fis_len = 5; /* five dwords */
992
993 /* Preset the FIS */
994 memset(fis, 0, 20);
995 fis[0] = 0x27; /* Host to device FIS. */
996 fis[1] = 1 << 7; /* Command FIS. */
Walter Murphyfe1f8082012-10-29 05:24:03 +0000997 fis[2] = ATA_CMD_FLUSH_EXT;
Marc Jones766b16f2012-10-29 05:24:02 +0000998
999 memcpy((unsigned char *)pp->cmd_tbl, fis, 20);
1000 ahci_fill_cmd_slot(pp, cmd_fis_len);
1001 writel_with_flush(1, port_mmio + PORT_CMD_ISSUE);
1002
1003 if (waiting_for_cmd_completed(port_mmio + PORT_CMD_ISSUE,
1004 WAIT_MS_FLUSH, 0x1)) {
1005 debug("scsi_ahci: flush command timeout on port %d.\n", port);
1006 return -EIO;
1007 }
1008
1009 return 0;
1010}
1011
1012
Dmitry Lifshitz1a33b732014-12-15 16:02:56 +02001013__weak void scsi_bus_reset(void)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001014{
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -05001015 /*Not implement*/
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001016}
1017
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -05001018void scsi_print_error(ccb * pccb)
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001019{
Jon Loeliger4a7cc0f2006-08-23 11:04:43 -05001020 /*The ahci error info can be read in the ahci driver*/
Jin Zhengxiong4782ac82006-08-23 19:10:44 +08001021}