This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / ide / ide-dma.c
1 /*
2  *  linux/drivers/ide/ide-dma.c         Version 4.10    June 9, 2000
3  *
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  */
7
8 /*
9  *  Special Thanks to Mark for his Six years of work.
10  *
11  *  Copyright (c) 1995-1998  Mark Lord
12  *  May be copied or modified under the terms of the GNU General Public License
13  */
14
15 /*
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").
21  *
22  * Pretty much the same code works for other IDE PCI bus-mastering chipsets.
23  *
24  * DMA is supported for all IDE devices (disk drives, cdroms, tapes, floppies).
25  *
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.
31  *
32  * Use "hdparm -i" to view modes supported by a given drive.
33  *
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.
36  *
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.
40  *
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.
46  *
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.
51  *
52  * Keep an eye on /var/adm/messages for "DMA disabled" messages.
53  *
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).
58  *
59  * Thanks to "Christopher J. Reimer" <reimer@doe.carleton.ca> for
60  * fixing the problem with the BIOS on some Acer motherboards.
61  *
62  * Thanks to "Benoit Poulot-Cazajous" <poulot@chorus.fr> for testing
63  * "TX" chipset compatibility and for providing patches for the "TX" chipset.
64  *
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.
67  *
68  * Most importantly, thanks to Robert Bringman <rob@mars.trion.com>
69  * for supplying a Promise UDMA board & WD UDMA drive for this work!
70  *
71  * And, yes, Intel Zappa boards really *do* use both PIIX IDE ports.
72  *
73  * ATA-66/100 and recovery functions, I forgot the rest......
74  *
75  */
76
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>
88
89 #include <asm/io.h>
90 #include <asm/irq.h>
91
92 struct drive_list_entry {
93         const char *id_model;
94         const char *id_firmware;
95 };
96
97 static const struct drive_list_entry drive_whitelist [] = {
98
99         { "Micropolis 2112A"    ,       "ALL"           },
100         { "CONNER CTMA 4000"    ,       "ALL"           },
101         { "CONNER CTT8000-A"    ,       "ALL"           },
102         { "ST34342A"            ,       "ALL"           },
103         { NULL                  ,       NULL            }
104 };
105
106 static const struct drive_list_entry drive_blacklist [] = {
107
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         { "WPI CDD-820",                "ALL"           },
132         { "SAMSUNG CD-ROM SC-148C",     "ALL"           },
133         { "SAMSUNG CD-ROM SC-148F",     "ALL"           },
134         { "SAMSUNG CD-ROM SC",  "ALL"           },
135         { "SanDisk SDP3B-64"    ,       "ALL"           },
136         { "SAMSUNG CD-ROM SN-124",      "ALL"           },
137         { "PLEXTOR CD-R PX-W8432T",     "ALL"           },
138         { "ATAPI CD-ROM DRIVE 40X MAXIMUM",     "ALL"           },
139         { "_NEC DV5800A",               "ALL"           },  
140         { NULL                  ,       NULL            }
141
142 };
143
144 /**
145  *      in_drive_list   -       look for drive in black/white list
146  *      @id: drive identifier
147  *      @drive_table: list to inspect
148  *
149  *      Look for a drive in the blacklist and the whitelist tables
150  *      Returns 1 if the drive is found in the table.
151  */
152
153 static int in_drive_list(struct hd_driveid *id, const struct drive_list_entry *drive_table)
154 {
155         for ( ; drive_table->id_model ; drive_table++)
156                 if ((!strcmp(drive_table->id_model, id->model)) &&
157                     ((strstr(drive_table->id_firmware, id->fw_rev)) ||
158                      (!strcmp(drive_table->id_firmware, "ALL"))))
159                         return 1;
160         return 0;
161 }
162
163 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
164 /**
165  *      ide_dma_intr    -       IDE DMA interrupt handler
166  *      @drive: the drive the interrupt is for
167  *
168  *      Handle an interrupt completing a read/write DMA transfer on an 
169  *      IDE device
170  */
171  
172 ide_startstop_t ide_dma_intr (ide_drive_t *drive)
173 {
174         u8 stat = 0, dma_stat = 0;
175
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;
181
182                         DRIVER(drive)->end_request(drive, 1, rq->nr_sectors);
183                         return ide_stopped;
184                 }
185                 printk(KERN_ERR "%s: dma_intr: bad DMA status (dma_stat=%x)\n", 
186                        drive->name, dma_stat);
187         }
188         return DRIVER(drive)->error(drive, "dma_intr", stat);
189 }
190
191 EXPORT_SYMBOL_GPL(ide_dma_intr);
192
193 /**
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
197  *
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
202  */
203
204 int ide_build_sglist(ide_drive_t *drive, struct request *rq)
205 {
206         ide_hwif_t *hwif = HWIF(drive);
207         struct scatterlist *sg = hwif->sg_table;
208         int nents;
209
210         nents = blk_rq_map_sg(drive->queue, rq, hwif->sg_table);
211                 
212         if (rq_data_dir(rq) == READ)
213                 hwif->sg_dma_direction = PCI_DMA_FROMDEVICE;
214         else
215                 hwif->sg_dma_direction = PCI_DMA_TODEVICE;
216
217         return pci_map_sg(hwif->pci_dev, sg, nents, hwif->sg_dma_direction);
218 }
219
220 EXPORT_SYMBOL_GPL(ide_build_sglist);
221
222 /**
223  *      ide_raw_build_sglist    -       map IDE scatter gather for DMA
224  *      @drive: the drive to build the DMA table for
225  *      @rq: the request holding the sg list
226  *
227  *      Perform the PCI mapping magic necessary to access the source or
228  *      target buffers of a taskfile request via PCI DMA. The lower layers 
229  *      of the  kernel provide the necessary cache management so that we can
230  *      operate in a portable fashion
231  */
232
233 int ide_raw_build_sglist(ide_drive_t *drive, struct request *rq)
234 {
235         ide_hwif_t *hwif = HWIF(drive);
236         struct scatterlist *sg = hwif->sg_table;
237         int nents = 0;
238         ide_task_t *args = rq->special;
239         u8 *virt_addr = rq->buffer;
240         int sector_count = rq->nr_sectors;
241
242         if (args->command_type == IDE_DRIVE_TASK_RAW_WRITE)
243                 hwif->sg_dma_direction = PCI_DMA_TODEVICE;
244         else
245                 hwif->sg_dma_direction = PCI_DMA_FROMDEVICE;
246
247 #if 1
248         if (sector_count > 256)
249                 BUG();
250
251         if (sector_count > 128) {
252 #else
253         while (sector_count > 128) {
254 #endif
255                 memset(&sg[nents], 0, sizeof(*sg));
256                 sg[nents].page = virt_to_page(virt_addr);
257                 sg[nents].offset = offset_in_page(virt_addr);
258                 sg[nents].length = 128  * SECTOR_SIZE;
259                 nents++;
260                 virt_addr = virt_addr + (128 * SECTOR_SIZE);
261                 sector_count -= 128;
262         }
263         memset(&sg[nents], 0, sizeof(*sg));
264         sg[nents].page = virt_to_page(virt_addr);
265         sg[nents].offset = offset_in_page(virt_addr);
266         sg[nents].length =  sector_count  * SECTOR_SIZE;
267         nents++;
268
269         return pci_map_sg(hwif->pci_dev, sg, nents, hwif->sg_dma_direction);
270 }
271
272 EXPORT_SYMBOL_GPL(ide_raw_build_sglist);
273
274 /**
275  *      ide_build_dmatable      -       build IDE DMA table
276  *
277  *      ide_build_dmatable() prepares a dma request. We map the command
278  *      to get the pci bus addresses of the buffers and then build up
279  *      the PRD table that the IDE layer wants to be fed. The code
280  *      knows about the 64K wrap bug in the CS5530.
281  *
282  *      Returns 0 if all went okay, returns 1 otherwise.
283  *      May also be invoked from trm290.c
284  */
285  
286 int ide_build_dmatable (ide_drive_t *drive, struct request *rq)
287 {
288         ide_hwif_t *hwif        = HWIF(drive);
289         unsigned int *table     = hwif->dmatable_cpu;
290         unsigned int is_trm290  = (hwif->chipset == ide_trm290) ? 1 : 0;
291         unsigned int count = 0;
292         int i;
293         struct scatterlist *sg;
294
295         if (HWGROUP(drive)->rq->flags & REQ_DRIVE_TASKFILE)
296                 hwif->sg_nents = i = ide_raw_build_sglist(drive, rq);
297         else
298                 hwif->sg_nents = i = ide_build_sglist(drive, rq);
299
300         if (!i)
301                 return 0;
302
303         sg = hwif->sg_table;
304         while (i) {
305                 u32 cur_addr;
306                 u32 cur_len;
307
308                 cur_addr = sg_dma_address(sg);
309                 cur_len = sg_dma_len(sg);
310
311                 /*
312                  * Fill in the dma table, without crossing any 64kB boundaries.
313                  * Most hardware requires 16-bit alignment of all blocks,
314                  * but the trm290 requires 32-bit alignment.
315                  */
316
317                 while (cur_len) {
318                         if (count++ >= PRD_ENTRIES) {
319                                 printk(KERN_ERR "%s: DMA table too small\n", drive->name);
320                                 goto use_pio_instead;
321                         } else {
322                                 u32 xcount, bcount = 0x10000 - (cur_addr & 0xffff);
323
324                                 if (bcount > cur_len)
325                                         bcount = cur_len;
326                                 *table++ = cpu_to_le32(cur_addr);
327                                 xcount = bcount & 0xffff;
328                                 if (is_trm290)
329                                         xcount = ((xcount >> 2) - 1) << 16;
330                                 if (xcount == 0x0000) {
331         /* 
332          * Most chipsets correctly interpret a length of 0x0000 as 64KB,
333          * but at least one (e.g. CS5530) misinterprets it as zero (!).
334          * So here we break the 64KB entry into two 32KB entries instead.
335          */
336                                         if (count++ >= PRD_ENTRIES) {
337                                                 printk(KERN_ERR "%s: DMA table too small\n", drive->name);
338                                                 goto use_pio_instead;
339                                         }
340                                         *table++ = cpu_to_le32(0x8000);
341                                         *table++ = cpu_to_le32(cur_addr + 0x8000);
342                                         xcount = 0x8000;
343                                 }
344                                 *table++ = cpu_to_le32(xcount);
345                                 cur_addr += bcount;
346                                 cur_len -= bcount;
347                         }
348                 }
349
350                 sg++;
351                 i--;
352         }
353
354         if (count) {
355                 if (!is_trm290)
356                         *--table |= cpu_to_le32(0x80000000);
357                 return count;
358         }
359         printk(KERN_ERR "%s: empty DMA table?\n", drive->name);
360 use_pio_instead:
361         pci_unmap_sg(hwif->pci_dev,
362                      hwif->sg_table,
363                      hwif->sg_nents,
364                      hwif->sg_dma_direction);
365         return 0; /* revert to PIO for this request */
366 }
367
368 EXPORT_SYMBOL_GPL(ide_build_dmatable);
369
370 /**
371  *      ide_destroy_dmatable    -       clean up DMA mapping
372  *      @drive: The drive to unmap
373  *
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.
379  */
380  
381 void ide_destroy_dmatable (ide_drive_t *drive)
382 {
383         struct pci_dev *dev = HWIF(drive)->pci_dev;
384         struct scatterlist *sg = HWIF(drive)->sg_table;
385         int nents = HWIF(drive)->sg_nents;
386
387         pci_unmap_sg(dev, sg, nents, HWIF(drive)->sg_dma_direction);
388 }
389
390 EXPORT_SYMBOL_GPL(ide_destroy_dmatable);
391
392 /**
393  *      config_drive_for_dma    -       attempt to activate IDE DMA
394  *      @drive: the drive to place in DMA mode
395  *
396  *      If the drive supports at least mode 2 DMA or UDMA of any kind
397  *      then attempt to place it into DMA mode. Drives that are known to
398  *      support DMA but predate the DMA properties or that are known
399  *      to have DMA handling bugs are also set up appropriately based
400  *      on the good/bad drive lists.
401  */
402  
403 static int config_drive_for_dma (ide_drive_t *drive)
404 {
405         struct hd_driveid *id = drive->id;
406         ide_hwif_t *hwif = HWIF(drive);
407
408         if ((id->capability & 1) && hwif->autodma) {
409                 /*
410                  * Enable DMA on any drive that has
411                  * UltraDMA (mode 0/1/2/3/4/5/6) enabled
412                  */
413                 if ((id->field_valid & 4) && ((id->dma_ultra >> 8) & 0x7f))
414                         return hwif->ide_dma_on(drive);
415                 /*
416                  * Enable DMA on any drive that has mode2 DMA
417                  * (multi or single) enabled
418                  */
419                 if (id->field_valid & 2)        /* regular DMA */
420                         if ((id->dma_mword & 0x404) == 0x404 ||
421                             (id->dma_1word & 0x404) == 0x404)
422                                 return hwif->ide_dma_on(drive);
423
424                 /* Consult the list of known "good" drives */
425                 if (__ide_dma_good_drive(drive))
426                         return hwif->ide_dma_on(drive);
427         }
428 //      if (hwif->tuneproc != NULL) hwif->tuneproc(drive, 255);
429         return hwif->ide_dma_off_quietly(drive);
430 }
431
432 /**
433  *      dma_timer_expiry        -       handle a DMA timeout
434  *      @drive: Drive that timed out
435  *
436  *      An IDE DMA transfer timed out. In the event of an error we ask
437  *      the driver to resolve the problem, if a DMA transfer is still
438  *      in progress we continue to wait (arguably we need to add a 
439  *      secondary 'I don't care what the drive thinks' timeout here)
440  *      Finally if we have an interrupt we let it complete the I/O.
441  *      But only one time - we clear expiry and if it's still not
442  *      completed after WAIT_CMD, we error and retry in PIO.
443  *      This can occur if an interrupt is lost or due to hang or bugs.
444  */
445  
446 static int dma_timer_expiry (ide_drive_t *drive)
447 {
448         ide_hwif_t *hwif        = HWIF(drive);
449         u8 dma_stat             = hwif->INB(hwif->dma_status);
450
451         printk(KERN_WARNING "%s: dma_timer_expiry: dma status == 0x%02x\n",
452                 drive->name, dma_stat);
453
454         if ((dma_stat & 0x18) == 0x18)  /* BUSY Stupid Early Timer !! */
455                 return WAIT_CMD;
456
457         HWGROUP(drive)->expiry = NULL;  /* one free ride for now */
458
459         /* 1 dmaing, 2 error, 4 intr */
460         if (dma_stat & 2)       /* ERROR */
461                 return -1;
462
463         if (dma_stat & 1)       /* DMAing */
464                 return WAIT_CMD;
465
466         if (dma_stat & 4)       /* Got an Interrupt */
467                 return WAIT_CMD;
468
469         return 0;       /* Status is unknown -- reset the bus */
470 }
471
472 /**
473  *      __ide_dma_host_off      -       Generic DMA kill
474  *      @drive: drive to control
475  *
476  *      Perform the generic IDE controller DMA off operation. This
477  *      works for most IDE bus mastering controllers
478  */
479
480 int __ide_dma_host_off (ide_drive_t *drive)
481 {
482         ide_hwif_t *hwif        = HWIF(drive);
483         u8 unit                 = (drive->select.b.unit & 0x01);
484         u8 dma_stat             = hwif->INB(hwif->dma_status);
485
486         hwif->OUTB((dma_stat & ~(1<<(5+unit))), hwif->dma_status);
487         return 0;
488 }
489
490 EXPORT_SYMBOL(__ide_dma_host_off);
491
492 /**
493  *      __ide_dma_host_off_quietly      -       Generic DMA kill
494  *      @drive: drive to control
495  *
496  *      Turn off the current DMA on this IDE controller. 
497  */
498
499 int __ide_dma_off_quietly (ide_drive_t *drive)
500 {
501         drive->using_dma = 0;
502         ide_toggle_bounce(drive, 0);
503
504         if (HWIF(drive)->ide_dma_host_off(drive))
505                 return 1;
506
507         return 0;
508 }
509
510 EXPORT_SYMBOL(__ide_dma_off_quietly);
511 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
512
513 /**
514  *      __ide_dma_off   -       disable DMA on a device
515  *      @drive: drive to disable DMA on
516  *
517  *      Disable IDE DMA for a device on this IDE controller.
518  *      Inform the user that DMA has been disabled.
519  */
520
521 int __ide_dma_off (ide_drive_t *drive)
522 {
523         printk(KERN_INFO "%s: DMA disabled\n", drive->name);
524         return HWIF(drive)->ide_dma_off_quietly(drive);
525 }
526
527 EXPORT_SYMBOL(__ide_dma_off);
528
529 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
530 /**
531  *      __ide_dma_host_on       -       Enable DMA on a host
532  *      @drive: drive to enable for DMA
533  *
534  *      Enable DMA on an IDE controller following generic bus mastering
535  *      IDE controller behaviour
536  */
537  
538 int __ide_dma_host_on (ide_drive_t *drive)
539 {
540         if (drive->using_dma) {
541                 ide_hwif_t *hwif        = HWIF(drive);
542                 u8 unit                 = (drive->select.b.unit & 0x01);
543                 u8 dma_stat             = hwif->INB(hwif->dma_status);
544
545                 hwif->OUTB((dma_stat|(1<<(5+unit))), hwif->dma_status);
546                 return 0;
547         }
548         return 1;
549 }
550
551 EXPORT_SYMBOL(__ide_dma_host_on);
552
553 /**
554  *      __ide_dma_on            -       Enable DMA on a device
555  *      @drive: drive to enable DMA on
556  *
557  *      Enable IDE DMA for a device on this IDE controller.
558  */
559  
560 int __ide_dma_on (ide_drive_t *drive)
561 {
562         /* consult the list of known "bad" drives */
563         if (__ide_dma_bad_drive(drive))
564                 return 1;
565
566         drive->using_dma = 1;
567         ide_toggle_bounce(drive, 1);
568
569         if (HWIF(drive)->ide_dma_host_on(drive))
570                 return 1;
571
572         return 0;
573 }
574
575 EXPORT_SYMBOL(__ide_dma_on);
576
577 /**
578  *      __ide_dma_check         -       check DMA setup
579  *      @drive: drive to check
580  *
581  *      Don't use - due for extermination
582  */
583  
584 int __ide_dma_check (ide_drive_t *drive)
585 {
586         return config_drive_for_dma(drive);
587 }
588
589 EXPORT_SYMBOL(__ide_dma_check);
590
591 /**
592  *      ide_start_dma   -       begin a DMA phase
593  *      @hwif: interface
594  *      @drive: target device
595  *      @reading: set if reading, clear if writing
596  *
597  *      Build an IDE DMA PRD (IDE speak for scatter gather table)
598  *      and then set up the DMA transfer registers for a device
599  *      that follows generic IDE PCI DMA behaviour. Controllers can
600  *      override this function if they need to
601  *
602  *      Returns 0 on success. If a PIO fallback is required then 1
603  *      is returned. 
604  */
605  
606 int ide_start_dma(ide_hwif_t *hwif, ide_drive_t *drive, int reading)
607 {
608         struct request *rq = HWGROUP(drive)->rq;
609         u8 dma_stat;
610
611         /* fall back to pio! */
612         if (!ide_build_dmatable(drive, rq))
613                 return 1;
614
615         /* PRD table */
616         hwif->OUTL(hwif->dmatable_dma, hwif->dma_prdtable);
617
618         /* specify r/w */
619         hwif->OUTB(reading, hwif->dma_command);
620
621         /* read dma_status for INTR & ERROR flags */
622         dma_stat = hwif->INB(hwif->dma_status);
623
624         /* clear INTR & ERROR flags */
625         hwif->OUTB(dma_stat|6, hwif->dma_status);
626         drive->waiting_for_dma = 1;
627         return 0;
628 }
629
630 EXPORT_SYMBOL(ide_start_dma);
631
632 int __ide_dma_read (ide_drive_t *drive /*, struct request *rq */)
633 {
634         ide_hwif_t *hwif        = HWIF(drive);
635         struct request *rq      = HWGROUP(drive)->rq;
636         unsigned int reading    = 1 << 3;
637         u8 lba48                = (drive->addressing == 1) ? 1 : 0;
638         task_ioreg_t command    = WIN_NOP;
639
640         /* try pio */
641         if (ide_start_dma(hwif, drive, reading))
642                 return 1;
643
644         if (drive->media != ide_disk)
645                 return 0;
646
647         command = (lba48) ? WIN_READDMA_EXT : WIN_READDMA;
648         
649         if (drive->vdma)
650                 command = (lba48) ? WIN_READ_EXT: WIN_READ;
651                 
652         if (rq->flags & REQ_DRIVE_TASKFILE) {
653                 ide_task_t *args = rq->special;
654                 command = args->tfRegister[IDE_COMMAND_OFFSET];
655         }
656
657         /* issue cmd to drive */
658         ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, dma_timer_expiry);
659         return hwif->ide_dma_begin(drive);
660 }
661
662 EXPORT_SYMBOL(__ide_dma_read);
663
664 int __ide_dma_write (ide_drive_t *drive /*, struct request *rq */)
665 {
666         ide_hwif_t *hwif        = HWIF(drive);
667         struct request *rq      = HWGROUP(drive)->rq;
668         unsigned int reading    = 0;
669         u8 lba48                = (drive->addressing == 1) ? 1 : 0;
670         task_ioreg_t command    = WIN_NOP;
671
672         /* try PIO instead of DMA */
673         if (ide_start_dma(hwif, drive, reading))
674                 return 1;
675
676         if (drive->media != ide_disk)
677                 return 0;
678
679         command = (lba48) ? WIN_WRITEDMA_EXT : WIN_WRITEDMA;
680         if (drive->vdma)
681                 command = (lba48) ? WIN_WRITE_EXT: WIN_WRITE;
682                 
683         if (rq->flags & REQ_DRIVE_TASKFILE) {
684                 ide_task_t *args = rq->special;
685                 command = args->tfRegister[IDE_COMMAND_OFFSET];
686         }
687
688         /* issue cmd to drive */
689         ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, dma_timer_expiry);
690
691         return hwif->ide_dma_begin(drive);
692 }
693
694 EXPORT_SYMBOL(__ide_dma_write);
695
696 int __ide_dma_begin (ide_drive_t *drive)
697 {
698         ide_hwif_t *hwif        = HWIF(drive);
699         u8 dma_cmd              = hwif->INB(hwif->dma_command);
700
701         /* Note that this is done *after* the cmd has
702          * been issued to the drive, as per the BM-IDE spec.
703          * The Promise Ultra33 doesn't work correctly when
704          * we do this part before issuing the drive cmd.
705          */
706         /* start DMA */
707         hwif->OUTB(dma_cmd|1, hwif->dma_command);
708         hwif->dma = 1;
709         wmb();
710         return 0;
711 }
712
713 EXPORT_SYMBOL(__ide_dma_begin);
714
715 /* returns 1 on error, 0 otherwise */
716 int __ide_dma_end (ide_drive_t *drive)
717 {
718         ide_hwif_t *hwif        = HWIF(drive);
719         u8 dma_stat = 0, dma_cmd = 0;
720
721         drive->waiting_for_dma = 0;
722         /* get dma_command mode */
723         dma_cmd = hwif->INB(hwif->dma_command);
724         /* stop DMA */
725         hwif->OUTB(dma_cmd&~1, hwif->dma_command);
726         /* get DMA status */
727         dma_stat = hwif->INB(hwif->dma_status);
728         /* clear the INTR & ERROR bits */
729         hwif->OUTB(dma_stat|6, hwif->dma_status);
730         /* purge DMA mappings */
731         ide_destroy_dmatable(drive);
732         /* verify good DMA status */
733         hwif->dma = 0;
734         wmb();
735         return (dma_stat & 7) != 4 ? (0x10 | dma_stat) : 0;
736 }
737
738 EXPORT_SYMBOL(__ide_dma_end);
739
740 /* returns 1 if dma irq issued, 0 otherwise */
741 int __ide_dma_test_irq (ide_drive_t *drive)
742 {
743         ide_hwif_t *hwif        = HWIF(drive);
744         u8 dma_stat             = hwif->INB(hwif->dma_status);
745
746 #if 0  /* do not set unless you know what you are doing */
747         if (dma_stat & 4) {
748                 u8 stat = hwif->INB(IDE_STATUS_REG);
749                 hwif->OUTB(hwif->dma_status, dma_stat & 0xE4);
750         }
751 #endif
752         /* return 1 if INTR asserted */
753         if ((dma_stat & 4) == 4)
754                 return 1;
755         if (!drive->waiting_for_dma)
756                 printk(KERN_WARNING "%s: (%s) called while not waiting\n",
757                         drive->name, __FUNCTION__);
758         return 0;
759 }
760
761 EXPORT_SYMBOL(__ide_dma_test_irq);
762 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
763
764 int __ide_dma_bad_drive (ide_drive_t *drive)
765 {
766         struct hd_driveid *id = drive->id;
767
768         int blacklist = in_drive_list(id, drive_blacklist);
769         if (blacklist) {
770                 printk(KERN_WARNING "%s: Disabling (U)DMA for %s (blacklisted)\n",
771                                     drive->name, id->model);
772                 return blacklist;
773         }
774         return 0;
775 }
776
777 EXPORT_SYMBOL(__ide_dma_bad_drive);
778
779 int __ide_dma_good_drive (ide_drive_t *drive)
780 {
781         struct hd_driveid *id = drive->id;
782         return in_drive_list(id, drive_whitelist);
783 }
784
785 EXPORT_SYMBOL(__ide_dma_good_drive);
786
787 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
788 int __ide_dma_verbose (ide_drive_t *drive)
789 {
790         struct hd_driveid *id   = drive->id;
791         ide_hwif_t *hwif        = HWIF(drive);
792
793         if (id->field_valid & 4) {
794                 if ((id->dma_ultra >> 8) && (id->dma_mword >> 8)) {
795                         printk(", BUG DMA OFF");
796                         return hwif->ide_dma_off_quietly(drive);
797                 }
798                 if (id->dma_ultra & ((id->dma_ultra >> 8) & hwif->ultra_mask)) {
799                         if (((id->dma_ultra >> 11) & 0x1F) &&
800                             eighty_ninty_three(drive)) {
801                                 if ((id->dma_ultra >> 15) & 1) {
802                                         printk(", UDMA(mode 7)");
803                                 } else if ((id->dma_ultra >> 14) & 1) {
804                                         printk(", UDMA(133)");
805                                 } else if ((id->dma_ultra >> 13) & 1) {
806                                         printk(", UDMA(100)");
807                                 } else if ((id->dma_ultra >> 12) & 1) {
808                                         printk(", UDMA(66)");
809                                 } else if ((id->dma_ultra >> 11) & 1) {
810                                         printk(", UDMA(44)");
811                                 } else
812                                         goto mode_two;
813                         } else {
814                 mode_two:
815                                 if ((id->dma_ultra >> 10) & 1) {
816                                         printk(", UDMA(33)");
817                                 } else if ((id->dma_ultra >> 9) & 1) {
818                                         printk(", UDMA(25)");
819                                 } else if ((id->dma_ultra >> 8) & 1) {
820                                         printk(", UDMA(16)");
821                                 }
822                         }
823                 } else {
824                         printk(", (U)DMA");     /* Can be BIOS-enabled! */
825                 }
826         } else if (id->field_valid & 2) {
827                 if ((id->dma_mword >> 8) && (id->dma_1word >> 8)) {
828                         printk(", BUG DMA OFF");
829                         return hwif->ide_dma_off_quietly(drive);
830                 }
831                 printk(", DMA");
832         } else if (id->field_valid & 1) {
833                 printk(", BUG");
834         }
835         return 1;
836 }
837
838 EXPORT_SYMBOL(__ide_dma_verbose);
839
840 int __ide_dma_lostirq (ide_drive_t *drive)
841 {
842         printk("%s: DMA interrupt recovery\n", drive->name);
843         return 1;
844 }
845
846 EXPORT_SYMBOL(__ide_dma_lostirq);
847
848 int __ide_dma_timeout (ide_drive_t *drive)
849 {
850         printk(KERN_ERR "%s: timeout waiting for DMA\n", drive->name);
851         if (HWIF(drive)->ide_dma_test_irq(drive))
852                 return 0;
853
854         return HWIF(drive)->ide_dma_end(drive);
855 }
856
857 EXPORT_SYMBOL(__ide_dma_timeout);
858
859 /*
860  * Needed for allowing full modular support of ide-driver
861  */
862 int ide_release_dma_engine (ide_hwif_t *hwif)
863 {
864         if (hwif->dmatable_cpu) {
865                 pci_free_consistent(hwif->pci_dev,
866                                     PRD_ENTRIES * PRD_BYTES,
867                                     hwif->dmatable_cpu,
868                                     hwif->dmatable_dma);
869                 hwif->dmatable_cpu = NULL;
870         }
871         if (hwif->sg_table) {
872                 kfree(hwif->sg_table);
873                 hwif->sg_table = NULL;
874         }
875         return 1;
876 }
877
878 int ide_release_iomio_dma (ide_hwif_t *hwif)
879 {
880         if ((hwif->dma_extra) && (hwif->channel == 0))
881                 release_region((hwif->dma_base + 16), hwif->dma_extra);
882         release_region(hwif->dma_base, 8);
883         if (hwif->dma_base2)
884                 release_region(hwif->dma_base, 8);
885         return 1;
886 }
887
888 /*
889  * Needed for allowing full modular support of ide-driver
890  */
891 int ide_release_dma (ide_hwif_t *hwif)
892 {
893         if (hwif->mmio == 2)
894                 return 1;
895         if (hwif->chipset == ide_etrax100)
896                 return 1;
897
898         ide_release_dma_engine(hwif);
899         return ide_release_iomio_dma(hwif);
900 }
901
902 int ide_allocate_dma_engine (ide_hwif_t *hwif)
903 {
904         hwif->dmatable_cpu = pci_alloc_consistent(hwif->pci_dev,
905                                                   PRD_ENTRIES * PRD_BYTES,
906                                                   &hwif->dmatable_dma);
907         hwif->sg_table = kmalloc(sizeof(struct scatterlist) * PRD_ENTRIES,
908                                 GFP_KERNEL);
909
910         if ((hwif->dmatable_cpu) && (hwif->sg_table))
911                 return 0;
912
913         printk(KERN_ERR "%s: -- Error, unable to allocate%s%s table(s).\n",
914                 (hwif->dmatable_cpu == NULL) ? " CPU" : "",
915                 (hwif->sg_table == NULL) ?  " SG DMA" : " DMA",
916                 hwif->cds->name);
917
918         ide_release_dma_engine(hwif);
919         return 1;
920 }
921
922 int ide_mapped_mmio_dma (ide_hwif_t *hwif, unsigned long base, unsigned int ports)
923 {
924         printk(KERN_INFO "    %s: MMIO-DMA ", hwif->name);
925
926         hwif->dma_base = base;
927         if (hwif->cds->extra && hwif->channel == 0)
928                 hwif->dma_extra = hwif->cds->extra;
929
930         if(hwif->mate)
931                 hwif->dma_master = (hwif->channel) ? hwif->mate->dma_base : base;
932         else
933                 hwif->dma_master = base;
934         return 0;
935 }
936
937 int ide_iomio_dma (ide_hwif_t *hwif, unsigned long base, unsigned int ports)
938 {
939         printk(KERN_INFO "    %s: BM-DMA at 0x%04lx-0x%04lx",
940                 hwif->name, base, base + ports - 1);
941         if (!request_region(base, ports, hwif->name)) {
942                 printk(" -- Error, ports in use.\n");
943                 return 1;
944         }
945         hwif->dma_base = base;
946         if ((hwif->cds->extra) && (hwif->channel == 0)) {
947                 request_region(base+16, hwif->cds->extra, hwif->cds->name);
948                 hwif->dma_extra = hwif->cds->extra;
949         }
950         
951         if(hwif->mate)
952                 hwif->dma_master = (hwif->channel) ? hwif->mate->dma_base : base;
953         else
954                 hwif->dma_master = base;
955         if (hwif->dma_base2) {
956                 if (!request_region(hwif->dma_base2, ports, hwif->name))
957                 {
958                         printk(" -- Error, secondary ports in use.\n");
959                         release_region(base, ports);
960                         return 1;
961                 }
962         }
963         return 0;
964 }
965
966 /*
967  * 
968  */
969 int ide_dma_iobase (ide_hwif_t *hwif, unsigned long base, unsigned int ports)
970 {
971         if (hwif->mmio == 2)
972                 return ide_mapped_mmio_dma(hwif, base,ports);
973         BUG_ON(hwif->mmio == 1);
974         return ide_iomio_dma(hwif, base, ports);
975 }
976
977 /*
978  * This can be called for a dynamically installed interface. Don't __init it
979  */
980 void ide_setup_dma (ide_hwif_t *hwif, unsigned long dma_base, unsigned int num_ports)
981 {
982         if (ide_dma_iobase(hwif, dma_base, num_ports))
983                 return;
984
985         if (ide_allocate_dma_engine(hwif)) {
986                 ide_release_dma(hwif);
987                 return;
988         }
989
990         if (!(hwif->dma_command))
991                 hwif->dma_command       = hwif->dma_base;
992         if (!(hwif->dma_vendor1))
993                 hwif->dma_vendor1       = (hwif->dma_base + 1);
994         if (!(hwif->dma_status))
995                 hwif->dma_status        = (hwif->dma_base + 2);
996         if (!(hwif->dma_vendor3))
997                 hwif->dma_vendor3       = (hwif->dma_base + 3);
998         if (!(hwif->dma_prdtable))
999                 hwif->dma_prdtable      = (hwif->dma_base + 4);
1000
1001         if (!hwif->ide_dma_off_quietly)
1002                 hwif->ide_dma_off_quietly = &__ide_dma_off_quietly;
1003         if (!hwif->ide_dma_host_off)
1004                 hwif->ide_dma_host_off = &__ide_dma_host_off;
1005         if (!hwif->ide_dma_on)
1006                 hwif->ide_dma_on = &__ide_dma_on;
1007         if (!hwif->ide_dma_host_on)
1008                 hwif->ide_dma_host_on = &__ide_dma_host_on;
1009         if (!hwif->ide_dma_check)
1010                 hwif->ide_dma_check = &__ide_dma_check;
1011         if (!hwif->ide_dma_read)
1012                 hwif->ide_dma_read = &__ide_dma_read;
1013         if (!hwif->ide_dma_write)
1014                 hwif->ide_dma_write = &__ide_dma_write;
1015         if (!hwif->ide_dma_begin)
1016                 hwif->ide_dma_begin = &__ide_dma_begin;
1017         if (!hwif->ide_dma_end)
1018                 hwif->ide_dma_end = &__ide_dma_end;
1019         if (!hwif->ide_dma_test_irq)
1020                 hwif->ide_dma_test_irq = &__ide_dma_test_irq;
1021         if (!hwif->ide_dma_verbose)
1022                 hwif->ide_dma_verbose = &__ide_dma_verbose;
1023         if (!hwif->ide_dma_timeout)
1024                 hwif->ide_dma_timeout = &__ide_dma_timeout;
1025         if (!hwif->ide_dma_lostirq)
1026                 hwif->ide_dma_lostirq = &__ide_dma_lostirq;
1027
1028         if (hwif->chipset != ide_trm290) {
1029                 u8 dma_stat = hwif->INB(hwif->dma_status);
1030                 printk(", BIOS settings: %s:%s, %s:%s",
1031                        hwif->drives[0].name, (dma_stat & 0x20) ? "DMA" : "pio",
1032                        hwif->drives[1].name, (dma_stat & 0x40) ? "DMA" : "pio");
1033         }
1034         printk("\n");
1035
1036         if (!(hwif->dma_master))
1037                 BUG();
1038 }
1039
1040 EXPORT_SYMBOL_GPL(ide_setup_dma);
1041 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */