spr_defs.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. /* spr_defs.h -- Defines OR1K architecture specific special-purpose registers
  2. Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
  3. This file is part of OpenRISC 1000 Architectural Simulator.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; see the file COPYING. If not, see
  14. <http://www.gnu.org/licenses/>.  */
  15. /* This file is also used by microkernel test bench. Among
  16. others it is also used in assembly file(s). */
  17. /* Definition of special-purpose registers (SPRs) */
  18. #define MAX_GRPS (32)
  19. #define MAX_SPRS_PER_GRP_BITS (11)
  20. #define MAX_SPRS_PER_GRP (1 << MAX_SPRS_PER_GRP_BITS)
  21. #define MAX_SPRS (0x10000)
  22. /* Base addresses for the groups */
  23. #define SPRGROUP_SYS (0<< MAX_SPRS_PER_GRP_BITS)
  24. #define SPRGROUP_DMMU (1<< MAX_SPRS_PER_GRP_BITS)
  25. #define SPRGROUP_IMMU (2<< MAX_SPRS_PER_GRP_BITS)
  26. #define SPRGROUP_DC (3<< MAX_SPRS_PER_GRP_BITS)
  27. #define SPRGROUP_IC (4<< MAX_SPRS_PER_GRP_BITS)
  28. #define SPRGROUP_MAC (5<< MAX_SPRS_PER_GRP_BITS)
  29. #define SPRGROUP_D (6<< MAX_SPRS_PER_GRP_BITS)
  30. #define SPRGROUP_PC (7<< MAX_SPRS_PER_GRP_BITS)
  31. #define SPRGROUP_PM (8<< MAX_SPRS_PER_GRP_BITS)
  32. #define SPRGROUP_PIC (9<< MAX_SPRS_PER_GRP_BITS)
  33. #define SPRGROUP_TT (10<< MAX_SPRS_PER_GRP_BITS)
  34. /* System control and status group */
  35. #define SPR_VR (SPRGROUP_SYS + 0)
  36. #define SPR_UPR (SPRGROUP_SYS + 1)
  37. #define SPR_CPUCFGR (SPRGROUP_SYS + 2)
  38. #define SPR_DMMUCFGR (SPRGROUP_SYS + 3)
  39. #define SPR_IMMUCFGR (SPRGROUP_SYS + 4)
  40. #define SPR_DCCFGR (SPRGROUP_SYS + 5)
  41. #define SPR_ICCFGR (SPRGROUP_SYS + 6)
  42. #define SPR_DCFGR (SPRGROUP_SYS + 7)
  43. #define SPR_PCCFGR (SPRGROUP_SYS + 8)
  44. #define SPR_NPC (SPRGROUP_SYS + 16) /* CZ 21/06/01 */
  45. #define SPR_SR (SPRGROUP_SYS + 17) /* CZ 21/06/01 */
  46. #define SPR_PPC (SPRGROUP_SYS + 18) /* CZ 21/06/01 */
  47. #define SPR_EPCR_BASE (SPRGROUP_SYS + 32) /* CZ 21/06/01 */
  48. #define SPR_EPCR_LAST (SPRGROUP_SYS + 47) /* CZ 21/06/01 */
  49. #define SPR_EEAR_BASE (SPRGROUP_SYS + 48)
  50. #define SPR_EEAR_LAST (SPRGROUP_SYS + 63)
  51. #define SPR_ESR_BASE (SPRGROUP_SYS + 64)
  52. #define SPR_ESR_LAST (SPRGROUP_SYS + 79)
  53. /* Data MMU group */
  54. #define SPR_DMMUCR (SPRGROUP_DMMU + 0)
  55. #define SPR_DTLBMR_BASE(WAY) (SPRGROUP_DMMU + 0x200 + (WAY) * 0x100)
  56. #define SPR_DTLBMR_LAST(WAY) (SPRGROUP_DMMU + 0x27f + (WAY) * 0x100)
  57. #define SPR_DTLBTR_BASE(WAY) (SPRGROUP_DMMU + 0x280 + (WAY) * 0x100)
  58. #define SPR_DTLBTR_LAST(WAY) (SPRGROUP_DMMU + 0x2ff + (WAY) * 0x100)
  59. /* Instruction MMU group */
  60. #define SPR_IMMUCR (SPRGROUP_IMMU + 0)
  61. #define SPR_ITLBMR_BASE(WAY) (SPRGROUP_IMMU + 0x200 + (WAY) * 0x100)
  62. #define SPR_ITLBMR_LAST(WAY) (SPRGROUP_IMMU + 0x27f + (WAY) * 0x100)
  63. #define SPR_ITLBTR_BASE(WAY) (SPRGROUP_IMMU + 0x280 + (WAY) * 0x100)
  64. #define SPR_ITLBTR_LAST(WAY) (SPRGROUP_IMMU + 0x2ff + (WAY) * 0x100)
  65. /* Data cache group */
  66. #define SPR_DCCR (SPRGROUP_DC + 0)
  67. #define SPR_DCBPR (SPRGROUP_DC + 1)
  68. #define SPR_DCBFR (SPRGROUP_DC + 2)
  69. #define SPR_DCBIR (SPRGROUP_DC + 3)
  70. #define SPR_DCBWR (SPRGROUP_DC + 4)
  71. #define SPR_DCBLR (SPRGROUP_DC + 5)
  72. #define SPR_DCR_BASE(WAY) (SPRGROUP_DC + 0x200 + (WAY) * 0x200)
  73. #define SPR_DCR_LAST(WAY) (SPRGROUP_DC + 0x3ff + (WAY) * 0x200)
  74. /* Instruction cache group */
  75. #define SPR_ICCR (SPRGROUP_IC + 0)
  76. #define SPR_ICBPR (SPRGROUP_IC + 1)
  77. #define SPR_ICBIR (SPRGROUP_IC + 2)
  78. #define SPR_ICBLR (SPRGROUP_IC + 3)
  79. #define SPR_ICR_BASE(WAY) (SPRGROUP_IC + 0x200 + (WAY) * 0x200)
  80. #define SPR_ICR_LAST(WAY) (SPRGROUP_IC + 0x3ff + (WAY) * 0x200)
  81. /* MAC group */
  82. #define SPR_MACLO (SPRGROUP_MAC + 1)
  83. #define SPR_MACHI (SPRGROUP_MAC + 2)
  84. /* Debug group */
  85. #define SPR_DVR(N) (SPRGROUP_D + (N))
  86. #define SPR_DCR(N) (SPRGROUP_D + 8 + (N))
  87. #define SPR_DMR1 (SPRGROUP_D + 16)
  88. #define SPR_DMR2 (SPRGROUP_D + 17)
  89. #define SPR_DWCR0 (SPRGROUP_D + 18)
  90. #define SPR_DWCR1 (SPRGROUP_D + 19)
  91. #define SPR_DSR (SPRGROUP_D + 20)
  92. #define SPR_DRR (SPRGROUP_D + 21)
  93. /* Performance counters group */
  94. #define SPR_PCCR(N) (SPRGROUP_PC + (N))
  95. #define SPR_PCMR(N) (SPRGROUP_PC + 8 + (N))
  96. /* Power management group */
  97. #define SPR_PMR (SPRGROUP_PM + 0)
  98. /* PIC group */
  99. #define SPR_PICMR (SPRGROUP_PIC + 0)
  100. #define SPR_PICPR (SPRGROUP_PIC + 1)
  101. #define SPR_PICSR (SPRGROUP_PIC + 2)
  102. /* Tick Timer group */
  103. #define SPR_TTMR (SPRGROUP_TT + 0)
  104. #define SPR_TTCR (SPRGROUP_TT + 1)
  105. /*
  106. * Bit definitions for the Version Register
  107. *
  108. */
  109. #define SPR_VR_VER 0xffff0000 /* Processor version */
  110. #define SPR_VR_REV 0x0000003f /* Processor revision */
  111. /*
  112. * Bit definitions for the Unit Present Register
  113. *
  114. */
  115. #define SPR_UPR_UP 0x00000001 /* UPR present */
  116. #define SPR_UPR_DCP 0x00000002 /* Data cache present */
  117. #define SPR_UPR_ICP 0x00000004 /* Instruction cache present */
  118. #define SPR_UPR_DMP 0x00000008 /* Data MMU present */
  119. #define SPR_UPR_IMP 0x00000010 /* Instruction MMU present */
  120. #define SPR_UPR_OB32P 0x00000020 /* ORBIS32 present */
  121. #define SPR_UPR_OB64P 0x00000040 /* ORBIS64 present */
  122. #define SPR_UPR_OF32P 0x00000080 /* ORFPX32 present */
  123. #define SPR_UPR_OF64P 0x00000100 /* ORFPX64 present */
  124. #define SPR_UPR_OV32P 0x00000200 /* ORVDX32 present */
  125. #define SPR_UPR_OV64P 0x00000400 /* ORVDX64 present */
  126. #define SPR_UPR_DUP 0x00000800 /* Debug unit present */
  127. #define SPR_UPR_PCUP 0x00001000 /* Performance counters unit present */
  128. #define SPR_UPR_PMP 0x00002000 /* Power management present */
  129. #define SPR_UPR_PICP 0x00004000 /* PIC present */
  130. #define SPR_UPR_TTP 0x00008000 /* Tick timer present */
  131. #define SPR_UPR_SRP 0x00010000 /* Shadow registers present */
  132. #define SPR_UPR_RES 0x00fe0000 /* ORVDX32 present */
  133. #define SPR_UPR_CUST 0xff000000 /* Custom units */
  134. /*
  135. * Bit definitions for the Supervision Register
  136. *
  137. */
  138. #define SPR_SR_CID 0xf0000000 /* Context ID */
  139. #define SPR_SR_SUMRA 0x00010000 /* Supervisor SPR read access */
  140. #define SPR_SR_FO 0x00008000 /* Fixed one */
  141. #define SPR_SR_EPH 0x00004000 /* Exception Prefix High */
  142. #define SPR_SR_DSX 0x00002000 /* Delay Slot Exception */
  143. #define SPR_SR_OVE 0x00001000 /* Overflow flag Exception */
  144. #define SPR_SR_OV 0x00000800 /* Overflow flag */
  145. #define SPR_SR_CY 0x00000400 /* Carry flag */
  146. #define SPR_SR_F 0x00000200 /* Condition Flag */
  147. #define SPR_SR_CE 0x00000100 /* CID Enable */
  148. #define SPR_SR_LEE 0x00000080 /* Little Endian Enable */
  149. #define SPR_SR_IME 0x00000040 /* Instruction MMU Enable */
  150. #define SPR_SR_DME 0x00000020 /* Data MMU Enable */
  151. #define SPR_SR_ICE 0x00000010 /* Instruction Cache Enable */
  152. #define SPR_SR_DCE 0x00000008 /* Data Cache Enable */
  153. #define SPR_SR_IEE 0x00000004 /* Interrupt Exception Enable */
  154. #define SPR_SR_TEE 0x00000002 /* Tick timer Exception Enable */
  155. #define SPR_SR_SM 0x00000001 /* Supervisor Mode */
  156. /*
  157. * Bit definitions for the Data MMU Control Register
  158. *
  159. */
  160. #define SPR_DMMUCR_P2S 0x0000003e /* Level 2 Page Size */
  161. #define SPR_DMMUCR_P1S 0x000007c0 /* Level 1 Page Size */
  162. #define SPR_DMMUCR_VADDR_WIDTH 0x0000f800 /* Virtual ADDR Width */
  163. #define SPR_DMMUCR_PADDR_WIDTH 0x000f0000 /* Physical ADDR Width */
  164. /*
  165. * Bit definitions for the Instruction MMU Control Register
  166. *
  167. */
  168. #define SPR_IMMUCR_P2S 0x0000003e /* Level 2 Page Size */
  169. #define SPR_IMMUCR_P1S 0x000007c0 /* Level 1 Page Size */
  170. #define SPR_IMMUCR_VADDR_WIDTH 0x0000f800 /* Virtual ADDR Width */
  171. #define SPR_IMMUCR_PADDR_WIDTH 0x000f0000 /* Physical ADDR Width */
  172. /*
  173. * Bit definitions for the Data TLB Match Register
  174. *
  175. */
  176. #define SPR_DTLBMR_V 0x00000001 /* Valid */
  177. #define SPR_DTLBMR_PL1 0x00000002 /* Page Level 1 (if 0 then PL2) */
  178. #define SPR_DTLBMR_CID 0x0000003c /* Context ID */
  179. #define SPR_DTLBMR_LRU 0x000000c0 /* Least Recently Used */
  180. #define SPR_DTLBMR_VPN 0xfffff000 /* Virtual Page Number */
  181. /*
  182. * Bit definitions for the Data TLB Translate Register
  183. *
  184. */
  185. #define SPR_DTLBTR_CC 0x00000001 /* Cache Coherency */
  186. #define SPR_DTLBTR_CI 0x00000002 /* Cache Inhibit */
  187. #define SPR_DTLBTR_WBC 0x00000004 /* Write-Back Cache */
  188. #define SPR_DTLBTR_WOM 0x00000008 /* Weakly-Ordered Memory */
  189. #define SPR_DTLBTR_A 0x00000010 /* Accessed */
  190. #define SPR_DTLBTR_D 0x00000020 /* Dirty */
  191. #define SPR_DTLBTR_URE 0x00000040 /* User Read Enable */
  192. #define SPR_DTLBTR_UWE 0x00000080 /* User Write Enable */
  193. #define SPR_DTLBTR_SRE 0x00000100 /* Supervisor Read Enable */
  194. #define SPR_DTLBTR_SWE 0x00000200 /* Supervisor Write Enable */
  195. #define SPR_DTLBTR_PPN 0xfffff000 /* Physical Page Number */
  196. /*
  197. * Bit definitions for the Instruction TLB Match Register
  198. *
  199. */
  200. #define SPR_ITLBMR_V 0x00000001 /* Valid */
  201. #define SPR_ITLBMR_PL1 0x00000002 /* Page Level 1 (if 0 then PL2) */
  202. #define SPR_ITLBMR_CID 0x0000003c /* Context ID */
  203. #define SPR_ITLBMR_LRU 0x000000c0 /* Least Recently Used */
  204. #define SPR_ITLBMR_VPN 0xfffff000 /* Virtual Page Number */
  205. /*
  206. * Bit definitions for the Instruction TLB Translate Register
  207. *
  208. */
  209. #define SPR_ITLBTR_CC 0x00000001 /* Cache Coherency */
  210. #define SPR_ITLBTR_CI 0x00000002 /* Cache Inhibit */
  211. #define SPR_ITLBTR_WBC 0x00000004 /* Write-Back Cache */
  212. #define SPR_ITLBTR_WOM 0x00000008 /* Weakly-Ordered Memory */
  213. #define SPR_ITLBTR_A 0x00000010 /* Accessed */
  214. #define SPR_ITLBTR_D 0x00000020 /* Dirty */
  215. #define SPR_ITLBTR_SXE 0x00000040 /* User Read Enable */
  216. #define SPR_ITLBTR_UXE 0x00000080 /* User Write Enable */
  217. #define SPR_ITLBTR_PPN 0xfffff000 /* Physical Page Number */
  218. /*
  219. * Bit definitions for Data Cache Control register
  220. *
  221. */
  222. #define SPR_DCCR_EW 0x000000ff /* Enable ways */
  223. /*
  224. * Bit definitions for Insn Cache Control register
  225. *
  226. */
  227. #define SPR_ICCR_EW 0x000000ff /* Enable ways */
  228. /*
  229. * Bit definitions for Debug Control registers
  230. *
  231. */
  232. #define SPR_DCR_DP 0x00000001 /* DVR/DCR present */
  233. #define SPR_DCR_CC 0x0000000e /* Compare condition */
  234. #define SPR_DCR_SC 0x00000010 /* Signed compare */
  235. #define SPR_DCR_CT 0x000000e0 /* Compare to */
  236. /* Bit results with SPR_DCR_CC mask */
  237. #define SPR_DCR_CC_MASKED 0x00000000
  238. #define SPR_DCR_CC_EQUAL 0x00000001
  239. #define SPR_DCR_CC_LESS 0x00000002
  240. #define SPR_DCR_CC_LESSE 0x00000003
  241. #define SPR_DCR_CC_GREAT 0x00000004
  242. #define SPR_DCR_CC_GREATE 0x00000005
  243. #define SPR_DCR_CC_NEQUAL 0x00000006
  244. /* Bit results with SPR_DCR_CT mask */
  245. #define SPR_DCR_CT_DISABLED 0x00000000
  246. #define SPR_DCR_CT_IFEA 0x00000020
  247. #define SPR_DCR_CT_LEA 0x00000040
  248. #define SPR_DCR_CT_SEA 0x00000060
  249. #define SPR_DCR_CT_LD 0x00000080
  250. #define SPR_DCR_CT_SD 0x000000a0
  251. #define SPR_DCR_CT_LSEA 0x000000c0
  252. /*
  253. * Bit definitions for Debug Mode 1 register
  254. *
  255. */
  256. #define SPR_DMR1_CW0 0x00000003 /* Chain watchpoint 0 */
  257. #define SPR_DMR1_CW1 0x0000000c /* Chain watchpoint 1 */
  258. #define SPR_DMR1_CW2 0x00000030 /* Chain watchpoint 2 */
  259. #define SPR_DMR1_CW3 0x000000c0 /* Chain watchpoint 3 */
  260. #define SPR_DMR1_CW4 0x00000300 /* Chain watchpoint 4 */
  261. #define SPR_DMR1_CW5 0x00000c00 /* Chain watchpoint 5 */
  262. #define SPR_DMR1_CW6 0x00003000 /* Chain watchpoint 6 */
  263. #define SPR_DMR1_CW7 0x0000c000 /* Chain watchpoint 7 */
  264. #define SPR_DMR1_CW8 0x00030000 /* Chain watchpoint 8 */
  265. #define SPR_DMR1_CW9 0x000c0000 /* Chain watchpoint 9 */
  266. #define SPR_DMR1_CW10 0x00300000 /* Chain watchpoint 10 */
  267. #define SPR_DMR1_ST 0x00400000 /* Single-step trace*/
  268. #define SPR_DMR1_BT 0x00800000 /* Branch trace */
  269. #define SPR_DMR1_DXFW 0x01000000 /* Disable external force watchpoint */
  270. /*
  271. * Bit definitions for Debug Mode 2 register
  272. *
  273. */
  274. #define SPR_DMR2_WCE0 0x00000001 /* Watchpoint counter 0 enable */
  275. #define SPR_DMR2_WCE1 0x00000002 /* Watchpoint counter 0 enable */
  276. #define SPR_DMR2_AWTC 0x00001ffc /* Assign watchpoints to counters */
  277. #define SPR_DMR2_WGB 0x00ffe000 /* Watchpoints generating breakpoint */
  278. /*
  279. * Bit definitions for Debug watchpoint counter registers
  280. *
  281. */
  282. #define SPR_DWCR_COUNT 0x0000ffff /* Count */
  283. #define SPR_DWCR_MATCH 0xffff0000 /* Match */
  284. /*
  285. * Bit definitions for Debug stop register
  286. *
  287. */
  288. #define SPR_DSR_RSTE 0x00000001 /* Reset exception */
  289. #define SPR_DSR_BUSEE 0x00000002 /* Bus error exception */
  290. #define SPR_DSR_DPFE 0x00000004 /* Data Page Fault exception */
  291. #define SPR_DSR_IPFE 0x00000008 /* Insn Page Fault exception */
  292. #define SPR_DSR_TTE 0x00000010 /* iTick Timer exception */
  293. #define SPR_DSR_AE 0x00000020 /* Alignment exception */
  294. #define SPR_DSR_IIE 0x00000040 /* Illegal Instruction exception */
  295. #define SPR_DSR_IE 0x00000080 /* Interrupt exception */
  296. #define SPR_DSR_DME 0x00000100 /* DTLB miss exception */
  297. #define SPR_DSR_IME 0x00000200 /* ITLB miss exception */
  298. #define SPR_DSR_RE 0x00000400 /* Range exception */
  299. #define SPR_DSR_SCE 0x00000800 /* System call exception */
  300. #define SPR_DSR_SSE 0x00001000 /* Single Step Exception */
  301. #define SPR_DSR_TE 0x00002000 /* Trap exception */
  302. /*
  303. * Bit definitions for Debug reason register
  304. *
  305. */
  306. #define SPR_DRR_RSTE 0x00000001 /* Reset exception */
  307. #define SPR_DRR_BUSEE 0x00000002 /* Bus error exception */
  308. #define SPR_DRR_DPFE 0x00000004 /* Data Page Fault exception */
  309. #define SPR_DRR_IPFE 0x00000008 /* Insn Page Fault exception */
  310. #define SPR_DRR_TTE 0x00000010 /* Tick Timer exception */
  311. #define SPR_DRR_AE 0x00000020 /* Alignment exception */
  312. #define SPR_DRR_IIE 0x00000040 /* Illegal Instruction exception */
  313. #define SPR_DRR_IE 0x00000080 /* Interrupt exception */
  314. #define SPR_DRR_DME 0x00000100 /* DTLB miss exception */
  315. #define SPR_DRR_IME 0x00000200 /* ITLB miss exception */
  316. #define SPR_DRR_RE 0x00000400 /* Range exception */
  317. #define SPR_DRR_SCE 0x00000800 /* System call exception */
  318. #define SPR_DRR_TE 0x00001000 /* Trap exception */
  319. /*
  320. * Bit definitions for Performance counters mode registers
  321. *
  322. */
  323. #define SPR_PCMR_CP 0x00000001 /* Counter present */
  324. #define SPR_PCMR_UMRA 0x00000002 /* User mode read access */
  325. #define SPR_PCMR_CISM 0x00000004 /* Count in supervisor mode */
  326. #define SPR_PCMR_CIUM 0x00000008 /* Count in user mode */
  327. #define SPR_PCMR_LA 0x00000010 /* Load access event */
  328. #define SPR_PCMR_SA 0x00000020 /* Store access event */
  329. #define SPR_PCMR_IF 0x00000040 /* Instruction fetch event*/
  330. #define SPR_PCMR_DCM 0x00000080 /* Data cache miss event */
  331. #define SPR_PCMR_ICM 0x00000100 /* Insn cache miss event */
  332. #define SPR_PCMR_IFS 0x00000200 /* Insn fetch stall event */
  333. #define SPR_PCMR_LSUS 0x00000400 /* LSU stall event */
  334. #define SPR_PCMR_BS 0x00000800 /* Branch stall event */
  335. #define SPR_PCMR_DTLBM 0x00001000 /* DTLB miss event */
  336. #define SPR_PCMR_ITLBM 0x00002000 /* ITLB miss event */
  337. #define SPR_PCMR_DDS 0x00004000 /* Data dependency stall event */
  338. #define SPR_PCMR_WPE 0x03ff8000 /* Watchpoint events */
  339. /*
  340. * Bit definitions for the Power management register
  341. *
  342. */
  343. #define SPR_PMR_SDF 0x0000000f /* Slow down factor */
  344. #define SPR_PMR_DME 0x00000010 /* Doze mode enable */
  345. #define SPR_PMR_SME 0x00000020 /* Sleep mode enable */
  346. #define SPR_PMR_DCGE 0x00000040 /* Dynamic clock gating enable */
  347. #define SPR_PMR_SUME 0x00000080 /* Suspend mode enable */
  348. /*
  349. * Bit definitions for PICMR
  350. *
  351. */
  352. #define SPR_PICMR_IUM 0xfffffffc /* Interrupt unmask */
  353. /*
  354. * Bit definitions for PICPR
  355. *
  356. */
  357. #define SPR_PICPR_IPRIO 0xfffffffc /* Interrupt priority */
  358. /*
  359. * Bit definitions for PICSR
  360. *
  361. */
  362. #define SPR_PICSR_IS 0xffffffff /* Interrupt status */
  363. /*
  364. * Bit definitions for Tick Timer Control Register
  365. *
  366. */
  367. #define SPR_TTCR_PERIOD 0x0fffffff /* Time Period */
  368. #define SPR_TTMR_PERIOD SPR_TTCR_PERIOD
  369. #define SPR_TTMR_IP 0x10000000 /* Interrupt Pending */
  370. #define SPR_TTMR_IE 0x20000000 /* Interrupt Enable */
  371. #define SPR_TTMR_RT 0x40000000 /* Restart tick */
  372. #define SPR_TTMR_SR 0x80000000 /* Single run */
  373. #define SPR_TTMR_CR 0xc0000000 /* Continuous run */
  374. #define SPR_TTMR_M 0xc0000000 /* Tick mode */
  375. /*
  376. * l.nop constants
  377. *
  378. */
  379. #define NOP_NOP 0x0000 /* Normal nop instruction */
  380. #define NOP_EXIT 0x0001 /* End of simulation */
  381. #define NOP_REPORT 0x0002 /* Simple report */
  382. #define NOP_PRINTF 0x0003 /* Simprintf instruction */
  383. #define NOP_REPORT_FIRST 0x0400 /* Report with number */
  384. #define NOP_REPORT_LAST 0x03ff /* Report with number */