2 * drivers/ata/sata_fsl.c
4 * Freescale 3.0Gbps SATA device driver
6 * Author: Ashish Kalra <ashish.kalra@freescale.com>
7 * Li Yang <leoli@freescale.com>
9 * Copyright (c) 2006-2007, 2011 Freescale Semiconductor, Inc.
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
23 #include <scsi/scsi_host.h>
24 #include <scsi/scsi_cmnd.h>
25 #include <linux/libata.h>
27 #include <linux/of_platform.h>
29 /* Controller information */
31 SATA_FSL_QUEUE_DEPTH
= 16,
32 SATA_FSL_MAX_PRD
= 63,
33 SATA_FSL_MAX_PRD_USABLE
= SATA_FSL_MAX_PRD
- 1,
34 SATA_FSL_MAX_PRD_DIRECT
= 16, /* Direct PRDT entries */
36 SATA_FSL_HOST_FLAGS
= (ATA_FLAG_SATA
| ATA_FLAG_PIO_DMA
|
37 ATA_FLAG_PMP
| ATA_FLAG_NCQ
| ATA_FLAG_AN
),
39 SATA_FSL_MAX_CMDS
= SATA_FSL_QUEUE_DEPTH
,
40 SATA_FSL_CMD_HDR_SIZE
= 16, /* 4 DWORDS */
41 SATA_FSL_CMD_SLOT_SIZE
= (SATA_FSL_MAX_CMDS
* SATA_FSL_CMD_HDR_SIZE
),
44 * SATA-FSL host controller supports a max. of (15+1) direct PRDEs, and
45 * chained indirect PRDEs up to a max count of 63.
46 * We are allocating an array of 63 PRDEs contiguously, but PRDE#15 will
47 * be setup as an indirect descriptor, pointing to it's next
48 * (contiguous) PRDE. Though chained indirect PRDE arrays are
49 * supported,it will be more efficient to use a direct PRDT and
50 * a single chain/link to indirect PRDE array/PRDT.
53 SATA_FSL_CMD_DESC_CFIS_SZ
= 32,
54 SATA_FSL_CMD_DESC_SFIS_SZ
= 32,
55 SATA_FSL_CMD_DESC_ACMD_SZ
= 16,
56 SATA_FSL_CMD_DESC_RSRVD
= 16,
58 SATA_FSL_CMD_DESC_SIZE
= (SATA_FSL_CMD_DESC_CFIS_SZ
+
59 SATA_FSL_CMD_DESC_SFIS_SZ
+
60 SATA_FSL_CMD_DESC_ACMD_SZ
+
61 SATA_FSL_CMD_DESC_RSRVD
+
62 SATA_FSL_MAX_PRD
* 16),
64 SATA_FSL_CMD_DESC_OFFSET_TO_PRDT
=
65 (SATA_FSL_CMD_DESC_CFIS_SZ
+
66 SATA_FSL_CMD_DESC_SFIS_SZ
+
67 SATA_FSL_CMD_DESC_ACMD_SZ
+
68 SATA_FSL_CMD_DESC_RSRVD
),
70 SATA_FSL_CMD_DESC_AR_SZ
= (SATA_FSL_CMD_DESC_SIZE
* SATA_FSL_MAX_CMDS
),
71 SATA_FSL_PORT_PRIV_DMA_SZ
= (SATA_FSL_CMD_SLOT_SIZE
+
72 SATA_FSL_CMD_DESC_AR_SZ
),
75 * MPC8315 has two SATA controllers, SATA1 & SATA2
76 * (one port per controller)
77 * MPC837x has 2/4 controllers, one port per controller
80 SATA_FSL_MAX_PORTS
= 1,
82 SATA_FSL_IRQ_FLAG
= IRQF_SHARED
,
86 * Host Controller command register set - per port
102 * Host Status Register (HStatus) bitdefs
105 GOING_OFFLINE
= (1 << 30),
106 BIST_ERR
= (1 << 29),
108 FATAL_ERR_HC_MASTER_ERR
= (1 << 18),
109 FATAL_ERR_PARITY_ERR_TX
= (1 << 17),
110 FATAL_ERR_PARITY_ERR_RX
= (1 << 16),
111 FATAL_ERR_DATA_UNDERRUN
= (1 << 13),
112 FATAL_ERR_DATA_OVERRUN
= (1 << 12),
113 FATAL_ERR_CRC_ERR_TX
= (1 << 11),
114 FATAL_ERR_CRC_ERR_RX
= (1 << 10),
115 FATAL_ERR_FIFO_OVRFL_TX
= (1 << 9),
116 FATAL_ERR_FIFO_OVRFL_RX
= (1 << 8),
118 FATAL_ERROR_DECODE
= FATAL_ERR_HC_MASTER_ERR
|
119 FATAL_ERR_PARITY_ERR_TX
|
120 FATAL_ERR_PARITY_ERR_RX
|
121 FATAL_ERR_DATA_UNDERRUN
|
122 FATAL_ERR_DATA_OVERRUN
|
123 FATAL_ERR_CRC_ERR_TX
|
124 FATAL_ERR_CRC_ERR_RX
|
125 FATAL_ERR_FIFO_OVRFL_TX
| FATAL_ERR_FIFO_OVRFL_RX
,
127 INT_ON_FATAL_ERR
= (1 << 5),
128 INT_ON_PHYRDY_CHG
= (1 << 4),
130 INT_ON_SIGNATURE_UPDATE
= (1 << 3),
131 INT_ON_SNOTIFY_UPDATE
= (1 << 2),
132 INT_ON_SINGL_DEVICE_ERR
= (1 << 1),
133 INT_ON_CMD_COMPLETE
= 1,
135 INT_ON_ERROR
= INT_ON_FATAL_ERR
| INT_ON_SNOTIFY_UPDATE
|
136 INT_ON_PHYRDY_CHG
| INT_ON_SINGL_DEVICE_ERR
,
139 * Host Control Register (HControl) bitdefs
141 HCONTROL_ONLINE_PHY_RST
= (1 << 31),
142 HCONTROL_FORCE_OFFLINE
= (1 << 30),
143 HCONTROL_PARITY_PROT_MOD
= (1 << 14),
144 HCONTROL_DPATH_PARITY
= (1 << 12),
145 HCONTROL_SNOOP_ENABLE
= (1 << 10),
146 HCONTROL_PMP_ATTACHED
= (1 << 9),
147 HCONTROL_COPYOUT_STATFIS
= (1 << 8),
148 IE_ON_FATAL_ERR
= (1 << 5),
149 IE_ON_PHYRDY_CHG
= (1 << 4),
150 IE_ON_SIGNATURE_UPDATE
= (1 << 3),
151 IE_ON_SNOTIFY_UPDATE
= (1 << 2),
152 IE_ON_SINGL_DEVICE_ERR
= (1 << 1),
153 IE_ON_CMD_COMPLETE
= 1,
155 DEFAULT_PORT_IRQ_ENABLE_MASK
= IE_ON_FATAL_ERR
| IE_ON_PHYRDY_CHG
|
156 IE_ON_SIGNATURE_UPDATE
| IE_ON_SNOTIFY_UPDATE
|
157 IE_ON_SINGL_DEVICE_ERR
| IE_ON_CMD_COMPLETE
,
159 EXT_INDIRECT_SEG_PRD_FLAG
= (1 << 31),
160 DATA_SNOOP_ENABLE_V1
= (1 << 22),
161 DATA_SNOOP_ENABLE_V2
= (1 << 28),
165 * SATA Superset Registers
175 * Control Status Register Set
189 /* TRANSCFG (transport-layer) configuration control */
191 TRANSCFG_RX_WATER_MARK
= (1 << 4),
194 /* PHY (link-layer) configuration control */
196 PHY_BIST_ENABLE
= 0x01,
200 * Command Header Table entry, i.e, command slot
201 * 4 Dwords per command slot, command header size == 64 Dwords.
203 struct cmdhdr_tbl_entry
{
211 * Description information bitdefs
214 CMD_DESC_RES
= (1 << 11),
215 VENDOR_SPECIFIC_BIST
= (1 << 10),
216 CMD_DESC_SNOOP_ENABLE
= (1 << 9),
217 FPDMA_QUEUED_CMD
= (1 << 8),
220 ATAPI_CMD
= (1 << 5),
226 struct command_desc
{
231 u32 prdt
[SATA_FSL_MAX_PRD_DIRECT
* 4];
232 u32 prdt_indirect
[(SATA_FSL_MAX_PRD
- SATA_FSL_MAX_PRD_DIRECT
) * 4];
236 * Physical region table descriptor(PRD)
246 * ata_port private data
247 * This is our per-port instance data.
249 struct sata_fsl_port_priv
{
250 struct cmdhdr_tbl_entry
*cmdslot
;
251 dma_addr_t cmdslot_paddr
;
252 struct command_desc
*cmdentry
;
253 dma_addr_t cmdentry_paddr
;
257 * ata_port->host_set private data
259 struct sata_fsl_host_priv
{
260 void __iomem
*hcr_base
;
261 void __iomem
*ssr_base
;
262 void __iomem
*csr_base
;
267 static inline unsigned int sata_fsl_tag(unsigned int tag
,
268 void __iomem
*hcr_base
)
270 /* We let libATA core do actual (queue) tag allocation */
272 /* all non NCQ/queued commands should have tag#0 */
273 if (ata_tag_internal(tag
)) {
274 DPRINTK("mapping internal cmds to tag#0\n");
278 if (unlikely(tag
>= SATA_FSL_QUEUE_DEPTH
)) {
279 DPRINTK("tag %d invalid : out of range\n", tag
);
283 if (unlikely((ioread32(hcr_base
+ CQ
)) & (1 << tag
))) {
284 DPRINTK("tag %d invalid : in use!!\n", tag
);
291 static void sata_fsl_setup_cmd_hdr_entry(struct sata_fsl_port_priv
*pp
,
292 unsigned int tag
, u32 desc_info
,
293 u32 data_xfer_len
, u8 num_prde
,
296 dma_addr_t cmd_descriptor_address
;
298 cmd_descriptor_address
= pp
->cmdentry_paddr
+
299 tag
* SATA_FSL_CMD_DESC_SIZE
;
301 /* NOTE: both data_xfer_len & fis_len are Dword counts */
303 pp
->cmdslot
[tag
].cda
= cpu_to_le32(cmd_descriptor_address
);
304 pp
->cmdslot
[tag
].prde_fis_len
=
305 cpu_to_le32((num_prde
<< 16) | (fis_len
<< 2));
306 pp
->cmdslot
[tag
].ttl
= cpu_to_le32(data_xfer_len
& ~0x03);
307 pp
->cmdslot
[tag
].desc_info
= cpu_to_le32(desc_info
| (tag
& 0x1F));
309 VPRINTK("cda=0x%x, prde_fis_len=0x%x, ttl=0x%x, di=0x%x\n",
310 pp
->cmdslot
[tag
].cda
,
311 pp
->cmdslot
[tag
].prde_fis_len
,
312 pp
->cmdslot
[tag
].ttl
, pp
->cmdslot
[tag
].desc_info
);
316 static unsigned int sata_fsl_fill_sg(struct ata_queued_cmd
*qc
, void *cmd_desc
,
317 u32
*ttl
, dma_addr_t cmd_desc_paddr
,
320 struct scatterlist
*sg
;
321 unsigned int num_prde
= 0;
325 * NOTE : direct & indirect prdt's are contiguously allocated
327 struct prde
*prd
= (struct prde
*)&((struct command_desc
*)
330 struct prde
*prd_ptr_to_indirect_ext
= NULL
;
331 unsigned indirect_ext_segment_sz
= 0;
332 dma_addr_t indirect_ext_segment_paddr
;
335 VPRINTK("SATA FSL : cd = 0x%p, prd = 0x%p\n", cmd_desc
, prd
);
337 indirect_ext_segment_paddr
= cmd_desc_paddr
+
338 SATA_FSL_CMD_DESC_OFFSET_TO_PRDT
+ SATA_FSL_MAX_PRD_DIRECT
* 16;
340 for_each_sg(qc
->sg
, sg
, qc
->n_elem
, si
) {
341 dma_addr_t sg_addr
= sg_dma_address(sg
);
342 u32 sg_len
= sg_dma_len(sg
);
344 VPRINTK("SATA FSL : fill_sg, sg_addr = 0x%llx, sg_len = %d\n",
345 (unsigned long long)sg_addr
, sg_len
);
347 /* warn if each s/g element is not dword aligned */
349 ata_port_err(qc
->ap
, "s/g addr unaligned : 0x%llx\n",
350 (unsigned long long)sg_addr
);
352 ata_port_err(qc
->ap
, "s/g len unaligned : 0x%x\n",
355 if (num_prde
== (SATA_FSL_MAX_PRD_DIRECT
- 1) &&
356 sg_next(sg
) != NULL
) {
357 VPRINTK("setting indirect prde\n");
358 prd_ptr_to_indirect_ext
= prd
;
359 prd
->dba
= cpu_to_le32(indirect_ext_segment_paddr
);
360 indirect_ext_segment_sz
= 0;
365 ttl_dwords
+= sg_len
;
366 prd
->dba
= cpu_to_le32(sg_addr
);
367 prd
->ddc_and_ext
= cpu_to_le32(data_snoop
| (sg_len
& ~0x03));
369 VPRINTK("sg_fill, ttl=%d, dba=0x%x, ddc=0x%x\n",
370 ttl_dwords
, prd
->dba
, prd
->ddc_and_ext
);
374 if (prd_ptr_to_indirect_ext
)
375 indirect_ext_segment_sz
+= sg_len
;
378 if (prd_ptr_to_indirect_ext
) {
379 /* set indirect extension flag along with indirect ext. size */
380 prd_ptr_to_indirect_ext
->ddc_and_ext
=
381 cpu_to_le32((EXT_INDIRECT_SEG_PRD_FLAG
|
383 (indirect_ext_segment_sz
& ~0x03)));
390 static void sata_fsl_qc_prep(struct ata_queued_cmd
*qc
)
392 struct ata_port
*ap
= qc
->ap
;
393 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
394 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
395 void __iomem
*hcr_base
= host_priv
->hcr_base
;
396 unsigned int tag
= sata_fsl_tag(qc
->tag
, hcr_base
);
397 struct command_desc
*cd
;
398 u32 desc_info
= CMD_DESC_RES
| CMD_DESC_SNOOP_ENABLE
;
403 cd
= (struct command_desc
*)pp
->cmdentry
+ tag
;
404 cd_paddr
= pp
->cmdentry_paddr
+ tag
* SATA_FSL_CMD_DESC_SIZE
;
406 ata_tf_to_fis(&qc
->tf
, qc
->dev
->link
->pmp
, 1, (u8
*) &cd
->cfis
);
408 VPRINTK("Dumping cfis : 0x%x, 0x%x, 0x%x\n",
409 cd
->cfis
[0], cd
->cfis
[1], cd
->cfis
[2]);
411 if (qc
->tf
.protocol
== ATA_PROT_NCQ
) {
412 VPRINTK("FPDMA xfer,Sctor cnt[0:7],[8:15] = %d,%d\n",
413 cd
->cfis
[3], cd
->cfis
[11]);
416 /* setup "ACMD - atapi command" in cmd. desc. if this is ATAPI cmd */
417 if (ata_is_atapi(qc
->tf
.protocol
)) {
418 desc_info
|= ATAPI_CMD
;
419 memset((void *)&cd
->acmd
, 0, 32);
420 memcpy((void *)&cd
->acmd
, qc
->cdb
, qc
->dev
->cdb_len
);
423 if (qc
->flags
& ATA_QCFLAG_DMAMAP
)
424 num_prde
= sata_fsl_fill_sg(qc
, (void *)cd
,
425 &ttl_dwords
, cd_paddr
,
426 host_priv
->data_snoop
);
428 if (qc
->tf
.protocol
== ATA_PROT_NCQ
)
429 desc_info
|= FPDMA_QUEUED_CMD
;
431 sata_fsl_setup_cmd_hdr_entry(pp
, tag
, desc_info
, ttl_dwords
,
434 VPRINTK("SATA FSL : xx_qc_prep, di = 0x%x, ttl = %d, num_prde = %d\n",
435 desc_info
, ttl_dwords
, num_prde
);
438 static unsigned int sata_fsl_qc_issue(struct ata_queued_cmd
*qc
)
440 struct ata_port
*ap
= qc
->ap
;
441 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
442 void __iomem
*hcr_base
= host_priv
->hcr_base
;
443 unsigned int tag
= sata_fsl_tag(qc
->tag
, hcr_base
);
445 VPRINTK("xx_qc_issue called,CQ=0x%x,CA=0x%x,CE=0x%x,CC=0x%x\n",
446 ioread32(CQ
+ hcr_base
),
447 ioread32(CA
+ hcr_base
),
448 ioread32(CE
+ hcr_base
), ioread32(CC
+ hcr_base
));
450 iowrite32(qc
->dev
->link
->pmp
, CQPMP
+ hcr_base
);
452 /* Simply queue command to the controller/device */
453 iowrite32(1 << tag
, CQ
+ hcr_base
);
455 VPRINTK("xx_qc_issue called, tag=%d, CQ=0x%x, CA=0x%x\n",
456 tag
, ioread32(CQ
+ hcr_base
), ioread32(CA
+ hcr_base
));
458 VPRINTK("CE=0x%x, DE=0x%x, CC=0x%x, CmdStat = 0x%x\n",
459 ioread32(CE
+ hcr_base
),
460 ioread32(DE
+ hcr_base
),
461 ioread32(CC
+ hcr_base
),
462 ioread32(COMMANDSTAT
+ host_priv
->csr_base
));
467 static bool sata_fsl_qc_fill_rtf(struct ata_queued_cmd
*qc
)
469 struct sata_fsl_port_priv
*pp
= qc
->ap
->private_data
;
470 struct sata_fsl_host_priv
*host_priv
= qc
->ap
->host
->private_data
;
471 void __iomem
*hcr_base
= host_priv
->hcr_base
;
472 unsigned int tag
= sata_fsl_tag(qc
->tag
, hcr_base
);
473 struct command_desc
*cd
;
475 cd
= pp
->cmdentry
+ tag
;
477 ata_tf_from_fis(cd
->sfis
, &qc
->result_tf
);
481 static int sata_fsl_scr_write(struct ata_link
*link
,
482 unsigned int sc_reg_in
, u32 val
)
484 struct sata_fsl_host_priv
*host_priv
= link
->ap
->host
->private_data
;
485 void __iomem
*ssr_base
= host_priv
->ssr_base
;
499 VPRINTK("xx_scr_write, reg_in = %d\n", sc_reg
);
501 iowrite32(val
, ssr_base
+ (sc_reg
* 4));
505 static int sata_fsl_scr_read(struct ata_link
*link
,
506 unsigned int sc_reg_in
, u32
*val
)
508 struct sata_fsl_host_priv
*host_priv
= link
->ap
->host
->private_data
;
509 void __iomem
*ssr_base
= host_priv
->ssr_base
;
523 VPRINTK("xx_scr_read, reg_in = %d\n", sc_reg
);
525 *val
= ioread32(ssr_base
+ (sc_reg
* 4));
529 static void sata_fsl_freeze(struct ata_port
*ap
)
531 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
532 void __iomem
*hcr_base
= host_priv
->hcr_base
;
535 VPRINTK("xx_freeze, CQ=0x%x, CA=0x%x, CE=0x%x, DE=0x%x\n",
536 ioread32(CQ
+ hcr_base
),
537 ioread32(CA
+ hcr_base
),
538 ioread32(CE
+ hcr_base
), ioread32(DE
+ hcr_base
));
539 VPRINTK("CmdStat = 0x%x\n",
540 ioread32(host_priv
->csr_base
+ COMMANDSTAT
));
542 /* disable interrupts on the controller/port */
543 temp
= ioread32(hcr_base
+ HCONTROL
);
544 iowrite32((temp
& ~0x3F), hcr_base
+ HCONTROL
);
546 VPRINTK("in xx_freeze : HControl = 0x%x, HStatus = 0x%x\n",
547 ioread32(hcr_base
+ HCONTROL
), ioread32(hcr_base
+ HSTATUS
));
550 static void sata_fsl_thaw(struct ata_port
*ap
)
552 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
553 void __iomem
*hcr_base
= host_priv
->hcr_base
;
556 /* ack. any pending IRQs for this controller/port */
557 temp
= ioread32(hcr_base
+ HSTATUS
);
559 VPRINTK("xx_thaw, pending IRQs = 0x%x\n", (temp
& 0x3F));
562 iowrite32((temp
& 0x3F), hcr_base
+ HSTATUS
);
564 /* enable interrupts on the controller/port */
565 temp
= ioread32(hcr_base
+ HCONTROL
);
566 iowrite32((temp
| DEFAULT_PORT_IRQ_ENABLE_MASK
), hcr_base
+ HCONTROL
);
568 VPRINTK("xx_thaw : HControl = 0x%x, HStatus = 0x%x\n",
569 ioread32(hcr_base
+ HCONTROL
), ioread32(hcr_base
+ HSTATUS
));
572 static void sata_fsl_pmp_attach(struct ata_port
*ap
)
574 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
575 void __iomem
*hcr_base
= host_priv
->hcr_base
;
578 temp
= ioread32(hcr_base
+ HCONTROL
);
579 iowrite32((temp
| HCONTROL_PMP_ATTACHED
), hcr_base
+ HCONTROL
);
582 static void sata_fsl_pmp_detach(struct ata_port
*ap
)
584 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
585 void __iomem
*hcr_base
= host_priv
->hcr_base
;
588 temp
= ioread32(hcr_base
+ HCONTROL
);
589 temp
&= ~HCONTROL_PMP_ATTACHED
;
590 iowrite32(temp
, hcr_base
+ HCONTROL
);
592 /* enable interrupts on the controller/port */
593 temp
= ioread32(hcr_base
+ HCONTROL
);
594 iowrite32((temp
| DEFAULT_PORT_IRQ_ENABLE_MASK
), hcr_base
+ HCONTROL
);
598 static int sata_fsl_port_start(struct ata_port
*ap
)
600 struct device
*dev
= ap
->host
->dev
;
601 struct sata_fsl_port_priv
*pp
;
604 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
605 void __iomem
*hcr_base
= host_priv
->hcr_base
;
608 pp
= kzalloc(sizeof(*pp
), GFP_KERNEL
);
612 mem
= dma_alloc_coherent(dev
, SATA_FSL_PORT_PRIV_DMA_SZ
, &mem_dma
,
618 memset(mem
, 0, SATA_FSL_PORT_PRIV_DMA_SZ
);
621 pp
->cmdslot_paddr
= mem_dma
;
623 mem
+= SATA_FSL_CMD_SLOT_SIZE
;
624 mem_dma
+= SATA_FSL_CMD_SLOT_SIZE
;
627 pp
->cmdentry_paddr
= mem_dma
;
629 ap
->private_data
= pp
;
631 VPRINTK("CHBA = 0x%x, cmdentry_phys = 0x%x\n",
632 pp
->cmdslot_paddr
, pp
->cmdentry_paddr
);
634 /* Now, update the CHBA register in host controller cmd register set */
635 iowrite32(pp
->cmdslot_paddr
& 0xffffffff, hcr_base
+ CHBA
);
638 * Now, we can bring the controller on-line & also initiate
639 * the COMINIT sequence, we simply return here and the boot-probing
640 * & device discovery process is re-initiated by libATA using a
641 * Softreset EH (dummy) session. Hence, boot probing and device
642 * discovey will be part of sata_fsl_softreset() callback.
645 temp
= ioread32(hcr_base
+ HCONTROL
);
646 iowrite32((temp
| HCONTROL_ONLINE_PHY_RST
), hcr_base
+ HCONTROL
);
648 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
649 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
650 VPRINTK("CHBA = 0x%x\n", ioread32(hcr_base
+ CHBA
));
652 #ifdef CONFIG_MPC8315_DS
654 * Workaround for 8315DS board 3gbps link-up issue,
655 * currently limit SATA port to GEN1 speed
657 sata_fsl_scr_read(&ap
->link
, SCR_CONTROL
, &temp
);
660 sata_fsl_scr_write(&ap
->link
, SCR_CONTROL
, temp
);
662 sata_fsl_scr_read(&ap
->link
, SCR_CONTROL
, &temp
);
663 dev_warn(dev
, "scr_control, speed limited to %x\n", temp
);
669 static void sata_fsl_port_stop(struct ata_port
*ap
)
671 struct device
*dev
= ap
->host
->dev
;
672 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
673 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
674 void __iomem
*hcr_base
= host_priv
->hcr_base
;
678 * Force host controller to go off-line, aborting current operations
680 temp
= ioread32(hcr_base
+ HCONTROL
);
681 temp
&= ~HCONTROL_ONLINE_PHY_RST
;
682 temp
|= HCONTROL_FORCE_OFFLINE
;
683 iowrite32(temp
, hcr_base
+ HCONTROL
);
685 /* Poll for controller to go offline - should happen immediately */
686 ata_wait_register(ap
, hcr_base
+ HSTATUS
, ONLINE
, ONLINE
, 1, 1);
688 ap
->private_data
= NULL
;
689 dma_free_coherent(dev
, SATA_FSL_PORT_PRIV_DMA_SZ
,
690 pp
->cmdslot
, pp
->cmdslot_paddr
);
695 static unsigned int sata_fsl_dev_classify(struct ata_port
*ap
)
697 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
698 void __iomem
*hcr_base
= host_priv
->hcr_base
;
699 struct ata_taskfile tf
;
702 temp
= ioread32(hcr_base
+ SIGNATURE
);
704 VPRINTK("raw sig = 0x%x\n", temp
);
705 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
706 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
708 tf
.lbah
= (temp
>> 24) & 0xff;
709 tf
.lbam
= (temp
>> 16) & 0xff;
710 tf
.lbal
= (temp
>> 8) & 0xff;
711 tf
.nsect
= temp
& 0xff;
713 return ata_dev_classify(&tf
);
716 static int sata_fsl_hardreset(struct ata_link
*link
, unsigned int *class,
717 unsigned long deadline
)
719 struct ata_port
*ap
= link
->ap
;
720 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
721 void __iomem
*hcr_base
= host_priv
->hcr_base
;
724 unsigned long start_jiffies
;
726 DPRINTK("in xx_hardreset\n");
730 * Force host controller to go off-line, aborting current operations
732 temp
= ioread32(hcr_base
+ HCONTROL
);
733 temp
&= ~HCONTROL_ONLINE_PHY_RST
;
734 iowrite32(temp
, hcr_base
+ HCONTROL
);
736 /* Poll for controller to go offline */
737 temp
= ata_wait_register(ap
, hcr_base
+ HSTATUS
, ONLINE
, ONLINE
,
741 ata_port_err(ap
, "Hardreset failed, not off-lined %d\n", i
);
744 * Try to offline controller atleast twice
750 goto try_offline_again
;
753 DPRINTK("hardreset, controller off-lined\n");
754 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
755 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
758 * PHY reset should remain asserted for atleast 1ms
763 * Now, bring the host controller online again, this can take time
764 * as PHY reset and communication establishment, 1st D2H FIS and
765 * device signature update is done, on safe side assume 500ms
766 * NOTE : Host online status may be indicated immediately!!
769 temp
= ioread32(hcr_base
+ HCONTROL
);
770 temp
|= (HCONTROL_ONLINE_PHY_RST
| HCONTROL_SNOOP_ENABLE
);
771 temp
|= HCONTROL_PMP_ATTACHED
;
772 iowrite32(temp
, hcr_base
+ HCONTROL
);
774 temp
= ata_wait_register(ap
, hcr_base
+ HSTATUS
, ONLINE
, 0, 1, 500);
776 if (!(temp
& ONLINE
)) {
777 ata_port_err(ap
, "Hardreset failed, not on-lined\n");
781 DPRINTK("hardreset, controller off-lined & on-lined\n");
782 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
783 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
786 * First, wait for the PHYRDY change to occur before waiting for
787 * the signature, and also verify if SStatus indicates device
791 temp
= ata_wait_register(ap
, hcr_base
+ HSTATUS
, 0xFF, 0, 1, 500);
792 if ((!(temp
& 0x10)) || ata_link_offline(link
)) {
793 ata_port_warn(ap
, "No Device OR PHYRDY change,Hstatus = 0x%x\n",
794 ioread32(hcr_base
+ HSTATUS
));
795 *class = ATA_DEV_NONE
;
800 * Wait for the first D2H from device,i.e,signature update notification
802 start_jiffies
= jiffies
;
803 temp
= ata_wait_register(ap
, hcr_base
+ HSTATUS
, 0xFF, 0x10,
804 500, jiffies_to_msecs(deadline
- start_jiffies
));
806 if ((temp
& 0xFF) != 0x18) {
807 ata_port_warn(ap
, "No Signature Update\n");
808 *class = ATA_DEV_NONE
;
809 goto do_followup_srst
;
811 ata_port_info(ap
, "Signature Update detected @ %d msecs\n",
812 jiffies_to_msecs(jiffies
- start_jiffies
));
813 *class = sata_fsl_dev_classify(ap
);
819 * request libATA to perform follow-up softreset
827 static int sata_fsl_softreset(struct ata_link
*link
, unsigned int *class,
828 unsigned long deadline
)
830 struct ata_port
*ap
= link
->ap
;
831 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
832 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
833 void __iomem
*hcr_base
= host_priv
->hcr_base
;
834 int pmp
= sata_srst_pmp(link
);
836 struct ata_taskfile tf
;
840 DPRINTK("in xx_softreset\n");
842 if (ata_link_offline(link
)) {
843 DPRINTK("PHY reports no device\n");
844 *class = ATA_DEV_NONE
;
849 * Send a device reset (SRST) explicitly on command slot #0
850 * Check : will the command queue (reg) be cleared during offlining ??
851 * Also we will be online only if Phy commn. has been established
852 * and device presence has been detected, therefore if we have
853 * reached here, we can send a command to the target device
856 DPRINTK("Sending SRST/device reset\n");
858 ata_tf_init(link
->device
, &tf
);
859 cfis
= (u8
*) &pp
->cmdentry
->cfis
;
861 /* device reset/SRST is a control register update FIS, uses tag0 */
862 sata_fsl_setup_cmd_hdr_entry(pp
, 0,
863 SRST_CMD
| CMD_DESC_RES
| CMD_DESC_SNOOP_ENABLE
, 0, 0, 5);
865 tf
.ctl
|= ATA_SRST
; /* setup SRST bit in taskfile control reg */
866 ata_tf_to_fis(&tf
, pmp
, 0, cfis
);
868 DPRINTK("Dumping cfis : 0x%x, 0x%x, 0x%x, 0x%x\n",
869 cfis
[0], cfis
[1], cfis
[2], cfis
[3]);
872 * Queue SRST command to the controller/device, ensure that no
873 * other commands are active on the controller/device
876 DPRINTK("@Softreset, CQ = 0x%x, CA = 0x%x, CC = 0x%x\n",
877 ioread32(CQ
+ hcr_base
),
878 ioread32(CA
+ hcr_base
), ioread32(CC
+ hcr_base
));
880 iowrite32(0xFFFF, CC
+ hcr_base
);
881 if (pmp
!= SATA_PMP_CTRL_PORT
)
882 iowrite32(pmp
, CQPMP
+ hcr_base
);
883 iowrite32(1, CQ
+ hcr_base
);
885 temp
= ata_wait_register(ap
, CQ
+ hcr_base
, 0x1, 0x1, 1, 5000);
887 ata_port_warn(ap
, "ATA_SRST issue failed\n");
889 DPRINTK("Softreset@5000,CQ=0x%x,CA=0x%x,CC=0x%x\n",
890 ioread32(CQ
+ hcr_base
),
891 ioread32(CA
+ hcr_base
), ioread32(CC
+ hcr_base
));
893 sata_fsl_scr_read(&ap
->link
, SCR_ERROR
, &Serror
);
895 DPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
896 DPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
897 DPRINTK("Serror = 0x%x\n", Serror
);
904 * SATA device enters reset state after receiving a Control register
905 * FIS with SRST bit asserted and it awaits another H2D Control reg.
906 * FIS with SRST bit cleared, then the device does internal diags &
907 * initialization, followed by indicating it's initialization status
908 * using ATA signature D2H register FIS to the host controller.
911 sata_fsl_setup_cmd_hdr_entry(pp
, 0, CMD_DESC_RES
| CMD_DESC_SNOOP_ENABLE
,
914 tf
.ctl
&= ~ATA_SRST
; /* 2nd H2D Ctl. register FIS */
915 ata_tf_to_fis(&tf
, pmp
, 0, cfis
);
917 if (pmp
!= SATA_PMP_CTRL_PORT
)
918 iowrite32(pmp
, CQPMP
+ hcr_base
);
919 iowrite32(1, CQ
+ hcr_base
);
920 ata_msleep(ap
, 150); /* ?? */
923 * The above command would have signalled an interrupt on command
924 * complete, which needs special handling, by clearing the Nth
925 * command bit of the CCreg
927 iowrite32(0x01, CC
+ hcr_base
); /* We know it will be cmd#0 always */
929 DPRINTK("SATA FSL : Now checking device signature\n");
931 *class = ATA_DEV_NONE
;
933 /* Verify if SStatus indicates device presence */
934 if (ata_link_online(link
)) {
936 * if we are here, device presence has been detected,
937 * 1st D2H FIS would have been received, but sfis in
938 * command desc. is not updated, but signature register
939 * would have been updated
942 *class = sata_fsl_dev_classify(ap
);
944 DPRINTK("class = %d\n", *class);
945 VPRINTK("ccreg = 0x%x\n", ioread32(hcr_base
+ CC
));
946 VPRINTK("cereg = 0x%x\n", ioread32(hcr_base
+ CE
));
955 static void sata_fsl_error_handler(struct ata_port
*ap
)
958 DPRINTK("in xx_error_handler\n");
959 sata_pmp_error_handler(ap
);
963 static void sata_fsl_post_internal_cmd(struct ata_queued_cmd
*qc
)
965 if (qc
->flags
& ATA_QCFLAG_FAILED
)
966 qc
->err_mask
|= AC_ERR_OTHER
;
969 /* make DMA engine forget about the failed command */
974 static void sata_fsl_error_intr(struct ata_port
*ap
)
976 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
977 void __iomem
*hcr_base
= host_priv
->hcr_base
;
978 u32 hstatus
, dereg
=0, cereg
= 0, SError
= 0;
979 unsigned int err_mask
= 0, action
= 0;
980 int freeze
= 0, abort
=0;
981 struct ata_link
*link
= NULL
;
982 struct ata_queued_cmd
*qc
= NULL
;
983 struct ata_eh_info
*ehi
;
985 hstatus
= ioread32(hcr_base
+ HSTATUS
);
986 cereg
= ioread32(hcr_base
+ CE
);
988 /* first, analyze and record host port events */
990 ehi
= &link
->eh_info
;
991 ata_ehi_clear_desc(ehi
);
994 * Handle & Clear SError
997 sata_fsl_scr_read(&ap
->link
, SCR_ERROR
, &SError
);
998 if (unlikely(SError
& 0xFFFF0000))
999 sata_fsl_scr_write(&ap
->link
, SCR_ERROR
, SError
);
1001 DPRINTK("error_intr,hStat=0x%x,CE=0x%x,DE =0x%x,SErr=0x%x\n",
1002 hstatus
, cereg
, ioread32(hcr_base
+ DE
), SError
);
1004 /* handle fatal errors */
1005 if (hstatus
& FATAL_ERROR_DECODE
) {
1006 ehi
->err_mask
|= AC_ERR_ATA_BUS
;
1007 ehi
->action
|= ATA_EH_SOFTRESET
;
1012 /* Handle SDB FIS receive & notify update */
1013 if (hstatus
& INT_ON_SNOTIFY_UPDATE
)
1014 sata_async_notification(ap
);
1016 /* Handle PHYRDY change notification */
1017 if (hstatus
& INT_ON_PHYRDY_CHG
) {
1018 DPRINTK("SATA FSL: PHYRDY change indication\n");
1020 /* Setup a soft-reset EH action */
1021 ata_ehi_hotplugged(ehi
);
1022 ata_ehi_push_desc(ehi
, "%s", "PHY RDY changed");
1026 /* handle single device errors */
1029 * clear the command error, also clears queue to the device
1030 * in error, and we can (re)issue commands to this device.
1031 * When a device is in error all commands queued into the
1032 * host controller and at the device are considered aborted
1033 * and the queue for that device is stopped. Now, after
1034 * clearing the device error, we can issue commands to the
1035 * device to interrogate it to find the source of the error.
1039 DPRINTK("single device error, CE=0x%x, DE=0x%x\n",
1040 ioread32(hcr_base
+ CE
), ioread32(hcr_base
+ DE
));
1042 /* find out the offending link and qc */
1043 if (ap
->nr_pmp_links
) {
1044 unsigned int dev_num
;
1046 dereg
= ioread32(hcr_base
+ DE
);
1047 iowrite32(dereg
, hcr_base
+ DE
);
1048 iowrite32(cereg
, hcr_base
+ CE
);
1050 dev_num
= ffs(dereg
) - 1;
1051 if (dev_num
< ap
->nr_pmp_links
&& dereg
!= 0) {
1052 link
= &ap
->pmp_link
[dev_num
];
1053 ehi
= &link
->eh_info
;
1054 qc
= ata_qc_from_tag(ap
, link
->active_tag
);
1056 * We should consider this as non fatal error,
1057 * and TF must be updated as done below.
1060 err_mask
|= AC_ERR_DEV
;
1063 err_mask
|= AC_ERR_HSM
;
1064 action
|= ATA_EH_HARDRESET
;
1068 dereg
= ioread32(hcr_base
+ DE
);
1069 iowrite32(dereg
, hcr_base
+ DE
);
1070 iowrite32(cereg
, hcr_base
+ CE
);
1072 qc
= ata_qc_from_tag(ap
, link
->active_tag
);
1074 * We should consider this as non fatal error,
1075 * and TF must be updated as done below.
1077 err_mask
|= AC_ERR_DEV
;
1081 /* record error info */
1083 qc
->err_mask
|= err_mask
;
1085 ehi
->err_mask
|= err_mask
;
1087 ehi
->action
|= action
;
1089 /* freeze or abort */
1091 ata_port_freeze(ap
);
1094 ata_link_abort(qc
->dev
->link
);
1100 static void sata_fsl_host_intr(struct ata_port
*ap
)
1102 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
1103 void __iomem
*hcr_base
= host_priv
->hcr_base
;
1104 u32 hstatus
, done_mask
= 0;
1105 struct ata_queued_cmd
*qc
;
1108 hstatus
= ioread32(hcr_base
+ HSTATUS
);
1110 sata_fsl_scr_read(&ap
->link
, SCR_ERROR
, &SError
);
1112 if (unlikely(SError
& 0xFFFF0000)) {
1113 DPRINTK("serror @host_intr : 0x%x\n", SError
);
1114 sata_fsl_error_intr(ap
);
1117 if (unlikely(hstatus
& INT_ON_ERROR
)) {
1118 DPRINTK("error interrupt!!\n");
1119 sata_fsl_error_intr(ap
);
1123 /* Read command completed register */
1124 done_mask
= ioread32(hcr_base
+ CC
);
1126 VPRINTK("Status of all queues :\n");
1127 VPRINTK("done_mask/CC = 0x%x, CA = 0x%x, CE=0x%x,CQ=0x%x,apqa=0x%x\n",
1129 ioread32(hcr_base
+ CA
),
1130 ioread32(hcr_base
+ CE
),
1131 ioread32(hcr_base
+ CQ
),
1134 if (done_mask
& ap
->qc_active
) {
1136 /* clear CC bit, this will also complete the interrupt */
1137 iowrite32(done_mask
, hcr_base
+ CC
);
1139 DPRINTK("Status of all queues :\n");
1140 DPRINTK("done_mask/CC = 0x%x, CA = 0x%x, CE=0x%x\n",
1141 done_mask
, ioread32(hcr_base
+ CA
),
1142 ioread32(hcr_base
+ CE
));
1144 for (i
= 0; i
< SATA_FSL_QUEUE_DEPTH
; i
++) {
1145 if (done_mask
& (1 << i
))
1147 ("completing ncq cmd,tag=%d,CC=0x%x,CA=0x%x\n",
1148 i
, ioread32(hcr_base
+ CC
),
1149 ioread32(hcr_base
+ CA
));
1151 ata_qc_complete_multiple(ap
, ap
->qc_active
^ done_mask
);
1154 } else if ((ap
->qc_active
& (1 << ATA_TAG_INTERNAL
))) {
1155 iowrite32(1, hcr_base
+ CC
);
1156 qc
= ata_qc_from_tag(ap
, ATA_TAG_INTERNAL
);
1158 DPRINTK("completing non-ncq cmd, CC=0x%x\n",
1159 ioread32(hcr_base
+ CC
));
1162 ata_qc_complete(qc
);
1165 /* Spurious Interrupt!! */
1166 DPRINTK("spurious interrupt!!, CC = 0x%x\n",
1167 ioread32(hcr_base
+ CC
));
1168 iowrite32(done_mask
, hcr_base
+ CC
);
1173 static irqreturn_t
sata_fsl_interrupt(int irq
, void *dev_instance
)
1175 struct ata_host
*host
= dev_instance
;
1176 struct sata_fsl_host_priv
*host_priv
= host
->private_data
;
1177 void __iomem
*hcr_base
= host_priv
->hcr_base
;
1178 u32 interrupt_enables
;
1179 unsigned handled
= 0;
1180 struct ata_port
*ap
;
1182 /* ack. any pending IRQs for this controller/port */
1183 interrupt_enables
= ioread32(hcr_base
+ HSTATUS
);
1184 interrupt_enables
&= 0x3F;
1186 DPRINTK("interrupt status 0x%x\n", interrupt_enables
);
1188 if (!interrupt_enables
)
1191 spin_lock(&host
->lock
);
1193 /* Assuming one port per host controller */
1195 ap
= host
->ports
[0];
1197 sata_fsl_host_intr(ap
);
1199 dev_warn(host
->dev
, "interrupt on disabled port 0\n");
1202 iowrite32(interrupt_enables
, hcr_base
+ HSTATUS
);
1205 spin_unlock(&host
->lock
);
1207 return IRQ_RETVAL(handled
);
1211 * Multiple ports are represented by multiple SATA controllers with
1212 * one port per controller
1214 static int sata_fsl_init_controller(struct ata_host
*host
)
1216 struct sata_fsl_host_priv
*host_priv
= host
->private_data
;
1217 void __iomem
*hcr_base
= host_priv
->hcr_base
;
1221 * NOTE : We cannot bring the controller online before setting
1222 * the CHBA, hence main controller initialization is done as
1223 * part of the port_start() callback
1226 /* ack. any pending IRQs for this controller/port */
1227 temp
= ioread32(hcr_base
+ HSTATUS
);
1229 iowrite32((temp
& 0x3F), hcr_base
+ HSTATUS
);
1231 /* Keep interrupts disabled on the controller */
1232 temp
= ioread32(hcr_base
+ HCONTROL
);
1233 iowrite32((temp
& ~0x3F), hcr_base
+ HCONTROL
);
1235 /* Disable interrupt coalescing control(icc), for the moment */
1236 DPRINTK("icc = 0x%x\n", ioread32(hcr_base
+ ICC
));
1237 iowrite32(0x01000000, hcr_base
+ ICC
);
1239 /* clear error registers, SError is cleared by libATA */
1240 iowrite32(0x00000FFFF, hcr_base
+ CE
);
1241 iowrite32(0x00000FFFF, hcr_base
+ DE
);
1244 * host controller will be brought on-line, during xx_port_start()
1245 * callback, that should also initiate the OOB, COMINIT sequence
1248 DPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
1249 DPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
1255 * scsi mid-layer and libata interface structures
1257 static struct scsi_host_template sata_fsl_sht
= {
1258 ATA_NCQ_SHT("sata_fsl"),
1259 .can_queue
= SATA_FSL_QUEUE_DEPTH
,
1260 .sg_tablesize
= SATA_FSL_MAX_PRD_USABLE
,
1261 .dma_boundary
= ATA_DMA_BOUNDARY
,
1264 static struct ata_port_operations sata_fsl_ops
= {
1265 .inherits
= &sata_pmp_port_ops
,
1267 .qc_defer
= ata_std_qc_defer
,
1268 .qc_prep
= sata_fsl_qc_prep
,
1269 .qc_issue
= sata_fsl_qc_issue
,
1270 .qc_fill_rtf
= sata_fsl_qc_fill_rtf
,
1272 .scr_read
= sata_fsl_scr_read
,
1273 .scr_write
= sata_fsl_scr_write
,
1275 .freeze
= sata_fsl_freeze
,
1276 .thaw
= sata_fsl_thaw
,
1277 .softreset
= sata_fsl_softreset
,
1278 .hardreset
= sata_fsl_hardreset
,
1279 .pmp_softreset
= sata_fsl_softreset
,
1280 .error_handler
= sata_fsl_error_handler
,
1281 .post_internal_cmd
= sata_fsl_post_internal_cmd
,
1283 .port_start
= sata_fsl_port_start
,
1284 .port_stop
= sata_fsl_port_stop
,
1286 .pmp_attach
= sata_fsl_pmp_attach
,
1287 .pmp_detach
= sata_fsl_pmp_detach
,
1290 static const struct ata_port_info sata_fsl_port_info
[] = {
1292 .flags
= SATA_FSL_HOST_FLAGS
,
1293 .pio_mask
= ATA_PIO4
,
1294 .udma_mask
= ATA_UDMA6
,
1295 .port_ops
= &sata_fsl_ops
,
1299 static int sata_fsl_probe(struct platform_device
*ofdev
)
1301 int retval
= -ENXIO
;
1302 void __iomem
*hcr_base
= NULL
;
1303 void __iomem
*ssr_base
= NULL
;
1304 void __iomem
*csr_base
= NULL
;
1305 struct sata_fsl_host_priv
*host_priv
= NULL
;
1307 struct ata_host
*host
;
1310 struct ata_port_info pi
= sata_fsl_port_info
[0];
1311 const struct ata_port_info
*ppi
[] = { &pi
, NULL
};
1313 dev_info(&ofdev
->dev
, "Sata FSL Platform/CSB Driver init\n");
1315 hcr_base
= of_iomap(ofdev
->dev
.of_node
, 0);
1317 goto error_exit_with_cleanup
;
1319 ssr_base
= hcr_base
+ 0x100;
1320 csr_base
= hcr_base
+ 0x140;
1322 if (!of_device_is_compatible(ofdev
->dev
.of_node
, "fsl,mpc8315-sata")) {
1323 temp
= ioread32(csr_base
+ TRANSCFG
);
1324 temp
= temp
& 0xffffffe0;
1325 iowrite32(temp
| TRANSCFG_RX_WATER_MARK
, csr_base
+ TRANSCFG
);
1328 DPRINTK("@reset i/o = 0x%x\n", ioread32(csr_base
+ TRANSCFG
));
1329 DPRINTK("sizeof(cmd_desc) = %d\n", sizeof(struct command_desc
));
1330 DPRINTK("sizeof(#define cmd_desc) = %d\n", SATA_FSL_CMD_DESC_SIZE
);
1332 host_priv
= kzalloc(sizeof(struct sata_fsl_host_priv
), GFP_KERNEL
);
1334 goto error_exit_with_cleanup
;
1336 host_priv
->hcr_base
= hcr_base
;
1337 host_priv
->ssr_base
= ssr_base
;
1338 host_priv
->csr_base
= csr_base
;
1340 irq
= irq_of_parse_and_map(ofdev
->dev
.of_node
, 0);
1342 dev_err(&ofdev
->dev
, "invalid irq from platform\n");
1343 goto error_exit_with_cleanup
;
1345 host_priv
->irq
= irq
;
1347 if (of_device_is_compatible(ofdev
->dev
.of_node
, "fsl,pq-sata-v2"))
1348 host_priv
->data_snoop
= DATA_SNOOP_ENABLE_V2
;
1350 host_priv
->data_snoop
= DATA_SNOOP_ENABLE_V1
;
1352 /* allocate host structure */
1353 host
= ata_host_alloc_pinfo(&ofdev
->dev
, ppi
, SATA_FSL_MAX_PORTS
);
1355 /* host->iomap is not used currently */
1356 host
->private_data
= host_priv
;
1358 /* initialize host controller */
1359 sata_fsl_init_controller(host
);
1362 * Now, register with libATA core, this will also initiate the
1363 * device discovery process, invoking our port_start() handler &
1364 * error_handler() to execute a dummy Softreset EH session
1366 ata_host_activate(host
, irq
, sata_fsl_interrupt
, SATA_FSL_IRQ_FLAG
,
1369 dev_set_drvdata(&ofdev
->dev
, host
);
1373 error_exit_with_cleanup
:
1383 static int sata_fsl_remove(struct platform_device
*ofdev
)
1385 struct ata_host
*host
= dev_get_drvdata(&ofdev
->dev
);
1386 struct sata_fsl_host_priv
*host_priv
= host
->private_data
;
1388 ata_host_detach(host
);
1390 dev_set_drvdata(&ofdev
->dev
, NULL
);
1392 irq_dispose_mapping(host_priv
->irq
);
1393 iounmap(host_priv
->hcr_base
);
1400 static int sata_fsl_suspend(struct platform_device
*op
, pm_message_t state
)
1402 struct ata_host
*host
= dev_get_drvdata(&op
->dev
);
1403 return ata_host_suspend(host
, state
);
1406 static int sata_fsl_resume(struct platform_device
*op
)
1408 struct ata_host
*host
= dev_get_drvdata(&op
->dev
);
1409 struct sata_fsl_host_priv
*host_priv
= host
->private_data
;
1411 void __iomem
*hcr_base
= host_priv
->hcr_base
;
1412 struct ata_port
*ap
= host
->ports
[0];
1413 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
1415 ret
= sata_fsl_init_controller(host
);
1417 dev_err(&op
->dev
, "Error initializing hardware\n");
1421 /* Recovery the CHBA register in host controller cmd register set */
1422 iowrite32(pp
->cmdslot_paddr
& 0xffffffff, hcr_base
+ CHBA
);
1424 ata_host_resume(host
);
1429 static struct of_device_id fsl_sata_match
[] = {
1431 .compatible
= "fsl,pq-sata",
1434 .compatible
= "fsl,pq-sata-v2",
1439 MODULE_DEVICE_TABLE(of
, fsl_sata_match
);
1441 static struct platform_driver fsl_sata_driver
= {
1444 .owner
= THIS_MODULE
,
1445 .of_match_table
= fsl_sata_match
,
1447 .probe
= sata_fsl_probe
,
1448 .remove
= sata_fsl_remove
,
1450 .suspend
= sata_fsl_suspend
,
1451 .resume
= sata_fsl_resume
,
1455 static int __init
sata_fsl_init(void)
1457 platform_driver_register(&fsl_sata_driver
);
1461 static void __exit
sata_fsl_exit(void)
1463 platform_driver_unregister(&fsl_sata_driver
);
1466 MODULE_LICENSE("GPL");
1467 MODULE_AUTHOR("Ashish Kalra, Freescale Semiconductor");
1468 MODULE_DESCRIPTION("Freescale 3.0Gbps SATA controller low level driver");
1469 MODULE_VERSION("1.10");
1471 module_init(sata_fsl_init
);
1472 module_exit(sata_fsl_exit
);