blob: b65194c755f8b15ada4d369c1042d52bf9f215cf [file] [log] [blame]
Tejun Heoedb33662005-07-28 10:36:22 +09001/*
2 * sata_sil24.c - Driver for Silicon Image 3124/3132 SATA-2 controllers
3 *
4 * Copyright 2005 Tejun Heo
5 *
6 * Based on preview driver from Silicon Image.
7 *
8 * NOTE: No NCQ/ATAPI support yet. The preview driver didn't support
9 * NCQ nor ATAPI, and, unfortunately, I couldn't find out how to make
10 * those work. Enabling those shouldn't be difficult. Basic
11 * structure is all there (in libata-dev tree). If you have any
12 * information about this hardware, please contact me or linux-ide.
13 * Info is needed on...
14 *
15 * - How to issue tagged commands and turn on sactive on issue accordingly.
16 * - Where to put an ATAPI command and how to tell the device to send it.
17 * - How to enable/use 64bit.
18 *
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License as published by the
21 * Free Software Foundation; either version 2, or (at your option) any
22 * later version.
23 *
24 * This program is distributed in the hope that it will be useful, but
25 * WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 * General Public License for more details.
28 *
29 */
30
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/pci.h>
34#include <linux/blkdev.h>
35#include <linux/delay.h>
36#include <linux/interrupt.h>
37#include <linux/dma-mapping.h>
38#include <scsi/scsi_host.h>
39#include "scsi.h"
40#include <linux/libata.h>
41#include <asm/io.h>
42
43#define DRV_NAME "sata_sil24"
Tejun Heo6a575fa2005-10-06 11:43:39 +090044#define DRV_VERSION "0.22" /* Silicon Image's preview driver was 0.10 */
Tejun Heoedb33662005-07-28 10:36:22 +090045
46#define NR_PORTS 4
47
48/*
49 * Port request block (PRB) 32 bytes
50 */
51struct sil24_prb {
52 u16 ctrl;
53 u16 prot;
54 u32 rx_cnt;
55 u8 fis[6 * 4];
56};
57
58/*
59 * Scatter gather entry (SGE) 16 bytes
60 */
61struct sil24_sge {
62 u64 addr;
63 u32 cnt;
64 u32 flags;
65};
66
67/*
68 * Port multiplier
69 */
70struct sil24_port_multiplier {
71 u32 diag;
72 u32 sactive;
73};
74
75enum {
76 /*
77 * Global controller registers (128 bytes @ BAR0)
78 */
79 /* 32 bit regs */
80 HOST_SLOT_STAT = 0x00, /* 32 bit slot stat * 4 */
81 HOST_CTRL = 0x40,
82 HOST_IRQ_STAT = 0x44,
83 HOST_PHY_CFG = 0x48,
84 HOST_BIST_CTRL = 0x50,
85 HOST_BIST_PTRN = 0x54,
86 HOST_BIST_STAT = 0x58,
87 HOST_MEM_BIST_STAT = 0x5c,
88 HOST_FLASH_CMD = 0x70,
89 /* 8 bit regs */
90 HOST_FLASH_DATA = 0x74,
91 HOST_TRANSITION_DETECT = 0x75,
92 HOST_GPIO_CTRL = 0x76,
93 HOST_I2C_ADDR = 0x78, /* 32 bit */
94 HOST_I2C_DATA = 0x7c,
95 HOST_I2C_XFER_CNT = 0x7e,
96 HOST_I2C_CTRL = 0x7f,
97
98 /* HOST_SLOT_STAT bits */
99 HOST_SSTAT_ATTN = (1 << 31),
100
101 /*
102 * Port registers
103 * (8192 bytes @ +0x0000, +0x2000, +0x4000 and +0x6000 @ BAR2)
104 */
105 PORT_REGS_SIZE = 0x2000,
106 PORT_PRB = 0x0000, /* (32 bytes PRB + 16 bytes SGEs * 6) * 31 (3968 bytes) */
Tejun Heoedb33662005-07-28 10:36:22 +0900107
108 PORT_PM = 0x0f80, /* 8 bytes PM * 16 (128 bytes) */
109 /* 32 bit regs */
Tejun Heo83bbecc2005-08-17 13:09:18 +0900110 PORT_CTRL_STAT = 0x1000, /* write: ctrl-set, read: stat */
111 PORT_CTRL_CLR = 0x1004, /* write: ctrl-clear */
112 PORT_IRQ_STAT = 0x1008, /* high: status, low: interrupt */
113 PORT_IRQ_ENABLE_SET = 0x1010, /* write: enable-set */
114 PORT_IRQ_ENABLE_CLR = 0x1014, /* write: enable-clear */
Tejun Heoedb33662005-07-28 10:36:22 +0900115 PORT_ACTIVATE_UPPER_ADDR= 0x101c,
Tejun Heo83bbecc2005-08-17 13:09:18 +0900116 PORT_EXEC_FIFO = 0x1020, /* command execution fifo */
117 PORT_CMD_ERR = 0x1024, /* command error number */
Tejun Heoedb33662005-07-28 10:36:22 +0900118 PORT_FIS_CFG = 0x1028,
119 PORT_FIFO_THRES = 0x102c,
120 /* 16 bit regs */
121 PORT_DECODE_ERR_CNT = 0x1040,
122 PORT_DECODE_ERR_THRESH = 0x1042,
123 PORT_CRC_ERR_CNT = 0x1044,
124 PORT_CRC_ERR_THRESH = 0x1046,
125 PORT_HSHK_ERR_CNT = 0x1048,
126 PORT_HSHK_ERR_THRESH = 0x104a,
127 /* 32 bit regs */
128 PORT_PHY_CFG = 0x1050,
129 PORT_SLOT_STAT = 0x1800,
130 PORT_CMD_ACTIVATE = 0x1c00, /* 64 bit cmd activate * 31 (248 bytes) */
131 PORT_EXEC_DIAG = 0x1e00, /* 32bit exec diag * 16 (64 bytes, 0-10 used on 3124) */
132 PORT_PSD_DIAG = 0x1e40, /* 32bit psd diag * 16 (64 bytes, 0-8 used on 3124) */
133 PORT_SCONTROL = 0x1f00,
134 PORT_SSTATUS = 0x1f04,
135 PORT_SERROR = 0x1f08,
136 PORT_SACTIVE = 0x1f0c,
137
138 /* PORT_CTRL_STAT bits */
139 PORT_CS_PORT_RST = (1 << 0), /* port reset */
140 PORT_CS_DEV_RST = (1 << 1), /* device reset */
141 PORT_CS_INIT = (1 << 2), /* port initialize */
142 PORT_CS_IRQ_WOC = (1 << 3), /* interrupt write one to clear */
Tejun Heoe382eb12005-08-17 13:09:13 +0900143 PORT_CS_RESUME = (1 << 6), /* port resume */
144 PORT_CS_32BIT_ACTV = (1 << 10), /* 32-bit activation */
145 PORT_CS_PM_EN = (1 << 13), /* port multiplier enable */
146 PORT_CS_RDY = (1 << 31), /* port ready to accept commands */
Tejun Heoedb33662005-07-28 10:36:22 +0900147
148 /* PORT_IRQ_STAT/ENABLE_SET/CLR */
149 /* bits[11:0] are masked */
150 PORT_IRQ_COMPLETE = (1 << 0), /* command(s) completed */
151 PORT_IRQ_ERROR = (1 << 1), /* command execution error */
152 PORT_IRQ_PORTRDY_CHG = (1 << 2), /* port ready change */
153 PORT_IRQ_PWR_CHG = (1 << 3), /* power management change */
154 PORT_IRQ_PHYRDY_CHG = (1 << 4), /* PHY ready change */
155 PORT_IRQ_COMWAKE = (1 << 5), /* COMWAKE received */
156 PORT_IRQ_UNK_FIS = (1 << 6), /* Unknown FIS received */
157 PORT_IRQ_SDB_FIS = (1 << 11), /* SDB FIS received */
158
159 /* bits[27:16] are unmasked (raw) */
160 PORT_IRQ_RAW_SHIFT = 16,
161 PORT_IRQ_MASKED_MASK = 0x7ff,
162 PORT_IRQ_RAW_MASK = (0x7ff << PORT_IRQ_RAW_SHIFT),
163
164 /* ENABLE_SET/CLR specific, intr steering - 2 bit field */
165 PORT_IRQ_STEER_SHIFT = 30,
166 PORT_IRQ_STEER_MASK = (3 << PORT_IRQ_STEER_SHIFT),
167
168 /* PORT_CMD_ERR constants */
169 PORT_CERR_DEV = 1, /* Error bit in D2H Register FIS */
170 PORT_CERR_SDB = 2, /* Error bit in SDB FIS */
171 PORT_CERR_DATA = 3, /* Error in data FIS not detected by dev */
172 PORT_CERR_SEND = 4, /* Initial cmd FIS transmission failure */
173 PORT_CERR_INCONSISTENT = 5, /* Protocol mismatch */
174 PORT_CERR_DIRECTION = 6, /* Data direction mismatch */
175 PORT_CERR_UNDERRUN = 7, /* Ran out of SGEs while writing */
176 PORT_CERR_OVERRUN = 8, /* Ran out of SGEs while reading */
177 PORT_CERR_PKT_PROT = 11, /* DIR invalid in 1st PIO setup of ATAPI */
178 PORT_CERR_SGT_BOUNDARY = 16, /* PLD ecode 00 - SGT not on qword boundary */
179 PORT_CERR_SGT_TGTABRT = 17, /* PLD ecode 01 - target abort */
180 PORT_CERR_SGT_MSTABRT = 18, /* PLD ecode 10 - master abort */
181 PORT_CERR_SGT_PCIPERR = 19, /* PLD ecode 11 - PCI parity err while fetching SGT */
182 PORT_CERR_CMD_BOUNDARY = 24, /* ctrl[15:13] 001 - PRB not on qword boundary */
183 PORT_CERR_CMD_TGTABRT = 25, /* ctrl[15:13] 010 - target abort */
184 PORT_CERR_CMD_MSTABRT = 26, /* ctrl[15:13] 100 - master abort */
185 PORT_CERR_CMD_PCIPERR = 27, /* ctrl[15:13] 110 - PCI parity err while fetching PRB */
186 PORT_CERR_XFR_UNDEF = 32, /* PSD ecode 00 - undefined */
187 PORT_CERR_XFR_TGTABRT = 33, /* PSD ecode 01 - target abort */
188 PORT_CERR_XFR_MSGABRT = 34, /* PSD ecode 10 - master abort */
189 PORT_CERR_XFR_PCIPERR = 35, /* PSD ecode 11 - PCI prity err during transfer */
Tejun Heo83bbecc2005-08-17 13:09:18 +0900190 PORT_CERR_SENDSERVICE = 36, /* FIS received while sending service */
Tejun Heoedb33662005-07-28 10:36:22 +0900191
192 /*
193 * Other constants
194 */
195 SGE_TRM = (1 << 31), /* Last SGE in chain */
196 PRB_SOFT_RST = (1 << 7), /* Soft reset request (ign BSY?) */
197
198 /* board id */
199 BID_SIL3124 = 0,
200 BID_SIL3132 = 1,
201
202 IRQ_STAT_4PORTS = 0xf,
203};
204
205struct sil24_cmd_block {
206 struct sil24_prb prb;
207 struct sil24_sge sge[LIBATA_MAX_PRD];
208};
209
210/*
211 * ap->private_data
212 *
213 * The preview driver always returned 0 for status. We emulate it
214 * here from the previous interrupt.
215 */
216struct sil24_port_priv {
Tejun Heoedb33662005-07-28 10:36:22 +0900217 struct sil24_cmd_block *cmd_block; /* 32 cmd blocks */
218 dma_addr_t cmd_block_dma; /* DMA base addr for them */
Tejun Heo6a575fa2005-10-06 11:43:39 +0900219 struct ata_taskfile tf; /* Cached taskfile registers */
Tejun Heoedb33662005-07-28 10:36:22 +0900220};
221
222/* ap->host_set->private_data */
223struct sil24_host_priv {
224 void *host_base; /* global controller control (128 bytes @BAR0) */
225 void *port_base; /* port registers (4 * 8192 bytes @BAR2) */
226};
227
228static u8 sil24_check_status(struct ata_port *ap);
229static u8 sil24_check_err(struct ata_port *ap);
230static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg);
231static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val);
232static void sil24_phy_reset(struct ata_port *ap);
233static void sil24_qc_prep(struct ata_queued_cmd *qc);
234static int sil24_qc_issue(struct ata_queued_cmd *qc);
235static void sil24_irq_clear(struct ata_port *ap);
236static void sil24_eng_timeout(struct ata_port *ap);
237static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
238static int sil24_port_start(struct ata_port *ap);
239static void sil24_port_stop(struct ata_port *ap);
240static void sil24_host_stop(struct ata_host_set *host_set);
241static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
242
243static struct pci_device_id sil24_pci_tbl[] = {
244 { 0x1095, 0x3124, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3124 },
245 { 0x1095, 0x3132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3132 },
246};
247
248static struct pci_driver sil24_pci_driver = {
249 .name = DRV_NAME,
250 .id_table = sil24_pci_tbl,
251 .probe = sil24_init_one,
252 .remove = ata_pci_remove_one, /* safe? */
253};
254
255static Scsi_Host_Template sil24_sht = {
256 .module = THIS_MODULE,
257 .name = DRV_NAME,
258 .ioctl = ata_scsi_ioctl,
259 .queuecommand = ata_scsi_queuecmd,
260 .eh_strategy_handler = ata_scsi_error,
261 .can_queue = ATA_DEF_QUEUE,
262 .this_id = ATA_SHT_THIS_ID,
263 .sg_tablesize = LIBATA_MAX_PRD,
264 .max_sectors = ATA_MAX_SECTORS,
265 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
266 .emulated = ATA_SHT_EMULATED,
267 .use_clustering = ATA_SHT_USE_CLUSTERING,
268 .proc_name = DRV_NAME,
269 .dma_boundary = ATA_DMA_BOUNDARY,
270 .slave_configure = ata_scsi_slave_config,
271 .bios_param = ata_std_bios_param,
272 .ordered_flush = 1, /* NCQ not supported yet */
273};
274
275static struct ata_port_operations sil24_ops = {
276 .port_disable = ata_port_disable,
277
278 .check_status = sil24_check_status,
279 .check_altstatus = sil24_check_status,
280 .check_err = sil24_check_err,
281 .dev_select = ata_noop_dev_select,
282
283 .phy_reset = sil24_phy_reset,
284
285 .qc_prep = sil24_qc_prep,
286 .qc_issue = sil24_qc_issue,
287
288 .eng_timeout = sil24_eng_timeout,
289
290 .irq_handler = sil24_interrupt,
291 .irq_clear = sil24_irq_clear,
292
293 .scr_read = sil24_scr_read,
294 .scr_write = sil24_scr_write,
295
296 .port_start = sil24_port_start,
297 .port_stop = sil24_port_stop,
298 .host_stop = sil24_host_stop,
299};
300
301static struct ata_port_info sil24_port_info[] = {
302 /* sil_3124 */
303 {
304 .sht = &sil24_sht,
305 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
306 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
307 ATA_FLAG_PIO_DMA,
308 .pio_mask = 0x1f, /* pio0-4 */
309 .mwdma_mask = 0x07, /* mwdma0-2 */
310 .udma_mask = 0x3f, /* udma0-5 */
311 .port_ops = &sil24_ops,
312 },
313 /* sil_3132 */
314 {
315 .sht = &sil24_sht,
316 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
317 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
318 ATA_FLAG_PIO_DMA,
319 .pio_mask = 0x1f, /* pio0-4 */
320 .mwdma_mask = 0x07, /* mwdma0-2 */
321 .udma_mask = 0x3f, /* udma0-5 */
322 .port_ops = &sil24_ops,
323 },
324};
325
Tejun Heo6a575fa2005-10-06 11:43:39 +0900326static inline void sil24_update_tf(struct ata_port *ap)
327{
328 struct sil24_port_priv *pp = ap->private_data;
329 void *port = (void *)ap->ioaddr.cmd_addr;
330 struct sil24_prb *prb = port;
331
332 ata_tf_from_fis(prb->fis, &pp->tf);
333}
334
Tejun Heoedb33662005-07-28 10:36:22 +0900335static u8 sil24_check_status(struct ata_port *ap)
336{
Tejun Heo6a575fa2005-10-06 11:43:39 +0900337 struct sil24_port_priv *pp = ap->private_data;
338 return pp->tf.command;
Tejun Heoedb33662005-07-28 10:36:22 +0900339}
340
341static u8 sil24_check_err(struct ata_port *ap)
342{
Tejun Heo6a575fa2005-10-06 11:43:39 +0900343 struct sil24_port_priv *pp = ap->private_data;
344 return pp->tf.feature;
Tejun Heoedb33662005-07-28 10:36:22 +0900345}
346
347static int sil24_scr_map[] = {
348 [SCR_CONTROL] = 0,
349 [SCR_STATUS] = 1,
350 [SCR_ERROR] = 2,
351 [SCR_ACTIVE] = 3,
352};
353
354static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg)
355{
356 void *scr_addr = (void *)ap->ioaddr.scr_addr;
357 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
358 void *addr;
359 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
360 return readl(scr_addr + sil24_scr_map[sc_reg] * 4);
361 }
362 return 0xffffffffU;
363}
364
365static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val)
366{
367 void *scr_addr = (void *)ap->ioaddr.scr_addr;
368 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
369 void *addr;
370 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
371 writel(val, scr_addr + sil24_scr_map[sc_reg] * 4);
372 }
373}
374
375static void sil24_phy_reset(struct ata_port *ap)
376{
377 __sata_phy_reset(ap);
378 /*
379 * No ATAPI yet. Just unconditionally indicate ATA device.
380 * If ATAPI device is attached, it will fail ATA_CMD_ID_ATA
381 * and libata core will ignore the device.
382 */
383 if (!(ap->flags & ATA_FLAG_PORT_DISABLED))
384 ap->device[0].class = ATA_DEV_ATA;
385}
386
387static inline void sil24_fill_sg(struct ata_queued_cmd *qc,
388 struct sil24_cmd_block *cb)
389{
390 struct scatterlist *sg = qc->sg;
391 struct sil24_sge *sge = cb->sge;
392 unsigned i;
393
394 for (i = 0; i < qc->n_elem; i++, sg++, sge++) {
395 sge->addr = cpu_to_le64(sg_dma_address(sg));
396 sge->cnt = cpu_to_le32(sg_dma_len(sg));
397 sge->flags = 0;
398 sge->flags = i < qc->n_elem - 1 ? 0 : cpu_to_le32(SGE_TRM);
399 }
400}
401
402static void sil24_qc_prep(struct ata_queued_cmd *qc)
403{
404 struct ata_port *ap = qc->ap;
405 struct sil24_port_priv *pp = ap->private_data;
406 struct sil24_cmd_block *cb = pp->cmd_block + qc->tag;
407 struct sil24_prb *prb = &cb->prb;
408
409 switch (qc->tf.protocol) {
410 case ATA_PROT_PIO:
411 case ATA_PROT_DMA:
412 case ATA_PROT_NODATA:
413 break;
414 default:
415 /* ATAPI isn't supported yet */
416 BUG();
417 }
418
419 ata_tf_to_fis(&qc->tf, prb->fis, 0);
420
421 if (qc->flags & ATA_QCFLAG_DMAMAP)
422 sil24_fill_sg(qc, cb);
423}
424
425static int sil24_qc_issue(struct ata_queued_cmd *qc)
426{
427 struct ata_port *ap = qc->ap;
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900428 void *port = (void *)ap->ioaddr.cmd_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900429 struct sil24_port_priv *pp = ap->private_data;
430 dma_addr_t paddr = pp->cmd_block_dma + qc->tag * sizeof(*pp->cmd_block);
431
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900432 writel((u32)paddr, port + PORT_CMD_ACTIVATE);
Tejun Heoedb33662005-07-28 10:36:22 +0900433 return 0;
434}
435
436static void sil24_irq_clear(struct ata_port *ap)
437{
438 /* unused */
439}
440
Tejun Heo923f1222005-09-13 13:21:29 +0900441static int __sil24_reset_controller(void *port)
Tejun Heoedb33662005-07-28 10:36:22 +0900442{
Tejun Heoedb33662005-07-28 10:36:22 +0900443 int cnt;
444 u32 tmp;
445
Tejun Heoedb33662005-07-28 10:36:22 +0900446 /* Reset controller state. Is this correct? */
447 writel(PORT_CS_DEV_RST, port + PORT_CTRL_STAT);
448 readl(port + PORT_CTRL_STAT); /* sync */
449
450 /* Max ~100ms */
451 for (cnt = 0; cnt < 1000; cnt++) {
452 udelay(100);
453 tmp = readl(port + PORT_CTRL_STAT);
454 if (!(tmp & PORT_CS_DEV_RST))
455 break;
456 }
Tejun Heo923f1222005-09-13 13:21:29 +0900457
Tejun Heoedb33662005-07-28 10:36:22 +0900458 if (tmp & PORT_CS_DEV_RST)
Tejun Heo923f1222005-09-13 13:21:29 +0900459 return -1;
460 return 0;
461}
462
463static void sil24_reset_controller(struct ata_port *ap)
464{
465 printk(KERN_NOTICE DRV_NAME
466 " ata%u: resetting controller...\n", ap->id);
467 if (__sil24_reset_controller((void *)ap->ioaddr.cmd_addr))
468 printk(KERN_ERR DRV_NAME
469 " ata%u: failed to reset controller\n", ap->id);
Tejun Heoedb33662005-07-28 10:36:22 +0900470}
471
472static void sil24_eng_timeout(struct ata_port *ap)
473{
474 struct ata_queued_cmd *qc;
475
476 qc = ata_qc_from_tag(ap, ap->active_tag);
477 if (!qc) {
478 printk(KERN_ERR "ata%u: BUG: tiemout without command\n",
479 ap->id);
480 return;
481 }
482
483 /*
484 * hack alert! We cannot use the supplied completion
485 * function from inside the ->eh_strategy_handler() thread.
486 * libata is the only user of ->eh_strategy_handler() in
487 * any kernel, so the default scsi_done() assumes it is
488 * not being called from the SCSI EH.
489 */
490 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
491 qc->scsidone = scsi_finish_command;
492 ata_qc_complete(qc, ATA_ERR);
493
494 sil24_reset_controller(ap);
495}
496
Tejun Heo87466182005-08-17 13:08:57 +0900497static void sil24_error_intr(struct ata_port *ap, u32 slot_stat)
498{
499 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900500 struct sil24_port_priv *pp = ap->private_data;
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900501 void *port = (void *)ap->ioaddr.cmd_addr;
Tejun Heo87466182005-08-17 13:08:57 +0900502 u32 irq_stat, cmd_err, sstatus, serror;
503
504 irq_stat = readl(port + PORT_IRQ_STAT);
Tejun Heoad6e90f62005-10-06 11:43:29 +0900505 writel(irq_stat, port + PORT_IRQ_STAT); /* clear irq */
506
507 if (!(irq_stat & PORT_IRQ_ERROR)) {
508 /* ignore non-completion, non-error irqs for now */
509 printk(KERN_WARNING DRV_NAME
510 "ata%u: non-error exception irq (irq_stat %x)\n",
511 ap->id, irq_stat);
512 return;
513 }
514
Tejun Heo87466182005-08-17 13:08:57 +0900515 cmd_err = readl(port + PORT_CMD_ERR);
516 sstatus = readl(port + PORT_SSTATUS);
517 serror = readl(port + PORT_SERROR);
Tejun Heo87466182005-08-17 13:08:57 +0900518 if (serror)
519 writel(serror, port + PORT_SERROR);
520
521 printk(KERN_ERR DRV_NAME " ata%u: error interrupt on port%d\n"
522 " stat=0x%x irq=0x%x cmd_err=%d sstatus=0x%x serror=0x%x\n",
523 ap->id, ap->port_no, slot_stat, irq_stat, cmd_err, sstatus, serror);
524
Tejun Heo6a575fa2005-10-06 11:43:39 +0900525 if (cmd_err == PORT_CERR_DEV || cmd_err == PORT_CERR_SDB) {
526 /*
527 * Device is reporting error, tf registers are valid.
528 */
529 sil24_update_tf(ap);
530 } else {
531 /*
532 * Other errors. libata currently doesn't have any
533 * mechanism to report these errors. Just turn on
534 * ATA_ERR.
535 */
536 pp->tf.command = ATA_ERR;
537 }
538
Tejun Heo87466182005-08-17 13:08:57 +0900539 if (qc)
Tejun Heo6a575fa2005-10-06 11:43:39 +0900540 ata_qc_complete(qc, pp->tf.command);
Tejun Heo87466182005-08-17 13:08:57 +0900541
542 sil24_reset_controller(ap);
543}
544
Tejun Heoedb33662005-07-28 10:36:22 +0900545static inline void sil24_host_intr(struct ata_port *ap)
546{
547 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900548 void *port = (void *)ap->ioaddr.cmd_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900549 u32 slot_stat;
550
551 slot_stat = readl(port + PORT_SLOT_STAT);
552 if (!(slot_stat & HOST_SSTAT_ATTN)) {
Tejun Heo6a575fa2005-10-06 11:43:39 +0900553 struct sil24_port_priv *pp = ap->private_data;
554 /*
555 * !HOST_SSAT_ATTN guarantees successful completion,
556 * so reading back tf registers is unnecessary for
557 * most commands. TODO: read tf registers for
558 * commands which require these values on successful
559 * completion (EXECUTE DEVICE DIAGNOSTIC, CHECK POWER,
560 * DEVICE RESET and READ PORT MULTIPLIER (any more?).
561 */
562 sil24_update_tf(ap);
563
Tejun Heoedb33662005-07-28 10:36:22 +0900564 if (qc)
Tejun Heo6a575fa2005-10-06 11:43:39 +0900565 ata_qc_complete(qc, pp->tf.command);
Tejun Heo87466182005-08-17 13:08:57 +0900566 } else
567 sil24_error_intr(ap, slot_stat);
Tejun Heoedb33662005-07-28 10:36:22 +0900568}
569
570static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
571{
572 struct ata_host_set *host_set = dev_instance;
573 struct sil24_host_priv *hpriv = host_set->private_data;
574 unsigned handled = 0;
575 u32 status;
576 int i;
577
578 status = readl(hpriv->host_base + HOST_IRQ_STAT);
579
Tejun Heo06460ae2005-08-17 13:08:52 +0900580 if (status == 0xffffffff) {
581 printk(KERN_ERR DRV_NAME ": IRQ status == 0xffffffff, "
582 "PCI fault or device removal?\n");
583 goto out;
584 }
585
Tejun Heoedb33662005-07-28 10:36:22 +0900586 if (!(status & IRQ_STAT_4PORTS))
587 goto out;
588
589 spin_lock(&host_set->lock);
590
591 for (i = 0; i < host_set->n_ports; i++)
592 if (status & (1 << i)) {
593 struct ata_port *ap = host_set->ports[i];
Tejun Heo3cc45712005-08-17 13:08:47 +0900594 if (ap && !(ap->flags & ATA_FLAG_PORT_DISABLED)) {
Tejun Heoedb33662005-07-28 10:36:22 +0900595 sil24_host_intr(host_set->ports[i]);
Tejun Heo3cc45712005-08-17 13:08:47 +0900596 handled++;
597 } else
598 printk(KERN_ERR DRV_NAME
599 ": interrupt from disabled port %d\n", i);
Tejun Heoedb33662005-07-28 10:36:22 +0900600 }
601
602 spin_unlock(&host_set->lock);
603 out:
604 return IRQ_RETVAL(handled);
605}
606
607static int sil24_port_start(struct ata_port *ap)
608{
609 struct device *dev = ap->host_set->dev;
Tejun Heoedb33662005-07-28 10:36:22 +0900610 struct sil24_port_priv *pp;
611 struct sil24_cmd_block *cb;
612 size_t cb_size = sizeof(*cb);
613 dma_addr_t cb_dma;
614
615 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
616 if (!pp)
617 return -ENOMEM;
618 memset(pp, 0, sizeof(*pp));
619
Tejun Heo6a575fa2005-10-06 11:43:39 +0900620 pp->tf.command = ATA_DRDY;
621
Tejun Heoedb33662005-07-28 10:36:22 +0900622 cb = dma_alloc_coherent(dev, cb_size, &cb_dma, GFP_KERNEL);
623 if (!cb) {
624 kfree(pp);
625 return -ENOMEM;
626 }
627 memset(cb, 0, cb_size);
628
Tejun Heoedb33662005-07-28 10:36:22 +0900629 pp->cmd_block = cb;
630 pp->cmd_block_dma = cb_dma;
631
632 ap->private_data = pp;
633
634 return 0;
635}
636
637static void sil24_port_stop(struct ata_port *ap)
638{
639 struct device *dev = ap->host_set->dev;
640 struct sil24_port_priv *pp = ap->private_data;
641 size_t cb_size = sizeof(*pp->cmd_block);
642
643 dma_free_coherent(dev, cb_size, pp->cmd_block, pp->cmd_block_dma);
644 kfree(pp);
645}
646
647static void sil24_host_stop(struct ata_host_set *host_set)
648{
649 struct sil24_host_priv *hpriv = host_set->private_data;
650
651 iounmap(hpriv->host_base);
652 iounmap(hpriv->port_base);
653 kfree(hpriv);
654}
655
656static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
657{
658 static int printed_version = 0;
659 unsigned int board_id = (unsigned int)ent->driver_data;
660 struct ata_probe_ent *probe_ent = NULL;
661 struct sil24_host_priv *hpriv = NULL;
662 void *host_base = NULL, *port_base = NULL;
663 int i, rc;
664
665 if (!printed_version++)
666 printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");
667
668 rc = pci_enable_device(pdev);
669 if (rc)
670 return rc;
671
672 rc = pci_request_regions(pdev, DRV_NAME);
673 if (rc)
674 goto out_disable;
675
676 rc = -ENOMEM;
677 /* ioremap mmio registers */
678 host_base = ioremap(pci_resource_start(pdev, 0),
679 pci_resource_len(pdev, 0));
680 if (!host_base)
681 goto out_free;
682 port_base = ioremap(pci_resource_start(pdev, 2),
683 pci_resource_len(pdev, 2));
684 if (!port_base)
685 goto out_free;
686
687 /* allocate & init probe_ent and hpriv */
688 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
689 if (!probe_ent)
690 goto out_free;
691
692 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
693 if (!hpriv)
694 goto out_free;
695
696 memset(probe_ent, 0, sizeof(*probe_ent));
697 probe_ent->dev = pci_dev_to_dev(pdev);
698 INIT_LIST_HEAD(&probe_ent->node);
699
700 probe_ent->sht = sil24_port_info[board_id].sht;
701 probe_ent->host_flags = sil24_port_info[board_id].host_flags;
702 probe_ent->pio_mask = sil24_port_info[board_id].pio_mask;
703 probe_ent->udma_mask = sil24_port_info[board_id].udma_mask;
704 probe_ent->port_ops = sil24_port_info[board_id].port_ops;
705 probe_ent->n_ports = (board_id == BID_SIL3124) ? 4 : 2;
706
707 probe_ent->irq = pdev->irq;
708 probe_ent->irq_flags = SA_SHIRQ;
709 probe_ent->mmio_base = port_base;
710 probe_ent->private_data = hpriv;
711
712 memset(hpriv, 0, sizeof(*hpriv));
713 hpriv->host_base = host_base;
714 hpriv->port_base = port_base;
715
716 /*
717 * Configure the device
718 */
719 /*
720 * FIXME: This device is certainly 64-bit capable. We just
721 * don't know how to use it. After fixing 32bit activation in
722 * this function, enable 64bit masks here.
723 */
724 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
725 if (rc) {
726 printk(KERN_ERR DRV_NAME "(%s): 32-bit DMA enable failed\n",
727 pci_name(pdev));
728 goto out_free;
729 }
730 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
731 if (rc) {
732 printk(KERN_ERR DRV_NAME "(%s): 32-bit consistent DMA enable failed\n",
733 pci_name(pdev));
734 goto out_free;
735 }
736
737 /* GPIO off */
738 writel(0, host_base + HOST_FLASH_CMD);
739
740 /* Mask interrupts during initialization */
741 writel(0, host_base + HOST_CTRL);
742
743 for (i = 0; i < probe_ent->n_ports; i++) {
744 void *port = port_base + i * PORT_REGS_SIZE;
745 unsigned long portu = (unsigned long)port;
746 u32 tmp;
747 int cnt;
748
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900749 probe_ent->port[i].cmd_addr = portu + PORT_PRB;
Tejun Heoedb33662005-07-28 10:36:22 +0900750 probe_ent->port[i].scr_addr = portu + PORT_SCONTROL;
751
752 ata_std_ports(&probe_ent->port[i]);
753
754 /* Initial PHY setting */
755 writel(0x20c, port + PORT_PHY_CFG);
756
757 /* Clear port RST */
758 tmp = readl(port + PORT_CTRL_STAT);
759 if (tmp & PORT_CS_PORT_RST) {
760 writel(PORT_CS_PORT_RST, port + PORT_CTRL_CLR);
761 readl(port + PORT_CTRL_STAT); /* sync */
762 for (cnt = 0; cnt < 10; cnt++) {
763 msleep(10);
764 tmp = readl(port + PORT_CTRL_STAT);
765 if (!(tmp & PORT_CS_PORT_RST))
766 break;
767 }
768 if (tmp & PORT_CS_PORT_RST)
769 printk(KERN_ERR DRV_NAME
770 "(%s): failed to clear port RST\n",
771 pci_name(pdev));
772 }
773
774 /* Zero error counters. */
775 writel(0x8000, port + PORT_DECODE_ERR_THRESH);
776 writel(0x8000, port + PORT_CRC_ERR_THRESH);
777 writel(0x8000, port + PORT_HSHK_ERR_THRESH);
778 writel(0x0000, port + PORT_DECODE_ERR_CNT);
779 writel(0x0000, port + PORT_CRC_ERR_CNT);
780 writel(0x0000, port + PORT_HSHK_ERR_CNT);
781
782 /* FIXME: 32bit activation? */
783 writel(0, port + PORT_ACTIVATE_UPPER_ADDR);
784 writel(PORT_CS_32BIT_ACTV, port + PORT_CTRL_STAT);
785
786 /* Configure interrupts */
787 writel(0xffff, port + PORT_IRQ_ENABLE_CLR);
788 writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR | PORT_IRQ_SDB_FIS,
789 port + PORT_IRQ_ENABLE_SET);
790
791 /* Clear interrupts */
792 writel(0x0fff0fff, port + PORT_IRQ_STAT);
793 writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_CLR);
Tejun Heo923f1222005-09-13 13:21:29 +0900794
795 /* Clear port multiplier enable and resume bits */
796 writel(PORT_CS_PM_EN | PORT_CS_RESUME, port + PORT_CTRL_CLR);
797
798 /* Reset itself */
799 if (__sil24_reset_controller(port))
800 printk(KERN_ERR DRV_NAME
801 "(%s): failed to reset controller\n",
802 pci_name(pdev));
Tejun Heoedb33662005-07-28 10:36:22 +0900803 }
804
805 /* Turn on interrupts */
806 writel(IRQ_STAT_4PORTS, host_base + HOST_CTRL);
807
808 pci_set_master(pdev);
809
Tejun Heo14834672005-08-17 13:08:42 +0900810 /* FIXME: check ata_device_add return value */
Tejun Heoedb33662005-07-28 10:36:22 +0900811 ata_device_add(probe_ent);
812
813 kfree(probe_ent);
814 return 0;
815
816 out_free:
817 if (host_base)
818 iounmap(host_base);
819 if (port_base)
820 iounmap(port_base);
821 kfree(probe_ent);
822 kfree(hpriv);
823 pci_release_regions(pdev);
824 out_disable:
825 pci_disable_device(pdev);
826 return rc;
827}
828
829static int __init sil24_init(void)
830{
831 return pci_module_init(&sil24_pci_driver);
832}
833
834static void __exit sil24_exit(void)
835{
836 pci_unregister_driver(&sil24_pci_driver);
837}
838
839MODULE_AUTHOR("Tejun Heo");
840MODULE_DESCRIPTION("Silicon Image 3124/3132 SATA low-level driver");
841MODULE_LICENSE("GPL");
842MODULE_DEVICE_TABLE(pci, sil24_pci_tbl);
843
844module_init(sil24_init);
845module_exit(sil24_exit);