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 #define MAX_HWIFS 4 /* same as the other archs */
53 * Get rid of defs from io.h - ide has its private and conflicting versions
54 * Since so far no single m68k platform uses ISA/PCI I/O space for IDE, we
55 * always use the `raw' MMIO versions
76 #define insw(port, addr, n) raw_insw((u16 *)port, addr, n)
78 #define insl(port, addr, n) raw_insl((u32 *)port, addr, n)
79 #define outb(val, port) out_8(port, val)
80 #define outw(val, port) out_be16(port, val)
81 #define outsw(port, addr, n) raw_outsw((u16 *)port, addr, n)
82 #define outl(val, port) out_be32(port, val)
83 #define outsl(port, addr, n) raw_outsl((u32 *)port, addr, n)
86 #define __ide_mm_insw(port, addr, n) raw_insw((u16 *)port, addr, n)
88 #define __ide_mm_insl(port, addr, n) raw_insl((u32 *)port, addr, n)
89 #define writeb(val, port) out_8(port, val)
90 #define writew(val, port) out_be16(port, val)
91 #define __ide_mm_outsw(port, addr, n) raw_outsw((u16 *)port, addr, n)
92 #define writel(val, port) out_be32(port, val)
93 #define __ide_mm_outsl(port, addr, n) raw_outsl((u32 *)port, addr, n)
94 #if defined(CONFIG_ATARI) || defined(CONFIG_Q40)
95 #define insw_swapw(port, addr, n) raw_insw_swapw((u16 *)port, addr, n)
96 #define outsw_swapw(port, addr, n) raw_outsw_swapw((u16 *)port, addr, n)
100 /* Q40 and Atari have byteswapped IDE busses and since many interesting
101 * values in the identification string are text, chars and words they
102 * happened to be almost correct without swapping.. However *_capacity
103 * is needed for drives over 8 GB. RZ */
104 #if defined(CONFIG_Q40) || defined(CONFIG_ATARI)
105 #define M68K_IDE_SWAPW (MACH_IS_Q40 || MACH_IS_ATARI)
108 #ifdef CONFIG_BLK_DEV_FALCON_IDE
109 #define IDE_ARCH_LOCK
111 extern int falconide_intr_lock
;
113 static __inline__
void ide_release_lock (void)
116 if (falconide_intr_lock
== 0) {
117 printk("ide_release_lock: bug\n");
120 falconide_intr_lock
= 0;
125 static __inline__
void
126 ide_get_lock(irqreturn_t (*handler
)(int, void *, struct pt_regs
*), void *data
)
129 if (falconide_intr_lock
== 0) {
130 if (in_interrupt() > 0)
131 panic( "Falcon IDE hasn't ST-DMA lock in interrupt" );
132 stdma_lock(handler
, data
);
133 falconide_intr_lock
= 1;
137 #endif /* CONFIG_BLK_DEV_FALCON_IDE */
139 #define IDE_ARCH_ACK_INTR
140 #define ide_ack_intr(hwif) ((hwif)->hw.ack_intr ? (hwif)->hw.ack_intr(hwif) : 1)
142 #endif /* __KERNEL__ */
143 #endif /* _M68K_IDE_H */