blob: 6f7bc5b0ef4a88cee42a651483e1feb080033236 [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 Garzik46b027c2006-11-14 14:46:17 -050049#define DRV_VERSION "1.05"
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 PDC_FLASH_CTL = 0x44, /* Flash control register */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 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 */
Luke Kosewski6340f012006-01-28 12:39:29 -050059 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +010060 PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */
61 PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
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 */
Mikael Petterssond324d4622006-12-06 09:55:43 +010069 board_2057x = 3, /* SATAII150 Tx2plus */
70 board_40518 = 4, /* SATAII150 Tx4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Luke Kosewski6340f012006-01-28 12:39:29 -050072 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -050075
76 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
Jeff Garzik3d0a59c2005-12-13 22:28:19 -050077 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
78 ATA_FLAG_PIO_POLLING,
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +010079
80 /* hp->flags bits */
81 PDC_FLAG_GEN_II = (1 << 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
84
85struct pdc_port_priv {
86 u8 *pkt;
87 dma_addr_t pkt_dma;
88};
89
Luke Kosewski6340f012006-01-28 12:39:29 -050090struct pdc_host_priv {
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +010091 unsigned long flags;
Luke Kosewski6340f012006-01-28 12:39:29 -050092};
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
95static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
96static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
David Howells7d12e782006-10-05 14:55:46 +010097static irqreturn_t pdc_interrupt (int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static void pdc_eng_timeout(struct ata_port *ap);
99static int pdc_port_start(struct ata_port *ap);
100static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400101static void pdc_pata_phy_reset(struct ata_port *ap);
102static void pdc_sata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -0400104static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
105static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static void pdc_irq_clear(struct ata_port *ap);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900107static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
Jeff Garzikcca39742006-08-24 03:19:22 -0400108static void pdc_host_stop(struct ata_host *host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Jeff Garzik374b1872005-08-30 05:42:52 -0400110
Jeff Garzik193515d2005-11-07 00:59:37 -0500111static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .module = THIS_MODULE,
113 .name = DRV_NAME,
114 .ioctl = ata_scsi_ioctl,
115 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .can_queue = ATA_DEF_QUEUE,
117 .this_id = ATA_SHT_THIS_ID,
118 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
120 .emulated = ATA_SHT_EMULATED,
121 .use_clustering = ATA_SHT_USE_CLUSTERING,
122 .proc_name = DRV_NAME,
123 .dma_boundary = ATA_DMA_BOUNDARY,
124 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900125 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
Jeff Garzik057ace52005-10-22 14:27:05 -0400129static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 .port_disable = ata_port_disable,
131 .tf_load = pdc_tf_load_mmio,
132 .tf_read = ata_tf_read,
133 .check_status = ata_check_status,
134 .exec_command = pdc_exec_command_mmio,
135 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400136
137 .phy_reset = pdc_sata_phy_reset,
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .qc_prep = pdc_qc_prep,
140 .qc_issue = pdc_qc_issue_prot,
141 .eng_timeout = pdc_eng_timeout,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100142 .data_xfer = ata_mmio_data_xfer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .irq_handler = pdc_interrupt,
144 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .scr_read = pdc_sata_scr_read,
147 .scr_write = pdc_sata_scr_write,
148 .port_start = pdc_port_start,
149 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500150 .host_stop = pdc_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
Jeff Garzik057ace52005-10-22 14:27:05 -0400153static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400154 .port_disable = ata_port_disable,
155 .tf_load = pdc_tf_load_mmio,
156 .tf_read = ata_tf_read,
157 .check_status = ata_check_status,
158 .exec_command = pdc_exec_command_mmio,
159 .dev_select = ata_std_dev_select,
160
161 .phy_reset = pdc_pata_phy_reset,
162
163 .qc_prep = pdc_qc_prep,
164 .qc_issue = pdc_qc_issue_prot,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100165 .data_xfer = ata_mmio_data_xfer,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400166 .eng_timeout = pdc_eng_timeout,
167 .irq_handler = pdc_interrupt,
168 .irq_clear = pdc_irq_clear,
169
170 .port_start = pdc_port_start,
171 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500172 .host_stop = pdc_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400173};
174
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100175static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* board_2037x */
177 {
178 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400179 .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 },
185
186 /* board_20319 */
187 {
188 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400189 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .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_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400195
196 /* board_20619 */
197 {
198 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400199 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400200 .pio_mask = 0x1f, /* pio0-4 */
201 .mwdma_mask = 0x07, /* mwdma0-2 */
202 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400203 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400204 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500205
Luke Kosewski6340f012006-01-28 12:39:29 -0500206 /* board_2057x */
207 {
208 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400209 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Luke Kosewski6340f012006-01-28 12:39:29 -0500210 .pio_mask = 0x1f, /* pio0-4 */
211 .mwdma_mask = 0x07, /* mwdma0-2 */
212 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
213 .port_ops = &pdc_sata_ops,
214 },
215
216 /* board_40518 */
217 {
218 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400219 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Luke Kosewski6340f012006-01-28 12:39:29 -0500220 .pio_mask = 0x1f, /* pio0-4 */
221 .mwdma_mask = 0x07, /* mwdma0-2 */
222 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
223 .port_ops = &pdc_sata_ops,
224 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225};
226
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500227static const struct pci_device_id pdc_ata_pci_tbl[] = {
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400228 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400229 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
230 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
231 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100232 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
233 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400234 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
Mikael Petterssond324d4622006-12-06 09:55:43 +0100235 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100236 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400237 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400239 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
240 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
241 { PCI_VDEVICE(PROMISE, 0x3515), board_20319 },
242 { PCI_VDEVICE(PROMISE, 0x3519), board_20319 },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100243 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400244 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400246 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 { } /* terminate list */
249};
250
251
252static struct pci_driver pdc_ata_pci_driver = {
253 .name = DRV_NAME,
254 .id_table = pdc_ata_pci_tbl,
255 .probe = pdc_ata_init_one,
256 .remove = ata_pci_remove_one,
257};
258
259
260static int pdc_port_start(struct ata_port *ap)
261{
Jeff Garzikcca39742006-08-24 03:19:22 -0400262 struct device *dev = ap->host->dev;
Mikael Pettersson599b7202006-12-01 10:55:58 +0100263 struct pdc_host_priv *hp = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct pdc_port_priv *pp;
265 int rc;
266
267 rc = ata_port_start(ap);
268 if (rc)
269 return rc;
270
Luke Kosewski6340f012006-01-28 12:39:29 -0500271 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (!pp) {
273 rc = -ENOMEM;
274 goto err_out;
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
278 if (!pp->pkt) {
279 rc = -ENOMEM;
280 goto err_out_kfree;
281 }
282
283 ap->private_data = pp;
284
Mikael Pettersson599b7202006-12-01 10:55:58 +0100285 /* fix up PHYMODE4 align timing */
286 if ((hp->flags & PDC_FLAG_GEN_II) && sata_scr_valid(ap)) {
287 void __iomem *mmio = (void __iomem *) ap->ioaddr.scr_addr;
288 unsigned int tmp;
289
290 tmp = readl(mmio + 0x014);
291 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
292 writel(tmp, mmio + 0x014);
293 }
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0;
296
297err_out_kfree:
298 kfree(pp);
299err_out:
300 ata_port_stop(ap);
301 return rc;
302}
303
304
305static void pdc_port_stop(struct ata_port *ap)
306{
Jeff Garzikcca39742006-08-24 03:19:22 -0400307 struct device *dev = ap->host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct pdc_port_priv *pp = ap->private_data;
309
310 ap->private_data = NULL;
311 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
312 kfree(pp);
313 ata_port_stop(ap);
314}
315
316
Jeff Garzikcca39742006-08-24 03:19:22 -0400317static void pdc_host_stop(struct ata_host *host)
Luke Kosewski6340f012006-01-28 12:39:29 -0500318{
Jeff Garzikcca39742006-08-24 03:19:22 -0400319 struct pdc_host_priv *hp = host->private_data;
Luke Kosewski6340f012006-01-28 12:39:29 -0500320
Jeff Garzikcca39742006-08-24 03:19:22 -0400321 ata_pci_host_stop(host);
Luke Kosewski6340f012006-01-28 12:39:29 -0500322
323 kfree(hp);
324}
325
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static void pdc_reset_port(struct ata_port *ap)
328{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400329 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 unsigned int i;
331 u32 tmp;
332
333 for (i = 11; i > 0; i--) {
334 tmp = readl(mmio);
335 if (tmp & PDC_RESET)
336 break;
337
338 udelay(100);
339
340 tmp |= PDC_RESET;
341 writel(tmp, mmio);
342 }
343
344 tmp &= ~PDC_RESET;
345 writel(tmp, mmio);
346 readl(mmio); /* flush */
347}
348
Jeff Garzik2cba5822005-08-29 05:12:30 -0400349static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 pdc_reset_port(ap);
352 sata_phy_reset(ap);
353}
354
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400355static void pdc_pata_cbl_detect(struct ata_port *ap)
356{
357 u8 tmp;
Al Viro03dc5502006-10-10 22:48:07 +0100358 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400359
360 tmp = readb(mmio);
361
362 if (tmp & 0x01) {
363 ap->cbl = ATA_CBL_PATA40;
364 ap->udma_mask &= ATA_UDMA_MASK_40C;
365 } else
366 ap->cbl = ATA_CBL_PATA80;
367}
368
Jeff Garzik2cba5822005-08-29 05:12:30 -0400369static void pdc_pata_phy_reset(struct ata_port *ap)
370{
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400371 pdc_pata_cbl_detect(ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400372 pdc_reset_port(ap);
373 ata_port_probe(ap);
374 ata_bus_reset(ap);
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
378{
379 if (sc_reg > SCR_CONTROL)
380 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100381 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384
385static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
386 u32 val)
387{
388 if (sc_reg > SCR_CONTROL)
389 return;
Al Virob181d3b2005-10-21 06:46:02 +0100390 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393static void pdc_qc_prep(struct ata_queued_cmd *qc)
394{
395 struct pdc_port_priv *pp = qc->ap->private_data;
396 unsigned int i;
397
398 VPRINTK("ENTER\n");
399
400 switch (qc->tf.protocol) {
401 case ATA_PROT_DMA:
402 ata_qc_prep(qc);
403 /* fall through */
404
405 case ATA_PROT_NODATA:
406 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
407 qc->dev->devno, pp->pkt);
408
409 if (qc->tf.flags & ATA_TFLAG_LBA48)
410 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
411 else
412 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
413
414 pdc_pkt_footer(&qc->tf, pp->pkt, i);
415 break;
416
417 default:
418 break;
419 }
420}
421
422static void pdc_eng_timeout(struct ata_port *ap)
423{
Jeff Garzikcca39742006-08-24 03:19:22 -0400424 struct ata_host *host = ap->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 u8 drv_stat;
426 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400427 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 DPRINTK("ENTER\n");
430
Jeff Garzikcca39742006-08-24 03:19:22 -0400431 spin_lock_irqsave(&host->lock, flags);
Jeff Garzikb8f61532005-08-25 22:01:20 -0400432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 qc = ata_qc_from_tag(ap, ap->active_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 switch (qc->tf.protocol) {
436 case ATA_PROT_DMA:
437 case ATA_PROT_NODATA:
Tejun Heof15a1da2006-05-15 20:57:56 +0900438 ata_port_printk(ap, KERN_ERR, "command timeout\n");
Jeff Garzika7dac442005-10-30 04:44:42 -0500439 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800440 qc->err_mask |= __ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 break;
442
443 default:
444 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
445
Tejun Heof15a1da2006-05-15 20:57:56 +0900446 ata_port_printk(ap, KERN_ERR,
447 "unknown timeout, cmd 0x%x stat 0x%x\n",
448 qc->tf.command, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Albert Leea22e2eb2005-12-05 15:38:02 +0800450 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 }
453
Jeff Garzikcca39742006-08-24 03:19:22 -0400454 spin_unlock_irqrestore(&host->lock, flags);
Tejun Heof6379022006-02-10 15:10:48 +0900455 ata_eh_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 DPRINTK("EXIT\n");
457}
458
459static inline unsigned int pdc_host_intr( struct ata_port *ap,
460 struct ata_queued_cmd *qc)
461{
Albert Leea22e2eb2005-12-05 15:38:02 +0800462 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400464 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 tmp = readl(mmio);
467 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800468 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 pdc_reset_port(ap);
470 }
471
472 switch (qc->tf.protocol) {
473 case ATA_PROT_DMA:
474 case ATA_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800475 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
476 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 handled = 1;
478 break;
479
480 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800481 ap->stats.idle_irq++;
482 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
Albert Leeee500aa2005-09-27 17:34:38 +0800485 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
488static void pdc_irq_clear(struct ata_port *ap)
489{
Jeff Garzikcca39742006-08-24 03:19:22 -0400490 struct ata_host *host = ap->host;
491 void __iomem *mmio = host->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 readl(mmio + PDC_INT_SEQMASK);
494}
495
David Howells7d12e782006-10-05 14:55:46 +0100496static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Jeff Garzikcca39742006-08-24 03:19:22 -0400498 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct ata_port *ap;
500 u32 mask = 0;
501 unsigned int i, tmp;
502 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400503 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 VPRINTK("ENTER\n");
506
Jeff Garzikcca39742006-08-24 03:19:22 -0400507 if (!host || !host->mmio_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 VPRINTK("QUICK EXIT\n");
509 return IRQ_NONE;
510 }
511
Jeff Garzikcca39742006-08-24 03:19:22 -0400512 mmio_base = host->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 /* reading should also clear interrupts */
515 mask = readl(mmio_base + PDC_INT_SEQMASK);
516
517 if (mask == 0xffffffff) {
518 VPRINTK("QUICK EXIT 2\n");
519 return IRQ_NONE;
520 }
Luke Kosewski6340f012006-01-28 12:39:29 -0500521
Jeff Garzikcca39742006-08-24 03:19:22 -0400522 spin_lock(&host->lock);
Luke Kosewski6340f012006-01-28 12:39:29 -0500523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 mask &= 0xffff; /* only 16 tags possible */
525 if (!mask) {
526 VPRINTK("QUICK EXIT 3\n");
Luke Kosewski6340f012006-01-28 12:39:29 -0500527 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 writel(mask, mmio_base + PDC_INT_SEQMASK);
531
Jeff Garzikcca39742006-08-24 03:19:22 -0400532 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 VPRINTK("port %u\n", i);
Jeff Garzikcca39742006-08-24 03:19:22 -0400534 ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900536 if (tmp && ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400537 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct ata_queued_cmd *qc;
539
540 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800541 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 handled += pdc_host_intr(ap, qc);
543 }
544 }
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 VPRINTK("EXIT\n");
547
Luke Kosewski6340f012006-01-28 12:39:29 -0500548done_irq:
Jeff Garzikcca39742006-08-24 03:19:22 -0400549 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return IRQ_RETVAL(handled);
551}
552
553static inline void pdc_packet_start(struct ata_queued_cmd *qc)
554{
555 struct ata_port *ap = qc->ap;
556 struct pdc_port_priv *pp = ap->private_data;
557 unsigned int port_no = ap->port_no;
558 u8 seq = (u8) (port_no + 1);
559
560 VPRINTK("ENTER, ap %p\n", ap);
561
Jeff Garzikcca39742006-08-24 03:19:22 -0400562 writel(0x00000001, ap->host->mmio_base + (seq * 4));
563 readl(ap->host->mmio_base + (seq * 4)); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 pp->pkt[2] = seq;
566 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100567 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
568 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900571static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 switch (qc->tf.protocol) {
574 case ATA_PROT_DMA:
575 case ATA_PROT_NODATA:
576 pdc_packet_start(qc);
577 return 0;
578
579 case ATA_PROT_ATAPI_DMA:
580 BUG();
581 break;
582
583 default:
584 break;
585 }
586
587 return ata_qc_issue_prot(qc);
588}
589
Jeff Garzik057ace52005-10-22 14:27:05 -0400590static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592 WARN_ON (tf->protocol == ATA_PROT_DMA ||
593 tf->protocol == ATA_PROT_NODATA);
594 ata_tf_load(ap, tf);
595}
596
597
Jeff Garzik057ace52005-10-22 14:27:05 -0400598static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 WARN_ON (tf->protocol == ATA_PROT_DMA ||
601 tf->protocol == ATA_PROT_NODATA);
602 ata_exec_command(ap, tf);
603}
604
605
606static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
607{
608 port->cmd_addr = base;
609 port->data_addr = base;
610 port->feature_addr =
611 port->error_addr = base + 0x4;
612 port->nsect_addr = base + 0x8;
613 port->lbal_addr = base + 0xc;
614 port->lbam_addr = base + 0x10;
615 port->lbah_addr = base + 0x14;
616 port->device_addr = base + 0x18;
617 port->command_addr =
618 port->status_addr = base + 0x1c;
619 port->altstatus_addr =
620 port->ctl_addr = base + 0x38;
621}
622
623
624static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
625{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400626 void __iomem *mmio = pe->mmio_base;
Luke Kosewski6340f012006-01-28 12:39:29 -0500627 struct pdc_host_priv *hp = pe->private_data;
Mikael Petterssond324d4622006-12-06 09:55:43 +0100628 int hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 u32 tmp;
630
Mikael Petterssond324d4622006-12-06 09:55:43 +0100631 if (hp->flags & PDC_FLAG_GEN_II)
632 hotplug_offset = PDC2_SATA_PLUG_CSR;
633 else
634 hotplug_offset = PDC_SATA_PLUG_CSR;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /*
637 * Except for the hotplug stuff, this is voodoo from the
638 * Promise driver. Label this entire section
639 * "TODO: figure out why we do this"
640 */
641
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100642 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 tmp = readl(mmio + PDC_FLASH_CTL);
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100644 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
645 if (!(hp->flags & PDC_FLAG_GEN_II))
646 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 writel(tmp, mmio + PDC_FLASH_CTL);
648
649 /* clear plug/unplug flags for all ports */
Luke Kosewski6340f012006-01-28 12:39:29 -0500650 tmp = readl(mmio + hotplug_offset);
651 writel(tmp | 0xff, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* mask plug/unplug ints */
Luke Kosewski6340f012006-01-28 12:39:29 -0500654 tmp = readl(mmio + hotplug_offset);
655 writel(tmp | 0xff0000, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100657 /* don't initialise TBG or SLEW on 2nd generation chips */
658 if (hp->flags & PDC_FLAG_GEN_II)
659 return;
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /* reduce TBG clock to 133 Mhz. */
662 tmp = readl(mmio + PDC_TBG_MODE);
663 tmp &= ~0x30000; /* clear bit 17, 16*/
664 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
665 writel(tmp, mmio + PDC_TBG_MODE);
666
667 readl(mmio + PDC_TBG_MODE); /* flush */
668 msleep(10);
669
670 /* adjust slew rate control register. */
671 tmp = readl(mmio + PDC_SLEW_CTL);
672 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
673 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
674 writel(tmp, mmio + PDC_SLEW_CTL);
675}
676
677static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
678{
679 static int printed_version;
680 struct ata_probe_ent *probe_ent = NULL;
Luke Kosewski6340f012006-01-28 12:39:29 -0500681 struct pdc_host_priv *hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400683 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 unsigned int board_idx = (unsigned int) ent->driver_data;
685 int pci_dev_busy = 0;
686 int rc;
687
688 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500689 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 rc = pci_enable_device(pdev);
692 if (rc)
693 return rc;
694
695 rc = pci_request_regions(pdev, DRV_NAME);
696 if (rc) {
697 pci_dev_busy = 1;
698 goto err_out;
699 }
700
701 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
702 if (rc)
703 goto err_out_regions;
704 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
705 if (rc)
706 goto err_out_regions;
707
Luke Kosewski6340f012006-01-28 12:39:29 -0500708 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (probe_ent == NULL) {
710 rc = -ENOMEM;
711 goto err_out_regions;
712 }
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 probe_ent->dev = pci_dev_to_dev(pdev);
715 INIT_LIST_HEAD(&probe_ent->node);
716
Jeff Garzik374b1872005-08-30 05:42:52 -0400717 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (mmio_base == NULL) {
719 rc = -ENOMEM;
720 goto err_out_free_ent;
721 }
722 base = (unsigned long) mmio_base;
723
Luke Kosewski6340f012006-01-28 12:39:29 -0500724 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
725 if (hp == NULL) {
726 rc = -ENOMEM;
727 goto err_out_free_ent;
728 }
729
Luke Kosewski6340f012006-01-28 12:39:29 -0500730 probe_ent->private_data = hp;
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 probe_ent->sht = pdc_port_info[board_idx].sht;
Jeff Garzikcca39742006-08-24 03:19:22 -0400733 probe_ent->port_flags = pdc_port_info[board_idx].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
735 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
736 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
737 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
738
739 probe_ent->irq = pdev->irq;
Thomas Gleixner1d6f3592006-07-01 19:29:42 -0700740 probe_ent->irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 probe_ent->mmio_base = mmio_base;
742
743 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
744 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
745
746 probe_ent->port[0].scr_addr = base + 0x400;
747 probe_ent->port[1].scr_addr = base + 0x500;
748
749 /* notice 4-port boards */
750 switch (board_idx) {
Luke Kosewski6340f012006-01-28 12:39:29 -0500751 case board_40518:
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100752 hp->flags |= PDC_FLAG_GEN_II;
Luke Kosewski6340f012006-01-28 12:39:29 -0500753 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 case board_20319:
755 probe_ent->n_ports = 4;
756
757 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
758 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
759
760 probe_ent->port[2].scr_addr = base + 0x600;
761 probe_ent->port[3].scr_addr = base + 0x700;
762 break;
Luke Kosewski6340f012006-01-28 12:39:29 -0500763 case board_2057x:
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100764 hp->flags |= PDC_FLAG_GEN_II;
Luke Kosewski6340f012006-01-28 12:39:29 -0500765 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500767 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400769 case board_20619:
770 probe_ent->n_ports = 4;
771
772 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
773 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
774
775 probe_ent->port[2].scr_addr = base + 0x600;
776 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 default:
779 BUG();
780 break;
781 }
782
783 pci_set_master(pdev);
784
785 /* initialize adapter */
786 pdc_host_init(board_idx, probe_ent);
787
Luke Kosewski6340f012006-01-28 12:39:29 -0500788 /* FIXME: Need any other frees than hp? */
789 if (!ata_device_add(probe_ent))
790 kfree(hp);
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 kfree(probe_ent);
793
794 return 0;
795
796err_out_free_ent:
797 kfree(probe_ent);
798err_out_regions:
799 pci_release_regions(pdev);
800err_out:
801 if (!pci_dev_busy)
802 pci_disable_device(pdev);
803 return rc;
804}
805
806
807static int __init pdc_ata_init(void)
808{
Pavel Roskinb7887192006-08-10 18:13:18 +0900809 return pci_register_driver(&pdc_ata_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
812
813static void __exit pdc_ata_exit(void)
814{
815 pci_unregister_driver(&pdc_ata_pci_driver);
816}
817
818
819MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400820MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821MODULE_LICENSE("GPL");
822MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
823MODULE_VERSION(DRV_VERSION);
824
825module_init(pdc_ata_init);
826module_exit(pdc_ata_exit);