blob: e9d61bc2b24730bd9595406f00c6a0d6aeae130f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sata_promise.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * Hardware information only available under NDA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/pci.h>
36#include <linux/init.h>
37#include <linux/blkdev.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
40#include <linux/sched.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050041#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050043#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/libata.h>
45#include <asm/io.h>
46#include "sata_promise.h"
47
48#define DRV_NAME "sata_promise"
Luke Kosewski6340f012006-01-28 12:39:29 -050049#define DRV_VERSION "1.04"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51
52enum {
53 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
54 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
55 PDC_TBG_MODE = 0x41, /* TBG mode */
56 PDC_FLASH_CTL = 0x44, /* Flash control register */
57 PDC_PCI_CTL = 0x48, /* PCI control and status register */
58 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
59 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
60 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
Luke Kosewski6340f012006-01-28 12:39:29 -050061 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 PDC_SLEW_CTL = 0x470, /* slew rate control reg */
63
64 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
65 (1<<8) | (1<<9) | (1<<10),
66
67 board_2037x = 0, /* FastTrak S150 TX2plus */
68 board_20319 = 1, /* FastTrak S150 TX4 */
Tobias Lorenzf497ba72005-05-12 15:51:01 -040069 board_20619 = 2, /* FastTrak TX4000 */
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -050070 board_20771 = 3, /* FastTrak TX2300 */
Luke Kosewski6340f012006-01-28 12:39:29 -050071 board_2057x = 4, /* SATAII150 Tx2plus */
72 board_40518 = 5, /* SATAII150 Tx4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Luke Kosewski6340f012006-01-28 12:39:29 -050074 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -050077
78 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
79 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
82
83struct pdc_port_priv {
84 u8 *pkt;
85 dma_addr_t pkt_dma;
86};
87
Luke Kosewski6340f012006-01-28 12:39:29 -050088struct pdc_host_priv {
89 int hotplug_offset;
90};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
93static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
94static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
95static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
96static void pdc_eng_timeout(struct ata_port *ap);
97static int pdc_port_start(struct ata_port *ap);
98static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -040099static void pdc_pata_phy_reset(struct ata_port *ap);
100static void pdc_sata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -0400102static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
103static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static void pdc_irq_clear(struct ata_port *ap);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900105static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
Luke Kosewski6340f012006-01-28 12:39:29 -0500106static void pdc_host_stop(struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Jeff Garzik374b1872005-08-30 05:42:52 -0400108
Jeff Garzik193515d2005-11-07 00:59:37 -0500109static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 .module = THIS_MODULE,
111 .name = DRV_NAME,
112 .ioctl = ata_scsi_ioctl,
113 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .can_queue = ATA_DEF_QUEUE,
115 .this_id = ATA_SHT_THIS_ID,
116 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
118 .emulated = ATA_SHT_EMULATED,
119 .use_clustering = ATA_SHT_USE_CLUSTERING,
120 .proc_name = DRV_NAME,
121 .dma_boundary = ATA_DMA_BOUNDARY,
122 .slave_configure = ata_scsi_slave_config,
123 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
Jeff Garzik057ace52005-10-22 14:27:05 -0400126static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .port_disable = ata_port_disable,
128 .tf_load = pdc_tf_load_mmio,
129 .tf_read = ata_tf_read,
130 .check_status = ata_check_status,
131 .exec_command = pdc_exec_command_mmio,
132 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400133
134 .phy_reset = pdc_sata_phy_reset,
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .qc_prep = pdc_qc_prep,
137 .qc_issue = pdc_qc_issue_prot,
138 .eng_timeout = pdc_eng_timeout,
139 .irq_handler = pdc_interrupt,
140 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .scr_read = pdc_sata_scr_read,
143 .scr_write = pdc_sata_scr_write,
144 .port_start = pdc_port_start,
145 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500146 .host_stop = pdc_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Jeff Garzik057ace52005-10-22 14:27:05 -0400149static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400150 .port_disable = ata_port_disable,
151 .tf_load = pdc_tf_load_mmio,
152 .tf_read = ata_tf_read,
153 .check_status = ata_check_status,
154 .exec_command = pdc_exec_command_mmio,
155 .dev_select = ata_std_dev_select,
156
157 .phy_reset = pdc_pata_phy_reset,
158
159 .qc_prep = pdc_qc_prep,
160 .qc_issue = pdc_qc_issue_prot,
161 .eng_timeout = pdc_eng_timeout,
162 .irq_handler = pdc_interrupt,
163 .irq_clear = pdc_irq_clear,
164
165 .port_start = pdc_port_start,
166 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500167 .host_stop = pdc_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400168};
169
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100170static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 /* board_2037x */
172 {
173 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500174 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 .pio_mask = 0x1f, /* pio0-4 */
176 .mwdma_mask = 0x07, /* mwdma0-2 */
177 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400178 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 },
180
181 /* board_20319 */
182 {
183 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500184 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .pio_mask = 0x1f, /* pio0-4 */
186 .mwdma_mask = 0x07, /* mwdma0-2 */
187 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400188 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400190
191 /* board_20619 */
192 {
193 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500194 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400195 .pio_mask = 0x1f, /* pio0-4 */
196 .mwdma_mask = 0x07, /* mwdma0-2 */
197 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400198 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400199 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500200
201 /* board_20771 */
202 {
203 .sht = &pdc_ata_sht,
204 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
205 .pio_mask = 0x1f, /* pio0-4 */
206 .mwdma_mask = 0x07, /* mwdma0-2 */
207 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
208 .port_ops = &pdc_sata_ops,
209 },
Luke Kosewski6340f012006-01-28 12:39:29 -0500210
211 /* board_2057x */
212 {
213 .sht = &pdc_ata_sht,
214 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
215 .pio_mask = 0x1f, /* pio0-4 */
216 .mwdma_mask = 0x07, /* mwdma0-2 */
217 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
218 .port_ops = &pdc_sata_ops,
219 },
220
221 /* board_40518 */
222 {
223 .sht = &pdc_ata_sht,
224 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
225 .pio_mask = 0x1f, /* pio0-4 */
226 .mwdma_mask = 0x07, /* mwdma0-2 */
227 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
228 .port_ops = &pdc_sata_ops,
229 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230};
231
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500232static const struct pci_device_id pdc_ata_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
234 board_2037x },
Jeff Garzik07c1da22005-10-28 17:00:31 -0400235 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
236 board_2037x },
Francisco Javier4c3a53d2005-05-25 19:29:37 -0400237 { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
238 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
240 board_2037x },
241 { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
242 board_2037x },
243 { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
244 board_2037x },
245 { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500246 board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500248 board_2057x },
Ed Kearc45154a2005-07-16 23:32:19 -0400249 { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
250 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
253 board_20319 },
254 { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
255 board_20319 },
Daniel Drakee1fd2632006-03-04 15:36:21 +0000256 { PCI_VENDOR_ID_PROMISE, 0x3515, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
257 board_20319 },
Daniel Drake93090492005-08-22 14:59:23 +0100258 { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
259 board_20319 },
Otto Meier08b791c02005-08-22 14:58:57 +0100260 { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
261 board_20319 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500263 board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400265 { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
266 board_20619 },
267
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500268 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
269 board_20771 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 { } /* terminate list */
271};
272
273
274static struct pci_driver pdc_ata_pci_driver = {
275 .name = DRV_NAME,
276 .id_table = pdc_ata_pci_tbl,
277 .probe = pdc_ata_init_one,
278 .remove = ata_pci_remove_one,
279};
280
281
282static int pdc_port_start(struct ata_port *ap)
283{
284 struct device *dev = ap->host_set->dev;
285 struct pdc_port_priv *pp;
286 int rc;
287
288 rc = ata_port_start(ap);
289 if (rc)
290 return rc;
291
Luke Kosewski6340f012006-01-28 12:39:29 -0500292 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (!pp) {
294 rc = -ENOMEM;
295 goto err_out;
296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
299 if (!pp->pkt) {
300 rc = -ENOMEM;
301 goto err_out_kfree;
302 }
303
304 ap->private_data = pp;
305
306 return 0;
307
308err_out_kfree:
309 kfree(pp);
310err_out:
311 ata_port_stop(ap);
312 return rc;
313}
314
315
316static void pdc_port_stop(struct ata_port *ap)
317{
318 struct device *dev = ap->host_set->dev;
319 struct pdc_port_priv *pp = ap->private_data;
320
321 ap->private_data = NULL;
322 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
323 kfree(pp);
324 ata_port_stop(ap);
325}
326
327
Luke Kosewski6340f012006-01-28 12:39:29 -0500328static void pdc_host_stop(struct ata_host_set *host_set)
329{
330 struct pdc_host_priv *hp = host_set->private_data;
331
332 ata_pci_host_stop(host_set);
333
334 kfree(hp);
335}
336
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static void pdc_reset_port(struct ata_port *ap)
339{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400340 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 unsigned int i;
342 u32 tmp;
343
344 for (i = 11; i > 0; i--) {
345 tmp = readl(mmio);
346 if (tmp & PDC_RESET)
347 break;
348
349 udelay(100);
350
351 tmp |= PDC_RESET;
352 writel(tmp, mmio);
353 }
354
355 tmp &= ~PDC_RESET;
356 writel(tmp, mmio);
357 readl(mmio); /* flush */
358}
359
Jeff Garzik2cba5822005-08-29 05:12:30 -0400360static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 pdc_reset_port(ap);
363 sata_phy_reset(ap);
364}
365
Jeff Garzik2cba5822005-08-29 05:12:30 -0400366static void pdc_pata_phy_reset(struct ata_port *ap)
367{
368 /* FIXME: add cable detect. Don't assume 40-pin cable */
369 ap->cbl = ATA_CBL_PATA40;
370 ap->udma_mask &= ATA_UDMA_MASK_40C;
371
372 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 Garzikb8f61532005-08-25 22:01:20 -0400424 struct ata_host_set *host_set = ap->host_set;
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 Garzikb8f61532005-08-25 22:01:20 -0400431 spin_lock_irqsave(&host_set->lock, flags);
432
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 Garzikb8f61532005-08-25 22:01:20 -0400454 spin_unlock_irqrestore(&host_set->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{
490 struct ata_host_set *host_set = ap->host_set;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400491 void __iomem *mmio = host_set->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 readl(mmio + PDC_INT_SEQMASK);
494}
495
496static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
497{
498 struct ata_host_set *host_set = dev_instance;
499 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
507 if (!host_set || !host_set->mmio_base) {
508 VPRINTK("QUICK EXIT\n");
509 return IRQ_NONE;
510 }
511
512 mmio_base = host_set->mmio_base;
513
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
522 spin_lock(&host_set->lock);
523
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
532 for (i = 0; i < host_set->n_ports; i++) {
533 VPRINTK("port %u\n", i);
534 ap = host_set->ports[i];
535 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900536 if (tmp && ap &&
Tejun Heo198e0fe2006-04-02 18:51:52 +0900537 !(ap->flags & (ATA_FLAG_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct ata_queued_cmd *qc;
539
540 qc = ata_qc_from_tag(ap, ap->active_tag);
541 if (qc && (!(qc->tf.ctl & ATA_NIEN)))
542 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:
549 spin_unlock(&host_set->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
562 writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
563 readl(ap->host_set->mmio_base + (seq * 4)); /* flush */
564
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;
628 int hotplug_offset = hp->hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 u32 tmp;
630
631 /*
632 * Except for the hotplug stuff, this is voodoo from the
633 * Promise driver. Label this entire section
634 * "TODO: figure out why we do this"
635 */
636
637 /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
638 tmp = readl(mmio + PDC_FLASH_CTL);
639 tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
640 writel(tmp, mmio + PDC_FLASH_CTL);
641
642 /* clear plug/unplug flags for all ports */
Luke Kosewski6340f012006-01-28 12:39:29 -0500643 tmp = readl(mmio + hotplug_offset);
644 writel(tmp | 0xff, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 /* mask plug/unplug ints */
Luke Kosewski6340f012006-01-28 12:39:29 -0500647 tmp = readl(mmio + hotplug_offset);
648 writel(tmp | 0xff0000, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /* reduce TBG clock to 133 Mhz. */
651 tmp = readl(mmio + PDC_TBG_MODE);
652 tmp &= ~0x30000; /* clear bit 17, 16*/
653 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
654 writel(tmp, mmio + PDC_TBG_MODE);
655
656 readl(mmio + PDC_TBG_MODE); /* flush */
657 msleep(10);
658
659 /* adjust slew rate control register. */
660 tmp = readl(mmio + PDC_SLEW_CTL);
661 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
662 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
663 writel(tmp, mmio + PDC_SLEW_CTL);
664}
665
666static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
667{
668 static int printed_version;
669 struct ata_probe_ent *probe_ent = NULL;
Luke Kosewski6340f012006-01-28 12:39:29 -0500670 struct pdc_host_priv *hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400672 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 unsigned int board_idx = (unsigned int) ent->driver_data;
674 int pci_dev_busy = 0;
675 int rc;
676
677 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500678 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 rc = pci_enable_device(pdev);
681 if (rc)
682 return rc;
683
684 rc = pci_request_regions(pdev, DRV_NAME);
685 if (rc) {
686 pci_dev_busy = 1;
687 goto err_out;
688 }
689
690 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
691 if (rc)
692 goto err_out_regions;
693 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
694 if (rc)
695 goto err_out_regions;
696
Luke Kosewski6340f012006-01-28 12:39:29 -0500697 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (probe_ent == NULL) {
699 rc = -ENOMEM;
700 goto err_out_regions;
701 }
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 probe_ent->dev = pci_dev_to_dev(pdev);
704 INIT_LIST_HEAD(&probe_ent->node);
705
Jeff Garzik374b1872005-08-30 05:42:52 -0400706 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (mmio_base == NULL) {
708 rc = -ENOMEM;
709 goto err_out_free_ent;
710 }
711 base = (unsigned long) mmio_base;
712
Luke Kosewski6340f012006-01-28 12:39:29 -0500713 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
714 if (hp == NULL) {
715 rc = -ENOMEM;
716 goto err_out_free_ent;
717 }
718
719 /* Set default hotplug offset */
720 hp->hotplug_offset = PDC_SATA_PLUG_CSR;
721 probe_ent->private_data = hp;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 probe_ent->sht = pdc_port_info[board_idx].sht;
724 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
725 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
726 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
727 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
728 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
729
730 probe_ent->irq = pdev->irq;
731 probe_ent->irq_flags = SA_SHIRQ;
732 probe_ent->mmio_base = mmio_base;
733
734 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
735 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
736
737 probe_ent->port[0].scr_addr = base + 0x400;
738 probe_ent->port[1].scr_addr = base + 0x500;
739
740 /* notice 4-port boards */
741 switch (board_idx) {
Luke Kosewski6340f012006-01-28 12:39:29 -0500742 case board_40518:
743 /* Override hotplug offset for SATAII150 */
744 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
745 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 case board_20319:
747 probe_ent->n_ports = 4;
748
749 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
750 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
751
752 probe_ent->port[2].scr_addr = base + 0x600;
753 probe_ent->port[3].scr_addr = base + 0x700;
754 break;
Luke Kosewski6340f012006-01-28 12:39:29 -0500755 case board_2057x:
756 /* Override hotplug offset for SATAII150 */
757 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
758 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500760 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 break;
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500762 case board_20771:
763 probe_ent->n_ports = 2;
764 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400765 case board_20619:
766 probe_ent->n_ports = 4;
767
768 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
769 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
770
771 probe_ent->port[2].scr_addr = base + 0x600;
772 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500773 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 default:
775 BUG();
776 break;
777 }
778
779 pci_set_master(pdev);
780
781 /* initialize adapter */
782 pdc_host_init(board_idx, probe_ent);
783
Luke Kosewski6340f012006-01-28 12:39:29 -0500784 /* FIXME: Need any other frees than hp? */
785 if (!ata_device_add(probe_ent))
786 kfree(hp);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 kfree(probe_ent);
789
790 return 0;
791
792err_out_free_ent:
793 kfree(probe_ent);
794err_out_regions:
795 pci_release_regions(pdev);
796err_out:
797 if (!pci_dev_busy)
798 pci_disable_device(pdev);
799 return rc;
800}
801
802
803static int __init pdc_ata_init(void)
804{
805 return pci_module_init(&pdc_ata_pci_driver);
806}
807
808
809static void __exit pdc_ata_exit(void)
810{
811 pci_unregister_driver(&pdc_ata_pci_driver);
812}
813
814
815MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400816MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817MODULE_LICENSE("GPL");
818MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
819MODULE_VERSION(DRV_VERSION);
820
821module_init(pdc_ata_init);
822module_exit(pdc_ata_exit);