1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77#include <linux/module.h>
78#include <linux/types.h>
79#include <linux/kernel.h>
80#include <linux/timer.h>
81#include <linux/mm.h>
82#include <linux/interrupt.h>
83#include <linux/pci.h>
84#include <linux/init.h>
85#include <linux/ide.h>
86#include <linux/delay.h>
87#include <linux/scatterlist.h>
88
89#include <asm/io.h>
90#include <asm/irq.h>
91
92static const struct drive_list_entry drive_whitelist [] = {
93
94 { "Micropolis 2112A" , NULL },
95 { "CONNER CTMA 4000" , NULL },
96 { "CONNER CTT8000-A" , NULL },
97 { "ST34342A" , NULL },
98 { NULL , NULL }
99};
100
101static const struct drive_list_entry drive_blacklist [] = {
102
103 { "WDC AC11000H" , NULL },
104 { "WDC AC22100H" , NULL },
105 { "WDC AC32500H" , NULL },
106 { "WDC AC33100H" , NULL },
107 { "WDC AC31600H" , NULL },
108 { "WDC AC32100H" , "24.09P07" },
109 { "WDC AC23200L" , "21.10N21" },
110 { "Compaq CRD-8241B" , NULL },
111 { "CRD-8400B" , NULL },
112 { "CRD-8480B", NULL },
113 { "CRD-8482B", NULL },
114 { "CRD-84" , NULL },
115 { "SanDisk SDP3B" , NULL },
116 { "SanDisk SDP3B-64" , NULL },
117 { "SANYO CD-ROM CRD" , NULL },
118 { "HITACHI CDR-8" , NULL },
119 { "HITACHI CDR-8335" , NULL },
120 { "HITACHI CDR-8435" , NULL },
121 { "Toshiba CD-ROM XM-6202B" , NULL },
122 { "TOSHIBA CD-ROM XM-1702BC", NULL },
123 { "CD-532E-A" , NULL },
124 { "E-IDE CD-ROM CR-840", NULL },
125 { "CD-ROM Drive/F5A", NULL },
126 { "WPI CDD-820", NULL },
127 { "SAMSUNG CD-ROM SC-148C", NULL },
128 { "SAMSUNG CD-ROM SC", NULL },
129 { "ATAPI CD-ROM DRIVE 40X MAXIMUM", NULL },
130 { "_NEC DV5800A", NULL },
131 { "SAMSUNG CD-ROM SN-124", "N001" },
132 { "Seagate STT20000A", NULL },
133 { "CD-ROM CDR_U200", "1.09" },
134 { NULL , NULL }
135
136};
137
138
139
140
141
142
143
144
145
146ide_startstop_t ide_dma_intr (ide_drive_t *drive)
147{
148 u8 stat = 0, dma_stat = 0;
149
150 dma_stat = HWIF(drive)->ide_dma_end(drive);
151 stat = HWIF(drive)->INB(IDE_STATUS_REG);
152 if (OK_STAT(stat,DRIVE_READY,drive->bad_wstat|DRQ_STAT)) {
153 if (!dma_stat) {
154 struct request *rq = HWGROUP(drive)->rq;
155
156 if (rq->rq_disk) {
157 ide_driver_t *drv;
158
159 drv = *(ide_driver_t **)rq->rq_disk->private_data;
160 drv->end_request(drive, 1, rq->nr_sectors);
161 } else
162 ide_end_request(drive, 1, rq->nr_sectors);
163 return ide_stopped;
164 }
165 printk(KERN_ERR "%s: dma_intr: bad DMA status (dma_stat=%x)\n",
166 drive->name, dma_stat);
167 }
168 return ide_error(drive, "dma_intr", stat);
169}
170
171EXPORT_SYMBOL_GPL(ide_dma_intr);
172
173static int ide_dma_good_drive(ide_drive_t *drive)
174{
175 return ide_in_drive_list(drive->id, drive_whitelist);
176}
177
178#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
179
180
181
182
183
184
185
186
187
188
189
190int ide_build_sglist(ide_drive_t *drive, struct request *rq)
191{
192 ide_hwif_t *hwif = HWIF(drive);
193 struct scatterlist *sg = hwif->sg_table;
194
195 BUG_ON((rq->cmd_type == REQ_TYPE_ATA_TASKFILE) && rq->nr_sectors > 256);
196
197 ide_map_sg(drive, rq);
198
199 if (rq_data_dir(rq) == READ)
200 hwif->sg_dma_direction = PCI_DMA_FROMDEVICE;
201 else
202 hwif->sg_dma_direction = PCI_DMA_TODEVICE;
203
204 return pci_map_sg(hwif->pci_dev, sg, hwif->sg_nents, hwif->sg_dma_direction);
205}
206
207EXPORT_SYMBOL_GPL(ide_build_sglist);
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223int ide_build_dmatable (ide_drive_t *drive, struct request *rq)
224{
225 ide_hwif_t *hwif = HWIF(drive);
226 unsigned int *table = hwif->dmatable_cpu;
227 unsigned int is_trm290 = (hwif->chipset == ide_trm290) ? 1 : 0;
228 unsigned int count = 0;
229 int i;
230 struct scatterlist *sg;
231
232 hwif->sg_nents = i = ide_build_sglist(drive, rq);
233
234 if (!i)
235 return 0;
236
237 sg = hwif->sg_table;
238 while (i) {
239 u32 cur_addr;
240 u32 cur_len;
241
242 cur_addr = sg_dma_address(sg);
243 cur_len = sg_dma_len(sg);
244
245
246
247
248
249
250
251 while (cur_len) {
252 if (count++ >= PRD_ENTRIES) {
253 printk(KERN_ERR "%s: DMA table too small\n", drive->name);
254 goto use_pio_instead;
255 } else {
256 u32 xcount, bcount = 0x10000 - (cur_addr & 0xffff);
257
258 if (bcount > cur_len)
259 bcount = cur_len;
260 *table++ = cpu_to_le32(cur_addr);
261 xcount = bcount & 0xffff;
262 if (is_trm290)
263 xcount = ((xcount >> 2) - 1) << 16;
264 if (xcount == 0x0000) {
265
266
267
268
269
270 if (count++ >= PRD_ENTRIES) {
271 printk(KERN_ERR "%s: DMA table too small\n", drive->name);
272 goto use_pio_instead;
273 }
274 *table++ = cpu_to_le32(0x8000);
275 *table++ = cpu_to_le32(cur_addr + 0x8000);
276 xcount = 0x8000;
277 }
278 *table++ = cpu_to_le32(xcount);
279 cur_addr += bcount;
280 cur_len -= bcount;
281 }
282 }
283
284 sg = sg_next(sg);
285 i--;
286 }
287
288 if (count) {
289 if (!is_trm290)
290 *--table |= cpu_to_le32(0x80000000);
291 return count;
292 }
293 printk(KERN_ERR "%s: empty DMA table?\n", drive->name);
294use_pio_instead:
295 pci_unmap_sg(hwif->pci_dev,
296 hwif->sg_table,
297 hwif->sg_nents,
298 hwif->sg_dma_direction);
299 return 0;
300}
301
302EXPORT_SYMBOL_GPL(ide_build_dmatable);
303
304
305
306
307
308
309
310
311
312
313
314
315void ide_destroy_dmatable (ide_drive_t *drive)
316{
317 struct pci_dev *dev = HWIF(drive)->pci_dev;
318 struct scatterlist *sg = HWIF(drive)->sg_table;
319 int nents = HWIF(drive)->sg_nents;
320
321 pci_unmap_sg(dev, sg, nents, HWIF(drive)->sg_dma_direction);
322}
323
324EXPORT_SYMBOL_GPL(ide_destroy_dmatable);
325
326
327
328
329
330
331
332
333
334
335
336
337static int config_drive_for_dma (ide_drive_t *drive)
338{
339 ide_hwif_t *hwif = drive->hwif;
340 struct hd_driveid *id = drive->id;
341
342 if (drive->media != ide_disk) {
343 if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
344 return 0;
345 }
346
347
348
349
350
351 if ((id->field_valid & 4) && ((id->dma_ultra >> 8) & 0x7f))
352 return 1;
353
354
355
356
357
358 if (id->field_valid & 2)
359 if ((id->dma_mword & 0x404) == 0x404 ||
360 (id->dma_1word & 0x404) == 0x404)
361 return 1;
362
363
364 if (ide_dma_good_drive(drive))
365 return 1;
366
367 return 0;
368}
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384static int dma_timer_expiry (ide_drive_t *drive)
385{
386 ide_hwif_t *hwif = HWIF(drive);
387 u8 dma_stat = hwif->INB(hwif->dma_status);
388
389 printk(KERN_WARNING "%s: dma_timer_expiry: dma status == 0x%02x\n",
390 drive->name, dma_stat);
391
392 if ((dma_stat & 0x18) == 0x18)
393 return WAIT_CMD;
394
395 HWGROUP(drive)->expiry = NULL;
396
397
398 if (dma_stat & 2)
399 return -1;
400
401 if (dma_stat & 1)
402 return WAIT_CMD;
403
404 if (dma_stat & 4)
405 return WAIT_CMD;
406
407 return 0;
408}
409
410
411
412
413
414
415
416
417
418void ide_dma_host_off(ide_drive_t *drive)
419{
420 ide_hwif_t *hwif = HWIF(drive);
421 u8 unit = (drive->select.b.unit & 0x01);
422 u8 dma_stat = hwif->INB(hwif->dma_status);
423
424 hwif->OUTB((dma_stat & ~(1<<(5+unit))), hwif->dma_status);
425}
426
427EXPORT_SYMBOL(ide_dma_host_off);
428
429
430
431
432
433
434
435
436void ide_dma_off_quietly(ide_drive_t *drive)
437{
438 drive->using_dma = 0;
439 ide_toggle_bounce(drive, 0);
440
441 drive->hwif->dma_host_off(drive);
442}
443
444EXPORT_SYMBOL(ide_dma_off_quietly);
445#endif
446
447
448
449
450
451
452
453
454
455void ide_dma_off(ide_drive_t *drive)
456{
457 printk(KERN_INFO "%s: DMA disabled\n", drive->name);
458 drive->hwif->dma_off_quietly(drive);
459}
460
461EXPORT_SYMBOL(ide_dma_off);
462
463#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
464
465
466
467
468
469
470
471
472void ide_dma_host_on(ide_drive_t *drive)
473{
474 if (drive->using_dma) {
475 ide_hwif_t *hwif = HWIF(drive);
476 u8 unit = (drive->select.b.unit & 0x01);
477 u8 dma_stat = hwif->INB(hwif->dma_status);
478
479 hwif->OUTB((dma_stat|(1<<(5+unit))), hwif->dma_status);
480 }
481}
482
483EXPORT_SYMBOL(ide_dma_host_on);
484
485
486
487
488
489
490
491
492int __ide_dma_on (ide_drive_t *drive)
493{
494
495 if (__ide_dma_bad_drive(drive))
496 return 1;
497
498 drive->using_dma = 1;
499 ide_toggle_bounce(drive, 1);
500
501 drive->hwif->dma_host_on(drive);
502
503 return 0;
504}
505
506EXPORT_SYMBOL(__ide_dma_on);
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521int ide_dma_setup(ide_drive_t *drive)
522{
523 ide_hwif_t *hwif = drive->hwif;
524 struct request *rq = HWGROUP(drive)->rq;
525 unsigned int reading;
526 u8 dma_stat;
527
528 if (rq_data_dir(rq))
529 reading = 0;
530 else
531 reading = 1 << 3;
532
533
534 if (!ide_build_dmatable(drive, rq)) {
535 ide_map_sg(drive, rq);
536 return 1;
537 }
538
539
540 if (hwif->mmio)
541 writel(hwif->dmatable_dma, (void __iomem *)hwif->dma_prdtable);
542 else
543 outl(hwif->dmatable_dma, hwif->dma_prdtable);
544
545
546 hwif->OUTB(reading, hwif->dma_command);
547
548
549 dma_stat = hwif->INB(hwif->dma_status);
550
551
552 hwif->OUTB(dma_stat|6, hwif->dma_status);
553 drive->waiting_for_dma = 1;
554 return 0;
555}
556
557EXPORT_SYMBOL_GPL(ide_dma_setup);
558
559static void ide_dma_exec_cmd(ide_drive_t *drive, u8 command)
560{
561
562 ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, dma_timer_expiry);
563}
564
565void ide_dma_start(ide_drive_t *drive)
566{
567 ide_hwif_t *hwif = HWIF(drive);
568 u8 dma_cmd = hwif->INB(hwif->dma_command);
569
570
571
572
573
574
575
576 hwif->OUTB(dma_cmd|1, hwif->dma_command);
577 hwif->dma = 1;
578 wmb();
579}
580
581EXPORT_SYMBOL_GPL(ide_dma_start);
582
583
584int __ide_dma_end (ide_drive_t *drive)
585{
586 ide_hwif_t *hwif = HWIF(drive);
587 u8 dma_stat = 0, dma_cmd = 0;
588
589 drive->waiting_for_dma = 0;
590
591 dma_cmd = hwif->INB(hwif->dma_command);
592
593 hwif->OUTB(dma_cmd&~1, hwif->dma_command);
594
595 dma_stat = hwif->INB(hwif->dma_status);
596
597 hwif->OUTB(dma_stat|6, hwif->dma_status);
598
599 ide_destroy_dmatable(drive);
600
601 hwif->dma = 0;
602 wmb();
603 return (dma_stat & 7) != 4 ? (0x10 | dma_stat) : 0;
604}
605
606EXPORT_SYMBOL(__ide_dma_end);
607
608
609static int __ide_dma_test_irq(ide_drive_t *drive)
610{
611 ide_hwif_t *hwif = HWIF(drive);
612 u8 dma_stat = hwif->INB(hwif->dma_status);
613
614
615 if ((dma_stat & 4) == 4)
616 return 1;
617 if (!drive->waiting_for_dma)
618 printk(KERN_WARNING "%s: (%s) called while not waiting\n",
619 drive->name, __FUNCTION__);
620 return 0;
621}
622#else
623static inline int config_drive_for_dma(ide_drive_t *drive) { return 0; }
624#endif
625
626int __ide_dma_bad_drive (ide_drive_t *drive)
627{
628 struct hd_driveid *id = drive->id;
629
630 int blacklist = ide_in_drive_list(id, drive_blacklist);
631 if (blacklist) {
632 printk(KERN_WARNING "%s: Disabling (U)DMA for %s (blacklisted)\n",
633 drive->name, id->model);
634 return blacklist;
635 }
636 return 0;
637}
638
639EXPORT_SYMBOL(__ide_dma_bad_drive);
640
641static const u8 xfer_mode_bases[] = {
642 XFER_UDMA_0,
643 XFER_MW_DMA_0,
644 XFER_SW_DMA_0,
645};
646
647static unsigned int ide_get_mode_mask(ide_drive_t *drive, u8 base, u8 req_mode)
648{
649 struct hd_driveid *id = drive->id;
650 ide_hwif_t *hwif = drive->hwif;
651 unsigned int mask = 0;
652
653 switch(base) {
654 case XFER_UDMA_0:
655 if ((id->field_valid & 4) == 0)
656 break;
657
658 if (hwif->udma_filter)
659 mask = hwif->udma_filter(drive);
660 else
661 mask = hwif->ultra_mask;
662 mask &= id->dma_ultra;
663
664
665
666
667 if (req_mode > XFER_UDMA_2) {
668 if ((mask & 0x78) && (eighty_ninty_three(drive) == 0))
669 mask &= 0x07;
670 }
671 break;
672 case XFER_MW_DMA_0:
673 if ((id->field_valid & 2) == 0)
674 break;
675 if (hwif->mdma_filter)
676 mask = hwif->mdma_filter(drive);
677 else
678 mask = hwif->mwdma_mask;
679 mask &= id->dma_mword;
680 break;
681 case XFER_SW_DMA_0:
682 if (id->field_valid & 2) {
683 mask = id->dma_1word & hwif->swdma_mask;
684 } else if (id->tDMA) {
685
686
687
688
689 u8 mode = le16_to_cpu(id->tDMA);
690
691
692
693
694
695 if (mode <= 2)
696 mask = ((2 << mode) - 1) & hwif->swdma_mask;
697 }
698 break;
699 default:
700 BUG();
701 break;
702 }
703
704 return mask;
705}
706
707
708
709
710
711
712
713
714
715
716
717
718
719u8 ide_find_dma_mode(ide_drive_t *drive, u8 req_mode)
720{
721 ide_hwif_t *hwif = drive->hwif;
722 unsigned int mask;
723 int x, i;
724 u8 mode = 0;
725
726 if (drive->media != ide_disk) {
727 if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
728 return 0;
729 }
730
731 for (i = 0; i < ARRAY_SIZE(xfer_mode_bases); i++) {
732 if (req_mode < xfer_mode_bases[i])
733 continue;
734 mask = ide_get_mode_mask(drive, xfer_mode_bases[i], req_mode);
735 x = fls(mask) - 1;
736 if (x >= 0) {
737 mode = xfer_mode_bases[i] + x;
738 break;
739 }
740 }
741
742 if (hwif->chipset == ide_acorn && mode == 0) {
743
744
745
746 if (ide_dma_good_drive(drive) && drive->id->eide_dma_time < 150)
747 mode = XFER_MW_DMA_1;
748 }
749
750 mode = min(mode, req_mode);
751
752 printk(KERN_INFO "%s: %s mode selected\n", drive->name,
753 mode ? ide_xfer_verbose(mode) : "no DMA");
754
755 return mode;
756}
757
758EXPORT_SYMBOL_GPL(ide_find_dma_mode);
759
760static int ide_tune_dma(ide_drive_t *drive)
761{
762 u8 speed;
763
764 if (noautodma || drive->nodma || (drive->id->capability & 1) == 0)
765 return 0;
766
767
768 if (__ide_dma_bad_drive(drive))
769 return 0;
770
771 if (ide_id_dma_bug(drive))
772 return 0;
773
774 if (drive->hwif->host_flags & IDE_HFLAG_TRUST_BIOS_FOR_DMA)
775 return config_drive_for_dma(drive);
776
777 speed = ide_max_dma_mode(drive);
778
779 if (!speed)
780 return 0;
781
782 if (drive->hwif->host_flags & IDE_HFLAG_NO_SET_MODE)
783 return 0;
784
785 if (ide_set_dma_mode(drive, speed))
786 return 0;
787
788 return 1;
789}
790
791static int ide_dma_check(ide_drive_t *drive)
792{
793 ide_hwif_t *hwif = drive->hwif;
794 int vdma = (hwif->host_flags & IDE_HFLAG_VDMA)? 1 : 0;
795
796 if (!vdma && ide_tune_dma(drive))
797 return 0;
798
799
800 if (hwif->host_flags & IDE_HFLAG_TRUST_BIOS_FOR_DMA)
801 return -1;
802
803 ide_set_max_pio(drive);
804
805 return vdma ? 0 : -1;
806}
807
808int ide_id_dma_bug(ide_drive_t *drive)
809{
810 struct hd_driveid *id = drive->id;
811
812 if (id->field_valid & 4) {
813 if ((id->dma_ultra >> 8) && (id->dma_mword >> 8))
814 goto err_out;
815 } else if (id->field_valid & 2) {
816 if ((id->dma_mword >> 8) && (id->dma_1word >> 8))
817 goto err_out;
818 }
819 return 0;
820err_out:
821 printk(KERN_ERR "%s: bad DMA info in identify block\n", drive->name);
822 return 1;
823}
824
825int ide_set_dma(ide_drive_t *drive)
826{
827 ide_hwif_t *hwif = drive->hwif;
828 int rc;
829
830 rc = ide_dma_check(drive);
831
832 switch(rc) {
833 case -1:
834 hwif->dma_off_quietly(drive);
835 return -1;
836 case 0:
837 return hwif->ide_dma_on(drive);
838 case 1:
839 break;
840 default:
841 BUG();
842 break;
843 }
844
845 return rc;
846}
847
848#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
849void ide_dma_lost_irq (ide_drive_t *drive)
850{
851 printk("%s: DMA interrupt recovery\n", drive->name);
852}
853
854EXPORT_SYMBOL(ide_dma_lost_irq);
855
856void ide_dma_timeout (ide_drive_t *drive)
857{
858 ide_hwif_t *hwif = HWIF(drive);
859
860 printk(KERN_ERR "%s: timeout waiting for DMA\n", drive->name);
861
862 if (hwif->ide_dma_test_irq(drive))
863 return;
864
865 hwif->ide_dma_end(drive);
866}
867
868EXPORT_SYMBOL(ide_dma_timeout);
869
870static void ide_release_dma_engine(ide_hwif_t *hwif)
871{
872 if (hwif->dmatable_cpu) {
873 pci_free_consistent(hwif->pci_dev,
874 PRD_ENTRIES * PRD_BYTES,
875 hwif->dmatable_cpu,
876 hwif->dmatable_dma);
877 hwif->dmatable_cpu = NULL;
878 }
879}
880
881static int ide_release_iomio_dma(ide_hwif_t *hwif)
882{
883 release_region(hwif->dma_base, 8);
884 if (hwif->extra_ports)
885 release_region(hwif->extra_base, hwif->extra_ports);
886 return 1;
887}
888
889
890
891
892int ide_release_dma(ide_hwif_t *hwif)
893{
894 ide_release_dma_engine(hwif);
895
896 if (hwif->mmio)
897 return 1;
898 else
899 return ide_release_iomio_dma(hwif);
900}
901
902static 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
908 if (hwif->dmatable_cpu)
909 return 0;
910
911 printk(KERN_ERR "%s: -- Error, unable to allocate DMA table.\n",
912 hwif->cds->name);
913
914 return 1;
915}
916
917static int ide_mapped_mmio_dma(ide_hwif_t *hwif, unsigned long base, unsigned int ports)
918{
919 printk(KERN_INFO " %s: MMIO-DMA ", hwif->name);
920
921 return 0;
922}
923
924static int ide_iomio_dma(ide_hwif_t *hwif, unsigned long base, unsigned int ports)
925{
926 printk(KERN_INFO " %s: BM-DMA at 0x%04lx-0x%04lx",
927 hwif->name, base, base + ports - 1);
928
929 if (!request_region(base, ports, hwif->name)) {
930 printk(" -- Error, ports in use.\n");
931 return 1;
932 }
933
934 if (hwif->cds->extra) {
935 hwif->extra_base = base + (hwif->channel ? 8 : 16);
936
937 if (!hwif->mate || !hwif->mate->extra_ports) {
938 if (!request_region(hwif->extra_base,
939 hwif->cds->extra, hwif->cds->name)) {
940 printk(" -- Error, extra ports in use.\n");
941 release_region(base, ports);
942 return 1;
943 }
944 hwif->extra_ports = hwif->cds->extra;
945 }
946 }
947
948 return 0;
949}
950
951static int ide_dma_iobase(ide_hwif_t *hwif, unsigned long base, unsigned int ports)
952{
953 if (hwif->mmio)
954 return ide_mapped_mmio_dma(hwif, base,ports);
955
956 return ide_iomio_dma(hwif, base, ports);
957}
958
959void ide_setup_dma(ide_hwif_t *hwif, unsigned long base, unsigned num_ports)
960{
961 if (ide_dma_iobase(hwif, base, num_ports))
962 return;
963
964 if (ide_allocate_dma_engine(hwif)) {
965 ide_release_dma(hwif);
966 return;
967 }
968
969 hwif->dma_base = base;
970
971 if (hwif->mate)
972 hwif->dma_master = hwif->channel ? hwif->mate->dma_base : base;
973 else
974 hwif->dma_master = base;
975
976 if (!(hwif->dma_command))
977 hwif->dma_command = hwif->dma_base;
978 if (!(hwif->dma_vendor1))
979 hwif->dma_vendor1 = (hwif->dma_base + 1);
980 if (!(hwif->dma_status))
981 hwif->dma_status = (hwif->dma_base + 2);
982 if (!(hwif->dma_vendor3))
983 hwif->dma_vendor3 = (hwif->dma_base + 3);
984 if (!(hwif->dma_prdtable))
985 hwif->dma_prdtable = (hwif->dma_base + 4);
986
987 if (!hwif->dma_off_quietly)
988 hwif->dma_off_quietly = &ide_dma_off_quietly;
989 if (!hwif->dma_host_off)
990 hwif->dma_host_off = &ide_dma_host_off;
991 if (!hwif->ide_dma_on)
992 hwif->ide_dma_on = &__ide_dma_on;
993 if (!hwif->dma_host_on)
994 hwif->dma_host_on = &ide_dma_host_on;
995 if (!hwif->dma_setup)
996 hwif->dma_setup = &ide_dma_setup;
997 if (!hwif->dma_exec_cmd)
998 hwif->dma_exec_cmd = &ide_dma_exec_cmd;
999 if (!hwif->dma_start)
1000 hwif->dma_start = &ide_dma_start;
1001 if (!hwif->ide_dma_end)
1002 hwif->ide_dma_end = &__ide_dma_end;
1003 if (!hwif->ide_dma_test_irq)
1004 hwif->ide_dma_test_irq = &__ide_dma_test_irq;
1005 if (!hwif->dma_timeout)
1006 hwif->dma_timeout = &ide_dma_timeout;
1007 if (!hwif->dma_lost_irq)
1008 hwif->dma_lost_irq = &ide_dma_lost_irq;
1009
1010 if (hwif->chipset != ide_trm290) {
1011 u8 dma_stat = hwif->INB(hwif->dma_status);
1012 printk(", BIOS settings: %s:%s, %s:%s",
1013 hwif->drives[0].name, (dma_stat & 0x20) ? "DMA" : "pio",
1014 hwif->drives[1].name, (dma_stat & 0x40) ? "DMA" : "pio");
1015 }
1016 printk("\n");
1017
1018 BUG_ON(!hwif->dma_master);
1019}
1020
1021EXPORT_SYMBOL_GPL(ide_setup_dma);
1022#endif
1023