2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / x86_64 / sys / io.h
blob802a0dfb42c2d402b4c28a35a030ed78906e90ce
1 /* Copyright (C) 1996, 2000, 2002 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
17 02111-1307 USA. */
19 #ifndef _SYS_IO_H
20 #define _SYS_IO_H 1
22 #include <features.h>
24 __BEGIN_DECLS
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
38 privileges. */
39 extern int iopl (int __level) __THROW;
41 #if defined __GNUC__ && __GNUC__ >= 2
43 static __inline unsigned char
44 inb (unsigned short int port)
46 unsigned char _v;
48 __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port));
49 return _v;
52 static __inline unsigned char
53 inb_p (unsigned short int port)
55 unsigned char _v;
57 __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
58 return _v;
61 static __inline unsigned short int
62 inw (unsigned short int port)
64 unsigned short _v;
66 __asm__ __volatile__ ("inw %w1,%0":"=a" (_v):"Nd" (port));
67 return _v;
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));
76 return _v;
79 static __inline unsigned int
80 inl (unsigned short int port)
82 unsigned int _v;
84 __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (port));
85 return _v;
88 static __inline unsigned int
89 inl_p (unsigned short int port)
91 unsigned int _v;
92 __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
93 return _v;
96 static __inline void
97 outb (unsigned char value, unsigned short int port)
99 __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port));
102 static __inline void
103 outb_p (unsigned char value, unsigned short int port)
105 __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value),
106 "Nd" (port));
109 static __inline void
110 outw (unsigned short int value, unsigned short int port)
112 __asm__ __volatile__ ("outw %w0,%w1": :"a" (value), "Nd" (port));
116 static __inline void
117 outw_p (unsigned short int value, unsigned short int port)
119 __asm__ __volatile__ ("outw %w0,%w1\noutb %%al,$0x80": :"a" (value),
120 "Nd" (port));
123 static __inline void
124 outl (unsigned int value, unsigned short int port)
126 __asm__ __volatile__ ("outl %0,%w1": :"a" (value), "Nd" (port));
129 static __inline void
130 outl_p (unsigned int value, unsigned short int port)
132 __asm__ __volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (value),
133 "Nd" (port));
136 static __inline void
137 insb (unsigned short int port, void *addr, unsigned long int count)
139 __asm__ __volatile__ ("cld ; rep ; insb":"=D" (addr),
140 "=c" (count):"d" (port), "0" (addr), "1" (count));
143 static __inline void
144 insw (unsigned short int port, void *addr, unsigned long int count)
146 __asm__ __volatile__ ("cld ; rep ; insw":"=D" (addr),
147 "=c" (count):"d" (port), "0" (addr), "1" (count));
150 static __inline void
151 insl (unsigned short int port, void *addr, unsigned long int count)
153 __asm__ __volatile__ ("cld ; rep ; insl":"=D" (addr),
154 "=c" (count):"d" (port), "0" (addr), "1" (count));
157 static __inline void
158 outsb (unsigned short int port, const void *addr, unsigned long int count)
160 __asm__ __volatile__ ("cld ; rep ; outsb":"=S" (addr),
161 "=c" (count):"d" (port), "0" (addr), "1" (count));
164 static __inline void
165 outsw (unsigned short int port, const void *addr, unsigned long int count)
167 __asm__ __volatile__ ("cld ; rep ; outsw":"=S" (addr),
168 "=c" (count):"d" (port), "0" (addr), "1" (count));
171 static __inline void
172 outsl (unsigned short int port, const void *addr, unsigned long int count)
174 __asm__ __volatile__ ("cld ; rep ; outsl":"=S" (addr),
175 "=c" (count):"d" (port), "0" (addr), "1" (count));
178 #endif /* GNU C */
180 __END_DECLS
181 #endif /* _SYS_IO_H */