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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.processor.h 1.33 12/01/01 20:09:11 benh
  3.  */
  4. #ifdef __KERNEL__
  5. #ifndef __ASM_PPC_PROCESSOR_H
  6. #define __ASM_PPC_PROCESSOR_H
  7. /*
  8.  * Default implementation of macro that returns current
  9.  * instruction pointer ("program counter").
  10.  */
  11. #define current_text_addr() ({ __label__ _l; _l: &&_l;})
  12. #include <linux/config.h>
  13. #include <asm/ptrace.h>
  14. #include <asm/types.h>
  15. #include <asm/mpc8xx.h>
  16. /* Machine State Register (MSR) Fields */
  17. #ifdef CONFIG_PPC64BRIDGE
  18. #define MSR_SF (1<<63)
  19. #define MSR_ISF (1<<61)
  20. #endif /* CONFIG_PPC64BRIDGE */
  21. #define MSR_VEC (1<<25) /* Enable AltiVec */
  22. #define MSR_POW (1<<18) /* Enable Power Management */
  23. #define MSR_WE (1<<18) /* Wait State Enable */
  24. #define MSR_TGPR (1<<17) /* TLB Update registers in use */
  25. #define MSR_CE (1<<17) /* Critical Interrupt Enable */
  26. #define MSR_ILE (1<<16) /* Interrupt Little Endian */
  27. #define MSR_EE (1<<15) /* External Interrupt Enable */
  28. #define MSR_PR (1<<14) /* Problem State / Privilege Level */
  29. #define MSR_FP (1<<13) /* Floating Point enable */
  30. #define MSR_ME (1<<12) /* Machine Check Enable */
  31. #define MSR_FE0 (1<<11) /* Floating Exception mode 0 */
  32. #define MSR_SE (1<<10) /* Single Step */
  33. #define MSR_DWE (1<<10) /* Debug Wait Enable (4xx) */
  34. #define MSR_BE (1<<9) /* Branch Trace */
  35. #define MSR_DE (1<<9)  /* Debug Exception Enable */
  36. #define MSR_FE1 (1<<8) /* Floating Exception mode 1 */
  37. #define MSR_IP (1<<6) /* Exception prefix 0x000/0xFFF */
  38. #define MSR_IR (1<<5)  /* Instruction Relocate */
  39. #define MSR_DR (1<<4)  /* Data Relocate */
  40. #define MSR_PE (1<<3) /* Protection Enable */
  41. #define MSR_PX (1<<2) /* Protection Exclusive Mode */
  42. #define MSR_RI (1<<1) /* Recoverable Exception */
  43. #define MSR_LE (1<<0)  /* Little Endian */
  44. #ifdef CONFIG_APUS_FAST_EXCEPT
  45. #define MSR_ MSR_ME|MSR_IP|MSR_RI
  46. #else
  47. #define MSR_ MSR_ME|MSR_RI
  48. #endif
  49. #define MSR_KERNEL      MSR_|MSR_IR|MSR_DR
  50. #define MSR_USER MSR_KERNEL|MSR_PR|MSR_EE
  51. /* Floating Point Status and Control Register (FPSCR) Fields */
  52. #define FPSCR_FX 0x80000000 /* FPU exception summary */
  53. #define FPSCR_FEX 0x40000000 /* FPU enabled exception summary */
  54. #define FPSCR_VX 0x20000000 /* Invalid operation summary */
  55. #define FPSCR_OX 0x10000000 /* Overflow exception summary */
  56. #define FPSCR_UX 0x08000000 /* Underflow exception summary */
  57. #define FPSCR_ZX 0x04000000 /* Zero-devide exception summary */
  58. #define FPSCR_XX 0x02000000 /* Inexact exception summary */
  59. #define FPSCR_VXSNAN 0x01000000 /* Invalid op for SNaN */
  60. #define FPSCR_VXISI 0x00800000 /* Invalid op for Inv - Inv */
  61. #define FPSCR_VXIDI 0x00400000 /* Invalid op for Inv / Inv */
  62. #define FPSCR_VXZDZ 0x00200000 /* Invalid op for Zero / Zero */
  63. #define FPSCR_VXIMZ 0x00100000 /* Invalid op for Inv * Zero */
  64. #define FPSCR_VXVC 0x00080000 /* Invalid op for Compare */
  65. #define FPSCR_FR 0x00040000 /* Fraction rounded */
  66. #define FPSCR_FI 0x00020000 /* Fraction inexact */
  67. #define FPSCR_FPRF 0x0001f000 /* FPU Result Flags */
  68. #define FPSCR_FPCC 0x0000f000 /* FPU Condition Codes */
  69. #define FPSCR_VXSOFT 0x00000400 /* Invalid op for software request */
  70. #define FPSCR_VXSQRT 0x00000200 /* Invalid op for square root */
  71. #define FPSCR_VXCVI 0x00000100 /* Invalid op for integer convert */
  72. #define FPSCR_VE 0x00000080 /* Invalid op exception enable */
  73. #define FPSCR_OE 0x00000040 /* IEEE overflow exception enable */
  74. #define FPSCR_UE 0x00000020 /* IEEE underflow exception enable */
  75. #define FPSCR_ZE 0x00000010 /* IEEE zero divide exception enable */
  76. #define FPSCR_XE 0x00000008 /* FP inexact exception enable */
  77. #define FPSCR_NI 0x00000004 /* FPU non IEEE-Mode */
  78. #define FPSCR_RN 0x00000003 /* FPU rounding control */
  79. /* Special Purpose Registers (SPRNs)*/
  80. #define SPRN_CCR0 0x3B3 /* Core Configuration Register (4xx) */
  81. #define SPRN_CDBCR 0x3D7 /* Cache Debug Control Register */
  82. #define SPRN_CTR 0x009 /* Count Register */
  83. #define SPRN_DABR 0x3F5 /* Data Address Breakpoint Register */
  84. #define SPRN_DAC1 0x3F6 /* Data Address Compare 1 */
  85. #define SPRN_DAC2 0x3F7 /* Data Address Compare 2 */
  86. #define SPRN_DAR 0x013 /* Data Address Register */
  87. #define SPRN_DBAT0L 0x219 /* Data BAT 0 Lower Register */
  88. #define SPRN_DBAT0U 0x218 /* Data BAT 0 Upper Register */
  89. #define SPRN_DBAT1L 0x21B /* Data BAT 1 Lower Register */
  90. #define SPRN_DBAT1U 0x21A /* Data BAT 1 Upper Register */
  91. #define SPRN_DBAT2L 0x21D /* Data BAT 2 Lower Register */
  92. #define SPRN_DBAT2U 0x21C /* Data BAT 2 Upper Register */
  93. #define SPRN_DBAT3L 0x21F /* Data BAT 3 Lower Register */
  94. #define SPRN_DBAT3U 0x21E /* Data BAT 3 Upper Register */
  95. #define SPRN_DBCR 0x3F2 /* Debug Control Regsiter */
  96. #define   DBCR_EDM 0x80000000
  97. #define   DBCR_IDM 0x40000000
  98. #define   DBCR_RST(x) (((x) & 0x3) << 28)
  99. #define     DBCR_RST_NONE        0
  100. #define     DBCR_RST_CORE        1
  101. #define     DBCR_RST_CHIP        2
  102. #define     DBCR_RST_SYSTEM 3
  103. #define   DBCR_IC 0x08000000 /* Instruction Completion Debug Evnt */
  104. #define   DBCR_BT 0x04000000 /* Branch Taken Debug Event */
  105. #define   DBCR_EDE 0x02000000 /* Exception Debug Event */
  106. #define   DBCR_TDE 0x01000000 /* TRAP Debug Event */
  107. #define   DBCR_FER 0x00F80000 /* First Events Remaining Mask */
  108. #define   DBCR_FT 0x00040000 /* Freeze Timers on Debug Event */
  109. #define   DBCR_IA1 0x00020000 /* Instr. Addr. Compare 1 Enable */
  110. #define   DBCR_IA2 0x00010000 /* Instr. Addr. Compare 2 Enable */
  111. #define   DBCR_D1R 0x00008000 /* Data Addr. Compare 1 Read Enable */
  112. #define   DBCR_D1W 0x00004000 /* Data Addr. Compare 1 Write Enable */
  113. #define   DBCR_D1S(x) (((x) & 0x3) << 12) /* Data Adrr. Compare 1 Size */
  114. #define     DAC_BYTE 0
  115. #define     DAC_HALF 1
  116. #define     DAC_WORD 2
  117. #define     DAC_QUAD 3
  118. #define   DBCR_D2R 0x00000800 /* Data Addr. Compare 2 Read Enable */
  119. #define   DBCR_D2W 0x00000400 /* Data Addr. Compare 2 Write Enable */
  120. #define   DBCR_D2S(x) (((x) & 0x3) << 8) /* Data Addr. Compare 2 Size */
  121. #define   DBCR_SBT 0x00000040 /* Second Branch Taken Debug Event */
  122. #define   DBCR_SED 0x00000020 /* Second Exception Debug Event */
  123. #define   DBCR_STD 0x00000010 /* Second Trap Debug Event */
  124. #define   DBCR_SIA 0x00000008 /* Second IAC Enable */
  125. #define   DBCR_SDA 0x00000004 /* Second DAC Enable */
  126. #define   DBCR_JOI 0x00000002 /* JTAG Serial Outbound Int. Enable */
  127. #define   DBCR_JII 0x00000001 /* JTAG Serial Inbound Int. Enable */
  128. #define SPRN_DBCR0 0x3F2 /* Debug Control Register 0 */
  129. #define SPRN_DBCR1 0x3BD /* Debug Control Register 1 */
  130. #define SPRN_DBSR 0x3F0 /* Debug Status Register */
  131. #define   DBSR_IC     0x80000000 /* Instruction Completion             */
  132. #define   DBSR_TIE     0x10000000 /* Trap Instruction debug Event       */
  133. #define SPRN_DCCR 0x3FA /* Data Cache Cacheability Register */
  134. #define   DCCR_NOCACHE 0 /* Noncacheable */
  135. #define   DCCR_CACHE 1 /* Cacheable */
  136. #define SPRN_DCMP 0x3D1 /* Data TLB Compare Register */
  137. #define SPRN_DCWR 0x3BA /* Data Cache Write-thru Register */
  138. #define   DCWR_COPY 0 /* Copy-back */
  139. #define   DCWR_WRITE 1 /* Write-through */
  140. #define SPRN_DEAR 0x3D5 /* Data Error Address Register */
  141. #define SPRN_DEC 0x016 /* Decrement Register */
  142. #define SPRN_DER 0x095 /* Debug Enable Regsiter */
  143. #define   DER_RSTE 0x40000000 /* Reset Interrupt */
  144. #define   DER_CHSTPE 0x20000000 /* Check Stop */
  145. #define   DER_MCIE 0x10000000 /* Machine Check Interrupt */
  146. #define   DER_EXTIE 0x02000000 /* External Interrupt */
  147. #define   DER_ALIE 0x01000000 /* Alignment Interrupt */
  148. #define   DER_PRIE 0x00800000 /* Program Interrupt */
  149. #define   DER_FPUVIE 0x00400000 /* FP Unavailable Interrupt */
  150. #define   DER_DECIE 0x00200000 /* Decrementer Interrupt */
  151. #define   DER_SYSIE 0x00040000 /* System Call Interrupt */
  152. #define   DER_TRE 0x00020000 /* Trace Interrupt */
  153. #define   DER_SEIE 0x00004000 /* FP SW Emulation Interrupt */
  154. #define   DER_ITLBMSE 0x00002000 /* Imp. Spec. Instruction TLB Miss */
  155. #define   DER_ITLBERE 0x00001000 /* Imp. Spec. Instruction TLB Error */
  156. #define   DER_DTLBMSE 0x00000800 /* Imp. Spec. Data TLB Miss */
  157. #define   DER_DTLBERE 0x00000400 /* Imp. Spec. Data TLB Error */
  158. #define   DER_LBRKE 0x00000008 /* Load/Store Breakpoint Interrupt */
  159. #define   DER_IBRKE 0x00000004 /* Instruction Breakpoint Interrupt */
  160. #define   DER_EBRKE 0x00000002 /* External Breakpoint Interrupt */
  161. #define   DER_DPIE 0x00000001 /* Dev. Port Nonmaskable Request */
  162. #define SPRN_DMISS 0x3D0 /* Data TLB Miss Register */
  163. #define SPRN_DSISR 0x012 /* Data Storage Interrupt Status Register */
  164. #define SPRN_EAR 0x11A /* External Address Register */
  165. #define SPRN_ESR 0x3D4 /* Exception Syndrome Register */
  166. #define   ESR_IMCP 0x80000000 /* Instr. Machine Check - Protection */
  167. #define   ESR_IMCN 0x40000000 /* Instr. Machine Check - Non-config */
  168. #define   ESR_IMCB 0x20000000 /* Instr. Machine Check - Bus error */
  169. #define   ESR_IMCT 0x10000000 /* Instr. Machine Check - Timeout */
  170. #define   ESR_PIL 0x08000000 /* Program Exception - Illegal */
  171. #define   ESR_PPR 0x04000000 /* Program Exception - Priveleged */
  172. #define   ESR_PTR 0x02000000 /* Program Exception - Trap */
  173. #define   ESR_DST 0x00800000 /* Storage Exception - Data miss */
  174. #define   ESR_DIZ 0x00400000 /* Storage Exception - Zone fault */
  175. #define SPRN_EVPR 0x3D6 /* Exception Vector Prefix Register */
  176. #define SPRN_HASH1 0x3D2 /* Primary Hash Address Register */
  177. #define SPRN_HASH2 0x3D3 /* Secondary Hash Address Resgister */
  178. #define SPRN_HID0 0x3F0 /* Hardware Implementation Register 0 */
  179. #define   HID0_EMCP (1<<31) /* Enable Machine Check pin */
  180. #define   HID0_EBA (1<<29) /* Enable Bus Address Parity */
  181. #define   HID0_EBD (1<<28) /* Enable Bus Data Parity */
  182. #define   HID0_SBCLK (1<<27)
  183. #define   HID0_EICE (1<<26)
  184. #define   HID0_ECLK (1<<25)
  185. #define   HID0_PAR (1<<24)
  186. #define   HID0_DOZE (1<<23)
  187. #define   HID0_NAP (1<<22)
  188. #define   HID0_SLEEP (1<<21)
  189. #define   HID0_DPM (1<<20)
  190. #define   HID0_ICE (1<<15) /* Instruction Cache Enable */
  191. #define   HID0_DCE (1<<14) /* Data Cache Enable */
  192. #define   HID0_ILOCK (1<<13) /* Instruction Cache Lock */
  193. #define   HID0_DLOCK (1<<12) /* Data Cache Lock */
  194. #define   HID0_ICFI (1<<11) /* Instr. Cache Flash Invalidate */
  195. #define   HID0_DCI (1<<10) /* Data Cache Invalidate */
  196. #define   HID0_SPD (1<<9) /* Speculative disable */
  197. #define   HID0_SGE (1<<7) /* Store Gathering Enable */
  198. #define   HID0_SIED (1<<7) /* Serial Instr. Execution [Disable] */
  199. #define   HID0_DFCA (1<<6) /* Data Cache Flush Assist */
  200. #define   HID0_BTIC (1<<5) /* Branch Target Instruction Cache Enable */
  201. #define   HID0_ABE (1<<3) /* Address Broadcast Enable */
  202. #define   HID0_FOLD (1<<3) /* Branch Folding enable - 7450 */
  203. #define   HID0_BHTE (1<<2) /* Branch History Table Enable */
  204. #define   HID0_BTCD (1<<1) /* Branch target cache disable */
  205. #define   HID0_NOPDST (1<<1) /* No-op dst, dstt, etc. instr. */
  206. #define   HID0_NOPTI (1<<0) /* No-op dcbt and dcbst instr. */
  207. #define SPRN_HID1 0x3F1 /* Hardware Implementation Register 1 */
  208. #define SPRN_IABR 0x3F2 /* Instruction Address Breakpoint Register */
  209. #define SPRN_IAC1 0x3F4 /* Instruction Address Compare 1 */
  210. #define SPRN_IAC2 0x3F5 /* Instruction Address Compare 2 */
  211. #define SPRN_IBAT0L 0x211 /* Instruction BAT 0 Lower Register */
  212. #define SPRN_IBAT0U 0x210 /* Instruction BAT 0 Upper Register */
  213. #define SPRN_IBAT1L 0x213 /* Instruction BAT 1 Lower Register */
  214. #define SPRN_IBAT1U 0x212 /* Instruction BAT 1 Upper Register */
  215. #define SPRN_IBAT2L 0x215 /* Instruction BAT 2 Lower Register */
  216. #define SPRN_IBAT2U 0x214 /* Instruction BAT 2 Upper Register */
  217. #define SPRN_IBAT3L 0x217 /* Instruction BAT 3 Lower Register */
  218. #define SPRN_IBAT3U 0x216 /* Instruction BAT 3 Upper Register */
  219. #define SPRN_ICCR 0x3FB /* Instruction Cache Cacheability Register */
  220. #define   ICCR_NOCACHE 0 /* Noncacheable */
  221. #define   ICCR_CACHE 1 /* Cacheable */
  222. #define SPRN_ICDBDR 0x3D3 /* Instruction Cache Debug Data Register */
  223. #define SPRN_ICMP 0x3D5 /* Instruction TLB Compare Register */
  224. #define SPRN_ICTC 0x3FB /* Instruction Cache Throttling Control Reg */
  225. #define SPRN_IMISS 0x3D4 /* Instruction TLB Miss Register */
  226. #define SPRN_IMMR 0x27E   /* Internal Memory Map Register */
  227. #define SPRN_L2CR 0x3F9 /* Level 2 Cache Control Regsiter */
  228. #define L2CR_L2E 0x80000000 /* L2 enable */
  229. #define L2CR_L2PE 0x40000000 /* L2 parity enable */
  230. #define L2CR_L2SIZ_MASK 0x30000000 /* L2 size mask */
  231. #define L2CR_L2SIZ_256KB 0x10000000 /* L2 size 256KB */
  232. #define L2CR_L2SIZ_512KB 0x20000000 /* L2 size 512KB */
  233. #define L2CR_L2SIZ_1MB 0x30000000 /* L2 size 1MB */
  234. #define L2CR_L2CLK_MASK 0x0e000000 /* L2 clock mask */
  235. #define L2CR_L2CLK_DISABLED 0x00000000 /* L2 clock disabled */
  236. #define L2CR_L2CLK_DIV1 0x02000000 /* L2 clock / 1 */
  237. #define L2CR_L2CLK_DIV1_5 0x04000000 /* L2 clock / 1.5 */
  238. #define L2CR_L2CLK_DIV2 0x08000000 /* L2 clock / 2 */
  239. #define L2CR_L2CLK_DIV2_5 0x0a000000 /* L2 clock / 2.5 */
  240. #define L2CR_L2CLK_DIV3 0x0c000000 /* L2 clock / 3 */
  241. #define L2CR_L2RAM_MASK 0x01800000 /* L2 RAM type mask */
  242. #define L2CR_L2RAM_FLOW 0x00000000 /* L2 RAM flow through */
  243. #define L2CR_L2RAM_PIPE 0x01000000 /* L2 RAM pipelined */
  244. #define L2CR_L2RAM_PIPE_LW 0x01800000 /* L2 RAM pipelined latewr */
  245. #define L2CR_L2DO 0x00400000 /* L2 data only */
  246. #define L2CR_L2I 0x00200000 /* L2 global invalidate */
  247. #define L2CR_L2CTL 0x00100000 /* L2 RAM control */
  248. #define L2CR_L2WT 0x00080000 /* L2 write-through */
  249. #define L2CR_L2TS 0x00040000 /* L2 test support */
  250. #define L2CR_L2OH_MASK 0x00030000 /* L2 output hold mask */
  251. #define L2CR_L2OH_0_5 0x00000000 /* L2 output hold 0.5 ns */
  252. #define L2CR_L2OH_1_0 0x00010000 /* L2 output hold 1.0 ns */
  253. #define L2CR_L2SL 0x00008000 /* L2 DLL slow */
  254. #define L2CR_L2DF 0x00004000 /* L2 differential clock */
  255. #define L2CR_L2BYP 0x00002000 /* L2 DLL bypass */
  256. #define L2CR_L2IP 0x00000001 /* L2 GI in progress */
  257. #define SPRN_L2CR2      0x3f8
  258. #define SPRN_L3CR 0x3FA /* Level 3 Cache Control Regsiter (7450) */
  259. #define L3CR_L3E 0x80000000 /* L3 enable */
  260. #define SPRN_MSSCR0 0x3f6 /* Memory Subsystem Control Register 0 */
  261. #define SPRN_MSSSR0 0x3f7 /* Memory Subsystem Status Register 1 */
  262. #define SPRN_ICTRL 0x3f3 /* Instruction Cache & Interrupt control reg */
  263. #define SPRN_LDSTCR 0x3f8 /* Load/Store control register */
  264. #define SPRN_LDSTDB 0x3f4 /* */
  265. #define SPRN_LR 0x008 /* Link Register */
  266. #define SPRN_MMCR0 0x3B8 /* Monitor Mode Control Register 0 */
  267. #define SPRN_MMCR1 0x3BC /* Monitor Mode Control Register 1 */
  268. #define SPRN_PBL1 0x3FC /* Protection Bound Lower 1 */
  269. #define SPRN_PBL2 0x3FE /* Protection Bound Lower 2 */
  270. #define SPRN_PBU1 0x3FD /* Protection Bound Upper 1 */
  271. #define SPRN_PBU2 0x3FF /* Protection Bound Upper 2 */
  272. #define SPRN_PID 0x3B1 /* Process ID */
  273. #define SPRN_PIR 0x3FF /* Processor Identification Register */
  274. #define SPRN_PIT 0x3DB /* Programmable Interval Timer */
  275. #define SPRN_PMC1 0x3B9 /* Performance Counter Register 1 */
  276. #define SPRN_PMC2 0x3BA /* Performance Counter Register 2 */
  277. #define SPRN_PMC3 0x3BD /* Performance Counter Register 3 */
  278. #define SPRN_PMC4 0x3BE /* Performance Counter Register 4 */
  279. #define SPRN_PVR 0x11F /* Processor Version Register */
  280. #define SPRN_RPA 0x3D6 /* Required Physical Address Register */
  281. #define SPRN_SDA 0x3BF /* Sampled Data Address Register */
  282. #define SPRN_SDR1 0x019 /* MMU Hash Base Register */
  283. #define SPRN_SGR 0x3B9 /* Storage Guarded Register */
  284. #define   SGR_NORMAL 0
  285. #define   SGR_GUARDED 1
  286. #define SPRN_SIA 0x3BB /* Sampled Instruction Address Register */
  287. #define SPRN_SPRG0 0x110 /* Special Purpose Register General 0 */
  288. #define SPRN_SPRG1 0x111 /* Special Purpose Register General 1 */
  289. #define SPRN_SPRG2 0x112 /* Special Purpose Register General 2 */
  290. #define SPRN_SPRG3 0x113 /* Special Purpose Register General 3 */
  291. #define SPRN_SPRG4 0x114 /* Special Purpose Register General 4 (4xx) */
  292. #define SPRN_SPRG5 0x115 /* Special Purpose Register General 5 (4xx) */
  293. #define SPRN_SPRG6 0x116 /* Special Purpose Register General 6 (4xx) */
  294. #define SPRN_SPRG7 0x117 /* Special Purpose Register General 7 (4xx) */
  295. #define SPRN_SRR0 0x01A /* Save/Restore Register 0 */
  296. #define SPRN_SRR1 0x01B /* Save/Restore Register 1 */
  297. #define SPRN_SRR2 0x3DE /* Save/Restore Register 2 */
  298. #define SPRN_SRR3  0x3DF /* Save/Restore Register 3 */
  299. #define SPRN_TBRL 0x10C /* Time Base Read Lower Register (user, R/O) */
  300. #define SPRN_TBRU 0x10D /* Time Base Read Upper Register (user, R/O) */
  301. #define SPRN_TBWL 0x11C /* Time Base Lower Register (supervisor, R/W) */
  302. #define SPRN_TBWU 0x11D /* Time Base Upper Register (supervisor, R/W) */
  303. #define SPRN_TCR 0x3DA /* Timer Control Register */
  304. #define   TCR_WP(x) (((x)&0x3)<<30) /* WDT Period */
  305. #define     WP_2_17 0 /* 2^17 clocks */
  306. #define     WP_2_21 1 /* 2^21 clocks */
  307. #define     WP_2_25 2 /* 2^25 clocks */
  308. #define     WP_2_29 3 /* 2^29 clocks */
  309. #define   TCR_WRC(x) (((x)&0x3)<<28) /* WDT Reset Control */
  310. #define     WRC_NONE 0 /* No reset will occur */
  311. #define     WRC_CORE 1 /* Core reset will occur */
  312. #define     WRC_CHIP 2 /* Chip reset will occur */
  313. #define     WRC_SYSTEM 3 /* System reset will occur */
  314. #define   TCR_WIE 0x08000000 /* WDT Interrupt Enable */
  315. #define   TCR_PIE 0x04000000 /* PIT Interrupt Enable */
  316. #define   TCR_FP(x) (((x)&0x3)<<24) /* FIT Period */
  317. #define     FP_2_9 0 /* 2^9 clocks */
  318. #define     FP_2_13 1 /* 2^13 clocks */
  319. #define     FP_2_17 2 /* 2^17 clocks */
  320. #define     FP_2_21 3 /* 2^21 clocks */
  321. #define   TCR_FIE 0x00800000 /* FIT Interrupt Enable */
  322. #define   TCR_ARE 0x00400000 /* Auto Reload Enable */
  323. #define SPRN_THRM1 0x3FC /* Thermal Management Register 1 */
  324. /* these bits were defined in inverted endian sense originally, ugh, confusing */
  325. #define   THRM1_TIN (1 << 31)
  326. #define   THRM1_TIV (1 << 30)
  327. #define   THRM1_THRES(x) ((x&0x7f)<<23)
  328. #define   THRM3_SITV(x) ((x&0x3fff)<<1)
  329. #define   THRM1_TID (1<<2)
  330. #define   THRM1_TIE (1<<1)
  331. #define   THRM1_V (1<<0)
  332. #define SPRN_THRM2 0x3FD /* Thermal Management Register 2 */
  333. #define SPRN_THRM3 0x3FE /* Thermal Management Register 3 */
  334. #define   THRM3_E (1<<0)
  335. #define SPRN_TSR 0x3D8 /* Timer Status Register */
  336. #define   TSR_ENW 0x80000000 /* Enable Next Watchdog */
  337. #define   TSR_WIS 0x40000000 /* WDT Interrupt Status */
  338. #define   TSR_WRS(x) (((x)&0x3)<<28) /* WDT Reset Status */
  339. #define     WRS_NONE 0 /* No WDT reset occurred */
  340. #define     WRS_CORE 1 /* WDT forced core reset */
  341. #define     WRS_CHIP 2 /* WDT forced chip reset */
  342. #define     WRS_SYSTEM 3 /* WDT forced system reset */
  343. #define   TSR_PIS 0x08000000 /* PIT Interrupt Status */
  344. #define   TSR_FIS 0x04000000 /* FIT Interrupt Status */
  345. #define SPRN_UMMCR0 0x3A8 /* User Monitor Mode Control Register 0 */
  346. #define SPRN_UMMCR1 0x3AC /* User Monitor Mode Control Register 0 */
  347. #define SPRN_UPMC1 0x3A9 /* User Performance Counter Register 1 */
  348. #define SPRN_UPMC2 0x3AA /* User Performance Counter Register 2 */
  349. #define SPRN_UPMC3 0x3AD /* User Performance Counter Register 3 */
  350. #define SPRN_UPMC4 0x3AE /* User Performance Counter Register 4 */
  351. #define SPRN_USIA 0x3AB /* User Sampled Instruction Address Register */
  352. #define SPRN_VRSAVE 0x100 /* Vector Register Save Register */
  353. #define SPRN_XER 0x001 /* Fixed Point Exception Register */
  354. #define SPRN_ZPR 0x3B0 /* Zone Protection Register */
  355. /* Short-hand versions for a number of the above SPRNs */
  356. #define CTR SPRN_CTR /* Counter Register */
  357. #define DAR SPRN_DAR /* Data Address Register */
  358. #define DABR SPRN_DABR /* Data Address Breakpoint Register */
  359. #define DBAT0L SPRN_DBAT0L /* Data BAT 0 Lower Register */
  360. #define DBAT0U SPRN_DBAT0U /* Data BAT 0 Upper Register */
  361. #define DBAT1L SPRN_DBAT1L /* Data BAT 1 Lower Register */
  362. #define DBAT1U SPRN_DBAT1U /* Data BAT 1 Upper Register */
  363. #define DBAT2L SPRN_DBAT2L /* Data BAT 2 Lower Register */
  364. #define DBAT2U SPRN_DBAT2U /* Data BAT 2 Upper Register */
  365. #define DBAT3L SPRN_DBAT3L /* Data BAT 3 Lower Register */
  366. #define DBAT3U SPRN_DBAT3U /* Data BAT 3 Upper Register */
  367. #define DCMP SPRN_DCMP       /* Data TLB Compare Register */
  368. #define DEC SPRN_DEC        /* Decrement Register */
  369. #define DMISS SPRN_DMISS      /* Data TLB Miss Register */
  370. #define DSISR SPRN_DSISR /* Data Storage Interrupt Status Register */
  371. #define EAR SPRN_EAR        /* External Address Register */
  372. #define HASH1 SPRN_HASH1 /* Primary Hash Address Register */
  373. #define HASH2 SPRN_HASH2 /* Secondary Hash Address Register */
  374. #define HID0 SPRN_HID0 /* Hardware Implementation Register 0 */
  375. #define HID1 SPRN_HID1 /* Hardware Implementation Register 1 */
  376. #define IABR SPRN_IABR       /* Instruction Address Breakpoint Register */
  377. #define IBAT0L SPRN_IBAT0L /* Instruction BAT 0 Lower Register */
  378. #define IBAT0U SPRN_IBAT0U /* Instruction BAT 0 Upper Register */
  379. #define IBAT1L SPRN_IBAT1L /* Instruction BAT 1 Lower Register */
  380. #define IBAT1U SPRN_IBAT1U /* Instruction BAT 1 Upper Register */
  381. #define IBAT2L SPRN_IBAT2L /* Instruction BAT 2 Lower Register */
  382. #define IBAT2U SPRN_IBAT2U /* Instruction BAT 2 Upper Register */
  383. #define IBAT3L SPRN_IBAT3L /* Instruction BAT 3 Lower Register */
  384. #define IBAT3U SPRN_IBAT3U /* Instruction BAT 3 Upper Register */
  385. #define ICMP SPRN_ICMP /* Instruction TLB Compare Register */
  386. #define IMISS SPRN_IMISS /* Instruction TLB Miss Register */
  387. #define IMMR SPRN_IMMR       /* PPC 860/821 Internal Memory Map Register */
  388. #define L2CR SPRN_L2CR     /* PPC 750 L2 control register */
  389. #define LR SPRN_LR
  390. #define PVR SPRN_PVR /* Processor Version */
  391. #define RPA SPRN_RPA /* Required Physical Address Register */
  392. #define SDR1 SPRN_SDR1       /* MMU hash base register */
  393. #define SPR0 SPRN_SPRG0 /* Supervisor Private Registers */
  394. #define SPR1 SPRN_SPRG1
  395. #define SPR2 SPRN_SPRG2
  396. #define SPR3 SPRN_SPRG3
  397. #define SPR4 SPRN_SPRG4 /* Supervisor Private Registers (4xx) */
  398. #define SPR5 SPRN_SPRG5
  399. #define SPR6 SPRN_SPRG6
  400. #define SPR7 SPRN_SPRG7
  401. #define SPRG0   SPRN_SPRG0
  402. #define SPRG1   SPRN_SPRG1
  403. #define SPRG2   SPRN_SPRG2
  404. #define SPRG3   SPRN_SPRG3
  405. #define SPRG4   SPRN_SPRG4
  406. #define SPRG5   SPRN_SPRG5
  407. #define SPRG6   SPRN_SPRG6
  408. #define SPRG7   SPRN_SPRG7
  409. #define SRR0 SPRN_SRR0 /* Save and Restore Register 0 */
  410. #define SRR1 SPRN_SRR1 /* Save and Restore Register 1 */
  411. #define TBRL SPRN_TBRL /* Time Base Read Lower Register */
  412. #define TBRU SPRN_TBRU /* Time Base Read Upper Register */
  413. #define TBWL SPRN_TBWL /* Time Base Write Lower Register */
  414. #define TBWU SPRN_TBWU /* Time Base Write Upper Register */
  415. #define ICTC 1019
  416. #define THRM1 SPRN_THRM1 /* Thermal Management Register 1 */
  417. #define THRM2 SPRN_THRM2 /* Thermal Management Register 2 */
  418. #define THRM3 SPRN_THRM3 /* Thermal Management Register 3 */
  419. #define XER SPRN_XER
  420. /* Processor Version Register */
  421. /* Processor Version Register (PVR) field extraction */
  422. #define PVR_VER(pvr)  (((pvr) >>  16) & 0xFFFF) /* Version field */
  423. #define PVR_REV(pvr)  (((pvr) >>   0) & 0xFFFF) /* Revison field */
  424. /*
  425.  * IBM has further subdivided the standard PowerPC 16-bit version and
  426.  * revision subfields of the PVR for the PowerPC 403s into the following:
  427.  */
  428. #define PVR_FAM(pvr) (((pvr) >> 20) & 0xFFF) /* Family field */
  429. #define PVR_MEM(pvr) (((pvr) >> 16) & 0xF) /* Member field */
  430. #define PVR_CORE(pvr) (((pvr) >> 12) & 0xF) /* Core field */
  431. #define PVR_CFG(pvr) (((pvr) >>  8) & 0xF) /* Configuration field */
  432. #define PVR_MAJ(pvr) (((pvr) >>  4) & 0xF) /* Major revision field */
  433. #define PVR_MIN(pvr) (((pvr) >>  0) & 0xF) /* Minor revision field */
  434. /* Processor Version Numbers */
  435. #define PVR_403GA 0x00200000
  436. #define PVR_403GB 0x00200100
  437. #define PVR_403GC 0x00200200
  438. #define PVR_403GCX 0x00201400
  439. #define PVR_405GP 0x40110000
  440. #define PVR_STB03XXX 0x40310000 
  441. #define PVR_601 0x00010000
  442. #define PVR_602 0x00050000
  443. #define PVR_603 0x00030000
  444. #define PVR_603e 0x00060000
  445. #define PVR_603ev 0x00070000
  446. #define PVR_603r 0x00071000
  447. #define PVR_604 0x00040000
  448. #define PVR_604e 0x00090000
  449. #define PVR_604r 0x000A0000
  450. #define PVR_620 0x00140000
  451. #define PVR_740 0x00080000
  452. #define PVR_750 PVR_740
  453. #define PVR_740P 0x10080000
  454. #define PVR_750P PVR_740P
  455. #define PVR_7400 0x000C0000
  456. #define PVR_7410 0x800C0000
  457. /*
  458.  * For the 8xx processors, all of them report the same PVR family for
  459.  * the PowerPC core. The various versions of these processors must be
  460.  * differentiated by the version number in the Communication Processor
  461.  * Module (CPM).
  462.  */
  463. #define PVR_821 0x00500000
  464. #define PVR_823 PVR_821
  465. #define PVR_850 PVR_821
  466. #define PVR_860 PVR_821
  467. #define PVR_8240 0x00810100
  468. #define PVR_8260 PVR_8240
  469. /* We only need to define a new _MACH_xxx for machines which are part of
  470.  * a configuration which supports more than one type of different machine.
  471.  * This is currently limited to CONFIG_ALL_PPC and CHRP/PReP/PMac. -- Tom
  472.  */
  473. #define _MACH_prep 0x00000001
  474. #define _MACH_Pmac 0x00000002 /* pmac or pmac clone (non-chrp) */
  475. #define _MACH_chrp 0x00000004 /* chrp machine */
  476. /* see residual.h for these */
  477. #define _PREP_Motorola 0x01  /* motorola prep */
  478. #define _PREP_Firm     0x02  /* firmworks prep */
  479. #define _PREP_IBM      0x00  /* ibm prep */
  480. #define _PREP_Bull     0x03  /* bull prep */
  481. /* these are arbitrary */
  482. #define _CHRP_Motorola 0x04  /* motorola chrp, the cobra */
  483. #define _CHRP_IBM      0x05  /* IBM chrp, the longtrail and longtrail 2 */
  484. #define _GLOBAL(n)
  485. .globl n;
  486. n:
  487. /* Macros for setting and retrieving special purpose registers */
  488. #define stringify(s) tostring(s)
  489. #define tostring(s) #s
  490. #define mfdcr(rn) ({unsigned int rval; 
  491. asm volatile("mfdcr %0," stringify(rn) 
  492.      : "=r" (rval)); rval;})
  493. #define mtdcr(rn, v) asm volatile("mtdcr " stringify(rn) ",%0" : : "r" (v))
  494. #define mfmsr() ({unsigned int rval; 
  495. asm volatile("mfmsr %0" : "=r" (rval)); rval;})
  496. #define mtmsr(v) asm volatile("mtmsr %0" : : "r" (v))
  497. #define mfspr(rn) ({unsigned int rval; 
  498. asm volatile("mfspr %0," stringify(rn) 
  499.      : "=r" (rval)); rval;})
  500. #define mtspr(rn, v) asm volatile("mtspr " stringify(rn) ",%0" : : "r" (v))
  501. /* Segment Registers */
  502. #define SR0 0
  503. #define SR1 1
  504. #define SR2 2
  505. #define SR3 3
  506. #define SR4 4
  507. #define SR5 5
  508. #define SR6 6
  509. #define SR7 7
  510. #define SR8 8
  511. #define SR9 9
  512. #define SR10 10
  513. #define SR11 11
  514. #define SR12 12
  515. #define SR13 13
  516. #define SR14 14
  517. #define SR15 15
  518. #ifndef __ASSEMBLY__
  519. #if defined(CONFIG_ALL_PPC)
  520. extern int _machine;
  521. /* what kind of prep workstation we are */
  522. extern int _prep_type;
  523. /*
  524.  * This is used to identify the board type from a given PReP board
  525.  * vendor. Board revision is also made available.
  526.  */
  527. extern unsigned char ucSystemType;
  528. extern unsigned char ucBoardRev;
  529. extern unsigned char ucBoardRevMaj, ucBoardRevMin;
  530. #else
  531. #define _machine 0
  532. #endif /* CONFIG_ALL_PPC */
  533. struct task_struct;
  534. void start_thread(struct pt_regs *regs, unsigned long nip, unsigned long sp);
  535. void release_thread(struct task_struct *);
  536. /*
  537.  * Create a new kernel thread.
  538.  */
  539. extern long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
  540. /*
  541.  * Bus types
  542.  */
  543. #define EISA_bus 0
  544. #define EISA_bus__is_a_macro /* for versions in ksyms.c */
  545. #define MCA_bus 0
  546. #define MCA_bus__is_a_macro /* for versions in ksyms.c */
  547. /* Lazy FPU handling on uni-processor */
  548. extern struct task_struct *last_task_used_math;
  549. extern struct task_struct *last_task_used_altivec;
  550. /*
  551.  * this is the minimum allowable io space due to the location
  552.  * of the io areas on prep (first one at 0x80000000) but
  553.  * as soon as I get around to remapping the io areas with the BATs
  554.  * to match the mac we can raise this. -- Cort
  555.  */
  556. #define TASK_SIZE (0x80000000UL)
  557. /* This decides where the kernel will search for a free chunk of vm
  558.  * space during mmap's.
  559.  */
  560. #define TASK_UNMAPPED_BASE (TASK_SIZE / 8 * 3)
  561. typedef struct {
  562. unsigned long seg;
  563. } mm_segment_t;
  564. struct thread_struct {
  565. unsigned long ksp; /* Kernel stack pointer */
  566. unsigned long wchan; /* Event task is sleeping on */
  567. struct pt_regs *regs; /* Pointer to saved register state */
  568. mm_segment_t fs; /* for get_fs() validation */
  569. void *pgdir; /* root of page-table tree */
  570. signed long     last_syscall;
  571. double fpr[32]; /* Complete floating point set */
  572. unsigned long fpscr_pad; /* fpr ... fpscr must be contiguous */
  573. unsigned long fpscr; /* Floating point status */
  574. #ifdef CONFIG_ALTIVEC
  575. vector128 vr[32]; /* Complete AltiVec set */
  576. vector128 vscr; /* AltiVec status */
  577. unsigned long vrsave;
  578. #endif /* CONFIG_ALTIVEC */
  579. };
  580. #define INIT_SP (sizeof(init_stack) + (unsigned long) &init_stack)
  581. #define INIT_THREAD  { 
  582. INIT_SP, /* ksp */ 
  583. 0, /* wchan */ 
  584. 0, /* regs */ 
  585. KERNEL_DS, /*fs*/ 
  586. swapper_pg_dir, /* pgdir */ 
  587. 0, /* last_syscall */ 
  588. {0}, 0, 0 
  589. }
  590. /*
  591.  * Return saved PC of a blocked thread. For now, this is the "user" PC
  592.  */
  593. static inline unsigned long thread_saved_pc(struct thread_struct *t)
  594. {
  595. return (t->regs) ? t->regs->nip : 0;
  596. }
  597. #define copy_segments(tsk, mm) do { } while (0)
  598. #define release_segments(mm) do { } while (0)
  599. unsigned long get_wchan(struct task_struct *p);
  600. #define KSTK_EIP(tsk)  ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0)
  601. #define KSTK_ESP(tsk)  ((tsk)->thread.regs? (tsk)->thread.regs->gpr[1]: 0)
  602. /*
  603.  * NOTE! The task struct and the stack go together
  604.  */
  605. #define THREAD_SIZE (2*PAGE_SIZE)
  606. #define alloc_task_struct() 
  607. ((struct task_struct *) __get_free_pages(GFP_KERNEL,1))
  608. #define free_task_struct(p) free_pages((unsigned long)(p),1)
  609. #define get_task_struct(tsk)      atomic_inc(&virt_to_page(tsk)->count)
  610. /* in process.c - for early bootup debug -- Cort */
  611. int ll_printk(const char *, ...);
  612. void ll_puts(const char *);
  613. #define init_task (init_task_union.task)
  614. #define init_stack (init_task_union.stack)
  615. /* In misc.c */
  616. void _nmask_and_or_msr(unsigned long nmask, unsigned long or_val);
  617. #define cpu_relax() do { } while (0)
  618. /*
  619.  * Prefetch macros.
  620.  */
  621. #define ARCH_HAS_PREFETCH
  622. #define ARCH_HAS_PREFETCHW
  623. #define ARCH_HAS_SPINLOCK_PREFETCH
  624. extern inline void prefetch(const void *x)
  625. {
  626.  __asm__ __volatile__ ("dcbt 0,%0" : : "r" (x));
  627. }
  628. extern inline void prefetchw(const void *x)
  629. {
  630.  __asm__ __volatile__ ("dcbtst 0,%0" : : "r" (x));
  631. }
  632. #define spin_lock_prefetch(x) prefetchw(x)
  633. #endif /* !__ASSEMBLY__ */
  634. #define have_of (_machine == _MACH_chrp || _machine == _MACH_Pmac)
  635. #endif /* __ASM_PPC_PROCESSOR_H */
  636. #endif /* __KERNEL__ */