xref: /freebsd/sys/powerpc/include/spr.h (revision fe73eb441f1c98fe350f4822c7d2abfeef046bf8)
160727d8bSWarner Losh /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
371e3c308SPedro F. Giffuni  *
4b57e802aSBenno Rice  * Copyright (c) 2001 The NetBSD Foundation, Inc.
5b57e802aSBenno Rice  * All rights reserved.
6b57e802aSBenno Rice  *
7b57e802aSBenno Rice  * Redistribution and use in source and binary forms, with or without
8b57e802aSBenno Rice  * modification, are permitted provided that the following conditions
9b57e802aSBenno Rice  * are met:
10b57e802aSBenno Rice  * 1. Redistributions of source code must retain the above copyright
11b57e802aSBenno Rice  *    notice, this list of conditions and the following disclaimer.
12b57e802aSBenno Rice  * 2. Redistributions in binary form must reproduce the above copyright
13b57e802aSBenno Rice  *    notice, this list of conditions and the following disclaimer in the
14b57e802aSBenno Rice  *    documentation and/or other materials provided with the distribution.
15b57e802aSBenno Rice  *
16b57e802aSBenno Rice  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17b57e802aSBenno Rice  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18b57e802aSBenno Rice  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19b57e802aSBenno Rice  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20b57e802aSBenno Rice  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21b57e802aSBenno Rice  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22b57e802aSBenno Rice  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23b57e802aSBenno Rice  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24b57e802aSBenno Rice  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25b57e802aSBenno Rice  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26b57e802aSBenno Rice  * POSSIBILITY OF SUCH DAMAGE.
27b57e802aSBenno Rice  *
2819ca68d9SBenno Rice  * $NetBSD: spr.h,v 1.25 2002/08/14 15:38:40 matt Exp $
29b57e802aSBenno Rice  */
30b57e802aSBenno Rice #ifndef _POWERPC_SPR_H_
31b57e802aSBenno Rice #define	_POWERPC_SPR_H_
32b57e802aSBenno Rice 
33b57e802aSBenno Rice #ifndef _LOCORE
34b57e802aSBenno Rice #define	mtspr(reg, val)							\
35b57e802aSBenno Rice 	__asm __volatile("mtspr %0,%1" : : "K"(reg), "r"(val))
36b57e802aSBenno Rice #define	mfspr(reg)							\
3719ca68d9SBenno Rice 	( { register_t val;						\
38b57e802aSBenno Rice 	  __asm __volatile("mfspr %0,%1" : "=r"(val) : "K"(reg));	\
39b57e802aSBenno Rice 	  val; } )
401c96bdd1SNathan Whitehorn 
41c3e289e1SNathan Whitehorn #ifndef __powerpc64__
42c3e289e1SNathan Whitehorn 
431c96bdd1SNathan Whitehorn /* The following routines allow manipulation of the full 64-bit width
441c96bdd1SNathan Whitehorn  * of SPRs on 64 bit CPUs in bridge mode */
451c96bdd1SNathan Whitehorn 
461c96bdd1SNathan Whitehorn #define mtspr64(reg,valhi,vallo,scratch)				\
471c96bdd1SNathan Whitehorn 	__asm __volatile("						\
481c96bdd1SNathan Whitehorn 		mfmsr %0; 						\
49999987e5SNathan Whitehorn 		insrdi %0,%5,1,0; 					\
501c96bdd1SNathan Whitehorn 		mtmsrd %0; 						\
511c96bdd1SNathan Whitehorn 		isync; 							\
521c96bdd1SNathan Whitehorn 									\
531c96bdd1SNathan Whitehorn 		sld %1,%1,%4;						\
541c96bdd1SNathan Whitehorn 		or %1,%1,%2;						\
551c96bdd1SNathan Whitehorn 		mtspr %3,%1;						\
561c96bdd1SNathan Whitehorn 		srd %1,%1,%4;						\
571c96bdd1SNathan Whitehorn 									\
581c96bdd1SNathan Whitehorn 		clrldi %0,%0,1; 					\
591c96bdd1SNathan Whitehorn 		mtmsrd %0; 						\
601c96bdd1SNathan Whitehorn 		isync;"							\
61999987e5SNathan Whitehorn 	: "=r"(scratch), "=r"(valhi) : "r"(vallo), "K"(reg), "r"(32), "r"(1))
621c96bdd1SNathan Whitehorn 
631c96bdd1SNathan Whitehorn #define mfspr64upper(reg,scratch)					\
641c96bdd1SNathan Whitehorn 	( { register_t val;						\
651c96bdd1SNathan Whitehorn 	    __asm __volatile("						\
661c96bdd1SNathan Whitehorn 		mfmsr %0; 						\
67999987e5SNathan Whitehorn 		insrdi %0,%4,1,0; 					\
681c96bdd1SNathan Whitehorn 		mtmsrd %0; 						\
691c96bdd1SNathan Whitehorn 		isync; 							\
701c96bdd1SNathan Whitehorn 									\
711c96bdd1SNathan Whitehorn 		mfspr %1,%2;						\
721c96bdd1SNathan Whitehorn 		srd %1,%1,%3;						\
731c96bdd1SNathan Whitehorn 									\
741c96bdd1SNathan Whitehorn 		clrldi %0,%0,1; 					\
751c96bdd1SNathan Whitehorn 		mtmsrd %0; 						\
761c96bdd1SNathan Whitehorn 		isync;" 						\
77999987e5SNathan Whitehorn 	    : "=r"(scratch), "=r"(val) : "K"(reg), "r"(32), "r"(1));	\
781c96bdd1SNathan Whitehorn 	    val; } )
791c96bdd1SNathan Whitehorn 
80c3e289e1SNathan Whitehorn #endif
81c3e289e1SNathan Whitehorn 
82b57e802aSBenno Rice #endif /* _LOCORE */
83b57e802aSBenno Rice 
84b57e802aSBenno Rice /*
85b57e802aSBenno Rice  * Special Purpose Register declarations.
86b57e802aSBenno Rice  *
87b57e802aSBenno Rice  * The first column in the comments indicates which PowerPC
88b57e802aSBenno Rice  * architectures the SPR is valid on - 4 for 4xx series,
89b57e802aSBenno Rice  * 6 for 6xx/7xx series and 8 for 8xx and 8xxx series.
90b57e802aSBenno Rice  */
91b57e802aSBenno Rice 
92b57e802aSBenno Rice #define	SPR_MQ			0x000	/* .6. 601 MQ register */
93b57e802aSBenno Rice #define	SPR_XER			0x001	/* 468 Fixed Point Exception Register */
948b7f0d83SJustin Hibbits #define	SPR_DSCR		0x003	/* .6. Data Stream Control Register (Unprivileged) */
95b57e802aSBenno Rice #define	SPR_RTCU_R		0x004	/* .6. 601 RTC Upper - Read */
96b57e802aSBenno Rice #define	SPR_RTCL_R		0x005	/* .6. 601 RTC Lower - Read */
97b57e802aSBenno Rice #define	SPR_LR			0x008	/* 468 Link Register */
98b57e802aSBenno Rice #define	SPR_CTR			0x009	/* 468 Count Register */
998b7f0d83SJustin Hibbits #define	SPR_DSCRP		0x011   /* Data Stream Control Register (Privileged) */
100b57e802aSBenno Rice #define	SPR_DSISR		0x012	/* .68 DSI exception source */
101b57e802aSBenno Rice #define	  DSISR_DIRECT		  0x80000000 /* Direct-store error exception */
102b57e802aSBenno Rice #define	  DSISR_NOTFOUND	  0x40000000 /* Translation not found */
103b57e802aSBenno Rice #define	  DSISR_PROTECT		  0x08000000 /* Memory access not permitted */
104b57e802aSBenno Rice #define	  DSISR_INVRX		  0x04000000 /* Reserve-indexed insn direct-store access */
105b57e802aSBenno Rice #define	  DSISR_STORE		  0x02000000 /* Store operation */
106b57e802aSBenno Rice #define	  DSISR_DABR		  0x00400000 /* DABR match */
107b57e802aSBenno Rice #define	  DSISR_SEGMENT		  0x00200000 /* XXX; not in 6xx PEM */
108b57e802aSBenno Rice #define	  DSISR_EAR		  0x00100000 /* eciwx/ecowx && EAR[E] == 0 */
10981962477SJustin Hibbits #define	  DSISR_MC_UE_DEFERRED	  0x00008000 /* UE deferred error */
11081962477SJustin Hibbits #define	  DSISR_MC_UE_TABLEWALK	  0x00004000 /* UE deferred error during tablewalk */
11181962477SJustin Hibbits #define	  DSISR_MC_DERAT_MULTIHIT	  0x00000800 /* D-ERAT multi-hit */
11281962477SJustin Hibbits #define	  DSISR_MC_TLB_MULTIHIT	  0x00000400 /* TLB multi-hit */
11381962477SJustin Hibbits #define	  DSISR_MC_TLBIE_ERR	  0x00000200 /* TLBIE or TLBIEL programming error */
11481962477SJustin Hibbits #define	  DSISR_MC_SLB_PARITY	  0x00000100 /* SLB parity error */
11581962477SJustin Hibbits #define	  DSISR_MC_SLB_MULTIHIT	  0x00000080 /* SLB Multi-hit detected (D-side) */
11681962477SJustin Hibbits #define	  DSISR_MC_BAD_REAL_LD	  0x00000040 /* Bad real address for load. */
11781962477SJustin Hibbits #define	  DSISR_MC_BAD_ADDR	  0x00000020 /* Bad address for load or store tablewalk */
118b57e802aSBenno Rice #define	SPR_DAR			0x013	/* .68 Data Address Register */
119b57e802aSBenno Rice #define	SPR_RTCU_W		0x014	/* .6. 601 RTC Upper - Write */
120b57e802aSBenno Rice #define	SPR_RTCL_W		0x015	/* .6. 601 RTC Lower - Write */
121b57e802aSBenno Rice #define	SPR_DEC			0x016	/* .68 DECrementer register */
122b57e802aSBenno Rice #define	SPR_SDR1		0x019	/* .68 Page table base address register */
123b57e802aSBenno Rice #define	SPR_SRR0		0x01a	/* 468 Save/Restore Register 0 */
124b57e802aSBenno Rice #define	SPR_SRR1		0x01b	/* 468 Save/Restore Register 1 */
125ff30eecfSNathan Whitehorn #define	  SRR1_ISI_PFAULT	  0x40000000 /* ISI page not found */
126ff30eecfSNathan Whitehorn #define	  SRR1_ISI_NOEXECUTE	  0x10000000 /* Memory marked no-execute */
127ff30eecfSNathan Whitehorn #define	  SRR1_ISI_PP		  0x08000000 /* PP bits forbid access */
12881962477SJustin Hibbits #define	  SRR1_MCHK_DATA	  0x00200000 /* Machine check data in DSISR */
12981962477SJustin Hibbits #define	  SRR1_MCHK_IFETCH_M	  0x081c0000 /* Machine check instr fetch mask */
13081962477SJustin Hibbits #define	  SRR1_MCHK_IFETCH_SLBMH  0x000c0000 /* SLB multihit */
13165bbba25SJustin Hibbits #define	SPR_CFAR		0x01c	/* Come From Address Register */
13265bbba25SJustin Hibbits #define	SPR_AMR			0x01d	/* Authority Mask Register */
13365bbba25SJustin Hibbits 
13465bbba25SJustin Hibbits #define	SPR_PID			0x030	/* 4.. Process ID */
13565bbba25SJustin Hibbits 
136ffb56695SRafal Jaworowski #define	SPR_DECAR		0x036	/* ..8 Decrementer auto reload */
13765bbba25SJustin Hibbits #define	SPR_IAMR		0x03d	/* Instr. Authority Mask Reg */
13865bbba25SJustin Hibbits 
13919ca68d9SBenno Rice #define	SPR_EIE			0x050	/* ..8 Exception Interrupt ??? */
14019ca68d9SBenno Rice #define	SPR_EID			0x051	/* ..8 Exception Interrupt ??? */
14119ca68d9SBenno Rice #define	SPR_NRI			0x052	/* ..8 Exception Interrupt ??? */
142ac2605b1SJustin Hibbits #define	SPR_FSCR		0x099	/* Facility Status and Control Register */
143ac2605b1SJustin Hibbits #define	  FSCR_IC_MASK		  0xFF00000000000000ULL	/* FSCR[0:7] is Interrupt Cause */
144ac2605b1SJustin Hibbits #define	  FSCR_IC_FP		  0x0000000000000000ULL	/* FP unavailable */
145ac2605b1SJustin Hibbits #define	  FSCR_IC_VSX		  0x0100000000000000ULL	/* VSX unavailable */
146ac2605b1SJustin Hibbits #define	  FSCR_IC_DSCR		  0x0200000000000000ULL	/* Access to the DSCR at SPRs 3 or 17 */
147ac2605b1SJustin Hibbits #define	  FSCR_IC_PM		  0x0300000000000000ULL	/* Read or write access of a Performance Monitor SPR in group A */
148ac2605b1SJustin Hibbits #define	  FSCR_IC_BHRB		  0x0400000000000000ULL	/* Execution of a BHRB Instruction */
149ac2605b1SJustin Hibbits #define	  FSCR_IC_HTM		  0x0500000000000000ULL	/* Access to a Transactional Memory */
150b4b4b176SJustin Hibbits /* Reserved 0x0600000000000000ULL */
151ac2605b1SJustin Hibbits #define	  FSCR_IC_EBB		  0x0700000000000000ULL	/* Access to Event-Based Branch */
152ac2605b1SJustin Hibbits #define	  FSCR_IC_TAR		  0x0800000000000000ULL	/* Access to Target Address Register */
153ac2605b1SJustin Hibbits #define	  FSCR_IC_STOP		  0x0900000000000000ULL	/* Access to the 'stop' instruction in privileged non-hypervisor state */
154ac2605b1SJustin Hibbits #define	  FSCR_IC_MSG		  0x0A00000000000000ULL	/* Access to 'msgsndp' or 'msgclrp' instructions */
155d1d73b0eSJustin Hibbits #define	  FSCR_IC_LM		  0x0A00000000000000ULL	/* Access to load monitored facility */
156ac2605b1SJustin Hibbits #define	  FSCR_IC_SCV		  0x0C00000000000000ULL	/* Execution of a 'scv' instruction */
157d1d73b0eSJustin Hibbits #define	  FSCR_SCV		  0x0000000000001000 /* scv instruction available */
158d1d73b0eSJustin Hibbits #define	  FSCR_LM		  0x0000000000000800 /* Load monitored facilities available */
159d1d73b0eSJustin Hibbits #define	  FSCR_MSGP		  0x0000000000000400 /* msgsndp and SPRs available */
160d1d73b0eSJustin Hibbits #define	  FSCR_TAR		  0x0000000000000100 /* TAR register available */
161d1d73b0eSJustin Hibbits #define	  FSCR_EBB		  0x0000000000000080 /* Event-based branch available */
162d1d73b0eSJustin Hibbits #define	  FSCR_DSCR		  0x0000000000000004 /* DSCR available in PR state */
16365bbba25SJustin Hibbits #define	SPR_UAMOR		0x09d	/* User Authority Mask Override Register */
1643eb5d5ddSJustin Hibbits #define	SPR_DPDES		0x0b0	/* .6. Directed Privileged Doorbell Exception State Register */
165*fe73eb44SJustin Hibbits #define	SPR_HFSCR		0xbe	/* Hypervisor Facility Status and Control Register */
166*fe73eb44SJustin Hibbits #define	  HFSCR_BHRB		  0x0000000000000010 /* BHRB instructions */
167*fe73eb44SJustin Hibbits #define	  HFSCR_PM		  0x0000000000000008 /* Performance monitor SPRs */
168*fe73eb44SJustin Hibbits #define	  HFSCR_VECVSX		  0x0000000000000002 /* Vector and VSX facilities */
169*fe73eb44SJustin Hibbits #define	  HFSCR_FP		  0x0000000000000001 /* Floating Point facility */
170889d304bSJustin Hibbits #define	SPR_USPRG0		0x100	/* 4.8 User SPR General 0 */
17119ca68d9SBenno Rice #define	SPR_VRSAVE		0x100	/* .6. AltiVec VRSAVE */
172b57e802aSBenno Rice #define	SPR_SPRG0		0x110	/* 468 SPR General 0 */
173b57e802aSBenno Rice #define	SPR_SPRG1		0x111	/* 468 SPR General 1 */
174b57e802aSBenno Rice #define	SPR_SPRG2		0x112	/* 468 SPR General 2 */
175b57e802aSBenno Rice #define	SPR_SPRG3		0x113	/* 468 SPR General 3 */
176889d304bSJustin Hibbits #define	SPR_SPRG4		0x114	/* 4.8 SPR General 4 */
177889d304bSJustin Hibbits #define	SPR_SPRG5		0x115	/* 4.8 SPR General 5 */
178889d304bSJustin Hibbits #define	SPR_SPRG6		0x116	/* 4.8 SPR General 6 */
179889d304bSJustin Hibbits #define	SPR_SPRG7		0x117	/* 4.8 SPR General 7 */
18030a2bd2fSNathan Whitehorn #define	SPR_SCOMC		0x114	/* ... SCOM Address Register (970) */
18130a2bd2fSNathan Whitehorn #define	SPR_SCOMD		0x115	/* ... SCOM Data Register (970) */
18219ca68d9SBenno Rice #define	SPR_ASR			0x118	/* ... Address Space Register (PPC64) */
183b57e802aSBenno Rice #define	SPR_EAR			0x11a	/* .68 External Access Register */
184b57e802aSBenno Rice #define	SPR_PVR			0x11f	/* 468 Processor Version Register */
18519ca68d9SBenno Rice #define	  MPC601		  0x0001
18619ca68d9SBenno Rice #define	  MPC603		  0x0003
18719ca68d9SBenno Rice #define	  MPC604		  0x0004
18819ca68d9SBenno Rice #define	  MPC602		  0x0005
18919ca68d9SBenno Rice #define	  MPC603e		  0x0006
19019ca68d9SBenno Rice #define	  MPC603ev		  0x0007
19119ca68d9SBenno Rice #define	  MPC750		  0x0008
1922467c62fSAdrian Chadd #define	  MPC750CL		  0x7000	/* Nintendo Wii's Broadway */
19319ca68d9SBenno Rice #define	  MPC604ev		  0x0009
19419ca68d9SBenno Rice #define	  MPC7400		  0x000c
19519ca68d9SBenno Rice #define	  MPC620		  0x0014
19619ca68d9SBenno Rice #define	  IBM403		  0x0020
19719ca68d9SBenno Rice #define	  IBM401A1		  0x0021
19819ca68d9SBenno Rice #define	  IBM401B2		  0x0022
19919ca68d9SBenno Rice #define	  IBM401C2		  0x0023
20019ca68d9SBenno Rice #define	  IBM401D2		  0x0024
20119ca68d9SBenno Rice #define	  IBM401E2		  0x0025
20219ca68d9SBenno Rice #define	  IBM401F2		  0x0026
20319ca68d9SBenno Rice #define	  IBM401G2		  0x0027
204c3e289e1SNathan Whitehorn #define	  IBMRS64II		  0x0033
205c3e289e1SNathan Whitehorn #define	  IBMRS64III		  0x0034
206c3e289e1SNathan Whitehorn #define	  IBMPOWER4		  0x0035
207c3e289e1SNathan Whitehorn #define	  IBMRS64III_2		  0x0036
208c3e289e1SNathan Whitehorn #define	  IBMRS64IV		  0x0037
209c3e289e1SNathan Whitehorn #define	  IBMPOWER4PLUS		  0x0038
2101c96bdd1SNathan Whitehorn #define	  IBM970		  0x0039
211c3e289e1SNathan Whitehorn #define	  IBMPOWER5		  0x003a
212c3e289e1SNathan Whitehorn #define	  IBMPOWER5PLUS		  0x003b
2131c96bdd1SNathan Whitehorn #define	  IBM970FX		  0x003c
214c3e289e1SNathan Whitehorn #define	  IBMPOWER6		  0x003e
215c3e289e1SNathan Whitehorn #define	  IBMPOWER7		  0x003f
216c3e289e1SNathan Whitehorn #define	  IBMPOWER3		  0x0040
217c3e289e1SNathan Whitehorn #define	  IBMPOWER3PLUS		  0x0041
2181c96bdd1SNathan Whitehorn #define	  IBM970MP		  0x0044
2191c96bdd1SNathan Whitehorn #define	  IBM970GX		  0x0045
220d9dbc210SNathan Whitehorn #define	  IBMPOWERPCA2		  0x0049
2215d548e66SNathan Whitehorn #define	  IBMPOWER7PLUS		  0x004a
222770047f5SNathan Whitehorn #define	  IBMPOWER8E		  0x004b
223f074eff1SJustin Hibbits #define	  IBMPOWER8NVL		  0x004c
224770047f5SNathan Whitehorn #define	  IBMPOWER8		  0x004d
225dc720811SJustin Hibbits #define	  IBMPOWER9		  0x004e
22619ca68d9SBenno Rice #define	  MPC860		  0x0050
227c3e289e1SNathan Whitehorn #define	  IBMCELLBE		  0x0070
2281e434da3SJustin Hibbits #define	  IBMPOWER10		  0x0080
22919ca68d9SBenno Rice #define	  MPC8240		  0x0081
2301e434da3SJustin Hibbits #define	  IBMPOWER11		  0x0082
231c3e289e1SNathan Whitehorn #define	  PA6T			  0x0090
23219ca68d9SBenno Rice #define	  IBM405GP		  0x4011
23319ca68d9SBenno Rice #define	  IBM405L		  0x4161
23419ca68d9SBenno Rice #define	  IBM750FX		  0x7000
2354e895c54SPeter Grehan #define	MPC745X_P(v)	((v & 0xFFF8) == 0x8000)
23619ca68d9SBenno Rice #define	  MPC7450		  0x8000
23719ca68d9SBenno Rice #define	  MPC7455		  0x8001
238e6d3e1c2SPeter Grehan #define	  MPC7457		  0x8002
2394e895c54SPeter Grehan #define	  MPC7447A		  0x8003
2404e895c54SPeter Grehan #define	  MPC7448		  0x8004
24119ca68d9SBenno Rice #define	  MPC7410		  0x800c
24219ca68d9SBenno Rice #define	  MPC8245		  0x8081
243cb9bdc64SRafal Jaworowski #define	  FSL_E500v1		  0x8020
244cb9bdc64SRafal Jaworowski #define	  FSL_E500v2		  0x8021
2454f0962fcSRafal Jaworowski #define	  FSL_E500mc		  0x8023
2464f0962fcSRafal Jaworowski #define	  FSL_E5500		  0x8024
247dbaeb061SJustin Hibbits #define	  FSL_E6500		  0x8040
248dc720811SJustin Hibbits #define	  FSL_E300C1		  0x8083
249dc720811SJustin Hibbits #define	  FSL_E300C2		  0x8084
250dc720811SJustin Hibbits #define	  FSL_E300C3		  0x8085
251dc720811SJustin Hibbits #define	  FSL_E300C4		  0x8086
25219ca68d9SBenno Rice 
2536d13fd63SWojciech Macek #define   LPCR_PECE_WAKESET     (LPCR_PECE_EXT | LPCR_PECE_DECR | LPCR_PECE_ME)
254c0248976SWojciech Macek 
255889d304bSJustin Hibbits #define	SPR_DBSR		0x130	/* ..8 Debug Status Register */
256889d304bSJustin Hibbits #define	  DBSR_IDE		  0x80000000 /* Imprecise debug event. */
257889d304bSJustin Hibbits #define	  DBSR_UDE		  0x40000000 /* Unconditional debug event. */
258889d304bSJustin Hibbits #define	  DBSR_MRR		  0x30000000 /* Most recent Reset (mask). */
259889d304bSJustin Hibbits #define	  DBSR_ICMP		  0x08000000 /* Instr. complete debug event. */
260889d304bSJustin Hibbits #define	  DBSR_BRT		  0x04000000 /* Branch taken debug event. */
261889d304bSJustin Hibbits #define	  DBSR_IRPT		  0x02000000 /* Interrupt taken debug event. */
262889d304bSJustin Hibbits #define	  DBSR_TRAP		  0x01000000 /* Trap instr. debug event. */
263889d304bSJustin Hibbits #define	  DBSR_IAC1		  0x00800000 /* Instr. address compare #1. */
264889d304bSJustin Hibbits #define	  DBSR_IAC2		  0x00400000 /* Instr. address compare #2. */
265889d304bSJustin Hibbits #define	  DBSR_IAC3		  0x00200000 /* Instr. address compare #3. */
266889d304bSJustin Hibbits #define	  DBSR_IAC4		  0x00100000 /* Instr. address compare #4. */
267889d304bSJustin Hibbits #define	  DBSR_DAC1R		  0x00080000 /* Data addr. read compare #1. */
268889d304bSJustin Hibbits #define	  DBSR_DAC1W		  0x00040000 /* Data addr. write compare #1. */
269889d304bSJustin Hibbits #define	  DBSR_DAC2R		  0x00020000 /* Data addr. read compare #2. */
270889d304bSJustin Hibbits #define	  DBSR_DAC2W		  0x00010000 /* Data addr. write compare #2. */
271889d304bSJustin Hibbits #define	  DBSR_RET		  0x00008000 /* Return debug event. */
272e683c328SJustin Hibbits #define	SPR_EPCR		0x133
273e683c328SJustin Hibbits #define	  EPCR_EXTGS		  0x80000000
274e683c328SJustin Hibbits #define	  EPCR_DTLBGS		  0x40000000
275e683c328SJustin Hibbits #define	  EPCR_ITLBGS		  0x20000000
276e683c328SJustin Hibbits #define	  EPCR_DSIGS		  0x10000000
277e683c328SJustin Hibbits #define	  EPCR_ISIGS		  0x08000000
278e683c328SJustin Hibbits #define	  EPCR_DUVGS		  0x04000000
279e683c328SJustin Hibbits #define	  EPCR_ICM		  0x02000000
280e683c328SJustin Hibbits #define	  EPCR_GICMGS		  0x01000000
281e683c328SJustin Hibbits #define	  EPCR_DGTMI		  0x00800000
282e683c328SJustin Hibbits #define	  EPCR_DMIUH		  0x00400000
283e683c328SJustin Hibbits #define	  EPCR_PMGS		  0x00200000
284889d304bSJustin Hibbits #define	SPR_DBCR0		0x134	/* ..8 Debug Control Register 0 */
285889d304bSJustin Hibbits #define	SPR_DBCR1		0x135	/* ..8 Debug Control Register 1 */
2860137a09dSJustin Hibbits #define	SPR_DBCR2		0x136	/* ..8 Debug Control Register 2 */
287889d304bSJustin Hibbits #define	SPR_IAC1		0x138	/* ..8 Instruction Address Compare 1 */
288889d304bSJustin Hibbits #define	SPR_IAC2		0x139	/* ..8 Instruction Address Compare 2 */
289889d304bSJustin Hibbits #define	SPR_IAC3		0x13a	/* ..8 Instruction Address Compare 3 */
290889d304bSJustin Hibbits #define	SPR_IAC4		0x13b	/* ..8 Instruction Address Compare 4 */
291d225a2a9SNathan Whitehorn 
2924a11ed71SJustin Hibbits #define	SPR_HSRR0		0x13a
2934a11ed71SJustin Hibbits #define	SPR_HSRR1		0x13b
294889d304bSJustin Hibbits #define	SPR_DAC1		0x13c	/* ..8 Data Address Compare 1 */
295889d304bSJustin Hibbits #define	SPR_DAC2		0x13d	/* ..8 Data Address Compare 2 */
296889d304bSJustin Hibbits #define	SPR_DVC1		0x13e	/* ..8 Data Value Compare 1 */
297889d304bSJustin Hibbits #define	SPR_DVC2		0x13f	/* ..8 Data Value Compare 2 */
298889d304bSJustin Hibbits 
299889d304bSJustin Hibbits #define	SPR_LPCR		0x13e	/* .6. Logical Partitioning Control */
300d225a2a9SNathan Whitehorn #define	  LPCR_LPES		  0x008	/* Bit 60 */
301ef6da5e5SJustin Hibbits #define	  LPCR_HVICE		  0x002	/* Hypervisor Virtualization Interrupt (Arch 3.0) */
302c16359cfSBrandon Bergren #define	  LPCR_ILE		  (1ULL << 25) /* Interrupt Little-Endian (ISA 2.07) */
30365bbba25SJustin Hibbits #define	  LPCR_UPRT		  (1ULL << 22) /* Use Process Table (ISA 3) */
30465bbba25SJustin Hibbits #define	  LPCR_HR		  (1ULL << 20) /* Host Radix mode */
305ef6da5e5SJustin Hibbits #define	  LPCR_PECE_DRBL          (1ULL << 16) /* Directed Privileged Doorbell */
306ef6da5e5SJustin Hibbits #define	  LPCR_PECE_HDRBL         (1ULL << 15) /* Directed Hypervisor Doorbell */
307ef6da5e5SJustin Hibbits #define	  LPCR_PECE_EXT           (1ULL << 14) /* External exceptions */
308ef6da5e5SJustin Hibbits #define	  LPCR_PECE_DECR          (1ULL << 13) /* Decrementer exceptions */
309ef6da5e5SJustin Hibbits #define	  LPCR_PECE_ME            (1ULL << 12) /* Machine Check and Hypervisor */
310ef6da5e5SJustin Hibbits                                                /* Maintenance exceptions */
311889d304bSJustin Hibbits #define	SPR_LPID		0x13f	/* .6. Logical Partitioning Control */
3128af4cc4dSJustin Hibbits #define	SPR_HMER		0x150	/* Hypervisor Maintenance Exception Register */
3138af4cc4dSJustin Hibbits #define	SPR_HMEER		0x151	/* Hypervisor Maintenance Exception Enable Register */
31465bbba25SJustin Hibbits #define	SPR_AMOR		0x15d	/* Authority Mask Override Register */
315d225a2a9SNathan Whitehorn 
3163eb5d5ddSJustin Hibbits #define	SPR_TIR			0x1be	/* .6. Thread Identification Register */
31710d0cdfcSJustin Hibbits #define	SPR_PTCR		0x1d0	/* Partition Table Control Register */
318b793c8abSJustin Hibbits #define	SPR_SPEFSCR		0x200	/* ..8 Signal Processing Engine FSCR. */
319289041e2SJustin Hibbits #define	  SPEFSCR_SOVH		  0x80000000
320289041e2SJustin Hibbits #define	  SPEFSCR_OVH		  0x40000000
321289041e2SJustin Hibbits #define	  SPEFSCR_FGH		  0x20000000
322289041e2SJustin Hibbits #define	  SPEFSCR_FXH		  0x10000000
323289041e2SJustin Hibbits #define	  SPEFSCR_FINVH		  0x08000000
324289041e2SJustin Hibbits #define	  SPEFSCR_FDBZH		  0x04000000
325289041e2SJustin Hibbits #define	  SPEFSCR_FUNFH		  0x02000000
326289041e2SJustin Hibbits #define	  SPEFSCR_FOVFH		  0x01000000
327289041e2SJustin Hibbits #define	  SPEFSCR_FINXS		  0x00200000
328289041e2SJustin Hibbits #define	  SPEFSCR_FINVS		  0x00100000
329289041e2SJustin Hibbits #define	  SPEFSCR_FDBZS		  0x00080000
330289041e2SJustin Hibbits #define	  SPEFSCR_FUNFS		  0x00040000
331289041e2SJustin Hibbits #define	  SPEFSCR_FOVFS		  0x00020000
332289041e2SJustin Hibbits #define	  SPEFSCR_SOV		  0x00008000
333289041e2SJustin Hibbits #define	  SPEFSCR_OV		  0x00004000
334289041e2SJustin Hibbits #define	  SPEFSCR_FG		  0x00002000
335289041e2SJustin Hibbits #define	  SPEFSCR_FX		  0x00001000
336289041e2SJustin Hibbits #define	  SPEFSCR_FINV		  0x00000800
337289041e2SJustin Hibbits #define	  SPEFSCR_FDBZ		  0x00000400
338289041e2SJustin Hibbits #define	  SPEFSCR_FUNF		  0x00000200
339289041e2SJustin Hibbits #define	  SPEFSCR_FOVF		  0x00000100
340289041e2SJustin Hibbits #define	  SPEFSCR_FINXE		  0x00000040
341289041e2SJustin Hibbits #define	  SPEFSCR_FINVE		  0x00000020
342289041e2SJustin Hibbits #define	  SPEFSCR_FDBZE		  0x00000010
343289041e2SJustin Hibbits #define	  SPEFSCR_FUNFE		  0x00000008
344289041e2SJustin Hibbits #define	  SPEFSCR_FOVFE		  0x00000004
345289041e2SJustin Hibbits #define	  SPEFSCR_FRMC_M	  0x00000003
34666b2b71dSJustin Hibbits #define	  SPEFSCR_DFLT		  (SPEFSCR_FINVE | SPEFSCR_FDBZE | \
34766b2b71dSJustin Hibbits 				    SPEFSCR_FUNFE | SPEFSCR_FOVFE)
34819ca68d9SBenno Rice #define	SPR_IBAT0U		0x210	/* .6. Instruction BAT Reg 0 Upper */
34919ca68d9SBenno Rice #define	SPR_IBAT0L		0x211	/* .6. Instruction BAT Reg 0 Lower */
35019ca68d9SBenno Rice #define	SPR_IBAT1U		0x212	/* .6. Instruction BAT Reg 1 Upper */
35119ca68d9SBenno Rice #define	SPR_IBAT1L		0x213	/* .6. Instruction BAT Reg 1 Lower */
35219ca68d9SBenno Rice #define	SPR_IBAT2U		0x214	/* .6. Instruction BAT Reg 2 Upper */
35319ca68d9SBenno Rice #define	SPR_IBAT2L		0x215	/* .6. Instruction BAT Reg 2 Lower */
35419ca68d9SBenno Rice #define	SPR_IBAT3U		0x216	/* .6. Instruction BAT Reg 3 Upper */
35519ca68d9SBenno Rice #define	SPR_IBAT3L		0x217	/* .6. Instruction BAT Reg 3 Lower */
35619ca68d9SBenno Rice #define	SPR_DBAT0U		0x218	/* .6. Data BAT Reg 0 Upper */
35719ca68d9SBenno Rice #define	SPR_DBAT0L		0x219	/* .6. Data BAT Reg 0 Lower */
35819ca68d9SBenno Rice #define	SPR_DBAT1U		0x21a	/* .6. Data BAT Reg 1 Upper */
35919ca68d9SBenno Rice #define	SPR_DBAT1L		0x21b	/* .6. Data BAT Reg 1 Lower */
36019ca68d9SBenno Rice #define	SPR_DBAT2U		0x21c	/* .6. Data BAT Reg 2 Upper */
36119ca68d9SBenno Rice #define	SPR_DBAT2L		0x21d	/* .6. Data BAT Reg 2 Lower */
36219ca68d9SBenno Rice #define	SPR_DBAT3U		0x21e	/* .6. Data BAT Reg 3 Upper */
36319ca68d9SBenno Rice #define	SPR_DBAT3L		0x21f	/* .6. Data BAT Reg 3 Lower */
36419ca68d9SBenno Rice #define	SPR_IBAT4U		0x230	/* .6. Instruction BAT Reg 4 Upper */
3650137a09dSJustin Hibbits #define	SPR_DBCR3		0x231	/* ..8 Debug Control Register 3 */
36619ca68d9SBenno Rice #define	SPR_IBAT4L		0x231	/* .6. Instruction BAT Reg 4 Lower */
36719ca68d9SBenno Rice #define	SPR_IBAT5U		0x232	/* .6. Instruction BAT Reg 5 Upper */
36819ca68d9SBenno Rice #define	SPR_IBAT5L		0x233	/* .6. Instruction BAT Reg 5 Lower */
3690137a09dSJustin Hibbits #define	SPR_DBCR4		0x233	/* ..8 Debug Control Register 4 */
37019ca68d9SBenno Rice #define	SPR_IBAT6U		0x234	/* .6. Instruction BAT Reg 6 Upper */
3710137a09dSJustin Hibbits #define	SPR_DBCR5		0x234	/* ..8 Debug Control Register 5 */
37219ca68d9SBenno Rice #define	SPR_IBAT6L		0x235	/* .6. Instruction BAT Reg 6 Lower */
3730137a09dSJustin Hibbits #define	SPR_IAC5		0x235	/* ..8 Instruction Address Compare 5 */
37419ca68d9SBenno Rice #define	SPR_IBAT7U		0x236	/* .6. Instruction BAT Reg 7 Upper */
3750137a09dSJustin Hibbits #define	SPR_IAC6		0x236	/* ..8 Instruction Address Compare 6 */
37619ca68d9SBenno Rice #define	SPR_IBAT7L		0x237	/* .6. Instruction BAT Reg 7 Lower */
3770137a09dSJustin Hibbits #define	SPR_IAC7		0x237	/* ..8 Instruction Address Compare 7 */
37819ca68d9SBenno Rice #define	SPR_DBAT4U		0x238	/* .6. Data BAT Reg 4 Upper */
3790137a09dSJustin Hibbits #define	SPR_IAC8		0x238	/* ..8 Instruction Address Compare 8 */
38019ca68d9SBenno Rice #define	SPR_DBAT4L		0x239	/* .6. Data BAT Reg 4 Lower */
38119ca68d9SBenno Rice #define	SPR_DBAT5U		0x23a	/* .6. Data BAT Reg 5 Upper */
38219ca68d9SBenno Rice #define	SPR_DBAT5L		0x23b	/* .6. Data BAT Reg 5 Lower */
38319ca68d9SBenno Rice #define	SPR_DBAT6U		0x23c	/* .6. Data BAT Reg 6 Upper */
38419ca68d9SBenno Rice #define	SPR_DBAT6L		0x23d	/* .6. Data BAT Reg 6 Lower */
38519ca68d9SBenno Rice #define	SPR_DBAT7U		0x23e	/* .6. Data BAT Reg 7 Upper */
38619ca68d9SBenno Rice #define	SPR_DBAT7L		0x23f	/* .6. Data BAT Reg 7 Lower */
3870137a09dSJustin Hibbits #define	SPR_DBCR6		0x25b	/* ..8 Debug Control Register 6 */
388e683c328SJustin Hibbits #define	SPR_SPRG8		0x25c	/* ..8 SPR General 8 */
389169dd953SJustin Hibbits 
3909fe896ecSLeandro Lupori #define	SPR_MMCRA		0x312	/* ... Monitor Mode Control Register A */
3919fe896ecSLeandro Lupori #define	SPR_PMC1		0x313	/* ... PMC 1 */
3929fe896ecSLeandro Lupori #define	SPR_PMC2		0x314	/* ... PMC 2 */
3939fe896ecSLeandro Lupori #define	SPR_PMC3		0x315	/* ... PMC 3 */
3949fe896ecSLeandro Lupori #define	SPR_PMC4		0x316	/* ... PMC 4 */
3959fe896ecSLeandro Lupori #define	SPR_PMC5		0x317	/* ... PMC 5 */
3969fe896ecSLeandro Lupori #define	SPR_PMC6		0x318	/* ... PMC 6 */
3979fe896ecSLeandro Lupori #define	SPR_PMC7		0x319	/* ... PMC 7 */
3989fe896ecSLeandro Lupori #define	SPR_PMC8		0x31a	/* ... PMC 8 */
3999fe896ecSLeandro Lupori 
4009fe896ecSLeandro Lupori #define	SPR_MMCR0		0x31b	/* ... Monitor Mode Control Register 0 */
4019fe896ecSLeandro Lupori #define	  SPR_MMCR0_FC		  0x80000000 /* Freeze counters */
4029fe896ecSLeandro Lupori #define	  SPR_MMCR0_FCS		  0x40000000 /* Freeze counters in supervisor mode */
4039fe896ecSLeandro Lupori #define	  SPR_MMCR0_FCP		  0x20000000 /* Freeze counters in user mode */
4049fe896ecSLeandro Lupori #define	  SPR_MMCR0_FCM1	  0x10000000 /* Freeze counters when mark=1 */
4059fe896ecSLeandro Lupori #define	  SPR_MMCR0_FCM0	  0x08000000 /* Freeze counters when mark=0 */
4069fe896ecSLeandro Lupori #define	  SPR_MMCR0_PMXE	  0x04000000 /* Enable PM interrupt */
4079fe896ecSLeandro Lupori #define	  SPR_MMCR0_PMAE	  0x04000000 /* PM Alert Enable */
4089fe896ecSLeandro Lupori #define	  SPR_MMCR0_FCECE	  0x02000000 /* Freeze counters after event */
4099fe896ecSLeandro Lupori #define	  SPR_MMCR0_TBSEL_15	  0x01800000 /* Count bit 15 of TBL */
4109fe896ecSLeandro Lupori #define	  SPR_MMCR0_TBSEL_19	  0x01000000 /* Count bit 19 of TBL */
4119fe896ecSLeandro Lupori #define	  SPR_MMCR0_TBSEL_23	  0x00800000 /* Count bit 23 of TBL */
4129fe896ecSLeandro Lupori #define	  SPR_MMCR0_TBSEL_31	  0x00000000 /* Count bit 31 of TBL */
4139fe896ecSLeandro Lupori #define	  SPR_MMCR0_TBEE	  0x00400000 /* Time-base event enable */
4149fe896ecSLeandro Lupori #define	  SPR_MMCR0_THRESHOLD(x)  ((x) << 16) /* Threshold value */
4159fe896ecSLeandro Lupori #define	  SPR_MMCR0_PMC1CE	  0x00008000 /* PMC1 condition enable */
4169fe896ecSLeandro Lupori #define	  SPR_MMCR0_PMCNCE	  0x00004000 /* PMCn condition enable */
4179fe896ecSLeandro Lupori #define	  SPR_MMCR0_TRIGGER	  0x00002000 /* Trigger */
4189fe896ecSLeandro Lupori #define	  SPR_MMCR0_PMAO	  0x00000080 /* PM Alert Occurred */
4199fe896ecSLeandro Lupori #define	  SPR_MMCR0_FCPC	  0x00001000 /* Freeze Counters in Problem State Cond. */
4209fe896ecSLeandro Lupori #define	  SPR_MMCR0_FC56	  0x00000010 /* Freeze Counters 5-6 */
4219fe896ecSLeandro Lupori #define	  SPR_MMCR0_PMC1SEL(x)	  ((x) << 8) /* PMC1 selector (970) */
4229fe896ecSLeandro Lupori #define	  SPR_MMCR0_PMC2SEL(x)	  ((x) << 1) /* PMC2 selector (970) */
4239fe896ecSLeandro Lupori #define	  SPR_MMCR0_74XX_PMC1SEL(x)	(((x) & 0x3f) << 6) /* PMC1 selector */
4249fe896ecSLeandro Lupori #define	  SPR_MMCR0_74XX_PMC2SEL(x)	(((x) & 0x3f) << 0) /* PMC2 selector */
4259fe896ecSLeandro Lupori 
4269fe896ecSLeandro Lupori #define	SPR_MMCR1		0x31e	/* ... Monitor Mode Control Register 1 */
4279fe896ecSLeandro Lupori #define	  SPR_MMCR1_PMC3SEL(x)	  (((x) & 0x1f) << 27) /* PMC 3 selector */
4289fe896ecSLeandro Lupori #define	  SPR_MMCR1_PMC4SEL(x)	  (((x) & 0x1f) << 22) /* PMC 4 selector */
4299fe896ecSLeandro Lupori #define	  SPR_MMCR1_PMC5SEL(x)	  (((x) & 0x1f) << 17) /* PMC 5 selector */
4309fe896ecSLeandro Lupori #define	  SPR_MMCR1_PMC6SEL(x)	  (((x) & 0x1f) << 12) /* PMC 6 selector */
4319fe896ecSLeandro Lupori #define	  SPR_MMCR1_74XX_PMC6SEL(x)	(((x) & 0x3f) << 11) /* PMC 6 selector */
4329fe896ecSLeandro Lupori #define	  SPR_MMCR1_PMC7SEL(x)	  (((x) & 0x1f) << 7) /* PMC 7 selector */
4339fe896ecSLeandro Lupori #define	  SPR_MMCR1_PMC8SEL(x)	  (((x) & 0x1f) << 2) /* PMC 8 selector */
4349fe896ecSLeandro Lupori #define	  SPR_MMCR1_P8_PMCSEL_ALL	0xffffffff
4359fe896ecSLeandro Lupori #define	  SPR_MMCR1_P8_PMCNSEL_MASK(n)	(0xffUL << ((3-(n))*8))
4369fe896ecSLeandro Lupori #define	  SPR_MMCR1_P8_PMCNSEL(n, v)	((unsigned long)(v) << ((3-(n))*8))
4379fe896ecSLeandro Lupori 
4389fe896ecSLeandro Lupori #define	SPR_MMCR2		0x311
4399fe896ecSLeandro Lupori #define	  SPR_MMCR2_CNBIT(n, bit) ((bit) << (((5 - (n)) * 9) + 10))
4406a32dae2SLeandro Lupori #define	  SPR_MMCR2_FCNS(n)	  SPR_MMCR2_CNBIT(n, 0x100ULL)
4416a32dae2SLeandro Lupori #define	  SPR_MMCR2_FCNP0(n)	  SPR_MMCR2_CNBIT(n, 0x080ULL)
4426a32dae2SLeandro Lupori #define	  SPR_MMCR2_FCNP1(n)	  SPR_MMCR2_CNBIT(n, 0x040ULL)
4436a32dae2SLeandro Lupori #define	  SPR_MMCR2_FCNM1(n)	  SPR_MMCR2_CNBIT(n, 0x020ULL)
4446a32dae2SLeandro Lupori #define	  SPR_MMCR2_FCNM0(n)	  SPR_MMCR2_CNBIT(n, 0x010ULL)
4456a32dae2SLeandro Lupori #define	  SPR_MMCR2_FCNWAIT(n)	  SPR_MMCR2_CNBIT(n, 0x008ULL)
4466a32dae2SLeandro Lupori #define	  SPR_MMCR2_FCNH(n)	  SPR_MMCR2_CNBIT(n, 0x004ULL)
4479fe896ecSLeandro Lupori /* Freeze Counter N in Hypervisor/Supervisor/Problem states */
4489fe896ecSLeandro Lupori #define	  SPR_MMCR2_FCNHSP(n)					\
4499fe896ecSLeandro Lupori 		(SPR_MMCR2_FCNS(n) | SPR_MMCR2_FCNP0(n) |	\
4509fe896ecSLeandro Lupori 		    SPR_MMCR2_FCNP1(n) | SPR_MMCR2_FCNH(n))
451169dd953SJustin Hibbits 
45219ca68d9SBenno Rice #define	SPR_M_TWB		0x31c	/* ..8 MMU tablewalk base */
45319ca68d9SBenno Rice #define	  M_TWB_L1TB		0xfffff000 /* level-1 translation base */
45419ca68d9SBenno Rice #define	  M_TWB_L1INDX		0x00000ffc /* level-1 index */
45519ca68d9SBenno Rice #define	SPR_MD_TWC		0x31d	/* ..8 DMMU tablewalk control */
45619ca68d9SBenno Rice #define	SPR_MD_RPN		0x31e	/* ..8 DMMU real (phys) page number */
45719ca68d9SBenno Rice #define	SPR_MD_TW		0x31f	/* ..8 MMU tablewalk scratch */
4583eb5d5ddSJustin Hibbits #define	SPR_BESCRS		0x320	/* .6. Branch Event Status and Control Set Register */
4593eb5d5ddSJustin Hibbits #define	SPR_BESCRSU		0x321	/* .6. Branch Event Status and Control Set Register (upper 32-bit) */
4603eb5d5ddSJustin Hibbits #define	SPR_BESCRR		0x322	/* .6. Branch Event Status and Control Reset Register */
4613eb5d5ddSJustin Hibbits #define	SPR_BESCRRU		0x323	/* .6. Branch Event Status and Control Register (upper 32-bit) */
4623eb5d5ddSJustin Hibbits #define	SPR_EBBHR		0x324	/* .6. Event-based Branch Handler Register */
4633eb5d5ddSJustin Hibbits #define	SPR_EBBRR		0x325	/* .6. Event-based Branch Return Register */
4643eb5d5ddSJustin Hibbits #define	SPR_BESCR		0x326	/* .6. Branch Event Status and Control Register */
4653eb5d5ddSJustin Hibbits #define	SPR_LMRR		0x32d	/* .6. Load Monitored Region Register */
4663eb5d5ddSJustin Hibbits #define	SPR_LMSER		0x32e	/* .6. Load Monitored Section Enable Register */
4673eb5d5ddSJustin Hibbits #define	SPR_TAR			0x32f	/* .6. Branch Target Address Register */
46819ca68d9SBenno Rice #define	SPR_MI_CAM		0x330	/* ..8 IMMU CAM entry read */
46919ca68d9SBenno Rice #define	SPR_MI_RAM0		0x331	/* ..8 IMMU RAM entry read reg 0 */
47019ca68d9SBenno Rice #define	SPR_MI_RAM1		0x332	/* ..8 IMMU RAM entry read reg 1 */
47119ca68d9SBenno Rice #define	SPR_MD_CAM		0x338	/* ..8 IMMU CAM entry read */
47219ca68d9SBenno Rice #define	SPR_MD_RAM0		0x339	/* ..8 IMMU RAM entry read reg 0 */
47319ca68d9SBenno Rice #define	SPR_MD_RAM1		0x33a	/* ..8 IMMU RAM entry read reg 1 */
474ce7b8e55SJustin Hibbits #define	SPR_PSSCR		0x357	/* Processor Stop Status and Control Register (ISA 3.0) */
4756b74fa3fSJustin Hibbits #define	  PSSCR_PLS_S		  60
4766b74fa3fSJustin Hibbits #define	  PSSCR_PLS_M		  (0xf << PSSCR_PLS_S)
4776b74fa3fSJustin Hibbits #define	  PSSCR_SD		  (1 << 22)
4786b74fa3fSJustin Hibbits #define	  PSSCR_ESL		  (1 << 21)
4796b74fa3fSJustin Hibbits #define	  PSSCR_EC		  (1 << 20)
4806b74fa3fSJustin Hibbits #define	  PSSCR_PSLL_S		  16
4816b74fa3fSJustin Hibbits #define	  PSSCR_PSLL_M		  (0xf << PSSCR_PSLL_S)
4826b74fa3fSJustin Hibbits #define	  PSSCR_TR_S		  8
4836b74fa3fSJustin Hibbits #define	  PSSCR_TR_M		  (0x3 << PSSCR_TR_S)
4846b74fa3fSJustin Hibbits #define	  PSSCR_MTL_S		  4
4856b74fa3fSJustin Hibbits #define	  PSSCR_MTL_M		  (0xf << PSSCR_MTL_S)
4866b74fa3fSJustin Hibbits #define	  PSSCR_RL_S		  0
4876b74fa3fSJustin Hibbits #define	  PSSCR_RL_M		  (0xf << PSSCR_RL_S)
488b99540b6SJustin Hibbits #define	SPR_PMCR                0x374   /* Processor Management Control Register */
489b57e802aSBenno Rice #define	SPR_UMMCR2		0x3a0	/* .6. User Monitor Mode Control Register 2 */
490b57e802aSBenno Rice #define	SPR_UMMCR0		0x3a8	/* .6. User Monitor Mode Control Register 0 */
491b57e802aSBenno Rice #define	SPR_USIA		0x3ab	/* .6. User Sampled Instruction Address */
492b57e802aSBenno Rice #define	SPR_UMMCR1		0x3ac	/* .6. User Monitor Mode Control Register 1 */
4939fe896ecSLeandro Lupori #define	SPR_MMCR2_74XX		0x3b0	/* .6. Monitor Mode Control Register 2 */
4949fe896ecSLeandro Lupori #define	  SPR_MMCR2_74XX_THRESHMULT_32	  0x80000000 /* Multiply MMCR0 threshold by 32 */
4959fe896ecSLeandro Lupori #define	  SPR_MMCR2_74XX_THRESHMULT_2	  0x00000000 /* Multiply MMCR0 threshold by 2 */
4969fe896ecSLeandro Lupori #define	SPR_PMC5_74XX		0x3b1	/* .6. Performance Counter Register 5 */
4979fe896ecSLeandro Lupori #define	SPR_PMC6_74XX		0x3b2	/* .6. Performance Counter Register 6 */
4989fe896ecSLeandro Lupori #define	SPR_MMCR0_74XX		0x3b8	/* .6. Monitor Mode Control Register 0 */
4999fe896ecSLeandro Lupori #define	SPR_PMC1_74XX		0x3b9	/* .6. Performance Counter Register 1 */
5009fe896ecSLeandro Lupori #define	SPR_PMC2_74XX		0x3ba	/* .6. Performance Counter Register 2 */
501b57e802aSBenno Rice #define	SPR_SIA			0x3bb	/* .6. Sampled Instruction Address */
5029fe896ecSLeandro Lupori #define	SPR_MMCR1_74XX		0x3bc	/* .6. Monitor Mode Control Register 2 */
503b57e802aSBenno Rice 
5049fe896ecSLeandro Lupori #define	SPR_PMC3_74XX		0x3bd	/* .6. Performance Counter Register 3 */
5059fe896ecSLeandro Lupori #define	SPR_PMC4_74XX		0x3be	/* .6. Performance Counter Register 4 */
506b57e802aSBenno Rice #define	SPR_DMISS		0x3d0	/* .68 Data TLB Miss Address Register */
507b57e802aSBenno Rice #define	SPR_DCMP		0x3d1	/* .68 Data TLB Compare Register */
508b57e802aSBenno Rice #define	SPR_HASH1		0x3d2	/* .68 Primary Hash Address Register */
509b57e802aSBenno Rice #define	SPR_HASH2		0x3d3	/* .68 Secondary Hash Address Register */
510b57e802aSBenno Rice #define	SPR_IMISS		0x3d4	/* .68 Instruction TLB Miss Address Register */
511b57e802aSBenno Rice #define	SPR_TLBMISS		0x3d4	/* .6. TLB Miss Address Register */
512ab3f2a38SBrandon Bergren #define	SPR_DEAR		0x03d	/* ..8 Data Exception Address Register */
513b57e802aSBenno Rice #define	SPR_ICMP		0x3d5	/* .68 Instruction TLB Compare Register */
514b57e802aSBenno Rice #define	SPR_PTEHI		0x3d5	/* .6. Instruction TLB Compare Register */
515b57e802aSBenno Rice #define	SPR_RPA			0x3d6	/* .68 Required Physical Address Register */
516b57e802aSBenno Rice #define	SPR_PTELO		0x3d6	/* .6. Required Physical Address Register */
517ffb56695SRafal Jaworowski 
518ffb56695SRafal Jaworowski #define	SPR_TSR			0x150	/* ..8 Timer Status Register */
519ffb56695SRafal Jaworowski #define	SPR_TCR			0x154	/* ..8 Timer Control Register */
520ffb56695SRafal Jaworowski 
521b57e802aSBenno Rice #define	  TSR_ENW		  0x80000000 /* Enable Next Watchdog */
522b57e802aSBenno Rice #define	  TSR_WIS		  0x40000000 /* Watchdog Interrupt Status */
523b57e802aSBenno Rice #define	  TSR_WRS_MASK		  0x30000000 /* Watchdog Reset Status */
524b57e802aSBenno Rice #define	  TSR_WRS_NONE		  0x00000000 /* No watchdog reset has occurred */
525b57e802aSBenno Rice #define	  TSR_WRS_CORE		  0x10000000 /* Core reset was forced by the watchdog */
526b57e802aSBenno Rice #define	  TSR_WRS_CHIP		  0x20000000 /* Chip reset was forced by the watchdog */
527b57e802aSBenno Rice #define	  TSR_WRS_SYSTEM	  0x30000000 /* System reset was forced by the watchdog */
528b57e802aSBenno Rice #define	  TSR_PIS		  0x08000000 /* PIT Interrupt Status */
529ffb56695SRafal Jaworowski #define	  TSR_DIS		  0x08000000 /* Decrementer Interrupt Status */
530b57e802aSBenno Rice #define	  TSR_FIS		  0x04000000 /* FIT Interrupt Status */
531ffb56695SRafal Jaworowski 
532b57e802aSBenno Rice #define	  TCR_WP_MASK		  0xc0000000 /* Watchdog Period mask */
533b57e802aSBenno Rice #define	  TCR_WP_2_17		  0x00000000 /* 2**17 clocks */
534b57e802aSBenno Rice #define	  TCR_WP_2_21		  0x40000000 /* 2**21 clocks */
535b57e802aSBenno Rice #define	  TCR_WP_2_25		  0x80000000 /* 2**25 clocks */
536b57e802aSBenno Rice #define	  TCR_WP_2_29		  0xc0000000 /* 2**29 clocks */
537b57e802aSBenno Rice #define	  TCR_WRC_MASK		  0x30000000 /* Watchdog Reset Control mask */
538b57e802aSBenno Rice #define	  TCR_WRC_NONE		  0x00000000 /* No watchdog reset */
539b57e802aSBenno Rice #define	  TCR_WRC_CORE		  0x10000000 /* Core reset */
540b57e802aSBenno Rice #define	  TCR_WRC_CHIP		  0x20000000 /* Chip reset */
541b57e802aSBenno Rice #define	  TCR_WRC_SYSTEM	  0x30000000 /* System reset */
542b57e802aSBenno Rice #define	  TCR_WIE		  0x08000000 /* Watchdog Interrupt Enable */
543b57e802aSBenno Rice #define	  TCR_PIE		  0x04000000 /* PIT Interrupt Enable */
544ffb56695SRafal Jaworowski #define	  TCR_DIE		  0x04000000 /* Pecrementer Interrupt Enable */
545b57e802aSBenno Rice #define	  TCR_FP_MASK		  0x03000000 /* FIT Period */
546b57e802aSBenno Rice #define	  TCR_FP_2_9		  0x00000000 /* 2**9 clocks */
547b57e802aSBenno Rice #define	  TCR_FP_2_13		  0x01000000 /* 2**13 clocks */
548b57e802aSBenno Rice #define	  TCR_FP_2_17		  0x02000000 /* 2**17 clocks */
549b57e802aSBenno Rice #define	  TCR_FP_2_21		  0x03000000 /* 2**21 clocks */
550b57e802aSBenno Rice #define	  TCR_FIE		  0x00800000 /* FIT Interrupt Enable */
551b57e802aSBenno Rice #define	  TCR_ARE		  0x00400000 /* Auto Reload Enable */
552ffb56695SRafal Jaworowski 
553ffb56695SRafal Jaworowski #define	SPR_HID0		0x3f0	/* ..8 Hardware Implementation Register 0 */
554ffb56695SRafal Jaworowski #define	SPR_HID1		0x3f1	/* ..8 Hardware Implementation Register 1 */
5554f0962fcSRafal Jaworowski #define	SPR_HID2		0x3f3	/* ..8 Hardware Implementation Register 2 */
5568cf9d6cdSNathan Whitehorn #define	SPR_HID4		0x3f4	/* ..8 Hardware Implementation Register 4 */
5578cf9d6cdSNathan Whitehorn #define	SPR_HID5		0x3f6	/* ..8 Hardware Implementation Register 5 */
5582971d3bbSNathan Whitehorn #define	SPR_HID6		0x3f9	/* ..8 Hardware Implementation Register 6 */
5592971d3bbSNathan Whitehorn 
5602971d3bbSNathan Whitehorn #define	SPR_CELL_TSRL		0x380	/* ... Cell BE Thread Status Register */
5612971d3bbSNathan Whitehorn #define	SPR_CELL_TSCR		0x399	/* ... Cell BE Thread Switch Register */
562ffb56695SRafal Jaworowski 
563ffb56695SRafal Jaworowski #if defined(AIM)
564ffb56695SRafal Jaworowski #define	SPR_PIR			0x3ff	/* .6. Processor Identification Register */
56517f4cae4SRafal Jaworowski #elif defined(BOOKE)
566b40ce02aSNathan Whitehorn #define	SPR_PIR			0x11e	/* ..8 Processor Identification Register */
567ffb56695SRafal Jaworowski #endif
568ffb56695SRafal Jaworowski 
569b57e802aSBenno Rice #define	  DBCR0_EDM		  0x80000000 /* External Debug Mode */
570b57e802aSBenno Rice #define	  DBCR0_IDM		  0x40000000 /* Internal Debug Mode */
571b57e802aSBenno Rice #define	  DBCR0_RST_MASK	  0x30000000 /* ReSeT */
572b57e802aSBenno Rice #define	  DBCR0_RST_NONE	  0x00000000 /*   No action */
573b57e802aSBenno Rice #define	  DBCR0_RST_CORE	  0x10000000 /*   Core reset */
574b57e802aSBenno Rice #define	  DBCR0_RST_CHIP	  0x20000000 /*   Chip reset */
575b57e802aSBenno Rice #define	  DBCR0_RST_SYSTEM	  0x30000000 /*   System reset */
576b57e802aSBenno Rice #define	  DBCR0_IC		  0x08000000 /* Instruction Completion debug event */
577b57e802aSBenno Rice #define	  DBCR0_BT		  0x04000000 /* Branch Taken debug event */
578b57e802aSBenno Rice #define	  DBCR0_EDE		  0x02000000 /* Exception Debug Event */
579b57e802aSBenno Rice #define	  DBCR0_TDE		  0x01000000 /* Trap Debug Event */
580b57e802aSBenno Rice #define	  DBCR0_IA1		  0x00800000 /* IAC (Instruction Address Compare) 1 debug event */
581b57e802aSBenno Rice #define	  DBCR0_IA2		  0x00400000 /* IAC 2 debug event */
582b57e802aSBenno Rice #define	  DBCR0_IA12		  0x00200000 /* Instruction Address Range Compare 1-2 */
583b57e802aSBenno Rice #define	  DBCR0_IA12X		  0x00100000 /* IA12 eXclusive */
584b57e802aSBenno Rice #define	  DBCR0_IA3		  0x00080000 /* IAC 3 debug event */
585b57e802aSBenno Rice #define	  DBCR0_IA4		  0x00040000 /* IAC 4 debug event */
586b57e802aSBenno Rice #define	  DBCR0_IA34		  0x00020000 /* Instruction Address Range Compare 3-4 */
587b57e802aSBenno Rice #define	  DBCR0_IA34X		  0x00010000 /* IA34 eXclusive */
588b57e802aSBenno Rice #define	  DBCR0_IA12T		  0x00008000 /* Instruction Address Range Compare 1-2 range Toggle */
589b57e802aSBenno Rice #define	  DBCR0_IA34T		  0x00004000 /* Instruction Address Range Compare 3-4 range Toggle */
590b57e802aSBenno Rice #define	  DBCR0_FT		  0x00000001 /* Freeze Timers on debug event */
591ffb56695SRafal Jaworowski 
592b57e802aSBenno Rice #define	SPR_IABR		0x3f2	/* ..8 Instruction Address Breakpoint Register 0 */
593b57e802aSBenno Rice #define	SPR_DABR		0x3f5	/* .6. Data Address Breakpoint Register */
59419ca68d9SBenno Rice #define	SPR_MSSCR0		0x3f6	/* .6. Memory SubSystem Control Register */
59519ca68d9SBenno Rice #define	  MSSCR0_SHDEN		  0x80000000 /* 0: Shared-state enable */
59619ca68d9SBenno Rice #define	  MSSCR0_SHDPEN3	  0x40000000 /* 1: ~SHD[01] signal enable in MEI mode */
59719ca68d9SBenno Rice #define	  MSSCR0_L1INTVEN	  0x38000000 /* 2-4: L1 data cache ~HIT intervention enable */
59819ca68d9SBenno Rice #define	  MSSCR0_L2INTVEN	  0x07000000 /* 5-7: L2 data cache ~HIT intervention enable*/
59919ca68d9SBenno Rice #define	  MSSCR0_DL1HWF		  0x00800000 /* 8: L1 data cache hardware flush */
60019ca68d9SBenno Rice #define	  MSSCR0_MBO		  0x00400000 /* 9: must be one */
60119ca68d9SBenno Rice #define	  MSSCR0_EMODE		  0x00200000 /* 10: MPX bus mode (read-only) */
60219ca68d9SBenno Rice #define	  MSSCR0_ABD		  0x00100000 /* 11: address bus driven (read-only) */
60319ca68d9SBenno Rice #define	  MSSCR0_MBZ		  0x000fffff /* 12-31: must be zero */
6044702d987SJustin Hibbits #define	  MSSCR0_L2PFE		  0x00000003 /* 30-31: L2 prefetch enable */
605398973f8SJustin Hibbits #define	SPR_MSSSR0		0x3f7	/* .6. Memory Subsystem Status Register (MPC745x) */
606398973f8SJustin Hibbits #define	  MSSSR0_L2TAG		  0x00040000 /* 13: L2 tag parity error */
607398973f8SJustin Hibbits #define	  MSSSR0_L2DAT		  0x00020000 /* 14: L2 data parity error */
608398973f8SJustin Hibbits #define	  MSSSR0_L3TAG		  0x00010000 /* 15: L3 tag parity error */
609398973f8SJustin Hibbits #define	  MSSSR0_L3DAT		  0x00008000 /* 16: L3 data parity error */
610398973f8SJustin Hibbits #define	  MSSSR0_APE		  0x00004000 /* 17: Address parity error */
611398973f8SJustin Hibbits #define	  MSSSR0_DPE		  0x00002000 /* 18: Data parity error */
612398973f8SJustin Hibbits #define	  MSSSR0_TEA		  0x00001000 /* 19: Bus transfer error acknowledge */
6134702d987SJustin Hibbits #define	SPR_LDSTCR		0x3f8	/* .6. Load/Store Control Register */
614b57e802aSBenno Rice #define	SPR_L2PM		0x3f8	/* .6. L2 Private Memory Control Register */
615b57e802aSBenno Rice #define	SPR_L2CR		0x3f9	/* .6. L2 Control Register */
616b57e802aSBenno Rice #define	  L2CR_L2E		  0x80000000 /* 0: L2 enable */
617b57e802aSBenno Rice #define	  L2CR_L2PE		  0x40000000 /* 1: L2 data parity enable */
618b57e802aSBenno Rice #define	  L2CR_L2SIZ		  0x30000000 /* 2-3: L2 size */
619b57e802aSBenno Rice #define	   L2SIZ_2M		  0x00000000
620b57e802aSBenno Rice #define	   L2SIZ_256K		  0x10000000
621b57e802aSBenno Rice #define	   L2SIZ_512K		  0x20000000
622b57e802aSBenno Rice #define	   L2SIZ_1M		  0x30000000
623b57e802aSBenno Rice #define	  L2CR_L2CLK		  0x0e000000 /* 4-6: L2 clock ratio */
624b57e802aSBenno Rice #define	   L2CLK_DIS		  0x00000000 /* disable L2 clock */
625b57e802aSBenno Rice #define	   L2CLK_10		  0x02000000 /* core clock / 1   */
626b57e802aSBenno Rice #define	   L2CLK_15		  0x04000000 /*            / 1.5 */
627b57e802aSBenno Rice #define	   L2CLK_20		  0x08000000 /*            / 2   */
628b57e802aSBenno Rice #define	   L2CLK_25		  0x0a000000 /*            / 2.5 */
629b57e802aSBenno Rice #define	   L2CLK_30		  0x0c000000 /*            / 3   */
630b57e802aSBenno Rice #define	  L2CR_L2RAM		  0x01800000 /* 7-8: L2 RAM type */
631b57e802aSBenno Rice #define	   L2RAM_FLOWTHRU_BURST	  0x00000000
632b57e802aSBenno Rice #define	   L2RAM_PIPELINE_BURST	  0x01000000
633b57e802aSBenno Rice #define	   L2RAM_PIPELINE_LATE	  0x01800000
634b57e802aSBenno Rice #define	  L2CR_L2DO		  0x00400000 /* 9: L2 data-only.
635b57e802aSBenno Rice 				      Setting this bit disables instruction
636b57e802aSBenno Rice 				      caching. */
637b57e802aSBenno Rice #define	  L2CR_L2I		  0x00200000 /* 10: L2 global invalidate. */
6384702d987SJustin Hibbits #define	  L2CR_L2IO_7450	  0x00010000 /* 11: L2 instruction-only (MPC745x). */
639b57e802aSBenno Rice #define	  L2CR_L2CTL		  0x00100000 /* 11: L2 RAM control (ZZ enable).
640b57e802aSBenno Rice 				      Enables automatic operation of the
641b57e802aSBenno Rice 				      L2ZZ (low-power mode) signal. */
642b57e802aSBenno Rice #define	  L2CR_L2WT		  0x00080000 /* 12: L2 write-through. */
643b57e802aSBenno Rice #define	  L2CR_L2TS		  0x00040000 /* 13: L2 test support. */
644b57e802aSBenno Rice #define	  L2CR_L2OH		  0x00030000 /* 14-15: L2 output hold. */
6454702d987SJustin Hibbits #define	  L2CR_L2DO_7450	  0x00010000 /* 15: L2 data-only (MPC745x). */
646b57e802aSBenno Rice #define	  L2CR_L2SL		  0x00008000 /* 16: L2 DLL slow. */
647b57e802aSBenno Rice #define	  L2CR_L2DF		  0x00004000 /* 17: L2 differential clock. */
648b57e802aSBenno Rice #define	  L2CR_L2BYP		  0x00002000 /* 18: L2 DLL bypass. */
64919ca68d9SBenno Rice #define	  L2CR_L2FA		  0x00001000 /* 19: L2 flush assist (for software flush). */
65019ca68d9SBenno Rice #define	  L2CR_L2HWF		  0x00000800 /* 20: L2 hardware flush. */
65119ca68d9SBenno Rice #define	  L2CR_L2IO		  0x00000400 /* 21: L2 instruction-only. */
65219ca68d9SBenno Rice #define	  L2CR_L2CLKSTP		  0x00000200 /* 22: L2 clock stop. */
65319ca68d9SBenno Rice #define	  L2CR_L2DRO		  0x00000100 /* 23: L2DLL rollover checkstop enable. */
654b57e802aSBenno Rice #define	  L2CR_L2IP		  0x00000001 /* 31: L2 global invalidate in */
655b57e802aSBenno Rice 					     /*     progress (read only). */
656b57e802aSBenno Rice #define	SPR_L3CR		0x3fa	/* .6. L3 Control Register */
657b57e802aSBenno Rice #define	  L3CR_L3E		  0x80000000 /* 0: L3 enable */
658cf0c3004SMarcel Moolenaar #define	  L3CR_L3PE		  0x40000000 /* 1: L3 data parity enable */
659cf0c3004SMarcel Moolenaar #define	  L3CR_L3APE		  0x20000000
660b57e802aSBenno Rice #define	  L3CR_L3SIZ		  0x10000000 /* 3: L3 size (0=1MB, 1=2MB) */
661cf0c3004SMarcel Moolenaar #define	  L3CR_L3CLKEN		  0x08000000 /* 4: Enables L3_CLK[0:1] */
662cf0c3004SMarcel Moolenaar #define	  L3CR_L3CLK		  0x03800000
663cf0c3004SMarcel Moolenaar #define	  L3CR_L3IO		  0x00400000
664cf0c3004SMarcel Moolenaar #define	  L3CR_L3CLKEXT		  0x00200000
665cf0c3004SMarcel Moolenaar #define	  L3CR_L3CKSPEXT	  0x00100000
666cf0c3004SMarcel Moolenaar #define	  L3CR_L3OH1		  0x00080000
667cf0c3004SMarcel Moolenaar #define	  L3CR_L3SPO		  0x00040000
668cf0c3004SMarcel Moolenaar #define	  L3CR_L3CKSP		  0x00030000
669cf0c3004SMarcel Moolenaar #define	  L3CR_L3PSP		  0x0000e000
670cf0c3004SMarcel Moolenaar #define	  L3CR_L3REP		  0x00001000
671cf0c3004SMarcel Moolenaar #define	  L3CR_L3HWF		  0x00000800
672cf0c3004SMarcel Moolenaar #define	  L3CR_L3I		  0x00000400 /* 21: L3 global invalidate */
673cf0c3004SMarcel Moolenaar #define	  L3CR_L3RT		  0x00000300
674cf0c3004SMarcel Moolenaar #define	  L3CR_L3NIRCA		  0x00000080
675cf0c3004SMarcel Moolenaar #define	  L3CR_L3DO		  0x00000040
676cf0c3004SMarcel Moolenaar #define	  L3CR_PMEN		  0x00000004
677cf0c3004SMarcel Moolenaar #define	  L3CR_PMSIZ		  0x00000003
678cf0c3004SMarcel Moolenaar 
679b57e802aSBenno Rice #define	SPR_THRM1		0x3fc	/* .6. Thermal Management Register */
680b57e802aSBenno Rice #define	SPR_THRM2		0x3fd	/* .6. Thermal Management Register */
681b57e802aSBenno Rice #define	  SPR_THRM_TIN		  0x80000000 /* Thermal interrupt bit (RO) */
682b57e802aSBenno Rice #define	  SPR_THRM_TIV		  0x40000000 /* Thermal interrupt valid (RO) */
683b57e802aSBenno Rice #define	  SPR_THRM_THRESHOLD(x)	  ((x) << 23) /* Thermal sensor threshold */
684b57e802aSBenno Rice #define	  SPR_THRM_TID		  0x00000004 /* Thermal interrupt direction */
685b57e802aSBenno Rice #define	  SPR_THRM_TIE		  0x00000002 /* Thermal interrupt enable */
686b57e802aSBenno Rice #define	  SPR_THRM_VALID		  0x00000001 /* Valid bit */
687b57e802aSBenno Rice #define	SPR_THRM3		0x3fe	/* .6. Thermal Management Register */
688b57e802aSBenno Rice #define	  SPR_THRM_TIMER(x)	  ((x) << 1) /* Sampling interval timer */
689b57e802aSBenno Rice #define	  SPR_THRM_ENABLE	  0x00000001 /* TAU Enable */
690b57e802aSBenno Rice #define	SPR_FPECR		0x3fe	/* .6. Floating-Point Exception Cause Register */
691b57e802aSBenno Rice 
692b57e802aSBenno Rice /* Time Base Register declarations */
693ffb56695SRafal Jaworowski #define	TBR_TBL			0x10c	/* 468 Time Base Lower - read */
694ffb56695SRafal Jaworowski #define	TBR_TBU			0x10d	/* 468 Time Base Upper - read */
695ffb56695SRafal Jaworowski #define	TBR_TBWL		0x11c	/* 468 Time Base Lower - supervisor, write */
696ffb56695SRafal Jaworowski #define	TBR_TBWU		0x11d	/* 468 Time Base Upper - supervisor, write */
697b57e802aSBenno Rice 
698b57e802aSBenno Rice /* Performance counter declarations */
699b57e802aSBenno Rice #define	PMC_OVERFLOW		0x80000000 /* Counter has overflowed */
700b57e802aSBenno Rice 
70130a2bd2fSNathan Whitehorn /* The first five countable [non-]events are common to many PMC's */
702b57e802aSBenno Rice #define	PMCN_NONE		 0 /* Count nothing */
703b57e802aSBenno Rice #define	PMCN_CYCLES		 1 /* Processor cycles */
704b57e802aSBenno Rice #define	PMCN_ICOMP		 2 /* Instructions completed */
705b57e802aSBenno Rice #define	PMCN_TBLTRANS		 3 /* TBL bit transitions */
706b57e802aSBenno Rice #define	PCMN_IDISPATCH		 4 /* Instructions dispatched */
707b57e802aSBenno Rice 
70830a2bd2fSNathan Whitehorn /* Similar things for the 970 PMC direct counters */
70930a2bd2fSNathan Whitehorn #define	PMC970N_NONE		0x8 /* Count nothing */
71030a2bd2fSNathan Whitehorn #define	PMC970N_CYCLES		0xf /* Processor cycles */
71130a2bd2fSNathan Whitehorn #define	PMC970N_ICOMP		0x9 /* Instructions completed */
71230a2bd2fSNathan Whitehorn 
71321776ff8SNathan Whitehorn #if defined(BOOKE)
714ffb56695SRafal Jaworowski 
7156035018bSJustin Hibbits #define	SPR_MCARU		0x239	/* ..8 Machine Check Address register upper bits */
7164f0962fcSRafal Jaworowski #define	SPR_MCSR		0x23c	/* ..8 Machine Check Syndrome register */
71781962477SJustin Hibbits #define	  MCSR_MCP		  0x80000000 /* Machine check input signal to core */
71881962477SJustin Hibbits #define	  MCSR_L2MMU_MHIT	  0x08000000 /* L2 MMU simultaneous hit */
71981962477SJustin Hibbits #define	  MCSR_NMI		  0x00100000 /* Non-maskable interrupt */
72081962477SJustin Hibbits #define	  MCSR_MAV		  0x00080000 /* MCAR address valid */
72181962477SJustin Hibbits #define	  MCSR_MEA		  0x00040000 /* MCAR effective address */
72281962477SJustin Hibbits #define	  MCSR_IF		  0x00010000 /* Instruction fetch error report */
72381962477SJustin Hibbits #define	  MCSR_LD		  0x00008000 /* Load instruction error report */
72481962477SJustin Hibbits #define	  MCSR_ST		  0x00004000 /* Store instruction error report */
72581962477SJustin Hibbits #define	  MCSR_LDG		  0x00002000 /* Guarded load instruction error report */
72681962477SJustin Hibbits #define	  MCSR_TLBSYNC		  0x00000002 /* Simultaneous TLBSYNC detected */
7276035018bSJustin Hibbits #define	SPR_MCAR		0x23d	/* ..8 Machine Check Address register */
7284f0962fcSRafal Jaworowski 
729ffb56695SRafal Jaworowski #define	SPR_ESR			0x003e	/* ..8 Exception Syndrome Register */
730ffb56695SRafal Jaworowski #define	  ESR_PIL		  0x08000000 /* Program interrupt - illegal */
731ffb56695SRafal Jaworowski #define	  ESR_PPR		  0x04000000 /* Program interrupt - privileged */
732ffb56695SRafal Jaworowski #define	  ESR_PTR		  0x02000000 /* Program interrupt - trap */
733ffb56695SRafal Jaworowski #define	  ESR_ST		  0x00800000 /* Store operation */
734ffb56695SRafal Jaworowski #define	  ESR_DLK		  0x00200000 /* Data storage, D cache locking */
735ffb56695SRafal Jaworowski #define	  ESR_ILK		  0x00100000 /* Data storage, I cache locking */
736ffb56695SRafal Jaworowski #define	  ESR_BO		  0x00020000 /* Data/instruction storage, byte ordering */
737ffb56695SRafal Jaworowski #define	  ESR_SPE		  0x00000080 /* SPE exception bit */
738ffb56695SRafal Jaworowski 
739ffb56695SRafal Jaworowski #define	SPR_CSRR0		0x03a	/* ..8 58 Critical SRR0 */
740ffb56695SRafal Jaworowski #define	SPR_CSRR1		0x03b	/* ..8 59 Critical SRR1 */
741ffb56695SRafal Jaworowski #define	SPR_MCSRR0		0x23a	/* ..8 570 Machine check SRR0 */
742ffb56695SRafal Jaworowski #define	SPR_MCSRR1		0x23b	/* ..8 571 Machine check SRR1 */
74391722a2fSJustin Hibbits #define	SPR_DSRR0		0x23e	/* ..8 574 Debug SRR0<E.ED> */
74491722a2fSJustin Hibbits #define	SPR_DSRR1		0x23f	/* ..8 575 Debug SRR1<E.ED> */
745ffb56695SRafal Jaworowski 
7464f0962fcSRafal Jaworowski #define	SPR_MMUCSR0		0x3f4	/* ..8 1012 MMU Control and Status Register 0 */
7474f0962fcSRafal Jaworowski #define	  MMUCSR0_L2TLB0_FI	0x04	/*  TLB0 flash invalidate */
7484f0962fcSRafal Jaworowski #define	  MMUCSR0_L2TLB1_FI	0x02	/*  TLB1 flash invalidate */
7494f0962fcSRafal Jaworowski 
750ffb56695SRafal Jaworowski #define	SPR_SVR			0x3ff	/* ..8 1023 System Version Register */
751df697aa0SMarcel Moolenaar #define	  SVR_MPC8533		  0x8034
752df697aa0SMarcel Moolenaar #define	  SVR_MPC8533E		  0x803c
753fe48da3fSRafal Jaworowski #define	  SVR_MPC8541		  0x8072
754fe48da3fSRafal Jaworowski #define	  SVR_MPC8541E		  0x807a
755389e4721SRafal Jaworowski #define	  SVR_MPC8548		  0x8031
756389e4721SRafal Jaworowski #define	  SVR_MPC8548E		  0x8039
757fe48da3fSRafal Jaworowski #define	  SVR_MPC8555		  0x8071
758fe48da3fSRafal Jaworowski #define	  SVR_MPC8555E		  0x8079
759fe48da3fSRafal Jaworowski #define	  SVR_MPC8572		  0x80e0
760fe48da3fSRafal Jaworowski #define	  SVR_MPC8572E		  0x80e8
761df697aa0SMarcel Moolenaar #define	  SVR_P1011		  0x80e5
762df697aa0SMarcel Moolenaar #define	  SVR_P1011E		  0x80ed
7636529f950SJustin Hibbits #define	  SVR_P1013		  0x80e7
7646529f950SJustin Hibbits #define	  SVR_P1013E		  0x80ef
765df697aa0SMarcel Moolenaar #define	  SVR_P1020		  0x80e4
766df697aa0SMarcel Moolenaar #define	  SVR_P1020E		  0x80ec
7676529f950SJustin Hibbits #define	  SVR_P1022		  0x80e6
7686529f950SJustin Hibbits #define	  SVR_P1022E		  0x80ee
769df697aa0SMarcel Moolenaar #define	  SVR_P2010		  0x80e3
770df697aa0SMarcel Moolenaar #define	  SVR_P2010E		  0x80eb
771df697aa0SMarcel Moolenaar #define	  SVR_P2020		  0x80e2
772df697aa0SMarcel Moolenaar #define	  SVR_P2020E		  0x80ea
7734f0962fcSRafal Jaworowski #define	  SVR_P2041		  0x8210
7744f0962fcSRafal Jaworowski #define	  SVR_P2041E		  0x8218
7754f0962fcSRafal Jaworowski #define	  SVR_P3041		  0x8211
7764f0962fcSRafal Jaworowski #define	  SVR_P3041E		  0x8219
777ebfbeb83SMarcel Moolenaar #define	  SVR_P4040		  0x8200
778ebfbeb83SMarcel Moolenaar #define	  SVR_P4040E		  0x8208
779ebfbeb83SMarcel Moolenaar #define	  SVR_P4080		  0x8201
780ebfbeb83SMarcel Moolenaar #define	  SVR_P4080E		  0x8209
781f6bd9666SJustin Hibbits #define	  SVR_P5010		  0x8221
782f6bd9666SJustin Hibbits #define	  SVR_P5010E		  0x8229
7834f0962fcSRafal Jaworowski #define	  SVR_P5020		  0x8220
7844f0962fcSRafal Jaworowski #define	  SVR_P5020E		  0x8228
785dc720811SJustin Hibbits #define	  SVR_P5021		  0x8205
786dc720811SJustin Hibbits #define	  SVR_P5021E		  0x820d
787dc720811SJustin Hibbits #define	  SVR_P5040		  0x8204
788dc720811SJustin Hibbits #define	  SVR_P5040E		  0x820c
789fe48da3fSRafal Jaworowski #define	SVR_VER(svr)		(((svr) >> 16) & 0xffff)
790653b7b49SRafal Jaworowski 
791ffb56695SRafal Jaworowski #define	SPR_PID0		0x030	/* ..8 Process ID Register 0 */
792ffb56695SRafal Jaworowski #define	SPR_PID1		0x279	/* ..8 Process ID Register 1 */
793ffb56695SRafal Jaworowski #define	SPR_PID2		0x27a	/* ..8 Process ID Register 2 */
794ffb56695SRafal Jaworowski 
795ffb56695SRafal Jaworowski #define	SPR_TLB0CFG		0x2B0	/* ..8 TLB 0 Config Register */
796ffb56695SRafal Jaworowski #define	SPR_TLB1CFG		0x2B1	/* ..8 TLB 1 Config Register */
797ffb56695SRafal Jaworowski #define	  TLBCFG_ASSOC_MASK	0xff000000 /* Associativity of TLB */
798ffb56695SRafal Jaworowski #define	  TLBCFG_ASSOC_SHIFT	24
799ffb56695SRafal Jaworowski #define	  TLBCFG_NENTRY_MASK	0x00000fff /* Number of entries in TLB */
800ffb56695SRafal Jaworowski 
801ffb56695SRafal Jaworowski #define	SPR_IVPR		0x03f	/* ..8 Interrupt Vector Prefix Register */
802ffb56695SRafal Jaworowski #define	SPR_IVOR0		0x190	/* ..8 Critical input */
803ffb56695SRafal Jaworowski #define	SPR_IVOR1		0x191	/* ..8 Machine check */
804ffb56695SRafal Jaworowski #define	SPR_IVOR2		0x192
805ffb56695SRafal Jaworowski #define	SPR_IVOR3		0x193
806ffb56695SRafal Jaworowski #define	SPR_IVOR4		0x194
807ffb56695SRafal Jaworowski #define	SPR_IVOR5		0x195
808ffb56695SRafal Jaworowski #define	SPR_IVOR6		0x196
809ffb56695SRafal Jaworowski #define	SPR_IVOR7		0x197
810ffb56695SRafal Jaworowski #define	SPR_IVOR8		0x198
811ffb56695SRafal Jaworowski #define	SPR_IVOR9		0x199
812ffb56695SRafal Jaworowski #define	SPR_IVOR10		0x19a
813ffb56695SRafal Jaworowski #define	SPR_IVOR11		0x19b
814ffb56695SRafal Jaworowski #define	SPR_IVOR12		0x19c
815ffb56695SRafal Jaworowski #define	SPR_IVOR13		0x19d
816ffb56695SRafal Jaworowski #define	SPR_IVOR14		0x19e
817ffb56695SRafal Jaworowski #define	SPR_IVOR15		0x19f
818ffb56695SRafal Jaworowski #define	SPR_IVOR32		0x210
819ffb56695SRafal Jaworowski #define	SPR_IVOR33		0x211
820ffb56695SRafal Jaworowski #define	SPR_IVOR34		0x212
821ffb56695SRafal Jaworowski #define	SPR_IVOR35		0x213
822ffb56695SRafal Jaworowski 
823ffb56695SRafal Jaworowski #define	SPR_MAS0		0x270	/* ..8 MMU Assist Register 0 Book-E/e500 */
824ffb56695SRafal Jaworowski #define	SPR_MAS1		0x271	/* ..8 MMU Assist Register 1 Book-E/e500 */
825ffb56695SRafal Jaworowski #define	SPR_MAS2		0x272	/* ..8 MMU Assist Register 2 Book-E/e500 */
826ffb56695SRafal Jaworowski #define	SPR_MAS3		0x273	/* ..8 MMU Assist Register 3 Book-E/e500 */
827ffb56695SRafal Jaworowski #define	SPR_MAS4		0x274	/* ..8 MMU Assist Register 4 Book-E/e500 */
828ffb56695SRafal Jaworowski #define	SPR_MAS5		0x275	/* ..8 MMU Assist Register 5 Book-E */
829ffb56695SRafal Jaworowski #define	SPR_MAS6		0x276	/* ..8 MMU Assist Register 6 Book-E/e500 */
830ffb56695SRafal Jaworowski #define	SPR_MAS7		0x3B0	/* ..8 MMU Assist Register 7 Book-E/e500 */
8314f0962fcSRafal Jaworowski #define	SPR_MAS8		0x155	/* ..8 MMU Assist Register 8 Book-E/e500 */
8324f0962fcSRafal Jaworowski 
8334f0962fcSRafal Jaworowski #define	SPR_L1CFG0		0x203	/* ..8 L1 cache configuration register 0 */
8344f0962fcSRafal Jaworowski #define	SPR_L1CFG1		0x204	/* ..8 L1 cache configuration register 1 */
8354f0962fcSRafal Jaworowski 
8364f0962fcSRafal Jaworowski #define	SPR_CCR1		0x378
8374f0962fcSRafal Jaworowski #define	  CCR1_L2COBE		0x00000040
8384f0962fcSRafal Jaworowski 
8394f0962fcSRafal Jaworowski #define	DCR_L2DCDCRAI		0x0000	/* L2 D-Cache DCR Address Pointer */
8404f0962fcSRafal Jaworowski #define	DCR_L2DCDCRDI		0x0001	/* L2 D-Cache DCR Data Indirect */
8414f0962fcSRafal Jaworowski #define	DCR_L2CR0		0x00	/* L2 Cache Configuration Register 0 */
8424f0962fcSRafal Jaworowski #define	  L2CR0_AS		0x30000000
843ffb56695SRafal Jaworowski 
844ffb56695SRafal Jaworowski #define	SPR_L1CSR0		0x3F2	/* ..8 L1 Cache Control and Status Register 0 */
845ffb56695SRafal Jaworowski #define	  L1CSR0_DCPE		0x00010000	/* Data Cache Parity Enable */
846ffb56695SRafal Jaworowski #define	  L1CSR0_DCLFR		0x00000100	/* Data Cache Lock Bits Flash Reset */
847ffb56695SRafal Jaworowski #define	  L1CSR0_DCFI		0x00000002	/* Data Cache Flash Invalidate */
848ffb56695SRafal Jaworowski #define	  L1CSR0_DCE		0x00000001	/* Data Cache Enable */
849ffb56695SRafal Jaworowski #define	SPR_L1CSR1		0x3F3	/* ..8 L1 Cache Control and Status Register 1 */
850ffb56695SRafal Jaworowski #define	  L1CSR1_ICPE		0x00010000	/* Instruction Cache Parity Enable */
8514f0962fcSRafal Jaworowski #define	  L1CSR1_ICUL		0x00000400      /* Instr Cache Unable to Lock */
852ffb56695SRafal Jaworowski #define	  L1CSR1_ICLFR		0x00000100	/* Instruction Cache Lock Bits Flash Reset */
853ffb56695SRafal Jaworowski #define	  L1CSR1_ICFI		0x00000002	/* Instruction Cache Flash Invalidate */
854ffb56695SRafal Jaworowski #define	  L1CSR1_ICE		0x00000001	/* Instruction Cache Enable */
855ffb56695SRafal Jaworowski 
8568415f755SBrandon Bergren #define	SPR_L2CFG0		0x207	/* ..8 L2 Configuration Register 0 */
8574f0962fcSRafal Jaworowski #define	SPR_L2CSR0		0x3F9	/* ..8 L2 Cache Control and Status Register 0 */
8584f0962fcSRafal Jaworowski #define	  L2CSR0_L2E		0x80000000	/* L2 Cache Enable */
8594f0962fcSRafal Jaworowski #define	  L2CSR0_L2PE		0x40000000	/* L2 Cache Parity Enable */
8604f0962fcSRafal Jaworowski #define	  L2CSR0_L2FI		0x00200000	/* L2 Cache Flash Invalidate */
8614f0962fcSRafal Jaworowski #define	  L2CSR0_L2LFC		0x00000400	/* L2 Cache Lock Flags Clear */
8624f0962fcSRafal Jaworowski 
86328bb01e5SRafal Jaworowski #define	SPR_BUCSR		0x3F5	/* ..8 Branch Unit Control and Status Register */
86428bb01e5SRafal Jaworowski #define	  BUCSR_BPEN		0x00000001	/* Branch Prediction Enable */
8654f0962fcSRafal Jaworowski #define	  BUCSR_BBFI		0x00000200	/* Branch Buffer Flash Invalidate */
86628bb01e5SRafal Jaworowski 
86717f4cae4SRafal Jaworowski #endif /* BOOKE */
868b57e802aSBenno Rice #endif /* !_POWERPC_SPR_H_ */
869