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

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