blob: 5aa288d2fb867fb2130a0ced4b599cb61f0afeaa [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 Garzik8676ce02006-06-26 20:41:33 -040034#define DRV_VERSION "0.3"
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 {
Alexey Dobriyanb4772572006-06-06 07:31:14 +040040 __le16 ctrl;
41 __le16 prot;
42 __le32 rx_cnt;
Tejun Heoedb33662005-07-28 10:36:22 +090043 u8 fis[6 * 4];
44};
45
46/*
47 * Scatter gather entry (SGE) 16 bytes
48 */
49struct sil24_sge {
Alexey Dobriyanb4772572006-06-06 07:31:14 +040050 __le64 addr;
51 __le32 cnt;
52 __le32 flags;
Tejun Heoedb33662005-07-28 10:36:22 +090053};
54
55/*
56 * Port multiplier
57 */
58struct sil24_port_multiplier {
Alexey Dobriyanb4772572006-06-06 07:31:14 +040059 __le32 diag;
60 __le32 sactive;
Tejun Heoedb33662005-07-28 10:36:22 +090061};
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
Tejun Heo7dafc3f2006-04-11 22:32:18 +090089 /* HOST_CTRL bits */
90 HOST_CTRL_M66EN = (1 << 16), /* M66EN PCI bus signal */
91 HOST_CTRL_TRDY = (1 << 17), /* latched PCI TRDY */
92 HOST_CTRL_STOP = (1 << 18), /* latched PCI STOP */
93 HOST_CTRL_DEVSEL = (1 << 19), /* latched PCI DEVSEL */
94 HOST_CTRL_REQ64 = (1 << 20), /* latched PCI REQ64 */
Tejun Heod2298dc2006-07-03 16:07:27 +090095 HOST_CTRL_GLOBAL_RST = (1 << 31), /* global reset */
Tejun Heo7dafc3f2006-04-11 22:32:18 +090096
Tejun Heoedb33662005-07-28 10:36:22 +090097 /*
98 * Port registers
99 * (8192 bytes @ +0x0000, +0x2000, +0x4000 and +0x6000 @ BAR2)
100 */
101 PORT_REGS_SIZE = 0x2000,
Tejun Heo135da342006-05-31 18:27:57 +0900102
Tejun Heo28c8f3b2006-10-16 08:47:18 +0900103 PORT_LRAM = 0x0000, /* 31 LRAM slots and PMP regs */
Tejun Heo135da342006-05-31 18:27:57 +0900104 PORT_LRAM_SLOT_SZ = 0x0080, /* 32 bytes PRB + 2 SGE, ACT... */
Tejun Heoedb33662005-07-28 10:36:22 +0900105
Tejun Heo28c8f3b2006-10-16 08:47:18 +0900106 PORT_PMP = 0x0f80, /* 8 bytes PMP * 16 (128 bytes) */
Tejun Heoc0c55902006-10-16 08:47:18 +0900107 PORT_PMP_STATUS = 0x0000, /* port device status offset */
108 PORT_PMP_QACTIVE = 0x0004, /* port device QActive offset */
109 PORT_PMP_SIZE = 0x0008, /* 8 bytes per PMP */
110
Tejun Heoedb33662005-07-28 10:36:22 +0900111 /* 32 bit regs */
Tejun Heo83bbecc2005-08-17 13:09:18 +0900112 PORT_CTRL_STAT = 0x1000, /* write: ctrl-set, read: stat */
113 PORT_CTRL_CLR = 0x1004, /* write: ctrl-clear */
114 PORT_IRQ_STAT = 0x1008, /* high: status, low: interrupt */
115 PORT_IRQ_ENABLE_SET = 0x1010, /* write: enable-set */
116 PORT_IRQ_ENABLE_CLR = 0x1014, /* write: enable-clear */
Tejun Heoedb33662005-07-28 10:36:22 +0900117 PORT_ACTIVATE_UPPER_ADDR= 0x101c,
Tejun Heo83bbecc2005-08-17 13:09:18 +0900118 PORT_EXEC_FIFO = 0x1020, /* command execution fifo */
119 PORT_CMD_ERR = 0x1024, /* command error number */
Tejun Heoedb33662005-07-28 10:36:22 +0900120 PORT_FIS_CFG = 0x1028,
121 PORT_FIFO_THRES = 0x102c,
122 /* 16 bit regs */
123 PORT_DECODE_ERR_CNT = 0x1040,
124 PORT_DECODE_ERR_THRESH = 0x1042,
125 PORT_CRC_ERR_CNT = 0x1044,
126 PORT_CRC_ERR_THRESH = 0x1046,
127 PORT_HSHK_ERR_CNT = 0x1048,
128 PORT_HSHK_ERR_THRESH = 0x104a,
129 /* 32 bit regs */
130 PORT_PHY_CFG = 0x1050,
131 PORT_SLOT_STAT = 0x1800,
132 PORT_CMD_ACTIVATE = 0x1c00, /* 64 bit cmd activate * 31 (248 bytes) */
Tejun Heoc0c55902006-10-16 08:47:18 +0900133 PORT_CONTEXT = 0x1e04,
Tejun Heoedb33662005-07-28 10:36:22 +0900134 PORT_EXEC_DIAG = 0x1e00, /* 32bit exec diag * 16 (64 bytes, 0-10 used on 3124) */
135 PORT_PSD_DIAG = 0x1e40, /* 32bit psd diag * 16 (64 bytes, 0-8 used on 3124) */
136 PORT_SCONTROL = 0x1f00,
137 PORT_SSTATUS = 0x1f04,
138 PORT_SERROR = 0x1f08,
139 PORT_SACTIVE = 0x1f0c,
140
141 /* PORT_CTRL_STAT bits */
142 PORT_CS_PORT_RST = (1 << 0), /* port reset */
143 PORT_CS_DEV_RST = (1 << 1), /* device reset */
144 PORT_CS_INIT = (1 << 2), /* port initialize */
145 PORT_CS_IRQ_WOC = (1 << 3), /* interrupt write one to clear */
Tejun Heod10cb352005-11-16 16:56:49 +0900146 PORT_CS_CDB16 = (1 << 5), /* 0=12b cdb, 1=16b cdb */
Tejun Heo28c8f3b2006-10-16 08:47:18 +0900147 PORT_CS_PMP_RESUME = (1 << 6), /* PMP resume */
Tejun Heoe382eb12005-08-17 13:09:13 +0900148 PORT_CS_32BIT_ACTV = (1 << 10), /* 32-bit activation */
Tejun Heo28c8f3b2006-10-16 08:47:18 +0900149 PORT_CS_PMP_EN = (1 << 13), /* port multiplier enable */
Tejun Heoe382eb12005-08-17 13:09:13 +0900150 PORT_CS_RDY = (1 << 31), /* port ready to accept commands */
Tejun Heoedb33662005-07-28 10:36:22 +0900151
152 /* PORT_IRQ_STAT/ENABLE_SET/CLR */
153 /* bits[11:0] are masked */
154 PORT_IRQ_COMPLETE = (1 << 0), /* command(s) completed */
155 PORT_IRQ_ERROR = (1 << 1), /* command execution error */
156 PORT_IRQ_PORTRDY_CHG = (1 << 2), /* port ready change */
157 PORT_IRQ_PWR_CHG = (1 << 3), /* power management change */
158 PORT_IRQ_PHYRDY_CHG = (1 << 4), /* PHY ready change */
159 PORT_IRQ_COMWAKE = (1 << 5), /* COMWAKE received */
Tejun Heo7dafc3f2006-04-11 22:32:18 +0900160 PORT_IRQ_UNK_FIS = (1 << 6), /* unknown FIS received */
161 PORT_IRQ_DEV_XCHG = (1 << 7), /* device exchanged */
162 PORT_IRQ_8B10B = (1 << 8), /* 8b/10b decode error threshold */
163 PORT_IRQ_CRC = (1 << 9), /* CRC error threshold */
164 PORT_IRQ_HANDSHAKE = (1 << 10), /* handshake error threshold */
Tejun Heo3b9f1d02006-04-11 22:32:18 +0900165 PORT_IRQ_SDB_NOTIFY = (1 << 11), /* SDB notify received */
Tejun Heoedb33662005-07-28 10:36:22 +0900166
Tejun Heo88ce7552006-05-15 20:58:32 +0900167 DEF_PORT_IRQ = PORT_IRQ_COMPLETE | PORT_IRQ_ERROR |
Tejun Heo05429252006-05-31 18:28:20 +0900168 PORT_IRQ_PHYRDY_CHG | PORT_IRQ_DEV_XCHG |
169 PORT_IRQ_UNK_FIS,
Tejun Heo88ce7552006-05-15 20:58:32 +0900170
Tejun Heoedb33662005-07-28 10:36:22 +0900171 /* bits[27:16] are unmasked (raw) */
172 PORT_IRQ_RAW_SHIFT = 16,
173 PORT_IRQ_MASKED_MASK = 0x7ff,
174 PORT_IRQ_RAW_MASK = (0x7ff << PORT_IRQ_RAW_SHIFT),
175
176 /* ENABLE_SET/CLR specific, intr steering - 2 bit field */
177 PORT_IRQ_STEER_SHIFT = 30,
178 PORT_IRQ_STEER_MASK = (3 << PORT_IRQ_STEER_SHIFT),
179
180 /* PORT_CMD_ERR constants */
181 PORT_CERR_DEV = 1, /* Error bit in D2H Register FIS */
182 PORT_CERR_SDB = 2, /* Error bit in SDB FIS */
183 PORT_CERR_DATA = 3, /* Error in data FIS not detected by dev */
184 PORT_CERR_SEND = 4, /* Initial cmd FIS transmission failure */
185 PORT_CERR_INCONSISTENT = 5, /* Protocol mismatch */
186 PORT_CERR_DIRECTION = 6, /* Data direction mismatch */
187 PORT_CERR_UNDERRUN = 7, /* Ran out of SGEs while writing */
188 PORT_CERR_OVERRUN = 8, /* Ran out of SGEs while reading */
189 PORT_CERR_PKT_PROT = 11, /* DIR invalid in 1st PIO setup of ATAPI */
190 PORT_CERR_SGT_BOUNDARY = 16, /* PLD ecode 00 - SGT not on qword boundary */
191 PORT_CERR_SGT_TGTABRT = 17, /* PLD ecode 01 - target abort */
192 PORT_CERR_SGT_MSTABRT = 18, /* PLD ecode 10 - master abort */
193 PORT_CERR_SGT_PCIPERR = 19, /* PLD ecode 11 - PCI parity err while fetching SGT */
194 PORT_CERR_CMD_BOUNDARY = 24, /* ctrl[15:13] 001 - PRB not on qword boundary */
195 PORT_CERR_CMD_TGTABRT = 25, /* ctrl[15:13] 010 - target abort */
196 PORT_CERR_CMD_MSTABRT = 26, /* ctrl[15:13] 100 - master abort */
197 PORT_CERR_CMD_PCIPERR = 27, /* ctrl[15:13] 110 - PCI parity err while fetching PRB */
198 PORT_CERR_XFR_UNDEF = 32, /* PSD ecode 00 - undefined */
199 PORT_CERR_XFR_TGTABRT = 33, /* PSD ecode 01 - target abort */
Tejun Heo64008802006-04-11 22:32:18 +0900200 PORT_CERR_XFR_MSTABRT = 34, /* PSD ecode 10 - master abort */
Tejun Heoedb33662005-07-28 10:36:22 +0900201 PORT_CERR_XFR_PCIPERR = 35, /* PSD ecode 11 - PCI prity err during transfer */
Tejun Heo83bbecc2005-08-17 13:09:18 +0900202 PORT_CERR_SENDSERVICE = 36, /* FIS received while sending service */
Tejun Heoedb33662005-07-28 10:36:22 +0900203
Tejun Heod10cb352005-11-16 16:56:49 +0900204 /* bits of PRB control field */
205 PRB_CTRL_PROTOCOL = (1 << 0), /* override def. ATA protocol */
206 PRB_CTRL_PACKET_READ = (1 << 4), /* PACKET cmd read */
207 PRB_CTRL_PACKET_WRITE = (1 << 5), /* PACKET cmd write */
208 PRB_CTRL_NIEN = (1 << 6), /* Mask completion irq */
209 PRB_CTRL_SRST = (1 << 7), /* Soft reset request (ign BSY?) */
210
211 /* PRB protocol field */
212 PRB_PROT_PACKET = (1 << 0),
213 PRB_PROT_TCQ = (1 << 1),
214 PRB_PROT_NCQ = (1 << 2),
215 PRB_PROT_READ = (1 << 3),
216 PRB_PROT_WRITE = (1 << 4),
217 PRB_PROT_TRANSPARENT = (1 << 5),
218
Tejun Heoedb33662005-07-28 10:36:22 +0900219 /*
220 * Other constants
221 */
222 SGE_TRM = (1 << 31), /* Last SGE in chain */
Tejun Heod10cb352005-11-16 16:56:49 +0900223 SGE_LNK = (1 << 30), /* linked list
224 Points to SGT, not SGE */
225 SGE_DRD = (1 << 29), /* discard data read (/dev/null)
226 data address ignored */
Tejun Heoedb33662005-07-28 10:36:22 +0900227
Tejun Heoaee10a02006-05-15 21:03:56 +0900228 SIL24_MAX_CMDS = 31,
229
Tejun Heoedb33662005-07-28 10:36:22 +0900230 /* board id */
231 BID_SIL3124 = 0,
232 BID_SIL3132 = 1,
Tejun Heo042c21f2005-10-09 09:35:46 -0400233 BID_SIL3131 = 2,
Tejun Heoedb33662005-07-28 10:36:22 +0900234
Tejun Heo9466d852006-04-11 22:32:18 +0900235 /* host flags */
236 SIL24_COMMON_FLAGS = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
Tejun Heoaee10a02006-05-15 21:03:56 +0900237 ATA_FLAG_MMIO | ATA_FLAG_PIO_DMA |
Tejun Heo05429252006-05-31 18:28:20 +0900238 ATA_FLAG_NCQ | ATA_FLAG_SKIP_D2H_BSY,
Tejun Heo37024e82006-04-11 22:32:19 +0900239 SIL24_FLAG_PCIX_IRQ_WOC = (1 << 24), /* IRQ loss errata on PCI-X */
Tejun Heo9466d852006-04-11 22:32:18 +0900240
Tejun Heoedb33662005-07-28 10:36:22 +0900241 IRQ_STAT_4PORTS = 0xf,
242};
243
Tejun Heo69ad1852005-11-18 14:16:45 +0900244struct sil24_ata_block {
Tejun Heoedb33662005-07-28 10:36:22 +0900245 struct sil24_prb prb;
246 struct sil24_sge sge[LIBATA_MAX_PRD];
247};
248
Tejun Heo69ad1852005-11-18 14:16:45 +0900249struct sil24_atapi_block {
250 struct sil24_prb prb;
251 u8 cdb[16];
252 struct sil24_sge sge[LIBATA_MAX_PRD - 1];
253};
254
255union sil24_cmd_block {
256 struct sil24_ata_block ata;
257 struct sil24_atapi_block atapi;
258};
259
Tejun Heo88ce7552006-05-15 20:58:32 +0900260static struct sil24_cerr_info {
261 unsigned int err_mask, action;
262 const char *desc;
263} sil24_cerr_db[] = {
264 [0] = { AC_ERR_DEV, ATA_EH_REVALIDATE,
265 "device error" },
266 [PORT_CERR_DEV] = { AC_ERR_DEV, ATA_EH_REVALIDATE,
267 "device error via D2H FIS" },
268 [PORT_CERR_SDB] = { AC_ERR_DEV, ATA_EH_REVALIDATE,
269 "device error via SDB FIS" },
270 [PORT_CERR_DATA] = { AC_ERR_ATA_BUS, ATA_EH_SOFTRESET,
271 "error in data FIS" },
272 [PORT_CERR_SEND] = { AC_ERR_ATA_BUS, ATA_EH_SOFTRESET,
273 "failed to transmit command FIS" },
274 [PORT_CERR_INCONSISTENT] = { AC_ERR_HSM, ATA_EH_SOFTRESET,
275 "protocol mismatch" },
276 [PORT_CERR_DIRECTION] = { AC_ERR_HSM, ATA_EH_SOFTRESET,
277 "data directon mismatch" },
278 [PORT_CERR_UNDERRUN] = { AC_ERR_HSM, ATA_EH_SOFTRESET,
279 "ran out of SGEs while writing" },
280 [PORT_CERR_OVERRUN] = { AC_ERR_HSM, ATA_EH_SOFTRESET,
281 "ran out of SGEs while reading" },
282 [PORT_CERR_PKT_PROT] = { AC_ERR_HSM, ATA_EH_SOFTRESET,
283 "invalid data directon for ATAPI CDB" },
284 [PORT_CERR_SGT_BOUNDARY] = { AC_ERR_SYSTEM, ATA_EH_SOFTRESET,
285 "SGT no on qword boundary" },
286 [PORT_CERR_SGT_TGTABRT] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
287 "PCI target abort while fetching SGT" },
288 [PORT_CERR_SGT_MSTABRT] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
289 "PCI master abort while fetching SGT" },
290 [PORT_CERR_SGT_PCIPERR] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
291 "PCI parity error while fetching SGT" },
292 [PORT_CERR_CMD_BOUNDARY] = { AC_ERR_SYSTEM, ATA_EH_SOFTRESET,
293 "PRB not on qword boundary" },
294 [PORT_CERR_CMD_TGTABRT] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
295 "PCI target abort while fetching PRB" },
296 [PORT_CERR_CMD_MSTABRT] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
297 "PCI master abort while fetching PRB" },
298 [PORT_CERR_CMD_PCIPERR] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
299 "PCI parity error while fetching PRB" },
300 [PORT_CERR_XFR_UNDEF] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
301 "undefined error while transferring data" },
302 [PORT_CERR_XFR_TGTABRT] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
303 "PCI target abort while transferring data" },
304 [PORT_CERR_XFR_MSTABRT] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
305 "PCI master abort while transferring data" },
306 [PORT_CERR_XFR_PCIPERR] = { AC_ERR_HOST_BUS, ATA_EH_SOFTRESET,
307 "PCI parity error while transferring data" },
308 [PORT_CERR_SENDSERVICE] = { AC_ERR_HSM, ATA_EH_SOFTRESET,
309 "FIS received while sending service FIS" },
310};
311
Tejun Heoedb33662005-07-28 10:36:22 +0900312/*
313 * ap->private_data
314 *
315 * The preview driver always returned 0 for status. We emulate it
316 * here from the previous interrupt.
317 */
318struct sil24_port_priv {
Tejun Heo69ad1852005-11-18 14:16:45 +0900319 union sil24_cmd_block *cmd_block; /* 32 cmd blocks */
Tejun Heoedb33662005-07-28 10:36:22 +0900320 dma_addr_t cmd_block_dma; /* DMA base addr for them */
Tejun Heo6a575fa2005-10-06 11:43:39 +0900321 struct ata_taskfile tf; /* Cached taskfile registers */
Tejun Heoedb33662005-07-28 10:36:22 +0900322};
323
Jeff Garzikcca39742006-08-24 03:19:22 -0400324/* ap->host->private_data */
Tejun Heoedb33662005-07-28 10:36:22 +0900325struct sil24_host_priv {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100326 void __iomem *host_base; /* global controller control (128 bytes @BAR0) */
327 void __iomem *port_base; /* port registers (4 * 8192 bytes @BAR2) */
Tejun Heoedb33662005-07-28 10:36:22 +0900328};
329
Tejun Heo69ad1852005-11-18 14:16:45 +0900330static void sil24_dev_config(struct ata_port *ap, struct ata_device *dev);
Tejun Heoedb33662005-07-28 10:36:22 +0900331static u8 sil24_check_status(struct ata_port *ap);
Tejun Heoedb33662005-07-28 10:36:22 +0900332static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg);
333static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val);
Tejun Heo7f726d12005-10-07 01:43:19 +0900334static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
Tejun Heoedb33662005-07-28 10:36:22 +0900335static void sil24_qc_prep(struct ata_queued_cmd *qc);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900336static unsigned int sil24_qc_issue(struct ata_queued_cmd *qc);
Tejun Heoedb33662005-07-28 10:36:22 +0900337static void sil24_irq_clear(struct ata_port *ap);
David Howells7d12e782006-10-05 14:55:46 +0100338static irqreturn_t sil24_interrupt(int irq, void *dev_instance);
Tejun Heo88ce7552006-05-15 20:58:32 +0900339static void sil24_freeze(struct ata_port *ap);
340static void sil24_thaw(struct ata_port *ap);
341static void sil24_error_handler(struct ata_port *ap);
342static void sil24_post_internal_cmd(struct ata_queued_cmd *qc);
Tejun Heoedb33662005-07-28 10:36:22 +0900343static int sil24_port_start(struct ata_port *ap);
344static void sil24_port_stop(struct ata_port *ap);
Jeff Garzikcca39742006-08-24 03:19:22 -0400345static void sil24_host_stop(struct ata_host *host);
Tejun Heoedb33662005-07-28 10:36:22 +0900346static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
Alexey Dobriyan281d4262006-08-14 22:49:30 -0700347#ifdef CONFIG_PM
Tejun Heod2298dc2006-07-03 16:07:27 +0900348static int sil24_pci_device_resume(struct pci_dev *pdev);
Alexey Dobriyan281d4262006-08-14 22:49:30 -0700349#endif
Tejun Heoedb33662005-07-28 10:36:22 +0900350
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500351static const struct pci_device_id sil24_pci_tbl[] = {
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400352 { PCI_VDEVICE(CMD, 0x3124), BID_SIL3124 },
353 { PCI_VDEVICE(INTEL, 0x3124), BID_SIL3124 },
354 { PCI_VDEVICE(CMD, 0x3132), BID_SIL3132 },
355 { PCI_VDEVICE(CMD, 0x3131), BID_SIL3131 },
356 { PCI_VDEVICE(CMD, 0x3531), BID_SIL3131 },
357
Tejun Heo1fcce8392005-10-09 09:31:33 -0400358 { } /* terminate list */
Tejun Heoedb33662005-07-28 10:36:22 +0900359};
360
361static struct pci_driver sil24_pci_driver = {
362 .name = DRV_NAME,
363 .id_table = sil24_pci_tbl,
364 .probe = sil24_init_one,
365 .remove = ata_pci_remove_one, /* safe? */
Alexey Dobriyan281d4262006-08-14 22:49:30 -0700366#ifdef CONFIG_PM
Tejun Heod2298dc2006-07-03 16:07:27 +0900367 .suspend = ata_pci_device_suspend,
368 .resume = sil24_pci_device_resume,
Alexey Dobriyan281d4262006-08-14 22:49:30 -0700369#endif
Tejun Heoedb33662005-07-28 10:36:22 +0900370};
371
Jeff Garzik193515d2005-11-07 00:59:37 -0500372static struct scsi_host_template sil24_sht = {
Tejun Heoedb33662005-07-28 10:36:22 +0900373 .module = THIS_MODULE,
374 .name = DRV_NAME,
375 .ioctl = ata_scsi_ioctl,
376 .queuecommand = ata_scsi_queuecmd,
Tejun Heoaee10a02006-05-15 21:03:56 +0900377 .change_queue_depth = ata_scsi_change_queue_depth,
378 .can_queue = SIL24_MAX_CMDS,
Tejun Heoedb33662005-07-28 10:36:22 +0900379 .this_id = ATA_SHT_THIS_ID,
380 .sg_tablesize = LIBATA_MAX_PRD,
Tejun Heoedb33662005-07-28 10:36:22 +0900381 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
382 .emulated = ATA_SHT_EMULATED,
383 .use_clustering = ATA_SHT_USE_CLUSTERING,
384 .proc_name = DRV_NAME,
385 .dma_boundary = ATA_DMA_BOUNDARY,
386 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900387 .slave_destroy = ata_scsi_slave_destroy,
Tejun Heoedb33662005-07-28 10:36:22 +0900388 .bios_param = ata_std_bios_param,
Tejun Heod2298dc2006-07-03 16:07:27 +0900389 .suspend = ata_scsi_device_suspend,
390 .resume = ata_scsi_device_resume,
Tejun Heoedb33662005-07-28 10:36:22 +0900391};
392
Jeff Garzik057ace52005-10-22 14:27:05 -0400393static const struct ata_port_operations sil24_ops = {
Tejun Heoedb33662005-07-28 10:36:22 +0900394 .port_disable = ata_port_disable,
395
Tejun Heo69ad1852005-11-18 14:16:45 +0900396 .dev_config = sil24_dev_config,
397
Tejun Heoedb33662005-07-28 10:36:22 +0900398 .check_status = sil24_check_status,
399 .check_altstatus = sil24_check_status,
Tejun Heoedb33662005-07-28 10:36:22 +0900400 .dev_select = ata_noop_dev_select,
401
Tejun Heo7f726d12005-10-07 01:43:19 +0900402 .tf_read = sil24_tf_read,
403
Tejun Heoedb33662005-07-28 10:36:22 +0900404 .qc_prep = sil24_qc_prep,
405 .qc_issue = sil24_qc_issue,
406
Tejun Heoedb33662005-07-28 10:36:22 +0900407 .irq_handler = sil24_interrupt,
408 .irq_clear = sil24_irq_clear,
409
410 .scr_read = sil24_scr_read,
411 .scr_write = sil24_scr_write,
412
Tejun Heo88ce7552006-05-15 20:58:32 +0900413 .freeze = sil24_freeze,
414 .thaw = sil24_thaw,
415 .error_handler = sil24_error_handler,
416 .post_internal_cmd = sil24_post_internal_cmd,
417
Tejun Heoedb33662005-07-28 10:36:22 +0900418 .port_start = sil24_port_start,
419 .port_stop = sil24_port_stop,
420 .host_stop = sil24_host_stop,
421};
422
Tejun Heo042c21f2005-10-09 09:35:46 -0400423/*
Jeff Garzikcca39742006-08-24 03:19:22 -0400424 * Use bits 30-31 of port_flags to encode available port numbers.
Tejun Heo042c21f2005-10-09 09:35:46 -0400425 * Current maxium is 4.
426 */
427#define SIL24_NPORTS2FLAG(nports) ((((unsigned)(nports) - 1) & 0x3) << 30)
428#define SIL24_FLAG2NPORTS(flag) ((((flag) >> 30) & 0x3) + 1)
429
Tejun Heoedb33662005-07-28 10:36:22 +0900430static struct ata_port_info sil24_port_info[] = {
431 /* sil_3124 */
432 {
433 .sht = &sil24_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400434 .flags = SIL24_COMMON_FLAGS | SIL24_NPORTS2FLAG(4) |
Tejun Heo37024e82006-04-11 22:32:19 +0900435 SIL24_FLAG_PCIX_IRQ_WOC,
Tejun Heoedb33662005-07-28 10:36:22 +0900436 .pio_mask = 0x1f, /* pio0-4 */
437 .mwdma_mask = 0x07, /* mwdma0-2 */
438 .udma_mask = 0x3f, /* udma0-5 */
439 .port_ops = &sil24_ops,
440 },
Jeff Garzik2e9edbf2006-03-24 09:56:57 -0500441 /* sil_3132 */
Tejun Heoedb33662005-07-28 10:36:22 +0900442 {
443 .sht = &sil24_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400444 .flags = SIL24_COMMON_FLAGS | SIL24_NPORTS2FLAG(2),
Tejun Heo042c21f2005-10-09 09:35:46 -0400445 .pio_mask = 0x1f, /* pio0-4 */
446 .mwdma_mask = 0x07, /* mwdma0-2 */
447 .udma_mask = 0x3f, /* udma0-5 */
448 .port_ops = &sil24_ops,
449 },
450 /* sil_3131/sil_3531 */
451 {
452 .sht = &sil24_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400453 .flags = SIL24_COMMON_FLAGS | SIL24_NPORTS2FLAG(1),
Tejun Heoedb33662005-07-28 10:36:22 +0900454 .pio_mask = 0x1f, /* pio0-4 */
455 .mwdma_mask = 0x07, /* mwdma0-2 */
456 .udma_mask = 0x3f, /* udma0-5 */
457 .port_ops = &sil24_ops,
458 },
459};
460
Tejun Heoaee10a02006-05-15 21:03:56 +0900461static int sil24_tag(int tag)
462{
463 if (unlikely(ata_tag_internal(tag)))
464 return 0;
465 return tag;
466}
467
Tejun Heo69ad1852005-11-18 14:16:45 +0900468static void sil24_dev_config(struct ata_port *ap, struct ata_device *dev)
469{
470 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
471
Tejun Heo6e7846e2006-02-12 23:32:58 +0900472 if (dev->cdb_len == 16)
Tejun Heo69ad1852005-11-18 14:16:45 +0900473 writel(PORT_CS_CDB16, port + PORT_CTRL_STAT);
474 else
475 writel(PORT_CS_CDB16, port + PORT_CTRL_CLR);
476}
477
Tejun Heo6a575fa2005-10-06 11:43:39 +0900478static inline void sil24_update_tf(struct ata_port *ap)
479{
480 struct sil24_port_priv *pp = ap->private_data;
Al Viro4b4a5ea2005-10-29 06:38:44 +0100481 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
482 struct sil24_prb __iomem *prb = port;
483 u8 fis[6 * 4];
Tejun Heo6a575fa2005-10-06 11:43:39 +0900484
Al Viro4b4a5ea2005-10-29 06:38:44 +0100485 memcpy_fromio(fis, prb->fis, 6 * 4);
486 ata_tf_from_fis(fis, &pp->tf);
Tejun Heo6a575fa2005-10-06 11:43:39 +0900487}
488
Tejun Heoedb33662005-07-28 10:36:22 +0900489static u8 sil24_check_status(struct ata_port *ap)
490{
Tejun Heo6a575fa2005-10-06 11:43:39 +0900491 struct sil24_port_priv *pp = ap->private_data;
492 return pp->tf.command;
Tejun Heoedb33662005-07-28 10:36:22 +0900493}
494
Tejun Heoedb33662005-07-28 10:36:22 +0900495static int sil24_scr_map[] = {
496 [SCR_CONTROL] = 0,
497 [SCR_STATUS] = 1,
498 [SCR_ERROR] = 2,
499 [SCR_ACTIVE] = 3,
500};
501
502static u32 sil24_scr_read(struct ata_port *ap, unsigned sc_reg)
503{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100504 void __iomem *scr_addr = (void __iomem *)ap->ioaddr.scr_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900505 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100506 void __iomem *addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900507 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
508 return readl(scr_addr + sil24_scr_map[sc_reg] * 4);
509 }
510 return 0xffffffffU;
511}
512
513static void sil24_scr_write(struct ata_port *ap, unsigned sc_reg, u32 val)
514{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100515 void __iomem *scr_addr = (void __iomem *)ap->ioaddr.scr_addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900516 if (sc_reg < ARRAY_SIZE(sil24_scr_map)) {
Al Viro4b4a5ea2005-10-29 06:38:44 +0100517 void __iomem *addr;
Tejun Heoedb33662005-07-28 10:36:22 +0900518 addr = scr_addr + sil24_scr_map[sc_reg] * 4;
519 writel(val, scr_addr + sil24_scr_map[sc_reg] * 4);
520 }
521}
522
Tejun Heo7f726d12005-10-07 01:43:19 +0900523static void sil24_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
524{
525 struct sil24_port_priv *pp = ap->private_data;
526 *tf = pp->tf;
527}
528
Tejun Heob5bc4212006-04-11 22:32:19 +0900529static int sil24_init_port(struct ata_port *ap)
530{
531 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
532 u32 tmp;
533
534 writel(PORT_CS_INIT, port + PORT_CTRL_STAT);
535 ata_wait_register(port + PORT_CTRL_STAT,
536 PORT_CS_INIT, PORT_CS_INIT, 10, 100);
537 tmp = ata_wait_register(port + PORT_CTRL_STAT,
538 PORT_CS_RDY, 0, 10, 100);
539
540 if ((tmp & (PORT_CS_INIT | PORT_CS_RDY)) != PORT_CS_RDY)
541 return -EIO;
542 return 0;
543}
544
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900545static int sil24_softreset(struct ata_port *ap, unsigned int *class)
Tejun Heoca451602005-11-18 14:14:01 +0900546{
547 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
548 struct sil24_port_priv *pp = ap->private_data;
Tejun Heo69ad1852005-11-18 14:16:45 +0900549 struct sil24_prb *prb = &pp->cmd_block[0].ata.prb;
Tejun Heoca451602005-11-18 14:14:01 +0900550 dma_addr_t paddr = pp->cmd_block_dma;
Tejun Heo88ce7552006-05-15 20:58:32 +0900551 u32 mask, irq_stat;
Tejun Heo643be972006-04-11 22:22:29 +0900552 const char *reason;
Tejun Heoca451602005-11-18 14:14:01 +0900553
Tejun Heo07b73472006-02-10 23:58:48 +0900554 DPRINTK("ENTER\n");
555
Tejun Heo81952c52006-05-15 20:57:47 +0900556 if (ata_port_offline(ap)) {
Tejun Heo10d996a2006-03-11 11:42:34 +0900557 DPRINTK("PHY reports no device\n");
558 *class = ATA_DEV_NONE;
559 goto out;
560 }
561
Tejun Heo2555d6c2006-04-11 22:32:19 +0900562 /* put the port into known state */
563 if (sil24_init_port(ap)) {
564 reason ="port not ready";
565 goto err;
566 }
567
Tejun Heo0eaa6052006-04-11 22:32:19 +0900568 /* do SRST */
Tejun Heobad28a32006-04-11 22:32:19 +0900569 prb->ctrl = cpu_to_le16(PRB_CTRL_SRST);
Tejun Heo28c8f3b2006-10-16 08:47:18 +0900570 prb->fis[1] = 0; /* no PMP yet */
Tejun Heoca451602005-11-18 14:14:01 +0900571
572 writel((u32)paddr, port + PORT_CMD_ACTIVATE);
Tejun Heo26ec6342006-04-11 22:32:19 +0900573 writel((u64)paddr >> 32, port + PORT_CMD_ACTIVATE + 4);
Tejun Heoca451602005-11-18 14:14:01 +0900574
Tejun Heo7dd29dd2006-04-11 22:22:30 +0900575 mask = (PORT_IRQ_COMPLETE | PORT_IRQ_ERROR) << PORT_IRQ_RAW_SHIFT;
576 irq_stat = ata_wait_register(port + PORT_IRQ_STAT, mask, 0x0,
577 100, ATA_TMOUT_BOOT / HZ * 1000);
Tejun Heoca451602005-11-18 14:14:01 +0900578
Tejun Heo7dd29dd2006-04-11 22:22:30 +0900579 writel(irq_stat, port + PORT_IRQ_STAT); /* clear IRQs */
580 irq_stat >>= PORT_IRQ_RAW_SHIFT;
Tejun Heoca451602005-11-18 14:14:01 +0900581
Tejun Heo10d996a2006-03-11 11:42:34 +0900582 if (!(irq_stat & PORT_IRQ_COMPLETE)) {
Tejun Heo643be972006-04-11 22:22:29 +0900583 if (irq_stat & PORT_IRQ_ERROR)
584 reason = "SRST command error";
585 else
586 reason = "timeout";
587 goto err;
Tejun Heo07b73472006-02-10 23:58:48 +0900588 }
Tejun Heo10d996a2006-03-11 11:42:34 +0900589
590 sil24_update_tf(ap);
591 *class = ata_dev_classify(&pp->tf);
592
Tejun Heo07b73472006-02-10 23:58:48 +0900593 if (*class == ATA_DEV_UNKNOWN)
594 *class = ATA_DEV_NONE;
595
Tejun Heo10d996a2006-03-11 11:42:34 +0900596 out:
Tejun Heo07b73472006-02-10 23:58:48 +0900597 DPRINTK("EXIT, class=%u\n", *class);
Tejun Heoca451602005-11-18 14:14:01 +0900598 return 0;
Tejun Heo643be972006-04-11 22:22:29 +0900599
600 err:
Tejun Heof15a1da2006-05-15 20:57:56 +0900601 ata_port_printk(ap, KERN_ERR, "softreset failed (%s)\n", reason);
Tejun Heo643be972006-04-11 22:22:29 +0900602 return -EIO;
Tejun Heoca451602005-11-18 14:14:01 +0900603}
604
Tejun Heo2bf2cb22006-04-11 22:16:45 +0900605static int sil24_hardreset(struct ata_port *ap, unsigned int *class)
Tejun Heo489ff4c2006-02-10 23:58:48 +0900606{
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900607 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
608 const char *reason;
Tejun Heoe8e008e2006-05-31 18:27:59 +0900609 int tout_msec, rc;
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900610 u32 tmp;
Tejun Heo489ff4c2006-02-10 23:58:48 +0900611
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900612 /* sil24 does the right thing(tm) without any protection */
Tejun Heo3c567b72006-05-15 20:57:23 +0900613 sata_set_spd(ap);
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900614
615 tout_msec = 100;
Tejun Heo81952c52006-05-15 20:57:47 +0900616 if (ata_port_online(ap))
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900617 tout_msec = 5000;
618
619 writel(PORT_CS_DEV_RST, port + PORT_CTRL_STAT);
620 tmp = ata_wait_register(port + PORT_CTRL_STAT,
621 PORT_CS_DEV_RST, PORT_CS_DEV_RST, 10, tout_msec);
622
Tejun Heoe8e008e2006-05-31 18:27:59 +0900623 /* SStatus oscillates between zero and valid status after
624 * DEV_RST, debounce it.
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900625 */
Tejun Heoe9c83912006-07-03 16:07:26 +0900626 rc = sata_phy_debounce(ap, sata_deb_timing_long);
Tejun Heoe8e008e2006-05-31 18:27:59 +0900627 if (rc) {
628 reason = "PHY debouncing failed";
629 goto err;
630 }
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900631
632 if (tmp & PORT_CS_DEV_RST) {
Tejun Heo81952c52006-05-15 20:57:47 +0900633 if (ata_port_offline(ap))
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900634 return 0;
635 reason = "link not ready";
636 goto err;
637 }
638
Tejun Heoe8e008e2006-05-31 18:27:59 +0900639 /* Sil24 doesn't store signature FIS after hardreset, so we
640 * can't wait for BSY to clear. Some devices take a long time
641 * to get ready and those devices will choke if we don't wait
642 * for BSY clearance here. Tell libata to perform follow-up
643 * softreset.
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900644 */
Tejun Heoe8e008e2006-05-31 18:27:59 +0900645 return -EAGAIN;
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900646
647 err:
Tejun Heof15a1da2006-05-15 20:57:56 +0900648 ata_port_printk(ap, KERN_ERR, "hardreset failed (%s)\n", reason);
Tejun Heoecc2e2b2006-04-11 22:32:19 +0900649 return -EIO;
Tejun Heo489ff4c2006-02-10 23:58:48 +0900650}
651
Tejun Heoedb33662005-07-28 10:36:22 +0900652static inline void sil24_fill_sg(struct ata_queued_cmd *qc,
Tejun Heo69ad1852005-11-18 14:16:45 +0900653 struct sil24_sge *sge)
Tejun Heoedb33662005-07-28 10:36:22 +0900654{
Jeff Garzik972c26b2005-10-18 22:14:54 -0400655 struct scatterlist *sg;
656 unsigned int idx = 0;
Tejun Heoedb33662005-07-28 10:36:22 +0900657
Jeff Garzik972c26b2005-10-18 22:14:54 -0400658 ata_for_each_sg(sg, qc) {
Tejun Heoedb33662005-07-28 10:36:22 +0900659 sge->addr = cpu_to_le64(sg_dma_address(sg));
660 sge->cnt = cpu_to_le32(sg_dma_len(sg));
Jeff Garzik972c26b2005-10-18 22:14:54 -0400661 if (ata_sg_is_last(sg, qc))
662 sge->flags = cpu_to_le32(SGE_TRM);
663 else
664 sge->flags = 0;
665
666 sge++;
667 idx++;
Tejun Heoedb33662005-07-28 10:36:22 +0900668 }
669}
670
671static void sil24_qc_prep(struct ata_queued_cmd *qc)
672{
673 struct ata_port *ap = qc->ap;
674 struct sil24_port_priv *pp = ap->private_data;
Tejun Heoaee10a02006-05-15 21:03:56 +0900675 union sil24_cmd_block *cb;
Tejun Heo69ad1852005-11-18 14:16:45 +0900676 struct sil24_prb *prb;
677 struct sil24_sge *sge;
Tejun Heobad28a32006-04-11 22:32:19 +0900678 u16 ctrl = 0;
Tejun Heoedb33662005-07-28 10:36:22 +0900679
Tejun Heoaee10a02006-05-15 21:03:56 +0900680 cb = &pp->cmd_block[sil24_tag(qc->tag)];
681
Tejun Heoedb33662005-07-28 10:36:22 +0900682 switch (qc->tf.protocol) {
683 case ATA_PROT_PIO:
684 case ATA_PROT_DMA:
Tejun Heoaee10a02006-05-15 21:03:56 +0900685 case ATA_PROT_NCQ:
Tejun Heoedb33662005-07-28 10:36:22 +0900686 case ATA_PROT_NODATA:
Tejun Heo69ad1852005-11-18 14:16:45 +0900687 prb = &cb->ata.prb;
688 sge = cb->ata.sge;
Tejun Heoedb33662005-07-28 10:36:22 +0900689 break;
Tejun Heo69ad1852005-11-18 14:16:45 +0900690
691 case ATA_PROT_ATAPI:
692 case ATA_PROT_ATAPI_DMA:
693 case ATA_PROT_ATAPI_NODATA:
694 prb = &cb->atapi.prb;
695 sge = cb->atapi.sge;
696 memset(cb->atapi.cdb, 0, 32);
Tejun Heo6e7846e2006-02-12 23:32:58 +0900697 memcpy(cb->atapi.cdb, qc->cdb, qc->dev->cdb_len);
Tejun Heo69ad1852005-11-18 14:16:45 +0900698
699 if (qc->tf.protocol != ATA_PROT_ATAPI_NODATA) {
700 if (qc->tf.flags & ATA_TFLAG_WRITE)
Tejun Heobad28a32006-04-11 22:32:19 +0900701 ctrl = PRB_CTRL_PACKET_WRITE;
Tejun Heo69ad1852005-11-18 14:16:45 +0900702 else
Tejun Heobad28a32006-04-11 22:32:19 +0900703 ctrl = PRB_CTRL_PACKET_READ;
704 }
Tejun Heo69ad1852005-11-18 14:16:45 +0900705 break;
706
Tejun Heoedb33662005-07-28 10:36:22 +0900707 default:
Tejun Heo69ad1852005-11-18 14:16:45 +0900708 prb = NULL; /* shut up, gcc */
709 sge = NULL;
Tejun Heoedb33662005-07-28 10:36:22 +0900710 BUG();
711 }
712
Tejun Heobad28a32006-04-11 22:32:19 +0900713 prb->ctrl = cpu_to_le16(ctrl);
Tejun Heoedb33662005-07-28 10:36:22 +0900714 ata_tf_to_fis(&qc->tf, prb->fis, 0);
715
716 if (qc->flags & ATA_QCFLAG_DMAMAP)
Tejun Heo69ad1852005-11-18 14:16:45 +0900717 sil24_fill_sg(qc, sge);
Tejun Heoedb33662005-07-28 10:36:22 +0900718}
719
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900720static unsigned int sil24_qc_issue(struct ata_queued_cmd *qc)
Tejun Heoedb33662005-07-28 10:36:22 +0900721{
722 struct ata_port *ap = qc->ap;
723 struct sil24_port_priv *pp = ap->private_data;
Tejun Heoaee10a02006-05-15 21:03:56 +0900724 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
725 unsigned int tag = sil24_tag(qc->tag);
726 dma_addr_t paddr;
727 void __iomem *activate;
Tejun Heoedb33662005-07-28 10:36:22 +0900728
Tejun Heoaee10a02006-05-15 21:03:56 +0900729 paddr = pp->cmd_block_dma + tag * sizeof(*pp->cmd_block);
730 activate = port + PORT_CMD_ACTIVATE + tag * 8;
731
732 writel((u32)paddr, activate);
733 writel((u64)paddr >> 32, activate + 4);
Tejun Heo26ec6342006-04-11 22:32:19 +0900734
Tejun Heoedb33662005-07-28 10:36:22 +0900735 return 0;
736}
737
738static void sil24_irq_clear(struct ata_port *ap)
739{
740 /* unused */
741}
742
Tejun Heo88ce7552006-05-15 20:58:32 +0900743static void sil24_freeze(struct ata_port *ap)
Tejun Heo7d1ce682005-11-18 14:09:05 +0900744{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100745 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heo87466182005-08-17 13:08:57 +0900746
Tejun Heo88ce7552006-05-15 20:58:32 +0900747 /* Port-wide IRQ mask in HOST_CTRL doesn't really work, clear
748 * PORT_IRQ_ENABLE instead.
Tejun Heoc0ab4242005-11-18 14:22:03 +0900749 */
Tejun Heo88ce7552006-05-15 20:58:32 +0900750 writel(0xffff, port + PORT_IRQ_ENABLE_CLR);
751}
Tejun Heo87466182005-08-17 13:08:57 +0900752
Tejun Heo88ce7552006-05-15 20:58:32 +0900753static void sil24_thaw(struct ata_port *ap)
754{
755 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
756 u32 tmp;
757
758 /* clear IRQ */
759 tmp = readl(port + PORT_IRQ_STAT);
760 writel(tmp, port + PORT_IRQ_STAT);
761
762 /* turn IRQ back on */
763 writel(DEF_PORT_IRQ, port + PORT_IRQ_ENABLE_SET);
764}
765
766static void sil24_error_intr(struct ata_port *ap)
767{
768 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
769 struct ata_eh_info *ehi = &ap->eh_info;
770 int freeze = 0;
771 u32 irq_stat;
772
773 /* on error, we need to clear IRQ explicitly */
774 irq_stat = readl(port + PORT_IRQ_STAT);
775 writel(irq_stat, port + PORT_IRQ_STAT);
776
777 /* first, analyze and record host port events */
778 ata_ehi_clear_desc(ehi);
779
780 ata_ehi_push_desc(ehi, "irq_stat 0x%08x", irq_stat);
781
Tejun Heo05429252006-05-31 18:28:20 +0900782 if (irq_stat & (PORT_IRQ_PHYRDY_CHG | PORT_IRQ_DEV_XCHG)) {
783 ata_ehi_hotplugged(ehi);
784 ata_ehi_push_desc(ehi, ", %s",
785 irq_stat & PORT_IRQ_PHYRDY_CHG ?
786 "PHY RDY changed" : "device exchanged");
Tejun Heo88ce7552006-05-15 20:58:32 +0900787 freeze = 1;
Tejun Heo6a575fa2005-10-06 11:43:39 +0900788 }
789
Tejun Heo88ce7552006-05-15 20:58:32 +0900790 if (irq_stat & PORT_IRQ_UNK_FIS) {
791 ehi->err_mask |= AC_ERR_HSM;
792 ehi->action |= ATA_EH_SOFTRESET;
793 ata_ehi_push_desc(ehi , ", unknown FIS");
794 freeze = 1;
Albert Leea22e2eb2005-12-05 15:38:02 +0800795 }
Tejun Heo88ce7552006-05-15 20:58:32 +0900796
797 /* deal with command error */
798 if (irq_stat & PORT_IRQ_ERROR) {
799 struct sil24_cerr_info *ci = NULL;
800 unsigned int err_mask = 0, action = 0;
801 struct ata_queued_cmd *qc;
802 u32 cerr;
803
804 /* analyze CMD_ERR */
805 cerr = readl(port + PORT_CMD_ERR);
806 if (cerr < ARRAY_SIZE(sil24_cerr_db))
807 ci = &sil24_cerr_db[cerr];
808
809 if (ci && ci->desc) {
810 err_mask |= ci->err_mask;
811 action |= ci->action;
812 ata_ehi_push_desc(ehi, ", %s", ci->desc);
813 } else {
814 err_mask |= AC_ERR_OTHER;
815 action |= ATA_EH_SOFTRESET;
816 ata_ehi_push_desc(ehi, ", unknown command error %d",
817 cerr);
818 }
819
820 /* record error info */
821 qc = ata_qc_from_tag(ap, ap->active_tag);
822 if (qc) {
Tejun Heo88ce7552006-05-15 20:58:32 +0900823 sil24_update_tf(ap);
824 qc->err_mask |= err_mask;
825 } else
826 ehi->err_mask |= err_mask;
827
828 ehi->action |= action;
829 }
830
831 /* freeze or abort */
832 if (freeze)
833 ata_port_freeze(ap);
834 else
835 ata_port_abort(ap);
Tejun Heo87466182005-08-17 13:08:57 +0900836}
837
Tejun Heoaee10a02006-05-15 21:03:56 +0900838static void sil24_finish_qc(struct ata_queued_cmd *qc)
839{
840 if (qc->flags & ATA_QCFLAG_RESULT_TF)
841 sil24_update_tf(qc->ap);
842}
843
Tejun Heoedb33662005-07-28 10:36:22 +0900844static inline void sil24_host_intr(struct ata_port *ap)
845{
Al Viro4b4a5ea2005-10-29 06:38:44 +0100846 void __iomem *port = (void __iomem *)ap->ioaddr.cmd_addr;
Tejun Heoaee10a02006-05-15 21:03:56 +0900847 u32 slot_stat, qc_active;
848 int rc;
Tejun Heoedb33662005-07-28 10:36:22 +0900849
850 slot_stat = readl(port + PORT_SLOT_STAT);
Tejun Heo37024e82006-04-11 22:32:19 +0900851
Tejun Heo88ce7552006-05-15 20:58:32 +0900852 if (unlikely(slot_stat & HOST_SSTAT_ATTN)) {
853 sil24_error_intr(ap);
854 return;
855 }
Tejun Heo37024e82006-04-11 22:32:19 +0900856
Tejun Heo88ce7552006-05-15 20:58:32 +0900857 if (ap->flags & SIL24_FLAG_PCIX_IRQ_WOC)
858 writel(PORT_IRQ_COMPLETE, port + PORT_IRQ_STAT);
859
Tejun Heoaee10a02006-05-15 21:03:56 +0900860 qc_active = slot_stat & ~HOST_SSTAT_ATTN;
861 rc = ata_qc_complete_multiple(ap, qc_active, sil24_finish_qc);
862 if (rc > 0)
863 return;
864 if (rc < 0) {
865 struct ata_eh_info *ehi = &ap->eh_info;
866 ehi->err_mask |= AC_ERR_HSM;
867 ehi->action |= ATA_EH_SOFTRESET;
868 ata_port_freeze(ap);
Tejun Heo88ce7552006-05-15 20:58:32 +0900869 return;
870 }
871
872 if (ata_ratelimit())
873 ata_port_printk(ap, KERN_INFO, "spurious interrupt "
Tejun Heoaee10a02006-05-15 21:03:56 +0900874 "(slot_stat 0x%x active_tag %d sactive 0x%x)\n",
875 slot_stat, ap->active_tag, ap->sactive);
Tejun Heoedb33662005-07-28 10:36:22 +0900876}
877
David Howells7d12e782006-10-05 14:55:46 +0100878static irqreturn_t sil24_interrupt(int irq, void *dev_instance)
Tejun Heoedb33662005-07-28 10:36:22 +0900879{
Jeff Garzikcca39742006-08-24 03:19:22 -0400880 struct ata_host *host = dev_instance;
881 struct sil24_host_priv *hpriv = host->private_data;
Tejun Heoedb33662005-07-28 10:36:22 +0900882 unsigned handled = 0;
883 u32 status;
884 int i;
885
886 status = readl(hpriv->host_base + HOST_IRQ_STAT);
887
Tejun Heo06460ae2005-08-17 13:08:52 +0900888 if (status == 0xffffffff) {
889 printk(KERN_ERR DRV_NAME ": IRQ status == 0xffffffff, "
890 "PCI fault or device removal?\n");
891 goto out;
892 }
893
Tejun Heoedb33662005-07-28 10:36:22 +0900894 if (!(status & IRQ_STAT_4PORTS))
895 goto out;
896
Jeff Garzikcca39742006-08-24 03:19:22 -0400897 spin_lock(&host->lock);
Tejun Heoedb33662005-07-28 10:36:22 +0900898
Jeff Garzikcca39742006-08-24 03:19:22 -0400899 for (i = 0; i < host->n_ports; i++)
Tejun Heoedb33662005-07-28 10:36:22 +0900900 if (status & (1 << i)) {
Jeff Garzikcca39742006-08-24 03:19:22 -0400901 struct ata_port *ap = host->ports[i];
Tejun Heo198e0fe2006-04-02 18:51:52 +0900902 if (ap && !(ap->flags & ATA_FLAG_DISABLED)) {
Jeff Garzikcca39742006-08-24 03:19:22 -0400903 sil24_host_intr(host->ports[i]);
Tejun Heo3cc45712005-08-17 13:08:47 +0900904 handled++;
905 } else
906 printk(KERN_ERR DRV_NAME
907 ": interrupt from disabled port %d\n", i);
Tejun Heoedb33662005-07-28 10:36:22 +0900908 }
909
Jeff Garzikcca39742006-08-24 03:19:22 -0400910 spin_unlock(&host->lock);
Tejun Heoedb33662005-07-28 10:36:22 +0900911 out:
912 return IRQ_RETVAL(handled);
913}
914
Tejun Heo88ce7552006-05-15 20:58:32 +0900915static void sil24_error_handler(struct ata_port *ap)
916{
917 struct ata_eh_context *ehc = &ap->eh_context;
918
919 if (sil24_init_port(ap)) {
920 ata_eh_freeze_port(ap);
921 ehc->i.action |= ATA_EH_HARDRESET;
922 }
923
924 /* perform recovery */
Tejun Heof5914a42006-05-31 18:27:48 +0900925 ata_do_eh(ap, ata_std_prereset, sil24_softreset, sil24_hardreset,
926 ata_std_postreset);
Tejun Heo88ce7552006-05-15 20:58:32 +0900927}
928
929static void sil24_post_internal_cmd(struct ata_queued_cmd *qc)
930{
931 struct ata_port *ap = qc->ap;
932
933 if (qc->flags & ATA_QCFLAG_FAILED)
934 qc->err_mask |= AC_ERR_OTHER;
935
936 /* make DMA engine forget about the failed command */
937 if (qc->err_mask)
938 sil24_init_port(ap);
939}
940
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500941static inline void sil24_cblk_free(struct sil24_port_priv *pp, struct device *dev)
942{
Tejun Heoaee10a02006-05-15 21:03:56 +0900943 const size_t cb_size = sizeof(*pp->cmd_block) * SIL24_MAX_CMDS;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500944
945 dma_free_coherent(dev, cb_size, pp->cmd_block, pp->cmd_block_dma);
946}
947
Tejun Heoedb33662005-07-28 10:36:22 +0900948static int sil24_port_start(struct ata_port *ap)
949{
Jeff Garzikcca39742006-08-24 03:19:22 -0400950 struct device *dev = ap->host->dev;
Tejun Heoedb33662005-07-28 10:36:22 +0900951 struct sil24_port_priv *pp;
Tejun Heo69ad1852005-11-18 14:16:45 +0900952 union sil24_cmd_block *cb;
Tejun Heoaee10a02006-05-15 21:03:56 +0900953 size_t cb_size = sizeof(*cb) * SIL24_MAX_CMDS;
Tejun Heoedb33662005-07-28 10:36:22 +0900954 dma_addr_t cb_dma;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500955 int rc = -ENOMEM;
Tejun Heoedb33662005-07-28 10:36:22 +0900956
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500957 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Tejun Heoedb33662005-07-28 10:36:22 +0900958 if (!pp)
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500959 goto err_out;
Tejun Heoedb33662005-07-28 10:36:22 +0900960
Tejun Heo6a575fa2005-10-06 11:43:39 +0900961 pp->tf.command = ATA_DRDY;
962
Tejun Heoedb33662005-07-28 10:36:22 +0900963 cb = dma_alloc_coherent(dev, cb_size, &cb_dma, GFP_KERNEL);
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500964 if (!cb)
965 goto err_out_pp;
Tejun Heoedb33662005-07-28 10:36:22 +0900966 memset(cb, 0, cb_size);
967
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500968 rc = ata_pad_alloc(ap, dev);
969 if (rc)
970 goto err_out_pad;
971
Tejun Heoedb33662005-07-28 10:36:22 +0900972 pp->cmd_block = cb;
973 pp->cmd_block_dma = cb_dma;
974
975 ap->private_data = pp;
976
977 return 0;
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500978
979err_out_pad:
980 sil24_cblk_free(pp, dev);
981err_out_pp:
982 kfree(pp);
983err_out:
984 return rc;
Tejun Heoedb33662005-07-28 10:36:22 +0900985}
986
987static void sil24_port_stop(struct ata_port *ap)
988{
Jeff Garzikcca39742006-08-24 03:19:22 -0400989 struct device *dev = ap->host->dev;
Tejun Heoedb33662005-07-28 10:36:22 +0900990 struct sil24_port_priv *pp = ap->private_data;
Tejun Heoedb33662005-07-28 10:36:22 +0900991
Jeff Garzik6037d6b2005-11-04 22:08:00 -0500992 sil24_cblk_free(pp, dev);
Tejun Heoe9c05af2005-11-14 00:24:18 +0900993 ata_pad_free(ap, dev);
Tejun Heoedb33662005-07-28 10:36:22 +0900994 kfree(pp);
995}
996
Jeff Garzikcca39742006-08-24 03:19:22 -0400997static void sil24_host_stop(struct ata_host *host)
Tejun Heoedb33662005-07-28 10:36:22 +0900998{
Jeff Garzikcca39742006-08-24 03:19:22 -0400999 struct sil24_host_priv *hpriv = host->private_data;
1000 struct pci_dev *pdev = to_pci_dev(host->dev);
Tejun Heoedb33662005-07-28 10:36:22 +09001001
Jeff Garzik142877b2006-03-22 23:30:34 -05001002 pci_iounmap(pdev, hpriv->host_base);
1003 pci_iounmap(pdev, hpriv->port_base);
Tejun Heoedb33662005-07-28 10:36:22 +09001004 kfree(hpriv);
1005}
1006
Tejun Heo2a41a612006-07-03 16:07:27 +09001007static void sil24_init_controller(struct pci_dev *pdev, int n_ports,
Jeff Garzikcca39742006-08-24 03:19:22 -04001008 unsigned long port_flags,
Tejun Heo2a41a612006-07-03 16:07:27 +09001009 void __iomem *host_base,
1010 void __iomem *port_base)
1011{
1012 u32 tmp;
1013 int i;
1014
1015 /* GPIO off */
1016 writel(0, host_base + HOST_FLASH_CMD);
1017
1018 /* clear global reset & mask interrupts during initialization */
1019 writel(0, host_base + HOST_CTRL);
1020
1021 /* init ports */
1022 for (i = 0; i < n_ports; i++) {
1023 void __iomem *port = port_base + i * PORT_REGS_SIZE;
1024
1025 /* Initial PHY setting */
1026 writel(0x20c, port + PORT_PHY_CFG);
1027
1028 /* Clear port RST */
1029 tmp = readl(port + PORT_CTRL_STAT);
1030 if (tmp & PORT_CS_PORT_RST) {
1031 writel(PORT_CS_PORT_RST, port + PORT_CTRL_CLR);
1032 tmp = ata_wait_register(port + PORT_CTRL_STAT,
1033 PORT_CS_PORT_RST,
1034 PORT_CS_PORT_RST, 10, 100);
1035 if (tmp & PORT_CS_PORT_RST)
1036 dev_printk(KERN_ERR, &pdev->dev,
1037 "failed to clear port RST\n");
1038 }
1039
1040 /* Configure IRQ WoC */
Jeff Garzikcca39742006-08-24 03:19:22 -04001041 if (port_flags & SIL24_FLAG_PCIX_IRQ_WOC)
Tejun Heo2a41a612006-07-03 16:07:27 +09001042 writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_STAT);
1043 else
1044 writel(PORT_CS_IRQ_WOC, port + PORT_CTRL_CLR);
1045
1046 /* Zero error counters. */
1047 writel(0x8000, port + PORT_DECODE_ERR_THRESH);
1048 writel(0x8000, port + PORT_CRC_ERR_THRESH);
1049 writel(0x8000, port + PORT_HSHK_ERR_THRESH);
1050 writel(0x0000, port + PORT_DECODE_ERR_CNT);
1051 writel(0x0000, port + PORT_CRC_ERR_CNT);
1052 writel(0x0000, port + PORT_HSHK_ERR_CNT);
1053
1054 /* Always use 64bit activation */
1055 writel(PORT_CS_32BIT_ACTV, port + PORT_CTRL_CLR);
1056
1057 /* Clear port multiplier enable and resume bits */
Tejun Heo28c8f3b2006-10-16 08:47:18 +09001058 writel(PORT_CS_PMP_EN | PORT_CS_PMP_RESUME,
1059 port + PORT_CTRL_CLR);
Tejun Heo2a41a612006-07-03 16:07:27 +09001060 }
1061
1062 /* Turn on interrupts */
1063 writel(IRQ_STAT_4PORTS, host_base + HOST_CTRL);
1064}
1065
Tejun Heoedb33662005-07-28 10:36:22 +09001066static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1067{
1068 static int printed_version = 0;
1069 unsigned int board_id = (unsigned int)ent->driver_data;
Tejun Heo042c21f2005-10-09 09:35:46 -04001070 struct ata_port_info *pinfo = &sil24_port_info[board_id];
Tejun Heoedb33662005-07-28 10:36:22 +09001071 struct ata_probe_ent *probe_ent = NULL;
1072 struct sil24_host_priv *hpriv = NULL;
Al Viro4b4a5ea2005-10-29 06:38:44 +01001073 void __iomem *host_base = NULL;
1074 void __iomem *port_base = NULL;
Tejun Heoedb33662005-07-28 10:36:22 +09001075 int i, rc;
Tejun Heo37024e82006-04-11 22:32:19 +09001076 u32 tmp;
Tejun Heoedb33662005-07-28 10:36:22 +09001077
1078 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05001079 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Tejun Heoedb33662005-07-28 10:36:22 +09001080
1081 rc = pci_enable_device(pdev);
1082 if (rc)
1083 return rc;
1084
1085 rc = pci_request_regions(pdev, DRV_NAME);
1086 if (rc)
1087 goto out_disable;
1088
1089 rc = -ENOMEM;
Jeff Garzik142877b2006-03-22 23:30:34 -05001090 /* map mmio registers */
1091 host_base = pci_iomap(pdev, 0, 0);
Tejun Heoedb33662005-07-28 10:36:22 +09001092 if (!host_base)
1093 goto out_free;
Jeff Garzik142877b2006-03-22 23:30:34 -05001094 port_base = pci_iomap(pdev, 2, 0);
Tejun Heoedb33662005-07-28 10:36:22 +09001095 if (!port_base)
1096 goto out_free;
1097
1098 /* allocate & init probe_ent and hpriv */
Jeff Garzik142877b2006-03-22 23:30:34 -05001099 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Tejun Heoedb33662005-07-28 10:36:22 +09001100 if (!probe_ent)
1101 goto out_free;
1102
Jeff Garzik142877b2006-03-22 23:30:34 -05001103 hpriv = kzalloc(sizeof(*hpriv), GFP_KERNEL);
Tejun Heoedb33662005-07-28 10:36:22 +09001104 if (!hpriv)
1105 goto out_free;
1106
Tejun Heoedb33662005-07-28 10:36:22 +09001107 probe_ent->dev = pci_dev_to_dev(pdev);
1108 INIT_LIST_HEAD(&probe_ent->node);
1109
Tejun Heo042c21f2005-10-09 09:35:46 -04001110 probe_ent->sht = pinfo->sht;
Jeff Garzikcca39742006-08-24 03:19:22 -04001111 probe_ent->port_flags = pinfo->flags;
Tejun Heo042c21f2005-10-09 09:35:46 -04001112 probe_ent->pio_mask = pinfo->pio_mask;
Tejun Heofbfda6e2006-03-05 23:03:42 +09001113 probe_ent->mwdma_mask = pinfo->mwdma_mask;
Tejun Heo042c21f2005-10-09 09:35:46 -04001114 probe_ent->udma_mask = pinfo->udma_mask;
1115 probe_ent->port_ops = pinfo->port_ops;
Jeff Garzikcca39742006-08-24 03:19:22 -04001116 probe_ent->n_ports = SIL24_FLAG2NPORTS(pinfo->flags);
Tejun Heoedb33662005-07-28 10:36:22 +09001117
1118 probe_ent->irq = pdev->irq;
Thomas Gleixner1d6f3592006-07-01 19:29:42 -07001119 probe_ent->irq_flags = IRQF_SHARED;
Tejun Heoedb33662005-07-28 10:36:22 +09001120 probe_ent->private_data = hpriv;
1121
Tejun Heoedb33662005-07-28 10:36:22 +09001122 hpriv->host_base = host_base;
1123 hpriv->port_base = port_base;
1124
1125 /*
1126 * Configure the device
1127 */
Tejun Heo26ec6342006-04-11 22:32:19 +09001128 if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
1129 rc = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
1130 if (rc) {
1131 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1132 if (rc) {
1133 dev_printk(KERN_ERR, &pdev->dev,
1134 "64-bit DMA enable failed\n");
1135 goto out_free;
1136 }
1137 }
1138 } else {
1139 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1140 if (rc) {
1141 dev_printk(KERN_ERR, &pdev->dev,
1142 "32-bit DMA enable failed\n");
1143 goto out_free;
1144 }
1145 rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
1146 if (rc) {
1147 dev_printk(KERN_ERR, &pdev->dev,
1148 "32-bit consistent DMA enable failed\n");
1149 goto out_free;
1150 }
Tejun Heoedb33662005-07-28 10:36:22 +09001151 }
1152
Tejun Heo37024e82006-04-11 22:32:19 +09001153 /* Apply workaround for completion IRQ loss on PCI-X errata */
Jeff Garzikcca39742006-08-24 03:19:22 -04001154 if (probe_ent->port_flags & SIL24_FLAG_PCIX_IRQ_WOC) {
Tejun Heo37024e82006-04-11 22:32:19 +09001155 tmp = readl(host_base + HOST_CTRL);
1156 if (tmp & (HOST_CTRL_TRDY | HOST_CTRL_STOP | HOST_CTRL_DEVSEL))
1157 dev_printk(KERN_INFO, &pdev->dev,
1158 "Applying completion IRQ loss on PCI-X "
1159 "errata fix\n");
1160 else
Jeff Garzikcca39742006-08-24 03:19:22 -04001161 probe_ent->port_flags &= ~SIL24_FLAG_PCIX_IRQ_WOC;
Tejun Heo37024e82006-04-11 22:32:19 +09001162 }
1163
Tejun Heoedb33662005-07-28 10:36:22 +09001164 for (i = 0; i < probe_ent->n_ports; i++) {
Tejun Heo2a41a612006-07-03 16:07:27 +09001165 unsigned long portu =
1166 (unsigned long)port_base + i * PORT_REGS_SIZE;
Tejun Heoedb33662005-07-28 10:36:22 +09001167
Tejun Heo135da342006-05-31 18:27:57 +09001168 probe_ent->port[i].cmd_addr = portu;
Tejun Heoedb33662005-07-28 10:36:22 +09001169 probe_ent->port[i].scr_addr = portu + PORT_SCONTROL;
1170
1171 ata_std_ports(&probe_ent->port[i]);
Tejun Heoedb33662005-07-28 10:36:22 +09001172 }
1173
Jeff Garzikcca39742006-08-24 03:19:22 -04001174 sil24_init_controller(pdev, probe_ent->n_ports, probe_ent->port_flags,
Tejun Heo2a41a612006-07-03 16:07:27 +09001175 host_base, port_base);
Tejun Heoedb33662005-07-28 10:36:22 +09001176
1177 pci_set_master(pdev);
1178
Tejun Heo14834672005-08-17 13:08:42 +09001179 /* FIXME: check ata_device_add return value */
Tejun Heoedb33662005-07-28 10:36:22 +09001180 ata_device_add(probe_ent);
1181
1182 kfree(probe_ent);
1183 return 0;
1184
1185 out_free:
1186 if (host_base)
Jeff Garzik142877b2006-03-22 23:30:34 -05001187 pci_iounmap(pdev, host_base);
Tejun Heoedb33662005-07-28 10:36:22 +09001188 if (port_base)
Jeff Garzik142877b2006-03-22 23:30:34 -05001189 pci_iounmap(pdev, port_base);
Tejun Heoedb33662005-07-28 10:36:22 +09001190 kfree(probe_ent);
1191 kfree(hpriv);
1192 pci_release_regions(pdev);
1193 out_disable:
1194 pci_disable_device(pdev);
1195 return rc;
1196}
1197
Alexey Dobriyan281d4262006-08-14 22:49:30 -07001198#ifdef CONFIG_PM
Tejun Heod2298dc2006-07-03 16:07:27 +09001199static int sil24_pci_device_resume(struct pci_dev *pdev)
1200{
Jeff Garzikcca39742006-08-24 03:19:22 -04001201 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1202 struct sil24_host_priv *hpriv = host->private_data;
Tejun Heod2298dc2006-07-03 16:07:27 +09001203
1204 ata_pci_device_do_resume(pdev);
1205
1206 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND)
1207 writel(HOST_CTRL_GLOBAL_RST, hpriv->host_base + HOST_CTRL);
1208
Jeff Garzikcca39742006-08-24 03:19:22 -04001209 sil24_init_controller(pdev, host->n_ports, host->ports[0]->flags,
Tejun Heod2298dc2006-07-03 16:07:27 +09001210 hpriv->host_base, hpriv->port_base);
1211
Jeff Garzikcca39742006-08-24 03:19:22 -04001212 ata_host_resume(host);
Tejun Heod2298dc2006-07-03 16:07:27 +09001213
1214 return 0;
1215}
Alexey Dobriyan281d4262006-08-14 22:49:30 -07001216#endif
Tejun Heod2298dc2006-07-03 16:07:27 +09001217
Tejun Heoedb33662005-07-28 10:36:22 +09001218static int __init sil24_init(void)
1219{
Pavel Roskinb7887192006-08-10 18:13:18 +09001220 return pci_register_driver(&sil24_pci_driver);
Tejun Heoedb33662005-07-28 10:36:22 +09001221}
1222
1223static void __exit sil24_exit(void)
1224{
1225 pci_unregister_driver(&sil24_pci_driver);
1226}
1227
1228MODULE_AUTHOR("Tejun Heo");
1229MODULE_DESCRIPTION("Silicon Image 3124/3132 SATA low-level driver");
1230MODULE_LICENSE("GPL");
1231MODULE_DEVICE_TABLE(pci, sil24_pci_tbl);
1232
1233module_init(sil24_init);
1234module_exit(sil24_exit);