diff options
Diffstat (limited to 'include/asm-sh/io_od.h')
-rw-r--r-- | include/asm-sh/io_od.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/include/asm-sh/io_od.h b/include/asm-sh/io_od.h new file mode 100644 index 000000000..3a7e477be --- /dev/null +++ b/include/asm-sh/io_od.h @@ -0,0 +1,78 @@ +/* + * include/asm-sh/io_od.h + * + * Copyright 2000 Stuart Menefy (stuart.menefy@st.com) + * + * May be copied or modified under the terms of the GNU General Public + * License. See linux/COPYING for more information. + * + * IO functions for an STMicroelectronics Overdrive + */ + +#ifndef _ASM_SH_IO_OD_H +#define _ASM_SH_IO_OD_H + +#include <asm/io_generic.h> + +extern unsigned long od_inb(unsigned int port); +extern unsigned long od_inw(unsigned int port); +extern unsigned long od_inl(unsigned int port); + +extern void od_outb(unsigned long value, unsigned int port); +extern void od_outw(unsigned long value, unsigned int port); +extern void od_outl(unsigned long value, unsigned int port); + +extern unsigned long od_inb_p(unsigned int port); +extern unsigned long od_inw_p(unsigned int port); +extern unsigned long od_inl_p(unsigned int port); +extern void od_outb_p(unsigned long value, unsigned int port); +extern void od_outw_p(unsigned long value, unsigned int port); +extern void od_outl_p(unsigned long value, unsigned int port); + +extern void od_insb(unsigned int port, void *addr, unsigned long count); +extern void od_insw(unsigned int port, void *addr, unsigned long count); +extern void od_insl(unsigned int port, void *addr, unsigned long count); +extern void od_outsb(unsigned int port, const void *addr, unsigned long count); +extern void od_outsw(unsigned int port, const void *addr, unsigned long count); +extern void od_outsl(unsigned int port, const void *addr, unsigned long count); + +extern unsigned long od_isa_port2addr(unsigned long offset); + +#ifdef __WANT_IO_DEF + +# define __inb od_inb +# define __inw od_inw +# define __inl od_inl +# define __outb od_outb +# define __outw od_outw +# define __outl od_outl + +# define __inb_p od_inb_p +# define __inw_p od_inw_p +# define __inl_p od_inl_p +# define __outb_p od_outb_p +# define __outw_p od_outw_p +# define __outl_p od_outl_p + +# define __insb od_insb +# define __insw od_insw +# define __insl od_insl +# define __outsb od_outsb +# define __outsw od_outsw +# define __outsl od_outsl + +# define __readb generic_readb +# define __readw generic_readw +# define __readl generic_readl +# define __writeb generic_writeb +# define __writew generic_writew +# define __writel generic_writel + +# define __isa_port2addr od_isa_port2addr +# define __ioremap generic_ioremap +# define __ioremap_nocache generic_ioremap_nocache +# define __iounmap generic_iounmap + +#endif + +#endif /* _ASM_SH_IO_OD_H */ |