ioperm.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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 <sys/sysctl.h>
  40. #include <sys/io.h>
  41. libc_hidden_proto(ioperm)
  42. libc_hidden_proto(readlink)
  43. libc_hidden_proto(mmap)
  44. libc_hidden_proto(sscanf)
  45. libc_hidden_proto(fscanf)
  46. /* libc_hidden_proto(fprintf) */
  47. libc_hidden_proto(fgets)
  48. libc_hidden_proto(fopen)
  49. /* libc_hidden_proto(fclose) */
  50. /* Experimentally off - libc_hidden_proto(strcmp) */
  51. libc_hidden_proto(open)
  52. /* libc_hidden_proto(close) */
  53. #include <linux/version.h>
  54. #define PATH_ARM_SYSTYPE "/etc/arm_systype"
  55. #define PATH_CPUINFO "/proc/cpuinfo"
  56. #define MAX_PORT 0x10000
  57. static struct {
  58. unsigned long int base;
  59. unsigned long int io_base;
  60. unsigned int shift;
  61. unsigned int initdone; /* since all the above could be 0 */
  62. } io;
  63. #define IO_BASE_FOOTBRIDGE 0x7c000000
  64. #define IO_SHIFT_FOOTBRIDGE 0
  65. static struct platform {
  66. const char *name;
  67. unsigned long int io_base;
  68. unsigned int shift;
  69. } platform[] = {
  70. /* All currently supported platforms are in fact the same. :-) */
  71. {"Chalice-CATS", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  72. {"DEC-EBSA285", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  73. {"Corel-NetWinder", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  74. {"Rebel-NetWinder", IO_BASE_FOOTBRIDGE, IO_SHIFT_FOOTBRIDGE},
  75. };
  76. #define IO_ADDR(port) (io.base + ((port) << io.shift))
  77. /*
  78. * Initialize I/O system. There are several ways to get the information
  79. * we need. Each is tried in turn until one succeeds.
  80. *
  81. * 1. Sysctl (CTL_BUS, BUS_ISA, ISA_*). This is the preferred method
  82. * but not all kernels support it.
  83. *
  84. * 2. Read the value (not the contents) of symlink PATH_ARM_SYSTYPE.
  85. * - If it matches one of the entries in the table above, use the
  86. * corresponding values.
  87. * - If it begins with a number, assume this is a previously
  88. * unsupported system and the values encode, in order,
  89. * "<io_base>,<port_shift>".
  90. *
  91. * 3. Lookup the "system type" field in /proc/cpuinfo. Again, if it
  92. * matches an entry in the platform[] table, use the corresponding
  93. * values.
  94. *
  95. * 4. BUS_ISA is changed to CTL_BUS_ISA (for kernel since 2.4.23).
  96. */
  97. static int
  98. init_iosys (void)
  99. {
  100. char systype[256];
  101. int i, n;
  102. #if LINUX_VERSION_CODE < 132119
  103. static int iobase_name[] = { CTL_BUS, BUS_ISA, BUS_ISA_PORT_BASE };
  104. static int ioshift_name[] = { CTL_BUS, BUS_ISA, BUS_ISA_PORT_SHIFT };
  105. #else
  106. static int iobase_name[] = { CTL_BUS, CTL_BUS_ISA, BUS_ISA_PORT_BASE };
  107. static int ioshift_name[] = { CTL_BUS, CTL_BUS_ISA, BUS_ISA_PORT_SHIFT };
  108. #endif
  109. size_t len = sizeof(io.base);
  110. if (! sysctl (iobase_name, 3, &io.io_base, &len, NULL, 0)
  111. && ! sysctl (ioshift_name, 3, &io.shift, &len, NULL, 0)) {
  112. io.initdone = 1;
  113. return 0;
  114. }
  115. n = readlink (PATH_ARM_SYSTYPE, systype, sizeof (systype) - 1);
  116. if (n > 0) {
  117. systype[n] = '\0';
  118. if (isdigit (systype[0])) {
  119. if (sscanf (systype, "%li,%i", &io.io_base, &io.shift) == 2) {
  120. io.initdone = 1;
  121. return 0;
  122. }
  123. /* else we're likely going to fail with the system match below */
  124. }
  125. }
  126. else {
  127. FILE * fp;
  128. fp = fopen (PATH_CPUINFO, "r");
  129. if (! fp)
  130. return -1;
  131. while ((n = fscanf (fp, "Hardware\t: %256[^\n]\n", systype)) != EOF) {
  132. if (n == 1)
  133. break;
  134. else
  135. fgets (systype, 256, fp);
  136. }
  137. fclose (fp);
  138. if (n == EOF) {
  139. /* this can happen if the format of /proc/cpuinfo changes... */
  140. fprintf (stderr, "ioperm: Unable to determine system type.\n"
  141. "\t(May need " PATH_ARM_SYSTYPE " symlink?)\n");
  142. __set_errno (ENODEV);
  143. return -1;
  144. }
  145. }
  146. /* translate systype name into i/o system: */
  147. for (i = 0; i < sizeof (platform) / sizeof (platform[0]); ++i) {
  148. if (strcmp (platform[i].name, systype) == 0) {
  149. io.shift = platform[i].shift;
  150. io.io_base = platform[i].io_base;
  151. io.initdone = 1;
  152. return 0;
  153. }
  154. }
  155. /* systype is not a known platform name... */
  156. __set_errno (EINVAL);
  157. return -1;
  158. }
  159. int ioperm (unsigned long int from, unsigned long int num, int turn_on)
  160. {
  161. if (! io.initdone && init_iosys () < 0)
  162. return -1;
  163. /* this test isn't as silly as it may look like; consider overflows! */
  164. if (from >= MAX_PORT || from + num > MAX_PORT) {
  165. __set_errno (EINVAL);
  166. return -1;
  167. }
  168. if (turn_on) {
  169. if (! io.base) {
  170. int fd;
  171. fd = open ("/dev/mem", O_RDWR);
  172. if (fd < 0)
  173. return -1;
  174. io.base = (unsigned long int) mmap (0, MAX_PORT << io.shift,
  175. PROT_READ | PROT_WRITE,
  176. MAP_SHARED, fd, io.io_base);
  177. close (fd);
  178. if ((long) io.base == -1)
  179. return -1;
  180. }
  181. }
  182. return 0;
  183. }
  184. libc_hidden_def(ioperm)
  185. void
  186. outb(unsigned char b, unsigned long int port)
  187. {
  188. *((__volatile__ unsigned char *)(IO_ADDR (port))) = b;
  189. }
  190. void
  191. outw(unsigned short b, unsigned long int port)
  192. {
  193. *((__volatile__ unsigned short *)(IO_ADDR (port))) = b;
  194. }
  195. void
  196. outl(unsigned long b, unsigned long int port)
  197. {
  198. *((__volatile__ unsigned long *)(IO_ADDR (port))) = b;
  199. }
  200. unsigned char
  201. inb (unsigned long int port)
  202. {
  203. return *((__volatile__ unsigned char *)(IO_ADDR (port)));
  204. }
  205. unsigned short int
  206. inw(unsigned long int port)
  207. {
  208. return *((__volatile__ unsigned short *)(IO_ADDR (port)));
  209. }
  210. unsigned long int
  211. inl(unsigned long int port)
  212. {
  213. return *((__volatile__ unsigned long *)(IO_ADDR (port)));
  214. }