io.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994, 1995 Waldorf GmbH
  7.  * Copyright (C) 1994 - 2000 Ralf Baechle
  8.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  9.  */
  10. #ifndef _ASM_IO_H
  11. #define _ASM_IO_H
  12. #include <linux/config.h>
  13. #include <asm/addrspace.h>
  14. #include <asm/page.h>
  15. #ifdef CONFIG_SGI_IP22
  16. #include <asm/sgi/io.h>
  17. #endif
  18. #ifdef CONFIG_SGI_IP27
  19. #include <asm/sn/io.h>
  20. #endif
  21. extern unsigned long bus_to_baddr[256];
  22. /*
  23.  * Slowdown I/O port space accesses for antique hardware.
  24.  */
  25. #undef CONF_SLOWDOWN_IO
  26. /*
  27.  * On MIPS, we have the whole physical address space mapped at all
  28.  * times, so "ioremap()" and "iounmap()" do not need to do anything.
  29.  *
  30.  * We cheat a bit and always return uncachable areas until we've fixed
  31.  * the drivers to handle caching properly.
  32.  */
  33. extern inline void *
  34. ioremap(unsigned long offset, unsigned long size)
  35. {
  36. return (void *) (IO_SPACE_BASE | offset);
  37. }
  38. /* This one maps high address device memory and turns off caching for that
  39.  *  area.  It's useful if some control registers are in such an area and write
  40.  * combining or read caching is not desirable.
  41.  */
  42. extern inline void *
  43. ioremap_nocache (unsigned long offset, unsigned long size)
  44. {
  45. return (void *) (IO_SPACE_BASE | offset);
  46. }
  47. extern inline void iounmap(void *addr)
  48. {
  49. }
  50. /*
  51.  * This assumes sane hardware.  The Origin is.
  52.  */
  53. #define readb(addr) (*(volatile unsigned char *) (addr))
  54. #define readw(addr) (*(volatile unsigned short *) (addr))
  55. #define readl(addr) (*(volatile unsigned int *) (addr))
  56. #define writeb(b,addr) (*(volatile unsigned char *) (addr) = (b))
  57. #define writew(b,addr) (*(volatile unsigned short *) (addr) = (b))
  58. #define writel(b,addr) (*(volatile unsigned int *) (addr) = (b))
  59. #define memset_io(a,b,c) memset((void *) a,(b),(c))
  60. #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c))
  61. #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c))
  62. /* The ISA versions are supplied by system specific code */
  63. /*
  64.  * On MIPS I/O ports are memory mapped, so we access them using normal
  65.  * load/store instructions. mips_io_port_base is the virtual address to
  66.  * which all ports are being mapped.  For sake of efficiency some code
  67.  * assumes that this is an address that can be loaded with a single lui
  68.  * instruction, so the lower 16 bits must be zero.  Should be true on
  69.  * on any sane architecture; generic code does not use this assumption.
  70.  */
  71. extern unsigned long mips_io_port_base;
  72. #define __SLOW_DOWN_IO 
  73. __asm__ __volatile__( 
  74. "sbt$0,0x80(%0)" 
  75. : : "r" (mips_io_port_base));
  76. #ifdef CONF_SLOWDOWN_IO
  77. #ifdef REALLY_SLOW_IO
  78. #define SLOW_DOWN_IO { __SLOW_DOWN_IO; __SLOW_DOWN_IO; __SLOW_DOWN_IO; __SLOW_DOWN_IO; }
  79. #else
  80. #define SLOW_DOWN_IO __SLOW_DOWN_IO
  81. #endif
  82. #else
  83. #define SLOW_DOWN_IO
  84. #endif
  85. /*
  86.  * Change virtual addresses to physical addresses and vv.
  87.  * These are trivial on the 1:1 Linux/MIPS mapping
  88.  */
  89. extern inline unsigned long virt_to_phys(volatile void * address)
  90. {
  91. return (unsigned long)address - PAGE_OFFSET;
  92. }
  93. extern inline void * phys_to_virt(unsigned long address)
  94. {
  95. return (void *)(address + PAGE_OFFSET);
  96. }
  97. /*
  98.  * isa_slot_offset is the address where E(ISA) busaddress 0 is mapped
  99.  * for the processor.  This implies the assumption that there is only
  100.  * one of these busses.
  101.  */
  102. extern unsigned long isa_slot_offset;
  103. /*
  104.  * We don't have csum_partial_copy_fromio() yet, so we cheat here and
  105.  * just copy it. The net code will then do the checksum later.
  106.  */
  107. #define eth_io_copy_and_sum(skb,src,len,unused) memcpy_fromio((skb)->data,(src),(len))
  108. static inline int
  109. check_signature(unsigned long io_addr, const unsigned char *signature,
  110.                 int length)
  111. {
  112. int retval = 0;
  113. do {
  114. if (readb(io_addr) != *signature)
  115. goto out;
  116. io_addr++;
  117. signature++;
  118. length--;
  119. } while (length);
  120. retval = 1;
  121. out:
  122. return retval;
  123. }
  124. /*
  125.  * Talk about misusing macros..
  126.  */
  127. #define __OUT1(s) 
  128. extern inline void __out##s(unsigned int value, unsigned long port) {
  129. #define __OUT2(m) 
  130. __asm__ __volatile__ ("s" #m "t%0,%1(%2)"
  131. #define __OUT(m,s) 
  132. __OUT1(s) __OUT2(m) : : "r" (value), "i" (0), "r" (mips_io_port_base+port)); } 
  133. __OUT1(s##c) __OUT2(m) : : "r" (value), "ir" (port), "r" (mips_io_port_base)); } 
  134. __OUT1(s##_p) __OUT2(m) : : "r" (value), "i" (0), "r" (mips_io_port_base+port)); 
  135. SLOW_DOWN_IO; } 
  136. __OUT1(s##c_p) __OUT2(m) : : "r" (value), "ir" (port), "r" (mips_io_port_base)); 
  137. SLOW_DOWN_IO; }
  138. #define __IN1(t,s) 
  139. extern __inline__ t __in##s(unsigned long port) { t _v;
  140. /*
  141.  * Required nops will be inserted by the assembler
  142.  */
  143. #define __IN2(m) 
  144. __asm__ __volatile__ ("l" #m "t%0,%1(%2)"
  145. #define __IN(t,m,s) 
  146. __IN1(t,s) __IN2(m) : "=r" (_v) : "i" (0), "r" (mips_io_port_base+port)); return _v; } 
  147. __IN1(t,s##c) __IN2(m) : "=r" (_v) : "ir" (port), "r" (mips_io_port_base)); return _v; } 
  148. __IN1(t,s##_p) __IN2(m) : "=r" (_v) : "i" (0), "r" (mips_io_port_base+port)); SLOW_DOWN_IO; return _v; } 
  149. __IN1(t,s##c_p) __IN2(m) : "=r" (_v) : "ir" (port), "r" (mips_io_port_base)); SLOW_DOWN_IO; return _v; }
  150. #define __INS1(s) 
  151. extern inline void __ins##s(unsigned long port, void * addr, unsigned long count) {
  152. #define __INS2(m) 
  153. if (count) 
  154. __asm__ __volatile__ ( 
  155. ".settnoreordernt" 
  156. ".settnoatn" 
  157. "1:tl" #m "t$1, %4(%5)nt" 
  158. "dsubut%1, 1nt" 
  159. "s" #m "t$1,(%0)nt" 
  160. "bnezt%1, 1bnt" 
  161. "daddiut%0, %6nt" 
  162. ".settatnt" 
  163. ".settreorder"
  164. #define __INS(m,s,i) 
  165. __INS1(s) __INS2(m) 
  166. : "=r" (addr), "=r" (count) 
  167. : "0" (addr), "1" (count), "i" (0), "r" (mips_io_port_base+port), "I" (i) 
  168. : "$1");} 
  169. __INS1(s##c) __INS2(m) 
  170. : "=r" (addr), "=r" (count) 
  171. : "0" (addr), "1" (count), "ir" (port), "r" (mips_io_port_base), "I" (i) 
  172. : "$1");}
  173. #define __OUTS1(s) 
  174. extern inline void __outs##s(unsigned long port, const void * addr, unsigned long count) {
  175. #define __OUTS2(m) 
  176. if (count) 
  177. __asm__ __volatile__ ( 
  178. ".settnoreordernt" 
  179. ".settnoatn" 
  180. "1:tl" #m "t$1, (%0)nt" 
  181. "dsubut%1, 1nt" 
  182. "s" #m "t$1, %4(%5)nt" 
  183. "bnezt%1, 1bnt" 
  184. "daddiut%0, %6nt" 
  185. ".settatnt" 
  186. ".settreorder"
  187. #define __OUTS(m,s,i) 
  188. __OUTS1(s) __OUTS2(m) 
  189. : "=r" (addr), "=r" (count) 
  190. : "0" (addr), "1" (count), "i" (0), "r" (mips_io_port_base+port), "I" (i) 
  191. : "$1");} 
  192. __OUTS1(s##c) __OUTS2(m) 
  193. : "=r" (addr), "=r" (count) 
  194. : "0" (addr), "1" (count), "ir" (port), "r" (mips_io_port_base), "I" (i) 
  195. : "$1");}
  196. __IN(unsigned char,b,b)
  197. __IN(unsigned short,h,w)
  198. __IN(unsigned int,w,l)
  199. __OUT(b,b)
  200. __OUT(h,w)
  201. __OUT(w,l)
  202. __INS(b,b,1)
  203. __INS(h,w,2)
  204. __INS(w,l,4)
  205. __OUTS(b,b,1)
  206. __OUTS(h,w,2)
  207. __OUTS(w,l,4)
  208. /*
  209.  * Note that due to the way __builtin_constant_p() works, you
  210.  *  - can't use it inside an inline function (it will never be true)
  211.  *  - you don't have to worry about side effects within the __builtin..
  212.  */
  213. #define outb(val,port) 
  214. ((__builtin_constant_p((port)^(3)) && ((port)^(3)) < 32768) ? 
  215. __outbc((val),(port)^(3)) : 
  216. __outb((val),(port)^(3)))
  217. #define inb(port) 
  218. ((__builtin_constant_p((port)^(3)) && ((port)^(3)) < 32768) ? 
  219. __inbc((port)^(3)) : 
  220. __inb((port)^(3)))
  221. #define outb_p(val,port) 
  222. ((__builtin_constant_p((port)^(3)) && ((port)^(3)) < 32768) ? 
  223. __outbc_p((val),(port)^(3)) : 
  224. __outb_p((val),(port)^(3)))
  225. #define inb_p(port) 
  226. ((__builtin_constant_p((port)^(3)) && ((port)^(3)) < 32768) ? 
  227. __inbc_p((port)^(3)) : 
  228. __inb_p((port)^(3)))
  229. #define outw(val,port) 
  230. ((__builtin_constant_p(((port)^(2))) && ((port)^(2)) < 32768) ? 
  231. __outwc((val),((port)^(2))) : 
  232. __outw((val),((port)^(2))))
  233. #define inw(port) 
  234. ((__builtin_constant_p(((port)^(2))) && ((port)^(2)) < 32768) ? 
  235. __inwc((port)^(2)) : 
  236. __inw((port)^(2)))
  237. #define outw_p(val,port) 
  238. ((__builtin_constant_p((port)^(2)) && ((port)^(2)) < 32768) ? 
  239. __outwc_p((val),(port)^(2)) : 
  240. __outw_p((val),(port)^(2)))
  241. #define inw_p(port) 
  242. ((__builtin_constant_p((port)^(2)) && ((port)^(2)) < 32768) ? 
  243. __inwc_p((port)^(2)) : 
  244. __inw_p((port)^(2)))
  245. #define outl(val,port) 
  246. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  247. __outlc((val),(port)) : 
  248. __outl((val),(port)))
  249. #define inl(port) 
  250. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  251. __inlc(port) : 
  252. __inl(port))
  253. #define outl_p(val,port) 
  254. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  255. __outlc_p((val),(port)) : 
  256. __outl_p((val),(port)))
  257. #define inl_p(port) 
  258. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  259. __inlc_p(port) : 
  260. __inl_p(port))
  261. #define outsb(port,addr,count) 
  262. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  263. __outsbc((port),(addr),(count)) : 
  264. __outsb ((port),(addr),(count)))
  265. #define insb(port,addr,count) 
  266. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  267. __insbc((port),(addr),(count)) : 
  268. __insb((port),(addr),(count)))
  269. #define outsw(port,addr,count) 
  270. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  271. __outswc((port),(addr),(count)) : 
  272. __outsw ((port),(addr),(count)))
  273. #define insw(port,addr,count) 
  274. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  275. __inswc((port),(addr),(count)) : 
  276. __insw((port),(addr),(count)))
  277. #define outsl(port,addr,count) 
  278. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  279. __outslc((port),(addr),(count)) : 
  280. __outsl ((port),(addr),(count)))
  281. #define insl(port,addr,count) 
  282. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  283. __inslc((port),(addr),(count)) : 
  284. __insl((port),(addr),(count)))
  285. /*
  286.  * The caches on some architectures aren't dma-coherent and have need to
  287.  * handle this in software.  There are three types of operations that
  288.  * can be applied to dma buffers.
  289.  *
  290.  *  - dma_cache_wback_inv(start, size) makes caches and coherent by
  291.  *    writing the content of the caches back to memory, if necessary.
  292.  *    The function also invalidates the affected part of the caches as
  293.  *    necessary before DMA transfers from outside to memory.
  294.  *  - dma_cache_wback(start, size) makes caches and coherent by
  295.  *    writing the content of the caches back to memory, if necessary.
  296.  *    The function also invalidates the affected part of the caches as
  297.  *    necessary before DMA transfers from outside to memory.
  298.  *  - dma_cache_inv(start, size) invalidates the affected parts of the
  299.  *    caches.  Dirty lines of the caches may be written back or simply
  300.  *    be discarded.  This operation is necessary before dma operations
  301.  *    to the memory.
  302.  */
  303. #ifdef CONFIG_COHERENT_IO
  304. /* This is for example for IP27.  */
  305. extern inline void dma_cache_wback_inv(unsigned long start, unsigned long size)
  306. {
  307. }
  308. extern inline void dma_cache_wback(unsigned long start, unsigned long size)
  309. {
  310. }
  311. extern inline void dma_cache_inv(unsigned long start, unsigned long size)
  312. {
  313. }
  314. #else
  315. extern void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size);
  316. extern void (*_dma_cache_wback)(unsigned long start, unsigned long size);
  317. extern void (*_dma_cache_inv)(unsigned long start, unsigned long size);
  318. #define dma_cache_wback_inv(start,size) _dma_cache_wback_inv(start,size)
  319. #define dma_cache_wback(start,size) _dma_cache_wback(start,size)
  320. #define dma_cache_inv(start,size) _dma_cache_inv(start,size)
  321. #endif
  322. #endif /* _ASM_IO_H */