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

嵌入式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.  * Copyright (C) 2000 FSMLabs, Inc.
  10.  */
  11. #ifndef _ASM_IO_H
  12. #define _ASM_IO_H
  13. #include <linux/config.h>
  14. #include <linux/pagemap.h>
  15. #include <asm/addrspace.h>
  16. #include <asm/byteorder.h>
  17. /*
  18.  * Slowdown I/O port space accesses for antique hardware.
  19.  */
  20. #undef CONF_SLOWDOWN_IO
  21. /*
  22.  * Sane hardware offers swapping of I/O space accesses in hardware; less
  23.  * sane hardware forces software to fiddle with this ...
  24.  */
  25. #if defined(CONFIG_SWAP_IO_SPACE) && defined(__MIPSEB__)
  26. #define __ioswab8(x) (x)
  27. #define __ioswab16(x) swab16(x)
  28. #define __ioswab32(x) swab32(x)
  29. #else
  30. #define __ioswab8(x) (x)
  31. #define __ioswab16(x) (x)
  32. #define __ioswab32(x) (x)
  33. #endif
  34. /*
  35.  * This file contains the definitions for the MIPS counterpart of the
  36.  * x86 in/out instructions. This heap of macros and C results in much
  37.  * better code than the approach of doing it in plain C.  The macros
  38.  * result in code that is to fast for certain hardware.  On the other
  39.  * side the performance of the string functions should be improved for
  40.  * sake of certain devices like EIDE disks that do highspeed polled I/O.
  41.  *
  42.  *   Ralf
  43.  *
  44.  * This file contains the definitions for the x86 IO instructions
  45.  * inb/inw/inl/outb/outw/outl and the "string versions" of the same
  46.  * (insb/insw/insl/outsb/outsw/outsl). You can also use "pausing"
  47.  * versions of the single-IO instructions (inb_p/inw_p/..).
  48.  *
  49.  * This file is not meant to be obfuscating: it's just complicated
  50.  * to (a) handle it all in a way that makes gcc able to optimize it
  51.  * as well as possible and (b) trying to avoid writing the same thing
  52.  * over and over again with slight variations and possibly making a
  53.  * mistake somewhere.
  54.  */
  55. /*
  56.  * On MIPS I/O ports are memory mapped, so we access them using normal
  57.  * load/store instructions. mips_io_port_base is the virtual address to
  58.  * which all ports are being mapped.  For sake of efficiency some code
  59.  * assumes that this is an address that can be loaded with a single lui
  60.  * instruction, so the lower 16 bits must be zero.  Should be true on
  61.  * on any sane architecture; generic code does not use this assumption.
  62.  */
  63. extern unsigned long mips_io_port_base;
  64. /*
  65.  * Thanks to James van Artsdalen for a better timing-fix than
  66.  * the two short jumps: using outb's to a nonexistent port seems
  67.  * to guarantee better timings even on fast machines.
  68.  *
  69.  * On the other hand, I'd like to be sure of a non-existent port:
  70.  * I feel a bit unsafe about using 0x80 (should be safe, though)
  71.  *
  72.  * Linus
  73.  *
  74.  */
  75. #define __SLOW_DOWN_IO 
  76. __asm__ __volatile__( 
  77. "sbt$0,0x80(%0)" 
  78. : : "r" (mips_io_port_base));
  79. #ifdef CONF_SLOWDOWN_IO
  80. #ifdef REALLY_SLOW_IO
  81. #define SLOW_DOWN_IO { __SLOW_DOWN_IO; __SLOW_DOWN_IO; __SLOW_DOWN_IO; __SLOW_DOWN_IO; }
  82. #else
  83. #define SLOW_DOWN_IO __SLOW_DOWN_IO
  84. #endif
  85. #else
  86. #define SLOW_DOWN_IO
  87. #endif
  88. /*
  89.  * Change virtual addresses to physical addresses and vv.
  90.  * These are trivial on the 1:1 Linux/MIPS mapping
  91.  */
  92. extern inline unsigned long virt_to_phys(volatile void * address)
  93. {
  94. return PHYSADDR(address);
  95. }
  96. extern inline void * phys_to_virt(unsigned long address)
  97. {
  98. return (void *)KSEG0ADDR(address);
  99. }
  100. /*
  101.  * IO bus memory addresses are also 1:1 with the physical address
  102.  */
  103. extern inline unsigned long virt_to_bus(volatile void * address)
  104. {
  105. return PHYSADDR(address);
  106. }
  107. extern inline void * bus_to_virt(unsigned long address)
  108. {
  109. return (void *)KSEG0ADDR(address);
  110. }
  111. /*
  112.  * isa_slot_offset is the address where E(ISA) busaddress 0 is mapped
  113.  * for the processor.
  114.  */
  115. extern unsigned long isa_slot_offset;
  116. extern void * __ioremap(unsigned long offset, unsigned long size, unsigned long flags);
  117. extern inline void *ioremap(unsigned long offset, unsigned long size)
  118. {
  119. return __ioremap(offset, size, _CACHE_UNCACHED);
  120. }
  121. extern inline void *ioremap_nocache(unsigned long offset, unsigned long size)
  122. {
  123. return __ioremap(offset, size, _CACHE_UNCACHED);
  124. }
  125. extern void iounmap(void *addr);
  126. /*
  127.  * XXX We need system specific versions of these to handle EISA address bits
  128.  * 24-31 on SNI.
  129.  * XXX more SNI hacks.
  130.  */
  131. #define readb(addr) (*(volatile unsigned char *)(addr))
  132. #define readw(addr) __ioswab16((*(volatile unsigned short *)(addr)))
  133. #define readl(addr) __ioswab32((*(volatile unsigned int *)(addr)))
  134. #define __raw_readb readb
  135. #define __raw_readw readw
  136. #define __raw_readl readl
  137. #define writeb(b,addr) (*(volatile unsigned char *)(addr)) = (b)
  138. #define writew(b,addr) (*(volatile unsigned short *)(addr)) = (__ioswab16(b))
  139. #define writel(b,addr) (*(volatile unsigned int *)(addr)) = (__ioswab32(b))
  140. #define __raw_writeb writeb
  141. #define __raw_writew writew
  142. #define __raw_writel writel
  143. #define memset_io(a,b,c) memset((void *)(a),(b),(c))
  144. #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c))
  145. #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c))
  146. /* END SNI HACKS ... */
  147. /*
  148.  * ISA space is 'always mapped' on currently supported MIPS systems, no need
  149.  * to explicitly ioremap() it. The fact that the ISA IO space is mapped
  150.  * to PAGE_OFFSET is pure coincidence - it does not mean ISA values
  151.  * are physical addresses. The following constant pointer can be
  152.  * used as the IO-area pointer (it can be iounmapped as well, so the
  153.  * analogy with PCI is quite large):
  154.  */
  155. #define __ISA_IO_base ((char *)(PAGE_OFFSET))
  156. #define isa_readb(a) readb(a)
  157. #define isa_readw(a) readw(a)
  158. #define isa_readl(a) readl(a)
  159. #define isa_writeb(b,a) writeb(b,a)
  160. #define isa_writew(w,a) writew(w,a)
  161. #define isa_writel(l,a) writel(l,a)
  162. #define isa_memset_io(a,b,c)     memset_io((a),(b),(c))
  163. #define isa_memcpy_fromio(a,b,c) memcpy_fromio((a),(b),(c))
  164. #define isa_memcpy_toio(a,b,c)   memcpy_toio((a),(b),(c))
  165. /*
  166.  * We don't have csum_partial_copy_fromio() yet, so we cheat here and
  167.  * just copy it. The net code will then do the checksum later.
  168.  */
  169. #define eth_io_copy_and_sum(skb,src,len,unused) memcpy_fromio((skb)->data,(src),(len))
  170. #define isa_eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(b),(c),(d))
  171. static inline int check_signature(unsigned long io_addr,
  172.                                   const unsigned char *signature, int length)
  173. {
  174. int retval = 0;
  175. do {
  176. if (readb(io_addr) != *signature)
  177. goto out;
  178. io_addr++;
  179. signature++;
  180. length--;
  181. } while (length);
  182. retval = 1;
  183. out:
  184. return retval;
  185. }
  186. #define isa_check_signature(io, s, l) check_signature(i,s,l)
  187. /*
  188.  * Talk about misusing macros..
  189.  */
  190. #define __OUT1(s) 
  191. extern inline void __out##s(unsigned int value, unsigned int port) {
  192. #define __OUT2(m) 
  193. __asm__ __volatile__ ("s" #m "t%0,%1(%2)"
  194. #define __OUT(m,s,w) 
  195. __OUT1(s) __OUT2(m) : : "r" (__ioswab##w(value)), "i" (0), "r" (mips_io_port_base+port)); } 
  196. __OUT1(s##c) __OUT2(m) : : "r" (__ioswab##w(value)), "ir" (port), "r" (mips_io_port_base)); } 
  197. __OUT1(s##_p) __OUT2(m) : : "r" (__ioswab##w(value)), "i" (0), "r" (mips_io_port_base+port)); 
  198. SLOW_DOWN_IO; } 
  199. __OUT1(s##c_p) __OUT2(m) : : "r" (__ioswab##w(value)), "ir" (port), "r" (mips_io_port_base)); 
  200. SLOW_DOWN_IO; }
  201. #define __IN1(t,s) 
  202. extern __inline__ t __in##s(unsigned int port) { t _v;
  203. /*
  204.  * Required nops will be inserted by the assembler
  205.  */
  206. #define __IN2(m) 
  207. __asm__ __volatile__ ("l" #m "t%0,%1(%2)"
  208. #define __IN(t,m,s,w) 
  209. __IN1(t,s) __IN2(m) : "=r" (_v) : "i" (0), "r" (mips_io_port_base+port)); return __ioswab##w(_v); } 
  210. __IN1(t,s##c) __IN2(m) : "=r" (_v) : "ir" (port), "r" (mips_io_port_base)); return __ioswab##w(_v); } 
  211. __IN1(t,s##_p) __IN2(m) : "=r" (_v) : "i" (0), "r" (mips_io_port_base+port)); SLOW_DOWN_IO; return __ioswab##w(_v); } 
  212. __IN1(t,s##c_p) __IN2(m) : "=r" (_v) : "ir" (port), "r" (mips_io_port_base)); SLOW_DOWN_IO; return __ioswab##w(_v); }
  213. #define __INS1(s) 
  214. extern inline void __ins##s(unsigned int port, void * addr, unsigned long count) {
  215. #define __INS2(m) 
  216. if (count) 
  217. __asm__ __volatile__ ( 
  218. ".settnoreordernt" 
  219. ".settnoatn" 
  220. "1:tl" #m "t$1,%4(%5)nt" 
  221. "subut%1,1nt" 
  222. "s" #m "t$1,(%0)nt" 
  223. "bnet$0,%1,1bnt" 
  224. "addiut%0,%6nt" 
  225. ".settatnt" 
  226. ".settreorder"
  227. #define __INS(m,s,i) 
  228. __INS1(s) __INS2(m) 
  229. : "=r" (addr), "=r" (count) 
  230. : "0" (addr), "1" (count), "i" (0), 
  231.   "r" (mips_io_port_base+port), "I" (i) 
  232. : "$1");} 
  233. __INS1(s##c) __INS2(m) 
  234. : "=r" (addr), "=r" (count) 
  235. : "0" (addr), "1" (count), "ir" (port), 
  236.   "r" (mips_io_port_base), "I" (i) 
  237. : "$1");}
  238. #define __OUTS1(s) 
  239. extern inline void __outs##s(unsigned int port, const void * addr, unsigned long count) {
  240. #define __OUTS2(m) 
  241. if (count) 
  242. __asm__ __volatile__ ( 
  243.         ".settnoreordernt" 
  244.         ".settnoatn" 
  245.         "1:tl" #m "t$1,(%0)nt" 
  246.         "subut%1,1nt" 
  247.         "s" #m "t$1,%4(%5)nt" 
  248.         "bnet$0,%1,1bnt" 
  249.         "addiut%0,%6nt" 
  250.         ".settatnt" 
  251.         ".settreorder"
  252. #define __OUTS(m,s,i) 
  253. __OUTS1(s) __OUTS2(m) 
  254. : "=r" (addr), "=r" (count) 
  255. : "0" (addr), "1" (count), "i" (0), "r" (mips_io_port_base+port), "I" (i) 
  256. : "$1");} 
  257. __OUTS1(s##c) __OUTS2(m) 
  258. : "=r" (addr), "=r" (count) 
  259. : "0" (addr), "1" (count), "ir" (port), "r" (mips_io_port_base), "I" (i) 
  260. : "$1");}
  261. __IN(unsigned char,b,b,8)
  262. __IN(unsigned short,h,w,16)
  263. __IN(unsigned int,w,l,32)
  264. __OUT(b,b,8)
  265. __OUT(h,w,16)
  266. __OUT(w,l,32)
  267. __INS(b,b,1)
  268. __INS(h,w,2)
  269. __INS(w,l,4)
  270. __OUTS(b,b,1)
  271. __OUTS(h,w,2)
  272. __OUTS(w,l,4)
  273. /*
  274.  * Note that due to the way __builtin_constant_p() works, you
  275.  *  - can't use it inside an inline function (it will never be true)
  276.  *  - you don't have to worry about side effects within the __builtin..
  277.  */
  278. #define outb(val,port) 
  279. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  280. __outbc((val),(port)) : 
  281. __outb((val),(port)))
  282. #define inb(port) 
  283. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  284. __inbc(port) : 
  285. __inb(port))
  286. #define outb_p(val,port) 
  287. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  288. __outbc_p((val),(port)) : 
  289. __outb_p((val),(port)))
  290. #define inb_p(port) 
  291. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  292. __inbc_p(port) : 
  293. __inb_p(port))
  294. #define outw(val,port) 
  295. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  296. __outwc((val),(port)) : 
  297. __outw((val),(port)))
  298. #define inw(port) 
  299. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  300. __inwc(port) : 
  301. __inw(port))
  302. #define outw_p(val,port) 
  303. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  304. __outwc_p((val),(port)) : 
  305. __outw_p((val),(port)))
  306. #define inw_p(port) 
  307. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  308. __inwc_p(port) : 
  309. __inw_p(port))
  310. #define outl(val,port) 
  311. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  312. __outlc((val),(port)) : 
  313. __outl((val),(port)))
  314. #define inl(port) 
  315. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  316. __inlc(port) : 
  317. __inl(port))
  318. #define outl_p(val,port) 
  319. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  320. __outlc_p((val),(port)) : 
  321. __outl_p((val),(port)))
  322. #define inl_p(port) 
  323. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  324. __inlc_p(port) : 
  325. __inl_p(port))
  326. #define outsb(port,addr,count) 
  327. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  328. __outsbc((port),(addr),(count)) : 
  329. __outsb ((port),(addr),(count)))
  330. #define insb(port,addr,count) 
  331. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  332. __insbc((port),(addr),(count)) : 
  333. __insb((port),(addr),(count)))
  334. #define outsw(port,addr,count) 
  335. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  336. __outswc((port),(addr),(count)) : 
  337. __outsw ((port),(addr),(count)))
  338. #define insw(port,addr,count) 
  339. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  340. __inswc((port),(addr),(count)) : 
  341. __insw((port),(addr),(count)))
  342. #define outsl(port,addr,count) 
  343. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  344. __outslc((port),(addr),(count)) : 
  345. __outsl ((port),(addr),(count)))
  346. #define insl(port,addr,count) 
  347. ((__builtin_constant_p((port)) && (port) < 32768) ? 
  348. __inslc((port),(addr),(count)) : 
  349. __insl((port),(addr),(count)))
  350. #define IO_SPACE_LIMIT 0xffff
  351. /*
  352.  * The caches on some architectures aren't dma-coherent and have need to
  353.  * handle this in software.  There are three types of operations that
  354.  * can be applied to dma buffers.
  355.  *
  356.  *  - dma_cache_wback_inv(start, size) makes caches and coherent by
  357.  *    writing the content of the caches back to memory, if necessary.
  358.  *    The function also invalidates the affected part of the caches as
  359.  *    necessary before DMA transfers from outside to memory.
  360.  *  - dma_cache_wback(start, size) makes caches and coherent by
  361.  *    writing the content of the caches back to memory, if necessary.
  362.  *    The function also invalidates the affected part of the caches as
  363.  *    necessary before DMA transfers from outside to memory.
  364.  *  - dma_cache_inv(start, size) invalidates the affected parts of the
  365.  *    caches.  Dirty lines of the caches may be written back or simply
  366.  *    be discarded.  This operation is necessary before dma operations
  367.  *    to the memory.
  368.  */
  369. extern void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size);
  370. extern void (*_dma_cache_wback)(unsigned long start, unsigned long size);
  371. extern void (*_dma_cache_inv)(unsigned long start, unsigned long size);
  372. #define dma_cache_wback_inv(start,size) _dma_cache_wback_inv(start,size)
  373. #define dma_cache_wback(start,size) _dma_cache_wback(start,size)
  374. #define dma_cache_inv(start,size) _dma_cache_inv(start,size)
  375. #endif /* _ASM_IO_H */