qemu/target-tricore/cpu.h
<<
>>
Prefs
   1/*
   2 *  TriCore emulation for qemu: main CPU struct.
   3 *
   4 *  Copyright (c) 2012-2014 Bastian Koppelmann C-Lab/University Paderborn
   5 *
   6 * This library is free software; you can redistribute it and/or
   7 * modify it under the terms of the GNU Lesser General Public
   8 * License as published by the Free Software Foundation; either
   9 * version 2 of the License, or (at your option) any later version.
  10 *
  11 * This library is distributed in the hope that it will be useful,
  12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14 * Lesser General Public License for more details.
  15 *
  16 * You should have received a copy of the GNU Lesser General Public
  17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  18 */
  19#if !defined(__TRICORE_CPU_H__)
  20#define __TRICORE_CPU_H__
  21
  22#include "tricore-defs.h"
  23#include "config.h"
  24#include "qemu-common.h"
  25#include "exec/cpu-defs.h"
  26#include "fpu/softfloat.h"
  27
  28#define CPUArchState struct CPUTriCoreState
  29
  30struct CPUTriCoreState;
  31
  32struct tricore_boot_info;
  33
  34#define NB_MMU_MODES 3
  35
  36typedef struct tricore_def_t tricore_def_t;
  37
  38typedef struct CPUTriCoreState CPUTriCoreState;
  39struct CPUTriCoreState {
  40    /* GPR Register */
  41    uint32_t gpr_a[16];
  42    uint32_t gpr_d[16];
  43    /* CSFR Register */
  44    uint32_t PCXI;
  45/* Frequently accessed PSW_USB bits are stored separately for efficiency.
  46       This contains all the other bits.  Use psw_{read,write} to access
  47       the whole PSW.  */
  48    uint32_t PSW;
  49
  50    /* PSW flag cache for faster execution
  51    */
  52    uint32_t PSW_USB_C;
  53    uint32_t PSW_USB_V;   /* Only if bit 31 set, then flag is set  */
  54    uint32_t PSW_USB_SV;  /* Only if bit 31 set, then flag is set  */
  55    uint32_t PSW_USB_AV;  /* Only if bit 31 set, then flag is set. */
  56    uint32_t PSW_USB_SAV; /* Only if bit 31 set, then flag is set. */
  57
  58    uint32_t PC;
  59    uint32_t SYSCON;
  60    uint32_t CPU_ID;
  61    uint32_t BIV;
  62    uint32_t BTV;
  63    uint32_t ISP;
  64    uint32_t ICR;
  65    uint32_t FCX;
  66    uint32_t LCX;
  67    uint32_t COMPAT;
  68
  69    /* Mem Protection Register */
  70    uint32_t DPR0_0L;
  71    uint32_t DPR0_0U;
  72    uint32_t DPR0_1L;
  73    uint32_t DPR0_1U;
  74    uint32_t DPR0_2L;
  75    uint32_t DPR0_2U;
  76    uint32_t DPR0_3L;
  77    uint32_t DPR0_3U;
  78
  79    uint32_t DPR1_0L;
  80    uint32_t DPR1_0U;
  81    uint32_t DPR1_1L;
  82    uint32_t DPR1_1U;
  83    uint32_t DPR1_2L;
  84    uint32_t DPR1_2U;
  85    uint32_t DPR1_3L;
  86    uint32_t DPR1_3U;
  87
  88    uint32_t DPR2_0L;
  89    uint32_t DPR2_0U;
  90    uint32_t DPR2_1L;
  91    uint32_t DPR2_1U;
  92    uint32_t DPR2_2L;
  93    uint32_t DPR2_2U;
  94    uint32_t DPR2_3L;
  95    uint32_t DPR2_3U;
  96
  97    uint32_t DPR3_0L;
  98    uint32_t DPR3_0U;
  99    uint32_t DPR3_1L;
 100    uint32_t DPR3_1U;
 101    uint32_t DPR3_2L;
 102    uint32_t DPR3_2U;
 103    uint32_t DPR3_3L;
 104    uint32_t DPR3_3U;
 105
 106    uint32_t CPR0_0L;
 107    uint32_t CPR0_0U;
 108    uint32_t CPR0_1L;
 109    uint32_t CPR0_1U;
 110    uint32_t CPR0_2L;
 111    uint32_t CPR0_2U;
 112    uint32_t CPR0_3L;
 113    uint32_t CPR0_3U;
 114
 115    uint32_t CPR1_0L;
 116    uint32_t CPR1_0U;
 117    uint32_t CPR1_1L;
 118    uint32_t CPR1_1U;
 119    uint32_t CPR1_2L;
 120    uint32_t CPR1_2U;
 121    uint32_t CPR1_3L;
 122    uint32_t CPR1_3U;
 123
 124    uint32_t CPR2_0L;
 125    uint32_t CPR2_0U;
 126    uint32_t CPR2_1L;
 127    uint32_t CPR2_1U;
 128    uint32_t CPR2_2L;
 129    uint32_t CPR2_2U;
 130    uint32_t CPR2_3L;
 131    uint32_t CPR2_3U;
 132
 133    uint32_t CPR3_0L;
 134    uint32_t CPR3_0U;
 135    uint32_t CPR3_1L;
 136    uint32_t CPR3_1U;
 137    uint32_t CPR3_2L;
 138    uint32_t CPR3_2U;
 139    uint32_t CPR3_3L;
 140    uint32_t CPR3_3U;
 141
 142    uint32_t DPM0;
 143    uint32_t DPM1;
 144    uint32_t DPM2;
 145    uint32_t DPM3;
 146
 147    uint32_t CPM0;
 148    uint32_t CPM1;
 149    uint32_t CPM2;
 150    uint32_t CPM3;
 151
 152    /* Memory Management Registers */
 153    uint32_t MMU_CON;
 154    uint32_t MMU_ASI;
 155    uint32_t MMU_TVA;
 156    uint32_t MMU_TPA;
 157    uint32_t MMU_TPX;
 158    uint32_t MMU_TFA;
 159    /* {1.3.1 only */
 160    uint32_t BMACON;
 161    uint32_t SMACON;
 162    uint32_t DIEAR;
 163    uint32_t DIETR;
 164    uint32_t CCDIER;
 165    uint32_t MIECON;
 166    uint32_t PIEAR;
 167    uint32_t PIETR;
 168    uint32_t CCPIER;
 169    /*} */
 170    /* Debug Registers */
 171    uint32_t DBGSR;
 172    uint32_t EXEVT;
 173    uint32_t CREVT;
 174    uint32_t SWEVT;
 175    uint32_t TR0EVT;
 176    uint32_t TR1EVT;
 177    uint32_t DMS;
 178    uint32_t DCX;
 179    uint32_t DBGTCR;
 180    uint32_t CCTRL;
 181    uint32_t CCNT;
 182    uint32_t ICNT;
 183    uint32_t M1CNT;
 184    uint32_t M2CNT;
 185    uint32_t M3CNT;
 186    /* Floating Point Registers */
 187    /* XXX: */
 188
 189    /* QEMU */
 190    int error_code;
 191    uint32_t hflags;    /* CPU State */
 192
 193    CPU_COMMON
 194
 195    /* Internal CPU feature flags.  */
 196    uint64_t features;
 197
 198    const tricore_def_t *cpu_model;
 199    void *irq[8];
 200    struct QEMUTimer *timer; /* Internal timer */
 201};
 202
 203#define MASK_PCXI_PCPN 0xff000000
 204#define MASK_PCXI_PIE  0x00800000
 205#define MASK_PCXI_UL   0x00400000
 206#define MASK_PCXI_PCXS 0x000f0000
 207#define MASK_PCXI_PCXO 0x0000ffff
 208
 209#define MASK_PSW_USB 0xff000000
 210#define MASK_USB_C   0x80000000
 211#define MASK_USB_V   0x40000000
 212#define MASK_USB_SV  0x20000000
 213#define MASK_USB_AV  0x10000000
 214#define MASK_USB_SAV 0x08000000
 215#define MASK_PSW_PRS 0x00003000
 216#define MASK_PSW_IO  0x00000c00
 217#define MASK_PSW_IS  0x00000200
 218#define MASK_PSW_GW  0x00000100
 219#define MASK_PSW_CDE 0x00000080
 220#define MASK_PSW_CDC 0x0000007f
 221
 222#define MASK_SYSCON_PRO_TEN 0x2
 223#define MASK_SYSCON_FCD_SF  0x1
 224
 225#define MASK_CPUID_MOD     0xffff0000
 226#define MASK_CPUID_MOD_32B 0x0000ff00
 227#define MASK_CPUID_REV     0x000000ff
 228
 229#define MASK_ICR_PIPN 0x00ff0000
 230#define MASK_ICR_IE   0x00000100
 231#define MASK_ICR_CCPN 0x000000ff
 232
 233#define MASK_FCX_FCXS 0x000f0000
 234#define MASK_FCX_FCXO 0x0000ffff
 235
 236#define MASK_LCX_LCXS 0x000f0000
 237#define MASK_LCX_LCX0 0x0000ffff
 238
 239#define MASK_DBGSR_DE 0x1
 240#define MASK_DBGSR_HALT 0x6
 241#define MASK_DBGSR_SUSP 0x10
 242#define MASK_DBGSR_PREVSUSP 0x20
 243#define MASK_DBGSR_PEVT 0x40
 244#define MASK_DBGSR_EVTSRC 0x1f00
 245
 246#define TRICORE_HFLAG_KUU     0x3
 247#define TRICORE_HFLAG_UM0     0x00002 /* user mode-0 flag          */
 248#define TRICORE_HFLAG_UM1     0x00001 /* user mode-1 flag          */
 249#define TRICORE_HFLAG_SM      0x00000 /* kernel mode flag          */
 250
 251enum tricore_features {
 252    TRICORE_FEATURE_13,
 253    TRICORE_FEATURE_131,
 254    TRICORE_FEATURE_16,
 255    TRICORE_FEATURE_161,
 256};
 257
 258static inline int tricore_feature(CPUTriCoreState *env, int feature)
 259{
 260    return (env->features & (1ULL << feature)) != 0;
 261}
 262
 263/* TriCore Traps Classes*/
 264enum {
 265    TRAPC_NONE     = -1,
 266    TRAPC_MMU      = 0,
 267    TRAPC_PROT     = 1,
 268    TRAPC_INSN_ERR = 2,
 269    TRAPC_CTX_MNG  = 3,
 270    TRAPC_SYSBUS   = 4,
 271    TRAPC_ASSERT   = 5,
 272    TRAPC_SYSCALL  = 6,
 273    TRAPC_NMI      = 7,
 274};
 275
 276/* Class 0 TIN */
 277enum {
 278    TIN0_VAF = 0,
 279    TIN0_VAP = 1,
 280};
 281
 282/* Class 1 TIN */
 283enum {
 284    TIN1_PRIV = 1,
 285    TIN1_MPR  = 2,
 286    TIN1_MPW  = 3,
 287    TIN1_MPX  = 4,
 288    TIN1_MPP  = 5,
 289    TIN1_MPN  = 6,
 290    TIN1_GRWP = 7,
 291};
 292
 293/* Class 2 TIN */
 294enum {
 295    TIN2_IOPC = 1,
 296    TIN2_UOPC = 2,
 297    TIN2_OPD  = 3,
 298    TIN2_ALN  = 4,
 299    TIN2_MEM  = 5,
 300};
 301
 302/* Class 3 TIN */
 303enum {
 304    TIN3_FCD  = 1,
 305    TIN3_CDO  = 2,
 306    TIN3_CDU  = 3,
 307    TIN3_FCU  = 4,
 308    TIN3_CSU  = 5,
 309    TIN3_CTYP = 6,
 310    TIN3_NEST = 7,
 311};
 312
 313/* Class 4 TIN */
 314enum {
 315    TIN4_PSE = 1,
 316    TIN4_DSE = 2,
 317    TIN4_DAE = 3,
 318    TIN4_CAE = 4,
 319    TIN4_PIE = 5,
 320    TIN4_DIE = 6,
 321};
 322
 323/* Class 5 TIN */
 324enum {
 325    TIN5_OVF  = 1,
 326    TIN5_SOVF = 1,
 327};
 328
 329/* Class 6 TIN
 330 *
 331 * Is always TIN6_SYS
 332 */
 333
 334/* Class 7 TIN */
 335enum {
 336    TIN7_NMI = 0,
 337};
 338
 339uint32_t psw_read(CPUTriCoreState *env);
 340void psw_write(CPUTriCoreState *env, uint32_t val);
 341
 342#include "cpu-qom.h"
 343#define MMU_USER_IDX 2
 344
 345void tricore_cpu_list(FILE *f, fprintf_function cpu_fprintf);
 346
 347#define cpu_exec cpu_tricore_exec
 348#define cpu_signal_handler cpu_tricore_signal_handler
 349#define cpu_list tricore_cpu_list
 350
 351static inline int cpu_mmu_index(CPUTriCoreState *env, bool ifetch)
 352{
 353    return 0;
 354}
 355
 356
 357
 358#include "exec/cpu-all.h"
 359
 360enum {
 361    /* 1 bit to define user level / supervisor access */
 362    ACCESS_USER  = 0x00,
 363    ACCESS_SUPER = 0x01,
 364    /* 1 bit to indicate direction */
 365    ACCESS_STORE = 0x02,
 366    /* Type of instruction that generated the access */
 367    ACCESS_CODE  = 0x10, /* Code fetch access                */
 368    ACCESS_INT   = 0x20, /* Integer load/store access        */
 369    ACCESS_FLOAT = 0x30, /* floating point load/store access */
 370};
 371
 372void cpu_state_reset(CPUTriCoreState *s);
 373int cpu_tricore_exec(CPUState *cpu);
 374void tricore_tcg_init(void);
 375int cpu_tricore_signal_handler(int host_signum, void *pinfo, void *puc);
 376
 377static inline void cpu_get_tb_cpu_state(CPUTriCoreState *env, target_ulong *pc,
 378                                        target_ulong *cs_base, int *flags)
 379{
 380    *pc = env->PC;
 381    *cs_base = 0;
 382    *flags = 0;
 383}
 384
 385TriCoreCPU *cpu_tricore_init(const char *cpu_model);
 386
 387#define cpu_init(cpu_model) CPU(cpu_tricore_init(cpu_model))
 388
 389
 390/* helpers.c */
 391int cpu_tricore_handle_mmu_fault(CPUState *cpu, target_ulong address,
 392                                 int rw, int mmu_idx);
 393#define cpu_handle_mmu_fault cpu_tricore_handle_mmu_fault
 394
 395#include "exec/exec-all.h"
 396
 397#endif /*__TRICORE_CPU_H__ */
 398