jensen.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ALPHA_JENSEN_H
  2. #define __ALPHA_JENSEN_H
  3. #include <asm/compiler.h>
  4. /*
  5.  * Defines for the AlphaPC EISA IO and memory address space.
  6.  */
  7. /* The Jensen is strange */
  8. #define AUX_IRQ (9)
  9. /*
  10.  * NOTE! The memory operations do not set any memory barriers, as it's
  11.  * not needed for cases like a frame buffer that is essentially memory-like.
  12.  * You need to do them by hand if the operations depend on ordering.
  13.  *
  14.  * Similarly, the port IO operations do a "mb" only after a write operation:
  15.  * if an mb is needed before (as in the case of doing memory mapped IO
  16.  * first, and then a port IO operation to the same device), it needs to be
  17.  * done by hand.
  18.  *
  19.  * After the above has bitten me 100 times, I'll give up and just do the
  20.  * mb all the time, but right now I'm hoping this will work out.  Avoiding
  21.  * mb's may potentially be a noticeable speed improvement, but I can't
  22.  * honestly say I've tested it.
  23.  *
  24.  * Handling interrupts that need to do mb's to synchronize to non-interrupts
  25.  * is another fun race area.  Don't do it (because if you do, I'll have to
  26.  * do *everything* with interrupts disabled, ugh).
  27.  */
  28. /*
  29.  * EISA Interrupt Acknowledge address
  30.  */
  31. #define EISA_INTA (IDENT_ADDR + 0x100000000UL)
  32. /*
  33.  * FEPROM addresses
  34.  */
  35. #define EISA_FEPROM0 (IDENT_ADDR + 0x180000000UL)
  36. #define EISA_FEPROM1 (IDENT_ADDR + 0x1A0000000UL)
  37. /*
  38.  * VL82C106 base address
  39.  */
  40. #define EISA_VL82C106 (IDENT_ADDR + 0x1C0000000UL)
  41. /*
  42.  * EISA "Host Address Extension" address (bits 25-31 of the EISA address)
  43.  */
  44. #define EISA_HAE (IDENT_ADDR + 0x1D0000000UL)
  45. /*
  46.  * "SYSCTL" register address
  47.  */
  48. #define EISA_SYSCTL (IDENT_ADDR + 0x1E0000000UL)
  49. /*
  50.  * "spare" register address
  51.  */
  52. #define EISA_SPARE (IDENT_ADDR + 0x1F0000000UL)
  53. /*
  54.  * EISA memory address offset
  55.  */
  56. #define EISA_MEM (IDENT_ADDR + 0x200000000UL)
  57. /*
  58.  * EISA IO address offset
  59.  */
  60. #define EISA_IO (IDENT_ADDR + 0x300000000UL)
  61. #ifdef __KERNEL__
  62. #ifndef __EXTERN_INLINE
  63. #define __EXTERN_INLINE extern inline
  64. #define __IO_EXTERN_INLINE
  65. #endif
  66. /*
  67.  * Handle the "host address register". This needs to be set
  68.  * to the high 7 bits of the EISA address.  This is also needed
  69.  * for EISA IO addresses, which are only 16 bits wide (the
  70.  * hae needs to be set to 0).
  71.  *
  72.  * HAE isn't needed for the local IO operations, though.
  73.  */
  74. #define JENSEN_HAE_ADDRESS EISA_HAE
  75. #define JENSEN_HAE_MASK 0x1ffffff
  76. __EXTERN_INLINE void jensen_set_hae(unsigned long addr)
  77. {
  78. /* hae on the Jensen is bits 31:25 shifted right */
  79. addr >>= 25;
  80. if (addr != alpha_mv.hae_cache)
  81. set_hae(addr);
  82. }
  83. #define vuip volatile unsigned int *
  84. /*
  85.  * IO functions
  86.  *
  87.  * The "local" functions are those that don't go out to the EISA bus,
  88.  * but instead act on the VL82C106 chip directly.. This is mainly the
  89.  * keyboard, RTC,  printer and first two serial lines..
  90.  *
  91.  * The local stuff makes for some complications, but it seems to be
  92.  * gone in the PCI version. I hope I can get DEC suckered^H^H^H^H^H^H^H^H
  93.  * convinced that I need one of the newer machines.
  94.  */
  95. static inline unsigned int jensen_local_inb(unsigned long addr)
  96. {
  97. return 0xff & *(vuip)((addr << 9) + EISA_VL82C106);
  98. }
  99. static inline void jensen_local_outb(u8 b, unsigned long addr)
  100. {
  101. *(vuip)((addr << 9) + EISA_VL82C106) = b;
  102. mb();
  103. }
  104. static inline unsigned int jensen_bus_inb(unsigned long addr)
  105. {
  106. long result;
  107. jensen_set_hae(0);
  108. result = *(volatile int *)((addr << 7) + EISA_IO + 0x00);
  109. return __kernel_extbl(result, addr & 3);
  110. }
  111. static inline void jensen_bus_outb(u8 b, unsigned long addr)
  112. {
  113. jensen_set_hae(0);
  114. *(vuip)((addr << 7) + EISA_IO + 0x00) = b * 0x01010101;
  115. mb();
  116. }
  117. /*
  118.  * It seems gcc is not very good at optimizing away logical
  119.  * operations that result in operations across inline functions.
  120.  * Which is why this is a macro.
  121.  */
  122. #define jensen_is_local(addr) ( 
  123. /* keyboard */ (addr == 0x60 || addr == 0x64) || 
  124. /* RTC */ (addr == 0x170 || addr == 0x171) || 
  125. /* mb COM2 */ (addr >= 0x2f8 && addr <= 0x2ff) || 
  126. /* mb LPT1 */ (addr >= 0x3bc && addr <= 0x3be) || 
  127. /* mb COM2 */ (addr >= 0x3f8 && addr <= 0x3ff))
  128. __EXTERN_INLINE u8 jensen_inb(unsigned long addr)
  129. {
  130. if (jensen_is_local(addr))
  131. return jensen_local_inb(addr);
  132. else
  133. return jensen_bus_inb(addr);
  134. }
  135. __EXTERN_INLINE void jensen_outb(u8 b, unsigned long addr)
  136. {
  137. if (jensen_is_local(addr))
  138. jensen_local_outb(b, addr);
  139. else
  140. jensen_bus_outb(b, addr);
  141. }
  142. __EXTERN_INLINE u16 jensen_inw(unsigned long addr)
  143. {
  144. long result;
  145. jensen_set_hae(0);
  146. result = *(volatile int *) ((addr << 7) + EISA_IO + 0x20);
  147. result >>= (addr & 3) * 8;
  148. return 0xffffUL & result;
  149. }
  150. __EXTERN_INLINE u32 jensen_inl(unsigned long addr)
  151. {
  152. jensen_set_hae(0);
  153. return *(vuip) ((addr << 7) + EISA_IO + 0x60);
  154. }
  155. __EXTERN_INLINE void jensen_outw(u16 b, unsigned long addr)
  156. {
  157. jensen_set_hae(0);
  158. *(vuip) ((addr << 7) + EISA_IO + 0x20) = b * 0x00010001;
  159. mb();
  160. }
  161. __EXTERN_INLINE void jensen_outl(u32 b, unsigned long addr)
  162. {
  163. jensen_set_hae(0);
  164. *(vuip) ((addr << 7) + EISA_IO + 0x60) = b;
  165. mb();
  166. }
  167. /*
  168.  * Memory functions.
  169.  */
  170. __EXTERN_INLINE u8 jensen_readb(unsigned long addr)
  171. {
  172. long result;
  173. jensen_set_hae(addr);
  174. addr &= JENSEN_HAE_MASK;
  175. result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x00);
  176. result >>= (addr & 3) * 8;
  177. return 0xffUL & result;
  178. }
  179. __EXTERN_INLINE u16 jensen_readw(unsigned long addr)
  180. {
  181. long result;
  182. jensen_set_hae(addr);
  183. addr &= JENSEN_HAE_MASK;
  184. result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x20);
  185. result >>= (addr & 3) * 8;
  186. return 0xffffUL & result;
  187. }
  188. __EXTERN_INLINE u32 jensen_readl(unsigned long addr)
  189. {
  190. jensen_set_hae(addr);
  191. addr &= JENSEN_HAE_MASK;
  192. return *(vuip) ((addr << 7) + EISA_MEM + 0x60);
  193. }
  194. __EXTERN_INLINE u64 jensen_readq(unsigned long addr)
  195. {
  196. unsigned long r0, r1;
  197. jensen_set_hae(addr);
  198. addr &= JENSEN_HAE_MASK;
  199. addr = (addr << 7) + EISA_MEM + 0x60;
  200. r0 = *(vuip) (addr);
  201. r1 = *(vuip) (addr + (4 << 7));
  202. return r1 << 32 | r0;
  203. }
  204. __EXTERN_INLINE void jensen_writeb(u8 b, unsigned long addr)
  205. {
  206. jensen_set_hae(addr);
  207. addr &= JENSEN_HAE_MASK;
  208. *(vuip) ((addr << 7) + EISA_MEM + 0x00) = b * 0x01010101;
  209. }
  210. __EXTERN_INLINE void jensen_writew(u16 b, unsigned long addr)
  211. {
  212. jensen_set_hae(addr);
  213. addr &= JENSEN_HAE_MASK;
  214. *(vuip) ((addr << 7) + EISA_MEM + 0x20) = b * 0x00010001;
  215. }
  216. __EXTERN_INLINE void jensen_writel(u32 b, unsigned long addr)
  217. {
  218. jensen_set_hae(addr);
  219. addr &= JENSEN_HAE_MASK;
  220. *(vuip) ((addr << 7) + EISA_MEM + 0x60) = b;
  221. }
  222. __EXTERN_INLINE void jensen_writeq(u64 b, unsigned long addr)
  223. {
  224. jensen_set_hae(addr);
  225. addr &= JENSEN_HAE_MASK;
  226. addr = (addr << 7) + EISA_MEM + 0x60;
  227. *(vuip) (addr) = b;
  228. *(vuip) (addr + (4 << 7)) = b >> 32;
  229. }
  230. __EXTERN_INLINE unsigned long jensen_ioremap(unsigned long addr, 
  231.      unsigned long size)
  232. {
  233. return addr;
  234. }
  235. __EXTERN_INLINE void jensen_iounmap(unsigned long addr)
  236. {
  237. return;
  238. }
  239. __EXTERN_INLINE int jensen_is_ioaddr(unsigned long addr)
  240. {
  241. return (long)addr >= 0;
  242. }
  243. #undef vuip
  244. #ifdef __WANT_IO_DEF
  245. #define __inb jensen_inb
  246. #define __inw jensen_inw
  247. #define __inl jensen_inl
  248. #define __outb jensen_outb
  249. #define __outw jensen_outw
  250. #define __outl jensen_outl
  251. #define __readb jensen_readb
  252. #define __readw jensen_readw
  253. #define __writeb jensen_writeb
  254. #define __writew jensen_writew
  255. #define __readl jensen_readl
  256. #define __readq jensen_readq
  257. #define __writel jensen_writel
  258. #define __writeq jensen_writeq
  259. #define __ioremap jensen_ioremap
  260. #define __iounmap(a) jensen_iounmap((unsigned long)a)
  261. #define __is_ioaddr jensen_is_ioaddr
  262. /*
  263.  * The above have so much overhead that it probably doesn't make
  264.  * sense to have them inlined (better icache behaviour).
  265.  */
  266. #define inb(port) 
  267. (__builtin_constant_p((port))?__inb(port):_inb(port))
  268. #define outb(x, port) 
  269. (__builtin_constant_p((port))?__outb((x),(port)):_outb((x),(port)))
  270. #endif /* __WANT_IO_DEF */
  271. #ifdef __IO_EXTERN_INLINE
  272. #undef __EXTERN_INLINE
  273. #undef __IO_EXTERN_INLINE
  274. #endif
  275. #endif /* __KERNEL__ */
  276. #endif /* __ALPHA_JENSEN_H */