]> git.sur5r.net Git - u-boot/blob - drivers/ata/dwc_ahsata.c
33804e92dc4af8cdad75d1858536f3ccccd4cee8
[u-boot] / drivers / ata / dwc_ahsata.c
1 /*
2  * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
3  * Terry Lv <r65388@freescale.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <libata.h>
9 #include <ahci.h>
10 #include <fis.h>
11 #include <sata.h>
12
13 #include <common.h>
14 #include <malloc.h>
15 #include <linux/ctype.h>
16 #include <linux/errno.h>
17 #include <asm/io.h>
18 #include <linux/bitops.h>
19 #include <asm/arch/clock.h>
20 #include <asm/arch/sys_proto.h>
21 #include "dwc_ahsata.h"
22
23 struct sata_port_regs {
24         u32 clb;
25         u32 clbu;
26         u32 fb;
27         u32 fbu;
28         u32 is;
29         u32 ie;
30         u32 cmd;
31         u32 res1[1];
32         u32 tfd;
33         u32 sig;
34         u32 ssts;
35         u32 sctl;
36         u32 serr;
37         u32 sact;
38         u32 ci;
39         u32 sntf;
40         u32 res2[1];
41         u32 dmacr;
42         u32 res3[1];
43         u32 phycr;
44         u32 physr;
45 };
46
47 struct sata_host_regs {
48         u32 cap;
49         u32 ghc;
50         u32 is;
51         u32 pi;
52         u32 vs;
53         u32 ccc_ctl;
54         u32 ccc_ports;
55         u32 res1[2];
56         u32 cap2;
57         u32 res2[30];
58         u32 bistafr;
59         u32 bistcr;
60         u32 bistfctr;
61         u32 bistsr;
62         u32 bistdecr;
63         u32 res3[2];
64         u32 oobr;
65         u32 res4[8];
66         u32 timer1ms;
67         u32 res5[1];
68         u32 gparam1r;
69         u32 gparam2r;
70         u32 pparamr;
71         u32 testr;
72         u32 versionr;
73         u32 idr;
74 };
75
76 #define MAX_DATA_BYTES_PER_SG  (4 * 1024 * 1024)
77 #define MAX_BYTES_PER_TRANS (AHCI_MAX_SG * MAX_DATA_BYTES_PER_SG)
78
79 #define writel_with_flush(a, b) do { writel(a, b); readl(b); } while (0)
80
81 static int is_ready;
82
83 static inline void __iomem *ahci_port_base(void __iomem *base, u32 port)
84 {
85         return base + 0x100 + (port * 0x80);
86 }
87
88 static int waiting_for_cmd_completed(u8 *offset,
89                                         int timeout_msec,
90                                         u32 sign)
91 {
92         int i;
93         u32 status;
94
95         for (i = 0;
96                 ((status = readl(offset)) & sign) && i < timeout_msec;
97                 ++i)
98                 mdelay(1);
99
100         return (i < timeout_msec) ? 0 : -1;
101 }
102
103 static int ahci_setup_oobr(struct ahci_uc_priv *uc_priv, int clk)
104 {
105         struct sata_host_regs *host_mmio = uc_priv->mmio_base;
106
107         writel(SATA_HOST_OOBR_WE, &(host_mmio->oobr));
108         writel(0x02060b14, &(host_mmio->oobr));
109
110         return 0;
111 }
112
113 static int ahci_host_init(struct ahci_uc_priv *uc_priv)
114 {
115         u32 tmp, cap_save, num_ports;
116         int i, j, timeout = 1000;
117         struct sata_port_regs *port_mmio = NULL;
118         struct sata_host_regs *host_mmio = uc_priv->mmio_base;
119         int clk = mxc_get_clock(MXC_SATA_CLK);
120
121         cap_save = readl(&(host_mmio->cap));
122         cap_save |= SATA_HOST_CAP_SSS;
123
124         /* global controller reset */
125         tmp = readl(&(host_mmio->ghc));
126         if ((tmp & SATA_HOST_GHC_HR) == 0)
127                 writel_with_flush(tmp | SATA_HOST_GHC_HR, &(host_mmio->ghc));
128
129         while ((readl(&(host_mmio->ghc)) & SATA_HOST_GHC_HR)
130                 && --timeout)
131                 ;
132
133         if (timeout <= 0) {
134                 debug("controller reset failed (0x%x)\n", tmp);
135                 return -1;
136         }
137
138         /* Set timer 1ms */
139         writel(clk / 1000, &(host_mmio->timer1ms));
140
141         ahci_setup_oobr(uc_priv, 0);
142
143         writel_with_flush(SATA_HOST_GHC_AE, &(host_mmio->ghc));
144         writel(cap_save, &(host_mmio->cap));
145         num_ports = (cap_save & SATA_HOST_CAP_NP_MASK) + 1;
146         writel_with_flush((1 << num_ports) - 1,
147                                 &(host_mmio->pi));
148
149         /*
150          * Determine which Ports are implemented by the DWC_ahsata,
151          * by reading the PI register. This bit map value aids the
152          * software to determine how many Ports are available and
153          * which Port registers need to be initialized.
154          */
155         uc_priv->cap = readl(&(host_mmio->cap));
156         uc_priv->port_map = readl(&(host_mmio->pi));
157
158         /* Determine how many command slots the HBA supports */
159         uc_priv->n_ports = (uc_priv->cap & SATA_HOST_CAP_NP_MASK) + 1;
160
161         debug("cap 0x%x  port_map 0x%x  n_ports %d\n",
162                 uc_priv->cap, uc_priv->port_map, uc_priv->n_ports);
163
164         for (i = 0; i < uc_priv->n_ports; i++) {
165                 uc_priv->port[i].port_mmio = ahci_port_base(host_mmio, i);
166                 port_mmio = uc_priv->port[i].port_mmio;
167
168                 /* Ensure that the DWC_ahsata is in idle state */
169                 tmp = readl(&(port_mmio->cmd));
170
171                 /*
172                  * When P#CMD.ST, P#CMD.CR, P#CMD.FRE and P#CMD.FR
173                  * are all cleared, the Port is in an idle state.
174                  */
175                 if (tmp & (SATA_PORT_CMD_CR | SATA_PORT_CMD_FR |
176                         SATA_PORT_CMD_FRE | SATA_PORT_CMD_ST)) {
177
178                         /*
179                          * System software places a Port into the idle state by
180                          * clearing P#CMD.ST and waiting for P#CMD.CR to return
181                          * 0 when read.
182                          */
183                         tmp &= ~SATA_PORT_CMD_ST;
184                         writel_with_flush(tmp, &(port_mmio->cmd));
185
186                         /*
187                          * spec says 500 msecs for each bit, so
188                          * this is slightly incorrect.
189                          */
190                         mdelay(500);
191
192                         timeout = 1000;
193                         while ((readl(&(port_mmio->cmd)) & SATA_PORT_CMD_CR)
194                                 && --timeout)
195                                 ;
196
197                         if (timeout <= 0) {
198                                 debug("port reset failed (0x%x)\n", tmp);
199                                 return -1;
200                         }
201                 }
202
203                 /* Spin-up device */
204                 tmp = readl(&(port_mmio->cmd));
205                 writel((tmp | SATA_PORT_CMD_SUD), &(port_mmio->cmd));
206
207                 /* Wait for spin-up to finish */
208                 timeout = 1000;
209                 while (!(readl(&(port_mmio->cmd)) | SATA_PORT_CMD_SUD)
210                         && --timeout)
211                         ;
212                 if (timeout <= 0) {
213                         debug("Spin-Up can't finish!\n");
214                         return -1;
215                 }
216
217                 for (j = 0; j < 100; ++j) {
218                         mdelay(10);
219                         tmp = readl(&(port_mmio->ssts));
220                         if (((tmp & SATA_PORT_SSTS_DET_MASK) == 0x3) ||
221                                 ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x1))
222                                 break;
223                 }
224
225                 /* Wait for COMINIT bit 26 (DIAG_X) in SERR */
226                 timeout = 1000;
227                 while (!(readl(&(port_mmio->serr)) | SATA_PORT_SERR_DIAG_X)
228                         && --timeout)
229                         ;
230                 if (timeout <= 0) {
231                         debug("Can't find DIAG_X set!\n");
232                         return -1;
233                 }
234
235                 /*
236                  * For each implemented Port, clear the P#SERR
237                  * register, by writing ones to each implemented\
238                  * bit location.
239                  */
240                 tmp = readl(&(port_mmio->serr));
241                 debug("P#SERR 0x%x\n",
242                                 tmp);
243                 writel(tmp, &(port_mmio->serr));
244
245                 /* Ack any pending irq events for this port */
246                 tmp = readl(&(host_mmio->is));
247                 debug("IS 0x%x\n", tmp);
248                 if (tmp)
249                         writel(tmp, &(host_mmio->is));
250
251                 writel(1 << i, &(host_mmio->is));
252
253                 /* set irq mask (enables interrupts) */
254                 writel(DEF_PORT_IRQ, &(port_mmio->ie));
255
256                 /* register linkup ports */
257                 tmp = readl(&(port_mmio->ssts));
258                 debug("Port %d status: 0x%x\n", i, tmp);
259                 if ((tmp & SATA_PORT_SSTS_DET_MASK) == 0x03)
260                         uc_priv->link_port_map |= (0x01 << i);
261         }
262
263         tmp = readl(&(host_mmio->ghc));
264         debug("GHC 0x%x\n", tmp);
265         writel(tmp | SATA_HOST_GHC_IE, &(host_mmio->ghc));
266         tmp = readl(&(host_mmio->ghc));
267         debug("GHC 0x%x\n", tmp);
268
269         return 0;
270 }
271
272 static void ahci_print_info(struct ahci_uc_priv *uc_priv)
273 {
274         struct sata_host_regs *host_mmio = uc_priv->mmio_base;
275         u32 vers, cap, impl, speed;
276         const char *speed_s;
277         const char *scc_s;
278
279         vers = readl(&(host_mmio->vs));
280         cap = uc_priv->cap;
281         impl = uc_priv->port_map;
282
283         speed = (cap & SATA_HOST_CAP_ISS_MASK)
284                 >> SATA_HOST_CAP_ISS_OFFSET;
285         if (speed == 1)
286                 speed_s = "1.5";
287         else if (speed == 2)
288                 speed_s = "3";
289         else
290                 speed_s = "?";
291
292         scc_s = "SATA";
293
294         printf("AHCI %02x%02x.%02x%02x "
295                 "%u slots %u ports %s Gbps 0x%x impl %s mode\n",
296                 (vers >> 24) & 0xff,
297                 (vers >> 16) & 0xff,
298                 (vers >> 8) & 0xff,
299                 vers & 0xff,
300                 ((cap >> 8) & 0x1f) + 1,
301                 (cap & 0x1f) + 1,
302                 speed_s,
303                 impl,
304                 scc_s);
305
306         printf("flags: "
307                 "%s%s%s%s%s%s"
308                 "%s%s%s%s%s%s%s\n",
309                 cap & (1 << 31) ? "64bit " : "",
310                 cap & (1 << 30) ? "ncq " : "",
311                 cap & (1 << 28) ? "ilck " : "",
312                 cap & (1 << 27) ? "stag " : "",
313                 cap & (1 << 26) ? "pm " : "",
314                 cap & (1 << 25) ? "led " : "",
315                 cap & (1 << 24) ? "clo " : "",
316                 cap & (1 << 19) ? "nz " : "",
317                 cap & (1 << 18) ? "only " : "",
318                 cap & (1 << 17) ? "pmp " : "",
319                 cap & (1 << 15) ? "pio " : "",
320                 cap & (1 << 14) ? "slum " : "",
321                 cap & (1 << 13) ? "part " : "");
322 }
323
324 static int ahci_init_one(int pdev)
325 {
326         int rc;
327         struct ahci_uc_priv *uc_priv = NULL;
328
329         uc_priv = malloc(sizeof(struct ahci_uc_priv));
330         memset(uc_priv, 0, sizeof(struct ahci_uc_priv));
331         uc_priv->dev = pdev;
332
333         uc_priv->host_flags = ATA_FLAG_SATA
334                                 | ATA_FLAG_NO_LEGACY
335                                 | ATA_FLAG_MMIO
336                                 | ATA_FLAG_PIO_DMA
337                                 | ATA_FLAG_NO_ATAPI;
338
339         uc_priv->mmio_base = (void __iomem *)CONFIG_DWC_AHSATA_BASE_ADDR;
340
341         /* initialize adapter */
342         rc = ahci_host_init(uc_priv);
343         if (rc)
344                 goto err_out;
345
346         ahci_print_info(uc_priv);
347
348         /* Save the uc_private struct to block device struct */
349         sata_dev_desc[pdev].priv = uc_priv;
350
351         return 0;
352
353 err_out:
354         return rc;
355 }
356
357 static int ahci_fill_sg(struct ahci_uc_priv *uc_priv, u8 port,
358                         unsigned char *buf, int buf_len)
359 {
360         struct ahci_ioports *pp = &(uc_priv->port[port]);
361         struct ahci_sg *ahci_sg = pp->cmd_tbl_sg;
362         u32 sg_count, max_bytes;
363         int i;
364
365         max_bytes = MAX_DATA_BYTES_PER_SG;
366         sg_count = ((buf_len - 1) / max_bytes) + 1;
367         if (sg_count > AHCI_MAX_SG) {
368                 printf("Error:Too much sg!\n");
369                 return -1;
370         }
371
372         for (i = 0; i < sg_count; i++) {
373                 ahci_sg->addr =
374                         cpu_to_le32((u32)buf + i * max_bytes);
375                 ahci_sg->addr_hi = 0;
376                 ahci_sg->flags_size = cpu_to_le32(0x3fffff &
377                                         (buf_len < max_bytes
378                                         ? (buf_len - 1)
379                                         : (max_bytes - 1)));
380                 ahci_sg++;
381                 buf_len -= max_bytes;
382         }
383
384         return sg_count;
385 }
386
387 static void ahci_fill_cmd_slot(struct ahci_ioports *pp, u32 cmd_slot, u32 opts)
388 {
389         struct ahci_cmd_hdr *cmd_hdr = (struct ahci_cmd_hdr *)(pp->cmd_slot +
390                                         AHCI_CMD_SLOT_SZ * cmd_slot);
391
392         memset(cmd_hdr, 0, AHCI_CMD_SLOT_SZ);
393         cmd_hdr->opts = cpu_to_le32(opts);
394         cmd_hdr->status = 0;
395         pp->cmd_slot->tbl_addr = cpu_to_le32((u32)pp->cmd_tbl & 0xffffffff);
396 #ifdef CONFIG_PHYS_64BIT
397         pp->cmd_slot->tbl_addr_hi =
398             cpu_to_le32((u32)(((pp->cmd_tbl) >> 16) >> 16));
399 #endif
400 }
401
402 #define AHCI_GET_CMD_SLOT(c) ((c) ? ffs(c) : 0)
403
404 static int ahci_exec_ata_cmd(struct ahci_uc_priv *uc_priv, u8 port,
405                              struct sata_fis_h2d *cfis, u8 *buf, u32 buf_len,
406                              s32 is_write)
407 {
408         struct ahci_ioports *pp = &(uc_priv->port[port]);
409         struct sata_port_regs *port_mmio = pp->port_mmio;
410         u32 opts;
411         int sg_count = 0, cmd_slot = 0;
412
413         cmd_slot = AHCI_GET_CMD_SLOT(readl(&(port_mmio->ci)));
414         if (32 == cmd_slot) {
415                 printf("Can't find empty command slot!\n");
416                 return 0;
417         }
418
419         /* Check xfer length */
420         if (buf_len > MAX_BYTES_PER_TRANS) {
421                 printf("Max transfer length is %dB\n\r",
422                         MAX_BYTES_PER_TRANS);
423                 return 0;
424         }
425
426         memcpy((u8 *)(pp->cmd_tbl), cfis, sizeof(struct sata_fis_h2d));
427         if (buf && buf_len)
428                 sg_count = ahci_fill_sg(uc_priv, port, buf, buf_len);
429         opts = (sizeof(struct sata_fis_h2d) >> 2) | (sg_count << 16);
430         if (is_write) {
431                 opts |= 0x40;
432                 flush_cache((ulong)buf, buf_len);
433         }
434         ahci_fill_cmd_slot(pp, cmd_slot, opts);
435
436         flush_cache((int)(pp->cmd_slot), AHCI_PORT_PRIV_DMA_SZ);
437         writel_with_flush(1 << cmd_slot, &(port_mmio->ci));
438
439         if (waiting_for_cmd_completed((u8 *)&(port_mmio->ci),
440                                 10000, 0x1 << cmd_slot)) {
441                 printf("timeout exit!\n");
442                 return -1;
443         }
444         invalidate_dcache_range((int)(pp->cmd_slot),
445                                 (int)(pp->cmd_slot)+AHCI_PORT_PRIV_DMA_SZ);
446         debug("ahci_exec_ata_cmd: %d byte transferred.\n",
447               pp->cmd_slot->status);
448         if (!is_write)
449                 invalidate_dcache_range((ulong)buf, (ulong)buf+buf_len);
450
451         return buf_len;
452 }
453
454 static void ahci_set_feature(struct ahci_uc_priv *uc_priv, u8 port)
455 {
456         struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
457         struct sata_fis_h2d *cfis = &h2d;
458
459         memset(cfis, 0, sizeof(struct sata_fis_h2d));
460         cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
461         cfis->pm_port_c = 1 << 7;
462         cfis->command = ATA_CMD_SET_FEATURES;
463         cfis->features = SETFEATURES_XFER;
464         cfis->sector_count = ffs(uc_priv->udma_mask + 1) + 0x3e;
465
466         ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, READ_CMD);
467 }
468
469 static int ahci_port_start(struct ahci_uc_priv *uc_priv, u8 port)
470 {
471         struct ahci_ioports *pp = &(uc_priv->port[port]);
472         struct sata_port_regs *port_mmio = pp->port_mmio;
473         u32 port_status;
474         u32 mem;
475         int timeout = 10000000;
476
477         debug("Enter start port: %d\n", port);
478         port_status = readl(&(port_mmio->ssts));
479         debug("Port %d status: %x\n", port, port_status);
480         if ((port_status & 0xf) != 0x03) {
481                 printf("No Link on this port!\n");
482                 return -1;
483         }
484
485         mem = (u32)malloc(AHCI_PORT_PRIV_DMA_SZ + 1024);
486         if (!mem) {
487                 free(pp);
488                 printf("No mem for table!\n");
489                 return -ENOMEM;
490         }
491
492         mem = (mem + 0x400) & (~0x3ff); /* Aligned to 1024-bytes */
493         memset((u8 *)mem, 0, AHCI_PORT_PRIV_DMA_SZ);
494
495         /*
496          * First item in chunk of DMA memory: 32-slot command table,
497          * 32 bytes each in size
498          */
499         pp->cmd_slot = (struct ahci_cmd_hdr *)mem;
500         debug("cmd_slot = 0x%x\n", (unsigned int) pp->cmd_slot);
501         mem += (AHCI_CMD_SLOT_SZ * DWC_AHSATA_MAX_CMD_SLOTS);
502
503         /*
504          * Second item: Received-FIS area, 256-Byte aligned
505          */
506         pp->rx_fis = mem;
507         mem += AHCI_RX_FIS_SZ;
508
509         /*
510          * Third item: data area for storing a single command
511          * and its scatter-gather table
512          */
513         pp->cmd_tbl = mem;
514         debug("cmd_tbl_dma = 0x%lx\n", pp->cmd_tbl);
515
516         mem += AHCI_CMD_TBL_HDR;
517
518         writel_with_flush(0x00004444, &(port_mmio->dmacr));
519         pp->cmd_tbl_sg = (struct ahci_sg *)mem;
520         writel_with_flush((u32)pp->cmd_slot, &(port_mmio->clb));
521         writel_with_flush(pp->rx_fis, &(port_mmio->fb));
522
523         /* Enable FRE */
524         writel_with_flush((SATA_PORT_CMD_FRE | readl(&(port_mmio->cmd))),
525                         &(port_mmio->cmd));
526
527         /* Wait device ready */
528         while ((readl(&(port_mmio->tfd)) & (SATA_PORT_TFD_STS_ERR |
529                 SATA_PORT_TFD_STS_DRQ | SATA_PORT_TFD_STS_BSY))
530                 && --timeout)
531                 ;
532         if (timeout <= 0) {
533                 debug("Device not ready for BSY, DRQ and"
534                         "ERR in TFD!\n");
535                 return -1;
536         }
537
538         writel_with_flush(PORT_CMD_ICC_ACTIVE | PORT_CMD_FIS_RX |
539                           PORT_CMD_POWER_ON | PORT_CMD_SPIN_UP |
540                           PORT_CMD_START, &(port_mmio->cmd));
541
542         debug("Exit start port %d\n", port);
543
544         return 0;
545 }
546
547 static void dwc_ahsata_print_info(struct blk_desc *pdev)
548 {
549         printf("SATA Device Info:\n\r");
550 #ifdef CONFIG_SYS_64BIT_LBA
551         printf("S/N: %s\n\rProduct model number: %s\n\r"
552                 "Firmware version: %s\n\rCapacity: %lld sectors\n\r",
553                 pdev->product, pdev->vendor, pdev->revision, pdev->lba);
554 #else
555         printf("S/N: %s\n\rProduct model number: %s\n\r"
556                 "Firmware version: %s\n\rCapacity: %ld sectors\n\r",
557                 pdev->product, pdev->vendor, pdev->revision, pdev->lba);
558 #endif
559 }
560
561 static void dwc_ahsata_identify(struct ahci_uc_priv *uc_priv, u16 *id)
562 {
563         struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
564         struct sata_fis_h2d *cfis = &h2d;
565         u8 port = uc_priv->hard_port_no;
566
567         memset(cfis, 0, sizeof(struct sata_fis_h2d));
568
569         cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
570         cfis->pm_port_c = 0x80; /* is command */
571         cfis->command = ATA_CMD_ID_ATA;
572
573         ahci_exec_ata_cmd(uc_priv, port, cfis, (u8 *)id, ATA_ID_WORDS * 2,
574                           READ_CMD);
575         ata_swap_buf_le16(id, ATA_ID_WORDS);
576 }
577
578 static void dwc_ahsata_xfer_mode(struct ahci_uc_priv *uc_priv, u16 *id)
579 {
580         uc_priv->pio_mask = id[ATA_ID_PIO_MODES];
581         uc_priv->udma_mask = id[ATA_ID_UDMA_MODES];
582         debug("pio %04x, udma %04x\n\r", uc_priv->pio_mask, uc_priv->udma_mask);
583 }
584
585 static u32 dwc_ahsata_rw_cmd(struct ahci_uc_priv *uc_priv, u32 start,
586                              u32 blkcnt, u8 *buffer, int is_write)
587 {
588         struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
589         struct sata_fis_h2d *cfis = &h2d;
590         u8 port = uc_priv->hard_port_no;
591         u32 block;
592
593         block = start;
594
595         memset(cfis, 0, sizeof(struct sata_fis_h2d));
596
597         cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
598         cfis->pm_port_c = 0x80; /* is command */
599         cfis->command = (is_write) ? ATA_CMD_WRITE : ATA_CMD_READ;
600         cfis->device = ATA_LBA;
601
602         cfis->device |= (block >> 24) & 0xf;
603         cfis->lba_high = (block >> 16) & 0xff;
604         cfis->lba_mid = (block >> 8) & 0xff;
605         cfis->lba_low = block & 0xff;
606         cfis->sector_count = (u8)(blkcnt & 0xff);
607
608         if (ahci_exec_ata_cmd(uc_priv, port, cfis, buffer,
609                               ATA_SECT_SIZE * blkcnt, is_write) > 0)
610                 return blkcnt;
611         else
612                 return 0;
613 }
614
615 static void dwc_ahsata_flush_cache(struct ahci_uc_priv *uc_priv)
616 {
617         struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
618         struct sata_fis_h2d *cfis = &h2d;
619         u8 port = uc_priv->hard_port_no;
620
621         memset(cfis, 0, sizeof(struct sata_fis_h2d));
622
623         cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
624         cfis->pm_port_c = 0x80; /* is command */
625         cfis->command = ATA_CMD_FLUSH;
626
627         ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, 0);
628 }
629
630 static u32 dwc_ahsata_rw_cmd_ext(struct ahci_uc_priv *uc_priv, u32 start,
631                                  lbaint_t blkcnt, u8 *buffer, int is_write)
632 {
633         struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
634         struct sata_fis_h2d *cfis = &h2d;
635         u8 port = uc_priv->hard_port_no;
636         u64 block;
637
638         block = (u64)start;
639
640         memset(cfis, 0, sizeof(struct sata_fis_h2d));
641
642         cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
643         cfis->pm_port_c = 0x80; /* is command */
644
645         cfis->command = (is_write) ? ATA_CMD_WRITE_EXT
646                                  : ATA_CMD_READ_EXT;
647
648         cfis->lba_high_exp = (block >> 40) & 0xff;
649         cfis->lba_mid_exp = (block >> 32) & 0xff;
650         cfis->lba_low_exp = (block >> 24) & 0xff;
651         cfis->lba_high = (block >> 16) & 0xff;
652         cfis->lba_mid = (block >> 8) & 0xff;
653         cfis->lba_low = block & 0xff;
654         cfis->device = ATA_LBA;
655         cfis->sector_count_exp = (blkcnt >> 8) & 0xff;
656         cfis->sector_count = blkcnt & 0xff;
657
658         if (ahci_exec_ata_cmd(uc_priv, port, cfis, buffer,
659                               ATA_SECT_SIZE * blkcnt, is_write) > 0)
660                 return blkcnt;
661         else
662                 return 0;
663 }
664
665 static void dwc_ahsata_flush_cache_ext(struct ahci_uc_priv *uc_priv)
666 {
667         struct sata_fis_h2d h2d __aligned(ARCH_DMA_MINALIGN);
668         struct sata_fis_h2d *cfis = &h2d;
669         u8 port = uc_priv->hard_port_no;
670
671         memset(cfis, 0, sizeof(struct sata_fis_h2d));
672
673         cfis->fis_type = SATA_FIS_TYPE_REGISTER_H2D;
674         cfis->pm_port_c = 0x80; /* is command */
675         cfis->command = ATA_CMD_FLUSH_EXT;
676
677         ahci_exec_ata_cmd(uc_priv, port, cfis, NULL, 0, 0);
678 }
679
680 static void dwc_ahsata_init_wcache(struct ahci_uc_priv *uc_priv, u16 *id)
681 {
682         if (ata_id_has_wcache(id) && ata_id_wcache_enabled(id))
683                 uc_priv->flags |= SATA_FLAG_WCACHE;
684         if (ata_id_has_flush(id))
685                 uc_priv->flags |= SATA_FLAG_FLUSH;
686         if (ata_id_has_flush_ext(id))
687                 uc_priv->flags |= SATA_FLAG_FLUSH_EXT;
688 }
689
690 static u32 ata_low_level_rw_lba48(struct ahci_uc_priv *uc_priv, u32 blknr,
691                                   lbaint_t blkcnt, const void *buffer,
692                                   int is_write)
693 {
694         u32 start, blks;
695         u8 *addr;
696         int max_blks;
697
698         start = blknr;
699         blks = blkcnt;
700         addr = (u8 *)buffer;
701
702         max_blks = ATA_MAX_SECTORS_LBA48;
703
704         do {
705                 if (blks > max_blks) {
706                         if (max_blks != dwc_ahsata_rw_cmd_ext(uc_priv, start,
707                                                               max_blks, addr,
708                                                               is_write))
709                                 return 0;
710                         start += max_blks;
711                         blks -= max_blks;
712                         addr += ATA_SECT_SIZE * max_blks;
713                 } else {
714                         if (blks != dwc_ahsata_rw_cmd_ext(uc_priv, start, blks,
715                                                           addr, is_write))
716                                 return 0;
717                         start += blks;
718                         blks = 0;
719                         addr += ATA_SECT_SIZE * blks;
720                 }
721         } while (blks != 0);
722
723         return blkcnt;
724 }
725
726 static u32 ata_low_level_rw_lba28(struct ahci_uc_priv *uc_priv, u32 blknr,
727                                   lbaint_t blkcnt, const void *buffer,
728                                   int is_write)
729 {
730         u32 start, blks;
731         u8 *addr;
732         int max_blks;
733
734         start = blknr;
735         blks = blkcnt;
736         addr = (u8 *)buffer;
737
738         max_blks = ATA_MAX_SECTORS;
739         do {
740                 if (blks > max_blks) {
741                         if (max_blks != dwc_ahsata_rw_cmd(uc_priv, start,
742                                                           max_blks, addr,
743                                                           is_write))
744                                 return 0;
745                         start += max_blks;
746                         blks -= max_blks;
747                         addr += ATA_SECT_SIZE * max_blks;
748                 } else {
749                         if (blks != dwc_ahsata_rw_cmd(uc_priv, start, blks,
750                                                       addr, is_write))
751                                 return 0;
752                         start += blks;
753                         blks = 0;
754                         addr += ATA_SECT_SIZE * blks;
755                 }
756         } while (blks != 0);
757
758         return blkcnt;
759 }
760
761 int init_sata(int dev)
762 {
763         int i;
764         u32 linkmap;
765         struct ahci_uc_priv *uc_priv = NULL;
766
767 #if defined(CONFIG_MX6)
768         if (!is_mx6dq() && !is_mx6dqp())
769                 return 1;
770 #endif
771         if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) {
772                 printf("The sata index %d is out of ranges\n\r", dev);
773                 return -1;
774         }
775
776         ahci_init_one(dev);
777
778         uc_priv = sata_dev_desc[dev].priv;
779         linkmap = uc_priv->link_port_map;
780
781         if (0 == linkmap) {
782                 printf("No port device detected!\n");
783                 return 1;
784         }
785
786         for (i = 0; i < uc_priv->n_ports; i++) {
787                 if ((linkmap >> i) && ((linkmap >> i) & 0x01)) {
788                         if (ahci_port_start(uc_priv, (u8)i)) {
789                                 printf("Can not start port %d\n", i);
790                                 return 1;
791                         }
792                         uc_priv->hard_port_no = i;
793                         break;
794                 }
795         }
796
797         return 0;
798 }
799
800 int reset_sata(int dev)
801 {
802         struct ahci_uc_priv *uc_priv;
803         struct sata_host_regs *host_mmio;
804
805         if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) {
806                 printf("The sata index %d is out of ranges\n\r", dev);
807                 return -1;
808         }
809
810         uc_priv = sata_dev_desc[dev].priv;
811         if (NULL == uc_priv)
812                 /* not initialized, so nothing to reset */
813                 return 0;
814
815         host_mmio = uc_priv->mmio_base;
816         setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR);
817         while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR)
818                 udelay(100);
819
820         return 0;
821 }
822
823 int sata_port_status(int dev, int port)
824 {
825         struct sata_port_regs *port_mmio;
826         struct ahci_uc_priv *uc_priv = NULL;
827
828         if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1))
829                 return -EINVAL;
830
831         if (sata_dev_desc[dev].priv == NULL)
832                 return -ENODEV;
833
834         uc_priv = sata_dev_desc[dev].priv;
835         port_mmio = uc_priv->port[port].port_mmio;
836
837         return readl(&(port_mmio->ssts)) & SATA_PORT_SSTS_DET_MASK;
838 }
839
840 /*
841  * SATA interface between low level driver and command layer
842  */
843 ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer)
844 {
845         struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
846         u32 rc;
847
848         if (sata_dev_desc[dev].lba48)
849                 rc = ata_low_level_rw_lba48(uc_priv, blknr, blkcnt,
850                                                 buffer, READ_CMD);
851         else
852                 rc = ata_low_level_rw_lba28(uc_priv, blknr, blkcnt,
853                                                 buffer, READ_CMD);
854         return rc;
855 }
856
857 ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer)
858 {
859         u32 rc;
860         struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
861         u32 flags = uc_priv->flags;
862
863         if (sata_dev_desc[dev].lba48) {
864                 rc = ata_low_level_rw_lba48(uc_priv, blknr, blkcnt, buffer,
865                                             WRITE_CMD);
866                 if ((flags & SATA_FLAG_WCACHE) &&
867                         (flags & SATA_FLAG_FLUSH_EXT))
868                         dwc_ahsata_flush_cache_ext(uc_priv);
869         } else {
870                 rc = ata_low_level_rw_lba28(uc_priv, blknr, blkcnt, buffer,
871                                             WRITE_CMD);
872                 if ((flags & SATA_FLAG_WCACHE) &&
873                         (flags & SATA_FLAG_FLUSH))
874                         dwc_ahsata_flush_cache(uc_priv);
875         }
876         return rc;
877 }
878
879 int scan_sata(int dev)
880 {
881         u8 serial[ATA_ID_SERNO_LEN + 1] = { 0 };
882         u8 firmware[ATA_ID_FW_REV_LEN + 1] = { 0 };
883         u8 product[ATA_ID_PROD_LEN + 1] = { 0 };
884         u16 *id;
885         u64 n_sectors;
886         struct ahci_uc_priv *uc_priv = sata_dev_desc[dev].priv;
887         u8 port = uc_priv->hard_port_no;
888         struct blk_desc *pdev = &(sata_dev_desc[dev]);
889
890         id = (u16 *)memalign(ARCH_DMA_MINALIGN,
891                                 roundup(ARCH_DMA_MINALIGN,
892                                         (ATA_ID_WORDS * 2)));
893         if (!id) {
894                 printf("id malloc failed\n\r");
895                 return -1;
896         }
897
898         /* Identify device to get information */
899         dwc_ahsata_identify(uc_priv, id);
900
901         /* Serial number */
902         ata_id_c_string(id, serial, ATA_ID_SERNO, sizeof(serial));
903         memcpy(pdev->product, serial, sizeof(serial));
904
905         /* Firmware version */
906         ata_id_c_string(id, firmware, ATA_ID_FW_REV, sizeof(firmware));
907         memcpy(pdev->revision, firmware, sizeof(firmware));
908
909         /* Product model */
910         ata_id_c_string(id, product, ATA_ID_PROD, sizeof(product));
911         memcpy(pdev->vendor, product, sizeof(product));
912
913         /* Totoal sectors */
914         n_sectors = ata_id_n_sectors(id);
915         pdev->lba = (u32)n_sectors;
916
917         pdev->type = DEV_TYPE_HARDDISK;
918         pdev->blksz = ATA_SECT_SIZE;
919         pdev->lun = 0 ;
920
921         /* Check if support LBA48 */
922         if (ata_id_has_lba48(id)) {
923                 pdev->lba48 = 1;
924                 debug("Device support LBA48\n\r");
925         }
926
927         /* Get the NCQ queue depth from device */
928         uc_priv->flags &= (~SATA_FLAG_Q_DEP_MASK);
929         uc_priv->flags |= ata_id_queue_depth(id);
930
931         /* Get the xfer mode from device */
932         dwc_ahsata_xfer_mode(uc_priv, id);
933
934         /* Get the write cache status from device */
935         dwc_ahsata_init_wcache(uc_priv, id);
936
937         /* Set the xfer mode to highest speed */
938         ahci_set_feature(uc_priv, port);
939
940         free((void *)id);
941
942         dwc_ahsata_print_info(&sata_dev_desc[dev]);
943
944         is_ready = 1;
945
946         return 0;
947 }