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

Linux/Unix编程

开发平台:

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