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 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>
22 #include <scsi/scsi_host.h>
23 #include <scsi/scsi_cmnd.h>
24 #include <linux/libata.h>
26 #include <linux/of_platform.h>
28 /* Controller information */
30 SATA_FSL_QUEUE_DEPTH
= 16,
31 SATA_FSL_MAX_PRD
= 63,
32 SATA_FSL_MAX_PRD_USABLE
= SATA_FSL_MAX_PRD
- 1,
33 SATA_FSL_MAX_PRD_DIRECT
= 16, /* Direct PRDT entries */
35 SATA_FSL_HOST_FLAGS
= (ATA_FLAG_SATA
| ATA_FLAG_NO_LEGACY
|
36 ATA_FLAG_MMIO
| ATA_FLAG_PIO_DMA
|
38 SATA_FSL_HOST_LFLAGS
= ATA_LFLAG_SKIP_D2H_BSY
,
40 SATA_FSL_MAX_CMDS
= SATA_FSL_QUEUE_DEPTH
,
41 SATA_FSL_CMD_HDR_SIZE
= 16, /* 4 DWORDS */
42 SATA_FSL_CMD_SLOT_SIZE
= (SATA_FSL_MAX_CMDS
* SATA_FSL_CMD_HDR_SIZE
),
45 * SATA-FSL host controller supports a max. of (15+1) direct PRDEs, and
46 * chained indirect PRDEs upto a max count of 63.
47 * We are allocating an array of 63 PRDEs contigiously, but PRDE#15 will
48 * be setup as an indirect descriptor, pointing to it's next
49 * (contigious) PRDE. Though chained indirect PRDE arrays are
50 * supported,it will be more efficient to use a direct PRDT and
51 * a single chain/link to indirect PRDE array/PRDT.
54 SATA_FSL_CMD_DESC_CFIS_SZ
= 32,
55 SATA_FSL_CMD_DESC_SFIS_SZ
= 32,
56 SATA_FSL_CMD_DESC_ACMD_SZ
= 16,
57 SATA_FSL_CMD_DESC_RSRVD
= 16,
59 SATA_FSL_CMD_DESC_SIZE
= (SATA_FSL_CMD_DESC_CFIS_SZ
+
60 SATA_FSL_CMD_DESC_SFIS_SZ
+
61 SATA_FSL_CMD_DESC_ACMD_SZ
+
62 SATA_FSL_CMD_DESC_RSRVD
+
63 SATA_FSL_MAX_PRD
* 16),
65 SATA_FSL_CMD_DESC_OFFSET_TO_PRDT
=
66 (SATA_FSL_CMD_DESC_CFIS_SZ
+
67 SATA_FSL_CMD_DESC_SFIS_SZ
+
68 SATA_FSL_CMD_DESC_ACMD_SZ
+
69 SATA_FSL_CMD_DESC_RSRVD
),
71 SATA_FSL_CMD_DESC_AR_SZ
= (SATA_FSL_CMD_DESC_SIZE
* SATA_FSL_MAX_CMDS
),
72 SATA_FSL_PORT_PRIV_DMA_SZ
= (SATA_FSL_CMD_SLOT_SIZE
+
73 SATA_FSL_CMD_DESC_AR_SZ
),
76 * MPC8315 has two SATA controllers, SATA1 & SATA2
77 * (one port per controller)
78 * MPC837x has 2/4 controllers, one port per controller
81 SATA_FSL_MAX_PORTS
= 1,
83 SATA_FSL_IRQ_FLAG
= IRQF_SHARED
,
87 * Host Controller command register set - per port
103 * Host Status Register (HStatus) bitdefs
106 GOING_OFFLINE
= (1 << 30),
107 BIST_ERR
= (1 << 29),
109 FATAL_ERR_HC_MASTER_ERR
= (1 << 18),
110 FATAL_ERR_PARITY_ERR_TX
= (1 << 17),
111 FATAL_ERR_PARITY_ERR_RX
= (1 << 16),
112 FATAL_ERR_DATA_UNDERRUN
= (1 << 13),
113 FATAL_ERR_DATA_OVERRUN
= (1 << 12),
114 FATAL_ERR_CRC_ERR_TX
= (1 << 11),
115 FATAL_ERR_CRC_ERR_RX
= (1 << 10),
116 FATAL_ERR_FIFO_OVRFL_TX
= (1 << 9),
117 FATAL_ERR_FIFO_OVRFL_RX
= (1 << 8),
119 FATAL_ERROR_DECODE
= FATAL_ERR_HC_MASTER_ERR
|
120 FATAL_ERR_PARITY_ERR_TX
|
121 FATAL_ERR_PARITY_ERR_RX
|
122 FATAL_ERR_DATA_UNDERRUN
|
123 FATAL_ERR_DATA_OVERRUN
|
124 FATAL_ERR_CRC_ERR_TX
|
125 FATAL_ERR_CRC_ERR_RX
|
126 FATAL_ERR_FIFO_OVRFL_TX
| FATAL_ERR_FIFO_OVRFL_RX
,
128 INT_ON_FATAL_ERR
= (1 << 5),
129 INT_ON_PHYRDY_CHG
= (1 << 4),
131 INT_ON_SIGNATURE_UPDATE
= (1 << 3),
132 INT_ON_SNOTIFY_UPDATE
= (1 << 2),
133 INT_ON_SINGL_DEVICE_ERR
= (1 << 1),
134 INT_ON_CMD_COMPLETE
= 1,
136 INT_ON_ERROR
= INT_ON_FATAL_ERR
|
137 INT_ON_PHYRDY_CHG
| INT_ON_SINGL_DEVICE_ERR
,
140 * Host Control Register (HControl) bitdefs
142 HCONTROL_ONLINE_PHY_RST
= (1 << 31),
143 HCONTROL_FORCE_OFFLINE
= (1 << 30),
144 HCONTROL_PARITY_PROT_MOD
= (1 << 14),
145 HCONTROL_DPATH_PARITY
= (1 << 12),
146 HCONTROL_SNOOP_ENABLE
= (1 << 10),
147 HCONTROL_PMP_ATTACHED
= (1 << 9),
148 HCONTROL_COPYOUT_STATFIS
= (1 << 8),
149 IE_ON_FATAL_ERR
= (1 << 5),
150 IE_ON_PHYRDY_CHG
= (1 << 4),
151 IE_ON_SIGNATURE_UPDATE
= (1 << 3),
152 IE_ON_SNOTIFY_UPDATE
= (1 << 2),
153 IE_ON_SINGL_DEVICE_ERR
= (1 << 1),
154 IE_ON_CMD_COMPLETE
= 1,
156 DEFAULT_PORT_IRQ_ENABLE_MASK
= IE_ON_FATAL_ERR
| IE_ON_PHYRDY_CHG
|
157 IE_ON_SIGNATURE_UPDATE
|
158 IE_ON_SINGL_DEVICE_ERR
| IE_ON_CMD_COMPLETE
,
160 EXT_INDIRECT_SEG_PRD_FLAG
= (1 << 31),
161 DATA_SNOOP_ENABLE
= (1 << 22),
165 * SATA Superset Registers
175 * Control Status Register Set
189 /* PHY (link-layer) configuration control */
191 PHY_BIST_ENABLE
= 0x01,
195 * Command Header Table entry, i.e, command slot
196 * 4 Dwords per command slot, command header size == 64 Dwords.
198 struct cmdhdr_tbl_entry
{
206 * Description information bitdefs
209 VENDOR_SPECIFIC_BIST
= (1 << 10),
210 CMD_DESC_SNOOP_ENABLE
= (1 << 9),
211 FPDMA_QUEUED_CMD
= (1 << 8),
214 ATAPI_CMD
= (1 << 5),
220 struct command_desc
{
225 u32 prdt
[SATA_FSL_MAX_PRD_DIRECT
* 4];
226 u32 prdt_indirect
[(SATA_FSL_MAX_PRD
- SATA_FSL_MAX_PRD_DIRECT
) * 4];
230 * Physical region table descriptor(PRD)
240 * ata_port private data
241 * This is our per-port instance data.
243 struct sata_fsl_port_priv
{
244 struct cmdhdr_tbl_entry
*cmdslot
;
245 dma_addr_t cmdslot_paddr
;
246 struct command_desc
*cmdentry
;
247 dma_addr_t cmdentry_paddr
;
250 * SATA FSL controller has a Status FIS which should contain the
251 * received D2H FIS & taskfile registers. This SFIS is present in
252 * the command descriptor, and to have a ready reference to it,
253 * we are caching it here, quite similar to what is done in H/W on
254 * AHCI compliant devices by copying taskfile fields to a 32-bit
258 struct ata_taskfile tf
;
262 * ata_port->host_set private data
264 struct sata_fsl_host_priv
{
265 void __iomem
*hcr_base
;
266 void __iomem
*ssr_base
;
267 void __iomem
*csr_base
;
271 static inline unsigned int sata_fsl_tag(unsigned int tag
,
272 void __iomem
*hcr_base
)
274 /* We let libATA core do actual (queue) tag allocation */
276 /* all non NCQ/queued commands should have tag#0 */
277 if (ata_tag_internal(tag
)) {
278 DPRINTK("mapping internal cmds to tag#0\n");
282 if (unlikely(tag
>= SATA_FSL_QUEUE_DEPTH
)) {
283 DPRINTK("tag %d invalid : out of range\n", tag
);
287 if (unlikely((ioread32(hcr_base
+ CQ
)) & (1 << tag
))) {
288 DPRINTK("tag %d invalid : in use!!\n", tag
);
295 static void sata_fsl_setup_cmd_hdr_entry(struct sata_fsl_port_priv
*pp
,
296 unsigned int tag
, u32 desc_info
,
297 u32 data_xfer_len
, u8 num_prde
,
300 dma_addr_t cmd_descriptor_address
;
302 cmd_descriptor_address
= pp
->cmdentry_paddr
+
303 tag
* SATA_FSL_CMD_DESC_SIZE
;
305 /* NOTE: both data_xfer_len & fis_len are Dword counts */
307 pp
->cmdslot
[tag
].cda
= cpu_to_le32(cmd_descriptor_address
);
308 pp
->cmdslot
[tag
].prde_fis_len
=
309 cpu_to_le32((num_prde
<< 16) | (fis_len
<< 2));
310 pp
->cmdslot
[tag
].ttl
= cpu_to_le32(data_xfer_len
& ~0x03);
311 pp
->cmdslot
[tag
].desc_info
= cpu_to_le32(desc_info
| (tag
& 0x1F));
313 VPRINTK("cda=0x%x, prde_fis_len=0x%x, ttl=0x%x, di=0x%x\n",
314 pp
->cmdslot
[tag
].cda
,
315 pp
->cmdslot
[tag
].prde_fis_len
,
316 pp
->cmdslot
[tag
].ttl
, pp
->cmdslot
[tag
].desc_info
);
320 static unsigned int sata_fsl_fill_sg(struct ata_queued_cmd
*qc
, void *cmd_desc
,
321 u32
*ttl
, dma_addr_t cmd_desc_paddr
)
323 struct scatterlist
*sg
;
324 unsigned int num_prde
= 0;
328 * NOTE : direct & indirect prdt's are contigiously allocated
330 struct prde
*prd
= (struct prde
*)&((struct command_desc
*)
333 struct prde
*prd_ptr_to_indirect_ext
= NULL
;
334 unsigned indirect_ext_segment_sz
= 0;
335 dma_addr_t indirect_ext_segment_paddr
;
338 VPRINTK("SATA FSL : cd = 0x%p, prd = 0x%p\n", cmd_desc
, prd
);
340 indirect_ext_segment_paddr
= cmd_desc_paddr
+
341 SATA_FSL_CMD_DESC_OFFSET_TO_PRDT
+ SATA_FSL_MAX_PRD_DIRECT
* 16;
343 for_each_sg(qc
->sg
, sg
, qc
->n_elem
, si
) {
344 dma_addr_t sg_addr
= sg_dma_address(sg
);
345 u32 sg_len
= sg_dma_len(sg
);
347 VPRINTK("SATA FSL : fill_sg, sg_addr = 0x%x, sg_len = %d\n",
350 /* warn if each s/g element is not dword aligned */
352 ata_port_printk(qc
->ap
, KERN_ERR
,
353 "s/g addr unaligned : 0x%x\n", sg_addr
);
355 ata_port_printk(qc
->ap
, KERN_ERR
,
356 "s/g len unaligned : 0x%x\n", sg_len
);
358 if (num_prde
== (SATA_FSL_MAX_PRD_DIRECT
- 1) &&
359 sg_next(sg
) != NULL
) {
360 VPRINTK("setting indirect prde\n");
361 prd_ptr_to_indirect_ext
= prd
;
362 prd
->dba
= cpu_to_le32(indirect_ext_segment_paddr
);
363 indirect_ext_segment_sz
= 0;
368 ttl_dwords
+= sg_len
;
369 prd
->dba
= cpu_to_le32(sg_addr
);
371 cpu_to_le32(DATA_SNOOP_ENABLE
| (sg_len
& ~0x03));
373 VPRINTK("sg_fill, ttl=%d, dba=0x%x, ddc=0x%x\n",
374 ttl_dwords
, prd
->dba
, prd
->ddc_and_ext
);
378 if (prd_ptr_to_indirect_ext
)
379 indirect_ext_segment_sz
+= sg_len
;
382 if (prd_ptr_to_indirect_ext
) {
383 /* set indirect extension flag along with indirect ext. size */
384 prd_ptr_to_indirect_ext
->ddc_and_ext
=
385 cpu_to_le32((EXT_INDIRECT_SEG_PRD_FLAG
|
387 (indirect_ext_segment_sz
& ~0x03)));
394 static void sata_fsl_qc_prep(struct ata_queued_cmd
*qc
)
396 struct ata_port
*ap
= qc
->ap
;
397 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
398 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
399 void __iomem
*hcr_base
= host_priv
->hcr_base
;
400 unsigned int tag
= sata_fsl_tag(qc
->tag
, hcr_base
);
401 struct command_desc
*cd
;
402 u32 desc_info
= CMD_DESC_SNOOP_ENABLE
;
407 cd
= (struct command_desc
*)pp
->cmdentry
+ tag
;
408 cd_paddr
= pp
->cmdentry_paddr
+ tag
* SATA_FSL_CMD_DESC_SIZE
;
410 ata_tf_to_fis(&qc
->tf
, 0, 1, (u8
*) &cd
->cfis
);
412 VPRINTK("Dumping cfis : 0x%x, 0x%x, 0x%x\n",
413 cd
->cfis
[0], cd
->cfis
[1], cd
->cfis
[2]);
415 if (qc
->tf
.protocol
== ATA_PROT_NCQ
) {
416 VPRINTK("FPDMA xfer,Sctor cnt[0:7],[8:15] = %d,%d\n",
417 cd
->cfis
[3], cd
->cfis
[11]);
420 /* setup "ACMD - atapi command" in cmd. desc. if this is ATAPI cmd */
421 if (ata_is_atapi(qc
->tf
.protocol
)) {
422 desc_info
|= ATAPI_CMD
;
423 memset((void *)&cd
->acmd
, 0, 32);
424 memcpy((void *)&cd
->acmd
, qc
->cdb
, qc
->dev
->cdb_len
);
427 if (qc
->flags
& ATA_QCFLAG_DMAMAP
)
428 num_prde
= sata_fsl_fill_sg(qc
, (void *)cd
,
429 &ttl_dwords
, cd_paddr
);
431 if (qc
->tf
.protocol
== ATA_PROT_NCQ
)
432 desc_info
|= FPDMA_QUEUED_CMD
;
434 sata_fsl_setup_cmd_hdr_entry(pp
, tag
, desc_info
, ttl_dwords
,
437 VPRINTK("SATA FSL : xx_qc_prep, di = 0x%x, ttl = %d, num_prde = %d\n",
438 desc_info
, ttl_dwords
, num_prde
);
441 static unsigned int sata_fsl_qc_issue(struct ata_queued_cmd
*qc
)
443 struct ata_port
*ap
= qc
->ap
;
444 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
445 void __iomem
*hcr_base
= host_priv
->hcr_base
;
446 unsigned int tag
= sata_fsl_tag(qc
->tag
, hcr_base
);
448 VPRINTK("xx_qc_issue called,CQ=0x%x,CA=0x%x,CE=0x%x,CC=0x%x\n",
449 ioread32(CQ
+ hcr_base
),
450 ioread32(CA
+ hcr_base
),
451 ioread32(CE
+ hcr_base
), ioread32(CC
+ hcr_base
));
453 /* Simply queue command to the controller/device */
454 iowrite32(1 << tag
, CQ
+ hcr_base
);
456 VPRINTK("xx_qc_issue called, tag=%d, CQ=0x%x, CA=0x%x\n",
457 tag
, ioread32(CQ
+ hcr_base
), ioread32(CA
+ hcr_base
));
459 VPRINTK("CE=0x%x, DE=0x%x, CC=0x%x, CmdStat = 0x%x\n",
460 ioread32(CE
+ hcr_base
),
461 ioread32(DE
+ hcr_base
),
462 ioread32(CC
+ hcr_base
),
463 ioread32(COMMANDSTAT
+ host_priv
->csr_base
));
468 static int sata_fsl_scr_write(struct ata_port
*ap
, unsigned int sc_reg_in
,
471 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
472 void __iomem
*ssr_base
= host_priv
->ssr_base
;
486 VPRINTK("xx_scr_write, reg_in = %d\n", sc_reg
);
488 iowrite32(val
, ssr_base
+ (sc_reg
* 4));
492 static int sata_fsl_scr_read(struct ata_port
*ap
, unsigned int sc_reg_in
,
495 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
496 void __iomem
*ssr_base
= host_priv
->ssr_base
;
510 VPRINTK("xx_scr_read, reg_in = %d\n", sc_reg
);
512 *val
= ioread32(ssr_base
+ (sc_reg
* 4));
516 static void sata_fsl_freeze(struct ata_port
*ap
)
518 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
519 void __iomem
*hcr_base
= host_priv
->hcr_base
;
522 VPRINTK("xx_freeze, CQ=0x%x, CA=0x%x, CE=0x%x, DE=0x%x\n",
523 ioread32(CQ
+ hcr_base
),
524 ioread32(CA
+ hcr_base
),
525 ioread32(CE
+ hcr_base
), ioread32(DE
+ hcr_base
));
526 VPRINTK("CmdStat = 0x%x\n",
527 ioread32(host_priv
->csr_base
+ COMMANDSTAT
));
529 /* disable interrupts on the controller/port */
530 temp
= ioread32(hcr_base
+ HCONTROL
);
531 iowrite32((temp
& ~0x3F), hcr_base
+ HCONTROL
);
533 VPRINTK("in xx_freeze : HControl = 0x%x, HStatus = 0x%x\n",
534 ioread32(hcr_base
+ HCONTROL
), ioread32(hcr_base
+ HSTATUS
));
537 static void sata_fsl_thaw(struct ata_port
*ap
)
539 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
540 void __iomem
*hcr_base
= host_priv
->hcr_base
;
543 /* ack. any pending IRQs for this controller/port */
544 temp
= ioread32(hcr_base
+ HSTATUS
);
546 VPRINTK("xx_thaw, pending IRQs = 0x%x\n", (temp
& 0x3F));
549 iowrite32((temp
& 0x3F), hcr_base
+ HSTATUS
);
551 /* enable interrupts on the controller/port */
552 temp
= ioread32(hcr_base
+ HCONTROL
);
553 iowrite32((temp
| DEFAULT_PORT_IRQ_ENABLE_MASK
), hcr_base
+ HCONTROL
);
555 VPRINTK("xx_thaw : HControl = 0x%x, HStatus = 0x%x\n",
556 ioread32(hcr_base
+ HCONTROL
), ioread32(hcr_base
+ HSTATUS
));
560 * NOTE : 1st D2H FIS from device does not update sfis in command descriptor.
562 static inline void sata_fsl_cache_taskfile_from_d2h_fis(struct ata_queued_cmd
566 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
567 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
568 void __iomem
*hcr_base
= host_priv
->hcr_base
;
569 unsigned int tag
= sata_fsl_tag(qc
->tag
, hcr_base
);
570 struct command_desc
*cd
;
572 cd
= pp
->cmdentry
+ tag
;
574 ata_tf_from_fis(cd
->sfis
, &pp
->tf
);
577 static u8
sata_fsl_check_status(struct ata_port
*ap
)
579 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
581 return pp
->tf
.command
;
584 static void sata_fsl_tf_read(struct ata_port
*ap
, struct ata_taskfile
*tf
)
586 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
591 static int sata_fsl_port_start(struct ata_port
*ap
)
593 struct device
*dev
= ap
->host
->dev
;
594 struct sata_fsl_port_priv
*pp
;
598 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
599 void __iomem
*hcr_base
= host_priv
->hcr_base
;
602 pp
= kzalloc(sizeof(*pp
), GFP_KERNEL
);
606 mem
= dma_alloc_coherent(dev
, SATA_FSL_PORT_PRIV_DMA_SZ
, &mem_dma
,
612 memset(mem
, 0, SATA_FSL_PORT_PRIV_DMA_SZ
);
615 pp
->cmdslot_paddr
= mem_dma
;
617 mem
+= SATA_FSL_CMD_SLOT_SIZE
;
618 mem_dma
+= SATA_FSL_CMD_SLOT_SIZE
;
621 pp
->cmdentry_paddr
= mem_dma
;
623 ap
->private_data
= pp
;
625 VPRINTK("CHBA = 0x%x, cmdentry_phys = 0x%x\n",
626 pp
->cmdslot_paddr
, pp
->cmdentry_paddr
);
628 /* Now, update the CHBA register in host controller cmd register set */
629 iowrite32(pp
->cmdslot_paddr
& 0xffffffff, hcr_base
+ CHBA
);
632 * Now, we can bring the controller on-line & also initiate
633 * the COMINIT sequence, we simply return here and the boot-probing
634 * & device discovery process is re-initiated by libATA using a
635 * Softreset EH (dummy) session. Hence, boot probing and device
636 * discovey will be part of sata_fsl_softreset() callback.
639 temp
= ioread32(hcr_base
+ HCONTROL
);
640 iowrite32((temp
| HCONTROL_ONLINE_PHY_RST
), hcr_base
+ HCONTROL
);
642 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
643 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
644 VPRINTK("CHBA = 0x%x\n", ioread32(hcr_base
+ CHBA
));
646 #ifdef CONFIG_MPC8315_DS
648 * Workaround for 8315DS board 3gbps link-up issue,
649 * currently limit SATA port to GEN1 speed
651 sata_fsl_scr_read(ap
, SCR_CONTROL
, &temp
);
654 sata_fsl_scr_write(ap
, SCR_CONTROL
, temp
);
656 sata_fsl_scr_read(ap
, SCR_CONTROL
, &temp
);
657 dev_printk(KERN_WARNING
, dev
, "scr_control, speed limited to %x\n",
664 static void sata_fsl_port_stop(struct ata_port
*ap
)
666 struct device
*dev
= ap
->host
->dev
;
667 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
668 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
669 void __iomem
*hcr_base
= host_priv
->hcr_base
;
673 * Force host controller to go off-line, aborting current operations
675 temp
= ioread32(hcr_base
+ HCONTROL
);
676 temp
&= ~HCONTROL_ONLINE_PHY_RST
;
677 temp
|= HCONTROL_FORCE_OFFLINE
;
678 iowrite32(temp
, hcr_base
+ HCONTROL
);
680 /* Poll for controller to go offline - should happen immediately */
681 ata_wait_register(hcr_base
+ HSTATUS
, ONLINE
, ONLINE
, 1, 1);
683 ap
->private_data
= NULL
;
684 dma_free_coherent(dev
, SATA_FSL_PORT_PRIV_DMA_SZ
,
685 pp
->cmdslot
, pp
->cmdslot_paddr
);
690 static unsigned int sata_fsl_dev_classify(struct ata_port
*ap
)
692 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
693 void __iomem
*hcr_base
= host_priv
->hcr_base
;
694 struct ata_taskfile tf
;
697 temp
= ioread32(hcr_base
+ SIGNATURE
);
699 VPRINTK("raw sig = 0x%x\n", temp
);
700 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
701 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
703 tf
.lbah
= (temp
>> 24) & 0xff;
704 tf
.lbam
= (temp
>> 16) & 0xff;
705 tf
.lbal
= (temp
>> 8) & 0xff;
706 tf
.nsect
= temp
& 0xff;
708 return ata_dev_classify(&tf
);
711 static int sata_fsl_softreset(struct ata_link
*link
, unsigned int *class,
712 unsigned long deadline
)
714 struct ata_port
*ap
= link
->ap
;
715 struct sata_fsl_port_priv
*pp
= ap
->private_data
;
716 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
717 void __iomem
*hcr_base
= host_priv
->hcr_base
;
719 struct ata_taskfile tf
;
723 unsigned long start_jiffies
;
725 DPRINTK("in xx_softreset\n");
729 * Force host controller to go off-line, aborting current operations
731 temp
= ioread32(hcr_base
+ HCONTROL
);
732 temp
&= ~HCONTROL_ONLINE_PHY_RST
;
733 iowrite32(temp
, hcr_base
+ HCONTROL
);
735 /* Poll for controller to go offline */
736 temp
= ata_wait_register(hcr_base
+ HSTATUS
, ONLINE
, ONLINE
, 1, 500);
739 ata_port_printk(ap
, KERN_ERR
,
740 "Softreset failed, not off-lined %d\n", i
);
743 * Try to offline controller atleast twice
749 goto try_offline_again
;
752 DPRINTK("softreset, controller off-lined\n");
753 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
754 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
757 * PHY reset should remain asserted for atleast 1ms
762 * Now, bring the host controller online again, this can take time
763 * as PHY reset and communication establishment, 1st D2H FIS and
764 * device signature update is done, on safe side assume 500ms
765 * NOTE : Host online status may be indicated immediately!!
768 temp
= ioread32(hcr_base
+ HCONTROL
);
769 temp
|= (HCONTROL_ONLINE_PHY_RST
| HCONTROL_SNOOP_ENABLE
);
770 iowrite32(temp
, hcr_base
+ HCONTROL
);
772 temp
= ata_wait_register(hcr_base
+ HSTATUS
, ONLINE
, 0, 1, 500);
774 if (!(temp
& ONLINE
)) {
775 ata_port_printk(ap
, KERN_ERR
,
776 "Softreset failed, not on-lined\n");
780 DPRINTK("softreset, controller off-lined & on-lined\n");
781 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
782 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
785 * First, wait for the PHYRDY change to occur before waiting for
786 * the signature, and also verify if SStatus indicates device
790 temp
= ata_wait_register(hcr_base
+ HSTATUS
, 0xFF, 0, 1, 500);
791 if ((!(temp
& 0x10)) || ata_link_offline(link
)) {
792 ata_port_printk(ap
, KERN_WARNING
,
793 "No Device OR PHYRDY change,Hstatus = 0x%x\n",
794 ioread32(hcr_base
+ HSTATUS
));
799 * Wait for the first D2H from device,i.e,signature update notification
801 start_jiffies
= jiffies
;
802 temp
= ata_wait_register(hcr_base
+ HSTATUS
, 0xFF, 0x10,
803 500, jiffies_to_msecs(deadline
- start_jiffies
));
805 if ((temp
& 0xFF) != 0x18) {
806 ata_port_printk(ap
, KERN_WARNING
, "No Signature Update\n");
809 ata_port_printk(ap
, KERN_INFO
,
810 "Signature Update detected @ %d msecs\n",
811 jiffies_to_msecs(jiffies
- start_jiffies
));
815 * Send a device reset (SRST) explicitly on command slot #0
816 * Check : will the command queue (reg) be cleared during offlining ??
817 * Also we will be online only if Phy commn. has been established
818 * and device presence has been detected, therefore if we have
819 * reached here, we can send a command to the target device
822 DPRINTK("Sending SRST/device reset\n");
824 ata_tf_init(link
->device
, &tf
);
825 cfis
= (u8
*) &pp
->cmdentry
->cfis
;
827 /* device reset/SRST is a control register update FIS, uses tag0 */
828 sata_fsl_setup_cmd_hdr_entry(pp
, 0,
829 SRST_CMD
| CMD_DESC_SNOOP_ENABLE
, 0, 0, 5);
831 tf
.ctl
|= ATA_SRST
; /* setup SRST bit in taskfile control reg */
832 ata_tf_to_fis(&tf
, 0, 0, cfis
);
834 DPRINTK("Dumping cfis : 0x%x, 0x%x, 0x%x, 0x%x\n",
835 cfis
[0], cfis
[1], cfis
[2], cfis
[3]);
838 * Queue SRST command to the controller/device, ensure that no
839 * other commands are active on the controller/device
842 DPRINTK("@Softreset, CQ = 0x%x, CA = 0x%x, CC = 0x%x\n",
843 ioread32(CQ
+ hcr_base
),
844 ioread32(CA
+ hcr_base
), ioread32(CC
+ hcr_base
));
846 iowrite32(0xFFFF, CC
+ hcr_base
);
847 iowrite32(1, CQ
+ hcr_base
);
849 temp
= ata_wait_register(CQ
+ hcr_base
, 0x1, 0x1, 1, 5000);
851 ata_port_printk(ap
, KERN_WARNING
, "ATA_SRST issue failed\n");
853 DPRINTK("Softreset@5000,CQ=0x%x,CA=0x%x,CC=0x%x\n",
854 ioread32(CQ
+ hcr_base
),
855 ioread32(CA
+ hcr_base
), ioread32(CC
+ hcr_base
));
857 sata_fsl_scr_read(ap
, SCR_ERROR
, &Serror
);
859 DPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
860 DPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
861 DPRINTK("Serror = 0x%x\n", Serror
);
868 * SATA device enters reset state after receving a Control register
869 * FIS with SRST bit asserted and it awaits another H2D Control reg.
870 * FIS with SRST bit cleared, then the device does internal diags &
871 * initialization, followed by indicating it's initialization status
872 * using ATA signature D2H register FIS to the host controller.
875 sata_fsl_setup_cmd_hdr_entry(pp
, 0, CMD_DESC_SNOOP_ENABLE
, 0, 0, 5);
877 tf
.ctl
&= ~ATA_SRST
; /* 2nd H2D Ctl. register FIS */
878 ata_tf_to_fis(&tf
, 0, 0, cfis
);
880 iowrite32(1, CQ
+ hcr_base
);
881 msleep(150); /* ?? */
884 * The above command would have signalled an interrupt on command
885 * complete, which needs special handling, by clearing the Nth
886 * command bit of the CCreg
888 iowrite32(0x01, CC
+ hcr_base
); /* We know it will be cmd#0 always */
890 DPRINTK("SATA FSL : Now checking device signature\n");
892 *class = ATA_DEV_NONE
;
894 /* Verify if SStatus indicates device presence */
895 if (ata_link_online(link
)) {
897 * if we are here, device presence has been detected,
898 * 1st D2H FIS would have been received, but sfis in
899 * command desc. is not updated, but signature register
900 * would have been updated
903 *class = sata_fsl_dev_classify(ap
);
905 DPRINTK("class = %d\n", *class);
906 VPRINTK("ccreg = 0x%x\n", ioread32(hcr_base
+ CC
));
907 VPRINTK("cereg = 0x%x\n", ioread32(hcr_base
+ CE
));
916 static void sata_fsl_error_handler(struct ata_port
*ap
)
919 DPRINTK("in xx_error_handler\n");
921 /* perform recovery */
922 ata_do_eh(ap
, ata_std_prereset
, sata_fsl_softreset
, sata_std_hardreset
,
926 static void sata_fsl_post_internal_cmd(struct ata_queued_cmd
*qc
)
928 if (qc
->flags
& ATA_QCFLAG_FAILED
)
929 qc
->err_mask
|= AC_ERR_OTHER
;
932 /* make DMA engine forget about the failed command */
937 static void sata_fsl_irq_clear(struct ata_port
*ap
)
942 static void sata_fsl_error_intr(struct ata_port
*ap
)
944 struct ata_link
*link
= &ap
->link
;
945 struct ata_eh_info
*ehi
= &link
->eh_info
;
946 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
947 void __iomem
*hcr_base
= host_priv
->hcr_base
;
948 u32 hstatus
, dereg
, cereg
= 0, SError
= 0;
949 unsigned int err_mask
= 0, action
= 0;
950 struct ata_queued_cmd
*qc
;
953 hstatus
= ioread32(hcr_base
+ HSTATUS
);
954 cereg
= ioread32(hcr_base
+ CE
);
956 ata_ehi_clear_desc(ehi
);
959 * Handle & Clear SError
962 sata_fsl_scr_read(ap
, SCR_ERROR
, &SError
);
963 if (unlikely(SError
& 0xFFFF0000)) {
964 sata_fsl_scr_write(ap
, SCR_ERROR
, SError
);
965 err_mask
|= AC_ERR_ATA_BUS
;
968 DPRINTK("error_intr,hStat=0x%x,CE=0x%x,DE =0x%x,SErr=0x%x\n",
969 hstatus
, cereg
, ioread32(hcr_base
+ DE
), SError
);
971 /* handle single device errors */
974 * clear the command error, also clears queue to the device
975 * in error, and we can (re)issue commands to this device.
976 * When a device is in error all commands queued into the
977 * host controller and at the device are considered aborted
978 * and the queue for that device is stopped. Now, after
979 * clearing the device error, we can issue commands to the
980 * device to interrogate it to find the source of the error.
982 dereg
= ioread32(hcr_base
+ DE
);
983 iowrite32(dereg
, hcr_base
+ DE
);
984 iowrite32(cereg
, hcr_base
+ CE
);
986 DPRINTK("single device error, CE=0x%x, DE=0x%x\n",
987 ioread32(hcr_base
+ CE
), ioread32(hcr_base
+ DE
));
989 * We should consider this as non fatal error, and TF must
990 * be updated as done below.
993 err_mask
|= AC_ERR_DEV
;
996 /* handle fatal errors */
997 if (hstatus
& FATAL_ERROR_DECODE
) {
998 err_mask
|= AC_ERR_ATA_BUS
;
999 action
|= ATA_EH_SOFTRESET
;
1000 /* how will fatal error interrupts be completed ?? */
1004 /* Handle PHYRDY change notification */
1005 if (hstatus
& INT_ON_PHYRDY_CHG
) {
1006 DPRINTK("SATA FSL: PHYRDY change indication\n");
1008 /* Setup a soft-reset EH action */
1009 ata_ehi_hotplugged(ehi
);
1013 /* record error info */
1014 qc
= ata_qc_from_tag(ap
, link
->active_tag
);
1017 sata_fsl_cache_taskfile_from_d2h_fis(qc
, qc
->ap
);
1018 qc
->err_mask
|= err_mask
;
1020 ehi
->err_mask
|= err_mask
;
1022 ehi
->action
|= action
;
1023 ehi
->serror
|= SError
;
1025 /* freeze or abort */
1027 ata_port_freeze(ap
);
1032 static void sata_fsl_qc_complete(struct ata_queued_cmd
*qc
)
1034 if (qc
->flags
& ATA_QCFLAG_RESULT_TF
) {
1035 DPRINTK("xx_qc_complete called\n");
1036 sata_fsl_cache_taskfile_from_d2h_fis(qc
, qc
->ap
);
1040 static void sata_fsl_host_intr(struct ata_port
*ap
)
1042 struct ata_link
*link
= &ap
->link
;
1043 struct sata_fsl_host_priv
*host_priv
= ap
->host
->private_data
;
1044 void __iomem
*hcr_base
= host_priv
->hcr_base
;
1045 u32 hstatus
, qc_active
= 0;
1046 struct ata_queued_cmd
*qc
;
1049 hstatus
= ioread32(hcr_base
+ HSTATUS
);
1051 sata_fsl_scr_read(ap
, SCR_ERROR
, &SError
);
1053 if (unlikely(SError
& 0xFFFF0000)) {
1054 DPRINTK("serror @host_intr : 0x%x\n", SError
);
1055 sata_fsl_error_intr(ap
);
1059 if (unlikely(hstatus
& INT_ON_ERROR
)) {
1060 DPRINTK("error interrupt!!\n");
1061 sata_fsl_error_intr(ap
);
1065 if (link
->sactive
) { /* only true for NCQ commands */
1067 /* Read command completed register */
1068 qc_active
= ioread32(hcr_base
+ CC
);
1069 /* clear CC bit, this will also complete the interrupt */
1070 iowrite32(qc_active
, hcr_base
+ CC
);
1072 DPRINTK("Status of all queues :\n");
1073 DPRINTK("qc_active/CC = 0x%x, CA = 0x%x, CE=0x%x\n",
1074 qc_active
, ioread32(hcr_base
+ CA
),
1075 ioread32(hcr_base
+ CE
));
1077 for (i
= 0; i
< SATA_FSL_QUEUE_DEPTH
; i
++) {
1078 if (qc_active
& (1 << i
)) {
1079 qc
= ata_qc_from_tag(ap
, i
);
1081 sata_fsl_qc_complete(qc
);
1082 ata_qc_complete(qc
);
1085 ("completing ncq cmd,tag=%d,CC=0x%x,CA=0x%x\n",
1086 i
, ioread32(hcr_base
+ CC
),
1087 ioread32(hcr_base
+ CA
));
1092 } else if (ap
->qc_active
) {
1093 iowrite32(1, hcr_base
+ CC
);
1094 qc
= ata_qc_from_tag(ap
, link
->active_tag
);
1096 DPRINTK("completing non-ncq cmd, tag=%d,CC=0x%x\n",
1097 link
->active_tag
, ioread32(hcr_base
+ CC
));
1100 sata_fsl_qc_complete(qc
);
1101 ata_qc_complete(qc
);
1104 /* Spurious Interrupt!! */
1105 DPRINTK("spurious interrupt!!, CC = 0x%x\n",
1106 ioread32(hcr_base
+ CC
));
1111 static irqreturn_t
sata_fsl_interrupt(int irq
, void *dev_instance
)
1113 struct ata_host
*host
= dev_instance
;
1114 struct sata_fsl_host_priv
*host_priv
= host
->private_data
;
1115 void __iomem
*hcr_base
= host_priv
->hcr_base
;
1116 u32 interrupt_enables
;
1117 unsigned handled
= 0;
1118 struct ata_port
*ap
;
1120 /* ack. any pending IRQs for this controller/port */
1121 interrupt_enables
= ioread32(hcr_base
+ HSTATUS
);
1122 interrupt_enables
&= 0x3F;
1124 DPRINTK("interrupt status 0x%x\n", interrupt_enables
);
1126 if (!interrupt_enables
)
1129 spin_lock(&host
->lock
);
1131 /* Assuming one port per host controller */
1133 ap
= host
->ports
[0];
1135 sata_fsl_host_intr(ap
);
1137 dev_printk(KERN_WARNING
, host
->dev
,
1138 "interrupt on disabled port 0\n");
1141 iowrite32(interrupt_enables
, hcr_base
+ HSTATUS
);
1144 spin_unlock(&host
->lock
);
1146 return IRQ_RETVAL(handled
);
1150 * Multiple ports are represented by multiple SATA controllers with
1151 * one port per controller
1153 static int sata_fsl_init_controller(struct ata_host
*host
)
1155 struct sata_fsl_host_priv
*host_priv
= host
->private_data
;
1156 void __iomem
*hcr_base
= host_priv
->hcr_base
;
1160 * NOTE : We cannot bring the controller online before setting
1161 * the CHBA, hence main controller initialization is done as
1162 * part of the port_start() callback
1165 /* ack. any pending IRQs for this controller/port */
1166 temp
= ioread32(hcr_base
+ HSTATUS
);
1168 iowrite32((temp
& 0x3F), hcr_base
+ HSTATUS
);
1170 /* Keep interrupts disabled on the controller */
1171 temp
= ioread32(hcr_base
+ HCONTROL
);
1172 iowrite32((temp
& ~0x3F), hcr_base
+ HCONTROL
);
1174 /* Disable interrupt coalescing control(icc), for the moment */
1175 DPRINTK("icc = 0x%x\n", ioread32(hcr_base
+ ICC
));
1176 iowrite32(0x01000000, hcr_base
+ ICC
);
1178 /* clear error registers, SError is cleared by libATA */
1179 iowrite32(0x00000FFFF, hcr_base
+ CE
);
1180 iowrite32(0x00000FFFF, hcr_base
+ DE
);
1182 /* initially assuming no Port multiplier, set CQPMP to 0 */
1183 iowrite32(0x0, hcr_base
+ CQPMP
);
1186 * host controller will be brought on-line, during xx_port_start()
1187 * callback, that should also initiate the OOB, COMINIT sequence
1190 DPRINTK("HStatus = 0x%x\n", ioread32(hcr_base
+ HSTATUS
));
1191 DPRINTK("HControl = 0x%x\n", ioread32(hcr_base
+ HCONTROL
));
1197 * scsi mid-layer and libata interface structures
1199 static struct scsi_host_template sata_fsl_sht
= {
1200 .module
= THIS_MODULE
,
1202 .ioctl
= ata_scsi_ioctl
,
1203 .queuecommand
= ata_scsi_queuecmd
,
1204 .change_queue_depth
= ata_scsi_change_queue_depth
,
1205 .can_queue
= SATA_FSL_QUEUE_DEPTH
,
1206 .this_id
= ATA_SHT_THIS_ID
,
1207 .sg_tablesize
= SATA_FSL_MAX_PRD_USABLE
,
1208 .cmd_per_lun
= ATA_SHT_CMD_PER_LUN
,
1209 .emulated
= ATA_SHT_EMULATED
,
1210 .use_clustering
= ATA_SHT_USE_CLUSTERING
,
1211 .proc_name
= "sata_fsl",
1212 .dma_boundary
= ATA_DMA_BOUNDARY
,
1213 .slave_configure
= ata_scsi_slave_config
,
1214 .slave_destroy
= ata_scsi_slave_destroy
,
1215 .bios_param
= ata_std_bios_param
,
1218 static const struct ata_port_operations sata_fsl_ops
= {
1219 .check_status
= sata_fsl_check_status
,
1220 .check_altstatus
= sata_fsl_check_status
,
1221 .dev_select
= ata_noop_dev_select
,
1223 .tf_read
= sata_fsl_tf_read
,
1225 .qc_prep
= sata_fsl_qc_prep
,
1226 .qc_issue
= sata_fsl_qc_issue
,
1227 .irq_clear
= sata_fsl_irq_clear
,
1229 .scr_read
= sata_fsl_scr_read
,
1230 .scr_write
= sata_fsl_scr_write
,
1232 .freeze
= sata_fsl_freeze
,
1233 .thaw
= sata_fsl_thaw
,
1234 .error_handler
= sata_fsl_error_handler
,
1235 .post_internal_cmd
= sata_fsl_post_internal_cmd
,
1237 .port_start
= sata_fsl_port_start
,
1238 .port_stop
= sata_fsl_port_stop
,
1241 static const struct ata_port_info sata_fsl_port_info
[] = {
1243 .flags
= SATA_FSL_HOST_FLAGS
,
1244 .link_flags
= SATA_FSL_HOST_LFLAGS
,
1245 .pio_mask
= 0x1f, /* pio 0-4 */
1246 .udma_mask
= 0x7f, /* udma 0-6 */
1247 .port_ops
= &sata_fsl_ops
,
1251 static int sata_fsl_probe(struct of_device
*ofdev
,
1252 const struct of_device_id
*match
)
1255 void __iomem
*hcr_base
= NULL
;
1256 void __iomem
*ssr_base
= NULL
;
1257 void __iomem
*csr_base
= NULL
;
1258 struct sata_fsl_host_priv
*host_priv
= NULL
;
1261 struct ata_host
*host
;
1263 struct ata_port_info pi
= sata_fsl_port_info
[0];
1264 const struct ata_port_info
*ppi
[] = { &pi
, NULL
};
1266 dev_printk(KERN_INFO
, &ofdev
->dev
,
1267 "Sata FSL Platform/CSB Driver init\n");
1269 r
= kmalloc(sizeof(struct resource
), GFP_KERNEL
);
1271 hcr_base
= of_iomap(ofdev
->node
, 0);
1273 goto error_exit_with_cleanup
;
1275 ssr_base
= hcr_base
+ 0x100;
1276 csr_base
= hcr_base
+ 0x140;
1278 DPRINTK("@reset i/o = 0x%x\n", ioread32(csr_base
+ TRANSCFG
));
1279 DPRINTK("sizeof(cmd_desc) = %d\n", sizeof(struct command_desc
));
1280 DPRINTK("sizeof(#define cmd_desc) = %d\n", SATA_FSL_CMD_DESC_SIZE
);
1282 host_priv
= kzalloc(sizeof(struct sata_fsl_host_priv
), GFP_KERNEL
);
1284 goto error_exit_with_cleanup
;
1286 host_priv
->hcr_base
= hcr_base
;
1287 host_priv
->ssr_base
= ssr_base
;
1288 host_priv
->csr_base
= csr_base
;
1290 irq
= irq_of_parse_and_map(ofdev
->node
, 0);
1292 dev_printk(KERN_ERR
, &ofdev
->dev
, "invalid irq from platform\n");
1293 goto error_exit_with_cleanup
;
1295 host_priv
->irq
= irq
;
1297 /* allocate host structure */
1298 host
= ata_host_alloc_pinfo(&ofdev
->dev
, ppi
, SATA_FSL_MAX_PORTS
);
1300 /* host->iomap is not used currently */
1301 host
->private_data
= host_priv
;
1305 host
->ports
[0]->ioaddr
.cmd_addr
= host_priv
->hcr_base
;
1306 host
->ports
[0]->ioaddr
.scr_addr
= host_priv
->ssr_base
;
1308 /* initialize host controller */
1309 sata_fsl_init_controller(host
);
1312 * Now, register with libATA core, this will also initiate the
1313 * device discovery process, invoking our port_start() handler &
1314 * error_handler() to execute a dummy Softreset EH session
1316 ata_host_activate(host
, irq
, sata_fsl_interrupt
, SATA_FSL_IRQ_FLAG
,
1319 dev_set_drvdata(&ofdev
->dev
, host
);
1323 error_exit_with_cleanup
:
1333 static int sata_fsl_remove(struct of_device
*ofdev
)
1335 struct ata_host
*host
= dev_get_drvdata(&ofdev
->dev
);
1336 struct sata_fsl_host_priv
*host_priv
= host
->private_data
;
1338 ata_host_detach(host
);
1340 dev_set_drvdata(&ofdev
->dev
, NULL
);
1342 irq_dispose_mapping(host_priv
->irq
);
1343 iounmap(host_priv
->hcr_base
);
1349 static struct of_device_id fsl_sata_match
[] = {
1351 .compatible
= "fsl,mpc8315-sata",
1354 .compatible
= "fsl,mpc8379-sata",
1359 MODULE_DEVICE_TABLE(of
, fsl_sata_match
);
1361 static struct of_platform_driver fsl_sata_driver
= {
1363 .match_table
= fsl_sata_match
,
1364 .probe
= sata_fsl_probe
,
1365 .remove
= sata_fsl_remove
,
1368 static int __init
sata_fsl_init(void)
1370 of_register_platform_driver(&fsl_sata_driver
);
1374 static void __exit
sata_fsl_exit(void)
1376 of_unregister_platform_driver(&fsl_sata_driver
);
1379 MODULE_LICENSE("GPL");
1380 MODULE_AUTHOR("Ashish Kalra, Freescale Semiconductor");
1381 MODULE_DESCRIPTION("Freescale 3.0Gbps SATA controller low level driver");
1382 MODULE_VERSION("1.10");
1384 module_init(sata_fsl_init
);
1385 module_exit(sata_fsl_exit
);