diff options
Diffstat (limited to 'include/asm-sh/se7300/io.h')
| -rw-r--r-- | include/asm-sh/se7300/io.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/include/asm-sh/se7300/io.h b/include/asm-sh/se7300/io.h new file mode 100644 index 000000000000..c6af85529714 --- /dev/null +++ b/include/asm-sh/se7300/io.h | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | /* | ||
| 2 | * include/asm-sh/se7300/io.h | ||
| 3 | * | ||
| 4 | * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp> | ||
| 5 | * IO functions for SH-Mobile(SH7300) SolutionEngine | ||
| 6 | */ | ||
| 7 | |||
| 8 | #ifndef _ASM_SH_IO_7300SE_H | ||
| 9 | #define _ASM_SH_IO_7300SE_H | ||
| 10 | |||
| 11 | extern unsigned char sh7300se_inb(unsigned long port); | ||
| 12 | extern unsigned short sh7300se_inw(unsigned long port); | ||
| 13 | extern unsigned int sh7300se_inl(unsigned long port); | ||
| 14 | |||
| 15 | extern void sh7300se_outb(unsigned char value, unsigned long port); | ||
| 16 | extern void sh7300se_outw(unsigned short value, unsigned long port); | ||
| 17 | extern void sh7300se_outl(unsigned int value, unsigned long port); | ||
| 18 | |||
| 19 | extern unsigned char sh7300se_inb_p(unsigned long port); | ||
| 20 | extern void sh7300se_outb_p(unsigned char value, unsigned long port); | ||
| 21 | |||
| 22 | extern void sh7300se_insb(unsigned long port, void *addr, unsigned long count); | ||
| 23 | extern void sh7300se_insw(unsigned long port, void *addr, unsigned long count); | ||
| 24 | extern void sh7300se_insl(unsigned long port, void *addr, unsigned long count); | ||
| 25 | extern void sh7300se_outsb(unsigned long port, const void *addr, unsigned long count); | ||
| 26 | extern void sh7300se_outsw(unsigned long port, const void *addr, unsigned long count); | ||
| 27 | extern void sh7300se_outsl(unsigned long port, const void *addr, unsigned long count); | ||
| 28 | |||
| 29 | #endif /* _ASM_SH_IO_7300SE_H */ | ||
