blob: 6a71f17684d5b73aca0480f0854f9ce6ac7bb51e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefano Babic771bfd12012-02-22 00:24:39 +00002/*
3 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
4 * Terry Lv <r65388@freescale.com>
Stefano Babic771bfd12012-02-22 00:24:39 +00005 */
6
Simon Glass602cedc2017-07-29 11:35:08 -06007#include <common.h>
Stefano Babic771bfd12012-02-22 00:24:39 +00008#include <ahci.h>
Simon Glass655306c2020-05-10 11:39:58 -06009#include <blk.h>
Simon Glass63334482019-11-14 12:57:39 -070010#include <cpu_func.h>
Simon Glass0067b872017-07-29 11:35:16 -060011#include <dm.h>
12#include <dwc_ahsata.h>
Stefano Babic771bfd12012-02-22 00:24:39 +000013#include <fis.h>
Simon Glass602cedc2017-07-29 11:35:08 -060014#include <libata.h>
Stefano Babic771bfd12012-02-22 00:24:39 +000015#include <malloc.h>
Simon Glassf89b2502017-07-29 11:35:12 -060016#include <memalign.h>
Simon Glass655306c2020-05-10 11:39:58 -060017#include <part.h>
Simon Glass602cedc2017-07-29 11:35:08 -060018#include <sata.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <asm/cache.h>
Stefano Babic771bfd12012-02-22 00:24:39 +000020#include <asm/io.h>
Stefano Babic771bfd12012-02-22 00:24:39 +000021#include <asm/arch/clock.h>
Tim Harveye9d13472014-05-07 22:23:35 -070022#include <asm/arch/sys_proto.h>
Soeren Moch5569bbd2019-03-01 13:10:59 +010023#include <asm/mach-imx/sata.h>
Simon Glass602cedc2017-07-29 11:35:08 -060024#include <linux/bitops.h>
25#include <linux/ctype.h>
26#include <linux/errno.h>
Simon Glass7b2a6292017-07-29 11:35:09 -060027#include "dwc_ahsata_priv.h"
Stefano Babic771bfd12012-02-22 00:24:39 +000028
29struct sata_port_regs {
30 u32 clb;
31 u32 clbu;
32 u32 fb;
33 u32 fbu;
34 u32 is;
35 u32 ie;
36 u32 cmd;
37 u32 res1[1];
38 u32 tfd;
39 u32 sig;
40 u32 ssts;
41 u32 sctl;
42 u32 serr;
43 u32 sact;
44 u32 ci;
45 u32 sntf;
46 u32 res2[1];
47 u32 dmacr;
48 u32 res3[1];
49 u32 phycr;
50 u32 physr;
51};
52
53struct sata_host_regs {
54 u32 cap;
55 u32 ghc;
56 u32 is;
57 u32 pi;
58 u32 vs;
59 u32 ccc_ctl;
60 u32 ccc_ports;
61 u32 res1[2];
62 u32 cap2;
63 u32 res2[30];
64 u32 bistafr;
65 u32 bistcr;
66 u32 bistfctr;
67 u32 bistsr;
68 u32 bistdecr;
69 u32 res3[2];
70 u32 oobr;
71 u32 res4[8];
72 u32 timer1ms;
73 u32 res5[1];
74 u32 gparam1r;
75 u32 gparam2r;
76 u32 pparamr;
77 u32 testr;
78 u32 versionr;
79 u32 idr;
80};
81
82#define MAX_DATA_BYTES_PER_SG (4 * 1024 * 1024)
83#define MAX_BYTES_PER_TRANS (AHCI_MAX_SG * MAX_DATA_BYTES_PER_SG)
84
85#define writel_with_flush(a, b) do { writel(a, b); readl(b); } while (0)
86
Tang Yuantian3f262d02015-07-09 14:37:30 +080087static inline void __iomem *ahci_port_base(void __iomem *base, u32 port)
Stefano Babic771bfd12012-02-22 00:24:39 +000088{
89 return base + 0x100 + (port * 0x80);
90}
91
92static int waiting_for_cmd_completed(u8 *offset,
93 int timeout_msec,
94 u32 sign)
95{
96 int i;
97 u32 status;
98
99 for (i = 0;
100 ((status = readl(offset)) & sign) && i < timeout_msec;
101 ++i)
102 mdelay(1);
103
104 return (i < timeout_msec) ? 0 : -1;
105}
106
Simon Glassb1f7f582017-07-29 11:35:04 -0600107static int ahci_setup_oobr(struct ahci_uc_priv *uc_priv, int clk)
Stefano Babic771bfd12012-02-22 00:24:39 +0000108{
Simon Glassd30e76c2017-07-29 11:35:05 -0600109 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
Stefano Babic771bfd12012-02-22 00:24:39 +0000110
Simon Glass96f2af42017-07-29 11:35:07 -0600111 writel(SATA_HOST_OOBR_WE, &host_mmio->oobr);
112 writel(0x02060b14, &host_mmio->oobr);
Stefano Babic771bfd12012-02-22 00:24:39 +0000113
114 return 0;
115}
116
Simon Glassb1f7f582017-07-29 11:35:04 -0600117static int ahci_host_init(struct ahci_uc_priv *uc_priv)
Stefano Babic771bfd12012-02-22 00:24:39 +0000118{
119 u32 tmp, cap_save, num_ports;
120 int i, j, timeout = 1000;
121 struct sata_port_regs *port_mmio = NULL;
Simon Glassd30e76c2017-07-29 11:35:05 -0600122 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
Stefano Babic771bfd12012-02-22 00:24:39 +0000123 int clk = mxc_get_clock(MXC_SATA_CLK);
124
Simon Glass96f2af42017-07-29 11:35:07 -0600125 cap_save = readl(&host_mmio->cap);
Stefano Babic771bfd12012-02-22 00:24:39 +0000126 cap_save |= SATA_HOST_CAP_SSS;
127
128 /* global controller reset */
Simon Glass96f2af42017-07-29 11:35:07 -0600129 tmp = readl(&host_mmio->ghc);
Stefano Babic771bfd12012-02-22 00:24:39 +0000130 if ((tmp & SATA_HOST_GHC_HR) == 0)
Simon Glass96f2af42017-07-29 11:35:07 -0600131 writel_with_flush(tmp | SATA_HOST_GHC_HR, &host_mmio->ghc);
Stefano Babic771bfd12012-02-22 00:24:39 +0000132
Simon Glass96f2af42017-07-29 11:35:07 -0600133 while ((readl(&host_mmio->ghc) & SATA_HOST_GHC_HR) && --timeout)
Stefano Babic771bfd12012-02-22 00:24:39 +0000134 ;
135
136 if (timeout <= 0) {
137 debug("controller reset failed (0x%x)\n", tmp);
138 return -1;
139 }
140
141 /* Set timer 1ms */
Simon Glass96f2af42017-07-29 11:35:07 -0600142 writel(clk / 1000, &host_mmio->timer1ms);
Stefano Babic771bfd12012-02-22 00:24:39 +0000143
Simon Glassb1f7f582017-07-29 11:35:04 -0600144 ahci_setup_oobr(uc_priv, 0);
Stefano Babic771bfd12012-02-22 00:24:39 +0000145
Simon Glass96f2af42017-07-29 11:35:07 -0600146 writel_with_flush(SATA_HOST_GHC_AE, &host_mmio->ghc);
147 writel(cap_save, &host_mmio->cap);
Stefano Babic771bfd12012-02-22 00:24:39 +0000148 num_ports = (cap_save & SATA_HOST_CAP_NP_MASK) + 1;
Simon Glass96f2af42017-07-29 11:35:07 -0600149 writel_with_flush((1 << num_ports) - 1, &host_mmio->pi);
Stefano Babic771bfd12012-02-22 00:24:39 +0000150
151 /*
152 * Determine which Ports are implemented by the DWC_ahsata,
153 * by reading the PI register. This bit map value aids the
154 * software to determine how many Ports are available and
155 * which Port registers need to be initialized.
156 */
Simon Glass96f2af42017-07-29 11:35:07 -0600157 uc_priv->cap = readl(&host_mmio->cap);
158 uc_priv->port_map = readl(&host_mmio->pi);
Stefano Babic771bfd12012-02-22 00:24:39 +0000159
160 /* Determine how many command slots the HBA supports */
Simon Glassb1f7f582017-07-29 11:35:04 -0600161 uc_priv->n_ports = (uc_priv->cap & SATA_HOST_CAP_NP_MASK) + 1;
Stefano Babic771bfd12012-02-22 00:24:39 +0000162
163 debug("cap 0x%x port_map 0x%x n_ports %d\n",
Simon Glassb1f7f582017-07-29 11:35:04 -0600164 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
Stefano Babic771bfd12012-02-22 00:24:39 +0000165
Simon Glassb1f7f582017-07-29 11:35:04 -0600166 for (i = 0; i < uc_priv->n_ports; i++) {
167 uc_priv->port[i].port_mmio = ahci_port_base(host_mmio, i);
Simon Glassd30e76c2017-07-29 11:35:05 -0600168 port_mmio = uc_priv->port[i].port_mmio;
Stefano Babic771bfd12012-02-22 00:24:39 +0000169
170 /* Ensure that the DWC_ahsata is in idle state */
Simon Glass96f2af42017-07-29 11:35:07 -0600171 tmp = readl(&port_mmio->cmd);
Stefano Babic771bfd12012-02-22 00:24:39 +0000172
173 /*
174 * When P#CMD.ST, P#CMD.CR, P#CMD.FRE and P#CMD.FR
175 * are all cleared, the Port is in an idle state.
176 */
177 if (tmp & (SATA_PORT_CMD_CR | SATA_PORT_CMD_FR |
178 SATA_PORT_CMD_FRE | SATA_PORT_CMD_ST)) {
179
180 /*
181 * System software places a Port into the idle state by
182 * clearing P#CMD.ST and waiting for P#CMD.CR to return
183 * 0 when read.
184 */
185 tmp &= ~SATA_PORT_CMD_ST;
Simon Glass96f2af42017-07-29 11:35:07 -0600186 writel_with_flush(tmp, &port_mmio->cmd);
Stefano Babic771bfd12012-02-22 00:24:39 +0000187
188 /*
189 * spec says 500 msecs for each bit, so
190 * this is slightly incorrect.
191 */
192 mdelay(500);
193
194 timeout = 1000;
Simon Glass96f2af42017-07-29 11:35:07 -0600195 while ((readl(&port_mmio->cmd) & SATA_PORT_CMD_CR)
Stefano Babic771bfd12012-02-22 00:24:39 +0000196 && --timeout)
197 ;
198
199 if (timeout <= 0) {
200 debug("port reset failed (0x%x)\n", tmp);
201 return -1;
202 }
203 }
204
205 /* Spin-up device */
Simon Glass96f2af42017-07-29 11:35:07 -0600206 tmp = readl(&port_mmio->cmd);
207 writel((tmp | SATA_PORT_CMD_SUD), &port_mmio->cmd);
Stefano Babic771bfd12012-02-22 00:24:39 +0000208
209 /* Wait for spin-up to finish */
210 timeout = 1000;
Simon Glass96f2af42017-07-29 11:35:07 -0600211 while (!(readl(&port_mmio->cmd) | SATA_PORT_CMD_SUD)
Stefano Babic771bfd12012-02-22 00:24:39 +0000212 && --timeout)
213 ;
214 if (timeout <= 0) {
215 debug("Spin-Up can't finish!\n");
216 return -1;
217 }
218
219 for (j = 0; j < 100; ++j) {
220 mdelay(10);
Simon Glass96f2af42017-07-29 11:35:07 -0600221 tmp = readl(&port_mmio->ssts);
Stefano Babic771bfd12012-02-22 00:24:39 +0000222 if (((tmp & SATA_PORT_SSTS_DET_MASK) == 0x3) ||
223 ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x1))
224 break;
225 }
226
227 /* Wait for COMINIT bit 26 (DIAG_X) in SERR */
228 timeout = 1000;
Ye Lif1c562e2020-05-03 22:27:01 +0800229 while (!(readl(&port_mmio->serr) & SATA_PORT_SERR_DIAG_X)
Stefano Babic771bfd12012-02-22 00:24:39 +0000230 && --timeout)
231 ;
232 if (timeout <= 0) {
233 debug("Can't find DIAG_X set!\n");
234 return -1;
235 }
236
237 /*
238 * For each implemented Port, clear the P#SERR
239 * register, by writing ones to each implemented\
240 * bit location.
241 */
Simon Glass96f2af42017-07-29 11:35:07 -0600242 tmp = readl(&port_mmio->serr);
Stefano Babic771bfd12012-02-22 00:24:39 +0000243 debug("P#SERR 0x%x\n",
244 tmp);
Simon Glass96f2af42017-07-29 11:35:07 -0600245 writel(tmp, &port_mmio->serr);
Stefano Babic771bfd12012-02-22 00:24:39 +0000246
247 /* Ack any pending irq events for this port */
Simon Glass96f2af42017-07-29 11:35:07 -0600248 tmp = readl(&host_mmio->is);
Stefano Babic771bfd12012-02-22 00:24:39 +0000249 debug("IS 0x%x\n", tmp);
250 if (tmp)
Simon Glass96f2af42017-07-29 11:35:07 -0600251 writel(tmp, &host_mmio->is);
Stefano Babic771bfd12012-02-22 00:24:39 +0000252
Simon Glass96f2af42017-07-29 11:35:07 -0600253 writel(1 << i, &host_mmio->is);
Stefano Babic771bfd12012-02-22 00:24:39 +0000254
255 /* set irq mask (enables interrupts) */
Simon Glass96f2af42017-07-29 11:35:07 -0600256 writel(DEF_PORT_IRQ, &port_mmio->ie);
Stefano Babic771bfd12012-02-22 00:24:39 +0000257
258 /* register linkup ports */
Simon Glass96f2af42017-07-29 11:35:07 -0600259 tmp = readl(&port_mmio->ssts);
Stefano Babic771bfd12012-02-22 00:24:39 +0000260 debug("Port %d status: 0x%x\n", i, tmp);
261 if ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x03)
Simon Glassb1f7f582017-07-29 11:35:04 -0600262 uc_priv->link_port_map |= (0x01 << i);
Stefano Babic771bfd12012-02-22 00:24:39 +0000263 }
264
Simon Glass96f2af42017-07-29 11:35:07 -0600265 tmp = readl(&host_mmio->ghc);
Stefano Babic771bfd12012-02-22 00:24:39 +0000266 debug("GHC 0x%x\n", tmp);
Simon Glass96f2af42017-07-29 11:35:07 -0600267 writel(tmp | SATA_HOST_GHC_IE, &host_mmio->ghc);
268 tmp = readl(&host_mmio->ghc);
Stefano Babic771bfd12012-02-22 00:24:39 +0000269 debug("GHC 0x%x\n", tmp);
270
271 return 0;
272}
273
Simon Glassb1f7f582017-07-29 11:35:04 -0600274static void ahci_print_info(struct ahci_uc_priv *uc_priv)
Stefano Babic771bfd12012-02-22 00:24:39 +0000275{
Simon Glassd30e76c2017-07-29 11:35:05 -0600276 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
Stefano Babic771bfd12012-02-22 00:24:39 +0000277 u32 vers, cap, impl, speed;
278 const char *speed_s;
279 const char *scc_s;
280
Simon Glass96f2af42017-07-29 11:35:07 -0600281 vers = readl(&host_mmio->vs);
Simon Glassb1f7f582017-07-29 11:35:04 -0600282 cap = uc_priv->cap;
283 impl = uc_priv->port_map;
Stefano Babic771bfd12012-02-22 00:24:39 +0000284
285 speed = (cap & SATA_HOST_CAP_ISS_MASK)
286 >> SATA_HOST_CAP_ISS_OFFSET;
287 if (speed == 1)
288 speed_s = "1.5";
289 else if (speed == 2)
290 speed_s = "3";
291 else
292 speed_s = "?";
293
294 scc_s = "SATA";
295
296 printf("AHCI %02x%02x.%02x%02x "
297 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
298 (vers >> 24) & 0xff,
299 (vers >> 16) & 0xff,
300 (vers >> 8) & 0xff,
301 vers & 0xff,
302 ((cap >> 8) & 0x1f) + 1,
303 (cap & 0x1f) + 1,
304 speed_s,
305 impl,
306 scc_s);
307
308 printf("flags: "
309 "%s%s%s%s%s%s"
310 "%s%s%s%s%s%s%s\n",
311 cap & (1 << 31) ? "64bit " : "",
312 cap & (1 << 30) ? "ncq " : "",
313 cap & (1 << 28) ? "ilck " : "",
314 cap & (1 << 27) ? "stag " : "",
315 cap & (1 << 26) ? "pm " : "",
316 cap & (1 << 25) ? "led " : "",
317 cap & (1 << 24) ? "clo " : "",
318 cap & (1 << 19) ? "nz " : "",
319 cap & (1 << 18) ? "only " : "",
320 cap & (1 << 17) ? "pmp " : "",
321 cap & (1 << 15) ? "pio " : "",
322 cap & (1 << 14) ? "slum " : "",
323 cap & (1 << 13) ? "part " : "");
324}
325
Simon Glassb1f7f582017-07-29 11:35:04 -0600326static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
327 unsigned char *buf, int buf_len)
Stefano Babic771bfd12012-02-22 00:24:39 +0000328{
Simon Glass96f2af42017-07-29 11:35:07 -0600329 struct ahci_ioports *pp = &uc_priv->port[port];
Stefano Babic771bfd12012-02-22 00:24:39 +0000330 struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
331 u32 sg_count, max_bytes;
332 int i;
333
334 max_bytes = MAX_DATA_BYTES_PER_SG;
335 sg_count = ((buf_len - 1) / max_bytes) + 1;
336 if (sg_count > AHCI_MAX_SG) {
337 printf("Error:Too much sg!\n");
338 return -1;
339 }
340
341 for (i = 0; i < sg_count; i++) {
342 ahci_sg->addr =
343 cpu_to_le32((u32)buf + i * max_bytes);
344 ahci_sg->addr_hi = 0;
345 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
346 (buf_len < max_bytes
347 ? (buf_len - 1)
348 : (max_bytes - 1)));
349 ahci_sg++;
350 buf_len -= max_bytes;
351 }
352
353 return sg_count;
354}
355
356static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 cmd_slot, u32 opts)
357{
358 struct ahci_cmd_hdr *cmd_hdr = (struct ahci_cmd_hdr *)(pp->cmd_slot +
359 AHCI_CMD_SLOT_SZ * cmd_slot);
360
361 memset(cmd_hdr, 0, AHCI_CMD_SLOT_SZ);
362 cmd_hdr->opts = cpu_to_le32(opts);
363 cmd_hdr->status = 0;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800364 pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
365#ifdef CONFIG_PHYS_64BIT
366 pp->cmd_slot->tbl_addr_hi =
367 cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
368#endif
Stefano Babic771bfd12012-02-22 00:24:39 +0000369}
370
371#define AHCI_GET_CMD_SLOT(c) ((c) ? ffs(c) : 0)
372
Simon Glassb1f7f582017-07-29 11:35:04 -0600373static int ahci_exec_ata_cmd(struct ahci_uc_priv *uc_priv, u8 port,
374 struct sata_fis_h2d *cfis, u8 *buf, u32 buf_len,
375 s32 is_write)
Stefano Babic771bfd12012-02-22 00:24:39 +0000376{
Simon Glass96f2af42017-07-29 11:35:07 -0600377 struct ahci_ioports *pp = &uc_priv->port[port];
Simon Glassd30e76c2017-07-29 11:35:05 -0600378 struct sata_port_regs *port_mmio = pp->port_mmio;
Stefano Babic771bfd12012-02-22 00:24:39 +0000379 u32 opts;
380 int sg_count = 0, cmd_slot = 0;
381
Simon Glass96f2af42017-07-29 11:35:07 -0600382 cmd_slot = AHCI_GET_CMD_SLOT(readl(&port_mmio->ci));
Stefano Babic771bfd12012-02-22 00:24:39 +0000383 if (32 == cmd_slot) {
384 printf("Can't find empty command slot!\n");
385 return 0;
386 }
387
388 /* Check xfer length */
389 if (buf_len > MAX_BYTES_PER_TRANS) {
390 printf("Max transfer length is %dB\n\r",
391 MAX_BYTES_PER_TRANS);
392 return 0;
393 }
394
395 memcpy((u8 *)(pp->cmd_tbl), cfis, sizeof(struct sata_fis_h2d));
396 if (buf && buf_len)
Simon Glassb1f7f582017-07-29 11:35:04 -0600397 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
Stefano Babic771bfd12012-02-22 00:24:39 +0000398 opts = (sizeof(struct sata_fis_h2d) >> 2) | (sg_count << 16);
Eric Nelson998816b2013-06-15 16:09:55 -0700399 if (is_write) {
Stefano Babic771bfd12012-02-22 00:24:39 +0000400 opts |= 0x40;
Eric Nelson998816b2013-06-15 16:09:55 -0700401 flush_cache((ulong)buf, buf_len);
402 }
Stefano Babic771bfd12012-02-22 00:24:39 +0000403 ahci_fill_cmd_slot(pp, cmd_slot, opts);
404
Eric Nelson998816b2013-06-15 16:09:55 -0700405 flush_cache((int)(pp->cmd_slot), AHCI_PORT_PRIV_DMA_SZ);
Simon Glass96f2af42017-07-29 11:35:07 -0600406 writel_with_flush(1 << cmd_slot, &port_mmio->ci);
Stefano Babic771bfd12012-02-22 00:24:39 +0000407
Simon Glass96f2af42017-07-29 11:35:07 -0600408 if (waiting_for_cmd_completed((u8 *)&port_mmio->ci, 10000,
409 0x1 << cmd_slot)) {
Stefano Babic771bfd12012-02-22 00:24:39 +0000410 printf("timeout exit!\n");
411 return -1;
412 }
Eric Nelson998816b2013-06-15 16:09:55 -0700413 invalidate_dcache_range((int)(pp->cmd_slot),
414 (int)(pp->cmd_slot)+AHCI_PORT_PRIV_DMA_SZ);
Stefano Babic771bfd12012-02-22 00:24:39 +0000415 debug("ahci_exec_ata_cmd: %d byte transferred.\n",
416 pp->cmd_slot->status);
Eric Nelson998816b2013-06-15 16:09:55 -0700417 if (!is_write)
418 invalidate_dcache_range((ulong)buf, (ulong)buf+buf_len);
Stefano Babic771bfd12012-02-22 00:24:39 +0000419
420 return buf_len;
421}
422
Simon Glassc5fc2a32017-07-29 11:35:06 -0600423static void ahci_set_feature(struct ahci_uc_priv *uc_priv, u8 port)
Stefano Babic771bfd12012-02-22 00:24:39 +0000424{
Eric Nelson998816b2013-06-15 16:09:55 -0700425 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
426 struct sata_fis_h2d *cfis = &h2d;
Stefano Babic771bfd12012-02-22 00:24:39 +0000427
428 memset(cfis, 0, sizeof(struct sata_fis_h2d));
429 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
430 cfis->pm_port_c = 1 << 7;
431 cfis->command = ATA_CMD_SET_FEATURES;
432 cfis->features = SETFEATURES_XFER;
Simon Glassb1f7f582017-07-29 11:35:04 -0600433 cfis->sector_count = ffs(uc_priv->udma_mask + 1) + 0x3e;
Stefano Babic771bfd12012-02-22 00:24:39 +0000434
Simon Glassb1f7f582017-07-29 11:35:04 -0600435 ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, READ_CMD);
Stefano Babic771bfd12012-02-22 00:24:39 +0000436}
437
Simon Glassb1f7f582017-07-29 11:35:04 -0600438static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
Stefano Babic771bfd12012-02-22 00:24:39 +0000439{
Simon Glass96f2af42017-07-29 11:35:07 -0600440 struct ahci_ioports *pp = &uc_priv->port[port];
Simon Glassd30e76c2017-07-29 11:35:05 -0600441 struct sata_port_regs *port_mmio = pp->port_mmio;
Stefano Babic771bfd12012-02-22 00:24:39 +0000442 u32 port_status;
443 u32 mem;
444 int timeout = 10000000;
445
446 debug("Enter start port: %d\n", port);
Simon Glass96f2af42017-07-29 11:35:07 -0600447 port_status = readl(&port_mmio->ssts);
Stefano Babic771bfd12012-02-22 00:24:39 +0000448 debug("Port %d status: %x\n", port, port_status);
449 if ((port_status & 0xf) != 0x03) {
450 printf("No Link on this port!\n");
451 return -1;
452 }
453
454 mem = (u32)malloc(AHCI_PORT_PRIV_DMA_SZ + 1024);
455 if (!mem) {
Stefano Babic771bfd12012-02-22 00:24:39 +0000456 printf("No mem for table!\n");
457 return -ENOMEM;
458 }
459
460 mem = (mem + 0x400) & (~0x3ff); /* Aligned to 1024-bytes */
461 memset((u8 *)mem, 0, AHCI_PORT_PRIV_DMA_SZ);
462
463 /*
464 * First item in chunk of DMA memory: 32-slot command table,
465 * 32 bytes each in size
466 */
467 pp->cmd_slot = (struct ahci_cmd_hdr *)mem;
468 debug("cmd_slot = 0x%x\n", (unsigned int) pp->cmd_slot);
469 mem += (AHCI_CMD_SLOT_SZ * DWC_AHSATA_MAX_CMD_SLOTS);
470
471 /*
472 * Second item: Received-FIS area, 256-Byte aligned
473 */
474 pp->rx_fis = mem;
475 mem += AHCI_RX_FIS_SZ;
476
477 /*
478 * Third item: data area for storing a single command
479 * and its scatter-gather table
480 */
481 pp->cmd_tbl = mem;
Tang Yuantian3f262d02015-07-09 14:37:30 +0800482 debug("cmd_tbl_dma = 0x%lx\n", pp->cmd_tbl);
Stefano Babic771bfd12012-02-22 00:24:39 +0000483
484 mem += AHCI_CMD_TBL_HDR;
485
Simon Glass96f2af42017-07-29 11:35:07 -0600486 writel_with_flush(0x00004444, &port_mmio->dmacr);
Stefano Babic771bfd12012-02-22 00:24:39 +0000487 pp->cmd_tbl_sg = (struct ahci_sg *)mem;
Simon Glass96f2af42017-07-29 11:35:07 -0600488 writel_with_flush((u32)pp->cmd_slot, &port_mmio->clb);
489 writel_with_flush(pp->rx_fis, &port_mmio->fb);
Stefano Babic771bfd12012-02-22 00:24:39 +0000490
491 /* Enable FRE */
Simon Glass96f2af42017-07-29 11:35:07 -0600492 writel_with_flush((SATA_PORT_CMD_FRE | readl(&port_mmio->cmd)),
493 &port_mmio->cmd);
Stefano Babic771bfd12012-02-22 00:24:39 +0000494
495 /* Wait device ready */
Simon Glass96f2af42017-07-29 11:35:07 -0600496 while ((readl(&port_mmio->tfd) & (SATA_PORT_TFD_STS_ERR |
Stefano Babic771bfd12012-02-22 00:24:39 +0000497 SATA_PORT_TFD_STS_DRQ | SATA_PORT_TFD_STS_BSY))
498 && --timeout)
499 ;
500 if (timeout <= 0) {
501 debug("Device not ready for BSY, DRQ and"
502 "ERR in TFD!\n");
503 return -1;
504 }
505
506 writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
507 PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
Simon Glass96f2af42017-07-29 11:35:07 -0600508 PORT_CMD_START, &port_mmio->cmd);
Stefano Babic771bfd12012-02-22 00:24:39 +0000509
510 debug("Exit start port %d\n", port);
511
512 return 0;
513}
514
Simon Glassc5fc2a32017-07-29 11:35:06 -0600515static void dwc_ahsata_print_info(struct blk_desc *pdev)
Stefano Babic771bfd12012-02-22 00:24:39 +0000516{
Stefano Babic771bfd12012-02-22 00:24:39 +0000517 printf("SATA Device Info:\n\r");
Stefano Babic771bfd12012-02-22 00:24:39 +0000518 printf("S/N: %s\n\rProduct model number: %s\n\r"
Soeren Moch71657f12019-03-01 13:10:58 +0100519 "Firmware version: %s\n\rCapacity: " LBAFU " sectors\n\r",
Stefano Babic771bfd12012-02-22 00:24:39 +0000520 pdev->product, pdev->vendor, pdev->revision, pdev->lba);
Stefano Babic771bfd12012-02-22 00:24:39 +0000521}
522
Simon Glassc5fc2a32017-07-29 11:35:06 -0600523static void dwc_ahsata_identify(struct ahci_uc_priv *uc_priv, u16 *id)
Stefano Babic771bfd12012-02-22 00:24:39 +0000524{
Eric Nelson998816b2013-06-15 16:09:55 -0700525 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
526 struct sata_fis_h2d *cfis = &h2d;
Simon Glassb1f7f582017-07-29 11:35:04 -0600527 u8 port = uc_priv->hard_port_no;
Stefano Babic771bfd12012-02-22 00:24:39 +0000528
529 memset(cfis, 0, sizeof(struct sata_fis_h2d));
530
531 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
532 cfis->pm_port_c = 0x80; /* is command */
533 cfis->command = ATA_CMD_ID_ATA;
534
Simon Glassb1f7f582017-07-29 11:35:04 -0600535 ahci_exec_ata_cmd(uc_priv, port, cfis, (u8 *)id, ATA_ID_WORDS * 2,
536 READ_CMD);
Stefano Babic771bfd12012-02-22 00:24:39 +0000537 ata_swap_buf_le16(id, ATA_ID_WORDS);
538}
539
Simon Glassc5fc2a32017-07-29 11:35:06 -0600540static void dwc_ahsata_xfer_mode(struct ahci_uc_priv *uc_priv, u16 *id)
Stefano Babic771bfd12012-02-22 00:24:39 +0000541{
Simon Glassb1f7f582017-07-29 11:35:04 -0600542 uc_priv->pio_mask = id[ATA_ID_PIO_MODES];
543 uc_priv->udma_mask = id[ATA_ID_UDMA_MODES];
544 debug("pio %04x, udma %04x\n\r", uc_priv->pio_mask, uc_priv->udma_mask);
Stefano Babic771bfd12012-02-22 00:24:39 +0000545}
546
Simon Glassc5fc2a32017-07-29 11:35:06 -0600547static u32 dwc_ahsata_rw_cmd(struct ahci_uc_priv *uc_priv, u32 start,
548 u32 blkcnt, u8 *buffer, int is_write)
Stefano Babic771bfd12012-02-22 00:24:39 +0000549{
Eric Nelson998816b2013-06-15 16:09:55 -0700550 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
551 struct sata_fis_h2d *cfis = &h2d;
Simon Glassb1f7f582017-07-29 11:35:04 -0600552 u8 port = uc_priv->hard_port_no;
Stefano Babic771bfd12012-02-22 00:24:39 +0000553 u32 block;
554
555 block = start;
556
557 memset(cfis, 0, sizeof(struct sata_fis_h2d));
558
559 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
560 cfis->pm_port_c = 0x80; /* is command */
561 cfis->command = (is_write) ? ATA_CMD_WRITE : ATA_CMD_READ;
562 cfis->device = ATA_LBA;
563
564 cfis->device |= (block >> 24) & 0xf;
565 cfis->lba_high = (block >> 16) & 0xff;
566 cfis->lba_mid = (block >> 8) & 0xff;
567 cfis->lba_low = block & 0xff;
568 cfis->sector_count = (u8)(blkcnt & 0xff);
569
Simon Glassb1f7f582017-07-29 11:35:04 -0600570 if (ahci_exec_ata_cmd(uc_priv, port, cfis, buffer,
571 ATA_SECT_SIZE * blkcnt, is_write) > 0)
Stefano Babic771bfd12012-02-22 00:24:39 +0000572 return blkcnt;
573 else
574 return 0;
575}
576
Simon Glassc5fc2a32017-07-29 11:35:06 -0600577static void dwc_ahsata_flush_cache(struct ahci_uc_priv *uc_priv)
Stefano Babic771bfd12012-02-22 00:24:39 +0000578{
Eric Nelson998816b2013-06-15 16:09:55 -0700579 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
580 struct sata_fis_h2d *cfis = &h2d;
Simon Glassb1f7f582017-07-29 11:35:04 -0600581 u8 port = uc_priv->hard_port_no;
Stefano Babic771bfd12012-02-22 00:24:39 +0000582
583 memset(cfis, 0, sizeof(struct sata_fis_h2d));
584
585 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
586 cfis->pm_port_c = 0x80; /* is command */
587 cfis->command = ATA_CMD_FLUSH;
588
Simon Glassb1f7f582017-07-29 11:35:04 -0600589 ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, 0);
Stefano Babic771bfd12012-02-22 00:24:39 +0000590}
591
Simon Glassc5fc2a32017-07-29 11:35:06 -0600592static u32 dwc_ahsata_rw_cmd_ext(struct ahci_uc_priv *uc_priv, u32 start,
593 lbaint_t blkcnt, u8 *buffer, int is_write)
Stefano Babic771bfd12012-02-22 00:24:39 +0000594{
Eric Nelson998816b2013-06-15 16:09:55 -0700595 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
596 struct sata_fis_h2d *cfis = &h2d;
Simon Glassb1f7f582017-07-29 11:35:04 -0600597 u8 port = uc_priv->hard_port_no;
Stefano Babic771bfd12012-02-22 00:24:39 +0000598 u64 block;
599
600 block = (u64)start;
601
602 memset(cfis, 0, sizeof(struct sata_fis_h2d));
603
604 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
605 cfis->pm_port_c = 0x80; /* is command */
606
607 cfis->command = (is_write) ? ATA_CMD_WRITE_EXT
608 : ATA_CMD_READ_EXT;
609
610 cfis->lba_high_exp = (block >> 40) & 0xff;
611 cfis->lba_mid_exp = (block >> 32) & 0xff;
612 cfis->lba_low_exp = (block >> 24) & 0xff;
613 cfis->lba_high = (block >> 16) & 0xff;
614 cfis->lba_mid = (block >> 8) & 0xff;
615 cfis->lba_low = block & 0xff;
616 cfis->device = ATA_LBA;
617 cfis->sector_count_exp = (blkcnt >> 8) & 0xff;
618 cfis->sector_count = blkcnt & 0xff;
619
Simon Glassb1f7f582017-07-29 11:35:04 -0600620 if (ahci_exec_ata_cmd(uc_priv, port, cfis, buffer,
621 ATA_SECT_SIZE * blkcnt, is_write) > 0)
Stefano Babic771bfd12012-02-22 00:24:39 +0000622 return blkcnt;
623 else
624 return 0;
625}
626
Simon Glassc5fc2a32017-07-29 11:35:06 -0600627static void dwc_ahsata_flush_cache_ext(struct ahci_uc_priv *uc_priv)
Stefano Babic771bfd12012-02-22 00:24:39 +0000628{
Eric Nelson998816b2013-06-15 16:09:55 -0700629 struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
630 struct sata_fis_h2d *cfis = &h2d;
Simon Glassb1f7f582017-07-29 11:35:04 -0600631 u8 port = uc_priv->hard_port_no;
Stefano Babic771bfd12012-02-22 00:24:39 +0000632
633 memset(cfis, 0, sizeof(struct sata_fis_h2d));
634
635 cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
636 cfis->pm_port_c = 0x80; /* is command */
637 cfis->command = ATA_CMD_FLUSH_EXT;
638
Simon Glassb1f7f582017-07-29 11:35:04 -0600639 ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, 0);
Stefano Babic771bfd12012-02-22 00:24:39 +0000640}
641
Simon Glassc5fc2a32017-07-29 11:35:06 -0600642static void dwc_ahsata_init_wcache(struct ahci_uc_priv *uc_priv, u16 *id)
Stefano Babic771bfd12012-02-22 00:24:39 +0000643{
Stefano Babic771bfd12012-02-22 00:24:39 +0000644 if (ata_id_has_wcache(id) && ata_id_wcache_enabled(id))
Simon Glassb1f7f582017-07-29 11:35:04 -0600645 uc_priv->flags |= SATA_FLAG_WCACHE;
Stefano Babic771bfd12012-02-22 00:24:39 +0000646 if (ata_id_has_flush(id))
Simon Glassb1f7f582017-07-29 11:35:04 -0600647 uc_priv->flags |= SATA_FLAG_FLUSH;
Stefano Babic771bfd12012-02-22 00:24:39 +0000648 if (ata_id_has_flush_ext(id))
Simon Glassb1f7f582017-07-29 11:35:04 -0600649 uc_priv->flags |= SATA_FLAG_FLUSH_EXT;
Stefano Babic771bfd12012-02-22 00:24:39 +0000650}
651
Simon Glassc5fc2a32017-07-29 11:35:06 -0600652static u32 ata_low_level_rw_lba48(struct ahci_uc_priv *uc_priv, u32 blknr,
653 lbaint_t blkcnt, const void *buffer,
654 int is_write)
Stefano Babic771bfd12012-02-22 00:24:39 +0000655{
656 u32 start, blks;
657 u8 *addr;
658 int max_blks;
659
660 start = blknr;
661 blks = blkcnt;
662 addr = (u8 *)buffer;
663
664 max_blks = ATA_MAX_SECTORS_LBA48;
665
666 do {
667 if (blks > max_blks) {
Simon Glassc5fc2a32017-07-29 11:35:06 -0600668 if (max_blks != dwc_ahsata_rw_cmd_ext(uc_priv, start,
669 max_blks, addr,
670 is_write))
Stefano Babic771bfd12012-02-22 00:24:39 +0000671 return 0;
672 start += max_blks;
673 blks -= max_blks;
674 addr += ATA_SECT_SIZE * max_blks;
675 } else {
Simon Glassc5fc2a32017-07-29 11:35:06 -0600676 if (blks != dwc_ahsata_rw_cmd_ext(uc_priv, start, blks,
677 addr, is_write))
Stefano Babic771bfd12012-02-22 00:24:39 +0000678 return 0;
679 start += blks;
680 blks = 0;
681 addr += ATA_SECT_SIZE * blks;
682 }
683 } while (blks != 0);
684
685 return blkcnt;
686}
687
Simon Glassc5fc2a32017-07-29 11:35:06 -0600688static u32 ata_low_level_rw_lba28(struct ahci_uc_priv *uc_priv, u32 blknr,
689 lbaint_t blkcnt, const void *buffer,
690 int is_write)
Stefano Babic771bfd12012-02-22 00:24:39 +0000691{
692 u32 start, blks;
693 u8 *addr;
694 int max_blks;
695
696 start = blknr;
697 blks = blkcnt;
698 addr = (u8 *)buffer;
699
700 max_blks = ATA_MAX_SECTORS;
701 do {
702 if (blks > max_blks) {
Simon Glassc5fc2a32017-07-29 11:35:06 -0600703 if (max_blks != dwc_ahsata_rw_cmd(uc_priv, start,
704 max_blks, addr,
705 is_write))
Stefano Babic771bfd12012-02-22 00:24:39 +0000706 return 0;
707 start += max_blks;
708 blks -= max_blks;
709 addr += ATA_SECT_SIZE * max_blks;
710 } else {
Simon Glassc5fc2a32017-07-29 11:35:06 -0600711 if (blks != dwc_ahsata_rw_cmd(uc_priv, start, blks,
712 addr, is_write))
Stefano Babic771bfd12012-02-22 00:24:39 +0000713 return 0;
714 start += blks;
715 blks = 0;
716 addr += ATA_SECT_SIZE * blks;
717 }
718 } while (blks != 0);
719
720 return blkcnt;
721}
722
Simon Glassf89b2502017-07-29 11:35:12 -0600723static int dwc_ahci_start_ports(struct ahci_uc_priv *uc_priv)
724{
725 u32 linkmap;
726 int i;
727
728 linkmap = uc_priv->link_port_map;
729
730 if (0 == linkmap) {
731 printf("No port device detected!\n");
732 return -ENXIO;
733 }
734
735 for (i = 0; i < uc_priv->n_ports; i++) {
736 if ((linkmap >> i) && ((linkmap >> i) & 0x01)) {
737 if (ahci_port_start(uc_priv, (u8)i)) {
738 printf("Can not start port %d\n", i);
739 return 1;
740 }
741 uc_priv->hard_port_no = i;
742 break;
743 }
744 }
745
746 return 0;
747}
748
749static int dwc_ahsata_scan_common(struct ahci_uc_priv *uc_priv,
750 struct blk_desc *pdev)
751{
752 u8 serial[ATA_ID_SERNO_LEN + 1] = { 0 };
753 u8 firmware[ATA_ID_FW_REV_LEN + 1] = { 0 };
754 u8 product[ATA_ID_PROD_LEN + 1] = { 0 };
Simon Glassf89b2502017-07-29 11:35:12 -0600755 u8 port = uc_priv->hard_port_no;
756 ALLOC_CACHE_ALIGN_BUFFER(u16, id, ATA_ID_WORDS);
757
758 /* Identify device to get information */
759 dwc_ahsata_identify(uc_priv, id);
760
761 /* Serial number */
762 ata_id_c_string(id, serial, ATA_ID_SERNO, sizeof(serial));
763 memcpy(pdev->product, serial, sizeof(serial));
764
765 /* Firmware version */
766 ata_id_c_string(id, firmware, ATA_ID_FW_REV, sizeof(firmware));
767 memcpy(pdev->revision, firmware, sizeof(firmware));
768
769 /* Product model */
770 ata_id_c_string(id, product, ATA_ID_PROD, sizeof(product));
771 memcpy(pdev->vendor, product, sizeof(product));
772
Soeren Moch71657f12019-03-01 13:10:58 +0100773 /* Total sectors */
774 pdev->lba = ata_id_n_sectors(id);
Simon Glassf89b2502017-07-29 11:35:12 -0600775
776 pdev->type = DEV_TYPE_HARDDISK;
777 pdev->blksz = ATA_SECT_SIZE;
778 pdev->lun = 0;
779
780 /* Check if support LBA48 */
781 if (ata_id_has_lba48(id)) {
782 pdev->lba48 = 1;
783 debug("Device support LBA48\n\r");
784 }
785
786 /* Get the NCQ queue depth from device */
787 uc_priv->flags &= (~SATA_FLAG_Q_DEP_MASK);
788 uc_priv->flags |= ata_id_queue_depth(id);
789
790 /* Get the xfer mode from device */
791 dwc_ahsata_xfer_mode(uc_priv, id);
792
793 /* Get the write cache status from device */
794 dwc_ahsata_init_wcache(uc_priv, id);
795
796 /* Set the xfer mode to highest speed */
797 ahci_set_feature(uc_priv, port);
798
799 dwc_ahsata_print_info(pdev);
800
801 return 0;
802}
803
804/*
805 * SATA interface between low level driver and command layer
806 */
807static ulong sata_read_common(struct ahci_uc_priv *uc_priv,
808 struct blk_desc *desc, ulong blknr,
809 lbaint_t blkcnt, void *buffer)
810{
811 u32 rc;
812
813 if (desc->lba48)
814 rc = ata_low_level_rw_lba48(uc_priv, blknr, blkcnt, buffer,
815 READ_CMD);
816 else
817 rc = ata_low_level_rw_lba28(uc_priv, blknr, blkcnt, buffer,
818 READ_CMD);
819
820 return rc;
821}
822
823static ulong sata_write_common(struct ahci_uc_priv *uc_priv,
824 struct blk_desc *desc, ulong blknr,
825 lbaint_t blkcnt, const void *buffer)
826{
827 u32 rc;
828 u32 flags = uc_priv->flags;
829
830 if (desc->lba48) {
831 rc = ata_low_level_rw_lba48(uc_priv, blknr, blkcnt, buffer,
832 WRITE_CMD);
833 if ((flags & SATA_FLAG_WCACHE) && (flags & SATA_FLAG_FLUSH_EXT))
834 dwc_ahsata_flush_cache_ext(uc_priv);
835 } else {
836 rc = ata_low_level_rw_lba28(uc_priv, blknr, blkcnt, buffer,
837 WRITE_CMD);
838 if ((flags & SATA_FLAG_WCACHE) && (flags & SATA_FLAG_FLUSH))
839 dwc_ahsata_flush_cache(uc_priv);
840 }
841
842 return rc;
843}
844
Simon Glass0067b872017-07-29 11:35:16 -0600845#if !CONFIG_IS_ENABLED(AHCI)
Simon Glass22b08aa2017-07-29 11:35:11 -0600846static int ahci_init_one(int pdev)
847{
848 int rc;
849 struct ahci_uc_priv *uc_priv = NULL;
850
851 uc_priv = malloc(sizeof(struct ahci_uc_priv));
Ye Licc653ce2020-05-03 22:27:00 +0800852 if (!uc_priv)
853 return -ENOMEM;
854
Simon Glass22b08aa2017-07-29 11:35:11 -0600855 memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
856 uc_priv->dev = pdev;
857
858 uc_priv->host_flags = ATA_FLAG_SATA
859 | ATA_FLAG_NO_LEGACY
860 | ATA_FLAG_MMIO
861 | ATA_FLAG_PIO_DMA
862 | ATA_FLAG_NO_ATAPI;
863
864 uc_priv->mmio_base = (void __iomem *)CONFIG_DWC_AHSATA_BASE_ADDR;
865
866 /* initialize adapter */
867 rc = ahci_host_init(uc_priv);
868 if (rc)
869 goto err_out;
870
871 ahci_print_info(uc_priv);
872
873 /* Save the uc_private struct to block device struct */
874 sata_dev_desc[pdev].priv = uc_priv;
875
876 return 0;
877
878err_out:
Ye Licc653ce2020-05-03 22:27:00 +0800879 if (uc_priv)
880 free(uc_priv);
Simon Glass22b08aa2017-07-29 11:35:11 -0600881 return rc;
882}
883
Simon Glassed82fcc2017-07-29 11:35:03 -0600884int init_sata(int dev)
885{
Simon Glassb1f7f582017-07-29 11:35:04 -0600886 struct ahci_uc_priv *uc_priv = NULL;
Simon Glassed82fcc2017-07-29 11:35:03 -0600887
888#if defined(CONFIG_MX6)
889 if (!is_mx6dq() && !is_mx6dqp())
890 return 1;
891#endif
892 if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) {
893 printf("The sata index %d is out of ranges\n\r", dev);
894 return -1;
895 }
896
897 ahci_init_one(dev);
898
Simon Glassd30e76c2017-07-29 11:35:05 -0600899 uc_priv = sata_dev_desc[dev].priv;
Simon Glassed82fcc2017-07-29 11:35:03 -0600900
Simon Glassf89b2502017-07-29 11:35:12 -0600901 return dwc_ahci_start_ports(uc_priv) ? 1 : 0;
Simon Glassed82fcc2017-07-29 11:35:03 -0600902}
903
904int reset_sata(int dev)
905{
Simon Glassb1f7f582017-07-29 11:35:04 -0600906 struct ahci_uc_priv *uc_priv;
Simon Glassed82fcc2017-07-29 11:35:03 -0600907 struct sata_host_regs *host_mmio;
908
909 if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) {
910 printf("The sata index %d is out of ranges\n\r", dev);
911 return -1;
912 }
913
Simon Glassd30e76c2017-07-29 11:35:05 -0600914 uc_priv = sata_dev_desc[dev].priv;
Simon Glassb1f7f582017-07-29 11:35:04 -0600915 if (NULL == uc_priv)
Simon Glassed82fcc2017-07-29 11:35:03 -0600916 /* not initialized, so nothing to reset */
917 return 0;
918
Simon Glassd30e76c2017-07-29 11:35:05 -0600919 host_mmio = uc_priv->mmio_base;
Simon Glassed82fcc2017-07-29 11:35:03 -0600920 setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR);
921 while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR)
922 udelay(100);
923
Ye Lid301f8f2020-05-03 22:27:03 +0800924 free(uc_priv);
925 memset(&sata_dev_desc[dev], 0, sizeof(struct blk_desc));
926
Simon Glassed82fcc2017-07-29 11:35:03 -0600927 return 0;
928}
929
Nikita Kiryanov66914042014-08-20 15:08:53 +0300930int sata_port_status(int dev, int port)
931{
932 struct sata_port_regs *port_mmio;
Simon Glassb1f7f582017-07-29 11:35:04 -0600933 struct ahci_uc_priv *uc_priv = NULL;
Nikita Kiryanov66914042014-08-20 15:08:53 +0300934
935 if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1))
936 return -EINVAL;
937
938 if (sata_dev_desc[dev].priv == NULL)
939 return -ENODEV;
940
Simon Glassd30e76c2017-07-29 11:35:05 -0600941 uc_priv = sata_dev_desc[dev].priv;
942 port_mmio = uc_priv->port[port].port_mmio;
Nikita Kiryanov66914042014-08-20 15:08:53 +0300943
Simon Glass96f2af42017-07-29 11:35:07 -0600944 return readl(&port_mmio->ssts) & SATA_PORT_SSTS_DET_MASK;
Nikita Kiryanov66914042014-08-20 15:08:53 +0300945}
946
Stefano Babic771bfd12012-02-22 00:24:39 +0000947/*
948 * SATA interface between low level driver and command layer
949 */
Tom Rini532e8672012-09-29 07:53:06 -0700950ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer)
Stefano Babic771bfd12012-02-22 00:24:39 +0000951{
Simon Glassc5fc2a32017-07-29 11:35:06 -0600952 struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
Stefano Babic771bfd12012-02-22 00:24:39 +0000953
Simon Glassf89b2502017-07-29 11:35:12 -0600954 return sata_read_common(uc_priv, &sata_dev_desc[dev], blknr, blkcnt,
955 buffer);
Stefano Babic771bfd12012-02-22 00:24:39 +0000956}
957
Tom Rini532e8672012-09-29 07:53:06 -0700958ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer)
Stefano Babic771bfd12012-02-22 00:24:39 +0000959{
Simon Glassd30e76c2017-07-29 11:35:05 -0600960 struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
Stefano Babic771bfd12012-02-22 00:24:39 +0000961
Simon Glassf89b2502017-07-29 11:35:12 -0600962 return sata_write_common(uc_priv, &sata_dev_desc[dev], blknr, blkcnt,
963 buffer);
Stefano Babic771bfd12012-02-22 00:24:39 +0000964}
965
966int scan_sata(int dev)
967{
Simon Glassd30e76c2017-07-29 11:35:05 -0600968 struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
Simon Glass96f2af42017-07-29 11:35:07 -0600969 struct blk_desc *pdev = &sata_dev_desc[dev];
Stefano Babic771bfd12012-02-22 00:24:39 +0000970
Simon Glassf89b2502017-07-29 11:35:12 -0600971 return dwc_ahsata_scan_common(uc_priv, pdev);
Stefano Babic771bfd12012-02-22 00:24:39 +0000972}
Simon Glass0067b872017-07-29 11:35:16 -0600973#endif /* CONFIG_IS_ENABLED(AHCI) */
974
975#if CONFIG_IS_ENABLED(AHCI)
976
977int dwc_ahsata_port_status(struct udevice *dev, int port)
978{
979 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
980 struct sata_port_regs *port_mmio;
981
982 port_mmio = uc_priv->port[port].port_mmio;
983 return readl(&port_mmio->ssts) & SATA_PORT_SSTS_DET_MASK ? 0 : -ENXIO;
984}
985
986int dwc_ahsata_bus_reset(struct udevice *dev)
987{
988 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
989 struct sata_host_regs *host_mmio = uc_priv->mmio_base;
990
991 setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR);
992 while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR)
993 udelay(100);
994
995 return 0;
996}
997
998int dwc_ahsata_scan(struct udevice *dev)
999{
1000 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1001 struct blk_desc *desc;
1002 struct udevice *blk;
1003 int ret;
1004
1005 /*
1006 * Create only one block device and do detection
1007 * to make sure that there won't be a lot of
1008 * block devices created
1009 */
1010 device_find_first_child(dev, &blk);
1011 if (!blk) {
1012 ret = blk_create_devicef(dev, "dwc_ahsata_blk", "blk",
1013 IF_TYPE_SATA, -1, 512, 0, &blk);
1014 if (ret) {
1015 debug("Can't create device\n");
1016 return ret;
1017 }
1018 }
1019
1020 desc = dev_get_uclass_platdata(blk);
1021 ret = dwc_ahsata_scan_common(uc_priv, desc);
1022 if (ret) {
1023 debug("%s: Failed to scan bus\n", __func__);
1024 return ret;
1025 }
1026
1027 return 0;
1028}
1029
1030int dwc_ahsata_probe(struct udevice *dev)
1031{
1032 struct ahci_uc_priv *uc_priv = dev_get_uclass_priv(dev);
1033 int ret;
1034
Soeren Moch5569bbd2019-03-01 13:10:59 +01001035#if defined(CONFIG_MX6)
1036 setup_sata();
1037#endif
Simon Glass0067b872017-07-29 11:35:16 -06001038 uc_priv->host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
1039 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA | ATA_FLAG_NO_ATAPI;
1040 uc_priv->mmio_base = (void __iomem *)dev_read_addr(dev);
1041
1042 /* initialize adapter */
1043 ret = ahci_host_init(uc_priv);
1044 if (ret)
1045 return ret;
1046
1047 ahci_print_info(uc_priv);
1048
1049 return dwc_ahci_start_ports(uc_priv);
1050}
1051
1052static ulong dwc_ahsata_read(struct udevice *blk, lbaint_t blknr,
1053 lbaint_t blkcnt, void *buffer)
1054{
1055 struct blk_desc *desc = dev_get_uclass_platdata(blk);
1056 struct udevice *dev = dev_get_parent(blk);
1057 struct ahci_uc_priv *uc_priv;
1058
1059 uc_priv = dev_get_uclass_priv(dev);
1060 return sata_read_common(uc_priv, desc, blknr, blkcnt, buffer);
1061}
1062
1063static ulong dwc_ahsata_write(struct udevice *blk, lbaint_t blknr,
1064 lbaint_t blkcnt, const void *buffer)
1065{
1066 struct blk_desc *desc = dev_get_uclass_platdata(blk);
1067 struct udevice *dev = dev_get_parent(blk);
1068 struct ahci_uc_priv *uc_priv;
1069
1070 uc_priv = dev_get_uclass_priv(dev);
1071 return sata_write_common(uc_priv, desc, blknr, blkcnt, buffer);
1072}
1073
1074static const struct blk_ops dwc_ahsata_blk_ops = {
1075 .read = dwc_ahsata_read,
1076 .write = dwc_ahsata_write,
1077};
1078
1079U_BOOT_DRIVER(dwc_ahsata_blk) = {
1080 .name = "dwc_ahsata_blk",
1081 .id = UCLASS_BLK,
1082 .ops = &dwc_ahsata_blk_ops,
1083};
1084
Soeren Moch5569bbd2019-03-01 13:10:59 +01001085#if CONFIG_IS_ENABLED(DWC_AHSATA_AHCI)
1086struct ahci_ops dwc_ahsata_ahci_ops = {
1087 .port_status = dwc_ahsata_port_status,
1088 .reset = dwc_ahsata_bus_reset,
1089 .scan = dwc_ahsata_scan,
1090};
1091
1092static const struct udevice_id dwc_ahsata_ahci_ids[] = {
1093 { .compatible = "fsl,imx6q-ahci" },
1094 { }
1095};
1096
1097U_BOOT_DRIVER(dwc_ahsata_ahci) = {
1098 .name = "dwc_ahsata_ahci",
1099 .id = UCLASS_AHCI,
1100 .of_match = dwc_ahsata_ahci_ids,
1101 .ops = &dwc_ahsata_ahci_ops,
1102 .probe = dwc_ahsata_probe,
1103};
1104#endif
Simon Glass0067b872017-07-29 11:35:16 -06001105#endif