bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 1 | #if !defined (__MIPS_CPU_H__) |
| 2 | #define __MIPS_CPU_H__ |
| 3 | |
Blue Swirl | 3e45717 | 2011-07-13 12:44:15 +0000 | [diff] [blame] | 4 | //#define DEBUG_OP |
| 5 | |
Paolo Bonzini | d94f0a8 | 2014-03-28 17:48:12 +0100 | [diff] [blame] | 6 | #define ALIGNED_ONLY |
bellard | 4ad40f3 | 2005-12-05 19:59:36 +0000 | [diff] [blame] | 7 | #define TARGET_HAS_ICE 1 |
| 8 | |
ths | 9042c0e | 2006-12-23 14:18:40 +0000 | [diff] [blame] | 9 | #define ELF_MACHINE EM_MIPS |
| 10 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 11 | #define CPUArchState struct CPUMIPSState |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 12 | |
bellard | c5d6edc | 2006-06-14 16:49:24 +0000 | [diff] [blame] | 13 | #include "config.h" |
Stefan Weil | 9a78eea | 2010-10-22 23:03:33 +0200 | [diff] [blame] | 14 | #include "qemu-common.h" |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 15 | #include "mips-defs.h" |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 16 | #include "exec/cpu-defs.h" |
Paolo Bonzini | 6b4c305 | 2012-10-24 13:12:00 +0200 | [diff] [blame] | 17 | #include "fpu/softfloat.h" |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 18 | |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 19 | struct CPUMIPSState; |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 20 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 21 | typedef struct r4k_tlb_t r4k_tlb_t; |
| 22 | struct r4k_tlb_t { |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 23 | target_ulong VPN; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 24 | uint32_t PageMask; |
pbrook | 98c1b82 | 2006-03-11 16:20:36 +0000 | [diff] [blame] | 25 | uint_fast8_t ASID; |
| 26 | uint_fast16_t G:1; |
| 27 | uint_fast16_t C0:3; |
| 28 | uint_fast16_t C1:3; |
| 29 | uint_fast16_t V0:1; |
| 30 | uint_fast16_t V1:1; |
| 31 | uint_fast16_t D0:1; |
| 32 | uint_fast16_t D1:1; |
Leon Alrae | 2fb58b7 | 2014-07-07 11:23:58 +0100 | [diff] [blame] | 33 | uint_fast16_t XI0:1; |
| 34 | uint_fast16_t XI1:1; |
| 35 | uint_fast16_t RI0:1; |
| 36 | uint_fast16_t RI1:1; |
Leon Alrae | 9456c2f | 2014-07-07 11:24:00 +0100 | [diff] [blame] | 37 | uint_fast16_t EHINV:1; |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 38 | target_ulong PFN[2]; |
| 39 | }; |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 40 | |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 41 | #if !defined(CONFIG_USER_ONLY) |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 42 | typedef struct CPUMIPSTLBContext CPUMIPSTLBContext; |
| 43 | struct CPUMIPSTLBContext { |
| 44 | uint32_t nb_tlb; |
| 45 | uint32_t tlb_in_use; |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 46 | int (*map_address) (struct CPUMIPSState *env, hwaddr *physical, int *prot, target_ulong address, int rw, int access_type); |
Blue Swirl | 895c2d0 | 2012-09-02 14:52:59 +0000 | [diff] [blame] | 47 | void (*helper_tlbwi)(struct CPUMIPSState *env); |
| 48 | void (*helper_tlbwr)(struct CPUMIPSState *env); |
| 49 | void (*helper_tlbp)(struct CPUMIPSState *env); |
| 50 | void (*helper_tlbr)(struct CPUMIPSState *env); |
Leon Alrae | 9456c2f | 2014-07-07 11:24:00 +0100 | [diff] [blame] | 51 | void (*helper_tlbinv)(struct CPUMIPSState *env); |
| 52 | void (*helper_tlbinvf)(struct CPUMIPSState *env); |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 53 | union { |
| 54 | struct { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 55 | r4k_tlb_t tlb[MIPS_TLB_MAX]; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 56 | } r4k; |
| 57 | } mmu; |
| 58 | }; |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 59 | #endif |
ths | 51b2772 | 2007-05-30 20:46:02 +0000 | [diff] [blame] | 60 | |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 61 | /* MSA Context */ |
| 62 | #define MSA_WRLEN (128) |
| 63 | |
| 64 | enum CPUMIPSMSADataFormat { |
| 65 | DF_BYTE = 0, |
| 66 | DF_HALF, |
| 67 | DF_WORD, |
| 68 | DF_DOUBLE |
| 69 | }; |
| 70 | |
| 71 | typedef union wr_t wr_t; |
| 72 | union wr_t { |
| 73 | int8_t b[MSA_WRLEN/8]; |
| 74 | int16_t h[MSA_WRLEN/16]; |
| 75 | int32_t w[MSA_WRLEN/32]; |
| 76 | int64_t d[MSA_WRLEN/64]; |
| 77 | }; |
| 78 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 79 | typedef union fpr_t fpr_t; |
| 80 | union fpr_t { |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 81 | float64 fd; /* ieee double precision */ |
| 82 | float32 fs[2];/* ieee single precision */ |
| 83 | uint64_t d; /* binary double fixed-point */ |
| 84 | uint32_t w[2]; /* binary single fixed-point */ |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 85 | /* FPU/MSA register mapping is not tested on big-endian hosts. */ |
| 86 | wr_t wr; /* vector data */ |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 87 | }; |
| 88 | /* define FP_ENDIAN_IDX to access the same location |
Stefan Weil | 4ff9786 | 2011-03-13 15:44:02 +0100 | [diff] [blame] | 89 | * in the fpr_t union regardless of the host endianness |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 90 | */ |
Juan Quintela | e2542fe | 2009-07-27 16:13:06 +0200 | [diff] [blame] | 91 | #if defined(HOST_WORDS_BIGENDIAN) |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 92 | # define FP_ENDIAN_IDX 1 |
| 93 | #else |
| 94 | # define FP_ENDIAN_IDX 0 |
ths | c570fd1 | 2006-12-21 01:19:56 +0000 | [diff] [blame] | 95 | #endif |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 96 | |
| 97 | typedef struct CPUMIPSFPUContext CPUMIPSFPUContext; |
| 98 | struct CPUMIPSFPUContext { |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 99 | /* Floating point registers */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 100 | fpr_t fpr[32]; |
bellard | 6ea83fe | 2006-06-14 12:56:19 +0000 | [diff] [blame] | 101 | float_status fp_status; |
ths | 5a5012e | 2007-05-07 13:55:33 +0000 | [diff] [blame] | 102 | /* fpu implementation/revision register (fir) */ |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 103 | uint32_t fcr0; |
Petar Jovanovic | b4dd99a | 2014-01-17 19:25:57 +0100 | [diff] [blame] | 104 | #define FCR0_UFRP 28 |
ths | 5a5012e | 2007-05-07 13:55:33 +0000 | [diff] [blame] | 105 | #define FCR0_F64 22 |
| 106 | #define FCR0_L 21 |
| 107 | #define FCR0_W 20 |
| 108 | #define FCR0_3D 19 |
| 109 | #define FCR0_PS 18 |
| 110 | #define FCR0_D 17 |
| 111 | #define FCR0_S 16 |
| 112 | #define FCR0_PRID 8 |
| 113 | #define FCR0_REV 0 |
bellard | 6ea83fe | 2006-06-14 12:56:19 +0000 | [diff] [blame] | 114 | /* fcsr */ |
| 115 | uint32_t fcr31; |
ths | f01be15 | 2008-09-18 11:57:27 +0000 | [diff] [blame] | 116 | #define SET_FP_COND(num,env) do { ((env).fcr31) |= ((num) ? (1 << ((num) + 24)) : (1 << 23)); } while(0) |
| 117 | #define CLEAR_FP_COND(num,env) do { ((env).fcr31) &= ~((num) ? (1 << ((num) + 24)) : (1 << 23)); } while(0) |
| 118 | #define GET_FP_COND(env) ((((env).fcr31 >> 24) & 0xfe) | (((env).fcr31 >> 23) & 0x1)) |
ths | 5a5012e | 2007-05-07 13:55:33 +0000 | [diff] [blame] | 119 | #define GET_FP_CAUSE(reg) (((reg) >> 12) & 0x3f) |
| 120 | #define GET_FP_ENABLE(reg) (((reg) >> 7) & 0x1f) |
| 121 | #define GET_FP_FLAGS(reg) (((reg) >> 2) & 0x1f) |
| 122 | #define SET_FP_CAUSE(reg,v) do { (reg) = ((reg) & ~(0x3f << 12)) | ((v & 0x3f) << 12); } while(0) |
| 123 | #define SET_FP_ENABLE(reg,v) do { (reg) = ((reg) & ~(0x1f << 7)) | ((v & 0x1f) << 7); } while(0) |
| 124 | #define SET_FP_FLAGS(reg,v) do { (reg) = ((reg) & ~(0x1f << 2)) | ((v & 0x1f) << 2); } while(0) |
| 125 | #define UPDATE_FP_FLAGS(reg,v) do { (reg) |= ((v & 0x1f) << 2); } while(0) |
bellard | 6ea83fe | 2006-06-14 12:56:19 +0000 | [diff] [blame] | 126 | #define FP_INEXACT 1 |
| 127 | #define FP_UNDERFLOW 2 |
| 128 | #define FP_OVERFLOW 4 |
| 129 | #define FP_DIV0 8 |
| 130 | #define FP_INVALID 16 |
| 131 | #define FP_UNIMPLEMENTED 32 |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 132 | }; |
ths | 36d2395 | 2007-02-28 22:37:42 +0000 | [diff] [blame] | 133 | |
ths | 623a930 | 2007-10-28 19:45:05 +0000 | [diff] [blame] | 134 | #define NB_MMU_MODES 3 |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 135 | |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 136 | typedef struct CPUMIPSMVPContext CPUMIPSMVPContext; |
| 137 | struct CPUMIPSMVPContext { |
| 138 | int32_t CP0_MVPControl; |
| 139 | #define CP0MVPCo_CPA 3 |
| 140 | #define CP0MVPCo_STLB 2 |
| 141 | #define CP0MVPCo_VPC 1 |
| 142 | #define CP0MVPCo_EVP 0 |
| 143 | int32_t CP0_MVPConf0; |
| 144 | #define CP0MVPC0_M 31 |
| 145 | #define CP0MVPC0_TLBS 29 |
| 146 | #define CP0MVPC0_GS 28 |
| 147 | #define CP0MVPC0_PCP 27 |
| 148 | #define CP0MVPC0_PTLBE 16 |
| 149 | #define CP0MVPC0_TCA 15 |
| 150 | #define CP0MVPC0_PVPE 10 |
| 151 | #define CP0MVPC0_PTC 0 |
| 152 | int32_t CP0_MVPConf1; |
| 153 | #define CP0MVPC1_CIM 31 |
| 154 | #define CP0MVPC1_CIF 30 |
| 155 | #define CP0MVPC1_PCX 20 |
| 156 | #define CP0MVPC1_PCP2 10 |
| 157 | #define CP0MVPC1_PCP1 0 |
| 158 | }; |
| 159 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 160 | typedef struct mips_def_t mips_def_t; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 161 | |
| 162 | #define MIPS_SHADOW_SET_MAX 16 |
| 163 | #define MIPS_TC_MAX 5 |
ths | f01be15 | 2008-09-18 11:57:27 +0000 | [diff] [blame] | 164 | #define MIPS_FPU_MAX 1 |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 165 | #define MIPS_DSP_ACC 4 |
Leon Alrae | e98c0d1 | 2014-07-07 11:23:55 +0100 | [diff] [blame] | 166 | #define MIPS_KSCRATCH_NUM 6 |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 167 | |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 168 | typedef struct TCState TCState; |
| 169 | struct TCState { |
| 170 | target_ulong gpr[32]; |
| 171 | target_ulong PC; |
| 172 | target_ulong HI[MIPS_DSP_ACC]; |
| 173 | target_ulong LO[MIPS_DSP_ACC]; |
| 174 | target_ulong ACX[MIPS_DSP_ACC]; |
| 175 | target_ulong DSPControl; |
| 176 | int32_t CP0_TCStatus; |
| 177 | #define CP0TCSt_TCU3 31 |
| 178 | #define CP0TCSt_TCU2 30 |
| 179 | #define CP0TCSt_TCU1 29 |
| 180 | #define CP0TCSt_TCU0 28 |
| 181 | #define CP0TCSt_TMX 27 |
| 182 | #define CP0TCSt_RNST 23 |
| 183 | #define CP0TCSt_TDS 21 |
| 184 | #define CP0TCSt_DT 20 |
| 185 | #define CP0TCSt_DA 15 |
| 186 | #define CP0TCSt_A 13 |
| 187 | #define CP0TCSt_TKSU 11 |
| 188 | #define CP0TCSt_IXMT 10 |
| 189 | #define CP0TCSt_TASID 0 |
| 190 | int32_t CP0_TCBind; |
| 191 | #define CP0TCBd_CurTC 21 |
| 192 | #define CP0TCBd_TBE 17 |
| 193 | #define CP0TCBd_CurVPE 0 |
| 194 | target_ulong CP0_TCHalt; |
| 195 | target_ulong CP0_TCContext; |
| 196 | target_ulong CP0_TCSchedule; |
| 197 | target_ulong CP0_TCScheFBack; |
| 198 | int32_t CP0_Debug_tcstatus; |
Petar Jovanovic | d279279 | 2014-06-18 17:48:20 +0200 | [diff] [blame] | 199 | target_ulong CP0_UserLocal; |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 200 | |
| 201 | int32_t msacsr; |
| 202 | |
| 203 | #define MSACSR_FS 24 |
| 204 | #define MSACSR_FS_MASK (1 << MSACSR_FS) |
| 205 | #define MSACSR_NX 18 |
| 206 | #define MSACSR_NX_MASK (1 << MSACSR_NX) |
| 207 | #define MSACSR_CEF 2 |
| 208 | #define MSACSR_CEF_MASK (0xffff << MSACSR_CEF) |
| 209 | #define MSACSR_RM 0 |
| 210 | #define MSACSR_RM_MASK (0x3 << MSACSR_RM) |
| 211 | #define MSACSR_MASK (MSACSR_RM_MASK | MSACSR_CEF_MASK | MSACSR_NX_MASK | \ |
| 212 | MSACSR_FS_MASK) |
| 213 | |
| 214 | float_status msa_fp_status; |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 215 | }; |
| 216 | |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 217 | typedef struct CPUMIPSState CPUMIPSState; |
| 218 | struct CPUMIPSState { |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 219 | TCState active_tc; |
ths | f01be15 | 2008-09-18 11:57:27 +0000 | [diff] [blame] | 220 | CPUMIPSFPUContext active_fpu; |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 221 | |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 222 | uint32_t current_tc; |
ths | f01be15 | 2008-09-18 11:57:27 +0000 | [diff] [blame] | 223 | uint32_t current_fpu; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 224 | |
ths | e034e2c | 2007-06-23 18:04:12 +0000 | [diff] [blame] | 225 | uint32_t SEGBITS; |
ths | 6d35524 | 2007-12-25 03:13:56 +0000 | [diff] [blame] | 226 | uint32_t PABITS; |
ths | b6d96be | 2008-07-09 11:05:10 +0000 | [diff] [blame] | 227 | target_ulong SEGMask; |
ths | 6d35524 | 2007-12-25 03:13:56 +0000 | [diff] [blame] | 228 | target_ulong PAMask; |
ths | 29929e3 | 2007-05-13 13:49:44 +0000 | [diff] [blame] | 229 | |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 230 | int32_t msair; |
| 231 | #define MSAIR_ProcID 8 |
| 232 | #define MSAIR_Rev 0 |
| 233 | |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 234 | int32_t CP0_Index; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 235 | /* CP0_MVP* are per MVP registers. */ |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 236 | int32_t CP0_Random; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 237 | int32_t CP0_VPEControl; |
| 238 | #define CP0VPECo_YSI 21 |
| 239 | #define CP0VPECo_GSI 20 |
| 240 | #define CP0VPECo_EXCPT 16 |
| 241 | #define CP0VPECo_TE 15 |
| 242 | #define CP0VPECo_TargTC 0 |
| 243 | int32_t CP0_VPEConf0; |
| 244 | #define CP0VPEC0_M 31 |
| 245 | #define CP0VPEC0_XTC 21 |
| 246 | #define CP0VPEC0_TCS 19 |
| 247 | #define CP0VPEC0_SCS 18 |
| 248 | #define CP0VPEC0_DSC 17 |
| 249 | #define CP0VPEC0_ICS 16 |
| 250 | #define CP0VPEC0_MVP 1 |
| 251 | #define CP0VPEC0_VPA 0 |
| 252 | int32_t CP0_VPEConf1; |
| 253 | #define CP0VPEC1_NCX 20 |
| 254 | #define CP0VPEC1_NCP2 10 |
| 255 | #define CP0VPEC1_NCP1 0 |
| 256 | target_ulong CP0_YQMask; |
| 257 | target_ulong CP0_VPESchedule; |
| 258 | target_ulong CP0_VPEScheFBack; |
| 259 | int32_t CP0_VPEOpt; |
| 260 | #define CP0VPEOpt_IWX7 15 |
| 261 | #define CP0VPEOpt_IWX6 14 |
| 262 | #define CP0VPEOpt_IWX5 13 |
| 263 | #define CP0VPEOpt_IWX4 12 |
| 264 | #define CP0VPEOpt_IWX3 11 |
| 265 | #define CP0VPEOpt_IWX2 10 |
| 266 | #define CP0VPEOpt_IWX1 9 |
| 267 | #define CP0VPEOpt_IWX0 8 |
| 268 | #define CP0VPEOpt_DWX7 7 |
| 269 | #define CP0VPEOpt_DWX6 6 |
| 270 | #define CP0VPEOpt_DWX5 5 |
| 271 | #define CP0VPEOpt_DWX4 4 |
| 272 | #define CP0VPEOpt_DWX3 3 |
| 273 | #define CP0VPEOpt_DWX2 2 |
| 274 | #define CP0VPEOpt_DWX1 1 |
| 275 | #define CP0VPEOpt_DWX0 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 276 | target_ulong CP0_EntryLo0; |
| 277 | target_ulong CP0_EntryLo1; |
Leon Alrae | 2fb58b7 | 2014-07-07 11:23:58 +0100 | [diff] [blame] | 278 | #if defined(TARGET_MIPS64) |
| 279 | # define CP0EnLo_RI 63 |
| 280 | # define CP0EnLo_XI 62 |
| 281 | #else |
| 282 | # define CP0EnLo_RI 31 |
| 283 | # define CP0EnLo_XI 30 |
| 284 | #endif |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 285 | target_ulong CP0_Context; |
Leon Alrae | e98c0d1 | 2014-07-07 11:23:55 +0100 | [diff] [blame] | 286 | target_ulong CP0_KScratch[MIPS_KSCRATCH_NUM]; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 287 | int32_t CP0_PageMask; |
Leon Alrae | 7207c7f | 2014-07-07 11:23:59 +0100 | [diff] [blame] | 288 | int32_t CP0_PageGrain_rw_bitmask; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 289 | int32_t CP0_PageGrain; |
Leon Alrae | 7207c7f | 2014-07-07 11:23:59 +0100 | [diff] [blame] | 290 | #define CP0PG_RIE 31 |
| 291 | #define CP0PG_XIE 30 |
Leon Alrae | 92ceb44 | 2014-07-07 11:23:59 +0100 | [diff] [blame] | 292 | #define CP0PG_IEC 27 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 293 | int32_t CP0_Wired; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 294 | int32_t CP0_SRSConf0_rw_bitmask; |
| 295 | int32_t CP0_SRSConf0; |
| 296 | #define CP0SRSC0_M 31 |
| 297 | #define CP0SRSC0_SRS3 20 |
| 298 | #define CP0SRSC0_SRS2 10 |
| 299 | #define CP0SRSC0_SRS1 0 |
| 300 | int32_t CP0_SRSConf1_rw_bitmask; |
| 301 | int32_t CP0_SRSConf1; |
| 302 | #define CP0SRSC1_M 31 |
| 303 | #define CP0SRSC1_SRS6 20 |
| 304 | #define CP0SRSC1_SRS5 10 |
| 305 | #define CP0SRSC1_SRS4 0 |
| 306 | int32_t CP0_SRSConf2_rw_bitmask; |
| 307 | int32_t CP0_SRSConf2; |
| 308 | #define CP0SRSC2_M 31 |
| 309 | #define CP0SRSC2_SRS9 20 |
| 310 | #define CP0SRSC2_SRS8 10 |
| 311 | #define CP0SRSC2_SRS7 0 |
| 312 | int32_t CP0_SRSConf3_rw_bitmask; |
| 313 | int32_t CP0_SRSConf3; |
| 314 | #define CP0SRSC3_M 31 |
| 315 | #define CP0SRSC3_SRS12 20 |
| 316 | #define CP0SRSC3_SRS11 10 |
| 317 | #define CP0SRSC3_SRS10 0 |
| 318 | int32_t CP0_SRSConf4_rw_bitmask; |
| 319 | int32_t CP0_SRSConf4; |
| 320 | #define CP0SRSC4_SRS15 20 |
| 321 | #define CP0SRSC4_SRS14 10 |
| 322 | #define CP0SRSC4_SRS13 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 323 | int32_t CP0_HWREna; |
ths | c570fd1 | 2006-12-21 01:19:56 +0000 | [diff] [blame] | 324 | target_ulong CP0_BadVAddr; |
Leon Alrae | aea1409 | 2014-07-07 11:24:01 +0100 | [diff] [blame] | 325 | uint32_t CP0_BadInstr; |
| 326 | uint32_t CP0_BadInstrP; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 327 | int32_t CP0_Count; |
| 328 | target_ulong CP0_EntryHi; |
Leon Alrae | 9456c2f | 2014-07-07 11:24:00 +0100 | [diff] [blame] | 329 | #define CP0EnHi_EHINV 10 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 330 | int32_t CP0_Compare; |
| 331 | int32_t CP0_Status; |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 332 | #define CP0St_CU3 31 |
| 333 | #define CP0St_CU2 30 |
| 334 | #define CP0St_CU1 29 |
| 335 | #define CP0St_CU0 28 |
| 336 | #define CP0St_RP 27 |
bellard | 6ea83fe | 2006-06-14 12:56:19 +0000 | [diff] [blame] | 337 | #define CP0St_FR 26 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 338 | #define CP0St_RE 25 |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 339 | #define CP0St_MX 24 |
| 340 | #define CP0St_PX 23 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 341 | #define CP0St_BEV 22 |
| 342 | #define CP0St_TS 21 |
| 343 | #define CP0St_SR 20 |
| 344 | #define CP0St_NMI 19 |
| 345 | #define CP0St_IM 8 |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 346 | #define CP0St_KX 7 |
| 347 | #define CP0St_SX 6 |
| 348 | #define CP0St_UX 5 |
ths | 623a930 | 2007-10-28 19:45:05 +0000 | [diff] [blame] | 349 | #define CP0St_KSU 3 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 350 | #define CP0St_ERL 2 |
| 351 | #define CP0St_EXL 1 |
| 352 | #define CP0St_IE 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 353 | int32_t CP0_IntCtl; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 354 | #define CP0IntCtl_IPTI 29 |
| 355 | #define CP0IntCtl_IPPC1 26 |
| 356 | #define CP0IntCtl_VS 5 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 357 | int32_t CP0_SRSCtl; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 358 | #define CP0SRSCtl_HSS 26 |
| 359 | #define CP0SRSCtl_EICSS 18 |
| 360 | #define CP0SRSCtl_ESS 12 |
| 361 | #define CP0SRSCtl_PSS 6 |
| 362 | #define CP0SRSCtl_CSS 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 363 | int32_t CP0_SRSMap; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 364 | #define CP0SRSMap_SSV7 28 |
| 365 | #define CP0SRSMap_SSV6 24 |
| 366 | #define CP0SRSMap_SSV5 20 |
| 367 | #define CP0SRSMap_SSV4 16 |
| 368 | #define CP0SRSMap_SSV3 12 |
| 369 | #define CP0SRSMap_SSV2 8 |
| 370 | #define CP0SRSMap_SSV1 4 |
| 371 | #define CP0SRSMap_SSV0 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 372 | int32_t CP0_Cause; |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 373 | #define CP0Ca_BD 31 |
| 374 | #define CP0Ca_TI 30 |
| 375 | #define CP0Ca_CE 28 |
| 376 | #define CP0Ca_DC 27 |
| 377 | #define CP0Ca_PCI 26 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 378 | #define CP0Ca_IV 23 |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 379 | #define CP0Ca_WP 22 |
| 380 | #define CP0Ca_IP 8 |
ths | 4de9b24 | 2007-01-24 01:47:51 +0000 | [diff] [blame] | 381 | #define CP0Ca_IP_mask 0x0000FF00 |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 382 | #define CP0Ca_EC 2 |
ths | c570fd1 | 2006-12-21 01:19:56 +0000 | [diff] [blame] | 383 | target_ulong CP0_EPC; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 384 | int32_t CP0_PRid; |
ths | b29a034 | 2007-01-24 18:01:23 +0000 | [diff] [blame] | 385 | int32_t CP0_EBase; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 386 | int32_t CP0_Config0; |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 387 | #define CP0C0_M 31 |
| 388 | #define CP0C0_K23 28 |
| 389 | #define CP0C0_KU 25 |
| 390 | #define CP0C0_MDU 20 |
| 391 | #define CP0C0_MM 17 |
| 392 | #define CP0C0_BM 16 |
| 393 | #define CP0C0_BE 15 |
| 394 | #define CP0C0_AT 13 |
| 395 | #define CP0C0_AR 10 |
| 396 | #define CP0C0_MT 7 |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 397 | #define CP0C0_VI 3 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 398 | #define CP0C0_K0 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 399 | int32_t CP0_Config1; |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 400 | #define CP0C1_M 31 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 401 | #define CP0C1_MMU 25 |
| 402 | #define CP0C1_IS 22 |
| 403 | #define CP0C1_IL 19 |
| 404 | #define CP0C1_IA 16 |
| 405 | #define CP0C1_DS 13 |
| 406 | #define CP0C1_DL 10 |
| 407 | #define CP0C1_DA 7 |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 408 | #define CP0C1_C2 6 |
| 409 | #define CP0C1_MD 5 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 410 | #define CP0C1_PC 4 |
| 411 | #define CP0C1_WR 3 |
| 412 | #define CP0C1_CA 2 |
| 413 | #define CP0C1_EP 1 |
| 414 | #define CP0C1_FP 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 415 | int32_t CP0_Config2; |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 416 | #define CP0C2_M 31 |
| 417 | #define CP0C2_TU 28 |
| 418 | #define CP0C2_TS 24 |
| 419 | #define CP0C2_TL 20 |
| 420 | #define CP0C2_TA 16 |
| 421 | #define CP0C2_SU 12 |
| 422 | #define CP0C2_SS 8 |
| 423 | #define CP0C2_SL 4 |
| 424 | #define CP0C2_SA 0 |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 425 | int32_t CP0_Config3; |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 426 | #define CP0C3_M 31 |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 427 | #define CP0C3_MSAP 28 |
Leon Alrae | aea1409 | 2014-07-07 11:24:01 +0100 | [diff] [blame] | 428 | #define CP0C3_BP 27 |
| 429 | #define CP0C3_BI 26 |
Nathan Froyd | bbfa8f7 | 2010-06-08 13:30:01 -0700 | [diff] [blame] | 430 | #define CP0C3_ISA_ON_EXC 16 |
Petar Jovanovic | d279279 | 2014-06-18 17:48:20 +0200 | [diff] [blame] | 431 | #define CP0C3_ULRI 13 |
Leon Alrae | 7207c7f | 2014-07-07 11:23:59 +0100 | [diff] [blame] | 432 | #define CP0C3_RXI 12 |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 433 | #define CP0C3_DSPP 10 |
| 434 | #define CP0C3_LPA 7 |
| 435 | #define CP0C3_VEIC 6 |
| 436 | #define CP0C3_VInt 5 |
| 437 | #define CP0C3_SP 4 |
| 438 | #define CP0C3_MT 2 |
| 439 | #define CP0C3_SM 1 |
| 440 | #define CP0C3_TL 0 |
Petar Jovanovic | b4160af | 2014-01-24 13:45:05 +0100 | [diff] [blame] | 441 | uint32_t CP0_Config4; |
| 442 | uint32_t CP0_Config4_rw_bitmask; |
| 443 | #define CP0C4_M 31 |
Leon Alrae | 9456c2f | 2014-07-07 11:24:00 +0100 | [diff] [blame] | 444 | #define CP0C4_IE 29 |
Leon Alrae | e98c0d1 | 2014-07-07 11:23:55 +0100 | [diff] [blame] | 445 | #define CP0C4_KScrExist 16 |
Petar Jovanovic | b4dd99a | 2014-01-17 19:25:57 +0100 | [diff] [blame] | 446 | uint32_t CP0_Config5; |
| 447 | uint32_t CP0_Config5_rw_bitmask; |
| 448 | #define CP0C5_M 31 |
| 449 | #define CP0C5_K 30 |
| 450 | #define CP0C5_CV 29 |
| 451 | #define CP0C5_EVA 28 |
| 452 | #define CP0C5_MSAEn 27 |
Leon Alrae | faf1f68 | 2014-07-11 16:11:33 +0100 | [diff] [blame] | 453 | #define CP0C5_SBRI 6 |
Petar Jovanovic | b4dd99a | 2014-01-17 19:25:57 +0100 | [diff] [blame] | 454 | #define CP0C5_UFR 2 |
| 455 | #define CP0C5_NFExists 0 |
ths | e397ee3 | 2007-03-23 00:43:28 +0000 | [diff] [blame] | 456 | int32_t CP0_Config6; |
| 457 | int32_t CP0_Config7; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 458 | /* XXX: Maybe make LLAddr per-TC? */ |
Aurelien Jarno | 5499b6f | 2009-11-22 13:08:14 +0100 | [diff] [blame] | 459 | target_ulong lladdr; |
Paul Brook | 590bc60 | 2009-07-09 17:45:17 +0100 | [diff] [blame] | 460 | target_ulong llval; |
| 461 | target_ulong llnewval; |
| 462 | target_ulong llreg; |
Aurelien Jarno | 2a6e32d | 2009-11-22 13:22:54 +0100 | [diff] [blame] | 463 | target_ulong CP0_LLAddr_rw_bitmask; |
| 464 | int CP0_LLAddr_shift; |
ths | fd88b6a | 2007-05-23 08:24:25 +0000 | [diff] [blame] | 465 | target_ulong CP0_WatchLo[8]; |
| 466 | int32_t CP0_WatchHi[8]; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 467 | target_ulong CP0_XContext; |
| 468 | int32_t CP0_Framemask; |
| 469 | int32_t CP0_Debug; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 470 | #define CP0DB_DBD 31 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 471 | #define CP0DB_DM 30 |
| 472 | #define CP0DB_LSNM 28 |
| 473 | #define CP0DB_Doze 27 |
| 474 | #define CP0DB_Halt 26 |
| 475 | #define CP0DB_CNT 25 |
| 476 | #define CP0DB_IBEP 24 |
| 477 | #define CP0DB_DBEP 21 |
| 478 | #define CP0DB_IEXI 20 |
| 479 | #define CP0DB_VER 15 |
| 480 | #define CP0DB_DEC 10 |
| 481 | #define CP0DB_SSt 8 |
| 482 | #define CP0DB_DINT 5 |
| 483 | #define CP0DB_DIB 4 |
| 484 | #define CP0DB_DDBS 3 |
| 485 | #define CP0DB_DDBL 2 |
| 486 | #define CP0DB_DBp 1 |
| 487 | #define CP0DB_DSS 0 |
ths | c570fd1 | 2006-12-21 01:19:56 +0000 | [diff] [blame] | 488 | target_ulong CP0_DEPC; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 489 | int32_t CP0_Performance0; |
| 490 | int32_t CP0_TagLo; |
| 491 | int32_t CP0_DataLo; |
| 492 | int32_t CP0_TagHi; |
| 493 | int32_t CP0_DataHi; |
ths | c570fd1 | 2006-12-21 01:19:56 +0000 | [diff] [blame] | 494 | target_ulong CP0_ErrorEPC; |
ths | 9c2149c | 2007-01-23 22:45:22 +0000 | [diff] [blame] | 495 | int32_t CP0_DESAVE; |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 496 | /* We waste some space so we can handle shadow registers like TCs. */ |
| 497 | TCState tcs[MIPS_SHADOW_SET_MAX]; |
ths | f01be15 | 2008-09-18 11:57:27 +0000 | [diff] [blame] | 498 | CPUMIPSFPUContext fpus[MIPS_FPU_MAX]; |
Stefan Weil | 5cbdb3a | 2012-04-07 09:23:39 +0200 | [diff] [blame] | 499 | /* QEMU */ |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 500 | int error_code; |
Leon Alrae | aea1409 | 2014-07-07 11:24:01 +0100 | [diff] [blame] | 501 | #define EXCP_TLB_NOMATCH 0x1 |
| 502 | #define EXCP_INST_NOTAVAIL 0x2 /* No valid instruction word for BadInstr */ |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 503 | uint32_t hflags; /* CPU State */ |
| 504 | /* TMASK defines different execution modes */ |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 505 | #define MIPS_HFLAG_TMASK 0x15807FF |
Nathan Froyd | 79ef2c4 | 2009-12-08 08:06:22 -0800 | [diff] [blame] | 506 | #define MIPS_HFLAG_MODE 0x00007 /* execution modes */ |
ths | 623a930 | 2007-10-28 19:45:05 +0000 | [diff] [blame] | 507 | /* The KSU flags must be the lowest bits in hflags. The flag order |
| 508 | must be the same as defined for CP0 Status. This allows to use |
| 509 | the bits as the value of mmu_idx. */ |
Nathan Froyd | 79ef2c4 | 2009-12-08 08:06:22 -0800 | [diff] [blame] | 510 | #define MIPS_HFLAG_KSU 0x00003 /* kernel/supervisor/user mode mask */ |
| 511 | #define MIPS_HFLAG_UM 0x00002 /* user mode flag */ |
| 512 | #define MIPS_HFLAG_SM 0x00001 /* supervisor mode flag */ |
| 513 | #define MIPS_HFLAG_KM 0x00000 /* kernel mode flag */ |
| 514 | #define MIPS_HFLAG_DM 0x00004 /* Debug mode */ |
| 515 | #define MIPS_HFLAG_64 0x00008 /* 64-bit instructions enabled */ |
| 516 | #define MIPS_HFLAG_CP0 0x00010 /* CP0 enabled */ |
| 517 | #define MIPS_HFLAG_FPU 0x00020 /* FPU enabled */ |
| 518 | #define MIPS_HFLAG_F64 0x00040 /* 64-bit FPU enabled */ |
ths | b8aa459 | 2007-12-30 15:36:58 +0000 | [diff] [blame] | 519 | /* True if the MIPS IV COP1X instructions can be used. This also |
| 520 | controls the non-COP1X instructions RECIP.S, RECIP.D, RSQRT.S |
| 521 | and RSQRT.D. */ |
Nathan Froyd | 79ef2c4 | 2009-12-08 08:06:22 -0800 | [diff] [blame] | 522 | #define MIPS_HFLAG_COP1X 0x00080 /* COP1X instructions enabled */ |
| 523 | #define MIPS_HFLAG_RE 0x00100 /* Reversed endianness */ |
Leon Alrae | 01f7288 | 2014-06-27 08:49:04 +0100 | [diff] [blame] | 524 | #define MIPS_HFLAG_AWRAP 0x00200 /* 32-bit compatibility address wrapping */ |
Nathan Froyd | 79ef2c4 | 2009-12-08 08:06:22 -0800 | [diff] [blame] | 525 | #define MIPS_HFLAG_M16 0x00400 /* MIPS16 mode flag */ |
| 526 | #define MIPS_HFLAG_M16_SHIFT 10 |
bellard | 4ad40f3 | 2005-12-05 19:59:36 +0000 | [diff] [blame] | 527 | /* If translation is interrupted between the branch instruction and |
| 528 | * the delay slot, record what type of branch it is so that we can |
| 529 | * resume translation properly. It might be possible to reduce |
| 530 | * this from three bits to two. */ |
Leon Alrae | 339cd2a | 2014-07-11 16:11:33 +0100 | [diff] [blame] | 531 | #define MIPS_HFLAG_BMASK_BASE 0x803800 |
Nathan Froyd | 79ef2c4 | 2009-12-08 08:06:22 -0800 | [diff] [blame] | 532 | #define MIPS_HFLAG_B 0x00800 /* Unconditional branch */ |
| 533 | #define MIPS_HFLAG_BC 0x01000 /* Conditional branch */ |
| 534 | #define MIPS_HFLAG_BL 0x01800 /* Likely branch */ |
| 535 | #define MIPS_HFLAG_BR 0x02000 /* branch to register (can't link TB) */ |
| 536 | /* Extra flags about the current pending branch. */ |
Yongbok Kim | b231c10 | 2014-07-01 17:43:05 +0100 | [diff] [blame] | 537 | #define MIPS_HFLAG_BMASK_EXT 0x7C000 |
Nathan Froyd | 79ef2c4 | 2009-12-08 08:06:22 -0800 | [diff] [blame] | 538 | #define MIPS_HFLAG_B16 0x04000 /* branch instruction was 16 bits */ |
| 539 | #define MIPS_HFLAG_BDS16 0x08000 /* branch requires 16-bit delay slot */ |
| 540 | #define MIPS_HFLAG_BDS32 0x10000 /* branch requires 32-bit delay slot */ |
Yongbok Kim | b231c10 | 2014-07-01 17:43:05 +0100 | [diff] [blame] | 541 | #define MIPS_HFLAG_BDS_STRICT 0x20000 /* Strict delay slot size */ |
| 542 | #define MIPS_HFLAG_BX 0x40000 /* branch exchanges execution mode */ |
Nathan Froyd | 79ef2c4 | 2009-12-08 08:06:22 -0800 | [diff] [blame] | 543 | #define MIPS_HFLAG_BMASK (MIPS_HFLAG_BMASK_BASE | MIPS_HFLAG_BMASK_EXT) |
Jia Liu | 853c324 | 2012-10-24 22:17:02 +0800 | [diff] [blame] | 544 | /* MIPS DSP resources access. */ |
Yongbok Kim | b231c10 | 2014-07-01 17:43:05 +0100 | [diff] [blame] | 545 | #define MIPS_HFLAG_DSP 0x080000 /* Enable access to MIPS DSP resources. */ |
| 546 | #define MIPS_HFLAG_DSPR2 0x100000 /* Enable access to MIPS DSPR2 resources. */ |
Petar Jovanovic | d279279 | 2014-06-18 17:48:20 +0200 | [diff] [blame] | 547 | /* Extra flag about HWREna register. */ |
Yongbok Kim | b231c10 | 2014-07-01 17:43:05 +0100 | [diff] [blame] | 548 | #define MIPS_HFLAG_HWRENA_ULR 0x200000 /* ULR bit from HWREna is set. */ |
Leon Alrae | faf1f68 | 2014-07-11 16:11:33 +0100 | [diff] [blame] | 549 | #define MIPS_HFLAG_SBRI 0x400000 /* R6 SDBBP causes RI excpt. in user mode */ |
Leon Alrae | 339cd2a | 2014-07-11 16:11:33 +0100 | [diff] [blame] | 550 | #define MIPS_HFLAG_FBNSLOT 0x800000 /* Forbidden slot */ |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 551 | #define MIPS_HFLAG_MSA 0x1000000 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 552 | target_ulong btarget; /* Jump / branch target */ |
aurel32 | 1ba74fb | 2009-03-29 01:18:52 +0000 | [diff] [blame] | 553 | target_ulong bcond; /* Branch condition (if needed) */ |
bellard | a316d33 | 2005-11-20 10:32:34 +0000 | [diff] [blame] | 554 | |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 555 | int SYNCI_Step; /* Address step size for SYNCI */ |
| 556 | int CCRes; /* Cycle count resolution/divisor */ |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 557 | uint32_t CP0_Status_rw_bitmask; /* Read/write bits in CP0_Status */ |
| 558 | uint32_t CP0_TCStatus_rw_bitmask; /* Read/write bits in CP0_TCStatus */ |
ths | e189e74 | 2007-09-24 12:48:00 +0000 | [diff] [blame] | 559 | int insn_flags; /* Supported instruction set */ |
ths | 7a387ff | 2006-12-06 20:17:30 +0000 | [diff] [blame] | 560 | |
bellard | a316d33 | 2005-11-20 10:32:34 +0000 | [diff] [blame] | 561 | CPU_COMMON |
ths | 6ae8177 | 2006-12-06 17:48:52 +0000 | [diff] [blame] | 562 | |
Andreas Färber | f0c3c50 | 2013-08-26 21:22:53 +0200 | [diff] [blame] | 563 | /* Fields from here on are preserved across CPU reset. */ |
Blue Swirl | 51cc2e7 | 2009-11-08 12:50:21 +0200 | [diff] [blame] | 564 | CPUMIPSMVPContext *mvp; |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 565 | #if !defined(CONFIG_USER_ONLY) |
Blue Swirl | 51cc2e7 | 2009-11-08 12:50:21 +0200 | [diff] [blame] | 566 | CPUMIPSTLBContext *tlb; |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 567 | #endif |
Blue Swirl | 51cc2e7 | 2009-11-08 12:50:21 +0200 | [diff] [blame] | 568 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 569 | const mips_def_t *cpu_model; |
ths | 33ac7f1 | 2007-05-31 16:18:58 +0000 | [diff] [blame] | 570 | void *irq[8]; |
Stefan Weil | 1246b25 | 2013-12-01 08:49:47 +0100 | [diff] [blame] | 571 | QEMUTimer *timer; /* Internal timer */ |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 572 | }; |
| 573 | |
Andreas Färber | 0f71a70 | 2012-04-15 23:29:19 +0200 | [diff] [blame] | 574 | #include "cpu-qom.h" |
| 575 | |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 576 | #if !defined(CONFIG_USER_ONLY) |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 577 | int no_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, |
ths | 29929e3 | 2007-05-13 13:49:44 +0000 | [diff] [blame] | 578 | target_ulong address, int rw, int access_type); |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 579 | int fixed_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, |
ths | 29929e3 | 2007-05-13 13:49:44 +0000 | [diff] [blame] | 580 | target_ulong address, int rw, int access_type); |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 581 | int r4k_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, |
ths | 29929e3 | 2007-05-13 13:49:44 +0000 | [diff] [blame] | 582 | target_ulong address, int rw, int access_type); |
Blue Swirl | 895c2d0 | 2012-09-02 14:52:59 +0000 | [diff] [blame] | 583 | void r4k_helper_tlbwi(CPUMIPSState *env); |
| 584 | void r4k_helper_tlbwr(CPUMIPSState *env); |
| 585 | void r4k_helper_tlbp(CPUMIPSState *env); |
| 586 | void r4k_helper_tlbr(CPUMIPSState *env); |
Leon Alrae | 9456c2f | 2014-07-07 11:24:00 +0100 | [diff] [blame] | 587 | void r4k_helper_tlbinv(CPUMIPSState *env); |
| 588 | void r4k_helper_tlbinvf(CPUMIPSState *env); |
ths | 33d68b5 | 2007-03-18 00:30:29 +0000 | [diff] [blame] | 589 | |
Andreas Färber | c658b94 | 2013-05-27 06:49:53 +0200 | [diff] [blame] | 590 | void mips_cpu_unassigned_access(CPUState *cpu, hwaddr addr, |
| 591 | bool is_write, bool is_exec, int unused, |
| 592 | unsigned size); |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 593 | #endif |
| 594 | |
Stefan Weil | 9a78eea | 2010-10-22 23:03:33 +0200 | [diff] [blame] | 595 | void mips_cpu_list (FILE *f, fprintf_function cpu_fprintf); |
ths | 647de6c | 2007-10-20 19:45:44 +0000 | [diff] [blame] | 596 | |
ths | 9467d44 | 2007-06-03 21:02:38 +0000 | [diff] [blame] | 597 | #define cpu_exec cpu_mips_exec |
| 598 | #define cpu_gen_code cpu_mips_gen_code |
| 599 | #define cpu_signal_handler cpu_mips_signal_handler |
j_mayer | c732abe | 2007-10-12 06:47:46 +0000 | [diff] [blame] | 600 | #define cpu_list mips_cpu_list |
ths | 9467d44 | 2007-06-03 21:02:38 +0000 | [diff] [blame] | 601 | |
Richard Henderson | 084d049 | 2013-02-10 10:30:44 -0800 | [diff] [blame] | 602 | extern void cpu_wrdsp(uint32_t rs, uint32_t mask_num, CPUMIPSState *env); |
| 603 | extern uint32_t cpu_rddsp(uint32_t mask_num, CPUMIPSState *env); |
| 604 | |
Leon Alrae | 460c81f | 2014-07-07 11:24:02 +0100 | [diff] [blame] | 605 | #define CPU_SAVE_VERSION 5 |
pbrook | b3c7724 | 2008-06-30 16:31:04 +0000 | [diff] [blame] | 606 | |
ths | 623a930 | 2007-10-28 19:45:05 +0000 | [diff] [blame] | 607 | /* MMU modes definitions. We carefully match the indices with our |
| 608 | hflags layout. */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 609 | #define MMU_MODE0_SUFFIX _kernel |
ths | 623a930 | 2007-10-28 19:45:05 +0000 | [diff] [blame] | 610 | #define MMU_MODE1_SUFFIX _super |
| 611 | #define MMU_MODE2_SUFFIX _user |
| 612 | #define MMU_USER_IDX 2 |
Andreas Färber | 7db13fa | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 613 | static inline int cpu_mmu_index (CPUMIPSState *env) |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 614 | { |
ths | 623a930 | 2007-10-28 19:45:05 +0000 | [diff] [blame] | 615 | return env->hflags & MIPS_HFLAG_KSU; |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 616 | } |
| 617 | |
Andreas Färber | 7db13fa | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 618 | static inline int cpu_mips_hw_interrupts_pending(CPUMIPSState *env) |
Edgar E. Iglesias | 138afb0 | 2010-08-06 12:21:16 +0200 | [diff] [blame] | 619 | { |
| 620 | int32_t pending; |
| 621 | int32_t status; |
| 622 | int r; |
| 623 | |
Aurelien Jarno | 4cdc1cd | 2010-12-25 22:56:32 +0100 | [diff] [blame] | 624 | if (!(env->CP0_Status & (1 << CP0St_IE)) || |
| 625 | (env->CP0_Status & (1 << CP0St_EXL)) || |
| 626 | (env->CP0_Status & (1 << CP0St_ERL)) || |
Edgar E. Iglesias | 344eecf | 2011-08-30 00:44:28 +0200 | [diff] [blame] | 627 | /* Note that the TCStatus IXMT field is initialized to zero, |
| 628 | and only MT capable cores can set it to one. So we don't |
| 629 | need to check for MT capabilities here. */ |
| 630 | (env->active_tc.CP0_TCStatus & (1 << CP0TCSt_IXMT)) || |
Aurelien Jarno | 4cdc1cd | 2010-12-25 22:56:32 +0100 | [diff] [blame] | 631 | (env->hflags & MIPS_HFLAG_DM)) { |
| 632 | /* Interrupts are disabled */ |
| 633 | return 0; |
| 634 | } |
| 635 | |
Edgar E. Iglesias | 138afb0 | 2010-08-06 12:21:16 +0200 | [diff] [blame] | 636 | pending = env->CP0_Cause & CP0Ca_IP_mask; |
| 637 | status = env->CP0_Status & CP0Ca_IP_mask; |
| 638 | |
| 639 | if (env->CP0_Config3 & (1 << CP0C3_VEIC)) { |
| 640 | /* A MIPS configured with a vectorizing external interrupt controller |
| 641 | will feed a vector into the Cause pending lines. The core treats |
| 642 | the status lines as a vector level, not as indiviual masks. */ |
| 643 | r = pending > status; |
| 644 | } else { |
| 645 | /* A MIPS configured with compatibility or VInt (Vectored Interrupts) |
| 646 | treats the pending lines as individual interrupt lines, the status |
| 647 | lines are individual masks. */ |
| 648 | r = pending & status; |
| 649 | } |
| 650 | return r; |
| 651 | } |
| 652 | |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 653 | #include "exec/cpu-all.h" |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 654 | |
| 655 | /* Memory access type : |
| 656 | * may be needed for precise access rights control and precise exceptions. |
| 657 | */ |
| 658 | enum { |
| 659 | /* 1 bit to define user level / supervisor access */ |
| 660 | ACCESS_USER = 0x00, |
| 661 | ACCESS_SUPER = 0x01, |
| 662 | /* 1 bit to indicate direction */ |
| 663 | ACCESS_STORE = 0x02, |
| 664 | /* Type of instruction that generated the access */ |
| 665 | ACCESS_CODE = 0x10, /* Code fetch access */ |
| 666 | ACCESS_INT = 0x20, /* Integer load/store access */ |
| 667 | ACCESS_FLOAT = 0x30, /* floating point load/store access */ |
| 668 | }; |
| 669 | |
| 670 | /* Exceptions */ |
| 671 | enum { |
| 672 | EXCP_NONE = -1, |
| 673 | EXCP_RESET = 0, |
| 674 | EXCP_SRESET, |
| 675 | EXCP_DSS, |
| 676 | EXCP_DINT, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 677 | EXCP_DDBL, |
| 678 | EXCP_DDBS, |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 679 | EXCP_NMI, |
| 680 | EXCP_MCHECK, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 681 | EXCP_EXT_INTERRUPT, /* 8 */ |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 682 | EXCP_DFWATCH, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 683 | EXCP_DIB, |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 684 | EXCP_IWATCH, |
| 685 | EXCP_AdEL, |
| 686 | EXCP_AdES, |
| 687 | EXCP_TLBF, |
| 688 | EXCP_IBE, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 689 | EXCP_DBp, /* 16 */ |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 690 | EXCP_SYSCALL, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 691 | EXCP_BREAK, |
bellard | 4ad40f3 | 2005-12-05 19:59:36 +0000 | [diff] [blame] | 692 | EXCP_CpU, |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 693 | EXCP_RI, |
| 694 | EXCP_OVERFLOW, |
| 695 | EXCP_TRAP, |
ths | 5a5012e | 2007-05-07 13:55:33 +0000 | [diff] [blame] | 696 | EXCP_FPE, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 697 | EXCP_DWATCH, /* 24 */ |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 698 | EXCP_LTLBL, |
| 699 | EXCP_TLBL, |
| 700 | EXCP_TLBS, |
| 701 | EXCP_DBE, |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 702 | EXCP_THREAD, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 703 | EXCP_MDMX, |
| 704 | EXCP_C2E, |
| 705 | EXCP_CACHE, /* 32 */ |
Jia Liu | 853c324 | 2012-10-24 22:17:02 +0800 | [diff] [blame] | 706 | EXCP_DSPDIS, |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 707 | EXCP_MSADIS, |
| 708 | EXCP_MSAFPE, |
Leon Alrae | 92ceb44 | 2014-07-07 11:23:59 +0100 | [diff] [blame] | 709 | EXCP_TLBXI, |
| 710 | EXCP_TLBRI, |
ths | 14e51cc | 2007-12-26 19:34:03 +0000 | [diff] [blame] | 711 | |
Leon Alrae | 92ceb44 | 2014-07-07 11:23:59 +0100 | [diff] [blame] | 712 | EXCP_LAST = EXCP_TLBRI, |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 713 | }; |
Paul Brook | 590bc60 | 2009-07-09 17:45:17 +0100 | [diff] [blame] | 714 | /* Dummy exception for conditional stores. */ |
| 715 | #define EXCP_SC 0x100 |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 716 | |
Edgar E. Iglesias | f249412 | 2011-08-29 23:07:40 +0200 | [diff] [blame] | 717 | /* |
| 718 | * This is an interrnally generated WAKE request line. |
| 719 | * It is driven by the CPU itself. Raised when the MT |
| 720 | * block wants to wake a VPE from an inactive state and |
| 721 | * cleared when VPE goes from active to inactive. |
| 722 | */ |
| 723 | #define CPU_INTERRUPT_WAKE CPU_INTERRUPT_TGT_INT_0 |
| 724 | |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 725 | int cpu_mips_exec(CPUMIPSState *s); |
Andreas Färber | 78ce64f | 2013-01-20 01:22:25 +0100 | [diff] [blame] | 726 | void mips_tcg_init(void); |
Andreas Färber | 30bf942 | 2012-05-05 13:33:04 +0200 | [diff] [blame] | 727 | MIPSCPU *cpu_mips_init(const char *cpu_model); |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 728 | int cpu_mips_signal_handler(int host_signum, void *pinfo, void *puc); |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 729 | |
Andreas Färber | 30bf942 | 2012-05-05 13:33:04 +0200 | [diff] [blame] | 730 | static inline CPUMIPSState *cpu_init(const char *cpu_model) |
| 731 | { |
| 732 | MIPSCPU *cpu = cpu_mips_init(cpu_model); |
| 733 | if (cpu == NULL) { |
| 734 | return NULL; |
| 735 | } |
| 736 | return &cpu->env; |
| 737 | } |
| 738 | |
Andreas Färber | b7e516c | 2012-05-05 15:43:31 +0200 | [diff] [blame] | 739 | /* TODO QOM'ify CPU reset and remove */ |
| 740 | void cpu_state_reset(CPUMIPSState *s); |
| 741 | |
ths | f9480ff | 2008-12-20 19:42:14 +0000 | [diff] [blame] | 742 | /* mips_timer.c */ |
Andreas Färber | 7db13fa | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 743 | uint32_t cpu_mips_get_random (CPUMIPSState *env); |
| 744 | uint32_t cpu_mips_get_count (CPUMIPSState *env); |
| 745 | void cpu_mips_store_count (CPUMIPSState *env, uint32_t value); |
| 746 | void cpu_mips_store_compare (CPUMIPSState *env, uint32_t value); |
| 747 | void cpu_mips_start_count(CPUMIPSState *env); |
| 748 | void cpu_mips_stop_count(CPUMIPSState *env); |
ths | f9480ff | 2008-12-20 19:42:14 +0000 | [diff] [blame] | 749 | |
Aurelien Jarno | 5dc5d9f | 2010-07-25 16:51:29 +0200 | [diff] [blame] | 750 | /* mips_int.c */ |
Andreas Färber | 7db13fa | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 751 | void cpu_mips_soft_irq(CPUMIPSState *env, int irq, int level); |
Aurelien Jarno | 5dc5d9f | 2010-07-25 16:51:29 +0200 | [diff] [blame] | 752 | |
ths | f9480ff | 2008-12-20 19:42:14 +0000 | [diff] [blame] | 753 | /* helper.c */ |
Andreas Färber | 7510454 | 2013-08-26 03:01:33 +0200 | [diff] [blame] | 754 | int mips_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int rw, |
| 755 | int mmu_idx); |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 756 | #if !defined(CONFIG_USER_ONLY) |
Andreas Färber | 7db13fa | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 757 | void r4k_invalidate_tlb (CPUMIPSState *env, int idx, int use_extra); |
Avi Kivity | a8170e5 | 2012-10-23 12:30:10 +0200 | [diff] [blame] | 758 | hwaddr cpu_mips_translate_address (CPUMIPSState *env, target_ulong address, |
Aurelien Jarno | c36bbb2 | 2010-02-06 17:02:45 +0100 | [diff] [blame] | 759 | int rw); |
Paul Brook | 3c7b48b | 2010-03-01 04:11:28 +0000 | [diff] [blame] | 760 | #endif |
Kwok Cheung Yeung | 1239b47 | 2013-05-17 14:51:21 -0700 | [diff] [blame] | 761 | target_ulong exception_resume_pc (CPUMIPSState *env); |
ths | f9480ff | 2008-12-20 19:42:14 +0000 | [diff] [blame] | 762 | |
Yongbok Kim | b7651e9 | 2014-11-01 05:28:37 +0000 | [diff] [blame] | 763 | /* op_helper.c */ |
| 764 | extern unsigned int ieee_rm[]; |
| 765 | int ieee_ex_to_mips(int xcpt); |
| 766 | |
Andreas Färber | 7db13fa | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 767 | static inline void cpu_get_tb_cpu_state(CPUMIPSState *env, target_ulong *pc, |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 768 | target_ulong *cs_base, int *flags) |
| 769 | { |
| 770 | *pc = env->active_tc.PC; |
| 771 | *cs_base = 0; |
Petar Jovanovic | d279279 | 2014-06-18 17:48:20 +0200 | [diff] [blame] | 772 | *flags = env->hflags & (MIPS_HFLAG_TMASK | MIPS_HFLAG_BMASK | |
| 773 | MIPS_HFLAG_HWRENA_ULR); |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 774 | } |
| 775 | |
Andreas Färber | 7db13fa | 2012-03-14 01:38:22 +0100 | [diff] [blame] | 776 | static inline int mips_vpe_active(CPUMIPSState *env) |
Edgar E. Iglesias | f249412 | 2011-08-29 23:07:40 +0200 | [diff] [blame] | 777 | { |
| 778 | int active = 1; |
| 779 | |
| 780 | /* Check that the VPE is enabled. */ |
| 781 | if (!(env->mvp->CP0_MVPControl & (1 << CP0MVPCo_EVP))) { |
| 782 | active = 0; |
| 783 | } |
Dong Xu Wang | 4abf79a | 2011-11-22 18:06:21 +0800 | [diff] [blame] | 784 | /* Check that the VPE is activated. */ |
Edgar E. Iglesias | f249412 | 2011-08-29 23:07:40 +0200 | [diff] [blame] | 785 | if (!(env->CP0_VPEConf0 & (1 << CP0VPEC0_VPA))) { |
| 786 | active = 0; |
| 787 | } |
| 788 | |
| 789 | /* Now verify that there are active thread contexts in the VPE. |
| 790 | |
| 791 | This assumes the CPU model will internally reschedule threads |
| 792 | if the active one goes to sleep. If there are no threads available |
| 793 | the active one will be in a sleeping state, and we can turn off |
| 794 | the entire VPE. */ |
| 795 | if (!(env->active_tc.CP0_TCStatus & (1 << CP0TCSt_A))) { |
| 796 | /* TC is not activated. */ |
| 797 | active = 0; |
| 798 | } |
| 799 | if (env->active_tc.CP0_TCHalt & 1) { |
| 800 | /* TC is in halt state. */ |
| 801 | active = 0; |
| 802 | } |
| 803 | |
| 804 | return active; |
| 805 | } |
| 806 | |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 807 | #include "exec/exec-all.h" |
Blue Swirl | f081c76 | 2011-05-21 07:10:23 +0000 | [diff] [blame] | 808 | |
Maciej W. Rozycki | 03e6e50 | 2012-06-08 02:04:40 +0100 | [diff] [blame] | 809 | static inline void compute_hflags(CPUMIPSState *env) |
| 810 | { |
| 811 | env->hflags &= ~(MIPS_HFLAG_COP1X | MIPS_HFLAG_64 | MIPS_HFLAG_CP0 | |
| 812 | MIPS_HFLAG_F64 | MIPS_HFLAG_FPU | MIPS_HFLAG_KSU | |
Leon Alrae | faf1f68 | 2014-07-11 16:11:33 +0100 | [diff] [blame] | 813 | MIPS_HFLAG_AWRAP | MIPS_HFLAG_DSP | MIPS_HFLAG_DSPR2 | |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 814 | MIPS_HFLAG_SBRI | MIPS_HFLAG_MSA); |
Maciej W. Rozycki | 03e6e50 | 2012-06-08 02:04:40 +0100 | [diff] [blame] | 815 | if (!(env->CP0_Status & (1 << CP0St_EXL)) && |
| 816 | !(env->CP0_Status & (1 << CP0St_ERL)) && |
| 817 | !(env->hflags & MIPS_HFLAG_DM)) { |
| 818 | env->hflags |= (env->CP0_Status >> CP0St_KSU) & MIPS_HFLAG_KSU; |
| 819 | } |
| 820 | #if defined(TARGET_MIPS64) |
| 821 | if (((env->hflags & MIPS_HFLAG_KSU) != MIPS_HFLAG_UM) || |
| 822 | (env->CP0_Status & (1 << CP0St_PX)) || |
| 823 | (env->CP0_Status & (1 << CP0St_UX))) { |
| 824 | env->hflags |= MIPS_HFLAG_64; |
| 825 | } |
Leon Alrae | 01f7288 | 2014-06-27 08:49:04 +0100 | [diff] [blame] | 826 | |
| 827 | if (((env->hflags & MIPS_HFLAG_KSU) == MIPS_HFLAG_UM) && |
| 828 | !(env->CP0_Status & (1 << CP0St_UX))) { |
| 829 | env->hflags |= MIPS_HFLAG_AWRAP; |
| 830 | } else if (env->insn_flags & ISA_MIPS32R6) { |
| 831 | /* Address wrapping for Supervisor and Kernel is specified in R6 */ |
| 832 | if ((((env->hflags & MIPS_HFLAG_KSU) == MIPS_HFLAG_SM) && |
| 833 | !(env->CP0_Status & (1 << CP0St_SX))) || |
| 834 | (((env->hflags & MIPS_HFLAG_KSU) == MIPS_HFLAG_KM) && |
| 835 | !(env->CP0_Status & (1 << CP0St_KX)))) { |
| 836 | env->hflags |= MIPS_HFLAG_AWRAP; |
| 837 | } |
Maciej W. Rozycki | 03e6e50 | 2012-06-08 02:04:40 +0100 | [diff] [blame] | 838 | } |
| 839 | #endif |
Leon Alrae | a63eb0c | 2014-07-11 16:11:34 +0100 | [diff] [blame] | 840 | if (((env->CP0_Status & (1 << CP0St_CU0)) && |
| 841 | !(env->insn_flags & ISA_MIPS32R6)) || |
Maciej W. Rozycki | 03e6e50 | 2012-06-08 02:04:40 +0100 | [diff] [blame] | 842 | !(env->hflags & MIPS_HFLAG_KSU)) { |
| 843 | env->hflags |= MIPS_HFLAG_CP0; |
| 844 | } |
| 845 | if (env->CP0_Status & (1 << CP0St_CU1)) { |
| 846 | env->hflags |= MIPS_HFLAG_FPU; |
| 847 | } |
| 848 | if (env->CP0_Status & (1 << CP0St_FR)) { |
| 849 | env->hflags |= MIPS_HFLAG_F64; |
| 850 | } |
Leon Alrae | faf1f68 | 2014-07-11 16:11:33 +0100 | [diff] [blame] | 851 | if (((env->hflags & MIPS_HFLAG_KSU) != MIPS_HFLAG_KM) && |
| 852 | (env->CP0_Config5 & (1 << CP0C5_SBRI))) { |
| 853 | env->hflags |= MIPS_HFLAG_SBRI; |
| 854 | } |
Jia Liu | 853c324 | 2012-10-24 22:17:02 +0800 | [diff] [blame] | 855 | if (env->insn_flags & ASE_DSPR2) { |
| 856 | /* Enables access MIPS DSP resources, now our cpu is DSP ASER2, |
| 857 | so enable to access DSPR2 resources. */ |
| 858 | if (env->CP0_Status & (1 << CP0St_MX)) { |
| 859 | env->hflags |= MIPS_HFLAG_DSP | MIPS_HFLAG_DSPR2; |
| 860 | } |
| 861 | |
| 862 | } else if (env->insn_flags & ASE_DSP) { |
| 863 | /* Enables access MIPS DSP resources, now our cpu is DSP ASE, |
| 864 | so enable to access DSP resources. */ |
| 865 | if (env->CP0_Status & (1 << CP0St_MX)) { |
| 866 | env->hflags |= MIPS_HFLAG_DSP; |
| 867 | } |
| 868 | |
| 869 | } |
Maciej W. Rozycki | 03e6e50 | 2012-06-08 02:04:40 +0100 | [diff] [blame] | 870 | if (env->insn_flags & ISA_MIPS32R2) { |
| 871 | if (env->active_fpu.fcr0 & (1 << FCR0_F64)) { |
| 872 | env->hflags |= MIPS_HFLAG_COP1X; |
| 873 | } |
| 874 | } else if (env->insn_flags & ISA_MIPS32) { |
| 875 | if (env->hflags & MIPS_HFLAG_64) { |
| 876 | env->hflags |= MIPS_HFLAG_COP1X; |
| 877 | } |
| 878 | } else if (env->insn_flags & ISA_MIPS4) { |
| 879 | /* All supported MIPS IV CPUs use the XX (CU3) to enable |
| 880 | and disable the MIPS IV extensions to the MIPS III ISA. |
| 881 | Some other MIPS IV CPUs ignore the bit, so the check here |
| 882 | would be too restrictive for them. */ |
Peter Maydell | f45cb2f | 2014-03-17 16:00:34 +0000 | [diff] [blame] | 883 | if (env->CP0_Status & (1U << CP0St_CU3)) { |
Maciej W. Rozycki | 03e6e50 | 2012-06-08 02:04:40 +0100 | [diff] [blame] | 884 | env->hflags |= MIPS_HFLAG_COP1X; |
| 885 | } |
| 886 | } |
Yongbok Kim | e97a391 | 2014-11-01 05:28:35 +0000 | [diff] [blame] | 887 | if (env->insn_flags & ASE_MSA) { |
| 888 | if (env->CP0_Config5 & (1 << CP0C5_MSAEn)) { |
| 889 | env->hflags |= MIPS_HFLAG_MSA; |
| 890 | } |
| 891 | } |
Maciej W. Rozycki | 03e6e50 | 2012-06-08 02:04:40 +0100 | [diff] [blame] | 892 | } |
| 893 | |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 894 | #endif /* !defined (__MIPS_CPU_H__) */ |