blob: e35838043b56f3fe56f7a2b290d6ff7cc7e962a3 [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 PDC_HAS_PATA = (1 << 1), /* PDC20375 has PATA */
71
72 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik3d0a59c2005-12-13 22:28:19 -050073
74 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
75 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
76 ATA_FLAG_PIO_POLLING,
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,
118 .ordered_flush = 1,
119};
120
Jeff Garzik057ace52005-10-22 14:27:05 -0400121static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .port_disable = ata_port_disable,
123 .tf_load = pdc_tf_load_mmio,
124 .tf_read = ata_tf_read,
125 .check_status = ata_check_status,
126 .exec_command = pdc_exec_command_mmio,
127 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400128
129 .phy_reset = pdc_sata_phy_reset,
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .qc_prep = pdc_qc_prep,
132 .qc_issue = pdc_qc_issue_prot,
133 .eng_timeout = pdc_eng_timeout,
134 .irq_handler = pdc_interrupt,
135 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .scr_read = pdc_sata_scr_read,
138 .scr_write = pdc_sata_scr_write,
139 .port_start = pdc_port_start,
140 .port_stop = pdc_port_stop,
Jeff Garzik374b1872005-08-30 05:42:52 -0400141 .host_stop = ata_pci_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
Jeff Garzik057ace52005-10-22 14:27:05 -0400144static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400145 .port_disable = ata_port_disable,
146 .tf_load = pdc_tf_load_mmio,
147 .tf_read = ata_tf_read,
148 .check_status = ata_check_status,
149 .exec_command = pdc_exec_command_mmio,
150 .dev_select = ata_std_dev_select,
151
152 .phy_reset = pdc_pata_phy_reset,
153
154 .qc_prep = pdc_qc_prep,
155 .qc_issue = pdc_qc_issue_prot,
156 .eng_timeout = pdc_eng_timeout,
157 .irq_handler = pdc_interrupt,
158 .irq_clear = pdc_irq_clear,
159
160 .port_start = pdc_port_start,
161 .port_stop = pdc_port_stop,
Jeff Garzik374b1872005-08-30 05:42:52 -0400162 .host_stop = ata_pci_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400163};
164
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100165static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /* board_2037x */
167 {
168 .sht = &pdc_ata_sht,
Jeff Garzik3d0a59c2005-12-13 22:28:19 -0500169 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .pio_mask = 0x1f, /* pio0-4 */
171 .mwdma_mask = 0x07, /* mwdma0-2 */
172 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400173 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 },
175
176 /* board_20319 */
177 {
178 .sht = &pdc_ata_sht,
Jeff Garzik3d0a59c2005-12-13 22:28:19 -0500179 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .pio_mask = 0x1f, /* pio0-4 */
181 .mwdma_mask = 0x07, /* mwdma0-2 */
182 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400183 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400185
186 /* board_20619 */
187 {
188 .sht = &pdc_ata_sht,
Jeff Garzik3d0a59c2005-12-13 22:28:19 -0500189 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400190 .pio_mask = 0x1f, /* pio0-4 */
191 .mwdma_mask = 0x07, /* mwdma0-2 */
192 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400193 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400194 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500197static const struct pci_device_id pdc_ata_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
199 board_2037x },
Jeff Garzik07c1da22005-10-28 17:00:31 -0400200 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
201 board_2037x },
Francisco Javier4c3a53d2005-05-25 19:29:37 -0400202 { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
203 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
205 board_2037x },
206 { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
207 board_2037x },
208 { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
209 board_2037x },
210 { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
211 board_2037x },
212 { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
213 board_2037x },
Ed Kearc45154a2005-07-16 23:32:19 -0400214 { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
215 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
218 board_20319 },
219 { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
220 board_20319 },
Daniel Drake93090492005-08-22 14:59:23 +0100221 { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
222 board_20319 },
Otto Meier08b791c02005-08-22 14:58:57 +0100223 { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
224 board_20319 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
226 board_20319 },
227
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400228 { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
229 board_20619 },
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 { } /* terminate list */
232};
233
234
235static struct pci_driver pdc_ata_pci_driver = {
236 .name = DRV_NAME,
237 .id_table = pdc_ata_pci_tbl,
238 .probe = pdc_ata_init_one,
239 .remove = ata_pci_remove_one,
240};
241
242
243static int pdc_port_start(struct ata_port *ap)
244{
245 struct device *dev = ap->host_set->dev;
246 struct pdc_port_priv *pp;
247 int rc;
248
249 rc = ata_port_start(ap);
250 if (rc)
251 return rc;
252
253 pp = kmalloc(sizeof(*pp), GFP_KERNEL);
254 if (!pp) {
255 rc = -ENOMEM;
256 goto err_out;
257 }
258 memset(pp, 0, sizeof(*pp));
259
260 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
261 if (!pp->pkt) {
262 rc = -ENOMEM;
263 goto err_out_kfree;
264 }
265
266 ap->private_data = pp;
267
268 return 0;
269
270err_out_kfree:
271 kfree(pp);
272err_out:
273 ata_port_stop(ap);
274 return rc;
275}
276
277
278static void pdc_port_stop(struct ata_port *ap)
279{
280 struct device *dev = ap->host_set->dev;
281 struct pdc_port_priv *pp = ap->private_data;
282
283 ap->private_data = NULL;
284 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
285 kfree(pp);
286 ata_port_stop(ap);
287}
288
289
290static void pdc_reset_port(struct ata_port *ap)
291{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400292 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 unsigned int i;
294 u32 tmp;
295
296 for (i = 11; i > 0; i--) {
297 tmp = readl(mmio);
298 if (tmp & PDC_RESET)
299 break;
300
301 udelay(100);
302
303 tmp |= PDC_RESET;
304 writel(tmp, mmio);
305 }
306
307 tmp &= ~PDC_RESET;
308 writel(tmp, mmio);
309 readl(mmio); /* flush */
310}
311
Jeff Garzik2cba5822005-08-29 05:12:30 -0400312static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 pdc_reset_port(ap);
315 sata_phy_reset(ap);
316}
317
Jeff Garzik2cba5822005-08-29 05:12:30 -0400318static void pdc_pata_phy_reset(struct ata_port *ap)
319{
320 /* FIXME: add cable detect. Don't assume 40-pin cable */
321 ap->cbl = ATA_CBL_PATA40;
322 ap->udma_mask &= ATA_UDMA_MASK_40C;
323
324 pdc_reset_port(ap);
325 ata_port_probe(ap);
326 ata_bus_reset(ap);
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
330{
331 if (sc_reg > SCR_CONTROL)
332 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100333 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336
337static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
338 u32 val)
339{
340 if (sc_reg > SCR_CONTROL)
341 return;
Al Virob181d3b2005-10-21 06:46:02 +0100342 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345static void pdc_qc_prep(struct ata_queued_cmd *qc)
346{
347 struct pdc_port_priv *pp = qc->ap->private_data;
348 unsigned int i;
349
350 VPRINTK("ENTER\n");
351
352 switch (qc->tf.protocol) {
353 case ATA_PROT_DMA:
354 ata_qc_prep(qc);
355 /* fall through */
356
357 case ATA_PROT_NODATA:
358 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
359 qc->dev->devno, pp->pkt);
360
361 if (qc->tf.flags & ATA_TFLAG_LBA48)
362 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
363 else
364 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
365
366 pdc_pkt_footer(&qc->tf, pp->pkt, i);
367 break;
368
369 default:
370 break;
371 }
372}
373
374static void pdc_eng_timeout(struct ata_port *ap)
375{
Jeff Garzikb8f61532005-08-25 22:01:20 -0400376 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 u8 drv_stat;
378 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400379 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 DPRINTK("ENTER\n");
382
Jeff Garzikb8f61532005-08-25 22:01:20 -0400383 spin_lock_irqsave(&host_set->lock, flags);
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 qc = ata_qc_from_tag(ap, ap->active_tag);
386 if (!qc) {
387 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
388 ap->id);
389 goto out;
390 }
391
392 /* hack alert! We cannot use the supplied completion
393 * function from inside the ->eh_strategy_handler() thread.
394 * libata is the only user of ->eh_strategy_handler() in
395 * any kernel, so the default scsi_done() assumes it is
396 * not being called from the SCSI EH.
397 */
398 qc->scsidone = scsi_finish_command;
399
400 switch (qc->tf.protocol) {
401 case ATA_PROT_DMA:
402 case ATA_PROT_NODATA:
403 printk(KERN_ERR "ata%u: command timeout\n", ap->id);
Jeff Garzika7dac442005-10-30 04:44:42 -0500404 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800405 qc->err_mask |= __ac_err_mask(drv_stat);
406 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
408
409 default:
410 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
411
412 printk(KERN_ERR "ata%u: unknown timeout, cmd 0x%x stat 0x%x\n",
413 ap->id, qc->tf.command, drv_stat);
414
Albert Leea22e2eb2005-12-05 15:38:02 +0800415 qc->err_mask |= ac_err_mask(drv_stat);
416 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418 }
419
420out:
Jeff Garzikb8f61532005-08-25 22:01:20 -0400421 spin_unlock_irqrestore(&host_set->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 DPRINTK("EXIT\n");
423}
424
425static inline unsigned int pdc_host_intr( struct ata_port *ap,
426 struct ata_queued_cmd *qc)
427{
Albert Leea22e2eb2005-12-05 15:38:02 +0800428 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400430 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 tmp = readl(mmio);
433 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800434 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 pdc_reset_port(ap);
436 }
437
438 switch (qc->tf.protocol) {
439 case ATA_PROT_DMA:
440 case ATA_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800441 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
442 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 handled = 1;
444 break;
445
446 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800447 ap->stats.idle_irq++;
448 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Albert Leeee500aa2005-09-27 17:34:38 +0800451 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454static void pdc_irq_clear(struct ata_port *ap)
455{
456 struct ata_host_set *host_set = ap->host_set;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400457 void __iomem *mmio = host_set->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 readl(mmio + PDC_INT_SEQMASK);
460}
461
462static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
463{
464 struct ata_host_set *host_set = dev_instance;
465 struct ata_port *ap;
466 u32 mask = 0;
467 unsigned int i, tmp;
468 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400469 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 VPRINTK("ENTER\n");
472
473 if (!host_set || !host_set->mmio_base) {
474 VPRINTK("QUICK EXIT\n");
475 return IRQ_NONE;
476 }
477
478 mmio_base = host_set->mmio_base;
479
480 /* reading should also clear interrupts */
481 mask = readl(mmio_base + PDC_INT_SEQMASK);
482
483 if (mask == 0xffffffff) {
484 VPRINTK("QUICK EXIT 2\n");
485 return IRQ_NONE;
486 }
487 mask &= 0xffff; /* only 16 tags possible */
488 if (!mask) {
489 VPRINTK("QUICK EXIT 3\n");
490 return IRQ_NONE;
491 }
492
493 spin_lock(&host_set->lock);
494
495 writel(mask, mmio_base + PDC_INT_SEQMASK);
496
497 for (i = 0; i < host_set->n_ports; i++) {
498 VPRINTK("port %u\n", i);
499 ap = host_set->ports[i];
500 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900501 if (tmp && ap &&
Albert Leee50362e2005-09-27 17:39:50 +0800502 !(ap->flags & ATA_FLAG_PORT_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct ata_queued_cmd *qc;
504
505 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800506 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 handled += pdc_host_intr(ap, qc);
508 }
509 }
510
511 spin_unlock(&host_set->lock);
512
513 VPRINTK("EXIT\n");
514
515 return IRQ_RETVAL(handled);
516}
517
518static inline void pdc_packet_start(struct ata_queued_cmd *qc)
519{
520 struct ata_port *ap = qc->ap;
521 struct pdc_port_priv *pp = ap->private_data;
522 unsigned int port_no = ap->port_no;
523 u8 seq = (u8) (port_no + 1);
524
525 VPRINTK("ENTER, ap %p\n", ap);
526
527 writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
528 readl(ap->host_set->mmio_base + (seq * 4)); /* flush */
529
530 pp->pkt[2] = seq;
531 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100532 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
533 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536static int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
537{
538 switch (qc->tf.protocol) {
539 case ATA_PROT_DMA:
540 case ATA_PROT_NODATA:
541 pdc_packet_start(qc);
542 return 0;
543
544 case ATA_PROT_ATAPI_DMA:
545 BUG();
546 break;
547
548 default:
549 break;
550 }
551
552 return ata_qc_issue_prot(qc);
553}
554
Jeff Garzik057ace52005-10-22 14:27:05 -0400555static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 WARN_ON (tf->protocol == ATA_PROT_DMA ||
558 tf->protocol == ATA_PROT_NODATA);
559 ata_tf_load(ap, tf);
560}
561
562
Jeff Garzik057ace52005-10-22 14:27:05 -0400563static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 WARN_ON (tf->protocol == ATA_PROT_DMA ||
566 tf->protocol == ATA_PROT_NODATA);
567 ata_exec_command(ap, tf);
568}
569
570
571static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
572{
573 port->cmd_addr = base;
574 port->data_addr = base;
575 port->feature_addr =
576 port->error_addr = base + 0x4;
577 port->nsect_addr = base + 0x8;
578 port->lbal_addr = base + 0xc;
579 port->lbam_addr = base + 0x10;
580 port->lbah_addr = base + 0x14;
581 port->device_addr = base + 0x18;
582 port->command_addr =
583 port->status_addr = base + 0x1c;
584 port->altstatus_addr =
585 port->ctl_addr = base + 0x38;
586}
587
588
589static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
590{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400591 void __iomem *mmio = pe->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 u32 tmp;
593
594 /*
595 * Except for the hotplug stuff, this is voodoo from the
596 * Promise driver. Label this entire section
597 * "TODO: figure out why we do this"
598 */
599
600 /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
601 tmp = readl(mmio + PDC_FLASH_CTL);
602 tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
603 writel(tmp, mmio + PDC_FLASH_CTL);
604
605 /* clear plug/unplug flags for all ports */
606 tmp = readl(mmio + PDC_SATA_PLUG_CSR);
607 writel(tmp | 0xff, mmio + PDC_SATA_PLUG_CSR);
608
609 /* mask plug/unplug ints */
610 tmp = readl(mmio + PDC_SATA_PLUG_CSR);
611 writel(tmp | 0xff0000, mmio + PDC_SATA_PLUG_CSR);
612
613 /* reduce TBG clock to 133 Mhz. */
614 tmp = readl(mmio + PDC_TBG_MODE);
615 tmp &= ~0x30000; /* clear bit 17, 16*/
616 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
617 writel(tmp, mmio + PDC_TBG_MODE);
618
619 readl(mmio + PDC_TBG_MODE); /* flush */
620 msleep(10);
621
622 /* adjust slew rate control register. */
623 tmp = readl(mmio + PDC_SLEW_CTL);
624 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
625 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
626 writel(tmp, mmio + PDC_SLEW_CTL);
627}
628
629static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
630{
631 static int printed_version;
632 struct ata_probe_ent *probe_ent = NULL;
633 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400634 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 unsigned int board_idx = (unsigned int) ent->driver_data;
636 int pci_dev_busy = 0;
637 int rc;
638
639 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500640 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /*
643 * If this driver happens to only be useful on Apple's K2, then
644 * we should check that here as it has a normal Serverworks ID
645 */
646 rc = pci_enable_device(pdev);
647 if (rc)
648 return rc;
649
650 rc = pci_request_regions(pdev, DRV_NAME);
651 if (rc) {
652 pci_dev_busy = 1;
653 goto err_out;
654 }
655
656 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
657 if (rc)
658 goto err_out_regions;
659 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
660 if (rc)
661 goto err_out_regions;
662
663 probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
664 if (probe_ent == NULL) {
665 rc = -ENOMEM;
666 goto err_out_regions;
667 }
668
669 memset(probe_ent, 0, sizeof(*probe_ent));
670 probe_ent->dev = pci_dev_to_dev(pdev);
671 INIT_LIST_HEAD(&probe_ent->node);
672
Jeff Garzik374b1872005-08-30 05:42:52 -0400673 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (mmio_base == NULL) {
675 rc = -ENOMEM;
676 goto err_out_free_ent;
677 }
678 base = (unsigned long) mmio_base;
679
680 probe_ent->sht = pdc_port_info[board_idx].sht;
681 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
682 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
683 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
684 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
685 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
686
687 probe_ent->irq = pdev->irq;
688 probe_ent->irq_flags = SA_SHIRQ;
689 probe_ent->mmio_base = mmio_base;
690
691 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
692 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
693
694 probe_ent->port[0].scr_addr = base + 0x400;
695 probe_ent->port[1].scr_addr = base + 0x500;
696
697 /* notice 4-port boards */
698 switch (board_idx) {
699 case board_20319:
700 probe_ent->n_ports = 4;
701
702 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
703 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
704
705 probe_ent->port[2].scr_addr = base + 0x600;
706 probe_ent->port[3].scr_addr = base + 0x700;
707 break;
708 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500709 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400711 case board_20619:
712 probe_ent->n_ports = 4;
713
714 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
715 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
716
717 probe_ent->port[2].scr_addr = base + 0x600;
718 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 default:
721 BUG();
722 break;
723 }
724
725 pci_set_master(pdev);
726
727 /* initialize adapter */
728 pdc_host_init(board_idx, probe_ent);
729
730 /* FIXME: check ata_device_add return value */
731 ata_device_add(probe_ent);
732 kfree(probe_ent);
733
734 return 0;
735
736err_out_free_ent:
737 kfree(probe_ent);
738err_out_regions:
739 pci_release_regions(pdev);
740err_out:
741 if (!pci_dev_busy)
742 pci_disable_device(pdev);
743 return rc;
744}
745
746
747static int __init pdc_ata_init(void)
748{
749 return pci_module_init(&pdc_ata_pci_driver);
750}
751
752
753static void __exit pdc_ata_exit(void)
754{
755 pci_unregister_driver(&pdc_ata_pci_driver);
756}
757
758
759MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400760MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761MODULE_LICENSE("GPL");
762MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
763MODULE_VERSION(DRV_VERSION);
764
765module_init(pdc_ata_init);
766module_exit(pdc_ata_exit);