libata-core: fix comments on cable type
[deliverable/linux.git] / drivers / ata / sata_promise.c
CommitLineData
1da177e4
LT
1/*
2 * sata_promise.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc.
9 *
1da177e4 10 *
af36d7f0
JG
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * Hardware information only available under NDA.
1da177e4
LT
30 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/pci.h>
36#include <linux/init.h>
37#include <linux/blkdev.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
a9524a76 40#include <linux/device.h>
95006188 41#include <scsi/scsi.h>
1da177e4 42#include <scsi/scsi_host.h>
193515d5 43#include <scsi/scsi_cmnd.h>
1da177e4 44#include <linux/libata.h>
1da177e4
LT
45#include "sata_promise.h"
46
47#define DRV_NAME "sata_promise"
cb48cab7 48#define DRV_VERSION "2.00"
1da177e4
LT
49
50
51enum {
0d5ff566
TH
52 PDC_MMIO_BAR = 3,
53
95006188
MP
54 /* 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) */
73fd456b 62 PDC_ALTSTATUS = 0x38, /* Alternate-status/device-control reg (per port) */
1da177e4
LT
63 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
64 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
1da177e4 65 PDC_FLASH_CTL = 0x44, /* Flash control register */
1da177e4
LT
66 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 */
6340f019 69 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
b2d1eee1
MP
70 PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */
71 PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */
1da177e4
LT
72
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 */
f497ba73 78 board_20619 = 2, /* FastTrak TX4000 */
d324d462
MP
79 board_2057x = 3, /* SATAII150 Tx2plus */
80 board_40518 = 4, /* SATAII150 Tx4 */
1da177e4 81
6340f019 82 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
1da177e4 83
95006188
MP
84 /* 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
25b93d81
MP
94 /* PDC_CTLSTAT bit definitions */
95 PDC_DMA_ENABLE = (1 << 7),
96 PDC_IRQ_DISABLE = (1 << 10),
1da177e4 97 PDC_RESET = (1 << 11), /* HDMA reset */
50630195 98
25b93d81 99 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY |
95006188 100 ATA_FLAG_MMIO |
3d0a59c0 101 ATA_FLAG_PIO_POLLING,
b2d1eee1
MP
102
103 /* hp->flags bits */
104 PDC_FLAG_GEN_II = (1 << 0),
1da177e4
LT
105};
106
107
108struct pdc_port_priv {
109 u8 *pkt;
110 dma_addr_t pkt_dma;
111};
112
6340f019 113struct pdc_host_priv {
b2d1eee1 114 unsigned long flags;
870ae337 115 unsigned long port_flags[ATA_MAX_PORTS];
6340f019
LK
116};
117
1da177e4
LT
118static 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);
7d12e780 121static irqreturn_t pdc_interrupt (int irq, void *dev_instance);
1da177e4 122static int pdc_port_start(struct ata_port *ap);
1da177e4 123static void pdc_qc_prep(struct ata_queued_cmd *qc);
057ace5e
JG
124static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
125static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
95006188
MP
126static int pdc_check_atapi_dma(struct ata_queued_cmd *qc);
127static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc);
1da177e4 128static void pdc_irq_clear(struct ata_port *ap);
9a3d9eb0 129static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
25b93d81
MP
130static void pdc_freeze(struct ata_port *ap);
131static void pdc_thaw(struct ata_port *ap);
132static void pdc_error_handler(struct ata_port *ap);
133static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
1da177e4 134
374b1873 135
193515d5 136static struct scsi_host_template pdc_ata_sht = {
1da177e4
LT
137 .module = THIS_MODULE,
138 .name = DRV_NAME,
139 .ioctl = ata_scsi_ioctl,
140 .queuecommand = ata_scsi_queuecmd,
1da177e4
LT
141 .can_queue = ATA_DEF_QUEUE,
142 .this_id = ATA_SHT_THIS_ID,
143 .sg_tablesize = LIBATA_MAX_PRD,
1da177e4
LT
144 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
145 .emulated = ATA_SHT_EMULATED,
146 .use_clustering = ATA_SHT_USE_CLUSTERING,
147 .proc_name = DRV_NAME,
148 .dma_boundary = ATA_DMA_BOUNDARY,
149 .slave_configure = ata_scsi_slave_config,
ccf68c34 150 .slave_destroy = ata_scsi_slave_destroy,
1da177e4 151 .bios_param = ata_std_bios_param,
1da177e4
LT
152};
153
057ace5e 154static const struct ata_port_operations pdc_sata_ops = {
1da177e4
LT
155 .port_disable = ata_port_disable,
156 .tf_load = pdc_tf_load_mmio,
157 .tf_read = ata_tf_read,
158 .check_status = ata_check_status,
159 .exec_command = pdc_exec_command_mmio,
160 .dev_select = ata_std_dev_select,
95006188
MP
161 .check_atapi_dma = pdc_check_atapi_dma,
162
163 .qc_prep = pdc_qc_prep,
164 .qc_issue = pdc_qc_issue_prot,
165 .freeze = pdc_freeze,
166 .thaw = pdc_thaw,
167 .error_handler = pdc_error_handler,
168 .post_internal_cmd = pdc_post_internal_cmd,
0d5ff566 169 .data_xfer = ata_data_xfer,
95006188
MP
170 .irq_handler = pdc_interrupt,
171 .irq_clear = pdc_irq_clear,
246ce3b6
AI
172 .irq_on = ata_irq_on,
173 .irq_ack = ata_irq_ack,
95006188
MP
174
175 .scr_read = pdc_sata_scr_read,
176 .scr_write = pdc_sata_scr_write,
177 .port_start = pdc_port_start,
95006188
MP
178};
179
180/* First-generation chips need a more restrictive ->check_atapi_dma op */
181static const struct ata_port_operations pdc_old_sata_ops = {
182 .port_disable = ata_port_disable,
183 .tf_load = pdc_tf_load_mmio,
184 .tf_read = ata_tf_read,
185 .check_status = ata_check_status,
186 .exec_command = pdc_exec_command_mmio,
187 .dev_select = ata_std_dev_select,
188 .check_atapi_dma = pdc_old_check_atapi_dma,
2cba582a 189
1da177e4
LT
190 .qc_prep = pdc_qc_prep,
191 .qc_issue = pdc_qc_issue_prot,
25b93d81
MP
192 .freeze = pdc_freeze,
193 .thaw = pdc_thaw,
194 .error_handler = pdc_error_handler,
195 .post_internal_cmd = pdc_post_internal_cmd,
0d5ff566 196 .data_xfer = ata_data_xfer,
1da177e4
LT
197 .irq_handler = pdc_interrupt,
198 .irq_clear = pdc_irq_clear,
246ce3b6
AI
199 .irq_on = ata_irq_on,
200 .irq_ack = ata_irq_ack,
2cba582a 201
1da177e4
LT
202 .scr_read = pdc_sata_scr_read,
203 .scr_write = pdc_sata_scr_write,
204 .port_start = pdc_port_start,
1da177e4
LT
205};
206
057ace5e 207static const struct ata_port_operations pdc_pata_ops = {
2cba582a
JG
208 .port_disable = ata_port_disable,
209 .tf_load = pdc_tf_load_mmio,
210 .tf_read = ata_tf_read,
211 .check_status = ata_check_status,
212 .exec_command = pdc_exec_command_mmio,
213 .dev_select = ata_std_dev_select,
95006188 214 .check_atapi_dma = pdc_check_atapi_dma,
2cba582a 215
2cba582a
JG
216 .qc_prep = pdc_qc_prep,
217 .qc_issue = pdc_qc_issue_prot,
5387373b
MP
218 .freeze = pdc_freeze,
219 .thaw = pdc_thaw,
220 .error_handler = pdc_error_handler,
540477b4 221 .post_internal_cmd = pdc_post_internal_cmd,
0d5ff566 222 .data_xfer = ata_data_xfer,
2cba582a
JG
223 .irq_handler = pdc_interrupt,
224 .irq_clear = pdc_irq_clear,
246ce3b6
AI
225 .irq_on = ata_irq_on,
226 .irq_ack = ata_irq_ack,
2cba582a
JG
227
228 .port_start = pdc_port_start,
2cba582a
JG
229};
230
98ac62de 231static const struct ata_port_info pdc_port_info[] = {
1da177e4
LT
232 /* board_2037x */
233 {
234 .sht = &pdc_ata_sht,
870ae337 235 .flags = PDC_COMMON_FLAGS,
1da177e4
LT
236 .pio_mask = 0x1f, /* pio0-4 */
237 .mwdma_mask = 0x07, /* mwdma0-2 */
238 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
95006188 239 .port_ops = &pdc_old_sata_ops,
1da177e4
LT
240 },
241
242 /* board_20319 */
243 {
244 .sht = &pdc_ata_sht,
cca3974e 245 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
1da177e4
LT
246 .pio_mask = 0x1f, /* pio0-4 */
247 .mwdma_mask = 0x07, /* mwdma0-2 */
248 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
95006188 249 .port_ops = &pdc_old_sata_ops,
1da177e4 250 },
f497ba73
TL
251
252 /* board_20619 */
253 {
254 .sht = &pdc_ata_sht,
5387373b 255 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
f497ba73
TL
256 .pio_mask = 0x1f, /* pio0-4 */
257 .mwdma_mask = 0x07, /* mwdma0-2 */
258 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
2cba582a 259 .port_ops = &pdc_pata_ops,
f497ba73 260 },
5a46fe89 261
6340f019
LK
262 /* board_2057x */
263 {
264 .sht = &pdc_ata_sht,
870ae337 265 .flags = PDC_COMMON_FLAGS,
6340f019
LK
266 .pio_mask = 0x1f, /* pio0-4 */
267 .mwdma_mask = 0x07, /* mwdma0-2 */
268 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
269 .port_ops = &pdc_sata_ops,
270 },
271
272 /* board_40518 */
273 {
274 .sht = &pdc_ata_sht,
cca3974e 275 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
6340f019
LK
276 .pio_mask = 0x1f, /* pio0-4 */
277 .mwdma_mask = 0x07, /* mwdma0-2 */
278 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
279 .port_ops = &pdc_sata_ops,
280 },
1da177e4
LT
281};
282
3b7d697d 283static const struct pci_device_id pdc_ata_pci_tbl[] = {
54bb3a94 284 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
54bb3a94
JG
285 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
286 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
287 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
b2d1eee1
MP
288 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
289 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
54bb3a94 290 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
d324d462 291 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
b2d1eee1 292 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
54bb3a94 293 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
54bb3a94
JG
294
295 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
296 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
297 { PCI_VDEVICE(PROMISE, 0x3515), board_20319 },
298 { PCI_VDEVICE(PROMISE, 0x3519), board_20319 },
b2d1eee1 299 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
54bb3a94
JG
300 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
301
302 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
f497ba73 303
1da177e4
LT
304 { } /* terminate list */
305};
306
307
308static struct pci_driver pdc_ata_pci_driver = {
309 .name = DRV_NAME,
310 .id_table = pdc_ata_pci_tbl,
311 .probe = pdc_ata_init_one,
312 .remove = ata_pci_remove_one,
313};
314
315
316static int pdc_port_start(struct ata_port *ap)
317{
cca3974e 318 struct device *dev = ap->host->dev;
599b7202 319 struct pdc_host_priv *hp = ap->host->private_data;
1da177e4
LT
320 struct pdc_port_priv *pp;
321 int rc;
322
870ae337
MP
323 /* fix up port flags and cable type for SATA+PATA chips */
324 ap->flags |= hp->port_flags[ap->port_no];
325 if (ap->flags & ATA_FLAG_SATA)
326 ap->cbl = ATA_CBL_SATA;
327
1da177e4
LT
328 rc = ata_port_start(ap);
329 if (rc)
330 return rc;
331
24dc5f33
TH
332 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
333 if (!pp)
334 return -ENOMEM;
1da177e4 335
24dc5f33
TH
336 pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
337 if (!pp->pkt)
338 return -ENOMEM;
1da177e4
LT
339
340 ap->private_data = pp;
341
599b7202
MP
342 /* fix up PHYMODE4 align timing */
343 if ((hp->flags & PDC_FLAG_GEN_II) && sata_scr_valid(ap)) {
344 void __iomem *mmio = (void __iomem *) ap->ioaddr.scr_addr;
345 unsigned int tmp;
346
347 tmp = readl(mmio + 0x014);
348 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
349 writel(tmp, mmio + 0x014);
350 }
351
1da177e4 352 return 0;
1da177e4
LT
353}
354
1da177e4
LT
355static void pdc_reset_port(struct ata_port *ap)
356{
0d5ff566 357 void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT;
1da177e4
LT
358 unsigned int i;
359 u32 tmp;
360
361 for (i = 11; i > 0; i--) {
362 tmp = readl(mmio);
363 if (tmp & PDC_RESET)
364 break;
365
366 udelay(100);
367
368 tmp |= PDC_RESET;
369 writel(tmp, mmio);
370 }
371
372 tmp &= ~PDC_RESET;
373 writel(tmp, mmio);
374 readl(mmio); /* flush */
375}
376
d3fb4e8d 377static void pdc_pata_cbl_detect(struct ata_port *ap)
2cba582a 378{
d3fb4e8d 379 u8 tmp;
03dc5506 380 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
d3fb4e8d
JG
381
382 tmp = readb(mmio);
383
384 if (tmp & 0x01) {
385 ap->cbl = ATA_CBL_PATA40;
386 ap->udma_mask &= ATA_UDMA_MASK_40C;
387 } else
388 ap->cbl = ATA_CBL_PATA80;
389}
2cba582a 390
1da177e4
LT
391static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
392{
870ae337 393 if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
1da177e4 394 return 0xffffffffU;
0d5ff566 395 return readl(ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
396}
397
398
399static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
400 u32 val)
401{
870ae337 402 if (sc_reg > SCR_CONTROL || ap->cbl != ATA_CBL_SATA)
1da177e4 403 return;
0d5ff566 404 writel(val, ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
405}
406
fba6edbd 407static void pdc_atapi_pkt(struct ata_queued_cmd *qc)
95006188 408{
4113bb6b
MP
409 struct ata_port *ap = qc->ap;
410 dma_addr_t sg_table = ap->prd_dma;
411 unsigned int cdb_len = qc->dev->cdb_len;
412 u8 *cdb = qc->cdb;
413 struct pdc_port_priv *pp = ap->private_data;
414 u8 *buf = pp->pkt;
95006188 415 u32 *buf32 = (u32 *) buf;
4113bb6b 416 unsigned int dev_sel, feature, nbytes;
95006188
MP
417
418 /* set control bits (byte 0), zero delay seq id (byte 3),
419 * and seq id (byte 2)
420 */
fba6edbd
MP
421 switch (qc->tf.protocol) {
422 case ATA_PROT_ATAPI_DMA:
423 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
424 buf32[0] = cpu_to_le32(PDC_PKT_READ);
425 else
426 buf32[0] = 0;
427 break;
428 case ATA_PROT_ATAPI_NODATA:
429 buf32[0] = cpu_to_le32(PDC_PKT_NODATA);
430 break;
431 default:
432 BUG();
433 break;
434 }
95006188
MP
435 buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */
436 buf32[2] = 0; /* no next-packet */
437
4113bb6b
MP
438 /* select drive */
439 if (sata_scr_valid(ap)) {
440 dev_sel = PDC_DEVICE_SATA;
441 } else {
442 dev_sel = ATA_DEVICE_OBS;
443 if (qc->dev->devno != 0)
444 dev_sel |= ATA_DEV1;
445 }
446 buf[12] = (1 << 5) | ATA_REG_DEVICE;
447 buf[13] = dev_sel;
448 buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY;
449 buf[15] = dev_sel; /* once more, waiting for BSY to clear */
450
451 buf[16] = (1 << 5) | ATA_REG_NSECT;
452 buf[17] = 0x00;
453 buf[18] = (1 << 5) | ATA_REG_LBAL;
454 buf[19] = 0x00;
455
456 /* set feature and byte counter registers */
457 if (qc->tf.protocol != ATA_PROT_ATAPI_DMA) {
458 feature = PDC_FEATURE_ATAPI_PIO;
459 /* set byte counter register to real transfer byte count */
460 nbytes = qc->nbytes;
4113bb6b
MP
461 if (nbytes > 0xffff)
462 nbytes = 0xffff;
463 } else {
464 feature = PDC_FEATURE_ATAPI_DMA;
465 /* set byte counter register to 0 */
466 nbytes = 0;
467 }
468 buf[20] = (1 << 5) | ATA_REG_FEATURE;
469 buf[21] = feature;
470 buf[22] = (1 << 5) | ATA_REG_BYTEL;
471 buf[23] = nbytes & 0xFF;
472 buf[24] = (1 << 5) | ATA_REG_BYTEH;
473 buf[25] = (nbytes >> 8) & 0xFF;
474
475 /* send ATAPI packet command 0xA0 */
476 buf[26] = (1 << 5) | ATA_REG_CMD;
477 buf[27] = ATA_CMD_PACKET;
478
479 /* select drive and check DRQ */
480 buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY;
481 buf[29] = dev_sel;
482
95006188
MP
483 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
484 BUG_ON(cdb_len & ~0x1E);
485
4113bb6b
MP
486 /* append the CDB as the final part */
487 buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
488 memcpy(buf+31, cdb, cdb_len);
95006188
MP
489}
490
1da177e4
LT
491static void pdc_qc_prep(struct ata_queued_cmd *qc)
492{
493 struct pdc_port_priv *pp = qc->ap->private_data;
494 unsigned int i;
495
496 VPRINTK("ENTER\n");
497
498 switch (qc->tf.protocol) {
499 case ATA_PROT_DMA:
500 ata_qc_prep(qc);
501 /* fall through */
502
503 case ATA_PROT_NODATA:
504 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
505 qc->dev->devno, pp->pkt);
506
507 if (qc->tf.flags & ATA_TFLAG_LBA48)
508 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
509 else
510 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
511
512 pdc_pkt_footer(&qc->tf, pp->pkt, i);
513 break;
514
95006188 515 case ATA_PROT_ATAPI:
95006188
MP
516 ata_qc_prep(qc);
517 break;
518
519 case ATA_PROT_ATAPI_DMA:
520 ata_qc_prep(qc);
fba6edbd
MP
521 /*FALLTHROUGH*/
522 case ATA_PROT_ATAPI_NODATA:
523 pdc_atapi_pkt(qc);
95006188
MP
524 break;
525
1da177e4
LT
526 default:
527 break;
528 }
529}
530
25b93d81
MP
531static void pdc_freeze(struct ata_port *ap)
532{
533 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
534 u32 tmp;
535
536 tmp = readl(mmio + PDC_CTLSTAT);
537 tmp |= PDC_IRQ_DISABLE;
538 tmp &= ~PDC_DMA_ENABLE;
539 writel(tmp, mmio + PDC_CTLSTAT);
540 readl(mmio + PDC_CTLSTAT); /* flush */
541}
542
543static void pdc_thaw(struct ata_port *ap)
544{
545 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr;
546 u32 tmp;
547
548 /* clear IRQ */
549 readl(mmio + PDC_INT_SEQMASK);
550
551 /* turn IRQ back on */
552 tmp = readl(mmio + PDC_CTLSTAT);
553 tmp &= ~PDC_IRQ_DISABLE;
554 writel(tmp, mmio + PDC_CTLSTAT);
555 readl(mmio + PDC_CTLSTAT); /* flush */
556}
557
2fb8b49f
MP
558static int pdc_pre_reset(struct ata_port *ap)
559{
560 if (!sata_scr_valid(ap))
561 pdc_pata_cbl_detect(ap);
562 return ata_std_prereset(ap);
563}
564
25b93d81
MP
565static void pdc_error_handler(struct ata_port *ap)
566{
567 ata_reset_fn_t hardreset;
568
569 if (!(ap->pflags & ATA_PFLAG_FROZEN))
570 pdc_reset_port(ap);
571
572 hardreset = NULL;
573 if (sata_scr_valid(ap))
574 hardreset = sata_std_hardreset;
575
576 /* perform recovery */
2fb8b49f 577 ata_do_eh(ap, pdc_pre_reset, ata_std_softreset, hardreset,
25b93d81
MP
578 ata_std_postreset);
579}
580
581static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
582{
583 struct ata_port *ap = qc->ap;
584
585 if (qc->flags & ATA_QCFLAG_FAILED)
586 qc->err_mask |= AC_ERR_OTHER;
587
588 /* make DMA engine forget about the failed command */
589 if (qc->err_mask)
590 pdc_reset_port(ap);
591}
592
1da177e4
LT
593static inline unsigned int pdc_host_intr( struct ata_port *ap,
594 struct ata_queued_cmd *qc)
595{
a22e2eb0 596 unsigned int handled = 0;
1da177e4 597 u32 tmp;
0d5ff566 598 void __iomem *mmio = ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
1da177e4
LT
599
600 tmp = readl(mmio);
601 if (tmp & PDC_ERR_MASK) {
a22e2eb0 602 qc->err_mask |= AC_ERR_DEV;
1da177e4
LT
603 pdc_reset_port(ap);
604 }
605
606 switch (qc->tf.protocol) {
607 case ATA_PROT_DMA:
608 case ATA_PROT_NODATA:
95006188 609 case ATA_PROT_ATAPI_DMA:
fba6edbd 610 case ATA_PROT_ATAPI_NODATA:
a22e2eb0
AL
611 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
612 ata_qc_complete(qc);
1da177e4
LT
613 handled = 1;
614 break;
615
616 default:
ee500aab
AL
617 ap->stats.idle_irq++;
618 break;
1da177e4
LT
619 }
620
ee500aab 621 return handled;
1da177e4
LT
622}
623
624static void pdc_irq_clear(struct ata_port *ap)
625{
cca3974e 626 struct ata_host *host = ap->host;
0d5ff566 627 void __iomem *mmio = host->iomap[PDC_MMIO_BAR];
1da177e4
LT
628
629 readl(mmio + PDC_INT_SEQMASK);
630}
631
7d12e780 632static irqreturn_t pdc_interrupt (int irq, void *dev_instance)
1da177e4 633{
cca3974e 634 struct ata_host *host = dev_instance;
1da177e4
LT
635 struct ata_port *ap;
636 u32 mask = 0;
637 unsigned int i, tmp;
638 unsigned int handled = 0;
ea6ba10b 639 void __iomem *mmio_base;
1da177e4
LT
640
641 VPRINTK("ENTER\n");
642
0d5ff566 643 if (!host || !host->iomap[PDC_MMIO_BAR]) {
1da177e4
LT
644 VPRINTK("QUICK EXIT\n");
645 return IRQ_NONE;
646 }
647
0d5ff566 648 mmio_base = host->iomap[PDC_MMIO_BAR];
1da177e4
LT
649
650 /* reading should also clear interrupts */
651 mask = readl(mmio_base + PDC_INT_SEQMASK);
652
653 if (mask == 0xffffffff) {
654 VPRINTK("QUICK EXIT 2\n");
655 return IRQ_NONE;
656 }
6340f019 657
cca3974e 658 spin_lock(&host->lock);
6340f019 659
1da177e4
LT
660 mask &= 0xffff; /* only 16 tags possible */
661 if (!mask) {
662 VPRINTK("QUICK EXIT 3\n");
6340f019 663 goto done_irq;
1da177e4
LT
664 }
665
1da177e4
LT
666 writel(mask, mmio_base + PDC_INT_SEQMASK);
667
cca3974e 668 for (i = 0; i < host->n_ports; i++) {
1da177e4 669 VPRINTK("port %u\n", i);
cca3974e 670 ap = host->ports[i];
1da177e4 671 tmp = mask & (1 << (i + 1));
c1389503 672 if (tmp && ap &&
029f5468 673 !(ap->flags & ATA_FLAG_DISABLED)) {
1da177e4
LT
674 struct ata_queued_cmd *qc;
675
676 qc = ata_qc_from_tag(ap, ap->active_tag);
e50362ec 677 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
1da177e4
LT
678 handled += pdc_host_intr(ap, qc);
679 }
680 }
681
1da177e4
LT
682 VPRINTK("EXIT\n");
683
6340f019 684done_irq:
cca3974e 685 spin_unlock(&host->lock);
1da177e4
LT
686 return IRQ_RETVAL(handled);
687}
688
689static inline void pdc_packet_start(struct ata_queued_cmd *qc)
690{
691 struct ata_port *ap = qc->ap;
692 struct pdc_port_priv *pp = ap->private_data;
0d5ff566 693 void __iomem *mmio = ap->host->iomap[PDC_MMIO_BAR];
1da177e4
LT
694 unsigned int port_no = ap->port_no;
695 u8 seq = (u8) (port_no + 1);
696
697 VPRINTK("ENTER, ap %p\n", ap);
698
0d5ff566
TH
699 writel(0x00000001, mmio + (seq * 4));
700 readl(mmio + (seq * 4)); /* flush */
1da177e4
LT
701
702 pp->pkt[2] = seq;
703 wmb(); /* flush PRD, pkt writes */
0d5ff566
TH
704 writel(pp->pkt_dma, ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
705 readl(ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
1da177e4
LT
706}
707
9a3d9eb0 708static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
1da177e4
LT
709{
710 switch (qc->tf.protocol) {
fba6edbd
MP
711 case ATA_PROT_ATAPI_NODATA:
712 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
713 break;
714 /*FALLTHROUGH*/
95006188 715 case ATA_PROT_ATAPI_DMA:
1da177e4
LT
716 case ATA_PROT_DMA:
717 case ATA_PROT_NODATA:
718 pdc_packet_start(qc);
719 return 0;
720
1da177e4
LT
721 default:
722 break;
723 }
724
725 return ata_qc_issue_prot(qc);
726}
727
057ace5e 728static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
729{
730 WARN_ON (tf->protocol == ATA_PROT_DMA ||
731 tf->protocol == ATA_PROT_NODATA);
732 ata_tf_load(ap, tf);
733}
734
735
057ace5e 736static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4
LT
737{
738 WARN_ON (tf->protocol == ATA_PROT_DMA ||
739 tf->protocol == ATA_PROT_NODATA);
740 ata_exec_command(ap, tf);
741}
742
95006188
MP
743static int pdc_check_atapi_dma(struct ata_queued_cmd *qc)
744{
745 u8 *scsicmd = qc->scsicmd->cmnd;
746 int pio = 1; /* atapi dma off by default */
747
748 /* Whitelist commands that may use DMA. */
749 switch (scsicmd[0]) {
750 case WRITE_12:
751 case WRITE_10:
752 case WRITE_6:
753 case READ_12:
754 case READ_10:
755 case READ_6:
756 case 0xad: /* READ_DVD_STRUCTURE */
757 case 0xbe: /* READ_CD */
758 pio = 0;
759 }
760 /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */
761 if (scsicmd[0] == WRITE_10) {
762 unsigned int lba;
763 lba = (scsicmd[2] << 24) | (scsicmd[3] << 16) | (scsicmd[4] << 8) | scsicmd[5];
764 if (lba >= 0xFFFF4FA2)
765 pio = 1;
766 }
767 return pio;
768}
769
770static int pdc_old_check_atapi_dma(struct ata_queued_cmd *qc)
771{
772 struct ata_port *ap = qc->ap;
773
774 /* First generation chips cannot use ATAPI DMA on SATA ports */
775 if (sata_scr_valid(ap))
776 return 1;
777 return pdc_check_atapi_dma(qc);
778}
1da177e4 779
098cdff3
MP
780static void pdc_ata_setup_port(struct ata_ioports *port, void __iomem *base,
781 void __iomem *scr_addr)
1da177e4
LT
782{
783 port->cmd_addr = base;
784 port->data_addr = base;
785 port->feature_addr =
786 port->error_addr = base + 0x4;
787 port->nsect_addr = base + 0x8;
788 port->lbal_addr = base + 0xc;
789 port->lbam_addr = base + 0x10;
790 port->lbah_addr = base + 0x14;
791 port->device_addr = base + 0x18;
792 port->command_addr =
793 port->status_addr = base + 0x1c;
794 port->altstatus_addr =
795 port->ctl_addr = base + 0x38;
098cdff3 796 port->scr_addr = scr_addr;
1da177e4
LT
797}
798
799
800static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
801{
0d5ff566 802 void __iomem *mmio = pe->iomap[PDC_MMIO_BAR];
6340f019 803 struct pdc_host_priv *hp = pe->private_data;
d324d462 804 int hotplug_offset;
1da177e4
LT
805 u32 tmp;
806
d324d462
MP
807 if (hp->flags & PDC_FLAG_GEN_II)
808 hotplug_offset = PDC2_SATA_PLUG_CSR;
809 else
810 hotplug_offset = PDC_SATA_PLUG_CSR;
811
1da177e4
LT
812 /*
813 * Except for the hotplug stuff, this is voodoo from the
814 * Promise driver. Label this entire section
815 * "TODO: figure out why we do this"
816 */
817
b2d1eee1 818 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
1da177e4 819 tmp = readl(mmio + PDC_FLASH_CTL);
b2d1eee1
MP
820 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
821 if (!(hp->flags & PDC_FLAG_GEN_II))
822 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
1da177e4
LT
823 writel(tmp, mmio + PDC_FLASH_CTL);
824
825 /* clear plug/unplug flags for all ports */
6340f019
LK
826 tmp = readl(mmio + hotplug_offset);
827 writel(tmp | 0xff, mmio + hotplug_offset);
1da177e4
LT
828
829 /* mask plug/unplug ints */
6340f019
LK
830 tmp = readl(mmio + hotplug_offset);
831 writel(tmp | 0xff0000, mmio + hotplug_offset);
1da177e4 832
b2d1eee1
MP
833 /* don't initialise TBG or SLEW on 2nd generation chips */
834 if (hp->flags & PDC_FLAG_GEN_II)
835 return;
836
1da177e4
LT
837 /* reduce TBG clock to 133 Mhz. */
838 tmp = readl(mmio + PDC_TBG_MODE);
839 tmp &= ~0x30000; /* clear bit 17, 16*/
840 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
841 writel(tmp, mmio + PDC_TBG_MODE);
842
843 readl(mmio + PDC_TBG_MODE); /* flush */
844 msleep(10);
845
846 /* adjust slew rate control register. */
847 tmp = readl(mmio + PDC_SLEW_CTL);
848 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
849 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
850 writel(tmp, mmio + PDC_SLEW_CTL);
851}
852
853static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
854{
855 static int printed_version;
24dc5f33 856 struct ata_probe_ent *probe_ent;
6340f019 857 struct pdc_host_priv *hp;
0d5ff566 858 void __iomem *base;
1da177e4 859 unsigned int board_idx = (unsigned int) ent->driver_data;
1da177e4 860 int rc;
870ae337 861 u8 tmp;
1da177e4
LT
862
863 if (!printed_version++)
a9524a76 864 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
1da177e4 865
24dc5f33 866 rc = pcim_enable_device(pdev);
1da177e4
LT
867 if (rc)
868 return rc;
869
0d5ff566
TH
870 rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME);
871 if (rc == -EBUSY)
24dc5f33 872 pcim_pin_device(pdev);
0d5ff566 873 if (rc)
24dc5f33 874 return rc;
1da177e4
LT
875
876 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
877 if (rc)
24dc5f33 878 return rc;
1da177e4
LT
879 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
880 if (rc)
24dc5f33 881 return rc;
1da177e4 882
24dc5f33
TH
883 probe_ent = devm_kzalloc(&pdev->dev, sizeof(*probe_ent), GFP_KERNEL);
884 if (probe_ent == NULL)
885 return -ENOMEM;
1da177e4 886
1da177e4
LT
887 probe_ent->dev = pci_dev_to_dev(pdev);
888 INIT_LIST_HEAD(&probe_ent->node);
889
24dc5f33
TH
890 hp = devm_kzalloc(&pdev->dev, sizeof(*hp), GFP_KERNEL);
891 if (hp == NULL)
892 return -ENOMEM;
6340f019 893
6340f019
LK
894 probe_ent->private_data = hp;
895
1da177e4 896 probe_ent->sht = pdc_port_info[board_idx].sht;
cca3974e 897 probe_ent->port_flags = pdc_port_info[board_idx].flags;
1da177e4
LT
898 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
899 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
900 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
901 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
902
903 probe_ent->irq = pdev->irq;
1d6f359a 904 probe_ent->irq_flags = IRQF_SHARED;
0d5ff566
TH
905 probe_ent->iomap = pcim_iomap_table(pdev);
906
907 base = probe_ent->iomap[PDC_MMIO_BAR];
1da177e4 908
098cdff3
MP
909 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200, base + 0x400);
910 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280, base + 0x500);
1da177e4
LT
911
912 /* notice 4-port boards */
913 switch (board_idx) {
6340f019 914 case board_40518:
b2d1eee1 915 hp->flags |= PDC_FLAG_GEN_II;
6340f019 916 /* Fall through */
1da177e4
LT
917 case board_20319:
918 probe_ent->n_ports = 4;
098cdff3
MP
919 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300, base + 0x600);
920 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380, base + 0x700);
1da177e4 921 break;
6340f019 922 case board_2057x:
b2d1eee1 923 hp->flags |= PDC_FLAG_GEN_II;
6340f019 924 /* Fall through */
1da177e4 925 case board_2037x:
870ae337 926 /* TX2plus boards also have a PATA port */
0d5ff566 927 tmp = readb(base + PDC_FLASH_CTL+1);
870ae337
MP
928 if (!(tmp & 0x80)) {
929 probe_ent->n_ports = 3;
098cdff3 930 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300, NULL);
870ae337
MP
931 hp->port_flags[2] = ATA_FLAG_SLAVE_POSS;
932 printk(KERN_INFO DRV_NAME " PATA port found\n");
933 } else
934 probe_ent->n_ports = 2;
935 hp->port_flags[0] = ATA_FLAG_SATA;
936 hp->port_flags[1] = ATA_FLAG_SATA;
1da177e4 937 break;
f497ba73
TL
938 case board_20619:
939 probe_ent->n_ports = 4;
098cdff3
MP
940 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300, NULL);
941 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380, NULL);
6c9e5eb5 942 break;
1da177e4
LT
943 default:
944 BUG();
945 break;
946 }
947
948 pci_set_master(pdev);
949
950 /* initialize adapter */
951 pdc_host_init(board_idx, probe_ent);
952
6340f019 953 if (!ata_device_add(probe_ent))
24dc5f33 954 return -ENODEV;
1da177e4 955
24dc5f33 956 devm_kfree(&pdev->dev, probe_ent);
1da177e4 957 return 0;
1da177e4
LT
958}
959
960
961static int __init pdc_ata_init(void)
962{
b7887196 963 return pci_register_driver(&pdc_ata_pci_driver);
1da177e4
LT
964}
965
966
967static void __exit pdc_ata_exit(void)
968{
969 pci_unregister_driver(&pdc_ata_pci_driver);
970}
971
972
973MODULE_AUTHOR("Jeff Garzik");
f497ba73 974MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
1da177e4
LT
975MODULE_LICENSE("GPL");
976MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
977MODULE_VERSION(DRV_VERSION);
978
979module_init(pdc_ata_init);
980module_exit(pdc_ata_exit);
This page took 0.237172 seconds and 5 git commands to generate.