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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-arc/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 - let the compiler
  65.  * optimize the expressions
  66.  */
  67. static inline void __outb (unsigned int value, unsigned int port)
  68. {
  69. unsigned long temp;
  70. __asm__ __volatile__(
  71. "tst %2, #0x80000000nt"
  72. "mov %0, %4nt"
  73. "addeq %0, %0, %3nt"
  74. "strb %1, [%0, %2, lsl #2] @ outb"
  75. : "=&r" (temp)
  76. : "r" (value), "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  77. : "cc");
  78. }
  79. static inline void __outw (unsigned int value, unsigned int port)
  80. {
  81. unsigned long temp;
  82. __asm__ __volatile__(
  83. "tst %2, #0x80000000nt"
  84. "mov %0, %4nt"
  85. "addeq %0, %0, %3nt"
  86. "str %1, [%0, %2, lsl #2] @ outw"
  87. : "=&r" (temp)
  88. : "r" (value|value<<16), "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  89. : "cc");
  90. }
  91. static inline void __outl (unsigned int value, unsigned int port)
  92. {
  93. unsigned long temp;
  94. __asm__ __volatile__(
  95. "tst %2, #0x80000000nt"
  96. "mov %0, %4nt"
  97. "addeq %0, %0, %3nt"
  98. "str %1, [%0, %2, lsl #2] @ outl"
  99. : "=&r" (temp)
  100. : "r" (value), "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  101. : "cc");
  102. }
  103. #define DECLARE_DYN_IN(sz,fnsuffix,instr)
  104. static inline unsigned sz __in##fnsuffix (unsigned int port)
  105. {
  106. unsigned long temp, value;
  107. __asm__ __volatile__(
  108. "tst %2, #0x80000000nt"
  109. "mov %0, %4nt"
  110. "addeq %0, %0, %3nt"
  111. "ldr" instr " %1, [%0, %2, lsl #2] @ in" #fnsuffix
  112. : "=&r" (temp), "=r" (value)
  113. : "r" (port), "Ir" (PCIO_BASE - IO_BASE), "Ir" (IO_BASE)
  114. : "cc");
  115. return (unsigned sz)value;
  116. }
  117. static inline unsigned int __ioaddr (unsigned int port)
  118. {
  119. if (__PORT_PCIO(port))
  120. return (unsigned int)(PCIO_BASE + (port << 2));
  121. else
  122. return (unsigned int)(IO_BASE + (port << 2));
  123. }
  124. #define DECLARE_IO(sz,fnsuffix,instr)
  125. DECLARE_DYN_IN(sz,fnsuffix,instr)
  126. DECLARE_IO(char,b,"b")
  127. DECLARE_IO(short,w,"")
  128. DECLARE_IO(int,l,"")
  129. #undef DECLARE_IO
  130. #undef DECLARE_DYN_IN
  131. /*
  132.  * Constant address IO functions
  133.  *
  134.  * These have to be macros for the 'J' constraint to work -
  135.  * +/-4096 immediate operand.
  136.  */
  137. #define __outbc(value,port)
  138. ({
  139. if (__PORT_PCIO((port)))
  140. __asm__ __volatile__(
  141. "strb %0, [%1, %2] @ outbc"
  142. : : "r" (value), "r" (PCIO_BASE), "Jr" ((port) << 2));
  143. else
  144. __asm__ __volatile__(
  145. "strb %0, [%1, %2] @ outbc"
  146. : : "r" (value), "r" (IO_BASE), "r" ((port) << 2));
  147. })
  148. #define __inbc(port)
  149. ({
  150. unsigned char result;
  151. if (__PORT_PCIO((port)))
  152. __asm__ __volatile__(
  153. "ldrb %0, [%1, %2] @ inbc"
  154. : "=r" (result) : "r" (PCIO_BASE), "Jr" ((port) << 2));
  155. else
  156. __asm__ __volatile__(
  157. "ldrb %0, [%1, %2] @ inbc"
  158. : "=r" (result) : "r" (IO_BASE), "r" ((port) << 2));
  159. result;
  160. })
  161. #define __outwc(value,port)
  162. ({
  163. unsigned long v = value;
  164. if (__PORT_PCIO((port)))
  165. __asm__ __volatile__(
  166. "str %0, [%1, %2] @ outwc"
  167. : : "r" (v|v<<16), "r" (PCIO_BASE), "Jr" ((port) << 2));
  168. else
  169. __asm__ __volatile__(
  170. "str %0, [%1, %2] @ outwc"
  171. : : "r" (v|v<<16), "r" (IO_BASE), "r" ((port) << 2));
  172. })
  173. #define __inwc(port)
  174. ({
  175. unsigned short result;
  176. if (__PORT_PCIO((port)))
  177. __asm__ __volatile__(
  178. "ldr %0, [%1, %2] @ inwc"
  179. : "=r" (result) : "r" (PCIO_BASE), "Jr" ((port) << 2));
  180. else
  181. __asm__ __volatile__(
  182. "ldr %0, [%1, %2] @ inwc"
  183. : "=r" (result) : "r" (IO_BASE), "r" ((port) << 2));
  184. result & 0xffff;
  185. })
  186. #define __outlc(value,port) 
  187. ({
  188. unsigned long v = value;
  189. if (__PORT_PCIO((port)))
  190. __asm__ __volatile__(
  191. "str %0, [%1, %2] @ outlc"
  192. : : "r" (v), "r" (PCIO_BASE), "Jr" ((port) << 2));
  193. else
  194. __asm__ __volatile__(
  195. "str %0, [%1, %2] @ outlc"
  196. : : "r" (v), "r" (IO_BASE), "r" ((port) << 2));
  197. })
  198. #define __inlc(port)
  199. ({
  200. unsigned long result;
  201. if (__PORT_PCIO((port)))
  202. __asm__ __volatile__(
  203. "ldr %0, [%1, %2] @ inlc"
  204. : "=r" (result) : "r" (PCIO_BASE), "Jr" ((port) << 2));
  205. else
  206. __asm__ __volatile__(
  207. "ldr %0, [%1, %2] @ inlc"
  208. : "=r" (result) : "r" (IO_BASE), "r" ((port) << 2));
  209. result;
  210. })
  211. #define __ioaddrc(port)
  212. ({
  213. unsigned long addr;
  214. if (__PORT_PCIO((port)))
  215. addr = PCIO_BASE + ((port) << 2);
  216. else
  217. addr = IO_BASE + ((port) << 2);
  218. addr;
  219. })
  220. #define inb(p)   (__builtin_constant_p((p)) ? __inbc(p)    : __inb(p))
  221. #define inw(p)   (__builtin_constant_p((p)) ? __inwc(p)    : __inw(p))
  222. #define inl(p)   (__builtin_constant_p((p)) ? __inlc(p)    : __inl(p))
  223. #define outb(v,p) (__builtin_constant_p((p)) ? __outbc(v,p) : __outb(v,p))
  224. #define outw(v,p) (__builtin_constant_p((p)) ? __outwc(v,p) : __outw(v,p))
  225. #define outl(v,p) (__builtin_constant_p((p)) ? __outlc(v,p) : __outl(v,p))
  226. #define __ioaddr(p) (__builtin_constant_p((p)) ? __ioaddr(p)  : __ioaddrc(p))
  227. /* the following macro is depreciated */
  228. #define ioaddr(port) __ioaddr((port))
  229. #endif