blob: d041709dee1afe8bf4e7924c5d9dcb07f8b1a02e [file] [log] [blame]
Li Yangfaf0b2e2007-10-16 20:58:38 +08001/*
2 * drivers/ata/sata_fsl.c
3 *
4 * Freescale 3.0Gbps SATA device driver
5 *
6 * Author: Ashish Kalra <ashish.kalra@freescale.com>
7 * Li Yang <leoli@freescale.com>
8 *
9 * Copyright (c) 2006-2007 Freescale Semiconductor, Inc.
10 *
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.
15 *
16 */
17
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/platform_device.h>
21
22#include <scsi/scsi_host.h>
23#include <scsi/scsi_cmnd.h>
24#include <linux/libata.h>
25#include <asm/io.h>
26#include <linux/of_platform.h>
27
28/* Controller information */
29enum {
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 */
34
35 SATA_FSL_HOST_FLAGS = (ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
36 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Li Yang1bf617b2007-10-31 19:27:53 +080037 ATA_FLAG_NCQ),
38 SATA_FSL_HOST_LFLAGS = ATA_LFLAG_SKIP_D2H_BSY,
Li Yangfaf0b2e2007-10-16 20:58:38 +080039
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),
43
44 /*
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.
52 */
53
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,
58
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),
64
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),
70
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),
74
75 /*
76 * MPC8315 has two SATA controllers, SATA1 & SATA2
77 * (one port per controller)
78 * MPC837x has 2/4 controllers, one port per controller
79 */
80
81 SATA_FSL_MAX_PORTS = 1,
82
83 SATA_FSL_IRQ_FLAG = IRQF_SHARED,
84};
85
86/*
87* Host Controller command register set - per port
88*/
89enum {
90 CQ = 0,
91 CA = 8,
92 CC = 0x10,
93 CE = 0x18,
94 DE = 0x20,
95 CHBA = 0x24,
96 HSTATUS = 0x28,
97 HCONTROL = 0x2C,
98 CQPMP = 0x30,
99 SIGNATURE = 0x34,
100 ICC = 0x38,
101
102 /*
103 * Host Status Register (HStatus) bitdefs
104 */
105 ONLINE = (1 << 31),
106 GOING_OFFLINE = (1 << 30),
107 BIST_ERR = (1 << 29),
108
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),
118
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,
127
128 INT_ON_FATAL_ERR = (1 << 5),
129 INT_ON_PHYRDY_CHG = (1 << 4),
130
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,
135
136 INT_ON_ERROR = INT_ON_FATAL_ERR |
137 INT_ON_PHYRDY_CHG | INT_ON_SINGL_DEVICE_ERR,
138
139 /*
140 * Host Control Register (HControl) bitdefs
141 */
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,
155
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,
159
160 EXT_INDIRECT_SEG_PRD_FLAG = (1 << 31),
161 DATA_SNOOP_ENABLE = (1 << 22),
162};
163
164/*
165 * SATA Superset Registers
166 */
167enum {
168 SSTATUS = 0,
169 SERROR = 4,
170 SCONTROL = 8,
171 SNOTIFY = 0xC,
172};
173
174/*
175 * Control Status Register Set
176 */
177enum {
178 TRANSCFG = 0,
179 TRANSSTATUS = 4,
180 LINKCFG = 8,
181 LINKCFG1 = 0xC,
182 LINKCFG2 = 0x10,
183 LINKSTATUS = 0x14,
184 LINKSTATUS1 = 0x18,
185 PHYCTRLCFG = 0x1C,
186 COMMANDSTAT = 0x20,
187};
188
189/* PHY (link-layer) configuration control */
190enum {
191 PHY_BIST_ENABLE = 0x01,
192};
193
194/*
195 * Command Header Table entry, i.e, command slot
196 * 4 Dwords per command slot, command header size == 64 Dwords.
197 */
198struct cmdhdr_tbl_entry {
199 u32 cda;
200 u32 prde_fis_len;
201 u32 ttl;
202 u32 desc_info;
203};
204
205/*
206 * Description information bitdefs
207 */
208enum {
209 VENDOR_SPECIFIC_BIST = (1 << 10),
210 CMD_DESC_SNOOP_ENABLE = (1 << 9),
211 FPDMA_QUEUED_CMD = (1 << 8),
212 SRST_CMD = (1 << 7),
213 BIST = (1 << 6),
214 ATAPI_CMD = (1 << 5),
215};
216
217/*
218 * Command Descriptor
219 */
220struct command_desc {
221 u8 cfis[8 * 4];
222 u8 sfis[8 * 4];
223 u8 acmd[4 * 4];
224 u8 fill[4 * 4];
225 u32 prdt[SATA_FSL_MAX_PRD_DIRECT * 4];
226 u32 prdt_indirect[(SATA_FSL_MAX_PRD - SATA_FSL_MAX_PRD_DIRECT) * 4];
227};
228
229/*
230 * Physical region table descriptor(PRD)
231 */
232
233struct prde {
234 u32 dba;
235 u8 fill[2 * 4];
236 u32 ddc_and_ext;
237};
238
239/*
240 * ata_port private data
241 * This is our per-port instance data.
242 */
243struct 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;
248
249 /*
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
255 * register.
256 */
257
258 struct ata_taskfile tf;
259};
260
261/*
262 * ata_port->host_set private data
263 */
264struct sata_fsl_host_priv {
265 void __iomem *hcr_base;
266 void __iomem *ssr_base;
267 void __iomem *csr_base;
Li Yang79b3edc2007-10-31 19:27:55 +0800268 int irq;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800269};
270
271static inline unsigned int sata_fsl_tag(unsigned int tag,
Li Yang520d3a12007-10-31 19:28:01 +0800272 void __iomem *hcr_base)
Li Yangfaf0b2e2007-10-16 20:58:38 +0800273{
274 /* We let libATA core do actual (queue) tag allocation */
275
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");
279 return 0;
280 }
281
282 if (unlikely(tag >= SATA_FSL_QUEUE_DEPTH)) {
283 DPRINTK("tag %d invalid : out of range\n", tag);
284 return 0;
285 }
286
287 if (unlikely((ioread32(hcr_base + CQ)) & (1 << tag))) {
288 DPRINTK("tag %d invalid : in use!!\n", tag);
289 return 0;
290 }
291
292 return tag;
293}
294
295static 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,
298 u8 fis_len)
299{
300 dma_addr_t cmd_descriptor_address;
301
302 cmd_descriptor_address = pp->cmdentry_paddr +
303 tag * SATA_FSL_CMD_DESC_SIZE;
304
305 /* NOTE: both data_xfer_len & fis_len are Dword counts */
306
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);
Li Yang520d3a12007-10-31 19:28:01 +0800311 pp->cmdslot[tag].desc_info = cpu_to_le32(desc_info | (tag & 0x1F));
Li Yangfaf0b2e2007-10-16 20:58:38 +0800312
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);
317
318}
319
320static unsigned int sata_fsl_fill_sg(struct ata_queued_cmd *qc, void *cmd_desc,
Li Yang520d3a12007-10-31 19:28:01 +0800321 u32 *ttl, dma_addr_t cmd_desc_paddr)
Li Yangfaf0b2e2007-10-16 20:58:38 +0800322{
323 struct scatterlist *sg;
324 unsigned int num_prde = 0;
325 u32 ttl_dwords = 0;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900326 unsigned int si;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800327
328 /*
329 * NOTE : direct & indirect prdt's are contigiously allocated
330 */
331 struct prde *prd = (struct prde *)&((struct command_desc *)
332 cmd_desc)->prdt;
333
334 struct prde *prd_ptr_to_indirect_ext = NULL;
335 unsigned indirect_ext_segment_sz = 0;
336 dma_addr_t indirect_ext_segment_paddr;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900337 unsigned int si;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800338
339 VPRINTK("SATA FSL : cd = 0x%x, prd = 0x%x\n", cmd_desc, prd);
340
341 indirect_ext_segment_paddr = cmd_desc_paddr +
342 SATA_FSL_CMD_DESC_OFFSET_TO_PRDT + SATA_FSL_MAX_PRD_DIRECT * 16;
343
Tejun Heoff2aeb12007-12-05 16:43:11 +0900344 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Li Yangfaf0b2e2007-10-16 20:58:38 +0800345 dma_addr_t sg_addr = sg_dma_address(sg);
346 u32 sg_len = sg_dma_len(sg);
347
348 VPRINTK("SATA FSL : fill_sg, sg_addr = 0x%x, sg_len = %d\n",
349 sg_addr, sg_len);
350
351 /* warn if each s/g element is not dword aligned */
352 if (sg_addr & 0x03)
353 ata_port_printk(qc->ap, KERN_ERR,
354 "s/g addr unaligned : 0x%x\n", sg_addr);
355 if (sg_len & 0x03)
356 ata_port_printk(qc->ap, KERN_ERR,
357 "s/g len unaligned : 0x%x\n", sg_len);
358
359 if ((num_prde == (SATA_FSL_MAX_PRD_DIRECT - 1)) &&
Li Yanga2962dd2007-10-31 19:27:56 +0800360 (qc->n_iter + 1 != qc->n_elem)) {
Li Yangfaf0b2e2007-10-16 20:58:38 +0800361 VPRINTK("setting indirect prde\n");
362 prd_ptr_to_indirect_ext = prd;
363 prd->dba = cpu_to_le32(indirect_ext_segment_paddr);
364 indirect_ext_segment_sz = 0;
365 ++prd;
366 ++num_prde;
367 }
368
369 ttl_dwords += sg_len;
370 prd->dba = cpu_to_le32(sg_addr);
371 prd->ddc_and_ext =
372 cpu_to_le32(DATA_SNOOP_ENABLE | (sg_len & ~0x03));
373
374 VPRINTK("sg_fill, ttl=%d, dba=0x%x, ddc=0x%x\n",
375 ttl_dwords, prd->dba, prd->ddc_and_ext);
376
377 ++num_prde;
378 ++prd;
379 if (prd_ptr_to_indirect_ext)
380 indirect_ext_segment_sz += sg_len;
381 }
382
383 if (prd_ptr_to_indirect_ext) {
384 /* set indirect extension flag along with indirect ext. size */
385 prd_ptr_to_indirect_ext->ddc_and_ext =
386 cpu_to_le32((EXT_INDIRECT_SEG_PRD_FLAG |
387 DATA_SNOOP_ENABLE |
388 (indirect_ext_segment_sz & ~0x03)));
389 }
390
391 *ttl = ttl_dwords;
392 return num_prde;
393}
394
395static void sata_fsl_qc_prep(struct ata_queued_cmd *qc)
396{
397 struct ata_port *ap = qc->ap;
398 struct sata_fsl_port_priv *pp = ap->private_data;
399 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
400 void __iomem *hcr_base = host_priv->hcr_base;
401 unsigned int tag = sata_fsl_tag(qc->tag, hcr_base);
402 struct command_desc *cd;
403 u32 desc_info = CMD_DESC_SNOOP_ENABLE;
404 u32 num_prde = 0;
405 u32 ttl_dwords = 0;
406 dma_addr_t cd_paddr;
407
408 cd = (struct command_desc *)pp->cmdentry + tag;
409 cd_paddr = pp->cmdentry_paddr + tag * SATA_FSL_CMD_DESC_SIZE;
410
Li Yang520d3a12007-10-31 19:28:01 +0800411 ata_tf_to_fis(&qc->tf, 0, 1, (u8 *) &cd->cfis);
Li Yangfaf0b2e2007-10-16 20:58:38 +0800412
413 VPRINTK("Dumping cfis : 0x%x, 0x%x, 0x%x\n",
414 cd->cfis[0], cd->cfis[1], cd->cfis[2]);
415
416 if (qc->tf.protocol == ATA_PROT_NCQ) {
417 VPRINTK("FPDMA xfer,Sctor cnt[0:7],[8:15] = %d,%d\n",
418 cd->cfis[3], cd->cfis[11]);
419 }
420
421 /* setup "ACMD - atapi command" in cmd. desc. if this is ATAPI cmd */
Tejun Heo405e66b2007-11-27 19:28:53 +0900422 if (ata_is_atapi(qc->tf.protocol)) {
Li Yangfaf0b2e2007-10-16 20:58:38 +0800423 desc_info |= ATAPI_CMD;
424 memset((void *)&cd->acmd, 0, 32);
425 memcpy((void *)&cd->acmd, qc->cdb, qc->dev->cdb_len);
426 }
427
428 if (qc->flags & ATA_QCFLAG_DMAMAP)
429 num_prde = sata_fsl_fill_sg(qc, (void *)cd,
430 &ttl_dwords, cd_paddr);
431
432 if (qc->tf.protocol == ATA_PROT_NCQ)
433 desc_info |= FPDMA_QUEUED_CMD;
434
435 sata_fsl_setup_cmd_hdr_entry(pp, tag, desc_info, ttl_dwords,
436 num_prde, 5);
437
438 VPRINTK("SATA FSL : xx_qc_prep, di = 0x%x, ttl = %d, num_prde = %d\n",
439 desc_info, ttl_dwords, num_prde);
440}
441
442static unsigned int sata_fsl_qc_issue(struct ata_queued_cmd *qc)
443{
444 struct ata_port *ap = qc->ap;
445 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
446 void __iomem *hcr_base = host_priv->hcr_base;
447 unsigned int tag = sata_fsl_tag(qc->tag, hcr_base);
448
449 VPRINTK("xx_qc_issue called,CQ=0x%x,CA=0x%x,CE=0x%x,CC=0x%x\n",
450 ioread32(CQ + hcr_base),
451 ioread32(CA + hcr_base),
452 ioread32(CE + hcr_base), ioread32(CC + hcr_base));
453
454 /* Simply queue command to the controller/device */
455 iowrite32(1 << tag, CQ + hcr_base);
456
457 VPRINTK("xx_qc_issue called, tag=%d, CQ=0x%x, CA=0x%x\n",
458 tag, ioread32(CQ + hcr_base), ioread32(CA + hcr_base));
459
460 VPRINTK("CE=0x%x, DE=0x%x, CC=0x%x, CmdStat = 0x%x\n",
461 ioread32(CE + hcr_base),
462 ioread32(DE + hcr_base),
463 ioread32(CC + hcr_base), ioread32(COMMANDSTAT + csr_base));
464
465 return 0;
466}
467
468static int sata_fsl_scr_write(struct ata_port *ap, unsigned int sc_reg_in,
469 u32 val)
470{
471 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
472 void __iomem *ssr_base = host_priv->ssr_base;
473 unsigned int sc_reg;
474
475 switch (sc_reg_in) {
476 case SCR_STATUS:
Li Yangfaf0b2e2007-10-16 20:58:38 +0800477 case SCR_ERROR:
Li Yangfaf0b2e2007-10-16 20:58:38 +0800478 case SCR_CONTROL:
Li Yangfaf0b2e2007-10-16 20:58:38 +0800479 case SCR_ACTIVE:
Jeff Garzik9465d532007-10-31 19:27:57 +0800480 sc_reg = sc_reg_in;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800481 break;
482 default:
483 return -EINVAL;
484 }
485
486 VPRINTK("xx_scr_write, reg_in = %d\n", sc_reg);
487
Jeff Garzik2a52e8d2007-10-31 19:27:58 +0800488 iowrite32(val, ssr_base + (sc_reg * 4));
Li Yangfaf0b2e2007-10-16 20:58:38 +0800489 return 0;
490}
491
492static int sata_fsl_scr_read(struct ata_port *ap, unsigned int sc_reg_in,
493 u32 *val)
494{
495 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
496 void __iomem *ssr_base = host_priv->ssr_base;
497 unsigned int sc_reg;
498
499 switch (sc_reg_in) {
500 case SCR_STATUS:
Li Yangfaf0b2e2007-10-16 20:58:38 +0800501 case SCR_ERROR:
Li Yangfaf0b2e2007-10-16 20:58:38 +0800502 case SCR_CONTROL:
Li Yangfaf0b2e2007-10-16 20:58:38 +0800503 case SCR_ACTIVE:
Jeff Garzik9465d532007-10-31 19:27:57 +0800504 sc_reg = sc_reg_in;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800505 break;
506 default:
507 return -EINVAL;
508 }
509
510 VPRINTK("xx_scr_read, reg_in = %d\n", sc_reg);
511
Jeff Garzik2a52e8d2007-10-31 19:27:58 +0800512 *val = ioread32(ssr_base + (sc_reg * 4));
Li Yangfaf0b2e2007-10-16 20:58:38 +0800513 return 0;
514}
515
516static void sata_fsl_freeze(struct ata_port *ap)
517{
518 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
519 void __iomem *hcr_base = host_priv->hcr_base;
520 u32 temp;
521
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", ioread32(csr_base + COMMANDSTAT));
527
528 /* disable interrupts on the controller/port */
529 temp = ioread32(hcr_base + HCONTROL);
530 iowrite32((temp & ~0x3F), hcr_base + HCONTROL);
531
532 VPRINTK("in xx_freeze : HControl = 0x%x, HStatus = 0x%x\n",
533 ioread32(hcr_base + HCONTROL), ioread32(hcr_base + HSTATUS));
534}
535
536static void sata_fsl_thaw(struct ata_port *ap)
537{
538 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
539 void __iomem *hcr_base = host_priv->hcr_base;
540 u32 temp;
541
542 /* ack. any pending IRQs for this controller/port */
543 temp = ioread32(hcr_base + HSTATUS);
544
545 VPRINTK("xx_thaw, pending IRQs = 0x%x\n", (temp & 0x3F));
546
547 if (temp & 0x3F)
548 iowrite32((temp & 0x3F), hcr_base + HSTATUS);
549
550 /* enable interrupts on the controller/port */
551 temp = ioread32(hcr_base + HCONTROL);
552 iowrite32((temp | DEFAULT_PORT_IRQ_ENABLE_MASK), hcr_base + HCONTROL);
553
554 VPRINTK("xx_thaw : HControl = 0x%x, HStatus = 0x%x\n",
555 ioread32(hcr_base + HCONTROL), ioread32(hcr_base + HSTATUS));
556}
557
558/*
559 * NOTE : 1st D2H FIS from device does not update sfis in command descriptor.
560 */
561static inline void sata_fsl_cache_taskfile_from_d2h_fis(struct ata_queued_cmd
562 *qc,
563 struct ata_port *ap)
564{
565 struct sata_fsl_port_priv *pp = ap->private_data;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800566 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
567 void __iomem *hcr_base = host_priv->hcr_base;
568 unsigned int tag = sata_fsl_tag(qc->tag, hcr_base);
569 struct command_desc *cd;
570
571 cd = pp->cmdentry + tag;
572
Jeff Garzik25ce9452007-10-31 19:27:59 +0800573 ata_tf_from_fis(cd->sfis, &pp->tf);
Li Yangfaf0b2e2007-10-16 20:58:38 +0800574}
575
576static u8 sata_fsl_check_status(struct ata_port *ap)
577{
578 struct sata_fsl_port_priv *pp = ap->private_data;
579
580 return pp->tf.command;
581}
582
583static void sata_fsl_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
584{
585 struct sata_fsl_port_priv *pp = ap->private_data;
586
587 *tf = pp->tf;
588}
589
590static int sata_fsl_port_start(struct ata_port *ap)
591{
592 struct device *dev = ap->host->dev;
593 struct sata_fsl_port_priv *pp;
594 int retval;
595 void *mem;
596 dma_addr_t mem_dma;
597 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
598 void __iomem *hcr_base = host_priv->hcr_base;
599 u32 temp;
600
601 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
602 if (!pp)
603 return -ENOMEM;
604
605 /*
606 * allocate per command dma alignment pad buffer, which is used
607 * internally by libATA to ensure that all transfers ending on
608 * unaligned boundaries are padded, to align on Dword boundaries
609 */
610 retval = ata_pad_alloc(ap, dev);
611 if (retval) {
612 kfree(pp);
613 return retval;
614 }
615
616 mem = dma_alloc_coherent(dev, SATA_FSL_PORT_PRIV_DMA_SZ, &mem_dma,
617 GFP_KERNEL);
618 if (!mem) {
619 ata_pad_free(ap, dev);
620 kfree(pp);
621 return -ENOMEM;
622 }
623 memset(mem, 0, SATA_FSL_PORT_PRIV_DMA_SZ);
624
625 pp->cmdslot = mem;
626 pp->cmdslot_paddr = mem_dma;
627
628 mem += SATA_FSL_CMD_SLOT_SIZE;
629 mem_dma += SATA_FSL_CMD_SLOT_SIZE;
630
631 pp->cmdentry = mem;
632 pp->cmdentry_paddr = mem_dma;
633
634 ap->private_data = pp;
635
636 VPRINTK("CHBA = 0x%x, cmdentry_phys = 0x%x\n",
637 pp->cmdslot_paddr, pp->cmdentry_paddr);
638
639 /* Now, update the CHBA register in host controller cmd register set */
640 iowrite32(pp->cmdslot_paddr & 0xffffffff, hcr_base + CHBA);
641
642 /*
643 * Now, we can bring the controller on-line & also initiate
644 * the COMINIT sequence, we simply return here and the boot-probing
645 * & device discovery process is re-initiated by libATA using a
646 * Softreset EH (dummy) session. Hence, boot probing and device
647 * discovey will be part of sata_fsl_softreset() callback.
648 */
649
650 temp = ioread32(hcr_base + HCONTROL);
651 iowrite32((temp | HCONTROL_ONLINE_PHY_RST), hcr_base + HCONTROL);
652
653 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS));
654 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL));
655 VPRINTK("CHBA = 0x%x\n", ioread32(hcr_base + CHBA));
656
ashish kalrae7eac962007-10-31 19:28:02 +0800657#ifdef CONFIG_MPC8315_DS
Li Yangfaf0b2e2007-10-16 20:58:38 +0800658 /*
659 * Workaround for 8315DS board 3gbps link-up issue,
660 * currently limit SATA port to GEN1 speed
661 */
662 sata_fsl_scr_read(ap, SCR_CONTROL, &temp);
663 temp &= ~(0xF << 4);
664 temp |= (0x1 << 4);
665 sata_fsl_scr_write(ap, SCR_CONTROL, temp);
666
667 sata_fsl_scr_read(ap, SCR_CONTROL, &temp);
668 dev_printk(KERN_WARNING, dev, "scr_control, speed limited to %x\n",
669 temp);
ashish kalrae7eac962007-10-31 19:28:02 +0800670#endif
Li Yangfaf0b2e2007-10-16 20:58:38 +0800671
672 return 0;
673}
674
675static void sata_fsl_port_stop(struct ata_port *ap)
676{
677 struct device *dev = ap->host->dev;
678 struct sata_fsl_port_priv *pp = ap->private_data;
679 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
680 void __iomem *hcr_base = host_priv->hcr_base;
681 u32 temp;
682
683 /*
684 * Force host controller to go off-line, aborting current operations
685 */
686 temp = ioread32(hcr_base + HCONTROL);
687 temp &= ~HCONTROL_ONLINE_PHY_RST;
688 temp |= HCONTROL_FORCE_OFFLINE;
689 iowrite32(temp, hcr_base + HCONTROL);
690
691 /* Poll for controller to go offline - should happen immediately */
692 ata_wait_register(hcr_base + HSTATUS, ONLINE, ONLINE, 1, 1);
693
694 ap->private_data = NULL;
695 dma_free_coherent(dev, SATA_FSL_PORT_PRIV_DMA_SZ,
696 pp->cmdslot, pp->cmdslot_paddr);
697
698 ata_pad_free(ap, dev);
699 kfree(pp);
700}
701
702static unsigned int sata_fsl_dev_classify(struct ata_port *ap)
703{
704 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
705 void __iomem *hcr_base = host_priv->hcr_base;
706 struct ata_taskfile tf;
707 u32 temp;
708
709 temp = ioread32(hcr_base + SIGNATURE);
710
711 VPRINTK("raw sig = 0x%x\n", temp);
712 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS));
713 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL));
714
715 tf.lbah = (temp >> 24) & 0xff;
716 tf.lbam = (temp >> 16) & 0xff;
717 tf.lbal = (temp >> 8) & 0xff;
718 tf.nsect = temp & 0xff;
719
720 return ata_dev_classify(&tf);
721}
722
Li Yang1bf617b2007-10-31 19:27:53 +0800723static int sata_fsl_softreset(struct ata_link *link, unsigned int *class,
Li Yangfaf0b2e2007-10-16 20:58:38 +0800724 unsigned long deadline)
725{
Li Yang1bf617b2007-10-31 19:27:53 +0800726 struct ata_port *ap = link->ap;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800727 struct sata_fsl_port_priv *pp = ap->private_data;
728 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
729 void __iomem *hcr_base = host_priv->hcr_base;
730 u32 temp;
731 struct ata_taskfile tf;
732 u8 *cfis;
733 u32 Serror;
734 int i = 0;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800735 unsigned long start_jiffies;
736
737 DPRINTK("in xx_softreset\n");
738
739try_offline_again:
740 /*
741 * Force host controller to go off-line, aborting current operations
742 */
743 temp = ioread32(hcr_base + HCONTROL);
744 temp &= ~HCONTROL_ONLINE_PHY_RST;
745 iowrite32(temp, hcr_base + HCONTROL);
746
747 /* Poll for controller to go offline */
748 temp = ata_wait_register(hcr_base + HSTATUS, ONLINE, ONLINE, 1, 500);
749
750 if (temp & ONLINE) {
751 ata_port_printk(ap, KERN_ERR,
752 "Softreset failed, not off-lined %d\n", i);
753
754 /*
755 * Try to offline controller atleast twice
756 */
757 i++;
758 if (i == 2)
759 goto err;
760 else
761 goto try_offline_again;
762 }
763
764 DPRINTK("softreset, controller off-lined\n");
765 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS));
766 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL));
767
768 /*
769 * PHY reset should remain asserted for atleast 1ms
770 */
771 msleep(1);
772
773 /*
774 * Now, bring the host controller online again, this can take time
775 * as PHY reset and communication establishment, 1st D2H FIS and
776 * device signature update is done, on safe side assume 500ms
777 * NOTE : Host online status may be indicated immediately!!
778 */
779
780 temp = ioread32(hcr_base + HCONTROL);
781 temp |= (HCONTROL_ONLINE_PHY_RST | HCONTROL_SNOOP_ENABLE);
782 iowrite32(temp, hcr_base + HCONTROL);
783
784 temp = ata_wait_register(hcr_base + HSTATUS, ONLINE, 0, 1, 500);
785
786 if (!(temp & ONLINE)) {
787 ata_port_printk(ap, KERN_ERR,
788 "Softreset failed, not on-lined\n");
789 goto err;
790 }
791
792 DPRINTK("softreset, controller off-lined & on-lined\n");
793 VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS));
794 VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL));
795
796 /*
797 * First, wait for the PHYRDY change to occur before waiting for
798 * the signature, and also verify if SStatus indicates device
799 * presence
800 */
801
802 temp = ata_wait_register(hcr_base + HSTATUS, 0xFF, 0, 1, 500);
Li Yang1bf617b2007-10-31 19:27:53 +0800803 if ((!(temp & 0x10)) || ata_link_offline(link)) {
Li Yangfaf0b2e2007-10-16 20:58:38 +0800804 ata_port_printk(ap, KERN_WARNING,
805 "No Device OR PHYRDY change,Hstatus = 0x%x\n",
806 ioread32(hcr_base + HSTATUS));
807 goto err;
808 }
809
810 /*
811 * Wait for the first D2H from device,i.e,signature update notification
812 */
813 start_jiffies = jiffies;
814 temp = ata_wait_register(hcr_base + HSTATUS, 0xFF, 0x10,
815 500, jiffies_to_msecs(deadline - start_jiffies));
816
817 if ((temp & 0xFF) != 0x18) {
818 ata_port_printk(ap, KERN_WARNING, "No Signature Update\n");
819 goto err;
820 } else {
821 ata_port_printk(ap, KERN_INFO,
822 "Signature Update detected @ %d msecs\n",
823 jiffies_to_msecs(jiffies - start_jiffies));
824 }
825
826 /*
827 * Send a device reset (SRST) explicitly on command slot #0
828 * Check : will the command queue (reg) be cleared during offlining ??
829 * Also we will be online only if Phy commn. has been established
830 * and device presence has been detected, therefore if we have
831 * reached here, we can send a command to the target device
832 */
833
Li Yangfaf0b2e2007-10-16 20:58:38 +0800834 DPRINTK("Sending SRST/device reset\n");
835
Li Yang1bf617b2007-10-31 19:27:53 +0800836 ata_tf_init(link->device, &tf);
Li Yang520d3a12007-10-31 19:28:01 +0800837 cfis = (u8 *) &pp->cmdentry->cfis;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800838
839 /* device reset/SRST is a control register update FIS, uses tag0 */
840 sata_fsl_setup_cmd_hdr_entry(pp, 0,
841 SRST_CMD | CMD_DESC_SNOOP_ENABLE, 0, 0, 5);
842
843 tf.ctl |= ATA_SRST; /* setup SRST bit in taskfile control reg */
844 ata_tf_to_fis(&tf, 0, 0, cfis);
845
846 DPRINTK("Dumping cfis : 0x%x, 0x%x, 0x%x, 0x%x\n",
847 cfis[0], cfis[1], cfis[2], cfis[3]);
848
849 /*
850 * Queue SRST command to the controller/device, ensure that no
851 * other commands are active on the controller/device
852 */
853
854 DPRINTK("@Softreset, CQ = 0x%x, CA = 0x%x, CC = 0x%x\n",
855 ioread32(CQ + hcr_base),
856 ioread32(CA + hcr_base), ioread32(CC + hcr_base));
857
858 iowrite32(0xFFFF, CC + hcr_base);
859 iowrite32(1, CQ + hcr_base);
860
861 temp = ata_wait_register(CQ + hcr_base, 0x1, 0x1, 1, 5000);
862 if (temp & 0x1) {
863 ata_port_printk(ap, KERN_WARNING, "ATA_SRST issue failed\n");
864
865 DPRINTK("Softreset@5000,CQ=0x%x,CA=0x%x,CC=0x%x\n",
866 ioread32(CQ + hcr_base),
867 ioread32(CA + hcr_base), ioread32(CC + hcr_base));
868
869 sata_fsl_scr_read(ap, SCR_ERROR, &Serror);
870
871 DPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS));
872 DPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL));
873 DPRINTK("Serror = 0x%x\n", Serror);
874 goto err;
875 }
876
877 msleep(1);
878
879 /*
880 * SATA device enters reset state after receving a Control register
881 * FIS with SRST bit asserted and it awaits another H2D Control reg.
882 * FIS with SRST bit cleared, then the device does internal diags &
883 * initialization, followed by indicating it's initialization status
884 * using ATA signature D2H register FIS to the host controller.
885 */
886
887 sata_fsl_setup_cmd_hdr_entry(pp, 0, CMD_DESC_SNOOP_ENABLE, 0, 0, 5);
888
889 tf.ctl &= ~ATA_SRST; /* 2nd H2D Ctl. register FIS */
890 ata_tf_to_fis(&tf, 0, 0, cfis);
891
892 iowrite32(1, CQ + hcr_base);
893 msleep(150); /* ?? */
894
895 /*
896 * The above command would have signalled an interrupt on command
897 * complete, which needs special handling, by clearing the Nth
898 * command bit of the CCreg
899 */
900 iowrite32(0x01, CC + hcr_base); /* We know it will be cmd#0 always */
Li Yangfaf0b2e2007-10-16 20:58:38 +0800901
902 DPRINTK("SATA FSL : Now checking device signature\n");
903
904 *class = ATA_DEV_NONE;
905
906 /* Verify if SStatus indicates device presence */
Li Yang1bf617b2007-10-31 19:27:53 +0800907 if (ata_link_online(link)) {
Li Yangfaf0b2e2007-10-16 20:58:38 +0800908 /*
909 * if we are here, device presence has been detected,
910 * 1st D2H FIS would have been received, but sfis in
911 * command desc. is not updated, but signature register
912 * would have been updated
913 */
914
915 *class = sata_fsl_dev_classify(ap);
916
917 DPRINTK("class = %d\n", *class);
918 VPRINTK("ccreg = 0x%x\n", ioread32(hcr_base + CC));
919 VPRINTK("cereg = 0x%x\n", ioread32(hcr_base + CE));
920 }
921
922 return 0;
923
924err:
925 return -EIO;
926}
927
Li Yangfaf0b2e2007-10-16 20:58:38 +0800928static void sata_fsl_error_handler(struct ata_port *ap)
929{
930
931 DPRINTK("in xx_error_handler\n");
932
933 /* perform recovery */
Jeff Garzik066ce4d2007-10-31 19:28:00 +0800934 ata_do_eh(ap, ata_std_prereset, sata_fsl_softreset, sata_std_hardreset,
Li Yangfaf0b2e2007-10-16 20:58:38 +0800935 ata_std_postreset);
936}
937
938static void sata_fsl_post_internal_cmd(struct ata_queued_cmd *qc)
939{
940 if (qc->flags & ATA_QCFLAG_FAILED)
941 qc->err_mask |= AC_ERR_OTHER;
942
943 if (qc->err_mask) {
944 /* make DMA engine forget about the failed command */
945
946 }
947}
948
949static void sata_fsl_irq_clear(struct ata_port *ap)
950{
951 /* unused */
952}
953
954static void sata_fsl_error_intr(struct ata_port *ap)
955{
Li Yang1bf617b2007-10-31 19:27:53 +0800956 struct ata_link *link = &ap->link;
957 struct ata_eh_info *ehi = &link->eh_info;
Li Yangfaf0b2e2007-10-16 20:58:38 +0800958 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
959 void __iomem *hcr_base = host_priv->hcr_base;
960 u32 hstatus, dereg, cereg = 0, SError = 0;
961 unsigned int err_mask = 0, action = 0;
962 struct ata_queued_cmd *qc;
963 int freeze = 0;
964
965 hstatus = ioread32(hcr_base + HSTATUS);
966 cereg = ioread32(hcr_base + CE);
967
968 ata_ehi_clear_desc(ehi);
969
970 /*
971 * Handle & Clear SError
972 */
973
974 sata_fsl_scr_read(ap, SCR_ERROR, &SError);
975 if (unlikely(SError & 0xFFFF0000)) {
976 sata_fsl_scr_write(ap, SCR_ERROR, SError);
977 err_mask |= AC_ERR_ATA_BUS;
978 }
979
980 DPRINTK("error_intr,hStat=0x%x,CE=0x%x,DE =0x%x,SErr=0x%x\n",
981 hstatus, cereg, ioread32(hcr_base + DE), SError);
982
983 /* handle single device errors */
984 if (cereg) {
985 /*
986 * clear the command error, also clears queue to the device
987 * in error, and we can (re)issue commands to this device.
988 * When a device is in error all commands queued into the
989 * host controller and at the device are considered aborted
990 * and the queue for that device is stopped. Now, after
991 * clearing the device error, we can issue commands to the
992 * device to interrogate it to find the source of the error.
993 */
994 dereg = ioread32(hcr_base + DE);
995 iowrite32(dereg, hcr_base + DE);
996 iowrite32(cereg, hcr_base + CE);
997
998 DPRINTK("single device error, CE=0x%x, DE=0x%x\n",
999 ioread32(hcr_base + CE), ioread32(hcr_base + DE));
1000 /*
1001 * We should consider this as non fatal error, and TF must
1002 * be updated as done below.
1003 */
1004
1005 err_mask |= AC_ERR_DEV;
1006 }
1007
1008 /* handle fatal errors */
1009 if (hstatus & FATAL_ERROR_DECODE) {
1010 err_mask |= AC_ERR_ATA_BUS;
1011 action |= ATA_EH_SOFTRESET;
1012 /* how will fatal error interrupts be completed ?? */
1013 freeze = 1;
1014 }
1015
1016 /* Handle PHYRDY change notification */
1017 if (hstatus & INT_ON_PHYRDY_CHG) {
1018 DPRINTK("SATA FSL: PHYRDY change indication\n");
1019
1020 /* Setup a soft-reset EH action */
1021 ata_ehi_hotplugged(ehi);
1022 freeze = 1;
1023 }
1024
1025 /* record error info */
Li Yang1bf617b2007-10-31 19:27:53 +08001026 qc = ata_qc_from_tag(ap, link->active_tag);
Li Yangfaf0b2e2007-10-16 20:58:38 +08001027
1028 if (qc) {
1029 sata_fsl_cache_taskfile_from_d2h_fis(qc, qc->ap);
1030 qc->err_mask |= err_mask;
1031 } else
1032 ehi->err_mask |= err_mask;
1033
1034 ehi->action |= action;
1035 ehi->serror |= SError;
1036
1037 /* freeze or abort */
1038 if (freeze)
1039 ata_port_freeze(ap);
1040 else
1041 ata_port_abort(ap);
1042}
1043
1044static void sata_fsl_qc_complete(struct ata_queued_cmd *qc)
1045{
1046 if (qc->flags & ATA_QCFLAG_RESULT_TF) {
1047 DPRINTK("xx_qc_complete called\n");
1048 sata_fsl_cache_taskfile_from_d2h_fis(qc, qc->ap);
1049 }
1050}
1051
1052static void sata_fsl_host_intr(struct ata_port *ap)
1053{
Li Yang1bf617b2007-10-31 19:27:53 +08001054 struct ata_link *link = &ap->link;
Li Yangfaf0b2e2007-10-16 20:58:38 +08001055 struct sata_fsl_host_priv *host_priv = ap->host->private_data;
1056 void __iomem *hcr_base = host_priv->hcr_base;
1057 u32 hstatus, qc_active = 0;
1058 struct ata_queued_cmd *qc;
1059 u32 SError;
1060
1061 hstatus = ioread32(hcr_base + HSTATUS);
1062
1063 sata_fsl_scr_read(ap, SCR_ERROR, &SError);
1064
1065 if (unlikely(SError & 0xFFFF0000)) {
1066 DPRINTK("serror @host_intr : 0x%x\n", SError);
1067 sata_fsl_error_intr(ap);
1068
1069 }
1070
1071 if (unlikely(hstatus & INT_ON_ERROR)) {
1072 DPRINTK("error interrupt!!\n");
1073 sata_fsl_error_intr(ap);
1074 return;
1075 }
1076
Li Yang1bf617b2007-10-31 19:27:53 +08001077 if (link->sactive) { /* only true for NCQ commands */
Li Yangfaf0b2e2007-10-16 20:58:38 +08001078 int i;
1079 /* Read command completed register */
1080 qc_active = ioread32(hcr_base + CC);
1081 /* clear CC bit, this will also complete the interrupt */
1082 iowrite32(qc_active, hcr_base + CC);
1083
1084 DPRINTK("Status of all queues :\n");
1085 DPRINTK("qc_active/CC = 0x%x, CA = 0x%x, CE=0x%x\n",
1086 qc_active, ioread32(hcr_base + CA),
1087 ioread32(hcr_base + CE));
1088
1089 for (i = 0; i < SATA_FSL_QUEUE_DEPTH; i++) {
1090 if (qc_active & (1 << i)) {
1091 qc = ata_qc_from_tag(ap, i);
1092 if (qc) {
1093 sata_fsl_qc_complete(qc);
1094 ata_qc_complete(qc);
1095 }
1096 DPRINTK
1097 ("completing ncq cmd,tag=%d,CC=0x%x,CA=0x%x\n",
1098 i, ioread32(hcr_base + CC),
1099 ioread32(hcr_base + CA));
1100 }
1101 }
1102 return;
1103
1104 } else if (ap->qc_active) {
1105 iowrite32(1, hcr_base + CC);
Li Yang1bf617b2007-10-31 19:27:53 +08001106 qc = ata_qc_from_tag(ap, link->active_tag);
Li Yangfaf0b2e2007-10-16 20:58:38 +08001107
1108 DPRINTK("completing non-ncq cmd, tag=%d,CC=0x%x\n",
Li Yang1bf617b2007-10-31 19:27:53 +08001109 link->active_tag, ioread32(hcr_base + CC));
Li Yangfaf0b2e2007-10-16 20:58:38 +08001110
1111 if (qc) {
1112 sata_fsl_qc_complete(qc);
1113 ata_qc_complete(qc);
1114 }
1115 } else {
1116 /* Spurious Interrupt!! */
1117 DPRINTK("spurious interrupt!!, CC = 0x%x\n",
1118 ioread32(hcr_base + CC));
1119 return;
1120 }
1121}
1122
1123static irqreturn_t sata_fsl_interrupt(int irq, void *dev_instance)
1124{
1125 struct ata_host *host = dev_instance;
1126 struct sata_fsl_host_priv *host_priv = host->private_data;
1127 void __iomem *hcr_base = host_priv->hcr_base;
1128 u32 interrupt_enables;
1129 unsigned handled = 0;
1130 struct ata_port *ap;
1131
1132 /* ack. any pending IRQs for this controller/port */
1133 interrupt_enables = ioread32(hcr_base + HSTATUS);
1134 interrupt_enables &= 0x3F;
1135
1136 DPRINTK("interrupt status 0x%x\n", interrupt_enables);
1137
1138 if (!interrupt_enables)
1139 return IRQ_NONE;
1140
1141 spin_lock(&host->lock);
1142
1143 /* Assuming one port per host controller */
1144
1145 ap = host->ports[0];
1146 if (ap) {
1147 sata_fsl_host_intr(ap);
1148 } else {
1149 dev_printk(KERN_WARNING, host->dev,
1150 "interrupt on disabled port 0\n");
1151 }
1152
1153 iowrite32(interrupt_enables, hcr_base + HSTATUS);
1154 handled = 1;
1155
1156 spin_unlock(&host->lock);
1157
1158 return IRQ_RETVAL(handled);
1159}
1160
1161/*
1162 * Multiple ports are represented by multiple SATA controllers with
1163 * one port per controller
1164 */
1165static int sata_fsl_init_controller(struct ata_host *host)
1166{
1167 struct sata_fsl_host_priv *host_priv = host->private_data;
1168 void __iomem *hcr_base = host_priv->hcr_base;
1169 u32 temp;
1170
1171 /*
1172 * NOTE : We cannot bring the controller online before setting
1173 * the CHBA, hence main controller initialization is done as
1174 * part of the port_start() callback
1175 */
1176
1177 /* ack. any pending IRQs for this controller/port */
1178 temp = ioread32(hcr_base + HSTATUS);
1179 if (temp & 0x3F)
1180 iowrite32((temp & 0x3F), hcr_base + HSTATUS);
1181
1182 /* Keep interrupts disabled on the controller */
1183 temp = ioread32(hcr_base + HCONTROL);
1184 iowrite32((temp & ~0x3F), hcr_base + HCONTROL);
1185
1186 /* Disable interrupt coalescing control(icc), for the moment */
1187 DPRINTK("icc = 0x%x\n", ioread32(hcr_base + ICC));
1188 iowrite32(0x01000000, hcr_base + ICC);
1189
1190 /* clear error registers, SError is cleared by libATA */
1191 iowrite32(0x00000FFFF, hcr_base + CE);
1192 iowrite32(0x00000FFFF, hcr_base + DE);
1193
1194 /* initially assuming no Port multiplier, set CQPMP to 0 */
1195 iowrite32(0x0, hcr_base + CQPMP);
1196
1197 /*
1198 * host controller will be brought on-line, during xx_port_start()
1199 * callback, that should also initiate the OOB, COMINIT sequence
1200 */
1201
1202 DPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS));
1203 DPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL));
1204
1205 return 0;
1206}
1207
1208/*
1209 * scsi mid-layer and libata interface structures
1210 */
1211static struct scsi_host_template sata_fsl_sht = {
1212 .module = THIS_MODULE,
1213 .name = "sata_fsl",
1214 .ioctl = ata_scsi_ioctl,
1215 .queuecommand = ata_scsi_queuecmd,
1216 .change_queue_depth = ata_scsi_change_queue_depth,
1217 .can_queue = SATA_FSL_QUEUE_DEPTH,
1218 .this_id = ATA_SHT_THIS_ID,
1219 .sg_tablesize = SATA_FSL_MAX_PRD_USABLE,
1220 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
1221 .emulated = ATA_SHT_EMULATED,
1222 .use_clustering = ATA_SHT_USE_CLUSTERING,
1223 .proc_name = "sata_fsl",
1224 .dma_boundary = ATA_DMA_BOUNDARY,
1225 .slave_configure = ata_scsi_slave_config,
1226 .slave_destroy = ata_scsi_slave_destroy,
1227 .bios_param = ata_std_bios_param,
Li Yangfaf0b2e2007-10-16 20:58:38 +08001228};
1229
1230static const struct ata_port_operations sata_fsl_ops = {
Li Yangfaf0b2e2007-10-16 20:58:38 +08001231 .check_status = sata_fsl_check_status,
1232 .check_altstatus = sata_fsl_check_status,
1233 .dev_select = ata_noop_dev_select,
1234
1235 .tf_read = sata_fsl_tf_read,
1236
1237 .qc_prep = sata_fsl_qc_prep,
1238 .qc_issue = sata_fsl_qc_issue,
1239 .irq_clear = sata_fsl_irq_clear,
Li Yangfaf0b2e2007-10-16 20:58:38 +08001240
1241 .scr_read = sata_fsl_scr_read,
1242 .scr_write = sata_fsl_scr_write,
1243
1244 .freeze = sata_fsl_freeze,
1245 .thaw = sata_fsl_thaw,
1246 .error_handler = sata_fsl_error_handler,
1247 .post_internal_cmd = sata_fsl_post_internal_cmd,
1248
1249 .port_start = sata_fsl_port_start,
1250 .port_stop = sata_fsl_port_stop,
1251};
1252
1253static const struct ata_port_info sata_fsl_port_info[] = {
1254 {
1255 .flags = SATA_FSL_HOST_FLAGS,
Li Yang1bf617b2007-10-31 19:27:53 +08001256 .link_flags = SATA_FSL_HOST_LFLAGS,
Li Yangfaf0b2e2007-10-16 20:58:38 +08001257 .pio_mask = 0x1f, /* pio 0-4 */
1258 .udma_mask = 0x7f, /* udma 0-6 */
1259 .port_ops = &sata_fsl_ops,
1260 },
1261};
1262
1263static int sata_fsl_probe(struct of_device *ofdev,
1264 const struct of_device_id *match)
1265{
1266 int retval = 0;
1267 void __iomem *hcr_base = NULL;
1268 void __iomem *ssr_base = NULL;
1269 void __iomem *csr_base = NULL;
1270 struct sata_fsl_host_priv *host_priv = NULL;
1271 struct resource *r;
1272 int irq;
1273 struct ata_host *host;
1274
1275 struct ata_port_info pi = sata_fsl_port_info[0];
1276 const struct ata_port_info *ppi[] = { &pi, NULL };
1277
1278 dev_printk(KERN_INFO, &ofdev->dev,
1279 "Sata FSL Platform/CSB Driver init\n");
1280
1281 r = kmalloc(sizeof(struct resource), GFP_KERNEL);
1282
1283 hcr_base = of_iomap(ofdev->node, 0);
1284 if (!hcr_base)
1285 goto error_exit_with_cleanup;
1286
1287 ssr_base = hcr_base + 0x100;
1288 csr_base = hcr_base + 0x140;
1289
1290 DPRINTK("@reset i/o = 0x%x\n", ioread32(csr_base + TRANSCFG));
1291 DPRINTK("sizeof(cmd_desc) = %d\n", sizeof(struct command_desc));
1292 DPRINTK("sizeof(#define cmd_desc) = %d\n", SATA_FSL_CMD_DESC_SIZE);
1293
1294 host_priv = kzalloc(sizeof(struct sata_fsl_host_priv), GFP_KERNEL);
1295 if (!host_priv)
1296 goto error_exit_with_cleanup;
1297
1298 host_priv->hcr_base = hcr_base;
1299 host_priv->ssr_base = ssr_base;
1300 host_priv->csr_base = csr_base;
1301
1302 irq = irq_of_parse_and_map(ofdev->node, 0);
1303 if (irq < 0) {
1304 dev_printk(KERN_ERR, &ofdev->dev, "invalid irq from platform\n");
1305 goto error_exit_with_cleanup;
1306 }
Li Yang79b3edc2007-10-31 19:27:55 +08001307 host_priv->irq = irq;
Li Yangfaf0b2e2007-10-16 20:58:38 +08001308
1309 /* allocate host structure */
1310 host = ata_host_alloc_pinfo(&ofdev->dev, ppi, SATA_FSL_MAX_PORTS);
1311
1312 /* host->iomap is not used currently */
1313 host->private_data = host_priv;
1314
1315 /* setup port(s) */
1316
1317 host->ports[0]->ioaddr.cmd_addr = host_priv->hcr_base;
1318 host->ports[0]->ioaddr.scr_addr = host_priv->ssr_base;
1319
1320 /* initialize host controller */
1321 sata_fsl_init_controller(host);
1322
1323 /*
1324 * Now, register with libATA core, this will also initiate the
1325 * device discovery process, invoking our port_start() handler &
1326 * error_handler() to execute a dummy Softreset EH session
1327 */
1328 ata_host_activate(host, irq, sata_fsl_interrupt, SATA_FSL_IRQ_FLAG,
1329 &sata_fsl_sht);
1330
1331 dev_set_drvdata(&ofdev->dev, host);
1332
1333 return 0;
1334
1335error_exit_with_cleanup:
1336
1337 if (hcr_base)
1338 iounmap(hcr_base);
1339 if (host_priv)
1340 kfree(host_priv);
1341
1342 return retval;
1343}
1344
1345static int sata_fsl_remove(struct of_device *ofdev)
1346{
1347 struct ata_host *host = dev_get_drvdata(&ofdev->dev);
1348 struct sata_fsl_host_priv *host_priv = host->private_data;
1349
1350 ata_host_detach(host);
1351
1352 dev_set_drvdata(&ofdev->dev, NULL);
1353
Li Yang79b3edc2007-10-31 19:27:55 +08001354 irq_dispose_mapping(host_priv->irq);
Li Yangfaf0b2e2007-10-16 20:58:38 +08001355 iounmap(host_priv->hcr_base);
1356 kfree(host_priv);
1357
1358 return 0;
1359}
1360
1361static struct of_device_id fsl_sata_match[] = {
1362 {
1363 .compatible = "fsl,mpc8315-sata",
1364 },
1365 {
1366 .compatible = "fsl,mpc8379-sata",
1367 },
1368 {},
1369};
1370
1371MODULE_DEVICE_TABLE(of, fsl_sata_match);
1372
1373static struct of_platform_driver fsl_sata_driver = {
1374 .name = "fsl-sata",
1375 .match_table = fsl_sata_match,
1376 .probe = sata_fsl_probe,
1377 .remove = sata_fsl_remove,
1378};
1379
1380static int __init sata_fsl_init(void)
1381{
1382 of_register_platform_driver(&fsl_sata_driver);
1383 return 0;
1384}
1385
1386static void __exit sata_fsl_exit(void)
1387{
1388 of_unregister_platform_driver(&fsl_sata_driver);
1389}
1390
1391MODULE_LICENSE("GPL");
1392MODULE_AUTHOR("Ashish Kalra, Freescale Semiconductor");
1393MODULE_DESCRIPTION("Freescale 3.0Gbps SATA controller low level driver");
1394MODULE_VERSION("1.10");
1395
1396module_init(sata_fsl_init);
1397module_exit(sata_fsl_exit);