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.1 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 20 #ifndef TRICORE_CPU_H 21 #define TRICORE_CPU_H 22 23 #include "cpu-qom.h" 24 #include "hw/registerfields.h" 25 #include "exec/cpu-defs.h" 26 #include "qemu/cpu-float.h" 27 #include "tricore-defs.h" 28 29 typedef struct CPUArchState { 30 /* GPR Register */ 31 uint32_t gpr_a[16]; 32 uint32_t gpr_d[16]; 33 /* Frequently accessed PSW_USB bits are stored separately for efficiency. 34 This contains all the other bits. Use psw_{read,write} to access 35 the whole PSW. */ 36 uint32_t PSW; 37 /* PSW flag cache for faster execution */ 38 uint32_t PSW_USB_C; 39 uint32_t PSW_USB_V; /* Only if bit 31 set, then flag is set */ 40 uint32_t PSW_USB_SV; /* Only if bit 31 set, then flag is set */ 41 uint32_t PSW_USB_AV; /* Only if bit 31 set, then flag is set. */ 42 uint32_t PSW_USB_SAV; /* Only if bit 31 set, then flag is set. */ 43 44 #define R(ADDR, NAME, FEATURE) uint32_t NAME; 45 #define A(ADDR, NAME, FEATURE) uint32_t NAME; 46 #define E(ADDR, NAME, FEATURE) uint32_t NAME; 47 #include "csfr.h.inc" 48 #undef R 49 #undef A 50 #undef E 51 52 /* Floating Point Registers */ 53 float_status fp_status; 54 55 /* Internal CPU feature flags. */ 56 uint64_t features; 57 } CPUTriCoreState; 58 59 /** 60 * TriCoreCPU: 61 * @env: #CPUTriCoreState 62 * 63 * A TriCore CPU. 64 */ 65 struct ArchCPU { 66 /*< private >*/ 67 CPUState parent_obj; 68 /*< public >*/ 69 70 CPUTriCoreState env; 71 }; 72 73 74 hwaddr tricore_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr); 75 void tricore_cpu_dump_state(CPUState *cpu, FILE *f, int flags); 76 77 FIELD(PCXI, PCPN_13, 24, 8) 78 FIELD(PCXI, PCPN_161, 22, 8) 79 FIELD(PCXI, PIE_13, 23, 1) 80 FIELD(PCXI, PIE_161, 21, 1) 81 FIELD(PCXI, UL_13, 22, 1) 82 FIELD(PCXI, UL_161, 20, 1) 83 FIELD(PCXI, PCXS, 16, 4) 84 FIELD(PCXI, PCXO, 0, 16) 85 uint32_t pcxi_get_ul(CPUTriCoreState *env); 86 uint32_t pcxi_get_pie(CPUTriCoreState *env); 87 uint32_t pcxi_get_pcpn(CPUTriCoreState *env); 88 uint32_t pcxi_get_pcxs(CPUTriCoreState *env); 89 uint32_t pcxi_get_pcxo(CPUTriCoreState *env); 90 void pcxi_set_ul(CPUTriCoreState *env, uint32_t val); 91 void pcxi_set_pie(CPUTriCoreState *env, uint32_t val); 92 void pcxi_set_pcpn(CPUTriCoreState *env, uint32_t val); 93 94 FIELD(ICR, IE_161, 15, 1) 95 FIELD(ICR, IE_13, 8, 1) 96 FIELD(ICR, PIPN, 16, 8) 97 FIELD(ICR, CCPN, 0, 8) 98 99 uint32_t icr_get_ie(CPUTriCoreState *env); 100 uint32_t icr_get_ccpn(CPUTriCoreState *env); 101 102 void icr_set_ccpn(CPUTriCoreState *env, uint32_t val); 103 void icr_set_ie(CPUTriCoreState *env, uint32_t val); 104 105 #define MASK_PSW_USB 0xff000000 106 #define MASK_USB_C 0x80000000 107 #define MASK_USB_V 0x40000000 108 #define MASK_USB_SV 0x20000000 109 #define MASK_USB_AV 0x10000000 110 #define MASK_USB_SAV 0x08000000 111 #define MASK_PSW_PRS 0x00003000 112 #define MASK_PSW_IO 0x00000c00 113 #define MASK_PSW_IS 0x00000200 114 #define MASK_PSW_GW 0x00000100 115 #define MASK_PSW_CDE 0x00000080 116 #define MASK_PSW_CDC 0x0000007f 117 #define MASK_PSW_FPU_RM 0x3000000 118 119 #define MASK_SYSCON_PRO_TEN 0x2 120 #define MASK_SYSCON_FCD_SF 0x1 121 122 #define MASK_CPUID_MOD 0xffff0000 123 #define MASK_CPUID_MOD_32B 0x0000ff00 124 #define MASK_CPUID_REV 0x000000ff 125 126 127 #define MASK_FCX_FCXS 0x000f0000 128 #define MASK_FCX_FCXO 0x0000ffff 129 130 #define MASK_LCX_LCXS 0x000f0000 131 #define MASK_LCX_LCX0 0x0000ffff 132 133 #define MASK_DBGSR_DE 0x1 134 #define MASK_DBGSR_HALT 0x6 135 #define MASK_DBGSR_SUSP 0x10 136 #define MASK_DBGSR_PREVSUSP 0x20 137 #define MASK_DBGSR_PEVT 0x40 138 #define MASK_DBGSR_EVTSRC 0x1f00 139 140 enum tricore_priv_levels { 141 TRICORE_PRIV_UM0 = 0x0, /* user mode-0 flag */ 142 TRICORE_PRIV_UM1 = 0x1, /* user mode-1 flag */ 143 TRICORE_PRIV_SM = 0x2, /* kernel mode flag */ 144 }; 145 146 enum tricore_features { 147 TRICORE_FEATURE_13, 148 TRICORE_FEATURE_131, 149 TRICORE_FEATURE_16, 150 TRICORE_FEATURE_161, 151 TRICORE_FEATURE_162, 152 }; 153 154 static inline int tricore_has_feature(CPUTriCoreState *env, int feature) 155 { 156 return (env->features & (1ULL << feature)) != 0; 157 } 158 159 /* TriCore Traps Classes*/ 160 enum { 161 TRAPC_NONE = -1, 162 TRAPC_MMU = 0, 163 TRAPC_PROT = 1, 164 TRAPC_INSN_ERR = 2, 165 TRAPC_CTX_MNG = 3, 166 TRAPC_SYSBUS = 4, 167 TRAPC_ASSERT = 5, 168 TRAPC_SYSCALL = 6, 169 TRAPC_NMI = 7, 170 TRAPC_IRQ = 8 171 }; 172 173 /* Class 0 TIN */ 174 enum { 175 TIN0_VAF = 0, 176 TIN0_VAP = 1, 177 }; 178 179 /* Class 1 TIN */ 180 enum { 181 TIN1_PRIV = 1, 182 TIN1_MPR = 2, 183 TIN1_MPW = 3, 184 TIN1_MPX = 4, 185 TIN1_MPP = 5, 186 TIN1_MPN = 6, 187 TIN1_GRWP = 7, 188 }; 189 190 /* Class 2 TIN */ 191 enum { 192 TIN2_IOPC = 1, 193 TIN2_UOPC = 2, 194 TIN2_OPD = 3, 195 TIN2_ALN = 4, 196 TIN2_MEM = 5, 197 }; 198 199 /* Class 3 TIN */ 200 enum { 201 TIN3_FCD = 1, 202 TIN3_CDO = 2, 203 TIN3_CDU = 3, 204 TIN3_FCU = 4, 205 TIN3_CSU = 5, 206 TIN3_CTYP = 6, 207 TIN3_NEST = 7, 208 }; 209 210 /* Class 4 TIN */ 211 enum { 212 TIN4_PSE = 1, 213 TIN4_DSE = 2, 214 TIN4_DAE = 3, 215 TIN4_CAE = 4, 216 TIN4_PIE = 5, 217 TIN4_DIE = 6, 218 }; 219 220 /* Class 5 TIN */ 221 enum { 222 TIN5_OVF = 1, 223 TIN5_SOVF = 1, 224 }; 225 226 /* Class 6 TIN 227 * 228 * Is always TIN6_SYS 229 */ 230 231 /* Class 7 TIN */ 232 enum { 233 TIN7_NMI = 0, 234 }; 235 236 uint32_t psw_read(CPUTriCoreState *env); 237 void psw_write(CPUTriCoreState *env, uint32_t val); 238 int tricore_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n); 239 int tricore_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n); 240 241 void fpu_set_state(CPUTriCoreState *env); 242 243 #define MMU_USER_IDX 2 244 245 void tricore_cpu_list(void); 246 247 #define cpu_list tricore_cpu_list 248 249 static inline int cpu_mmu_index(CPUTriCoreState *env, bool ifetch) 250 { 251 return 0; 252 } 253 254 #include "exec/cpu-all.h" 255 256 FIELD(TB_FLAGS, PRIV, 0, 2) 257 258 void cpu_state_reset(CPUTriCoreState *s); 259 void tricore_tcg_init(void); 260 261 static inline void cpu_get_tb_cpu_state(CPUTriCoreState *env, vaddr *pc, 262 uint64_t *cs_base, uint32_t *flags) 263 { 264 uint32_t new_flags = 0; 265 *pc = env->PC; 266 *cs_base = 0; 267 268 new_flags |= FIELD_DP32(new_flags, TB_FLAGS, PRIV, 269 extract32(env->PSW, 10, 2)); 270 *flags = new_flags; 271 } 272 273 #define TRICORE_CPU_TYPE_SUFFIX "-" TYPE_TRICORE_CPU 274 #define TRICORE_CPU_TYPE_NAME(model) model TRICORE_CPU_TYPE_SUFFIX 275 #define CPU_RESOLVING_TYPE TYPE_TRICORE_CPU 276 277 /* helpers.c */ 278 bool tricore_cpu_tlb_fill(CPUState *cs, vaddr address, int size, 279 MMUAccessType access_type, int mmu_idx, 280 bool probe, uintptr_t retaddr); 281 282 #endif /* TRICORE_CPU_H */ 283