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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: io.h,v 1.29 2001/11/10 09:28:34 davem Exp $
  3.  */
  4. #ifndef __SPARC_IO_H
  5. #define __SPARC_IO_H
  6. #include <linux/kernel.h>
  7. #include <linux/types.h>
  8. #include <linux/ioport.h>  /* struct resource */
  9. #include <asm/page.h>      /* IO address mapping routines need this */
  10. #include <asm/system.h>
  11. #define virt_to_bus virt_to_phys
  12. #define bus_to_virt phys_to_virt
  13. static __inline__ u32 flip_dword (u32 d)
  14. {
  15. return ((d&0xff)<<24) | (((d>>8)&0xff)<<16) | (((d>>16)&0xff)<<8)| ((d>>24)&0xff);
  16. }
  17. static __inline__ u16 flip_word (u16 d)
  18. {
  19. return ((d&0xff) << 8) | ((d>>8)&0xff);
  20. }
  21. /*
  22.  * Memory mapped I/O to PCI
  23.  */
  24. static __inline__ u8 readb(unsigned long addr)
  25. {
  26. return *(volatile u8 *)addr;
  27. }
  28. static __inline__ u16 readw(unsigned long addr)
  29. {
  30. return flip_word(*(volatile u16 *)addr);
  31. }
  32. static __inline__ u32 readl(unsigned long addr)
  33. {
  34. return flip_dword(*(volatile u32 *)addr);
  35. }
  36. static __inline__ void writeb(u8 b, unsigned long addr)
  37. {
  38. *(volatile u8 *)addr = b;
  39. }
  40. static __inline__ void writew(u16 b, unsigned long addr)
  41. {
  42. *(volatile u16 *)addr = flip_word(b);
  43. }
  44. static __inline__ void writel(u32 b, unsigned long addr)
  45. {
  46. *(volatile u32 *)addr = flip_dword(b);
  47. }
  48. /* Now the 'raw' versions. */
  49. static __inline__ u8 __raw_readb(unsigned long addr)
  50. {
  51. return *(volatile u8 *)addr;
  52. }
  53. static __inline__ u16 __raw_readw(unsigned long addr)
  54. {
  55. return *(volatile u16 *)addr;
  56. }
  57. static __inline__ u32 __raw_readl(unsigned long addr)
  58. {
  59. return *(volatile u32 *)addr;
  60. }
  61. static __inline__ void __raw_writeb(u8 b, unsigned long addr)
  62. {
  63. *(volatile u8 *)addr = b;
  64. }
  65. static __inline__ void __raw_writew(u16 b, unsigned long addr)
  66. {
  67. *(volatile u16 *)addr = b;
  68. }
  69. static __inline__ void __raw_writel(u32 b, unsigned long addr)
  70. {
  71. *(volatile u32 *)addr = b;
  72. }
  73. /*
  74.  * I/O space operations
  75.  *
  76.  * Arrangement on a Sun is somewhat complicated.
  77.  *
  78.  * First of all, we want to use standard Linux drivers
  79.  * for keyboard, PC serial, etc. These drivers think
  80.  * they access I/O space and use inb/outb.
  81.  * On the other hand, EBus bridge accepts PCI *memory*
  82.  * cycles and converts them into ISA *I/O* cycles.
  83.  * Ergo, we want inb & outb to generate PCI memory cycles.
  84.  *
  85.  * If we want to issue PCI *I/O* cycles, we do this
  86.  * with a low 64K fixed window in PCIC. This window gets
  87.  * mapped somewhere into virtual kernel space and we
  88.  * can use inb/outb again.
  89.  */
  90. #define inb_local(addr) readb(addr)
  91. #define inb(addr) readb(addr)
  92. #define inw(addr) readw(addr)
  93. #define inl(addr) readl(addr)
  94. #define inb_p(addr) readb(addr)
  95. #define outb_local(b, addr) writeb(b, addr)
  96. #define outb(b, addr) writeb(b, addr)
  97. #define outw(b, addr) writew(b, addr)
  98. #define outl(b, addr) writel(b, addr)
  99. #define outb_p(b, addr) writeb(b, addr)
  100. extern void outsb(unsigned long addr, const void *src, unsigned long cnt);
  101. extern void outsw(unsigned long addr, const void *src, unsigned long cnt);
  102. extern void outsl(unsigned long addr, const void *src, unsigned long cnt);
  103. extern void insb(unsigned long addr, void *dst, unsigned long count);
  104. extern void insw(unsigned long addr, void *dst, unsigned long count);
  105. extern void insl(unsigned long addr, void *dst, unsigned long count);
  106. #define IO_SPACE_LIMIT 0xffffffff
  107. /*
  108.  * SBus accessors.
  109.  *
  110.  * SBus has only one, memory mapped, I/O space.
  111.  * We do not need to flip bytes for SBus of course.
  112.  */
  113. static __inline__ u8 _sbus_readb(unsigned long addr)
  114. {
  115. return *(volatile u8 *)addr;
  116. }
  117. static __inline__ u16 _sbus_readw(unsigned long addr)
  118. {
  119. return *(volatile u16 *)addr;
  120. }
  121. static __inline__ u32 _sbus_readl(unsigned long addr)
  122. {
  123. return *(volatile u32 *)addr;
  124. }
  125. static __inline__ void _sbus_writeb(u8 b, unsigned long addr)
  126. {
  127. *(volatile u8 *)addr = b;
  128. }
  129. static __inline__ void _sbus_writew(u16 b, unsigned long addr)
  130. {
  131. *(volatile u16 *)addr = b;
  132. }
  133. static __inline__ void _sbus_writel(u32 b, unsigned long addr)
  134. {
  135. *(volatile u32 *)addr = b;
  136. }
  137. /*
  138.  * The only reason for #define's is to hide casts to unsigned long.
  139.  * XXX Rewrite drivers without structures for registers.
  140.  */
  141. #define sbus_readb(a) _sbus_readb((unsigned long)(a))
  142. #define sbus_readw(a) _sbus_readw((unsigned long)(a))
  143. #define sbus_readl(a) _sbus_readl((unsigned long)(a))
  144. #define sbus_writeb(v, a) _sbus_writeb(v, (unsigned long)(a))
  145. #define sbus_writew(v, a) _sbus_writew(v, (unsigned long)(a))
  146. #define sbus_writel(v, a) _sbus_writel(v, (unsigned long)(a))
  147. static inline void *sbus_memset_io(void *__dst, int c, __kernel_size_t n)
  148. {
  149. unsigned long dst = (unsigned long)__dst;
  150. while(n--) {
  151. sbus_writeb(c, dst);
  152. dst++;
  153. }
  154. return (void *) dst;
  155. }
  156. #ifdef __KERNEL__
  157. /*
  158.  * Bus number may be embedded in the higher bits of the physical address.
  159.  * This is why we have no bus number argument to ioremap().
  160.  */
  161. extern void *ioremap(unsigned long offset, unsigned long size);
  162. #define ioremap_nocache(X,Y) ioremap((X),(Y))
  163. extern void iounmap(void *addr);
  164. /* P3: talk davem into dropping "name" argument in favor of res->name */
  165. /*
  166.  * Bus number may be in res->flags... somewhere.
  167.  */
  168. extern unsigned long sbus_ioremap(struct resource *res, unsigned long offset,
  169.     unsigned long size, char *name);
  170. /* XXX Partial deallocations? I think not! */
  171. extern void sbus_iounmap(unsigned long vaddr, unsigned long size);
  172. #define virt_to_phys(x) __pa((unsigned long)(x))
  173. #define phys_to_virt(x) __va((unsigned long)(x))
  174. /*
  175.  * At the moment, we do not use CMOS_READ anywhere outside of rtc.c,
  176.  * so rtc_port is static in it. This should not change unless a new
  177.  * hardware pops up.
  178.  */
  179. #define RTC_PORT(x)   (rtc_port + (x))
  180. #define RTC_ALWAYS_BCD  0
  181. /* Nothing to do */
  182. /* P3: Only IDE DMA may need these. */
  183. #define dma_cache_inv(_start,_size) do { } while (0)
  184. #define dma_cache_wback(_start,_size) do { } while (0)
  185. #define dma_cache_wback_inv(_start,_size) do { } while (0)
  186. #endif
  187. #endif /* !(__SPARC_IO_H) */