blob: 01111594d09c08d587efc334ef16ed8cee9c8b2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sata_promise.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * Hardware information only available under NDA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/pci.h>
36#include <linux/init.h>
37#include <linux/blkdev.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
40#include <linux/sched.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050041#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050043#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/libata.h>
45#include <asm/io.h>
46#include "sata_promise.h"
47
48#define DRV_NAME "sata_promise"
Luke Kosewski6340f012006-01-28 12:39:29 -050049#define DRV_VERSION "1.04"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51
52enum {
53 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
54 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
55 PDC_TBG_MODE = 0x41, /* TBG mode */
56 PDC_FLASH_CTL = 0x44, /* Flash control register */
57 PDC_PCI_CTL = 0x48, /* PCI control and status register */
58 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
59 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
60 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
Luke Kosewski6340f012006-01-28 12:39:29 -050061 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 PDC_SLEW_CTL = 0x470, /* slew rate control reg */
63
64 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
65 (1<<8) | (1<<9) | (1<<10),
66
67 board_2037x = 0, /* FastTrak S150 TX2plus */
68 board_20319 = 1, /* FastTrak S150 TX4 */
Tobias Lorenzf497ba72005-05-12 15:51:01 -040069 board_20619 = 2, /* FastTrak TX4000 */
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -050070 board_20771 = 3, /* FastTrak TX2300 */
Luke Kosewski6340f012006-01-28 12:39:29 -050071 board_2057x = 4, /* SATAII150 Tx2plus */
72 board_40518 = 5, /* SATAII150 Tx4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Luke Kosewski6340f012006-01-28 12:39:29 -050074 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -050077
78 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
Jeff Garzik3d0a59c2005-12-13 22:28:19 -050079 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
80 ATA_FLAG_PIO_POLLING,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83
84struct pdc_port_priv {
85 u8 *pkt;
86 dma_addr_t pkt_dma;
87};
88
Luke Kosewski6340f012006-01-28 12:39:29 -050089struct pdc_host_priv {
90 int hotplug_offset;
91};
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
94static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
95static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
96static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
97static void pdc_eng_timeout(struct ata_port *ap);
98static int pdc_port_start(struct ata_port *ap);
99static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400100static void pdc_pata_phy_reset(struct ata_port *ap);
101static void pdc_sata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -0400103static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
104static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static void pdc_irq_clear(struct ata_port *ap);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900106static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
Luke Kosewski6340f012006-01-28 12:39:29 -0500107static void pdc_host_stop(struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Jeff Garzik374b1872005-08-30 05:42:52 -0400109
Jeff Garzik193515d2005-11-07 00:59:37 -0500110static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .module = THIS_MODULE,
112 .name = DRV_NAME,
113 .ioctl = ata_scsi_ioctl,
114 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .can_queue = ATA_DEF_QUEUE,
116 .this_id = ATA_SHT_THIS_ID,
117 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
119 .emulated = ATA_SHT_EMULATED,
120 .use_clustering = ATA_SHT_USE_CLUSTERING,
121 .proc_name = DRV_NAME,
122 .dma_boundary = ATA_DMA_BOUNDARY,
123 .slave_configure = ata_scsi_slave_config,
124 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Jeff Garzik057ace52005-10-22 14:27:05 -0400127static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .port_disable = ata_port_disable,
129 .tf_load = pdc_tf_load_mmio,
130 .tf_read = ata_tf_read,
131 .check_status = ata_check_status,
132 .exec_command = pdc_exec_command_mmio,
133 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400134
135 .phy_reset = pdc_sata_phy_reset,
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .qc_prep = pdc_qc_prep,
138 .qc_issue = pdc_qc_issue_prot,
139 .eng_timeout = pdc_eng_timeout,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100140 .data_xfer = ata_mmio_data_xfer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .irq_handler = pdc_interrupt,
142 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .scr_read = pdc_sata_scr_read,
145 .scr_write = pdc_sata_scr_write,
146 .port_start = pdc_port_start,
147 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500148 .host_stop = pdc_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
Jeff Garzik057ace52005-10-22 14:27:05 -0400151static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400152 .port_disable = ata_port_disable,
153 .tf_load = pdc_tf_load_mmio,
154 .tf_read = ata_tf_read,
155 .check_status = ata_check_status,
156 .exec_command = pdc_exec_command_mmio,
157 .dev_select = ata_std_dev_select,
158
159 .phy_reset = pdc_pata_phy_reset,
160
161 .qc_prep = pdc_qc_prep,
162 .qc_issue = pdc_qc_issue_prot,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100163 .data_xfer = ata_mmio_data_xfer,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400164 .eng_timeout = pdc_eng_timeout,
165 .irq_handler = pdc_interrupt,
166 .irq_clear = pdc_irq_clear,
167
168 .port_start = pdc_port_start,
169 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500170 .host_stop = pdc_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400171};
172
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100173static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* board_2037x */
175 {
176 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500177 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .pio_mask = 0x1f, /* pio0-4 */
179 .mwdma_mask = 0x07, /* mwdma0-2 */
180 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400181 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 },
183
184 /* board_20319 */
185 {
186 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500187 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 .pio_mask = 0x1f, /* pio0-4 */
189 .mwdma_mask = 0x07, /* mwdma0-2 */
190 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400191 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400193
194 /* board_20619 */
195 {
196 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500197 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400198 .pio_mask = 0x1f, /* pio0-4 */
199 .mwdma_mask = 0x07, /* mwdma0-2 */
200 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400201 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400202 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500203
204 /* board_20771 */
205 {
206 .sht = &pdc_ata_sht,
207 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
208 .pio_mask = 0x1f, /* pio0-4 */
209 .mwdma_mask = 0x07, /* mwdma0-2 */
210 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
211 .port_ops = &pdc_sata_ops,
212 },
Luke Kosewski6340f012006-01-28 12:39:29 -0500213
214 /* board_2057x */
215 {
216 .sht = &pdc_ata_sht,
217 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
218 .pio_mask = 0x1f, /* pio0-4 */
219 .mwdma_mask = 0x07, /* mwdma0-2 */
220 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
221 .port_ops = &pdc_sata_ops,
222 },
223
224 /* board_40518 */
225 {
226 .sht = &pdc_ata_sht,
227 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
228 .pio_mask = 0x1f, /* pio0-4 */
229 .mwdma_mask = 0x07, /* mwdma0-2 */
230 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
231 .port_ops = &pdc_sata_ops,
232 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500235static const struct pci_device_id pdc_ata_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
237 board_2037x },
Jeff Garzik07c1da22005-10-28 17:00:31 -0400238 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
239 board_2037x },
Francisco Javier4c3a53d2005-05-25 19:29:37 -0400240 { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
241 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
243 board_2037x },
244 { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
245 board_2037x },
246 { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
247 board_2037x },
248 { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500249 board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500251 board_2057x },
Ed Kearc45154a2005-07-16 23:32:19 -0400252 { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
253 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
256 board_20319 },
257 { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
258 board_20319 },
Daniel Drakee1fd2632006-03-04 15:36:21 +0000259 { PCI_VENDOR_ID_PROMISE, 0x3515, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
260 board_20319 },
Daniel Drake93090492005-08-22 14:59:23 +0100261 { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
262 board_20319 },
Otto Meier08b791c02005-08-22 14:58:57 +0100263 { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
264 board_20319 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500266 board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400268 { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
269 board_20619 },
270
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500271 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
272 board_20771 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 { } /* terminate list */
274};
275
276
277static struct pci_driver pdc_ata_pci_driver = {
278 .name = DRV_NAME,
279 .id_table = pdc_ata_pci_tbl,
280 .probe = pdc_ata_init_one,
281 .remove = ata_pci_remove_one,
282};
283
284
285static int pdc_port_start(struct ata_port *ap)
286{
287 struct device *dev = ap->host_set->dev;
288 struct pdc_port_priv *pp;
289 int rc;
290
291 rc = ata_port_start(ap);
292 if (rc)
293 return rc;
294
Luke Kosewski6340f012006-01-28 12:39:29 -0500295 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (!pp) {
297 rc = -ENOMEM;
298 goto err_out;
299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
302 if (!pp->pkt) {
303 rc = -ENOMEM;
304 goto err_out_kfree;
305 }
306
307 ap->private_data = pp;
308
309 return 0;
310
311err_out_kfree:
312 kfree(pp);
313err_out:
314 ata_port_stop(ap);
315 return rc;
316}
317
318
319static void pdc_port_stop(struct ata_port *ap)
320{
321 struct device *dev = ap->host_set->dev;
322 struct pdc_port_priv *pp = ap->private_data;
323
324 ap->private_data = NULL;
325 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
326 kfree(pp);
327 ata_port_stop(ap);
328}
329
330
Luke Kosewski6340f012006-01-28 12:39:29 -0500331static void pdc_host_stop(struct ata_host_set *host_set)
332{
333 struct pdc_host_priv *hp = host_set->private_data;
334
335 ata_pci_host_stop(host_set);
336
337 kfree(hp);
338}
339
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static void pdc_reset_port(struct ata_port *ap)
342{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400343 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 unsigned int i;
345 u32 tmp;
346
347 for (i = 11; i > 0; i--) {
348 tmp = readl(mmio);
349 if (tmp & PDC_RESET)
350 break;
351
352 udelay(100);
353
354 tmp |= PDC_RESET;
355 writel(tmp, mmio);
356 }
357
358 tmp &= ~PDC_RESET;
359 writel(tmp, mmio);
360 readl(mmio); /* flush */
361}
362
Jeff Garzik2cba5822005-08-29 05:12:30 -0400363static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 pdc_reset_port(ap);
366 sata_phy_reset(ap);
367}
368
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400369static void pdc_pata_cbl_detect(struct ata_port *ap)
370{
371 u8 tmp;
372 void __iomem *mmio = (void *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
373
374 tmp = readb(mmio);
375
376 if (tmp & 0x01) {
377 ap->cbl = ATA_CBL_PATA40;
378 ap->udma_mask &= ATA_UDMA_MASK_40C;
379 } else
380 ap->cbl = ATA_CBL_PATA80;
381}
382
Jeff Garzik2cba5822005-08-29 05:12:30 -0400383static void pdc_pata_phy_reset(struct ata_port *ap)
384{
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400385 pdc_pata_cbl_detect(ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400386 pdc_reset_port(ap);
387 ata_port_probe(ap);
388 ata_bus_reset(ap);
389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
392{
393 if (sc_reg > SCR_CONTROL)
394 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100395 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398
399static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
400 u32 val)
401{
402 if (sc_reg > SCR_CONTROL)
403 return;
Al Virob181d3b2005-10-21 06:46:02 +0100404 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407static void pdc_qc_prep(struct ata_queued_cmd *qc)
408{
409 struct pdc_port_priv *pp = qc->ap->private_data;
410 unsigned int i;
411
412 VPRINTK("ENTER\n");
413
414 switch (qc->tf.protocol) {
415 case ATA_PROT_DMA:
416 ata_qc_prep(qc);
417 /* fall through */
418
419 case ATA_PROT_NODATA:
420 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
421 qc->dev->devno, pp->pkt);
422
423 if (qc->tf.flags & ATA_TFLAG_LBA48)
424 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
425 else
426 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
427
428 pdc_pkt_footer(&qc->tf, pp->pkt, i);
429 break;
430
431 default:
432 break;
433 }
434}
435
436static void pdc_eng_timeout(struct ata_port *ap)
437{
Jeff Garzikb8f61532005-08-25 22:01:20 -0400438 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 u8 drv_stat;
440 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400441 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 DPRINTK("ENTER\n");
444
Jeff Garzikb8f61532005-08-25 22:01:20 -0400445 spin_lock_irqsave(&host_set->lock, flags);
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 qc = ata_qc_from_tag(ap, ap->active_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 switch (qc->tf.protocol) {
450 case ATA_PROT_DMA:
451 case ATA_PROT_NODATA:
Tejun Heof15a1da2006-05-15 20:57:56 +0900452 ata_port_printk(ap, KERN_ERR, "command timeout\n");
Jeff Garzika7dac442005-10-30 04:44:42 -0500453 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800454 qc->err_mask |= __ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 break;
456
457 default:
458 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
459
Tejun Heof15a1da2006-05-15 20:57:56 +0900460 ata_port_printk(ap, KERN_ERR,
461 "unknown timeout, cmd 0x%x stat 0x%x\n",
462 qc->tf.command, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Albert Leea22e2eb2005-12-05 15:38:02 +0800464 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 break;
466 }
467
Jeff Garzikb8f61532005-08-25 22:01:20 -0400468 spin_unlock_irqrestore(&host_set->lock, flags);
Tejun Heof6379022006-02-10 15:10:48 +0900469 ata_eh_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 DPRINTK("EXIT\n");
471}
472
473static inline unsigned int pdc_host_intr( struct ata_port *ap,
474 struct ata_queued_cmd *qc)
475{
Albert Leea22e2eb2005-12-05 15:38:02 +0800476 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400478 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 tmp = readl(mmio);
481 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800482 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 pdc_reset_port(ap);
484 }
485
486 switch (qc->tf.protocol) {
487 case ATA_PROT_DMA:
488 case ATA_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800489 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
490 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 handled = 1;
492 break;
493
494 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800495 ap->stats.idle_irq++;
496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Albert Leeee500aa2005-09-27 17:34:38 +0800499 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502static void pdc_irq_clear(struct ata_port *ap)
503{
504 struct ata_host_set *host_set = ap->host_set;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400505 void __iomem *mmio = host_set->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 readl(mmio + PDC_INT_SEQMASK);
508}
509
510static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
511{
512 struct ata_host_set *host_set = dev_instance;
513 struct ata_port *ap;
514 u32 mask = 0;
515 unsigned int i, tmp;
516 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400517 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 VPRINTK("ENTER\n");
520
521 if (!host_set || !host_set->mmio_base) {
522 VPRINTK("QUICK EXIT\n");
523 return IRQ_NONE;
524 }
525
526 mmio_base = host_set->mmio_base;
527
528 /* reading should also clear interrupts */
529 mask = readl(mmio_base + PDC_INT_SEQMASK);
530
531 if (mask == 0xffffffff) {
532 VPRINTK("QUICK EXIT 2\n");
533 return IRQ_NONE;
534 }
Luke Kosewski6340f012006-01-28 12:39:29 -0500535
536 spin_lock(&host_set->lock);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 mask &= 0xffff; /* only 16 tags possible */
539 if (!mask) {
540 VPRINTK("QUICK EXIT 3\n");
Luke Kosewski6340f012006-01-28 12:39:29 -0500541 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 writel(mask, mmio_base + PDC_INT_SEQMASK);
545
546 for (i = 0; i < host_set->n_ports; i++) {
547 VPRINTK("port %u\n", i);
548 ap = host_set->ports[i];
549 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900550 if (tmp && ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400551 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 struct ata_queued_cmd *qc;
553
554 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800555 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 handled += pdc_host_intr(ap, qc);
557 }
558 }
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 VPRINTK("EXIT\n");
561
Luke Kosewski6340f012006-01-28 12:39:29 -0500562done_irq:
563 spin_unlock(&host_set->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return IRQ_RETVAL(handled);
565}
566
567static inline void pdc_packet_start(struct ata_queued_cmd *qc)
568{
569 struct ata_port *ap = qc->ap;
570 struct pdc_port_priv *pp = ap->private_data;
571 unsigned int port_no = ap->port_no;
572 u8 seq = (u8) (port_no + 1);
573
574 VPRINTK("ENTER, ap %p\n", ap);
575
576 writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
577 readl(ap->host_set->mmio_base + (seq * 4)); /* flush */
578
579 pp->pkt[2] = seq;
580 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100581 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
582 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900585static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 switch (qc->tf.protocol) {
588 case ATA_PROT_DMA:
589 case ATA_PROT_NODATA:
590 pdc_packet_start(qc);
591 return 0;
592
593 case ATA_PROT_ATAPI_DMA:
594 BUG();
595 break;
596
597 default:
598 break;
599 }
600
601 return ata_qc_issue_prot(qc);
602}
603
Jeff Garzik057ace52005-10-22 14:27:05 -0400604static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 WARN_ON (tf->protocol == ATA_PROT_DMA ||
607 tf->protocol == ATA_PROT_NODATA);
608 ata_tf_load(ap, tf);
609}
610
611
Jeff Garzik057ace52005-10-22 14:27:05 -0400612static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 WARN_ON (tf->protocol == ATA_PROT_DMA ||
615 tf->protocol == ATA_PROT_NODATA);
616 ata_exec_command(ap, tf);
617}
618
619
620static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
621{
622 port->cmd_addr = base;
623 port->data_addr = base;
624 port->feature_addr =
625 port->error_addr = base + 0x4;
626 port->nsect_addr = base + 0x8;
627 port->lbal_addr = base + 0xc;
628 port->lbam_addr = base + 0x10;
629 port->lbah_addr = base + 0x14;
630 port->device_addr = base + 0x18;
631 port->command_addr =
632 port->status_addr = base + 0x1c;
633 port->altstatus_addr =
634 port->ctl_addr = base + 0x38;
635}
636
637
638static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
639{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400640 void __iomem *mmio = pe->mmio_base;
Luke Kosewski6340f012006-01-28 12:39:29 -0500641 struct pdc_host_priv *hp = pe->private_data;
642 int hotplug_offset = hp->hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 u32 tmp;
644
645 /*
646 * Except for the hotplug stuff, this is voodoo from the
647 * Promise driver. Label this entire section
648 * "TODO: figure out why we do this"
649 */
650
651 /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
652 tmp = readl(mmio + PDC_FLASH_CTL);
653 tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
654 writel(tmp, mmio + PDC_FLASH_CTL);
655
656 /* clear plug/unplug flags for all ports */
Luke Kosewski6340f012006-01-28 12:39:29 -0500657 tmp = readl(mmio + hotplug_offset);
658 writel(tmp | 0xff, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 /* mask plug/unplug ints */
Luke Kosewski6340f012006-01-28 12:39:29 -0500661 tmp = readl(mmio + hotplug_offset);
662 writel(tmp | 0xff0000, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* reduce TBG clock to 133 Mhz. */
665 tmp = readl(mmio + PDC_TBG_MODE);
666 tmp &= ~0x30000; /* clear bit 17, 16*/
667 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
668 writel(tmp, mmio + PDC_TBG_MODE);
669
670 readl(mmio + PDC_TBG_MODE); /* flush */
671 msleep(10);
672
673 /* adjust slew rate control register. */
674 tmp = readl(mmio + PDC_SLEW_CTL);
675 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
676 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
677 writel(tmp, mmio + PDC_SLEW_CTL);
678}
679
680static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
681{
682 static int printed_version;
683 struct ata_probe_ent *probe_ent = NULL;
Luke Kosewski6340f012006-01-28 12:39:29 -0500684 struct pdc_host_priv *hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400686 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 unsigned int board_idx = (unsigned int) ent->driver_data;
688 int pci_dev_busy = 0;
689 int rc;
690
691 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500692 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 rc = pci_enable_device(pdev);
695 if (rc)
696 return rc;
697
698 rc = pci_request_regions(pdev, DRV_NAME);
699 if (rc) {
700 pci_dev_busy = 1;
701 goto err_out;
702 }
703
704 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
705 if (rc)
706 goto err_out_regions;
707 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
708 if (rc)
709 goto err_out_regions;
710
Luke Kosewski6340f012006-01-28 12:39:29 -0500711 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (probe_ent == NULL) {
713 rc = -ENOMEM;
714 goto err_out_regions;
715 }
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 probe_ent->dev = pci_dev_to_dev(pdev);
718 INIT_LIST_HEAD(&probe_ent->node);
719
Jeff Garzik374b1872005-08-30 05:42:52 -0400720 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (mmio_base == NULL) {
722 rc = -ENOMEM;
723 goto err_out_free_ent;
724 }
725 base = (unsigned long) mmio_base;
726
Luke Kosewski6340f012006-01-28 12:39:29 -0500727 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
728 if (hp == NULL) {
729 rc = -ENOMEM;
730 goto err_out_free_ent;
731 }
732
733 /* Set default hotplug offset */
734 hp->hotplug_offset = PDC_SATA_PLUG_CSR;
735 probe_ent->private_data = hp;
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 probe_ent->sht = pdc_port_info[board_idx].sht;
738 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
739 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
740 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
741 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
742 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
743
744 probe_ent->irq = pdev->irq;
745 probe_ent->irq_flags = SA_SHIRQ;
746 probe_ent->mmio_base = mmio_base;
747
748 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
749 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
750
751 probe_ent->port[0].scr_addr = base + 0x400;
752 probe_ent->port[1].scr_addr = base + 0x500;
753
754 /* notice 4-port boards */
755 switch (board_idx) {
Luke Kosewski6340f012006-01-28 12:39:29 -0500756 case board_40518:
757 /* Override hotplug offset for SATAII150 */
758 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
759 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 case board_20319:
761 probe_ent->n_ports = 4;
762
763 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
764 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
765
766 probe_ent->port[2].scr_addr = base + 0x600;
767 probe_ent->port[3].scr_addr = base + 0x700;
768 break;
Luke Kosewski6340f012006-01-28 12:39:29 -0500769 case board_2057x:
770 /* Override hotplug offset for SATAII150 */
771 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
772 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500774 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 break;
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500776 case board_20771:
777 probe_ent->n_ports = 2;
778 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400779 case board_20619:
780 probe_ent->n_ports = 4;
781
782 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
783 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
784
785 probe_ent->port[2].scr_addr = base + 0x600;
786 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500787 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 default:
789 BUG();
790 break;
791 }
792
793 pci_set_master(pdev);
794
795 /* initialize adapter */
796 pdc_host_init(board_idx, probe_ent);
797
Luke Kosewski6340f012006-01-28 12:39:29 -0500798 /* FIXME: Need any other frees than hp? */
799 if (!ata_device_add(probe_ent))
800 kfree(hp);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 kfree(probe_ent);
803
804 return 0;
805
806err_out_free_ent:
807 kfree(probe_ent);
808err_out_regions:
809 pci_release_regions(pdev);
810err_out:
811 if (!pci_dev_busy)
812 pci_disable_device(pdev);
813 return rc;
814}
815
816
817static int __init pdc_ata_init(void)
818{
819 return pci_module_init(&pdc_ata_pci_driver);
820}
821
822
823static void __exit pdc_ata_exit(void)
824{
825 pci_unregister_driver(&pdc_ata_pci_driver);
826}
827
828
829MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400830MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831MODULE_LICENSE("GPL");
832MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
833MODULE_VERSION(DRV_VERSION);
834
835module_init(pdc_ata_init);
836module_exit(pdc_ata_exit);