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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994, 1995 Waldorf GmbH
  7.  * Copyright (C) 1994 - 2000 Ralf Baechle
  8.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  9.  */
  10. #ifndef _ASM_IO_H
  11. #define _ASM_IO_H
  12. #include <linux/config.h>
  13. #include <asm/addrspace.h>
  14. #include <asm/page.h>
  15. #include <asm/byteorder.h>
  16. #ifdef CONFIG_MIPS_ATLAS
  17. #include <asm/mips-boards/io.h>
  18. #endif
  19. #ifdef CONFIG_MIPS_MALTA
  20. #include <asm/mips-boards/io.h>
  21. #endif
  22. #ifdef CONFIG_SGI_IP22
  23. #include <asm/sgi/io.h>
  24. #endif
  25. #ifdef CONFIG_SGI_IP27
  26. #include <asm/sn/io.h>
  27. #endif
  28. #ifdef CONFIG_SGI_IP32
  29. #include <asm/ip32/io.h>
  30. #endif
  31. #ifdef CONFIG_SIBYTE_SB1250
  32. #include <asm/sibyte/io.h>
  33. #endif
  34. #ifdef CONFIG_SGI_IP27
  35. extern unsigned long bus_to_baddr[256];
  36. #define bus_to_baddr(hwdev, addr) (bus_to_baddr[(hwdev)->bus->number] + (addr))
  37. #define baddr_to_bus(hwdev, addr) ((addr) - bus_to_baddr[(hwdev)->bus->number])
  38. #else
  39. #define bus_to_baddr(hwdev, addr) (addr)
  40. #define baddr_to_bus(hwdev, addr) (addr)
  41. #endif
  42. /*
  43.  * Slowdown I/O port space accesses for antique hardware.
  44.  */
  45. #undef CONF_SLOWDOWN_IO
  46. /*
  47.  * Sane hardware offers swapping of I/O space accesses in hardware; less
  48.  * sane hardware forces software to fiddle with this ...
  49.  */
  50. #if defined(CONFIG_SWAP_IO_SPACE) && defined(__MIPSEB__)
  51. #define __ioswab8(x) (x)
  52. #ifdef CONFIG_SGI_IP22
  53. /* IP22 seems braindead enough to swap 16bits values in hardware, but
  54.    not 32bits.  Go figure... Can't tell without documentation. */
  55. #define __ioswab16(x) (x)
  56. #else
  57. #define __ioswab16(x) swab16(x)
  58. #endif
  59. #define __ioswab32(x) swab32(x)
  60. #else
  61. #define __ioswab8(x) (x)
  62. #define __ioswab16(x) (x)
  63. #define __ioswab32(x) (x)
  64. #endif
  65. /*
  66.  * Change "struct page" to physical address.
  67.  */
  68. #define page_to_phys(page) PAGE_TO_PA(page)
  69. /*
  70.  *     ioremap         -       map bus memory into CPU space
  71.  *     @offset:        bus address of the memory
  72.  *     @size:          size of the resource to map
  73.  *
  74.  *     ioremap performs a platform specific sequence of operations to
  75.  *     make bus memory CPU accessible via the readb/readw/readl/writeb/
  76.  *     writew/writel functions and the other mmio helpers. The returned
  77.  *     address is not guaranteed to be usable directly as a virtual
  78.  *     address.
  79.  */
  80. static inline void * ioremap(unsigned long offset, unsigned long size)
  81. {
  82. return (void *) (IO_SPACE_BASE | offset);
  83. }
  84. /*
  85.  *     ioremap_nocache         -       map bus memory into CPU space
  86.  *     @offset:        bus address of the memory
  87.  *     @size:          size of the resource to map
  88.  *
  89.  *     ioremap_nocache performs a platform specific sequence of operations to
  90.  *     make bus memory CPU accessible via the readb/readw/readl/writeb/
  91.  *     writew/writel functions and the other mmio helpers. The returned
  92.  *     address is not guaranteed to be usable directly as a virtual
  93.  *     address.
  94.  *
  95.  *     This version of ioremap ensures that the memory is marked uncachable
  96.  *     on the CPU as well as honouring existing caching rules from things like
  97.  *     the PCI bus. Note that there are other caches and buffers on many
  98.  *     busses. In paticular driver authors should read up on PCI writes
  99.  *
  100.  *     It's useful if some control registers are in such an area and
  101.  *     write combining or read caching is not desirable:
  102.  */
  103. static inline void * ioremap_nocache (unsigned long offset, unsigned long size)
  104. {
  105. return (void *) (IO_SPACE_BASE | offset);
  106. }
  107. static inline void iounmap(void *addr)
  108. {
  109. }
  110. #define readb(addr) (*(volatile unsigned char *)(addr))
  111. #define readw(addr) __ioswab16((*(volatile unsigned short *)(addr)))
  112. #define readl(addr) __ioswab32((*(volatile unsigned int *)(addr)))
  113. #define __raw_readb(addr) (*(volatile unsigned char *)(addr))
  114. #define __raw_readw(addr) (*(volatile unsigned short *)(addr))
  115. #define __raw_readl(addr) (*(volatile unsigned int *)(addr))
  116. #define writeb(b,addr) ((*(volatile unsigned char *)(addr)) = (__ioswab8(b)))
  117. #define writew(b,addr) ((*(volatile unsigned short *)(addr)) = (__ioswab16(b)))
  118. #define writel(b,addr) ((*(volatile unsigned int *)(addr)) = (__ioswab32(b)))
  119. #define __raw_writeb(b,addr) ((*(volatile unsigned char *)(addr)) = (b))
  120. #define __raw_writew(w,addr) ((*(volatile unsigned short *)(addr)) = (w))
  121. #define __raw_writel(l,addr) ((*(volatile unsigned int *)(addr)) = (l))
  122. #define memset_io(a,b,c) memset((void *)(a),(b),(c))
  123. #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c))
  124. #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c))
  125. /* The ISA versions are supplied by system specific code */
  126. /*
  127.  * On MIPS I/O ports are memory mapped, so we access them using normal
  128.  * load/store instructions. mips_io_port_base is the virtual address to
  129.  * which all ports are being mapped.  For sake of efficiency some code
  130.  * assumes that this is an address that can be loaded with a single lui
  131.  * instruction, so the lower 16 bits must be zero.  Should be true on
  132.  * on any sane architecture; generic code does not use this assumption.
  133.  */
  134. extern const unsigned long mips_io_port_base;
  135. #define set_io_port_base(base)  
  136. do { * (unsigned long *) &mips_io_port_base = (base); } while (0)
  137. #define __SLOW_DOWN_IO 
  138. __asm__ __volatile__( 
  139. "sbt$0,0x80(%0)" 
  140. : : "r" (mips_io_port_base));
  141. #ifdef CONF_SLOWDOWN_IO
  142. #ifdef REALLY_SLOW_IO
  143. #define SLOW_DOWN_IO { __SLOW_DOWN_IO; __SLOW_DOWN_IO; __SLOW_DOWN_IO; __SLOW_DOWN_IO; }
  144. #else
  145. #define SLOW_DOWN_IO __SLOW_DOWN_IO
  146. #endif
  147. #else
  148. #define SLOW_DOWN_IO
  149. #endif
  150. /*
  151.  *     virt_to_phys    -       map virtual addresses to physical
  152.  *     @address: address to remap
  153.  *
  154.  *     The returned physical address is the physical (CPU) mapping for
  155.  *     the memory address given. It is only valid to use this function on
  156.  *     addresses directly mapped or allocated via kmalloc.
  157.  *
  158.  *     This function does not give bus mappings for DMA transfers. In
  159.  *     almost all conceivable cases a device driver should not be using
  160.  *     this function
  161.  */
  162. static inline unsigned long virt_to_phys(volatile void * address)
  163. {
  164. return (unsigned long)address - PAGE_OFFSET;
  165. }
  166. /*
  167.  *     phys_to_virt    -       map physical address to virtual
  168.  *     @address: address to remap
  169.  *
  170.  *     The returned virtual address is a current CPU mapping for
  171.  *     the memory address given. It is only valid to use this function on
  172.  *     addresses that have a kernel mapping
  173.  *
  174.  *     This function does not handle bus mappings for DMA transfers. In
  175.  *     almost all conceivable cases a device driver should not be using
  176.  *     this function
  177.  */
  178. static inline void * phys_to_virt(unsigned long address)
  179. {
  180. return (void *)(address + PAGE_OFFSET);
  181. }
  182. /*
  183.  * IO bus memory addresses are also 1:1 with the physical address
  184.  */
  185. static inline unsigned long virt_to_bus(volatile void * address)
  186. {
  187. return (unsigned long)address - PAGE_OFFSET;
  188. }
  189. static inline void * bus_to_virt(unsigned long address)
  190. {
  191. return (void *)(address + PAGE_OFFSET);
  192. }
  193. /* This is too simpleminded for more sophisticated than dumb hardware ...  */
  194. #define page_to_bus page_to_phys
  195. /*
  196.  * isa_slot_offset is the address where E(ISA) busaddress 0 is mapped
  197.  * for the processor.  This implies the assumption that there is only
  198.  * one of these busses.
  199.  */
  200. extern unsigned long isa_slot_offset;
  201. /*
  202.  * ISA space is 'always mapped' on currently supported MIPS systems, no need
  203.  * to explicitly ioremap() it. The fact that the ISA IO space is mapped
  204.  * to PAGE_OFFSET is pure coincidence - it does not mean ISA values
  205.  * are physical addresses. The following constant pointer can be
  206.  * used as the IO-area pointer (it can be iounmapped as well, so the
  207.  * analogy with PCI is quite large):
  208.  */
  209. #define __ISA_IO_base ((char *)(isa_slot_offset))
  210. #define isa_readb(a) readb(__ISA_IO_base + (a))
  211. #define isa_readw(a) readw(__ISA_IO_base + (a))
  212. #define isa_readl(a) readl(__ISA_IO_base + (a))
  213. #define isa_writeb(b,a) writeb(b,__ISA_IO_base + (a))
  214. #define isa_writew(w,a) writew(w,__ISA_IO_base + (a))
  215. #define isa_writel(l,a) writel(l,__ISA_IO_base + (a))
  216. #define isa_memset_io(a,b,c) memset_io(__ISA_IO_base + (a),(b),(c))
  217. #define isa_memcpy_fromio(a,b,c) memcpy_fromio((a),__ISA_IO_base + (b),(c))
  218. #define isa_memcpy_toio(a,b,c) memcpy_toio(__ISA_IO_base + (a),(b),(c))
  219. /*
  220.  * We don't have csum_partial_copy_fromio() yet, so we cheat here and
  221.  * just copy it. The net code will then do the checksum later.
  222.  */
  223. #define eth_io_copy_and_sum(skb,src,len,unused) memcpy_fromio((skb)->data,(src),(len))
  224. /*
  225.  *     check_signature         -       find BIOS signatures
  226.  *     @io_addr: mmio address to check
  227.  *     @signature:  signature block
  228.  *     @length: length of signature
  229.  *
  230.  *     Perform a signature comparison with the mmio address io_addr. This
  231.  *     address should have been obtained by ioremap.
  232.  *     Returns 1 on a match.
  233.  */
  234. static inline int
  235. check_signature(unsigned long io_addr, const unsigned char *signature,
  236.                 int length)
  237. {
  238. int retval = 0;
  239. do {
  240. if (readb(io_addr) != *signature)
  241. goto out;
  242. io_addr++;
  243. signature++;
  244. length--;
  245. } while (length);
  246. retval = 1;
  247. out:
  248. return retval;
  249. }
  250. /*
  251.  *     isa_check_signature             -       find BIOS signatures
  252.  *     @io_addr: mmio address to check
  253.  *     @signature:  signature block
  254.  *     @length: length of signature
  255.  *
  256.  *     Perform a signature comparison with the ISA mmio address io_addr.
  257.  *     Returns 1 on a match.
  258.  *
  259.  *     This function is deprecated. New drivers should use ioremap and
  260.  *     check_signature.
  261.  */
  262. static inline int isa_check_signature(unsigned long io_addr,
  263. const unsigned char *signature, int length)
  264. {
  265. int retval = 0;
  266. do {
  267. if (isa_readb(io_addr) != *signature)
  268. goto out;
  269. io_addr++;
  270. signature++;
  271. length--;
  272. } while (length);
  273. retval = 1;
  274. out:
  275. return retval;
  276. }
  277. #define outb(val,port)
  278. do {
  279. *(volatile u8 *)(mips_io_port_base + (port)) = __ioswab8(val);
  280. } while(0)
  281. #define outw(val,port)
  282. do {
  283. *(volatile u16 *)(mips_io_port_base + (port)) = __ioswab16(val);
  284. } while(0)
  285. #define outl(val,port)
  286. do {
  287. *(volatile u32 *)(mips_io_port_base + (port)) = __ioswab32(val);
  288. } while(0)
  289. #define outb_p(val,port)
  290. do {
  291. *(volatile u8 *)(mips_io_port_base + (port)) = __ioswab8(val);
  292. SLOW_DOWN_IO;
  293. } while(0)
  294. #define outw_p(val,port)
  295. do {
  296. *(volatile u16 *)(mips_io_port_base + (port)) = __ioswab16(val);
  297. SLOW_DOWN_IO;
  298. } while(0)
  299. #define outl_p(val,port)
  300. do {
  301. *(volatile u32 *)(mips_io_port_base + (port)) = __ioswab32(val);
  302. SLOW_DOWN_IO;
  303. } while(0)
  304. static inline unsigned char inb(unsigned long port)
  305. {
  306. return __ioswab8(*(volatile u8 *)(mips_io_port_base + port));
  307. }
  308. static inline unsigned short inw(unsigned long port)
  309. {
  310. return __ioswab16(*(volatile u16 *)(mips_io_port_base + port));
  311. }
  312. static inline unsigned int inl(unsigned long port)
  313. {
  314. return __ioswab32(*(volatile u32 *)(mips_io_port_base + port));
  315. }
  316. static inline unsigned char inb_p(unsigned long port)
  317. {
  318. u8 __val;
  319. __val = *(volatile u8 *)(mips_io_port_base + port);
  320. SLOW_DOWN_IO;
  321. return __ioswab8(__val);
  322. }
  323. static inline unsigned short inw_p(unsigned long port)
  324. {
  325. u16 __val;
  326. __val = *(volatile u16 *)(mips_io_port_base + port);
  327. SLOW_DOWN_IO;
  328. return __ioswab16(__val);
  329. }
  330. static inline unsigned int inl_p(unsigned long port)
  331. {
  332. u32 __val;
  333. __val = *(volatile u32 *)(mips_io_port_base + port);
  334. SLOW_DOWN_IO;
  335. return __ioswab32(__val);
  336. }
  337. static inline void outsb(unsigned long port, void *addr, unsigned int count)
  338. {
  339. while (count--) {
  340. outb(*(u8 *)addr, port);
  341. addr++;
  342. }
  343. }
  344. static inline void insb(unsigned long port, void *addr, unsigned int count)
  345. {
  346. while (count--) {
  347. *(u8 *)addr = inb(port);
  348. addr++;
  349. }
  350. }
  351. static inline void outsw(unsigned long port, void *addr, unsigned int count)
  352. {
  353. while (count--) {
  354. outw(*(u16 *)addr, port);
  355. addr += 2;
  356. }
  357. }
  358. static inline void insw(unsigned long port, void *addr, unsigned int count)
  359. {
  360. while (count--) {
  361. *(u16 *)addr = inw(port);
  362. addr += 2;
  363. }
  364. }
  365. static inline void outsl(unsigned long port, void *addr, unsigned int count)
  366. {
  367. while (count--) {
  368. outl(*(u32 *)addr, port);
  369. addr += 4;
  370. }
  371. }
  372. static inline void insl(unsigned long port, void *addr, unsigned int count)
  373. {
  374. while (count--) {
  375. *(u32 *)addr = inl(port);
  376. addr += 4;
  377. }
  378. }
  379. /*
  380.  * The caches on some architectures aren't dma-coherent and have need to
  381.  * handle this in software.  There are three types of operations that
  382.  * can be applied to dma buffers.
  383.  *
  384.  *  - dma_cache_wback_inv(start, size) makes caches and coherent by
  385.  *    writing the content of the caches back to memory, if necessary.
  386.  *    The function also invalidates the affected part of the caches as
  387.  *    necessary before DMA transfers from outside to memory.
  388.  *  - dma_cache_wback(start, size) makes caches and coherent by
  389.  *    writing the content of the caches back to memory, if necessary.
  390.  *    The function also invalidates the affected part of the caches as
  391.  *    necessary before DMA transfers from outside to memory.
  392.  *  - dma_cache_inv(start, size) invalidates the affected parts of the
  393.  *    caches.  Dirty lines of the caches may be written back or simply
  394.  *    be discarded.  This operation is necessary before dma operations
  395.  *    to the memory.
  396.  */
  397. #ifdef CONFIG_NONCOHERENT_IO
  398. extern void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size);
  399. extern void (*_dma_cache_wback)(unsigned long start, unsigned long size);
  400. extern void (*_dma_cache_inv)(unsigned long start, unsigned long size);
  401. #define dma_cache_wback_inv(start,size) _dma_cache_wback_inv(start,size)
  402. #define dma_cache_wback(start,size) _dma_cache_wback(start,size)
  403. #define dma_cache_inv(start,size) _dma_cache_inv(start,size)
  404. #else /* Sane hardware */
  405. #define dma_cache_wback_inv(start,size) do { (start); (size); } while (0)
  406. #define dma_cache_wback(start,size) do { (start); (size); } while (0)
  407. #define dma_cache_inv(start,size) do { (start); (size); } while (0)
  408. #endif /* CONFIG_NONCOHERENT_IO */
  409. #endif /* _ASM_IO_H */