cpu.h 9.5 KB
Newer Older
B
bellard 已提交
1 2 3
#if !defined (__MIPS_CPU_H__)
#define __MIPS_CPU_H__

B
bellard 已提交
4 5
#define TARGET_HAS_ICE 1

6
#include "config.h"
B
bellard 已提交
7 8 9 10
#include "mips-defs.h"
#include "cpu-defs.h"
#include "softfloat.h"

B
bellard 已提交
11 12 13 14 15 16 17
// uint_fast8_t and uint_fast16_t not in <sys/int_types.h>
// XXX: move that elsewhere
#if defined(HOST_SOLARIS) && SOLARISREV < 10
typedef unsigned char           uint_fast8_t;
typedef unsigned int            uint_fast16_t;
#endif

18
/* target_ulong size spec */
T
ths 已提交
19
#ifdef MIPS_HAS_MIPS64
20 21 22 23 24
#define TLSZ "%016llx"
#else
#define TLSZ "%08x"
#endif

B
bellard 已提交
25 26
typedef union fpr_t fpr_t;
union fpr_t {
B
bellard 已提交
27 28 29 30
    float64  fd;   /* ieee double precision */
    float32  fs[2];/* ieee single precision */
    uint64_t d;    /* binary single fixed-point */
    uint32_t w[2]; /* binary single fixed-point */
B
bellard 已提交
31
};
B
bellard 已提交
32 33 34 35 36 37 38 39
/* define FP_ENDIAN_IDX to access the same location
 * in the fpr_t union regardless of the host endianess
 */
#if defined(WORDS_BIGENDIAN)
#  define FP_ENDIAN_IDX 1
#else
#  define FP_ENDIAN_IDX 0
#endif
B
bellard 已提交
40 41 42 43 44 45

#if defined(MIPS_USES_R4K_TLB)
typedef struct tlb_t tlb_t;
struct tlb_t {
    target_ulong VPN;
    target_ulong end;
B
bellard 已提交
46
    target_ulong end2;
47 48 49 50 51 52 53 54
    uint_fast8_t ASID;
    uint_fast16_t G:1;
    uint_fast16_t C0:3;
    uint_fast16_t C1:3;
    uint_fast16_t V0:1;
    uint_fast16_t V1:1;
    uint_fast16_t D0:1;
    uint_fast16_t D1:1;
B
bellard 已提交
55 56 57 58 59 60 61 62 63 64
    target_ulong PFN[2];
};
#endif

