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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_CRIS_IO_H
  2. #define _ASM_CRIS_IO_H
  3. #include <asm/page.h>   /* for __va, __pa */
  4. #include <asm/svinto.h>
  5. #include <linux/config.h>
  6. /* Console I/O for simulated etrax100.  Use #ifdef so erroneous
  7.    use will be evident. */
  8. #ifdef CONFIG_SVINTO_SIM
  9.   /* Let's use the ucsim interface since it lets us do write(2, ...) */
  10. #define SIMCOUT(s,len)
  11.   asm ("moveq 4,$r9 nt"
  12.        "moveq 2,$r10 nt"
  13.        "move.d %0,$r11 nt"
  14.        "move.d %1,$r12 nt"
  15.        "push $irp nt"
  16.        "move 0f,$irp nt"
  17.        "jump -6809 n"
  18.        "0: nt"
  19.        "pop $irp"
  20.        : : "rm" (s), "rm" (len) : "r9","r10","r11","r12","memory")
  21. #define TRACE_ON() __extension__ 
  22.  ({ int _Foofoo; __asm__ volatile ("bmod [%0],%0" : "=r" (_Foofoo) : "0" 
  23.        (255)); _Foofoo; })
  24. #define TRACE_OFF() do { __asm__ volatile ("bmod [%0],%0" :: "r" (254)); } while (0)
  25. #define SIM_END() do { __asm__ volatile ("bmod [%0],%0" :: "r" (28)); } while (0)
  26. #define CRIS_CYCLES() __extension__ 
  27.  ({ unsigned long c; asm ("bmod [%1],%0" : "=r" (c) : "r" (27)); c;})
  28. #else  /* ! defined CONFIG_SVINTO_SIM */
  29. /* FIXME: Is there a reliable cycle counter available in some chip?  Use
  30.    that then. */
  31. #define CRIS_CYCLES() 0
  32. #endif /* ! defined CONFIG_SVINTO_SIM */
  33. /* Etrax shadow registers - which live in arch/cris/kernel/shadows.c */
  34. extern unsigned long port_g_data_shadow;
  35. extern unsigned char port_pa_dir_shadow;
  36. extern unsigned char port_pa_data_shadow;
  37. extern unsigned char port_pb_i2c_shadow;
  38. extern unsigned char port_pb_config_shadow;
  39. extern unsigned char port_pb_dir_shadow;
  40. extern unsigned char port_pb_data_shadow;
  41. extern unsigned long r_timer_ctrl_shadow;
  42. extern unsigned long port_cse1_shadow;
  43. extern unsigned long port_csp0_shadow;
  44. extern unsigned long port_csp4_shadow;
  45. extern volatile unsigned long *port_cse1_addr;
  46. extern volatile unsigned long *port_csp0_addr;
  47. extern volatile unsigned long *port_csp4_addr;
  48. /* macro for setting regs through a shadow - 
  49.  * r = register name (like R_PORT_PA_DATA)
  50.  * s = shadow name (like port_pa_data_shadow)
  51.  * b = bit number
  52.  * v = value (0 or 1)
  53.  */
  54. #define REG_SHADOW_SET(r,s,b,v) *r = s = (s & ~(1 << (b))) | ((v) << (b))
  55. /* The LED's on various Etrax-based products are set differently. */
  56. #if defined(CONFIG_ETRAX_NO_LEDS) || defined(CONFIG_SVINTO_SIM)
  57. #undef CONFIG_ETRAX_PA_LEDS
  58. #undef CONFIG_ETRAX_PB_LEDS
  59. #undef CONFIG_ETRAX_CSP0_LEDS
  60. #define LED_NETWORK_SET_G(x)
  61. #define LED_NETWORK_SET_R(x)
  62. #define LED_ACTIVE_SET_G(x)
  63. #define LED_ACTIVE_SET_R(x)
  64. #define LED_DISK_WRITE(x)
  65. #define LED_DISK_READ(x)
  66. #endif
  67. #if !defined(CONFIG_ETRAX_CSP0_LEDS)
  68. #define LED_BIT_SET(x)
  69. #define LED_BIT_CLR(x)
  70. #endif
  71. #define LED_OFF    0x00
  72. #define LED_GREEN  0x01
  73. #define LED_RED    0x02
  74. #define LED_ORANGE (LED_GREEN | LED_RED)
  75. #if CONFIG_ETRAX_LED1G == CONFIG_ETRAX_LED1R 
  76. #define LED_NETWORK_SET(x)                          
  77. do {                                        
  78. LED_NETWORK_SET_G((x) & LED_GREEN); 
  79. } while (0)
  80. #else
  81. #define LED_NETWORK_SET(x)                          
  82. do {                                        
  83. LED_NETWORK_SET_G((x) & LED_GREEN); 
  84. LED_NETWORK_SET_R((x) & LED_RED);   
  85. } while (0)
  86. #endif
  87. #if CONFIG_ETRAX_LED2G == CONFIG_ETRAX_LED2R 
  88. #define LED_ACTIVE_SET(x)                           
  89. do {                                        
  90. LED_ACTIVE_SET_G((x) & LED_GREEN);  
  91. } while (0)
  92. #else
  93. #define LED_ACTIVE_SET(x)                           
  94. do {                                        
  95. LED_ACTIVE_SET_G((x) & LED_GREEN);  
  96. LED_ACTIVE_SET_R((x) & LED_RED);    
  97. } while (0)
  98. #endif
  99. #ifdef CONFIG_ETRAX_PA_LEDS
  100. #define LED_NETWORK_SET_G(x) 
  101.          REG_SHADOW_SET(R_PORT_PA_DATA, port_pa_data_shadow, CONFIG_ETRAX_LED1G, !(x))
  102. #define LED_NETWORK_SET_R(x) 
  103.          REG_SHADOW_SET(R_PORT_PA_DATA, port_pa_data_shadow, CONFIG_ETRAX_LED1R, !(x))
  104. #define LED_ACTIVE_SET_G(x) 
  105.          REG_SHADOW_SET(R_PORT_PA_DATA, port_pa_data_shadow, CONFIG_ETRAX_LED2G, !(x))
  106. #define LED_ACTIVE_SET_R(x) 
  107.          REG_SHADOW_SET(R_PORT_PA_DATA, port_pa_data_shadow, CONFIG_ETRAX_LED2R, !(x))
  108. #define LED_DISK_WRITE(x) 
  109.          do{
  110.                 REG_SHADOW_SET(R_PORT_PA_DATA, port_pa_data_shadow, CONFIG_ETRAX_LED3G, !(x));
  111.                 REG_SHADOW_SET(R_PORT_PA_DATA, port_pa_data_shadow, CONFIG_ETRAX_LED3R, !(x));
  112.         }while(0)
  113. #define LED_DISK_READ(x) 
  114.          REG_SHADOW_SET(R_PORT_PA_DATA, port_pa_data_shadow, CONFIG_ETRAX_LED3G, !(x)) 
  115. #endif
  116. #ifdef CONFIG_ETRAX_PB_LEDS
  117. #define LED_NETWORK_SET_G(x) 
  118.          REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_LED1G, !(x))
  119. #define LED_NETWORK_SET_R(x) 
  120.          REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_LED1R, !(x))
  121. #define LED_ACTIVE_SET_G(x) 
  122.          REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_LED2G, !(x))
  123. #define LED_ACTIVE_SET_R(x) 
  124.          REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_LED2R, !(x))
  125. #define LED_DISK_WRITE(x) 
  126.         do{
  127.                 REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_LED3G, !(x));
  128.                 REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_LED3R, !(x));
  129.         }while(0)
  130. #define LED_DISK_READ(x) 
  131.          REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_LED3G, !(x))     
  132. #endif
  133. #ifdef CONFIG_ETRAX_CSP0_LEDS
  134. #define CONFIGURABLE_LEDS
  135.         ((1 << CONFIG_ETRAX_LED1G ) | (1 << CONFIG_ETRAX_LED1R ) |
  136.          (1 << CONFIG_ETRAX_LED2G ) | (1 << CONFIG_ETRAX_LED2R ) |
  137.          (1 << CONFIG_ETRAX_LED3G ) | (1 << CONFIG_ETRAX_LED3R ) |
  138.          (1 << CONFIG_ETRAX_LED4G ) | (1 << CONFIG_ETRAX_LED4R ) |
  139.          (1 << CONFIG_ETRAX_LED5G ) | (1 << CONFIG_ETRAX_LED5R ) |
  140.          (1 << CONFIG_ETRAX_LED6G ) | (1 << CONFIG_ETRAX_LED6R ) |
  141.          (1 << CONFIG_ETRAX_LED7G ) | (1 << CONFIG_ETRAX_LED7R ) |
  142.          (1 << CONFIG_ETRAX_LED8Y ) | (1 << CONFIG_ETRAX_LED9Y ) |
  143.          (1 << CONFIG_ETRAX_LED10Y ) |(1 << CONFIG_ETRAX_LED11Y )|
  144.          (1 << CONFIG_ETRAX_LED12R ))
  145. #define LED_NETWORK_SET_G(x) 
  146.          REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_LED1G, !(x))
  147. #define LED_NETWORK_SET_R(x) 
  148.          REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_LED1R, !(x))
  149. #define LED_ACTIVE_SET_G(x) 
  150.          REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_LED2G, !(x))
  151. #define LED_ACTIVE_SET_R(x) 
  152.          REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_LED2R, !(x))
  153. #define LED_DISK_WRITE(x) 
  154.         do{
  155.                 REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_LED3G, !(x));
  156.                 REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_LED3R, !(x));
  157.         }while(0)
  158. #define LED_DISK_READ(x) 
  159.          REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_LED3G, !(x))
  160. #define LED_BIT_SET(x)
  161.         do{
  162.                 if((( 1 << x) & CONFIGURABLE_LEDS)  != 0)
  163.                        REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, x, 1);
  164.         }while(0)
  165. #define LED_BIT_CLR(x)
  166.         do{
  167.                 if((( 1 << x) & CONFIGURABLE_LEDS)  != 0)
  168.                        REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, x, 0);
  169.         }while(0)
  170. #endif
  171. #
  172. #ifdef CONFIG_ETRAX_SOFT_SHUTDOWN
  173. #define SOFT_SHUTDOWN() 
  174.           REG_SHADOW_SET(port_csp0_addr, port_csp0_shadow, CONFIG_ETRAX_SHUTDOWN_BIT, 1)
  175. #else
  176. #define SOFT_SHUTDOWN()
  177. #endif
  178. /*
  179.  * Change virtual addresses to physical addresses and vv.
  180.  */
  181. static inline unsigned long virt_to_phys(volatile void * address)
  182. {
  183. return __pa(address);
  184. }
  185. static inline void * phys_to_virt(unsigned long address)
  186. {
  187. return __va(address);
  188. }
  189. extern void * __ioremap(unsigned long offset, unsigned long size, unsigned long flags);
  190. extern inline void * ioremap (unsigned long offset, unsigned long size)
  191. {
  192. return __ioremap(offset, size, 0);
  193. }
  194. /*
  195.  * IO bus memory addresses are also 1:1 with the physical address
  196.  */
  197. #define virt_to_bus virt_to_phys
  198. #define bus_to_virt phys_to_virt
  199. /*
  200.  * readX/writeX() are used to access memory mapped devices. On some
  201.  * architectures the memory mapped IO stuff needs to be accessed
  202.  * differently. On the CRIS architecture, we just read/write the
  203.  * memory location directly.
  204.  */
  205. #define readb(addr) (*(volatile unsigned char *) (addr))
  206. #define readw(addr) (*(volatile unsigned short *) (addr))
  207. #define readl(addr) (*(volatile unsigned int *) (addr))
  208. #define writeb(b,addr) ((*(volatile unsigned char *) (addr)) = (b))
  209. #define writew(b,addr) ((*(volatile unsigned short *) (addr)) = (b))
  210. #define writel(b,addr) ((*(volatile unsigned int *) (addr)) = (b))
  211. #define memset_io(a,b,c) memset((void *)(a),(b),(c))
  212. #define memcpy_fromio(a,b,c) memcpy((a),(void *)(b),(c))
  213. #define memcpy_toio(a,b,c) memcpy((void *)(a),(b),(c))
  214. /*
  215.  * Again, CRIS does not require mem IO specific function.
  216.  */
  217. #define eth_io_copy_and_sum(a,b,c,d) eth_copy_and_sum((a),(void *)(b),(c),(d))
  218. /* The following is junk needed for the arch-independant code but which
  219.  * we never use in the CRIS port
  220.  */
  221. #define IO_SPACE_LIMIT 0xffff
  222. #define inb(x) (0)
  223. #define outb(x,y)
  224. #define outw(x,y)
  225. #define outl(x,y)
  226. #define insb(x,y,z)
  227. #define insw(x,y,z)
  228. #define insl(x,y,z)
  229. #define outsb(x,y,z)
  230. #define outsw(x,y,z)
  231. #define outsl(x,y,z)
  232. #endif