1a47a12beSStefan Roese #ifndef __ASM_PPC_PROCESSOR_H 2a47a12beSStefan Roese #define __ASM_PPC_PROCESSOR_H 3a47a12beSStefan Roese 4a47a12beSStefan Roese /* 5a47a12beSStefan Roese * Default implementation of macro that returns current 6a47a12beSStefan Roese * instruction pointer ("program counter"). 7a47a12beSStefan Roese */ 8a47a12beSStefan Roese #define current_text_addr() ({ __label__ _l; _l: &&_l;}) 9a47a12beSStefan Roese 10a47a12beSStefan Roese #include <asm/ptrace.h> 11a47a12beSStefan Roese #include <asm/types.h> 12a47a12beSStefan Roese 13a47a12beSStefan Roese /* Machine State Register (MSR) Fields */ 14a47a12beSStefan Roese 15a47a12beSStefan Roese #ifdef CONFIG_PPC64BRIDGE 16a47a12beSStefan Roese #define MSR_SF (1<<63) 17a47a12beSStefan Roese #define MSR_ISF (1<<61) 18a47a12beSStefan Roese #endif /* CONFIG_PPC64BRIDGE */ 19a47a12beSStefan Roese #define MSR_UCLE (1<<26) /* User-mode cache lock enable (e500) */ 20a47a12beSStefan Roese #define MSR_VEC (1<<25) /* Enable AltiVec(74xx) */ 21a47a12beSStefan Roese #define MSR_SPE (1<<25) /* Enable SPE(e500) */ 22a47a12beSStefan Roese #define MSR_POW (1<<18) /* Enable Power Management */ 23a47a12beSStefan Roese #define MSR_WE (1<<18) /* Wait State Enable */ 24a47a12beSStefan Roese #define MSR_TGPR (1<<17) /* TLB Update registers in use */ 25a47a12beSStefan Roese #define MSR_CE (1<<17) /* Critical Interrupt Enable */ 26a47a12beSStefan Roese #define MSR_ILE (1<<16) /* Interrupt Little Endian */ 27a47a12beSStefan Roese #define MSR_EE (1<<15) /* External Interrupt Enable */ 28a47a12beSStefan Roese #define MSR_PR (1<<14) /* Problem State / Privilege Level */ 29a47a12beSStefan Roese #define MSR_FP (1<<13) /* Floating Point enable */ 30a47a12beSStefan Roese #define MSR_ME (1<<12) /* Machine Check Enable */ 31a47a12beSStefan Roese #define MSR_FE0 (1<<11) /* Floating Exception mode 0 */ 32a47a12beSStefan Roese #define MSR_SE (1<<10) /* Single Step */ 33a47a12beSStefan Roese #define MSR_DWE (1<<10) /* Debug Wait Enable (4xx) */ 34a47a12beSStefan Roese #define MSR_UBLE (1<<10) /* BTB lock enable (e500) */ 35a47a12beSStefan Roese #define MSR_BE (1<<9) /* Branch Trace */ 36a47a12beSStefan Roese #define MSR_DE (1<<9) /* Debug Exception Enable */ 37a47a12beSStefan Roese #define MSR_FE1 (1<<8) /* Floating Exception mode 1 */ 38a47a12beSStefan Roese #define MSR_IP (1<<6) /* Exception prefix 0x000/0xFFF */ 39a47a12beSStefan Roese #define MSR_IR (1<<5) /* Instruction Relocate */ 40a47a12beSStefan Roese #define MSR_IS (1<<5) /* Book E Instruction space */ 41a47a12beSStefan Roese #define MSR_DR (1<<4) /* Data Relocate */ 42a47a12beSStefan Roese #define MSR_DS (1<<4) /* Book E Data space */ 43a47a12beSStefan Roese #define MSR_PE (1<<3) /* Protection Enable */ 44a47a12beSStefan Roese #define MSR_PX (1<<2) /* Protection Exclusive Mode */ 45a47a12beSStefan Roese #define MSR_PMM (1<<2) /* Performance monitor mark bit (e500) */ 46a47a12beSStefan Roese #define MSR_RI (1<<1) /* Recoverable Exception */ 47a47a12beSStefan Roese #define MSR_LE (1<<0) /* Little Endian */ 48a47a12beSStefan Roese 49a47a12beSStefan Roese #ifdef CONFIG_APUS_FAST_EXCEPT 50a47a12beSStefan Roese #define MSR_ MSR_ME|MSR_IP|MSR_RI 51a47a12beSStefan Roese #else 52a47a12beSStefan Roese #define MSR_ MSR_ME|MSR_RI 53a47a12beSStefan Roese #endif 54a47a12beSStefan Roese #ifndef CONFIG_E500 55a47a12beSStefan Roese #define MSR_KERNEL MSR_|MSR_IR|MSR_DR 56a47a12beSStefan Roese #else 57a47a12beSStefan Roese #define MSR_KERNEL MSR_ME 58a47a12beSStefan Roese #endif 59a47a12beSStefan Roese 60a47a12beSStefan Roese /* Floating Point Status and Control Register (FPSCR) Fields */ 61a47a12beSStefan Roese 62a47a12beSStefan Roese #define FPSCR_FX 0x80000000 /* FPU exception summary */ 63a47a12beSStefan Roese #define FPSCR_FEX 0x40000000 /* FPU enabled exception summary */ 64a47a12beSStefan Roese #define FPSCR_VX 0x20000000 /* Invalid operation summary */ 65a47a12beSStefan Roese #define FPSCR_OX 0x10000000 /* Overflow exception summary */ 66a47a12beSStefan Roese #define FPSCR_UX 0x08000000 /* Underflow exception summary */ 67a47a12beSStefan Roese #define FPSCR_ZX 0x04000000 /* Zero-devide exception summary */ 68a47a12beSStefan Roese #define FPSCR_XX 0x02000000 /* Inexact exception summary */ 69a47a12beSStefan Roese #define FPSCR_VXSNAN 0x01000000 /* Invalid op for SNaN */ 70a47a12beSStefan Roese #define FPSCR_VXISI 0x00800000 /* Invalid op for Inv - Inv */ 71a47a12beSStefan Roese #define FPSCR_VXIDI 0x00400000 /* Invalid op for Inv / Inv */ 72a47a12beSStefan Roese #define FPSCR_VXZDZ 0x00200000 /* Invalid op for Zero / Zero */ 73a47a12beSStefan Roese #define FPSCR_VXIMZ 0x00100000 /* Invalid op for Inv * Zero */ 74a47a12beSStefan Roese #define FPSCR_VXVC 0x00080000 /* Invalid op for Compare */ 75a47a12beSStefan Roese #define FPSCR_FR 0x00040000 /* Fraction rounded */ 76a47a12beSStefan Roese #define FPSCR_FI 0x00020000 /* Fraction inexact */ 77a47a12beSStefan Roese #define FPSCR_FPRF 0x0001f000 /* FPU Result Flags */ 78a47a12beSStefan Roese #define FPSCR_FPCC 0x0000f000 /* FPU Condition Codes */ 79a47a12beSStefan Roese #define FPSCR_VXSOFT 0x00000400 /* Invalid op for software request */ 80a47a12beSStefan Roese #define FPSCR_VXSQRT 0x00000200 /* Invalid op for square root */ 81a47a12beSStefan Roese #define FPSCR_VXCVI 0x00000100 /* Invalid op for integer convert */ 82a47a12beSStefan Roese #define FPSCR_VE 0x00000080 /* Invalid op exception enable */ 83a47a12beSStefan Roese #define FPSCR_OE 0x00000040 /* IEEE overflow exception enable */ 84a47a12beSStefan Roese #define FPSCR_UE 0x00000020 /* IEEE underflow exception enable */ 85a47a12beSStefan Roese #define FPSCR_ZE 0x00000010 /* IEEE zero divide exception enable */ 86a47a12beSStefan Roese #define FPSCR_XE 0x00000008 /* FP inexact exception enable */ 87a47a12beSStefan Roese #define FPSCR_NI 0x00000004 /* FPU non IEEE-Mode */ 88a47a12beSStefan Roese #define FPSCR_RN 0x00000003 /* FPU rounding control */ 89a47a12beSStefan Roese 90a47a12beSStefan Roese /* Special Purpose Registers (SPRNs)*/ 91a47a12beSStefan Roese 92a47a12beSStefan Roese #define SPRN_CCR0 0x3B3 /* Core Configuration Register 0 */ 93a47a12beSStefan Roese #ifdef CONFIG_BOOKE 94a47a12beSStefan Roese #define SPRN_CCR1 0x378 /* Core Configuration Register for 440 only */ 95a47a12beSStefan Roese #endif 96a47a12beSStefan Roese #define SPRN_CDBCR 0x3D7 /* Cache Debug Control Register */ 97a47a12beSStefan Roese #define SPRN_CTR 0x009 /* Count Register */ 98a47a12beSStefan Roese #define SPRN_DABR 0x3F5 /* Data Address Breakpoint Register */ 99a47a12beSStefan Roese #ifndef CONFIG_BOOKE 100a47a12beSStefan Roese #define SPRN_DAC1 0x3F6 /* Data Address Compare 1 */ 101a47a12beSStefan Roese #define SPRN_DAC2 0x3F7 /* Data Address Compare 2 */ 102a47a12beSStefan Roese #else 103a47a12beSStefan Roese #define SPRN_DAC1 0x13C /* Book E Data Address Compare 1 */ 104a47a12beSStefan Roese #define SPRN_DAC2 0x13D /* Book E Data Address Compare 2 */ 105a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 106a47a12beSStefan Roese #define SPRN_DAR 0x013 /* Data Address Register */ 107a47a12beSStefan Roese #define SPRN_DBAT0L 0x219 /* Data BAT 0 Lower Register */ 108a47a12beSStefan Roese #define SPRN_DBAT0U 0x218 /* Data BAT 0 Upper Register */ 109a47a12beSStefan Roese #define SPRN_DBAT1L 0x21B /* Data BAT 1 Lower Register */ 110a47a12beSStefan Roese #define SPRN_DBAT1U 0x21A /* Data BAT 1 Upper Register */ 111a47a12beSStefan Roese #define SPRN_DBAT2L 0x21D /* Data BAT 2 Lower Register */ 112a47a12beSStefan Roese #define SPRN_DBAT2U 0x21C /* Data BAT 2 Upper Register */ 113a47a12beSStefan Roese #define SPRN_DBAT3L 0x21F /* Data BAT 3 Lower Register */ 114a47a12beSStefan Roese #define SPRN_DBAT3U 0x21E /* Data BAT 3 Upper Register */ 115a47a12beSStefan Roese #define SPRN_DBAT4L 0x239 /* Data BAT 4 Lower Register */ 116a47a12beSStefan Roese #define SPRN_DBAT4U 0x238 /* Data BAT 4 Upper Register */ 117a47a12beSStefan Roese #define SPRN_DBAT5L 0x23B /* Data BAT 5 Lower Register */ 118a47a12beSStefan Roese #define SPRN_DBAT5U 0x23A /* Data BAT 5 Upper Register */ 119a47a12beSStefan Roese #define SPRN_DBAT6L 0x23D /* Data BAT 6 Lower Register */ 120a47a12beSStefan Roese #define SPRN_DBAT6U 0x23C /* Data BAT 6 Upper Register */ 121a47a12beSStefan Roese #define SPRN_DBAT7L 0x23F /* Data BAT 7 Lower Register */ 122a47a12beSStefan Roese #define SPRN_DBAT7U 0x23E /* Data BAT 7 Lower Register */ 123a47a12beSStefan Roese #define SPRN_DBCR 0x3F2 /* Debug Control Regsiter */ 124a47a12beSStefan Roese #define DBCR_EDM 0x80000000 125a47a12beSStefan Roese #define DBCR_IDM 0x40000000 126a47a12beSStefan Roese #define DBCR_RST(x) (((x) & 0x3) << 28) 127a47a12beSStefan Roese #define DBCR_RST_NONE 0 128a47a12beSStefan Roese #define DBCR_RST_CORE 1 129a47a12beSStefan Roese #define DBCR_RST_CHIP 2 130a47a12beSStefan Roese #define DBCR_RST_SYSTEM 3 131a47a12beSStefan Roese #define DBCR_IC 0x08000000 /* Instruction Completion Debug Evnt */ 132a47a12beSStefan Roese #define DBCR_BT 0x04000000 /* Branch Taken Debug Event */ 133a47a12beSStefan Roese #define DBCR_EDE 0x02000000 /* Exception Debug Event */ 134a47a12beSStefan Roese #define DBCR_TDE 0x01000000 /* TRAP Debug Event */ 135a47a12beSStefan Roese #define DBCR_FER 0x00F80000 /* First Events Remaining Mask */ 136a47a12beSStefan Roese #define DBCR_FT 0x00040000 /* Freeze Timers on Debug Event */ 137a47a12beSStefan Roese #define DBCR_IA1 0x00020000 /* Instr. Addr. Compare 1 Enable */ 138a47a12beSStefan Roese #define DBCR_IA2 0x00010000 /* Instr. Addr. Compare 2 Enable */ 139a47a12beSStefan Roese #define DBCR_D1R 0x00008000 /* Data Addr. Compare 1 Read Enable */ 140a47a12beSStefan Roese #define DBCR_D1W 0x00004000 /* Data Addr. Compare 1 Write Enable */ 141a47a12beSStefan Roese #define DBCR_D1S(x) (((x) & 0x3) << 12) /* Data Adrr. Compare 1 Size */ 142a47a12beSStefan Roese #define DAC_BYTE 0 143a47a12beSStefan Roese #define DAC_HALF 1 144a47a12beSStefan Roese #define DAC_WORD 2 145a47a12beSStefan Roese #define DAC_QUAD 3 146a47a12beSStefan Roese #define DBCR_D2R 0x00000800 /* Data Addr. Compare 2 Read Enable */ 147a47a12beSStefan Roese #define DBCR_D2W 0x00000400 /* Data Addr. Compare 2 Write Enable */ 148a47a12beSStefan Roese #define DBCR_D2S(x) (((x) & 0x3) << 8) /* Data Addr. Compare 2 Size */ 149a47a12beSStefan Roese #define DBCR_SBT 0x00000040 /* Second Branch Taken Debug Event */ 150a47a12beSStefan Roese #define DBCR_SED 0x00000020 /* Second Exception Debug Event */ 151a47a12beSStefan Roese #define DBCR_STD 0x00000010 /* Second Trap Debug Event */ 152a47a12beSStefan Roese #define DBCR_SIA 0x00000008 /* Second IAC Enable */ 153a47a12beSStefan Roese #define DBCR_SDA 0x00000004 /* Second DAC Enable */ 154a47a12beSStefan Roese #define DBCR_JOI 0x00000002 /* JTAG Serial Outbound Int. Enable */ 155a47a12beSStefan Roese #define DBCR_JII 0x00000001 /* JTAG Serial Inbound Int. Enable */ 156a47a12beSStefan Roese #ifndef CONFIG_BOOKE 157a47a12beSStefan Roese #define SPRN_DBCR0 0x3F2 /* Debug Control Register 0 */ 158a47a12beSStefan Roese #else 159a47a12beSStefan Roese #define SPRN_DBCR0 0x134 /* Book E Debug Control Register 0 */ 160a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 161a47a12beSStefan Roese #ifndef CONFIG_BOOKE 162a47a12beSStefan Roese #define SPRN_DBCR1 0x3BD /* Debug Control Register 1 */ 163a47a12beSStefan Roese #define SPRN_DBSR 0x3F0 /* Debug Status Register */ 164a47a12beSStefan Roese #else 165a47a12beSStefan Roese #define SPRN_DBCR1 0x135 /* Book E Debug Control Register 1 */ 166a47a12beSStefan Roese #ifdef CONFIG_BOOKE 167a47a12beSStefan Roese #define SPRN_DBDR 0x3f3 /* Debug Data Register */ 168a47a12beSStefan Roese #endif 169a47a12beSStefan Roese #define SPRN_DBSR 0x130 /* Book E Debug Status Register */ 170a47a12beSStefan Roese #define DBSR_IC 0x08000000 /* Book E Instruction Completion */ 171a47a12beSStefan Roese #define DBSR_TIE 0x01000000 /* Book E Trap Instruction Event */ 172a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 173a47a12beSStefan Roese #define SPRN_DCCR 0x3FA /* Data Cache Cacheability Register */ 174a47a12beSStefan Roese #define DCCR_NOCACHE 0 /* Noncacheable */ 175a47a12beSStefan Roese #define DCCR_CACHE 1 /* Cacheable */ 176a47a12beSStefan Roese #ifndef CONFIG_BOOKE 177a47a12beSStefan Roese #define SPRN_DCDBTRL 0x39c /* Data Cache Debug Tag Register Low */ 178a47a12beSStefan Roese #define SPRN_DCDBTRH 0x39d /* Data Cache Debug Tag Register High */ 179a47a12beSStefan Roese #endif 180a47a12beSStefan Roese #define SPRN_DCMP 0x3D1 /* Data TLB Compare Register */ 181a47a12beSStefan Roese #define SPRN_DCWR 0x3BA /* Data Cache Write-thru Register */ 182a47a12beSStefan Roese #define DCWR_COPY 0 /* Copy-back */ 183a47a12beSStefan Roese #define DCWR_WRITE 1 /* Write-through */ 184a47a12beSStefan Roese #ifndef CONFIG_BOOKE 185a47a12beSStefan Roese #define SPRN_DEAR 0x3D5 /* Data Error Address Register */ 186a47a12beSStefan Roese #else 187a47a12beSStefan Roese #define SPRN_DEAR 0x03D /* Book E Data Error Address Register */ 188a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 189a47a12beSStefan Roese #define SPRN_DEC 0x016 /* Decrement Register */ 190a47a12beSStefan Roese #define SPRN_DMISS 0x3D0 /* Data TLB Miss Register */ 191a47a12beSStefan Roese #ifdef CONFIG_BOOKE 192a47a12beSStefan Roese #define SPRN_DNV0 0x390 /* Data Cache Normal Victim 0 */ 193a47a12beSStefan Roese #define SPRN_DNV1 0x391 /* Data Cache Normal Victim 1 */ 194a47a12beSStefan Roese #define SPRN_DNV2 0x392 /* Data Cache Normal Victim 2 */ 195a47a12beSStefan Roese #define SPRN_DNV3 0x393 /* Data Cache Normal Victim 3 */ 196a47a12beSStefan Roese #endif 197a47a12beSStefan Roese #define SPRN_DSISR 0x012 /* Data Storage Interrupt Status Register */ 198a47a12beSStefan Roese #ifdef CONFIG_BOOKE 199a47a12beSStefan Roese #define SPRN_DTV0 0x394 /* Data Cache Transient Victim 0 */ 200a47a12beSStefan Roese #define SPRN_DTV1 0x395 /* Data Cache Transient Victim 1 */ 201a47a12beSStefan Roese #define SPRN_DTV2 0x396 /* Data Cache Transient Victim 2 */ 202a47a12beSStefan Roese #define SPRN_DTV3 0x397 /* Data Cache Transient Victim 3 */ 203a47a12beSStefan Roese #define SPRN_DVLIM 0x398 /* Data Cache Victim Limit */ 204a47a12beSStefan Roese #endif 205a47a12beSStefan Roese #define SPRN_EAR 0x11A /* External Address Register */ 206a47a12beSStefan Roese #ifndef CONFIG_BOOKE 207a47a12beSStefan Roese #define SPRN_ESR 0x3D4 /* Exception Syndrome Register */ 208a47a12beSStefan Roese #else 209a47a12beSStefan Roese #define SPRN_ESR 0x03E /* Book E Exception Syndrome Register */ 210a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 211a47a12beSStefan Roese #define ESR_IMCP 0x80000000 /* Instr. Machine Check - Protection */ 212a47a12beSStefan Roese #define ESR_IMCN 0x40000000 /* Instr. Machine Check - Non-config */ 213a47a12beSStefan Roese #define ESR_IMCB 0x20000000 /* Instr. Machine Check - Bus error */ 214a47a12beSStefan Roese #define ESR_IMCT 0x10000000 /* Instr. Machine Check - Timeout */ 215a47a12beSStefan Roese #define ESR_PIL 0x08000000 /* Program Exception - Illegal */ 216a47a12beSStefan Roese #define ESR_PPR 0x04000000 /* Program Exception - Priveleged */ 217a47a12beSStefan Roese #define ESR_PTR 0x02000000 /* Program Exception - Trap */ 218a47a12beSStefan Roese #define ESR_DST 0x00800000 /* Storage Exception - Data miss */ 219a47a12beSStefan Roese #define ESR_DIZ 0x00400000 /* Storage Exception - Zone fault */ 220a47a12beSStefan Roese #define SPRN_EVPR 0x3D6 /* Exception Vector Prefix Register */ 221a47a12beSStefan Roese #define SPRN_HASH1 0x3D2 /* Primary Hash Address Register */ 222a47a12beSStefan Roese #define SPRN_HASH2 0x3D3 /* Secondary Hash Address Resgister */ 223a47a12beSStefan Roese #define SPRN_HID0 0x3F0 /* Hardware Implementation Register 0 */ 224a47a12beSStefan Roese 225a47a12beSStefan Roese #define HID0_ICE_SHIFT 15 226a47a12beSStefan Roese #define HID0_DCE_SHIFT 14 227a47a12beSStefan Roese #define HID0_DLOCK_SHIFT 12 228a47a12beSStefan Roese 229a47a12beSStefan Roese #define HID0_EMCP (1<<31) /* Enable Machine Check pin */ 230a47a12beSStefan Roese #define HID0_EBA (1<<29) /* Enable Bus Address Parity */ 231a47a12beSStefan Roese #define HID0_EBD (1<<28) /* Enable Bus Data Parity */ 232a47a12beSStefan Roese #define HID0_SBCLK (1<<27) 233a47a12beSStefan Roese #define HID0_EICE (1<<26) 234a47a12beSStefan Roese #define HID0_ECLK (1<<25) 235a47a12beSStefan Roese #define HID0_PAR (1<<24) 236a47a12beSStefan Roese #define HID0_DOZE (1<<23) 237a47a12beSStefan Roese #define HID0_NAP (1<<22) 238a47a12beSStefan Roese #define HID0_SLEEP (1<<21) 239a47a12beSStefan Roese #define HID0_DPM (1<<20) 240a47a12beSStefan Roese #define HID0_ICE (1<<HID0_ICE_SHIFT) /* Instruction Cache Enable */ 241a47a12beSStefan Roese #define HID0_DCE (1<<HID0_DCE_SHIFT) /* Data Cache Enable */ 242a47a12beSStefan Roese #define HID0_TBEN (1<<14) /* Time Base Enable */ 243a47a12beSStefan Roese #define HID0_ILOCK (1<<13) /* Instruction Cache Lock */ 244a47a12beSStefan Roese #define HID0_DLOCK (1<<HID0_DLOCK_SHIFT) /* Data Cache Lock */ 245a47a12beSStefan Roese #define HID0_ICFI (1<<11) /* Instr. Cache Flash Invalidate */ 246a47a12beSStefan Roese #define HID0_DCFI (1<<10) /* Data Cache Flash Invalidate */ 247a47a12beSStefan Roese #define HID0_DCI HID0_DCFI 248a47a12beSStefan Roese #define HID0_SPD (1<<9) /* Speculative disable */ 249a47a12beSStefan Roese #define HID0_ENMAS7 (1<<7) /* Enable MAS7 Update for 36-bit phys */ 250a47a12beSStefan Roese #define HID0_SGE (1<<7) /* Store Gathering Enable */ 251a47a12beSStefan Roese #define HID0_SIED HID_SGE /* Serial Instr. Execution [Disable] */ 252a47a12beSStefan Roese #define HID0_DCFA (1<<6) /* Data Cache Flush Assist */ 253a47a12beSStefan Roese #define HID0_BTIC (1<<5) /* Branch Target Instruction Cache Enable */ 254a47a12beSStefan Roese #define HID0_ABE (1<<3) /* Address Broadcast Enable */ 255a47a12beSStefan Roese #define HID0_BHTE (1<<2) /* Branch History Table Enable */ 256a47a12beSStefan Roese #define HID0_BTCD (1<<1) /* Branch target cache disable */ 257a47a12beSStefan Roese #define SPRN_HID1 0x3F1 /* Hardware Implementation Register 1 */ 258a47a12beSStefan Roese #define HID1_RFXE (1<<17) /* Read Fault Exception Enable */ 259a47a12beSStefan Roese #define HID1_ASTME (1<<13) /* Address bus streaming mode */ 260a47a12beSStefan Roese #define HID1_ABE (1<<12) /* Address broadcast enable */ 261a47a12beSStefan Roese #define HID1_MBDD (1<<6) /* optimized sync instruction */ 262a47a12beSStefan Roese #define SPRN_IABR 0x3F2 /* Instruction Address Breakpoint Register */ 263a47a12beSStefan Roese #ifndef CONFIG_BOOKE 264a47a12beSStefan Roese #define SPRN_IAC1 0x3F4 /* Instruction Address Compare 1 */ 265a47a12beSStefan Roese #define SPRN_IAC2 0x3F5 /* Instruction Address Compare 2 */ 266a47a12beSStefan Roese #else 267a47a12beSStefan Roese #define SPRN_IAC1 0x138 /* Book E Instruction Address Compare 1 */ 268a47a12beSStefan Roese #define SPRN_IAC2 0x139 /* Book E Instruction Address Compare 2 */ 269a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 270a47a12beSStefan Roese #define SPRN_IBAT0L 0x211 /* Instruction BAT 0 Lower Register */ 271a47a12beSStefan Roese #define SPRN_IBAT0U 0x210 /* Instruction BAT 0 Upper Register */ 272a47a12beSStefan Roese #define SPRN_IBAT1L 0x213 /* Instruction BAT 1 Lower Register */ 273a47a12beSStefan Roese #define SPRN_IBAT1U 0x212 /* Instruction BAT 1 Upper Register */ 274a47a12beSStefan Roese #define SPRN_IBAT2L 0x215 /* Instruction BAT 2 Lower Register */ 275a47a12beSStefan Roese #define SPRN_IBAT2U 0x214 /* Instruction BAT 2 Upper Register */ 276a47a12beSStefan Roese #define SPRN_IBAT3L 0x217 /* Instruction BAT 3 Lower Register */ 277a47a12beSStefan Roese #define SPRN_IBAT3U 0x216 /* Instruction BAT 3 Upper Register */ 278a47a12beSStefan Roese #define SPRN_IBAT4L 0x231 /* Instruction BAT 4 Lower Register */ 279a47a12beSStefan Roese #define SPRN_IBAT4U 0x230 /* Instruction BAT 4 Upper Register */ 280a47a12beSStefan Roese #define SPRN_IBAT5L 0x233 /* Instruction BAT 5 Lower Register */ 281a47a12beSStefan Roese #define SPRN_IBAT5U 0x232 /* Instruction BAT 5 Upper Register */ 282a47a12beSStefan Roese #define SPRN_IBAT6L 0x235 /* Instruction BAT 6 Lower Register */ 283a47a12beSStefan Roese #define SPRN_IBAT6U 0x234 /* Instruction BAT 6 Upper Register */ 284a47a12beSStefan Roese #define SPRN_IBAT7L 0x237 /* Instruction BAT 7 Lower Register */ 285a47a12beSStefan Roese #define SPRN_IBAT7U 0x236 /* Instruction BAT 7 Upper Register */ 286a47a12beSStefan Roese #define SPRN_ICCR 0x3FB /* Instruction Cache Cacheability Register */ 287a47a12beSStefan Roese #define ICCR_NOCACHE 0 /* Noncacheable */ 288a47a12beSStefan Roese #define ICCR_CACHE 1 /* Cacheable */ 289a47a12beSStefan Roese #define SPRN_ICDBDR 0x3D3 /* Instruction Cache Debug Data Register */ 290a47a12beSStefan Roese #ifdef CONFIG_BOOKE 291a47a12beSStefan Roese #define SPRN_ICDBTRL 0x39e /* instruction cache debug tag register low */ 292a47a12beSStefan Roese #define SPRN_ICDBTRH 0x39f /* instruction cache debug tag register high */ 293a47a12beSStefan Roese #endif 294a47a12beSStefan Roese #define SPRN_ICMP 0x3D5 /* Instruction TLB Compare Register */ 295a47a12beSStefan Roese #define SPRN_ICTC 0x3FB /* Instruction Cache Throttling Control Reg */ 296a47a12beSStefan Roese #define SPRN_IMISS 0x3D4 /* Instruction TLB Miss Register */ 297a47a12beSStefan Roese #define SPRN_IMMR 0x27E /* Internal Memory Map Register */ 298a47a12beSStefan Roese #ifdef CONFIG_BOOKE 299a47a12beSStefan Roese #define SPRN_INV0 0x370 /* Instruction Cache Normal Victim 0 */ 300a47a12beSStefan Roese #define SPRN_INV1 0x371 /* Instruction Cache Normal Victim 1 */ 301a47a12beSStefan Roese #define SPRN_INV2 0x372 /* Instruction Cache Normal Victim 2 */ 302a47a12beSStefan Roese #define SPRN_INV3 0x373 /* Instruction Cache Normal Victim 3 */ 303a47a12beSStefan Roese #define SPRN_ITV0 0x374 /* Instruction Cache Transient Victim 0 */ 304a47a12beSStefan Roese #define SPRN_ITV1 0x375 /* Instruction Cache Transient Victim 1 */ 305a47a12beSStefan Roese #define SPRN_ITV2 0x376 /* Instruction Cache Transient Victim 2 */ 306a47a12beSStefan Roese #define SPRN_ITV3 0x377 /* Instruction Cache Transient Victim 3 */ 307a47a12beSStefan Roese #define SPRN_IVLIM 0x399 /* Instruction Cache Victim Limit */ 308a47a12beSStefan Roese #endif 309a47a12beSStefan Roese #define SPRN_LDSTCR 0x3F8 /* Load/Store Control Register */ 310a47a12beSStefan Roese #define SPRN_L2CR 0x3F9 /* Level 2 Cache Control Regsiter */ 311a47a12beSStefan Roese #define SPRN_LR 0x008 /* Link Register */ 312a47a12beSStefan Roese #define SPRN_MBAR 0x137 /* System memory base address */ 313a47a12beSStefan Roese #define SPRN_MMCR0 0x3B8 /* Monitor Mode Control Register 0 */ 314a47a12beSStefan Roese #define SPRN_MMCR1 0x3BC /* Monitor Mode Control Register 1 */ 315a47a12beSStefan Roese #ifdef CONFIG_BOOKE 316a47a12beSStefan Roese #define SPRN_MMUCR 0x3b2 /* MMU Control Register */ 317a47a12beSStefan Roese #endif 318a47a12beSStefan Roese #define SPRN_PBL1 0x3FC /* Protection Bound Lower 1 */ 319a47a12beSStefan Roese #define SPRN_PBL2 0x3FE /* Protection Bound Lower 2 */ 320a47a12beSStefan Roese #define SPRN_PBU1 0x3FD /* Protection Bound Upper 1 */ 321a47a12beSStefan Roese #define SPRN_PBU2 0x3FF /* Protection Bound Upper 2 */ 322a47a12beSStefan Roese #ifndef CONFIG_BOOKE 323a47a12beSStefan Roese #define SPRN_PID 0x3B1 /* Process ID */ 324a47a12beSStefan Roese #define SPRN_PIR 0x3FF /* Processor Identification Register */ 325a47a12beSStefan Roese #else 326a47a12beSStefan Roese #define SPRN_PID 0x030 /* Book E Process ID */ 327a47a12beSStefan Roese #define SPRN_PIR 0x11E /* Book E Processor Identification Register */ 328a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 329a47a12beSStefan Roese #define SPRN_PIT 0x3DB /* Programmable Interval Timer */ 330a47a12beSStefan Roese #define SPRN_PMC1 0x3B9 /* Performance Counter Register 1 */ 331a47a12beSStefan Roese #define SPRN_PMC2 0x3BA /* Performance Counter Register 2 */ 332a47a12beSStefan Roese #define SPRN_PMC3 0x3BD /* Performance Counter Register 3 */ 333a47a12beSStefan Roese #define SPRN_PMC4 0x3BE /* Performance Counter Register 4 */ 334a47a12beSStefan Roese #define SPRN_PVR 0x11F /* Processor Version Register */ 335a47a12beSStefan Roese #define SPRN_RPA 0x3D6 /* Required Physical Address Register */ 336a47a12beSStefan Roese #ifdef CONFIG_BOOKE 337a47a12beSStefan Roese #define SPRN_RSTCFG 0x39b /* Reset Configuration */ 338a47a12beSStefan Roese #endif 339a47a12beSStefan Roese #define SPRN_SDA 0x3BF /* Sampled Data Address Register */ 340a47a12beSStefan Roese #define SPRN_SDR1 0x019 /* MMU Hash Base Register */ 341a47a12beSStefan Roese #define SPRN_SGR 0x3B9 /* Storage Guarded Register */ 342a47a12beSStefan Roese #define SGR_NORMAL 0 343a47a12beSStefan Roese #define SGR_GUARDED 1 344a47a12beSStefan Roese #define SPRN_SIA 0x3BB /* Sampled Instruction Address Register */ 345a47a12beSStefan Roese #define SPRN_SPRG0 0x110 /* Special Purpose Register General 0 */ 346a47a12beSStefan Roese #define SPRN_SPRG1 0x111 /* Special Purpose Register General 1 */ 347a47a12beSStefan Roese #define SPRN_SPRG2 0x112 /* Special Purpose Register General 2 */ 348a47a12beSStefan Roese #define SPRN_SPRG3 0x113 /* Special Purpose Register General 3 */ 349a47a12beSStefan Roese #define SPRN_SPRG4 0x114 /* Special Purpose Register General 4 */ 350a47a12beSStefan Roese #define SPRN_SPRG5 0x115 /* Special Purpose Register General 5 */ 351a47a12beSStefan Roese #define SPRN_SPRG6 0x116 /* Special Purpose Register General 6 */ 352a47a12beSStefan Roese #define SPRN_SPRG7 0x117 /* Special Purpose Register General 7 */ 353a47a12beSStefan Roese #define SPRN_SRR0 0x01A /* Save/Restore Register 0 */ 354a47a12beSStefan Roese #define SPRN_SRR1 0x01B /* Save/Restore Register 1 */ 355a47a12beSStefan Roese #define SPRN_SRR2 0x3DE /* Save/Restore Register 2 */ 356a47a12beSStefan Roese #define SPRN_SRR3 0x3DF /* Save/Restore Register 3 */ 357a47a12beSStefan Roese 358a47a12beSStefan Roese #ifdef CONFIG_BOOKE 359a47a12beSStefan Roese #define SPRN_SVR 0x3FF /* System Version Register */ 360a47a12beSStefan Roese #else 361a47a12beSStefan Roese #define SPRN_SVR 0x11E /* System Version Register */ 362a47a12beSStefan Roese #endif 363a47a12beSStefan Roese #define SPRN_TBHI 0x3DC /* Time Base High */ 364a47a12beSStefan Roese #define SPRN_TBHU 0x3CC /* Time Base High User-mode */ 365a47a12beSStefan Roese #define SPRN_TBLO 0x3DD /* Time Base Low */ 366a47a12beSStefan Roese #define SPRN_TBLU 0x3CD /* Time Base Low User-mode */ 367a47a12beSStefan Roese #define SPRN_TBRL 0x10C /* Time Base Read Lower Register */ 368a47a12beSStefan Roese #define SPRN_TBRU 0x10D /* Time Base Read Upper Register */ 369a47a12beSStefan Roese #define SPRN_TBWL 0x11C /* Time Base Write Lower Register */ 370a47a12beSStefan Roese #define SPRN_TBWU 0x11D /* Time Base Write Upper Register */ 371a47a12beSStefan Roese #ifndef CONFIG_BOOKE 372a47a12beSStefan Roese #define SPRN_TCR 0x3DA /* Timer Control Register */ 373a47a12beSStefan Roese #else 374a47a12beSStefan Roese #define SPRN_TCR 0x154 /* Book E Timer Control Register */ 375a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 37660b29567SBoschung, Rainer #ifdef CONFIG_E500MC 37760b29567SBoschung, Rainer #define TCR_WP(x) (((64-x)&0x3)<<30)| \ 37860b29567SBoschung, Rainer (((64-x)&0x3c)<<15) /* WDT Period 2^x clocks*/ 37960b29567SBoschung, Rainer #else 380a47a12beSStefan Roese #define TCR_WP(x) (((x)&0x3)<<30) /* WDT Period */ 381a47a12beSStefan Roese #define WP_2_17 0 /* 2^17 clocks */ 382a47a12beSStefan Roese #define WP_2_21 1 /* 2^21 clocks */ 383a47a12beSStefan Roese #define WP_2_25 2 /* 2^25 clocks */ 384a47a12beSStefan Roese #define WP_2_29 3 /* 2^29 clocks */ 38560b29567SBoschung, Rainer #endif /* CONFIG_E500 */ 386a47a12beSStefan Roese #define TCR_WRC(x) (((x)&0x3)<<28) /* WDT Reset Control */ 387a47a12beSStefan Roese #define WRC_NONE 0 /* No reset will occur */ 388a47a12beSStefan Roese #define WRC_CORE 1 /* Core reset will occur */ 389a47a12beSStefan Roese #define WRC_CHIP 2 /* Chip reset will occur */ 390a47a12beSStefan Roese #define WRC_SYSTEM 3 /* System reset will occur */ 391a47a12beSStefan Roese #define TCR_WIE 0x08000000 /* WDT Interrupt Enable */ 392a47a12beSStefan Roese #define TCR_PIE 0x04000000 /* PIT Interrupt Enable */ 393a47a12beSStefan Roese #define TCR_FP(x) (((x)&0x3)<<24) /* FIT Period */ 394a47a12beSStefan Roese #define FP_2_9 0 /* 2^9 clocks */ 395a47a12beSStefan Roese #define FP_2_13 1 /* 2^13 clocks */ 396a47a12beSStefan Roese #define FP_2_17 2 /* 2^17 clocks */ 397a47a12beSStefan Roese #define FP_2_21 3 /* 2^21 clocks */ 398a47a12beSStefan Roese #define TCR_FIE 0x00800000 /* FIT Interrupt Enable */ 399a47a12beSStefan Roese #define TCR_ARE 0x00400000 /* Auto Reload Enable */ 400a47a12beSStefan Roese #define SPRN_THRM1 0x3FC /* Thermal Management Register 1 */ 401a47a12beSStefan Roese #define THRM1_TIN (1<<0) 402a47a12beSStefan Roese #define THRM1_TIV (1<<1) 403a47a12beSStefan Roese #define THRM1_THRES (0x7f<<2) 404a47a12beSStefan Roese #define THRM1_TID (1<<29) 405a47a12beSStefan Roese #define THRM1_TIE (1<<30) 406a47a12beSStefan Roese #define THRM1_V (1<<31) 407a47a12beSStefan Roese #define SPRN_THRM2 0x3FD /* Thermal Management Register 2 */ 408a47a12beSStefan Roese #define SPRN_THRM3 0x3FE /* Thermal Management Register 3 */ 409a47a12beSStefan Roese #define THRM3_E (1<<31) 410a47a12beSStefan Roese #define SPRN_TLBMISS 0x3D4 /* 980 7450 TLB Miss Register */ 411a47a12beSStefan Roese #ifndef CONFIG_BOOKE 412a47a12beSStefan Roese #define SPRN_TSR 0x3D8 /* Timer Status Register */ 413a47a12beSStefan Roese #else 414a47a12beSStefan Roese #define SPRN_TSR 0x150 /* Book E Timer Status Register */ 415a47a12beSStefan Roese #endif /* CONFIG_BOOKE */ 416a47a12beSStefan Roese #define TSR_ENW 0x80000000 /* Enable Next Watchdog */ 417a47a12beSStefan Roese #define TSR_WIS 0x40000000 /* WDT Interrupt Status */ 418a47a12beSStefan Roese #define TSR_WRS(x) (((x)&0x3)<<28) /* WDT Reset Status */ 419a47a12beSStefan Roese #define WRS_NONE 0 /* No WDT reset occurred */ 420a47a12beSStefan Roese #define WRS_CORE 1 /* WDT forced core reset */ 421a47a12beSStefan Roese #define WRS_CHIP 2 /* WDT forced chip reset */ 422a47a12beSStefan Roese #define WRS_SYSTEM 3 /* WDT forced system reset */ 423a47a12beSStefan Roese #define TSR_PIS 0x08000000 /* PIT Interrupt Status */ 424a47a12beSStefan Roese #define TSR_FIS 0x04000000 /* FIT Interrupt Status */ 425a47a12beSStefan Roese #define SPRN_UMMCR0 0x3A8 /* User Monitor Mode Control Register 0 */ 426a47a12beSStefan Roese #define SPRN_UMMCR1 0x3AC /* User Monitor Mode Control Register 0 */ 427a47a12beSStefan Roese #define SPRN_UPMC1 0x3A9 /* User Performance Counter Register 1 */ 428a47a12beSStefan Roese #define SPRN_UPMC2 0x3AA /* User Performance Counter Register 2 */ 429a47a12beSStefan Roese #define SPRN_UPMC3 0x3AD /* User Performance Counter Register 3 */ 430a47a12beSStefan Roese #define SPRN_UPMC4 0x3AE /* User Performance Counter Register 4 */ 431a47a12beSStefan Roese #define SPRN_USIA 0x3AB /* User Sampled Instruction Address Register */ 432a47a12beSStefan Roese #define SPRN_XER 0x001 /* Fixed Point Exception Register */ 433a47a12beSStefan Roese #define SPRN_ZPR 0x3B0 /* Zone Protection Register */ 434a47a12beSStefan Roese 435a47a12beSStefan Roese /* Book E definitions */ 436a47a12beSStefan Roese #define SPRN_DECAR 0x036 /* Decrementer Auto Reload Register */ 437a47a12beSStefan Roese #define SPRN_CSRR0 0x03A /* Critical SRR0 */ 438a47a12beSStefan Roese #define SPRN_CSRR1 0x03B /* Critical SRR0 */ 439a47a12beSStefan Roese #define SPRN_IVPR 0x03F /* Interrupt Vector Prefix Register */ 440a47a12beSStefan Roese #define SPRN_USPRG0 0x100 /* User Special Purpose Register General 0 */ 441a47a12beSStefan Roese #define SPRN_SPRG4R 0x104 /* Special Purpose Register General 4 Read */ 442a47a12beSStefan Roese #define SPRN_SPRG5R 0x105 /* Special Purpose Register General 5 Read */ 443a47a12beSStefan Roese #define SPRN_SPRG6R 0x106 /* Special Purpose Register General 6 Read */ 444a47a12beSStefan Roese #define SPRN_SPRG7R 0x107 /* Special Purpose Register General 7 Read */ 445a47a12beSStefan Roese #define SPRN_SPRG4W 0x114 /* Special Purpose Register General 4 Write */ 446a47a12beSStefan Roese #define SPRN_SPRG5W 0x115 /* Special Purpose Register General 5 Write */ 447a47a12beSStefan Roese #define SPRN_SPRG6W 0x116 /* Special Purpose Register General 6 Write */ 448a47a12beSStefan Roese #define SPRN_SPRG7W 0x117 /* Special Purpose Register General 7 Write */ 449a47a12beSStefan Roese #define SPRN_DBCR2 0x136 /* Debug Control Register 2 */ 450a47a12beSStefan Roese #define SPRN_IAC3 0x13A /* Instruction Address Compare 3 */ 451a47a12beSStefan Roese #define SPRN_IAC4 0x13B /* Instruction Address Compare 4 */ 452a47a12beSStefan Roese #define SPRN_DVC1 0x13E /* Data Value Compare Register 1 */ 453a47a12beSStefan Roese #define SPRN_DVC2 0x13F /* Data Value Compare Register 2 */ 454a47a12beSStefan Roese #define SPRN_IVOR0 0x190 /* Interrupt Vector Offset Register 0 */ 455a47a12beSStefan Roese #define SPRN_IVOR1 0x191 /* Interrupt Vector Offset Register 1 */ 456a47a12beSStefan Roese #define SPRN_IVOR2 0x192 /* Interrupt Vector Offset Register 2 */ 457a47a12beSStefan Roese #define SPRN_IVOR3 0x193 /* Interrupt Vector Offset Register 3 */ 458a47a12beSStefan Roese #define SPRN_IVOR4 0x194 /* Interrupt Vector Offset Register 4 */ 459a47a12beSStefan Roese #define SPRN_IVOR5 0x195 /* Interrupt Vector Offset Register 5 */ 460a47a12beSStefan Roese #define SPRN_IVOR6 0x196 /* Interrupt Vector Offset Register 6 */ 461a47a12beSStefan Roese #define SPRN_IVOR7 0x197 /* Interrupt Vector Offset Register 7 */ 462a47a12beSStefan Roese #define SPRN_IVOR8 0x198 /* Interrupt Vector Offset Register 8 */ 463a47a12beSStefan Roese #define SPRN_IVOR9 0x199 /* Interrupt Vector Offset Register 9 */ 464a47a12beSStefan Roese #define SPRN_IVOR10 0x19a /* Interrupt Vector Offset Register 10 */ 465a47a12beSStefan Roese #define SPRN_IVOR11 0x19b /* Interrupt Vector Offset Register 11 */ 466a47a12beSStefan Roese #define SPRN_IVOR12 0x19c /* Interrupt Vector Offset Register 12 */ 467a47a12beSStefan Roese #define SPRN_IVOR13 0x19d /* Interrupt Vector Offset Register 13 */ 468a47a12beSStefan Roese #define SPRN_IVOR14 0x19e /* Interrupt Vector Offset Register 14 */ 469a47a12beSStefan Roese #define SPRN_IVOR15 0x19f /* Interrupt Vector Offset Register 15 */ 470a47a12beSStefan Roese #define SPRN_IVOR38 0x1b0 /* Interrupt Vector Offset Register 38 */ 471a47a12beSStefan Roese #define SPRN_IVOR39 0x1b1 /* Interrupt Vector Offset Register 39 */ 472a47a12beSStefan Roese #define SPRN_IVOR40 0x1b2 /* Interrupt Vector Offset Register 40 */ 473a47a12beSStefan Roese #define SPRN_IVOR41 0x1b3 /* Interrupt Vector Offset Register 41 */ 474a47a12beSStefan Roese #define SPRN_GIVOR2 0x1b8 /* Guest Interrupt Vector Offset Register 2 */ 475a47a12beSStefan Roese #define SPRN_GIVOR3 0x1b9 /* Guest Interrupt Vector Offset Register 3 */ 476a47a12beSStefan Roese #define SPRN_GIVOR4 0x1ba /* Guest Interrupt Vector Offset Register 4 */ 477a47a12beSStefan Roese #define SPRN_GIVOR8 0x1bb /* Guest Interrupt Vector Offset Register 8 */ 478a47a12beSStefan Roese #define SPRN_GIVOR13 0x1bc /* Guest Interrupt Vector Offset Register 13 */ 479a47a12beSStefan Roese #define SPRN_GIVOR14 0x1bd /* Guest Interrupt Vector Offset Register 14 */ 480a47a12beSStefan Roese 481a47a12beSStefan Roese /* e500 definitions */ 482a47a12beSStefan Roese #define SPRN_L1CFG0 0x203 /* L1 Cache Configuration Register 0 */ 483a47a12beSStefan Roese #define SPRN_L1CFG1 0x204 /* L1 Cache Configuration Register 1 */ 484a47a12beSStefan Roese #define SPRN_L2CFG0 0x207 /* L2 Cache Configuration Register 0 */ 485a47a12beSStefan Roese #define SPRN_L1CSR0 0x3f2 /* L1 Data Cache Control and Status Register 0 */ 486a47a12beSStefan Roese #define L1CSR0_CPE 0x00010000 /* Data Cache Parity Enable */ 48733eee330SScott Wood #define L1CSR0_CUL 0x00000400 /* (D-)Cache Unable to Lock */ 488a47a12beSStefan Roese #define L1CSR0_DCLFR 0x00000100 /* D-Cache Lock Flash Reset */ 489a47a12beSStefan Roese #define L1CSR0_DCFI 0x00000002 /* Data Cache Flash Invalidate */ 490a47a12beSStefan Roese #define L1CSR0_DCE 0x00000001 /* Data Cache Enable */ 491a47a12beSStefan Roese #define SPRN_L1CSR1 0x3f3 /* L1 Instruction Cache Control and Status Register 1 */ 492a47a12beSStefan Roese #define L1CSR1_CPE 0x00010000 /* Instruction Cache Parity Enable */ 49333eee330SScott Wood #define L1CSR1_ICUL 0x00000400 /* I-Cache Unable to Lock */ 494a47a12beSStefan Roese #define L1CSR1_ICLFR 0x00000100 /* I-Cache Lock Flash Reset */ 495a47a12beSStefan Roese #define L1CSR1_ICFI 0x00000002 /* Instruction Cache Flash Invalidate */ 496a47a12beSStefan Roese #define L1CSR1_ICE 0x00000001 /* Instruction Cache Enable */ 497a47a12beSStefan Roese #define SPRN_L1CSR2 0x25e /* L1 Data Cache Control and Status Register 2 */ 498fd3c9befSKumar Gala #define L1CSR2_DCWS 0x40000000 /* Data Cache Write Shadow */ 49906ad970bSDarwin Dingel #define L1CSR2_DCSTASHID 0x000003ff /* Data Cache Stash ID */ 500a47a12beSStefan Roese #define SPRN_L2CSR0 0x3f9 /* L2 Data Cache Control and Status Register 0 */ 501a47a12beSStefan Roese #define L2CSR0_L2E 0x80000000 /* L2 Cache Enable */ 502a47a12beSStefan Roese #define L2CSR0_L2PE 0x40000000 /* L2 Cache Parity/ECC Enable */ 503a47a12beSStefan Roese #define L2CSR0_L2WP 0x1c000000 /* L2 I/D Way Partioning */ 504a47a12beSStefan Roese #define L2CSR0_L2CM 0x03000000 /* L2 Cache Coherency Mode */ 505a47a12beSStefan Roese #define L2CSR0_L2FI 0x00200000 /* L2 Cache Flash Invalidate */ 506a47a12beSStefan Roese #define L2CSR0_L2IO 0x00100000 /* L2 Cache Instruction Only */ 507a47a12beSStefan Roese #define L2CSR0_L2DO 0x00010000 /* L2 Cache Data Only */ 508a47a12beSStefan Roese #define L2CSR0_L2REP 0x00003000 /* L2 Line Replacement Algo */ 5099cd95ac7SJames Yang 5109cd95ac7SJames Yang /* e6500 */ 5119cd95ac7SJames Yang #define L2CSR0_L2REP_SPLRUAGE 0x00000000 /* L2REP Streaming PLRU with Aging */ 5129cd95ac7SJames Yang #define L2CSR0_L2REP_FIFO 0x00001000 /* L2REP FIFO */ 5139cd95ac7SJames Yang #define L2CSR0_L2REP_SPLRU 0x00002000 /* L2REP Streaming PLRU */ 5149cd95ac7SJames Yang #define L2CSR0_L2REP_PLRU 0x00003000 /* L2REP PLRU */ 5159cd95ac7SJames Yang 5169cd95ac7SJames Yang #define L2CSR0_L2REP_MODE L2CSR0_L2REP_SPLRUAGE 5179cd95ac7SJames Yang 518a47a12beSStefan Roese #define L2CSR0_L2FL 0x00000800 /* L2 Cache Flush */ 519a47a12beSStefan Roese #define L2CSR0_L2LFC 0x00000400 /* L2 Cache Lock Flash Clear */ 520a47a12beSStefan Roese #define L2CSR0_L2LOA 0x00000080 /* L2 Cache Lock Overflow Allocate */ 521a47a12beSStefan Roese #define L2CSR0_L2LO 0x00000020 /* L2 Cache Lock Overflow */ 522a47a12beSStefan Roese #define SPRN_L2CSR1 0x3fa /* L2 Data Cache Control and Status Register 1 */ 523a47a12beSStefan Roese 524a47a12beSStefan Roese #define SPRN_TLB0CFG 0x2B0 /* TLB 0 Config Register */ 525a47a12beSStefan Roese #define SPRN_TLB1CFG 0x2B1 /* TLB 1 Config Register */ 5263ea21536SScott Wood #define TLBnCFG_NENTRY_MASK 0x00000fff 52750cf3d17SKumar Gala #define SPRN_TLB0PS 0x158 /* TLB 0 Page Size Register */ 52850cf3d17SKumar Gala #define SPRN_TLB1PS 0x159 /* TLB 1 Page Size Register */ 529a47a12beSStefan Roese #define SPRN_MMUCSR0 0x3f4 /* MMU control and status register 0 */ 53050cf3d17SKumar Gala #define SPRN_MMUCFG 0x3F7 /* MMU Configuration Register */ 53150cf3d17SKumar Gala #define MMUCFG_MAVN 0x00000003 /* MMU Architecture Version Number */ 53250cf3d17SKumar Gala #define MMUCFG_MAVN_V1 0x00000000 /* v1.0 */ 53350cf3d17SKumar Gala #define MMUCFG_MAVN_V2 0x00000001 /* v2.0 */ 534a47a12beSStefan Roese #define SPRN_MAS0 0x270 /* MMU Assist Register 0 */ 535a47a12beSStefan Roese #define SPRN_MAS1 0x271 /* MMU Assist Register 1 */ 536a47a12beSStefan Roese #define SPRN_MAS2 0x272 /* MMU Assist Register 2 */ 537a47a12beSStefan Roese #define SPRN_MAS3 0x273 /* MMU Assist Register 3 */ 538a47a12beSStefan Roese #define SPRN_MAS4 0x274 /* MMU Assist Register 4 */ 539a47a12beSStefan Roese #define SPRN_MAS5 0x275 /* MMU Assist Register 5 */ 540a47a12beSStefan Roese #define SPRN_MAS6 0x276 /* MMU Assist Register 6 */ 541a47a12beSStefan Roese #define SPRN_MAS7 0x3B0 /* MMU Assist Register 7 */ 542a47a12beSStefan Roese #define SPRN_MAS8 0x155 /* MMU Assist Register 8 */ 543a47a12beSStefan Roese 544a47a12beSStefan Roese #define SPRN_IVOR32 0x210 /* Interrupt Vector Offset Register 32 */ 545a47a12beSStefan Roese #define SPRN_IVOR33 0x211 /* Interrupt Vector Offset Register 33 */ 546a47a12beSStefan Roese #define SPRN_IVOR34 0x212 /* Interrupt Vector Offset Register 34 */ 547a47a12beSStefan Roese #define SPRN_IVOR35 0x213 /* Interrupt Vector Offset Register 35 */ 548a47a12beSStefan Roese #define SPRN_IVOR36 0x214 /* Interrupt Vector Offset Register 36 */ 549a47a12beSStefan Roese #define SPRN_IVOR37 0x215 /* Interrupt Vector Offset Register 37 */ 550a47a12beSStefan Roese #define SPRN_SPEFSCR 0x200 /* SPE & Embedded FP Status & Control */ 551a47a12beSStefan Roese 552a47a12beSStefan Roese #define SPRN_MCSRR0 0x23a /* Machine Check Save and Restore Register 0 */ 553a47a12beSStefan Roese #define SPRN_MCSRR1 0x23b /* Machine Check Save and Restore Register 1 */ 554a47a12beSStefan Roese #define SPRN_BUCSR 0x3f5 /* Branch Control and Status Register */ 555ae391392SKumar Gala #define BUCSR_STAC_EN 0x01000000 /* Segment target addr cache enable */ 556ae391392SKumar Gala #define BUCSR_LS_EN 0x00400000 /* Link stack enable */ 557a47a12beSStefan Roese #define BUCSR_BBFI 0x00000200 /* Branch buffer flash invalidate */ 558a47a12beSStefan Roese #define BUCSR_BPEN 0x00000001 /* Branch prediction enable */ 559ae391392SKumar Gala #define BUCSR_ENABLE (BUCSR_STAC_EN|BUCSR_LS_EN|BUCSR_BBFI|BUCSR_BPEN) 560a47a12beSStefan Roese #define SPRN_BBEAR 0x201 /* Branch Buffer Entry Address Register */ 561a47a12beSStefan Roese #define SPRN_BBTAR 0x202 /* Branch Buffer Target Address Register */ 562a47a12beSStefan Roese #define SPRN_PID1 0x279 /* Process ID Register 1 */ 563a47a12beSStefan Roese #define SPRN_PID2 0x27a /* Process ID Register 2 */ 564a47a12beSStefan Roese #define SPRN_MCSR 0x23c /* Machine Check Syndrome register */ 565a47a12beSStefan Roese #define SPRN_MCAR 0x23d /* Machine Check Address register */ 566a47a12beSStefan Roese #define MCSR_MCS 0x80000000 /* Machine Check Summary */ 567a47a12beSStefan Roese #define MCSR_IB 0x40000000 /* Instruction PLB Error */ 568a47a12beSStefan Roese #define MCSR_DB 0x20000000 /* Data PLB Error */ 569a47a12beSStefan Roese #define MCSR_TLBP 0x08000000 /* TLB Parity Error */ 570a47a12beSStefan Roese #define MCSR_ICP 0x04000000 /* I-Cache Parity Error */ 571a47a12beSStefan Roese #define MCSR_DCSP 0x02000000 /* D-Cache Search Parity Error */ 572a47a12beSStefan Roese #define MCSR_DCFP 0x01000000 /* D-Cache Flush Parity Error */ 573a47a12beSStefan Roese #define MCSR_IMPE 0x00800000 /* Imprecise Machine Check Exception */ 574a47a12beSStefan Roese #define ESR_ST 0x00800000 /* Store Operation */ 575a47a12beSStefan Roese 576a47a12beSStefan Roese #if defined(CONFIG_MPC86xx) 577a47a12beSStefan Roese #define SPRN_MSSCR0 0x3f6 578a47a12beSStefan Roese #define SPRN_MSSSR0 0x3f7 579a47a12beSStefan Roese #endif 580a47a12beSStefan Roese 581cd7ad629SAndy Fleming #define SPRN_HDBCR0 0x3d0 582cd7ad629SAndy Fleming #define SPRN_HDBCR1 0x3d1 583cd7ad629SAndy Fleming #define SPRN_HDBCR2 0x3d2 584cd7ad629SAndy Fleming #define SPRN_HDBCR3 0x3d3 585cd7ad629SAndy Fleming #define SPRN_HDBCR4 0x3d4 586cd7ad629SAndy Fleming #define SPRN_HDBCR5 0x3d5 587cd7ad629SAndy Fleming #define SPRN_HDBCR6 0x3d6 588cd7ad629SAndy Fleming #define SPRN_HDBCR7 0x277 589cd7ad629SAndy Fleming #define SPRN_HDBCR8 0x278 590cd7ad629SAndy Fleming 591a47a12beSStefan Roese /* Short-hand versions for a number of the above SPRNs */ 592a47a12beSStefan Roese 593a47a12beSStefan Roese #define CTR SPRN_CTR /* Counter Register */ 594a47a12beSStefan Roese #define DAR SPRN_DAR /* Data Address Register */ 595a47a12beSStefan Roese #define DABR SPRN_DABR /* Data Address Breakpoint Register */ 596a47a12beSStefan Roese #define DAC1 SPRN_DAC1 /* Data Address Register 1 */ 597a47a12beSStefan Roese #define DAC2 SPRN_DAC2 /* Data Address Register 2 */ 598a47a12beSStefan Roese #define DBAT0L SPRN_DBAT0L /* Data BAT 0 Lower Register */ 599a47a12beSStefan Roese #define DBAT0U SPRN_DBAT0U /* Data BAT 0 Upper Register */ 600a47a12beSStefan Roese #define DBAT1L SPRN_DBAT1L /* Data BAT 1 Lower Register */ 601a47a12beSStefan Roese #define DBAT1U SPRN_DBAT1U /* Data BAT 1 Upper Register */ 602a47a12beSStefan Roese #define DBAT2L SPRN_DBAT2L /* Data BAT 2 Lower Register */ 603a47a12beSStefan Roese #define DBAT2U SPRN_DBAT2U /* Data BAT 2 Upper Register */ 604a47a12beSStefan Roese #define DBAT3L SPRN_DBAT3L /* Data BAT 3 Lower Register */ 605a47a12beSStefan Roese #define DBAT3U SPRN_DBAT3U /* Data BAT 3 Upper Register */ 606a47a12beSStefan Roese #define DBAT4L SPRN_DBAT4L /* Data BAT 4 Lower Register */ 607a47a12beSStefan Roese #define DBAT4U SPRN_DBAT4U /* Data BAT 4 Upper Register */ 608a47a12beSStefan Roese #define DBAT5L SPRN_DBAT5L /* Data BAT 5 Lower Register */ 609a47a12beSStefan Roese #define DBAT5U SPRN_DBAT5U /* Data BAT 5 Upper Register */ 610a47a12beSStefan Roese #define DBAT6L SPRN_DBAT6L /* Data BAT 6 Lower Register */ 611a47a12beSStefan Roese #define DBAT6U SPRN_DBAT6U /* Data BAT 6 Upper Register */ 612a47a12beSStefan Roese #define DBAT7L SPRN_DBAT7L /* Data BAT 7 Lower Register */ 613a47a12beSStefan Roese #define DBAT7U SPRN_DBAT7U /* Data BAT 7 Upper Register */ 614a47a12beSStefan Roese #define DBCR0 SPRN_DBCR0 /* Debug Control Register 0 */ 615a47a12beSStefan Roese #define DBCR1 SPRN_DBCR1 /* Debug Control Register 1 */ 616a47a12beSStefan Roese #define DBSR SPRN_DBSR /* Debug Status Register */ 617a47a12beSStefan Roese #define DCMP SPRN_DCMP /* Data TLB Compare Register */ 618a47a12beSStefan Roese #define DEC SPRN_DEC /* Decrement Register */ 619a47a12beSStefan Roese #define DMISS SPRN_DMISS /* Data TLB Miss Register */ 620a47a12beSStefan Roese #define DSISR SPRN_DSISR /* Data Storage Interrupt Status Register */ 621a47a12beSStefan Roese #define EAR SPRN_EAR /* External Address Register */ 622a47a12beSStefan Roese #define ESR SPRN_ESR /* Exception Syndrome Register */ 623a47a12beSStefan Roese #define HASH1 SPRN_HASH1 /* Primary Hash Address Register */ 624a47a12beSStefan Roese #define HASH2 SPRN_HASH2 /* Secondary Hash Address Register */ 625a47a12beSStefan Roese #define HID0 SPRN_HID0 /* Hardware Implementation Register 0 */ 626a47a12beSStefan Roese #define HID1 SPRN_HID1 /* Hardware Implementation Register 1 */ 627a47a12beSStefan Roese #define IABR SPRN_IABR /* Instruction Address Breakpoint Register */ 628a47a12beSStefan Roese #define IAC1 SPRN_IAC1 /* Instruction Address Register 1 */ 629a47a12beSStefan Roese #define IAC2 SPRN_IAC2 /* Instruction Address Register 2 */ 630a47a12beSStefan Roese #define IBAT0L SPRN_IBAT0L /* Instruction BAT 0 Lower Register */ 631a47a12beSStefan Roese #define IBAT0U SPRN_IBAT0U /* Instruction BAT 0 Upper Register */ 632a47a12beSStefan Roese #define IBAT1L SPRN_IBAT1L /* Instruction BAT 1 Lower Register */ 633a47a12beSStefan Roese #define IBAT1U SPRN_IBAT1U /* Instruction BAT 1 Upper Register */ 634a47a12beSStefan Roese #define IBAT2L SPRN_IBAT2L /* Instruction BAT 2 Lower Register */ 635a47a12beSStefan Roese #define IBAT2U SPRN_IBAT2U /* Instruction BAT 2 Upper Register */ 636a47a12beSStefan Roese #define IBAT3L SPRN_IBAT3L /* Instruction BAT 3 Lower Register */ 637a47a12beSStefan Roese #define IBAT3U SPRN_IBAT3U /* Instruction BAT 3 Upper Register */ 638a47a12beSStefan Roese #define IBAT4L SPRN_IBAT4L /* Instruction BAT 4 Lower Register */ 639a47a12beSStefan Roese #define IBAT4U SPRN_IBAT4U /* Instruction BAT 4 Upper Register */ 640a47a12beSStefan Roese #define IBAT5L SPRN_IBAT5L /* Instruction BAT 5 Lower Register */ 641a47a12beSStefan Roese #define IBAT5U SPRN_IBAT5U /* Instruction BAT 5 Upper Register */ 642a47a12beSStefan Roese #define IBAT6L SPRN_IBAT6L /* Instruction BAT 6 Lower Register */ 643a47a12beSStefan Roese #define IBAT6U SPRN_IBAT6U /* Instruction BAT 6 Upper Register */ 644a47a12beSStefan Roese #define IBAT7L SPRN_IBAT7L /* Instruction BAT 7 Lower Register */ 645a47a12beSStefan Roese #define IBAT7U SPRN_IBAT7U /* Instruction BAT 7 Lower Register */ 646a47a12beSStefan Roese #define ICMP SPRN_ICMP /* Instruction TLB Compare Register */ 647a47a12beSStefan Roese #define IMISS SPRN_IMISS /* Instruction TLB Miss Register */ 648a47a12beSStefan Roese #define IMMR SPRN_IMMR /* PPC 860/821 Internal Memory Map Register */ 649a47a12beSStefan Roese #define LDSTCR SPRN_LDSTCR /* Load/Store Control Register */ 650a47a12beSStefan Roese #define L2CR SPRN_L2CR /* PPC 750 L2 control register */ 651a47a12beSStefan Roese #define LR SPRN_LR 652a47a12beSStefan Roese #define MBAR SPRN_MBAR /* System memory base address */ 653a47a12beSStefan Roese #if defined(CONFIG_MPC86xx) 654a47a12beSStefan Roese #define MSSCR0 SPRN_MSSCR0 655a47a12beSStefan Roese #endif 656a47a12beSStefan Roese #if defined(CONFIG_E500) || defined(CONFIG_MPC86xx) 657a47a12beSStefan Roese #define PIR SPRN_PIR 658a47a12beSStefan Roese #endif 659a47a12beSStefan Roese #define SVR SPRN_SVR /* System-On-Chip Version Register */ 660a47a12beSStefan Roese #define PVR SPRN_PVR /* Processor Version */ 661a47a12beSStefan Roese #define RPA SPRN_RPA /* Required Physical Address Register */ 662a47a12beSStefan Roese #define SDR1 SPRN_SDR1 /* MMU hash base register */ 663a47a12beSStefan Roese #define SPR0 SPRN_SPRG0 /* Supervisor Private Registers */ 664a47a12beSStefan Roese #define SPR1 SPRN_SPRG1 665a47a12beSStefan Roese #define SPR2 SPRN_SPRG2 666a47a12beSStefan Roese #define SPR3 SPRN_SPRG3 667a47a12beSStefan Roese #define SPRG0 SPRN_SPRG0 668a47a12beSStefan Roese #define SPRG1 SPRN_SPRG1 669a47a12beSStefan Roese #define SPRG2 SPRN_SPRG2 670a47a12beSStefan Roese #define SPRG3 SPRN_SPRG3 671a47a12beSStefan Roese #define SPRG4 SPRN_SPRG4 672a47a12beSStefan Roese #define SPRG5 SPRN_SPRG5 673a47a12beSStefan Roese #define SPRG6 SPRN_SPRG6 674a47a12beSStefan Roese #define SPRG7 SPRN_SPRG7 675a47a12beSStefan Roese #define SRR0 SPRN_SRR0 /* Save and Restore Register 0 */ 676a47a12beSStefan Roese #define SRR1 SPRN_SRR1 /* Save and Restore Register 1 */ 677a47a12beSStefan Roese #define SRR2 SPRN_SRR2 /* Save and Restore Register 2 */ 678a47a12beSStefan Roese #define SRR3 SPRN_SRR3 /* Save and Restore Register 3 */ 679a47a12beSStefan Roese #define SVR SPRN_SVR /* System Version Register */ 680a47a12beSStefan Roese #define TBRL SPRN_TBRL /* Time Base Read Lower Register */ 681a47a12beSStefan Roese #define TBRU SPRN_TBRU /* Time Base Read Upper Register */ 682a47a12beSStefan Roese #define TBWL SPRN_TBWL /* Time Base Write Lower Register */ 683a47a12beSStefan Roese #define TBWU SPRN_TBWU /* Time Base Write Upper Register */ 684a47a12beSStefan Roese #define TCR SPRN_TCR /* Timer Control Register */ 685a47a12beSStefan Roese #define TSR SPRN_TSR /* Timer Status Register */ 686a47a12beSStefan Roese #define ICTC 1019 687a47a12beSStefan Roese #define THRM1 SPRN_THRM1 /* Thermal Management Register 1 */ 688a47a12beSStefan Roese #define THRM2 SPRN_THRM2 /* Thermal Management Register 2 */ 689a47a12beSStefan Roese #define THRM3 SPRN_THRM3 /* Thermal Management Register 3 */ 690a47a12beSStefan Roese #define XER SPRN_XER 691a47a12beSStefan Roese 692a47a12beSStefan Roese #define DECAR SPRN_DECAR 693a47a12beSStefan Roese #define CSRR0 SPRN_CSRR0 694a47a12beSStefan Roese #define CSRR1 SPRN_CSRR1 695a47a12beSStefan Roese #define IVPR SPRN_IVPR 696a47a12beSStefan Roese #define USPRG0 SPRN_USPRG 697a47a12beSStefan Roese #define SPRG4R SPRN_SPRG4R 698a47a12beSStefan Roese #define SPRG5R SPRN_SPRG5R 699a47a12beSStefan Roese #define SPRG6R SPRN_SPRG6R 700a47a12beSStefan Roese #define SPRG7R SPRN_SPRG7R 701a47a12beSStefan Roese #define SPRG4W SPRN_SPRG4W 702a47a12beSStefan Roese #define SPRG5W SPRN_SPRG5W 703a47a12beSStefan Roese #define SPRG6W SPRN_SPRG6W 704a47a12beSStefan Roese #define SPRG7W SPRN_SPRG7W 705a47a12beSStefan Roese #define DEAR SPRN_DEAR 706a47a12beSStefan Roese #define DBCR2 SPRN_DBCR2 707a47a12beSStefan Roese #define IAC3 SPRN_IAC3 708a47a12beSStefan Roese #define IAC4 SPRN_IAC4 709a47a12beSStefan Roese #define DVC1 SPRN_DVC1 710a47a12beSStefan Roese #define DVC2 SPRN_DVC2 711a47a12beSStefan Roese #define IVOR0 SPRN_IVOR0 712a47a12beSStefan Roese #define IVOR1 SPRN_IVOR1 713a47a12beSStefan Roese #define IVOR2 SPRN_IVOR2 714a47a12beSStefan Roese #define IVOR3 SPRN_IVOR3 715a47a12beSStefan Roese #define IVOR4 SPRN_IVOR4 716a47a12beSStefan Roese #define IVOR5 SPRN_IVOR5 717a47a12beSStefan Roese #define IVOR6 SPRN_IVOR6 718a47a12beSStefan Roese #define IVOR7 SPRN_IVOR7 719a47a12beSStefan Roese #define IVOR8 SPRN_IVOR8 720a47a12beSStefan Roese #define IVOR9 SPRN_IVOR9 721a47a12beSStefan Roese #define IVOR10 SPRN_IVOR10 722a47a12beSStefan Roese #define IVOR11 SPRN_IVOR11 723a47a12beSStefan Roese #define IVOR12 SPRN_IVOR12 724a47a12beSStefan Roese #define IVOR13 SPRN_IVOR13 725a47a12beSStefan Roese #define IVOR14 SPRN_IVOR14 726a47a12beSStefan Roese #define IVOR15 SPRN_IVOR15 727a47a12beSStefan Roese #define IVOR32 SPRN_IVOR32 728a47a12beSStefan Roese #define IVOR33 SPRN_IVOR33 729a47a12beSStefan Roese #define IVOR34 SPRN_IVOR34 730a47a12beSStefan Roese #define IVOR35 SPRN_IVOR35 731a47a12beSStefan Roese #define MCSRR0 SPRN_MCSRR0 732a47a12beSStefan Roese #define MCSRR1 SPRN_MCSRR1 733a47a12beSStefan Roese #define L1CSR0 SPRN_L1CSR0 734a47a12beSStefan Roese #define L1CSR1 SPRN_L1CSR1 735a47a12beSStefan Roese #define L1CSR2 SPRN_L1CSR2 736a47a12beSStefan Roese #define L1CFG0 SPRN_L1CFG0 737a47a12beSStefan Roese #define L1CFG1 SPRN_L1CFG1 738a47a12beSStefan Roese #define L2CFG0 SPRN_L2CFG0 739a47a12beSStefan Roese #define L2CSR0 SPRN_L2CSR0 740a47a12beSStefan Roese #define L2CSR1 SPRN_L2CSR1 741a47a12beSStefan Roese #define MCSR SPRN_MCSR 742a47a12beSStefan Roese #define MMUCSR0 SPRN_MMUCSR0 743a47a12beSStefan Roese #define BUCSR SPRN_BUCSR 744a47a12beSStefan Roese #define PID0 SPRN_PID 745a47a12beSStefan Roese #define PID1 SPRN_PID1 746a47a12beSStefan Roese #define PID2 SPRN_PID2 747a47a12beSStefan Roese #define MAS0 SPRN_MAS0 748a47a12beSStefan Roese #define MAS1 SPRN_MAS1 749a47a12beSStefan Roese #define MAS2 SPRN_MAS2 750a47a12beSStefan Roese #define MAS3 SPRN_MAS3 751a47a12beSStefan Roese #define MAS4 SPRN_MAS4 752a47a12beSStefan Roese #define MAS5 SPRN_MAS5 753a47a12beSStefan Roese #define MAS6 SPRN_MAS6 754a47a12beSStefan Roese #define MAS7 SPRN_MAS7 755a47a12beSStefan Roese #define MAS8 SPRN_MAS8 756a47a12beSStefan Roese 757*98f705c9SHeiko Schocher #if defined(CONFIG_MPC85xx) 758a47a12beSStefan Roese #define DAR_DEAR DEAR 759a47a12beSStefan Roese #else 760a47a12beSStefan Roese #define DAR_DEAR DAR 761a47a12beSStefan Roese #endif 762a47a12beSStefan Roese 763a47a12beSStefan Roese /* Device Control Registers */ 764a47a12beSStefan Roese 765a47a12beSStefan Roese #define DCRN_BEAR 0x090 /* Bus Error Address Register */ 766a47a12beSStefan Roese #define DCRN_BESR 0x091 /* Bus Error Syndrome Register */ 767a47a12beSStefan Roese #define BESR_DSES 0x80000000 /* Data-Side Error Status */ 768a47a12beSStefan Roese #define BESR_DMES 0x40000000 /* DMA Error Status */ 769a47a12beSStefan Roese #define BESR_RWS 0x20000000 /* Read/Write Status */ 770a47a12beSStefan Roese #define BESR_ETMASK 0x1C000000 /* Error Type */ 771a47a12beSStefan Roese #define ET_PROT 0 772a47a12beSStefan Roese #define ET_PARITY 1 773a47a12beSStefan Roese #define ET_NCFG 2 774a47a12beSStefan Roese #define ET_BUSERR 4 775a47a12beSStefan Roese #define ET_BUSTO 6 776a47a12beSStefan Roese #define DCRN_DMACC0 0x0C4 /* DMA Chained Count Register 0 */ 777a47a12beSStefan Roese #define DCRN_DMACC1 0x0CC /* DMA Chained Count Register 1 */ 778a47a12beSStefan Roese #define DCRN_DMACC2 0x0D4 /* DMA Chained Count Register 2 */ 779a47a12beSStefan Roese #define DCRN_DMACC3 0x0DC /* DMA Chained Count Register 3 */ 780a47a12beSStefan Roese #define DCRN_DMACR0 0x0C0 /* DMA Channel Control Register 0 */ 781a47a12beSStefan Roese #define DCRN_DMACR1 0x0C8 /* DMA Channel Control Register 1 */ 782a47a12beSStefan Roese #define DCRN_DMACR2 0x0D0 /* DMA Channel Control Register 2 */ 783a47a12beSStefan Roese #define DCRN_DMACR3 0x0D8 /* DMA Channel Control Register 3 */ 784a47a12beSStefan Roese #define DCRN_DMACT0 0x0C1 /* DMA Count Register 0 */ 785a47a12beSStefan Roese #define DCRN_DMACT1 0x0C9 /* DMA Count Register 1 */ 786a47a12beSStefan Roese #define DCRN_DMACT2 0x0D1 /* DMA Count Register 2 */ 787a47a12beSStefan Roese #define DCRN_DMACT3 0x0D9 /* DMA Count Register 3 */ 788a47a12beSStefan Roese #define DCRN_DMADA0 0x0C2 /* DMA Destination Address Register 0 */ 789a47a12beSStefan Roese #define DCRN_DMADA1 0x0CA /* DMA Destination Address Register 1 */ 790a47a12beSStefan Roese #define DCRN_DMADA2 0x0D2 /* DMA Destination Address Register 2 */ 791a47a12beSStefan Roese #define DCRN_DMADA3 0x0DA /* DMA Destination Address Register 3 */ 792a47a12beSStefan Roese #define DCRN_DMASA0 0x0C3 /* DMA Source Address Register 0 */ 793a47a12beSStefan Roese #define DCRN_DMASA1 0x0CB /* DMA Source Address Register 1 */ 794a47a12beSStefan Roese #define DCRN_DMASA2 0x0D3 /* DMA Source Address Register 2 */ 795a47a12beSStefan Roese #define DCRN_DMASA3 0x0DB /* DMA Source Address Register 3 */ 796a47a12beSStefan Roese #define DCRN_DMASR 0x0E0 /* DMA Status Register */ 797a47a12beSStefan Roese #define DCRN_EXIER 0x042 /* External Interrupt Enable Register */ 798a47a12beSStefan Roese #define EXIER_CIE 0x80000000 /* Critical Interrupt Enable */ 799a47a12beSStefan Roese #define EXIER_SRIE 0x08000000 /* Serial Port Rx Int. Enable */ 800a47a12beSStefan Roese #define EXIER_STIE 0x04000000 /* Serial Port Tx Int. Enable */ 801a47a12beSStefan Roese #define EXIER_JRIE 0x02000000 /* JTAG Serial Port Rx Int. Enable */ 802a47a12beSStefan Roese #define EXIER_JTIE 0x01000000 /* JTAG Serial Port Tx Int. Enable */ 803a47a12beSStefan Roese #define EXIER_D0IE 0x00800000 /* DMA Channel 0 Interrupt Enable */ 804a47a12beSStefan Roese #define EXIER_D1IE 0x00400000 /* DMA Channel 1 Interrupt Enable */ 805a47a12beSStefan Roese #define EXIER_D2IE 0x00200000 /* DMA Channel 2 Interrupt Enable */ 806a47a12beSStefan Roese #define EXIER_D3IE 0x00100000 /* DMA Channel 3 Interrupt Enable */ 807a47a12beSStefan Roese #define EXIER_E0IE 0x00000010 /* External Interrupt 0 Enable */ 808a47a12beSStefan Roese #define EXIER_E1IE 0x00000008 /* External Interrupt 1 Enable */ 809a47a12beSStefan Roese #define EXIER_E2IE 0x00000004 /* External Interrupt 2 Enable */ 810a47a12beSStefan Roese #define EXIER_E3IE 0x00000002 /* External Interrupt 3 Enable */ 811a47a12beSStefan Roese #define EXIER_E4IE 0x00000001 /* External Interrupt 4 Enable */ 812a47a12beSStefan Roese #define DCRN_EXISR 0x040 /* External Interrupt Status Register */ 813a47a12beSStefan Roese #define DCRN_IOCR 0x0A0 /* Input/Output Configuration Register */ 814a47a12beSStefan Roese #define IOCR_E0TE 0x80000000 815a47a12beSStefan Roese #define IOCR_E0LP 0x40000000 816a47a12beSStefan Roese #define IOCR_E1TE 0x20000000 817a47a12beSStefan Roese #define IOCR_E1LP 0x10000000 818a47a12beSStefan Roese #define IOCR_E2TE 0x08000000 819a47a12beSStefan Roese #define IOCR_E2LP 0x04000000 820a47a12beSStefan Roese #define IOCR_E3TE 0x02000000 821a47a12beSStefan Roese #define IOCR_E3LP 0x01000000 822a47a12beSStefan Roese #define IOCR_E4TE 0x00800000 823a47a12beSStefan Roese #define IOCR_E4LP 0x00400000 824a47a12beSStefan Roese #define IOCR_EDT 0x00080000 825a47a12beSStefan Roese #define IOCR_SOR 0x00040000 826a47a12beSStefan Roese #define IOCR_EDO 0x00008000 827a47a12beSStefan Roese #define IOCR_2XC 0x00004000 828a47a12beSStefan Roese #define IOCR_ATC 0x00002000 829a47a12beSStefan Roese #define IOCR_SPD 0x00001000 830a47a12beSStefan Roese #define IOCR_BEM 0x00000800 831a47a12beSStefan Roese #define IOCR_PTD 0x00000400 832a47a12beSStefan Roese #define IOCR_ARE 0x00000080 833a47a12beSStefan Roese #define IOCR_DRC 0x00000020 834a47a12beSStefan Roese #define IOCR_RDM(x) (((x) & 0x3) << 3) 835a47a12beSStefan Roese #define IOCR_TCS 0x00000004 836a47a12beSStefan Roese #define IOCR_SCS 0x00000002 837a47a12beSStefan Roese #define IOCR_SPC 0x00000001 838a47a12beSStefan Roese 839a47a12beSStefan Roese /* System-On-Chip Version Register */ 840a47a12beSStefan Roese 841a47a12beSStefan Roese /* System-On-Chip Version Register (SVR) field extraction */ 842a47a12beSStefan Roese 843a47a12beSStefan Roese #define SVR_VER(svr) (((svr) >> 16) & 0xFFFF) /* Version field */ 8449c3f77ebSChunhe Lan #define SVR_REV(svr) (((svr) >> 0) & 0xFF) /* Revision field */ 845a47a12beSStefan Roese 846a47a12beSStefan Roese #define SVR_CID(svr) (((svr) >> 28) & 0x0F) /* Company or manufacturer ID */ 847a47a12beSStefan Roese #define SVR_SOCOP(svr) (((svr) >> 22) & 0x3F) /* SOC integration options */ 848a47a12beSStefan Roese #define SVR_SID(svr) (((svr) >> 16) & 0x3F) /* SOC ID */ 849a47a12beSStefan Roese #define SVR_PROC(svr) (((svr) >> 12) & 0x0F) /* Process revision field */ 850a47a12beSStefan Roese #define SVR_MFG(svr) (((svr) >> 8) & 0x0F) /* Manufacturing revision */ 851a47a12beSStefan Roese #define SVR_MJREV(svr) (((svr) >> 4) & 0x0F) /* Major SOC design revision indicator */ 852a47a12beSStefan Roese #define SVR_MNREV(svr) (((svr) >> 0) & 0x0F) /* Minor SOC design revision indicator */ 853a47a12beSStefan Roese 854a47a12beSStefan Roese /* Processor Version Register */ 855a47a12beSStefan Roese 856a47a12beSStefan Roese /* Processor Version Register (PVR) field extraction */ 857a47a12beSStefan Roese 858a47a12beSStefan Roese #define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */ 859a47a12beSStefan Roese #define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */ 860a47a12beSStefan Roese 861a47a12beSStefan Roese /* 862a47a12beSStefan Roese * AMCC has further subdivided the standard PowerPC 16-bit version and 863a47a12beSStefan Roese * revision subfields of the PVR for the PowerPC 403s into the following: 864a47a12beSStefan Roese */ 865a47a12beSStefan Roese 866a47a12beSStefan Roese #define PVR_FAM(pvr) (((pvr) >> 20) & 0xFFF) /* Family field */ 867a47a12beSStefan Roese #define PVR_MEM(pvr) (((pvr) >> 16) & 0xF) /* Member field */ 868a47a12beSStefan Roese #define PVR_CORE(pvr) (((pvr) >> 12) & 0xF) /* Core field */ 869a47a12beSStefan Roese #define PVR_CFG(pvr) (((pvr) >> 8) & 0xF) /* Configuration field */ 870a47a12beSStefan Roese #define PVR_MAJ(pvr) (((pvr) >> 4) & 0xF) /* Major revision field */ 871a47a12beSStefan Roese #define PVR_MIN(pvr) (((pvr) >> 0) & 0xF) /* Minor revision field */ 872a47a12beSStefan Roese 873a47a12beSStefan Roese /* e600 core PVR fields */ 874a47a12beSStefan Roese 875a47a12beSStefan Roese #define PVR_E600_VER(pvr) (((pvr) >> 15) & 0xFFFF) /* Version/type */ 876a47a12beSStefan Roese #define PVR_E600_TECH(pvr) (((pvr) >> 12) & 0xF) /* Technology */ 877a47a12beSStefan Roese #define PVR_E600_MAJ(pvr) (((pvr) >> 8) & 0xF) /* Major revision */ 878a47a12beSStefan Roese #define PVR_E600_MIN(pvr) (((pvr) >> 0) & 0xFF) /* Minor revision */ 879a47a12beSStefan Roese 880a47a12beSStefan Roese /* Processor Version Numbers */ 881a47a12beSStefan Roese 882a47a12beSStefan Roese #define PVR_403GA 0x00200000 883a47a12beSStefan Roese #define PVR_403GB 0x00200100 884a47a12beSStefan Roese #define PVR_403GC 0x00200200 885a47a12beSStefan Roese #define PVR_403GCX 0x00201400 886a47a12beSStefan Roese #define PVR_405GP 0x40110000 887a47a12beSStefan Roese #define PVR_405GP_RB 0x40110040 888a47a12beSStefan Roese #define PVR_405GP_RC 0x40110082 889a47a12beSStefan Roese #define PVR_405GP_RD 0x401100C4 890a47a12beSStefan Roese #define PVR_405GP_RE 0x40110145 /* same as pc405cr rev c */ 891a47a12beSStefan Roese #define PVR_405EP_RA 0x51210950 892a47a12beSStefan Roese #define PVR_405GPR_RB 0x50910951 893a47a12beSStefan Roese #define PVR_405EZ_RA 0x41511460 894a47a12beSStefan Roese #define PVR_405EXR2_RA 0x12911471 /* 405EXr rev A/B without Security */ 895a47a12beSStefan Roese #define PVR_405EX1_RA 0x12911477 /* 405EX rev A/B with Security */ 896a47a12beSStefan Roese #define PVR_405EXR1_RC 0x1291147B /* 405EXr rev C with Security */ 897a47a12beSStefan Roese #define PVR_405EXR2_RC 0x12911479 /* 405EXr rev C without Security */ 898a47a12beSStefan Roese #define PVR_405EX1_RC 0x1291147F /* 405EX rev C with Security */ 899a47a12beSStefan Roese #define PVR_405EX2_RC 0x1291147D /* 405EX rev C without Security */ 900a47a12beSStefan Roese #define PVR_405EXR1_RD 0x12911472 /* 405EXr rev D with Security */ 901a47a12beSStefan Roese #define PVR_405EXR2_RD 0x12911470 /* 405EXr rev D without Security */ 902a47a12beSStefan Roese #define PVR_405EX1_RD 0x12911475 /* 405EX rev D with Security */ 903a47a12beSStefan Roese #define PVR_405EX2_RD 0x12911473 /* 405EX rev D without Security */ 904a47a12beSStefan Roese #define PVR_440GP_RB 0x40120440 905a47a12beSStefan Roese #define PVR_440GP_RC 0x40120481 906a47a12beSStefan Roese #define PVR_440EP_RA 0x42221850 907a47a12beSStefan Roese #define PVR_440EP_RB 0x422218D3 /* 440EP rev B and 440GR rev A have same PVR */ 908a47a12beSStefan Roese #define PVR_440EP_RC 0x422218D4 /* 440EP rev C and 440GR rev B have same PVR */ 909a47a12beSStefan Roese #define PVR_440GR_RA 0x422218D3 /* 440EP rev B and 440GR rev A have same PVR */ 910a47a12beSStefan Roese #define PVR_440GR_RB 0x422218D4 /* 440EP rev C and 440GR rev B have same PVR */ 911a47a12beSStefan Roese #define PVR_440EPX1_RA 0x216218D0 /* 440EPX rev A with Security / Kasumi */ 912a47a12beSStefan Roese #define PVR_440EPX2_RA 0x216218D4 /* 440EPX rev A without Security / Kasumi */ 913a47a12beSStefan Roese #define PVR_440GRX1_RA 0x216218D0 /* 440GRX rev A with Security / Kasumi */ 914a47a12beSStefan Roese #define PVR_440GRX2_RA 0x216218D4 /* 440GRX rev A without Security / Kasumi */ 915a47a12beSStefan Roese #define PVR_440GX_RA 0x51B21850 916a47a12beSStefan Roese #define PVR_440GX_RB 0x51B21851 917a47a12beSStefan Roese #define PVR_440GX_RC 0x51B21892 918a47a12beSStefan Roese #define PVR_440GX_RF 0x51B21894 919a47a12beSStefan Roese #define PVR_405EP_RB 0x51210950 920a47a12beSStefan Roese #define PVR_440SP_6_RAB 0x53221850 /* 440SP rev A&B with RAID 6 support enabled */ 921a47a12beSStefan Roese #define PVR_440SP_RAB 0x53321850 /* 440SP rev A&B without RAID 6 support */ 922a47a12beSStefan Roese #define PVR_440SP_6_RC 0x53221891 /* 440SP rev C with RAID 6 support enabled */ 923a47a12beSStefan Roese #define PVR_440SP_RC 0x53321891 /* 440SP rev C without RAID 6 support */ 924a47a12beSStefan Roese #define PVR_440SPe_6_RA 0x53421890 /* 440SPe rev A with RAID 6 support enabled */ 925a47a12beSStefan Roese #define PVR_440SPe_RA 0x53521890 /* 440SPe rev A without RAID 6 support */ 926a47a12beSStefan Roese #define PVR_440SPe_6_RB 0x53421891 /* 440SPe rev B with RAID 6 support enabled */ 927a47a12beSStefan Roese #define PVR_440SPe_RB 0x53521891 /* 440SPe rev B without RAID 6 support */ 928a47a12beSStefan Roese #define PVR_460EX_SE_RA 0x130218A2 /* 460EX rev A with Security Engine */ 929a47a12beSStefan Roese #define PVR_460EX_RA 0x130218A3 /* 460EX rev A without Security Engine */ 930a47a12beSStefan Roese #define PVR_460EX_RB 0x130218A4 /* 460EX rev B with and without Sec Eng*/ 931a47a12beSStefan Roese #define PVR_460GT_SE_RA 0x130218A0 /* 460GT rev A with Security Engine */ 932a47a12beSStefan Roese #define PVR_460GT_RA 0x130218A1 /* 460GT rev A without Security Engine */ 933a47a12beSStefan Roese #define PVR_460GT_RB 0x130218A5 /* 460GT rev B with and without Sec Eng*/ 934a47a12beSStefan Roese #define PVR_460SX_RA 0x13541800 /* 460SX rev A */ 935a47a12beSStefan Roese #define PVR_460SX_RA_V1 0x13541801 /* 460SX rev A Variant 1 Security disabled */ 936a47a12beSStefan Roese #define PVR_460GX_RA 0x13541802 /* 460GX rev A */ 937a47a12beSStefan Roese #define PVR_460GX_RA_V1 0x13541803 /* 460GX rev A Variant 1 Security disabled */ 9381b8fec13STirumala Marri #define PVR_APM821XX_RA 0x12C41C80 /* APM821XX rev A */ 939a47a12beSStefan Roese #define PVR_601 0x00010000 940a47a12beSStefan Roese #define PVR_602 0x00050000 941a47a12beSStefan Roese #define PVR_603 0x00030000 942a47a12beSStefan Roese #define PVR_603e 0x00060000 943a47a12beSStefan Roese #define PVR_603ev 0x00070000 944a47a12beSStefan Roese #define PVR_603r 0x00071000 945a47a12beSStefan Roese #define PVR_604 0x00040000 946a47a12beSStefan Roese #define PVR_604e 0x00090000 947a47a12beSStefan Roese #define PVR_604r 0x000A0000 948a47a12beSStefan Roese #define PVR_620 0x00140000 949a47a12beSStefan Roese #define PVR_740 0x00080000 950a47a12beSStefan Roese #define PVR_750 PVR_740 951a47a12beSStefan Roese #define PVR_740P 0x10080000 952a47a12beSStefan Roese #define PVR_750P PVR_740P 953a47a12beSStefan Roese #define PVR_7400 0x000C0000 954a47a12beSStefan Roese #define PVR_7410 0x800C0000 955a47a12beSStefan Roese #define PVR_7450 0x80000000 956a47a12beSStefan Roese 957a47a12beSStefan Roese #define PVR_85xx 0x80200000 958a47a12beSStefan Roese #define PVR_85xx_REV1 (PVR_85xx | 0x0010) 959a47a12beSStefan Roese #define PVR_85xx_REV2 (PVR_85xx | 0x0020) 9608992738dSKumar Gala #define PVR_VER_E500_V1 0x8020 9618992738dSKumar Gala #define PVR_VER_E500_V2 0x8021 9628992738dSKumar Gala #define PVR_VER_E500MC 0x8023 9638992738dSKumar Gala #define PVR_VER_E5500 0x8024 9645b6b85aeSKumar Gala #define PVR_VER_E6500 0x8040 965a47a12beSStefan Roese 966a47a12beSStefan Roese #define PVR_86xx 0x80040000 967a47a12beSStefan Roese 968a47a12beSStefan Roese #define PVR_VIRTEX5 0x7ff21912 969a47a12beSStefan Roese 970a47a12beSStefan Roese /* 971a47a12beSStefan Roese * For the 8xx processors, all of them report the same PVR family for 972a47a12beSStefan Roese * the PowerPC core. The various versions of these processors must be 973a47a12beSStefan Roese * differentiated by the version number in the Communication Processor 974a47a12beSStefan Roese * Module (CPM). 975a47a12beSStefan Roese */ 976a47a12beSStefan Roese #define PVR_821 0x00500000 977a47a12beSStefan Roese #define PVR_823 PVR_821 978a47a12beSStefan Roese #define PVR_850 PVR_821 979a47a12beSStefan Roese #define PVR_860 PVR_821 980a47a12beSStefan Roese #define PVR_7400 0x000C0000 981a47a12beSStefan Roese #define PVR_8240 0x00810100 982a47a12beSStefan Roese 983a47a12beSStefan Roese /* 984a47a12beSStefan Roese * PowerQUICC II family processors report different PVR values depending 985a47a12beSStefan Roese * on silicon process (HiP3, HiP4, HiP7, etc.) 986a47a12beSStefan Roese */ 987a47a12beSStefan Roese #define PVR_8260 PVR_8240 988a47a12beSStefan Roese #define PVR_8260_HIP3 0x00810101 989a47a12beSStefan Roese #define PVR_8260_HIP4 0x80811014 990a47a12beSStefan Roese #define PVR_8260_HIP7 0x80822011 991a47a12beSStefan Roese #define PVR_8260_HIP7R1 0x80822013 992a47a12beSStefan Roese #define PVR_8260_HIP7RA 0x80822014 993a47a12beSStefan Roese 994a47a12beSStefan Roese /* 995a47a12beSStefan Roese * MPC 52xx 996a47a12beSStefan Roese */ 997a47a12beSStefan Roese #define PVR_5200 0x80822011 998a47a12beSStefan Roese #define PVR_5200B 0x80822014 999a47a12beSStefan Roese 1000a47a12beSStefan Roese /* 1001644362c4SSteven A. Falco * 405EX/EXr CHIP_21 Errata 1002644362c4SSteven A. Falco */ 1003644362c4SSteven A. Falco #ifdef CONFIG_SYS_4xx_CHIP_21_405EX_SECURITY 1004644362c4SSteven A. Falco #define CONFIG_SYS_4xx_CHIP_21_ERRATA 1005644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_C PVR_405EX1_RC 1006644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_D PVR_405EX1_RD 1007644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_ECID3_REV_D 0x0 1008644362c4SSteven A. Falco #endif 1009644362c4SSteven A. Falco 1010644362c4SSteven A. Falco #ifdef CONFIG_SYS_4xx_CHIP_21_405EX_NO_SECURITY 1011644362c4SSteven A. Falco #define CONFIG_SYS_4xx_CHIP_21_ERRATA 1012644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_C PVR_405EX2_RC 1013644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_D PVR_405EX2_RD 1014644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_ECID3_REV_D 0x1 1015644362c4SSteven A. Falco #endif 1016644362c4SSteven A. Falco 1017644362c4SSteven A. Falco #ifdef CONFIG_SYS_4xx_CHIP_21_405EXr_SECURITY 1018644362c4SSteven A. Falco #define CONFIG_SYS_4xx_CHIP_21_ERRATA 1019644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_C PVR_405EXR1_RC 1020644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_D PVR_405EXR1_RD 1021644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_ECID3_REV_D 0x2 1022644362c4SSteven A. Falco #endif 1023644362c4SSteven A. Falco 1024644362c4SSteven A. Falco #ifdef CONFIG_SYS_4xx_CHIP_21_405EXr_NO_SECURITY 1025644362c4SSteven A. Falco #define CONFIG_SYS_4xx_CHIP_21_ERRATA 1026644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_C PVR_405EXR2_RC 1027644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_PVR_REV_D PVR_405EXR2_RD 1028644362c4SSteven A. Falco #define CONFIG_405EX_CHIP21_ECID3_REV_D 0x3 1029644362c4SSteven A. Falco #endif 1030644362c4SSteven A. Falco 1031644362c4SSteven A. Falco /* 1032a47a12beSStefan Roese * System Version Register 1033a47a12beSStefan Roese */ 1034a47a12beSStefan Roese 1035a47a12beSStefan Roese /* System Version Register (SVR) field extraction */ 1036a47a12beSStefan Roese 1037a47a12beSStefan Roese #define SVR_SUBVER(svr) (((svr) >> 8) & 0xFF) /* Process/MFG sub-version */ 1038a47a12beSStefan Roese 1039a47a12beSStefan Roese #define SVR_FAM(svr) (((svr) >> 20) & 0xFFF) /* Family field */ 1040a47a12beSStefan Roese #define SVR_MEM(svr) (((svr) >> 16) & 0xF) /* Member field */ 1041a47a12beSStefan Roese 104224ad75aeSYork Sun #ifdef CONFIG_ARCH_MPC8536 1043a5986432SKumar Gala #define SVR_MAJ(svr) (((svr) >> 4) & 0x7) /* Major revision field*/ 1044a5986432SKumar Gala #else 1045a47a12beSStefan Roese #define SVR_MAJ(svr) (((svr) >> 4) & 0xF) /* Major revision field*/ 1046a5986432SKumar Gala #endif 1047a47a12beSStefan Roese #define SVR_MIN(svr) (((svr) >> 0) & 0xF) /* Minor revision field*/ 1048a47a12beSStefan Roese 1049a47a12beSStefan Roese /* Some parts define SVR[0:23] as the SOC version */ 105048f6a5c3SYork Sun #define SVR_SOC_VER(svr) (((svr) >> 8) & 0xFFF7FF) /* SOC w/o E bit*/ 1051a47a12beSStefan Roese 1052a47a12beSStefan Roese /* whether MPC8xxxE (i.e. has SEC) */ 1053a47a12beSStefan Roese #if defined(CONFIG_MPC85xx) 1054a47a12beSStefan Roese #define IS_E_PROCESSOR(svr) (svr & 0x80000) 1055a47a12beSStefan Roese #else 1056a47a12beSStefan Roese #if defined(CONFIG_MPC83xx) 1057a47a12beSStefan Roese #define IS_E_PROCESSOR(spridr) (!(spridr & 0x00010000)) 1058a47a12beSStefan Roese #endif 1059a47a12beSStefan Roese #endif 1060a47a12beSStefan Roese 1061a47a12beSStefan Roese #define IS_SVR_REV(svr, maj, min) \ 1062a47a12beSStefan Roese ((SVR_MAJ(svr) == maj) && (SVR_MIN(svr) == min)) 1063a47a12beSStefan Roese 1064a47a12beSStefan Roese /* 1065a47a12beSStefan Roese * SVR_SOC_VER() Version Values 1066a47a12beSStefan Roese */ 1067a47a12beSStefan Roese 1068a47a12beSStefan Roese #define SVR_8533 0x803400 1069a47a12beSStefan Roese #define SVR_8535 0x803701 1070a47a12beSStefan Roese #define SVR_8536 0x803700 1071a47a12beSStefan Roese #define SVR_8540 0x803000 1072a47a12beSStefan Roese #define SVR_8541 0x807200 1073a47a12beSStefan Roese #define SVR_8543 0x803200 1074a47a12beSStefan Roese #define SVR_8544 0x803401 1075a47a12beSStefan Roese #define SVR_8545 0x803102 107648f6a5c3SYork Sun #define SVR_8547 0x803101 1077a47a12beSStefan Roese #define SVR_8548 0x803100 1078a47a12beSStefan Roese #define SVR_8555 0x807100 1079a47a12beSStefan Roese #define SVR_8560 0x807000 1080afabe4b9SPiergiorgio Beruto #define SVR_8567 0x807501 1081a47a12beSStefan Roese #define SVR_8568 0x807500 1082a47a12beSStefan Roese #define SVR_8569 0x808000 1083a47a12beSStefan Roese #define SVR_8572 0x80E000 1084b8cdd014SPoonam Aggrwal #define SVR_P1010 0x80F100 1085a47a12beSStefan Roese #define SVR_P1011 0x80E500 1086a47a12beSStefan Roese #define SVR_P1012 0x80E501 1087a47a12beSStefan Roese #define SVR_P1013 0x80E700 1088b5debec5SPoonam Aggrwal #define SVR_P1014 0x80F101 108967a719daSRoy Zang #define SVR_P1017 0x80F700 1090a47a12beSStefan Roese #define SVR_P1020 0x80E400 1091a47a12beSStefan Roese #define SVR_P1021 0x80E401 1092a47a12beSStefan Roese #define SVR_P1022 0x80E600 109367a719daSRoy Zang #define SVR_P1023 0x80F600 1094093cffbeSKumar Gala #define SVR_P1024 0x80E402 1095093cffbeSKumar Gala #define SVR_P1025 0x80E403 1096a47a12beSStefan Roese #define SVR_P2010 0x80E300 1097a47a12beSStefan Roese #define SVR_P2020 0x80E200 1098f193e3daSKumar Gala #define SVR_P2040 0x821000 10991f97987aSKumar Gala #define SVR_P2041 0x821001 1100c26de2d8SKumar Gala #define SVR_P3041 0x821103 1101a47a12beSStefan Roese #define SVR_P4040 0x820100 1102a47a12beSStefan Roese #define SVR_P4080 0x820000 110319dbcc96SKumar Gala #define SVR_P5010 0x822100 110419dbcc96SKumar Gala #define SVR_P5020 0x822000 11054905443fSTimur Tabi #define SVR_P5021 0X820500 11064905443fSTimur Tabi #define SVR_P5040 0x820400 11079e758758SYork Sun #define SVR_T4240 0x824000 11089e758758SYork Sun #define SVR_T4120 0x824001 1109b6240846SYork Sun #define SVR_T4160 0x824100 11105122dfaeSShengzhou Liu #define SVR_T4080 0x824102 11113b75e982SMingkai Hu #define SVR_C291 0x850000 11123b75e982SMingkai Hu #define SVR_C292 0x850020 11133b75e982SMingkai Hu #define SVR_C293 0x850030 1114d2404141SYork Sun #define SVR_B4860 0X868000 1115d2404141SYork Sun #define SVR_G4860 0x868001 11169c3fdd88SShaveta Leekha #define SVR_B4460 0x868003 1117d2404141SYork Sun #define SVR_B4440 0x868100 1118d2404141SYork Sun #define SVR_G4440 0x868101 1119d2404141SYork Sun #define SVR_B4420 0x868102 1120d2404141SYork Sun #define SVR_B4220 0x868103 11215f208d11SYork Sun #define SVR_T1040 0x852000 11225f208d11SYork Sun #define SVR_T1041 0x852001 11235f208d11SYork Sun #define SVR_T1042 0x852002 11245f208d11SYork Sun #define SVR_T1020 0x852100 11255f208d11SYork Sun #define SVR_T1021 0x852101 11265f208d11SYork Sun #define SVR_T1022 0x852102 1127f6050790SShengzhou Liu #define SVR_T1024 0x854000 1128f6050790SShengzhou Liu #define SVR_T1023 0x854100 1129f6050790SShengzhou Liu #define SVR_T1014 0x854400 1130f6050790SShengzhou Liu #define SVR_T1013 0x854500 1131629d6b32SShengzhou Liu #define SVR_T2080 0x853000 1132629d6b32SShengzhou Liu #define SVR_T2081 0x853100 1133a47a12beSStefan Roese 1134a47a12beSStefan Roese #define SVR_8610 0x80A000 1135a47a12beSStefan Roese #define SVR_8641 0x809000 1136a47a12beSStefan Roese #define SVR_8641D 0x809001 1137a47a12beSStefan Roese 113819a8dbdcSPrabhakar Kushwaha #define SVR_9130 0x860001 113919a8dbdcSPrabhakar Kushwaha #define SVR_9131 0x860000 114035fe948eSPrabhakar Kushwaha #define SVR_9132 0x861000 114135fe948eSPrabhakar Kushwaha #define SVR_9232 0x861400 114219a8dbdcSPrabhakar Kushwaha 1143a47a12beSStefan Roese #define SVR_Unknown 0xFFFFFF 1144a47a12beSStefan Roese 1145a47a12beSStefan Roese #define _GLOBAL(n)\ 1146a47a12beSStefan Roese .globl n;\ 1147a47a12beSStefan Roese n: 1148a47a12beSStefan Roese 1149a47a12beSStefan Roese /* Macros for setting and retrieving special purpose registers */ 1150a47a12beSStefan Roese 1151a47a12beSStefan Roese #define stringify(s) tostring(s) 1152a47a12beSStefan Roese #define tostring(s) #s 1153a47a12beSStefan Roese 1154a47a12beSStefan Roese #define mfdcr(rn) ({unsigned int rval; \ 1155a47a12beSStefan Roese asm volatile("mfdcr %0," stringify(rn) \ 1156a47a12beSStefan Roese : "=r" (rval)); rval;}) 1157a47a12beSStefan Roese #define mtdcr(rn, v) asm volatile("mtdcr " stringify(rn) ",%0" : : "r" (v)) 1158a47a12beSStefan Roese 1159a47a12beSStefan Roese #define mfmsr() ({unsigned int rval; \ 1160a47a12beSStefan Roese asm volatile("mfmsr %0" : "=r" (rval)); rval;}) 1161a47a12beSStefan Roese #define mtmsr(v) asm volatile("mtmsr %0" : : "r" (v)) 1162a47a12beSStefan Roese 1163a47a12beSStefan Roese #define mfspr(rn) ({unsigned int rval; \ 1164a47a12beSStefan Roese asm volatile("mfspr %0," stringify(rn) \ 1165a47a12beSStefan Roese : "=r" (rval)); rval;}) 1166a47a12beSStefan Roese #define mtspr(rn, v) asm volatile("mtspr " stringify(rn) ",%0" : : "r" (v)) 1167a47a12beSStefan Roese 1168a47a12beSStefan Roese #define tlbie(v) asm volatile("tlbie %0 \n sync" : : "r" (v)) 1169a47a12beSStefan Roese 1170a47a12beSStefan Roese /* Segment Registers */ 1171a47a12beSStefan Roese 1172a47a12beSStefan Roese #define SR0 0 1173a47a12beSStefan Roese #define SR1 1 1174a47a12beSStefan Roese #define SR2 2 1175a47a12beSStefan Roese #define SR3 3 1176a47a12beSStefan Roese #define SR4 4 1177a47a12beSStefan Roese #define SR5 5 1178a47a12beSStefan Roese #define SR6 6 1179a47a12beSStefan Roese #define SR7 7 1180a47a12beSStefan Roese #define SR8 8 1181a47a12beSStefan Roese #define SR9 9 1182a47a12beSStefan Roese #define SR10 10 1183a47a12beSStefan Roese #define SR11 11 1184a47a12beSStefan Roese #define SR12 12 1185a47a12beSStefan Roese #define SR13 13 1186a47a12beSStefan Roese #define SR14 14 1187a47a12beSStefan Roese #define SR15 15 1188a47a12beSStefan Roese 1189a47a12beSStefan Roese #ifndef __ASSEMBLY__ 1190a47a12beSStefan Roese 1191a47a12beSStefan Roese struct cpu_type { 1192a47a12beSStefan Roese char name[15]; 1193a47a12beSStefan Roese u32 soc_ver; 1194a47a12beSStefan Roese u32 num_cores; 1195fbb9ecf7STimur Tabi u32 mask; /* which cpu(s) actually exist */ 1196b8bf0adcSShaveta Leekha #ifdef CONFIG_HETROGENOUS_CLUSTERS 1197b8bf0adcSShaveta Leekha u32 dsp_num_cores; 1198b8bf0adcSShaveta Leekha u32 dsp_mask; /* which DSP cpu(s) actually exist */ 1199b8bf0adcSShaveta Leekha #endif 1200a47a12beSStefan Roese }; 1201a47a12beSStefan Roese 1202a47a12beSStefan Roese struct cpu_type *identify_cpu(u32 ver); 1203123bd96dSYork Sun int fixup_cpu(void); 1204a47a12beSStefan Roese 1205f6981439SYork Sun int fsl_qoriq_core_to_cluster(unsigned int core); 1206b8bf0adcSShaveta Leekha int fsl_qoriq_dsp_core_to_cluster(unsigned int core); 1207f6981439SYork Sun 1208a47a12beSStefan Roese #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) 1209a47a12beSStefan Roese #define CPU_TYPE_ENTRY(n, v, nc) \ 1210fbb9ecf7STimur Tabi { .name = #n, .soc_ver = SVR_##v, .num_cores = (nc), \ 1211fbb9ecf7STimur Tabi .mask = (1 << (nc)) - 1 } 1212fbb9ecf7STimur Tabi #define CPU_TYPE_ENTRY_MASK(n, v, nc, m) \ 1213fbb9ecf7STimur Tabi { .name = #n, .soc_ver = SVR_##v, .num_cores = (nc), .mask = (m) } 1214a47a12beSStefan Roese #else 1215a47a12beSStefan Roese #if defined(CONFIG_MPC83xx) 1216a47a12beSStefan Roese #define CPU_TYPE_ENTRY(x) {#x, SPR_##x} 1217a47a12beSStefan Roese #endif 1218a47a12beSStefan Roese #endif 1219a47a12beSStefan Roese 1220a47a12beSStefan Roese 1221a47a12beSStefan Roese #ifndef CONFIG_MACH_SPECIFIC 1222a47a12beSStefan Roese extern int _machine; 1223a47a12beSStefan Roese extern int have_of; 1224a47a12beSStefan Roese #endif /* CONFIG_MACH_SPECIFIC */ 1225a47a12beSStefan Roese 1226a47a12beSStefan Roese /* what kind of prep workstation we are */ 1227a47a12beSStefan Roese extern int _prep_type; 1228a47a12beSStefan Roese /* 1229a47a12beSStefan Roese * This is used to identify the board type from a given PReP board 1230a47a12beSStefan Roese * vendor. Board revision is also made available. 1231a47a12beSStefan Roese */ 1232a47a12beSStefan Roese extern unsigned char ucSystemType; 1233a47a12beSStefan Roese extern unsigned char ucBoardRev; 1234a47a12beSStefan Roese extern unsigned char ucBoardRevMaj, ucBoardRevMin; 1235a47a12beSStefan Roese 1236a47a12beSStefan Roese struct task_struct; 1237a47a12beSStefan Roese void start_thread(struct pt_regs *regs, unsigned long nip, unsigned long sp); 1238a47a12beSStefan Roese void release_thread(struct task_struct *); 1239a47a12beSStefan Roese 1240a47a12beSStefan Roese /* 1241a47a12beSStefan Roese * Create a new kernel thread. 1242a47a12beSStefan Roese */ 1243a47a12beSStefan Roese extern long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); 1244a47a12beSStefan Roese 1245a47a12beSStefan Roese /* 1246a47a12beSStefan Roese * Bus types 1247a47a12beSStefan Roese */ 1248a47a12beSStefan Roese #define EISA_bus 0 1249a47a12beSStefan Roese #define EISA_bus__is_a_macro /* for versions in ksyms.c */ 1250a47a12beSStefan Roese #define MCA_bus 0 1251a47a12beSStefan Roese #define MCA_bus__is_a_macro /* for versions in ksyms.c */ 1252a47a12beSStefan Roese 1253a47a12beSStefan Roese /* Lazy FPU handling on uni-processor */ 1254a47a12beSStefan Roese extern struct task_struct *last_task_used_math; 1255a47a12beSStefan Roese extern struct task_struct *last_task_used_altivec; 1256a47a12beSStefan Roese 1257a47a12beSStefan Roese /* 1258a47a12beSStefan Roese * this is the minimum allowable io space due to the location 1259a47a12beSStefan Roese * of the io areas on prep (first one at 0x80000000) but 1260a47a12beSStefan Roese * as soon as I get around to remapping the io areas with the BATs 1261a47a12beSStefan Roese * to match the mac we can raise this. -- Cort 1262a47a12beSStefan Roese */ 1263a47a12beSStefan Roese #define TASK_SIZE (0x80000000UL) 1264a47a12beSStefan Roese 1265a47a12beSStefan Roese /* This decides where the kernel will search for a free chunk of vm 1266a47a12beSStefan Roese * space during mmap's. 1267a47a12beSStefan Roese */ 1268a47a12beSStefan Roese #define TASK_UNMAPPED_BASE (TASK_SIZE / 8 * 3) 1269a47a12beSStefan Roese 1270a47a12beSStefan Roese typedef struct { 1271a47a12beSStefan Roese unsigned long seg; 1272a47a12beSStefan Roese } mm_segment_t; 1273a47a12beSStefan Roese 1274a47a12beSStefan Roese struct thread_struct { 1275a47a12beSStefan Roese unsigned long ksp; /* Kernel stack pointer */ 1276a47a12beSStefan Roese unsigned long wchan; /* Event task is sleeping on */ 1277a47a12beSStefan Roese struct pt_regs *regs; /* Pointer to saved register state */ 1278a47a12beSStefan Roese mm_segment_t fs; /* for get_fs() validation */ 1279a47a12beSStefan Roese void *pgdir; /* root of page-table tree */ 1280a47a12beSStefan Roese signed long last_syscall; 1281a47a12beSStefan Roese double fpr[32]; /* Complete floating point set */ 1282a47a12beSStefan Roese unsigned long fpscr_pad; /* fpr ... fpscr must be contiguous */ 1283a47a12beSStefan Roese unsigned long fpscr; /* Floating point status */ 1284a47a12beSStefan Roese #ifdef CONFIG_ALTIVEC 1285a47a12beSStefan Roese vector128 vr[32]; /* Complete AltiVec set */ 1286a47a12beSStefan Roese vector128 vscr; /* AltiVec status */ 1287a47a12beSStefan Roese unsigned long vrsave; 1288a47a12beSStefan Roese #endif /* CONFIG_ALTIVEC */ 1289a47a12beSStefan Roese }; 1290a47a12beSStefan Roese 1291a47a12beSStefan Roese #define INIT_SP (sizeof(init_stack) + (unsigned long) &init_stack) 1292a47a12beSStefan Roese 1293a47a12beSStefan Roese #define INIT_THREAD { \ 1294a47a12beSStefan Roese INIT_SP, /* ksp */ \ 1295a47a12beSStefan Roese 0, /* wchan */ \ 1296a47a12beSStefan Roese (struct pt_regs *)INIT_SP - 1, /* regs */ \ 1297a47a12beSStefan Roese KERNEL_DS, /*fs*/ \ 1298a47a12beSStefan Roese swapper_pg_dir, /* pgdir */ \ 1299a47a12beSStefan Roese 0, /* last_syscall */ \ 1300a47a12beSStefan Roese {0}, 0, 0 \ 1301a47a12beSStefan Roese } 1302a47a12beSStefan Roese 1303a47a12beSStefan Roese /* 1304a47a12beSStefan Roese * Note: the vm_start and vm_end fields here should *not* 1305a47a12beSStefan Roese * be in kernel space. (Could vm_end == vm_start perhaps?) 1306a47a12beSStefan Roese */ 1307a47a12beSStefan Roese #define INIT_MMAP { &init_mm, 0, 0x1000, NULL, \ 1308a47a12beSStefan Roese PAGE_SHARED, VM_READ | VM_WRITE | VM_EXEC, \ 1309a47a12beSStefan Roese 1, NULL, NULL } 1310a47a12beSStefan Roese 1311a47a12beSStefan Roese /* 1312a47a12beSStefan Roese * Return saved PC of a blocked thread. For now, this is the "user" PC 1313a47a12beSStefan Roese */ 1314a47a12beSStefan Roese static inline unsigned long thread_saved_pc(struct thread_struct *t) 1315a47a12beSStefan Roese { 1316a47a12beSStefan Roese return (t->regs) ? t->regs->nip : 0; 1317a47a12beSStefan Roese } 1318a47a12beSStefan Roese 1319a47a12beSStefan Roese #define copy_segments(tsk, mm) do { } while (0) 1320a47a12beSStefan Roese #define release_segments(mm) do { } while (0) 1321a47a12beSStefan Roese #define forget_segments() do { } while (0) 1322a47a12beSStefan Roese 1323a47a12beSStefan Roese unsigned long get_wchan(struct task_struct *p); 1324a47a12beSStefan Roese 1325a47a12beSStefan Roese #define KSTK_EIP(tsk) ((tsk)->thread.regs->nip) 1326a47a12beSStefan Roese #define KSTK_ESP(tsk) ((tsk)->thread.regs->gpr[1]) 1327a47a12beSStefan Roese 1328a47a12beSStefan Roese /* 1329a47a12beSStefan Roese * NOTE! The task struct and the stack go together 1330a47a12beSStefan Roese */ 1331a47a12beSStefan Roese #define THREAD_SIZE (2*PAGE_SIZE) 1332a47a12beSStefan Roese #define alloc_task_struct() \ 1333a47a12beSStefan Roese ((struct task_struct *) __get_free_pages(GFP_KERNEL,1)) 1334a47a12beSStefan Roese #define free_task_struct(p) free_pages((unsigned long)(p),1) 1335a47a12beSStefan Roese #define get_task_struct(tsk) atomic_inc(&mem_map[MAP_NR(tsk)].count) 1336a47a12beSStefan Roese 1337a47a12beSStefan Roese /* in process.c - for early bootup debug -- Cort */ 1338a47a12beSStefan Roese int ll_printk(const char *, ...); 1339a47a12beSStefan Roese void ll_puts(const char *); 1340a47a12beSStefan Roese 1341a47a12beSStefan Roese #define init_task (init_task_union.task) 1342a47a12beSStefan Roese #define init_stack (init_task_union.stack) 1343a47a12beSStefan Roese 1344a47a12beSStefan Roese /* In misc.c */ 1345a47a12beSStefan Roese void _nmask_and_or_msr(unsigned long nmask, unsigned long or_val); 1346a47a12beSStefan Roese 1347d891ab95SSimon Glass int prt_83xx_rsr(void); 13488749fa6aSSimon Glass int prt_8260_rsr(void); 13498749fa6aSSimon Glass int prt_8260_clks(void); 1350d891ab95SSimon Glass 1351a47a12beSStefan Roese #endif /* ndef ASSEMBLY*/ 1352a47a12beSStefan Roese 1353a47a12beSStefan Roese #ifdef CONFIG_MACH_SPECIFIC 13545b8e76c3SHeiko Schocher #if defined(CONFIG_WALNUT) 1355a47a12beSStefan Roese #define _machine _MACH_walnut 1356a47a12beSStefan Roese #define have_of 0 1357a47a12beSStefan Roese #else 1358a47a12beSStefan Roese #error "Machine not defined correctly" 1359a47a12beSStefan Roese #endif 1360a47a12beSStefan Roese #endif /* CONFIG_MACH_SPECIFIC */ 1361a47a12beSStefan Roese 1362*98f705c9SHeiko Schocher #if defined(CONFIG_MPC85xx) 1363966b11c7SStefan Roese #define EPAPR_MAGIC (0x45504150) 1364966b11c7SStefan Roese #else 1365966b11c7SStefan Roese #define EPAPR_MAGIC (0x65504150) 1366966b11c7SStefan Roese #endif 1367966b11c7SStefan Roese 1368a47a12beSStefan Roese #endif /* __ASM_PPC_PROCESSOR_H */ 1369