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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/io.h
  3.  *
  4.  *  Copyright (C) 1996-2000 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.  *  16-Sep-1996 RMK Inlined the inx/outx functions & optimised for both
  12.  * constant addresses and variable addresses.
  13.  *  04-Dec-1997 RMK Moved a lot of this stuff to the new architecture
  14.  * specific IO header files.
  15.  *  27-Mar-1999 PJB Second parameter of memcpy_toio is const..
  16.  *  04-Apr-1999 PJB Added check_signature.
  17.  *  12-Dec-1999 RMK More cleanups
  18.  *  18-Jun-2000 RMK Removed virt_to_* and friends definitions
  19.  */
  20. #ifndef __ASM_ARM_IO_H
  21. #define __ASM_ARM_IO_H
  22. #ifdef __KERNEL__
  23. #include <linux/types.h>
  24. #include <asm/memory.h>
  25. #include <asm/arch/hardware.h>
  26. /*
  27.  * Generic virtual read/write.  Note that we don't support half-word
  28.  * read/writes.  We define __arch_*[bl] here, and leave __arch_*w
  29.  * to the architecture specific code.
  30.  */
  31. #define __arch_getb(a) (*(volatile unsigned char *)(a))
  32. #define __arch_getl(a) (*(volatile unsigned int  *)(a))
  33. #define __arch_putb(v,a) (*(volatile unsigned char *)(a) = (v))
  34. #define __arch_putl(v,a) (*(volatile unsigned int  *)(a) = (v))
  35. extern void __raw_writesb(unsigned int addr, const void *data, int bytelen);
  36. extern void __raw_writesw(unsigned int addr, const void *data, int wordlen);
  37. extern void __raw_writesl(unsigned int addr, const void *data, int longlen);
  38. extern void __raw_readsb(unsigned int addr, void *data, int bytelen);
  39. extern void __raw_readsw(unsigned int addr, void *data, int wordlen);
  40. extern void __raw_readsl(unsigned int addr, void *data, int longlen);
  41. #define __raw_writeb(v,a) __arch_putb(v,a)
  42. #define __raw_writew(v,a) __arch_putw(v,a)
  43. #define __raw_writel(v,a) __arch_putl(v,a)
  44. #define __raw_readb(a) __arch_getb(a)
  45. #define __raw_readw(a) __arch_getw(a)
  46. #define __raw_readl(a) __arch_getl(a)
  47. /*
  48.  * The compiler seems to be incapable of optimising constants
  49.  * properly.  Spell it out to the compiler in some cases.
  50.  * These are only valid for small values of "off" (< 1<<12)
  51.  */
  52. #define __raw_base_writeb(val,base,off) __arch_base_putb(val,base,off)
  53. #define __raw_base_writew(val,base,off) __arch_base_putw(val,base,off)
  54. #define __raw_base_writel(val,base,off) __arch_base_putl(val,base,off)
  55. #define __raw_base_readb(base,off) __arch_base_getb(base,off)
  56. #define __raw_base_readw(base,off) __arch_base_getw(base,off)
  57. #define __raw_base_readl(base,off) __arch_base_getl(base,off)
  58. /*
  59.  * Now, pick up the machine-defined IO definitions
  60.  */
  61. #include <asm/arch/io.h>
  62. /*
  63.  * IO definitions.  We define {out,in,outs,ins}[bwl] if __io is defined
  64.  * by the machine.  Otherwise, these definitions are left for the machine
  65.  * specific header files to pick up.
  66.  *
  67.  * Note that we prevent GCC re-ordering or caching values in expressions
  68.  * by introducing sequence points into the in*() definitions.  Note that
  69.  * __raw_* do not guarantee this behaviour.
  70.  */
  71. #ifdef __io
  72. #define outb(v,p) __raw_writeb(v,__io(p))
  73. #define outw(v,p) __raw_writew(v,__io(p))
  74. #define outl(v,p) __raw_writel(v,__io(p))
  75. #define inb(p) ({ unsigned int __v = __raw_readb(__io(p)); __v; })
  76. #define inw(p) ({ unsigned int __v = __raw_readw(__io(p)); __v; })
  77. #define inl(p) ({ unsigned int __v = __raw_readl(__io(p)); __v; })
  78. #define outsb(p,d,l) __raw_writesb(__io(p),d,l)
  79. #define outsw(p,d,l) __raw_writesw(__io(p),d,l)
  80. #define outsl(p,d,l) __raw_writesl(__io(p),d,l)
  81. #define insb(p,d,l) __raw_readsb(__io(p),d,l)
  82. #define insw(p,d,l) __raw_readsw(__io(p),d,l)
  83. #define insl(p,d,l) __raw_readsl(__io(p),d,l)
  84. #endif
  85. #define outb_p(val,port) outb((val),(port))
  86. #define outw_p(val,port) outw((val),(port))
  87. #define outl_p(val,port) outl((val),(port))
  88. #define inb_p(port) inb((port))
  89. #define inw_p(port) inw((port))
  90. #define inl_p(port) inl((port))
  91. #define outsb_p(port,from,len) outsb(port,from,len)
  92. #define outsw_p(port,from,len) outsw(port,from,len)
  93. #define outsl_p(port,from,len) outsl(port,from,len)
  94. #define insb_p(port,to,len) insb(port,to,len)
  95. #define insw_p(port,to,len) insw(port,to,len)
  96. #define insl_p(port,to,len) insl(port,to,len)
  97. /*
  98.  * ioremap and friends.
  99.  *
  100.  * ioremap takes a PCI memory address, as specified in
  101.  * linux/Documentation/IO-mapping.txt.  If you want a
  102.  * physical address, use __ioremap instead.
  103.  */
  104. extern void * __ioremap(unsigned long offset, size_t size, unsigned long flags);
  105. extern void __iounmap(void *addr);
  106. /*
  107.  * Generic ioremap support.
  108.  *
  109.  * Define:
  110.  *  iomem_valid_addr(off,size)
  111.  *  iomem_to_phys(off)
  112.  */
  113. #ifdef iomem_valid_addr
  114. #define __arch_ioremap(off,sz,nocache)
  115.  ({
  116. unsigned long _off = (off), _size = (sz);
  117. void *_ret = (void *)0;
  118. if (iomem_valid_addr(_off, _size))
  119. _ret = __ioremap(iomem_to_phys(_off),_size,0);
  120. _ret;
  121.  })
  122. #define __arch_iounmap __iounmap
  123. #endif
  124. #define ioremap(off,sz) __arch_ioremap((off),(sz),0)
  125. #define ioremap_nocache(off,sz) __arch_ioremap((off),(sz),1)
  126. #define iounmap(_addr) __arch_iounmap(_addr)
  127. /*
  128.  * DMA-consistent mapping functions.  These allocate/free a region of
  129.  * uncached, unwrite-buffered mapped memory space for use with DMA
  130.  * devices.  This is the "generic" version.  The PCI specific version
  131.  * is in pci.h
  132.  */
  133. extern void *consistent_alloc(int gfp, size_t size, dma_addr_t *handle);
  134. extern void consistent_free(void *vaddr, size_t size, dma_addr_t handle);
  135. extern void consistent_sync(void *vaddr, size_t size, int rw);
  136. /*
  137.  * String version of IO memory access ops:
  138.  */
  139. extern void _memcpy_fromio(void *, unsigned long, size_t);
  140. extern void _memcpy_toio(unsigned long, const void *, size_t);
  141. extern void _memset_io(unsigned long, int, size_t);
  142. extern void __readwrite_bug(const char *fn);
  143. /*
  144.  * If this architecture has PCI memory IO, then define the read/write
  145.  * macros.  These should only be used with the cookie passed from
  146.  * ioremap.
  147.  */
  148. #ifdef __mem_pci
  149. #define readb(addr) ({ unsigned int __v = __raw_readb(__mem_pci(addr)); __v; })
  150. #define readw(addr) ({ unsigned int __v = __raw_readw(__mem_pci(addr)); __v; })
  151. #define readl(addr) ({ unsigned int __v = __raw_readl(__mem_pci(addr)); __v; })
  152. #define writeb(val,addr) __raw_writeb(val,__mem_pci(addr))
  153. #define writew(val,addr) __raw_writew(val,__mem_pci(addr))
  154. #define writel(val,addr) __raw_writel(val,__mem_pci(addr))
  155. #define memset_io(a,b,c) _memset_io(__mem_pci(a),(b),(c))
  156. #define memcpy_fromio(a,b,c) _memcpy_fromio((a),__mem_pci(b),(c))
  157. #define memcpy_toio(a,b,c) _memcpy_toio(__mem_pci(a),(b),(c))
  158. #define eth_io_copy_and_sum(a,b,c,d) 
  159. eth_copy_and_sum((a),__mem_pci(b),(c),(d))
  160. static inline int
  161. check_signature(unsigned long io_addr, const unsigned char *signature,
  162. int length)
  163. {
  164. int retval = 0;
  165. do {
  166. if (readb(io_addr) != *signature)
  167. goto out;
  168. io_addr++;
  169. signature++;
  170. length--;
  171. } while (length);
  172. retval = 1;
  173. out:
  174. return retval;
  175. }
  176. #elif !defined(readb)
  177. #define readb(addr) (__readwrite_bug("readb"),0)
  178. #define readw(addr) (__readwrite_bug("readw"),0)
  179. #define readl(addr) (__readwrite_bug("readl"),0)
  180. #define writeb(v,addr) __readwrite_bug("writeb")
  181. #define writew(v,addr) __readwrite_bug("writew")
  182. #define writel(v,addr) __readwrite_bug("writel")
  183. #define eth_io_copy_and_sum(a,b,c,d) __readwrite_bug("eth_io_copy_and_sum")
  184. #define check_signature(io,sig,len) (0)
  185. #endif /* __mem_pci */
  186. /*
  187.  * remap a physical address `phys' of size `size' with page protection `prot'
  188.  * into virtual address `from'
  189.  */
  190. #define io_remap_page_range(from,phys,size,prot) 
  191. remap_page_range(from,phys,size,prot)
  192. /*
  193.  * If this architecture has ISA IO, then define the isa_read/isa_write
  194.  * macros.
  195.  */
  196. #ifdef __mem_isa
  197. #define isa_readb(addr) __raw_readb(__mem_isa(addr))
  198. #define isa_readw(addr) __raw_readw(__mem_isa(addr))
  199. #define isa_readl(addr) __raw_readl(__mem_isa(addr))
  200. #define isa_writeb(val,addr) __raw_writeb(val,__mem_isa(addr))
  201. #define isa_writew(val,addr) __raw_writew(val,__mem_isa(addr))
  202. #define isa_writel(val,addr) __raw_writel(val,__mem_isa(addr))
  203. #define isa_memset_io(a,b,c) _memset_io(__mem_isa(a),(b),(c))
  204. #define isa_memcpy_fromio(a,b,c) _memcpy_fromio((a),__mem_isa(b),(c))
  205. #define isa_memcpy_toio(a,b,c) _memcpy_toio(__mem_isa((a)),(b),(c))
  206. #define isa_eth_io_copy_and_sum(a,b,c,d) 
  207. eth_copy_and_sum((a),__mem_isa(b),(c),(d))
  208. static inline int
  209. isa_check_signature(unsigned long io_addr, const unsigned char *signature,
  210.     int length)
  211. {
  212. int retval = 0;
  213. do {
  214. if (isa_readb(io_addr) != *signature)
  215. goto out;
  216. io_addr++;
  217. signature++;
  218. length--;
  219. } while (length);
  220. retval = 1;
  221. out:
  222. return retval;
  223. }
  224. #else /* __mem_isa */
  225. #define isa_readb(addr) (__readwrite_bug("isa_readb"),0)
  226. #define isa_readw(addr) (__readwrite_bug("isa_readw"),0)
  227. #define isa_readl(addr) (__readwrite_bug("isa_readl"),0)
  228. #define isa_writeb(val,addr) __readwrite_bug("isa_writeb")
  229. #define isa_writew(val,addr) __readwrite_bug("isa_writew")
  230. #define isa_writel(val,addr) __readwrite_bug("isa_writel")
  231. #define isa_memset_io(a,b,c) __readwrite_bug("isa_memset_io")
  232. #define isa_memcpy_fromio(a,b,c) __readwrite_bug("isa_memcpy_fromio")
  233. #define isa_memcpy_toio(a,b,c) __readwrite_bug("isa_memcpy_toio")
  234. #define isa_eth_io_copy_and_sum(a,b,c,d) 
  235. __readwrite_bug("isa_eth_io_copy_and_sum")
  236. #define isa_check_signature(io,sig,len) (0)
  237. #endif /* __mem_isa */
  238. #endif /* __KERNEL__ */
  239. #endif /* __ASM_ARM_IO_H */