Merge with Linux 2.5.74.
[linux-2.6/linux-mips.git] / drivers / ide / ide-dma.c
blob70bb8d05c63ab3db47092488ee66eadba89b9060
1 /*
2 * linux/drivers/ide/ide-dma.c Version 4.10 June 9, 2000
4 * Copyright (c) 1999-2000 Andre Hedrick <andre@linux-ide.org>
5 * May be copied or modified under the terms of the GNU General Public License
6 */
8 /*
9 * Special Thanks to Mark for his Six years of work.
11 * Copyright (c) 1995-1998 Mark Lord
12 * May be copied or modified under the terms of the GNU General Public License
16 * This module provides support for the bus-master IDE DMA functions
17 * of various PCI chipsets, including the Intel PIIX (i82371FB for
18 * the 430 FX chipset), the PIIX3 (i82371SB for the 430 HX/VX and
19 * 440 chipsets), and the PIIX4 (i82371AB for the 430 TX chipset)
20 * ("PIIX" stands for "PCI ISA IDE Xcellerator").
22 * Pretty much the same code works for other IDE PCI bus-mastering chipsets.
24 * DMA is supported for all IDE devices (disk drives, cdroms, tapes, floppies).
26 * By default, DMA support is prepared for use, but is currently enabled only
27 * for drives which already have DMA enabled (UltraDMA or mode 2 multi/single),
28 * or which are recognized as "good" (see table below). Drives with only mode0
29 * or mode1 (multi/single) DMA should also work with this chipset/driver
30 * (eg. MC2112A) but are not enabled by default.
32 * Use "hdparm -i" to view modes supported by a given drive.
34 * The hdparm-3.5 (or later) utility can be used for manually enabling/disabling
35 * DMA support, but must be (re-)compiled against this kernel version or later.
37 * To enable DMA, use "hdparm -d1 /dev/hd?" on a per-drive basis after booting.
38 * If problems arise, ide.c will disable DMA operation after a few retries.
39 * This error recovery mechanism works and has been extremely well exercised.
41 * IDE drives, depending on their vintage, may support several different modes
42 * of DMA operation. The boot-time modes are indicated with a "*" in
43 * the "hdparm -i" listing, and can be changed with *knowledgeable* use of
44 * the "hdparm -X" feature. There is seldom a need to do this, as drives
45 * normally power-up with their "best" PIO/DMA modes enabled.
47 * Testing has been done with a rather extensive number of drives,
48 * with Quantum & Western Digital models generally outperforming the pack,
49 * and Fujitsu & Conner (and some Seagate which are really Conner) drives
50 * showing more lackluster throughput.
52 * Keep an eye on /var/adm/messages for "DMA disabled" messages.
54 * Some people have reported trouble with Intel Zappa motherboards.
55 * This can be fixed by upgrading the AMI BIOS to version 1.00.04.BS0,
56 * available from ftp://ftp.intel.com/pub/bios/10004bs0.exe
57 * (thanks to Glen Morrell <glen@spin.Stanford.edu> for researching this).
59 * Thanks to "Christopher J. Reimer" <reimer@doe.carleton.ca> for
60 * fixing the problem with the BIOS on some Acer motherboards.
62 * Thanks to "Benoit Poulot-Cazajous" <poulot@chorus.fr> for testing
63 * "TX" chipset compatibility and for providing patches for the "TX" chipset.
65 * Thanks to Christian Brunner <chb@muc.de> for taking a good first crack
66 * at generic DMA -- his patches were referred to when preparing this code.
68 * Most importantly, thanks to Robert Bringman <rob@mars.trion.com>
69 * for supplying a Promise UDMA board & WD UDMA drive for this work!
71 * And, yes, Intel Zappa boards really *do* use both PIIX IDE ports.
73 * ATA-66/100 and recovery functions, I forgot the rest......
77 #include <linux/config.h>
78 #include <linux/module.h>
79 #include <linux/types.h>
80 #include <linux/kernel.h>
81 #include <linux/timer.h>
82 #include <linux/mm.h>
83 #include <linux/interrupt.h>
84 #include <linux/pci.h>
85 #include <linux/init.h>
86 #include <linux/ide.h>
87 #include <linux/delay.h>
89 #include <asm/io.h>
90 #include <asm/irq.h>
92 struct drive_list_entry {
93 char * id_model;
94 char * id_firmware;
97 struct drive_list_entry drive_whitelist [] = {
99 { "Micropolis 2112A" , "ALL" },
100 { "CONNER CTMA 4000" , "ALL" },
101 { "CONNER CTT8000-A" , "ALL" },
102 { "ST34342A" , "ALL" },
103 { 0 , 0 }
106 struct drive_list_entry drive_blacklist [] = {
108 { "WDC AC11000H" , "ALL" },
109 { "WDC AC22100H" , "ALL" },
110 { "WDC AC32500H" , "ALL" },
111 { "WDC AC33100H" , "ALL" },
112 { "WDC AC31600H" , "ALL" },
113 { "WDC AC32100H" , "24.09P07" },
114 { "WDC AC23200L" , "21.10N21" },
115 { "Compaq CRD-8241B" , "ALL" },
116 { "CRD-8400B" , "ALL" },
117 { "CRD-8480B", "ALL" },
118 { "CRD-8480C", "ALL" },
119 { "CRD-8482B", "ALL" },
120 { "CRD-84" , "ALL" },
121 { "SanDisk SDP3B" , "ALL" },
122 { "SanDisk SDP3B-64" , "ALL" },
123 { "SANYO CD-ROM CRD" , "ALL" },
124 { "HITACHI CDR-8" , "ALL" },
125 { "HITACHI CDR-8335" , "ALL" },
126 { "HITACHI CDR-8435" , "ALL" },
127 { "Toshiba CD-ROM XM-6202B" , "ALL" },
128 { "CD-532E-A" , "ALL" },
129 { "E-IDE CD-ROM CR-840", "ALL" },
130 { "CD-ROM Drive/F5A", "ALL" },
131 { "RICOH CD-R/RW MP7083A", "ALL" },
132 { "WPI CDD-820", "ALL" },
133 { "SAMSUNG CD-ROM SC-148C", "ALL" },
134 { "SAMSUNG CD-ROM SC-148F", "ALL" },
135 { "SAMSUNG CD-ROM SC", "ALL" },
136 { "SanDisk SDP3B-64" , "ALL" },
137 { "SAMSUNG CD-ROM SN-124", "ALL" },
138 { "PLEXTOR CD-R PX-W8432T", "ALL" },
139 { "ATAPI CD-ROM DRIVE 40X MAXIMUM", "ALL" },
140 { "_NEC DV5800A", "ALL" },
141 { 0 , 0 }
146 * in_drive_list - look for drive in black/white list
147 * @id: drive identifier
148 * @drive_table: list to inspect
150 * Look for a drive in the blacklist and the whitelist tables
151 * Returns 1 if the drive is found in the table.
154 static int in_drive_list(struct hd_driveid *id, struct drive_list_entry * drive_table)
156 for ( ; drive_table->id_model ; drive_table++)
157 if ((!strcmp(drive_table->id_model, id->model)) &&
158 ((strstr(drive_table->id_firmware, id->fw_rev)) ||
159 (!strcmp(drive_table->id_firmware, "ALL"))))
160 return 1;
161 return 0;
165 * ide_dma_intr - IDE DMA interrupt handler
166 * @drive: the drive the interrupt is for
168 * Handle an interrupt completing a read/write DMA transfer on an
169 * IDE device
172 ide_startstop_t ide_dma_intr (ide_drive_t *drive)
174 u8 stat = 0, dma_stat = 0;
176 dma_stat = HWIF(drive)->ide_dma_end(drive);
177 stat = HWIF(drive)->INB(IDE_STATUS_REG); /* get drive status */
178 if (OK_STAT(stat,DRIVE_READY,drive->bad_wstat|DRQ_STAT)) {
179 if (!dma_stat) {
180 struct request *rq = HWGROUP(drive)->rq;
182 DRIVER(drive)->end_request(drive, 1, rq->nr_sectors);
183 return ide_stopped;
185 printk(KERN_ERR "%s: dma_intr: bad DMA status (dma_stat=%x)\n",
186 drive->name, dma_stat);
188 return DRIVER(drive)->error(drive, "dma_intr", stat);
191 EXPORT_SYMBOL_GPL(ide_dma_intr);
194 * ide_build_sglist - map IDE scatter gather for DMA I/O
195 * @drive: the drive to build the DMA table for
196 * @rq: the request holding the sg list
198 * Perform the PCI mapping magic necessary to access the source or
199 * target buffers of a request via PCI DMA. The lower layers of the
200 * kernel provide the necessary cache management so that we can
201 * operate in a portable fashion
204 static int ide_build_sglist (ide_drive_t *drive, struct request *rq)
206 ide_hwif_t *hwif = HWIF(drive);
207 struct scatterlist *sg = hwif->sg_table;
208 int nents;
210 if (hwif->sg_dma_active)
211 BUG();
213 nents = blk_rq_map_sg(&drive->queue, rq, hwif->sg_table);
215 if (rq_data_dir(rq) == READ)
216 hwif->sg_dma_direction = PCI_DMA_FROMDEVICE;
217 else
218 hwif->sg_dma_direction = PCI_DMA_TODEVICE;
220 return pci_map_sg(hwif->pci_dev, sg, nents, hwif->sg_dma_direction);
224 * ide_raw_build_sglist - map IDE scatter gather for DMA
225 * @drive: the drive to build the DMA table for
226 * @rq: the request holding the sg list
228 * Perform the PCI mapping magic necessary to access the source or
229 * target buffers of a taskfile request via PCI DMA. The lower layers
230 * of the kernel provide the necessary cache management so that we can
231 * operate in a portable fashion
234 static int ide_raw_build_sglist (ide_drive_t *drive, struct request *rq)
236 ide_hwif_t *hwif = HWIF(drive);
237 struct scatterlist *sg = hwif->sg_table;
238 int nents = 0;
239 ide_task_t *args = rq->special;
240 u8 *virt_addr = rq->buffer;
241 int sector_count = rq->nr_sectors;
243 if (args->command_type == IDE_DRIVE_TASK_RAW_WRITE)
244 hwif->sg_dma_direction = PCI_DMA_TODEVICE;
245 else
246 hwif->sg_dma_direction = PCI_DMA_FROMDEVICE;
248 #if 1
249 if (sector_count > 256)
250 BUG();
252 if (sector_count > 128) {
253 #else
254 while (sector_count > 128) {
255 #endif
256 memset(&sg[nents], 0, sizeof(*sg));
257 sg[nents].page = virt_to_page(virt_addr);
258 sg[nents].offset = (unsigned long) virt_addr & ~PAGE_MASK;
259 sg[nents].length = 128 * SECTOR_SIZE;
260 nents++;
261 virt_addr = virt_addr + (128 * SECTOR_SIZE);
262 sector_count -= 128;
264 memset(&sg[nents], 0, sizeof(*sg));
265 sg[nents].page = virt_to_page(virt_addr);
266 sg[nents].offset = (unsigned long) virt_addr & ~PAGE_MASK;
267 sg[nents].length = sector_count * SECTOR_SIZE;
268 nents++;
270 return pci_map_sg(hwif->pci_dev, sg, nents, hwif->sg_dma_direction);
274 * ide_build_dmatable - build IDE DMA table
276 * ide_build_dmatable() prepares a dma request. We map the command
277 * to get the pci bus addresses of the buffers and then build up
278 * the PRD table that the IDE layer wants to be fed. The code
279 * knows about the 64K wrap bug in the CS5530.
281 * Returns 0 if all went okay, returns 1 otherwise.
282 * May also be invoked from trm290.c
285 int ide_build_dmatable (ide_drive_t *drive, struct request *rq)
287 ide_hwif_t *hwif = HWIF(drive);
288 unsigned int *table = hwif->dmatable_cpu;
289 unsigned int is_trm290 = (hwif->chipset == ide_trm290) ? 1 : 0;
290 unsigned int count = 0;
291 int i;
292 struct scatterlist *sg;
294 if (HWGROUP(drive)->rq->flags & REQ_DRIVE_TASKFILE)
295 hwif->sg_nents = i = ide_raw_build_sglist(drive, rq);
296 else
297 hwif->sg_nents = i = ide_build_sglist(drive, rq);
299 if (!i)
300 return 0;
302 sg = hwif->sg_table;
303 while (i) {
304 u32 cur_addr;
305 u32 cur_len;
307 cur_addr = sg_dma_address(sg);
308 cur_len = sg_dma_len(sg);
311 * Fill in the dma table, without crossing any 64kB boundaries.
312 * Most hardware requires 16-bit alignment of all blocks,
313 * but the trm290 requires 32-bit alignment.
316 while (cur_len) {
317 if (count++ >= PRD_ENTRIES) {
318 printk(KERN_ERR "%s: DMA table too small\n", drive->name);
319 goto use_pio_instead;
320 } else {
321 u32 xcount, bcount = 0x10000 - (cur_addr & 0xffff);
323 if (bcount > cur_len)
324 bcount = cur_len;
325 *table++ = cpu_to_le32(cur_addr);
326 xcount = bcount & 0xffff;
327 if (is_trm290)
328 xcount = ((xcount >> 2) - 1) << 16;
329 if (xcount == 0x0000) {
331 * Most chipsets correctly interpret a length of 0x0000 as 64KB,
332 * but at least one (e.g. CS5530) misinterprets it as zero (!).
333 * So here we break the 64KB entry into two 32KB entries instead.
335 if (count++ >= PRD_ENTRIES) {
336 printk(KERN_ERR "%s: DMA table too small\n", drive->name);
337 goto use_pio_instead;
339 *table++ = cpu_to_le32(0x8000);
340 *table++ = cpu_to_le32(cur_addr + 0x8000);
341 xcount = 0x8000;
343 *table++ = cpu_to_le32(xcount);
344 cur_addr += bcount;
345 cur_len -= bcount;
349 sg++;
350 i--;
353 if (count) {
354 if (!is_trm290)
355 *--table |= cpu_to_le32(0x80000000);
356 return count;
358 printk(KERN_ERR "%s: empty DMA table?\n", drive->name);
359 use_pio_instead:
360 pci_unmap_sg(hwif->pci_dev,
361 hwif->sg_table,
362 hwif->sg_nents,
363 hwif->sg_dma_direction);
364 hwif->sg_dma_active = 0;
365 return 0; /* revert to PIO for this request */
368 EXPORT_SYMBOL_GPL(ide_build_dmatable);
371 * ide_destroy_dmatable - clean up DMA mapping
372 * @drive: The drive to unmap
374 * Teardown mappings after DMA has completed. This must be called
375 * after the completion of each use of ide_build_dmatable and before
376 * the next use of ide_build_dmatable. Failure to do so will cause
377 * an oops as only one mapping can be live for each target at a given
378 * time.
381 void ide_destroy_dmatable (ide_drive_t *drive)
383 struct pci_dev *dev = HWIF(drive)->pci_dev;
384 struct scatterlist *sg = HWIF(drive)->sg_table;
385 int nents = HWIF(drive)->sg_nents;
387 pci_unmap_sg(dev, sg, nents, HWIF(drive)->sg_dma_direction);
388 HWIF(drive)->sg_dma_active = 0;
391 EXPORT_SYMBOL_GPL(ide_destroy_dmatable);
394 * config_drive_for_dma - attempt to activate IDE DMA
395 * @drive: the drive to place in DMA mode
397 * If the drive supports at least mode 2 DMA or UDMA of any kind
398 * then attempt to place it into DMA mode. Drives that are known to
399 * support DMA but predate the DMA properties or that are known
400 * to have DMA handling bugs are also set up appropriately based
401 * on the good/bad drive lists.
404 static int config_drive_for_dma (ide_drive_t *drive)
406 struct hd_driveid *id = drive->id;
407 ide_hwif_t *hwif = HWIF(drive);
409 if ((id->capability & 1) && hwif->autodma) {
410 /* Consult the list of known "bad" drives */
411 if (hwif->ide_dma_bad_drive(drive))
412 return hwif->ide_dma_off(drive);
415 * Enable DMA on any drive that has
416 * UltraDMA (mode 0/1/2/3/4/5/6) enabled
418 if ((id->field_valid & 4) && ((id->dma_ultra >> 8) & 0x7f))
419 return hwif->ide_dma_on(drive);
421 * Enable DMA on any drive that has mode2 DMA
422 * (multi or single) enabled
424 if (id->field_valid & 2) /* regular DMA */
425 if ((id->dma_mword & 0x404) == 0x404 ||
426 (id->dma_1word & 0x404) == 0x404)
427 return hwif->ide_dma_on(drive);
429 /* Consult the list of known "good" drives */
430 if (hwif->ide_dma_good_drive(drive))
431 return hwif->ide_dma_on(drive);
433 // if (hwif->tuneproc != NULL) hwif->tuneproc(drive, 255);
434 return hwif->ide_dma_off_quietly(drive);
438 * dma_timer_expiry - handle a DMA timeout
439 * @drive: Drive that timed out
441 * An IDE DMA transfer timed out. In the event of an error we ask
442 * the driver to resolve the problem, if a DMA transfer is still
443 * in progress we continue to wait (arguably we need to add a
444 * secondary 'I don't care what the drive thinks' timeout here)
445 * Finally if we have an interrupt but for some reason got the
446 * timeout first we complete the I/O. This can occur if an
447 * interrupt is lost or due to bugs.
450 static int dma_timer_expiry (ide_drive_t *drive)
452 ide_hwif_t *hwif = HWIF(drive);
453 u8 dma_stat = hwif->INB(hwif->dma_status);
455 printk(KERN_WARNING "%s: dma_timer_expiry: dma status == 0x%02x\n",
456 drive->name, dma_stat);
458 if ((dma_stat & 0x18) == 0x18) /* BUSY Stupid Early Timer !! */
459 return WAIT_CMD;
461 HWGROUP(drive)->expiry = NULL; /* one free ride for now */
463 /* 1 dmaing, 2 error, 4 intr */
465 if (dma_stat & 2) { /* ERROR */
466 (void) hwif->ide_dma_end(drive);
467 return DRIVER(drive)->error(drive,
468 "dma_timer_expiry", hwif->INB(IDE_STATUS_REG));
470 if (dma_stat & 1) /* DMAing */
471 return WAIT_CMD;
473 if (dma_stat & 4) /* Got an Interrupt */
474 HWGROUP(drive)->handler(drive);
476 return 0;
480 * __ide_dma_host_off - Generic DMA kill
481 * @drive: drive to control
483 * Perform the generic IDE controller DMA off operation. This
484 * works for most IDE bus mastering controllers
487 int __ide_dma_host_off (ide_drive_t *drive)
489 ide_hwif_t *hwif = HWIF(drive);
490 u8 unit = (drive->select.b.unit & 0x01);
491 u8 dma_stat = hwif->INB(hwif->dma_status);
493 hwif->OUTB((dma_stat & ~(1<<(5+unit))), hwif->dma_status);
494 return 0;
497 EXPORT_SYMBOL(__ide_dma_host_off);
500 * __ide_dma_host_off_quietly - Generic DMA kill
501 * @drive: drive to control
503 * Turn off the current DMA on this IDE controller.
506 int __ide_dma_off_quietly (ide_drive_t *drive)
508 drive->using_dma = 0;
509 ide_toggle_bounce(drive, 0);
511 if (HWIF(drive)->ide_dma_host_off(drive))
512 return 1;
514 HWIF(drive)->ide_dma_queued_off(drive);
516 return 0;
519 EXPORT_SYMBOL(__ide_dma_off_quietly);
522 * __ide_dma_host_off - Generic DMA kill
523 * @drive: drive to control
525 * Turn off the current DMA on this IDE controller. Inform the
526 * user that DMA has been disabled.
529 int __ide_dma_off (ide_drive_t *drive)
531 printk(KERN_INFO "%s: DMA disabled\n", drive->name);
532 return HWIF(drive)->ide_dma_off_quietly(drive);
535 EXPORT_SYMBOL(__ide_dma_off);
538 * __ide_dma_host_on - Enable DMA on a host
539 * @drive: drive to enable for DMA
541 * Enable DMA on an IDE controller following generic bus mastering
542 * IDE controller behaviour
545 int __ide_dma_host_on (ide_drive_t *drive)
547 if (drive->using_dma) {
548 ide_hwif_t *hwif = HWIF(drive);
549 u8 unit = (drive->select.b.unit & 0x01);
550 u8 dma_stat = hwif->INB(hwif->dma_status);
552 hwif->OUTB((dma_stat|(1<<(5+unit))), hwif->dma_status);
553 return 0;
555 return 1;
558 EXPORT_SYMBOL(__ide_dma_host_on);
561 * __ide_dma_on - Enable DMA on a device
562 * @drive: drive to enable DMA on
564 * Enable IDE DMA for a device on this IDE controller.
567 int __ide_dma_on (ide_drive_t *drive)
569 drive->using_dma = 1;
570 ide_toggle_bounce(drive, 1);
572 if (HWIF(drive)->ide_dma_host_on(drive))
573 return 1;
575 #ifdef CONFIG_BLK_DEV_IDE_TCQ_DEFAULT
576 HWIF(drive)->ide_dma_queued_on(drive);
577 #endif
579 return 0;
582 EXPORT_SYMBOL(__ide_dma_on);
585 * __ide_dma_check - check DMA setup
586 * @drive: drive to check
588 * Don't use - due for extermination
591 int __ide_dma_check (ide_drive_t *drive)
593 return config_drive_for_dma(drive);
596 EXPORT_SYMBOL(__ide_dma_check);
599 * ide_start_dma - begin a DMA phase
600 * @hwif: interface
601 * @drive: target device
602 * @reading: set if reading, clear if writing
604 * Build an IDE DMA PRD (IDE speak for scatter gather table)
605 * and then set up the DMA transfer registers for a device
606 * that follows generic IDE PCI DMA behaviour. Controllers can
607 * override this function if they need to
609 * Returns 0 on success. If a PIO fallback is required then 1
610 * is returned.
613 int ide_start_dma(ide_hwif_t *hwif, ide_drive_t *drive, int reading)
615 struct request *rq = HWGROUP(drive)->rq;
616 u8 dma_stat;
618 /* fall back to pio! */
619 if (!ide_build_dmatable(drive, rq))
620 return 1;
622 /* PRD table */
623 hwif->OUTL(hwif->dmatable_dma, hwif->dma_prdtable);
625 /* specify r/w */
626 hwif->OUTB(reading, hwif->dma_command);
628 /* read dma_status for INTR & ERROR flags */
629 dma_stat = hwif->INB(hwif->dma_status);
631 /* clear INTR & ERROR flags */
632 hwif->OUTB(dma_stat|6, hwif->dma_status);
633 drive->waiting_for_dma = 1;
634 return 0;
637 EXPORT_SYMBOL(ide_start_dma);
639 int __ide_dma_read (ide_drive_t *drive /*, struct request *rq */)
641 ide_hwif_t *hwif = HWIF(drive);
642 struct request *rq = HWGROUP(drive)->rq;
643 unsigned int reading = 1 << 3;
644 u8 lba48 = (drive->addressing == 1) ? 1 : 0;
645 task_ioreg_t command = WIN_NOP;
647 /* try pio */
648 if (ide_start_dma(hwif, drive, reading))
649 return 1;
651 if (drive->media != ide_disk)
652 return 0;
654 command = (lba48) ? WIN_READDMA_EXT : WIN_READDMA;
656 if (drive->vdma)
657 command = (lba48) ? WIN_READ_EXT: WIN_READ;
659 if (rq->flags & REQ_DRIVE_TASKFILE) {
660 ide_task_t *args = rq->special;
661 command = args->tfRegister[IDE_COMMAND_OFFSET];
664 /* issue cmd to drive */
665 ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, dma_timer_expiry);
666 return HWIF(drive)->ide_dma_count(drive);
669 EXPORT_SYMBOL(__ide_dma_read);
671 int __ide_dma_write (ide_drive_t *drive /*, struct request *rq */)
673 ide_hwif_t *hwif = HWIF(drive);
674 struct request *rq = HWGROUP(drive)->rq;
675 unsigned int reading = 0;
676 u8 lba48 = (drive->addressing == 1) ? 1 : 0;
677 task_ioreg_t command = WIN_NOP;
679 /* try PIO instead of DMA */
680 if (ide_start_dma(hwif, drive, reading))
681 return 1;
683 if (drive->media != ide_disk)
684 return 0;
686 command = (lba48) ? WIN_WRITEDMA_EXT : WIN_WRITEDMA;
687 if (drive->vdma)
688 command = (lba48) ? WIN_WRITE_EXT: WIN_WRITE;
690 if (rq->flags & REQ_DRIVE_TASKFILE) {
691 ide_task_t *args = rq->special;
692 command = args->tfRegister[IDE_COMMAND_OFFSET];
695 /* issue cmd to drive */
696 ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, dma_timer_expiry);
698 return HWIF(drive)->ide_dma_count(drive);
701 EXPORT_SYMBOL(__ide_dma_write);
703 int __ide_dma_begin (ide_drive_t *drive)
705 ide_hwif_t *hwif = HWIF(drive);
706 u8 dma_cmd = hwif->INB(hwif->dma_command);
708 /* Note that this is done *after* the cmd has
709 * been issued to the drive, as per the BM-IDE spec.
710 * The Promise Ultra33 doesn't work correctly when
711 * we do this part before issuing the drive cmd.
713 /* start DMA */
714 hwif->OUTB(dma_cmd|1, hwif->dma_command);
715 hwif->dma = 1;
716 wmb();
717 return 0;
720 EXPORT_SYMBOL(__ide_dma_begin);
722 /* returns 1 on error, 0 otherwise */
723 int __ide_dma_end (ide_drive_t *drive)
725 ide_hwif_t *hwif = HWIF(drive);
726 u8 dma_stat = 0, dma_cmd = 0;
728 drive->waiting_for_dma = 0;
729 /* get dma_command mode */
730 dma_cmd = hwif->INB(hwif->dma_command);
731 /* stop DMA */
732 hwif->OUTB(dma_cmd&~1, hwif->dma_command);
733 /* get DMA status */
734 dma_stat = hwif->INB(hwif->dma_status);
735 /* clear the INTR & ERROR bits */
736 hwif->OUTB(dma_stat|6, hwif->dma_status);
737 /* purge DMA mappings */
738 ide_destroy_dmatable(drive);
739 /* verify good DMA status */
740 hwif->dma = 0;
741 wmb();
742 return (dma_stat & 7) != 4 ? (0x10 | dma_stat) : 0;
745 EXPORT_SYMBOL(__ide_dma_end);
747 /* returns 1 if dma irq issued, 0 otherwise */
748 int __ide_dma_test_irq (ide_drive_t *drive)
750 ide_hwif_t *hwif = HWIF(drive);
751 u8 dma_stat = hwif->INB(hwif->dma_status);
753 #if 0 /* do not set unless you know what you are doing */
754 if (dma_stat & 4) {
755 u8 stat = hwif->INB(IDE_STATUS_REG);
756 hwif->OUTB(hwif->dma_status, dma_stat & 0xE4);
758 #endif
759 /* return 1 if INTR asserted */
760 if ((dma_stat & 4) == 4)
761 return 1;
762 if (!drive->waiting_for_dma)
763 printk(KERN_WARNING "%s: (%s) called while not waiting\n",
764 drive->name, __FUNCTION__);
765 return 0;
768 EXPORT_SYMBOL(__ide_dma_test_irq);
770 int __ide_dma_bad_drive (ide_drive_t *drive)
772 struct hd_driveid *id = drive->id;
774 int blacklist = in_drive_list(id, drive_blacklist);
775 if (blacklist) {
776 printk(KERN_WARNING "%s: Disabling (U)DMA for %s\n", drive->name, id->model);
777 return(blacklist);
779 return 0;
782 EXPORT_SYMBOL(__ide_dma_bad_drive);
784 int __ide_dma_good_drive (ide_drive_t *drive)
786 struct hd_driveid *id = drive->id;
787 return in_drive_list(id, drive_whitelist);
790 EXPORT_SYMBOL(__ide_dma_good_drive);
793 * Used for HOST FIFO counters for VDMA
794 * PIO over DMA, effective ATA-Bridge operator.
796 int __ide_dma_count (ide_drive_t *drive)
798 return HWIF(drive)->ide_dma_begin(drive);
801 EXPORT_SYMBOL(__ide_dma_count);
803 int __ide_dma_verbose (ide_drive_t *drive)
805 struct hd_driveid *id = drive->id;
806 ide_hwif_t *hwif = HWIF(drive);
808 if (id->field_valid & 4) {
809 if ((id->dma_ultra >> 8) && (id->dma_mword >> 8)) {
810 printk(", BUG DMA OFF");
811 return hwif->ide_dma_off_quietly(drive);
813 if (id->dma_ultra & ((id->dma_ultra >> 8) & hwif->ultra_mask)) {
814 if (((id->dma_ultra >> 11) & 0x1F) &&
815 eighty_ninty_three(drive)) {
816 if ((id->dma_ultra >> 15) & 1) {
817 printk(", UDMA(mode 7)");
818 } else if ((id->dma_ultra >> 14) & 1) {
819 printk(", UDMA(133)");
820 } else if ((id->dma_ultra >> 13) & 1) {
821 printk(", UDMA(100)");
822 } else if ((id->dma_ultra >> 12) & 1) {
823 printk(", UDMA(66)");
824 } else if ((id->dma_ultra >> 11) & 1) {
825 printk(", UDMA(44)");
826 } else
827 goto mode_two;
828 } else {
829 mode_two:
830 if ((id->dma_ultra >> 10) & 1) {
831 printk(", UDMA(33)");
832 } else if ((id->dma_ultra >> 9) & 1) {
833 printk(", UDMA(25)");
834 } else if ((id->dma_ultra >> 8) & 1) {
835 printk(", UDMA(16)");
838 } else {
839 printk(", (U)DMA"); /* Can be BIOS-enabled! */
841 } else if (id->field_valid & 2) {
842 if ((id->dma_mword >> 8) && (id->dma_1word >> 8)) {
843 printk(", BUG DMA OFF");
844 return hwif->ide_dma_off_quietly(drive);
846 printk(", DMA");
847 } else if (id->field_valid & 1) {
848 printk(", BUG");
850 return 1;
853 EXPORT_SYMBOL(__ide_dma_verbose);
856 * __ide_dma_retune - default retune handler
857 * @drive: drive to retune
859 * Default behaviour when we decide to return the IDE DMA setup.
860 * The default behaviour is "we don't"
863 int __ide_dma_retune (ide_drive_t *drive)
865 printk(KERN_WARNING "%s: chipset supported call only\n", __FUNCTION__);
866 return 1;
869 EXPORT_SYMBOL(__ide_dma_retune);
871 int __ide_dma_lostirq (ide_drive_t *drive)
873 printk("%s: DMA interrupt recovery\n", drive->name);
874 return 1;
877 EXPORT_SYMBOL(__ide_dma_lostirq);
879 int __ide_dma_timeout (ide_drive_t *drive)
881 printk(KERN_ERR "%s: timeout waiting for DMA\n", drive->name);
882 if (HWIF(drive)->ide_dma_test_irq(drive))
883 return 0;
885 return HWIF(drive)->ide_dma_end(drive);
888 EXPORT_SYMBOL(__ide_dma_timeout);
891 * Needed for allowing full modular support of ide-driver
893 int ide_release_dma_engine (ide_hwif_t *hwif)
895 if (hwif->dmatable_cpu) {
896 pci_free_consistent(hwif->pci_dev,
897 PRD_ENTRIES * PRD_BYTES,
898 hwif->dmatable_cpu,
899 hwif->dmatable_dma);
900 hwif->dmatable_cpu = NULL;
902 if (hwif->sg_table) {
903 kfree(hwif->sg_table);
904 hwif->sg_table = NULL;
906 return 1;
909 int ide_release_mmio_dma (ide_hwif_t *hwif)
911 if ((hwif->dma_extra) && (hwif->channel == 0))
912 release_mem_region((hwif->dma_base + 16), hwif->dma_extra);
913 release_mem_region(hwif->dma_base, 8);
914 if (hwif->dma_base2)
915 release_mem_region(hwif->dma_base, 8);
916 return 1;
919 int ide_release_iomio_dma (ide_hwif_t *hwif)
921 if ((hwif->dma_extra) && (hwif->channel == 0))
922 release_region((hwif->dma_base + 16), hwif->dma_extra);
923 release_region(hwif->dma_base, 8);
924 if (hwif->dma_base2)
925 release_region(hwif->dma_base, 8);
926 return 1;
930 * Needed for allowing full modular support of ide-driver
932 int ide_release_dma (ide_hwif_t *hwif)
934 if (hwif->chipset == ide_etrax100)
935 return 1;
937 ide_release_dma_engine(hwif);
938 if (hwif->mmio)
939 return ide_release_mmio_dma(hwif);
940 return ide_release_iomio_dma(hwif);
943 int ide_allocate_dma_engine (ide_hwif_t *hwif)
945 hwif->dmatable_cpu = pci_alloc_consistent(hwif->pci_dev,
946 PRD_ENTRIES * PRD_BYTES,
947 &hwif->dmatable_dma);
948 hwif->sg_table = kmalloc(sizeof(struct scatterlist) * PRD_ENTRIES,
949 GFP_KERNEL);
951 if ((hwif->dmatable_cpu) && (hwif->sg_table))
952 return 0;
954 printk(KERN_ERR "%s: -- Error, unable to allocate%s%s table(s).\n",
955 (hwif->dmatable_cpu == NULL) ? " CPU" : "",
956 (hwif->sg_table == NULL) ? " SG DMA" : " DMA",
957 hwif->cds->name);
959 ide_release_dma_engine(hwif);
960 return 1;
963 int ide_mmio_dma (ide_hwif_t *hwif, unsigned long base, unsigned int ports)
965 printk(KERN_INFO " %s: MMIO-DMA at 0x%08lx-0x%08lx",
966 hwif->name, base, base + ports - 1);
967 if (!request_mem_region(base, ports, hwif->name))
968 goto fail;
969 hwif->dma_base = base;
970 if ((hwif->cds->extra) && (hwif->channel == 0)) {
971 if (!request_region(base+16, hwif->cds->extra, hwif->cds->name))
972 goto release_mem;
973 hwif->dma_extra = hwif->cds->extra;
976 if(hwif->mate)
977 hwif->dma_master = (hwif->channel) ? hwif->mate->dma_base : base;
978 else
979 hwif->dma_master = base;
980 if (hwif->dma_base2) {
981 if (!request_mem_region(hwif->dma_base2, ports, hwif->name))
982 goto release_io;
984 return 0;
986 release_mem:
987 release_mem_region(base, ports);
988 release_io:
989 release_region(base+16, hwif->cds->extra);
990 fail:
991 printk(" -- Error, MMIO ports already in use.\n");
992 return 1;
995 int ide_iomio_dma (ide_hwif_t *hwif, unsigned long base, unsigned int ports)
997 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx",
998 hwif->name, base, base + ports - 1);
999 if (!request_region(base, ports, hwif->name)) {
1000 printk(" -- Error, ports in use.\n");
1001 return 1;
1003 hwif->dma_base = base;
1004 if ((hwif->cds->extra) && (hwif->channel == 0)) {
1005 request_region(base+16, hwif->cds->extra, hwif->cds->name);
1006 hwif->dma_extra = hwif->cds->extra;
1009 if(hwif->mate)
1010 hwif->dma_master = (hwif->channel) ? hwif->mate->dma_base : base;
1011 else
1012 hwif->dma_master = base;
1013 if (hwif->dma_base2) {
1014 if (!request_region(hwif->dma_base2, ports, hwif->name))
1016 printk(" -- Error, secondary ports in use.\n");
1017 release_region(base, ports);
1018 return 1;
1021 return 0;
1027 int ide_dma_iobase (ide_hwif_t *hwif, unsigned long base, unsigned int ports)
1029 if (hwif->mmio)
1030 return ide_mmio_dma(hwif, base, ports);
1031 return ide_iomio_dma(hwif, base, ports);
1035 * This can be called for a dynamically installed interface. Don't __init it
1037 void ide_setup_dma (ide_hwif_t *hwif, unsigned long dma_base, unsigned int num_ports)
1039 if (ide_dma_iobase(hwif, dma_base, num_ports))
1040 return;
1042 if (ide_allocate_dma_engine(hwif)) {
1043 ide_release_dma(hwif);
1044 return;
1047 if (!(hwif->dma_command))
1048 hwif->dma_command = hwif->dma_base;
1049 if (!(hwif->dma_vendor1))
1050 hwif->dma_vendor1 = (hwif->dma_base + 1);
1051 if (!(hwif->dma_status))
1052 hwif->dma_status = (hwif->dma_base + 2);
1053 if (!(hwif->dma_vendor3))
1054 hwif->dma_vendor3 = (hwif->dma_base + 3);
1055 if (!(hwif->dma_prdtable))
1056 hwif->dma_prdtable = (hwif->dma_base + 4);
1058 if (!hwif->ide_dma_off)
1059 hwif->ide_dma_off = &__ide_dma_off;
1060 if (!hwif->ide_dma_off_quietly)
1061 hwif->ide_dma_off_quietly = &__ide_dma_off_quietly;
1062 if (!hwif->ide_dma_host_off)
1063 hwif->ide_dma_host_off = &__ide_dma_host_off;
1064 if (!hwif->ide_dma_on)
1065 hwif->ide_dma_on = &__ide_dma_on;
1066 if (!hwif->ide_dma_host_on)
1067 hwif->ide_dma_host_on = &__ide_dma_host_on;
1068 if (!hwif->ide_dma_check)
1069 hwif->ide_dma_check = &__ide_dma_check;
1070 if (!hwif->ide_dma_read)
1071 hwif->ide_dma_read = &__ide_dma_read;
1072 if (!hwif->ide_dma_write)
1073 hwif->ide_dma_write = &__ide_dma_write;
1074 if (!hwif->ide_dma_count)
1075 hwif->ide_dma_count = &__ide_dma_count;
1076 if (!hwif->ide_dma_begin)
1077 hwif->ide_dma_begin = &__ide_dma_begin;
1078 if (!hwif->ide_dma_end)
1079 hwif->ide_dma_end = &__ide_dma_end;
1080 if (!hwif->ide_dma_test_irq)
1081 hwif->ide_dma_test_irq = &__ide_dma_test_irq;
1082 if (!hwif->ide_dma_bad_drive)
1083 hwif->ide_dma_bad_drive = &__ide_dma_bad_drive;
1084 if (!hwif->ide_dma_good_drive)
1085 hwif->ide_dma_good_drive = &__ide_dma_good_drive;
1086 if (!hwif->ide_dma_verbose)
1087 hwif->ide_dma_verbose = &__ide_dma_verbose;
1088 if (!hwif->ide_dma_timeout)
1089 hwif->ide_dma_timeout = &__ide_dma_timeout;
1090 if (!hwif->ide_dma_retune)
1091 hwif->ide_dma_retune = &__ide_dma_retune;
1092 if (!hwif->ide_dma_lostirq)
1093 hwif->ide_dma_lostirq = &__ide_dma_lostirq;
1096 * dma queued ops. if tcq isn't set, queued on and off are just
1097 * dummy functions. cuts down on ifdef hell
1099 if (!hwif->ide_dma_queued_on)
1100 hwif->ide_dma_queued_on = __ide_dma_queued_on;
1101 if (!hwif->ide_dma_queued_off)
1102 hwif->ide_dma_queued_off = __ide_dma_queued_off;
1103 #ifdef CONFIG_BLK_DEV_IDE_TCQ
1104 if (!hwif->ide_dma_queued_read)
1105 hwif->ide_dma_queued_read = __ide_dma_queued_read;
1106 if (!hwif->ide_dma_queued_write)
1107 hwif->ide_dma_queued_write = __ide_dma_queued_write;
1108 if (!hwif->ide_dma_queued_start)
1109 hwif->ide_dma_queued_start = __ide_dma_queued_start;
1110 #endif
1112 if (hwif->chipset != ide_trm290) {
1113 u8 dma_stat = hwif->INB(hwif->dma_status);
1114 printk(", BIOS settings: %s:%s%s, %s:%s%s",
1115 hwif->drives[0].name, (dma_stat & 0x20) ? "DMA" : "pio",
1116 hwif->drives[0].autotune == IDE_TUNE_BIOS ?
1117 " (used)" : "",
1118 hwif->drives[1].name, (dma_stat & 0x40) ? "DMA" : "pio",
1119 hwif->drives[1].autotune == IDE_TUNE_BIOS ?
1120 " (used)" : "");
1122 if (hwif->drives[0].autotune == IDE_TUNE_BIOS)
1123 hwif->drives[0].using_dma = (dma_stat & 0x20);
1124 if (hwif->drives[1].autotune == IDE_TUNE_BIOS)
1125 hwif->drives[1].using_dma = (dma_stat & 0x40);
1127 printk("\n");
1129 if (!(hwif->dma_master))
1130 BUG();
1133 EXPORT_SYMBOL_GPL(ide_setup_dma);