blob: 26d84e094b1d93edf0384057594e60b7ee537ddf [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 *
Tejun Heoedb33662005-07-28 10:36:22 +09008 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 */
19
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/pci.h>
23#include <linux/blkdev.h>
24#include <linux/delay.h>
25#include <linux/interrupt.h>
26#include <linux/dma-mapping.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050027#include <linux/device.h>
Tejun Heoedb33662005-07-28 10:36:22 +090028#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050029#include <scsi/scsi_cmnd.h>
Tejun Heoedb33662005-07-28 10:36:22 +090030#include <linux/libata.h>
31#include <asm/io.h>
32
33#define DRV_NAME "sata_sil24"
Jeff Garzikaf643712006-04-02 20:41:36 -040034#define DRV_VERSION "0.24"
Tejun Heoedb33662005-07-28 10:36:22 +090035
Tejun Heoedb33662005-07-28 10:36:22 +090036/*
37 * Port request block (PRB) 32 bytes
38 */
39struct sil24_prb {
40 u16 ctrl;
41 u16 prot;
42 u32 rx_cnt;
43 u8 fis[6 * 4];
44};
45
46/*
47 * Scatter gather entry (SGE) 16 bytes
48 */
49struct sil24_sge {
50 u64 addr;
51 u32 cnt;
52 u32 flags;
53};
54
55/*
56 * Port multiplier
57 */
58struct sil24_port_multiplier {
59 u32 diag;
60 u32 sactive;
61};
62
63enum {
64 /*
65 * Global controller registers (128 bytes @ BAR0)
66 */
67 /* 32 bit regs */
68 HOST_SLOT_STAT = 0x00, /* 32 bit slot stat * 4 */
69 HOST_CTRL = 0x40,
70 HOST_IRQ_STAT = 0x44,
71 HOST_PHY_CFG = 0x48,
72 HOST_BIST_CTRL = 0x50,
73 HOST_BIST_PTRN = 0x54,
74 HOST_BIST_STAT = 0x58,
75 HOST_MEM_BIST_STAT = 0x5c,
76 HOST_FLASH_CMD = 0x70,
77 /* 8 bit regs */
78 HOST_FLASH_DATA = 0x74,
79 HOST_TRANSITION_DETECT = 0x75,
80 HOST_GPIO_CTRL = 0x76,
81 HOST_I2C_ADDR = 0x78, /* 32 bit */
82 HOST_I2C_DATA = 0x7c,
83 HOST_I2C_XFER_CNT = 0x7e,
84 HOST_I2C_CTRL = 0x7f,
85
86 /* HOST_SLOT_STAT bits */
87 HOST_SSTAT_ATTN = (1 << 31),
88
89 /*
90 * Port registers
91 * (8192 bytes @ +0x0000, +0x2000, +0x4000 and +0x6000 @ BAR2)
92 */
93 PORT_REGS_SIZE = 0x2000,
94 PORT_PRB = 0x0000, /* (32 bytes PRB + 16 bytes SGEs * 6) * 31 (3968 bytes) */
Tejun Heoedb33662005-07-28 10:36:22 +090095
96 PORT_PM = 0x0f80, /* 8 bytes PM * 16 (128 bytes) */
97 /* 32 bit regs */
Tejun Heo83bbecc2005-08-17 13:09:18 +090098 PORT_CTRL_STAT = 0x1000, /* write: ctrl-set, read: stat */
99 PORT_CTRL_CLR = 0x1004, /* write: ctrl-clear */
100 PORT_IRQ_STAT = 0x1008, /* high: status, low: interrupt */
101 PORT_IRQ_ENABLE_SET = 0x1010, /* write: enable-set */
102 PORT_IRQ_ENABLE_CLR = 0x1014, /* write: enable-clear */
Tejun Heoedb33662005-07-28 10:36:22 +0900103 PORT_ACTIVATE_UPPER_ADDR= 0x101c,
Tejun Heo83bbecc2005-08-17 13:09:18 +0900104 PORT_EXEC_FIFO = 0x1020, /* command execution fifo */
105 PORT_CMD_ERR = 0x1024, /* command error number */
Tejun Heoedb33662005-07-28 10:36:22 +0900106 PORT_FIS_CFG = 0x1028,
107 PORT_FIFO_THRES = 0x102c,
108 /* 16 bit regs */
109 PORT_DECODE_ERR_CNT = 0x1040,
110 PORT_DECODE_ERR_THRESH = 0x1042,
111 PORT_CRC_ERR_CNT = 0x1044,
112 PORT_CRC_ERR_THRESH = 0x1046,
113 PORT_HSHK_ERR_CNT = 0x1048,
114 PORT_HSHK_ERR_THRESH = 0x104a,
115 /* 32 bit regs */
116 PORT_PHY_CFG = 0x1050,
117 PORT_SLOT_STAT = 0x1800,
118 PORT_CMD_ACTIVATE = 0x1c00, /* 64 bit cmd activate * 31 (248 bytes) */
119 PORT_EXEC_DIAG = 0x1e00, /* 32bit exec diag * 16 (64 bytes, 0-10 used on 3124) */
120 PORT_PSD_DIAG = 0x1e40, /* 32bit psd diag * 16 (64 bytes, 0-8 used on 3124) */
121 PORT_SCONTROL = 0x1f00,
122 PORT_SSTATUS = 0x1f04,
123 PORT_SERROR = 0x1f08,
124 PORT_SACTIVE = 0x1f0c,
125
126 /* PORT_CTRL_STAT bits */
127 PORT_CS_PORT_RST = (1 << 0), /* port reset */
128 PORT_CS_DEV_RST = (1 << 1), /* device reset */
129 PORT_CS_INIT = (1 << 2), /* port initialize */
130 PORT_CS_IRQ_WOC = (1 << 3), /* interrupt write one to clear */
Tejun Heod10cb352005-11-16 16:56:49 +0900131 PORT_CS_CDB16 = (1 << 5), /* 0=12b cdb, 1=16b cdb */
Tejun Heoe382eb12005-08-17 13:09:13 +0900132 PORT_CS_RESUME = (1 << 6), /* port resume */
133 PORT_CS_32BIT_ACTV = (1 << 10), /* 32-bit activation */
134 PORT_CS_PM_EN = (1 << 13), /* port multiplier enable */
135 PORT_CS_RDY = (1 << 31), /* port ready to accept commands */
Tejun Heoedb33662005-07-28 10:36:22 +0900136
137 /* PORT_IRQ_STAT/ENABLE_SET/CLR */
138 /* bits[11:0] are masked */
139 PORT_IRQ_COMPLETE = (1 << 0), /* command(s) completed */
140 PORT_IRQ_ERROR = (1 << 1), /* command execution error */
141 PORT_IRQ_PORTRDY_CHG = (1 << 2), /* port ready change */
142 PORT_IRQ_PWR_CHG = (1 << 3), /* power management change */
143 PORT_IRQ_PHYRDY_CHG = (1 << 4), /* PHY ready change */
144 PORT_IRQ_COMWAKE = (1 << 5), /* COMWAKE received */
145 PORT_IRQ_UNK_FIS = (1 << 6), /* Unknown FIS received */
146 PORT_IRQ_SDB_FIS = (1 << 11), /* SDB FIS received */
147
148 /* bits[27:16] are unmasked (raw) */
149 PORT_IRQ_RAW_SHIFT = 16,
150 PORT_IRQ_MASKED_MASK = 0x7ff,
151 PORT_IRQ_RAW_MASK = (0x7ff << PORT_IRQ_RAW_SHIFT),
152
153 /* ENABLE_SET/CLR specific, intr steering - 2 bit field */
154 PORT_IRQ_STEER_SHIFT = 30,
155 PORT_IRQ_STEER_MASK = (3 << PORT_IRQ_STEER_SHIFT),
156
157 /* PORT_CMD_ERR constants */
158 PORT_CERR_DEV = 1, /* Error bit in D2H Register FIS */
159 PORT_CERR_SDB = 2, /* Error bit in SDB FIS */
160 PORT_CERR_DATA = 3, /* Error in data FIS not detected by dev */
161 PORT_CERR_SEND = 4, /* Initial cmd FIS transmission failure */
162 PORT_CERR_INCONSISTENT = 5, /* Protocol mismatch */
163 PORT_CERR_DIRECTION = 6, /* Data direction mismatch */
164 PORT_CERR_UNDERRUN = 7, /* Ran out of SGEs while writing */
165 PORT_CERR_OVERRUN = 8, /* Ran out of SGEs while reading */
166 PORT_CERR_PKT_PROT = 11, /* DIR invalid in 1st PIO setup of ATAPI */
167 PORT_CERR_SGT_BOUNDARY = 16, /* PLD ecode 00 - SGT not on qword boundary */
168 PORT_CERR_SGT_TGTABRT = 17, /* PLD ecode 01 - target abort */
169 PORT_CERR_SGT_MSTABRT = 18, /* PLD ecode 10 - master abort */
170 PORT_CERR_SGT_PCIPERR = 19, /* PLD ecode 11 - PCI parity err while fetching SGT */
171 PORT_CERR_CMD_BOUNDARY = 24, /* ctrl[15:13] 001 - PRB not on qword boundary */
172 PORT_CERR_CMD_TGTABRT = 25, /* ctrl[15:13] 010 - target abort */
173 PORT_CERR_CMD_MSTABRT = 26, /* ctrl[15:13] 100 - master abort */
174 PORT_CERR_CMD_PCIPERR = 27, /* ctrl[15:13] 110 - PCI parity err while fetching PRB */
175 PORT_CERR_XFR_UNDEF = 32, /* PSD ecode 00 - undefined */
176 PORT_CERR_XFR_TGTABRT = 33, /* PSD ecode 01 - target abort */
177 PORT_CERR_XFR_MSGABRT = 34, /* PSD ecode 10 - master abort */
178 PORT_CERR_XFR_PCIPERR = 35, /* PSD ecode 11 - PCI prity err during transfer */
Tejun Heo83bbecc2005-08-17 13:09:18 +0900179 PORT_CERR_SENDSERVICE = 36, /* FIS received while sending service */
Tejun Heoedb33662005-07-28 10:36:22 +0900180
Tejun Heod10cb352005-11-16 16:56:49 +0900181 /* bits of PRB control field */
182 PRB_CTRL_PROTOCOL = (1 << 0), /* override def. ATA protocol */
183 PRB_CTRL_PACKET_READ = (1 << 4), /* PACKET cmd read */
184 PRB_CTRL_PACKET_WRITE = (1 << 5), /* PACKET cmd write */
185 PRB_CTRL_NIEN = (1 << 6), /* Mask completion irq */
186 PRB_CTRL_SRST = (1 << 7), /* Soft reset request (ign BSY?) */
187
188 /* PRB protocol field */
189 PRB_PROT_PACKET = (1 << 0),
190 PRB_PROT_TCQ = (1 << 1),
191 PRB_PROT_NCQ = (1 << 2),
192 PRB_PROT_READ = (1 << 3),
193 PRB_PROT_WRITE = (1 << 4),
194 PRB_PROT_TRANSPARENT = (1 << 5),
195
Tejun Heoedb33662005-07-28 10:36:22 +0900196 /*
197 * Other constants
198 */
199 SGE_TRM = (1 << 31), /* Last SGE in chain */
Tejun Heod10cb352005-11-16 16:56:49 +0900200 SGE_LNK = (1 << 30), /* linked list
201 Points to SGT, not SGE */
202 SGE_DRD = (1 << 29), /* discard data read (/dev/null)
203 data address ignored */
Tejun Heoedb33662005-07-28 10:36:22 +0900204
205 /* board id */
206 BID_SIL3124 = 0,
207 BID_SIL3132 = 1,
Tejun Heo042c21f2005-10-09 09:35:46 -0400208 BID_SIL3131 = 2,
Tejun Heoedb33662005-07-28 10:36:22 +0900209
210 IRQ_STAT_4PORTS = 0xf,
211};
212
Tejun Heo69ad1852005-11-18 14:16:45 +0900213struct sil24_ata_block {
Tejun Heoedb33662005-07-28 10:36:22 +0900214 struct sil24_prb prb;
215 struct sil24_sge sge[LIBATA_MAX_PRD];
216};
217
Tejun Heo69ad1852005-11-18 14:16:45 +0900218struct sil24_atapi_block {
219 struct sil24_prb prb;
220 u8 cdb[16];
221 struct sil24_sge sge[LIBATA_MAX_PRD - 1];
222};
223
224union sil24_cmd_block {
225 struct sil24_ata_block ata;
226 struct sil24_atapi_block atapi;
227};
228
Tejun Heoedb33662005-07-28 10:36:22 +0900229/*
230 * ap->private_data
231 *
232 * The preview driver always returned 0 for status. We emulate it
233 * here from the previous interrupt.
234 */
235struct sil24_port_priv {
Tejun Heo69ad1852005-11-18 14:16:45 +0900236 union sil24_cmd_block *cmd_block; /* 32 cmd blocks */
Tejun Heoedb33662005-07-28 10:36:22 +0900237 dma_addr_t cmd_block_dma; /* DMA base addr for them */
Tejun Heo6a575fa2005-10-06 11:43:39 +0900238 struct ata_taskfile tf; /* Cached taskfile registers */
Tejun Heoedb33662005-07-28 10:36:22 +0900239};
240
241/* ap->host_set->private_data */
242struct sil24_host_priv {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100243 void __iomem *host_base; /* global controller control (128 bytes @BAR0) */
244 void __iomem *port_base; /* port registers (4 * 8192 bytes @BAR2) */
Tejun Heoedb33662005-07-28 10:36:22 +0900245};
246
Tejun Heo69ad1852005-11-18 14:16:45 +0900247static void sil24_dev_config(struct ata_port *ap, struct ata_device *dev);
Tejun Heoedb33662005-07-28 10:36:22 +0900248static u8 sil24_check_status(struct ata_port *ap);
Tejun Heoedb33662005-07-28 10:36:22 +0900249static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg);
250static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val);
Tejun Heo7f726d12005-10-07 01:43:19 +0900251static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
Tejun Heo07b73472006-02-10 23:58:48 +0900252static int sil24_probe_reset(struct ata_port *ap, unsigned int *classes);
Tejun Heoedb33662005-07-28 10:36:22 +0900253static void sil24_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900254static unsigned int sil24_qc_issue(struct ata_queued_cmd *qc);
Tejun Heoedb33662005-07-28 10:36:22 +0900255static void sil24_irq_clear(struct ata_port *ap);
256static void sil24_eng_timeout(struct ata_port *ap);
257static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
258static int sil24_port_start(struct ata_port *ap);
259static void sil24_port_stop(struct ata_port *ap);
260static void sil24_host_stop(struct ata_host_set *host_set);
261static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
262
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500263static const struct pci_device_id sil24_pci_tbl[] = {
Tejun Heoedb33662005-07-28 10:36:22 +0900264 { 0x1095, 0x3124, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3124 },
Tejun Heo4b9d7e02006-02-23 10:46:47 +0900265 { 0x8086, 0x3124, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3124 },
Tejun Heoedb33662005-07-28 10:36:22 +0900266 { 0x1095, 0x3132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3132 },
Tejun Heo042c21f2005-10-09 09:35:46 -0400267 { 0x1095, 0x3131, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3131 },
268 { 0x1095, 0x3531, PCI_ANY_ID, PCI_ANY_ID, 0, 0, BID_SIL3131 },
Tejun Heo1fcce8392005-10-09 09:31:33 -0400269 { } /* terminate list */
Tejun Heoedb33662005-07-28 10:36:22 +0900270};
271
272static struct pci_driver sil24_pci_driver = {
273 .name = DRV_NAME,
274 .id_table = sil24_pci_tbl,
275 .probe = sil24_init_one,
276 .remove = ata_pci_remove_one, /* safe? */
277};
278
Jeff Garzik193515d2005-11-07 00:59:37 -0500279static struct scsi_host_template sil24_sht = {
Tejun Heoedb33662005-07-28 10:36:22 +0900280 .module = THIS_MODULE,
281 .name = DRV_NAME,
282 .ioctl = ata_scsi_ioctl,
283 .queuecommand = ata_scsi_queuecmd,
Tejun Heoedb33662005-07-28 10:36:22 +0900284 .can_queue = ATA_DEF_QUEUE,
285 .this_id = ATA_SHT_THIS_ID,
286 .sg_tablesize = LIBATA_MAX_PRD,
Tejun Heoedb33662005-07-28 10:36:22 +0900287 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
288 .emulated = ATA_SHT_EMULATED,
289 .use_clustering = ATA_SHT_USE_CLUSTERING,
290 .proc_name = DRV_NAME,
291 .dma_boundary = ATA_DMA_BOUNDARY,
292 .slave_configure = ata_scsi_slave_config,
293 .bios_param = ata_std_bios_param,
Tejun Heoedb33662005-07-28 10:36:22 +0900294};
295
Jeff Garzik057ace52005-10-22 14:27:05 -0400296static const struct ata_port_operations sil24_ops = {
Tejun Heoedb33662005-07-28 10:36:22 +0900297 .port_disable = ata_port_disable,
298
Tejun Heo69ad1852005-11-18 14:16:45 +0900299 .dev_config = sil24_dev_config,
300
Tejun Heoedb33662005-07-28 10:36:22 +0900301 .check_status = sil24_check_status,
302 .check_altstatus = sil24_check_status,
Tejun Heoedb33662005-07-28 10:36:22 +0900303 .dev_select = ata_noop_dev_select,
304
Tejun Heo7f726d12005-10-07 01:43:19 +0900305 .tf_read = sil24_tf_read,
306
Tejun Heo07b73472006-02-10 23:58:48 +0900307 .probe_reset = sil24_probe_reset,
Tejun Heoedb33662005-07-28 10:36:22 +0900308
309 .qc_prep = sil24_qc_prep,
310 .qc_issue = sil24_qc_issue,
311
312 .eng_timeout = sil24_eng_timeout,
313
314 .irq_handler = sil24_interrupt,
315 .irq_clear = sil24_irq_clear,
316
317 .scr_read = sil24_scr_read,
318 .scr_write = sil24_scr_write,
319
320 .port_start = sil24_port_start,
321 .port_stop = sil24_port_stop,
322 .host_stop = sil24_host_stop,
323};
324
Tejun Heo042c21f2005-10-09 09:35:46 -0400325/*
326 * Use bits 30-31 of host_flags to encode available port numbers.
327 * Current maxium is 4.
328 */
329#define SIL24_NPORTS2FLAG(nports) ((((unsigned)(nports) - 1) & 0x3) << 30)
330#define SIL24_FLAG2NPORTS(flag) ((((flag) >> 30) & 0x3) + 1)
331
Tejun Heoedb33662005-07-28 10:36:22 +0900332static struct ata_port_info sil24_port_info[] = {
333 /* sil_3124 */
334 {
335 .sht = &sil24_sht,
336 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo07b73472006-02-10 23:58:48 +0900337 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
338 SIL24_NPORTS2FLAG(4),
Tejun Heoedb33662005-07-28 10:36:22 +0900339 .pio_mask = 0x1f, /* pio0-4 */
340 .mwdma_mask = 0x07, /* mwdma0-2 */
341 .udma_mask = 0x3f, /* udma0-5 */
342 .port_ops = &sil24_ops,
343 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500344 /* sil_3132 */
Tejun Heoedb33662005-07-28 10:36:22 +0900345 {
346 .sht = &sil24_sht,
347 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo07b73472006-02-10 23:58:48 +0900348 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
349 SIL24_NPORTS2FLAG(2),
Tejun Heo042c21f2005-10-09 09:35:46 -0400350 .pio_mask = 0x1f, /* pio0-4 */
351 .mwdma_mask = 0x07, /* mwdma0-2 */
352 .udma_mask = 0x3f, /* udma0-5 */
353 .port_ops = &sil24_ops,
354 },
355 /* sil_3131/sil_3531 */
356 {
357 .sht = &sil24_sht,
358 .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heo07b73472006-02-10 23:58:48 +0900359 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
360 SIL24_NPORTS2FLAG(1),
Tejun Heoedb33662005-07-28 10:36:22 +0900361 .pio_mask = 0x1f, /* pio0-4 */
362 .mwdma_mask = 0x07, /* mwdma0-2 */
363 .udma_mask = 0x3f, /* udma0-5 */
364 .port_ops = &sil24_ops,
365 },
366};
367
Tejun Heo69ad1852005-11-18 14:16:45 +0900368static void sil24_dev_config(struct ata_port *ap, struct ata_device *dev)
369{
370 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
371
Tejun Heo6e7846e2006-02-12 23:32:58 +0900372 if (dev->cdb_len == 16)
Tejun Heo69ad1852005-11-18 14:16:45 +0900373 writel(PORT_CS_CDB16, port + PORT_CTRL_STAT);
374 else
375 writel(PORT_CS_CDB16, port + PORT_CTRL_CLR);
376}
377
Tejun Heo6a575fa2005-10-06 11:43:39 +0900378static inline void sil24_update_tf(struct ata_port *ap)
379{
380 struct sil24_port_priv *pp = ap->private_data;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100381 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
382 struct sil24_prb __iomem *prb = port;
383 u8 fis[6 * 4];
Tejun Heo6a575fa2005-10-06 11:43:39 +0900384
Al Viro4b4a5ea2005-10-29 06:38:44 +0100385 memcpy_fromio(fis, prb->fis, 6 * 4);
386 ata_tf_from_fis(fis, &pp->tf);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900387}
388
Tejun Heoedb33662005-07-28 10:36:22 +0900389static u8 sil24_check_status(struct ata_port *ap)
390{
Tejun Heo6a575fa2005-10-06 11:43:39 +0900391 struct sil24_port_priv *pp = ap->private_data;
392 return pp->tf.command;
Tejun Heoedb33662005-07-28 10:36:22 +0900393}
394
Tejun Heoedb33662005-07-28 10:36:22 +0900395static int sil24_scr_map[] = {
396 [SCR_CONTROL] = 0,
397 [SCR_STATUS] = 1,
398 [SCR_ERROR] = 2,
399 [SCR_ACTIVE] = 3,
400};
401
402static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg)
403{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100404 void __iomem *scr_addr = (void __iomem *)ap->ioaddr.scr_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900405 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100406 void __iomem *addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900407 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
408 return readl(scr_addr + sil24_scr_map[sc_reg] * 4);
409 }
410 return 0xffffffffU;
411}
412
413static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val)
414{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100415 void __iomem *scr_addr = (void __iomem *)ap->ioaddr.scr_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900416 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100417 void __iomem *addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900418 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
419 writel(val, scr_addr + sil24_scr_map[sc_reg] * 4);
420 }
421}
422
Tejun Heo7f726d12005-10-07 01:43:19 +0900423static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
424{
425 struct sil24_port_priv *pp = ap->private_data;
426 *tf = pp->tf;
427}
428
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900429static int sil24_softreset(struct ata_port *ap, unsigned int *class)
Tejun Heoca451602005-11-18 14:14:01 +0900430{
431 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
432 struct sil24_port_priv *pp = ap->private_data;
Tejun Heo69ad1852005-11-18 14:16:45 +0900433 struct sil24_prb *prb = &pp->cmd_block[0].ata.prb;
Tejun Heoca451602005-11-18 14:14:01 +0900434 dma_addr_t paddr = pp->cmd_block_dma;
Tejun Heo86459842006-03-11 11:44:08 +0900435 unsigned long timeout = jiffies + ATA_TMOUT_BOOT * HZ;
Tejun Heoca451602005-11-18 14:14:01 +0900436 u32 irq_enable, irq_stat;
Tejun Heoca451602005-11-18 14:14:01 +0900437
Tejun Heo07b73472006-02-10 23:58:48 +0900438 DPRINTK("ENTER\n");
439
Tejun Heo10d996a2006-03-11 11:42:34 +0900440 if (!sata_dev_present(ap)) {
441 DPRINTK("PHY reports no device\n");
442 *class = ATA_DEV_NONE;
443 goto out;
444 }
445
Tejun Heoca451602005-11-18 14:14:01 +0900446 /* temporarily turn off IRQs during SRST */
447 irq_enable = readl(port + PORT_IRQ_ENABLE_SET);
448 writel(irq_enable, port + PORT_IRQ_ENABLE_CLR);
449
450 /*
451 * XXX: Not sure whether the following sleep is needed or not.
452 * The original driver had it. So....
453 */
454 msleep(10);
455
456 prb->ctrl = PRB_CTRL_SRST;
457 prb->fis[1] = 0; /* no PM yet */
458
459 writel((u32)paddr, port + PORT_CMD_ACTIVATE);
460
Tejun Heo86459842006-03-11 11:44:08 +0900461 do {
Tejun Heoca451602005-11-18 14:14:01 +0900462 irq_stat = readl(port + PORT_IRQ_STAT);
463 writel(irq_stat, port + PORT_IRQ_STAT); /* clear irq */
464
465 irq_stat >>= PORT_IRQ_RAW_SHIFT;
466 if (irq_stat & (PORT_IRQ_COMPLETE | PORT_IRQ_ERROR))
467 break;
468
Tejun Heo86459842006-03-11 11:44:08 +0900469 msleep(100);
470 } while (time_before(jiffies, timeout));
Tejun Heoca451602005-11-18 14:14:01 +0900471
472 /* restore IRQs */
473 writel(irq_enable, port + PORT_IRQ_ENABLE_SET);
474
Tejun Heo10d996a2006-03-11 11:42:34 +0900475 if (!(irq_stat & PORT_IRQ_COMPLETE)) {
476 DPRINTK("EXIT, srst failed\n");
477 return -EIO;
Tejun Heo07b73472006-02-10 23:58:48 +0900478 }
Tejun Heo10d996a2006-03-11 11:42:34 +0900479
480 sil24_update_tf(ap);
481 *class = ata_dev_classify(&pp->tf);
482
Tejun Heo07b73472006-02-10 23:58:48 +0900483 if (*class == ATA_DEV_UNKNOWN)
484 *class = ATA_DEV_NONE;
485
Tejun Heo10d996a2006-03-11 11:42:34 +0900486 out:
Tejun Heo07b73472006-02-10 23:58:48 +0900487 DPRINTK("EXIT, class=%u\n", *class);
Tejun Heoca451602005-11-18 14:14:01 +0900488 return 0;
489}
490
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900491static int sil24_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heo489ff4c2006-02-10 23:58:48 +0900492{
493 unsigned int dummy_class;
494
495 /* sil24 doesn't report device signature after hard reset */
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900496 return sata_std_hardreset(ap, &dummy_class);
Tejun Heo489ff4c2006-02-10 23:58:48 +0900497}
498
Tejun Heo07b73472006-02-10 23:58:48 +0900499static int sil24_probe_reset(struct ata_port *ap, unsigned int *classes)
Tejun Heoedb33662005-07-28 10:36:22 +0900500{
Tejun Heo07b73472006-02-10 23:58:48 +0900501 return ata_drive_probe_reset(ap, ata_std_probeinit,
Tejun Heo489ff4c2006-02-10 23:58:48 +0900502 sil24_softreset, sil24_hardreset,
Tejun Heo07b73472006-02-10 23:58:48 +0900503 ata_std_postreset, classes);
Tejun Heoedb33662005-07-28 10:36:22 +0900504}
505
506static inline void sil24_fill_sg(struct ata_queued_cmd *qc,
Tejun Heo69ad1852005-11-18 14:16:45 +0900507 struct sil24_sge *sge)
Tejun Heoedb33662005-07-28 10:36:22 +0900508{
Jeff Garzik972c26b2005-10-18 22:14:54 -0400509 struct scatterlist *sg;
510 unsigned int idx = 0;
Tejun Heoedb33662005-07-28 10:36:22 +0900511
Jeff Garzik972c26b2005-10-18 22:14:54 -0400512 ata_for_each_sg(sg, qc) {
Tejun Heoedb33662005-07-28 10:36:22 +0900513 sge->addr = cpu_to_le64(sg_dma_address(sg));
514 sge->cnt = cpu_to_le32(sg_dma_len(sg));
Jeff Garzik972c26b2005-10-18 22:14:54 -0400515 if (ata_sg_is_last(sg, qc))
516 sge->flags = cpu_to_le32(SGE_TRM);
517 else
518 sge->flags = 0;
519
520 sge++;
521 idx++;
Tejun Heoedb33662005-07-28 10:36:22 +0900522 }
523}
524
525static void sil24_qc_prep(struct ata_queued_cmd *qc)
526{
527 struct ata_port *ap = qc->ap;
528 struct sil24_port_priv *pp = ap->private_data;
Tejun Heo69ad1852005-11-18 14:16:45 +0900529 union sil24_cmd_block *cb = pp->cmd_block + qc->tag;
530 struct sil24_prb *prb;
531 struct sil24_sge *sge;
Tejun Heoedb33662005-07-28 10:36:22 +0900532
533 switch (qc->tf.protocol) {
534 case ATA_PROT_PIO:
535 case ATA_PROT_DMA:
536 case ATA_PROT_NODATA:
Tejun Heo69ad1852005-11-18 14:16:45 +0900537 prb = &cb->ata.prb;
538 sge = cb->ata.sge;
539 prb->ctrl = 0;
Tejun Heoedb33662005-07-28 10:36:22 +0900540 break;
Tejun Heo69ad1852005-11-18 14:16:45 +0900541
542 case ATA_PROT_ATAPI:
543 case ATA_PROT_ATAPI_DMA:
544 case ATA_PROT_ATAPI_NODATA:
545 prb = &cb->atapi.prb;
546 sge = cb->atapi.sge;
547 memset(cb->atapi.cdb, 0, 32);
Tejun Heo6e7846e2006-02-12 23:32:58 +0900548 memcpy(cb->atapi.cdb, qc->cdb, qc->dev->cdb_len);
Tejun Heo69ad1852005-11-18 14:16:45 +0900549
550 if (qc->tf.protocol != ATA_PROT_ATAPI_NODATA) {
551 if (qc->tf.flags & ATA_TFLAG_WRITE)
552 prb->ctrl = PRB_CTRL_PACKET_WRITE;
553 else
554 prb->ctrl = PRB_CTRL_PACKET_READ;
555 } else
556 prb->ctrl = 0;
557
558 break;
559
Tejun Heoedb33662005-07-28 10:36:22 +0900560 default:
Tejun Heo69ad1852005-11-18 14:16:45 +0900561 prb = NULL; /* shut up, gcc */
562 sge = NULL;
Tejun Heoedb33662005-07-28 10:36:22 +0900563 BUG();
564 }
565
566 ata_tf_to_fis(&qc->tf, prb->fis, 0);
567
568 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo69ad1852005-11-18 14:16:45 +0900569 sil24_fill_sg(qc, sge);
Tejun Heoedb33662005-07-28 10:36:22 +0900570}
571
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900572static unsigned int sil24_qc_issue(struct ata_queued_cmd *qc)
Tejun Heoedb33662005-07-28 10:36:22 +0900573{
574 struct ata_port *ap = qc->ap;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100575 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900576 struct sil24_port_priv *pp = ap->private_data;
577 dma_addr_t paddr = pp->cmd_block_dma + qc->tag * sizeof(*pp->cmd_block);
578
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900579 writel((u32)paddr, port + PORT_CMD_ACTIVATE);
Tejun Heoedb33662005-07-28 10:36:22 +0900580 return 0;
581}
582
583static void sil24_irq_clear(struct ata_port *ap)
584{
585 /* unused */
586}
587
Tejun Heo7d1ce682005-11-18 14:09:05 +0900588static int __sil24_restart_controller(void __iomem *port)
589{
590 u32 tmp;
591 int cnt;
592
593 writel(PORT_CS_INIT, port + PORT_CTRL_STAT);
594
595 /* Max ~10ms */
596 for (cnt = 0; cnt < 10000; cnt++) {
597 tmp = readl(port + PORT_CTRL_STAT);
598 if (tmp & PORT_CS_RDY)
599 return 0;
600 udelay(1);
601 }
602
603 return -1;
604}
605
606static void sil24_restart_controller(struct ata_port *ap)
607{
608 if (__sil24_restart_controller((void __iomem *)ap->ioaddr.cmd_addr))
609 printk(KERN_ERR DRV_NAME
610 " ata%u: failed to restart controller\n", ap->id);
611}
612
Al Viro4b4a5ea2005-10-29 06:38:44 +0100613static int __sil24_reset_controller(void __iomem *port)
Tejun Heoedb33662005-07-28 10:36:22 +0900614{
Tejun Heoedb33662005-07-28 10:36:22 +0900615 int cnt;
616 u32 tmp;
617
Tejun Heoedb33662005-07-28 10:36:22 +0900618 /* Reset controller state. Is this correct? */
619 writel(PORT_CS_DEV_RST, port + PORT_CTRL_STAT);
620 readl(port + PORT_CTRL_STAT); /* sync */
621
622 /* Max ~100ms */
623 for (cnt = 0; cnt < 1000; cnt++) {
624 udelay(100);
625 tmp = readl(port + PORT_CTRL_STAT);
626 if (!(tmp & PORT_CS_DEV_RST))
627 break;
628 }
Tejun Heo923f1222005-09-13 13:21:29 +0900629
Tejun Heoedb33662005-07-28 10:36:22 +0900630 if (tmp & PORT_CS_DEV_RST)
Tejun Heo923f1222005-09-13 13:21:29 +0900631 return -1;
Tejun Heo7d1ce682005-11-18 14:09:05 +0900632
633 if (tmp & PORT_CS_RDY)
634 return 0;
635
636 return __sil24_restart_controller(port);
Tejun Heo923f1222005-09-13 13:21:29 +0900637}
638
639static void sil24_reset_controller(struct ata_port *ap)
640{
641 printk(KERN_NOTICE DRV_NAME
642 " ata%u: resetting controller...\n", ap->id);
Al Viro4b4a5ea2005-10-29 06:38:44 +0100643 if (__sil24_reset_controller((void __iomem *)ap->ioaddr.cmd_addr))
Tejun Heo923f1222005-09-13 13:21:29 +0900644 printk(KERN_ERR DRV_NAME
645 " ata%u: failed to reset controller\n", ap->id);
Tejun Heoedb33662005-07-28 10:36:22 +0900646}
647
648static void sil24_eng_timeout(struct ata_port *ap)
649{
650 struct ata_queued_cmd *qc;
651
652 qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heoedb33662005-07-28 10:36:22 +0900653
Tejun Heoedb33662005-07-28 10:36:22 +0900654 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
Tejun Heo11a56d22006-01-23 13:09:36 +0900655 qc->err_mask |= AC_ERR_TIMEOUT;
Tejun Heoa72ec4c2006-01-23 13:09:37 +0900656 ata_eh_qc_complete(qc);
Tejun Heoedb33662005-07-28 10:36:22 +0900657
658 sil24_reset_controller(ap);
659}
660
Tejun Heo87466182005-08-17 13:08:57 +0900661static void sil24_error_intr(struct ata_port *ap, u32 slot_stat)
662{
663 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900664 struct sil24_port_priv *pp = ap->private_data;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100665 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heo87466182005-08-17 13:08:57 +0900666 u32 irq_stat, cmd_err, sstatus, serror;
Jeff Garzika7dac442005-10-30 04:44:42 -0500667 unsigned int err_mask;
Tejun Heo87466182005-08-17 13:08:57 +0900668
669 irq_stat = readl(port + PORT_IRQ_STAT);
Tejun Heoad6e90f2005-10-06 11:43:29 +0900670 writel(irq_stat, port + PORT_IRQ_STAT); /* clear irq */
671
672 if (!(irq_stat & PORT_IRQ_ERROR)) {
673 /* ignore non-completion, non-error irqs for now */
674 printk(KERN_WARNING DRV_NAME
675 "ata%u: non-error exception irq (irq_stat %x)\n",
676 ap->id, irq_stat);
677 return;
678 }
679
Tejun Heo87466182005-08-17 13:08:57 +0900680 cmd_err = readl(port + PORT_CMD_ERR);
681 sstatus = readl(port + PORT_SSTATUS);
682 serror = readl(port + PORT_SERROR);
Tejun Heo87466182005-08-17 13:08:57 +0900683 if (serror)
684 writel(serror, port + PORT_SERROR);
685
Tejun Heoc0ab4242005-11-18 14:22:03 +0900686 /*
687 * Don't log ATAPI device errors. They're supposed to happen
688 * and any serious errors will be logged using sense data by
689 * the SCSI layer.
690 */
691 if (ap->device[0].class != ATA_DEV_ATAPI || cmd_err > PORT_CERR_SDB)
692 printk("ata%u: error interrupt on port%d\n"
693 " stat=0x%x irq=0x%x cmd_err=%d sstatus=0x%x serror=0x%x\n",
694 ap->id, ap->port_no, slot_stat, irq_stat, cmd_err, sstatus, serror);
Tejun Heo87466182005-08-17 13:08:57 +0900695
Tejun Heo6a575fa2005-10-06 11:43:39 +0900696 if (cmd_err == PORT_CERR_DEV || cmd_err == PORT_CERR_SDB) {
697 /*
698 * Device is reporting error, tf registers are valid.
699 */
700 sil24_update_tf(ap);
Jeff Garzika7dac442005-10-30 04:44:42 -0500701 err_mask = ac_err_mask(pp->tf.command);
Tejun Heo7d1ce682005-11-18 14:09:05 +0900702 sil24_restart_controller(ap);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900703 } else {
704 /*
705 * Other errors. libata currently doesn't have any
706 * mechanism to report these errors. Just turn on
707 * ATA_ERR.
708 */
Jeff Garzika7dac442005-10-30 04:44:42 -0500709 err_mask = AC_ERR_OTHER;
Tejun Heo7d1ce682005-11-18 14:09:05 +0900710 sil24_reset_controller(ap);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900711 }
712
Albert Leea22e2eb2005-12-05 15:38:02 +0800713 if (qc) {
714 qc->err_mask |= err_mask;
715 ata_qc_complete(qc);
716 }
Tejun Heo87466182005-08-17 13:08:57 +0900717}
718
Tejun Heoedb33662005-07-28 10:36:22 +0900719static inline void sil24_host_intr(struct ata_port *ap)
720{
721 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
Al Viro4b4a5ea2005-10-29 06:38:44 +0100722 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900723 u32 slot_stat;
724
725 slot_stat = readl(port + PORT_SLOT_STAT);
726 if (!(slot_stat & HOST_SSTAT_ATTN)) {
Tejun Heo6a575fa2005-10-06 11:43:39 +0900727 struct sil24_port_priv *pp = ap->private_data;
728 /*
729 * !HOST_SSAT_ATTN guarantees successful completion,
730 * so reading back tf registers is unnecessary for
731 * most commands. TODO: read tf registers for
732 * commands which require these values on successful
733 * completion (EXECUTE DEVICE DIAGNOSTIC, CHECK POWER,
734 * DEVICE RESET and READ PORT MULTIPLIER (any more?).
735 */
736 sil24_update_tf(ap);
737
Albert Leea22e2eb2005-12-05 15:38:02 +0800738 if (qc) {
739 qc->err_mask |= ac_err_mask(pp->tf.command);
740 ata_qc_complete(qc);
741 }
Tejun Heo87466182005-08-17 13:08:57 +0900742 } else
743 sil24_error_intr(ap, slot_stat);
Tejun Heoedb33662005-07-28 10:36:22 +0900744}
745
746static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
747{
748 struct ata_host_set *host_set = dev_instance;
749 struct sil24_host_priv *hpriv = host_set->private_data;
750 unsigned handled = 0;
751 u32 status;
752 int i;
753
754 status = readl(hpriv->host_base + HOST_IRQ_STAT);
755
Tejun Heo06460ae2005-08-17 13:08:52 +0900756 if (status == 0xffffffff) {
757 printk(KERN_ERR DRV_NAME ": IRQ status == 0xffffffff, "
758 "PCI fault or device removal?\n");
759 goto out;
760 }
761
Tejun Heoedb33662005-07-28 10:36:22 +0900762 if (!(status & IRQ_STAT_4PORTS))
763 goto out;
764
765 spin_lock(&host_set->lock);
766
767 for (i = 0; i < host_set->n_ports; i++)
768 if (status & (1 << i)) {
769 struct ata_port *ap = host_set->ports[i];
Tejun Heo198e0fe2006-04-02 18:51:52 +0900770 if (ap && !(ap->flags & ATA_FLAG_DISABLED)) {
Tejun Heoedb33662005-07-28 10:36:22 +0900771 sil24_host_intr(host_set->ports[i]);
Tejun Heo3cc45712005-08-17 13:08:47 +0900772 handled++;
773 } else
774 printk(KERN_ERR DRV_NAME
775 ": interrupt from disabled port %d\n", i);
Tejun Heoedb33662005-07-28 10:36:22 +0900776 }
777
778 spin_unlock(&host_set->lock);
779 out:
780 return IRQ_RETVAL(handled);
781}
782
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500783static inline void sil24_cblk_free(struct sil24_port_priv *pp, struct device *dev)
784{
785 const size_t cb_size = sizeof(*pp->cmd_block);
786
787 dma_free_coherent(dev, cb_size, pp->cmd_block, pp->cmd_block_dma);
788}
789
Tejun Heoedb33662005-07-28 10:36:22 +0900790static int sil24_port_start(struct ata_port *ap)
791{
792 struct device *dev = ap->host_set->dev;
Tejun Heoedb33662005-07-28 10:36:22 +0900793 struct sil24_port_priv *pp;
Tejun Heo69ad1852005-11-18 14:16:45 +0900794 union sil24_cmd_block *cb;
Tejun Heoedb33662005-07-28 10:36:22 +0900795 size_t cb_size = sizeof(*cb);
796 dma_addr_t cb_dma;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500797 int rc = -ENOMEM;
Tejun Heoedb33662005-07-28 10:36:22 +0900798
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500799 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Tejun Heoedb33662005-07-28 10:36:22 +0900800 if (!pp)
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500801 goto err_out;
Tejun Heoedb33662005-07-28 10:36:22 +0900802
Tejun Heo6a575fa2005-10-06 11:43:39 +0900803 pp->tf.command = ATA_DRDY;
804
Tejun Heoedb33662005-07-28 10:36:22 +0900805 cb = dma_alloc_coherent(dev, cb_size, &cb_dma, GFP_KERNEL);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500806 if (!cb)
807 goto err_out_pp;
Tejun Heoedb33662005-07-28 10:36:22 +0900808 memset(cb, 0, cb_size);
809
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500810 rc = ata_pad_alloc(ap, dev);
811 if (rc)
812 goto err_out_pad;
813
Tejun Heoedb33662005-07-28 10:36:22 +0900814 pp->cmd_block = cb;
815 pp->cmd_block_dma = cb_dma;
816
817 ap->private_data = pp;
818
819 return 0;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500820
821err_out_pad:
822 sil24_cblk_free(pp, dev);
823err_out_pp:
824 kfree(pp);
825err_out:
826 return rc;
Tejun Heoedb33662005-07-28 10:36:22 +0900827}
828
829static void sil24_port_stop(struct ata_port *ap)
830{
831 struct device *dev = ap->host_set->dev;
832 struct sil24_port_priv *pp = ap->private_data;
Tejun Heoedb33662005-07-28 10:36:22 +0900833
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500834 sil24_cblk_free(pp, dev);
Tejun Heoe9c05af2005-11-14 00:24:18 +0900835 ata_pad_free(ap, dev);
Tejun Heoedb33662005-07-28 10:36:22 +0900836 kfree(pp);
837}
838
839static void sil24_host_stop(struct ata_host_set *host_set)
840{
841 struct sil24_host_priv *hpriv = host_set->private_data;
Jeff Garzik142877b2006-03-22 23:30:34 -0500842 struct pci_dev *pdev = to_pci_dev(host_set->dev);
Tejun Heoedb33662005-07-28 10:36:22 +0900843
Jeff Garzik142877b2006-03-22 23:30:34 -0500844 pci_iounmap(pdev, hpriv->host_base);
845 pci_iounmap(pdev, hpriv->port_base);
Tejun Heoedb33662005-07-28 10:36:22 +0900846 kfree(hpriv);
847}
848
849static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
850{
851 static int printed_version = 0;
852 unsigned int board_id = (unsigned int)ent->driver_data;
Tejun Heo042c21f2005-10-09 09:35:46 -0400853 struct ata_port_info *pinfo = &sil24_port_info[board_id];
Tejun Heoedb33662005-07-28 10:36:22 +0900854 struct ata_probe_ent *probe_ent = NULL;
855 struct sil24_host_priv *hpriv = NULL;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100856 void __iomem *host_base = NULL;
857 void __iomem *port_base = NULL;
Tejun Heoedb33662005-07-28 10:36:22 +0900858 int i, rc;
859
860 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500861 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Tejun Heoedb33662005-07-28 10:36:22 +0900862
863 rc = pci_enable_device(pdev);
864 if (rc)
865 return rc;
866
867 rc = pci_request_regions(pdev, DRV_NAME);
868 if (rc)
869 goto out_disable;
870
871 rc = -ENOMEM;
Jeff Garzik142877b2006-03-22 23:30:34 -0500872 /* map mmio registers */
873 host_base = pci_iomap(pdev, 0, 0);
Tejun Heoedb33662005-07-28 10:36:22 +0900874 if (!host_base)
875 goto out_free;
Jeff Garzik142877b2006-03-22 23:30:34 -0500876 port_base = pci_iomap(pdev, 2, 0);
Tejun Heoedb33662005-07-28 10:36:22 +0900877 if (!port_base)
878 goto out_free;
879
880 /* allocate & init probe_ent and hpriv */
Jeff Garzik142877b2006-03-22 23:30:34 -0500881 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Tejun Heoedb33662005-07-28 10:36:22 +0900882 if (!probe_ent)
883 goto out_free;
884
Jeff Garzik142877b2006-03-22 23:30:34 -0500885 hpriv = kzalloc(sizeof(*hpriv), GFP_KERNEL);
Tejun Heoedb33662005-07-28 10:36:22 +0900886 if (!hpriv)
887 goto out_free;
888
Tejun Heoedb33662005-07-28 10:36:22 +0900889 probe_ent->dev = pci_dev_to_dev(pdev);
890 INIT_LIST_HEAD(&probe_ent->node);
891
Tejun Heo042c21f2005-10-09 09:35:46 -0400892 probe_ent->sht = pinfo->sht;
893 probe_ent->host_flags = pinfo->host_flags;
894 probe_ent->pio_mask = pinfo->pio_mask;
Tejun Heofbfda6e2006-03-05 23:03:42 +0900895 probe_ent->mwdma_mask = pinfo->mwdma_mask;
Tejun Heo042c21f2005-10-09 09:35:46 -0400896 probe_ent->udma_mask = pinfo->udma_mask;
897 probe_ent->port_ops = pinfo->port_ops;
898 probe_ent->n_ports = SIL24_FLAG2NPORTS(pinfo->host_flags);
Tejun Heoedb33662005-07-28 10:36:22 +0900899
900 probe_ent->irq = pdev->irq;
901 probe_ent->irq_flags = SA_SHIRQ;
902 probe_ent->mmio_base = port_base;
903 probe_ent->private_data = hpriv;
904
Tejun Heoedb33662005-07-28 10:36:22 +0900905 hpriv->host_base = host_base;
906 hpriv->port_base = port_base;
907
908 /*
909 * Configure the device
910 */
911 /*
912 * FIXME: This device is certainly 64-bit capable. We just
913 * don't know how to use it. After fixing 32bit activation in
914 * this function, enable 64bit masks here.
915 */
916 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
917 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -0500918 dev_printk(KERN_ERR, &pdev->dev,
919 "32-bit DMA enable failed\n");
Tejun Heoedb33662005-07-28 10:36:22 +0900920 goto out_free;
921 }
922 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
923 if (rc) {
Jeff Garzika9524a72005-10-30 14:39:11 -0500924 dev_printk(KERN_ERR, &pdev->dev,
925 "32-bit consistent DMA enable failed\n");
Tejun Heoedb33662005-07-28 10:36:22 +0900926 goto out_free;
927 }
928
929 /* GPIO off */
930 writel(0, host_base + HOST_FLASH_CMD);
931
932 /* Mask interrupts during initialization */
933 writel(0, host_base + HOST_CTRL);
934
935 for (i = 0; i < probe_ent->n_ports; i++) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100936 void __iomem *port = port_base + i * PORT_REGS_SIZE;
Tejun Heoedb33662005-07-28 10:36:22 +0900937 unsigned long portu = (unsigned long)port;
938 u32 tmp;
939 int cnt;
940
Tejun Heo4f50c3c2005-08-17 13:09:07 +0900941 probe_ent->port[i].cmd_addr = portu + PORT_PRB;
Tejun Heoedb33662005-07-28 10:36:22 +0900942 probe_ent->port[i].scr_addr = portu + PORT_SCONTROL;
943
944 ata_std_ports(&probe_ent->port[i]);
945
946 /* Initial PHY setting */
947 writel(0x20c, port + PORT_PHY_CFG);
948
949 /* Clear port RST */
950 tmp = readl(port + PORT_CTRL_STAT);
951 if (tmp & PORT_CS_PORT_RST) {
952 writel(PORT_CS_PORT_RST, port + PORT_CTRL_CLR);
953 readl(port + PORT_CTRL_STAT); /* sync */
954 for (cnt = 0; cnt < 10; cnt++) {
955 msleep(10);
956 tmp = readl(port + PORT_CTRL_STAT);
957 if (!(tmp & PORT_CS_PORT_RST))
958 break;
959 }
960 if (tmp & PORT_CS_PORT_RST)
Jeff Garzika9524a72005-10-30 14:39:11 -0500961 dev_printk(KERN_ERR, &pdev->dev,
962 "failed to clear port RST\n");
Tejun Heoedb33662005-07-28 10:36:22 +0900963 }
964
965 /* Zero error counters. */
966 writel(0x8000, port + PORT_DECODE_ERR_THRESH);
967 writel(0x8000, port + PORT_CRC_ERR_THRESH);
968 writel(0x8000, port + PORT_HSHK_ERR_THRESH);
969 writel(0x0000, port + PORT_DECODE_ERR_CNT);
970 writel(0x0000, port + PORT_CRC_ERR_CNT);
971 writel(0x0000, port + PORT_HSHK_ERR_CNT);
972
973 /* FIXME: 32bit activation? */
974 writel(0, port + PORT_ACTIVATE_UPPER_ADDR);
975 writel(PORT_CS_32BIT_ACTV, port + PORT_CTRL_STAT);
976
977 /* Configure interrupts */
978 writel(0xffff, port + PORT_IRQ_ENABLE_CLR);
979 writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR | PORT_IRQ_SDB_FIS,
980 port + PORT_IRQ_ENABLE_SET);
981
982 /* Clear interrupts */
983 writel(0x0fff0fff, port + PORT_IRQ_STAT);
984 writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_CLR);
Tejun Heo923f1222005-09-13 13:21:29 +0900985
986 /* Clear port multiplier enable and resume bits */
987 writel(PORT_CS_PM_EN | PORT_CS_RESUME, port + PORT_CTRL_CLR);
988
989 /* Reset itself */
990 if (__sil24_reset_controller(port))
Jeff Garzika9524a72005-10-30 14:39:11 -0500991 dev_printk(KERN_ERR, &pdev->dev,
992 "failed to reset controller\n");
Tejun Heoedb33662005-07-28 10:36:22 +0900993 }
994
995 /* Turn on interrupts */
996 writel(IRQ_STAT_4PORTS, host_base + HOST_CTRL);
997
998 pci_set_master(pdev);
999
Tejun Heo14834672005-08-17 13:08:42 +09001000 /* FIXME: check ata_device_add return value */
Tejun Heoedb33662005-07-28 10:36:22 +09001001 ata_device_add(probe_ent);
1002
1003 kfree(probe_ent);
1004 return 0;
1005
1006 out_free:
1007 if (host_base)
Jeff Garzik142877b2006-03-22 23:30:34 -05001008 pci_iounmap(pdev, host_base);
Tejun Heoedb33662005-07-28 10:36:22 +09001009 if (port_base)
Jeff Garzik142877b2006-03-22 23:30:34 -05001010 pci_iounmap(pdev, port_base);
Tejun Heoedb33662005-07-28 10:36:22 +09001011 kfree(probe_ent);
1012 kfree(hpriv);
1013 pci_release_regions(pdev);
1014 out_disable:
1015 pci_disable_device(pdev);
1016 return rc;
1017}
1018
1019static int __init sil24_init(void)
1020{
1021 return pci_module_init(&sil24_pci_driver);
1022}
1023
1024static void __exit sil24_exit(void)
1025{
1026 pci_unregister_driver(&sil24_pci_driver);
1027}
1028
1029MODULE_AUTHOR("Tejun Heo");
1030MODULE_DESCRIPTION("Silicon Image 3124/3132 SATA low-level driver");
1031MODULE_LICENSE("GPL");
1032MODULE_DEVICE_TABLE(pci, sil24_pci_tbl);
1033
1034module_init(sil24_init);
1035module_exit(sil24_exit);