ioperm.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Phil Blundell, based on the Alpha version by
  4. David Mosberger.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. 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.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. /* I/O port access on the ARM is something of a fiction. What we do is to
  18. map an appropriate area of /dev/mem into user space so that a program
  19. can blast away at the hardware in such a way as to generate I/O cycles
  20. on the bus. To insulate user code from dependencies on particular
  21. hardware we don't allow calls to inb() and friends to be inlined, but
  22. force them to come through code in here every time. Performance-critical
  23. registers tend to be memory mapped these days so this should be no big
  24. problem. */
  25. /* Once upon a time this file used mprotect to enable and disable
  26. access to particular areas of I/O space. Unfortunately the
  27. mprotect syscall also has the side effect of enabling caching for
  28. the area affected (this is a kernel limitation). So we now just
  29. enable all the ports all of the time. */
  30. #include <errno.h>
  31. #include <fcntl.h>
  32. #include <stdio.h>
  33. #include <ctype.h>
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include <unistd.h>
  37. #include <sys/types.h>
  38. #include <sys/mman.h>
  39. #include <asm/page.h>
  40. #include <sys/sysctl.h>
  41. #define PATH_ARM_SYSTYPE "/etc/arm_systype"
  42. #define PATH_CPUINFO "/proc/cpuinfo"
  43. #define MAX_PORT 0x10000
  44. static struct {
  45. unsigned long int base;
  46. unsigned long int io_base;
  47. unsigned int shift;
  48. unsigned int initdone; /* since all the above could be 0 */
  49. } io;
  50. #define IO_BASE_FOOTBRIDGE 0x7c000000
  51. #define IO_SHIFT_FOOTBRIDGE 0
  52. static struct platform {
  53. const char *name;
  54. unsigned long int io_base;
  55. unsigned int shift;
  56. } platform[] = {
  57. /* All currently supported platforms are in fact the same. :-) */
  58. {"Chalice-CATS", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  59. {"DEC-EBSA285", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  60. {"Corel-NetWinder", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  61. {"Rebel-NetWinder", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  62. };
  63. #define IO_ADDR(port) (io.base + ((port) << io.shift))
  64. /*
  65. * Initialize I/O system. There are several ways to get the information
  66. * we need. Each is tried in turn until one succeeds.
  67. *
  68. * 1. Sysctl (CTL_BUS, BUS_ISA, ISA_*). This is the preferred method
  69. * but not all kernels support it.
  70. *
  71. * 2. Read the value (not the contents) of symlink PATH_ARM_SYSTYPE.
  72. * - If it matches one of the entries in the table above, use the
  73. * corresponding values.
  74. * - If it begins with a number, assume this is a previously
  75. * unsupported system and the values encode, in order,
  76. * "<io_base>,<port_shift>".
  77. *
  78. * 3. Lookup the "system type" field in /proc/cpuinfo. Again, if it
  79. * matches an entry in the platform[] table, use the corresponding
  80. * values.
  81. */
  82. static int
  83. init_iosys (void)
  84. {
  85. char systype[256];
  86. int i, n;
  87. static int iobase_name[] = { CTL_BUS, BUS_ISA, BUS_ISA_PORT_BASE };
  88. static int ioshift_name[] = { CTL_BUS, BUS_ISA, BUS_ISA_PORT_SHIFT };
  89. size_t len = sizeof(io.base);
  90. if (! sysctl (iobase_name, 3, &io.io_base, &len, NULL, 0)
  91. && ! sysctl (ioshift_name, 3, &io.shift, &len, NULL, 0)) {
  92. io.initdone = 1;
  93. return 0;
  94. }
  95. n = readlink (PATH_ARM_SYSTYPE, systype, sizeof (systype) - 1);
  96. if (n > 0) {
  97. systype[n] = '\0';
  98. if (isdigit (systype[0])) {
  99. if (sscanf (systype, "%li,%i", &io.io_base, &io.shift) == 2) {
  100. io.initdone = 1;
  101. return 0;
  102. }
  103. /* else we're likely going to fail with the system match below */
  104. }
  105. }
  106. else {
  107. FILE * fp;
  108. fp = fopen (PATH_CPUINFO, "r");
  109. if (! fp)
  110. return -1;
  111. while ((n = fscanf (fp, "Hardware\t: %256[^\n]\n", systype)) != EOF) {
  112. if (n == 1)
  113. break;
  114. else
  115. fgets (systype, 256, fp);
  116. }
  117. fclose (fp);
  118. if (n == EOF) {
  119. /* this can happen if the format of /proc/cpuinfo changes... */
  120. fprintf (stderr, "ioperm: Unable to determine system type.\n"
  121. "\t(May need " PATH_ARM_SYSTYPE " symlink?)\n");
  122. __set_errno (ENODEV);
  123. return -1;
  124. }
  125. }
  126. /* translate systype name into i/o system: */
  127. for (i = 0; i < sizeof (platform) / sizeof (platform[0]); ++i) {
  128. if (strcmp (platform[i].name, systype) == 0) {
  129. io.shift = platform[i].shift;
  130. io.io_base = platform[i].io_base;
  131. io.initdone = 1;
  132. return 0;
  133. }
  134. }
  135. /* systype is not a known platform name... */
  136. __set_errno (EINVAL);
  137. return -1;
  138. }
  139. int ioperm (unsigned long int from, unsigned long int num, int turn_on)
  140. {
  141. if (! io.initdone && init_iosys () < 0)
  142. return -1;
  143. /* this test isn't as silly as it may look like; consider overflows! */
  144. if (from >= MAX_PORT || from + num > MAX_PORT) {
  145. __set_errno (EINVAL);
  146. return -1;
  147. }
  148. if (turn_on) {
  149. if (! io.base) {
  150. int fd;
  151. fd = open ("/dev/mem", O_RDWR);
  152. if (fd < 0)
  153. return -1;
  154. io.base = (unsigned long int) mmap (0, MAX_PORT << io.shift,
  155. PROT_READ | PROT_WRITE,
  156. MAP_SHARED, fd, io.io_base);
  157. close (fd);
  158. if ((long) io.base == -1)
  159. return -1;
  160. }
  161. }
  162. return 0;
  163. }
  164. int iopl (unsigned int level)
  165. {
  166. if (level > 3) {
  167. __set_errno (EINVAL);
  168. return -1;
  169. }
  170. if (level) {
  171. return ioperm (0, MAX_PORT, 1);
  172. }
  173. return 0;
  174. }
  175. void
  176. outb(unsigned char b, unsigned long int port)
  177. {
  178. *((volatile unsigned char *)(IO_ADDR (port))) = b;
  179. }
  180. void
  181. outw(unsigned short b, unsigned long int port)
  182. {
  183. *((volatile unsigned short *)(IO_ADDR (port))) = b;
  184. }
  185. void
  186. outl(unsigned int b, unsigned long int port)
  187. {
  188. *((volatile unsigned long *)(IO_ADDR (port))) = b;
  189. }
  190. unsigned int
  191. inb (unsigned long int port)
  192. {
  193. return *((volatile unsigned char *)(IO_ADDR (port)));
  194. }
  195. unsigned int
  196. inw(unsigned long int port)
  197. {
  198. return *((volatile unsigned short *)(IO_ADDR (port)));
  199. }
  200. unsigned int
  201. inl(unsigned long int port)
  202. {
  203. return *((volatile unsigned long *)(IO_ADDR (port)));
  204. }