typedef struct CPUMIPSState CPUMIPSState;
struct CPUMIPSState {
    /* General integer registers */
    target_ulong gpr[32];
    /* Special registers */
    target_ulong PC;
65 66 67 68 69 70
#if TARGET_LONG_BITS > HOST_LONG_BITS
    target_ulong t0;
    target_ulong t1;
    target_ulong t2;
#endif
    target_ulong HI, LO;
B
bellard 已提交
71 72 73 74
    uint32_t DCR; /* ? */
#if defined(MIPS_USES_FPU)
    /* Floating point registers */
    fpr_t fpr[16];
B
bellard 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87
#define FPR(cpu, n) ((fpr_t*)&(cpu)->fpr[(n) / 2])
#define FPR_FD(cpu, n) (FPR(cpu, n)->fd)
#define FPR_FS(cpu, n) (FPR(cpu, n)->fs[((n) & 1) ^ FP_ENDIAN_IDX])
#define FPR_D(cpu, n)  (FPR(cpu, n)->d)
#define FPR_W(cpu, n)  (FPR(cpu, n)->w[((n) & 1) ^ FP_ENDIAN_IDX])

#ifndef USE_HOST_FLOAT_REGS
    fpr_t ft0;
    fpr_t ft1;
    fpr_t ft2;
#endif
    float_status fp_status;
    /* fpu implementation/revision register */
B
bellard 已提交
88
    uint32_t fcr0;
B
bellard 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
    /* fcsr */
    uint32_t fcr31;
#define SET_FP_COND(reg)     do { (reg) |= (1<<23); } while(0)
#define CLEAR_FP_COND(reg)   do { (reg) &= ~(1<<23); } while(0)
#define IS_FP_COND_SET(reg)  (((reg) & (1<<23)) != 0)
#define GET_FP_CAUSE(reg)    (((reg) >> 12) & 0x3f)
#define GET_FP_ENABLE(reg)   (((reg) >>  7) & 0x1f)
#define GET_FP_FLAGS(reg)    (((reg) >>  2) & 0x1f)
#define SET_FP_CAUSE(reg,v)  do { (reg) = ((reg) & ~(0x3f << 12)) | ((v) << 12); } while(0)
#define SET_FP_ENABLE(reg,v) do { (reg) = ((reg) & ~(0x1f <<  7)) | ((v) << 7); } while(0)
#define SET_FP_FLAGS(reg,v)  do { (reg) = ((reg) & ~(0x1f <<  2)) | ((v) << 2); } while(0)
#define FP_INEXACT        1
#define FP_UNDERFLOW      2
#define FP_OVERFLOW       4
#define FP_DIV0           8
#define FP_INVALID        16
#define FP_UNIMPLEMENTED  32
		
B
bellard 已提交
107 108
#endif
#if defined(MIPS_USES_R4K_TLB)
109 110
    tlb_t tlb[MIPS_TLB_MAX];
    uint32_t tlb_in_use;
B
bellard 已提交
111 112 113
#endif
    uint32_t CP0_index;
    uint32_t CP0_random;
114 115 116
    uint64_t CP0_EntryLo0;
    uint64_t CP0_EntryLo1;
    uint64_t CP0_Context;
B
bellard 已提交
117
    uint32_t CP0_PageMask;
118
    uint32_t CP0_PageGrain;
B
bellard 已提交
119
    uint32_t CP0_Wired;
120
    uint32_t CP0_HWREna;
121
    target_ulong CP0_BadVAddr;
B
bellard 已提交
122
    uint32_t CP0_Count;
123
    uint64_t CP0_EntryHi;
B
bellard 已提交
124 125 126 127 128 129 130
    uint32_t CP0_Compare;
    uint32_t CP0_Status;
#define CP0St_CU3   31
#define CP0St_CU2   30
#define CP0St_CU1   29
#define CP0St_CU0   28
#define CP0St_RP    27
B
bellard 已提交
131
#define CP0St_FR    26
B
bellard 已提交
132
#define CP0St_RE    25
133 134
#define CP0St_MX    24
#define CP0St_PX    23
B
bellard 已提交
135 136 137 138 139
#define CP0St_BEV   22
#define CP0St_TS    21
#define CP0St_SR    20
#define CP0St_NMI   19
#define CP0St_IM    8
140 141 142
#define CP0St_KX    7
#define CP0St_SX    6
#define CP0St_UX    5
B
bellard 已提交
143
#define CP0St_UM    4
144
#define CP0St_R0    3
B
bellard 已提交
145 146 147
#define CP0St_ERL   2
#define CP0St_EXL   1
#define CP0St_IE    0
148 149
    uint32_t CP0_IntCtl;
    uint32_t CP0_SRSCtl;
B
bellard 已提交
150
    uint32_t CP0_Cause;
151 152 153 154 155
#define CP0Ca_BD   31
#define CP0Ca_TI   30
#define CP0Ca_CE   28
#define CP0Ca_DC   27
#define CP0Ca_PCI  26
B
bellard 已提交
156
#define CP0Ca_IV   23
157 158 159
#define CP0Ca_WP   22
#define CP0Ca_IP    8
#define CP0Ca_EC    2
160
    target_ulong CP0_EPC;
B
bellard 已提交
161
    uint32_t CP0_PRid;
162
    target_ulong CP0_EBase;
B
bellard 已提交
163 164 165 166 167 168 169 170 171 172 173
    uint32_t CP0_Config0;
#define CP0C0_M    31
#define CP0C0_K23  28
#define CP0C0_KU   25
#define CP0C0_MDU  20
#define CP0C0_MM   17
#define CP0C0_BM   16
#define CP0C0_BE   15
#define CP0C0_AT   13
#define CP0C0_AR   10
#define CP0C0_MT   7
174
#define CP0C0_VI   3
B
bellard 已提交
175 176
#define CP0C0_K0   0
    uint32_t CP0_Config1;
177
#define CP0C1_M    31
B
bellard 已提交
178 179 180 181 182 183 184
#define CP0C1_MMU  25
#define CP0C1_IS   22
#define CP0C1_IL   19
#define CP0C1_IA   16
#define CP0C1_DS   13
#define CP0C1_DL   10
#define CP0C1_DA   7
185 186
#define CP0C1_C2   6
#define CP0C1_MD   5
B
bellard 已提交
187 188 189 190 191
#define CP0C1_PC   4
#define CP0C1_WR   3
#define CP0C1_CA   2
#define CP0C1_EP   1
#define CP0C1_FP   0
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
    uint32_t CP0_Config2;
#define CP0C2_M    31
#define CP0C2_TU   28
#define CP0C2_TS   24
#define CP0C2_TL   20
#define CP0C2_TA   16
#define CP0C2_SU   12
#define CP0C2_SS   8
#define CP0C2_SL   4
#define CP0C2_SA   0
    uint32_t CP0_Config3;
#define CP0C3_M    31
#define CP0C3_DSPP 10
#define CP0C3_LPA  7
#define CP0C3_VEIC 6
#define CP0C3_VInt 5
#define CP0C3_SP   4
#define CP0C3_MT   2
#define CP0C3_SM   1
#define CP0C3_TL   0
212
    target_ulong CP0_LLAddr;
B
bellard 已提交
213 214
    uint32_t CP0_WatchLo;
    uint32_t CP0_WatchHi;
215 216
    uint32_t CP0_XContext;
    uint32_t CP0_Framemask;
B
bellard 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
    uint32_t CP0_Debug;
#define CPDB_DBD   31
#define CP0DB_DM   30
#define CP0DB_LSNM 28
#define CP0DB_Doze 27
#define CP0DB_Halt 26
#define CP0DB_CNT  25
#define CP0DB_IBEP 24
#define CP0DB_DBEP 21
#define CP0DB_IEXI 20
#define CP0DB_VER  15
#define CP0DB_DEC  10
#define CP0DB_SSt  8
#define CP0DB_DINT 5
#define CP0DB_DIB  4
#define CP0DB_DDBS 3
#define CP0DB_DDBL 2
#define CP0DB_DBp  1
#define CP0DB_DSS  0
236
    target_ulong CP0_DEPC;
237
    uint32_t CP0_Performance0;
B
bellard 已提交
238 239
    uint32_t CP0_TagLo;
    uint32_t CP0_DataLo;
240 241
    uint32_t CP0_TagHi;
    uint32_t CP0_DataHi;
242
    target_ulong CP0_ErrorEPC;
B
bellard 已提交
243 244 245 246 247 248 249 250 251
    uint32_t CP0_DESAVE;
    /* Qemu */
    int interrupt_request;
    jmp_buf jmp_env;
    int exception_index;
    int error_code;
    int user_mode_only; /* user mode only simulation */
    uint32_t hflags;    /* CPU State */
    /* TMASK defines different execution modes */
252
#define MIPS_HFLAG_TMASK  0x007F
B
bellard 已提交
253 254 255 256 257 258 259
#define MIPS_HFLAG_MODE   0x001F /* execution modes                    */
#define MIPS_HFLAG_UM     0x0001 /* user mode                          */
#define MIPS_HFLAG_ERL    0x0002 /* Error mode                         */
#define MIPS_HFLAG_EXL    0x0004 /* Exception mode                     */
#define MIPS_HFLAG_DM     0x0008 /* Debug mode                         */
#define MIPS_HFLAG_SM     0x0010 /* Supervisor mode                    */
#define MIPS_HFLAG_RE     0x0040 /* Reversed endianness                */
B
bellard 已提交
260 261 262 263 264 265 266 267 268
    /* If translation is interrupted between the branch instruction and
     * the delay slot, record what type of branch it is so that we can
     * resume translation properly.  It might be possible to reduce
     * this from three bits to two.  */
#define MIPS_HFLAG_BMASK  0x0380
#define MIPS_HFLAG_B      0x0080 /* Unconditional branch               */
#define MIPS_HFLAG_BC     0x0100 /* Conditional branch                 */
#define MIPS_HFLAG_BL     0x0180 /* Likely branch                      */
#define MIPS_HFLAG_BR     0x0200 /* branch to register (can't link TB) */
B
bellard 已提交
269 270
    target_ulong btarget;        /* Jump / branch target               */
    int bcond;                   /* Branch condition (if needed)       */
271

B
bellard 已提交
272 273
    int halted; /* TRUE if the CPU is in suspend state */

274 275 276
    int SYNCI_Step; /* Address step size for SYNCI */
    int CCRes; /* Cycle count resolution/divisor */

277
    CPU_COMMON
278 279 280 281 282 283 284

