analysisDataOperation.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /* spr-regs.h: special-purpose registers on the FRV
  2. *
  3. * Copyright (C) 2003, 2004 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_SPR_REGS_H
  12. #define _ASM_SPR_REGS_H
  13. /*
  14. * PSR - Processor Status Register
  15. */
  16. #define PSR_ET 0x00000001 /* enable interrupts/exceptions flag */
  17. #define PSR_PS 0x00000002 /* previous supervisor mode flag */
  18. #define PSR_S 0x00000004 /* supervisor mode flag */
  19. #define PSR_PIL 0x00000078 /* processor external interrupt level */
  20. #define PSR_PIL_0 0x00000000 /* - no interrupt in progress */
  21. #define PSR_PIL_13 0x00000068 /* - debugging only */
  22. #define PSR_PIL_14 0x00000070 /* - debugging in progress */
  23. #define PSR_PIL_15 0x00000078 /* - NMI in progress */
  24. #define PSR_EM 0x00000080 /* enable media operation */
  25. #define PSR_EF 0x00000100 /* enable FPU operation */
  26. #define PSR_BE 0x00001000 /* endianness mode */
  27. #define PSR_BE_LE 0x00000000 /* - little endian mode */
  28. #define PSR_BE_BE 0x00001000 /* - big endian mode */
  29. #define PSR_CM 0x00002000 /* conditional mode */
  30. #define PSR_NEM 0x00004000 /* non-excepting mode */
  31. #define PSR_ICE 0x00010000 /* in-circuit emulation mode */
  32. #define PSR_VERSION_SHIFT 24 /* CPU silicon ID */
  33. #define PSR_IMPLE_SHIFT 28 /* CPU core ID */
  34. #define PSR_VERSION(psr) (((psr) >> PSR_VERSION_SHIFT) & 0xf)
  35. #define PSR_IMPLE(psr) (((psr) >> PSR_IMPLE_SHIFT) & 0xf)
  36. #define PSR_IMPLE_FR401 0x2
  37. #define PSR_VERSION_FR401_MB93401 0x0
  38. #define PSR_VERSION_FR401_MB93401A 0x1
  39. #define PSR_VERSION_FR401_MB93403 0x2
  40. #define PSR_IMPLE_FR405 0x4
  41. #define PSR_VERSION_FR405_MB93405 0x0
  42. #define PSR_IMPLE_FR451 0x5
  43. #define PSR_VERSION_FR451_MB93451 0x0
  44. #define PSR_IMPLE_FR501 0x1
  45. #define PSR_VERSION_FR501_MB93501 0x1
  46. #define PSR_VERSION_FR501_MB93501A 0x2
  47. #define PSR_IMPLE_FR551 0x3
  48. #define PSR_VERSION_FR551_MB93555 0x1
  49. #define __get_PSR() ({ unsigned long x; asm volatile("movsg psr,%0" : "=r"(x)); x; })
  50. #define __set_PSR(V) do { asm volatile("movgs %0,psr" : : "r"(V)); } while(0)
  51. /*
  52. * TBR - Trap Base Register
  53. */
  54. #define TBR_TT 0x00000ff0
  55. #define TBR_TT_INSTR_MMU_MISS (0x01 << 4)
  56. #define TBR_TT_INSTR_ACC_ERROR (0x02 << 4)
  57. #define TBR_TT_INSTR_ACC_EXCEP (0x03 << 4)
  58. #define TBR_TT_PRIV_INSTR (0x06 << 4)
  59. #define TBR_TT_ILLEGAL_INSTR (0x07 << 4)
  60. #define TBR_TT_FP_EXCEPTION (0x0d << 4)
  61. #define TBR_TT_MP_EXCEPTION (0x0e << 4)
  62. #define TBR_TT_DATA_ACC_ERROR (0x11 << 4)
  63. #define TBR_TT_DATA_MMU_MISS (0x12 << 4)
  64. #define TBR_TT_DATA_ACC_EXCEP (0x13 << 4)
  65. #define TBR_TT_DATA_STR_ERROR (0x14 << 4)
  66. #define TBR_TT_DIVISION_EXCEP (0x17 << 4)
  67. #define TBR_TT_COMMIT_EXCEP (0x19 << 4)
  68. #define TBR_TT_INSTR_TLB_MISS (0x1a << 4)
  69. #define TBR_TT_DATA_TLB_MISS (0x1b << 4)
  70. #define TBR_TT_DATA_DAT_EXCEP (0x1d << 4)
  71. #define TBR_TT_DECREMENT_TIMER (0x1f << 4)
  72. #define TBR_TT_COMPOUND_EXCEP (0x20 << 4)
  73. #define TBR_TT_INTERRUPT_1 (0x21 << 4)
  74. #define TBR_TT_INTERRUPT_2 (0x22 << 4)
  75. #define TBR_TT_INTERRUPT_3 (0x23 << 4)
  76. #define TBR_TT_INTERRUPT_4 (0x24 << 4)
  77. #define TBR_TT_INTERRUPT_5 (0x25 << 4)
  78. #define TBR_TT_INTERRUPT_6 (0x26 << 4)
  79. #define TBR_TT_INTERRUPT_7 (0x27 << 4)
  80. #define TBR_TT_INTERRUPT_8 (0x28 << 4)
  81. #define TBR_TT_INTERRUPT_9 (0x29 << 4)
  82. #define TBR_TT_INTERRUPT_10 (0x2a << 4)
  83. #define TBR_TT_INTERRUPT_11 (0x2b << 4)
  84. #define TBR_TT_INTERRUPT_12 (0x2c << 4)
  85. #define TBR_TT_INTERRUPT_13 (0x2d << 4)
  86. #define TBR_TT_INTERRUPT_14 (0x2e << 4)
  87. #define TBR_TT_INTERRUPT_15 (0x2f << 4)
  88. #define TBR_TT_TRAP0 (0x80 << 4)
  89. #define TBR_TT_TRAP1 (0x81 << 4)
  90. #define TBR_TT_TRAP2 (0x82 << 4)
  91. #define TBR_TT_TRAP3 (0x83 << 4)
  92. #define TBR_TT_TRAP120 (0xf8 << 4)
  93. #define TBR_TT_TRAP121 (0xf9 << 4)
  94. #define TBR_TT_TRAP122 (0xfa << 4)
  95. #define TBR_TT_TRAP123 (0xfb << 4)
  96. #define TBR_TT_TRAP124 (0xfc << 4)
  97. #define TBR_TT_TRAP125 (0xfd << 4)
  98. #define TBR_TT_TRAP126 (0xfe << 4)
  99. #define TBR_TT_BREAK (0xff << 4)
  100. #define TBR_TT_ATOMIC_CMPXCHG32 TBR_TT_TRAP120
  101. #define TBR_TT_ATOMIC_XCHG32 TBR_TT_TRAP121
  102. #define TBR_TT_ATOMIC_XOR TBR_TT_TRAP122
  103. #define TBR_TT_ATOMIC_OR TBR_TT_TRAP123
  104. #define TBR_TT_ATOMIC_AND TBR_TT_TRAP124
  105. #define TBR_TT_ATOMIC_SUB TBR_TT_TRAP125
  106. #define TBR_TT_ATOMIC_ADD TBR_TT_TRAP126
  107. #define __get_TBR() ({ unsigned long x; asm volatile("movsg tbr,%0" : "=r"(x)); x; })
  108. /*
  109. * HSR0 - Hardware Status Register 0
  110. */
  111. #define HSR0_PDM 0x00000007 /* power down mode */
  112. #define HSR0_PDM_NORMAL 0x00000000 /* - normal mode */
  113. #define HSR0_PDM_CORE_SLEEP 0x00000001 /* - CPU core sleep mode */
  114. #define HSR0_PDM_BUS_SLEEP 0x00000003 /* - bus sleep mode */
  115. #define HSR0_PDM_PLL_RUN 0x00000005 /* - PLL run */
  116. #define HSR0_PDM_PLL_STOP 0x00000007 /* - PLL stop */
  117. #define HSR0_GRLE 0x00000040 /* GR lower register set enable */
  118. #define HSR0_GRHE 0x00000080 /* GR higher register set enable */
  119. #define HSR0_FRLE 0x00000100 /* FR lower register set enable */
  120. #define HSR0_FRHE 0x00000200 /* FR higher register set enable */
  121. #define HSR0_GRN 0x00000400 /* GR quantity */
  122. #define HSR0_GRN_64 0x00000000 /* - 64 GR registers */
  123. #define HSR0_GRN_32 0x00000400 /* - 32 GR registers */
  124. #define HSR0_FRN 0x00000800 /* FR quantity */
  125. #define HSR0_FRN_64 0x00000000 /* - 64 FR registers */
  126. #define HSR0_FRN_32 0x00000800 /* - 32 FR registers */
  127. #define HSR0_SA 0x00001000 /* start address (RAMBOOT#) */
  128. #define HSR0_ETMI 0x00008000 /* enable TIMERI (64-bit up timer) */
  129. #define HSR0_ETMD 0x00004000 /* enable TIMERD (32-bit down timer) */
  130. #define HSR0_PEDAT 0x00010000 /* previous DAT mode */
  131. #define HSR0_XEDAT 0x00020000 /* exception DAT mode */
  132. #define HSR0_EDAT 0x00080000 /* enable DAT mode */
  133. #define HSR0_RME 0x00400000 /* enable RAM mode */
  134. #define HSR0_EMEM 0x00800000 /* enable MMU_Miss mask */
  135. #define HSR0_EXMMU 0x01000000 /* enable extended MMU mode */
  136. #define HSR0_EDMMU 0x02000000 /* enable data MMU */
  137. #define HSR0_EIMMU 0x04000000 /* enable instruction MMU */
  138. #define HSR0_CBM 0x08000000 /* copy back mode */
  139. #define HSR0_CBM_WRITE_THRU 0x00000000 /* - write through */
  140. #define HSR0_CBM_COPY_BACK 0x08000000 /* - copy back */
  141. #define HSR0_NWA 0x10000000 /* no write allocate */
  142. #define HSR0_DCE 0x40000000 /* data cache enable */
  143. #define HSR0_ICE 0x80000000 /* instruction cache enable */
  144. #define __get_HSR(R) ({ unsigned long x; asm volatile("movsg hsr"#R",%0" : "=r"(x)); x; })
  145. #define __set_HSR(R,V) do { asm volatile("movgs %0,hsr"#R : : "r"(V)); } while(0)
  146. /*
  147. * CCR - Condition Codes Register
  148. */
  149. #define CCR_FCC0 0x0000000f /* FP/Media condition 0 (fcc0 reg) */
  150. #define CCR_FCC1 0x000000f0 /* FP/Media condition 1 (fcc1 reg) */
  151. #define CCR_FCC2 0x00000f00 /* FP/Media condition 2 (fcc2 reg) */
  152. #define CCR_FCC3 0x0000f000 /* FP/Media condition 3 (fcc3 reg) */
  153. #define CCR_ICC0 0x000f0000 /* Integer condition 0 (icc0 reg) */
  154. #define CCR_ICC0_C 0x00010000 /* - Carry flag */
  155. #define CCR_ICC0_V 0x00020000 /* - Overflow flag */
  156. #define CCR_ICC0_Z 0x00040000 /* - Zero flag */
  157. #define CCR_ICC0_N 0x00080000 /* - Negative flag */
  158. #define CCR_ICC1 0x00f00000 /* Integer condition 1 (icc1 reg) */
  159. #define CCR_ICC2 0x0f000000 /* Integer condition 2 (icc2 reg) */
  160. #define CCR_ICC3 0xf0000000 /* Integer condition 3 (icc3 reg) */
  161. /*
  162. * CCCR - Condition Codes for Conditional Instructions Register
  163. */
  164. #define CCCR_CC0 0x00000003 /* condition 0 (cc0 reg) */
  165. #define CCCR_CC0_FALSE 0x00000002 /* - condition is false */
  166. #define CCCR_CC0_TRUE 0x00000003 /* - condition is true */
  167. #define CCCR_CC1 0x0000000c /* condition 1 (cc1 reg) */
  168. #define CCCR_CC2 0x00000030 /* condition 2 (cc2 reg) */
  169. #define CCCR_CC3 0x000000c0 /* condition 3 (cc3 reg) */
  170. #define CCCR_CC4 0x00000300 /* condition 4 (cc4 reg) */
  171. #define CCCR_CC5 0x00000c00 /* condition 5 (cc5 reg) */
  172. #define CCCR_CC6 0x00003000 /* condition 6 (cc6 reg) */
  173. #define CCCR_CC7 0x0000c000 /* condition 7 (cc7 reg) */
  174. /*
  175. * ISR - Integer Status Register
  176. */
  177. #define ISR_EMAM 0x00000001 /* memory misaligned access handling */
  178. #define ISR_EMAM_EXCEPTION 0x00000000 /* - generate exception */
  179. #define ISR_EMAM_FUDGE 0x00000001 /* - mask out invalid address bits */
  180. #define ISR_AEXC 0x00000004 /* accrued [overflow] exception */
  181. #define ISR_DTT 0x00000018 /* division type trap */
  182. #define ISR_DTT_IGNORE 0x00000000 /* - ignore division error */
  183. #define ISR_DTT_DIVBYZERO 0x00000008 /* - generate exception */
  184. #define ISR_DTT_OVERFLOW 0x00000010 /* - record overflow */
  185. #define ISR_EDE 0x00000020 /* enable division exception */
  186. #define ISR_PLI 0x20000000 /* pre-load instruction information */
  187. #define ISR_QI 0x80000000 /* quad data implementation information */
  188. /*
  189. * EPCR0 - Exception PC Register
  190. */
  191. #define EPCR0_V 0x00000001 /* register content validity indicator */
  192. #define EPCR0_PC 0xfffffffc /* faulting instruction address */
  193. /*
  194. * ESR0/14/15 - Exception Status Register
  195. */
  196. #define ESRx_VALID 0x00000001 /* register content validity indicator */
  197. #define ESRx_EC 0x0000003e /* exception type */
  198. #define ESRx_EC_DATA_STORE 0x00000000 /* - data_store_error */
  199. #define ESRx_EC_INSN_ACCESS 0x00000006 /* - instruction_access_error */
  200. #define ESRx_EC_PRIV_INSN 0x00000008 /* - privileged_instruction */
  201. #define ESRx_EC_ILL_INSN 0x0000000a /* - illegal_instruction */
  202. #define ESRx_EC_MP_EXCEP 0x0000001c /* - mp_exception */
  203. #define ESRx_EC_DATA_ACCESS 0x00000020 /* - data_access_error */
  204. #define ESRx_EC_DIVISION 0x00000026 /* - division_exception */