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
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>
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>
92 struct drive_list_entry
{
94 const char *id_firmware
;
97 static const struct drive_list_entry drive_whitelist
[] = {
99 { "Micropolis 2112A" , "ALL" },
100 { "CONNER CTMA 4000" , "ALL" },
101 { "CONNER CTT8000-A" , "ALL" },
102 { "ST34342A" , "ALL" },
106 static const 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" },
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
, const 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"))))
164 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
166 * ide_dma_intr - IDE DMA interrupt handler
167 * @drive: the drive the interrupt is for
169 * Handle an interrupt completing a read/write DMA transfer on an
173 ide_startstop_t
ide_dma_intr (ide_drive_t
*drive
)
175 u8 stat
= 0, dma_stat
= 0;
177 dma_stat
= HWIF(drive
)->ide_dma_end(drive
);
178 stat
= HWIF(drive
)->INB(IDE_STATUS_REG
); /* get drive status */
179 if (OK_STAT(stat
,DRIVE_READY
,drive
->bad_wstat
|DRQ_STAT
)) {
181 struct request
*rq
= HWGROUP(drive
)->rq
;
183 DRIVER(drive
)->end_request(drive
, 1, rq
->nr_sectors
);
186 printk(KERN_ERR
"%s: dma_intr: bad DMA status (dma_stat=%x)\n",
187 drive
->name
, dma_stat
);
189 return DRIVER(drive
)->error(drive
, "dma_intr", stat
);
192 EXPORT_SYMBOL_GPL(ide_dma_intr
);
195 * ide_build_sglist - map IDE scatter gather for DMA I/O
196 * @drive: the drive to build the DMA table for
197 * @rq: the request holding the sg list
199 * Perform the PCI mapping magic necessary to access the source or
200 * target buffers of a request via PCI DMA. The lower layers of the
201 * kernel provide the necessary cache management so that we can
202 * operate in a portable fashion
205 int ide_build_sglist(ide_drive_t
*drive
, struct request
*rq
)
207 ide_hwif_t
*hwif
= HWIF(drive
);
208 struct scatterlist
*sg
= hwif
->sg_table
;
211 nents
= blk_rq_map_sg(drive
->queue
, rq
, hwif
->sg_table
);
213 if (rq_data_dir(rq
) == READ
)
214 hwif
->sg_dma_direction
= PCI_DMA_FROMDEVICE
;
216 hwif
->sg_dma_direction
= PCI_DMA_TODEVICE
;
218 return pci_map_sg(hwif
->pci_dev
, sg
, nents
, hwif
->sg_dma_direction
);
221 EXPORT_SYMBOL_GPL(ide_build_sglist
);
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 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
;
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
;
246 hwif
->sg_dma_direction
= PCI_DMA_FROMDEVICE
;
249 if (sector_count
> 256)
252 if (sector_count
> 128) {
254 while (sector_count
> 128) {
256 memset(&sg
[nents
], 0, sizeof(*sg
));
257 sg
[nents
].page
= virt_to_page(virt_addr
);
258 sg
[nents
].offset
= offset_in_page(virt_addr
);
259 sg
[nents
].length
= 128 * SECTOR_SIZE
;
261 virt_addr
= virt_addr
+ (128 * SECTOR_SIZE
);
264 memset(&sg
[nents
], 0, sizeof(*sg
));
265 sg
[nents
].page
= virt_to_page(virt_addr
);
266 sg
[nents
].offset
= offset_in_page(virt_addr
);
267 sg
[nents
].length
= sector_count
* SECTOR_SIZE
;
270 return pci_map_sg(hwif
->pci_dev
, sg
, nents
, hwif
->sg_dma_direction
);
273 EXPORT_SYMBOL_GPL(ide_raw_build_sglist
);
276 * ide_build_dmatable - build IDE DMA table
278 * ide_build_dmatable() prepares a dma request. We map the command
279 * to get the pci bus addresses of the buffers and then build up
280 * the PRD table that the IDE layer wants to be fed. The code
281 * knows about the 64K wrap bug in the CS5530.
283 * Returns 0 if all went okay, returns 1 otherwise.
284 * May also be invoked from trm290.c
287 int ide_build_dmatable (ide_drive_t
*drive
, struct request
*rq
)
289 ide_hwif_t
*hwif
= HWIF(drive
);
290 unsigned int *table
= hwif
->dmatable_cpu
;
291 unsigned int is_trm290
= (hwif
->chipset
== ide_trm290
) ? 1 : 0;
292 unsigned int count
= 0;
294 struct scatterlist
*sg
;
296 if (HWGROUP(drive
)->rq
->flags
& REQ_DRIVE_TASKFILE
)
297 hwif
->sg_nents
= i
= ide_raw_build_sglist(drive
, rq
);
299 hwif
->sg_nents
= i
= ide_build_sglist(drive
, rq
);
309 cur_addr
= sg_dma_address(sg
);
310 cur_len
= sg_dma_len(sg
);
313 * Fill in the dma table, without crossing any 64kB boundaries.
314 * Most hardware requires 16-bit alignment of all blocks,
315 * but the trm290 requires 32-bit alignment.
319 if (count
++ >= PRD_ENTRIES
) {
320 printk(KERN_ERR
"%s: DMA table too small\n", drive
->name
);
321 goto use_pio_instead
;
323 u32 xcount
, bcount
= 0x10000 - (cur_addr
& 0xffff);
325 if (bcount
> cur_len
)
327 *table
++ = cpu_to_le32(cur_addr
);
328 xcount
= bcount
& 0xffff;
330 xcount
= ((xcount
>> 2) - 1) << 16;
331 if (xcount
== 0x0000) {
333 * Most chipsets correctly interpret a length of 0x0000 as 64KB,
334 * but at least one (e.g. CS5530) misinterprets it as zero (!).
335 * So here we break the 64KB entry into two 32KB entries instead.
337 if (count
++ >= PRD_ENTRIES
) {
338 printk(KERN_ERR
"%s: DMA table too small\n", drive
->name
);
339 goto use_pio_instead
;
341 *table
++ = cpu_to_le32(0x8000);
342 *table
++ = cpu_to_le32(cur_addr
+ 0x8000);
345 *table
++ = cpu_to_le32(xcount
);
357 *--table
|= cpu_to_le32(0x80000000);
360 printk(KERN_ERR
"%s: empty DMA table?\n", drive
->name
);
362 pci_unmap_sg(hwif
->pci_dev
,
365 hwif
->sg_dma_direction
);
366 return 0; /* revert to PIO for this request */
369 EXPORT_SYMBOL_GPL(ide_build_dmatable
);
372 * ide_destroy_dmatable - clean up DMA mapping
373 * @drive: The drive to unmap
375 * Teardown mappings after DMA has completed. This must be called
376 * after the completion of each use of ide_build_dmatable and before
377 * the next use of ide_build_dmatable. Failure to do so will cause
378 * an oops as only one mapping can be live for each target at a given
382 void ide_destroy_dmatable (ide_drive_t
*drive
)
384 struct pci_dev
*dev
= HWIF(drive
)->pci_dev
;
385 struct scatterlist
*sg
= HWIF(drive
)->sg_table
;
386 int nents
= HWIF(drive
)->sg_nents
;
388 pci_unmap_sg(dev
, sg
, nents
, HWIF(drive
)->sg_dma_direction
);
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
) {
411 * Enable DMA on any drive that has
412 * UltraDMA (mode 0/1/2/3/4/5/6) enabled
414 if ((id
->field_valid
& 4) && ((id
->dma_ultra
>> 8) & 0x7f))
415 return hwif
->ide_dma_on(drive
);
417 * Enable DMA on any drive that has mode2 DMA
418 * (multi or single) enabled
420 if (id
->field_valid
& 2) /* regular DMA */
421 if ((id
->dma_mword
& 0x404) == 0x404 ||
422 (id
->dma_1word
& 0x404) == 0x404)
423 return hwif
->ide_dma_on(drive
);
425 /* Consult the list of known "good" drives */
426 if (__ide_dma_good_drive(drive
))
427 return hwif
->ide_dma_on(drive
);
429 // if (hwif->tuneproc != NULL) hwif->tuneproc(drive, 255);
430 return hwif
->ide_dma_off_quietly(drive
);
434 * dma_timer_expiry - handle a DMA timeout
435 * @drive: Drive that timed out
437 * An IDE DMA transfer timed out. In the event of an error we ask
438 * the driver to resolve the problem, if a DMA transfer is still
439 * in progress we continue to wait (arguably we need to add a
440 * secondary 'I don't care what the drive thinks' timeout here)
441 * Finally if we have an interrupt we let it complete the I/O.
442 * But only one time - we clear expiry and if it's still not
443 * completed after WAIT_CMD, we error and retry in PIO.
444 * This can occur if an interrupt is lost or due to hang or bugs.
447 static int dma_timer_expiry (ide_drive_t
*drive
)
449 ide_hwif_t
*hwif
= HWIF(drive
);
450 u8 dma_stat
= hwif
->INB(hwif
->dma_status
);
452 printk(KERN_WARNING
"%s: dma_timer_expiry: dma status == 0x%02x\n",
453 drive
->name
, dma_stat
);
455 if ((dma_stat
& 0x18) == 0x18) /* BUSY Stupid Early Timer !! */
458 HWGROUP(drive
)->expiry
= NULL
; /* one free ride for now */
460 /* 1 dmaing, 2 error, 4 intr */
461 if (dma_stat
& 2) /* ERROR */
464 if (dma_stat
& 1) /* DMAing */
467 if (dma_stat
& 4) /* Got an Interrupt */
470 return 0; /* Status is unknown -- reset the bus */
474 * __ide_dma_host_off - Generic DMA kill
475 * @drive: drive to control
477 * Perform the generic IDE controller DMA off operation. This
478 * works for most IDE bus mastering controllers
481 int __ide_dma_host_off (ide_drive_t
*drive
)
483 ide_hwif_t
*hwif
= HWIF(drive
);
484 u8 unit
= (drive
->select
.b
.unit
& 0x01);
485 u8 dma_stat
= hwif
->INB(hwif
->dma_status
);
487 hwif
->OUTB((dma_stat
& ~(1<<(5+unit
))), hwif
->dma_status
);
491 EXPORT_SYMBOL(__ide_dma_host_off
);
494 * __ide_dma_host_off_quietly - Generic DMA kill
495 * @drive: drive to control
497 * Turn off the current DMA on this IDE controller.
500 int __ide_dma_off_quietly (ide_drive_t
*drive
)
502 drive
->using_dma
= 0;
503 ide_toggle_bounce(drive
, 0);
505 if (HWIF(drive
)->ide_dma_host_off(drive
))
511 EXPORT_SYMBOL(__ide_dma_off_quietly
);
512 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
515 * __ide_dma_off - disable DMA on a device
516 * @drive: drive to disable DMA on
518 * Disable IDE DMA for a device on this IDE controller.
519 * Inform the user that DMA has been disabled.
522 int __ide_dma_off (ide_drive_t
*drive
)
524 printk(KERN_INFO
"%s: DMA disabled\n", drive
->name
);
525 return HWIF(drive
)->ide_dma_off_quietly(drive
);
528 EXPORT_SYMBOL(__ide_dma_off
);
530 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
532 * __ide_dma_host_on - Enable DMA on a host
533 * @drive: drive to enable for DMA
535 * Enable DMA on an IDE controller following generic bus mastering
536 * IDE controller behaviour
539 int __ide_dma_host_on (ide_drive_t
*drive
)
541 if (drive
->using_dma
) {
542 ide_hwif_t
*hwif
= HWIF(drive
);
543 u8 unit
= (drive
->select
.b
.unit
& 0x01);
544 u8 dma_stat
= hwif
->INB(hwif
->dma_status
);
546 hwif
->OUTB((dma_stat
|(1<<(5+unit
))), hwif
->dma_status
);
552 EXPORT_SYMBOL(__ide_dma_host_on
);
555 * __ide_dma_on - Enable DMA on a device
556 * @drive: drive to enable DMA on
558 * Enable IDE DMA for a device on this IDE controller.
561 int __ide_dma_on (ide_drive_t
*drive
)
563 /* consult the list of known "bad" drives */
564 if (__ide_dma_bad_drive(drive
))
567 drive
->using_dma
= 1;
568 ide_toggle_bounce(drive
, 1);
570 if (HWIF(drive
)->ide_dma_host_on(drive
))
576 EXPORT_SYMBOL(__ide_dma_on
);
579 * __ide_dma_check - check DMA setup
580 * @drive: drive to check
582 * Don't use - due for extermination
585 int __ide_dma_check (ide_drive_t
*drive
)
587 return config_drive_for_dma(drive
);
590 EXPORT_SYMBOL(__ide_dma_check
);
593 * ide_start_dma - begin a DMA phase
595 * @drive: target device
596 * @reading: set if reading, clear if writing
598 * Build an IDE DMA PRD (IDE speak for scatter gather table)
599 * and then set up the DMA transfer registers for a device
600 * that follows generic IDE PCI DMA behaviour. Controllers can
601 * override this function if they need to
603 * Returns 0 on success. If a PIO fallback is required then 1
607 int ide_start_dma(ide_hwif_t
*hwif
, ide_drive_t
*drive
, int reading
)
609 struct request
*rq
= HWGROUP(drive
)->rq
;
612 /* fall back to pio! */
613 if (!ide_build_dmatable(drive
, rq
))
617 hwif
->OUTL(hwif
->dmatable_dma
, hwif
->dma_prdtable
);
620 hwif
->OUTB(reading
, hwif
->dma_command
);
622 /* read dma_status for INTR & ERROR flags */
623 dma_stat
= hwif
->INB(hwif
->dma_status
);
625 /* clear INTR & ERROR flags */
626 hwif
->OUTB(dma_stat
|6, hwif
->dma_status
);
627 drive
->waiting_for_dma
= 1;
631 EXPORT_SYMBOL(ide_start_dma
);
633 int __ide_dma_read (ide_drive_t
*drive
/*, struct request *rq */)
635 ide_hwif_t
*hwif
= HWIF(drive
);
636 struct request
*rq
= HWGROUP(drive
)->rq
;
637 unsigned int reading
= 1 << 3;
638 u8 lba48
= (drive
->addressing
== 1) ? 1 : 0;
639 task_ioreg_t command
= WIN_NOP
;
642 if (ide_start_dma(hwif
, drive
, reading
))
645 if (drive
->media
!= ide_disk
)
648 command
= (lba48
) ? WIN_READDMA_EXT
: WIN_READDMA
;
651 command
= (lba48
) ? WIN_READ_EXT
: WIN_READ
;
653 if (rq
->flags
& REQ_DRIVE_TASKFILE
) {
654 ide_task_t
*args
= rq
->special
;
655 command
= args
->tfRegister
[IDE_COMMAND_OFFSET
];
658 /* issue cmd to drive */
659 ide_execute_command(drive
, command
, &ide_dma_intr
, 2*WAIT_CMD
, dma_timer_expiry
);
660 return hwif
->ide_dma_begin(drive
);
663 EXPORT_SYMBOL(__ide_dma_read
);
665 int __ide_dma_write (ide_drive_t
*drive
/*, struct request *rq */)
667 ide_hwif_t
*hwif
= HWIF(drive
);
668 struct request
*rq
= HWGROUP(drive
)->rq
;
669 unsigned int reading
= 0;
670 u8 lba48
= (drive
->addressing
== 1) ? 1 : 0;
671 task_ioreg_t command
= WIN_NOP
;
673 /* try PIO instead of DMA */
674 if (ide_start_dma(hwif
, drive
, reading
))
677 if (drive
->media
!= ide_disk
)
680 command
= (lba48
) ? WIN_WRITEDMA_EXT
: WIN_WRITEDMA
;
682 command
= (lba48
) ? WIN_WRITE_EXT
: WIN_WRITE
;
684 if (rq
->flags
& REQ_DRIVE_TASKFILE
) {
685 ide_task_t
*args
= rq
->special
;
686 command
= args
->tfRegister
[IDE_COMMAND_OFFSET
];
689 /* issue cmd to drive */
690 ide_execute_command(drive
, command
, &ide_dma_intr
, 2*WAIT_CMD
, dma_timer_expiry
);
692 return hwif
->ide_dma_begin(drive
);
695 EXPORT_SYMBOL(__ide_dma_write
);
697 int __ide_dma_begin (ide_drive_t
*drive
)
699 ide_hwif_t
*hwif
= HWIF(drive
);
700 u8 dma_cmd
= hwif
->INB(hwif
->dma_command
);
702 /* Note that this is done *after* the cmd has
703 * been issued to the drive, as per the BM-IDE spec.
704 * The Promise Ultra33 doesn't work correctly when
705 * we do this part before issuing the drive cmd.
708 hwif
->OUTB(dma_cmd
|1, hwif
->dma_command
);
714 EXPORT_SYMBOL(__ide_dma_begin
);
716 /* returns 1 on error, 0 otherwise */
717 int __ide_dma_end (ide_drive_t
*drive
)
719 ide_hwif_t
*hwif
= HWIF(drive
);
720 u8 dma_stat
= 0, dma_cmd
= 0;
722 drive
->waiting_for_dma
= 0;
723 /* get dma_command mode */
724 dma_cmd
= hwif
->INB(hwif
->dma_command
);
726 hwif
->OUTB(dma_cmd
&~1, hwif
->dma_command
);
728 dma_stat
= hwif
->INB(hwif
->dma_status
);
729 /* clear the INTR & ERROR bits */
730 hwif
->OUTB(dma_stat
|6, hwif
->dma_status
);
731 /* purge DMA mappings */
732 ide_destroy_dmatable(drive
);
733 /* verify good DMA status */
736 return (dma_stat
& 7) != 4 ? (0x10 | dma_stat
) : 0;
739 EXPORT_SYMBOL(__ide_dma_end
);
741 /* returns 1 if dma irq issued, 0 otherwise */
742 int __ide_dma_test_irq (ide_drive_t
*drive
)
744 ide_hwif_t
*hwif
= HWIF(drive
);
745 u8 dma_stat
= hwif
->INB(hwif
->dma_status
);
747 #if 0 /* do not set unless you know what you are doing */
749 u8 stat
= hwif
->INB(IDE_STATUS_REG
);
750 hwif
->OUTB(hwif
->dma_status
, dma_stat
& 0xE4);
753 /* return 1 if INTR asserted */
754 if ((dma_stat
& 4) == 4)
756 if (!drive
->waiting_for_dma
)
757 printk(KERN_WARNING
"%s: (%s) called while not waiting\n",
758 drive
->name
, __FUNCTION__
);
762 EXPORT_SYMBOL(__ide_dma_test_irq
);
763 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
765 int __ide_dma_bad_drive (ide_drive_t
*drive
)
767 struct hd_driveid
*id
= drive
->id
;
769 int blacklist
= in_drive_list(id
, drive_blacklist
);
771 printk(KERN_WARNING
"%s: Disabling (U)DMA for %s (blacklisted)\n",
772 drive
->name
, id
->model
);
778 EXPORT_SYMBOL(__ide_dma_bad_drive
);
780 int __ide_dma_good_drive (ide_drive_t
*drive
)
782 struct hd_driveid
*id
= drive
->id
;
783 return in_drive_list(id
, drive_whitelist
);
786 EXPORT_SYMBOL(__ide_dma_good_drive
);
788 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
789 int __ide_dma_verbose (ide_drive_t
*drive
)
791 struct hd_driveid
*id
= drive
->id
;
792 ide_hwif_t
*hwif
= HWIF(drive
);
794 if (id
->field_valid
& 4) {
795 if ((id
->dma_ultra
>> 8) && (id
->dma_mword
>> 8)) {
796 printk(", BUG DMA OFF");
797 return hwif
->ide_dma_off_quietly(drive
);
799 if (id
->dma_ultra
& ((id
->dma_ultra
>> 8) & hwif
->ultra_mask
)) {
800 if (((id
->dma_ultra
>> 11) & 0x1F) &&
801 eighty_ninty_three(drive
)) {
802 if ((id
->dma_ultra
>> 15) & 1) {
803 printk(", UDMA(mode 7)");
804 } else if ((id
->dma_ultra
>> 14) & 1) {
805 printk(", UDMA(133)");
806 } else if ((id
->dma_ultra
>> 13) & 1) {
807 printk(", UDMA(100)");
808 } else if ((id
->dma_ultra
>> 12) & 1) {
809 printk(", UDMA(66)");
810 } else if ((id
->dma_ultra
>> 11) & 1) {
811 printk(", UDMA(44)");
816 if ((id
->dma_ultra
>> 10) & 1) {
817 printk(", UDMA(33)");
818 } else if ((id
->dma_ultra
>> 9) & 1) {
819 printk(", UDMA(25)");
820 } else if ((id
->dma_ultra
>> 8) & 1) {
821 printk(", UDMA(16)");
825 printk(", (U)DMA"); /* Can be BIOS-enabled! */
827 } else if (id
->field_valid
& 2) {
828 if ((id
->dma_mword
>> 8) && (id
->dma_1word
>> 8)) {
829 printk(", BUG DMA OFF");
830 return hwif
->ide_dma_off_quietly(drive
);
833 } else if (id
->field_valid
& 1) {
839 EXPORT_SYMBOL(__ide_dma_verbose
);
841 int __ide_dma_lostirq (ide_drive_t
*drive
)
843 printk("%s: DMA interrupt recovery\n", drive
->name
);
847 EXPORT_SYMBOL(__ide_dma_lostirq
);
849 int __ide_dma_timeout (ide_drive_t
*drive
)
851 printk(KERN_ERR
"%s: timeout waiting for DMA\n", drive
->name
);
852 if (HWIF(drive
)->ide_dma_test_irq(drive
))
855 return HWIF(drive
)->ide_dma_end(drive
);
858 EXPORT_SYMBOL(__ide_dma_timeout
);
861 * Needed for allowing full modular support of ide-driver
863 int ide_release_dma_engine (ide_hwif_t
*hwif
)
865 if (hwif
->dmatable_cpu
) {
866 pci_free_consistent(hwif
->pci_dev
,
867 PRD_ENTRIES
* PRD_BYTES
,
870 hwif
->dmatable_cpu
= NULL
;
872 if (hwif
->sg_table
) {
873 kfree(hwif
->sg_table
);
874 hwif
->sg_table
= NULL
;
879 int ide_release_iomio_dma (ide_hwif_t
*hwif
)
881 if ((hwif
->dma_extra
) && (hwif
->channel
== 0))
882 release_region((hwif
->dma_base
+ 16), hwif
->dma_extra
);
883 release_region(hwif
->dma_base
, 8);
885 release_region(hwif
->dma_base
, 8);
890 * Needed for allowing full modular support of ide-driver
892 int ide_release_dma (ide_hwif_t
*hwif
)
896 if (hwif
->chipset
== ide_etrax100
)
899 ide_release_dma_engine(hwif
);
900 return ide_release_iomio_dma(hwif
);
903 int ide_allocate_dma_engine (ide_hwif_t
*hwif
)
905 hwif
->dmatable_cpu
= pci_alloc_consistent(hwif
->pci_dev
,
906 PRD_ENTRIES
* PRD_BYTES
,
907 &hwif
->dmatable_dma
);
908 hwif
->sg_table
= kmalloc(sizeof(struct scatterlist
) * PRD_ENTRIES
,
911 if ((hwif
->dmatable_cpu
) && (hwif
->sg_table
))
914 printk(KERN_ERR
"%s: -- Error, unable to allocate%s%s table(s).\n",
915 (hwif
->dmatable_cpu
== NULL
) ? " CPU" : "",
916 (hwif
->sg_table
== NULL
) ? " SG DMA" : " DMA",
919 ide_release_dma_engine(hwif
);
923 int ide_mapped_mmio_dma (ide_hwif_t
*hwif
, unsigned long base
, unsigned int ports
)
925 printk(KERN_INFO
" %s: MMIO-DMA ", hwif
->name
);
927 hwif
->dma_base
= base
;
928 if (hwif
->cds
->extra
&& hwif
->channel
== 0)
929 hwif
->dma_extra
= hwif
->cds
->extra
;
932 hwif
->dma_master
= (hwif
->channel
) ? hwif
->mate
->dma_base
: base
;
934 hwif
->dma_master
= base
;
938 int ide_iomio_dma (ide_hwif_t
*hwif
, unsigned long base
, unsigned int ports
)
940 printk(KERN_INFO
" %s: BM-DMA at 0x%04lx-0x%04lx",
941 hwif
->name
, base
, base
+ ports
- 1);
942 if (!request_region(base
, ports
, hwif
->name
)) {
943 printk(" -- Error, ports in use.\n");
946 hwif
->dma_base
= base
;
947 if ((hwif
->cds
->extra
) && (hwif
->channel
== 0)) {
948 request_region(base
+16, hwif
->cds
->extra
, hwif
->cds
->name
);
949 hwif
->dma_extra
= hwif
->cds
->extra
;
953 hwif
->dma_master
= (hwif
->channel
) ? hwif
->mate
->dma_base
: base
;
955 hwif
->dma_master
= base
;
956 if (hwif
->dma_base2
) {
957 if (!request_region(hwif
->dma_base2
, ports
, hwif
->name
))
959 printk(" -- Error, secondary ports in use.\n");
960 release_region(base
, ports
);
970 int ide_dma_iobase (ide_hwif_t
*hwif
, unsigned long base
, unsigned int ports
)
973 return ide_mapped_mmio_dma(hwif
, base
,ports
);
974 BUG_ON(hwif
->mmio
== 1);
975 return ide_iomio_dma(hwif
, base
, ports
);
979 * This can be called for a dynamically installed interface. Don't __init it
981 void ide_setup_dma (ide_hwif_t
*hwif
, unsigned long dma_base
, unsigned int num_ports
)
983 if (ide_dma_iobase(hwif
, dma_base
, num_ports
))
986 if (ide_allocate_dma_engine(hwif
)) {
987 ide_release_dma(hwif
);
991 if (!(hwif
->dma_command
))
992 hwif
->dma_command
= hwif
->dma_base
;
993 if (!(hwif
->dma_vendor1
))
994 hwif
->dma_vendor1
= (hwif
->dma_base
+ 1);
995 if (!(hwif
->dma_status
))
996 hwif
->dma_status
= (hwif
->dma_base
+ 2);
997 if (!(hwif
->dma_vendor3
))
998 hwif
->dma_vendor3
= (hwif
->dma_base
+ 3);
999 if (!(hwif
->dma_prdtable
))
1000 hwif
->dma_prdtable
= (hwif
->dma_base
+ 4);
1002 if (!hwif
->ide_dma_off_quietly
)
1003 hwif
->ide_dma_off_quietly
= &__ide_dma_off_quietly
;
1004 if (!hwif
->ide_dma_host_off
)
1005 hwif
->ide_dma_host_off
= &__ide_dma_host_off
;
1006 if (!hwif
->ide_dma_on
)
1007 hwif
->ide_dma_on
= &__ide_dma_on
;
1008 if (!hwif
->ide_dma_host_on
)
1009 hwif
->ide_dma_host_on
= &__ide_dma_host_on
;
1010 if (!hwif
->ide_dma_check
)
1011 hwif
->ide_dma_check
= &__ide_dma_check
;
1012 if (!hwif
->ide_dma_read
)
1013 hwif
->ide_dma_read
= &__ide_dma_read
;
1014 if (!hwif
->ide_dma_write
)
1015 hwif
->ide_dma_write
= &__ide_dma_write
;
1016 if (!hwif
->ide_dma_begin
)
1017 hwif
->ide_dma_begin
= &__ide_dma_begin
;
1018 if (!hwif
->ide_dma_end
)
1019 hwif
->ide_dma_end
= &__ide_dma_end
;
1020 if (!hwif
->ide_dma_test_irq
)
1021 hwif
->ide_dma_test_irq
= &__ide_dma_test_irq
;
1022 if (!hwif
->ide_dma_verbose
)
1023 hwif
->ide_dma_verbose
= &__ide_dma_verbose
;
1024 if (!hwif
->ide_dma_timeout
)
1025 hwif
->ide_dma_timeout
= &__ide_dma_timeout
;
1026 if (!hwif
->ide_dma_lostirq
)
1027 hwif
->ide_dma_lostirq
= &__ide_dma_lostirq
;
1029 if (hwif
->chipset
!= ide_trm290
) {
1030 u8 dma_stat
= hwif
->INB(hwif
->dma_status
);
1031 printk(", BIOS settings: %s:%s, %s:%s",
1032 hwif
->drives
[0].name
, (dma_stat
& 0x20) ? "DMA" : "pio",
1033 hwif
->drives
[1].name
, (dma_stat
& 0x40) ? "DMA" : "pio");
1037 if (!(hwif
->dma_master
))
1041 EXPORT_SYMBOL_GPL(ide_setup_dma
);
1042 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */