blob: 4c09d6504f0cc8b57a822d1634bae7a630a4fc07 [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>
Mikael Pettersson95006182007-01-09 10:51:46 +010042#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050044#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/libata.h>
46#include <asm/io.h>
47#include "sata_promise.h"
48
49#define DRV_NAME "sata_promise"
Jeff Garzik46b027c2006-11-14 14:46:17 -050050#define DRV_VERSION "1.05"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52
53enum {
Mikael Pettersson95006182007-01-09 10:51:46 +010054 /* register offsets */
55 PDC_FEATURE = 0x04, /* Feature/Error reg (per port) */
56 PDC_SECTOR_COUNT = 0x08, /* Sector count reg (per port) */
57 PDC_SECTOR_NUMBER = 0x0C, /* Sector number reg (per port) */
58 PDC_CYLINDER_LOW = 0x10, /* Cylinder low reg (per port) */
59 PDC_CYLINDER_HIGH = 0x14, /* Cylinder high reg (per port) */
60 PDC_DEVICE = 0x18, /* Device/Head reg (per port) */
61 PDC_COMMAND = 0x1C, /* Command/status reg (per port) */
Mikael Pettersson73fd4562007-01-10 09:32:34 +010062 PDC_ALTSTATUS = 0x38, /* Alternate-status/device-control reg (per port) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
64 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 PDC_FLASH_CTL = 0x44, /* Flash control register */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
67 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
68 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
Luke Kosewski6340f012006-01-28 12:39:29 -050069 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +010070 PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */
71 PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
74 (1<<8) | (1<<9) | (1<<10),
75
76 board_2037x = 0, /* FastTrak S150 TX2plus */
77 board_20319 = 1, /* FastTrak S150 TX4 */
Tobias Lorenzf497ba72005-05-12 15:51:01 -040078 board_20619 = 2, /* FastTrak TX4000 */
Mikael Petterssond324d4622006-12-06 09:55:43 +010079 board_2057x = 3, /* SATAII150 Tx2plus */
80 board_40518 = 4, /* SATAII150 Tx4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Luke Kosewski6340f012006-01-28 12:39:29 -050082 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Mikael Pettersson95006182007-01-09 10:51:46 +010084 /* Sequence counter control registers bit definitions */
85 PDC_SEQCNTRL_INT_MASK = (1 << 5), /* Sequence Interrupt Mask */
86
87 /* Feature register values */
88 PDC_FEATURE_ATAPI_PIO = 0x00, /* ATAPI data xfer by PIO */
89 PDC_FEATURE_ATAPI_DMA = 0x01, /* ATAPI data xfer by DMA */
90
91 /* Device/Head register values */
92 PDC_DEVICE_SATA = 0xE0, /* Device/Head value for SATA devices */
93
Mikael Pettersson25b93d82006-12-07 00:06:51 +010094 /* PDC_CTLSTAT bit definitions */
95 PDC_DMA_ENABLE = (1 << 7),
96 PDC_IRQ_DISABLE = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -050098
Mikael Pettersson25b93d82006-12-07 00:06:51 +010099 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY |
Mikael Pettersson95006182007-01-09 10:51:46 +0100100 ATA_FLAG_MMIO |
Jeff Garzik3d0a59c2005-12-13 22:28:19 -0500101 ATA_FLAG_PIO_POLLING,
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100102
103 /* hp->flags bits */
104 PDC_FLAG_GEN_II = (1 << 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
107
108struct pdc_port_priv {
109 u8 *pkt;
110 dma_addr_t pkt_dma;
111};
112
Luke Kosewski6340f012006-01-28 12:39:29 -0500113struct pdc_host_priv {
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100114 unsigned long flags;
Mikael Pettersson870ae332007-01-09 10:50:27 +0100115 unsigned long port_flags[ATA_MAX_PORTS];
Luke Kosewski6340f012006-01-28 12:39:29 -0500116};
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
119static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
120static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
David Howells7d12e782006-10-05 14:55:46 +0100121static irqreturn_t pdc_interrupt (int irq, void *dev_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static void pdc_eng_timeout(struct ata_port *ap);
123static int pdc_port_start(struct ata_port *ap);
124static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400125static void pdc_pata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -0400127static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
128static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
Mikael Pettersson95006182007-01-09 10:51:46 +0100129static int pdc_check_atapi_dma(struct ata_queued_cmd *qc);
130static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static void pdc_irq_clear(struct ata_port *ap);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900132static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
Jeff Garzikcca39742006-08-24 03:19:22 -0400133static void pdc_host_stop(struct ata_host *host);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100134static void pdc_freeze(struct ata_port *ap);
135static void pdc_thaw(struct ata_port *ap);
136static void pdc_error_handler(struct ata_port *ap);
137static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Jeff Garzik374b1872005-08-30 05:42:52 -0400139
Jeff Garzik193515d2005-11-07 00:59:37 -0500140static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .module = THIS_MODULE,
142 .name = DRV_NAME,
143 .ioctl = ata_scsi_ioctl,
144 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .can_queue = ATA_DEF_QUEUE,
146 .this_id = ATA_SHT_THIS_ID,
147 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
149 .emulated = ATA_SHT_EMULATED,
150 .use_clustering = ATA_SHT_USE_CLUSTERING,
151 .proc_name = DRV_NAME,
152 .dma_boundary = ATA_DMA_BOUNDARY,
153 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900154 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
Jeff Garzik057ace52005-10-22 14:27:05 -0400158static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 .port_disable = ata_port_disable,
160 .tf_load = pdc_tf_load_mmio,
161 .tf_read = ata_tf_read,
162 .check_status = ata_check_status,
163 .exec_command = pdc_exec_command_mmio,
164 .dev_select = ata_std_dev_select,
Mikael Pettersson95006182007-01-09 10:51:46 +0100165 .check_atapi_dma = pdc_check_atapi_dma,
166
167 .qc_prep = pdc_qc_prep,
168 .qc_issue = pdc_qc_issue_prot,
169 .freeze = pdc_freeze,
170 .thaw = pdc_thaw,
171 .error_handler = pdc_error_handler,
172 .post_internal_cmd = pdc_post_internal_cmd,
173 .data_xfer = ata_mmio_data_xfer,
174 .irq_handler = pdc_interrupt,
175 .irq_clear = pdc_irq_clear,
176
177 .scr_read = pdc_sata_scr_read,
178 .scr_write = pdc_sata_scr_write,
179 .port_start = pdc_port_start,
180 .port_stop = pdc_port_stop,
181 .host_stop = pdc_host_stop,
182};
183
184/* First-generation chips need a more restrictive ->check_atapi_dma op */
185static const struct ata_port_operations pdc_old_sata_ops = {
186 .port_disable = ata_port_disable,
187 .tf_load = pdc_tf_load_mmio,
188 .tf_read = ata_tf_read,
189 .check_status = ata_check_status,
190 .exec_command = pdc_exec_command_mmio,
191 .dev_select = ata_std_dev_select,
192 .check_atapi_dma = pdc_old_check_atapi_dma,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 .qc_prep = pdc_qc_prep,
195 .qc_issue = pdc_qc_issue_prot,
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100196 .freeze = pdc_freeze,
197 .thaw = pdc_thaw,
198 .error_handler = pdc_error_handler,
199 .post_internal_cmd = pdc_post_internal_cmd,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100200 .data_xfer = ata_mmio_data_xfer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .irq_handler = pdc_interrupt,
202 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 .scr_read = pdc_sata_scr_read,
205 .scr_write = pdc_sata_scr_write,
206 .port_start = pdc_port_start,
207 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500208 .host_stop = pdc_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Jeff Garzik057ace52005-10-22 14:27:05 -0400211static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400212 .port_disable = ata_port_disable,
213 .tf_load = pdc_tf_load_mmio,
214 .tf_read = ata_tf_read,
215 .check_status = ata_check_status,
216 .exec_command = pdc_exec_command_mmio,
217 .dev_select = ata_std_dev_select,
Mikael Pettersson95006182007-01-09 10:51:46 +0100218 .check_atapi_dma = pdc_check_atapi_dma,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400219
220 .phy_reset = pdc_pata_phy_reset,
221
222 .qc_prep = pdc_qc_prep,
223 .qc_issue = pdc_qc_issue_prot,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100224 .data_xfer = ata_mmio_data_xfer,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400225 .eng_timeout = pdc_eng_timeout,
226 .irq_handler = pdc_interrupt,
227 .irq_clear = pdc_irq_clear,
228
229 .port_start = pdc_port_start,
230 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500231 .host_stop = pdc_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400232};
233
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100234static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* board_2037x */
236 {
237 .sht = &pdc_ata_sht,
Mikael Pettersson870ae332007-01-09 10:50:27 +0100238 .flags = PDC_COMMON_FLAGS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 .pio_mask = 0x1f, /* pio0-4 */
240 .mwdma_mask = 0x07, /* mwdma0-2 */
241 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Mikael Pettersson95006182007-01-09 10:51:46 +0100242 .port_ops = &pdc_old_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 },
244
245 /* board_20319 */
246 {
247 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400248 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 .pio_mask = 0x1f, /* pio0-4 */
250 .mwdma_mask = 0x07, /* mwdma0-2 */
251 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Mikael Pettersson95006182007-01-09 10:51:46 +0100252 .port_ops = &pdc_old_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400254
255 /* board_20619 */
256 {
257 .sht = &pdc_ata_sht,
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100258 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SRST | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400259 .pio_mask = 0x1f, /* pio0-4 */
260 .mwdma_mask = 0x07, /* mwdma0-2 */
261 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400262 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400263 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500264
Luke Kosewski6340f012006-01-28 12:39:29 -0500265 /* board_2057x */
266 {
267 .sht = &pdc_ata_sht,
Mikael Pettersson870ae332007-01-09 10:50:27 +0100268 .flags = PDC_COMMON_FLAGS,
Luke Kosewski6340f012006-01-28 12:39:29 -0500269 .pio_mask = 0x1f, /* pio0-4 */
270 .mwdma_mask = 0x07, /* mwdma0-2 */
271 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
272 .port_ops = &pdc_sata_ops,
273 },
274
275 /* board_40518 */
276 {
277 .sht = &pdc_ata_sht,
Jeff Garzikcca39742006-08-24 03:19:22 -0400278 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Luke Kosewski6340f012006-01-28 12:39:29 -0500279 .pio_mask = 0x1f, /* pio0-4 */
280 .mwdma_mask = 0x07, /* mwdma0-2 */
281 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
282 .port_ops = &pdc_sata_ops,
283 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500286static const struct pci_device_id pdc_ata_pci_tbl[] = {
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400287 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400288 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
289 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
290 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100291 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
292 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400293 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
Mikael Petterssond324d4622006-12-06 09:55:43 +0100294 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100295 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400296 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400298 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
299 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
300 { PCI_VDEVICE(PROMISE, 0x3515), board_20319 },
301 { PCI_VDEVICE(PROMISE, 0x3519), board_20319 },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100302 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400303 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400305 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 { } /* terminate list */
308};
309
310
311static struct pci_driver pdc_ata_pci_driver = {
312 .name = DRV_NAME,
313 .id_table = pdc_ata_pci_tbl,
314 .probe = pdc_ata_init_one,
315 .remove = ata_pci_remove_one,
316};
317
318
319static int pdc_port_start(struct ata_port *ap)
320{
Jeff Garzikcca39742006-08-24 03:19:22 -0400321 struct device *dev = ap->host->dev;
Mikael Pettersson599b7202006-12-01 10:55:58 +0100322 struct pdc_host_priv *hp = ap->host->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 struct pdc_port_priv *pp;
324 int rc;
325
Mikael Pettersson870ae332007-01-09 10:50:27 +0100326 /* fix up port flags and cable type for SATA+PATA chips */
327 ap->flags |= hp->port_flags[ap->port_no];
328 if (ap->flags & ATA_FLAG_SATA)
329 ap->cbl = ATA_CBL_SATA;
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 rc = ata_port_start(ap);
332 if (rc)
333 return rc;
334
Luke Kosewski6340f012006-01-28 12:39:29 -0500335 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (!pp) {
337 rc = -ENOMEM;
338 goto err_out;
339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
342 if (!pp->pkt) {
343 rc = -ENOMEM;
344 goto err_out_kfree;
345 }
346
347 ap->private_data = pp;
348
Mikael Pettersson599b7202006-12-01 10:55:58 +0100349 /* fix up PHYMODE4 align timing */
350 if ((hp->flags & PDC_FLAG_GEN_II) && sata_scr_valid(ap)) {
351 void __iomem *mmio = (void __iomem *) ap->ioaddr.scr_addr;
352 unsigned int tmp;
353
354 tmp = readl(mmio + 0x014);
355 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
356 writel(tmp, mmio + 0x014);
357 }
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360
361err_out_kfree:
362 kfree(pp);
363err_out:
364 ata_port_stop(ap);
365 return rc;
366}
367
368
369static void pdc_port_stop(struct ata_port *ap)
370{
Jeff Garzikcca39742006-08-24 03:19:22 -0400371 struct device *dev = ap->host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct pdc_port_priv *pp = ap->private_data;
373
374 ap->private_data = NULL;
375 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
376 kfree(pp);
377 ata_port_stop(ap);
378}
379
380
Jeff Garzikcca39742006-08-24 03:19:22 -0400381static void pdc_host_stop(struct ata_host *host)
Luke Kosewski6340f012006-01-28 12:39:29 -0500382{
Jeff Garzikcca39742006-08-24 03:19:22 -0400383 struct pdc_host_priv *hp = host->private_data;
Luke Kosewski6340f012006-01-28 12:39:29 -0500384
Jeff Garzikcca39742006-08-24 03:19:22 -0400385 ata_pci_host_stop(host);
Luke Kosewski6340f012006-01-28 12:39:29 -0500386
387 kfree(hp);
388}
389
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static void pdc_reset_port(struct ata_port *ap)
392{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400393 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 unsigned int i;
395 u32 tmp;
396
397 for (i = 11; i > 0; i--) {
398 tmp = readl(mmio);
399 if (tmp & PDC_RESET)
400 break;
401
402 udelay(100);
403
404 tmp |= PDC_RESET;
405 writel(tmp, mmio);
406 }
407
408 tmp &= ~PDC_RESET;
409 writel(tmp, mmio);
410 readl(mmio); /* flush */
411}
412
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400413static void pdc_pata_cbl_detect(struct ata_port *ap)
414{
415 u8 tmp;
Al Viro03dc5502006-10-10 22:48:07 +0100416 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400417
418 tmp = readb(mmio);
419
420 if (tmp & 0x01) {
421 ap->cbl = ATA_CBL_PATA40;
422 ap->udma_mask &= ATA_UDMA_MASK_40C;
423 } else
424 ap->cbl = ATA_CBL_PATA80;
425}
426
Jeff Garzik2cba5822005-08-29 05:12:30 -0400427static void pdc_pata_phy_reset(struct ata_port *ap)
428{
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400429 pdc_pata_cbl_detect(ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400430 pdc_reset_port(ap);
431 ata_port_probe(ap);
432 ata_bus_reset(ap);
433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
436{
Mikael Pettersson870ae332007-01-09 10:50:27 +0100437 if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100439 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442
443static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
444 u32 val)
445{
Mikael Pettersson870ae332007-01-09 10:50:27 +0100446 if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return;
Al Virob181d3b2005-10-21 06:46:02 +0100448 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Mikael Pettersson95006182007-01-09 10:51:46 +0100451static void pdc_atapi_dma_pkt(struct ata_taskfile *tf,
452 dma_addr_t sg_table,
453 unsigned int cdb_len, u8 *cdb,
454 u8 *buf)
455{
456 u32 *buf32 = (u32 *) buf;
457
458 /* set control bits (byte 0), zero delay seq id (byte 3),
459 * and seq id (byte 2)
460 */
461 if (!(tf->flags & ATA_TFLAG_WRITE))
462 buf32[0] = cpu_to_le32(PDC_PKT_READ);
463 else
464 buf32[0] = 0;
465 buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */
466 buf32[2] = 0; /* no next-packet */
467
468 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
469 BUG_ON(cdb_len & ~0x1E);
470
471 buf[12] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
472 memcpy(buf+13, cdb, cdb_len);
473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static void pdc_qc_prep(struct ata_queued_cmd *qc)
476{
477 struct pdc_port_priv *pp = qc->ap->private_data;
478 unsigned int i;
479
480 VPRINTK("ENTER\n");
481
482 switch (qc->tf.protocol) {
483 case ATA_PROT_DMA:
484 ata_qc_prep(qc);
485 /* fall through */
486
487 case ATA_PROT_NODATA:
488 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
489 qc->dev->devno, pp->pkt);
490
491 if (qc->tf.flags & ATA_TFLAG_LBA48)
492 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
493 else
494 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
495
496 pdc_pkt_footer(&qc->tf, pp->pkt, i);
497 break;
498
Mikael Pettersson95006182007-01-09 10:51:46 +0100499 case ATA_PROT_ATAPI:
500 case ATA_PROT_ATAPI_NODATA:
501 ata_qc_prep(qc);
502 break;
503
504 case ATA_PROT_ATAPI_DMA:
505 ata_qc_prep(qc);
506 pdc_atapi_dma_pkt(&qc->tf, qc->ap->prd_dma, qc->dev->cdb_len, qc->cdb, pp->pkt);
507 break;
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 default:
510 break;
511 }
512}
513
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100514static void pdc_freeze(struct ata_port *ap)
515{
516 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
517 u32 tmp;
518
519 tmp = readl(mmio + PDC_CTLSTAT);
520 tmp |= PDC_IRQ_DISABLE;
521 tmp &= ~PDC_DMA_ENABLE;
522 writel(tmp, mmio + PDC_CTLSTAT);
523 readl(mmio + PDC_CTLSTAT); /* flush */
524}
525
526static void pdc_thaw(struct ata_port *ap)
527{
528 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
529 u32 tmp;
530
531 /* clear IRQ */
532 readl(mmio + PDC_INT_SEQMASK);
533
534 /* turn IRQ back on */
535 tmp = readl(mmio + PDC_CTLSTAT);
536 tmp &= ~PDC_IRQ_DISABLE;
537 writel(tmp, mmio + PDC_CTLSTAT);
538 readl(mmio + PDC_CTLSTAT); /* flush */
539}
540
541static void pdc_error_handler(struct ata_port *ap)
542{
543 ata_reset_fn_t hardreset;
544
545 if (!(ap->pflags & ATA_PFLAG_FROZEN))
546 pdc_reset_port(ap);
547
548 hardreset = NULL;
549 if (sata_scr_valid(ap))
550 hardreset = sata_std_hardreset;
551
552 /* perform recovery */
553 ata_do_eh(ap, ata_std_prereset, ata_std_softreset, hardreset,
554 ata_std_postreset);
555}
556
557static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
558{
559 struct ata_port *ap = qc->ap;
560
561 if (qc->flags & ATA_QCFLAG_FAILED)
562 qc->err_mask |= AC_ERR_OTHER;
563
564 /* make DMA engine forget about the failed command */
565 if (qc->err_mask)
566 pdc_reset_port(ap);
567}
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static void pdc_eng_timeout(struct ata_port *ap)
570{
Jeff Garzikcca39742006-08-24 03:19:22 -0400571 struct ata_host *host = ap->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 u8 drv_stat;
573 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400574 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 DPRINTK("ENTER\n");
577
Jeff Garzikcca39742006-08-24 03:19:22 -0400578 spin_lock_irqsave(&host->lock, flags);
Jeff Garzikb8f61532005-08-25 22:01:20 -0400579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 qc = ata_qc_from_tag(ap, ap->active_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 switch (qc->tf.protocol) {
583 case ATA_PROT_DMA:
584 case ATA_PROT_NODATA:
Tejun Heof15a1da2006-05-15 20:57:56 +0900585 ata_port_printk(ap, KERN_ERR, "command timeout\n");
Jeff Garzika7dac442005-10-30 04:44:42 -0500586 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800587 qc->err_mask |= __ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
589
590 default:
591 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
592
Tejun Heof15a1da2006-05-15 20:57:56 +0900593 ata_port_printk(ap, KERN_ERR,
594 "unknown timeout, cmd 0x%x stat 0x%x\n",
595 qc->tf.command, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Albert Leea22e2eb2005-12-05 15:38:02 +0800597 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 break;
599 }
600
Jeff Garzikcca39742006-08-24 03:19:22 -0400601 spin_unlock_irqrestore(&host->lock, flags);
Tejun Heof6379022006-02-10 15:10:48 +0900602 ata_eh_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 DPRINTK("EXIT\n");
604}
605
606static inline unsigned int pdc_host_intr( struct ata_port *ap,
607 struct ata_queued_cmd *qc)
608{
Albert Leea22e2eb2005-12-05 15:38:02 +0800609 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400611 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 tmp = readl(mmio);
614 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800615 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 pdc_reset_port(ap);
617 }
618
619 switch (qc->tf.protocol) {
620 case ATA_PROT_DMA:
621 case ATA_PROT_NODATA:
Mikael Pettersson95006182007-01-09 10:51:46 +0100622 case ATA_PROT_ATAPI_DMA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800623 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
624 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 handled = 1;
626 break;
627
628 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800629 ap->stats.idle_irq++;
630 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
Albert Leeee500aa2005-09-27 17:34:38 +0800633 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
636static void pdc_irq_clear(struct ata_port *ap)
637{
Jeff Garzikcca39742006-08-24 03:19:22 -0400638 struct ata_host *host = ap->host;
639 void __iomem *mmio = host->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 readl(mmio + PDC_INT_SEQMASK);
642}
643
David Howells7d12e782006-10-05 14:55:46 +0100644static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Jeff Garzikcca39742006-08-24 03:19:22 -0400646 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 struct ata_port *ap;
648 u32 mask = 0;
649 unsigned int i, tmp;
650 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400651 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 VPRINTK("ENTER\n");
654
Jeff Garzikcca39742006-08-24 03:19:22 -0400655 if (!host || !host->mmio_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 VPRINTK("QUICK EXIT\n");
657 return IRQ_NONE;
658 }
659
Jeff Garzikcca39742006-08-24 03:19:22 -0400660 mmio_base = host->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 /* reading should also clear interrupts */
663 mask = readl(mmio_base + PDC_INT_SEQMASK);
664
665 if (mask == 0xffffffff) {
666 VPRINTK("QUICK EXIT 2\n");
667 return IRQ_NONE;
668 }
Luke Kosewski6340f012006-01-28 12:39:29 -0500669
Jeff Garzikcca39742006-08-24 03:19:22 -0400670 spin_lock(&host->lock);
Luke Kosewski6340f012006-01-28 12:39:29 -0500671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 mask &= 0xffff; /* only 16 tags possible */
673 if (!mask) {
674 VPRINTK("QUICK EXIT 3\n");
Luke Kosewski6340f012006-01-28 12:39:29 -0500675 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 writel(mask, mmio_base + PDC_INT_SEQMASK);
679
Jeff Garzikcca39742006-08-24 03:19:22 -0400680 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 VPRINTK("port %u\n", i);
Jeff Garzikcca39742006-08-24 03:19:22 -0400682 ap = host->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900684 if (tmp && ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400685 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 struct ata_queued_cmd *qc;
687
688 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800689 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 handled += pdc_host_intr(ap, qc);
691 }
692 }
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 VPRINTK("EXIT\n");
695
Luke Kosewski6340f012006-01-28 12:39:29 -0500696done_irq:
Jeff Garzikcca39742006-08-24 03:19:22 -0400697 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return IRQ_RETVAL(handled);
699}
700
701static inline void pdc_packet_start(struct ata_queued_cmd *qc)
702{
703 struct ata_port *ap = qc->ap;
704 struct pdc_port_priv *pp = ap->private_data;
705 unsigned int port_no = ap->port_no;
706 u8 seq = (u8) (port_no + 1);
707
708 VPRINTK("ENTER, ap %p\n", ap);
709
Jeff Garzikcca39742006-08-24 03:19:22 -0400710 writel(0x00000001, ap->host->mmio_base + (seq * 4));
711 readl(ap->host->mmio_base + (seq * 4)); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 pp->pkt[2] = seq;
714 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100715 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
716 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Mikael Pettersson95006182007-01-09 10:51:46 +0100719static unsigned int pdc_wait_for_drq(struct ata_port *ap)
720{
721 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
722 unsigned int i;
723 unsigned int status;
724
725 /* Following pdc-ultra's WaitForDrq() we loop here until BSY
726 * is clear and DRQ is set in altstatus. We could possibly call
727 * ata_busy_wait() and loop until DRQ is set, but since we don't
728 * know how much time a call to ata_busy_wait() took, we don't
729 * know when to time out the outer loop.
730 */
731 for(i = 0; i < 1000; ++i) {
Mikael Pettersson73fd4562007-01-10 09:32:34 +0100732 status = readb(port_mmio + PDC_ALTSTATUS);
Mikael Pettersson95006182007-01-09 10:51:46 +0100733 if (status == 0xFF)
734 break;
735 if (status & ATA_BUSY)
736 ;
737 else if (status & (ATA_DRQ | ATA_ERR))
738 break;
739 mdelay(1);
740 }
741 if (i >= 1000)
Mikael Pettersson73fd4562007-01-10 09:32:34 +0100742 ata_port_printk(ap, KERN_WARNING, "%s timed out\n", __FUNCTION__);
743 return status;
744}
745
746static unsigned int pdc_wait_on_busy(struct ata_port *ap)
747{
748 unsigned int status = ata_busy_wait(ap, ATA_BUSY, 1000);
749 if (status != 0xff && (status & ATA_BUSY))
750 ata_port_printk(ap, KERN_WARNING, "%s timed out\n", __FUNCTION__);
Mikael Pettersson95006182007-01-09 10:51:46 +0100751 return status;
752}
753
754static void pdc_issue_atapi_pkt_cmd(struct ata_queued_cmd *qc)
755{
756 struct ata_port *ap = qc->ap;
757 void __iomem *port_mmio = (void __iomem *) ap->ioaddr.cmd_addr;
758 void __iomem *host_mmio = ap->host->mmio_base;
759 unsigned int nbytes;
760 unsigned int tmp;
761
762 writeb(0x00, port_mmio + PDC_CTLSTAT); /* route drive INT to SEQ 0 */
763 writeb(PDC_SEQCNTRL_INT_MASK, host_mmio + 0); /* but mask SEQ 0 INT */
764
765 /* select drive */
766 if (sata_scr_valid(ap)) {
767 tmp = PDC_DEVICE_SATA;
768 } else {
769 tmp = ATA_DEVICE_OBS;
770 if (qc->dev->devno != 0)
771 tmp |= ATA_DEV1;
772 }
773 writeb(tmp, port_mmio + PDC_DEVICE);
Mikael Pettersson73fd4562007-01-10 09:32:34 +0100774 pdc_wait_on_busy(ap);
Mikael Pettersson95006182007-01-09 10:51:46 +0100775
776 writeb(0x00, port_mmio + PDC_SECTOR_COUNT);
777 writeb(0x00, port_mmio + PDC_SECTOR_NUMBER);
778
779 /* set feature and byte counter registers */
780 if (qc->tf.protocol != ATA_PROT_ATAPI_DMA) {
781 tmp = PDC_FEATURE_ATAPI_PIO;
782 /* set byte counter register to real transfer byte count */
783 nbytes = qc->nbytes;
784 if (!nbytes)
785 nbytes = qc->nsect << 9;
786 if (nbytes > 0xffff)
787 nbytes = 0xffff;
788 } else {
789 tmp = PDC_FEATURE_ATAPI_DMA;
790 /* set byte counter register to 0 */
791 nbytes = 0;
792 }
793 writeb(tmp, port_mmio + PDC_FEATURE);
794 writeb(nbytes & 0xFF, port_mmio + PDC_CYLINDER_LOW);
795 writeb((nbytes >> 8) & 0xFF, port_mmio + PDC_CYLINDER_HIGH);
796
797 /* send ATAPI packet command 0xA0 */
798 writeb(ATA_CMD_PACKET, port_mmio + PDC_COMMAND);
799
Mikael Pettersson73fd4562007-01-10 09:32:34 +0100800 /* pdc_qc_issue_prot() currently sends ATAPI PIO packets back
801 * to libata. If we start handling those packets ourselves,
802 * then we must busy-wait for INT (CTLSTAT bit 27) at this point
803 * if the device has ATA_DFLAG_CDB_INTR set.
Mikael Pettersson95006182007-01-09 10:51:46 +0100804 */
805
806 pdc_wait_for_drq(ap);
807
808 /* now the device only waits for the CDB */
809}
810
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900811static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 switch (qc->tf.protocol) {
Mikael Pettersson95006182007-01-09 10:51:46 +0100814 case ATA_PROT_ATAPI_DMA:
815 pdc_issue_atapi_pkt_cmd(qc);
816 /*FALLTHROUGH*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 case ATA_PROT_DMA:
818 case ATA_PROT_NODATA:
819 pdc_packet_start(qc);
820 return 0;
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 default:
823 break;
824 }
825
826 return ata_qc_issue_prot(qc);
827}
828
Jeff Garzik057ace52005-10-22 14:27:05 -0400829static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
831 WARN_ON (tf->protocol == ATA_PROT_DMA ||
832 tf->protocol == ATA_PROT_NODATA);
833 ata_tf_load(ap, tf);
834}
835
836
Jeff Garzik057ace52005-10-22 14:27:05 -0400837static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 WARN_ON (tf->protocol == ATA_PROT_DMA ||
840 tf->protocol == ATA_PROT_NODATA);
841 ata_exec_command(ap, tf);
842}
843
Mikael Pettersson95006182007-01-09 10:51:46 +0100844static int pdc_check_atapi_dma(struct ata_queued_cmd *qc)
845{
846 u8 *scsicmd = qc->scsicmd->cmnd;
847 int pio = 1; /* atapi dma off by default */
848
849 /* Whitelist commands that may use DMA. */
850 switch (scsicmd[0]) {
851 case WRITE_12:
852 case WRITE_10:
853 case WRITE_6:
854 case READ_12:
855 case READ_10:
856 case READ_6:
857 case 0xad: /* READ_DVD_STRUCTURE */
858 case 0xbe: /* READ_CD */
859 pio = 0;
860 }
861 /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */
862 if (scsicmd[0] == WRITE_10) {
863 unsigned int lba;
864 lba = (scsicmd[2] << 24) | (scsicmd[3] << 16) | (scsicmd[4] << 8) | scsicmd[5];
865 if (lba >= 0xFFFF4FA2)
866 pio = 1;
867 }
868 return pio;
869}
870
871static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc)
872{
873 struct ata_port *ap = qc->ap;
874
875 /* First generation chips cannot use ATAPI DMA on SATA ports */
876 if (sata_scr_valid(ap))
877 return 1;
878 return pdc_check_atapi_dma(qc);
879}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
882{
883 port->cmd_addr = base;
884 port->data_addr = base;
885 port->feature_addr =
886 port->error_addr = base + 0x4;
887 port->nsect_addr = base + 0x8;
888 port->lbal_addr = base + 0xc;
889 port->lbam_addr = base + 0x10;
890 port->lbah_addr = base + 0x14;
891 port->device_addr = base + 0x18;
892 port->command_addr =
893 port->status_addr = base + 0x1c;
894 port->altstatus_addr =
895 port->ctl_addr = base + 0x38;
896}
897
898
899static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
900{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400901 void __iomem *mmio = pe->mmio_base;
Luke Kosewski6340f012006-01-28 12:39:29 -0500902 struct pdc_host_priv *hp = pe->private_data;
Mikael Petterssond324d4622006-12-06 09:55:43 +0100903 int hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 u32 tmp;
905
Mikael Petterssond324d4622006-12-06 09:55:43 +0100906 if (hp->flags & PDC_FLAG_GEN_II)
907 hotplug_offset = PDC2_SATA_PLUG_CSR;
908 else
909 hotplug_offset = PDC_SATA_PLUG_CSR;
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /*
912 * Except for the hotplug stuff, this is voodoo from the
913 * Promise driver. Label this entire section
914 * "TODO: figure out why we do this"
915 */
916
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100917 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 tmp = readl(mmio + PDC_FLASH_CTL);
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100919 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
920 if (!(hp->flags & PDC_FLAG_GEN_II))
921 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 writel(tmp, mmio + PDC_FLASH_CTL);
923
924 /* clear plug/unplug flags for all ports */
Luke Kosewski6340f012006-01-28 12:39:29 -0500925 tmp = readl(mmio + hotplug_offset);
926 writel(tmp | 0xff, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 /* mask plug/unplug ints */
Luke Kosewski6340f012006-01-28 12:39:29 -0500929 tmp = readl(mmio + hotplug_offset);
930 writel(tmp | 0xff0000, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100932 /* don't initialise TBG or SLEW on 2nd generation chips */
933 if (hp->flags & PDC_FLAG_GEN_II)
934 return;
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* reduce TBG clock to 133 Mhz. */
937 tmp = readl(mmio + PDC_TBG_MODE);
938 tmp &= ~0x30000; /* clear bit 17, 16*/
939 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
940 writel(tmp, mmio + PDC_TBG_MODE);
941
942 readl(mmio + PDC_TBG_MODE); /* flush */
943 msleep(10);
944
945 /* adjust slew rate control register. */
946 tmp = readl(mmio + PDC_SLEW_CTL);
947 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
948 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
949 writel(tmp, mmio + PDC_SLEW_CTL);
950}
951
952static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
953{
954 static int printed_version;
955 struct ata_probe_ent *probe_ent = NULL;
Luke Kosewski6340f012006-01-28 12:39:29 -0500956 struct pdc_host_priv *hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400958 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 unsigned int board_idx = (unsigned int) ent->driver_data;
960 int pci_dev_busy = 0;
961 int rc;
Mikael Pettersson870ae332007-01-09 10:50:27 +0100962 u8 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500965 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 rc = pci_enable_device(pdev);
968 if (rc)
969 return rc;
970
971 rc = pci_request_regions(pdev, DRV_NAME);
972 if (rc) {
973 pci_dev_busy = 1;
974 goto err_out;
975 }
976
977 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
978 if (rc)
979 goto err_out_regions;
980 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
981 if (rc)
982 goto err_out_regions;
983
Luke Kosewski6340f012006-01-28 12:39:29 -0500984 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (probe_ent == NULL) {
986 rc = -ENOMEM;
987 goto err_out_regions;
988 }
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 probe_ent->dev = pci_dev_to_dev(pdev);
991 INIT_LIST_HEAD(&probe_ent->node);
992
Jeff Garzik374b1872005-08-30 05:42:52 -0400993 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (mmio_base == NULL) {
995 rc = -ENOMEM;
996 goto err_out_free_ent;
997 }
998 base = (unsigned long) mmio_base;
999
Luke Kosewski6340f012006-01-28 12:39:29 -05001000 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
1001 if (hp == NULL) {
1002 rc = -ENOMEM;
1003 goto err_out_free_ent;
1004 }
1005
Luke Kosewski6340f012006-01-28 12:39:29 -05001006 probe_ent->private_data = hp;
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 probe_ent->sht = pdc_port_info[board_idx].sht;
Jeff Garzikcca39742006-08-24 03:19:22 -04001009 probe_ent->port_flags = pdc_port_info[board_idx].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
1011 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
1012 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
1013 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
1014
1015 probe_ent->irq = pdev->irq;
Thomas Gleixner1d6f3592006-07-01 19:29:42 -07001016 probe_ent->irq_flags = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 probe_ent->mmio_base = mmio_base;
1018
1019 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
1020 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
1021
1022 probe_ent->port[0].scr_addr = base + 0x400;
1023 probe_ent->port[1].scr_addr = base + 0x500;
1024
1025 /* notice 4-port boards */
1026 switch (board_idx) {
Luke Kosewski6340f012006-01-28 12:39:29 -05001027 case board_40518:
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001028 hp->flags |= PDC_FLAG_GEN_II;
Luke Kosewski6340f012006-01-28 12:39:29 -05001029 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 case board_20319:
1031 probe_ent->n_ports = 4;
1032
1033 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
1034 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
1035
1036 probe_ent->port[2].scr_addr = base + 0x600;
1037 probe_ent->port[3].scr_addr = base + 0x700;
1038 break;
Luke Kosewski6340f012006-01-28 12:39:29 -05001039 case board_2057x:
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001040 hp->flags |= PDC_FLAG_GEN_II;
Luke Kosewski6340f012006-01-28 12:39:29 -05001041 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 case board_2037x:
Mikael Pettersson870ae332007-01-09 10:50:27 +01001043 /* TX2plus boards also have a PATA port */
1044 tmp = readb(mmio_base + PDC_FLASH_CTL+1);
1045 if (!(tmp & 0x80)) {
1046 probe_ent->n_ports = 3;
1047 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
1048 hp->port_flags[2] = ATA_FLAG_SLAVE_POSS;
1049 printk(KERN_INFO DRV_NAME " PATA port found\n");
1050 } else
1051 probe_ent->n_ports = 2;
1052 hp->port_flags[0] = ATA_FLAG_SATA;
1053 hp->port_flags[1] = ATA_FLAG_SATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -04001055 case board_20619:
1056 probe_ent->n_ports = 4;
1057
1058 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
1059 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
1060
1061 probe_ent->port[2].scr_addr = base + 0x600;
1062 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -05001063 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 default:
1065 BUG();
1066 break;
1067 }
1068
1069 pci_set_master(pdev);
1070
1071 /* initialize adapter */
1072 pdc_host_init(board_idx, probe_ent);
1073
Luke Kosewski6340f012006-01-28 12:39:29 -05001074 /* FIXME: Need any other frees than hp? */
1075 if (!ata_device_add(probe_ent))
1076 kfree(hp);
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 kfree(probe_ent);
1079
1080 return 0;
1081
1082err_out_free_ent:
1083 kfree(probe_ent);
1084err_out_regions:
1085 pci_release_regions(pdev);
1086err_out:
1087 if (!pci_dev_busy)
1088 pci_disable_device(pdev);
1089 return rc;
1090}
1091
1092
1093static int __init pdc_ata_init(void)
1094{
Pavel Roskinb7887192006-08-10 18:13:18 +09001095 return pci_register_driver(&pdc_ata_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
1098
1099static void __exit pdc_ata_exit(void)
1100{
1101 pci_unregister_driver(&pdc_ata_pci_driver);
1102}
1103
1104
1105MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -04001106MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107MODULE_LICENSE("GPL");
1108MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
1109MODULE_VERSION(DRV_VERSION);
1110
1111module_init(pdc_ata_init);
1112module_exit(pdc_ata_exit);