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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.io.h 1.14 10/16/01 15:58:42 trini
  3.  */
  4. #ifdef __KERNEL__
  5. #ifndef _PPC_IO_H
  6. #define _PPC_IO_H
  7. #include <linux/config.h>
  8. #include <linux/types.h>
  9. #include <asm/page.h>
  10. #include <asm/byteorder.h>
  11. #define SIO_CONFIG_RA 0x398
  12. #define SIO_CONFIG_RD 0x399
  13. #define SLOW_DOWN_IO
  14. #define PMAC_ISA_MEM_BASE  0
  15. #define PMAC_PCI_DRAM_OFFSET  0
  16. #define CHRP_ISA_IO_BASE  0xf8000000
  17. #define CHRP_ISA_MEM_BASE  0xf7000000
  18. #define CHRP_PCI_DRAM_OFFSET  0
  19. #define PREP_ISA_IO_BASE  0x80000000
  20. #define PREP_ISA_MEM_BASE  0xc0000000
  21. #define PREP_PCI_DRAM_OFFSET  0x80000000
  22. #if defined(CONFIG_4xx)
  23. #include <asm/ppc4xx.h>
  24. #elif defined(CONFIG_8xx)
  25. #include <asm/mpc8xx.h>
  26. #elif defined(CONFIG_8260)
  27. #include <asm/mpc8260.h>
  28. #elif defined(CONFIG_APUS)
  29. #define _IO_BASE 0
  30. #define _ISA_MEM_BASE 0
  31. #define PCI_DRAM_OFFSET 0
  32. #else /* Everyone else */
  33. extern unsigned long isa_io_base;
  34. extern unsigned long isa_mem_base;
  35. extern unsigned long pci_dram_offset;
  36. #define _IO_BASE isa_io_base
  37. #define _ISA_MEM_BASE isa_mem_base
  38. #define PCI_DRAM_OFFSET pci_dram_offset
  39. #endif /* Platform-dependant I/O */
  40. #define readb(addr) in_8((volatile u8 *)(addr))
  41. #define writeb(b,addr) out_8((volatile u8 *)(addr), (b))
  42. #if defined(CONFIG_APUS)
  43. #define readw(addr) (*(volatile u16 *) (addr))
  44. #define readl(addr) (*(volatile u32 *) (addr))
  45. #define writew(b,addr) ((*(volatile u16 *) (addr)) = (b))
  46. #define writel(b,addr) ((*(volatile u32 *) (addr)) = (b))
  47. #else
  48. #define readw(addr) in_le16((volatile u16 *)(addr))
  49. #define readl(addr) in_le32((volatile u32 *)(addr))
  50. #define writew(b,addr) out_le16((volatile u16 *)(addr),(b))
  51. #define writel(b,addr) out_le32((volatile u32 *)(addr),(b))
  52. #endif
  53. #define __raw_readb(addr) (*(volatile unsigned char *)(addr))
  54. #define __raw_readw(addr) (*(volatile unsigned short *)(addr))
  55. #define __raw_readl(addr) (*(volatile unsigned int *)(addr))
  56. #define __raw_writeb(v, addr) (*(volatile unsigned char *)(addr) = (v))
  57. #define __raw_writew(v, addr) (*(volatile unsigned short *)(addr) = (v))
  58. #define __raw_writel(v, addr) (*(volatile unsigned int *)(addr) = (v))
  59. /*
  60.  * The insw/outsw/insl/outsl macros don't do byte-swapping.
  61.  * They are only used in practice for transferring buffers which
  62.  * are arrays of bytes, and byte-swapping is not appropriate in
  63.  * that case.  - paulus
  64.  */
  65. #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns))
  66. #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns))
  67. #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
  68. #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
  69. #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
  70. #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
  71. #ifdef CONFIG_ALL_PPC
  72. /*
  73.  * We have to handle possible machine checks here on powermacs
  74.  * and potentially some CHRPs -- paulus.
  75.  */
  76. #define __do_in_asm(name, op)
  77. extern __inline__ unsigned int name(unsigned int port)
  78. {
  79. unsigned int x;
  80. __asm__ __volatile__(
  81. op " %0,0,%1n"
  82. "1: twi 0,%0,0n"
  83. "2: isyncn"
  84. "3: nopn"
  85. "4:n"
  86. ".section .fixup,"ax"n"
  87. "5: li %0,-1n"
  88. " b 4bn"
  89. ".previousn"
  90. ".section __ex_table,"a"n"
  91. " .align 2n"
  92. " .long 1b,5bn"
  93. " .long 2b,5bn"
  94. " .long 3b,5bn"
  95. ".previous"
  96. : "=&r" (x)
  97. : "r" (port + _IO_BASE));
  98. return x;
  99. }
  100. #define __do_out_asm(name, op)
  101. extern __inline__ void name(unsigned int val, unsigned int port) 
  102. {
  103. __asm__ __volatile__(
  104. op " %0,0,%1n"
  105. "1: syncn"
  106. "2:n"
  107. ".section __ex_table,"a"n"
  108. " .align 2n"
  109. " .long 1b,2bn"
  110. ".previous"
  111. : : "r" (val), "r" (port + _IO_BASE));
  112. }
  113. __do_in_asm(inb, "lbzx")
  114. __do_in_asm(inw, "lhbrx")
  115. __do_in_asm(inl, "lwbrx")
  116. __do_out_asm(outb, "stbx")
  117. __do_out_asm(outw, "sthbrx")
  118. __do_out_asm(outl, "stwbrx")
  119. #elif defined(CONFIG_APUS)
  120. #define inb(port) in_8((u8 *)((port)+_IO_BASE))
  121. #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val))
  122. #define inw(port) in_be16((u16 *)((port)+_IO_BASE))
  123. #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val))
  124. #define inl(port) in_be32((u32 *)((port)+_IO_BASE))
  125. #define outl(val, port) out_be32((u32 *)((port)+_IO_BASE), (val))
  126. #else /* not APUS or ALL_PPC */
  127. #define inb(port) in_8((u8 *)((port)+_IO_BASE))
  128. #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val))
  129. #define inw(port) in_le16((u16 *)((port)+_IO_BASE))
  130. #define outw(val, port) out_le16((u16 *)((port)+_IO_BASE), (val))
  131. #define inl(port) in_le32((u32 *)((port)+_IO_BASE))
  132. #define outl(val, port) out_le32((u32 *)((port)+_IO_BASE), (val))
  133. #endif
  134. #define inb_p(port) inb((port))
  135. #define outb_p(val, port) outb((val), (port))
  136. #define inw_p(port) inw((port))
  137. #define outw_p(val, port) outw((val), (port))
  138. #define inl_p(port) inl((port))
  139. #define outl_p(val, port) outl((val), (port))
  140. extern void _insb(volatile u8 *port, void *buf, int ns);
  141. extern void _outsb(volatile u8 *port, const void *buf, int ns);
  142. extern void _insw(volatile u16 *port, void *buf, int ns);
  143. extern void _outsw(volatile u16 *port, const void *buf, int ns);
  144. extern void _insl(volatile u32 *port, void *buf, int nl);
  145. extern void _outsl(volatile u32 *port, const void *buf, int nl);
  146. extern void _insw_ns(volatile u16 *port, void *buf, int ns);
  147. extern void _outsw_ns(volatile u16 *port, const void *buf, int ns);
  148. extern void _insl_ns(volatile u32 *port, void *buf, int nl);
  149. extern void _outsl_ns(volatile u32 *port, const void *buf, int nl);
  150. /*
  151.  * The *_ns versions below don't do byte-swapping.
  152.  * Neither do the standard versions now, these are just here
  153.  * for older code.
  154.  */
  155. #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
  156. #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
  157. #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
  158. #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
  159. #define IO_SPACE_LIMIT ~0
  160. #define memset_io(a,b,c)       memset((void *)(a),(b),(c))
  161. #define memcpy_fromio(a,b,c)   memcpy((a),(void *)(b),(c))
  162. #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c))
  163. #ifdef __KERNEL__
  164. /*
  165.  * Map in an area of physical address space, for accessing
  166.  * I/O devices etc.
  167.  */
  168. extern void *__ioremap(unsigned long address, unsigned long size,
  169.        unsigned long flags);
  170. extern void *ioremap(unsigned long address, unsigned long size);
  171. #define ioremap_nocache(addr, size) ioremap((addr), (size))
  172. extern void iounmap(void *addr);
  173. extern unsigned long iopa(unsigned long addr);
  174. extern unsigned long mm_ptov(unsigned long addr) __attribute__ ((const));
  175. extern void io_block_mapping(unsigned long virt, unsigned long phys,
  176.      unsigned int size, int flags);
  177. /*
  178.  * The PCI bus is inherently Little-Endian.  The PowerPC is being
  179.  * run Big-Endian.  Thus all values which cross the [PCI] barrier
  180.  * must be endian-adjusted.  Also, the local DRAM has a different
  181.  * address from the PCI point of view, thus buffer addresses also
  182.  * have to be modified [mapped] appropriately.
  183.  */
  184. extern inline unsigned long virt_to_bus(volatile void * address)
  185. {
  186. #ifndef CONFIG_APUS
  187.         if (address == (void *)0)
  188. return 0;
  189.         return (unsigned long)address - KERNELBASE + PCI_DRAM_OFFSET;
  190. #else
  191. return iopa ((unsigned long) address);
  192. #endif
  193. }
  194. extern inline void * bus_to_virt(unsigned long address)
  195. {
  196. #ifndef CONFIG_APUS
  197.         if (address == 0)
  198. return 0;
  199.         return (void *)(address - PCI_DRAM_OFFSET + KERNELBASE);
  200. #else
  201. return (void*) mm_ptov (address);
  202. #endif
  203. }
  204. /*
  205.  * Change virtual addresses to physical addresses and vv, for
  206.  * addresses in the area where the kernel has the RAM mapped.
  207.  */
  208. extern inline unsigned long virt_to_phys(volatile void * address)
  209. {
  210. #ifndef CONFIG_APUS
  211. return (unsigned long) address - KERNELBASE;
  212. #else
  213. return iopa ((unsigned long) address);
  214. #endif
  215. }
  216. extern inline void * phys_to_virt(unsigned long address)
  217. {
  218. #ifndef CONFIG_APUS
  219. return (void *) (address + KERNELBASE);
  220. #else
  221. return (void*) mm_ptov (address);
  222. #endif
  223. }
  224. /*
  225.  * Change "struct page" to physical address.
  226.  */
  227. #define page_to_phys(page) ((page - mem_map) << PAGE_SHIFT)
  228. #define page_to_bus(page) (page_to_phys(page) + PCI_DRAM_OFFSET)
  229. #endif /* __KERNEL__ */
  230. /*
  231.  * Enforce In-order Execution of I/O:
  232.  * Acts as a barrier to ensure all previous I/O accesses have
  233.  * completed before any further ones are issued.
  234.  */
  235. extern inline void eieio(void)
  236. {
  237. __asm__ __volatile__ ("eieio" : : : "memory");
  238. }
  239. /* Enforce in-order execution of data I/O. 
  240.  * No distinction between read/write on PPC; use eieio for all three.
  241.  */
  242. #define iobarrier_rw() eieio()
  243. #define iobarrier_r()  eieio()
  244. #define iobarrier_w()  eieio()
  245. /*
  246.  * 8, 16 and 32 bit, big and little endian I/O operations, with barrier.
  247.  */
  248. extern inline int in_8(volatile unsigned char *addr)
  249. {
  250. int ret;
  251. __asm__ __volatile__("lbz%U1%X1 %0,%1; eieio" : "=r" (ret) : "m" (*addr));
  252. return ret;
  253. }
  254. extern inline void out_8(volatile unsigned char *addr, int val)
  255. {
  256. __asm__ __volatile__("stb%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val));
  257. }
  258. extern inline int in_le16(volatile unsigned short *addr)
  259. {
  260. int ret;
  261. __asm__ __volatile__("lhbrx %0,0,%1; eieio" : "=r" (ret) :
  262.       "r" (addr), "m" (*addr));
  263. return ret;
  264. }
  265. extern inline int in_be16(volatile unsigned short *addr)
  266. {
  267. int ret;
  268. __asm__ __volatile__("lhz%U1%X1 %0,%1; eieio" : "=r" (ret) : "m" (*addr));
  269. return ret;
  270. }
  271. extern inline void out_le16(volatile unsigned short *addr, int val)
  272. {
  273. __asm__ __volatile__("sthbrx %1,0,%2; eieio" : "=m" (*addr) :
  274.       "r" (val), "r" (addr));
  275. }
  276. extern inline void out_be16(volatile unsigned short *addr, int val)
  277. {
  278. __asm__ __volatile__("sth%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val));
  279. }
  280. extern inline unsigned in_le32(volatile unsigned *addr)
  281. {
  282. unsigned ret;
  283. __asm__ __volatile__("lwbrx %0,0,%1; eieio" : "=r" (ret) :
  284.      "r" (addr), "m" (*addr));
  285. return ret;
  286. }
  287. extern inline unsigned in_be32(volatile unsigned *addr)
  288. {
  289. unsigned ret;
  290. __asm__ __volatile__("lwz%U1%X1 %0,%1; eieio" : "=r" (ret) : "m" (*addr));
  291. return ret;
  292. }
  293. extern inline void out_le32(volatile unsigned *addr, int val)
  294. {
  295. __asm__ __volatile__("stwbrx %1,0,%2; eieio" : "=m" (*addr) :
  296.      "r" (val), "r" (addr));
  297. }
  298. extern inline void out_be32(volatile unsigned *addr, int val)
  299. {
  300. __asm__ __volatile__("stw%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val));
  301. }
  302. static inline int check_signature(unsigned long io_addr,
  303. const unsigned char *signature, int length)
  304. {
  305. int retval = 0;
  306. do {
  307. if (readb(io_addr) != *signature)
  308. goto out;
  309. io_addr++;
  310. signature++;
  311. length--;
  312. } while (length);
  313. retval = 1;
  314. out:
  315. return retval;
  316. }
  317. /* Make some pcmcia drivers happy */
  318. static inline int isa_check_signature(unsigned long io_addr,
  319. const unsigned char *signature, int length)
  320. {
  321. return 0;
  322. }
  323. /* Nothing to do */
  324. #define dma_cache_inv(_start,_size) do { } while (0)
  325. #define dma_cache_wback(_start,_size) do { } while (0)
  326. #define dma_cache_wback_inv(_start,_size) do { } while (0)
  327. #endif
  328. #endif /* __KERNEL__ */