blob: a2778cf016bc2e8866423775416a48621a17433c [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 */
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -050069 board_20771 = 3, /* FastTrak TX2300 */
Luke Kosewski6340f012006-01-28 12:39:29 -050070 board_2057x = 4, /* SATAII150 Tx2plus */
71 board_40518 = 5, /* SATAII150 Tx4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Luke Kosewski6340f012006-01-28 12:39:29 -050073 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -050076
77 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
Jeff Garzik3d0a59c2005-12-13 22:28:19 -050078 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
79 ATA_FLAG_PIO_POLLING,
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +010080
81 /* hp->flags bits */
82 PDC_FLAG_GEN_II = (1 << 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85
86struct pdc_port_priv {
87 u8 *pkt;
88 dma_addr_t pkt_dma;
89};
90
Luke Kosewski6340f012006-01-28 12:39:29 -050091struct pdc_host_priv {
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +010092 unsigned long flags;
Luke Kosewski6340f012006-01-28 12:39:29 -050093 int hotplug_offset;
94};
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
97static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
98static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
David Howells7d12e782006-10-05 14:55:46 +010099static irqreturn_t pdc_interrupt (int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static void pdc_eng_timeout(struct ata_port *ap);
101static int pdc_port_start(struct ata_port *ap);
102static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400103static void pdc_pata_phy_reset(struct ata_port *ap);
104static void pdc_sata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -0400106static 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static void pdc_irq_clear(struct ata_port *ap);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900109static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
Jeff Garzikcca39742006-08-24 03:19:22 -0400110static void pdc_host_stop(struct ata_host *host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Jeff Garzik374b1872005-08-30 05:42:52 -0400112
Jeff Garzik193515d2005-11-07 00:59:37 -0500113static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .module = THIS_MODULE,
115 .name = DRV_NAME,
116 .ioctl = ata_scsi_ioctl,
117 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .can_queue = ATA_DEF_QUEUE,
119 .this_id = ATA_SHT_THIS_ID,
120 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
122 .emulated = ATA_SHT_EMULATED,
123 .use_clustering = ATA_SHT_USE_CLUSTERING,
124 .proc_name = DRV_NAME,
125 .dma_boundary = ATA_DMA_BOUNDARY,
126 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900127 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
Jeff Garzik057ace52005-10-22 14:27:05 -0400131static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .port_disable = ata_port_disable,
133 .tf_load = pdc_tf_load_mmio,
134 .tf_read = ata_tf_read,
135 .check_status = ata_check_status,
136 .exec_command = pdc_exec_command_mmio,
137 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400138
139 .phy_reset = pdc_sata_phy_reset,
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .qc_prep = pdc_qc_prep,
142 .qc_issue = pdc_qc_issue_prot,
143 .eng_timeout = pdc_eng_timeout,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100144 .data_xfer = ata_mmio_data_xfer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .irq_handler = pdc_interrupt,
146 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .scr_read = pdc_sata_scr_read,
149 .scr_write = pdc_sata_scr_write,
150 .port_start = pdc_port_start,
151 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500152 .host_stop = pdc_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
Jeff Garzik057ace52005-10-22 14:27:05 -0400155static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400156 .port_disable = ata_port_disable,
157 .tf_load = pdc_tf_load_mmio,
158 .tf_read = ata_tf_read,
159 .check_status = ata_check_status,
160 .exec_command = pdc_exec_command_mmio,
161 .dev_select = ata_std_dev_select,
162
163 .phy_reset = pdc_pata_phy_reset,
164
165 .qc_prep = pdc_qc_prep,
166 .qc_issue = pdc_qc_issue_prot,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100167 .data_xfer = ata_mmio_data_xfer,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400168 .eng_timeout = pdc_eng_timeout,
169 .irq_handler = pdc_interrupt,
170 .irq_clear = pdc_irq_clear,
171
172 .port_start = pdc_port_start,
173 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500174 .host_stop = pdc_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400175};
176
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100177static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* board_2037x */
179 {
180 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400181 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .pio_mask = 0x1f, /* pio0-4 */
183 .mwdma_mask = 0x07, /* mwdma0-2 */
184 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400185 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 },
187
188 /* board_20319 */
189 {
190 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400191 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 .pio_mask = 0x1f, /* pio0-4 */
193 .mwdma_mask = 0x07, /* mwdma0-2 */
194 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400195 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400197
198 /* board_20619 */
199 {
200 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400201 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400202 .pio_mask = 0x1f, /* pio0-4 */
203 .mwdma_mask = 0x07, /* mwdma0-2 */
204 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400205 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400206 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500207
208 /* board_20771 */
209 {
210 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400211 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500212 .pio_mask = 0x1f, /* pio0-4 */
213 .mwdma_mask = 0x07, /* mwdma0-2 */
214 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
215 .port_ops = &pdc_sata_ops,
216 },
Luke Kosewski6340f012006-01-28 12:39:29 -0500217
218 /* board_2057x */
219 {
220 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400221 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Luke Kosewski6340f012006-01-28 12:39:29 -0500222 .pio_mask = 0x1f, /* pio0-4 */
223 .mwdma_mask = 0x07, /* mwdma0-2 */
224 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
225 .port_ops = &pdc_sata_ops,
226 },
227
228 /* board_40518 */
229 {
230 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400231 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Luke Kosewski6340f012006-01-28 12:39:29 -0500232 .pio_mask = 0x1f, /* pio0-4 */
233 .mwdma_mask = 0x07, /* mwdma0-2 */
234 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
235 .port_ops = &pdc_sata_ops,
236 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237};
238
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500239static const struct pci_device_id pdc_ata_pci_tbl[] = {
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400240 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400241 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
242 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
243 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100244 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
245 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400246 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100247 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400248 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400250 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
251 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
252 { PCI_VDEVICE(PROMISE, 0x3515), board_20319 },
253 { PCI_VDEVICE(PROMISE, 0x3519), board_20319 },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100254 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400255 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400257 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400258
Jeff Garzik8419dc82006-07-24 03:37:52 -0400259/* TODO: remove all associated board_20771 code, as it completely
260 * duplicates board_2037x code, unless reason for separation can be
261 * divined.
262 */
263#if 0
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400264 { PCI_VDEVICE(PROMISE, 0x3570), board_20771 },
Jeff Garzik8419dc82006-07-24 03:37:52 -0400265#endif
Jeff Garzika83068b2006-10-11 04:46:52 -0400266 { PCI_VDEVICE(PROMISE, 0x3577), board_20771 },
Jeff Garzik8419dc82006-07-24 03:37:52 -0400267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 { } /* terminate list */
269};
270
271
272static struct pci_driver pdc_ata_pci_driver = {
273 .name = DRV_NAME,
274 .id_table = pdc_ata_pci_tbl,
275 .probe = pdc_ata_init_one,
276 .remove = ata_pci_remove_one,
277};
278
279
280static int pdc_port_start(struct ata_port *ap)
281{
Jeff Garzikcca39742006-08-24 03:19:22 -0400282 struct device *dev = ap->host->dev;
Mikael Pettersson599b7202006-12-01 10:55:58 +0100283 struct pdc_host_priv *hp = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct pdc_port_priv *pp;
285 int rc;
286
287 rc = ata_port_start(ap);
288 if (rc)
289 return rc;
290
Luke Kosewski6340f012006-01-28 12:39:29 -0500291 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (!pp) {
293 rc = -ENOMEM;
294 goto err_out;
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
298 if (!pp->pkt) {
299 rc = -ENOMEM;
300 goto err_out_kfree;
301 }
302
303 ap->private_data = pp;
304
Mikael Pettersson599b7202006-12-01 10:55:58 +0100305 /* fix up PHYMODE4 align timing */
306 if ((hp->flags & PDC_FLAG_GEN_II) && sata_scr_valid(ap)) {
307 void __iomem *mmio = (void __iomem *) ap->ioaddr.scr_addr;
308 unsigned int tmp;
309
310 tmp = readl(mmio + 0x014);
311 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
312 writel(tmp, mmio + 0x014);
313 }
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return 0;
316
317err_out_kfree:
318 kfree(pp);
319err_out:
320 ata_port_stop(ap);
321 return rc;
322}
323
324
325static void pdc_port_stop(struct ata_port *ap)
326{
Jeff Garzikcca39742006-08-24 03:19:22 -0400327 struct device *dev = ap->host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct pdc_port_priv *pp = ap->private_data;
329
330 ap->private_data = NULL;
331 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
332 kfree(pp);
333 ata_port_stop(ap);
334}
335
336
Jeff Garzikcca39742006-08-24 03:19:22 -0400337static void pdc_host_stop(struct ata_host *host)
Luke Kosewski6340f012006-01-28 12:39:29 -0500338{
Jeff Garzikcca39742006-08-24 03:19:22 -0400339 struct pdc_host_priv *hp = host->private_data;
Luke Kosewski6340f012006-01-28 12:39:29 -0500340
Jeff Garzikcca39742006-08-24 03:19:22 -0400341 ata_pci_host_stop(host);
Luke Kosewski6340f012006-01-28 12:39:29 -0500342
343 kfree(hp);
344}
345
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static void pdc_reset_port(struct ata_port *ap)
348{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400349 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 unsigned int i;
351 u32 tmp;
352
353 for (i = 11; i > 0; i--) {
354 tmp = readl(mmio);
355 if (tmp & PDC_RESET)
356 break;
357
358 udelay(100);
359
360 tmp |= PDC_RESET;
361 writel(tmp, mmio);
362 }
363
364 tmp &= ~PDC_RESET;
365 writel(tmp, mmio);
366 readl(mmio); /* flush */
367}
368
Jeff Garzik2cba5822005-08-29 05:12:30 -0400369static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 pdc_reset_port(ap);
372 sata_phy_reset(ap);
373}
374
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400375static void pdc_pata_cbl_detect(struct ata_port *ap)
376{
377 u8 tmp;
Al Viro03dc5502006-10-10 22:48:07 +0100378 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400379
380 tmp = readb(mmio);
381
382 if (tmp & 0x01) {
383 ap->cbl = ATA_CBL_PATA40;
384 ap->udma_mask &= ATA_UDMA_MASK_40C;
385 } else
386 ap->cbl = ATA_CBL_PATA80;
387}
388
Jeff Garzik2cba5822005-08-29 05:12:30 -0400389static void pdc_pata_phy_reset(struct ata_port *ap)
390{
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400391 pdc_pata_cbl_detect(ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400392 pdc_reset_port(ap);
393 ata_port_probe(ap);
394 ata_bus_reset(ap);
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
398{
399 if (sc_reg > SCR_CONTROL)
400 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100401 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404
405static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
406 u32 val)
407{
408 if (sc_reg > SCR_CONTROL)
409 return;
Al Virob181d3b2005-10-21 06:46:02 +0100410 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413static void pdc_qc_prep(struct ata_queued_cmd *qc)
414{
415 struct pdc_port_priv *pp = qc->ap->private_data;
416 unsigned int i;
417
418 VPRINTK("ENTER\n");
419
420 switch (qc->tf.protocol) {
421 case ATA_PROT_DMA:
422 ata_qc_prep(qc);
423 /* fall through */
424
425 case ATA_PROT_NODATA:
426 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
427 qc->dev->devno, pp->pkt);
428
429 if (qc->tf.flags & ATA_TFLAG_LBA48)
430 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
431 else
432 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
433
434 pdc_pkt_footer(&qc->tf, pp->pkt, i);
435 break;
436
437 default:
438 break;
439 }
440}
441
442static void pdc_eng_timeout(struct ata_port *ap)
443{
Jeff Garzikcca39742006-08-24 03:19:22 -0400444 struct ata_host *host = ap->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 u8 drv_stat;
446 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400447 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 DPRINTK("ENTER\n");
450
Jeff Garzikcca39742006-08-24 03:19:22 -0400451 spin_lock_irqsave(&host->lock, flags);
Jeff Garzikb8f61532005-08-25 22:01:20 -0400452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 qc = ata_qc_from_tag(ap, ap->active_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 switch (qc->tf.protocol) {
456 case ATA_PROT_DMA:
457 case ATA_PROT_NODATA:
Tejun Heof15a1da2006-05-15 20:57:56 +0900458 ata_port_printk(ap, KERN_ERR, "command timeout\n");
Jeff Garzika7dac442005-10-30 04:44:42 -0500459 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800460 qc->err_mask |= __ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 break;
462
463 default:
464 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
465
Tejun Heof15a1da2006-05-15 20:57:56 +0900466 ata_port_printk(ap, KERN_ERR,
467 "unknown timeout, cmd 0x%x stat 0x%x\n",
468 qc->tf.command, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Albert Leea22e2eb2005-12-05 15:38:02 +0800470 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
472 }
473
Jeff Garzikcca39742006-08-24 03:19:22 -0400474 spin_unlock_irqrestore(&host->lock, flags);
Tejun Heof6379022006-02-10 15:10:48 +0900475 ata_eh_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 DPRINTK("EXIT\n");
477}
478
479static inline unsigned int pdc_host_intr( struct ata_port *ap,
480 struct ata_queued_cmd *qc)
481{
Albert Leea22e2eb2005-12-05 15:38:02 +0800482 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400484 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 tmp = readl(mmio);
487 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800488 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 pdc_reset_port(ap);
490 }
491
492 switch (qc->tf.protocol) {
493 case ATA_PROT_DMA:
494 case ATA_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800495 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
496 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 handled = 1;
498 break;
499
500 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800501 ap->stats.idle_irq++;
502 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Albert Leeee500aa2005-09-27 17:34:38 +0800505 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508static void pdc_irq_clear(struct ata_port *ap)
509{
Jeff Garzikcca39742006-08-24 03:19:22 -0400510 struct ata_host *host = ap->host;
511 void __iomem *mmio = host->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 readl(mmio + PDC_INT_SEQMASK);
514}
515
David Howells7d12e782006-10-05 14:55:46 +0100516static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Jeff Garzikcca39742006-08-24 03:19:22 -0400518 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct ata_port *ap;
520 u32 mask = 0;
521 unsigned int i, tmp;
522 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400523 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 VPRINTK("ENTER\n");
526
Jeff Garzikcca39742006-08-24 03:19:22 -0400527 if (!host || !host->mmio_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 VPRINTK("QUICK EXIT\n");
529 return IRQ_NONE;
530 }
531
Jeff Garzikcca39742006-08-24 03:19:22 -0400532 mmio_base = host->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /* reading should also clear interrupts */
535 mask = readl(mmio_base + PDC_INT_SEQMASK);
536
537 if (mask == 0xffffffff) {
538 VPRINTK("QUICK EXIT 2\n");
539 return IRQ_NONE;
540 }
Luke Kosewski6340f012006-01-28 12:39:29 -0500541
Jeff Garzikcca39742006-08-24 03:19:22 -0400542 spin_lock(&host->lock);
Luke Kosewski6340f012006-01-28 12:39:29 -0500543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 mask &= 0xffff; /* only 16 tags possible */
545 if (!mask) {
546 VPRINTK("QUICK EXIT 3\n");
Luke Kosewski6340f012006-01-28 12:39:29 -0500547 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 writel(mask, mmio_base + PDC_INT_SEQMASK);
551
Jeff Garzikcca39742006-08-24 03:19:22 -0400552 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 VPRINTK("port %u\n", i);
Jeff Garzikcca39742006-08-24 03:19:22 -0400554 ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900556 if (tmp && ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400557 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct ata_queued_cmd *qc;
559
560 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800561 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 handled += pdc_host_intr(ap, qc);
563 }
564 }
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 VPRINTK("EXIT\n");
567
Luke Kosewski6340f012006-01-28 12:39:29 -0500568done_irq:
Jeff Garzikcca39742006-08-24 03:19:22 -0400569 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return IRQ_RETVAL(handled);
571}
572
573static inline void pdc_packet_start(struct ata_queued_cmd *qc)
574{
575 struct ata_port *ap = qc->ap;
576 struct pdc_port_priv *pp = ap->private_data;
577 unsigned int port_no = ap->port_no;
578 u8 seq = (u8) (port_no + 1);
579
580 VPRINTK("ENTER, ap %p\n", ap);
581
Jeff Garzikcca39742006-08-24 03:19:22 -0400582 writel(0x00000001, ap->host->mmio_base + (seq * 4));
583 readl(ap->host->mmio_base + (seq * 4)); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 pp->pkt[2] = seq;
586 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100587 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
588 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900591static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
593 switch (qc->tf.protocol) {
594 case ATA_PROT_DMA:
595 case ATA_PROT_NODATA:
596 pdc_packet_start(qc);
597 return 0;
598
599 case ATA_PROT_ATAPI_DMA:
600 BUG();
601 break;
602
603 default:
604 break;
605 }
606
607 return ata_qc_issue_prot(qc);
608}
609
Jeff Garzik057ace52005-10-22 14:27:05 -0400610static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 WARN_ON (tf->protocol == ATA_PROT_DMA ||
613 tf->protocol == ATA_PROT_NODATA);
614 ata_tf_load(ap, tf);
615}
616
617
Jeff Garzik057ace52005-10-22 14:27:05 -0400618static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 WARN_ON (tf->protocol == ATA_PROT_DMA ||
621 tf->protocol == ATA_PROT_NODATA);
622 ata_exec_command(ap, tf);
623}
624
625
626static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
627{
628 port->cmd_addr = base;
629 port->data_addr = base;
630 port->feature_addr =
631 port->error_addr = base + 0x4;
632 port->nsect_addr = base + 0x8;
633 port->lbal_addr = base + 0xc;
634 port->lbam_addr = base + 0x10;
635 port->lbah_addr = base + 0x14;
636 port->device_addr = base + 0x18;
637 port->command_addr =
638 port->status_addr = base + 0x1c;
639 port->altstatus_addr =
640 port->ctl_addr = base + 0x38;
641}
642
643
644static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
645{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400646 void __iomem *mmio = pe->mmio_base;
Luke Kosewski6340f012006-01-28 12:39:29 -0500647 struct pdc_host_priv *hp = pe->private_data;
648 int hotplug_offset = hp->hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 u32 tmp;
650
651 /*
652 * Except for the hotplug stuff, this is voodoo from the
653 * Promise driver. Label this entire section
654 * "TODO: figure out why we do this"
655 */
656
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100657 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 tmp = readl(mmio + PDC_FLASH_CTL);
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100659 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
660 if (!(hp->flags & PDC_FLAG_GEN_II))
661 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 writel(tmp, mmio + PDC_FLASH_CTL);
663
664 /* clear plug/unplug flags for all ports */
Luke Kosewski6340f012006-01-28 12:39:29 -0500665 tmp = readl(mmio + hotplug_offset);
666 writel(tmp | 0xff, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 /* mask plug/unplug ints */
Luke Kosewski6340f012006-01-28 12:39:29 -0500669 tmp = readl(mmio + hotplug_offset);
670 writel(tmp | 0xff0000, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100672 /* don't initialise TBG or SLEW on 2nd generation chips */
673 if (hp->flags & PDC_FLAG_GEN_II)
674 return;
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* reduce TBG clock to 133 Mhz. */
677 tmp = readl(mmio + PDC_TBG_MODE);
678 tmp &= ~0x30000; /* clear bit 17, 16*/
679 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
680 writel(tmp, mmio + PDC_TBG_MODE);
681
682 readl(mmio + PDC_TBG_MODE); /* flush */
683 msleep(10);
684
685 /* adjust slew rate control register. */
686 tmp = readl(mmio + PDC_SLEW_CTL);
687 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
688 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
689 writel(tmp, mmio + PDC_SLEW_CTL);
690}
691
692static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
693{
694 static int printed_version;
695 struct ata_probe_ent *probe_ent = NULL;
Luke Kosewski6340f012006-01-28 12:39:29 -0500696 struct pdc_host_priv *hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400698 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 unsigned int board_idx = (unsigned int) ent->driver_data;
700 int pci_dev_busy = 0;
701 int rc;
702
703 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500704 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 rc = pci_enable_device(pdev);
707 if (rc)
708 return rc;
709
710 rc = pci_request_regions(pdev, DRV_NAME);
711 if (rc) {
712 pci_dev_busy = 1;
713 goto err_out;
714 }
715
716 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
717 if (rc)
718 goto err_out_regions;
719 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
720 if (rc)
721 goto err_out_regions;
722
Luke Kosewski6340f012006-01-28 12:39:29 -0500723 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (probe_ent == NULL) {
725 rc = -ENOMEM;
726 goto err_out_regions;
727 }
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 probe_ent->dev = pci_dev_to_dev(pdev);
730 INIT_LIST_HEAD(&probe_ent->node);
731
Jeff Garzik374b1872005-08-30 05:42:52 -0400732 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (mmio_base == NULL) {
734 rc = -ENOMEM;
735 goto err_out_free_ent;
736 }
737 base = (unsigned long) mmio_base;
738
Luke Kosewski6340f012006-01-28 12:39:29 -0500739 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
740 if (hp == NULL) {
741 rc = -ENOMEM;
742 goto err_out_free_ent;
743 }
744
745 /* Set default hotplug offset */
746 hp->hotplug_offset = PDC_SATA_PLUG_CSR;
747 probe_ent->private_data = hp;
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 probe_ent->sht = pdc_port_info[board_idx].sht;
Jeff Garzikcca39742006-08-24 03:19:22 -0400750 probe_ent->port_flags = pdc_port_info[board_idx].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
752 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
753 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
754 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
755
756 probe_ent->irq = pdev->irq;
Thomas Gleixner1d6f3592006-07-01 19:29:42 -0700757 probe_ent->irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 probe_ent->mmio_base = mmio_base;
759
760 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
761 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
762
763 probe_ent->port[0].scr_addr = base + 0x400;
764 probe_ent->port[1].scr_addr = base + 0x500;
765
766 /* notice 4-port boards */
767 switch (board_idx) {
Luke Kosewski6340f012006-01-28 12:39:29 -0500768 case board_40518:
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100769 hp->flags |= PDC_FLAG_GEN_II;
Luke Kosewski6340f012006-01-28 12:39:29 -0500770 /* Override hotplug offset for SATAII150 */
771 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
772 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 case board_20319:
774 probe_ent->n_ports = 4;
775
776 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
777 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
778
779 probe_ent->port[2].scr_addr = base + 0x600;
780 probe_ent->port[3].scr_addr = base + 0x700;
781 break;
Luke Kosewski6340f012006-01-28 12:39:29 -0500782 case board_2057x:
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100783 case board_20771:
784 hp->flags |= PDC_FLAG_GEN_II;
Luke Kosewski6340f012006-01-28 12:39:29 -0500785 /* Override hotplug offset for SATAII150 */
786 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
787 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500789 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400791 case board_20619:
792 probe_ent->n_ports = 4;
793
794 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
795 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
796
797 probe_ent->port[2].scr_addr = base + 0x600;
798 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500799 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 default:
801 BUG();
802 break;
803 }
804
805 pci_set_master(pdev);
806
807 /* initialize adapter */
808 pdc_host_init(board_idx, probe_ent);
809
Luke Kosewski6340f012006-01-28 12:39:29 -0500810 /* FIXME: Need any other frees than hp? */
811 if (!ata_device_add(probe_ent))
812 kfree(hp);
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 kfree(probe_ent);
815
816 return 0;
817
818err_out_free_ent:
819 kfree(probe_ent);
820err_out_regions:
821 pci_release_regions(pdev);
822err_out:
823 if (!pci_dev_busy)
824 pci_disable_device(pdev);
825 return rc;
826}
827
828
829static int __init pdc_ata_init(void)
830{
Pavel Roskinb7887192006-08-10 18:13:18 +0900831 return pci_register_driver(&pdc_ata_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834
835static void __exit pdc_ata_exit(void)
836{
837 pci_unregister_driver(&pdc_ata_pci_driver);
838}
839
840
841MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400842MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843MODULE_LICENSE("GPL");
844MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
845MODULE_VERSION(DRV_VERSION);
846
847module_init(pdc_ata_init);
848module_exit(pdc_ata_exit);