]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/ata/sata_promise.c
[PATCH] user of the jiffies rounding patch: ATA subsystem
[mirror_ubuntu-zesty-kernel.git] / drivers / ata / sata_promise.c
CommitLineData
1da177e4
LT
1/*
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 *
1da177e4 10 *
af36d7f0
JG
11 * 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.
1da177e4
LT
30 *
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>
a9524a76 41#include <linux/device.h>
1da177e4 42#include <scsi/scsi_host.h>
193515d5 43#include <scsi/scsi_cmnd.h>
1da177e4
LT
44#include <linux/libata.h>
45#include <asm/io.h>
46#include "sata_promise.h"
47
48#define DRV_NAME "sata_promise"
46b027cc 49#define DRV_VERSION "1.05"
1da177e4
LT
50
51
52enum {
53 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
54 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
1da177e4 55 PDC_FLASH_CTL = 0x44, /* Flash control register */
1da177e4
LT
56 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
57 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
58 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
6340f019 59 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
b2d1eee1
MP
60 PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */
61 PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */
1da177e4
LT
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 */
f497ba73 68 board_20619 = 2, /* FastTrak TX4000 */
d324d462
MP
69 board_2057x = 3, /* SATAII150 Tx2plus */
70 board_40518 = 4, /* SATAII150 Tx4 */
1da177e4 71
6340f019 72 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
1da177e4 73
25b93d81
MP
74 /* PDC_CTLSTAT bit definitions */
75 PDC_DMA_ENABLE = (1 << 7),
76 PDC_IRQ_DISABLE = (1 << 10),
1da177e4 77 PDC_RESET = (1 << 11), /* HDMA reset */
50630195 78
25b93d81 79 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY |
3d0a59c0
JG
80 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
81 ATA_FLAG_PIO_POLLING,
b2d1eee1
MP
82
83 /* hp->flags bits */
84 PDC_FLAG_GEN_II = (1 << 0),
1da177e4
LT
85};
86
87
88struct pdc_port_priv {
89 u8 *pkt;
90 dma_addr_t pkt_dma;
91};
92
6340f019 93struct pdc_host_priv {
b2d1eee1 94 unsigned long flags;
6340f019
LK
95};
96
1da177e4
LT
97static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
98static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
99static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
7d12e780 100static irqreturn_t pdc_interrupt (int irq, void *dev_instance);
1da177e4
LT
101static void pdc_eng_timeout(struct ata_port *ap);
102static int pdc_port_start(struct ata_port *ap);
103static void pdc_port_stop(struct ata_port *ap);
2cba582a 104static void pdc_pata_phy_reset(struct ata_port *ap);
1da177e4 105static void pdc_qc_prep(struct ata_queued_cmd *qc);
057ace5e
JG
106static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
107static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
1da177e4 108static void pdc_irq_clear(struct ata_port *ap);
9a3d9eb0 109static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
cca3974e 110static void pdc_host_stop(struct ata_host *host);
25b93d81
MP
111static void pdc_freeze(struct ata_port *ap);
112static void pdc_thaw(struct ata_port *ap);
113static void pdc_error_handler(struct ata_port *ap);
114static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
1da177e4 115
374b1873 116
193515d5 117static struct scsi_host_template pdc_ata_sht = {
1da177e4
LT
118 .module = THIS_MODULE,
119 .name = DRV_NAME,
120 .ioctl = ata_scsi_ioctl,
121 .queuecommand = ata_scsi_queuecmd,
1da177e4
LT
122 .can_queue = ATA_DEF_QUEUE,
123 .this_id = ATA_SHT_THIS_ID,
124 .sg_tablesize = LIBATA_MAX_PRD,
1da177e4
LT
125 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
126 .emulated = ATA_SHT_EMULATED,
127 .use_clustering = ATA_SHT_USE_CLUSTERING,
128 .proc_name = DRV_NAME,
129 .dma_boundary = ATA_DMA_BOUNDARY,
130 .slave_configure = ata_scsi_slave_config,
ccf68c34 131 .slave_destroy = ata_scsi_slave_destroy,
1da177e4 132 .bios_param = ata_std_bios_param,
1da177e4
LT
133};
134
057ace5e 135static const struct ata_port_operations pdc_sata_ops = {
1da177e4
LT
136 .port_disable = ata_port_disable,
137 .tf_load = pdc_tf_load_mmio,
138 .tf_read = ata_tf_read,
139 .check_status = ata_check_status,
140 .exec_command = pdc_exec_command_mmio,
141 .dev_select = ata_std_dev_select,
2cba582a 142
1da177e4
LT
143 .qc_prep = pdc_qc_prep,
144 .qc_issue = pdc_qc_issue_prot,
25b93d81
MP
145 .freeze = pdc_freeze,
146 .thaw = pdc_thaw,
147 .error_handler = pdc_error_handler,
148 .post_internal_cmd = pdc_post_internal_cmd,
a6b2c5d4 149 .data_xfer = ata_mmio_data_xfer,
1da177e4
LT
150 .irq_handler = pdc_interrupt,
151 .irq_clear = pdc_irq_clear,
2cba582a 152
1da177e4
LT
153 .scr_read = pdc_sata_scr_read,
154 .scr_write = pdc_sata_scr_write,
155 .port_start = pdc_port_start,
156 .port_stop = pdc_port_stop,
6340f019 157 .host_stop = pdc_host_stop,
1da177e4
LT
158};
159
057ace5e 160static const struct ata_port_operations pdc_pata_ops = {
2cba582a
JG
161 .port_disable = ata_port_disable,
162 .tf_load = pdc_tf_load_mmio,
163 .tf_read = ata_tf_read,
164 .check_status = ata_check_status,
165 .exec_command = pdc_exec_command_mmio,
166 .dev_select = ata_std_dev_select,
167
168 .phy_reset = pdc_pata_phy_reset,
169
170 .qc_prep = pdc_qc_prep,
171 .qc_issue = pdc_qc_issue_prot,
a6b2c5d4 172 .data_xfer = ata_mmio_data_xfer,
2cba582a
JG
173 .eng_timeout = pdc_eng_timeout,
174 .irq_handler = pdc_interrupt,
175 .irq_clear = pdc_irq_clear,
176
177 .port_start = pdc_port_start,
178 .port_stop = pdc_port_stop,
6340f019 179 .host_stop = pdc_host_stop,
2cba582a
JG
180};
181
98ac62de 182static const struct ata_port_info pdc_port_info[] = {
1da177e4
LT
183 /* board_2037x */
184 {
185 .sht = &pdc_ata_sht,
cca3974e 186 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
1da177e4
LT
187 .pio_mask = 0x1f, /* pio0-4 */
188 .mwdma_mask = 0x07, /* mwdma0-2 */
189 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
2cba582a 190 .port_ops = &pdc_sata_ops,
1da177e4
LT
191 },
192
193 /* board_20319 */
194 {
195 .sht = &pdc_ata_sht,
cca3974e 196 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
1da177e4
LT
197 .pio_mask = 0x1f, /* pio0-4 */
198 .mwdma_mask = 0x07, /* mwdma0-2 */
199 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
2cba582a 200 .port_ops = &pdc_sata_ops,
1da177e4 201 },
f497ba73
TL
202
203 /* board_20619 */
204 {
205 .sht = &pdc_ata_sht,
25b93d81 206 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SRST | ATA_FLAG_SLAVE_POSS,
f497ba73
TL
207 .pio_mask = 0x1f, /* pio0-4 */
208 .mwdma_mask = 0x07, /* mwdma0-2 */
209 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
2cba582a 210 .port_ops = &pdc_pata_ops,
f497ba73 211 },
5a46fe89 212
6340f019
LK
213 /* board_2057x */
214 {
215 .sht = &pdc_ata_sht,
cca3974e 216 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
6340f019
LK
217 .pio_mask = 0x1f, /* pio0-4 */
218 .mwdma_mask = 0x07, /* mwdma0-2 */
219 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
220 .port_ops = &pdc_sata_ops,
221 },
222
223 /* board_40518 */
224 {
225 .sht = &pdc_ata_sht,
cca3974e 226 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
6340f019
LK
227 .pio_mask = 0x1f, /* pio0-4 */
228 .mwdma_mask = 0x07, /* mwdma0-2 */
229 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
230 .port_ops = &pdc_sata_ops,
231 },
1da177e4
LT
232};
233
3b7d697d 234static const struct pci_device_id pdc_ata_pci_tbl[] = {
54bb3a94 235 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
54bb3a94
JG
236 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
237 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
238 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
b2d1eee1
MP
239 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
240 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
54bb3a94 241 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
d324d462 242 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
b2d1eee1 243 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
54bb3a94 244 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
54bb3a94
JG
245
246 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
247 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
248 { PCI_VDEVICE(PROMISE, 0x3515), board_20319 },
249 { PCI_VDEVICE(PROMISE, 0x3519), board_20319 },
b2d1eee1 250 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
54bb3a94
JG
251 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
252
253 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
f497ba73 254
1da177e4
LT
255 { } /* terminate list */
256};
257
258
259static struct pci_driver pdc_ata_pci_driver = {
260 .name = DRV_NAME,
261 .id_table = pdc_ata_pci_tbl,
262 .probe = pdc_ata_init_one,
263 .remove = ata_pci_remove_one,
264};
265
266
267static int pdc_port_start(struct ata_port *ap)
268{
cca3974e 269 struct device *dev = ap->host->dev;
599b7202 270 struct pdc_host_priv *hp = ap->host->private_data;
1da177e4
LT
271 struct pdc_port_priv *pp;
272 int rc;
273
274 rc = ata_port_start(ap);
275 if (rc)
276 return rc;
277
6340f019 278 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
1da177e4
LT
279 if (!pp) {
280 rc = -ENOMEM;
281 goto err_out;
282 }
1da177e4
LT
283
284 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
285 if (!pp->pkt) {
286 rc = -ENOMEM;
287 goto err_out_kfree;
288 }
289
290 ap->private_data = pp;
291
599b7202
MP
292 /* fix up PHYMODE4 align timing */
293 if ((hp->flags & PDC_FLAG_GEN_II) && sata_scr_valid(ap)) {
294 void __iomem *mmio = (void __iomem *) ap->ioaddr.scr_addr;
295 unsigned int tmp;
296
297 tmp = readl(mmio + 0x014);
298 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
299 writel(tmp, mmio + 0x014);
300 }
301
1da177e4
LT
302 return 0;
303
304err_out_kfree:
305 kfree(pp);
306err_out:
307 ata_port_stop(ap);
308 return rc;
309}
310
311
312static void pdc_port_stop(struct ata_port *ap)
313{
cca3974e 314 struct device *dev = ap->host->dev;
1da177e4
LT
315 struct pdc_port_priv *pp = ap->private_data;
316
317 ap->private_data = NULL;
318 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
319 kfree(pp);
320 ata_port_stop(ap);
321}
322
323
cca3974e 324static void pdc_host_stop(struct ata_host *host)
6340f019 325{
cca3974e 326 struct pdc_host_priv *hp = host->private_data;
6340f019 327
cca3974e 328 ata_pci_host_stop(host);
6340f019
LK
329
330 kfree(hp);
331}
332
333
1da177e4
LT
334static void pdc_reset_port(struct ata_port *ap)
335{
ea6ba10b 336 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
1da177e4
LT
337 unsigned int i;
338 u32 tmp;
339
340 for (i = 11; i > 0; i--) {
341 tmp = readl(mmio);
342 if (tmp & PDC_RESET)
343 break;
344
345 udelay(100);
346
347 tmp |= PDC_RESET;
348 writel(tmp, mmio);
349 }
350
351 tmp &= ~PDC_RESET;
352 writel(tmp, mmio);
353 readl(mmio); /* flush */
354}
355
d3fb4e8d 356static void pdc_pata_cbl_detect(struct ata_port *ap)
2cba582a 357{
d3fb4e8d 358 u8 tmp;
03dc5506 359 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
d3fb4e8d
JG
360
361 tmp = readb(mmio);
362
363 if (tmp & 0x01) {
364 ap->cbl = ATA_CBL_PATA40;
365 ap->udma_mask &= ATA_UDMA_MASK_40C;
366 } else
367 ap->cbl = ATA_CBL_PATA80;
368}
2cba582a 369
d3fb4e8d
JG
370static void pdc_pata_phy_reset(struct ata_port *ap)
371{
372 pdc_pata_cbl_detect(ap);
2cba582a
JG
373 pdc_reset_port(ap);
374 ata_port_probe(ap);
375 ata_bus_reset(ap);
376}
377
1da177e4
LT
378static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
379{
380 if (sc_reg > SCR_CONTROL)
381 return 0xffffffffU;
b181d3b0 382 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
383}
384
385
386static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
387 u32 val)
388{
389 if (sc_reg > SCR_CONTROL)
390 return;
b181d3b0 391 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
392}
393
394static void pdc_qc_prep(struct ata_queued_cmd *qc)
395{
396 struct pdc_port_priv *pp = qc->ap->private_data;
397 unsigned int i;
398
399 VPRINTK("ENTER\n");
400
401 switch (qc->tf.protocol) {
402 case ATA_PROT_DMA:
403 ata_qc_prep(qc);
404 /* fall through */
405
406 case ATA_PROT_NODATA:
407 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
408 qc->dev->devno, pp->pkt);
409
410 if (qc->tf.flags & ATA_TFLAG_LBA48)
411 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
412 else
413 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
414
415 pdc_pkt_footer(&qc->tf, pp->pkt, i);
416 break;
417
418 default:
419 break;
420 }
421}
422
25b93d81
MP
423static void pdc_freeze(struct ata_port *ap)
424{
425 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
426 u32 tmp;
427
428 tmp = readl(mmio + PDC_CTLSTAT);
429 tmp |= PDC_IRQ_DISABLE;
430 tmp &= ~PDC_DMA_ENABLE;
431 writel(tmp, mmio + PDC_CTLSTAT);
432 readl(mmio + PDC_CTLSTAT); /* flush */
433}
434
435static void pdc_thaw(struct ata_port *ap)
436{
437 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
438 u32 tmp;
439
440 /* clear IRQ */
441 readl(mmio + PDC_INT_SEQMASK);
442
443 /* turn IRQ back on */
444 tmp = readl(mmio + PDC_CTLSTAT);
445 tmp &= ~PDC_IRQ_DISABLE;
446 writel(tmp, mmio + PDC_CTLSTAT);
447 readl(mmio + PDC_CTLSTAT); /* flush */
448}
449
450static void pdc_error_handler(struct ata_port *ap)
451{
452 ata_reset_fn_t hardreset;
453
454 if (!(ap->pflags & ATA_PFLAG_FROZEN))
455 pdc_reset_port(ap);
456
457 hardreset = NULL;
458 if (sata_scr_valid(ap))
459 hardreset = sata_std_hardreset;
460
461 /* perform recovery */
462 ata_do_eh(ap, ata_std_prereset, ata_std_softreset, hardreset,
463 ata_std_postreset);
464}
465
466static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
467{
468 struct ata_port *ap = qc->ap;
469
470 if (qc->flags & ATA_QCFLAG_FAILED)
471 qc->err_mask |= AC_ERR_OTHER;
472
473 /* make DMA engine forget about the failed command */
474 if (qc->err_mask)
475 pdc_reset_port(ap);
476}
477
1da177e4
LT
478static void pdc_eng_timeout(struct ata_port *ap)
479{
cca3974e 480 struct ata_host *host = ap->host;
1da177e4
LT
481 u8 drv_stat;
482 struct ata_queued_cmd *qc;
b8f6153e 483 unsigned long flags;
1da177e4
LT
484
485 DPRINTK("ENTER\n");
486
cca3974e 487 spin_lock_irqsave(&host->lock, flags);
b8f6153e 488
1da177e4 489 qc = ata_qc_from_tag(ap, ap->active_tag);
1da177e4 490
1da177e4
LT
491 switch (qc->tf.protocol) {
492 case ATA_PROT_DMA:
493 case ATA_PROT_NODATA:
f15a1daf 494 ata_port_printk(ap, KERN_ERR, "command timeout\n");
a7dac447 495 drv_stat = ata_wait_idle(ap);
a22e2eb0 496 qc->err_mask |= __ac_err_mask(drv_stat);
1da177e4
LT
497 break;
498
499 default:
500 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
501
f15a1daf
TH
502 ata_port_printk(ap, KERN_ERR,
503 "unknown timeout, cmd 0x%x stat 0x%x\n",
504 qc->tf.command, drv_stat);
1da177e4 505
a22e2eb0 506 qc->err_mask |= ac_err_mask(drv_stat);
1da177e4
LT
507 break;
508 }
509
cca3974e 510 spin_unlock_irqrestore(&host->lock, flags);
f6379020 511 ata_eh_qc_complete(qc);
1da177e4
LT
512 DPRINTK("EXIT\n");
513}
514
515static inline unsigned int pdc_host_intr( struct ata_port *ap,
516 struct ata_queued_cmd *qc)
517{
a22e2eb0 518 unsigned int handled = 0;
1da177e4 519 u32 tmp;
ea6ba10b 520 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
1da177e4
LT
521
522 tmp = readl(mmio);
523 if (tmp & PDC_ERR_MASK) {
a22e2eb0 524 qc->err_mask |= AC_ERR_DEV;
1da177e4
LT
525 pdc_reset_port(ap);
526 }
527
528 switch (qc->tf.protocol) {
529 case ATA_PROT_DMA:
530 case ATA_PROT_NODATA:
a22e2eb0
AL
531 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
532 ata_qc_complete(qc);
1da177e4
LT
533 handled = 1;
534 break;
535
536 default:
ee500aab
AL
537 ap->stats.idle_irq++;
538 break;
1da177e4
LT
539 }
540
ee500aab 541 return handled;
1da177e4
LT
542}
543
544static void pdc_irq_clear(struct ata_port *ap)
545{
cca3974e
JG
546 struct ata_host *host = ap->host;
547 void __iomem *mmio = host->mmio_base;
1da177e4
LT
548
549 readl(mmio + PDC_INT_SEQMASK);
550}
551
7d12e780 552static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
1da177e4 553{
cca3974e 554 struct ata_host *host = dev_instance;
1da177e4
LT
555 struct ata_port *ap;
556 u32 mask = 0;
557 unsigned int i, tmp;
558 unsigned int handled = 0;
ea6ba10b 559 void __iomem *mmio_base;
1da177e4
LT
560
561 VPRINTK("ENTER\n");
562
cca3974e 563 if (!host || !host->mmio_base) {
1da177e4
LT
564 VPRINTK("QUICK EXIT\n");
565 return IRQ_NONE;
566 }
567
cca3974e 568 mmio_base = host->mmio_base;
1da177e4
LT
569
570 /* reading should also clear interrupts */
571 mask = readl(mmio_base + PDC_INT_SEQMASK);
572
573 if (mask == 0xffffffff) {
574 VPRINTK("QUICK EXIT 2\n");
575 return IRQ_NONE;
576 }
6340f019 577
cca3974e 578 spin_lock(&host->lock);
6340f019 579
1da177e4
LT
580 mask &= 0xffff; /* only 16 tags possible */
581 if (!mask) {
582 VPRINTK("QUICK EXIT 3\n");
6340f019 583 goto done_irq;
1da177e4
LT
584 }
585
1da177e4
LT
586 writel(mask, mmio_base + PDC_INT_SEQMASK);
587
cca3974e 588 for (i = 0; i < host->n_ports; i++) {
1da177e4 589 VPRINTK("port %u\n", i);
cca3974e 590 ap = host->ports[i];
1da177e4 591 tmp = mask & (1 << (i + 1));
c1389503 592 if (tmp && ap &&
029f5468 593 !(ap->flags & ATA_FLAG_DISABLED)) {
1da177e4
LT
594 struct ata_queued_cmd *qc;
595
596 qc = ata_qc_from_tag(ap, ap->active_tag);
e50362ec 597 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
1da177e4
LT
598 handled += pdc_host_intr(ap, qc);
599 }
600 }
601
1da177e4
LT
602 VPRINTK("EXIT\n");
603
6340f019 604done_irq:
cca3974e 605 spin_unlock(&host->lock);
1da177e4
LT
606 return IRQ_RETVAL(handled);
607}
608
609static inline void pdc_packet_start(struct ata_queued_cmd *qc)
610{
611 struct ata_port *ap = qc->ap;
612 struct pdc_port_priv *pp = ap->private_data;
613 unsigned int port_no = ap->port_no;
614 u8 seq = (u8) (port_no + 1);
615
616 VPRINTK("ENTER, ap %p\n", ap);
617
cca3974e
JG
618 writel(0x00000001, ap->host->mmio_base + (seq * 4));
619 readl(ap->host->mmio_base + (seq * 4)); /* flush */
1da177e4
LT
620
621 pp->pkt[2] = seq;
622 wmb(); /* flush PRD, pkt writes */
b181d3b0
AV
623 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
624 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
1da177e4
LT
625}
626
9a3d9eb0 627static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
1da177e4
LT
628{
629 switch (qc->tf.protocol) {
630 case ATA_PROT_DMA:
631 case ATA_PROT_NODATA:
632 pdc_packet_start(qc);
633 return 0;
634
635 case ATA_PROT_ATAPI_DMA:
636 BUG();
637 break;
638
639 default:
640 break;
641 }
642
643 return ata_qc_issue_prot(qc);
644}
645
057ace5e 646static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
647{
648 WARN_ON (tf->protocol == ATA_PROT_DMA ||
649 tf->protocol == ATA_PROT_NODATA);
650 ata_tf_load(ap, tf);
651}
652
653
057ace5e 654static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
655{
656 WARN_ON (tf->protocol == ATA_PROT_DMA ||
657 tf->protocol == ATA_PROT_NODATA);
658 ata_exec_command(ap, tf);
659}
660
661
662static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
663{
664 port->cmd_addr = base;
665 port->data_addr = base;
666 port->feature_addr =
667 port->error_addr = base + 0x4;
668 port->nsect_addr = base + 0x8;
669 port->lbal_addr = base + 0xc;
670 port->lbam_addr = base + 0x10;
671 port->lbah_addr = base + 0x14;
672 port->device_addr = base + 0x18;
673 port->command_addr =
674 port->status_addr = base + 0x1c;
675 port->altstatus_addr =
676 port->ctl_addr = base + 0x38;
677}
678
679
680static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
681{
ea6ba10b 682 void __iomem *mmio = pe->mmio_base;
6340f019 683 struct pdc_host_priv *hp = pe->private_data;
d324d462 684 int hotplug_offset;
1da177e4
LT
685 u32 tmp;
686
d324d462
MP
687 if (hp->flags & PDC_FLAG_GEN_II)
688 hotplug_offset = PDC2_SATA_PLUG_CSR;
689 else
690 hotplug_offset = PDC_SATA_PLUG_CSR;
691
1da177e4
LT
692 /*
693 * Except for the hotplug stuff, this is voodoo from the
694 * Promise driver. Label this entire section
695 * "TODO: figure out why we do this"
696 */
697
b2d1eee1 698 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
1da177e4 699 tmp = readl(mmio + PDC_FLASH_CTL);
b2d1eee1
MP
700 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
701 if (!(hp->flags & PDC_FLAG_GEN_II))
702 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
1da177e4
LT
703 writel(tmp, mmio + PDC_FLASH_CTL);
704
705 /* clear plug/unplug flags for all ports */
6340f019
LK
706 tmp = readl(mmio + hotplug_offset);
707 writel(tmp | 0xff, mmio + hotplug_offset);
1da177e4
LT
708
709 /* mask plug/unplug ints */
6340f019
LK
710 tmp = readl(mmio + hotplug_offset);
711 writel(tmp | 0xff0000, mmio + hotplug_offset);
1da177e4 712
b2d1eee1
MP
713 /* don't initialise TBG or SLEW on 2nd generation chips */
714 if (hp->flags & PDC_FLAG_GEN_II)
715 return;
716
1da177e4
LT
717 /* reduce TBG clock to 133 Mhz. */
718 tmp = readl(mmio + PDC_TBG_MODE);
719 tmp &= ~0x30000; /* clear bit 17, 16*/
720 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
721 writel(tmp, mmio + PDC_TBG_MODE);
722
723 readl(mmio + PDC_TBG_MODE); /* flush */
724 msleep(10);
725
726 /* adjust slew rate control register. */
727 tmp = readl(mmio + PDC_SLEW_CTL);
728 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
729 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
730 writel(tmp, mmio + PDC_SLEW_CTL);
731}
732
733static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
734{
735 static int printed_version;
736 struct ata_probe_ent *probe_ent = NULL;
6340f019 737 struct pdc_host_priv *hp;
1da177e4 738 unsigned long base;
ea6ba10b 739 void __iomem *mmio_base;
1da177e4
LT
740 unsigned int board_idx = (unsigned int) ent->driver_data;
741 int pci_dev_busy = 0;
742 int rc;
743
744 if (!printed_version++)
a9524a76 745 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
1da177e4 746
1da177e4
LT
747 rc = pci_enable_device(pdev);
748 if (rc)
749 return rc;
750
751 rc = pci_request_regions(pdev, DRV_NAME);
752 if (rc) {
753 pci_dev_busy = 1;
754 goto err_out;
755 }
756
757 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
758 if (rc)
759 goto err_out_regions;
760 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
761 if (rc)
762 goto err_out_regions;
763
6340f019 764 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
1da177e4
LT
765 if (probe_ent == NULL) {
766 rc = -ENOMEM;
767 goto err_out_regions;
768 }
769
1da177e4
LT
770 probe_ent->dev = pci_dev_to_dev(pdev);
771 INIT_LIST_HEAD(&probe_ent->node);
772
374b1873 773 mmio_base = pci_iomap(pdev, 3, 0);
1da177e4
LT
774 if (mmio_base == NULL) {
775 rc = -ENOMEM;
776 goto err_out_free_ent;
777 }
778 base = (unsigned long) mmio_base;
779
6340f019
LK
780 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
781 if (hp == NULL) {
782 rc = -ENOMEM;
783 goto err_out_free_ent;
784 }
785
6340f019
LK
786 probe_ent->private_data = hp;
787
1da177e4 788 probe_ent->sht = pdc_port_info[board_idx].sht;
cca3974e 789 probe_ent->port_flags = pdc_port_info[board_idx].flags;
1da177e4
LT
790 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
791 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
792 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
793 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
794
795 probe_ent->irq = pdev->irq;
1d6f359a 796 probe_ent->irq_flags = IRQF_SHARED;
1da177e4
LT
797 probe_ent->mmio_base = mmio_base;
798
799 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
800 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
801
802 probe_ent->port[0].scr_addr = base + 0x400;
803 probe_ent->port[1].scr_addr = base + 0x500;
804
805 /* notice 4-port boards */
806 switch (board_idx) {
6340f019 807 case board_40518:
b2d1eee1 808 hp->flags |= PDC_FLAG_GEN_II;
6340f019 809 /* Fall through */
1da177e4
LT
810 case board_20319:
811 probe_ent->n_ports = 4;
812
813 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
814 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
815
816 probe_ent->port[2].scr_addr = base + 0x600;
817 probe_ent->port[3].scr_addr = base + 0x700;
818 break;
6340f019 819 case board_2057x:
b2d1eee1 820 hp->flags |= PDC_FLAG_GEN_II;
6340f019 821 /* Fall through */
1da177e4 822 case board_2037x:
6c9e5eb5 823 probe_ent->n_ports = 2;
1da177e4 824 break;
f497ba73
TL
825 case board_20619:
826 probe_ent->n_ports = 4;
827
828 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
829 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
830
831 probe_ent->port[2].scr_addr = base + 0x600;
832 probe_ent->port[3].scr_addr = base + 0x700;
6c9e5eb5 833 break;
1da177e4
LT
834 default:
835 BUG();
836 break;
837 }
838
839 pci_set_master(pdev);
840
841 /* initialize adapter */
842 pdc_host_init(board_idx, probe_ent);
843
6340f019
LK
844 /* FIXME: Need any other frees than hp? */
845 if (!ata_device_add(probe_ent))
846 kfree(hp);
847
1da177e4
LT
848 kfree(probe_ent);
849
850 return 0;
851
852err_out_free_ent:
853 kfree(probe_ent);
854err_out_regions:
855 pci_release_regions(pdev);
856err_out:
857 if (!pci_dev_busy)
858 pci_disable_device(pdev);
859 return rc;
860}
861
862
863static int __init pdc_ata_init(void)
864{
b7887196 865 return pci_register_driver(&pdc_ata_pci_driver);
1da177e4
LT
866}
867
868
869static void __exit pdc_ata_exit(void)
870{
871 pci_unregister_driver(&pdc_ata_pci_driver);
872}
873
874
875MODULE_AUTHOR("Jeff Garzik");
f497ba73 876MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
1da177e4
LT
877MODULE_LICENSE("GPL");
878MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
879MODULE_VERSION(DRV_VERSION);
880
881module_init(pdc_ata_init);
882module_exit(pdc_ata_exit);