2 * sata_sil24.c - Driver for Silicon Image 3124/3132 SATA-2 controllers
4 * Copyright 2005 Tejun Heo
6 * Based on preview driver from Silicon Image.
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...
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.
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
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.
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>
40 #include <linux/libata.h>
43 #define DRV_NAME "sata_sil24"
44 #define DRV_VERSION "0.22" /* Silicon Image's preview driver was 0.10 */
49 * Port request block (PRB) 32 bytes
59 * Scatter gather entry (SGE) 16 bytes
70 struct sil24_port_multiplier {
77 * Global controller registers (128 bytes @ BAR0)
80 HOST_SLOT_STAT = 0x00, /* 32 bit slot stat * 4 */
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,
90 HOST_FLASH_DATA = 0x74,
91 HOST_TRANSITION_DETECT = 0x75,
92 HOST_GPIO_CTRL = 0x76,
93 HOST_I2C_ADDR = 0x78, /* 32 bit */
95 HOST_I2C_XFER_CNT = 0x7e,
98 /* HOST_SLOT_STAT bits */
99 HOST_SSTAT_ATTN = (1 << 31),
103 * (8192 bytes @ +0x0000, +0x2000, +0x4000 and +0x6000 @ BAR2)
105 PORT_REGS_SIZE = 0x2000,
106 PORT_PRB = 0x0000, /* (32 bytes PRB + 16 bytes SGEs * 6) * 31 (3968 bytes) */
108 PORT_PM = 0x0f80, /* 8 bytes PM * 16 (128 bytes) */
110 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 */
115 PORT_ACTIVATE_UPPER_ADDR= 0x101c,
116 PORT_EXEC_FIFO = 0x1020, /* command execution fifo */
117 PORT_CMD_ERR = 0x1024, /* command error number */
118 PORT_FIS_CFG = 0x1028,
119 PORT_FIFO_THRES = 0x102c,
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,
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,
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 */
143 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 */
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 */
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),
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),
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 */
190 PORT_CERR_SENDSERVICE = 36, /* FIS received while sending service */
195 SGE_TRM = (1 << 31), /* Last SGE in chain */
196 PRB_SOFT_RST = (1 << 7), /* Soft reset request (ign BSY?) */
202 IRQ_STAT_4PORTS = 0xf,
205 struct sil24_cmd_block {
206 struct sil24_prb prb;
207 struct sil24_sge sge[LIBATA_MAX_PRD];
213 * The preview driver always returned 0 for status. We emulate it
214 * here from the previous interrupt.
216 struct sil24_port_priv {
217 struct sil24_cmd_block *cmd_block; /* 32 cmd blocks */
218 dma_addr_t cmd_block_dma; /* DMA base addr for them */
219 struct ata_taskfile tf; /* Cached taskfile registers */
222 /* ap->host_set->private_data */
223 struct sil24_host_priv {
224 void *host_base; /* global controller control (128 bytes @BAR0) */
225 void *port_base; /* port registers (4 * 8192 bytes @BAR2) */
228 static u8 sil24_check_status(struct ata_port *ap);
229 static u8 sil24_check_err(struct ata_port *ap);
230 static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg);
231 static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val);
232 static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
233 static void sil24_phy_reset(struct ata_port *ap);
234 static void sil24_qc_prep(struct ata_queued_cmd *qc);
235 static int sil24_qc_issue(struct ata_queued_cmd *qc);
236 static void sil24_irq_clear(struct ata_port *ap);
237 static void sil24_eng_timeout(struct ata_port *ap);
238 static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
239 static int sil24_port_start(struct ata_port *ap);
240 static void sil24_port_stop(struct ata_port *ap);
241 static void sil24_host_stop(struct ata_host_set *host_set);
242 static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
244 static struct pci_device_id sil24_pci_tbl[] = {
245 { 0x1095, 0x3124, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3124 },
246 { 0x1095, 0x3132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3132 },
249 static struct pci_driver sil24_pci_driver = {
251 .id_table = sil24_pci_tbl,
252 .probe = sil24_init_one,
253 .remove = ata_pci_remove_one, /* safe? */
256 static Scsi_Host_Template sil24_sht = {
257 .module = THIS_MODULE,
259 .ioctl = ata_scsi_ioctl,
260 .queuecommand = ata_scsi_queuecmd,
261 .eh_strategy_handler = ata_scsi_error,
262 .can_queue = ATA_DEF_QUEUE,
263 .this_id = ATA_SHT_THIS_ID,
264 .sg_tablesize = LIBATA_MAX_PRD,
265 .max_sectors = ATA_MAX_SECTORS,
266 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
267 .emulated = ATA_SHT_EMULATED,
268 .use_clustering = ATA_SHT_USE_CLUSTERING,
269 .proc_name = DRV_NAME,
270 .dma_boundary = ATA_DMA_BOUNDARY,
271 .slave_configure = ata_scsi_slave_config,
272 .bios_param = ata_std_bios_param,
273 .ordered_flush = 1, /* NCQ not supported yet */
276 static struct ata_port_operations sil24_ops = {
277 .port_disable = ata_port_disable,
279 .check_status = sil24_check_status,
280 .check_altstatus = sil24_check_status,
281 .check_err = sil24_check_err,
282 .dev_select = ata_noop_dev_select,
284 .tf_read = sil24_tf_read,
286 .phy_reset = sil24_phy_reset,
288 .qc_prep = sil24_qc_prep,
289 .qc_issue = sil24_qc_issue,
291 .eng_timeout = sil24_eng_timeout,
293 .irq_handler = sil24_interrupt,
294 .irq_clear = sil24_irq_clear,
296 .scr_read = sil24_scr_read,
297 .scr_write = sil24_scr_write,
299 .port_start = sil24_port_start,
300 .port_stop = sil24_port_stop,
301 .host_stop = sil24_host_stop,
304 static struct ata_port_info sil24_port_info[] = {
308 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
309 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
311 .pio_mask = 0x1f, /* pio0-4 */
312 .mwdma_mask = 0x07, /* mwdma0-2 */
313 .udma_mask = 0x3f, /* udma0-5 */
314 .port_ops = &sil24_ops,
319 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
320 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
322 .pio_mask = 0x1f, /* pio0-4 */
323 .mwdma_mask = 0x07, /* mwdma0-2 */
324 .udma_mask = 0x3f, /* udma0-5 */
325 .port_ops = &sil24_ops,
329 static inline void sil24_update_tf(struct ata_port *ap)
331 struct sil24_port_priv *pp = ap->private_data;
332 void *port = (void *)ap->ioaddr.cmd_addr;
333 struct sil24_prb *prb = port;
335 ata_tf_from_fis(prb->fis, &pp->tf);
338 static u8 sil24_check_status(struct ata_port *ap)
340 struct sil24_port_priv *pp = ap->private_data;
341 return pp->tf.command;
344 static u8 sil24_check_err(struct ata_port *ap)
346 struct sil24_port_priv *pp = ap->private_data;
347 return pp->tf.feature;
350 static int sil24_scr_map[] = {
357 static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg)
359 void *scr_addr = (void *)ap->ioaddr.scr_addr;
360 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
362 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
363 return readl(scr_addr + sil24_scr_map[sc_reg] * 4);
368 static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val)
370 void *scr_addr = (void *)ap->ioaddr.scr_addr;
371 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
373 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
374 writel(val, scr_addr + sil24_scr_map[sc_reg] * 4);
378 static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
380 struct sil24_port_priv *pp = ap->private_data;
384 static void sil24_phy_reset(struct ata_port *ap)
386 __sata_phy_reset(ap);
388 * No ATAPI yet. Just unconditionally indicate ATA device.
389 * If ATAPI device is attached, it will fail ATA_CMD_ID_ATA
390 * and libata core will ignore the device.
392 if (!(ap->flags & ATA_FLAG_PORT_DISABLED))
393 ap->device[0].class = ATA_DEV_ATA;
396 static inline void sil24_fill_sg(struct ata_queued_cmd *qc,
397 struct sil24_cmd_block *cb)
399 struct scatterlist *sg = qc->sg;
400 struct sil24_sge *sge = cb->sge;
403 for (i = 0; i < qc->n_elem; i++, sg++, sge++) {
404 sge->addr = cpu_to_le64(sg_dma_address(sg));
405 sge->cnt = cpu_to_le32(sg_dma_len(sg));
407 sge->flags = i < qc->n_elem - 1 ? 0 : cpu_to_le32(SGE_TRM);
411 static void sil24_qc_prep(struct ata_queued_cmd *qc)
413 struct ata_port *ap = qc->ap;
414 struct sil24_port_priv *pp = ap->private_data;
415 struct sil24_cmd_block *cb = pp->cmd_block + qc->tag;
416 struct sil24_prb *prb = &cb->prb;
418 switch (qc->tf.protocol) {
421 case ATA_PROT_NODATA:
424 /* ATAPI isn't supported yet */
428 ata_tf_to_fis(&qc->tf, prb->fis, 0);
430 if (qc->flags & ATA_QCFLAG_DMAMAP)
431 sil24_fill_sg(qc, cb);
434 static int sil24_qc_issue(struct ata_queued_cmd *qc)
436 struct ata_port *ap = qc->ap;
437 void *port = (void *)ap->ioaddr.cmd_addr;
438 struct sil24_port_priv *pp = ap->private_data;
439 dma_addr_t paddr = pp->cmd_block_dma + qc->tag * sizeof(*pp->cmd_block);
441 writel((u32)paddr, port + PORT_CMD_ACTIVATE);
445 static void sil24_irq_clear(struct ata_port *ap)
450 static int __sil24_reset_controller(void *port)
455 /* Reset controller state. Is this correct? */
456 writel(PORT_CS_DEV_RST, port + PORT_CTRL_STAT);
457 readl(port + PORT_CTRL_STAT); /* sync */
460 for (cnt = 0; cnt < 1000; cnt++) {
462 tmp = readl(port + PORT_CTRL_STAT);
463 if (!(tmp & PORT_CS_DEV_RST))
467 if (tmp & PORT_CS_DEV_RST)
472 static void sil24_reset_controller(struct ata_port *ap)
474 printk(KERN_NOTICE DRV_NAME
475 " ata%u: resetting controller...\n", ap->id);
476 if (__sil24_reset_controller((void *)ap->ioaddr.cmd_addr))
477 printk(KERN_ERR DRV_NAME
478 " ata%u: failed to reset controller\n", ap->id);
481 static void sil24_eng_timeout(struct ata_port *ap)
483 struct ata_queued_cmd *qc;
485 qc = ata_qc_from_tag(ap, ap->active_tag);
487 printk(KERN_ERR "ata%u: BUG: tiemout without command\n",
493 * hack alert! We cannot use the supplied completion
494 * function from inside the ->eh_strategy_handler() thread.
495 * libata is the only user of ->eh_strategy_handler() in
496 * any kernel, so the default scsi_done() assumes it is
497 * not being called from the SCSI EH.
499 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
500 qc->scsidone = scsi_finish_command;
501 ata_qc_complete(qc, ATA_ERR);
503 sil24_reset_controller(ap);
506 static void sil24_error_intr(struct ata_port *ap, u32 slot_stat)
508 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
509 struct sil24_port_priv *pp = ap->private_data;
510 void *port = (void *)ap->ioaddr.cmd_addr;
511 u32 irq_stat, cmd_err, sstatus, serror;
513 irq_stat = readl(port + PORT_IRQ_STAT);
514 writel(irq_stat, port + PORT_IRQ_STAT); /* clear irq */
516 if (!(irq_stat & PORT_IRQ_ERROR)) {
517 /* ignore non-completion, non-error irqs for now */
518 printk(KERN_WARNING DRV_NAME
519 "ata%u: non-error exception irq (irq_stat %x)\n",
524 cmd_err = readl(port + PORT_CMD_ERR);
525 sstatus = readl(port + PORT_SSTATUS);
526 serror = readl(port + PORT_SERROR);
528 writel(serror, port + PORT_SERROR);
530 printk(KERN_ERR DRV_NAME " ata%u: error interrupt on port%d\n"
531 " stat=0x%x irq=0x%x cmd_err=%d sstatus=0x%x serror=0x%x\n",
532 ap->id, ap->port_no, slot_stat, irq_stat, cmd_err, sstatus, serror);
534 if (cmd_err == PORT_CERR_DEV || cmd_err == PORT_CERR_SDB) {
536 * Device is reporting error, tf registers are valid.
541 * Other errors. libata currently doesn't have any
542 * mechanism to report these errors. Just turn on
545 pp->tf.command = ATA_ERR;
549 ata_qc_complete(qc, pp->tf.command);
551 sil24_reset_controller(ap);
554 static inline void sil24_host_intr(struct ata_port *ap)
556 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
557 void *port = (void *)ap->ioaddr.cmd_addr;
560 slot_stat = readl(port + PORT_SLOT_STAT);
561 if (!(slot_stat & HOST_SSTAT_ATTN)) {
562 struct sil24_port_priv *pp = ap->private_data;
564 * !HOST_SSAT_ATTN guarantees successful completion,
565 * so reading back tf registers is unnecessary for
566 * most commands. TODO: read tf registers for
567 * commands which require these values on successful
568 * completion (EXECUTE DEVICE DIAGNOSTIC, CHECK POWER,
569 * DEVICE RESET and READ PORT MULTIPLIER (any more?).
574 ata_qc_complete(qc, pp->tf.command);
576 sil24_error_intr(ap, slot_stat);
579 static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
581 struct ata_host_set *host_set = dev_instance;
582 struct sil24_host_priv *hpriv = host_set->private_data;
583 unsigned handled = 0;
587 status = readl(hpriv->host_base + HOST_IRQ_STAT);
589 if (status == 0xffffffff) {
590 printk(KERN_ERR DRV_NAME ": IRQ status == 0xffffffff, "
591 "PCI fault or device removal?\n");
595 if (!(status & IRQ_STAT_4PORTS))
598 spin_lock(&host_set->lock);
600 for (i = 0; i < host_set->n_ports; i++)
601 if (status & (1 << i)) {
602 struct ata_port *ap = host_set->ports[i];
603 if (ap && !(ap->flags & ATA_FLAG_PORT_DISABLED)) {
604 sil24_host_intr(host_set->ports[i]);
607 printk(KERN_ERR DRV_NAME
608 ": interrupt from disabled port %d\n", i);
611 spin_unlock(&host_set->lock);
613 return IRQ_RETVAL(handled);
616 static int sil24_port_start(struct ata_port *ap)
618 struct device *dev = ap->host_set->dev;
619 struct sil24_port_priv *pp;
620 struct sil24_cmd_block *cb;
621 size_t cb_size = sizeof(*cb);
624 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
627 memset(pp, 0, sizeof(*pp));
629 pp->tf.command = ATA_DRDY;
631 cb = dma_alloc_coherent(dev, cb_size, &cb_dma, GFP_KERNEL);
636 memset(cb, 0, cb_size);
639 pp->cmd_block_dma = cb_dma;
641 ap->private_data = pp;
646 static void sil24_port_stop(struct ata_port *ap)
648 struct device *dev = ap->host_set->dev;
649 struct sil24_port_priv *pp = ap->private_data;
650 size_t cb_size = sizeof(*pp->cmd_block);
652 dma_free_coherent(dev, cb_size, pp->cmd_block, pp->cmd_block_dma);
656 static void sil24_host_stop(struct ata_host_set *host_set)
658 struct sil24_host_priv *hpriv = host_set->private_data;
660 iounmap(hpriv->host_base);
661 iounmap(hpriv->port_base);
665 static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
667 static int printed_version = 0;
668 unsigned int board_id = (unsigned int)ent->driver_data;
669 struct ata_probe_ent *probe_ent = NULL;
670 struct sil24_host_priv *hpriv = NULL;
671 void *host_base = NULL, *port_base = NULL;
674 if (!printed_version++)
675 printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");
677 rc = pci_enable_device(pdev);
681 rc = pci_request_regions(pdev, DRV_NAME);
686 /* ioremap mmio registers */
687 host_base = ioremap(pci_resource_start(pdev, 0),
688 pci_resource_len(pdev, 0));
691 port_base = ioremap(pci_resource_start(pdev, 2),
692 pci_resource_len(pdev, 2));
696 /* allocate & init probe_ent and hpriv */
697 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
701 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
705 memset(probe_ent, 0, sizeof(*probe_ent));
706 probe_ent->dev = pci_dev_to_dev(pdev);
707 INIT_LIST_HEAD(&probe_ent->node);
709 probe_ent->sht = sil24_port_info[board_id].sht;
710 probe_ent->host_flags = sil24_port_info[board_id].host_flags;
711 probe_ent->pio_mask = sil24_port_info[board_id].pio_mask;
712 probe_ent->udma_mask = sil24_port_info[board_id].udma_mask;
713 probe_ent->port_ops = sil24_port_info[board_id].port_ops;
714 probe_ent->n_ports = (board_id == BID_SIL3124) ? 4 : 2;
716 probe_ent->irq = pdev->irq;
717 probe_ent->irq_flags = SA_SHIRQ;
718 probe_ent->mmio_base = port_base;
719 probe_ent->private_data = hpriv;
721 memset(hpriv, 0, sizeof(*hpriv));
722 hpriv->host_base = host_base;
723 hpriv->port_base = port_base;
726 * Configure the device
729 * FIXME: This device is certainly 64-bit capable. We just
730 * don't know how to use it. After fixing 32bit activation in
731 * this function, enable 64bit masks here.
733 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
735 printk(KERN_ERR DRV_NAME "(%s): 32-bit DMA enable failed\n",
739 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
741 printk(KERN_ERR DRV_NAME "(%s): 32-bit consistent DMA enable failed\n",
747 writel(0, host_base + HOST_FLASH_CMD);
749 /* Mask interrupts during initialization */
750 writel(0, host_base + HOST_CTRL);
752 for (i = 0; i < probe_ent->n_ports; i++) {
753 void *port = port_base + i * PORT_REGS_SIZE;
754 unsigned long portu = (unsigned long)port;
758 probe_ent->port[i].cmd_addr = portu + PORT_PRB;
759 probe_ent->port[i].scr_addr = portu + PORT_SCONTROL;
761 ata_std_ports(&probe_ent->port[i]);
763 /* Initial PHY setting */
764 writel(0x20c, port + PORT_PHY_CFG);
767 tmp = readl(port + PORT_CTRL_STAT);
768 if (tmp & PORT_CS_PORT_RST) {
769 writel(PORT_CS_PORT_RST, port + PORT_CTRL_CLR);
770 readl(port + PORT_CTRL_STAT); /* sync */
771 for (cnt = 0; cnt < 10; cnt++) {
773 tmp = readl(port + PORT_CTRL_STAT);
774 if (!(tmp & PORT_CS_PORT_RST))
777 if (tmp & PORT_CS_PORT_RST)
778 printk(KERN_ERR DRV_NAME
779 "(%s): failed to clear port RST\n",
783 /* Zero error counters. */
784 writel(0x8000, port + PORT_DECODE_ERR_THRESH);
785 writel(0x8000, port + PORT_CRC_ERR_THRESH);
786 writel(0x8000, port + PORT_HSHK_ERR_THRESH);
787 writel(0x0000, port + PORT_DECODE_ERR_CNT);
788 writel(0x0000, port + PORT_CRC_ERR_CNT);
789 writel(0x0000, port + PORT_HSHK_ERR_CNT);
791 /* FIXME: 32bit activation? */
792 writel(0, port + PORT_ACTIVATE_UPPER_ADDR);
793 writel(PORT_CS_32BIT_ACTV, port + PORT_CTRL_STAT);
795 /* Configure interrupts */
796 writel(0xffff, port + PORT_IRQ_ENABLE_CLR);
797 writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR | PORT_IRQ_SDB_FIS,
798 port + PORT_IRQ_ENABLE_SET);
800 /* Clear interrupts */
801 writel(0x0fff0fff, port + PORT_IRQ_STAT);
802 writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_CLR);
804 /* Clear port multiplier enable and resume bits */
805 writel(PORT_CS_PM_EN | PORT_CS_RESUME, port + PORT_CTRL_CLR);
808 if (__sil24_reset_controller(port))
809 printk(KERN_ERR DRV_NAME
810 "(%s): failed to reset controller\n",
814 /* Turn on interrupts */
815 writel(IRQ_STAT_4PORTS, host_base + HOST_CTRL);
817 pci_set_master(pdev);
819 /* FIXME: check ata_device_add return value */
820 ata_device_add(probe_ent);
832 pci_release_regions(pdev);
834 pci_disable_device(pdev);
838 static int __init sil24_init(void)
840 return pci_module_init(&sil24_pci_driver);
843 static void __exit sil24_exit(void)
845 pci_unregister_driver(&sil24_pci_driver);
848 MODULE_AUTHOR("Tejun Heo");
849 MODULE_DESCRIPTION("Silicon Image 3124/3132 SATA low-level driver");
850 MODULE_LICENSE("GPL");
851 MODULE_DEVICE_TABLE(pci, sil24_pci_tbl);
853 module_init(sil24_init);
854 module_exit(sil24_exit);