xref: /netbsd-src/sys/arch/powerpc/include/booke/spr.h (revision daf6c4152fcddc27c445489775ed1f66ab4ea9a9)
1 /*	$NetBSD: spr.h,v 1.5 2011/02/16 18:39:26 matt Exp $	*/
2 /*-
3  * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to The NetBSD Foundation
7  * by Raytheon BBN Technologies Corp and Defense Advanced Research Projects
8  * Agency and which was developed by Matt Thomas of 3am Software Foundry.
9  *
10  * This material is based upon work supported by the Defense Advanced Research
11  * Projects Agency and Space and Naval Warfare Systems Center, Pacific, under
12  * Contract No. N66001-09-C-2073.
13  * Approved for Public Release, Distribution Unlimited
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions
17  * are met:
18  * 1. Redistributions of source code must retain the above copyright
19  *    notice, this list of conditions and the following disclaimer.
20  * 2. Redistributions in binary form must reproduce the above copyright
21  *    notice, this list of conditions and the following disclaimer in the
22  *    documentation and/or other materials provided with the distribution.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
25  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
26  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
28  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  */
36 
37 #ifndef _POWERPC_BOOKE_SPR_H_
38 #define	_POWERPC_BOOKE_SPR_H_
39 
40 #define PVR_MPCe500		  0x8020
41 #define PVR_MPCe500v2		  0x8021
42 
43 #define	SVR_MPC8548v1		  0x80310010
44 #define	SVR_MPC8548v1plus	  0x80310011
45 #define	SVR_MPC8548v2		  0x80310020
46 #define	SVR_MPC8547v2		  0x80310120
47 #define	SVR_MPC8545v2		  0x80310220
48 #define	SVR_MPC8543v1		  0x80320010
49 #define	SVR_MPC8543v1plus	  0x80320011
50 #define	SVR_MPC8543v2		  0x80320020
51 
52 #define	SVR_MPC8544v1		  0x80340110
53 #define	SVR_MPC8544v1plus	  0x80340111
54 #define	SVR_MPC8533		  0x80340010
55 
56 #define	SVR_MPC8536v1		  0x80370091
57 
58 #define	SVR_MPC8555v1		  0x80710110
59 #define	SVR_MPC8541v1		  0x80720111
60 
61 #define	SVR_MPC8567v1		  0x80750111
62 #define	SVR_MPC8568v1		  0x80750011
63 
64 #define	SVR_MPC8572v1		  0x80e00011
65 
66 #define	SVR_P2020v2		  0x80e20020
67 #define	SVR_P2010v2		  0x80e30020
68 
69 #define	SVR_SECURITY_P(svr)	  (((svr) & 0x00080000) != 0)
70 
71 /*
72  * Special Purpose Register declarations.
73  *
74  * The first column in the comments indicates which PowerPC architectures the
75  * SPR is valid on - E for BookE series, 4 for 4xx series,
76  * 6 for 6xx/7xx series and 8 for 8xx and 8xxx (but not 85xx) series.
77  */
78 
79 #define	SPR_PID0		48	/* E4.. 440 Process ID */
80 #define	SPR_DECAR		54	/* E... Decrementer Auto-reload */
81 #define	SPR_CSRR0		58	/* E... Critical Save/Restore Reg. 0 */
82 #define	SPR_CSRR1		59	/* E... Critical Save/Restore Reg. 1 */
83 #define	SPR_DEAR		61	/* E... Data Exception Address Reg. */
84 #define	SPR_ESR			62	/* E... Exception Syndrome Register */
85 #define	  ESR_PIL		  0x08000000 /* 4: Program ILlegal */
86 #define	  ESR_PPR		  0x04000000 /* 5: Program PRivileged */
87 #define	  ESR_PTR		  0x02000000 /* 6: Program TRap */
88 #define	  ESR_ST		  0x00800000 /* 8: Store operation */
89 #define	  ESR_DLK		  0x00200000 /* 10: dcache exception */
90 #define	  ESR_ILK		  0x00100000 /* 11: icache exception */
91 #define	  ESR_AP		  0x00100000 /* 12: Auxiliary Processor operation exception */
92 #define	  ESR_PUO		  0x00100000 /* 13: Program Unimplemented Operation exception */
93 #define	  ESR_BO		  0x00020000 /* 14: Byte ordering exception */
94 #define	  ESR_PIE		  0x00020000 /* 14: Program Imprecise Exception */
95 #define	  ESR_SPV		  0x00000080 /* 24: SPE exception */
96 #define	  ESR_VLEMI		  0x00000080 /* 26: VLE exception */
97 #define	  ESR_MIF		  0x00000080 /* 30: VLE Misaligned Instruction Fetch */
98 #define	  ESR_XTE		  0x00000080 /* 31: eXternal Transaction Error */
99 #define	SPR_IVPR		63	/* E... Interrupt Vector Prefix Reg. */
100 #define	SPR_USPRG0		256	/* E4.. User SPR General 0 */
101 #define	SPR_USPRG3		259	/* E... User SPR General 3 */
102 #define	SPR_USPRG4		260	/* E... User SPR General 4 */
103 #define	SPR_USPRG5		261	/* E... User SPR General 5 */
104 #define	SPR_USPRG6		262	/* E... User SPR General 6 */
105 #define	SPR_USPRG7		263	/* E... User SPR General 7 */
106 #define	SPR_RTBL		268	/* E468 Time Base Lower (RO) */
107 #define	SPR_RTBU		269	/* E468 Time Base Upper (RO) */
108 #define	SPR_WTBL		284	/* E468 Time Base Lower (WO) */
109 #define	SPR_WTBU		285	/* E468 Time Base Upper (WO) */
110 #define	SPR_PIR			286	/* E... Processor ID Register (RO) */
111 
112 #define	SPR_DBSR		304	/* E... Debug Status Register (W1C) */
113 #define   DBSR_IDE		  0x80000000 /* 0: Imprecise debug event */
114 #define	  DBSR_UDE		  0x40000000 /* 1: Unconditional debug event */
115 #define	  DBSR_MRR_HARD		  0x20000000 /* 2: Most Recent Reset (Hard) */
116 #define	  DBSR_MRR_SOFT		  0x10000000 /* 3: Most Recent Reset (Soft) */
117 #define	  DBSR_ICMP		  0x08000000 /* 4: Instruction completion debug event */
118 #define	  DBSR_BRT		  0x04000000 /* 5: Branch Taken debug event */
119 #define	  DBSR_IRPT		  0x02000000 /* 6: Interrupt Taken debug event */
120 #define	  DBSR_TRAP		  0x01000000 /* 7: Trap Instruction debug event */
121 #define   DBSR_IAC		  0x00f00000 /* 8-11: IAC debug event */
122 #define	  DBSR_IAC1		  0x00800000 /* 8: IAC1 debug event */
123 #define	  DBSR_IAC2		  0x00400000 /* 9: IAC2 debug event */
124 #define	  DBSR_IAC3		  0x00200000 /* 10: IAC3 debug event */
125 #define	  DBSR_IAC4		  0x00100000 /* 11: IAC4 debug event */
126 #define   DBSR_DAC		  0x000f0000 /* 12-15: DAC debug event */
127 #define	  DBSR_DAC1R		  0x00080000 /* 12: DAC1 Read debug event */
128 #define	  DBSR_DAC1W		  0x00040000 /* 13: DAC1 Write debug event */
129 #define	  DBSR_DAC2R		  0x00020000 /* 14: DAC2 Read debug event */
130 #define	  DBSR_DAC2W		  0x00010000 /* 15: DAC2 Write debug event */
131 #define	  DBSR_RET		  0x00008000 /* 16: Return debug event */
132 #define	SPR_DBCR0		308	/* E... Debug Control Register 0 */
133 #define	  DBCR0_EDM		  0x80000000 /* 0: External Debug Mode */
134 #define	  DBCR0_IDM		  0x40000000 /* 1: Internal Debug Mode */
135 #define	  DBCR0_RST_MASK	  0x30000000 /* 2..3: ReSeT */
136 #define	  DBCR0_RST_NONE	  0x00000000 /*   No action */
137 #define	  DBCR0_RST_CORE	  0x10000000 /*   Core reset */
138 #define	  DBCR0_RST_CHIP	  0x20000000 /*   Chip reset */
139 #define	  DBCR0_RST_SYSTEM	  0x30000000 /*   System reset */
140 #define	  DBCR0_ICMP		  0x08000000 /* 4: Instruction Completion debug event */
141 #define	  DBCR0_BRT		  0x04000000 /* 5: Branch Taken debug event */
142 #define	  DBCR0_IRPT		  0x02000000 /* 6: Interrupt Taken debug event */
143 #define	  DBCR0_TRAP		  0x01000000 /* 7: Trap Instruction Debug Event */
144 #define	  DBCR0_IAC1		  0x00800000 /* 8: IAC (Instruction Address Compare) 1 debug event */
145 #define	  DBCR0_IAC2		  0x00400000 /* 9: IAC 2 debug event */
146 #define	  DBCR0_IAC3		  0x00200000 /* 10: IAC 3 debug event */
147 #define	  DBCR0_IAC4		  0x00100000 /* 11: IAC 4 debug event */
148 #define	  DBCR0_DAC1_LOAD	  0x00080000 /* 12: DAC (Data Address Compare) 1 load event */
149 #define	  DBCR0_DAC1_STORE	  0x00040000 /* 13: DAC (Data Address Compare) 1 store event */
150 #define	  DBCR0_DAC2_LOAD	  0x00020000 /* 14: DAC 2 load event */
151 #define	  DBCR0_DAC2_STORE	  0x00010000 /* 15: DAC 2 store event */
152 #define	  DBCR0_RET		  0x00008000 /* 16: Return debug event */
153 #define	  DBCR0_FT		  0x00000001 /* 31: Freeze Timers on debug event */
154 #define	SPR_DBCR1		309	/* E... Debug Control Register 1 */
155 #define	  DBCR1_IAC1US		  0xc0000000 /*  0-1: Data Address Compare 1 user/supervisor mode */
156 #define	  DBCR1_IAC1US_ANY	  0x00000000 /*  MSR[PR] = don't care */
157 #define	  DBCR1_IAC1US_KERNEL	  0x80000000 /*  MSR[PR] = 0 */
158 #define	  DBCR1_IAC1US_USER	  0xc0000000 /*  MSR[PR] = 1 */
159 #define	  DBCR1_IAC1ER		  0x30000000 /*  2-3: Data Address Compare 1 effective/real mode */
160 #define	  DBCR1_IAC1ER_DSX	  0x00000000 /*  effective address */
161 #define	  DBCR1_IAC1ER_REAL	  0x10000000 /*  real address */
162 #define	  DBCR1_IAC1ER_DS0	  0x20000000 /*  effective address MSR[DS] = 0 */
163 #define	  DBCR1_IAC1ER_DS1	  0x30000000 /*  effective address MSR[DS] = 1 */
164 #define	  DBCR1_IAC2US		  0x0c000000 /*  4-5: Data Address Compare 1 user/supervisor mode */
165 #define	  DBCR1_IAC2US_ANY	  0x00000000 /*  MSR[PR] = don't care */
166 #define	  DBCR1_IAC2US_KERNEL	  0x08000000 /*  MSR[PR] = 0 */
167 #define	  DBCR1_IAC2US_USER	  0x0c000000 /*  MSR[PR] = 1 */
168 #define	  DBCR1_IAC2ER		  0x03000000 /*  6-7: Data Address Compare 1 effective/real mode */
169 #define	  DBCR1_IAC2ER_DSX	  0x00000000 /*  effective address */
170 #define	  DBCR1_IAC2ER_REAL	  0x01000000 /*  real address */
171 #define	  DBCR1_IAC2ER_DS0	  0x02000000 /*  effective address MSR[DS] = 0 */
172 #define	  DBCR1_IAC2ER_DS1	  0x03000000 /*  effective address MSR[DS] = 1 */
173 #define	  DBCR1_IAC12M		  0x00c00000 /*  8-9: Data Address Compare 1 effective/real mode */
174 #define	  DBCR1_IAC12M_EXACT	  0x00000000 /*  equal IAC1 or IAC2 */
175 #define	  DBCR1_IAC12M_MASK	  0x00400000 /*  (addr & IAC2) == (IAC1 & IAC2) */
176 #define	  DBCR1_IAC12M_INCLUSIVE  0x00800000 /*  IAC1 <= addr < IAC2 */
177 #define	  DBCR1_IAC12M_EXCLUSIVE  0x00c00000 /*  addr < IAC1 || IAC2 <= addr */
178 #define	  DBCR1_IAC3US		  0x0000c000 /*  16-17: Data Address Compare 3 user/supervisor mode */
179 #define	  DBCR1_IAC3US_ANY	  0x00000000 /*  MSR[PR] = don't care */
180 #define	  DBCR1_IAC3US_KERNEL	  0x00008000 /*  MSR[PR] = 0 */
181 #define	  DBCR1_IAC3US_USER	  0x0000c000 /*  MSR[PR] = 1 */
182 #define	  DBCR1_IAC3ER		  0x00003000 /*  18-19: Data Address Compare 3 effective/real mode */
183 #define	  DBCR1_IAC3ER_DSX	  0x00000000 /*  effective address */
184 #define	  DBCR1_IAC3ER_REAL	  0x00001000 /*  real address */
185 #define	  DBCR1_IAC3ER_DS0	  0x00002000 /*  effective address MSR[DS] = 0 */
186 #define	  DBCR1_IAC3ER_DS1	  0x00003000 /*  effective address MSR[DS] = 1 */
187 #define	  DBCR1_IAC4US		  0x00000c00 /*  20-21: Data Address Compare 3 user/supervisor mode */
188 #define	  DBCR1_IAC4US_ANY	  0x00000000 /*  MSR[PR] = don't care */
189 #define	  DBCR1_IAC4US_KERNEL	  0x00000800 /*  MSR[PR] = 0 */
190 #define	  DBCR1_IAC4US_USER	  0x00000c00 /*  MSR[PR] = 1 */
191 #define	  DBCR1_IAC4ER		  0x00000300 /*  22-23: Data Address Compare 4 effective/real mode */
192 #define	  DBCR1_IAC4ER_DSX	  0x00000000 /*  effective address */
193 #define	  DBCR1_IAC4ER_REAL	  0x00000100 /*  real address */
194 #define	  DBCR1_IAC4ER_DS0	  0x00000200 /*  effective address MSR[DS] = 0 */
195 #define	  DBCR1_IAC4ER_DS1	  0x00000300 /*  effective address MSR[DS] = 1 */
196 #define	  DBCR1_IAC34M		  0x000000c0 /*  24-25: Data Address Compare 4 effective/real mode */
197 #define	  DBCR1_IAC34M_EXACT	  0x00000000 /*  equal IAC3 or IAC4 */
198 #define	  DBCR1_IAC34M_MASK	  0x00000040 /*  (addr & IAC4) == (IAC3 & IAC4) */
199 #define	  DBCR1_IAC34M_INCLUSIVE  0x00000080 /*  IAC3 <= addr < IAC4 */
200 #define	  DBCR1_IAC34M_EXCLUSIVE  0x000000c0 /*  addr < IAC3 || IAC4 <= addr */
201 #define	SPR_DBCR2		310	/* E... Debug Control Register 2 */
202 #define	  DBCR2_DAC1US		  0xc0000000 /*  0-1: Data Address Compare 1 user/supervisor mode */
203 #define	  DBCR2_DAC1US_ANY	  0x00000000 /*  MSR[PR] = don't care */
204 #define	  DBCR2_DAC1US_KERNEL	  0x80000000 /*  MSR[PR] = 0 */
205 #define	  DBCR2_DAC1US_USER	  0xc0000000 /*  MSR[PR] = 1 */
206 #define	  DBCR2_DAC1ER		  0x30000000 /*  2-3: Data Address Compare 1 effective/real mode */
207 #define	  DBCR2_DAC1ER_DSX	  0x00000000 /*  effective address */
208 #define	  DBCR2_DAC1ER_REAL	  0x10000000 /*  real address */
209 #define	  DBCR2_DAC1ER_DS0	  0x20000000 /*  effective address MSR[DS] = 0 */
210 #define	  DBCR2_DAC1ER_DS1	  0x30000000 /*  effective address MSR[DS] = 1 */
211 #define	  DBCR2_DAC2US		  0x0c000000 /*  4-5: Data Address Compare 1 user/supervisor mode */
212 #define	  DBCR2_DAC2US_ANY	  0x00000000 /*  MSR[PR] = don't care */
213 #define	  DBCR2_DAC2US_KERNEL	  0x08000000 /*  MSR[PR] = 0 */
214 #define	  DBCR2_DAC2US_USER	  0x0c000000 /*  MSR[PR] = 1 */
215 #define	  DBCR2_DAC2ER		  0x03000000 /*  6-7: Data Address Compare 1 effective/real mode */
216 #define	  DBCR2_DAC2ER_DSX	  0x00000000 /*  effective address */
217 #define	  DBCR2_DAC2ER_REAL	  0x01000000 /*  real address */
218 #define	  DBCR2_DAC2ER_DS0	  0x02000000 /*  effective address MSR[DS] = 0 */
219 #define	  DBCR2_DAC2ER_DS1	  0x03000000 /*  effective address MSR[DS] = 1 */
220 #define	  DBCR2_DAC12M		  0x00c00000 /*  8-9: Data Address Compare 1 effective/real mode */
221 #define	  DBCR2_DAC12M_EXACT	  0x00000000 /*  equal DAC1 or DAC2 */
222 #define	  DBCR2_DAC12M_MASK	  0x00400000 /*  (addr & DAC2) == (DAC1 & DAC2) */
223 #define	  DBCR2_DAC12M_INCLUSIVE  0x00800000 /*  DAC1 <= addr < DAC2 */
224 #define	  DBCR2_DAC12M_EXCLUSIVE  0x00c00000 /*  addr < DAC1 || DAC2 <= addr */
225 #define	  DBCR2_DAC3US		  0x0000c000 /*  16-17: Data Address Compare 3 user/supervisor mode */
226 #define	  DBCR2_DAC3US_ANY	  0x00000000 /*  MSR[PR] = don't care */
227 #define	  DBCR2_DAC3US_KERNEL	  0x00008000 /*  MSR[PR] = 0 */
228 #define	  DBCR2_DAC3US_USER	  0x0000c000 /*  MSR[PR] = 1 */
229 #define	  DBCR2_DAC3ER		  0x00003000 /*  18-19: Data Address Compare 3 effective/real mode */
230 #define	  DBCR2_DAC3ER_DSX	  0x00000000 /*  effective address */
231 #define	  DBCR2_DAC3ER_REAL	  0x00001000 /*  real address */
232 #define	  DBCR2_DAC3ER_DS0	  0x00002000 /*  effective address MSR[DS] = 0 */
233 #define	  DBCR2_DAC3ER_DS1	  0x00003000 /*  effective address MSR[DS] = 1 */
234 #define	  DBCR2_DAC4US		  0x00000c00 /*  20-21: Data Address Compare 3 user/supervisor mode */
235 #define	  DBCR2_DAC4US_ANY	  0x00000000 /*  MSR[PR] = don't care */
236 #define	  DBCR2_DAC4US_KERNEL	  0x00000800 /*  MSR[PR] = 0 */
237 #define	  DBCR2_DAC4US_USER	  0x00000c00 /*  MSR[PR] = 1 */
238 #define	  DBCR2_DAC4ER		  0x00000300 /*  22-23: Data Address Compare 4 effective/real mode */
239 #define	  DBCR2_DAC4ER_DSX	  0x00000000 /*  effective address */
240 #define	  DBCR2_DAC4ER_REAL	  0x00000100 /*  real address */
241 #define	  DBCR2_DAC4ER_DS0	  0x00000200 /*  effective address MSR[DS] = 0 */
242 #define	  DBCR2_DAC4ER_DS1	  0x00000300 /*  effective address MSR[DS] = 1 */
243 #define	  DBCR2_DAC34M		  0x000000c0 /*  24-25: Data Address Compare 4 effective/real mode */
244 #define	  DBCR2_DAC34M_EXACT	  0x00000000 /*  equal DAC3 or DAC4 */
245 #define	  DBCR2_DAC34M_MASK	  0x00000040 /*  (addr & DAC4) == (DAC3 & DAC4) */
246 #define	  DBCR2_DAC34M_INCLUSIVE  0x00000080 /*  DAC3 <= addr < DAC4 */
247 #define	  DBCR2_DAC34M_EXCLUSIVE  0x000000c0 /*  addr < DAC3 || DAC4 <= addr */
248 #define	SPR_IAC1		312	/* E... Instruction Address Compare 1 */
249 #define	SPR_IAC2		313	/* E... Instruction Address Compare 2 */
250 #define	SPR_IAC3		314	/* E... Instruction Address Compare 3 */
251 #define	SPR_IAC4		315	/* E... Instruction Address Compare 4 */
252 #define	SPR_DAC1		316	/* E... Data Address Compare 1 */
253 #define	SPR_DAC2		317	/* E... Data Address Compare 2 */
254 #define	SPR_TSR			336	/* E... Timer Status Register */
255 #define   TSR_ENW		  0x80000000 /* Enable Next Watchdog (W1C) */
256 #define   TSR_WIS		  0x40000000 /* Watchdog Interrupt Status (W1C) */
257 #define   TSR_WRS		  0x30000000 /* Watchdog Reset Status (W1C) */
258 #define   TSR_DIS		  0x08000000 /* Decementer Interrupt Status (W1C) */
259 #define   TSR_FIS		  0x04000000 /* Fixed-interval Interrupt Status (W1C) */
260 #define	SPR_TCR			340	/* E... Timer Control Register */
261 #define   TCR_WP		  0xc0000000 /* Watchdog Period */
262 #define	  TCR_WP_2_N(n)		  (__SHIFTIN((n), TCR_WP) | __SHIFTIN((n) >> 2, TCR_WPEXT))
263 #define	  TCR_WP_2_64		  0x00000000
264 #define	  TCR_WP_2_1		  0xc01e0000
265 #define   TCR_WRC		  0x30000000 /* Watchdog Timer Reset Control */
266 #define   TCR_WRC_RESET		  0x20000000
267 #define   TCR_WIE		  0x08000000 /* Watchdog Time Interrupt Enable */
268 #define   TCR_DIE		  0x04000000 /* Decremnter Interrupt Enable */
269 #define   TCR_FP		  0x03000000 /* Fixed-interval Timer Period */
270 #define	  TCR_FP_2_N(n)		  ((((64 - (n)) & 0x30) << 20) | (((64 - (n)) & 0xf) << 13))
271 #define	  TCR_FP_2_64		  0x00000000
272 #define	  TCR_FP_2_1		  0x0301e000
273 #define   TCR_FIE		  0x00800000 /* Fixed-interval Interrupt Enable */
274 #define   TCR_ARE		  0x00400000 /* Auto-reload Enable */
275 #define   TCR_WPEXT		  0x001e0000 /* Watchdog Period Extension */
276 #define   TCR_FPEXT		  0x0001e000 /* Fixed-interval Period Extension */
277 
278 #define	SPR_IVOR0		400	/* E... Critical input interrupt offset */
279 #define	SPR_IVOR1		401	/* E... Machine check interrupt offset */
280 #define	SPR_IVOR2		402	/* E... Data storage interrupt offset */
281 #define	SPR_IVOR3		403	/* E... Instruction storage interrupt offset */
282 #define	SPR_IVOR4		404	/* E... External input interrupt offset */
283 #define	SPR_IVOR5		405	/* E... Alignment interrupt offset */
284 #define	SPR_IVOR6		406	/* E... Program interrupt offset */
285 #define	SPR_IVOR8		408	/* E... Syscall call interrupt offset */
286 #define	SPR_IVOR10		410	/* E... Decrementer interrupt offset */
287 #define	SPR_IVOR11		411	/* E... Fixed-interval timer interrupt offset */
288 #define	SPR_IVOR12		412	/* E... Watchdog timer interrupt offset */
289 #define	SPR_IVOR13		413	/* E... Data TLB error interrupt offset */
290 #define	SPR_IVOR14		414	/* E... Instruction TLB error interrupt offset */
291 #define	SPR_IVOR15		415	/* E... Debug interrupt offset */
292 #define SPR_SPEFSCR		512	/* E... Signal processing and embedded floating-point status and control register */
293 #define  SPEFSCR_SOVH		  0x80000000 /* 0: Summary Integer Overflow High */
294 #define  SPEFSCR_OVH		  0x40000000 /* 1: Integer Overflow High */
295 #define  SPEFSCR_FGH		  0x20000000 /* 2: Embedded Floating-Point Guard Bit High */
296 #define  SPEFSCR_FXH		  0x10000000 /* 3: Embedded Floating-Point Sticky Bit High */
297 #define  SPEFSCR_FINVH		  0x08000000 /* 4: Embedded Floating-Point Invalid Operation High */
298 #define  SPEFSCR_FDBZH		  0x04000000 /* 5: Embedded Floating-Point Divide By Zero Error High */
299 #define  SPEFSCR_FUNFH		  0x02000000 /* 6: Embedded Floating-Point Underflow Error High */
300 #define  SPEFSCR_FOVFH		  0x01000000 /* 7: Embedded Floating-Point Overflow Error High */
301 #define  SPEFSCR_FINXS		  0x00200000 /* 10: Embedded Floating-Point Inexact Sticky Bit */
302 #define  SPEFSCR_FINVS		  0x00100000 /* 11: Embedded Floating-Point Invalid Operation Sticky Bit */
303 #define  SPEFSCR_FDBZS		  0x00080000 /* 12: Embedded Floating-Point Divide By Zero Sticky Bit */
304 #define  SPEFSCR_FUNFS		  0x00040000 /* 13: Embedded Floating-Point Underflow Sticky Bit */
305 #define  SPEFSCR_FOVFS		  0x00020000 /* 14: Embedded Floating-Point Overflow Sticky Bit */
306 #define  SPEFSCR_MODE		  0x00010000 /* 15: Embedded Floating-Point Mode */
307 #define  SPEFSCR_SOV		  0x80000000 /* 16: Summary Integer Overflow */
308 #define  SPEFSCR_OV		  0x00004000 /* 17: Integer Overflow */
309 #define  SPEFSCR_FG		  0x00002000 /* 18: Embedded Floating-Point Guard Bit */
310 #define  SPEFSCR_FX		  0x00001000 /* 19: Embedded Floating-Point Sticky Bit */
311 #define  SPEFSCR_FINV		  0x00000800 /* 20: Embedded Floating-Point Invalid Operation */
312 #define  SPEFSCR_FDBZ		  0x00000400 /* 21: Embedded Floating-Point Divide By Zero Error */
313 #define  SPEFSCR_FUNF		  0x00000200 /* 22: Embedded Floating-Point Underflow Error */
314 #define  SPEFSCR_FOVF		  0x00000100 /* 23: Embedded Floating-Point Overflow Error */
315 #define  SPEFSCR_FINXE		  0x00000040 /* 25: Embedded Floating-Point Inexact Execption Enable */
316 #define  SPEFSCR_FINVE		  0x00000020 /* 26: Embedded Floating-Point Invalid Operation/Input Error Execption Enable */
317 #define  SPEFSCR_FDBZE		  0x00000010 /* 27: Embedded Floating-Point Divide By Zero Exception Enable */
318 #define  SPEFSCR_FUNFE		  0x00000008 /* 28: Embedded Floating-Point Underflow Exception Enable */
319 #define  SPEFSCR_FOVFE		  0x00000004 /* 29: Embedded Floating-Point Overflow Exception Enable */
320 #define  SPEFSCR_FRMC_MASK	  0x00000003 /* 30..31: Embedded Floating-Point Rounding Mode Control */
321 #define  SPEFSCR_FRMC_DOWNWARD	  0x00000003 /* Round toward -infinity */
322 #define  SPEFSCR_FRMC_UPWARD	  0x00000002 /* Round toward +infinity */
323 #define  SPEFSCR_FRMC_TOWARDZERO  0x00000001 /* Round toward zero */
324 #define  SPEFSCR_FRMC_TONEAREST	  0x00000000 /* Round to nearest */
325 #define	SPR_BBEAR		513	/* E... Brach buffer entry addr register */
326 #define	SPR_BBTAR		514	/* E... Brach buffer target addr register */
327 #define	SPR_L1CFG0		515	/* E... L1 Cache Configuration Register 0 */
328 #define	SPR_L1CFG1		516	/* E... L1 Cache Configuration Register 1 */
329 #define   L1CFG_CARCH_GET(n)	  (((n) >> 30) & 3)
330 #define   L1CFG_CARCH_HARVARD	  0
331 #define   L1CFG_CARCH_UNIFIED	  1
332 #define   L1CFG_CBSIZE_GET(n)	  (((n) >> 23) & 3)
333 #define   L1CFG_CBSIZE_32B	  0
334 #define   L1CFG_CBSIZE_64B	  1
335 #define   L1CFG_CREPL_GET(n)	  (((n) >> 21) & 3)
336 #define   L1CFG_CREPL_TRUE_LRU	  0
337 #define   L1CFG_CREPL_PSEUDO_LRU  1
338 #define   L1CFG_CLA_P(n)	  (((n) >> 20) & 1)
339 #define   L1CFG_CPA_P(n)	  (((n) >> 19) & 1)
340 #define   L1CFG_CNWAY_GET(n)	  ((((n) >> 11) & 0xff) + 1)
341 #define   L1CFG_CSIZE_GET(n)	  ((((n) >>  0) & 0x7ff) << 10)
342 #define	SPR_ATBL		526	/* E... Alternate Time Base Lower */
343 #define	SPR_ATBU		527	/* E... Alternate Time Base Upper */
344 #define	SPR_IVOR32		528	/* E... SPE unavailable interrupt offset */
345 #define	SPR_IVOR33		529	/* E... Floating-point data exception interrupt offset */
346 #define	SPR_IVOR34		530	/* E... Floating-point round exception interrupt offset */
347 #define	SPR_IVOR35		531	/* E... Performance monitor interrupt offset */
348 #define SPR_MCARU		569	/* E... Machine check address register upper */
349 #define SPR_MCSRR0		570	/* E... Machine check save/restore register 0 */
350 #define SPR_MCSRR1		571	/* E... Machine check save/restore register 1 */
351 #define SPR_MCSR		572	/* E... Machine check syndrome register */
352 #define   MCSR_MCP		  0x80000000 /* 0: Machine Check Input Pin */
353 #define   MCSR_ICPERR		  0x40000000 /* 1: Instruction Cache Parity Error */
354 #define   MCSR_DCP_PERR		  0x20000000 /* 2: Data Cache Push Parity Error */
355 #define   MCSR_DCPERR		  0x10000000 /* 3: Data Cache Parity Error */
356 #define   MCSR_NMI		  0x00100000 /* 12: non maskable interrupt */
357 #define   MCSR_MAV		  0x00080000 /* 13: MCAR address valid */
358 #define   MCSR_MEA		  0x00040000 /* 14: MCAR [is an] effective address */
359 #define   MCSR_BUS_IAERR	  0x00000080 /* 24: Bus Instruction Address Error */
360 #define   MCSR_BUS_RAERR	  0x00000040 /* 25: Bus Read Address Error */
361 #define   MCSR_BUS_WAERR	  0x00000020 /* 26: Bus Write Address Error */
362 #define   MCSR_BUS_IBERR	  0x00000010 /* 27: Bus Instruction Data Bus Error */
363 #define   MCSR_BUS_RBERR	  0x00000008 /* 28: Bus Read Data Bus Error */
364 #define   MCSR_BUS_WBERR	  0x00000004 /* 29: Bus Write Data Bus Error */
365 #define   MCSR_BUS_IPERR	  0x00000002 /* 30: Bus Instruction Parity Error */
366 #define   MCSR_BUS_RPERR	  0x00000001 /* 31: Bus Read Parity Error */
367 #define SPR_MCAR		573	/* E... Machine check address register */
368 #define	SPR_MAS0		624	/* E... MAS Register 0 */
369 #define   MAS0_TLBSEL		  0x30000000 /* Select TLB<n> for access */
370 #define   MAS0_TLBSEL_TLB3	  0x30000000 /* Select TLB3 for access */
371 #define   MAS0_TLBSEL_TLB2	  0x20000000 /* Select TLB2 for access */
372 #define   MAS0_TLBSEL_TLB1	  0x10000000 /* Select TLB1 for access */
373 #define   MAS0_TLBSEL_TLB0	  0x00000000 /* Select TLB0 for access */
374 #define   MASX_TLBSEL_GET(n)	  (((n) >> 28) & 3)
375 #define   MASX_TLBSEL_MAKE(n)	  (((n) & 3) << 28)
376 #define   MAS0_ESEL		  0x0fff0000 /* entry (way) select for tlbwe */
377 #define   MAS0_ESEL_GET(n)	  (((n) >> 16) & 4095)
378 #define   MAS0_ESEL_MAKE(n)	  (((n) & 4095) << 16)
379 #define   MAS0_NV		  0x00000fff /* next victim fr TLB0[NV] */
380 #define	SPR_MAS1		625	/* E... MAS Register 1 */
381 #define	  MAS1_V		  0x80000000 /* TLB Valid Bit */
382 #define   MAS1_IPROT		  0x40000000 /* Invalidate Protect */
383 #define   MAS1_TID		  0x0fff0000 /* Translation Identity */
384 #define   MASX_TID_GET(n)	  (((n) >> 16) & 4095)
385 #define   MASX_TID_MAKE(n)	  (((n) & 4095) << 16)
386 #define   MAS1_TS		  0x00001000 /* Translation Space [IS/DS MSR] */
387 #define	  MAS1_TS_SHIFT		  12
388 #define   MAS1_TSIZE		  0x00000f00 /* Translation Size (4KB**tsize) */
389 #define   MASX_TSIZE_4KB	  0x00000100 /*   4KB TSIZE */
390 #define   MASX_TSIZE_16KB	  0x00000200 /*  16KB TSIZE */
391 #define   MASX_TSIZE_64KB	  0x00000300 /*  64KB TSIZE */
392 #define   MASX_TSIZE_256KB	  0x00000400 /* 256KB TSIZE */
393 #define   MASX_TSIZE_1MB	  0x00000500 /*   1MB TSIZE */
394 #define   MASX_TSIZE_4MB	  0x00000600 /*   4MB TSIZE */
395 #define   MASX_TSIZE_16MB	  0x00000700 /*  16MB TSIZE */
396 #define   MASX_TSIZE_64MB	  0x00000800 /*  64MB TSIZE */
397 #define   MASX_TSIZE_256MB	  0x00000900 /* 256MB TSIZE */
398 #define   MASX_TSIZE_1GB	  0x00000a00 /*   1GB TSIZE */
399 #define   MASX_TSIZE_4GB	  0x00000b00 /*   4GB TSIZE */
400 #define   MASX_TSIZE_GET(n)	  (((n) >> 8) & 15)
401 #define   MASX_TSIZE_MAKE(n)	  (((n) & 15) << 8)
402 #define	SPR_MAS2		626	/* E... MAS Register 2 */
403 #define   MAS2_EPN		  0xfffff000 /* Effective Page Number */
404 #define   MAS2_EPN_GET(n)	  (((n) >> 12) & 1048575)
405 #define   MAS2_EPN_MAKE(n)	  (((n) & 1048575) << 12)
406 #define	  MAS2_X0		  0x00000040 /* Impl. dependent page attr. */
407 #define	  MAS2_ACM		  0x000000c0 /* Alternate Coherency Mode. */
408 #define	  MAS2_X1		  0x00000020 /* Impl. dependent page attr. */
409 #define	  MAS2_VLE		  0x00000020 /* VLE mode. */
410 #define	  MAS2_WIMGE		  0x0000001f /* Mask of next 5 bits */
411 #define	  MAS2_W		  0x00000010 /* Write-through */
412 #define	  MAS2_I		  0x00000008 /* cache-Inhibited */
413 #define	  MAS2_M		  0x00000004 /* Memory coherency required */
414 #define	  MAS2_G		  0x00000002 /* Gaurded */
415 #define	  MAS2_E		  0x00000001 /* [little] Endianness */
416 #define	SPR_MAS3		627	/* E... MAS Register 3 */
417 #define   MAS3_RPN		  0xfffff000 /* Real Page Number */
418 #define   MAS3_RPN_GET(n)	  (((n) >> 12) & 1048575)
419 #define   MAS3_RPN_MAKE(n)	  (((n) & 1048575) << 12)
420 #define   MAS3_U0		  0x00000200 /* User attribute 0 */
421 #define   MAS3_U1		  0x00000100 /* User attribute 1 */
422 #define   MAS3_U2		  0x00000080 /* User attribute 2 */
423 #define   MAS3_U3		  0x00000040 /* User attribute 3 */
424 #define   MAS3_UX		  0x00000020 /* User execute permission */
425 #define   MAS3_SX		  0x00000010 /* System execute permission */
426 #define   MAS3_UW		  0x00000008 /* User write permission */
427 #define   MAS3_SW		  0x00000004 /* System write permission */
428 #define   MAS3_UR		  0x00000002 /* User read permission */
429 #define   MAS3_SR		  0x00000001 /* System read permission */
430 #define	SPR_MAS4		628	/* E... MAS Register 4 */
431 #define   MAS4_TLBSELD		  0x30000000 /* TLBSEL default value */
432 #define   MAS4_TLBSEL_TLB3	  0x30000000 /* Select TLB3 for access */
433 #define   MAS4_TLBSEL_TLB2	  0x20000000 /* Select TLB2 for access */
434 #define   MAS4_TLBSEL_TLB1	  0x10000000 /* Select TLB1 for access */
435 #define   MAS4_TLBSEL_TLB0	  0x00000000 /* Select TLB0 for access */
436 #define   MAS4_TIDSELD		  0x00030000 /* select TID default value */
437 #define   MAS4_TIDSELD_TIDZ	  0x00030000 /* fill in MAS1[TID] with 0 */
438 #define   MAS4_TIDSELD_PID2	  0x00020000 /* fill in MAS1[TAD] from ... */
439 #define   MAS4_TIDSELD_PID1	  0x00010000 /* fill in MAS1[TAD] from ... */
440 #define   MAS4_TIDSELD_PID0	  0x00000000 /* fill in MAS1[TAD] from ... */
441 #define   MAS4_TSIZED		  0x00000f00 /* TSIZE default value */
442 #define   MAS4_TSIZED_4KB	  0x00000100 /* 4KB TSIZE */
443 #define	  MAS4_ACMD		  0x000000c0 /* Alternate Coherency Mode. */
444 #define	  MAS4_X0D		  0x00000040 /* default Impl. dep. page attr. */
445 #define	  MAS4_VLED		  0x00000020 /* VLE mode. */
446 #define	  MAS4_X1D		  0x00000020 /* default Impl. dep. page attr. */
447 #define	  MAS4_WD		  0x00000010 /* default Write-through */
448 #define	  MAS4_ID		  0x00000008 /* default Cache-inhibited */
449 #define	  MAS4_MD		  0x00000004 /* default Memory coherency req. */
450 #define	  MAS4_GD		  0x00000002 /* default Gaurded */
451 #define	  MAS4_ED		  0x00000001 /* default [little] Endianness */
452 #define	SPR_MAS6		630	/* E... MAS Register 6 (TLB Seach CTX) */
453 #define   MAS6_SPID0		  0x0fff0000 /* PID used with tlbsx */
454 #define	  MAS6_SPID0_SHIFT	  16
455 #define   MAS6_SAS		  0x00000001 /* Address space (IS/DS MSR) ... */
456 #define   MAS6_SAS_USER		  0x00000001 /* Address space (IS/DS MSR) ... */
457 #define	SPR_PID1		633	/* E... PID Register 1 */
458 #define	SPR_PID2		634	/* E... PID Register 2 */
459 #define	SPR_TLB0CFG		688	/* E... TLB Configuration Register 0 */
460 #define	SPR_TLB1CFG		689	/* E... TLB Configuration Register 1 */
461 #define	  TLBCFG_ASSOC(n)	  (((n) >> 24) & 0xff) /* assoc of tlb */
462 #define	  TLBCFG_MINSIZE(n)	  (((n) >> 20) & 0x0f) /* minpagesize */
463 #define	  TLBCFG_MAXSIZE(n)	  (((n) >> 16) & 0x0f) /* maxpagesize */
464 #define	  TLBCFG_IPROT_P(n)	  (((n) >> 15) & 0x01)
465 #define	  TLBCFG_AVAIL_P(n)	  (((n) >> 14) & 0x01) /* variable page size */
466 #define	  TLBCFG_NENTRY(n)	  (((n) >>  0) & 0xfff) /* # entrys */
467 #define	SPR_MAS7		944	/* E... MAS Register 7 */
468 #define	 MAS7_RPNHI		  0x00000004 /* bits 32-35 of RPN */
469 #define	SPR_HID0		1008
470 #define   HID0_EMCP		  0x80000000 /* Enable Machine Check Pin */
471 #define   HID0_DOZE		  0x00800000 /* Core in doze mode */
472 #define   HID0_NAP		  0x00400000 /* Core in nap mode */
473 #define   HID0_SLEEP		  0x00200000 /* Core in sleep mode */
474 #define   HID0_TBEN		  0x00004000 /* Time Base ENable */
475 #define   HID0_SEL_TBCLK	  0x00002000 /* SELect Time Base Clock */
476 #define   HID0_EN_MAS7_UPDATE	  0x00000080 /* ENable MAS7 UPDATE */
477 #define   HID0_DCFA		  0x00000040 /* Data Cache Flush Assist */
478 #define   HID0_NOOPTI		  0x00000001 /* NO-OP Touch Instructions */
479 #define	SPR_HID1		1009
480 #define	SPR_L1CSR0		1010	/* E... L1 Cache Control and Status Register 0 (Data) */
481 #define	SPR_L1CSR1		1011	/* E... L1 Cache Control and Status Register 1 (Instruction) */
482 #define   L1CSR_CPE		  0x00010000 /* 15: Cache Parity Error */
483 #define   L1CSR_CPI		  0x00008000 /* 16: Cache Parity Injection Enable */
484 #define   L1CSR_CSLC		  0x00000800 /* 20: Cache Snoop Lock Clear */
485 #define   L1CSR_CUL		  0x00000400 /* 21: Cache Unable to Lock (W0C) */
486 #define   L1CSR_CLO		  0x00000200 /* 22: Cache Lock Overflow (W0C) */
487 #define   L1CSR_CLFR		  0x00000100 /* 23: Cache Lock Bits Flash Reset */
488 #define   L1CSR_CFI		  0x00000002 /* 30: Cache Flash Invalidate */
489 #define   L1CSR_CE		  0x00000001 /* 31: Cache Enable */
490 #define	SPR_MMUCSR0		1012	/* E... MMU Control and Status Register 0 */
491 #define	  MMUCSR0_TLB2_FI	  0x00000040 /* TLB2 Flash Invalidate */
492 #define	  MMUCSR0_TLB3_FI	  0x00000020 /* TLB3 Flash Invalidate */
493 #define	  MMUCSR0_TLB0_FI	  0x00000004 /* TLB0 Flash Invalidate */
494 #define	  MMUCSR0_TLB1_FI	  0x00000002 /* TLB1 Flash Invalidate */
495 #define SPR_BUCSR		1013	/* E... Branch Unit Control and Status Register */
496 #define	SPR_MMUCFG		1015	/* E... MMU Configuration Register */
497 #define   MMUCFG_RASIZE_GET(n)	  (((n) >> 17) & 127) /* Real Address Size */
498 #define	  MMUCFG_NPIDS_GET(n)	  (((n) >> 11) & 15) /* # of PID registers */
499 #define	  MMUCFG_PIDSIZE_GET(n)	  (((n) >> 6) & 31) /* PID is PIDSIZE+1 bits wide */
500 #define	  MMUCFG_NTLBS_GET(n)	  (((n) >> 2) & 3) /* NTLBS is max value of MAS0[TLBSEL] */
501 #define	  MMUCFG_MAVN		  0x00000003 /* MMU Architecture Version Number */
502 #define	  MMUCFG_MAVN_V1	  0
503 #define	SPR_SVR			1023	/* E... System Version Register */
504 
505 #define	PMR_PMC0		16
506 #define	PMR_PMC1		17
507 #define	PMR_PMC2		18
508 #define	PMR_PMC3		19
509 #define	PMR_PMLCa0		144
510 #define	PMR_PMLCa1		145
511 #define	PMR_PMLCa2		146
512 #define	PMR_PMLCa3		147
513 #define   PMLCa_FC		  0x80000000 /* 0: Freeze Counter */
514 #define   PMLCa_FCS		  0x40000000 /* 1: Freeze Counter In Super */
515 #define   PMLCa_FCU		  0x20000000 /* 2: Freeze Counter In User */
516 #define   PMLCa_FCM1		  0x10000000 /* 3: Freeze Counter While Mark=1 */
517 #define   PMLCa_FCM0		  0x08000000 /* 4: Freeze Counter While Mark=0 */
518 #define   PMLCa_CE		  0x04000000 /* 5: Condition Enable */
519 #define   PMLCa_EVENT		  0x007f0000 /* 9..15: Event */
520 #define   PMLCa_EVENT_GET(n)	  (((n) >> 16) & 127)
521 #define   PMLCa_EVENT_MAKE(n)	  (((n) & 127) << 16)
522 
523 #define	PMR_PMLCb0		272
524 #define	PMR_PMLCb1		273
525 #define	PMR_PMLCb2		274
526 #define	PMR_PMLCb3		275
527 #define   PMLCb_THRESHMUL	  0x00007f00 /* 21..23: multiply threshold by 2**<n> */
528 #define   PMLCb_THRESHMUL_GET(n)  (((n) >> 16) & 127)
529 #define   PMLCb_THRESHMUL_MAKE(n) (((n) & 127) << 16)
530 #define   PMLCb_THRESHOLD	  0x0000003f /* 26..31: threshold */
531 #define   PMLCb_THRESHOLD_GET(n)  (((n) >> 0) & 63)
532 #define   PMLCb_THRESHOLD_MAKE(n) (((n) & 63) << 0)
533 #define	PMR_PMGC0		400
534 #define   PMGC0_FAC		  0x80000000 /* 0: Freeze All Counters */
535 #define	  PMGC0_PMIE		  0x40000000 /* 1: Performance Monitor Interrupt Enable */
536 #define	  PMGC0_FCECE		  0x40000000 /* 1: Freeze count on enabled condition or event */
537 #define   PMGC0_TBSEL		  0x00001800 /* 19..20: Time base selector */
538 #define   PMGC0_TBEE		  0x00000100 /* 23: Time base transition event exception enable */
539 
540 #define	PMR_UPMC0			(PMR_PMC0 - 16)
541 #define	PMR_UPMC1			(PMR_PMC1 - 16)
542 #define	PMR_UPMC2			(PMR_PMC2 - 16)
543 #define	PMR_UPMC3			(PMR_PMC3 - 16)
544 #define	PMR_UPMLCa0			(PMR_PMLCa0 - 16)
545 #define	PMR_UPMLCa1			(PMR_PMLCa1 - 16)
546 #define	PMR_UPMLCa2			(PMR_PMLCa2 - 16)
547 #define	PMR_UPMLCa3			(PMR_PMLCa3 - 16)
548 #define	PMR_UPMLCb0			(PMR_PMLCb0 - 16)
549 #define	PMR_UPMLCb1			(PMR_PMLCb1 - 16)
550 #define	PMR_UPMLCb2			(PMR_PMLCb2 - 16)
551 #define	PMR_UPMLCb3			(PMR_PMLCb3 - 16)
552 #define	PMR_UPMGC0			(PMR_PMGC0 - 16)
553 
554 #endif /* !_POWERPC_BOOKE_SPR_H_ */
555