    int ram_size;
    const char *kernel_filename;
    const char *kernel_cmdline;
    const char *initrd_filename;

    struct QEMUTimer *timer; /* Internal timer */
B
bellard 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
};

#include "cpu-all.h"

/* Memory access type :
 * may be needed for precise access rights control and precise exceptions.
 */
enum {
    /* 1 bit to define user level / supervisor access */
    ACCESS_USER  = 0x00,
    ACCESS_SUPER = 0x01,
    /* 1 bit to indicate direction */
    ACCESS_STORE = 0x02,
    /* Type of instruction that generated the access */
    ACCESS_CODE  = 0x10, /* Code fetch access                */
    ACCESS_INT   = 0x20, /* Integer load/store access        */
    ACCESS_FLOAT = 0x30, /* floating point load/store access */
};

/* Exceptions */
enum {
    EXCP_NONE          = -1,
    EXCP_RESET         = 0,
    EXCP_SRESET,
    EXCP_DSS,
    EXCP_DINT,
    EXCP_NMI,
    EXCP_MCHECK,
    EXCP_EXT_INTERRUPT,
    EXCP_DFWATCH,
    EXCP_DIB, /* 8 */
    EXCP_IWATCH,
    EXCP_AdEL,
    EXCP_AdES,
    EXCP_TLBF,
    EXCP_IBE,
    EXCP_DBp,
    EXCP_SYSCALL,
B
bellard 已提交
323 324
    EXCP_BREAK, /* 16 */
    EXCP_CpU,
B
bellard 已提交
325 326 327 328 329
    EXCP_RI,
    EXCP_OVERFLOW,
    EXCP_TRAP,
    EXCP_DDBS,
    EXCP_DWATCH,
B
bellard 已提交
330 331
    EXCP_LAE,
    EXCP_SAE, /* 24 */
B
bellard 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
    EXCP_LTLBL,
    EXCP_TLBL,
    EXCP_TLBS,
    EXCP_DBE,
    EXCP_DDBL,
    EXCP_MTCP0         = 0x104, /* mtmsr instruction:               */
                                /* may change privilege level       */
    EXCP_BRANCH        = 0x108, /* branch instruction               */
    EXCP_ERET          = 0x10C, /* return from interrupt            */
    EXCP_SYSCALL_USER  = 0x110, /* System call in user mode only    */
    EXCP_FLUSH         = 0x109,
};

int cpu_mips_exec(CPUMIPSState *s);
CPUMIPSState *cpu_mips_init(void);
uint32_t cpu_mips_get_clock (void);

#endif /* !defined (__MIPS_CPU_H__) */