io.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-ixp2000/io.h
  3.  *
  4.  * Original Author: Naeem M Afzal <naeem.m.afzal@intel.com>
  5.  * Maintainer: Deepak Saxena <dsaxena@plexity.net>
  6.  *
  7.  * Copyright (C) 2002  Intel Corp.
  8.  * Copyrgiht (C) 2003-2004 MontaVista Software, Inc.
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License version 2 as
  12.  * published by the Free Software Foundation.
  13.  */
  14. #ifndef __ASM_ARM_ARCH_IO_H
  15. #define __ASM_ARM_ARCH_IO_H
  16. #define IO_SPACE_LIMIT 0xffffffff
  17. #define __mem_pci(a) (a)
  18. /*
  19.  * The A? revisions of the IXP2000s assert byte lanes for PCI I/O
  20.  * transactions the other way round (MEM transactions don't have this
  21.  * issue), so if we want to support those models, we need to override
  22.  * the standard I/O functions.
  23.  *
  24.  * B0 and later have a bit that can be set to 1 to get the proper
  25.  * behavior for I/O transactions, which then allows us to use the
  26.  * standard I/O functions.  This is what we do if the user does not
  27.  * explicitly ask for support for pre-B0.
  28.  */
  29. #ifdef CONFIG_IXP2000_SUPPORT_BROKEN_PCI_IO
  30. #define ___io(p) ((void __iomem *)((p)+IXP2000_PCI_IO_VIRT_BASE))
  31. #define alignb(addr) (void __iomem *)((unsigned long)(addr) ^ 3)
  32. #define alignw(addr) (void __iomem *)((unsigned long)(addr) ^ 2)
  33. #define outb(v,p) __raw_writeb((v),alignb(___io(p)))
  34. #define outw(v,p) __raw_writew((v),alignw(___io(p)))
  35. #define outl(v,p) __raw_writel((v),___io(p))
  36. #define inb(p) ({ unsigned int __v = __raw_readb(alignb(___io(p))); __v; })
  37. #define inw(p)
  38. ({ unsigned int __v = (__raw_readw(alignw(___io(p)))); __v; })
  39. #define inl(p)
  40. ({ unsigned int __v = (__raw_readl(___io(p))); __v; })
  41. #define outsb(p,d,l) __raw_writesb(alignb(___io(p)),d,l)
  42. #define outsw(p,d,l) __raw_writesw(alignw(___io(p)),d,l)
  43. #define outsl(p,d,l) __raw_writesl(___io(p),d,l)
  44. #define insb(p,d,l) __raw_readsb(alignb(___io(p)),d,l)
  45. #define insw(p,d,l) __raw_readsw(alignw(___io(p)),d,l)
  46. #define insl(p,d,l) __raw_readsl(___io(p),d,l)
  47. #define __is_io_address(p) ((((unsigned long)(p)) & ~(IXP2000_PCI_IO_SIZE - 1)) == IXP2000_PCI_IO_VIRT_BASE)
  48. #define ioread8(p)
  49. ({
  50. unsigned int __v;
  51. if (__is_io_address(p)) {
  52. __v = __raw_readb(alignb(p));
  53. } else {
  54. __v = __raw_readb(p);
  55. }
  56. __v;
  57. })
  58. #define ioread16(p)
  59. ({
  60. unsigned int __v;
  61. if (__is_io_address(p)) {
  62. __v = __raw_readw(alignw(p));
  63. } else {
  64. __v = le16_to_cpu(__raw_readw(p));
  65. }
  66. __v;
  67. })
  68. #define ioread32(p)
  69. ({
  70. unsigned int __v;
  71. if (__is_io_address(p)) {
  72. __v = __raw_readl(p);
  73. } else {
  74. __v = le32_to_cpu(__raw_readl(p));
  75. }
  76.  __v;
  77. })
  78. #define iowrite8(v,p)
  79. ({
  80. if (__is_io_address(p)) {
  81. __raw_writeb((v), alignb(p));
  82. } else {
  83. __raw_writeb((v), p);
  84. }
  85. })
  86. #define iowrite16(v,p)
  87. ({
  88. if (__is_io_address(p)) {
  89. __raw_writew((v), alignw(p));
  90. } else {
  91. __raw_writew(cpu_to_le16(v), p);
  92. }
  93. })
  94. #define iowrite32(v,p)
  95. ({
  96. if (__is_io_address(p)) {
  97. __raw_writel((v), p);
  98. } else {
  99. __raw_writel(cpu_to_le32(v), p);
  100. }
  101. })
  102. #define ioport_map(port, nr) ___io(port)
  103. #define ioport_unmap(addr)
  104. #else
  105. #define __io(p) ((void __iomem *)((p)+IXP2000_PCI_IO_VIRT_BASE))
  106. #endif
  107. #ifdef CONFIG_ARCH_IXDP2X01
  108. /*
  109.  * This is an ugly hack but the CS8900 on the 2x01's does not sit in any sort
  110.  * of "I/O space" and is just direct mapped into a 32-bit-only addressable
  111.  * bus. The address space for this bus is such that we can't really easily
  112.  * make it contiguous to the PCI I/O address range, and it also does not
  113.  * need swapping like PCI addresses do (IXDP2x01 is a BE platform).
  114.  * B/C of this we can't use the standard in/out functions and need to
  115.  * runtime check if the incoming address is a PCI address or for
  116.  * the CS89x0.
  117.  */
  118. #undef inw
  119. #undef outw
  120. #undef insw
  121. #undef outsw
  122. #include <asm/mach-types.h>
  123. static inline void insw(u32 ptr, void *buf, int length)
  124. {
  125. register volatile u32 *port = (volatile u32 *)ptr;
  126. /*
  127.  * Is this cycle meant for the CS8900?
  128.  */
  129. if ((machine_is_ixdp2401() || machine_is_ixdp2801()) && 
  130. (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
  131.  ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
  132. u8 *buf8 = (u8*)buf;
  133. register u32 tmp32;
  134. do {
  135. tmp32 = *port;
  136. *buf8++ = (u8)tmp32;
  137. *buf8++ = (u8)(tmp32 >> 8);
  138. } while(--length);
  139. return;
  140. }
  141. __raw_readsw(alignw(___io(ptr)),buf,length);
  142. }
  143. static inline void outsw(u32 ptr, void *buf, int length)
  144. {
  145. register volatile u32 *port = (volatile u32 *)ptr;
  146. /*
  147.  * Is this cycle meant for the CS8900?
  148.  */
  149. if ((machine_is_ixdp2401() || machine_is_ixdp2801()) && 
  150. (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
  151.  ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
  152. register u32 tmp32;
  153. u8 *buf8 = (u8*)buf;
  154. do {
  155. tmp32 = *buf8++;
  156. tmp32 |= (*buf8++) << 8;
  157. *port = tmp32;
  158. } while(--length);
  159. return;
  160. }
  161. __raw_writesw(alignw(___io(ptr)),buf,length);
  162. }
  163. static inline u16 inw(u32 ptr)
  164. {
  165. register volatile u32 *port = (volatile u32 *)ptr;
  166. /*
  167.  * Is this cycle meant for the CS8900?
  168.  */
  169. if ((machine_is_ixdp2401() || machine_is_ixdp2801()) && 
  170. (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
  171.  ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
  172. return (u16)(*port);  
  173. }
  174. return __raw_readw(alignw(___io(ptr)));
  175. }
  176. static inline void outw(u16 value, u32 ptr)
  177. {
  178. register volatile u32 *port = (volatile u32 *)ptr;
  179. if ((machine_is_ixdp2401() || machine_is_ixdp2801()) && 
  180. (((u32)port >= (u32)IXDP2X01_CS8900_VIRT_BASE) &&
  181.  ((u32)port <= (u32)IXDP2X01_CS8900_VIRT_END))) {
  182. *port = value;  
  183. return;
  184. }
  185. __raw_writew((value),alignw(___io(ptr)));
  186. }
  187. #endif /* IXDP2x01 */
  188. #endif