Home | History | Annotate | Line # | Download | only in ibm4xx
spr.h revision 1.1
      1  1.1  matt /*	$NetBSD: spr.h,v 1.1 2010/02/25 23:30:05 matt Exp $	*/
      2  1.1  matt 
      3  1.1  matt #ifndef _POWERPC_IBM4XX_SPR_H_
      4  1.1  matt #define	_POWERPC_IBM4XX_SPR_H_
      5  1.1  matt 
      6  1.1  matt /*
      7  1.1  matt  * IBM4xx Special Purpose Register declarations.
      8  1.1  matt  *
      9  1.1  matt  * The first column in the comments indicates which PowerPC architectures the
     10  1.1  matt  * SPR is valid on - E for BookE series, 4 for 4xx series,
     11  1.1  matt  * 6 for 6xx/7xx series and 8 for 8xx and 8xxx (but not 85xx) series.
     12  1.1  matt  */
     13  1.1  matt 
     14  1.1  matt #define	SPR_44XPID		0x030	/* E4.. 440 Process ID */
     15  1.1  matt #define	SPR_USPRG0		0x100	/* E4.. User SPR General 0 */
     16  1.1  matt #define	  IBM403		  0x0020
     17  1.1  matt #define	  IBM401A1		  0x0021
     18  1.1  matt #define	  IBM401B2		  0x0022
     19  1.1  matt #define	  IBM401C2		  0x0023
     20  1.1  matt #define	  IBM401D2		  0x0024
     21  1.1  matt #define	  IBM401E2		  0x0025
     22  1.1  matt #define	  IBM401F2		  0x0026
     23  1.1  matt #define	  IBM401G2		  0x0027
     24  1.1  matt #define   XILVIRTEX		  0x2001
     25  1.1  matt #define	  IBM405GP		  0x4011
     26  1.1  matt #define   IBMSTB03		  0x4013
     27  1.1  matt #define   IBMSTB04		  0x4081
     28  1.1  matt #define   IBM405GS3		  0x40b1
     29  1.1  matt #define   IBM405H		  0x4141
     30  1.1  matt #define	  IBM405L		  0x4161
     31  1.1  matt #define   IBM405LP		  0x41f1
     32  1.1  matt #define	  IBM405GPR		  0x5091
     33  1.1  matt #define   IBM405EP		  0x5121
     34  1.1  matt #define   IBMSTB25		  0x5151
     35  1.1  matt 
     36  1.1  matt #define	SPR_ZPR			0x3b0	/* .4.. Zone Protection Register */
     37  1.1  matt #define	SPR_PID			0x3b1	/* .4.. Process ID */
     38  1.1  matt #define	SPR_MMUCR		0x3b2	/* .4.. MMU Control Register */
     39  1.1  matt #define	  MMUCR_SW0A		  0x01000000 /* Store WithOut Allocate */
     40  1.1  matt #define	  MMUCR_U1TE		  0x00400000 /* U1 Transient Enable */
     41  1.1  matt #define	  MMUCR_U2SWOAE		  0x00200000 /* U2 SWOA Enab */
     42  1.1  matt #define	  MMUCR_DULXE		  0x00080000 /* Data Cache Unlock Exc. Ena. */
     43  1.1  matt #define	  MMUCR_IULXE		  0x00040000 /* Inst. Cache Unlock Exc. Ena. */
     44  1.1  matt #define	  MMUCR_STS		  0x00010000 /* Search Translation Space [TS] */
     45  1.1  matt #define	  MMUCR_STID		  0x000000ff /* Search Translation ID */
     46  1.1  matt #define	SPR_CCR0		0x3b3	/* .4.. Core Configuration Register 0 */
     47  1.1  matt #define	SPR_IAC3		0x3b4	/* .4.. Instruction Address Compare 3 */
     48  1.1  matt #define	SPR_IAC4		0x3b5	/* .4.. Instruction Address Compare 4 */
     49  1.1  matt #define	SPR_DVC1		0x3b6	/* .4.. Data Value Compare 1 */
     50  1.1  matt #define	SPR_DVC2		0x3b7	/* .4.. Data Value Compare 2 */
     51  1.1  matt #define	SPR_SGR			0x3b9	/* .4.. Storage Guarded Register */
     52  1.1  matt #define	SPR_DCWR		0x3ba	/* .4.. Data Cache Write-through Register */
     53  1.1  matt #define	SPR_SLER		0x3bb	/* .4.. Storage Little Endian Register */
     54  1.1  matt #define	SPR_SU0R		0x3bc	/* .4.. Storage User-defined 0 Register */
     55  1.1  matt #define	SPR_DBCR1		0x3bd	/* .4.. Debug Control Register 1 */
     56  1.1  matt #define	SPR_ICDBDR		0x3d3	/* .4.. Instruction Cache Debug Data Register */
     57  1.1  matt #define	SPR_ESR			0x3d4	/* .4.. Exception Syndrome Register */
     58  1.1  matt #define	  ESR_MCI		  0x80000000 /* 0: Machine check - instruction */
     59  1.1  matt #define	  ESR_PIL		  0x08000000 /* 4: Program interrupt - illegal */
     60  1.1  matt #define	  ESR_PPR		  0x04000000 /* 5: Program interrupt - privileged */
     61  1.1  matt #define	  ESR_PTR		  0x02000000 /* 6: Program interrupt - trap */
     62  1.1  matt #define	  ESR_DST		  0x00800000 /* 8: Data storage interrupt - store fault */
     63  1.1  matt #define	  ESR_DIZ		  0x00800000 /* 8: Data/instruction storage interrupt - zone fault */
     64  1.1  matt #define	  ESR_ST		  0x00800000 /* 8: Store operation */
     65  1.1  matt #define	  ESR_DLK		  0x00200000 /* 10: dcache exception */
     66  1.1  matt #define	  ESR_ILK		  0x00100000 /* 11: icache exception */
     67  1.1  matt #define	  ESR_BO		  0x00020000 /* 14: Byte ordering exception */
     68  1.1  matt #define	  ESR_U0F		  0x00008000 /* 16: Data storage interrupt - U0 fault */
     69  1.1  matt #define	  ESR_SPE		  0x00000080 /* 24: SPE exception */
     70  1.1  matt #define	SPR_DEAR		0x3d5	/* .4.. Data Error Address Register */
     71  1.1  matt #define	SPR_EVPR		0x3d6	/* .4.. Exception Vector Prefix Register */
     72  1.1  matt #define	SPR_TSR			0x3d8	/* .4.. Timer Status Register */
     73  1.1  matt #define	  TSR_ENW		  0x80000000 /* Enable Next Watchdog */
     74  1.1  matt #define	  TSR_WIS		  0x40000000 /* Watchdog Interrupt Status */
     75  1.1  matt #define	  TSR_WRS_MASK		  0x30000000 /* Watchdog Reset Status */
     76  1.1  matt #define	  TSR_WRS_NONE		  0x00000000 /* No watchdog reset has occurred */
     77  1.1  matt #define	  TSR_WRS_CORE		  0x10000000 /* Core reset was forced by the watchdog */
     78  1.1  matt #define	  TSR_WRS_CHIP		  0x20000000 /* Chip reset was forced by the watchdog */
     79  1.1  matt #define	  TSR_WRS_SYSTEM	  0x30000000 /* System reset was forced by the watchdog */
     80  1.1  matt #define	  TSR_PIS		  0x08000000 /* PIT Interrupt Status */
     81  1.1  matt #define	  TSR_FIS		  0x04000000 /* FIT Interrupt Status */
     82  1.1  matt #define	SPR_TCR			0x3da	/* .4.. Timer Control Register */
     83  1.1  matt #define	  TCR_WP_MASK		  0xc0000000 /* Watchdog Period mask */
     84  1.1  matt #define	  TCR_WP_2_17		  0x00000000 /* 2**17 clocks */
     85  1.1  matt #define	  TCR_WP_2_21		  0x40000000 /* 2**21 clocks */
     86  1.1  matt #define	  TCR_WP_2_25		  0x80000000 /* 2**25 clocks */
     87  1.1  matt #define	  TCR_WP_2_29		  0xc0000000 /* 2**29 clocks */
     88  1.1  matt #define	  TCR_WRC_MASK		  0x30000000 /* Watchdog Reset Control mask */
     89  1.1  matt #define	  TCR_WRC_NONE		  0x00000000 /* No watchdog reset */
     90  1.1  matt #define	  TCR_WRC_CORE		  0x10000000 /* Core reset */
     91  1.1  matt #define	  TCR_WRC_CHIP		  0x20000000 /* Chip reset */
     92  1.1  matt #define	  TCR_WRC_SYSTEM	  0x30000000 /* System reset */
     93  1.1  matt #define	  TCR_WIE		  0x08000000 /* Watchdog Interrupt Enable */
     94  1.1  matt #define	  TCR_PIE		  0x04000000 /* PIT Interrupt Enable */
     95  1.1  matt #define	  TCR_FP_MASK		  0x03000000 /* FIT Period */
     96  1.1  matt #define	  TCR_FP_2_9		  0x00000000 /* 2**9 clocks */
     97  1.1  matt #define	  TCR_FP_2_13		  0x01000000 /* 2**13 clocks */
     98  1.1  matt #define	  TCR_FP_2_17		  0x02000000 /* 2**17 clocks */
     99  1.1  matt #define	  TCR_FP_2_21		  0x03000000 /* 2**21 clocks */
    100  1.1  matt #define	  TCR_FIE		  0x00800000 /* FIT Interrupt Enable */
    101  1.1  matt #define	  TCR_ARE		  0x00400000 /* Auto Reload Enable */
    102  1.1  matt #define	SPR_PIT			0x3db	/* .4.. Programmable Interval Timer */
    103  1.1  matt #define	SPR_SRR2		0x3de	/* .4.. Save/Restore Register 2 */
    104  1.1  matt #define	SPR_SRR3		0x3df	/* .4.. Save/Restore Register 3 */
    105  1.1  matt #define	SPR_DBSR		0x3f0	/* .4.. Debug Status Register */
    106  1.1  matt #define	  DBSR_IC		  0x80000000 /* Instruction completion debug event */
    107  1.1  matt #define   DBSR_IDE		  0x80000000 /* Imprecise debug event */
    108  1.1  matt #define	  DBSR_BT		  0x40000000 /* Branch Taken debug event */
    109  1.1  matt #define	  DBSR_EDE		  0x20000000 /* Exception debug event */
    110  1.1  matt #define	  DBSR_TIE		  0x10000000 /* Trap Instruction debug event */
    111  1.1  matt #define	  DBSR_UDE		  0x08000000 /* Unconditional debug event */
    112  1.1  matt #define	  DBSR_IA1		  0x04000000 /* IAC1 debug event */
    113  1.1  matt #define	  DBSR_IA2		  0x02000000 /* IAC2 debug event */
    114  1.1  matt #define	  DBSR_DR1		  0x01000000 /* DAC1 Read debug event */
    115  1.1  matt #define	  DBSR_DW1		  0x00800000 /* DAC1 Write debug event */
    116  1.1  matt #define	  DBSR_DR2		  0x00400000 /* DAC2 Read debug event */
    117  1.1  matt #define	  DBSR_DW2		  0x00200000 /* DAC2 Write debug event */
    118  1.1  matt #define	  DBSR_IA3		  0x00080000 /* IAC3 debug event */
    119  1.1  matt #define	  DBSR_IA4		  0x00040000 /* IAC4 debug event */
    120  1.1  matt #define	  DBSR_MRR		  0x00000300 /* Most recent reset */
    121  1.1  matt #define	SPR_DBCR0		0x3f2	/* .4.. Debug Control Register 0 */
    122  1.1  matt #define	  DBCR0_EDM		  0x80000000 /* 0: External Debug Mode */
    123  1.1  matt #define	  DBCR0_IDM		  0x40000000 /* 1: Internal Debug Mode */
    124  1.1  matt #define	  DBCR0_RST_MASK	  0x30000000 /* 2..3: ReSeT */
    125  1.1  matt #define	  DBCR0_RST_NONE	  0x00000000 /*   No action */
    126  1.1  matt #define	  DBCR0_RST_CORE	  0x10000000 /*   Core reset */
    127  1.1  matt #define	  DBCR0_RST_CHIP	  0x20000000 /*   Chip reset */
    128  1.1  matt #define	  DBCR0_RST_SYSTEM	  0x30000000 /*   System reset */
    129  1.1  matt #define	  DBCR0_IC		  0x08000000 /* 4: Instruction Completion debug event */
    130  1.1  matt #define	  DBCR0_BT		  0x04000000 /* 5: Branch Taken debug event */
    131  1.1  matt #define	  DBCR0_EDE		  0x02000000 /* 6: Exception Debug Event */
    132  1.1  matt #define	  DBCR0_TDE		  0x01000000 /* 7: Trap Debug Event */
    133  1.1  matt #define	  DBCR0_IA1		  0x00800000 /* 8: IAC (Instruction Address Compare) 1 debug event */
    134  1.1  matt #define	  DBCR0_IA2		  0x00400000 /* 9: IAC 2 debug event */
    135  1.1  matt #define	  DBCR0_IA12		  0x00200000 /* 10: Instruction Address Range Compare 1-2 */
    136  1.1  matt #define	  DBCR0_IA12X		  0x00100000 /* 11: IA12 eXclusive */
    137  1.1  matt #define	  DBCR0_IA3		  0x00080000 /* 12: IAC 3 debug event */
    138  1.1  matt #define	  DBCR0_IA4		  0x00040000 /* 13: IAC 4 debug event */
    139  1.1  matt #define	  DBCR0_IA34		  0x00020000 /* 14: Instruction Address Range Compare 3-4 */
    140  1.1  matt #define	  DBCR0_IA34X		  0x00010000 /* 15: IA34 eXclusive */
    141  1.1  matt #define	  DBCR0_IA12T		  0x00008000 /* 16: Instruction Address Range Compare 1-2 range Toggle */
    142  1.1  matt #define	  DBCR0_IA34T		  0x00004000 /* 17: Instruction Address Range Compare 3-4 range Toggle */
    143  1.1  matt #define	  DBCR0_FT		  0x00000001 /* 31: Freeze Timers on debug event */
    144  1.1  matt #define	SPR_IAC1		0x3f4	/* .4.. Instruction Address Compare 1 */
    145  1.1  matt #define	SPR_IAC2		0x3f5	/* .4.. Instruction Address Compare 2 */
    146  1.1  matt #define	SPR_DAC1		0x3f6	/* .4.. Data Address Compare 1 */
    147  1.1  matt #define	SPR_DAC2		0x3f7	/* .4.. Data Address Compare 2 */
    148  1.1  matt #define	SPR_DCCR		0x3fa	/* .4.. Data Cache Cachability Register */
    149  1.1  matt #define	SPR_ICCR		0x3fb	/* .4.. Instruction Cache Cachability Register */
    150  1.1  matt 
    151  1.1  matt #endif /* !_POWERPC_IBM4XX_SPR_H_ */
    152