uboot/arch/openrisc/include/asm/spr-defs.h
<<
>>
Prefs
   1/*
   2 * SPR Definitions
   3 *
   4 * Copyright (C) 2000 Damjan Lampret
   5 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
   6 * Copyright (C) 2008, 2010 Embecosm Limited
   7 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
   8 * et al.
   9 *
  10 * SPDX-License-Identifier:     GPL-2.0+
  11 *
  12 * This file is part of OpenRISC 1000 Architectural Simulator.
  13 */
  14
  15#ifndef SPR_DEFS__H
  16#define SPR_DEFS__H
  17
  18/* Definition of special-purpose registers (SPRs) */
  19
  20#define MAX_GRPS (32)
  21#define MAX_SPRS_PER_GRP_BITS (11)
  22#define MAX_SPRS_PER_GRP (1 << MAX_SPRS_PER_GRP_BITS)
  23#define MAX_SPRS (0x10000)
  24
  25/* Base addresses for the groups */
  26#define SPRGROUP_SYS    (0 << MAX_SPRS_PER_GRP_BITS)
  27#define SPRGROUP_DMMU   (1 << MAX_SPRS_PER_GRP_BITS)
  28#define SPRGROUP_IMMU   (2 << MAX_SPRS_PER_GRP_BITS)
  29#define SPRGROUP_DC     (3 << MAX_SPRS_PER_GRP_BITS)
  30#define SPRGROUP_IC     (4 << MAX_SPRS_PER_GRP_BITS)
  31#define SPRGROUP_MAC    (5 << MAX_SPRS_PER_GRP_BITS)
  32#define SPRGROUP_D      (6 << MAX_SPRS_PER_GRP_BITS)
  33#define SPRGROUP_PC     (7 << MAX_SPRS_PER_GRP_BITS)
  34#define SPRGROUP_PM     (8 << MAX_SPRS_PER_GRP_BITS)
  35#define SPRGROUP_PIC    (9 << MAX_SPRS_PER_GRP_BITS)
  36#define SPRGROUP_TT     (10 << MAX_SPRS_PER_GRP_BITS)
  37#define SPRGROUP_FP     (11 << MAX_SPRS_PER_GRP_BITS)
  38
  39/* System control and status group */
  40#define SPR_VR          (SPRGROUP_SYS + 0)
  41#define SPR_UPR         (SPRGROUP_SYS + 1)
  42#define SPR_CPUCFGR     (SPRGROUP_SYS + 2)
  43#define SPR_DMMUCFGR    (SPRGROUP_SYS + 3)
  44#define SPR_IMMUCFGR    (SPRGROUP_SYS + 4)
  45#define SPR_DCCFGR      (SPRGROUP_SYS + 5)
  46#define SPR_ICCFGR      (SPRGROUP_SYS + 6)
  47#define SPR_DCFGR       (SPRGROUP_SYS + 7)
  48#define SPR_PCCFGR      (SPRGROUP_SYS + 8)
  49#define SPR_VR2         (SPRGROUP_SYS + 9)
  50#define SPR_AVR         (SPRGROUP_SYS + 10)
  51#define SPR_EVBAR       (SPRGROUP_SYS + 11)
  52#define SPR_AECR        (SPRGROUP_SYS + 12)
  53#define SPR_AESR        (SPRGROUP_SYS + 13)
  54#define SPR_NPC         (SPRGROUP_SYS + 16)
  55#define SPR_SR          (SPRGROUP_SYS + 17)
  56#define SPR_PPC         (SPRGROUP_SYS + 18)
  57#define SPR_FPCSR       (SPRGROUP_SYS + 20)
  58#define SPR_EPCR_BASE   (SPRGROUP_SYS + 32)
  59#define SPR_EPCR_LAST   (SPRGROUP_SYS + 47)
  60#define SPR_EEAR_BASE   (SPRGROUP_SYS + 48)
  61#define SPR_EEAR_LAST   (SPRGROUP_SYS + 63)
  62#define SPR_ESR_BASE    (SPRGROUP_SYS + 64)
  63#define SPR_ESR_LAST    (SPRGROUP_SYS + 79)
  64#define SPR_GPR_BASE    (SPRGROUP_SYS + 1024)
  65
  66/* Data MMU group */
  67#define SPR_DMMUCR      (SPRGROUP_DMMU + 0)
  68#define SPR_DTLBEIR     (SPRGROUP_DMMU + 2)
  69#define SPR_DTLBMR_BASE(WAY)    (SPRGROUP_DMMU + 0x200 + (WAY) * 0x100)
  70#define SPR_DTLBMR_LAST(WAY)    (SPRGROUP_DMMU + 0x27f + (WAY) * 0x100)
  71#define SPR_DTLBTR_BASE(WAY)    (SPRGROUP_DMMU + 0x280 + (WAY) * 0x100)
  72#define SPR_DTLBTR_LAST(WAY)    (SPRGROUP_DMMU + 0x2ff + (WAY) * 0x100)
  73
  74/* Instruction MMU group */
  75#define SPR_IMMUCR      (SPRGROUP_IMMU + 0)
  76#define SPR_ITLBEIR     (SPRGROUP_IMMU + 2)
  77#define SPR_ITLBMR_BASE(WAY)    (SPRGROUP_IMMU + 0x200 + (WAY) * 0x100)
  78#define SPR_ITLBMR_LAST(WAY)    (SPRGROUP_IMMU + 0x27f + (WAY) * 0x100)
  79#define SPR_ITLBTR_BASE(WAY)    (SPRGROUP_IMMU + 0x280 + (WAY) * 0x100)
  80#define SPR_ITLBTR_LAST(WAY)    (SPRGROUP_IMMU + 0x2ff + (WAY) * 0x100)
  81
  82/* Data cache group */
  83#define SPR_DCCR        (SPRGROUP_DC + 0)
  84#define SPR_DCBPR       (SPRGROUP_DC + 1)
  85#define SPR_DCBFR       (SPRGROUP_DC + 2)
  86#define SPR_DCBIR       (SPRGROUP_DC + 3)
  87#define SPR_DCBWR       (SPRGROUP_DC + 4)
  88#define SPR_DCBLR       (SPRGROUP_DC + 5)
  89#define SPR_DCR_BASE(WAY)       (SPRGROUP_DC + 0x200 + (WAY) * 0x200)
  90#define SPR_DCR_LAST(WAY)       (SPRGROUP_DC + 0x3ff + (WAY) * 0x200)
  91
  92/* Instruction cache group */
  93#define SPR_ICCR        (SPRGROUP_IC + 0)
  94#define SPR_ICBPR       (SPRGROUP_IC + 1)
  95#define SPR_ICBIR       (SPRGROUP_IC + 2)
  96#define SPR_ICBLR       (SPRGROUP_IC + 3)
  97#define SPR_ICR_BASE(WAY)       (SPRGROUP_IC + 0x200 + (WAY) * 0x200)
  98#define SPR_ICR_LAST(WAY)       (SPRGROUP_IC + 0x3ff + (WAY) * 0x200)
  99
 100/* MAC group */
 101#define SPR_MACLO       (SPRGROUP_MAC + 1)
 102#define SPR_MACHI       (SPRGROUP_MAC + 2)
 103
 104/* Debug group */
 105#define SPR_DVR(N)      (SPRGROUP_D + (N))
 106#define SPR_DCR(N)      (SPRGROUP_D + 8 + (N))
 107#define SPR_DMR1        (SPRGROUP_D + 16)
 108#define SPR_DMR2        (SPRGROUP_D + 17)
 109#define SPR_DWCR0       (SPRGROUP_D + 18)
 110#define SPR_DWCR1       (SPRGROUP_D + 19)
 111#define SPR_DSR         (SPRGROUP_D + 20)
 112#define SPR_DRR         (SPRGROUP_D + 21)
 113
 114/* Performance counters group */
 115#define SPR_PCCR(N)     (SPRGROUP_PC + (N))
 116#define SPR_PCMR(N)     (SPRGROUP_PC + 8 + (N))
 117
 118/* Power management group */
 119#define SPR_PMR         (SPRGROUP_PM + 0)
 120
 121/* PIC group */
 122#define SPR_PICMR       (SPRGROUP_PIC + 0)
 123#define SPR_PICPR       (SPRGROUP_PIC + 1)
 124#define SPR_PICSR       (SPRGROUP_PIC + 2)
 125
 126/* Tick Timer group */
 127#define SPR_TTMR        (SPRGROUP_TT + 0)
 128#define SPR_TTCR        (SPRGROUP_TT + 1)
 129
 130/*
 131 * Bit definitions for the Version Register
 132 */
 133#define SPR_VR_VER      0xff000000 /* Processor version */
 134#define SPR_VR_CFG      0x00ff0000 /* Processor configuration */
 135#define SPR_VR_RES      0x0000ffc0 /* Reserved */
 136#define SPR_VR_REV      0x0000003f /* Processor revision */
 137
 138#define SPR_VR_VER_OFF  24
 139#define SPR_VR_CFG_OFF  16
 140#define SPR_VR_REV_OFF  0
 141
 142/*
 143 * Bit definitions for the Unit Present Register
 144 */
 145#define SPR_UPR_UP      0x00000001 /* UPR present */
 146#define SPR_UPR_DCP     0x00000002 /* Data cache present */
 147#define SPR_UPR_ICP     0x00000004 /* Instruction cache present */
 148#define SPR_UPR_DMP     0x00000008 /* Data MMU present */
 149#define SPR_UPR_IMP     0x00000010 /* Instruction MMU present */
 150#define SPR_UPR_MP      0x00000020 /* MAC present */
 151#define SPR_UPR_DUP     0x00000040 /* Debug unit present */
 152#define SPR_UPR_PCUP    0x00000080 /* Performance counters unit present */
 153#define SPR_UPR_PMP     0x00000100 /* Power management present */
 154#define SPR_UPR_PICP    0x00000200 /* PIC present */
 155#define SPR_UPR_TTP     0x00000400 /* Tick timer present */
 156#define SPR_UPR_RES     0x00fe0000 /* Reserved */
 157#define SPR_UPR_CUP     0xff000000 /* Context units present */
 158
 159/*
 160 * Bit definitions for the CPU configuration register
 161 */
 162#define SPR_CPUCFGR_NSGF        0x0000000f /* Number of shadow GPR files */
 163#define SPR_CPUCFGR_CGF         0x00000010 /* Custom GPR file */
 164#define SPR_CPUCFGR_OB32S       0x00000020 /* ORBIS32 supported */
 165#define SPR_CPUCFGR_OB64S       0x00000040 /* ORBIS64 supported */
 166#define SPR_CPUCFGR_OF32S       0x00000080 /* ORFPX32 supported */
 167#define SPR_CPUCFGR_OF64S       0x00000100 /* ORFPX64 supported */
 168#define SPR_CPUCFGR_OV64S       0x00000200 /* ORVDX64 supported */
 169#define SPR_CPUCFGR_ND          0x00000400 /* No delay slot */
 170#define SPR_CPUCFGR_AVRP        0x00000800 /* Arch. Version Register present */
 171#define SPR_CPUCFGR_EVBARP      0x00001000 /* Exception Vector Base Address Register (EVBAR) present */
 172#define SPR_CPUCFGR_ISRP        0x00002000 /* Implementation-Specific Registers (ISR0-7) present */
 173#define SPR_CPUCFGR_AECSRP      0x00004000 /* Arithmetic Exception Control Register (AECR) and */
 174                                           /* Arithmetic Exception Status Register (AESR) presents */
 175#define SPR_CPUCFGR_RES         0xffffc000 /* Reserved */
 176
 177/*
 178 * Bit definitions for the Debug configuration register and other
 179 * constants.
 180 */
 181
 182#define SPR_DCFGR_NDP   0x00000007  /* Number of matchpoints mask */
 183#define SPR_DCFGR_NDP1  0x00000000  /* One matchpoint supported */
 184#define SPR_DCFGR_NDP2  0x00000001  /* Two matchpoints supported */
 185#define SPR_DCFGR_NDP3  0x00000002  /* Three matchpoints supported */
 186#define SPR_DCFGR_NDP4  0x00000003  /* Four matchpoints supported */
 187#define SPR_DCFGR_NDP5  0x00000004  /* Five matchpoints supported */
 188#define SPR_DCFGR_NDP6  0x00000005  /* Six matchpoints supported */
 189#define SPR_DCFGR_NDP7  0x00000006  /* Seven matchpoints supported */
 190#define SPR_DCFGR_NDP8  0x00000007  /* Eight matchpoints supported */
 191#define SPR_DCFGR_WPCI  0x00000008  /* Watchpoint counters implemented */
 192
 193#define MATCHPOINTS_TO_NDP(n)   (1 == n ? SPR_DCFGR_NDP1 : \
 194                                2 == n ? SPR_DCFGR_NDP2 : \
 195                                3 == n ? SPR_DCFGR_NDP3 : \
 196                                4 == n ? SPR_DCFGR_NDP4 : \
 197                                5 == n ? SPR_DCFGR_NDP5 : \
 198                                6 == n ? SPR_DCFGR_NDP6 : \
 199                                7 == n ? SPR_DCFGR_NDP7 : SPR_DCFGR_NDP8)
 200#define MAX_MATCHPOINTS 8
 201#define MAX_WATCHPOINTS (MAX_MATCHPOINTS + 2)
 202
 203/*
 204 * Bit definitions for the Supervision Register
 205 */
 206#define SPR_SR_SM       0x00000001 /* Supervisor Mode */
 207#define SPR_SR_TEE      0x00000002 /* Tick timer Exception Enable */
 208#define SPR_SR_IEE      0x00000004 /* Interrupt Exception Enable */
 209#define SPR_SR_DCE      0x00000008 /* Data Cache Enable */
 210#define SPR_SR_ICE      0x00000010 /* Instruction Cache Enable */
 211#define SPR_SR_DME      0x00000020 /* Data MMU Enable */
 212#define SPR_SR_IME      0x00000040 /* Instruction MMU Enable */
 213#define SPR_SR_LEE      0x00000080 /* Little Endian Enable */
 214#define SPR_SR_CE       0x00000100 /* CID Enable */
 215#define SPR_SR_F        0x00000200 /* Condition Flag */
 216#define SPR_SR_CY       0x00000400 /* Carry flag */
 217#define SPR_SR_OV       0x00000800 /* Overflow flag */
 218#define SPR_SR_OVE      0x00001000 /* Overflow flag Exception */
 219#define SPR_SR_DSX      0x00002000 /* Delay Slot Exception */
 220#define SPR_SR_EPH      0x00004000 /* Exception Prefix High */
 221#define SPR_SR_FO       0x00008000 /* Fixed one */
 222#define SPR_SR_SUMRA    0x00010000 /* Supervisor SPR read access */
 223#define SPR_SR_RES      0x0ffe0000 /* Reserved */
 224#define SPR_SR_CID      0xf0000000 /* Context ID */
 225
 226/*
 227 * Bit definitions for the Data MMU Control Register
 228 */
 229#define SPR_DMMUCR_P2S          0x0000003e /* Level 2 Page Size */
 230#define SPR_DMMUCR_P1S          0x000007c0 /* Level 1 Page Size */
 231#define SPR_DMMUCR_VADDR_WIDTH  0x0000f800 /* Virtual ADDR Width */
 232#define SPR_DMMUCR_PADDR_WIDTH  0x000f0000 /* Physical ADDR Width */
 233
 234/*
 235 * Bit definitions for the Instruction MMU Control Register
 236 */
 237#define SPR_IMMUCR_P2S          0x0000003e /* Level 2 Page Size */
 238#define SPR_IMMUCR_P1S          0x000007c0 /* Level 1 Page Size */
 239#define SPR_IMMUCR_VADDR_WIDTH  0x0000f800 /* Virtual ADDR Width */
 240#define SPR_IMMUCR_PADDR_WIDTH  0x000f0000 /* Physical ADDR Width */
 241
 242/*
 243 * Bit definitions for the Data TLB Match Register
 244 */
 245#define SPR_DTLBMR_V    0x00000001 /* Valid */
 246#define SPR_DTLBMR_PL1  0x00000002 /* Page Level 1 (if 0 then PL2) */
 247#define SPR_DTLBMR_CID  0x0000003c /* Context ID */
 248#define SPR_DTLBMR_LRU  0x000000c0 /* Least Recently Used */
 249#define SPR_DTLBMR_VPN  0xfffff000 /* Virtual Page Number */
 250
 251/*
 252 * Bit definitions for the Data TLB Translate Register
 253 */
 254#define SPR_DTLBTR_CC   0x00000001 /* Cache Coherency */
 255#define SPR_DTLBTR_CI   0x00000002 /* Cache Inhibit */
 256#define SPR_DTLBTR_WBC  0x00000004 /* Write-Back Cache */
 257#define SPR_DTLBTR_WOM  0x00000008 /* Weakly-Ordered Memory */
 258#define SPR_DTLBTR_A    0x00000010 /* Accessed */
 259#define SPR_DTLBTR_D    0x00000020 /* Dirty */
 260#define SPR_DTLBTR_URE  0x00000040 /* User Read Enable */
 261#define SPR_DTLBTR_UWE  0x00000080 /* User Write Enable */
 262#define SPR_DTLBTR_SRE  0x00000100 /* Supervisor Read Enable */
 263#define SPR_DTLBTR_SWE  0x00000200 /* Supervisor Write Enable */
 264#define SPR_DTLBTR_PPN  0xfffff000 /* Physical Page Number */
 265
 266/*
 267 * Bit definitions for the Instruction TLB Match Register
 268 */
 269#define SPR_ITLBMR_V    0x00000001 /* Valid */
 270#define SPR_ITLBMR_PL1  0x00000002 /* Page Level 1 (if 0 then PL2) */
 271#define SPR_ITLBMR_CID  0x0000003c /* Context ID */
 272#define SPR_ITLBMR_LRU  0x000000c0 /* Least Recently Used */
 273#define SPR_ITLBMR_VPN  0xfffff000 /* Virtual Page Number */
 274
 275/*
 276 * Bit definitions for the Instruction TLB Translate Register
 277 */
 278#define SPR_ITLBTR_CC   0x00000001 /* Cache Coherency */
 279#define SPR_ITLBTR_CI   0x00000002 /* Cache Inhibit */
 280#define SPR_ITLBTR_WBC  0x00000004 /* Write-Back Cache */
 281#define SPR_ITLBTR_WOM  0x00000008 /* Weakly-Ordered Memory */
 282#define SPR_ITLBTR_A    0x00000010 /* Accessed */
 283#define SPR_ITLBTR_D    0x00000020 /* Dirty */
 284#define SPR_ITLBTR_SXE  0x00000040 /* User Read Enable */
 285#define SPR_ITLBTR_UXE  0x00000080 /* User Write Enable */
 286#define SPR_ITLBTR_PPN  0xfffff000 /* Physical Page Number */
 287
 288/*
 289 * Bit definitions for Data Cache Control register
 290 */
 291#define SPR_DCCR_EW     0x000000ff /* Enable ways */
 292
 293/*
 294 * Bit definitions for Insn Cache Control register
 295 */
 296#define SPR_ICCR_EW     0x000000ff /* Enable ways */
 297
 298/*
 299 * Bit definitions for Data Cache Configuration Register
 300 */
 301
 302#define SPR_DCCFGR_NCW          0x00000007
 303#define SPR_DCCFGR_NCS          0x00000078
 304#define SPR_DCCFGR_CBS          0x00000080
 305#define SPR_DCCFGR_CWS          0x00000100
 306#define SPR_DCCFGR_CCRI         0x00000200
 307#define SPR_DCCFGR_CBIRI        0x00000400
 308#define SPR_DCCFGR_CBPRI        0x00000800
 309#define SPR_DCCFGR_CBLRI        0x00001000
 310#define SPR_DCCFGR_CBFRI        0x00002000
 311#define SPR_DCCFGR_CBWBRI       0x00004000
 312
 313#define SPR_DCCFGR_NCW_OFF      0
 314#define SPR_DCCFGR_NCS_OFF      3
 315#define SPR_DCCFGR_CBS_OFF      7
 316
 317/*
 318 * Bit definitions for Instruction Cache Configuration Register
 319 */
 320#define SPR_ICCFGR_NCW          0x00000007
 321#define SPR_ICCFGR_NCS          0x00000078
 322#define SPR_ICCFGR_CBS          0x00000080
 323#define SPR_ICCFGR_CCRI         0x00000200
 324#define SPR_ICCFGR_CBIRI        0x00000400
 325#define SPR_ICCFGR_CBPRI        0x00000800
 326#define SPR_ICCFGR_CBLRI        0x00001000
 327
 328#define SPR_ICCFGR_NCW_OFF      0
 329#define SPR_ICCFGR_NCS_OFF      3
 330#define SPR_ICCFGR_CBS_OFF      7
 331
 332/*
 333 * Bit definitions for Data MMU Configuration Register
 334 */
 335#define SPR_DMMUCFGR_NTW        0x00000003
 336#define SPR_DMMUCFGR_NTS        0x0000001C
 337#define SPR_DMMUCFGR_NAE        0x000000E0
 338#define SPR_DMMUCFGR_CRI        0x00000100
 339#define SPR_DMMUCFGR_PRI        0x00000200
 340#define SPR_DMMUCFGR_TEIRI      0x00000400
 341#define SPR_DMMUCFGR_HTR        0x00000800
 342
 343#define SPR_DMMUCFGR_NTW_OFF    0
 344#define SPR_DMMUCFGR_NTS_OFF    2
 345
 346/*
 347 * Bit definitions for Instruction MMU Configuration Register
 348 */
 349#define SPR_IMMUCFGR_NTW        0x00000003
 350#define SPR_IMMUCFGR_NTS        0x0000001C
 351#define SPR_IMMUCFGR_NAE        0x000000E0
 352#define SPR_IMMUCFGR_CRI        0x00000100
 353#define SPR_IMMUCFGR_PRI        0x00000200
 354#define SPR_IMMUCFGR_TEIRI      0x00000400
 355#define SPR_IMMUCFGR_HTR        0x00000800
 356
 357#define SPR_IMMUCFGR_NTW_OFF    0
 358#define SPR_IMMUCFGR_NTS_OFF    2
 359
 360/*
 361 * Bit definitions for Debug Control registers
 362 */
 363#define SPR_DCR_DP      0x00000001 /* DVR/DCR present */
 364#define SPR_DCR_CC      0x0000000e /* Compare condition */
 365#define SPR_DCR_SC      0x00000010 /* Signed compare */
 366#define SPR_DCR_CT      0x000000e0 /* Compare to */
 367
 368/* Bit results with SPR_DCR_CC mask */
 369#define SPR_DCR_CC_MASKED       0x00000000
 370#define SPR_DCR_CC_EQUAL        0x00000002
 371#define SPR_DCR_CC_LESS         0x00000004
 372#define SPR_DCR_CC_LESSE        0x00000006
 373#define SPR_DCR_CC_GREAT        0x00000008
 374#define SPR_DCR_CC_GREATE       0x0000000a
 375#define SPR_DCR_CC_NEQUAL       0x0000000c
 376
 377/* Bit results with SPR_DCR_CT mask */
 378#define SPR_DCR_CT_DISABLED     0x00000000
 379#define SPR_DCR_CT_IFEA         0x00000020
 380#define SPR_DCR_CT_LEA          0x00000040
 381#define SPR_DCR_CT_SEA          0x00000060
 382#define SPR_DCR_CT_LD           0x00000080
 383#define SPR_DCR_CT_SD           0x000000a0
 384#define SPR_DCR_CT_LSEA         0x000000c0
 385#define SPR_DCR_CT_LSD          0x000000e0
 386
 387/*
 388 * Bit definitions for Debug Mode 1 register
 389 */
 390#define SPR_DMR1_CW             0x000fffff /* Chain register pair data */
 391#define SPR_DMR1_CW0_AND        0x00000001
 392#define SPR_DMR1_CW0_OR         0x00000002
 393#define SPR_DMR1_CW0            (SPR_DMR1_CW0_AND | SPR_DMR1_CW0_OR)
 394#define SPR_DMR1_CW1_AND        0x00000004
 395#define SPR_DMR1_CW1_OR         0x00000008
 396#define SPR_DMR1_CW1            (SPR_DMR1_CW1_AND | SPR_DMR1_CW1_OR)
 397#define SPR_DMR1_CW2_AND        0x00000010
 398#define SPR_DMR1_CW2_OR         0x00000020
 399#define SPR_DMR1_CW2            (SPR_DMR1_CW2_AND | SPR_DMR1_CW2_OR)
 400#define SPR_DMR1_CW3_AND        0x00000040
 401#define SPR_DMR1_CW3_OR         0x00000080
 402#define SPR_DMR1_CW3            (SPR_DMR1_CW3_AND | SPR_DMR1_CW3_OR)
 403#define SPR_DMR1_CW4_AND        0x00000100
 404#define SPR_DMR1_CW4_OR         0x00000200
 405#define SPR_DMR1_CW4            (SPR_DMR1_CW4_AND | SPR_DMR1_CW4_OR)
 406#define SPR_DMR1_CW5_AND        0x00000400
 407#define SPR_DMR1_CW5_OR         0x00000800
 408#define SPR_DMR1_CW5            (SPR_DMR1_CW5_AND | SPR_DMR1_CW5_OR)
 409#define SPR_DMR1_CW6_AND        0x00001000
 410#define SPR_DMR1_CW6_OR         0x00002000
 411#define SPR_DMR1_CW6            (SPR_DMR1_CW6_AND | SPR_DMR1_CW6_OR)
 412#define SPR_DMR1_CW7_AND        0x00004000
 413#define SPR_DMR1_CW7_OR         0x00008000
 414#define SPR_DMR1_CW7            (SPR_DMR1_CW7_AND | SPR_DMR1_CW7_OR)
 415#define SPR_DMR1_CW8_AND        0x00010000
 416#define SPR_DMR1_CW8_OR         0x00020000
 417#define SPR_DMR1_CW8            (SPR_DMR1_CW8_AND | SPR_DMR1_CW8_OR)
 418#define SPR_DMR1_CW9_AND        0x00040000
 419#define SPR_DMR1_CW9_OR         0x00080000
 420#define SPR_DMR1_CW9            (SPR_DMR1_CW9_AND | SPR_DMR1_CW9_OR)
 421#define SPR_DMR1_RES1           0x00300000 /* Reserved */
 422#define SPR_DMR1_ST             0x00400000 /* Single-step trace*/
 423#define SPR_DMR1_BT             0x00800000 /* Branch trace */
 424#define SPR_DMR1_RES2           0xff000000 /* Reserved */
 425
 426/*
 427 * Bit definitions for Debug Mode 2 register. AWTC and WGB corrected by JPB
 428 */
 429#define SPR_DMR2_WCE0           0x00000001 /* Watchpoint counter 0 enable */
 430#define SPR_DMR2_WCE1           0x00000002 /* Watchpoint counter 0 enable */
 431#define SPR_DMR2_AWTC           0x00000ffc /* Assign watchpoints to counters */
 432#define SPR_DMR2_AWTC_OFF       2 /* Bit offset to AWTC field */
 433#define SPR_DMR2_WGB            0x003ff000 /* Watch generating breakpoint */
 434#define SPR_DMR2_WGB_OFF        12 /* Bit offset to WGB field */
 435#define SPR_DMR2_WBS            0xffc00000 /* Watchpoint status */
 436#define SPR_DMR2_WBS_OFF        22 /* Bit offset to WBS field */
 437
 438/*
 439 * Bit definitions for Debug watchpoint counter registers
 440 */
 441#define SPR_DWCR_COUNT          0x0000ffff /* Count */
 442#define SPR_DWCR_MATCH          0xffff0000 /* Match */
 443#define SPR_DWCR_MATCH_OFF      16 /* Match bit offset */
 444
 445/*
 446 * Bit definitions for Debug stop register
 447 *
 448 */
 449#define SPR_DSR_RSTE    0x00000001 /* Reset exception */
 450#define SPR_DSR_BUSEE   0x00000002 /* Bus error exception */
 451#define SPR_DSR_DPFE    0x00000004 /* Data Page Fault exception */
 452#define SPR_DSR_IPFE    0x00000008 /* Insn Page Fault exception */
 453#define SPR_DSR_TTE     0x00000010 /* Tick Timer exception */
 454#define SPR_DSR_AE      0x00000020 /* Alignment exception */
 455#define SPR_DSR_IIE     0x00000040 /* Illegal Instruction exception */
 456#define SPR_DSR_IE      0x00000080 /* Interrupt exception */
 457#define SPR_DSR_DME     0x00000100 /* DTLB miss exception */
 458#define SPR_DSR_IME     0x00000200 /* ITLB miss exception */
 459#define SPR_DSR_RE      0x00000400 /* Range exception */
 460#define SPR_DSR_SCE     0x00000800 /* System call exception */
 461#define SPR_DSR_FPE     0x00001000 /* Floating Point Exception */
 462#define SPR_DSR_TE      0x00002000 /* Trap exception */
 463
 464/*
 465 * Bit definitions for Debug reason register
 466 */
 467#define SPR_DRR_RSTE    0x00000001 /* Reset exception */
 468#define SPR_DRR_BUSEE   0x00000002 /* Bus error exception */
 469#define SPR_DRR_DPFE    0x00000004 /* Data Page Fault exception */
 470#define SPR_DRR_IPFE    0x00000008 /* Insn Page Fault exception */
 471#define SPR_DRR_TTE     0x00000010 /* Tick Timer exception */
 472#define SPR_DRR_AE      0x00000020 /* Alignment exception */
 473#define SPR_DRR_IIE     0x00000040 /* Illegal Instruction exception */
 474#define SPR_DRR_IE      0x00000080 /* Interrupt exception */
 475#define SPR_DRR_DME     0x00000100 /* DTLB miss exception */
 476#define SPR_DRR_IME     0x00000200 /* ITLB miss exception */
 477#define SPR_DRR_RE      0x00000400 /* Range exception */
 478#define SPR_DRR_SCE     0x00000800 /* System call exception */
 479#define SPR_DRR_FPE     0x00001000 /* Floating Point Exception */
 480#define SPR_DRR_TE      0x00002000 /* Trap exception */
 481
 482/*
 483 * Bit definitions for Performance counters mode registers
 484 */
 485#define SPR_PCMR_CP     0x00000001 /* Counter present */
 486#define SPR_PCMR_UMRA   0x00000002 /* User mode read access */
 487#define SPR_PCMR_CISM   0x00000004 /* Count in supervisor mode */
 488#define SPR_PCMR_CIUM   0x00000008 /* Count in user mode */
 489#define SPR_PCMR_LA     0x00000010 /* Load access event */
 490#define SPR_PCMR_SA     0x00000020 /* Store access event */
 491#define SPR_PCMR_IF     0x00000040 /* Instruction fetch event*/
 492#define SPR_PCMR_DCM    0x00000080 /* Data cache miss event */
 493#define SPR_PCMR_ICM    0x00000100 /* Insn cache miss event */
 494#define SPR_PCMR_IFS    0x00000200 /* Insn fetch stall event */
 495#define SPR_PCMR_LSUS   0x00000400 /* LSU stall event */
 496#define SPR_PCMR_BS     0x00000800 /* Branch stall event */
 497#define SPR_PCMR_DTLBM  0x00001000 /* DTLB miss event */
 498#define SPR_PCMR_ITLBM  0x00002000 /* ITLB miss event */
 499#define SPR_PCMR_DDS    0x00004000 /* Data dependency stall event */
 500#define SPR_PCMR_WPE    0x03ff8000 /* Watchpoint events */
 501
 502/*
 503 * Bit definitions for the Power management register
 504 */
 505#define SPR_PMR_SDF     0x0000000f /* Slow down factor */
 506#define SPR_PMR_DME     0x00000010 /* Doze mode enable */
 507#define SPR_PMR_SME     0x00000020 /* Sleep mode enable */
 508#define SPR_PMR_DCGE    0x00000040 /* Dynamic clock gating enable */
 509#define SPR_PMR_SUME    0x00000080 /* Suspend mode enable */
 510
 511/*
 512 * Bit definitions for PICMR
 513 */
 514#define SPR_PICMR_IUM   0xfffffffc /* Interrupt unmask */
 515
 516/*
 517 * Bit definitions for PICPR
 518 */
 519#define SPR_PICPR_IPRIO 0xfffffffc /* Interrupt priority */
 520
 521/*
 522 * Bit definitions for PICSR
 523 */
 524#define SPR_PICSR_IS    0xffffffff /* Interrupt status */
 525
 526/*
 527 * Bit definitions for Tick Timer Control Register
 528 */
 529#define SPR_TTCR_CNT    0xffffffff /* Count, time period */
 530#define SPR_TTMR_TP     0x0fffffff /* Time period */
 531#define SPR_TTMR_IP     0x10000000 /* Interrupt Pending */
 532#define SPR_TTMR_IE     0x20000000 /* Interrupt Enable */
 533#define SPR_TTMR_DI     0x00000000 /* Disabled */
 534#define SPR_TTMR_RT     0x40000000 /* Restart tick */
 535#define SPR_TTMR_SR     0x80000000 /* Single run */
 536#define SPR_TTMR_CR     0xc0000000 /* Continuous run */
 537#define SPR_TTMR_M      0xc0000000 /* Tick mode */
 538
 539/*
 540 * Bit definitions for the FP Control Status Register
 541 */
 542#define SPR_FPCSR_FPEE  0x00000001 /* Floating Point Exception Enable */
 543#define SPR_FPCSR_RM    0x00000006 /* Rounding Mode */
 544#define SPR_FPCSR_OVF   0x00000008 /* Overflow Flag */
 545#define SPR_FPCSR_UNF   0x00000010 /* Underflow Flag */
 546#define SPR_FPCSR_SNF   0x00000020 /* SNAN Flag */
 547#define SPR_FPCSR_QNF   0x00000040 /* QNAN Flag */
 548#define SPR_FPCSR_ZF    0x00000080 /* Zero Flag */
 549#define SPR_FPCSR_IXF   0x00000100 /* Inexact Flag */
 550#define SPR_FPCSR_IVF   0x00000200 /* Invalid Flag */
 551#define SPR_FPCSR_INF   0x00000400 /* Infinity Flag */
 552#define SPR_FPCSR_DZF   0x00000800 /* Divide By Zero Flag */
 553#define SPR_FPCSR_ALLF  (SPR_FPCSR_OVF | SPR_FPCSR_UNF | SPR_FPCSR_SNF | \
 554                        SPR_FPCSR_QNF | SPR_FPCSR_ZF | SPR_FPCSR_IXF | \
 555                        SPR_FPCSR_IVF | SPR_FPCSR_INF | SPR_FPCSR_DZF)
 556
 557#define FPCSR_RM_RN     (0<<1)
 558#define FPCSR_RM_RZ     (1<<1)
 559#define FPCSR_RM_RIP    (2<<1)
 560#define FPCSR_RM_RIN    (3<<1)
 561
 562/*
 563 * l.nop constants
 564 */
 565#define NOP_NOP                 0x0000 /* Normal nop instruction */
 566#define NOP_EXIT                0x0001 /* End of simulation */
 567#define NOP_REPORT              0x0002 /* Simple report */
 568#define NOP_PUTC                0x0004 /* Simputc instruction */
 569#define NOP_CNT_RESET           0x0005 /* Reset statistics counters */
 570#define NOP_GET_TICKS           0x0006 /* Get # ticks running */
 571#define NOP_GET_PS              0x0007 /* Get picosecs/cycle */
 572#define NOP_REPORT_FIRST        0x0400 /* Report with number */
 573#define NOP_REPORT_LAST         0x03ff /* Report with number */
 574
 575#endif /* SPR_DEFS__H */
 576