1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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 */
|