io.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  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/byteorder.h>
  25. #include <asm/memory.h>
  26. #if 0 /* XXX###XXX */
  27. #include <asm/arch/hardware.h>
  28. #endif /* XXX###XXX */
  29. static inline void sync(void)
  30. {
  31. }
  32. /*
  33. * Given a physical address and a length, return a virtual address
  34. * that can be used to access the memory range with the caching
  35. * properties specified by "flags".
  36. */
  37. #define MAP_NOCACHE (0)
  38. #define MAP_WRCOMBINE (0)
  39. #define MAP_WRBACK (0)
  40. #define MAP_WRTHROUGH (0)
  41. static inline void *
  42. map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
  43. {
  44. return (void *)paddr;
  45. }
  46. /*
  47. * Take down a mapping set up by map_physmem().
  48. */
  49. static inline void unmap_physmem(void *vaddr, unsigned long flags)
  50. {
  51. }
  52. static inline phys_addr_t virt_to_phys(void * vaddr)
  53. {
  54. return (phys_addr_t)(vaddr);
  55. }
  56. /*
  57. * Generic virtual read/write. Note that we don't support half-word
  58. * read/writes. We define __arch_*[bl] here, and leave __arch_*w
  59. * to the architecture specific code.
  60. */
  61. #define __arch_getb(a) (*(volatile unsigned char *)(a))
  62. #define __arch_getw(a) (*(volatile unsigned short *)(a))
  63. #define __arch_getl(a) (*(volatile unsigned int *)(a))
  64. #define __arch_putb(v,a) (*(volatile unsigned char *)(a) = (v))
  65. #define __arch_putw(v,a) (*(volatile unsigned short *)(a) = (v))
  66. #define __arch_putl(v,a) (*(volatile unsigned int *)(a) = (v))
  67. extern void __raw_writesb(unsigned int addr, const void *data, int bytelen);
  68. extern void __raw_writesw(unsigned int addr, const void *data, int wordlen);
  69. extern void __raw_writesl(unsigned int addr, const void *data, int longlen);
  70. extern void __raw_readsb(unsigned int addr, void *data, int bytelen);
  71. extern void __raw_readsw(unsigned int addr, void *data, int wordlen);
  72. extern void __raw_readsl(unsigned int addr, void *data, int longlen);
  73. #define __raw_writeb(v,a) __arch_putb(v,a)
  74. #define __raw_writew(v,a) __arch_putw(v,a)
  75. #define __raw_writel(v,a) __arch_putl(v,a)
  76. #define __raw_readb(a) __arch_getb(a)
  77. #define __raw_readw(a) __arch_getw(a)
  78. #define __raw_readl(a) __arch_getl(a)
  79. #define writeb(v,a) __arch_putb(v,a)
  80. #define writew(v,a) __arch_putw(v,a)
  81. #define writel(v,a) __arch_putl(v,a)
  82. #define readb(a) __arch_getb(a)
  83. #define readw(a) __arch_getw(a)
  84. #define readl(a) __arch_getl(a)
  85. /*
  86. * The compiler seems to be incapable of optimising constants
  87. * properly. Spell it out to the compiler in some cases.
  88. * These are only valid for small values of "off" (< 1<<12)
  89. */
  90. #define __raw_base_writeb(val,base,off) __arch_base_putb(val,base,off)
  91. #define __raw_base_writew(val,base,off) __arch_base_putw(val,base,off)
  92. #define __raw_base_writel(val,base,off) __arch_base_putl(val,base,off)
  93. #define __raw_base_readb(base,off) __arch_base_getb(base,off)
  94. #define __raw_base_readw(base,off) __arch_base_getw(base,off)
  95. #define __raw_base_readl(base,off) __arch_base_getl(base,off)
  96. /*
  97. * Now, pick up the machine-defined IO definitions
  98. */
  99. #if 0 /* XXX###XXX */
  100. #include <asm/arch/io.h>
  101. #endif /* XXX###XXX */
  102. /*
  103. * IO port access primitives
  104. * -------------------------
  105. *
  106. * The ARM doesn't have special IO access instructions; all IO is memory
  107. * mapped. Note that these are defined to perform little endian accesses
  108. * only. Their primary purpose is to access PCI and ISA peripherals.
  109. *
  110. * Note that for a big endian machine, this implies that the following
  111. * big endian mode connectivity is in place, as described by numerous
  112. * ARM documents:
  113. *
  114. * PCI: D0-D7 D8-D15 D16-D23 D24-D31
  115. * ARM: D24-D31 D16-D23 D8-D15 D0-D7
  116. *
  117. * The machine specific io.h include defines __io to translate an "IO"
  118. * address to a memory address.
  119. *
  120. * Note that we prevent GCC re-ordering or caching values in expressions
  121. * by introducing sequence points into the in*() definitions. Note that
  122. * __raw_* do not guarantee this behaviour.
  123. *
  124. * The {in,out}[bwl] macros are for emulating x86-style PCI/ISA IO space.
  125. */
  126. #ifdef __io
  127. #define outb(v,p) __raw_writeb(v,__io(p))
  128. #define outw(v,p) __raw_writew(cpu_to_le16(v),__io(p))
  129. #define outl(v,p) __raw_writel(cpu_to_le32(v),__io(p))
  130. #define inb(p) ({ unsigned int __v = __raw_readb(__io(p)); __v; })
  131. #define inw(p) ({ unsigned int __v = le16_to_cpu(__raw_readw(__io(p))); __v; })
  132. #define inl(p) ({ unsigned int __v = le32_to_cpu(__raw_readl(__io(p))); __v; })
  133. #define outsb(p,d,l) __raw_writesb(__io(p),d,l)
  134. #define outsw(p,d,l) __raw_writesw(__io(p),d,l)
  135. #define outsl(p,d,l) __raw_writesl(__io(p),d,l)
  136. #define insb(p,d,l) __raw_readsb(__io(p),d,l)
  137. #define insw(p,d,l) __raw_readsw(__io(p),d,l)
  138. #define insl(p,d,l) __raw_readsl(__io(p),d,l)
  139. #endif
  140. #define outb_p(val,port) outb((val),(port))
  141. #define outw_p(val,port) outw((val),(port))
  142. #define outl_p(val,port) outl((val),(port))
  143. #define inb_p(port) inb((port))
  144. #define inw_p(port) inw((port))
  145. #define inl_p(port) inl((port))
  146. #define outsb_p(port,from,len) outsb(port,from,len)
  147. #define outsw_p(port,from,len) outsw(port,from,len)
  148. #define outsl_p(port,from,len) outsl(port,from,len)
  149. #define insb_p(port,to,len) insb(port,to,len)
  150. #define insw_p(port,to,len) insw(port,to,len)
  151. #define insl_p(port,to,len) insl(port,to,len)
  152. /*
  153. * ioremap and friends.
  154. *
  155. * ioremap takes a PCI memory address, as specified in
  156. * linux/Documentation/IO-mapping.txt. If you want a
  157. * physical address, use __ioremap instead.
  158. */
  159. extern void * __ioremap(unsigned long offset, size_t size, unsigned long flags);
  160. extern void __iounmap(void *addr);
  161. /*
  162. * Generic ioremap support.
  163. *
  164. * Define:
  165. * iomem_valid_addr(off,size)
  166. * iomem_to_phys(off)
  167. */
  168. #ifdef iomem_valid_addr
  169. #define __arch_ioremap(off,sz,nocache) \
  170. ({ \
  171. unsigned long _off = (off), _size = (sz); \
  172. void *_ret = (void *)0; \
  173. if (iomem_valid_addr(_off, _size)) \
  174. _ret = __ioremap(iomem_to_phys(_off),_size,0); \
  175. _ret; \
  176. })
  177. #define __arch_iounmap __iounmap
  178. #endif
  179. #define ioremap(off,sz) __arch_ioremap((off),(sz),0)
  180. #define ioremap_nocache(off,sz) __arch_ioremap((off),(sz),1)
  181. #define iounmap(_addr) __arch_iounmap(_addr)
  182. /*
  183. * DMA-consistent mapping functions. These allocate/free a region of
  184. * uncached, unwrite-buffered mapped memory space for use with DMA
  185. * devices. This is the "generic" version. The PCI specific version
  186. * is in pci.h
  187. */
  188. extern void *consistent_alloc(int gfp, size_t size, dma_addr_t *handle);
  189. extern void consistent_free(void *vaddr, size_t size, dma_addr_t handle);
  190. extern void consistent_sync(void *vaddr, size_t size, int rw);
  191. /*
  192. * String version of IO memory access ops:
  193. */
  194. extern void _memcpy_fromio(void *, unsigned long, size_t);
  195. extern void _memcpy_toio(unsigned long, const void *, size_t);
  196. extern void _memset_io(unsigned long, int, size_t);
  197. extern void __readwrite_bug(const char *fn);
  198. /*
  199. * If this architecture has PCI memory IO, then define the read/write
  200. * macros. These should only be used with the cookie passed from
  201. * ioremap.
  202. */
  203. #ifdef __mem_pci
  204. #define readb(c) ({ unsigned int __v = __raw_readb(__mem_pci(c)); __v; })
  205. #define readw(c) ({ unsigned int __v = le16_to_cpu(__raw_readw(__mem_pci(c))); __v; })
  206. #define readl(c) ({ unsigned int __v = le32_to_cpu(__raw_readl(__mem_pci(c))); __v; })
  207. #define writeb(v,c) __raw_writeb(v,__mem_pci(c))
  208. #define writew(v,c) __raw_writew(cpu_to_le16(v),__mem_pci(c))
  209. #define writel(v,c) __raw_writel(cpu_to_le32(v),__mem_pci(c))
  210. #define memset_io(c,v,l) _memset_io(__mem_pci(c),(v),(l))
  211. #define memcpy_fromio(a,c,l) _memcpy_fromio((a),__mem_pci(c),(l))
  212. #define memcpy_toio(c,a,l) _memcpy_toio(__mem_pci(c),(a),(l))
  213. #define eth_io_copy_and_sum(s,c,l,b) \
  214. eth_copy_and_sum((s),__mem_pci(c),(l),(b))
  215. static inline int
  216. check_signature(unsigned long io_addr, const unsigned char *signature,
  217. int length)
  218. {
  219. int retval = 0;
  220. do {
  221. if (readb(io_addr) != *signature)
  222. goto out;
  223. io_addr++;
  224. signature++;
  225. length--;
  226. } while (length);
  227. retval = 1;
  228. out:
  229. return retval;
  230. }
  231. #elif !defined(readb)
  232. #define readb(addr) (__readwrite_bug("readb"),0)
  233. #define readw(addr) (__readwrite_bug("readw"),0)
  234. #define readl(addr) (__readwrite_bug("readl"),0)
  235. #define writeb(v,addr) __readwrite_bug("writeb")
  236. #define writew(v,addr) __readwrite_bug("writew")
  237. #define writel(v,addr) __readwrite_bug("writel")
  238. #define eth_io_copy_and_sum(a,b,c,d) __readwrite_bug("eth_io_copy_and_sum")
  239. #define check_signature(io,sig,len) (0)
  240. #endif /* __mem_pci */
  241. /*
  242. * If this architecture has ISA IO, then define the isa_read/isa_write
  243. * macros.
  244. */
  245. #ifdef __mem_isa
  246. #define isa_readb(addr) __raw_readb(__mem_isa(addr))
  247. #define isa_readw(addr) __raw_readw(__mem_isa(addr))
  248. #define isa_readl(addr) __raw_readl(__mem_isa(addr))
  249. #define isa_writeb(val,addr) __raw_writeb(val,__mem_isa(addr))
  250. #define isa_writew(val,addr) __raw_writew(val,__mem_isa(addr))
  251. #define isa_writel(val,addr) __raw_writel(val,__mem_isa(addr))
  252. #define isa_memset_io(a,b,c) _memset_io(__mem_isa(a),(b),(c))
  253. #define isa_memcpy_fromio(a,b,c) _memcpy_fromio((a),__mem_isa(b),(c))
  254. #define isa_memcpy_toio(a,b,c) _memcpy_toio(__mem_isa((a)),(b),(c))
  255. #define isa_eth_io_copy_and_sum(a,b,c,d) \
  256. eth_copy_and_sum((a),__mem_isa(b),(c),(d))
  257. static inline int
  258. isa_check_signature(unsigned long io_addr, const unsigned char *signature,
  259. int length)
  260. {
  261. int retval = 0;
  262. do {
  263. if (isa_readb(io_addr) != *signature)
  264. goto out;
  265. io_addr++;
  266. signature++;
  267. length--;
  268. } while (length);
  269. retval = 1;
  270. out:
  271. return retval;
  272. }
  273. #else /* __mem_isa */
  274. #define isa_readb(addr) (__readwrite_bug("isa_readb"),0)
  275. #define isa_readw(addr) (__readwrite_bug("isa_readw"),0)
  276. #define isa_readl(addr) (__readwrite_bug("isa_readl"),0)
  277. #define isa_writeb(val,addr) __readwrite_bug("isa_writeb")
  278. #define isa_writew(val,addr) __readwrite_bug("isa_writew")
  279. #define isa_writel(val,addr) __readwrite_bug("isa_writel")
  280. #define isa_memset_io(a,b,c) __readwrite_bug("isa_memset_io")
  281. #define isa_memcpy_fromio(a,b,c) __readwrite_bug("isa_memcpy_fromio")
  282. #define isa_memcpy_toio(a,b,c) __readwrite_bug("isa_memcpy_toio")
  283. #define isa_eth_io_copy_and_sum(a,b,c,d) \
  284. __readwrite_bug("isa_eth_io_copy_and_sum")
  285. #define isa_check_signature(io,sig,len) (0)
  286. #endif /* __mem_isa */
  287. #endif /* __KERNEL__ */
  288. #endif /* __ASM_ARM_IO_H */