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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ALPHA_LCA__H__
  2. #define __ALPHA_LCA__H__
  3. #include <asm/system.h>
  4. #include <asm/compiler.h>
  5. /*
  6.  * Low Cost Alpha (LCA) definitions (these apply to 21066 and 21068,
  7.  * for example).
  8.  *
  9.  * This file is based on:
  10.  *
  11.  * DECchip 21066 and DECchip 21068 Alpha AXP Microprocessors
  12.  * Hardware Reference Manual; Digital Equipment Corp.; May 1994;
  13.  * Maynard, MA; Order Number: EC-N2681-71.
  14.  */
  15. /*
  16.  * NOTE: The LCA uses a Host Address Extension (HAE) register to access
  17.  *  PCI addresses that are beyond the first 27 bits of address
  18.  *  space.  Updating the HAE requires an external cycle (and
  19.  *  a memory barrier), which tends to be slow.  Instead of updating
  20.  *  it on each sparse memory access, we keep the current HAE value
  21.  *  cached in variable cache_hae.  Only if the cached HAE differs
  22.  *  from the desired HAE value do we actually updated HAE register.
  23.  *  The HAE register is preserved by the interrupt handler entry/exit
  24.  *  code, so this scheme works even in the presence of interrupts.
  25.  *
  26.  * Dense memory space doesn't require the HAE, but is restricted to
  27.  * aligned 32 and 64 bit accesses.  Special Cycle and Interrupt
  28.  * Acknowledge cycles may also require the use of the HAE.  The LCA
  29.  * limits I/O address space to the bottom 24 bits of address space,
  30.  * but this easily covers the 16 bit ISA I/O address space.
  31.  */
  32. /*
  33.  * NOTE 2! The memory operations do not set any memory barriers, as
  34.  * it's not needed for cases like a frame buffer that is essentially
  35.  * memory-like.  You need to do them by hand if the operations depend
  36.  * on ordering.
  37.  *
  38.  * Similarly, the port I/O operations do a "mb" only after a write
  39.  * operation: if an mb is needed before (as in the case of doing
  40.  * memory mapped I/O first, and then a port I/O operation to the same
  41.  * device), it needs to be done by hand.
  42.  *
  43.  * After the above has bitten me 100 times, I'll give up and just do
  44.  * the mb all the time, but right now I'm hoping this will work out.
  45.  * Avoiding mb's may potentially be a noticeable speed improvement,
  46.  * but I can't honestly say I've tested it.
  47.  *
  48.  * Handling interrupts that need to do mb's to synchronize to
  49.  * non-interrupts is another fun race area.  Don't do it (because if
  50.  * you do, I'll have to do *everything* with interrupts disabled,
  51.  * ugh).
  52.  */
  53. /*
  54.  * Memory Controller registers:
  55.  */
  56. #define LCA_MEM_BCR0 (IDENT_ADDR + 0x120000000UL)
  57. #define LCA_MEM_BCR1 (IDENT_ADDR + 0x120000008UL)
  58. #define LCA_MEM_BCR2 (IDENT_ADDR + 0x120000010UL)
  59. #define LCA_MEM_BCR3 (IDENT_ADDR + 0x120000018UL)
  60. #define LCA_MEM_BMR0 (IDENT_ADDR + 0x120000020UL)
  61. #define LCA_MEM_BMR1 (IDENT_ADDR + 0x120000028UL)
  62. #define LCA_MEM_BMR2 (IDENT_ADDR + 0x120000030UL)
  63. #define LCA_MEM_BMR3 (IDENT_ADDR + 0x120000038UL)
  64. #define LCA_MEM_BTR0 (IDENT_ADDR + 0x120000040UL)
  65. #define LCA_MEM_BTR1 (IDENT_ADDR + 0x120000048UL)
  66. #define LCA_MEM_BTR2 (IDENT_ADDR + 0x120000050UL)
  67. #define LCA_MEM_BTR3 (IDENT_ADDR + 0x120000058UL)
  68. #define LCA_MEM_GTR (IDENT_ADDR + 0x120000060UL)
  69. #define LCA_MEM_ESR (IDENT_ADDR + 0x120000068UL)
  70. #define LCA_MEM_EAR (IDENT_ADDR + 0x120000070UL)
  71. #define LCA_MEM_CAR (IDENT_ADDR + 0x120000078UL)
  72. #define LCA_MEM_VGR (IDENT_ADDR + 0x120000080UL)
  73. #define LCA_MEM_PLM (IDENT_ADDR + 0x120000088UL)
  74. #define LCA_MEM_FOR (IDENT_ADDR + 0x120000090UL)
  75. /*
  76.  * I/O Controller registers:
  77.  */
  78. #define LCA_IOC_HAE (IDENT_ADDR + 0x180000000UL)
  79. #define LCA_IOC_CONF (IDENT_ADDR + 0x180000020UL)
  80. #define LCA_IOC_STAT0 (IDENT_ADDR + 0x180000040UL)
  81. #define LCA_IOC_STAT1 (IDENT_ADDR + 0x180000060UL)
  82. #define LCA_IOC_TBIA (IDENT_ADDR + 0x180000080UL)
  83. #define LCA_IOC_TB_ENA (IDENT_ADDR + 0x1800000a0UL)
  84. #define LCA_IOC_SFT_RST (IDENT_ADDR + 0x1800000c0UL)
  85. #define LCA_IOC_PAR_DIS (IDENT_ADDR + 0x1800000e0UL)
  86. #define LCA_IOC_W_BASE0 (IDENT_ADDR + 0x180000100UL)
  87. #define LCA_IOC_W_BASE1 (IDENT_ADDR + 0x180000120UL)
  88. #define LCA_IOC_W_MASK0 (IDENT_ADDR + 0x180000140UL)
  89. #define LCA_IOC_W_MASK1 (IDENT_ADDR + 0x180000160UL)
  90. #define LCA_IOC_T_BASE0 (IDENT_ADDR + 0x180000180UL)
  91. #define LCA_IOC_T_BASE1 (IDENT_ADDR + 0x1800001a0UL)
  92. #define LCA_IOC_TB_TAG0 (IDENT_ADDR + 0x188000000UL)
  93. #define LCA_IOC_TB_TAG1 (IDENT_ADDR + 0x188000020UL)
  94. #define LCA_IOC_TB_TAG2 (IDENT_ADDR + 0x188000040UL)
  95. #define LCA_IOC_TB_TAG3 (IDENT_ADDR + 0x188000060UL)
  96. #define LCA_IOC_TB_TAG4 (IDENT_ADDR + 0x188000070UL)
  97. #define LCA_IOC_TB_TAG5 (IDENT_ADDR + 0x1880000a0UL)
  98. #define LCA_IOC_TB_TAG6 (IDENT_ADDR + 0x1880000c0UL)
  99. #define LCA_IOC_TB_TAG7 (IDENT_ADDR + 0x1880000e0UL)
  100. /*
  101.  * Memory spaces:
  102.  */
  103. #define LCA_IACK_SC (IDENT_ADDR + 0x1a0000000UL)
  104. #define LCA_CONF (IDENT_ADDR + 0x1e0000000UL)
  105. #define LCA_IO (IDENT_ADDR + 0x1c0000000UL)
  106. #define LCA_SPARSE_MEM (IDENT_ADDR + 0x200000000UL)
  107. #define LCA_DENSE_MEM (IDENT_ADDR + 0x300000000UL)
  108. /*
  109.  * Bit definitions for I/O Controller status register 0:
  110.  */
  111. #define LCA_IOC_STAT0_CMD 0xf
  112. #define LCA_IOC_STAT0_ERR (1<<4)
  113. #define LCA_IOC_STAT0_LOST (1<<5)
  114. #define LCA_IOC_STAT0_THIT (1<<6)
  115. #define LCA_IOC_STAT0_TREF (1<<7)
  116. #define LCA_IOC_STAT0_CODE_SHIFT 8
  117. #define LCA_IOC_STAT0_CODE_MASK 0x7
  118. #define LCA_IOC_STAT0_P_NBR_SHIFT 13
  119. #define LCA_IOC_STAT0_P_NBR_MASK 0x7ffff
  120. #define LCA_HAE_ADDRESS LCA_IOC_HAE
  121. /* LCA PMR Power Management register defines */
  122. #define LCA_PMR_ADDR (IDENT_ADDR + 0x120000098UL)
  123. #define LCA_PMR_PDIV    0x7                     /* Primary clock divisor */
  124. #define LCA_PMR_ODIV    0x38                    /* Override clock divisor */
  125. #define LCA_PMR_INTO    0x40                    /* Interrupt override */
  126. #define LCA_PMR_DMAO    0x80                    /* DMA override */
  127. #define LCA_PMR_OCCEB   0xffff0000L             /* Override cycle counter - even bits */
  128. #define LCA_PMR_OCCOB   0xffff000000000000L     /* Override cycle counter - even bits */
  129. #define LCA_PMR_PRIMARY_MASK    0xfffffffffffffff8
  130. /* LCA PMR Macros */
  131. #define LCA_READ_PMR        (*(volatile unsigned long *)LCA_PMR_ADDR)
  132. #define LCA_WRITE_PMR(d)    (*((volatile unsigned long *)LCA_PMR_ADDR) = (d))
  133. #define LCA_GET_PRIMARY(r)  ((r) & LCA_PMR_PDIV)
  134. #define LCA_GET_OVERRIDE(r) (((r) >> 3) & LCA_PMR_PDIV)
  135. #define LCA_SET_PRIMARY_CLOCK(r, c) ((r) = (((r) & LCA_PMR_PRIMARY_MASK)|(c)))
  136. /* LCA PMR Divisor values */
  137. #define LCA_PMR_DIV_1   0x0
  138. #define LCA_PMR_DIV_1_5 0x1
  139. #define LCA_PMR_DIV_2   0x2
  140. #define LCA_PMR_DIV_4   0x3
  141. #define LCA_PMR_DIV_8   0x4
  142. #define LCA_PMR_DIV_16  0x5
  143. #define LCA_PMR_DIV_MIN DIV_1
  144. #define LCA_PMR_DIV_MAX DIV_16
  145. /*
  146.  * Data structure for handling LCA machine checks.  Correctable errors
  147.  * result in a short logout frame, uncorrectable ones in a long one.
  148.  */
  149. struct el_lca_mcheck_short {
  150. struct el_common h; /* common logout header */
  151. unsigned long esr; /* error-status register */
  152. unsigned long ear; /* error-address register */
  153. unsigned long dc_stat; /* dcache status register */
  154. unsigned long ioc_stat0; /* I/O controller status register 0 */
  155. unsigned long ioc_stat1; /* I/O controller status register 1 */
  156. };
  157. struct el_lca_mcheck_long {
  158. struct el_common h; /* common logout header */
  159. unsigned long pt[31]; /* PAL temps */
  160. unsigned long exc_addr; /* exception address */
  161. unsigned long pad1[3];
  162. unsigned long pal_base; /* PALcode base address */
  163. unsigned long hier; /* hw interrupt enable */
  164. unsigned long hirr; /* hw interrupt request */
  165. unsigned long mm_csr; /* MMU control & status */
  166. unsigned long dc_stat; /* data cache status */
  167. unsigned long dc_addr; /* data cache addr register */
  168. unsigned long abox_ctl; /* address box control register */
  169. unsigned long esr; /* error status register */
  170. unsigned long ear; /* error address register */
  171. unsigned long car; /* cache control register */
  172. unsigned long ioc_stat0; /* I/O controller status register 0 */
  173. unsigned long ioc_stat1; /* I/O controller status register 1 */
  174. unsigned long va; /* virtual address register */
  175. };
  176. union el_lca {
  177. struct el_common * c;
  178. struct el_lca_mcheck_long * l;
  179. struct el_lca_mcheck_short * s;
  180. };
  181. #ifdef __KERNEL__
  182. #ifndef __EXTERN_INLINE
  183. #define __EXTERN_INLINE extern inline
  184. #define __IO_EXTERN_INLINE
  185. #endif
  186. /*
  187.  * I/O functions:
  188.  *
  189.  * Unlike Jensen, the Noname machines have no concept of local
  190.  * I/O---everything goes over the PCI bus.
  191.  *
  192.  * There is plenty room for optimization here.  In particular,
  193.  * the Alpha's insb/insw/extb/extw should be useful in moving
  194.  * data to/from the right byte-lanes.
  195.  */
  196. #define vip volatile int *
  197. #define vuip volatile unsigned int *
  198. #define vulp volatile unsigned long *
  199. __EXTERN_INLINE u8 lca_inb(unsigned long addr)
  200. {
  201. long result = *(vip) ((addr << 5) + LCA_IO + 0x00);
  202. return __kernel_extbl(result, addr & 3);
  203. }
  204. __EXTERN_INLINE void lca_outb(u8 b, unsigned long addr)
  205. {
  206. unsigned long w;
  207. w = __kernel_insbl(b, addr & 3);
  208. *(vuip) ((addr << 5) + LCA_IO + 0x00) = w;
  209. mb();
  210. }
  211. __EXTERN_INLINE u16 lca_inw(unsigned long addr)
  212. {
  213. long result = *(vip) ((addr << 5) + LCA_IO + 0x08);
  214. return __kernel_extwl(result, addr & 3);
  215. }
  216. __EXTERN_INLINE void lca_outw(u16 b, unsigned long addr)
  217. {
  218. unsigned long w;
  219. w = __kernel_inswl(b, addr & 3);
  220. *(vuip) ((addr << 5) + LCA_IO + 0x08) = w;
  221. mb();
  222. }
  223. __EXTERN_INLINE u32 lca_inl(unsigned long addr)
  224. {
  225. return *(vuip) ((addr << 5) + LCA_IO + 0x18);
  226. }
  227. __EXTERN_INLINE void lca_outl(u32 b, unsigned long addr)
  228. {
  229. *(vuip) ((addr << 5) + LCA_IO + 0x18) = b;
  230. mb();
  231. }
  232. /*
  233.  * Memory functions.  64-bit and 32-bit accesses are done through
  234.  * dense memory space, everything else through sparse space.
  235.  */
  236. __EXTERN_INLINE u8 lca_readb(unsigned long addr)
  237. {
  238. unsigned long result, msb;
  239. addr -= LCA_DENSE_MEM;
  240. if (addr >= (1UL << 24)) {
  241. msb = addr & 0xf8000000;
  242. addr -= msb;
  243. set_hae(msb);
  244. }
  245. result = *(vip) ((addr << 5) + LCA_SPARSE_MEM + 0x00);
  246. return __kernel_extbl(result, addr & 3);
  247. }
  248. __EXTERN_INLINE u16 lca_readw(unsigned long addr)
  249. {
  250. unsigned long result, msb;
  251. addr -= LCA_DENSE_MEM;
  252. if (addr >= (1UL << 24)) {
  253. msb = addr & 0xf8000000;
  254. addr -= msb;
  255. set_hae(msb);
  256. }
  257. result = *(vip) ((addr << 5) + LCA_SPARSE_MEM + 0x08);
  258. return __kernel_extwl(result, addr & 3);
  259. }
  260. __EXTERN_INLINE u32 lca_readl(unsigned long addr)
  261. {
  262. return (*(vuip)addr) & 0xffffffff;
  263. }
  264. __EXTERN_INLINE u64 lca_readq(unsigned long addr)
  265. {
  266. return *(vulp)addr;
  267. }
  268. __EXTERN_INLINE void lca_writeb(u8 b, unsigned long addr)
  269. {
  270. unsigned long msb;
  271. unsigned long w;
  272. addr -= LCA_DENSE_MEM;
  273. if (addr >= (1UL << 24)) {
  274. msb = addr & 0xf8000000;
  275. addr -= msb;
  276. set_hae(msb);
  277. }
  278. w = __kernel_insbl(b, addr & 3);
  279. *(vuip) ((addr << 5) + LCA_SPARSE_MEM + 0x00) = w;
  280. }
  281. __EXTERN_INLINE void lca_writew(u16 b, unsigned long addr)
  282. {
  283. unsigned long msb;
  284. unsigned long w;
  285. addr -= LCA_DENSE_MEM;
  286. if (addr >= (1UL << 24)) {
  287. msb = addr & 0xf8000000;
  288. addr -= msb;
  289. set_hae(msb);
  290. }
  291. w = __kernel_inswl(b, addr & 3);
  292. *(vuip) ((addr << 5) + LCA_SPARSE_MEM + 0x08) = w;
  293. }
  294. __EXTERN_INLINE void lca_writel(u32 b, unsigned long addr)
  295. {
  296. *(vuip)addr = b;
  297. }
  298. __EXTERN_INLINE void lca_writeq(u64 b, unsigned long addr)
  299. {
  300. *(vulp)addr = b;
  301. }
  302. __EXTERN_INLINE unsigned long lca_ioremap(unsigned long addr,
  303.   unsigned long size
  304.   __attribute__((unused)))
  305. {
  306. return addr + LCA_DENSE_MEM;
  307. }
  308. __EXTERN_INLINE void lca_iounmap(unsigned long addr)
  309. {
  310. return;
  311. }
  312. __EXTERN_INLINE int lca_is_ioaddr(unsigned long addr)
  313. {
  314. return addr >= IDENT_ADDR + 0x120000000UL;
  315. }
  316. #undef vip
  317. #undef vuip
  318. #undef vulp
  319. #ifdef __WANT_IO_DEF
  320. #define __inb(p) lca_inb((unsigned long)(p))
  321. #define __inw(p) lca_inw((unsigned long)(p))
  322. #define __inl(p) lca_inl((unsigned long)(p))
  323. #define __outb(x,p) lca_outb((x),(unsigned long)(p))
  324. #define __outw(x,p) lca_outw((x),(unsigned long)(p))
  325. #define __outl(x,p) lca_outl((x),(unsigned long)(p))
  326. #define __readb(a) lca_readb((unsigned long)(a))
  327. #define __readw(a) lca_readw((unsigned long)(a))
  328. #define __readl(a) lca_readl((unsigned long)(a))
  329. #define __readq(a) lca_readq((unsigned long)(a))
  330. #define __writeb(x,a) lca_writeb((x),(unsigned long)(a))
  331. #define __writew(x,a) lca_writew((x),(unsigned long)(a))
  332. #define __writel(x,a) lca_writel((x),(unsigned long)(a))
  333. #define __writeq(x,a) lca_writeq((x),(unsigned long)(a))
  334. #define __ioremap(a,s) lca_ioremap((unsigned long)(a),(s))
  335. #define __iounmap(a) lca_iounmap((unsigned long)(a))
  336. #define __is_ioaddr(a) lca_is_ioaddr((unsigned long)(a))
  337. #define __raw_readl(a) __readl(a)
  338. #define __raw_readq(a) __readq(a)
  339. #define __raw_writel(v,a) __writel((v),(a))
  340. #define __raw_writeq(v,a) __writeq((v),(a))
  341. #endif /* __WANT_IO_DEF */
  342. #ifdef __IO_EXTERN_INLINE
  343. #undef __EXTERN_INLINE
  344. #undef __IO_EXTERN_INLINE
  345. #endif
  346. #endif /* __KERNEL__ */
  347. #endif /* __ALPHA_LCA__H__ */