core_cia.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. #ifndef __ALPHA_CIA__H__
  2. #define __ALPHA_CIA__H__
  3. /* Define to experiment with fitting everything into one 512MB HAE window. */
  4. #define CIA_ONE_HAE_WINDOW 1
  5. #include <linux/types.h>
  6. #include <asm/compiler.h>
  7. /*
  8. * CIA is the internal name for the 21171 chipset which provides
  9. * memory controller and PCI access for the 21164 chip based systems.
  10. * Also supported here is the 21172 (CIA-2) and 21174 (PYXIS).
  11. *
  12. * The lineage is a bit confused, since the 21174 was reportedly started
  13. * from the 21171 Pass 1 mask, and so is missing bug fixes that appear
  14. * in 21171 Pass 2 and 21172, but it also contains additional features.
  15. *
  16. * This file is based on:
  17. *
  18. * DECchip 21171 Core Logic Chipset
  19. * Technical Reference Manual
  20. *
  21. * EC-QE18B-TE
  22. *
  23. * david.rusling@reo.mts.dec.com Initial Version.
  24. *
  25. */
  26. /*
  27. * CIA ADDRESS BIT DEFINITIONS
  28. *
  29. * 3333 3333 3322 2222 2222 1111 1111 11
  30. * 9876 5432 1098 7654 3210 9876 5432 1098 7654 3210
  31. * ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
  32. * 1 000
  33. * ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
  34. * | |\|
  35. * | Byte Enable --+ |
  36. * | Transfer Length --+
  37. * +-- IO space, not cached
  38. *
  39. * Byte Transfer
  40. * Enable Length Transfer Byte Address
  41. * adr<6:5> adr<4:3> Length Enable Adder
  42. * ---------------------------------------------
  43. * 00 00 Byte 1110 0x000
  44. * 01 00 Byte 1101 0x020
  45. * 10 00 Byte 1011 0x040
  46. * 11 00 Byte 0111 0x060
  47. *
  48. * 00 01 Word 1100 0x008
  49. * 01 01 Word 1001 0x028 <= Not supported in this code.
  50. * 10 01 Word 0011 0x048
  51. *
  52. * 00 10 Tribyte 1000 0x010
  53. * 01 10 Tribyte 0001 0x030
  54. *
  55. * 10 11 Longword 0000 0x058
  56. *
  57. * Note that byte enables are asserted low.
  58. *
  59. */
  60. #define CIA_MEM_R1_MASK 0x1fffffff /* SPARSE Mem region 1 mask is 29 bits */
  61. #define CIA_MEM_R2_MASK 0x07ffffff /* SPARSE Mem region 2 mask is 27 bits */
  62. #define CIA_MEM_R3_MASK 0x03ffffff /* SPARSE Mem region 3 mask is 26 bits */
  63. /*
  64. * 21171-CA Control and Status Registers
  65. */
  66. #define CIA_IOC_CIA_REV (IDENT_ADDR + 0x8740000080UL)
  67. # define CIA_REV_MASK 0xff
  68. #define CIA_IOC_PCI_LAT (IDENT_ADDR + 0x87400000C0UL)
  69. #define CIA_IOC_CIA_CTRL (IDENT_ADDR + 0x8740000100UL)
  70. # define CIA_CTRL_PCI_EN (1 << 0)
  71. # define CIA_CTRL_PCI_LOCK_EN (1 << 1)
  72. # define CIA_CTRL_PCI_LOOP_EN (1 << 2)
  73. # define CIA_CTRL_FST_BB_EN (1 << 3)
  74. # define CIA_CTRL_PCI_MST_EN (1 << 4)
  75. # define CIA_CTRL_PCI_MEM_EN (1 << 5)
  76. # define CIA_CTRL_PCI_REQ64_EN (1 << 6)
  77. # define CIA_CTRL_PCI_ACK64_EN (1 << 7)
  78. # define CIA_CTRL_ADDR_PE_EN (1 << 8)
  79. # define CIA_CTRL_PERR_EN (1 << 9)
  80. # define CIA_CTRL_FILL_ERR_EN (1 << 10)
  81. # define CIA_CTRL_MCHK_ERR_EN (1 << 11)
  82. # define CIA_CTRL_ECC_CHK_EN (1 << 12)
  83. # define CIA_CTRL_ASSERT_IDLE_BC (1 << 13)
  84. # define CIA_CTRL_COM_IDLE_BC (1 << 14)
  85. # define CIA_CTRL_CSR_IOA_BYPASS (1 << 15)
  86. # define CIA_CTRL_IO_FLUSHREQ_EN (1 << 16)
  87. # define CIA_CTRL_CPU_FLUSHREQ_EN (1 << 17)
  88. # define CIA_CTRL_ARB_CPU_EN (1 << 18)
  89. # define CIA_CTRL_EN_ARB_LINK (1 << 19)
  90. # define CIA_CTRL_RD_TYPE_SHIFT 20
  91. # define CIA_CTRL_RL_TYPE_SHIFT 24
  92. # define CIA_CTRL_RM_TYPE_SHIFT 28
  93. # define CIA_CTRL_EN_DMA_RD_PERF (1 << 31)
  94. #define CIA_IOC_CIA_CNFG (IDENT_ADDR + 0x8740000140UL)
  95. # define CIA_CNFG_IOA_BWEN (1 << 0)
  96. # define CIA_CNFG_PCI_MWEN (1 << 4)
  97. # define CIA_CNFG_PCI_DWEN (1 << 5)
  98. # define CIA_CNFG_PCI_WLEN (1 << 8)
  99. #define CIA_IOC_FLASH_CTRL (IDENT_ADDR + 0x8740000200UL)
  100. #define CIA_IOC_HAE_MEM (IDENT_ADDR + 0x8740000400UL)
  101. #define CIA_IOC_HAE_IO (IDENT_ADDR + 0x8740000440UL)
  102. #define CIA_IOC_CFG (IDENT_ADDR + 0x8740000480UL)
  103. #define CIA_IOC_CACK_EN (IDENT_ADDR + 0x8740000600UL)
  104. # define CIA_CACK_EN_LOCK_EN (1 << 0)
  105. # define CIA_CACK_EN_MB_EN (1 << 1)
  106. # define CIA_CACK_EN_SET_DIRTY_EN (1 << 2)
  107. # define CIA_CACK_EN_BC_VICTIM_EN (1 << 3)
  108. /*
  109. * 21171-CA Diagnostic Registers
  110. */
  111. #define CIA_IOC_CIA_DIAG (IDENT_ADDR + 0x8740002000UL)
  112. #define CIA_IOC_DIAG_CHECK (IDENT_ADDR + 0x8740003000UL)
  113. /*
  114. * 21171-CA Performance Monitor registers
  115. */
  116. #define CIA_IOC_PERF_MONITOR (IDENT_ADDR + 0x8740004000UL)
  117. #define CIA_IOC_PERF_CONTROL (IDENT_ADDR + 0x8740004040UL)
  118. /*
  119. * 21171-CA Error registers
  120. */
  121. #define CIA_IOC_CPU_ERR0 (IDENT_ADDR + 0x8740008000UL)
  122. #define CIA_IOC_CPU_ERR1 (IDENT_ADDR + 0x8740008040UL)
  123. #define CIA_IOC_CIA_ERR (IDENT_ADDR + 0x8740008200UL)
  124. # define CIA_ERR_COR_ERR (1 << 0)
  125. # define CIA_ERR_UN_COR_ERR (1 << 1)
  126. # define CIA_ERR_CPU_PE (1 << 2)
  127. # define CIA_ERR_MEM_NEM (1 << 3)
  128. # define CIA_ERR_PCI_SERR (1 << 4)
  129. # define CIA_ERR_PERR (1 << 5)
  130. # define CIA_ERR_PCI_ADDR_PE (1 << 6)
  131. # define CIA_ERR_RCVD_MAS_ABT (1 << 7)
  132. # define CIA_ERR_RCVD_TAR_ABT (1 << 8)
  133. # define CIA_ERR_PA_PTE_INV (1 << 9)
  134. # define CIA_ERR_FROM_WRT_ERR (1 << 10)
  135. # define CIA_ERR_IOA_TIMEOUT (1 << 11)
  136. # define CIA_ERR_LOST_CORR_ERR (1 << 16)
  137. # define CIA_ERR_LOST_UN_CORR_ERR (1 << 17)
  138. # define CIA_ERR_LOST_CPU_PE (1 << 18)
  139. # define CIA_ERR_LOST_MEM_NEM (1 << 19)
  140. # define CIA_ERR_LOST_PERR (1 << 21)
  141. # define CIA_ERR_LOST_PCI_ADDR_PE (1 << 22)
  142. # define CIA_ERR_LOST_RCVD_MAS_ABT (1 << 23)
  143. # define CIA_ERR_LOST_RCVD_TAR_ABT (1 << 24)
  144. # define CIA_ERR_LOST_PA_PTE_INV (1 << 25)
  145. # define CIA_ERR_LOST_FROM_WRT_ERR (1 << 26)
  146. # define CIA_ERR_LOST_IOA_TIMEOUT (1 << 27)
  147. # define CIA_ERR_VALID (1 << 31)
  148. #define CIA_IOC_CIA_STAT (IDENT_ADDR + 0x8740008240UL)
  149. #define CIA_IOC_ERR_MASK (IDENT_ADDR + 0x8740008280UL)
  150. #define CIA_IOC_CIA_SYN (IDENT_ADDR + 0x8740008300UL)
  151. #define CIA_IOC_MEM_ERR0 (IDENT_ADDR + 0x8740008400UL)
  152. #define CIA_IOC_MEM_ERR1 (IDENT_ADDR + 0x8740008440UL)
  153. #define CIA_IOC_PCI_ERR0 (IDENT_ADDR + 0x8740008800UL)
  154. #define CIA_IOC_PCI_ERR1 (IDENT_ADDR + 0x8740008840UL)
  155. #define CIA_IOC_PCI_ERR3 (IDENT_ADDR + 0x8740008880UL)
  156. /*
  157. * 21171-CA System configuration registers
  158. */
  159. #define CIA_IOC_MCR (IDENT_ADDR + 0x8750000000UL)
  160. #define CIA_IOC_MBA0 (IDENT_ADDR + 0x8750000600UL)
  161. #define CIA_IOC_MBA2 (IDENT_ADDR + 0x8750000680UL)
  162. #define CIA_IOC_MBA4 (IDENT_ADDR + 0x8750000700UL)
  163. #define CIA_IOC_MBA6 (IDENT_ADDR + 0x8750000780UL)
  164. #define CIA_IOC_MBA8 (IDENT_ADDR + 0x8750000800UL)
  165. #define CIA_IOC_MBAA (IDENT_ADDR + 0x8750000880UL)
  166. #define CIA_IOC_MBAC (IDENT_ADDR + 0x8750000900UL)
  167. #define CIA_IOC_MBAE (IDENT_ADDR + 0x8750000980UL)
  168. #define CIA_IOC_TMG0 (IDENT_ADDR + 0x8750000B00UL)
  169. #define CIA_IOC_TMG1 (IDENT_ADDR + 0x8750000B40UL)
  170. #define CIA_IOC_TMG2 (IDENT_ADDR + 0x8750000B80UL)
  171. /*
  172. * 2117A-CA PCI Address and Scatter-Gather Registers.
  173. */
  174. #define CIA_IOC_PCI_TBIA (IDENT_ADDR + 0x8760000100UL)
  175. #define CIA_IOC_PCI_W0_BASE (IDENT_ADDR + 0x8760000400UL)
  176. #define CIA_IOC_PCI_W0_MASK (IDENT_ADDR + 0x8760000440UL)
  177. #define CIA_IOC_PCI_T0_BASE (IDENT_ADDR + 0x8760000480UL)
  178. #define CIA_IOC_PCI_W1_BASE (IDENT_ADDR + 0x8760000500UL)
  179. #define CIA_IOC_PCI_W1_MASK (IDENT_ADDR + 0x8760000540UL)
  180. #define CIA_IOC_PCI_T1_BASE (IDENT_ADDR + 0x8760000580UL)
  181. #define CIA_IOC_PCI_W2_BASE (IDENT_ADDR + 0x8760000600UL)
  182. #define CIA_IOC_PCI_W2_MASK (IDENT_ADDR + 0x8760000640UL)
  183. #define CIA_IOC_PCI_T2_BASE (IDENT_ADDR + 0x8760000680UL)
  184. #define CIA_IOC_PCI_W3_BASE (IDENT_ADDR + 0x8760000700UL)
  185. #define CIA_IOC_PCI_W3_MASK (IDENT_ADDR + 0x8760000740UL)
  186. #define CIA_IOC_PCI_T3_BASE (IDENT_ADDR + 0x8760000780UL)
  187. #define CIA_IOC_PCI_Wn_BASE(N) (IDENT_ADDR + 0x8760000400UL + (N)*0x100)
  188. #define CIA_IOC_PCI_Wn_MASK(N) (IDENT_ADDR + 0x8760000440UL + (N)*0x100)
  189. #define CIA_IOC_PCI_Tn_BASE(N) (IDENT_ADDR + 0x8760000480UL + (N)*0x100)
  190. #define CIA_IOC_PCI_W_DAC (IDENT_ADDR + 0x87600007C0UL)
  191. /*
  192. * 2117A-CA Address Translation Registers.
  193. */
  194. /* 8 tag registers, the first 4 of which are lockable. */
  195. #define CIA_IOC_TB_TAGn(n) \
  196. (IDENT_ADDR + 0x8760000800UL + (n)*0x40)
  197. /* 4 page registers per tag register. */
  198. #define CIA_IOC_TBn_PAGEm(n,m) \
  199. (IDENT_ADDR + 0x8760001000UL + (n)*0x100 + (m)*0x40)
  200. /*
  201. * Memory spaces:
  202. */
  203. #define CIA_IACK_SC (IDENT_ADDR + 0x8720000000UL)
  204. #define CIA_CONF (IDENT_ADDR + 0x8700000000UL)
  205. #define CIA_IO (IDENT_ADDR + 0x8580000000UL)
  206. #define CIA_SPARSE_MEM (IDENT_ADDR + 0x8000000000UL)
  207. #define CIA_SPARSE_MEM_R2 (IDENT_ADDR + 0x8400000000UL)
  208. #define CIA_SPARSE_MEM_R3 (IDENT_ADDR + 0x8500000000UL)
  209. #define CIA_DENSE_MEM (IDENT_ADDR + 0x8600000000UL)
  210. #define CIA_BW_MEM (IDENT_ADDR + 0x8800000000UL)
  211. #define CIA_BW_IO (IDENT_ADDR + 0x8900000000UL)
  212. #define CIA_BW_CFG_0 (IDENT_ADDR + 0x8a00000000UL)
  213. #define CIA_BW_CFG_1 (IDENT_ADDR + 0x8b00000000UL)
  214. /*
  215. * ALCOR's GRU ASIC registers
  216. */
  217. #define GRU_INT_REQ (IDENT_ADDR + 0x8780000000UL)
  218. #define GRU_INT_MASK (IDENT_ADDR + 0x8780000040UL)
  219. #define GRU_INT_EDGE (IDENT_ADDR + 0x8780000080UL)
  220. #define GRU_INT_HILO (IDENT_ADDR + 0x87800000C0UL)
  221. #define GRU_INT_CLEAR (IDENT_ADDR + 0x8780000100UL)
  222. #define GRU_CACHE_CNFG (IDENT_ADDR + 0x8780000200UL)
  223. #define GRU_SCR (IDENT_ADDR + 0x8780000300UL)
  224. #define GRU_LED (IDENT_ADDR + 0x8780000800UL)
  225. #define GRU_RESET (IDENT_ADDR + 0x8780000900UL)
  226. #define ALCOR_GRU_INT_REQ_BITS 0x800fffffUL
  227. #define XLT_GRU_INT_REQ_BITS 0x80003fffUL
  228. #define GRU_INT_REQ_BITS (alpha_mv.sys.cia.gru_int_req_bits+0)
  229. /*
  230. * PYXIS interrupt control registers
  231. */
  232. #define PYXIS_INT_REQ (IDENT_ADDR + 0x87A0000000UL)
  233. #define PYXIS_INT_MASK (IDENT_ADDR + 0x87A0000040UL)
  234. #define PYXIS_INT_HILO (IDENT_ADDR + 0x87A00000C0UL)
  235. #define PYXIS_INT_ROUTE (IDENT_ADDR + 0x87A0000140UL)
  236. #define PYXIS_GPO (IDENT_ADDR + 0x87A0000180UL)
  237. #define PYXIS_INT_CNFG (IDENT_ADDR + 0x87A00001C0UL)
  238. #define PYXIS_RT_COUNT (IDENT_ADDR + 0x87A0000200UL)
  239. #define PYXIS_INT_TIME (IDENT_ADDR + 0x87A0000240UL)
  240. #define PYXIS_IIC_CTRL (IDENT_ADDR + 0x87A00002C0UL)
  241. #define PYXIS_RESET (IDENT_ADDR + 0x8780000900UL)
  242. /* Offset between ram physical addresses and pci64 DAC bus addresses. */
  243. #define PYXIS_DAC_OFFSET (1UL << 40)
  244. /*
  245. * Data structure for handling CIA machine checks.
  246. */
  247. /* System-specific info. */
  248. struct el_CIA_sysdata_mcheck {
  249. unsigned long cpu_err0;
  250. unsigned long cpu_err1;
  251. unsigned long cia_err;
  252. unsigned long cia_stat;
  253. unsigned long err_mask;
  254. unsigned long cia_syn;
  255. unsigned long mem_err0;
  256. unsigned long mem_err1;
  257. unsigned long pci_err0;
  258. unsigned long pci_err1;
  259. unsigned long pci_err2;
  260. };
  261. #ifdef __KERNEL__
  262. #ifndef __EXTERN_INLINE
  263. /* Do not touch, this should *NOT* be static inline */
  264. #define __EXTERN_INLINE extern inline
  265. #define __IO_EXTERN_INLINE
  266. #endif
  267. /*
  268. * I/O functions:
  269. *
  270. * CIA (the 2117x PCI/memory support chipset for the EV5 (21164)
  271. * series of processors uses a sparse address mapping scheme to
  272. * get at PCI memory and I/O.
  273. */
  274. /*
  275. * Memory functions. 64-bit and 32-bit accesses are done through
  276. * dense memory space, everything else through sparse space.
  277. *
  278. * For reading and writing 8 and 16 bit quantities we need to
  279. * go through one of the three sparse address mapping regions
  280. * and use the HAE_MEM CSR to provide some bits of the address.
  281. * The following few routines use only sparse address region 1
  282. * which gives 1Gbyte of accessible space which relates exactly
  283. * to the amount of PCI memory mapping *into* system address space.
  284. * See p 6-17 of the specification but it looks something like this:
  285. *
  286. * 21164 Address:
  287. *
  288. * 3 2 1
  289. * 9876543210987654321098765432109876543210
  290. * 1ZZZZ0.PCI.QW.Address............BBLL
  291. *
  292. * ZZ = SBZ
  293. * BB = Byte offset
  294. * LL = Transfer length
  295. *
  296. * PCI Address:
  297. *
  298. * 3 2 1
  299. * 10987654321098765432109876543210
  300. * HHH....PCI.QW.Address........ 00
  301. *
  302. * HHH = 31:29 HAE_MEM CSR
  303. *
  304. */
  305. #define vip volatile int __force *
  306. #define vuip volatile unsigned int __force *
  307. #define vulp volatile unsigned long __force *
  308. __EXTERN_INLINE unsigned int cia_ioread8(void __iomem *xaddr)
  309. {
  310. unsigned long addr = (unsigned long) xaddr;
  311. unsigned long result, base_and_type;
  312. if (addr >= CIA_DENSE_MEM)
  313. base_and_type = CIA_SPARSE_MEM + 0x00;
  314. else
  315. base_and_type = CIA_IO + 0x00;
  316. /* We can use CIA_MEM_R1_MASK for io ports too, since it is large
  317. enough to cover all io ports, and smaller than CIA_IO. */
  318. addr &= CIA_MEM_R1_MASK;
  319. result = *(vip) ((addr << 5) + base_and_type);
  320. return __kernel_extbl(result, addr & 3);
  321. }
  322. __EXTERN_INLINE void cia_iowrite8(u8 b, void __iomem *xaddr)
  323. {
  324. unsigned long addr = (unsigned long) xaddr;
  325. unsigned long w, base_and_type;
  326. if (addr >= CIA_DENSE_MEM)
  327. base_and_type = CIA_SPARSE_MEM + 0x00;
  328. else
  329. base_and_type = CIA_IO + 0x00;
  330. addr &= CIA_MEM_R1_MASK;
  331. w = __kernel_insbl(b, addr & 3);
  332. *(vuip) ((addr << 5) + base_and_type) = w;
  333. }
  334. __EXTERN_INLINE unsigned int cia_ioread16(void __iomem *xaddr)
  335. {
  336. unsigned long addr = (unsigned long) xaddr;
  337. unsigned long result, base_and_type;
  338. if (addr >= CIA_DENSE_MEM)
  339. base_and_type = CIA_SPARSE_MEM + 0x08;
  340. else
  341. base_and_type = CIA_IO + 0x08;
  342. addr &= CIA_MEM_R1_MASK;
  343. result = *(vip) ((addr << 5) + base_and_type);
  344. return __kernel_extwl(result, addr & 3);
  345. }
  346. __EXTERN_INLINE void cia_iowrite16(u16 b, void __iomem *xaddr)
  347. {
  348. unsigned long addr = (unsigned long) xaddr;
  349. unsigned long w, base_and_type;
  350. if (addr >= CIA_DENSE_MEM)
  351. base_and_type = CIA_SPARSE_MEM + 0x08;
  352. else
  353. base_and_type = CIA_IO + 0x08;
  354. addr &= CIA_MEM_R1_MASK;
  355. w = __kernel_inswl(b, addr & 3);
  356. *(vuip) ((addr << 5) + base_and_type) = w;
  357. }
  358. __EXTERN_INLINE unsigned int cia_ioread32(void __iomem *xaddr)
  359. {
  360. unsigned long addr = (unsigned long) xaddr;
  361. if (addr < CIA_DENSE_MEM)
  362. addr = ((addr - CIA_IO) << 5) + CIA_IO + 0x18;
  363. return *(vuip)addr;
  364. }
  365. __EXTERN_INLINE void cia_iowrite32(u32 b, void __iomem *xaddr)
  366. {
  367. unsigned long addr = (unsigned long) xaddr;
  368. if (addr < CIA_DENSE_MEM)
  369. addr = ((addr - CIA_IO) << 5) + CIA_IO + 0x18;
  370. *(vuip)addr = b;
  371. }
  372. __EXTERN_INLINE void __iomem *cia_ioportmap(unsigned long addr)
  373. {
  374. return (void __iomem *)(addr + CIA_IO);
  375. }
  376. __EXTERN_INLINE void __iomem *cia_ioremap(unsigned long addr,
  377. unsigned long size)
  378. {
  379. return (void __iomem *)(addr + CIA_DENSE_MEM);
  380. }
  381. __EXTERN_INLINE int cia_is_ioaddr(unsigned long addr)
  382. {
  383. return addr >= IDENT_ADDR + 0x8000000000UL;
  384. }
  385. __EXTERN_INLINE int cia_is_mmio(const volatile void __iomem *addr)
  386. {
  387. return (unsigned long)addr >= CIA_DENSE_MEM;
  388. }
  389. __EXTERN_INLINE void __iomem *cia_bwx_ioportmap(unsigned long addr)
  390. {
  391. return (void __iomem *)(addr + CIA_BW_IO);
  392. }
  393. __EXTERN_INLINE void __iomem *cia_bwx_ioremap(unsigned long addr,
  394. unsigned long size)
  395. {
  396. return (void __iomem *)(addr + CIA_BW_MEM);
  397. }
  398. __EXTERN_INLINE int cia_bwx_is_ioaddr(unsigned long addr)
  399. {
  400. return addr >= IDENT_ADDR + 0x8000000000UL;
  401. }
  402. __EXTERN_INLINE int cia_bwx_is_mmio(const volatile void __iomem *addr)
  403. {
  404. return (unsigned long)addr < CIA_BW_IO;
  405. }
  406. #undef vip
  407. #undef vuip
  408. #undef vulp
  409. #undef __IO_PREFIX
  410. #define __IO_PREFIX cia
  411. #define cia_trivial_rw_bw 2
  412. #define cia_trivial_rw_lq 1
  413. #define cia_trivial_io_bw 0
  414. #define cia_trivial_io_lq 0
  415. #define cia_trivial_iounmap 1
  416. #include <asm/io_trivial.h>
  417. #undef __IO_PREFIX
  418. #define __IO_PREFIX cia_bwx
  419. #define cia_bwx_trivial_rw_bw 1
  420. #define cia_bwx_trivial_rw_lq 1
  421. #define cia_bwx_trivial_io_bw 1
  422. #define cia_bwx_trivial_io_lq 1
  423. #define cia_bwx_trivial_iounmap 1
  424. #include <asm/io_trivial.h>
  425. #undef __IO_PREFIX
  426. #ifdef CONFIG_ALPHA_PYXIS
  427. #define __IO_PREFIX cia_bwx
  428. #else
  429. #define __IO_PREFIX cia
  430. #endif
  431. #ifdef __IO_EXTERN_INLINE
  432. #undef __EXTERN_INLINE
  433. #undef __IO_EXTERN_INLINE
  434. #endif
  435. #endif /* __KERNEL__ */
  436. #endif /* __ALPHA_CIA__H__ */