diff options
Diffstat (limited to 'src/arch/ppc/include/ppc74xx.h')
-rwxr-xr-x | src/arch/ppc/include/ppc74xx.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/arch/ppc/include/ppc74xx.h b/src/arch/ppc/include/ppc74xx.h index 121efbe28d..2dfeb5ab21 100755 --- a/src/arch/ppc/include/ppc74xx.h +++ b/src/arch/ppc/include/ppc74xx.h @@ -30,3 +30,15 @@ #define HID0_SGE 0x00000080 #define HID0_BTIC 0x00000020 #define HID0_BHT 0x00000004 + +/*----------------------------------------------------------------------------+ +| Machine State Register. MSR_EE, MSR_PR, MSR_FP, MSR_ME, MSR_FE0, MSR_FE1, ++----------------------------------------------------------------------------*/ +#define MSR_APE 0x00080000 /* wait state enable */ +#define MSR_WE 0x00040000 /* wait state enable */ +#define MSR_CE 0x00020000 /* critical interrupt enable */ +#define MSR_DWE 0x00000400 /* debug wait enable */ +#define MSR_DE 0x00000200 /* debug interrupt enable */ +#define MSR_IR 0x00000020 /* instruction relocale */ +#define MSR_DR 0x00000010 /* data relocale */ + |