2 * linux/include/asm-m68k/ide.h
4 * Copyright (C) 1994-1996 Linus Torvalds & authors
7 /* Copyright(c) 1996 Kars de Jong */
8 /* Based on the ide driver from 1.2.13pl8 */
11 * Credits (alphabetical):
26 * - Geert Uytterhoeven
35 #include <asm/setup.h>
40 #include <linux/interrupt.h>
41 #include <asm/atari_stdma.h>
45 #include <asm/macints.h>
49 * Get rid of defs from io.h - ide has its private and conflicting versions
50 * Since so far no single m68k platform uses ISA/PCI I/O space for IDE, we
51 * always use the `raw' MMIO versions
72 #define insw(port, addr, n) raw_insw((u16 *)port, addr, n)
74 #define insl(port, addr, n) raw_insl((u32 *)port, addr, n)
75 #define outb(val, port) out_8(port, val)
76 #define outw(val, port) out_be16(port, val)
77 #define outsw(port, addr, n) raw_outsw((u16 *)port, addr, n)
78 #define outl(val, port) out_be32(port, val)
79 #define outsl(port, addr, n) raw_outsl((u32 *)port, addr, n)
82 #define __ide_mm_insw(port, addr, n) raw_insw((u16 *)port, addr, n)
84 #define __ide_mm_insl(port, addr, n) raw_insl((u32 *)port, addr, n)
85 #define writeb(val, port) out_8(port, val)
86 #define writew(val, port) out_be16(port, val)
87 #define __ide_mm_outsw(port, addr, n) raw_outsw((u16 *)port, addr, n)
88 #define writel(val, port) out_be32(port, val)
89 #define __ide_mm_outsl(port, addr, n) raw_outsl((u32 *)port, addr, n)
90 #if defined(CONFIG_ATARI) || defined(CONFIG_Q40)
91 #define insw_swapw(port, addr, n) raw_insw_swapw((u16 *)port, addr, n)
92 #define outsw_swapw(port, addr, n) raw_outsw_swapw((u16 *)port, addr, n)
95 #ifdef CONFIG_BLK_DEV_FALCON_IDE
98 extern int falconide_intr_lock
;
100 static __inline__
void ide_release_lock (void)
103 if (falconide_intr_lock
== 0) {
104 printk("ide_release_lock: bug\n");
107 falconide_intr_lock
= 0;
112 static __inline__
void
113 ide_get_lock(irq_handler_t handler
, void *data
)
116 if (falconide_intr_lock
== 0) {
117 if (in_interrupt() > 0)
118 panic( "Falcon IDE hasn't ST-DMA lock in interrupt" );
119 stdma_lock(handler
, data
);
120 falconide_intr_lock
= 1;
124 #endif /* CONFIG_BLK_DEV_FALCON_IDE */
126 #define IDE_ARCH_ACK_INTR
127 #define ide_ack_intr(hwif) ((hwif)->ack_intr ? (hwif)->ack_intr(hwif) : 1)
129 #endif /* __KERNEL__ */
130 #endif /* _M68K_IDE_H */