patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-parisc / ide.h
1 /*
2  *  linux/include/asm-parisc/ide.h
3  *
4  *  Copyright (C) 1994-1996  Linus Torvalds & authors
5  */
6
7 /*
8  *  This file contains the PARISC architecture specific IDE code.
9  */
10
11 #ifndef __ASM_PARISC_IDE_H
12 #define __ASM_PARISC_IDE_H
13
14 #ifdef __KERNEL__
15
16 #include <linux/config.h>
17
18 #ifndef MAX_HWIFS
19 #define MAX_HWIFS       2
20 #endif
21
22 #define IDE_ARCH_OBSOLETE_INIT
23 #define ide_default_io_ctl(base)        ((base) + 0x206) /* obsolete */
24
25 #define ide_request_irq(irq,hand,flg,dev,id)    request_irq((irq),(hand),(flg),(dev),(id))
26 #define ide_free_irq(irq,dev_id)                free_irq((irq), (dev_id))
27 #define ide_check_region(from,extent)           check_region((from), (extent))
28 #define ide_request_region(from,extent,name)    request_region((from), (extent), (name))
29 #define ide_release_region(from,extent)         release_region((from), (extent))
30 /* Generic I/O and MEMIO string operations.  */
31
32 #define __ide_insw      insw
33 #define __ide_insl      insl
34 #define __ide_outsw     outsw
35 #define __ide_outsl     outsl
36
37 static __inline__ void __ide_mm_insw(unsigned long port, void *addr, u32 count)
38 {
39         while (count--) {
40                 *(u16 *)addr = __raw_readw(port);
41                 addr += 2;
42         }
43 }
44
45 static __inline__ void __ide_mm_insl(unsigned long port, void *addr, u32 count)
46 {
47         while (count--) {
48                 *(u32 *)addr = __raw_readl(port);
49                 addr += 4;
50         }
51 }
52
53 static __inline__ void __ide_mm_outsw(unsigned long port, void *addr, u32 count)
54 {
55         while (count--) {
56                 __raw_writew(*(u16 *)addr, port);
57                 addr += 2;
58         }
59 }
60
61 static __inline__ void __ide_mm_outsl(unsigned long port, void *addr, u32 count)
62 {
63         while (count--) {
64                 __raw_writel(*(u32 *)addr, port);
65                 addr += 4;
66         }
67 }
68
69 #endif /* __KERNEL__ */
70
71 #endif /* __ASM_PARISC_IDE_H */