blob: 4afe2b15b80326ac2fed0a30ba44864b1fc86c29 [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
Tejun Heoedb33662005-07-28 10:36:22 +090046/*
47 * Port request block (PRB) 32 bytes
48 */
49struct sil24_prb {
50 u16 ctrl;
51 u16 prot;
52 u32 rx_cnt;
53 u8 fis[6 * 4];
54};
55
56/*
57 * Scatter gather entry (SGE) 16 bytes
58 */
59struct sil24_sge {
60 u64 addr;
61 u32 cnt;
62 u32 flags;
63};
64
65/*
66 * Port multiplier
67 */
68struct sil24_port_multiplier {
69 u32 diag;
70 u32 sactive;
71};
72
73enum {
74 /*
75 * Global controller registers (128 bytes @ BAR0)
76 */
77 /* 32 bit regs */
78 HOST_SLOT_STAT = 0x00, /* 32 bit slot stat * 4 */
79 HOST_CTRL = 0x40,
80 HOST_IRQ_STAT = 0x44,
81 HOST_PHY_CFG = 0x48,
82 HOST_BIST_CTRL = 0x50,
83 HOST_BIST_PTRN = 0x54,
84 HOST_BIST_STAT = 0x58,
85 HOST_MEM_BIST_STAT = 0x5c,
86 HOST_FLASH_CMD = 0x70,
87 /* 8 bit regs */
88 HOST_FLASH_DATA = 0x74,
89 HOST_TRANSITION_DETECT = 0x75,
90 HOST_GPIO_CTRL = 0x76,
91 HOST_I2C_ADDR = 0x78, /* 32 bit */
92 HOST_I2C_DATA = 0x7c,
93 HOST_I2C_XFER_CNT = 0x7e,
94 HOST_I2C_CTRL = 0x7f,
95
96 /* HOST_SLOT_STAT bits */
97 HOST_SSTAT_ATTN = (1 << 31),
98
99 /*
100 * Port registers
101 * (8192 bytes @ +0x0000, +0x2000, +0x4000 and +0x6000 @ BAR2)
102 */
103 PORT_REGS_SIZE = 0x2000,
104 PORT_PRB = 0x0000, /* (32 bytes PRB + 16 bytes SGEs * 6) * 31 (3968 bytes) */
Tejun Heoedb33662005-07-28 10:36:22 +0900105
106 PORT_PM = 0x0f80, /* 8 bytes PM * 16 (128 bytes) */
107 /* 32 bit regs */
Tejun Heo83bbecc2005-08-17 13:09:18 +0900108 PORT_CTRL_STAT = 0x1000, /* write: ctrl-set, read: stat */
109 PORT_CTRL_CLR = 0x1004, /* write: ctrl-clear */
110 PORT_IRQ_STAT = 0x1008, /* high: status, low: interrupt */
111 PORT_IRQ_ENABLE_SET = 0x1010, /* write: enable-set */
112 PORT_IRQ_ENABLE_CLR = 0x1014, /* write: enable-clear */
Tejun Heoedb33662005-07-28 10:36:22 +0900113 PORT_ACTIVATE_UPPER_ADDR= 0x101c,
Tejun Heo83bbecc2005-08-17 13:09:18 +0900114 PORT_EXEC_FIFO = 0x1020, /* command execution fifo */
115 PORT_CMD_ERR = 0x1024, /* command error number */
Tejun Heoedb33662005-07-28 10:36:22 +0900116 PORT_FIS_CFG = 0x1028,
117 PORT_FIFO_THRES = 0x102c,
118 /* 16 bit regs */
119 PORT_DECODE_ERR_CNT = 0x1040,
120 PORT_DECODE_ERR_THRESH = 0x1042,
121 PORT_CRC_ERR_CNT = 0x1044,
122 PORT_CRC_ERR_THRESH = 0x1046,
123 PORT_HSHK_ERR_CNT = 0x1048,
124 PORT_HSHK_ERR_THRESH = 0x104a,
125 /* 32 bit regs */
126 PORT_PHY_CFG = 0x1050,
127 PORT_SLOT_STAT = 0x1800,
128 PORT_CMD_ACTIVATE = 0x1c00, /* 64 bit cmd activate * 31 (248 bytes) */
129 PORT_EXEC_DIAG = 0x1e00, /* 32bit exec diag * 16 (64 bytes, 0-10 used on 3124) */
130 PORT_PSD_DIAG = 0x1e40, /* 32bit psd diag * 16 (64 bytes, 0-8 used on 3124) */
131 PORT_SCONTROL = 0x1f00,
132 PORT_SSTATUS = 0x1f04,
133 PORT_SERROR = 0x1f08,
134 PORT_SACTIVE = 0x1f0c,
135
136 /* PORT_CTRL_STAT bits */
137 PORT_CS_PORT_RST = (1 << 0), /* port reset */
138 PORT_CS_DEV_RST = (1 << 1), /* device reset */
139 PORT_CS_INIT = (1 << 2), /* port initialize */
140 PORT_CS_IRQ_WOC = (1 << 3), /* interrupt write one to clear */
Tejun Heoe382eb12005-08-17 13:09:13 +0900141 PORT_CS_RESUME = (1 << 6), /* port resume */
142 PORT_CS_32BIT_ACTV = (1 << 10), /* 32-bit activation */
143 PORT_CS_PM_EN = (1 << 13), /* port multiplier enable */
144 PORT_CS_RDY = (1 << 31), /* port ready to accept commands */
Tejun Heoedb33662005-07-28 10:36:22 +0900145
146 /* PORT_IRQ_STAT/ENABLE_SET/CLR */
147 /* bits[11:0] are masked */
148 PORT_IRQ_COMPLETE = (1 << 0), /* command(s) completed */
149 PORT_IRQ_ERROR = (1 << 1), /* command execution error */
150 PORT_IRQ_PORTRDY_CHG = (1 << 2), /* port ready change */
151 PORT_IRQ_PWR_CHG = (1 << 3), /* power management change */
152 PORT_IRQ_PHYRDY_CHG = (1 << 4), /* PHY ready change */
153 PORT_IRQ_COMWAKE = (1 << 5), /* COMWAKE received */
154 PORT_IRQ_UNK_FIS = (1 << 6), /* Unknown FIS received */
155 PORT_IRQ_SDB_FIS = (1 << 11), /* SDB FIS received */
156
157 /* bits[27:16] are unmasked (raw) */
158 PORT_IRQ_RAW_SHIFT = 16,
159 PORT_IRQ_MASKED_MASK = 0x7ff,
160 PORT_IRQ_RAW_MASK = (0x7ff << PORT_IRQ_RAW_SHIFT),
161
162 /* ENABLE_SET/CLR specific, intr steering - 2 bit field */
163 PORT_IRQ_STEER_SHIFT = 30,
164 PORT_IRQ_STEER_MASK = (3 << PORT_IRQ_STEER_SHIFT),
165
166 /* PORT_CMD_ERR constants */
167 PORT_CERR_DEV = 1, /* Error bit in D2H Register FIS */
168 PORT_CERR_SDB = 2, /* Error bit in SDB FIS */
169 PORT_CERR_DATA = 3, /* Error in data FIS not detected by dev */
170 PORT_CERR_SEND = 4, /* Initial cmd FIS transmission failure */
171 PORT_CERR_INCONSISTENT = 5, /* Protocol mismatch */
172 PORT_CERR_DIRECTION = 6, /* Data direction mismatch */
173 PORT_CERR_UNDERRUN = 7, /* Ran out of SGEs while writing */
174 PORT_CERR_OVERRUN = 8, /* Ran out of SGEs while reading */
175 PORT_CERR_PKT_PROT = 11, /* DIR invalid in 1st PIO setup of ATAPI */
176 PORT_CERR_SGT_BOUNDARY = 16, /* PLD ecode 00 - SGT not on qword boundary */
177 PORT_CERR_SGT_TGTABRT = 17, /* PLD ecode 01 - target abort */
178 PORT_CERR_SGT_MSTABRT = 18, /* PLD ecode 10 - master abort */
179 PORT_CERR_SGT_PCIPERR = 19, /* PLD ecode 11 - PCI parity err while fetching SGT */
180 PORT_CERR_CMD_BOUNDARY = 24, /* ctrl[15:13] 001 - PRB not on qword boundary */
181 PORT_CERR_CMD_TGTABRT = 25, /* ctrl[15:13] 010 - target abort */
182 PORT_CERR_CMD_MSTABRT = 26, /* ctrl[15:13] 100 - master abort */
183 PORT_CERR_CMD_PCIPERR = 27, /* ctrl[15:13] 110 - PCI parity err while fetching PRB */
184 PORT_CERR_XFR_UNDEF = 32, /* PSD ecode 00 - undefined */
185 PORT_CERR_XFR_TGTABRT = 33, /* PSD ecode 01 - target abort */
186 PORT_CERR_XFR_MSGABRT = 34, /* PSD ecode 10 - master abort */
187 PORT_CERR_XFR_PCIPERR = 35, /* PSD ecode 11 - PCI prity err during transfer */
Tejun Heo83bbecc2005-08-17 13:09:18 +0900188 PORT_CERR_SENDSERVICE = 36, /* FIS received while sending service */
Tejun Heoedb33662005-07-28 10:36:22 +0900189
190 /*
191 * Other constants
192 */
193 SGE_TRM = (1 << 31), /* Last SGE in chain */
194 PRB_SOFT_RST = (1 << 7), /* Soft reset request (ign BSY?) */
195
196 /* board id */
197 BID_SIL3124 = 0,
198 BID_SIL3132 = 1,
Tejun Heo042c21f2005-10-09 09:35:46 -0400199 BID_SIL3131 = 2,
Tejun Heoedb33662005-07-28 10:36:22 +0900200
201 IRQ_STAT_4PORTS = 0xf,
202};
203
204struct sil24_cmd_block {
205 struct sil24_prb prb;
206 struct sil24_sge sge[LIBATA_MAX_PRD];
207};
208
209/*
210 * ap->private_data
211 *
212 * The preview driver always returned 0 for status. We emulate it
213 * here from the previous interrupt.
214 */
215struct sil24_port_priv {
Tejun Heoedb33662005-07-28 10:36:22 +0900216 struct sil24_cmd_block *cmd_block; /* 32 cmd blocks */
217 dma_addr_t cmd_block_dma; /* DMA base addr for them */
Tejun Heo6a575fa2005-10-06 11:43:39 +0900218 struct ata_taskfile tf; /* Cached taskfile registers */
Tejun Heoedb33662005-07-28 10:36:22 +0900219};
220
221/* ap->host_set->private_data */
222struct sil24_host_priv {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100223 void __iomem *host_base; /* global controller control (128 bytes @BAR0) */
224 void __iomem *port_base; /* port registers (4 * 8192 bytes @BAR2) */
Tejun Heoedb33662005-07-28 10:36:22 +0900225};
226
227static u8 sil24_check_status(struct ata_port *ap);
Tejun Heoedb33662005-07-28 10:36:22 +0900228static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg);
229static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val);
Tejun Heo7f726d12005-10-07 01:43:19 +0900230static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
Tejun Heoedb33662005-07-28 10:36:22 +0900231static void sil24_phy_reset(struct ata_port *ap);
232static void sil24_qc_prep(struct ata_queued_cmd *qc);
233static int sil24_qc_issue(struct ata_queued_cmd *qc);
234static void sil24_irq_clear(struct ata_port *ap);
235static void sil24_eng_timeout(struct ata_port *ap);
236static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
237static int sil24_port_start(struct ata_port *ap);
238static void sil24_port_stop(struct ata_port *ap);
239static void sil24_host_stop(struct ata_host_set *host_set);
240static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
241
242static struct pci_device_id sil24_pci_tbl[] = {
243 { 0x1095, 0x3124, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3124 },
244 { 0x1095, 0x3132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3132 },
Tejun Heo042c21f2005-10-09 09:35:46 -0400245 { 0x1095, 0x3131, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3131 },
246 { 0x1095, 0x3531, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3131 },
Tejun Heo1fcce832005-10-09 09:31:33 -0400247 { } /* terminate list */
Tejun Heoedb33662005-07-28 10:36:22 +0900248};
249
250static struct pci_driver sil24_pci_driver = {
251 .name = DRV_NAME,
252 .id_table = sil24_pci_tbl,
253 .probe = sil24_init_one,
254 .remove = ata_pci_remove_one, /* safe? */
255};
256
257static Scsi_Host_Template sil24_sht = {
258 .module = THIS_MODULE,
259 .name = DRV_NAME,
260 .ioctl = ata_scsi_ioctl,
261 .queuecommand = ata_scsi_queuecmd,
262 .eh_strategy_handler = ata_scsi_error,
263 .can_queue = ATA_DEF_QUEUE,
264 .this_id = ATA_SHT_THIS_ID,
265 .sg_tablesize = LIBATA_MAX_PRD,
266 .max_sectors = ATA_MAX_SECTORS,
267 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
268 .emulated = ATA_SHT_EMULATED,
269 .use_clustering = ATA_SHT_USE_CLUSTERING,
270 .proc_name = DRV_NAME,
271 .dma_boundary = ATA_DMA_BOUNDARY,
272 .slave_configure = ata_scsi_slave_config,
273 .bios_param = ata_std_bios_param,
274 .ordered_flush = 1, /* NCQ not supported yet */
275};
276
Jeff Garzik057ace52005-10-22 14:27:05 -0400277static const struct ata_port_operations sil24_ops = {
Tejun Heoedb33662005-07-28 10:36:22 +0900278 .port_disable = ata_port_disable,
279
280 .check_status = sil24_check_status,
281 .check_altstatus = sil24_check_status,
Tejun Heoedb33662005-07-28 10:36:22 +0900282 .dev_select = ata_noop_dev_select,
283
Tejun Heo7f726d12005-10-07 01:43:19 +0900284 .tf_read = sil24_tf_read,
285
Tejun Heoedb33662005-07-28 10:36:22 +0900286 .phy_reset = sil24_phy_reset,
287
288 .qc_prep = sil24_qc_prep,
289 .qc_issue = sil24_qc_issue,
290
291 .eng_timeout = sil24_eng_timeout,
292
293 .irq_handler = sil24_interrupt,
294 .irq_clear = sil24_irq_clear,
295
296 .scr_read = sil24_scr_read,
297 .scr_write = sil24_scr_write,
298
299 .port_start = sil24_port_start,
300 .port_stop = sil24_port_stop,
301 .host_stop = sil24_host_stop,
302};
303
Tejun Heo042c21f2005-10-09 09:35:46 -0400304/*
305 * Use bits 30-31 of host_flags to encode available port numbers.
306 * Current maxium is 4.
307 */
308#define SIL24_NPORTS2FLAG(nports) ((((unsigned)(nports) - 1) & 0x3) << 30)
309#define SIL24_FLAG2NPORTS(flag) ((((flag) >> 30) & 0x3) + 1)
310
Tejun Heoedb33662005-07-28 10:36:22 +0900311static struct ata_port_info sil24_port_info[] = {
312 /* sil_3124 */
313 {
314 .sht = &sil24_sht,
315 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
316 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
Tejun Heo042c21f2005-10-09 09:35:46 -0400317 ATA_FLAG_PIO_DMA | SIL24_NPORTS2FLAG(4),
Tejun Heoedb33662005-07-28 10:36:22 +0900318 .pio_mask = 0x1f, /* pio0-4 */
319 .mwdma_mask = 0x07, /* mwdma0-2 */
320 .udma_mask = 0x3f, /* udma0-5 */
321 .port_ops = &sil24_ops,
322 },
323 /* sil_3132 */
324 {
325 .sht = &sil24_sht,
326 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
327 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
Tejun Heo042c21f2005-10-09 09:35:46 -0400328 ATA_FLAG_PIO_DMA | SIL24_NPORTS2FLAG(2),
329 .pio_mask = 0x1f, /* pio0-4 */
330 .mwdma_mask = 0x07, /* mwdma0-2 */
331 .udma_mask = 0x3f, /* udma0-5 */
332 .port_ops = &sil24_ops,
333 },
334 /* sil_3131/sil_3531 */
335 {
336 .sht = &sil24_sht,
337 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
338 ATA_FLAG_SATA_RESET | ATA_FLAG_MMIO |
339 ATA_FLAG_PIO_DMA | SIL24_NPORTS2FLAG(1),
Tejun Heoedb33662005-07-28 10:36:22 +0900340 .pio_mask = 0x1f, /* pio0-4 */
341 .mwdma_mask = 0x07, /* mwdma0-2 */
342 .udma_mask = 0x3f, /* udma0-5 */
343 .port_ops = &sil24_ops,
344 },
345};
346
Tejun Heo6a575fa2005-10-06 11:43:39 +0900347static inline void sil24_update_tf(struct ata_port *ap)
348{
349 struct sil24_port_priv *pp = ap->private_data;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100350 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
351 struct sil24_prb __iomem *prb = port;
352 u8 fis[6 * 4];
Tejun Heo6a575fa2005-10-06 11:43:39 +0900353
Al Viro4b4a5ea2005-10-29 06:38:44 +0100354 memcpy_fromio(fis, prb->fis, 6 * 4);
355 ata_tf_from_fis(fis, &pp->tf);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900356}
357
Tejun Heoedb33662005-07-28 10:36:22 +0900358static u8 sil24_check_status(struct ata_port *ap)
359{
Tejun Heo6a575fa2005-10-06 11:43:39 +0900360 struct sil24_port_priv *pp = ap->private_data;
361 return pp->tf.command;
Tejun Heoedb33662005-07-28 10:36:22 +0900362}
363
Tejun Heoedb33662005-07-28 10:36:22 +0900364static int sil24_scr_map[] = {
365 [SCR_CONTROL] = 0,
366 [SCR_STATUS] = 1,
367 [SCR_ERROR] = 2,
368 [SCR_ACTIVE] = 3,
369};
370
371static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg)
372{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100373 void __iomem *scr_addr = (void __iomem *)ap->ioaddr.scr_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900374 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100375 void __iomem *addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900376 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
377 return readl(scr_addr + sil24_scr_map[sc_reg] * 4);
378 }
379 return 0xffffffffU;
380}
381
382static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val)
383{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100384 void __iomem *scr_addr = (void __iomem *)ap->ioaddr.scr_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900385 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100386 void __iomem *addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900387 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
388 writel(val, scr_addr + sil24_scr_map[sc_reg] * 4);
389 }
390}
391
Tejun Heo7f726d12005-10-07 01:43:19 +0900392static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
393{
394 struct sil24_port_priv *pp = ap->private_data;
395 *tf = pp->tf;
396}
397
Tejun Heoedb33662005-07-28 10:36:22 +0900398static void sil24_phy_reset(struct ata_port *ap)
399{
400 __sata_phy_reset(ap);
401 /*
402 * No ATAPI yet. Just unconditionally indicate ATA device.
403 * If ATAPI device is attached, it will fail ATA_CMD_ID_ATA
404 * and libata core will ignore the device.
405 */
406 if (!(ap->flags & ATA_FLAG_PORT_DISABLED))
407 ap->device[0].class = ATA_DEV_ATA;
408}
409
410static inline void sil24_fill_sg(struct ata_queued_cmd *qc,
411 struct sil24_cmd_block *cb)
412{
413 struct scatterlist *sg = qc->sg;
414 struct sil24_sge *sge = cb->sge;
415 unsigned i;
416
417 for (i = 0; i < qc->n_elem; i++, sg++, sge++) {
418 sge->addr = cpu_to_le64(sg_dma_address(sg));
419 sge->cnt = cpu_to_le32(sg_dma_len(sg));
420 sge->flags = 0;
421 sge->flags = i < qc->n_elem - 1 ? 0 : cpu_to_le32(SGE_TRM);
422 }
423}
424
425static void sil24_qc_prep(struct ata_queued_cmd *qc)
426{
427 struct ata_port *ap = qc->ap;
428 struct sil24_port_priv *pp = ap->private_data;
429 struct sil24_cmd_block *cb = pp->cmd_block + qc->tag;
430 struct sil24_prb *prb = &cb->prb;
431
432 switch (qc->tf.protocol) {
433 case ATA_PROT_PIO:
434 case ATA_PROT_DMA:
435 case ATA_PROT_NODATA:
436 break;
437 default:
438 /* ATAPI isn't supported yet */
439 BUG();
440 }
441
442 ata_tf_to_fis(&qc->tf, prb->fis, 0);
443
444 if (qc->flags & ATA_QCFLAG_DMAMAP)
445 sil24_fill_sg(qc, cb);
446}
447
448static int sil24_qc_issue(struct ata_queued_cmd *qc)
449{
450 struct ata_port *ap = qc->ap;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100451 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900452 struct sil24_port_priv *pp = ap->private_data;
453 dma_addr_t paddr = pp->cmd_block_dma + qc->tag * sizeof(*pp->cmd_block);
454
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900455 writel((u32)paddr, port + PORT_CMD_ACTIVATE);
Tejun Heoedb33662005-07-28 10:36:22 +0900456 return 0;
457}
458
459static void sil24_irq_clear(struct ata_port *ap)
460{
461 /* unused */
462}
463
Al Viro4b4a5ea2005-10-29 06:38:44 +0100464static int __sil24_reset_controller(void __iomem *port)
Tejun Heoedb33662005-07-28 10:36:22 +0900465{
Tejun Heoedb33662005-07-28 10:36:22 +0900466 int cnt;
467 u32 tmp;
468
Tejun Heoedb33662005-07-28 10:36:22 +0900469 /* Reset controller state. Is this correct? */
470 writel(PORT_CS_DEV_RST, port + PORT_CTRL_STAT);
471 readl(port + PORT_CTRL_STAT); /* sync */
472
473 /* Max ~100ms */
474 for (cnt = 0; cnt < 1000; cnt++) {
475 udelay(100);
476 tmp = readl(port + PORT_CTRL_STAT);
477 if (!(tmp & PORT_CS_DEV_RST))
478 break;
479 }
Tejun Heo923f1222005-09-13 13:21:29 +0900480
Tejun Heoedb33662005-07-28 10:36:22 +0900481 if (tmp & PORT_CS_DEV_RST)
Tejun Heo923f1222005-09-13 13:21:29 +0900482 return -1;
483 return 0;
484}
485
486static void sil24_reset_controller(struct ata_port *ap)
487{
488 printk(KERN_NOTICE DRV_NAME
489 " ata%u: resetting controller...\n", ap->id);
Al Viro4b4a5ea2005-10-29 06:38:44 +0100490 if (__sil24_reset_controller((void __iomem *)ap->ioaddr.cmd_addr))
Tejun Heo923f1222005-09-13 13:21:29 +0900491 printk(KERN_ERR DRV_NAME
492 " ata%u: failed to reset controller\n", ap->id);
Tejun Heoedb33662005-07-28 10:36:22 +0900493}
494
495static void sil24_eng_timeout(struct ata_port *ap)
496{
497 struct ata_queued_cmd *qc;
498
499 qc = ata_qc_from_tag(ap, ap->active_tag);
500 if (!qc) {
Jeff Garzika7dac442005-10-30 04:44:42 -0500501 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
Tejun Heoedb33662005-07-28 10:36:22 +0900502 ap->id);
503 return;
504 }
505
506 /*
507 * hack alert! We cannot use the supplied completion
508 * function from inside the ->eh_strategy_handler() thread.
509 * libata is the only user of ->eh_strategy_handler() in
510 * any kernel, so the default scsi_done() assumes it is
511 * not being called from the SCSI EH.
512 */
513 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
514 qc->scsidone = scsi_finish_command;
Jeff Garzika7dac442005-10-30 04:44:42 -0500515 ata_qc_complete(qc, AC_ERR_OTHER);
Tejun Heoedb33662005-07-28 10:36:22 +0900516
517 sil24_reset_controller(ap);
518}
519
Tejun Heo87466182005-08-17 13:08:57 +0900520static void sil24_error_intr(struct ata_port *ap, u32 slot_stat)
521{
522 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900523 struct sil24_port_priv *pp = ap->private_data;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100524 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heo87466182005-08-17 13:08:57 +0900525 u32 irq_stat, cmd_err, sstatus, serror;
Jeff Garzika7dac442005-10-30 04:44:42 -0500526 unsigned int err_mask;
Tejun Heo87466182005-08-17 13:08:57 +0900527
528 irq_stat = readl(port + PORT_IRQ_STAT);
Tejun Heoad6e90f2005-10-06 11:43:29 +0900529 writel(irq_stat, port + PORT_IRQ_STAT); /* clear irq */
530
531 if (!(irq_stat & PORT_IRQ_ERROR)) {
532 /* ignore non-completion, non-error irqs for now */
533 printk(KERN_WARNING DRV_NAME
534 "ata%u: non-error exception irq (irq_stat %x)\n",
535 ap->id, irq_stat);
536 return;
537 }
538
Tejun Heo87466182005-08-17 13:08:57 +0900539 cmd_err = readl(port + PORT_CMD_ERR);
540 sstatus = readl(port + PORT_SSTATUS);
541 serror = readl(port + PORT_SERROR);
Tejun Heo87466182005-08-17 13:08:57 +0900542 if (serror)
543 writel(serror, port + PORT_SERROR);
544
545 printk(KERN_ERR DRV_NAME " ata%u: error interrupt on port%d\n"
546 " stat=0x%x irq=0x%x cmd_err=%d sstatus=0x%x serror=0x%x\n",
547 ap->id, ap->port_no, slot_stat, irq_stat, cmd_err, sstatus, serror);
548
Tejun Heo6a575fa2005-10-06 11:43:39 +0900549 if (cmd_err == PORT_CERR_DEV || cmd_err == PORT_CERR_SDB) {
550 /*
551 * Device is reporting error, tf registers are valid.
552 */
553 sil24_update_tf(ap);
Jeff Garzika7dac442005-10-30 04:44:42 -0500554 err_mask = ac_err_mask(pp->tf.command);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900555 } else {
556 /*
557 * Other errors. libata currently doesn't have any
558 * mechanism to report these errors. Just turn on
559 * ATA_ERR.
560 */
Jeff Garzika7dac442005-10-30 04:44:42 -0500561 err_mask = AC_ERR_OTHER;
Tejun Heo6a575fa2005-10-06 11:43:39 +0900562 }
563
Tejun Heo87466182005-08-17 13:08:57 +0900564 if (qc)
Jeff Garzika7dac442005-10-30 04:44:42 -0500565 ata_qc_complete(qc, err_mask);
Tejun Heo87466182005-08-17 13:08:57 +0900566
567 sil24_reset_controller(ap);
568}
569
Tejun Heoedb33662005-07-28 10:36:22 +0900570static inline void sil24_host_intr(struct ata_port *ap)
571{
572 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
Al Viro4b4a5ea2005-10-29 06:38:44 +0100573 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900574 u32 slot_stat;
575
576 slot_stat = readl(port + PORT_SLOT_STAT);
577 if (!(slot_stat & HOST_SSTAT_ATTN)) {
Tejun Heo6a575fa2005-10-06 11:43:39 +0900578 struct sil24_port_priv *pp = ap->private_data;
579 /*
580 * !HOST_SSAT_ATTN guarantees successful completion,
581 * so reading back tf registers is unnecessary for
582 * most commands. TODO: read tf registers for
583 * commands which require these values on successful
584 * completion (EXECUTE DEVICE DIAGNOSTIC, CHECK POWER,
585 * DEVICE RESET and READ PORT MULTIPLIER (any more?).
586 */
587 sil24_update_tf(ap);
588
Tejun Heoedb33662005-07-28 10:36:22 +0900589 if (qc)
Jeff Garzika7dac442005-10-30 04:44:42 -0500590 ata_qc_complete(qc, ac_err_mask(pp->tf.command));
Tejun Heo87466182005-08-17 13:08:57 +0900591 } else
592 sil24_error_intr(ap, slot_stat);
Tejun Heoedb33662005-07-28 10:36:22 +0900593}
594
595static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
596{
597 struct ata_host_set *host_set = dev_instance;
598 struct sil24_host_priv *hpriv = host_set->private_data;
599 unsigned handled = 0;
600 u32 status;
601 int i;
602
603 status = readl(hpriv->host_base + HOST_IRQ_STAT);
604
Tejun Heo06460ae2005-08-17 13:08:52 +0900605 if (status == 0xffffffff) {
606 printk(KERN_ERR DRV_NAME ": IRQ status == 0xffffffff, "
607 "PCI fault or device removal?\n");
608 goto out;
609 }
610
Tejun Heoedb33662005-07-28 10:36:22 +0900611 if (!(status & IRQ_STAT_4PORTS))
612 goto out;
613
614 spin_lock(&host_set->lock);
615
616 for (i = 0; i < host_set->n_ports; i++)
617 if (status & (1 << i)) {
618 struct ata_port *ap = host_set->ports[i];
Tejun Heo3cc45712005-08-17 13:08:47 +0900619 if (ap && !(ap->flags & ATA_FLAG_PORT_DISABLED)) {
Tejun Heoedb33662005-07-28 10:36:22 +0900620 sil24_host_intr(host_set->ports[i]);
Tejun Heo3cc45712005-08-17 13:08:47 +0900621 handled++;
622 } else
623 printk(KERN_ERR DRV_NAME
624 ": interrupt from disabled port %d\n", i);
Tejun Heoedb33662005-07-28 10:36:22 +0900625 }
626
627 spin_unlock(&host_set->lock);
628 out:
629 return IRQ_RETVAL(handled);
630}
631
632static int sil24_port_start(struct ata_port *ap)
633{
634 struct device *dev = ap->host_set->dev;
Tejun Heoedb33662005-07-28 10:36:22 +0900635 struct sil24_port_priv *pp;
636 struct sil24_cmd_block *cb;
637 size_t cb_size = sizeof(*cb);
638 dma_addr_t cb_dma;
639
640 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
641 if (!pp)
642 return -ENOMEM;
643 memset(pp, 0, sizeof(*pp));
644
Tejun Heo6a575fa2005-10-06 11:43:39 +0900645 pp->tf.command = ATA_DRDY;
646
Tejun Heoedb33662005-07-28 10:36:22 +0900647 cb = dma_alloc_coherent(dev, cb_size, &cb_dma, GFP_KERNEL);
648 if (!cb) {
649 kfree(pp);
650 return -ENOMEM;
651 }
652 memset(cb, 0, cb_size);
653
Tejun Heoedb33662005-07-28 10:36:22 +0900654 pp->cmd_block = cb;
655 pp->cmd_block_dma = cb_dma;
656
657 ap->private_data = pp;
658
659 return 0;
660}
661
662static void sil24_port_stop(struct ata_port *ap)
663{
664 struct device *dev = ap->host_set->dev;
665 struct sil24_port_priv *pp = ap->private_data;
666 size_t cb_size = sizeof(*pp->cmd_block);
667
668 dma_free_coherent(dev, cb_size, pp->cmd_block, pp->cmd_block_dma);
669 kfree(pp);
670}
671
672static void sil24_host_stop(struct ata_host_set *host_set)
673{
674 struct sil24_host_priv *hpriv = host_set->private_data;
675
676 iounmap(hpriv->host_base);
677 iounmap(hpriv->port_base);
678 kfree(hpriv);
679}
680
681static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
682{
683 static int printed_version = 0;
684 unsigned int board_id = (unsigned int)ent->driver_data;
Tejun Heo042c21f2005-10-09 09:35:46 -0400685 struct ata_port_info *pinfo = &sil24_port_info[board_id];
Tejun Heoedb33662005-07-28 10:36:22 +0900686 struct ata_probe_ent *probe_ent = NULL;
687 struct sil24_host_priv *hpriv = NULL;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100688 void __iomem *host_base = NULL;
689 void __iomem *port_base = NULL;
Tejun Heoedb33662005-07-28 10:36:22 +0900690 int i, rc;
691
692 if (!printed_version++)
693 printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");
694
695 rc = pci_enable_device(pdev);
696 if (rc)
697 return rc;
698
699 rc = pci_request_regions(pdev, DRV_NAME);
700 if (rc)
701 goto out_disable;
702
703 rc = -ENOMEM;
704 /* ioremap mmio registers */
705 host_base = ioremap(pci_resource_start(pdev, 0),
706 pci_resource_len(pdev, 0));
707 if (!host_base)
708 goto out_free;
709 port_base = ioremap(pci_resource_start(pdev, 2),
710 pci_resource_len(pdev, 2));
711 if (!port_base)
712 goto out_free;
713
714 /* allocate & init probe_ent and hpriv */
715 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
716 if (!probe_ent)
717 goto out_free;
718
719 hpriv = kmalloc(sizeof(*hpriv), GFP_KERNEL);
720 if (!hpriv)
721 goto out_free;
722
723 memset(probe_ent, 0, sizeof(*probe_ent));
724 probe_ent->dev = pci_dev_to_dev(pdev);
725 INIT_LIST_HEAD(&probe_ent->node);
726
Tejun Heo042c21f2005-10-09 09:35:46 -0400727 probe_ent->sht = pinfo->sht;
728 probe_ent->host_flags = pinfo->host_flags;
729 probe_ent->pio_mask = pinfo->pio_mask;
730 probe_ent->udma_mask = pinfo->udma_mask;
731 probe_ent->port_ops = pinfo->port_ops;
732 probe_ent->n_ports = SIL24_FLAG2NPORTS(pinfo->host_flags);
Tejun Heoedb33662005-07-28 10:36:22 +0900733
734 probe_ent->irq = pdev->irq;
735 probe_ent->irq_flags = SA_SHIRQ;
736 probe_ent->mmio_base = port_base;
737 probe_ent->private_data = hpriv;
738
739 memset(hpriv, 0, sizeof(*hpriv));
740 hpriv->host_base = host_base;
741 hpriv->port_base = port_base;
742
743 /*
744 * Configure the device
745 */
746 /*
747 * FIXME: This device is certainly 64-bit capable. We just
748 * don't know how to use it. After fixing 32bit activation in
749 * this function, enable 64bit masks here.
750 */
751 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
752 if (rc) {
753 printk(KERN_ERR DRV_NAME "(%s): 32-bit DMA enable failed\n",
754 pci_name(pdev));
755 goto out_free;
756 }
757 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
758 if (rc) {
759 printk(KERN_ERR DRV_NAME "(%s): 32-bit consistent DMA enable failed\n",
760 pci_name(pdev));
761 goto out_free;
762 }
763
764 /* GPIO off */
765 writel(0, host_base + HOST_FLASH_CMD);
766
767 /* Mask interrupts during initialization */
768 writel(0, host_base + HOST_CTRL);
769
770 for (i = 0; i < probe_ent->n_ports; i++) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100771 void __iomem *port = port_base + i * PORT_REGS_SIZE;
Tejun Heoedb33662005-07-28 10:36:22 +0900772 unsigned long portu = (unsigned long)port;
773 u32 tmp;
774 int cnt;
775
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900776 probe_ent->port[i].cmd_addr = portu + PORT_PRB;
Tejun Heoedb33662005-07-28 10:36:22 +0900777 probe_ent->port[i].scr_addr = portu + PORT_SCONTROL;
778
779 ata_std_ports(&probe_ent->port[i]);
780
781 /* Initial PHY setting */
782 writel(0x20c, port + PORT_PHY_CFG);
783
784 /* Clear port RST */
785 tmp = readl(port + PORT_CTRL_STAT);
786 if (tmp & PORT_CS_PORT_RST) {
787 writel(PORT_CS_PORT_RST, port + PORT_CTRL_CLR);
788 readl(port + PORT_CTRL_STAT); /* sync */
789 for (cnt = 0; cnt < 10; cnt++) {
790 msleep(10);
791 tmp = readl(port + PORT_CTRL_STAT);
792 if (!(tmp & PORT_CS_PORT_RST))
793 break;
794 }
795 if (tmp & PORT_CS_PORT_RST)
796 printk(KERN_ERR DRV_NAME
797 "(%s): failed to clear port RST\n",
798 pci_name(pdev));
799 }
800
801 /* Zero error counters. */
802 writel(0x8000, port + PORT_DECODE_ERR_THRESH);
803 writel(0x8000, port + PORT_CRC_ERR_THRESH);
804 writel(0x8000, port + PORT_HSHK_ERR_THRESH);
805 writel(0x0000, port + PORT_DECODE_ERR_CNT);
806 writel(0x0000, port + PORT_CRC_ERR_CNT);
807 writel(0x0000, port + PORT_HSHK_ERR_CNT);
808
809 /* FIXME: 32bit activation? */
810 writel(0, port + PORT_ACTIVATE_UPPER_ADDR);
811 writel(PORT_CS_32BIT_ACTV, port + PORT_CTRL_STAT);
812
813 /* Configure interrupts */
814 writel(0xffff, port + PORT_IRQ_ENABLE_CLR);
815 writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR | PORT_IRQ_SDB_FIS,
816 port + PORT_IRQ_ENABLE_SET);
817
818 /* Clear interrupts */
819 writel(0x0fff0fff, port + PORT_IRQ_STAT);
820 writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_CLR);
Tejun Heo923f1222005-09-13 13:21:29 +0900821
822 /* Clear port multiplier enable and resume bits */
823 writel(PORT_CS_PM_EN | PORT_CS_RESUME, port + PORT_CTRL_CLR);
824
825 /* Reset itself */
826 if (__sil24_reset_controller(port))
827 printk(KERN_ERR DRV_NAME
828 "(%s): failed to reset controller\n",
829 pci_name(pdev));
Tejun Heoedb33662005-07-28 10:36:22 +0900830 }
831
832 /* Turn on interrupts */
833 writel(IRQ_STAT_4PORTS, host_base + HOST_CTRL);
834
835 pci_set_master(pdev);
836
Tejun Heo14834672005-08-17 13:08:42 +0900837 /* FIXME: check ata_device_add return value */
Tejun Heoedb33662005-07-28 10:36:22 +0900838 ata_device_add(probe_ent);
839
840 kfree(probe_ent);
841 return 0;
842
843 out_free:
844 if (host_base)
845 iounmap(host_base);
846 if (port_base)
847 iounmap(port_base);
848 kfree(probe_ent);
849 kfree(hpriv);
850 pci_release_regions(pdev);
851 out_disable:
852 pci_disable_device(pdev);
853 return rc;
854}
855
856static int __init sil24_init(void)
857{
858 return pci_module_init(&sil24_pci_driver);
859}
860
861static void __exit sil24_exit(void)
862{
863 pci_unregister_driver(&sil24_pci_driver);
864}
865
866MODULE_AUTHOR("Tejun Heo");
867MODULE_DESCRIPTION("Silicon Image 3124/3132 SATA low-level driver");
868MODULE_LICENSE("GPL");
869MODULE_DEVICE_TABLE(pci, sil24_pci_tbl);
870
871module_init(sil24_init);
872module_exit(sil24_exit);