OpenOCD
mips32.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /***************************************************************************
4  * Copyright (C) 2008 by Spencer Oliver *
5  * spen@spen-soft.co.uk *
6  * *
7  * Copyright (C) 2008 by David T.L. Wong *
8  * *
9  * Copyright (C) 2011 by Drasko DRASKOVIC *
10  * drasko.draskovic@gmail.com *
11  ***************************************************************************/
12 
13 #ifndef OPENOCD_TARGET_MIPS32_H
14 #define OPENOCD_TARGET_MIPS32_H
15 
16 #include "target.h"
17 #include "mips32_pracc.h"
18 
19 #define MIPS32_COMMON_MAGIC 0xB320B320U
20 
25 #define KUSEG 0x00000000
26 #define KSEG0 0x80000000
27 #define KSEG1 0xa0000000
28 #define KSEG2 0xc0000000
29 #define KSEG3 0xe0000000
30 
32 #define KSEGX(a) ((a) & 0xe0000000)
33 
35 #define MIPS32_CONFIG0_KU_SHIFT 25
36 #define MIPS32_CONFIG0_KU_MASK (0x7 << MIPS32_CONFIG0_KU_SHIFT)
37 
38 #define MIPS32_CONFIG0_K0_SHIFT 0
39 #define MIPS32_CONFIG0_K0_MASK (0x7 << MIPS32_CONFIG0_K0_SHIFT)
40 
41 #define MIPS32_CONFIG0_K23_SHIFT 28
42 #define MIPS32_CONFIG0_K23_MASK (0x7 << MIPS32_CONFIG0_K23_SHIFT)
43 
44 #define MIPS32_CONFIG0_AR_SHIFT 10
45 #define MIPS32_CONFIG0_AR_MASK (0x7 << MIPS32_CONFIG0_AR_SHIFT)
46 
47 #define MIPS32_CONFIG1_DL_SHIFT 10
48 #define MIPS32_CONFIG1_DL_MASK (0x7 << MIPS32_CONFIG1_DL_SHIFT)
49 
50 #define MIPS32_CONFIG3_ISA_SHIFT 14
51 #define MIPS32_CONFIG3_ISA_MASK (3 << MIPS32_CONFIG3_ISA_SHIFT)
52 
53 #define MIPS32_ARCH_REL1 0x0
54 #define MIPS32_ARCH_REL2 0x1
55 
56 #define MIPS32_SCAN_DELAY_LEGACY_MODE 2000000
57 
58 /* offsets into mips32 core register cache */
59 enum {
60  MIPS32_PC = 37,
61  MIPS32_FIR = 71,
63 };
64 
69 };
70 
76 };
77 
79  int used;
80  uint32_t bp_value;
81  uint32_t reg_address;
82 };
83 
84 struct mips32_common {
85  unsigned int common_magic;
86 
87  void *arch_info;
89  struct mips_ejtag ejtag_info;
93 
94  /* working area for fastdata access */
96 
104 
105  /* register cache to processor synchronization */
106  int (*read_core_reg)(struct target *target, unsigned int num);
107  int (*write_core_reg)(struct target *target, unsigned int num);
108 };
109 
110 static inline struct mips32_common *
112 {
113  return target->arch_info;
114 }
115 
117  uint32_t num;
118  struct target *target;
120 };
121 
123  unsigned int common_magic;
125 };
126 
127 #define MIPS32_OP_ADDU 0x21u
128 #define MIPS32_OP_ADDIU 0x09u
129 #define MIPS32_OP_ANDI 0x0Cu
130 #define MIPS32_OP_BEQ 0x04u
131 #define MIPS32_OP_BGTZ 0x07u
132 #define MIPS32_OP_BNE 0x05u
133 #define MIPS32_OP_ADDI 0x08u
134 #define MIPS32_OP_AND 0x24u
135 #define MIPS32_OP_CACHE 0x2Fu
136 #define MIPS32_OP_COP0 0x10u
137 #define MIPS32_OP_J 0x02u
138 #define MIPS32_OP_JR 0x08u
139 #define MIPS32_OP_LUI 0x0Fu
140 #define MIPS32_OP_LW 0x23u
141 #define MIPS32_OP_LB 0x20u
142 #define MIPS32_OP_LBU 0x24u
143 #define MIPS32_OP_LHU 0x25u
144 #define MIPS32_OP_MFHI 0x10u
145 #define MIPS32_OP_MTHI 0x11u
146 #define MIPS32_OP_MFLO 0x12u
147 #define MIPS32_OP_MTLO 0x13u
148 #define MIPS32_OP_RDHWR 0x3Bu
149 #define MIPS32_OP_SB 0x28u
150 #define MIPS32_OP_SH 0x29u
151 #define MIPS32_OP_SW 0x2Bu
152 #define MIPS32_OP_ORI 0x0Du
153 #define MIPS32_OP_XORI 0x0Eu
154 #define MIPS32_OP_XOR 0x26u
155 #define MIPS32_OP_SLTU 0x2Bu
156 #define MIPS32_OP_SRL 0x03u
157 #define MIPS32_OP_SYNCI 0x1Fu
158 #define MIPS32_OP_SLL 0x00u
159 #define MIPS32_OP_SLTI 0x0Au
160 #define MIPS32_OP_MOVN 0x0Bu
161 
162 #define MIPS32_OP_REGIMM 0x01u
163 #define MIPS32_OP_SDBBP 0x3Fu
164 #define MIPS32_OP_SPECIAL 0x00u
165 #define MIPS32_OP_SPECIAL2 0x07u
166 #define MIPS32_OP_SPECIAL3 0x1Fu
167 
168 #define MIPS32_COP0_MF 0x00u
169 #define MIPS32_COP0_MT 0x04u
170 
171 #define MIPS32_R_INST(opcode, rs, rt, rd, shamt, funct) \
172  (((opcode) << 26) | ((rs) << 21) | ((rt) << 16) | ((rd) << 11) | ((shamt) << 6) | (funct))
173 #define MIPS32_I_INST(opcode, rs, rt, immd) \
174  (((opcode) << 26) | ((rs) << 21) | ((rt) << 16) | (immd))
175 #define MIPS32_J_INST(opcode, addr) (((opcode) << 26) | (addr))
176 
177 #define MIPS32_ISA_NOP 0
178 #define MIPS32_ISA_ADDI(tar, src, val) MIPS32_I_INST(MIPS32_OP_ADDI, src, tar, val)
179 #define MIPS32_ISA_ADDIU(tar, src, val) MIPS32_I_INST(MIPS32_OP_ADDIU, src, tar, val)
180 #define MIPS32_ISA_ADDU(dst, src, tar) MIPS32_R_INST(MIPS32_OP_SPECIAL, src, tar, dst, 0, MIPS32_OP_ADDU)
181 #define MIPS32_ISA_AND(dst, src, tar) MIPS32_R_INST(0, src, tar, dst, 0, MIPS32_OP_AND)
182 #define MIPS32_ISA_ANDI(tar, src, val) MIPS32_I_INST(MIPS32_OP_ANDI, src, tar, val)
183 
184 #define MIPS32_ISA_B(off) MIPS32_ISA_BEQ(0, 0, off)
185 #define MIPS32_ISA_BEQ(src, tar, off) MIPS32_I_INST(MIPS32_OP_BEQ, src, tar, off)
186 #define MIPS32_ISA_BGTZ(reg, off) MIPS32_I_INST(MIPS32_OP_BGTZ, reg, 0, off)
187 #define MIPS32_ISA_BNE(src, tar, off) MIPS32_I_INST(MIPS32_OP_BNE, src, tar, off)
188 #define MIPS32_ISA_CACHE(op, off, base) MIPS32_I_INST(MIPS32_OP_CACHE, base, op, off)
189 #define MIPS32_ISA_J(tar) MIPS32_J_INST(MIPS32_OP_J, (0x0FFFFFFFu & (tar)) >> 2)
190 #define MIPS32_ISA_JR(reg) MIPS32_R_INST(0, reg, 0, 0, 0, MIPS32_OP_JR)
191 
192 #define MIPS32_ISA_LB(reg, off, base) MIPS32_I_INST(MIPS32_OP_LB, base, reg, off)
193 #define MIPS32_ISA_LBU(reg, off, base) MIPS32_I_INST(MIPS32_OP_LBU, base, reg, off)
194 #define MIPS32_ISA_LHU(reg, off, base) MIPS32_I_INST(MIPS32_OP_LHU, base, reg, off)
195 #define MIPS32_ISA_LUI(reg, val) MIPS32_I_INST(MIPS32_OP_LUI, 0, reg, val)
196 #define MIPS32_ISA_LW(reg, off, base) MIPS32_I_INST(MIPS32_OP_LW, base, reg, off)
197 
198 #define MIPS32_ISA_MFC0(gpr, cpr, sel) MIPS32_R_INST(MIPS32_OP_COP0, MIPS32_COP0_MF, gpr, cpr, 0, sel)
199 #define MIPS32_ISA_MTC0(gpr, cpr, sel) MIPS32_R_INST(MIPS32_OP_COP0, MIPS32_COP0_MT, gpr, cpr, 0, sel)
200 #define MIPS32_ISA_MFLO(reg) MIPS32_R_INST(0, 0, 0, reg, 0, MIPS32_OP_MFLO)
201 #define MIPS32_ISA_MFHI(reg) MIPS32_R_INST(0, 0, 0, reg, 0, MIPS32_OP_MFHI)
202 #define MIPS32_ISA_MTLO(reg) MIPS32_R_INST(0, reg, 0, 0, 0, MIPS32_OP_MTLO)
203 #define MIPS32_ISA_MTHI(reg) MIPS32_R_INST(0, reg, 0, 0, 0, MIPS32_OP_MTHI)
204 
205 #define MIPS32_ISA_MOVN(dst, src, tar) MIPS32_R_INST(MIPS32_OP_SPECIAL, src, tar, dst, 0, MIPS32_OP_MOVN)
206 #define MIPS32_ISA_ORI(tar, src, val) MIPS32_I_INST(MIPS32_OP_ORI, src, tar, val)
207 #define MIPS32_ISA_RDHWR(tar, dst) MIPS32_R_INST(MIPS32_OP_SPECIAL3, 0, tar, dst, 0, MIPS32_OP_RDHWR)
208 #define MIPS32_ISA_SB(reg, off, base) MIPS32_I_INST(MIPS32_OP_SB, base, reg, off)
209 #define MIPS32_ISA_SH(reg, off, base) MIPS32_I_INST(MIPS32_OP_SH, base, reg, off)
210 #define MIPS32_ISA_SW(reg, off, base) MIPS32_I_INST(MIPS32_OP_SW, base, reg, off)
211 
212 #define MIPS32_ISA_SLL(dst, src, sa) MIPS32_R_INST(MIPS32_OP_SPECIAL, 0, src, dst, sa, MIPS32_OP_SLL)
213 #define MIPS32_ISA_SLTI(tar, src, val) MIPS32_I_INST(MIPS32_OP_SLTI, src, tar, val)
214 #define MIPS32_ISA_SLTU(dst, src, tar) MIPS32_R_INST(MIPS32_OP_SPECIAL, src, tar, dst, 0, MIPS32_OP_SLTU)
215 #define MIPS32_ISA_SRL(reg, src, off) MIPS32_R_INST(0, 0, src, reg, off, MIPS32_OP_SRL)
216 #define MIPS32_ISA_SYNC 0xFu
217 #define MIPS32_ISA_SYNCI(off, base) MIPS32_I_INST(MIPS32_OP_REGIMM, base, MIPS32_OP_SYNCI, off)
218 
219 #define MIPS32_ISA_XOR(reg, val1, val2) MIPS32_R_INST(0, val1, val2, reg, 0, MIPS32_OP_XOR)
220 #define MIPS32_ISA_XORI(tar, src, val) MIPS32_I_INST(MIPS32_OP_XORI, src, tar, val)
221 
222 #define MIPS32_ISA_SYNCI_STEP 0x1 /* reg num od address step size to be used with synci instruction */
223 
230 #define MIPS32_CACHE_D_HIT_WRITEBACK ((0x1 << 0) | (0x6 << 2))
231 #define MIPS32_CACHE_I_HIT_INVALIDATE ((0x0 << 0) | (0x4 << 2))
232 
233 /* ejtag specific instructions */
234 #define MIPS32_ISA_DRET 0x4200001Fu
235 /* MIPS32_ISA_J_INST(MIPS32_ISA_OP_SPECIAL2, MIPS32_ISA_OP_SDBBP) */
236 #define MIPS32_ISA_SDBBP 0x7000003Fu
237 #define MIPS16_ISA_SDBBP 0xE801u
238 
239 /*MICRO MIPS INSTRUCTIONS, see doc MD00582 */
240 #define POOL32A 0X00u
241 #define POOL32AXF 0x3Cu
242 #define POOL32B 0x08u
243 #define POOL32I 0x10u
244 #define MMIPS32_OP_ADDI 0x04u
245 #define MMIPS32_OP_ADDIU 0x0Cu
246 #define MMIPS32_OP_ADDU 0x150u
247 #define MMIPS32_OP_AND 0x250u
248 #define MMIPS32_OP_ANDI 0x34u
249 #define MMIPS32_OP_BEQ 0x25u
250 #define MMIPS32_OP_BGTZ 0x06u
251 #define MMIPS32_OP_BNE 0x2Du
252 #define MMIPS32_OP_CACHE 0x06u
253 #define MMIPS32_OP_J 0x35u
254 #define MMIPS32_OP_JALR 0x03Cu
255 #define MMIPS32_OP_LB 0x07u
256 #define MMIPS32_OP_LBU 0x05u
257 #define MMIPS32_OP_LHU 0x0Du
258 #define MMIPS32_OP_LUI 0x0Du
259 #define MMIPS32_OP_LW 0x3Fu
260 #define MMIPS32_OP_MFC0 0x03u
261 #define MMIPS32_OP_MTC0 0x0Bu
262 #define MMIPS32_OP_MFLO 0x075u
263 #define MMIPS32_OP_MFHI 0x035u
264 #define MMIPS32_OP_MTLO 0x0F5u
265 #define MMIPS32_OP_MTHI 0x0B5u
266 #define MMIPS32_OP_MOVN 0x018u
267 #define MMIPS32_OP_ORI 0x14u
268 #define MMIPS32_OP_RDHWR 0x1ACu
269 #define MMIPS32_OP_SB 0x06u
270 #define MMIPS32_OP_SH 0x0Eu
271 #define MMIPS32_OP_SW 0x3Eu
272 #define MMIPS32_OP_SLTU 0x390u
273 #define MMIPS32_OP_SLL 0x000u
274 #define MMIPS32_OP_SLTI 0x24u
275 #define MMIPS32_OP_SRL 0x040u
276 #define MMIPS32_OP_SYNCI 0x10u
277 #define MMIPS32_OP_XOR 0x310u
278 #define MMIPS32_OP_XORI 0x1Cu
279 
280 #define MMIPS32_ADDI(tar, src, val) MIPS32_I_INST(MMIPS32_OP_ADDI, tar, src, val)
281 #define MMIPS32_ADDIU(tar, src, val) MIPS32_I_INST(MMIPS32_OP_ADDIU, tar, src, val)
282 #define MMIPS32_ADDU(dst, src, tar) MIPS32_R_INST(POOL32A, tar, src, dst, 0, MMIPS32_OP_ADDU)
283 #define MMIPS32_AND(dst, src, tar) MIPS32_R_INST(POOL32A, tar, src, dst, 0, MMIPS32_OP_AND)
284 #define MMIPS32_ANDI(tar, src, val) MIPS32_I_INST(MMIPS32_OP_ANDI, tar, src, val)
285 
286 #define MMIPS32_B(off) MMIPS32_BEQ(0, 0, off)
287 #define MMIPS32_BEQ(src, tar, off) MIPS32_I_INST(MMIPS32_OP_BEQ, tar, src, off)
288 #define MMIPS32_BGTZ(reg, off) MIPS32_I_INST(POOL32I, MMIPS32_OP_BGTZ, reg, off)
289 #define MMIPS32_BNE(src, tar, off) MIPS32_I_INST(MMIPS32_OP_BNE, tar, src, off)
290 #define MMIPS32_CACHE(op, off, base) MIPS32_R_INST(POOL32B, op, base, MMIPS32_OP_CACHE << 1, 0, off)
291 
292 #define MMIPS32_J(tar) MIPS32_J_INST(MMIPS32_OP_J, ((0x07FFFFFFu & ((tar) >> 1))))
293 #define MMIPS32_JR(reg) MIPS32_R_INST(POOL32A, 0, reg, 0, MMIPS32_OP_JALR, POOL32AXF)
294 #define MMIPS32_LB(reg, off, base) MIPS32_I_INST(MMIPS32_OP_LB, reg, base, off)
295 #define MMIPS32_LBU(reg, off, base) MIPS32_I_INST(MMIPS32_OP_LBU, reg, base, off)
296 #define MMIPS32_LHU(reg, off, base) MIPS32_I_INST(MMIPS32_OP_LHU, reg, base, off)
297 #define MMIPS32_LUI(reg, val) MIPS32_I_INST(POOL32I, MMIPS32_OP_LUI, reg, val)
298 #define MMIPS32_LW(reg, off, base) MIPS32_I_INST(MMIPS32_OP_LW, reg, base, off)
299 
300 #define MMIPS32_MFC0(gpr, cpr, sel) MIPS32_R_INST(POOL32A, gpr, cpr, sel, MMIPS32_OP_MFC0, POOL32AXF)
301 #define MMIPS32_MFLO(reg) MIPS32_R_INST(POOL32A, 0, reg, 0, MMIPS32_OP_MFLO, POOL32AXF)
302 #define MMIPS32_MFHI(reg) MIPS32_R_INST(POOL32A, 0, reg, 0, MMIPS32_OP_MFHI, POOL32AXF)
303 #define MMIPS32_MTC0(gpr, cpr, sel) MIPS32_R_INST(POOL32A, gpr, cpr, sel, MMIPS32_OP_MTC0, POOL32AXF)
304 #define MMIPS32_MTLO(reg) MIPS32_R_INST(POOL32A, 0, reg, 0, MMIPS32_OP_MTLO, POOL32AXF)
305 #define MMIPS32_MTHI(reg) MIPS32_R_INST(POOL32A, 0, reg, 0, MMIPS32_OP_MTHI, POOL32AXF)
306 
307 #define MMIPS32_MOVN(dst, src, tar) MIPS32_R_INST(POOL32A, tar, src, dst, 0, MMIPS32_OP_MOVN)
308 #define MMIPS32_NOP 0
309 #define MMIPS32_ORI(tar, src, val) MIPS32_I_INST(MMIPS32_OP_ORI, tar, src, val)
310 #define MMIPS32_RDHWR(tar, dst) MIPS32_R_INST(POOL32A, dst, tar, 0, MMIPS32_OP_RDHWR, POOL32AXF)
311 #define MMIPS32_SB(reg, off, base) MIPS32_I_INST(MMIPS32_OP_SB, reg, base, off)
312 #define MMIPS32_SH(reg, off, base) MIPS32_I_INST(MMIPS32_OP_SH, reg, base, off)
313 #define MMIPS32_SW(reg, off, base) MIPS32_I_INST(MMIPS32_OP_SW, reg, base, off)
314 
315 #define MMIPS32_SRL(reg, src, off) MIPS32_R_INST(POOL32A, reg, src, off, 0, MMIPS32_OP_SRL)
316 #define MMIPS32_SLTU(dst, src, tar) MIPS32_R_INST(POOL32A, tar, src, dst, 0, MMIPS32_OP_SLTU)
317 #define MMIPS32_SYNCI(off, base) MIPS32_I_INST(POOL32I, MMIPS32_OP_SYNCI, base, off)
318 #define MMIPS32_SLL(dst, src, sa) MIPS32_R_INST(POOL32A, dst, src, sa, 0, MMIPS32_OP_SLL)
319 #define MMIPS32_SLTI(tar, src, val) MIPS32_I_INST(MMIPS32_OP_SLTI, tar, src, val)
320 #define MMIPS32_SYNC 0x00001A7Cu /* MIPS32_R_INST(POOL32A, 0, 0, 0, 0x1ADu, POOL32AXF) */
321 
322 #define MMIPS32_XOR(reg, val1, val2) MIPS32_R_INST(POOL32A, val1, val2, reg, 0, MMIPS32_OP_XOR)
323 #define MMIPS32_XORI(tar, src, val) MIPS32_I_INST(MMIPS32_OP_XORI, tar, src, val)
324 
325 #define MMIPS32_SYNCI_STEP 0x1u /* reg num od address step size to be used with synci instruction */
326 
327 
328 /* ejtag specific instructions */
329 #define MMIPS32_DRET 0x0000E37Cu /* MIPS32_R_INST(POOL32A, 0, 0, 0, 0x38D, POOL32AXF) */
330 #define MMIPS32_SDBBP 0x0000DB7Cu /* MIPS32_R_INST(POOL32A, 0, 0, 0, 0x1BD, POOL32AXF) */
331 #define MMIPS16_SDBBP 0x46C0u /* POOL16C instr */
332 
333 /* instruction code with isa selection */
334 #define MIPS32_NOP 0 /* same for both isa's */
335 #define MIPS32_ADDI(isa, tar, src, val) (isa ? MMIPS32_ADDI(tar, src, val) : MIPS32_ISA_ADDI(tar, src, val))
336 #define MIPS32_ADDIU(isa, tar, src, val) (isa ? MMIPS32_ADDIU(tar, src, val) : MIPS32_ISA_ADDIU(tar, src, val))
337 #define MIPS32_ADDU(isa, dst, src, tar) (isa ? MMIPS32_ADDU(dst, src, tar) : MIPS32_ISA_ADDU(dst, src, tar))
338 #define MIPS32_AND(isa, dst, src, tar) (isa ? MMIPS32_AND(dst, src, tar) : MIPS32_ISA_AND(dst, src, tar))
339 #define MIPS32_ANDI(isa, tar, src, val) (isa ? MMIPS32_ANDI(tar, src, val) : MIPS32_ISA_ANDI(tar, src, val))
340 
341 #define MIPS32_B(isa, off) (isa ? MMIPS32_B(off) : MIPS32_ISA_B(off))
342 #define MIPS32_BEQ(isa, src, tar, off) (isa ? MMIPS32_BEQ(src, tar, off) : MIPS32_ISA_BEQ(src, tar, off))
343 #define MIPS32_BGTZ(isa, reg, off) (isa ? MMIPS32_BGTZ(reg, off) : MIPS32_ISA_BGTZ(reg, off))
344 #define MIPS32_BNE(isa, src, tar, off) (isa ? MMIPS32_BNE(src, tar, off) : MIPS32_ISA_BNE(src, tar, off))
345 #define MIPS32_CACHE(isa, op, off, base) (isa ? MMIPS32_CACHE(op, off, base) : MIPS32_ISA_CACHE(op, off, base))
346 
347 #define MIPS32_J(isa, tar) (isa ? MMIPS32_J(tar) : MIPS32_ISA_J(tar))
348 #define MIPS32_JR(isa, reg) (isa ? MMIPS32_JR(reg) : MIPS32_ISA_JR(reg))
349 #define MIPS32_LB(isa, reg, off, base) (isa ? MMIPS32_LB(reg, off, base) : MIPS32_ISA_LB(reg, off, base))
350 #define MIPS32_LBU(isa, reg, off, base) (isa ? MMIPS32_LBU(reg, off, base) : MIPS32_ISA_LBU(reg, off, base))
351 #define MIPS32_LHU(isa, reg, off, base) (isa ? MMIPS32_LHU(reg, off, base) : MIPS32_ISA_LHU(reg, off, base))
352 #define MIPS32_LW(isa, reg, off, base) (isa ? MMIPS32_LW(reg, off, base) : MIPS32_ISA_LW(reg, off, base))
353 #define MIPS32_LUI(isa, reg, val) (isa ? MMIPS32_LUI(reg, val) : MIPS32_ISA_LUI(reg, val))
354 
355 #define MIPS32_MFC0(isa, gpr, cpr, sel) (isa ? MMIPS32_MFC0(gpr, cpr, sel) : MIPS32_ISA_MFC0(gpr, cpr, sel))
356 #define MIPS32_MTC0(isa, gpr, cpr, sel) (isa ? MMIPS32_MTC0(gpr, cpr, sel) : MIPS32_ISA_MTC0(gpr, cpr, sel))
357 #define MIPS32_MFLO(isa, reg) (isa ? MMIPS32_MFLO(reg) : MIPS32_ISA_MFLO(reg))
358 #define MIPS32_MFHI(isa, reg) (isa ? MMIPS32_MFHI(reg) : MIPS32_ISA_MFHI(reg))
359 #define MIPS32_MTLO(isa, reg) (isa ? MMIPS32_MTLO(reg) : MIPS32_ISA_MTLO(reg))
360 #define MIPS32_MTHI(isa, reg) (isa ? MMIPS32_MTHI(reg) : MIPS32_ISA_MTHI(reg))
361 
362 #define MIPS32_MOVN(isa, dst, src, tar) (isa ? MMIPS32_MOVN(dst, src, tar) : MIPS32_ISA_MOVN(dst, src, tar))
363 #define MIPS32_ORI(isa, tar, src, val) (isa ? MMIPS32_ORI(tar, src, val) : MIPS32_ISA_ORI(tar, src, val))
364 #define MIPS32_RDHWR(isa, tar, dst) (isa ? MMIPS32_RDHWR(tar, dst) : MIPS32_ISA_RDHWR(tar, dst))
365 #define MIPS32_SB(isa, reg, off, base) (isa ? MMIPS32_SB(reg, off, base) : MIPS32_ISA_SB(reg, off, base))
366 #define MIPS32_SH(isa, reg, off, base) (isa ? MMIPS32_SH(reg, off, base) : MIPS32_ISA_SH(reg, off, base))
367 #define MIPS32_SW(isa, reg, off, base) (isa ? MMIPS32_SW(reg, off, base) : MIPS32_ISA_SW(reg, off, base))
368 
369 #define MIPS32_SLL(isa, dst, src, sa) (isa ? MMIPS32_SLL(dst, src, sa) : MIPS32_ISA_SLL(dst, src, sa))
370 #define MIPS32_SLTI(isa, tar, src, val) (isa ? MMIPS32_SLTI(tar, src, val) : MIPS32_ISA_SLTI(tar, src, val))
371 #define MIPS32_SLTU(isa, dst, src, tar) (isa ? MMIPS32_SLTU(dst, src, tar) : MIPS32_ISA_SLTU(dst, src, tar))
372 #define MIPS32_SRL(isa, reg, src, off) (isa ? MMIPS32_SRL(reg, src, off) : MIPS32_ISA_SRL(reg, src, off))
373 
374 #define MIPS32_SYNCI(isa, off, base) (isa ? MMIPS32_SYNCI(off, base) : MIPS32_ISA_SYNCI(off, base))
375 #define MIPS32_SYNC(isa) (isa ? MMIPS32_SYNC : MIPS32_ISA_SYNC)
376 #define MIPS32_XOR(isa, reg, val1, val2) (isa ? MMIPS32_XOR(reg, val1, val2) : MIPS32_ISA_XOR(reg, val1, val2))
377 #define MIPS32_XORI(isa, tar, src, val) (isa ? MMIPS32_XORI(tar, src, val) : MIPS32_ISA_XORI(tar, src, val))
378 
379 #define MIPS32_SYNCI_STEP 0x1
380 
381 /* ejtag specific instructions */
382 #define MIPS32_DRET(isa) (isa ? MMIPS32_DRET : MIPS32_ISA_DRET)
383 #define MIPS32_SDBBP(isa) (isa ? MMIPS32_SDBBP : MIPS32_ISA_SDBBP)
384 
385 #define MIPS16_SDBBP(isa) (isa ? MMIPS16_SDBBP : MIPS16_ISA_SDBBP)
386 
387 extern const struct command_registration mips32_command_handlers[];
388 
389 int mips32_arch_state(struct target *target);
390 
392  struct mips32_common *mips32, struct jtag_tap *tap);
393 
395 int mips32_save_context(struct target *target);
396 
398 
400  int num_mem_params, struct mem_param *mem_params,
401  int num_reg_params, struct reg_param *reg_params,
402  target_addr_t entry_point, target_addr_t exit_point,
403  int timeout_ms, void *arch_info);
404 
406 
407 int mips32_enable_interrupts(struct target *target, int enable);
408 
409 int mips32_examine(struct target *target);
410 
412 
414 
416  struct reg **reg_list[], int *reg_list_size,
417  enum target_register_class reg_class);
419  uint32_t count, uint32_t *checksum);
421  struct target_memory_check_block *blocks, int num_blocks, uint8_t erased_value);
422 
423 #endif /* OPENOCD_TARGET_MIPS32_H */
int mips32_run_algorithm(struct target *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_params, target_addr_t entry_point, target_addr_t exit_point, int timeout_ms, void *arch_info)
Definition: mips32.c:418
struct reg_cache * mips32_build_reg_cache(struct target *target)
Definition: mips32.c:297
@ MIPS32_FIR
Definition: mips32.h:61
@ MIPS32_PC
Definition: mips32.h:60
@ MIPS32NUMCOREREGS
Definition: mips32.h:62
const struct command_registration mips32_command_handlers[]
Definition: mips32.c:1008
int mips32_read_config_regs(struct target *target)
Definition: mips32.c:697
int mips32_checksum_memory(struct target *target, target_addr_t address, uint32_t count, uint32_t *checksum)
Definition: mips32.c:740
static struct mips32_common * target_to_mips32(struct target *target)
Definition: mips32.h:111
int mips32_configure_break_unit(struct target *target)
Definition: mips32.c:606
int mips32_arch_state(struct target *target)
Definition: mips32.c:280
int mips32_examine(struct target *target)
Definition: mips32.c:534
int mips32_init_arch_info(struct target *target, struct mips32_common *mips32, struct jtag_tap *tap)
Definition: mips32.c:362
mips32_isa_imp
Definition: mips32.h:71
@ MMIPS32_ONLY
Definition: mips32.h:73
@ MIPS32_MMIPS32
Definition: mips32.h:75
@ MIPS32_MIPS16
Definition: mips32.h:74
@ MIPS32_ONLY
Definition: mips32.h:72
int mips32_save_context(struct target *target)
Definition: mips32.c:242
int mips32_enable_interrupts(struct target *target, int enable)
Definition: mips32.c:662
int mips32_blank_check_memory(struct target *target, struct target_memory_check_block *blocks, int num_blocks, uint8_t erased_value)
Checks whether a memory region is erased.
Definition: mips32.c:823
int mips32_register_commands(struct command_context *cmd_ctx)
mips32_isa_mode
Definition: mips32.h:65
@ MIPS32_ISA_MIPS16E
Definition: mips32.h:67
@ MIPS32_ISA_MMIPS32
Definition: mips32.h:68
@ MIPS32_ISA_MIPS32
Definition: mips32.h:66
int mips32_restore_context(struct target *target)
Definition: mips32.c:261
int mips32_get_gdb_reg_list(struct target *target, struct reg **reg_list[], int *reg_list_size, enum target_register_class reg_class)
Definition: mips32.c:225
struct target * target
Definition: rtt/rtt.c:26
Definition: jtag.h:100
enum mips32_isa_mode isa_mode
Definition: mips32.h:124
unsigned int common_magic
Definition: mips32.h:123
int bp_scanned
Definition: mips32.h:97
int(* write_core_reg)(struct target *target, unsigned int num)
Definition: mips32.h:107
uint32_t core_regs[MIPS32NUMCOREREGS]
Definition: mips32.h:90
unsigned int common_magic
Definition: mips32.h:85
int num_data_bpoints
Definition: mips32.h:99
struct mips32_comparator * data_break_list
Definition: mips32.h:103
struct mips32_comparator * inst_break_list
Definition: mips32.h:102
struct mips_ejtag ejtag_info
Definition: mips32.h:89
struct working_area * fast_data_area
Definition: mips32.h:95
int num_data_bpoints_avail
Definition: mips32.h:101
int num_inst_bpoints
Definition: mips32.h:98
int(* read_core_reg)(struct target *target, unsigned int num)
Definition: mips32.h:106
enum mips32_isa_imp isa_imp
Definition: mips32.h:92
enum mips32_isa_mode isa_mode
Definition: mips32.h:91
void * arch_info
Definition: mips32.h:87
struct reg_cache * core_cache
Definition: mips32.h:88
int num_inst_bpoints_avail
Definition: mips32.h:100
uint32_t bp_value
Definition: mips32.h:80
uint32_t reg_address
Definition: mips32.h:81
struct target * target
Definition: mips32.h:118
struct mips32_common * mips32_common
Definition: mips32.h:119
uint32_t num
Definition: mips32.h:117
struct reg * reg_list
Definition: register.h:147
Definition: register.h:111
Definition: target.h:120
void * arch_info
Definition: target.h:169
target_register_class
Definition: target.h:114
uint64_t target_addr_t
Definition: types.h:335
uint8_t count[4]
Definition: vdebug.c:22