1 /* Copyright (C) 1996, 2000, 2002, 2009 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 /* If TURN_ON is TRUE, request for permission to do direct i/o on the
27 port numbers in the range [FROM,FROM+NUM-1]. Otherwise, turn I/O
28 permission off for that range. This call requires root privileges.
30 Portability note: not all Linux platforms support this call. Most
31 platforms based on the PC I/O architecture probably will, however.
32 E.g., Linux/Alpha for Alpha PCs supports this. */
33 extern int ioperm (unsigned long int __from
, unsigned long int __num
,
34 int __turn_on
) __THROW
;
36 /* Set the I/O privilege level to LEVEL. If LEVEL>3, permission to
37 access any I/O port is granted. This call requires root
39 extern int iopl (int __level
) __THROW
;
41 #if defined __GNUC__ && __GNUC__ >= 2
43 static __inline
unsigned char
44 inb (unsigned short int __port
)
48 __asm__
__volatile__ ("inb %w1,%0":"=a" (_v
):"Nd" (__port
));
52 static __inline
unsigned char
53 inb_p (unsigned short int __port
)
57 __asm__
__volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v
):"Nd" (__port
));
61 static __inline
unsigned short int
62 inw (unsigned short int __port
)
66 __asm__
__volatile__ ("inw %w1,%0":"=a" (_v
):"Nd" (__port
));
70 static __inline
unsigned short int
71 inw_p (unsigned short int __port
)
73 unsigned short int _v
;
75 __asm__
__volatile__ ("inw %w1,%0\noutb %%al,$0x80":"=a" (_v
):"Nd" (__port
));
79 static __inline
unsigned int
80 inl (unsigned short int __port
)
84 __asm__
__volatile__ ("inl %w1,%0":"=a" (_v
):"Nd" (__port
));
88 static __inline
unsigned int
89 inl_p (unsigned short int __port
)
92 __asm__
__volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v
):"Nd" (__port
));
97 outb (unsigned char __value
, unsigned short int __port
)
99 __asm__
__volatile__ ("outb %b0,%w1": :"a" (__value
), "Nd" (__port
));
103 outb_p (unsigned char __value
, unsigned short int __port
)
105 __asm__
__volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (__value
),
110 outw (unsigned short int __value
, unsigned short int __port
)
112 __asm__
__volatile__ ("outw %w0,%w1": :"a" (__value
), "Nd" (__port
));
117 outw_p (unsigned short int __value
, unsigned short int __port
)
119 __asm__
__volatile__ ("outw %w0,%w1\noutb %%al,$0x80": :"a" (__value
),
124 outl (unsigned int __value
, unsigned short int __port
)
126 __asm__
__volatile__ ("outl %0,%w1": :"a" (__value
), "Nd" (__port
));
130 outl_p (unsigned int __value
, unsigned short int __port
)
132 __asm__
__volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (__value
),
137 insb (unsigned short int __port
, void *addr
, unsigned long int __count
)
139 __asm__
__volatile__ ("cld ; rep ; insb":"=D" (addr
), "=c" (__count
)
140 :"d" (__port
), "0" (addr
), "1" (__count
));
144 insw (unsigned short int __port
, void *addr
, unsigned long int __count
)
146 __asm__
__volatile__ ("cld ; rep ; insw":"=D" (addr
), "=c" (__count
)
147 :"d" (__port
), "0" (addr
), "1" (__count
));
151 insl (unsigned short int __port
, void *addr
, unsigned long int __count
)
153 __asm__
__volatile__ ("cld ; rep ; insl":"=D" (addr
), "=c" (__count
)
154 :"d" (__port
), "0" (addr
), "1" (__count
));
158 outsb (unsigned short int __port
, const void *addr
, unsigned long int __count
)
160 __asm__
__volatile__ ("cld ; rep ; outsb":"=S" (addr
), "=c" (__count
)
161 :"d" (__port
), "0" (addr
), "1" (__count
));
165 outsw (unsigned short int __port
, const void *addr
, unsigned long int __count
)
167 __asm__
__volatile__ ("cld ; rep ; outsw":"=S" (addr
), "=c" (__count
)
168 :"d" (__port
), "0" (addr
), "1" (__count
));
172 outsl (unsigned short int __port
, const void *addr
, unsigned long int __count
)
174 __asm__
__volatile__ ("cld ; rep ; outsl":"=S" (addr
), "=c" (__count
)
175 :"d" (__port
), "0" (addr
), "1" (__count
));
181 #endif /* _SYS_IO_H */