io.h 8.5 KB

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