xref: /openbmc/qemu/target/tricore/cpu.h (revision 04591b3d)
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     CPUState parent_obj;
67 
68     CPUTriCoreState env;
69 };
70 
71 
72 hwaddr tricore_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
73 void tricore_cpu_dump_state(CPUState *cpu, FILE *f, int flags);
74 
75 FIELD(PCXI, PCPN_13, 24, 8)
76 FIELD(PCXI, PCPN_161, 22, 8)
77 FIELD(PCXI, PIE_13, 23, 1)
78 FIELD(PCXI, PIE_161, 21, 1)
79 FIELD(PCXI, UL_13, 22, 1)
80 FIELD(PCXI, UL_161, 20, 1)
81 FIELD(PCXI, PCXS, 16, 4)
82 FIELD(PCXI, PCXO, 0, 16)
83 uint32_t pcxi_get_ul(CPUTriCoreState *env);
84 uint32_t pcxi_get_pie(CPUTriCoreState *env);
85 uint32_t pcxi_get_pcpn(CPUTriCoreState *env);
86 uint32_t pcxi_get_pcxs(CPUTriCoreState *env);
87 uint32_t pcxi_get_pcxo(CPUTriCoreState *env);
88 void pcxi_set_ul(CPUTriCoreState *env, uint32_t val);
89 void pcxi_set_pie(CPUTriCoreState *env, uint32_t val);
90 void pcxi_set_pcpn(CPUTriCoreState *env, uint32_t val);
91 
92 FIELD(ICR, IE_161, 15, 1)
93 FIELD(ICR, IE_13, 8, 1)
94 FIELD(ICR, PIPN, 16, 8)
95 FIELD(ICR, CCPN, 0, 8)
96 
97 uint32_t icr_get_ie(CPUTriCoreState *env);
98 uint32_t icr_get_ccpn(CPUTriCoreState *env);
99 
100 void icr_set_ccpn(CPUTriCoreState *env, uint32_t val);
101 void icr_set_ie(CPUTriCoreState *env, uint32_t val);
102 
103 #define MASK_PSW_USB 0xff000000
104 #define MASK_USB_C   0x80000000
105 #define MASK_USB_V   0x40000000
106 #define MASK_USB_SV  0x20000000
107 #define MASK_USB_AV  0x10000000
108 #define MASK_USB_SAV 0x08000000
109 #define MASK_PSW_PRS 0x00003000
110 #define MASK_PSW_IO  0x00000c00
111 #define MASK_PSW_IS  0x00000200
112 #define MASK_PSW_GW  0x00000100
113 #define MASK_PSW_CDE 0x00000080
114 #define MASK_PSW_CDC 0x0000007f
115 #define MASK_PSW_FPU_RM 0x3000000
116 
117 #define MASK_SYSCON_PRO_TEN 0x2
118 #define MASK_SYSCON_FCD_SF  0x1
119 
120 #define MASK_CPUID_MOD     0xffff0000
121 #define MASK_CPUID_MOD_32B 0x0000ff00
122 #define MASK_CPUID_REV     0x000000ff
123 
124 
125 #define MASK_FCX_FCXS 0x000f0000
126 #define MASK_FCX_FCXO 0x0000ffff
127 
128 #define MASK_LCX_LCXS 0x000f0000
129 #define MASK_LCX_LCX0 0x0000ffff
130 
131 #define MASK_DBGSR_DE 0x1
132 #define MASK_DBGSR_HALT 0x6
133 #define MASK_DBGSR_SUSP 0x10
134 #define MASK_DBGSR_PREVSUSP 0x20
135 #define MASK_DBGSR_PEVT 0x40
136 #define MASK_DBGSR_EVTSRC 0x1f00
137 
138 enum tricore_priv_levels {
139     TRICORE_PRIV_UM0 = 0x0, /* user mode-0 flag */
140     TRICORE_PRIV_UM1 = 0x1, /* user mode-1 flag */
141     TRICORE_PRIV_SM  = 0x2, /* kernel mode flag */
142 };
143 
144 enum tricore_features {
145     TRICORE_FEATURE_13,
146     TRICORE_FEATURE_131,
147     TRICORE_FEATURE_16,
148     TRICORE_FEATURE_161,
149     TRICORE_FEATURE_162,
150 };
151 
152 static inline int tricore_has_feature(CPUTriCoreState *env, int feature)
153 {
154     return (env->features & (1ULL << feature)) != 0;
155 }
156 
157 /* TriCore Traps Classes*/
158 enum {
159     TRAPC_NONE     = -1,
160     TRAPC_MMU      = 0,
161     TRAPC_PROT     = 1,
162     TRAPC_INSN_ERR = 2,
163     TRAPC_CTX_MNG  = 3,
164     TRAPC_SYSBUS   = 4,
165     TRAPC_ASSERT   = 5,
166     TRAPC_SYSCALL  = 6,
167     TRAPC_NMI      = 7,
168     TRAPC_IRQ      = 8
169 };
170 
171 /* Class 0 TIN */
172 enum {
173     TIN0_VAF = 0,
174     TIN0_VAP = 1,
175 };
176 
177 /* Class 1 TIN */
178 enum {
179     TIN1_PRIV = 1,
180     TIN1_MPR  = 2,
181     TIN1_MPW  = 3,
182     TIN1_MPX  = 4,
183     TIN1_MPP  = 5,
184     TIN1_MPN  = 6,
185     TIN1_GRWP = 7,
186 };
187 
188 /* Class 2 TIN */
189 enum {
190     TIN2_IOPC = 1,
191     TIN2_UOPC = 2,
192     TIN2_OPD  = 3,
193     TIN2_ALN  = 4,
194     TIN2_MEM  = 5,
195 };
196 
197 /* Class 3 TIN */
198 enum {
199     TIN3_FCD  = 1,
200     TIN3_CDO  = 2,
201     TIN3_CDU  = 3,
202     TIN3_FCU  = 4,
203     TIN3_CSU  = 5,
204     TIN3_CTYP = 6,
205     TIN3_NEST = 7,
206 };
207 
208 /* Class 4 TIN */
209 enum {
210     TIN4_PSE = 1,
211     TIN4_DSE = 2,
212     TIN4_DAE = 3,
213     TIN4_CAE = 4,
214     TIN4_PIE = 5,
215     TIN4_DIE = 6,
216 };
217 
218 /* Class 5 TIN */
219 enum {
220     TIN5_OVF  = 1,
221     TIN5_SOVF = 1,
222 };
223 
224 /* Class 6 TIN
225  *
226  * Is always TIN6_SYS
227  */
228 
229 /* Class 7 TIN */
230 enum {
231     TIN7_NMI = 0,
232 };
233 
234 uint32_t psw_read(CPUTriCoreState *env);
235 void psw_write(CPUTriCoreState *env, uint32_t val);
236 int tricore_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n);
237 int tricore_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n);
238 
239 void fpu_set_state(CPUTriCoreState *env);
240 
241 #define MMU_USER_IDX 2
242 
243 void tricore_cpu_list(void);
244 
245 #define cpu_list tricore_cpu_list
246 
247 static inline int cpu_mmu_index(CPUTriCoreState *env, bool ifetch)
248 {
249     return 0;
250 }
251 
252 #include "exec/cpu-all.h"
253 
254 FIELD(TB_FLAGS, PRIV, 0, 2)
255 
256 void cpu_state_reset(CPUTriCoreState *s);
257 void tricore_tcg_init(void);
258 
259 static inline void cpu_get_tb_cpu_state(CPUTriCoreState *env, vaddr *pc,
260                                         uint64_t *cs_base, uint32_t *flags)
261 {
262     uint32_t new_flags = 0;
263     *pc = env->PC;
264     *cs_base = 0;
265 
266     new_flags |= FIELD_DP32(new_flags, TB_FLAGS, PRIV,
267             extract32(env->PSW, 10, 2));
268     *flags = new_flags;
269 }
270 
271 #define CPU_RESOLVING_TYPE TYPE_TRICORE_CPU
272 
273 /* helpers.c */
274 bool tricore_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
275                           MMUAccessType access_type, int mmu_idx,
276                           bool probe, uintptr_t retaddr);
277 
278 #endif /* TRICORE_CPU_H */
279