2 * linux/include/asm-parisc/ide.h
4 * Copyright (C) 1994-1996 Linus Torvalds & authors
8 * This file contains the PARISC architecture specific IDE code.
11 #ifndef __ASM_PARISC_IDE_H
12 #define __ASM_PARISC_IDE_H
16 /* Generic I/O and MEMIO string operations. */
18 #define __ide_insw insw
19 #define __ide_insl insl
20 #define __ide_outsw outsw
21 #define __ide_outsl outsl
23 static __inline__
void __ide_mm_insw(void __iomem
*port
, void *addr
, u32 count
)
26 *(u16
*)addr
= __raw_readw(port
);
31 static __inline__
void __ide_mm_insl(void __iomem
*port
, void *addr
, u32 count
)
34 *(u32
*)addr
= __raw_readl(port
);
39 static __inline__
void __ide_mm_outsw(void __iomem
*port
, void *addr
, u32 count
)
42 __raw_writew(*(u16
*)addr
, port
);
47 static __inline__
void __ide_mm_outsl(void __iomem
*port
, void *addr
, u32 count
)
50 __raw_writel(*(u32
*)addr
, port
);
55 #endif /* __KERNEL__ */
57 #endif /* __ASM_PARISC_IDE_H */