blob: 178165be0c32bc96778c258119abdd661721a942 [file] [log] [blame]
Vladimir Barinov163cf81d2013-02-20 23:10:29 +03001/*
2 * Renesas R-Car SATA driver
3 *
4 * Author: Vladimir Barinov <source@cogentembedded.com>
5 * Copyright (C) 2013 Cogent Embedded, Inc.
6 * Copyright (C) 2013 Renesas Solutions Corp.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/ata.h>
17#include <linux/libata.h>
18#include <linux/platform_device.h>
19#include <linux/clk.h>
Sachin Kamat2de1d5e2013-04-04 14:56:36 +053020#include <linux/err.h>
Vladimir Barinov163cf81d2013-02-20 23:10:29 +030021
22#define DRV_NAME "sata_rcar"
23
24/* SH-Navi2G/ATAPI-ATA compatible task registers */
25#define DATA_REG 0x100
26#define SDEVCON_REG 0x138
27
28/* SH-Navi2G/ATAPI module compatible control registers */
29#define ATAPI_CONTROL1_REG 0x180
30#define ATAPI_STATUS_REG 0x184
31#define ATAPI_INT_ENABLE_REG 0x188
32#define ATAPI_DTB_ADR_REG 0x198
33#define ATAPI_DMA_START_ADR_REG 0x19C
34#define ATAPI_DMA_TRANS_CNT_REG 0x1A0
35#define ATAPI_CONTROL2_REG 0x1A4
36#define ATAPI_SIG_ST_REG 0x1B0
37#define ATAPI_BYTE_SWAP_REG 0x1BC
38
39/* ATAPI control 1 register (ATAPI_CONTROL1) bits */
40#define ATAPI_CONTROL1_ISM BIT(16)
41#define ATAPI_CONTROL1_DTA32M BIT(11)
42#define ATAPI_CONTROL1_RESET BIT(7)
43#define ATAPI_CONTROL1_DESE BIT(3)
44#define ATAPI_CONTROL1_RW BIT(2)
45#define ATAPI_CONTROL1_STOP BIT(1)
46#define ATAPI_CONTROL1_START BIT(0)
47
48/* ATAPI status register (ATAPI_STATUS) bits */
49#define ATAPI_STATUS_SATAINT BIT(11)
50#define ATAPI_STATUS_DNEND BIT(6)
51#define ATAPI_STATUS_DEVTRM BIT(5)
52#define ATAPI_STATUS_DEVINT BIT(4)
53#define ATAPI_STATUS_ERR BIT(2)
54#define ATAPI_STATUS_NEND BIT(1)
55#define ATAPI_STATUS_ACT BIT(0)
56
57/* Interrupt enable register (ATAPI_INT_ENABLE) bits */
58#define ATAPI_INT_ENABLE_SATAINT BIT(11)
59#define ATAPI_INT_ENABLE_DNEND BIT(6)
60#define ATAPI_INT_ENABLE_DEVTRM BIT(5)
61#define ATAPI_INT_ENABLE_DEVINT BIT(4)
62#define ATAPI_INT_ENABLE_ERR BIT(2)
63#define ATAPI_INT_ENABLE_NEND BIT(1)
64#define ATAPI_INT_ENABLE_ACT BIT(0)
65
66/* Access control registers for physical layer control register */
67#define SATAPHYADDR_REG 0x200
68#define SATAPHYWDATA_REG 0x204
69#define SATAPHYACCEN_REG 0x208
70#define SATAPHYRESET_REG 0x20C
71#define SATAPHYRDATA_REG 0x210
72#define SATAPHYACK_REG 0x214
73
74/* Physical layer control address command register (SATAPHYADDR) bits */
75#define SATAPHYADDR_PHYRATEMODE BIT(10)
76#define SATAPHYADDR_PHYCMD_READ BIT(9)
77#define SATAPHYADDR_PHYCMD_WRITE BIT(8)
78
79/* Physical layer control enable register (SATAPHYACCEN) bits */
80#define SATAPHYACCEN_PHYLANE BIT(0)
81
82/* Physical layer control reset register (SATAPHYRESET) bits */
83#define SATAPHYRESET_PHYRST BIT(1)
84#define SATAPHYRESET_PHYSRES BIT(0)
85
86/* Physical layer control acknowledge register (SATAPHYACK) bits */
87#define SATAPHYACK_PHYACK BIT(0)
88
89/* Serial-ATA HOST control registers */
90#define BISTCONF_REG 0x102C
91#define SDATA_REG 0x1100
92#define SSDEVCON_REG 0x1204
93
94#define SCRSSTS_REG 0x1400
95#define SCRSERR_REG 0x1404
96#define SCRSCON_REG 0x1408
97#define SCRSACT_REG 0x140C
98
99#define SATAINTSTAT_REG 0x1508
100#define SATAINTMASK_REG 0x150C
101
102/* SATA INT status register (SATAINTSTAT) bits */
103#define SATAINTSTAT_SERR BIT(3)
104#define SATAINTSTAT_ATA BIT(0)
105
106/* SATA INT mask register (SATAINTSTAT) bits */
107#define SATAINTMASK_SERRMSK BIT(3)
108#define SATAINTMASK_ERRMSK BIT(2)
109#define SATAINTMASK_ERRCRTMSK BIT(1)
110#define SATAINTMASK_ATAMSK BIT(0)
111
112#define SATA_RCAR_INT_MASK (SATAINTMASK_SERRMSK | \
113 SATAINTMASK_ATAMSK)
114
115/* Physical Layer Control Registers */
116#define SATAPCTLR1_REG 0x43
117#define SATAPCTLR2_REG 0x52
118#define SATAPCTLR3_REG 0x5A
119#define SATAPCTLR4_REG 0x60
120
121/* Descriptor table word 0 bit (when DTA32M = 1) */
122#define SATA_RCAR_DTEND BIT(0)
123
Sergei Shtylyov8bfbeed2013-05-28 02:45:08 +0400124#define SATA_RCAR_DMA_BOUNDARY 0x1FFFFFFEUL
125
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300126struct sata_rcar_priv {
127 void __iomem *base;
128 struct clk *clk;
129};
130
131static void sata_rcar_phy_initialize(struct sata_rcar_priv *priv)
132{
133 /* idle state */
134 iowrite32(0, priv->base + SATAPHYADDR_REG);
135 /* reset */
136 iowrite32(SATAPHYRESET_PHYRST, priv->base + SATAPHYRESET_REG);
137 udelay(10);
138 /* deassert reset */
139 iowrite32(0, priv->base + SATAPHYRESET_REG);
140}
141
142static void sata_rcar_phy_write(struct sata_rcar_priv *priv, u16 reg, u32 val,
143 int group)
144{
145 int timeout;
146
147 /* deassert reset */
148 iowrite32(0, priv->base + SATAPHYRESET_REG);
149 /* lane 1 */
150 iowrite32(SATAPHYACCEN_PHYLANE, priv->base + SATAPHYACCEN_REG);
151 /* write phy register value */
152 iowrite32(val, priv->base + SATAPHYWDATA_REG);
153 /* set register group */
154 if (group)
155 reg |= SATAPHYADDR_PHYRATEMODE;
156 /* write command */
157 iowrite32(SATAPHYADDR_PHYCMD_WRITE | reg, priv->base + SATAPHYADDR_REG);
158 /* wait for ack */
159 for (timeout = 0; timeout < 100; timeout++) {
160 val = ioread32(priv->base + SATAPHYACK_REG);
161 if (val & SATAPHYACK_PHYACK)
162 break;
163 }
164 if (timeout >= 100)
165 pr_err("%s timeout\n", __func__);
166 /* idle state */
167 iowrite32(0, priv->base + SATAPHYADDR_REG);
168}
169
170static void sata_rcar_freeze(struct ata_port *ap)
171{
172 struct sata_rcar_priv *priv = ap->host->private_data;
173
174 /* mask */
175 iowrite32(0x7ff, priv->base + SATAINTMASK_REG);
176
177 ata_sff_freeze(ap);
178}
179
180static void sata_rcar_thaw(struct ata_port *ap)
181{
182 struct sata_rcar_priv *priv = ap->host->private_data;
183
184 /* ack */
185 iowrite32(~SATA_RCAR_INT_MASK, priv->base + SATAINTSTAT_REG);
186
187 ata_sff_thaw(ap);
188
189 /* unmask */
190 iowrite32(0x7ff & ~SATA_RCAR_INT_MASK, priv->base + SATAINTMASK_REG);
191}
192
193static void sata_rcar_ioread16_rep(void __iomem *reg, void *buffer, int count)
194{
195 u16 *ptr = buffer;
196
197 while (count--) {
198 u16 data = ioread32(reg);
199
200 *ptr++ = data;
201 }
202}
203
204static void sata_rcar_iowrite16_rep(void __iomem *reg, void *buffer, int count)
205{
206 const u16 *ptr = buffer;
207
208 while (count--)
209 iowrite32(*ptr++, reg);
210}
211
212static u8 sata_rcar_check_status(struct ata_port *ap)
213{
214 return ioread32(ap->ioaddr.status_addr);
215}
216
217static u8 sata_rcar_check_altstatus(struct ata_port *ap)
218{
219 return ioread32(ap->ioaddr.altstatus_addr);
220}
221
222static void sata_rcar_set_devctl(struct ata_port *ap, u8 ctl)
223{
224 iowrite32(ctl, ap->ioaddr.ctl_addr);
225}
226
227static void sata_rcar_dev_select(struct ata_port *ap, unsigned int device)
228{
229 iowrite32(ATA_DEVICE_OBS, ap->ioaddr.device_addr);
230 ata_sff_pause(ap); /* needed; also flushes, for mmio */
231}
232
233static unsigned int sata_rcar_ata_devchk(struct ata_port *ap,
234 unsigned int device)
235{
236 struct ata_ioports *ioaddr = &ap->ioaddr;
237 u8 nsect, lbal;
238
239 sata_rcar_dev_select(ap, device);
240
241 iowrite32(0x55, ioaddr->nsect_addr);
242 iowrite32(0xaa, ioaddr->lbal_addr);
243
244 iowrite32(0xaa, ioaddr->nsect_addr);
245 iowrite32(0x55, ioaddr->lbal_addr);
246
247 iowrite32(0x55, ioaddr->nsect_addr);
248 iowrite32(0xaa, ioaddr->lbal_addr);
249
250 nsect = ioread32(ioaddr->nsect_addr);
251 lbal = ioread32(ioaddr->lbal_addr);
252
253 if (nsect == 0x55 && lbal == 0xaa)
254 return 1; /* found a device */
255
256 return 0; /* nothing found */
257}
258
259static int sata_rcar_wait_after_reset(struct ata_link *link,
260 unsigned long deadline)
261{
262 struct ata_port *ap = link->ap;
263
264 ata_msleep(ap, ATA_WAIT_AFTER_RESET);
265
266 return ata_sff_wait_ready(link, deadline);
267}
268
269static int sata_rcar_bus_softreset(struct ata_port *ap, unsigned long deadline)
270{
271 struct ata_ioports *ioaddr = &ap->ioaddr;
272
273 DPRINTK("ata%u: bus reset via SRST\n", ap->print_id);
274
275 /* software reset. causes dev0 to be selected */
276 iowrite32(ap->ctl, ioaddr->ctl_addr);
277 udelay(20);
278 iowrite32(ap->ctl | ATA_SRST, ioaddr->ctl_addr);
279 udelay(20);
280 iowrite32(ap->ctl, ioaddr->ctl_addr);
281 ap->last_ctl = ap->ctl;
282
283 /* wait the port to become ready */
284 return sata_rcar_wait_after_reset(&ap->link, deadline);
285}
286
287static int sata_rcar_softreset(struct ata_link *link, unsigned int *classes,
288 unsigned long deadline)
289{
290 struct ata_port *ap = link->ap;
291 unsigned int devmask = 0;
292 int rc;
293 u8 err;
294
295 /* determine if device 0 is present */
296 if (sata_rcar_ata_devchk(ap, 0))
297 devmask |= 1 << 0;
298
299 /* issue bus reset */
300 DPRINTK("about to softreset, devmask=%x\n", devmask);
301 rc = sata_rcar_bus_softreset(ap, deadline);
302 /* if link is occupied, -ENODEV too is an error */
303 if (rc && (rc != -ENODEV || sata_scr_valid(link))) {
304 ata_link_err(link, "SRST failed (errno=%d)\n", rc);
305 return rc;
306 }
307
308 /* determine by signature whether we have ATA or ATAPI devices */
309 classes[0] = ata_sff_dev_classify(&link->device[0], devmask, &err);
310
311 DPRINTK("classes[0]=%u\n", classes[0]);
312 return 0;
313}
314
315static void sata_rcar_tf_load(struct ata_port *ap,
316 const struct ata_taskfile *tf)
317{
318 struct ata_ioports *ioaddr = &ap->ioaddr;
319 unsigned int is_addr = tf->flags & ATA_TFLAG_ISADDR;
320
321 if (tf->ctl != ap->last_ctl) {
322 iowrite32(tf->ctl, ioaddr->ctl_addr);
323 ap->last_ctl = tf->ctl;
324 ata_wait_idle(ap);
325 }
326
327 if (is_addr && (tf->flags & ATA_TFLAG_LBA48)) {
328 iowrite32(tf->hob_feature, ioaddr->feature_addr);
329 iowrite32(tf->hob_nsect, ioaddr->nsect_addr);
330 iowrite32(tf->hob_lbal, ioaddr->lbal_addr);
331 iowrite32(tf->hob_lbam, ioaddr->lbam_addr);
332 iowrite32(tf->hob_lbah, ioaddr->lbah_addr);
333 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n",
334 tf->hob_feature,
335 tf->hob_nsect,
336 tf->hob_lbal,
337 tf->hob_lbam,
338 tf->hob_lbah);
339 }
340
341 if (is_addr) {
342 iowrite32(tf->feature, ioaddr->feature_addr);
343 iowrite32(tf->nsect, ioaddr->nsect_addr);
344 iowrite32(tf->lbal, ioaddr->lbal_addr);
345 iowrite32(tf->lbam, ioaddr->lbam_addr);
346 iowrite32(tf->lbah, ioaddr->lbah_addr);
347 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n",
348 tf->feature,
349 tf->nsect,
350 tf->lbal,
351 tf->lbam,
352 tf->lbah);
353 }
354
355 if (tf->flags & ATA_TFLAG_DEVICE) {
356 iowrite32(tf->device, ioaddr->device_addr);
357 VPRINTK("device 0x%X\n", tf->device);
358 }
359
360 ata_wait_idle(ap);
361}
362
363static void sata_rcar_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
364{
365 struct ata_ioports *ioaddr = &ap->ioaddr;
366
367 tf->command = sata_rcar_check_status(ap);
368 tf->feature = ioread32(ioaddr->error_addr);
369 tf->nsect = ioread32(ioaddr->nsect_addr);
370 tf->lbal = ioread32(ioaddr->lbal_addr);
371 tf->lbam = ioread32(ioaddr->lbam_addr);
372 tf->lbah = ioread32(ioaddr->lbah_addr);
373 tf->device = ioread32(ioaddr->device_addr);
374
375 if (tf->flags & ATA_TFLAG_LBA48) {
376 iowrite32(tf->ctl | ATA_HOB, ioaddr->ctl_addr);
377 tf->hob_feature = ioread32(ioaddr->error_addr);
378 tf->hob_nsect = ioread32(ioaddr->nsect_addr);
379 tf->hob_lbal = ioread32(ioaddr->lbal_addr);
380 tf->hob_lbam = ioread32(ioaddr->lbam_addr);
381 tf->hob_lbah = ioread32(ioaddr->lbah_addr);
382 iowrite32(tf->ctl, ioaddr->ctl_addr);
383 ap->last_ctl = tf->ctl;
384 }
385}
386
387static void sata_rcar_exec_command(struct ata_port *ap,
388 const struct ata_taskfile *tf)
389{
390 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
391
392 iowrite32(tf->command, ap->ioaddr.command_addr);
393 ata_sff_pause(ap);
394}
395
396static unsigned int sata_rcar_data_xfer(struct ata_device *dev,
397 unsigned char *buf,
398 unsigned int buflen, int rw)
399{
400 struct ata_port *ap = dev->link->ap;
401 void __iomem *data_addr = ap->ioaddr.data_addr;
402 unsigned int words = buflen >> 1;
403
404 /* Transfer multiple of 2 bytes */
405 if (rw == READ)
406 sata_rcar_ioread16_rep(data_addr, buf, words);
407 else
408 sata_rcar_iowrite16_rep(data_addr, buf, words);
409
410 /* Transfer trailing byte, if any. */
411 if (unlikely(buflen & 0x01)) {
412 unsigned char pad[2] = { };
413
414 /* Point buf to the tail of buffer */
415 buf += buflen - 1;
416
417 /*
418 * Use io*16_rep() accessors here as well to avoid pointlessly
419 * swapping bytes to and from on the big endian machines...
420 */
421 if (rw == READ) {
422 sata_rcar_ioread16_rep(data_addr, pad, 1);
423 *buf = pad[0];
424 } else {
425 pad[0] = *buf;
426 sata_rcar_iowrite16_rep(data_addr, pad, 1);
427 }
428 words++;
429 }
430
431 return words << 1;
432}
433
434static void sata_rcar_drain_fifo(struct ata_queued_cmd *qc)
435{
436 int count;
437 struct ata_port *ap;
438
439 /* We only need to flush incoming data when a command was running */
440 if (qc == NULL || qc->dma_dir == DMA_TO_DEVICE)
441 return;
442
443 ap = qc->ap;
444 /* Drain up to 64K of data before we give up this recovery method */
445 for (count = 0; (ap->ops->sff_check_status(ap) & ATA_DRQ) &&
446 count < 65536; count += 2)
447 ioread32(ap->ioaddr.data_addr);
448
449 /* Can become DEBUG later */
450 if (count)
451 ata_port_dbg(ap, "drained %d bytes to clear DRQ\n", count);
452}
453
454static int sata_rcar_scr_read(struct ata_link *link, unsigned int sc_reg,
455 u32 *val)
456{
457 if (sc_reg > SCR_ACTIVE)
458 return -EINVAL;
459
460 *val = ioread32(link->ap->ioaddr.scr_addr + (sc_reg << 2));
461 return 0;
462}
463
464static int sata_rcar_scr_write(struct ata_link *link, unsigned int sc_reg,
465 u32 val)
466{
467 if (sc_reg > SCR_ACTIVE)
468 return -EINVAL;
469
470 iowrite32(val, link->ap->ioaddr.scr_addr + (sc_reg << 2));
471 return 0;
472}
473
474static void sata_rcar_bmdma_fill_sg(struct ata_queued_cmd *qc)
475{
476 struct ata_port *ap = qc->ap;
477 struct ata_bmdma_prd *prd = ap->bmdma_prd;
478 struct scatterlist *sg;
Sergei Shtylyov333279c2013-05-28 02:43:23 +0400479 unsigned int si;
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300480
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300481 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Sergei Shtylyov333279c2013-05-28 02:43:23 +0400482 u32 addr, sg_len;
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300483
484 /*
485 * Note: h/w doesn't support 64-bit, so we unconditionally
486 * truncate dma_addr_t to u32.
487 */
488 addr = (u32)sg_dma_address(sg);
489 sg_len = sg_dma_len(sg);
490
Sergei Shtylyov333279c2013-05-28 02:43:23 +0400491 prd[si].addr = cpu_to_le32(addr);
492 prd[si].flags_len = cpu_to_le32(sg_len);
493 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", si, addr, sg_len);
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300494 }
495
496 /* end-of-table flag */
Sergei Shtylyov333279c2013-05-28 02:43:23 +0400497 prd[si - 1].addr |= cpu_to_le32(SATA_RCAR_DTEND);
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300498}
499
500static void sata_rcar_qc_prep(struct ata_queued_cmd *qc)
501{
502 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
503 return;
504
505 sata_rcar_bmdma_fill_sg(qc);
506}
507
508static void sata_rcar_bmdma_setup(struct ata_queued_cmd *qc)
509{
510 struct ata_port *ap = qc->ap;
511 unsigned int rw = qc->tf.flags & ATA_TFLAG_WRITE;
512 u32 dmactl;
513 struct sata_rcar_priv *priv = ap->host->private_data;
514
515 /* load PRD table addr. */
516 mb(); /* make sure PRD table writes are visible to controller */
517 iowrite32(ap->bmdma_prd_dma, priv->base + ATAPI_DTB_ADR_REG);
518
519 /* specify data direction, triple-check start bit is clear */
520 dmactl = ioread32(priv->base + ATAPI_CONTROL1_REG);
521 dmactl &= ~(ATAPI_CONTROL1_RW | ATAPI_CONTROL1_STOP);
522 if (dmactl & ATAPI_CONTROL1_START) {
523 dmactl &= ~ATAPI_CONTROL1_START;
524 dmactl |= ATAPI_CONTROL1_STOP;
525 }
526 if (!rw)
527 dmactl |= ATAPI_CONTROL1_RW;
528 iowrite32(dmactl, priv->base + ATAPI_CONTROL1_REG);
529
530 /* issue r/w command */
531 ap->ops->sff_exec_command(ap, &qc->tf);
532}
533
534static void sata_rcar_bmdma_start(struct ata_queued_cmd *qc)
535{
536 struct ata_port *ap = qc->ap;
537 u32 dmactl;
538 struct sata_rcar_priv *priv = ap->host->private_data;
539
540 /* start host DMA transaction */
541 dmactl = ioread32(priv->base + ATAPI_CONTROL1_REG);
542 dmactl |= ATAPI_CONTROL1_START;
543 iowrite32(dmactl, priv->base + ATAPI_CONTROL1_REG);
544}
545
546static void sata_rcar_bmdma_stop(struct ata_queued_cmd *qc)
547{
548 struct ata_port *ap = qc->ap;
549 struct sata_rcar_priv *priv = ap->host->private_data;
550 u32 dmactl;
551
552 /* force termination of DMA transfer if active */
553 dmactl = ioread32(priv->base + ATAPI_CONTROL1_REG);
554 if (dmactl & ATAPI_CONTROL1_START) {
555 dmactl &= ~ATAPI_CONTROL1_START;
556 dmactl |= ATAPI_CONTROL1_STOP;
557 iowrite32(dmactl, priv->base + ATAPI_CONTROL1_REG);
558 }
559
560 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
561 ata_sff_dma_pause(ap);
562}
563
564static u8 sata_rcar_bmdma_status(struct ata_port *ap)
565{
566 struct sata_rcar_priv *priv = ap->host->private_data;
567 u32 status;
568 u8 host_stat = 0;
569
570 status = ioread32(priv->base + ATAPI_STATUS_REG);
571 if (status & ATAPI_STATUS_DEVINT)
572 host_stat |= ATA_DMA_INTR;
573 if (status & ATAPI_STATUS_ACT)
574 host_stat |= ATA_DMA_ACTIVE;
575
576 return host_stat;
577}
578
579static struct scsi_host_template sata_rcar_sht = {
Sergei Shtylyov8bfbeed2013-05-28 02:45:08 +0400580 ATA_BASE_SHT(DRV_NAME),
581 /*
582 * This controller allows transfer chunks up to 512MB which cross 64KB
583 * boundaries, therefore the DMA limits are more relaxed than standard
584 * ATA SFF.
585 */
586 .sg_tablesize = ATA_MAX_PRD,
587 .dma_boundary = SATA_RCAR_DMA_BOUNDARY,
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300588};
589
590static struct ata_port_operations sata_rcar_port_ops = {
591 .inherits = &ata_bmdma_port_ops,
592
593 .freeze = sata_rcar_freeze,
594 .thaw = sata_rcar_thaw,
595 .softreset = sata_rcar_softreset,
596
597 .scr_read = sata_rcar_scr_read,
598 .scr_write = sata_rcar_scr_write,
599
600 .sff_dev_select = sata_rcar_dev_select,
601 .sff_set_devctl = sata_rcar_set_devctl,
602 .sff_check_status = sata_rcar_check_status,
603 .sff_check_altstatus = sata_rcar_check_altstatus,
604 .sff_tf_load = sata_rcar_tf_load,
605 .sff_tf_read = sata_rcar_tf_read,
606 .sff_exec_command = sata_rcar_exec_command,
607 .sff_data_xfer = sata_rcar_data_xfer,
608 .sff_drain_fifo = sata_rcar_drain_fifo,
609
610 .qc_prep = sata_rcar_qc_prep,
611
612 .bmdma_setup = sata_rcar_bmdma_setup,
613 .bmdma_start = sata_rcar_bmdma_start,
614 .bmdma_stop = sata_rcar_bmdma_stop,
615 .bmdma_status = sata_rcar_bmdma_status,
616};
617
618static int sata_rcar_serr_interrupt(struct ata_port *ap)
619{
620 struct sata_rcar_priv *priv = ap->host->private_data;
621 struct ata_eh_info *ehi = &ap->link.eh_info;
622 int freeze = 0;
623 int handled = 0;
624 u32 serror;
625
626 serror = ioread32(priv->base + SCRSERR_REG);
627 if (!serror)
628 return 0;
629
630 DPRINTK("SError @host_intr: 0x%x\n", serror);
631
632 /* first, analyze and record host port events */
633 ata_ehi_clear_desc(ehi);
634
635 if (serror & (SERR_DEV_XCHG | SERR_PHYRDY_CHG)) {
636 /* Setup a soft-reset EH action */
637 ata_ehi_hotplugged(ehi);
638 ata_ehi_push_desc(ehi, "%s", "hotplug");
639
640 freeze = serror & SERR_COMM_WAKE ? 0 : 1;
641 handled = 1;
642 }
643
644 /* freeze or abort */
645 if (freeze)
646 ata_port_freeze(ap);
647 else
648 ata_port_abort(ap);
649
650 return handled;
651}
652
653static int sata_rcar_ata_interrupt(struct ata_port *ap)
654{
655 struct ata_queued_cmd *qc;
656 int handled = 0;
657
658 qc = ata_qc_from_tag(ap, ap->link.active_tag);
659 if (qc)
660 handled |= ata_bmdma_port_intr(ap, qc);
661
662 return handled;
663}
664
665static irqreturn_t sata_rcar_interrupt(int irq, void *dev_instance)
666{
667 struct ata_host *host = dev_instance;
668 struct sata_rcar_priv *priv = host->private_data;
669 struct ata_port *ap;
670 unsigned int handled = 0;
671 u32 sataintstat;
672 unsigned long flags;
673
674 spin_lock_irqsave(&host->lock, flags);
675
676 sataintstat = ioread32(priv->base + SATAINTSTAT_REG);
677 if (!sataintstat)
678 goto done;
679 /* ack */
680 iowrite32(sataintstat & ~SATA_RCAR_INT_MASK,
681 priv->base + SATAINTSTAT_REG);
682
683 ap = host->ports[0];
684
685 if (sataintstat & SATAINTSTAT_ATA)
686 handled |= sata_rcar_ata_interrupt(ap);
687
688 if (sataintstat & SATAINTSTAT_SERR)
689 handled |= sata_rcar_serr_interrupt(ap);
690
691done:
692 spin_unlock_irqrestore(&host->lock, flags);
693
694 return IRQ_RETVAL(handled);
695}
696
697static void sata_rcar_setup_port(struct ata_host *host)
698{
699 struct ata_port *ap = host->ports[0];
700 struct ata_ioports *ioaddr = &ap->ioaddr;
701 struct sata_rcar_priv *priv = host->private_data;
702
703 ap->ops = &sata_rcar_port_ops;
704 ap->pio_mask = ATA_PIO4;
705 ap->udma_mask = ATA_UDMA6;
706 ap->flags |= ATA_FLAG_SATA;
707
708 ioaddr->cmd_addr = priv->base + SDATA_REG;
709 ioaddr->ctl_addr = priv->base + SSDEVCON_REG;
710 ioaddr->scr_addr = priv->base + SCRSSTS_REG;
711 ioaddr->altstatus_addr = ioaddr->ctl_addr;
712
713 ioaddr->data_addr = ioaddr->cmd_addr + (ATA_REG_DATA << 2);
714 ioaddr->error_addr = ioaddr->cmd_addr + (ATA_REG_ERR << 2);
715 ioaddr->feature_addr = ioaddr->cmd_addr + (ATA_REG_FEATURE << 2);
716 ioaddr->nsect_addr = ioaddr->cmd_addr + (ATA_REG_NSECT << 2);
717 ioaddr->lbal_addr = ioaddr->cmd_addr + (ATA_REG_LBAL << 2);
718 ioaddr->lbam_addr = ioaddr->cmd_addr + (ATA_REG_LBAM << 2);
719 ioaddr->lbah_addr = ioaddr->cmd_addr + (ATA_REG_LBAH << 2);
720 ioaddr->device_addr = ioaddr->cmd_addr + (ATA_REG_DEVICE << 2);
721 ioaddr->status_addr = ioaddr->cmd_addr + (ATA_REG_STATUS << 2);
722 ioaddr->command_addr = ioaddr->cmd_addr + (ATA_REG_CMD << 2);
723}
724
725static void sata_rcar_init_controller(struct ata_host *host)
726{
727 struct sata_rcar_priv *priv = host->private_data;
728 u32 val;
729
730 /* reset and setup phy */
731 sata_rcar_phy_initialize(priv);
732 sata_rcar_phy_write(priv, SATAPCTLR1_REG, 0x00200188, 0);
733 sata_rcar_phy_write(priv, SATAPCTLR1_REG, 0x00200188, 1);
734 sata_rcar_phy_write(priv, SATAPCTLR3_REG, 0x0000A061, 0);
735 sata_rcar_phy_write(priv, SATAPCTLR2_REG, 0x20000000, 0);
736 sata_rcar_phy_write(priv, SATAPCTLR2_REG, 0x20000000, 1);
737 sata_rcar_phy_write(priv, SATAPCTLR4_REG, 0x28E80000, 0);
738
739 /* SATA-IP reset state */
740 val = ioread32(priv->base + ATAPI_CONTROL1_REG);
741 val |= ATAPI_CONTROL1_RESET;
742 iowrite32(val, priv->base + ATAPI_CONTROL1_REG);
743
744 /* ISM mode, PRD mode, DTEND flag at bit 0 */
745 val = ioread32(priv->base + ATAPI_CONTROL1_REG);
746 val |= ATAPI_CONTROL1_ISM;
747 val |= ATAPI_CONTROL1_DESE;
748 val |= ATAPI_CONTROL1_DTA32M;
749 iowrite32(val, priv->base + ATAPI_CONTROL1_REG);
750
751 /* Release the SATA-IP from the reset state */
752 val = ioread32(priv->base + ATAPI_CONTROL1_REG);
753 val &= ~ATAPI_CONTROL1_RESET;
754 iowrite32(val, priv->base + ATAPI_CONTROL1_REG);
755
756 /* ack and mask */
757 iowrite32(0, priv->base + SATAINTSTAT_REG);
758 iowrite32(0x7ff, priv->base + SATAINTMASK_REG);
759 /* enable interrupts */
760 iowrite32(ATAPI_INT_ENABLE_SATAINT, priv->base + ATAPI_INT_ENABLE_REG);
761}
762
763static int sata_rcar_probe(struct platform_device *pdev)
764{
765 struct ata_host *host;
766 struct sata_rcar_priv *priv;
767 struct resource *mem;
768 int irq;
769 int ret = 0;
770
771 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
772 if (mem == NULL)
773 return -EINVAL;
774
775 irq = platform_get_irq(pdev, 0);
776 if (irq <= 0)
777 return -EINVAL;
778
779 priv = devm_kzalloc(&pdev->dev, sizeof(struct sata_rcar_priv),
780 GFP_KERNEL);
781 if (!priv)
782 return -ENOMEM;
783
784 priv->clk = devm_clk_get(&pdev->dev, NULL);
785 if (IS_ERR(priv->clk)) {
786 dev_err(&pdev->dev, "failed to get access to sata clock\n");
787 return PTR_ERR(priv->clk);
788 }
789 clk_enable(priv->clk);
790
791 host = ata_host_alloc(&pdev->dev, 1);
792 if (!host) {
793 dev_err(&pdev->dev, "ata_host_alloc failed\n");
794 ret = -ENOMEM;
795 goto cleanup;
796 }
797
798 host->private_data = priv;
799
Sachin Kamat2de1d5e2013-04-04 14:56:36 +0530800 priv->base = devm_ioremap_resource(&pdev->dev, mem);
801 if (IS_ERR(priv->base)) {
802 ret = PTR_ERR(priv->base);
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300803 goto cleanup;
804 }
805
806 /* setup port */
807 sata_rcar_setup_port(host);
808
809 /* initialize host controller */
810 sata_rcar_init_controller(host);
811
812 ret = ata_host_activate(host, irq, sata_rcar_interrupt, 0,
813 &sata_rcar_sht);
814 if (!ret)
815 return 0;
816
817cleanup:
818 clk_disable(priv->clk);
819
820 return ret;
821}
822
823static int sata_rcar_remove(struct platform_device *pdev)
824{
Jingoo Hand89995d2013-05-23 19:41:21 +0900825 struct ata_host *host = platform_get_drvdata(pdev);
Vladimir Barinov163cf81d2013-02-20 23:10:29 +0300826 struct sata_rcar_priv *priv = host->private_data;
827
828 ata_host_detach(host);
829
830 /* disable interrupts */
831 iowrite32(0, priv->base + ATAPI_INT_ENABLE_REG);
832 /* ack and mask */
833 iowrite32(0, priv->base + SATAINTSTAT_REG);
834 iowrite32(0x7ff, priv->base + SATAINTMASK_REG);
835
836 clk_disable(priv->clk);
837
838 return 0;
839}
840
841#ifdef CONFIG_PM
842static int sata_rcar_suspend(struct device *dev)
843{
844 struct ata_host *host = dev_get_drvdata(dev);
845 struct sata_rcar_priv *priv = host->private_data;
846 int ret;
847
848 ret = ata_host_suspend(host, PMSG_SUSPEND);
849 if (!ret) {
850 /* disable interrupts */
851 iowrite32(0, priv->base + ATAPI_INT_ENABLE_REG);
852 /* mask */
853 iowrite32(0x7ff, priv->base + SATAINTMASK_REG);
854
855 clk_disable(priv->clk);
856 }
857
858 return ret;
859}
860
861static int sata_rcar_resume(struct device *dev)
862{
863 struct ata_host *host = dev_get_drvdata(dev);
864 struct sata_rcar_priv *priv = host->private_data;
865
866 clk_enable(priv->clk);
867
868 /* ack and mask */
869 iowrite32(0, priv->base + SATAINTSTAT_REG);
870 iowrite32(0x7ff, priv->base + SATAINTMASK_REG);
871 /* enable interrupts */
872 iowrite32(ATAPI_INT_ENABLE_SATAINT, priv->base + ATAPI_INT_ENABLE_REG);
873
874 ata_host_resume(host);
875
876 return 0;
877}
878
879static const struct dev_pm_ops sata_rcar_pm_ops = {
880 .suspend = sata_rcar_suspend,
881 .resume = sata_rcar_resume,
882};
883#endif
884
885static struct of_device_id sata_rcar_match[] = {
886 { .compatible = "renesas,rcar-sata", },
887 {},
888};
889MODULE_DEVICE_TABLE(of, sata_rcar_match);
890
891static struct platform_driver sata_rcar_driver = {
892 .probe = sata_rcar_probe,
893 .remove = sata_rcar_remove,
894 .driver = {
895 .name = DRV_NAME,
896 .owner = THIS_MODULE,
897 .of_match_table = sata_rcar_match,
898#ifdef CONFIG_PM
899 .pm = &sata_rcar_pm_ops,
900#endif
901 },
902};
903
904module_platform_driver(sata_rcar_driver);
905
906MODULE_LICENSE("GPL");
907MODULE_AUTHOR("Vladimir Barinov");
908MODULE_DESCRIPTION("Renesas R-Car SATA controller low level driver");