This commit was manufactured by cvs2svn to create tag
[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_default_irq(base) (0)
23 #define ide_default_io_base(index) (0)
24
25 #define IDE_ARCH_OBSOLETE_INIT
26 #define ide_default_io_ctl(base)        ((base) + 0x206) /* obsolete */
27
28 #define ide_init_default_irq(base)      (0)
29
30 #define ide_request_irq(irq,hand,flg,dev,id)    request_irq((irq),(hand),(flg),(dev),(id))
31 #define ide_free_irq(irq,dev_id)                free_irq((irq), (dev_id))
32 #define ide_check_region(from,extent)           check_region((from), (extent))
33 #define ide_request_region(from,extent,name)    request_region((from), (extent), (name))
34 #define ide_release_region(from,extent)         release_region((from), (extent))
35 /* Generic I/O and MEMIO string operations.  */
36
37 #define __ide_insw      insw
38 #define __ide_insl      insl
39 #define __ide_outsw     outsw
40 #define __ide_outsl     outsl
41
42 static __inline__ void __ide_mm_insw(unsigned long port, void *addr, u32 count)
43 {
44         while (count--) {
45                 *(u16 *)addr = __raw_readw(port);
46                 addr += 2;
47         }
48 }
49
50 static __inline__ void __ide_mm_insl(unsigned long port, void *addr, u32 count)
51 {
52         while (count--) {
53                 *(u32 *)addr = __raw_readl(port);
54                 addr += 4;
55         }
56 }
57
58 static __inline__ void __ide_mm_outsw(unsigned long port, void *addr, u32 count)
59 {
60         while (count--) {
61                 __raw_writew(*(u16 *)addr, port);
62                 addr += 2;
63         }
64 }
65
66 static __inline__ void __ide_mm_outsl(unsigned long port, void *addr, u32 count)
67 {
68         while (count--) {
69                 __raw_writel(*(u32 *)addr, port);
70                 addr += 4;
71         }
72 }
73
74 #endif /* __KERNEL__ */
75
76 #endif /* __ASM_PARISC_IDE_H */