1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
|
/* $NetBSD: ctlreg.h,v 1.31 2021/09/06 21:56:03 andvar Exp $ */
/*
* Copyright (c) 1996
* The President and Fellows of Harvard College. All rights reserved.
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* This software was developed by the Computer Systems Engineering group
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
* contributed to Berkeley.
*
* All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Harvard University.
* This product includes software developed by the University of
* California, Lawrence Berkeley Laboratory.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)ctlreg.h 8.1 (Berkeley) 6/11/93
*/
/*
* Sun4m support by Aaron Brown, Harvard University.
* Changes Copyright (c) 1995 The President and Fellows of Harvard College.
* All rights reserved.
*/
/*
* Sun 4, 4c, and 4m control registers. (includes address space definitions
* and some registers in control space).
*/
/*
* The Alternate address spaces.
*/
/* 0x00 unused */
/* 0x01 unused */
#define ASI_CONTROL 0x02 /* cache enable, context reg, etc */
#define ASI_SEGMAP 0x03 /* [4/4c] segment maps */
#define ASI_SRMMUFP 0x03 /* [4m] ref mmu flush/probe */
#define ASI_PTE 0x04 /* [4/4c] PTE space (pmegs) */
#define ASI_SRMMU 0x04 /* [4m] ref mmu registers */
#define ASI_REGMAP 0x06 /* [4/3-level MMU ] region maps */
#define ASI_HWFLUSHSEG 0x05 /* [4/4c] hardware assisted version of FLUSHSEG */
#define ASI_HWFLUSHPG 0x06 /* [4/4c] hardware assisted version of FLUSHPG */
#define ASI_SRMMUDIAG 0x06 /* [4m] */
#define ASI_HWFLUSHCTX 0x07 /* [4/4c] hardware assisted version of FLUSHCTX */
#define ASI_USERI 0x08 /* I-space (user) */
#define ASI_KERNELI 0x09 /* I-space (kernel) */
#define ASI_USERD 0x0a /* D-space (user) */
#define ASI_KERNELD 0x0b /* D-space (kernel) */
#define ASI_FLUSHREG 0x7 /* [4/4c] flush cache by region */
#define ASI_FLUSHSEG 0x0c /* [4/4c] flush cache by segment */
#define ASI_FLUSHPG 0x0d /* [4/4c] flush cache by page */
#define ASI_FLUSHCTX 0x0e /* [4/4c] flush cache by context */
#define ASI_DCACHE 0x0f /* [4] flush data cache */
#define ASI_ICACHETAG 0x0c /* [4m] instruction cache tag */
#define ASI_ICACHEDATA 0x0d /* [4m] instruction cache data */
#define ASI_DCACHETAG 0x0e /* [4m] data cache tag */
#define ASI_DCACHEDATA 0x0f /* [4m] data cache data */
#define ASI_IDCACHELFP 0x10 /* [4m] flush i&d cache line (page) */
#define ASI_IDCACHELFS 0x11 /* [4m] flush i&d cache line (seg) */
#define ASI_IDCACHELFR 0x12 /* [4m] flush i&d cache line (reg) */
#define ASI_IDCACHELFC 0x13 /* [4m] flush i&d cache line (ctxt) */
#define ASI_IDCACHELFU 0x14 /* [4m] flush i&d cache line (user) */
#define ASI_BLOCKCOPY 0x17 /* [4m] hypersparc: hardware block copy */
#define ASI_BLOCKFILL 0x1f /* [4m] hypersparc: hardware block fill */
#define ASI_BYPASS 0x20 /* [4m] sun ref mmu bypass,
ie. direct phys access */
#define ASI_CSR 0x2f /* [4d] CPU-unit CSR space */
#define ASI_ECSR 0x2f /* [4d] CPU-unit ECSR space */
#define ASI_HICACHECLR 0x31 /* [4m] hypersparc only: I-cache flash clear */
#define ASI_ICACHECLR 0x36 /* [4m] ms1 only: I-cache flash clear */
#define ASI_DCACHECLR 0x37 /* [4m] ms1 only: D-cache flash clear */
#define ASI_DCACHEDIAG 0x39 /* [4m] data cache diagnostic register access */
/*
* [4/4c] Registers in the control space (ASI_CONTROL).
*/
#define AC_IDPROM 0x00000000 /* [4] ID PROM */
#define AC_CONTEXT 0x30000000 /* [4/4c] context register (byte) */
#define AC_SYSENABLE 0x40000000 /* [4/4c] system enable register (byte) */
#define AC_DVMA_ENABLE 0x50000000 /* [4] enable user dvma */
#define AC_BUS_ERR 0x60000000 /* [4] bus error register */
#define AC_SYNC_ERR 0x60000000 /* [4c] sync (memory) error reg */
#define AC_SYNC_VA 0x60000004 /* [4c] sync error virtual addr */
#define AC_ASYNC_ERR 0x60000008 /* [4c] async error reg */
#define AC_ASYNC_VA 0x6000000c /* [4c] async error virtual addr */
#define AC_DIAG_REG 0x70000000 /* [4] diagnostic reg */
#define AC_CACHETAGS 0x80000000 /* [4/4c?] cache tag base address */
#define AC_CACHEDATA 0x90000000 /* [4] cached data [sun4/400?] */
#define AC_DVMA_MAP 0xd0000000 /* [4] user dvma map entries */
#define AC_VMEINTVEC 0xe0000000 /* [4] vme interrupt vector */
#define AC_SERIAL 0xf0000000 /* [4/4c] special serial port sneakiness */
/* AC_SERIAL is not used in the kernel (it is for the PROM) */
/* XXX: does not belong here */
#define ME_REG_IERR 0x80 /* memory err ctrl reg error intr pending bit */
/*
* [4/4c]
* Bits in sync error register. Reading the register clears these;
* otherwise they accumulate. The error(s) occurred at the virtual
* address stored in the sync error address register, and may have
* been due to, e.g., what would usually be called a page fault.
* Worse, the bits accumulate during instruction prefetch, so
* various bits can be on that should be off.
*/
#define SER_WRITE 0x8000 /* error occurred during write */
#define SER_INVAL 0x80 /* PTE had PG_V off */
#define SER_PROT 0x40 /* operation violated PTE prot */
#define SER_TIMEOUT 0x20 /* bus timeout (non-existent mem) */
#define SER_SBUSERR 0x10 /* S-Bus bus error */
#define SER_MEMERR 0x08 /* memory ecc/parity error */
#define SER_SZERR 0x02 /* [4/vme] size error (r/w too large) */
#define SER_WATCHDOG 0x01 /* watchdog reset (never see this) */
#define SER_BITS \
"\20\20WRITE\10INVAL\7PROT\6TIMEOUT\5SBUSERR\4MEMERR\2SZERR\1WATCHDOG"
/*
* [4/4c]
* Bits in async error register (errors from DVMA or Sun-4 cache
* writeback). The corresponding bit is also set in the sync error reg.
*
* A writeback invalid error means there is a bug in the PTE manager.
*
* The word is that the async error register does not work right.
*/
#define AER_WBINVAL 0x80 /* writeback found PTE without PG_V */
#define AER_TIMEOUT 0x20 /* bus timeout */
#define AER_DVMAERR 0x10 /* bus error during DVMA */
#define AER_BITS "\20\10WBINVAL\6TIMEOUT\5DVMAERR"
/*
* [4/4c] Bits in system enable register.
*/
#define SYSEN_DVMA 0x20 /* Enable dvma */
#define SYSEN_CACHE 0x10 /* Enable cache */
#define SYSEN_IOCACHE 0x40 /* Enable IO cache */
#define SYSEN_VIDEO 0x08 /* Enable on-board video */
#define SYSEN_RESET 0x04 /* Reset the hardware */
#define SYSEN_RESETVME 0x02 /* Reset the VME bus */
/*
* [4m] Bits in ASI_CONTROL space, sun4m only.
*/
#define MXCC_STREAM_DATA 0x1c00000 /* Stream data register */
#define MXCC_STREAM_SRC 0x1c00100 /* Stream source register */
#define MXCC_STREAM_DST 0x1c00200 /* Stream dest register */
#define MXCC_BIST 0x1c00800 /* Builtin self test register */
#define MXCC_CTRLREG 0x1c00a00 /* Control register for MXCC */
#define MXCC_STATREG 0x1c00b00 /* Status register for MXCC */
#define MXCC_MRST 0x1c00c00 /* Module reset register */
#define MXCC_ERROR 0x1c00e00 /* Error register */
#define MXCC_MBUSPORT 0x1c00f00 /* MBus port register */
/* Bits in MXCC_CTRLREG */
#define MXCC_CTRLREG_HC 0x1 /* Half cache (Xbus only) */
#define MXCC_CTRLREG_CS 0x2 /* E-cache size (Xbus only) */
#define MXCC_CTRLREG_CE 0x4 /* Enable e-cache */
#define MXCC_CTRLREG_PE 0x8 /* Parity enable */
#define MXCC_CTRLREG_MC 0x10 /* Multiple command enable */
#define MXCC_CTRLREG_PF 0x20 /* Prefetch enable */
#define MXCC_CTRLREG_WI 0x40 /* Write invalidate (Xbus only) */
#define MXCC_CTRLREG_BWC_MASK 0x180 /* Bus watch count (Xbus only) */
#define MXCC_CTRLREG_RC 0x200 /* Read reference count */
/* Bits in MXCC_MRST */
#define MXCC_MRST_SI 0x00000002 /* Software Internal reset */
#define MXCC_MRST_WD 0x00000004 /* Watchdog reset */
/*
* Stream register usage:
* To fill a block with some value, load that value into the 64 byte
* stream data register (using double-word access; on Mbus only the
* lower 32 bytes are used), then write the physical address of
* the destination into the stream destination register.
*
* To copy a block, write the physical address of the source into
* the stream source register causing the block to be transferred
* into the stream data register, then write the physical address of
* the destination into the stream destination register.
*
* In both cases, or in the MXCC_STREAM_CE bit to make the transactions
* cache-coherent. Note that stream operations do not cause cache
* lines to be allocated.
*/
#define MXCC_STREAM_BLKSZ 32 /* Unit for stream ops */
#define MXCC_STREAM_C 0x1000000000ULL /* Cacheable bit for stream ops */
/*
* Bits in ASI_SRMMUFP space.
* Bits 8-11 determine the type of flush/probe.
* Address bits 12-31 hold the page frame.
*/
#define ASI_SRMMUFP_L3 (0<<8) /* probe L3 | flush L3 PTE */
#define ASI_SRMMUFP_L2 (1<<8) /* probe L2 | flush L2/L3 PTE/PTD's */
#define ASI_SRMMUFP_L1 (2<<8) /* probe L1 | flush L1/L2/L3 PTE/PTD's*/
#define ASI_SRMMUFP_L0 (3<<8) /* probe L0 | flush L0/L1/L2/L3 PTE/PTD's */
#define ASI_SRMMUFP_LN (4<<8) /* probe all | flush all levels */
/*
* [4m] Registers and bits in the SPARC Reference MMU (ASI_SRMMU).
*/
#define SRMMU_PCR 0x00000000 /* Processor control register */
#define SRMMU_CXTPTR 0x00000100 /* Context table pointer register */
#define SRMMU_CXR 0x00000200 /* Context register */
#define SRMMU_SFSR 0x00000300 /* Synchronous fault status reg */
#define SRMMU_SFAR 0x00000400 /* Synchronous fault address reg */
#define SRMMU_AFSR 0x00000500 /* Asynchronous fault status reg (HS) */
#define SRMMU_AFAR 0x00000600 /* Asynchronous fault address reg (HS)*/
#define SRMMU_PCFG 0x00000600 /* Processor configuration reg (TURBO)*/
#define SRMMU_RST 0x00000700 /* Reset reg */
#define SRMMU_TLBCTRL 0x00001000 /* TLB replacement control reg */
/*
* [4m] Bits in SRMMU control register. One set per module.
*/
/* Bits 0 and 1 are common between implementations */
#define SRMMU_PCR_ME 0x00000001 /* MMU Enable */
#define SRMMU_PCR_NF 0x00000002 /* Fault inhibit bit */
#define VIKING_PCR_ME SRMMU_PCR_ME /* MMU Enable */
#define VIKING_PCR_NF SRMMU_PCR_NF /* Fault inhibit bit */
#define VIKING_PCR_PSO 0x00000080 /* Partial Store Ordering enable */
#define VIKING_PCR_DCE 0x00000100 /* Data cache enable bit */
#define VIKING_PCR_ICE 0x00000200 /* SuperSPARC instr. cache enable */
#define VIKING_PCR_SB 0x00000400 /* Store buffer enable bit */
#define VIKING_PCR_MB 0x00000800 /* MBus mode: 0=MXCC, 1=no MXCC */
#define VIKING_PCR_PE 0x00001000 /* Enable memory parity checking */
#define VIKING_PCR_BM 0x00002000 /* 1 iff booting */
#define VIKING_PCR_SE 0x00004000 /* Coherent bus snoop enable */
#define VIKING_PCR_AC 0x00008000 /* 1=cache non-MMU accesses */
#define VIKING_PCR_TC 0x00010000 /* 1=cache table walks */
#define HYPERSPARC_PCR_ME SRMMU_PCR_ME /* MMU Enable */
#define HYPERSPARC_PCR_NF SRMMU_PCR_NF /* Fault inhibit bit */
#define HYPERSPARC_PCR_CE 0x00000100 /* Cache enable bit */
#define HYPERSPARC_PCR_CM 0x00000400 /* Cache mode: 1=write-back */
#define HYPERSPARC_PCR_MR 0x00000800 /* Memory reflection: 1 = on */
#define HYPERSPARC_PCR_CS 0x00001000 /* cache size: 1=256k, 0=128k */
#define HYPERSPARC_PCR_C 0x00002000 /* enable cache when MMU off */
#define HYPERSPARC_PCR_BM 0x00004000 /* 1 iff booting */
#define HYPERSPARC_PCR_MID 0x00078000 /* MBus module ID MID<3:0> */
#define HYPERSPARC_PCR_WBE 0x00080000 /* Write buffer enable */
#define HYPERSPARC_PCR_SE 0x00100000 /* Coherent bus snoop enable */
#define HYPERSPARC_PCR_CWR 0x00200000 /* Cache wrap enable */
#define CYPRESS_PCR_ME SRMMU_PCR_ME /* MMU Enable */
#define CYPRESS_PCR_NF SRMMU_PCR_NF /* Fault inhibit bit */
#define CYPRESS_PCR_CE 0x00000100 /* Cache enable bit */
#define CYPRESS_PCR_CL 0x00000200 /* Cache Lock (604 only) */
#define CYPRESS_PCR_CM 0x00000400 /* Cache mode: 1=write-back */
#define CYPRESS_PCR_MR 0x00000800 /* Memory reflection: 1=on (605 only) */
#define CYPRESS_PCR_C 0x00002000 /* enable cache when MMU off */
#define CYPRESS_PCR_BM 0x00004000 /* 1 iff booting */
#define CYPRESS_PCR_MID 0x00078000 /* MBus module ID MID<3:0> (605 only) */
#define CYPRESS_PCR_MV 0x00080000 /* Multichip Valid */
#define CYPRESS_PCR_MCM 0x00300000 /* Multichip Mask */
#define CYPRESS_PCR_MCA 0x00c00000 /* Multichip Address */
#define MS1_PCR_ME SRMMU_PCR_ME /* MMU Enable */
#define MS1_PCR_NF SRMMU_PCR_NF /* Fault inhibit bit */
#define MS1_PCR_DCE 0x00000100 /* Data cache enable */
#define MS1_PCR_ICE 0x00000200 /* Instruction cache enable */
#define MS1_PCR_RC 0x00000c00 /* DRAM Refresh control */
#define MS1_PCR_PE 0x00001000 /* Enable memory parity checking */
#define MS1_PCR_BM 0x00004000 /* 1 iff booting */
#define MS1_PCR_AC 0x00008000 /* 1=cache if ME==0 (and [ID]CE on) */
#define MS1_PCR_ID 0x00010000 /* 1=disable ITBR */
#define MS1_PCR_PC 0x00020000 /* Parity control: 0=even,1=odd */
#define MS1_PCR_MV 0x00100000 /* Memory data View (diag) */
#define MS1_PCR_DV 0x00200000 /* Data View (diag) */
#define MS1_PCR_AV 0x00400000 /* Address View (diag) */
#define MS1_PCR_STW 0x00800000 /* Software Tablewalk enable */
#define SWIFT_PCR_ME SRMMU_PCR_ME /* MMU Enable */
#define SWIFT_PCR_NF SRMMU_PCR_NF /* Fault inhibit bit */
#define SWIFT_PCR_SA 0x00000080 /* Store Allocate */
#define SWIFT_PCR_DCE 0x00000100 /* Data cache enable */
#define SWIFT_PCR_ICE 0x00000200 /* Instruction cache enable */
#define SWIFT_PCR_RC 0x00003c00 /* DRAM Refresh control */
#define SWIFT_PCR_BM 0x00004000 /* 1 iff booting */
#define SWIFT_PCR_AC 0x00008000 /* 1=cache if ME=0 (and [ID]CE on) */
#define SWIFT_PCR_PA 0x00010000 /* TCX/SX control */
#define SWIFT_PCR_PC 0x00020000 /* Parity control: 0=even,1=odd */
#define SWIFT_PCR_PE 0x00040000 /* Enable memory parity checking */
#define SWIFT_PCR_PMC 0x00180000 /* Page mode control */
#define SWIFT_PCR_BF 0x00200000 /* Branch Folding */
#define SWIFT_PCR_WP 0x00400000 /* Watch point enable */
#define SWIFT_PCR_STW 0x00800000 /* Software Tablewalk enable */
#define TURBOSPARC_PCR_ME SRMMU_PCR_ME /* MMU Enable */
#define TURBOSPARC_PCR_NF SRMMU_PCR_NF /* Fault inhibit bit */
#define TURBOSPARC_PCR_ICS 0x00000004 /* I-cache snoop enable */
#define TURBOSPARC_PCR_PSO 0x00000008 /* Partial Store order (ro!) */
#define TURBOSPARC_PCR_DCE 0x00000100 /* Data cache enable */
#define TURBOSPARC_PCR_ICE 0x00000200 /* Instruction cache enable */
#define TURBOSPARC_PCR_RC 0x00003c00 /* DRAM Refresh control */
#define TURBOSPARC_PCR_BM 0x00004000 /* 1 iff booting */
#define TURBOSPARC_PCR_PC 0x00020000 /* Parity ctrl: 0=even,1=odd */
#define TURBOSPARC_PCR_PE 0x00040000 /* Enable parity checking */
#define TURBOSPARC_PCR_PMC 0x00180000 /* Page mode control */
/* The Turbosparc's Processor Configuration Register */
#define TURBOSPARC_PCFG_SCC 0x00000007 /* e-cache config */
#define TURBOSPARC_PCFG_SE 0x00000008 /* e-cache enable */
#define TURBOSPARC_PCFG_US2 0x00000010 /* microsparc II compat */
#define TURBOSPARC_PCFG_WT 0x00000020 /* write-through enable */
#define TURBOSPARC_PCFG_SBC 0x000000c0 /* SBus Clock */
#define TURBOSPARC_PCFG_WS 0x03800000 /* DRAM wait states */
#define TURBOSPARC_PCFG_RAH 0x0c000000 /* DRAM Row Address Hold */
#define TURBOSPARC_PCFG_AXC 0x30000000 /* AFX Clock */
#define TURBOSPARC_PCFG_SNP 0x40000000 /* DVMA Snoop enable */
#define TURBOSPARC_PCFG_IOCLK 0x80000000 /* I/O clock ratio */
/* Implementation and Version fields are common to all modules */
#define SRMMU_PCR_VER 0x0f000000 /* Version of MMU implementation */
#define SRMMU_PCR_IMPL 0xf0000000 /* Implementation number of MMU */
/* [4m] Bits in the Synchronous Fault Status Register */
#define SFSR_EM 0x00020000 /* Error mode watchdog reset occurred */
#define SFSR_CS 0x00010000 /* Control Space error */
#define SFSR_SB 0x00008000 /* SS: Store Buffer Error */
#define SFSR_PERR 0x00006000 /* Parity error code */
#define SFSR_P 0x00004000 /* SS: Parity error */
#define SFSR_UC 0x00001000 /* Uncorrectable error */
#define SFSR_TO 0x00000800 /* S-Bus timeout */
#define SFSR_BE 0x00000400 /* S-Bus bus error */
#define SFSR_LVL 0x00000300 /* Pagetable level causing the fault */
#define SFSR_AT 0x000000e0 /* Access type */
#define SFSR_FT 0x0000001c /* Fault type */
#define SFSR_FAV 0x00000002 /* Fault Address is valid */
#define SFSR_OW 0x00000001 /* Overwritten with new fault */
#define SFSR_BITS "\177\020" \
"b\21EM\0b\20CS\0b\17SB\0f\15\2PERR\0" \
"b\14UC\0b\13TO\0b\12BE\0f\10\2LVL\0" \
"f\05\3AT\0f\02\3FT\0b\01FAV\0b\01OW\0"
/* [4m] Synchronous Fault Types */
#define SFSR_FT_NONE (0 << 2) /* no fault */
#define SFSR_FT_INVADDR (1 << 2) /* invalid address fault */
#define SFSR_FT_PROTERR (2 << 2) /* protection fault */
#define SFSR_FT_PRIVERR (3 << 2) /* privilege violation */
#define SFSR_FT_TRANSERR (4 << 2) /* translation fault */
#define SFSR_FT_BUSERR (5 << 2) /* access bus error */
#define SFSR_FT_INTERR (6 << 2) /* internal error */
#define SFSR_FT_RESERVED (7 << 2) /* reserved */
/* [4m] Synchronous Fault Access Types */
#define SFSR_AT_LDUDATA (0 << 5) /* Load user data */
#define SFSR_AT_LDSDATA (1 << 5) /* Load supervisor data */
#define SFSR_AT_LDUTEXT (2 << 5) /* Load user text */
#define SFSR_AT_LDSTEXT (3 << 5) /* Load supervisor text */
#define SFSR_AT_STUDATA (4 << 5) /* Store user data */
#define SFSR_AT_STSDATA (5 << 5) /* Store supervisor data */
#define SFSR_AT_STUTEXT (6 << 5) /* Store user text */
#define SFSR_AT_STSTEXT (7 << 5) /* Store supervisor text */
#define SFSR_AT_SUPERVISOR (1 << 5) /* Set iff supervisor */
#define SFSR_AT_TEXT (2 << 5) /* Set iff text */
#define SFSR_AT_STORE (4 << 5) /* Set iff store */
/* [4m] Synchronous Fault PT Levels */
#define SFSR_LVL_0 (0 << 8) /* Context table entry */
#define SFSR_LVL_1 (1 << 8) /* Region table entry */
#define SFSR_LVL_2 (2 << 8) /* Segment table entry */
#define SFSR_LVL_3 (3 << 8) /* Page table entry */
/* [4m] Asynchronous Fault Status Register bits */
#define AFSR_AFO 0x00000001 /* Async. fault occurred */
#define AFSR_AFA 0x000000f0 /* Bits <35:32> of faulting phys addr */
#define AFSR_AFA_RSHIFT 4 /* Shift to get AFA to bit 0 */
#define AFSR_AFA_LSHIFT 28 /* Shift to get AFA to bit 32 */
#define AFSR_BE 0x00000400 /* Bus error */
#define AFSR_TO 0x00000800 /* Bus timeout */
#define AFSR_UC 0x00001000 /* Uncorrectable error */
#define AFSR_SE 0x00002000 /* System error */
#define AFSR_BITS "\177\020" \
"b\15SE\0b\14UC\0b\13TO\0b\12BE\0f\04\4AFA\0b\0AFO\0"
/* [4m] TLB Replacement Control Register bits */
#define TLBC_DISABLE 0x00000020 /* Disable replacement counter */
#define TLBC_RCNTMASK 0x0000001f /* Replacement counter (0-31) */
/* [4m] SRMMU Reset Register bits */
#define SRMMU_RST_SI 0x00000002 /* Software Internal reset */
#define SRMMU_RST_WD 0x00000004 /* Watchdog reset */
/*
* The Ross Hypersparc has an Instruction Cache Control Register (ICCR)
* It contains an enable bit for the on-chip instruction cache and a bit
* that controls whether a FLUSH instruction causes an Unimplemented
* Flush Trap or just flushes the appropriate instruction cache line.
* The ICCR register is implemented as Ancillary State register number 31.
*/
#define HYPERSPARC_ICCR_ICE 1 /* Instruction cache enable */
#define HYPERSPARC_ICCR_FTD 2 /* Unimpl. flush trap disable */
#define HYPERSPARC_ASRNUM_ICCR 31 /* ICCR == ASR#31 */
/*
* microSPARC-IIep has control space registers in PA[30:28] = 0x1
*/
/* Asynchronous memory Fault Status/Address Registers */
#define MSIIEP_AFSR 0x10001000
#define MSIIEP_AFAR 0x10001004
#define MSIIEP_AFSR_ERR 0x80000000 /* summary bit: LE || TO || BE */
#define MSIIEP_AFSR_LE 0x40000000 /* late error */
#define MSIIEP_AFSR_TO 0x20000000 /* time out */
#define MSIIEP_AFSR_BE 0x10000000 /* bus error */
#define MSIIEP_AFSR_S 0x01000000 /* supervisor */
#define MSIIEP_AFSR_ME 0x00080000 /* multiple error */
#define MSIIEP_AFSR_RD 0x00040000 /* read operation */
#define MSIIEP_AFSR_FAV 0x00020000 /* fault address valid */
#define MSIIEP_AFSR_BITS "\177\20" \
"b\37ERR\0" "b\36LE\0" "b\35TO\0" "b\34BE\0" \
"b\30S\0" "b\23ME\0" "b\22RD\0" "b\21FAV\0"
/* Memory Fault Status/Address Registers (parity faults) */
#define MSIIEP_MFSR 0x10001050
#define MSIIEP_MFAR 0x10001054
#define MSIIEP_MFSR_ERR 0x80000000 /* summary bit */
#define MSIIEP_MFSR_S 0x01000000 /* supervisor */
#define MSIIEP_MFSR_CP 0x00800000 /* CPU transaction */
#define MSIIEP_MFSR_ME 0x00080000 /* multiple error */
#define MSIIEP_MFSR_ATO 0x00008000 /* PCI local bus timeout */
#define MSIIEP_MFSR_PERR_1 0x00004000 /* parity error [1] */
#define MSIIEP_MFSR_PERR_0 0x00002000 /* parity error [0] */
#define MSIIEP_MFSR_BM 0x00001000 /* boot mode */
#define MSIIEP_MFSR_C 0x00000800 /* cacheable */
#define MSIIEP_MFSR_REQ 0x000000f0 /* request type */
#define MSIIEP_MFSR_REQ_NOP 0x00
#define MSIIEP_MFSR_REQ_RD64 0x10
#define MSIIEP_MFSR_REQ_RD128 0x20
#define MSIIEP_MFSR_REQ_RD256 0x40
#define MSIIEP_MFSR_REQ_WR8 0x90
#define MSIIEP_MFSR_REQ_WR16 0xa0
#define MSIIEP_MFSR_REQ_WR32 0xb0
#define MSIIEP_MFSR_REQ_WR64 0xc0
#define MSIIEP_MFSR_BITS "\177\20" \
"b\37ERR\0" "b\30S\0" "b\27CP\0" "b\23ME\0" "b\17ATO\0" \
"b\16PERR1\0" "b\15PERR0\0" "b\14BM\0" "b\13C\0" \
"f\4\4REQ\0" ":\0(NOP)\0" ":\1(RD64)\0" ":\2(RD128)\0" \
":\4(RD256)\0" ":\11(WR8)\0" ":\12(WR16)\0" ":\13(WR32)\0" \
":\14(WR64)\0"
|