1 /* Copyright (C) 1999-2024 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, see
16 <https://www.gnu.org/licenses/>. */
18 /* I/O access is restricted to ISA port space (ports 0..65535).
19 Modern devices hopefully are sane enough not to put any performance
20 critical registers in i/o space.
22 On the first call to ioperm() or iopl(), the entire (E)ISA port
23 space is mapped into the virtual address space at address io.base.
24 mprotect() calls are then used to enable/disable access to ports.
25 Per 4KB page, there are 4 I/O ports. */
34 #include <sys/types.h>
37 #define MAX_PORT 0x10000
40 * Memory fence w/accept. This should never be used in code that is
43 #define __ia64_mf_a() __asm__ __volatile__ ("mf.a" ::: "memory")
47 unsigned long int base
;
48 unsigned long int page_mask
;
52 __inline__
unsigned long int
53 io_offset (unsigned long int port
)
55 return ((port
>> 2) << 12) | (port
& 0xfff);
59 _ioperm (unsigned long int from
, unsigned long int num
, int turn_on
)
61 unsigned long int base
;
63 /* this test isn't as silly as it may look like; consider overflows! */
64 if (from
>= MAX_PORT
|| from
+ num
> MAX_PORT
)
74 unsigned long phys_io_base
, len
;
77 io
.page_mask
= ~(__getpagesize() - 1);
79 /* get I/O base physical address from ar.k0 as per PRM: */
80 __asm__ ("mov %0=ar.k0" : "=r"(phys_io_base
));
82 /* The O_SYNC flag tells the /dev/mem driver to map the
84 fd
= __open ("/dev/mem", O_RDWR
| O_SYNC
);
88 len
= io_offset (MAX_PORT
);
89 /* see comment below */
90 base
= (unsigned long int) __mmap (0, len
, PROT_READ
| PROT_WRITE
, MAP_SHARED
,
94 if ((long) base
== -1)
103 return 0; /* never was turned on... */
106 /* We can't do mprotect because that would cause us to lose the
107 uncached flag that the /dev/mem driver turned on. A MAP_UNCACHED
108 flag seems so much cleaner...
110 See the history of this file for a version that tried mprotect. */
115 _iopl (unsigned int level
)
119 __set_errno (EINVAL
);
124 int retval
= _ioperm (0, MAX_PORT
, 1);
125 /* Match the documented error returns of the x86 version. */
126 if (retval
< 0 && errno
== EACCES
)
134 _inb (unsigned long int port
)
136 volatile unsigned char *addr
= (void *) io
.base
+ io_offset (port
);
145 _inw (unsigned long int port
)
147 volatile unsigned short *addr
= (void *) io
.base
+ io_offset (port
);
156 _inl (unsigned long int port
)
158 volatile unsigned int *addr
= (void *) io
.base
+ io_offset (port
);
167 _outb (unsigned char val
, unsigned long int port
)
169 volatile unsigned char *addr
= (void *) io
.base
+ io_offset (port
);
176 _outw (unsigned short val
, unsigned long int port
)
178 volatile unsigned short *addr
= (void *) io
.base
+ io_offset (port
);
185 _outl (unsigned int val
, unsigned long int port
)
187 volatile unsigned int *addr
= (void *) io
.base
+ io_offset (port
);
193 weak_alias (_ioperm
, ioperm
);
194 weak_alias (_iopl
, iopl
);
195 weak_alias (_inb
, inb
);
196 weak_alias (_inw
, inw
);
197 weak_alias (_inl
, inl
);
198 weak_alias (_outb
, outb
);
199 weak_alias (_outw
, outw
);
200 weak_alias (_outl
, outl
);