blob: b0b0a69b3563c67a896f83517ae3b609a30aa011 [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"
Jeff Garzik7bdd7202005-11-16 11:06:59 -050049#define DRV_VERSION "1.03"
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 */
61 PDC_SLEW_CTL = 0x470, /* slew rate control reg */
62
63 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
64 (1<<8) | (1<<9) | (1<<10),
65
66 board_2037x = 0, /* FastTrak S150 TX2plus */
67 board_20319 = 1, /* FastTrak S150 TX4 */
Tobias Lorenzf497ba72005-05-12 15:51:01 -040068 board_20619 = 2, /* FastTrak TX4000 */
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -050069 board_20771 = 3, /* FastTrak TX2300 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 PDC_HAS_PATA = (1 << 1), /* PDC20375 has PATA */
72
73 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -050074
75 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
76 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
79
80struct pdc_port_priv {
81 u8 *pkt;
82 dma_addr_t pkt_dma;
83};
84
85static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
86static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
87static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
88static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
89static void pdc_eng_timeout(struct ata_port *ap);
90static int pdc_port_start(struct ata_port *ap);
91static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -040092static void pdc_pata_phy_reset(struct ata_port *ap);
93static void pdc_sata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -040095static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
96static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static void pdc_irq_clear(struct ata_port *ap);
98static int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
99
Jeff Garzik374b1872005-08-30 05:42:52 -0400100
Jeff Garzik193515d2005-11-07 00:59:37 -0500101static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .module = THIS_MODULE,
103 .name = DRV_NAME,
104 .ioctl = ata_scsi_ioctl,
105 .queuecommand = ata_scsi_queuecmd,
106 .eh_strategy_handler = ata_scsi_error,
107 .can_queue = ATA_DEF_QUEUE,
108 .this_id = ATA_SHT_THIS_ID,
109 .sg_tablesize = LIBATA_MAX_PRD,
110 .max_sectors = ATA_MAX_SECTORS,
111 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
112 .emulated = ATA_SHT_EMULATED,
113 .use_clustering = ATA_SHT_USE_CLUSTERING,
114 .proc_name = DRV_NAME,
115 .dma_boundary = ATA_DMA_BOUNDARY,
116 .slave_configure = ata_scsi_slave_config,
117 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
Jeff Garzik057ace52005-10-22 14:27:05 -0400120static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .port_disable = ata_port_disable,
122 .tf_load = pdc_tf_load_mmio,
123 .tf_read = ata_tf_read,
124 .check_status = ata_check_status,
125 .exec_command = pdc_exec_command_mmio,
126 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400127
128 .phy_reset = pdc_sata_phy_reset,
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 .qc_prep = pdc_qc_prep,
131 .qc_issue = pdc_qc_issue_prot,
132 .eng_timeout = pdc_eng_timeout,
133 .irq_handler = pdc_interrupt,
134 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .scr_read = pdc_sata_scr_read,
137 .scr_write = pdc_sata_scr_write,
138 .port_start = pdc_port_start,
139 .port_stop = pdc_port_stop,
Jeff Garzik374b1872005-08-30 05:42:52 -0400140 .host_stop = ata_pci_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
Jeff Garzik057ace52005-10-22 14:27:05 -0400143static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400144 .port_disable = ata_port_disable,
145 .tf_load = pdc_tf_load_mmio,
146 .tf_read = ata_tf_read,
147 .check_status = ata_check_status,
148 .exec_command = pdc_exec_command_mmio,
149 .dev_select = ata_std_dev_select,
150
151 .phy_reset = pdc_pata_phy_reset,
152
153 .qc_prep = pdc_qc_prep,
154 .qc_issue = pdc_qc_issue_prot,
155 .eng_timeout = pdc_eng_timeout,
156 .irq_handler = pdc_interrupt,
157 .irq_clear = pdc_irq_clear,
158
159 .port_start = pdc_port_start,
160 .port_stop = pdc_port_stop,
Jeff Garzik374b1872005-08-30 05:42:52 -0400161 .host_stop = ata_pci_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400162};
163
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100164static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /* board_2037x */
166 {
167 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500168 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .pio_mask = 0x1f, /* pio0-4 */
170 .mwdma_mask = 0x07, /* mwdma0-2 */
171 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400172 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 },
174
175 /* board_20319 */
176 {
177 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500178 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .pio_mask = 0x1f, /* pio0-4 */
180 .mwdma_mask = 0x07, /* mwdma0-2 */
181 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400182 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400184
185 /* board_20619 */
186 {
187 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500188 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400189 .pio_mask = 0x1f, /* pio0-4 */
190 .mwdma_mask = 0x07, /* mwdma0-2 */
191 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400192 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400193 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500194
195 /* board_20771 */
196 {
197 .sht = &pdc_ata_sht,
198 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
199 .pio_mask = 0x1f, /* pio0-4 */
200 .mwdma_mask = 0x07, /* mwdma0-2 */
201 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
202 .port_ops = &pdc_sata_ops,
203 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204};
205
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500206static const struct pci_device_id pdc_ata_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
208 board_2037x },
Jeff Garzik07c1da22005-10-28 17:00:31 -0400209 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
210 board_2037x },
Francisco Javier4c3a53d2005-05-25 19:29:37 -0400211 { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
212 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
214 board_2037x },
215 { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
216 board_2037x },
217 { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
218 board_2037x },
219 { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
220 board_2037x },
221 { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
222 board_2037x },
Ed Kearc45154a2005-07-16 23:32:19 -0400223 { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
224 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
227 board_20319 },
228 { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
229 board_20319 },
Daniel Drake93090492005-08-22 14:59:23 +0100230 { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
231 board_20319 },
Otto Meier08b791c02005-08-22 14:58:57 +0100232 { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
233 board_20319 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
235 board_20319 },
236
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400237 { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
238 board_20619 },
239
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500240 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
241 board_20771 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 { } /* terminate list */
243};
244
245
246static struct pci_driver pdc_ata_pci_driver = {
247 .name = DRV_NAME,
248 .id_table = pdc_ata_pci_tbl,
249 .probe = pdc_ata_init_one,
250 .remove = ata_pci_remove_one,
251};
252
253
254static int pdc_port_start(struct ata_port *ap)
255{
256 struct device *dev = ap->host_set->dev;
257 struct pdc_port_priv *pp;
258 int rc;
259
260 rc = ata_port_start(ap);
261 if (rc)
262 return rc;
263
264 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
265 if (!pp) {
266 rc = -ENOMEM;
267 goto err_out;
268 }
269 memset(pp, 0, sizeof(*pp));
270
271 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
272 if (!pp->pkt) {
273 rc = -ENOMEM;
274 goto err_out_kfree;
275 }
276
277 ap->private_data = pp;
278
279 return 0;
280
281err_out_kfree:
282 kfree(pp);
283err_out:
284 ata_port_stop(ap);
285 return rc;
286}
287
288
289static void pdc_port_stop(struct ata_port *ap)
290{
291 struct device *dev = ap->host_set->dev;
292 struct pdc_port_priv *pp = ap->private_data;
293
294 ap->private_data = NULL;
295 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
296 kfree(pp);
297 ata_port_stop(ap);
298}
299
300
301static void pdc_reset_port(struct ata_port *ap)
302{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400303 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 unsigned int i;
305 u32 tmp;
306
307 for (i = 11; i > 0; i--) {
308 tmp = readl(mmio);
309 if (tmp & PDC_RESET)
310 break;
311
312 udelay(100);
313
314 tmp |= PDC_RESET;
315 writel(tmp, mmio);
316 }
317
318 tmp &= ~PDC_RESET;
319 writel(tmp, mmio);
320 readl(mmio); /* flush */
321}
322
Jeff Garzik2cba5822005-08-29 05:12:30 -0400323static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 pdc_reset_port(ap);
326 sata_phy_reset(ap);
327}
328
Jeff Garzik2cba5822005-08-29 05:12:30 -0400329static void pdc_pata_phy_reset(struct ata_port *ap)
330{
331 /* FIXME: add cable detect. Don't assume 40-pin cable */
332 ap->cbl = ATA_CBL_PATA40;
333 ap->udma_mask &= ATA_UDMA_MASK_40C;
334
335 pdc_reset_port(ap);
336 ata_port_probe(ap);
337 ata_bus_reset(ap);
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
341{
342 if (sc_reg > SCR_CONTROL)
343 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100344 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
347
348static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
349 u32 val)
350{
351 if (sc_reg > SCR_CONTROL)
352 return;
Al Virob181d3b2005-10-21 06:46:02 +0100353 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
356static void pdc_qc_prep(struct ata_queued_cmd *qc)
357{
358 struct pdc_port_priv *pp = qc->ap->private_data;
359 unsigned int i;
360
361 VPRINTK("ENTER\n");
362
363 switch (qc->tf.protocol) {
364 case ATA_PROT_DMA:
365 ata_qc_prep(qc);
366 /* fall through */
367
368 case ATA_PROT_NODATA:
369 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
370 qc->dev->devno, pp->pkt);
371
372 if (qc->tf.flags & ATA_TFLAG_LBA48)
373 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
374 else
375 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
376
377 pdc_pkt_footer(&qc->tf, pp->pkt, i);
378 break;
379
380 default:
381 break;
382 }
383}
384
385static void pdc_eng_timeout(struct ata_port *ap)
386{
Jeff Garzikb8f61532005-08-25 22:01:20 -0400387 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 u8 drv_stat;
389 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400390 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 DPRINTK("ENTER\n");
393
Jeff Garzikb8f61532005-08-25 22:01:20 -0400394 spin_lock_irqsave(&host_set->lock, flags);
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 qc = ata_qc_from_tag(ap, ap->active_tag);
397 if (!qc) {
398 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
399 ap->id);
400 goto out;
401 }
402
403 /* hack alert! We cannot use the supplied completion
404 * function from inside the ->eh_strategy_handler() thread.
405 * libata is the only user of ->eh_strategy_handler() in
406 * any kernel, so the default scsi_done() assumes it is
407 * not being called from the SCSI EH.
408 */
409 qc->scsidone = scsi_finish_command;
410
411 switch (qc->tf.protocol) {
412 case ATA_PROT_DMA:
413 case ATA_PROT_NODATA:
414 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
Jeff Garzika7dac442005-10-30 04:44:42 -0500415 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800416 qc->err_mask |= __ac_err_mask(drv_stat);
417 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 break;
419
420 default:
421 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
422
423 printk(KERN_ERR "ata%u: unknown timeout, cmd 0x%x stat 0x%x\n",
424 ap->id, qc->tf.command, drv_stat);
425
Albert Leea22e2eb2005-12-05 15:38:02 +0800426 qc->err_mask |= ac_err_mask(drv_stat);
427 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 break;
429 }
430
431out:
Jeff Garzikb8f61532005-08-25 22:01:20 -0400432 spin_unlock_irqrestore(&host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 DPRINTK("EXIT\n");
434}
435
436static inline unsigned int pdc_host_intr( struct ata_port *ap,
437 struct ata_queued_cmd *qc)
438{
Albert Leea22e2eb2005-12-05 15:38:02 +0800439 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400441 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 tmp = readl(mmio);
444 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800445 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 pdc_reset_port(ap);
447 }
448
449 switch (qc->tf.protocol) {
450 case ATA_PROT_DMA:
451 case ATA_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800452 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
453 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 handled = 1;
455 break;
456
457 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800458 ap->stats.idle_irq++;
459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
Albert Leeee500aa2005-09-27 17:34:38 +0800462 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465static void pdc_irq_clear(struct ata_port *ap)
466{
467 struct ata_host_set *host_set = ap->host_set;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400468 void __iomem *mmio = host_set->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 readl(mmio + PDC_INT_SEQMASK);
471}
472
473static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
474{
475 struct ata_host_set *host_set = dev_instance;
476 struct ata_port *ap;
477 u32 mask = 0;
478 unsigned int i, tmp;
479 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400480 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 VPRINTK("ENTER\n");
483
484 if (!host_set || !host_set->mmio_base) {
485 VPRINTK("QUICK EXIT\n");
486 return IRQ_NONE;
487 }
488
489 mmio_base = host_set->mmio_base;
490
491 /* reading should also clear interrupts */
492 mask = readl(mmio_base + PDC_INT_SEQMASK);
493
494 if (mask == 0xffffffff) {
495 VPRINTK("QUICK EXIT 2\n");
496 return IRQ_NONE;
497 }
498 mask &= 0xffff; /* only 16 tags possible */
499 if (!mask) {
500 VPRINTK("QUICK EXIT 3\n");
501 return IRQ_NONE;
502 }
503
504 spin_lock(&host_set->lock);
505
506 writel(mask, mmio_base + PDC_INT_SEQMASK);
507
508 for (i = 0; i < host_set->n_ports; i++) {
509 VPRINTK("port %u\n", i);
510 ap = host_set->ports[i];
511 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900512 if (tmp && ap &&
513 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct ata_queued_cmd *qc;
515
516 qc = ata_qc_from_tag(ap, ap->active_tag);
517 if (qc && (!(qc->tf.ctl & ATA_NIEN)))
518 handled += pdc_host_intr(ap, qc);
519 }
520 }
521
522 spin_unlock(&host_set->lock);
523
524 VPRINTK("EXIT\n");
525
526 return IRQ_RETVAL(handled);
527}
528
529static inline void pdc_packet_start(struct ata_queued_cmd *qc)
530{
531 struct ata_port *ap = qc->ap;
532 struct pdc_port_priv *pp = ap->private_data;
533 unsigned int port_no = ap->port_no;
534 u8 seq = (u8) (port_no + 1);
535
536 VPRINTK("ENTER, ap %p\n", ap);
537
538 writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
539 readl(ap->host_set->mmio_base + (seq * 4)); /* flush */
540
541 pp->pkt[2] = seq;
542 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100543 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
544 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547static int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
548{
549 switch (qc->tf.protocol) {
550 case ATA_PROT_DMA:
551 case ATA_PROT_NODATA:
552 pdc_packet_start(qc);
553 return 0;
554
555 case ATA_PROT_ATAPI_DMA:
556 BUG();
557 break;
558
559 default:
560 break;
561 }
562
563 return ata_qc_issue_prot(qc);
564}
565
Jeff Garzik057ace52005-10-22 14:27:05 -0400566static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 WARN_ON (tf->protocol == ATA_PROT_DMA ||
569 tf->protocol == ATA_PROT_NODATA);
570 ata_tf_load(ap, tf);
571}
572
573
Jeff Garzik057ace52005-10-22 14:27:05 -0400574static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 WARN_ON (tf->protocol == ATA_PROT_DMA ||
577 tf->protocol == ATA_PROT_NODATA);
578 ata_exec_command(ap, tf);
579}
580
581
582static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
583{
584 port->cmd_addr = base;
585 port->data_addr = base;
586 port->feature_addr =
587 port->error_addr = base + 0x4;
588 port->nsect_addr = base + 0x8;
589 port->lbal_addr = base + 0xc;
590 port->lbam_addr = base + 0x10;
591 port->lbah_addr = base + 0x14;
592 port->device_addr = base + 0x18;
593 port->command_addr =
594 port->status_addr = base + 0x1c;
595 port->altstatus_addr =
596 port->ctl_addr = base + 0x38;
597}
598
599
600static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
601{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400602 void __iomem *mmio = pe->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 u32 tmp;
604
605 /*
606 * Except for the hotplug stuff, this is voodoo from the
607 * Promise driver. Label this entire section
608 * "TODO: figure out why we do this"
609 */
610
611 /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
612 tmp = readl(mmio + PDC_FLASH_CTL);
613 tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
614 writel(tmp, mmio + PDC_FLASH_CTL);
615
616 /* clear plug/unplug flags for all ports */
617 tmp = readl(mmio + PDC_SATA_PLUG_CSR);
618 writel(tmp | 0xff, mmio + PDC_SATA_PLUG_CSR);
619
620 /* mask plug/unplug ints */
621 tmp = readl(mmio + PDC_SATA_PLUG_CSR);
622 writel(tmp | 0xff0000, mmio + PDC_SATA_PLUG_CSR);
623
624 /* reduce TBG clock to 133 Mhz. */
625 tmp = readl(mmio + PDC_TBG_MODE);
626 tmp &= ~0x30000; /* clear bit 17, 16*/
627 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
628 writel(tmp, mmio + PDC_TBG_MODE);
629
630 readl(mmio + PDC_TBG_MODE); /* flush */
631 msleep(10);
632
633 /* adjust slew rate control register. */
634 tmp = readl(mmio + PDC_SLEW_CTL);
635 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
636 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
637 writel(tmp, mmio + PDC_SLEW_CTL);
638}
639
640static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
641{
642 static int printed_version;
643 struct ata_probe_ent *probe_ent = NULL;
644 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400645 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 unsigned int board_idx = (unsigned int) ent->driver_data;
647 int pci_dev_busy = 0;
648 int rc;
649
650 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500651 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /*
654 * If this driver happens to only be useful on Apple's K2, then
655 * we should check that here as it has a normal Serverworks ID
656 */
657 rc = pci_enable_device(pdev);
658 if (rc)
659 return rc;
660
661 rc = pci_request_regions(pdev, DRV_NAME);
662 if (rc) {
663 pci_dev_busy = 1;
664 goto err_out;
665 }
666
667 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
668 if (rc)
669 goto err_out_regions;
670 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
671 if (rc)
672 goto err_out_regions;
673
674 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
675 if (probe_ent == NULL) {
676 rc = -ENOMEM;
677 goto err_out_regions;
678 }
679
680 memset(probe_ent, 0, sizeof(*probe_ent));
681 probe_ent->dev = pci_dev_to_dev(pdev);
682 INIT_LIST_HEAD(&probe_ent->node);
683
Jeff Garzik374b1872005-08-30 05:42:52 -0400684 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (mmio_base == NULL) {
686 rc = -ENOMEM;
687 goto err_out_free_ent;
688 }
689 base = (unsigned long) mmio_base;
690
691 probe_ent->sht = pdc_port_info[board_idx].sht;
692 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
693 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
694 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
695 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
696 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
697
698 probe_ent->irq = pdev->irq;
699 probe_ent->irq_flags = SA_SHIRQ;
700 probe_ent->mmio_base = mmio_base;
701
702 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
703 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
704
705 probe_ent->port[0].scr_addr = base + 0x400;
706 probe_ent->port[1].scr_addr = base + 0x500;
707
708 /* notice 4-port boards */
709 switch (board_idx) {
710 case board_20319:
711 probe_ent->n_ports = 4;
712
713 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
714 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
715
716 probe_ent->port[2].scr_addr = base + 0x600;
717 probe_ent->port[3].scr_addr = base + 0x700;
718 break;
719 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500720 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500722 case board_20771:
723 probe_ent->n_ports = 2;
724 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400725 case board_20619:
726 probe_ent->n_ports = 4;
727
728 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
729 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
730
731 probe_ent->port[2].scr_addr = base + 0x600;
732 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500733 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 default:
735 BUG();
736 break;
737 }
738
739 pci_set_master(pdev);
740
741 /* initialize adapter */
742 pdc_host_init(board_idx, probe_ent);
743
744 /* FIXME: check ata_device_add return value */
745 ata_device_add(probe_ent);
746 kfree(probe_ent);
747
748 return 0;
749
750err_out_free_ent:
751 kfree(probe_ent);
752err_out_regions:
753 pci_release_regions(pdev);
754err_out:
755 if (!pci_dev_busy)
756 pci_disable_device(pdev);
757 return rc;
758}
759
760
761static int __init pdc_ata_init(void)
762{
763 return pci_module_init(&pdc_ata_pci_driver);
764}
765
766
767static void __exit pdc_ata_exit(void)
768{
769 pci_unregister_driver(&pdc_ata_pci_driver);
770}
771
772
773MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400774MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775MODULE_LICENSE("GPL");
776MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
777MODULE_VERSION(DRV_VERSION);
778
779module_init(pdc_ata_init);
780module_exit(pdc_ata_exit);