io.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-rpc/io.h
  3.  *
  4.  *  Copyright (C) 1997 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  * Modifications:
  11.  *  06-Dec-1997 RMK Created.
  12.  */
  13. #ifndef __ASM_ARM_ARCH_IO_H
  14. #define __ASM_ARM_ARCH_IO_H
  15. #define IO_SPACE_LIMIT 0xffffffff
  16. /*
  17.  * GCC is totally crap at loading/storing data.  We try to persuade it
  18.  * to do the right thing by using these whereever possible instead of
  19.  * the above.
  20.  */
  21. #define __arch_base_getb(b,o)
  22.  ({
  23. unsigned int v, r = (b);
  24. __asm__ __volatile__(
  25. "ldrb %0, [%1, %2]"
  26. : "=r" (v)
  27. : "r" (r), "Ir" (o));
  28. v;
  29.  })
  30. #define __arch_base_getl(b,o)
  31.  ({
  32. unsigned int v, r = (b);
  33. __asm__ __volatile__(
  34. "ldr %0, [%1, %2]"
  35. : "=r" (v)
  36. : "r" (r), "Ir" (o));
  37. v;
  38.  })
  39. #define __arch_base_putb(v,b,o)
  40.  ({
  41. unsigned int r = (b);
  42. __asm__ __volatile__(
  43. "strb %0, [%1, %2]"
  44. :
  45. : "r" (v), "r" (r), "Ir" (o));
  46.  })
  47. #define __arch_base_putl(v,b,o)
  48.  ({
  49. unsigned int r = (b);
  50. __asm__ __volatile__(
  51. "str %0, [%1, %2]"
  52. :
  53. : "r" (v), "r" (r), "Ir" (o));
  54.  })
  55. /*
  56.  * We use two different types of addressing - PC style addresses, and ARM
  57.  * addresses.  PC style accesses the PC hardware with the normal PC IO
  58.  * addresses, eg 0x3f8 for serial#1.  ARM addresses are 0x80000000+
  59.  * and are translated to the start of IO.  Note that all addresses are
  60.  * shifted left!
  61.  */
  62. #define __PORT_PCIO(x) (!((x) & 0x80000000))
  63. /*
  64.  * Dynamic IO functions.
  65.  */
  66. static inline void __outb (unsigned int value, unsigned int port)
  67. {
  68. unsigned long temp;
  69. __asm__ __volatile__(
  70. "tst %2, #0x80000000nt"
  71. "mov %0, %4nt"
  72. "addeq %0, %0, %3nt"
  73. "strb %1, [%0, %2, lsl #2] @ outb"
  74. : "=&r" (temp)
  75. : "r" (value), "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  76. : "cc");
  77. }
  78. static inline void __outw (unsigned int value, unsigned int port)
  79. {
  80. unsigned long temp;
  81. __asm__ __volatile__(
  82. "tst %2, #0x80000000nt"
  83. "mov %0, %4nt"
  84. "addeq %0, %0, %3nt"
  85. "str %1, [%0, %2, lsl #2] @ outw"
  86. : "=&r" (temp)
  87. : "r" (value|value<<16), "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  88. : "cc");
  89. }
  90. static inline void __outl (unsigned int value, unsigned int port)
  91. {
  92. unsigned long temp;
  93. __asm__ __volatile__(
  94. "tst %2, #0x80000000nt"
  95. "mov %0, %4nt"
  96. "addeq %0, %0, %3nt"
  97. "str %1, [%0, %2, lsl #2] @ outl"
  98. : "=&r" (temp)
  99. : "r" (value), "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  100. : "cc");
  101. }
  102. #define DECLARE_DYN_IN(sz,fnsuffix,instr)
  103. static inline unsigned sz __in##fnsuffix (unsigned int port)
  104. {
  105. unsigned long temp, value;
  106. __asm__ __volatile__(
  107. "tst %2, #0x80000000nt"
  108. "mov %0, %4nt"
  109. "addeq %0, %0, %3nt"
  110. "ldr" instr " %1, [%0, %2, lsl #2] @ in" #fnsuffix
  111. : "=&r" (temp), "=r" (value)
  112. : "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  113. : "cc");
  114. return (unsigned sz)value;
  115. }
  116. static inline unsigned int __ioaddr (unsigned int port)
  117. {
  118. if (__PORT_PCIO(port))
  119. return (unsigned int)(PCIO_BASE + (port << 2));
  120. else
  121. return (unsigned int)(IO_BASE + (port << 2));
  122. }
  123. #define DECLARE_IO(sz,fnsuffix,instr)
  124. DECLARE_DYN_IN(sz,fnsuffix,instr)
  125. DECLARE_IO(char,b,"b")
  126. DECLARE_IO(short,w,"")
  127. DECLARE_IO(int,l,"")
  128. #undef DECLARE_IO
  129. #undef DECLARE_DYN_IN
  130. /*
  131.  * Constant address IO functions
  132.  *
  133.  * These have to be macros for the 'J' constraint to work -
  134.  * +/-4096 immediate operand.
  135.  */
  136. #define __outbc(value,port)
  137. ({
  138. if (__PORT_PCIO((port)))
  139. __asm__ __volatile__(
  140. "strb %0, [%1, %2] @ outbc"
  141. : : "r" (value), "r" (PCIO_BASE), "Jr" ((port) << 2));
  142. else
  143. __asm__ __volatile__(
  144. "strb %0, [%1, %2] @ outbc"
  145. : : "r" (value), "r" (IO_BASE), "r" ((port) << 2));
  146. })
  147. #define __inbc(port)
  148. ({
  149. unsigned char result;
  150. if (__PORT_PCIO((port)))
  151. __asm__ __volatile__(
  152. "ldrb %0, [%1, %2] @ inbc"
  153. : "=r" (result) : "r" (PCIO_BASE), "Jr" ((port) << 2));
  154. else
  155. __asm__ __volatile__(
  156. "ldrb %0, [%1, %2] @ inbc"
  157. : "=r" (result) : "r" (IO_BASE), "r" ((port) << 2));
  158. result;
  159. })
  160. #define __outwc(value,port)
  161. ({
  162. unsigned long v = value;
  163. if (__PORT_PCIO((port)))
  164. __asm__ __volatile__(
  165. "str %0, [%1, %2] @ outwc"
  166. : : "r" (v|v<<16), "r" (PCIO_BASE), "Jr" ((port) << 2));
  167. else
  168. __asm__ __volatile__(
  169. "str %0, [%1, %2] @ outwc"
  170. : : "r" (v|v<<16), "r" (IO_BASE), "r" ((port) << 2));
  171. })
  172. #define __inwc(port)
  173. ({
  174. unsigned short result;
  175. if (__PORT_PCIO((port)))
  176. __asm__ __volatile__(
  177. "ldr %0, [%1, %2] @ inwc"
  178. : "=r" (result) : "r" (PCIO_BASE), "Jr" ((port) << 2));
  179. else
  180. __asm__ __volatile__(
  181. "ldr %0, [%1, %2] @ inwc"
  182. : "=r" (result) : "r" (IO_BASE), "r" ((port) << 2));
  183. result & 0xffff;
  184. })
  185. #define __outlc(value,port)
  186. ({
  187. unsigned long v = value;
  188. if (__PORT_PCIO((port)))
  189. __asm__ __volatile__(
  190. "str %0, [%1, %2] @ outlc"
  191. : : "r" (v), "r" (PCIO_BASE), "Jr" ((port) << 2));
  192. else
  193. __asm__ __volatile__(
  194. "str %0, [%1, %2] @ outlc"
  195. : : "r" (v), "r" (IO_BASE), "r" ((port) << 2));
  196. })
  197. #define __inlc(port)
  198. ({
  199. unsigned long result;
  200. if (__PORT_PCIO((port)))
  201. __asm__ __volatile__(
  202. "ldr %0, [%1, %2] @ inlc"
  203. : "=r" (result) : "r" (PCIO_BASE), "Jr" ((port) << 2));
  204. else
  205. __asm__ __volatile__(
  206. "ldr %0, [%1, %2] @ inlc"
  207. : "=r" (result) : "r" (IO_BASE), "r" ((port) << 2));
  208. result;
  209. })
  210. #define __ioaddrc(port)
  211. (__PORT_PCIO((port)) ? PCIO_BASE + ((port) << 2) : IO_BASE + ((port) << 2))
  212. #define inb(p)   (__builtin_constant_p((p)) ? __inbc(p)    : __inb(p))
  213. #define inw(p)   (__builtin_constant_p((p)) ? __inwc(p)    : __inw(p))
  214. #define inl(p)   (__builtin_constant_p((p)) ? __inlc(p)    : __inl(p))
  215. #define outb(v,p) (__builtin_constant_p((p)) ? __outbc(v,p) : __outb(v,p))
  216. #define outw(v,p) (__builtin_constant_p((p)) ? __outwc(v,p) : __outw(v,p))
  217. #define outl(v,p) (__builtin_constant_p((p)) ? __outlc(v,p) : __outl(v,p))
  218. #define __ioaddr(p) (__builtin_constant_p((p)) ? __ioaddr(p)  : __ioaddrc(p))
  219. /* the following macro is depreciated */
  220. #define ioaddr(port) __ioaddr((port))
  221. #define insb(p,d,l) __raw_readsb(__ioaddr(p),d,l)
  222. #define insw(p,d,l) __raw_readsw(__ioaddr(p),d,l)
  223. #define outsb(p,d,l) __raw_writesb(__ioaddr(p),d,l)
  224. #define outsw(p,d,l) __raw_writesw(__ioaddr(p),d,l)
  225. #define iomem_valid_addr(o,s) (1)
  226. #define iomem_to_phys(a) (a)
  227. #endif