]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/x86_64/sys/io.h
Inital import
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / x86_64 / sys / io.h
1 /* Copyright (C) 1996, 2000, 2002 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
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.
8
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.
13
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.  */
18
19 #ifndef _SYS_IO_H
20 #define _SYS_IO_H       1
21
22 #include <features.h>
23
24 __BEGIN_DECLS
25
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.
29
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;
35 libc_hidden_proto(ioperm)
36
37 /* Set the I/O privilege level to LEVEL.  If LEVEL>3, permission to
38    access any I/O port is granted.  This call requires root
39    privileges. */
40 extern int iopl (int __level) __THROW;
41
42 #if defined __GNUC__ && __GNUC__ >= 2
43
44 static __inline unsigned char
45 inb (unsigned short int port)
46 {
47   unsigned char _v;
48
49   __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port));
50   return _v;
51 }
52
53 static __inline unsigned char
54 inb_p (unsigned short int port)
55 {
56   unsigned char _v;
57
58   __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
59   return _v;
60 }
61
62 static __inline unsigned short int
63 inw (unsigned short int port)
64 {
65   unsigned short _v;
66
67   __asm__ __volatile__ ("inw %w1,%0":"=a" (_v):"Nd" (port));
68   return _v;
69 }
70
71 static __inline unsigned short int
72 inw_p (unsigned short int port)
73 {
74   unsigned short int _v;
75
76   __asm__ __volatile__ ("inw %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
77   return _v;
78 }
79
80 static __inline unsigned int
81 inl (unsigned short int port)
82 {
83   unsigned int _v;
84
85   __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (port));
86   return _v;
87 }
88
89 static __inline unsigned int
90 inl_p (unsigned short int port)
91 {
92   unsigned int _v;
93   __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
94   return _v;
95 }
96
97 static __inline void
98 outb (unsigned char value, unsigned short int port)
99 {
100   __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port));
101 }
102
103 static __inline void
104 outb_p (unsigned char value, unsigned short int port)
105 {
106   __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value),
107                         "Nd" (port));
108 }
109
110 static __inline void
111 outw (unsigned short int value, unsigned short int port)
112 {
113   __asm__ __volatile__ ("outw %w0,%w1": :"a" (value), "Nd" (port));
114
115 }
116
117 static __inline void
118 outw_p (unsigned short int value, unsigned short int port)
119 {
120   __asm__ __volatile__ ("outw %w0,%w1\noutb %%al,$0x80": :"a" (value),
121                         "Nd" (port));
122 }
123
124 static __inline void
125 outl (unsigned int value, unsigned short int port)
126 {
127   __asm__ __volatile__ ("outl %0,%w1": :"a" (value), "Nd" (port));
128 }
129
130 static __inline void
131 outl_p (unsigned int value, unsigned short int port)
132 {
133   __asm__ __volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (value),
134                         "Nd" (port));
135 }
136
137 static __inline void
138 insb (unsigned short int port, void *addr, unsigned long int count)
139 {
140   __asm__ __volatile__ ("cld ; rep ; insb":"=D" (addr),
141                         "=c" (count):"d" (port), "0" (addr), "1" (count));
142 }
143
144 static __inline void
145 insw (unsigned short int port, void *addr, unsigned long int count)
146 {
147   __asm__ __volatile__ ("cld ; rep ; insw":"=D" (addr),
148                         "=c" (count):"d" (port), "0" (addr), "1" (count));
149 }
150
151 static __inline void
152 insl (unsigned short int port, void *addr, unsigned long int count)
153 {
154   __asm__ __volatile__ ("cld ; rep ; insl":"=D" (addr),
155                         "=c" (count):"d" (port), "0" (addr), "1" (count));
156 }
157
158 static __inline void
159 outsb (unsigned short int port, const void *addr, unsigned long int count)
160 {
161   __asm__ __volatile__ ("cld ; rep ; outsb":"=S" (addr),
162                         "=c" (count):"d" (port), "0" (addr), "1" (count));
163 }
164
165 static __inline void
166 outsw (unsigned short int port, const void *addr, unsigned long int count)
167 {
168   __asm__ __volatile__ ("cld ; rep ; outsw":"=S" (addr),
169                         "=c" (count):"d" (port), "0" (addr), "1" (count));
170 }
171
172 static __inline void
173 outsl (unsigned short int port, const void *addr, unsigned long int count)
174 {
175   __asm__ __volatile__ ("cld ; rep ; outsl":"=S" (addr),
176                         "=c" (count):"d" (port), "0" (addr), "1" (count));
177 }
178
179 #endif  /* GNU C */
180
181 __END_DECLS
182 #endif /* _SYS_IO_H */