OpenOCD
mips32.c
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) 2007,2008 Øyvind Harboe *
10  * oyvind.harboe@zylin.com *
11  * *
12  * Copyright (C) 2011 by Drasko DRASKOVIC *
13  * drasko.draskovic@gmail.com *
14  ***************************************************************************/
15 
16 #ifdef HAVE_CONFIG_H
17 #include "config.h"
18 #endif
19 
20 #include "mips32.h"
21 #include "mips_cpu.h"
22 #include "breakpoints.h"
23 #include "algorithm.h"
24 #include "register.h"
25 
26 static const char *mips_isa_strings[] = {
27  "MIPS32", "MIPS16", "", "MICRO MIPS32",
28 };
29 
30 #define MIPS32_GDB_FP_REG 1
31 
32 /*
33  * GDB registers
34  * based on gdb-7.6.2/gdb/features/mips-{fpu,cp0,cpu}.xml
35  */
36 static const struct {
37  unsigned id;
38  const char *name;
39  enum reg_type type;
40  const char *group;
41  const char *feature;
42  int size;
43 } mips32_regs[] = {
44  { 0, "r0", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
45  { 1, "r1", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
46  { 2, "r2", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
47  { 3, "r3", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
48  { 4, "r4", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
49  { 5, "r5", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
50  { 6, "r6", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
51  { 7, "r7", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
52  { 8, "r8", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
53  { 9, "r9", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
54  { 10, "r10", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
55  { 11, "r11", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
56  { 12, "r12", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
57  { 13, "r13", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
58  { 14, "r14", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
59  { 15, "r15", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
60  { 16, "r16", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
61  { 17, "r17", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
62  { 18, "r18", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
63  { 19, "r19", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
64  { 20, "r20", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
65  { 21, "r21", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
66  { 22, "r22", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
67  { 23, "r23", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
68  { 24, "r24", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
69  { 25, "r25", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
70  { 26, "r26", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
71  { 27, "r27", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
72  { 28, "r28", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
73  { 29, "r29", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
74  { 30, "r30", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
75  { 31, "r31", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
76  { 32, "lo", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
77  { 33, "hi", REG_TYPE_INT, NULL, "org.gnu.gdb.mips.cpu", 0 },
78 
80  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
82  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
84  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
86  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
88  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
90  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
92  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
94  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
96  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
98  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
100  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
102  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
104  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
106  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
108  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
110  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
112  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
114  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
116  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
118  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
120  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
122  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
124  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
126  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
128  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
130  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
132  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
134  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
136  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
138  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
140  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
142  "org.gnu.gdb.mips.fpu", MIPS32_GDB_FP_REG },
143 
144  { MIPS32_REGLIST_FPC_INDEX + 0, "fcsr", REG_TYPE_INT, "float",
145  "org.gnu.gdb.mips.fpu", 0 },
146  { MIPS32_REGLIST_FPC_INDEX + 1, "fir", REG_TYPE_INT, "float",
147  "org.gnu.gdb.mips.fpu", 0 },
148 
150  "org.gnu.gdb.mips.cp0", 0 },
152  "org.gnu.gdb.mips.cp0", 0 },
154  "org.gnu.gdb.mips.cp0", 0 },
156  "org.gnu.gdb.mips.cpu", 0 },
158  "org.gnu.gdb.mips.cp0", 0 },
159 };
160 
161 #define MIPS32_NUM_REGS ARRAY_SIZE(mips32_regs)
162 
163 
164 
165 #define zero 0
166 
167 #define AT 1
168 
169 #define v0 2
170 #define v1 3
171 
172 #define a0 4
173 #define a1 5
174 #define a2 6
175 #define a3 7
176 #define t0 8
177 #define t1 9
178 #define t2 10
179 #define t3 11
180 #define t4 12
181 #define t5 13
182 #define t6 14
183 #define t7 15
184 #define ta0 12 /* alias for $t4 */
185 #define ta1 13 /* alias for $t5 */
186 #define ta2 14 /* alias for $t6 */
187 #define ta3 15 /* alias for $t7 */
188 
189 #define s0 16
190 #define s1 17
191 #define s2 18
192 #define s3 19
193 #define s4 20
194 #define s5 21
195 #define s6 22
196 #define s7 23
197 #define s8 30 /* == fp */
198 
199 #define t8 24
200 #define t9 25
201 #define k0 26
202 #define k1 27
203 
204 #define gp 28
205 
206 #define sp 29
207 #define fp 30
208 #define ra 31
209 
210 
211 static const struct {
212  const char *name;
214  { "hi0"},
215  { "hi1"},
216  { "hi2"},
217  { "hi3"},
218  { "lo0"},
219  { "lo1"},
220  { "lo2"},
221  { "lo3"},
222  { "control"},
223 };
224 
225 static int mips32_get_core_reg(struct reg *reg)
226 {
227  int retval;
228  struct mips32_core_reg *mips32_reg = reg->arch_info;
229  struct target *target = mips32_reg->target;
230  struct mips32_common *mips32_target = target_to_mips32(target);
231 
232  if (target->state != TARGET_HALTED)
234 
235  retval = mips32_target->read_core_reg(target, mips32_reg->num);
236 
237  return retval;
238 }
239 
240 static int mips32_set_core_reg(struct reg *reg, uint8_t *buf)
241 {
242  struct mips32_core_reg *mips32_reg = reg->arch_info;
243  struct target *target = mips32_reg->target;
244  uint64_t value;
245 
246  if (reg->size == 64)
247  value = buf_get_u64(buf, 0, 64);
248  else
249  value = buf_get_u32(buf, 0, 32);
250 
251  if (target->state != TARGET_HALTED)
253 
254  if (reg->size == 64)
255  buf_set_u64(reg->value, 0, 64, value);
256  else
257  buf_set_u32(reg->value, 0, 32, value);
258 
259  reg->dirty = true;
260  reg->valid = true;
261 
262  return ERROR_OK;
263 }
264 
272 static void mips32_set_all_fpr_width(struct mips32_common *mips32, bool fp64)
273 {
274  struct reg_cache *cache = mips32->core_cache;
275  struct reg *reg_list = cache->reg_list;
276  int i;
277 
279  reg_list[i].size = fp64 ? 64 : 32;
281  }
282 }
283 
293 static void mips32_detect_fpr_mode_change(struct mips32_common *mips32, uint32_t cp0_status)
294 {
295  if (!mips32->fp_imp)
296  return;
297 
298  /* CP0.Status.FR indicates the working mode of floating-point register.
299  * When FP = 0, fpr can contain any 32bit data type,
300  * 64bit data types are stored in even-odd register pairs.
301  * When FP = 1, fpr can contain any data types.*/
302  bool fpu_in_64bit = ((cp0_status & BIT(MIPS32_CP0_STATUS_FR_SHIFT)) != 0);
303 
304  /* CP0.Status.CU1 indicated whether CoProcessor1(which is FPU) is present. */
305  bool fp_enabled = ((cp0_status & BIT(MIPS32_CP0_STATUS_CU1_SHIFT)) != 0);
306 
307  if (mips32->fpu_in_64bit != fpu_in_64bit) {
308  mips32->fpu_in_64bit = fpu_in_64bit;
309  mips32_set_all_fpr_width(mips32, fpu_in_64bit);
310  LOG_WARNING("** FP mode changed to %sbit, you must reconnect GDB **", fpu_in_64bit ? "64" : "32");
311  }
312 
313  if (mips32->fpu_enabled != fp_enabled) {
314  mips32->fpu_enabled = fp_enabled;
315  const char *s = fp_enabled ? "enabled" : "disabled";
316  LOG_WARNING("** FP is %s, register update %s **", s, s);
317  }
318 }
319 
320 static int mips32_read_core_reg(struct target *target, unsigned int num)
321 {
322  unsigned int cnum;
323  uint64_t reg_value = 0;
324 
325  /* get pointers to arch-specific information */
326  struct mips32_common *mips32 = target_to_mips32(target);
327 
328  if (num >= MIPS32_NUM_REGS)
330 
331  if (num >= MIPS32_REGLIST_C0_INDEX) {
332  /* CP0 */
333  cnum = num - MIPS32_REGLIST_C0_INDEX;
334  reg_value = mips32->core_regs.cp0[cnum];
335  buf_set_u32(mips32->core_cache->reg_list[num].value, 0, 32, reg_value);
336  if (cnum == MIPS32_REG_C0_STATUS_INDEX)
337  mips32_detect_fpr_mode_change(mips32, reg_value);
338  } else if (num >= MIPS32_REGLIST_FPC_INDEX) {
339  /* FPCR */
340  cnum = num - MIPS32_REGLIST_FPC_INDEX;
341  reg_value = mips32->core_regs.fpcr[cnum];
342  buf_set_u32(mips32->core_cache->reg_list[num].value, 0, 32, reg_value);
343  } else if (num >= MIPS32_REGLIST_FP_INDEX) {
344  /* FPR */
345  cnum = num - MIPS32_REGLIST_FP_INDEX;
346  reg_value = mips32->core_regs.fpr[cnum];
347  buf_set_u64(mips32->core_cache->reg_list[num].value, 0, 64, reg_value);
348  } else {
349  /* GPR */
350  cnum = num - MIPS32_REGLIST_GP_INDEX;
351  reg_value = mips32->core_regs.gpr[cnum];
352  buf_set_u32(mips32->core_cache->reg_list[num].value, 0, 32, reg_value);
353  }
354 
355  mips32->core_cache->reg_list[num].valid = true;
356  mips32->core_cache->reg_list[num].dirty = false;
357 
358  LOG_DEBUG("read core reg %i value 0x%" PRIx64 "", num, reg_value);
359 
360  return ERROR_OK;
361 }
362 
363 static int mips32_write_core_reg(struct target *target, unsigned int num)
364 {
365  unsigned int cnum;
366  uint64_t reg_value;
367 
368  /* get pointers to arch-specific information */
369  struct mips32_common *mips32 = target_to_mips32(target);
370 
371  if (num >= MIPS32_NUM_REGS)
373 
374  if (num >= MIPS32_REGLIST_C0_INDEX) {
375  /* CP0 */
376  cnum = num - MIPS32_REGLIST_C0_INDEX;
377  reg_value = buf_get_u32(mips32->core_cache->reg_list[num].value, 0, 32);
378  mips32->core_regs.cp0[cnum] = (uint32_t)reg_value;
379  if (cnum == MIPS32_REG_C0_STATUS_INDEX)
380  mips32_detect_fpr_mode_change(mips32, reg_value);
381  } else if (num >= MIPS32_REGLIST_FPC_INDEX) {
382  /* FPCR */
383  cnum = num - MIPS32_REGLIST_FPC_INDEX;
384  reg_value = buf_get_u32(mips32->core_cache->reg_list[num].value, 0, 32);
385  mips32->core_regs.fpcr[cnum] = (uint32_t)reg_value;
386  } else if (num >= MIPS32_REGLIST_FP_INDEX) {
387  /* FPR */
388  cnum = num - MIPS32_REGLIST_FP_INDEX;
389  reg_value = buf_get_u64(mips32->core_cache->reg_list[num].value, 0, 64);
390  mips32->core_regs.fpr[cnum] = reg_value;
391  } else {
392  /* GPR */
393  cnum = num - MIPS32_REGLIST_GP_INDEX;
394  reg_value = buf_get_u32(mips32->core_cache->reg_list[num].value, 0, 32);
395  mips32->core_regs.gpr[cnum] = (uint32_t)reg_value;
396  }
397 
398  LOG_DEBUG("write core reg %i value 0x%" PRIx64 "", num, reg_value);
399  mips32->core_cache->reg_list[num].valid = true;
400  mips32->core_cache->reg_list[num].dirty = false;
401 
402  return ERROR_OK;
403 }
404 
405 int mips32_get_gdb_reg_list(struct target *target, struct reg **reg_list[],
406  int *reg_list_size, enum target_register_class reg_class)
407 {
408  /* get pointers to arch-specific information */
409  struct mips32_common *mips32 = target_to_mips32(target);
410  unsigned int i;
411 
412  /* include floating point registers */
413  *reg_list_size = MIPS32_NUM_REGS;
414  *reg_list = malloc(sizeof(struct reg *) * (*reg_list_size));
415 
416  for (i = 0; i < MIPS32_NUM_REGS; i++)
417  (*reg_list)[i] = &mips32->core_cache->reg_list[i];
418 
419  return ERROR_OK;
420 }
421 
423 {
424  unsigned int i;
425 
426  /* get pointers to arch-specific information */
427  struct mips32_common *mips32 = target_to_mips32(target);
428 
429  /* read core registers */
430  int retval = mips32_pracc_read_regs(mips32);
431  if (retval != ERROR_OK) {
432  LOG_ERROR("Could not read core registers from target");
433  return retval;
434  }
435 
436  for (i = 0; i < MIPS32_NUM_REGS; i++) {
437  if (!mips32->core_cache->reg_list[i].valid)
438  mips32->read_core_reg(target, i);
439  }
440 
441  return ERROR_OK;
442 }
443 
445 {
446  unsigned int i;
447 
448  /* get pointers to arch-specific information */
449  struct mips32_common *mips32 = target_to_mips32(target);
450 
451  for (i = 0; i < MIPS32_NUM_REGS; i++) {
452  if (mips32->core_cache->reg_list[i].dirty)
453  mips32->write_core_reg(target, i);
454  }
455 
456  /* write core regs */
457  return mips32_pracc_write_regs(mips32);
458 }
459 
461 {
462  struct mips32_common *mips32 = target_to_mips32(target);
463 
464  LOG_USER("target halted in %s mode due to %s, pc: 0x%8.8" PRIx32 "",
465  mips_isa_strings[mips32->isa_mode],
468 
469  return ERROR_OK;
470 }
471 
472 static const struct reg_arch_type mips32_reg_type = {
474  .set = mips32_set_core_reg,
475 };
476 
478 {
479  /* get pointers to arch-specific information */
480  struct mips32_common *mips32 = target_to_mips32(target);
481 
482  int num_regs = MIPS32_NUM_REGS;
483  struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache);
484  struct reg_cache *cache = malloc(sizeof(struct reg_cache));
485  struct reg *reg_list = calloc(num_regs, sizeof(struct reg));
486  struct mips32_core_reg *arch_info = malloc(sizeof(struct mips32_core_reg) * num_regs);
487  struct reg_feature *feature;
488  int i;
489 
490  /* Build the process context cache */
491  cache->name = "mips32 registers";
492  cache->next = NULL;
493  cache->reg_list = reg_list;
494  cache->num_regs = num_regs;
495  (*cache_p) = cache;
496  mips32->core_cache = cache;
497 
498  for (i = 0; i < num_regs; i++) {
499  arch_info[i].num = mips32_regs[i].id;
500  arch_info[i].target = target;
501  arch_info[i].mips32_common = mips32;
502 
503  reg_list[i].name = mips32_regs[i].name;
504  reg_list[i].size = mips32_regs[i].size ? 64 : 32;
505 
506  reg_list[i].value = mips32_regs[i].size ? calloc(1, 8) : calloc(1, 4);
507  reg_list[i].valid = false;
508  reg_list[i].type = &mips32_reg_type;
509  reg_list[i].arch_info = &arch_info[i];
510 
511  reg_list[i].reg_data_type = calloc(1, sizeof(struct reg_data_type));
512  if (reg_list[i].reg_data_type)
513  reg_list[i].reg_data_type->type = mips32_regs[i].type;
514  else
515  LOG_ERROR("unable to allocate reg type list");
516 
517 
518  reg_list[i].dirty = false;
519 
520  reg_list[i].group = mips32_regs[i].group;
521  reg_list[i].number = i;
522  reg_list[i].exist = true;
523  reg_list[i].caller_save = true; /* gdb defaults to true */
524 
525  feature = calloc(1, sizeof(struct reg_feature));
526  if (feature) {
527  feature->name = mips32_regs[i].feature;
528  reg_list[i].feature = feature;
529  } else
530  LOG_ERROR("unable to allocate feature list");
531  }
532 
533  return cache;
534 }
535 
536 int mips32_init_arch_info(struct target *target, struct mips32_common *mips32, struct jtag_tap *tap)
537 {
538  target->arch_info = mips32;
540  mips32->fast_data_area = NULL;
541  mips32->isa_imp = MIPS32_ONLY; /* default */
542 
543  /* has breakpoint/watchpoint unit been scanned */
544  mips32->bp_scanned = 0;
545  mips32->data_break_list = NULL;
546 
547  mips32->ejtag_info.tap = tap;
550  /* if unknown endianness defaults to little endian, 1 */
553  mips32->ejtag_info.mode = 0; /* Initial default value */
554  mips32->ejtag_info.isa = 0; /* isa on debug mips32, updated by poll function */
555  mips32->ejtag_info.config_regs = 0; /* no config register read */
556  return ERROR_OK;
557 }
558 
559 /* run to exit point. return error if exit point was not reached. */
560 static int mips32_run_and_wait(struct target *target, target_addr_t entry_point,
561  unsigned int timeout_ms, target_addr_t exit_point, struct mips32_common *mips32)
562 {
563  uint32_t pc;
564  int retval;
565  /* This code relies on the target specific resume() and poll()->debug_entry()
566  * sequence to write register values to the processor and the read them back */
567  retval = target_resume(target, 0, entry_point, 0, 1);
568  if (retval != ERROR_OK)
569  return retval;
570 
571  retval = target_wait_state(target, TARGET_HALTED, timeout_ms);
572  /* If the target fails to halt due to the breakpoint, force a halt */
573  if (retval != ERROR_OK || target->state != TARGET_HALTED) {
574  retval = target_halt(target);
575  if (retval != ERROR_OK)
576  return retval;
577  retval = target_wait_state(target, TARGET_HALTED, 500);
578  if (retval != ERROR_OK)
579  return retval;
580  return ERROR_TARGET_TIMEOUT;
581  }
582 
584  if (exit_point && (pc != exit_point)) {
585  LOG_DEBUG("failed algorithm halted at 0x%" PRIx32 " ", pc);
586  return ERROR_TARGET_TIMEOUT;
587  }
588 
589  return ERROR_OK;
590 }
591 
592 int mips32_run_algorithm(struct target *target, int num_mem_params,
593  struct mem_param *mem_params, int num_reg_params,
594  struct reg_param *reg_params, target_addr_t entry_point,
595  target_addr_t exit_point, unsigned int timeout_ms, void *arch_info)
596 {
597  struct mips32_common *mips32 = target_to_mips32(target);
598  struct mips32_algorithm *mips32_algorithm_info = arch_info;
599  enum mips32_isa_mode isa_mode = mips32->isa_mode;
600 
601  uint32_t context[MIPS32_NUM_REGS];
602  int retval = ERROR_OK;
603 
604  LOG_DEBUG("Running algorithm");
605 
606  /* NOTE: mips32_run_algorithm requires that each algorithm uses a software breakpoint
607  * at the exit point */
608 
609  if (mips32->common_magic != MIPS32_COMMON_MAGIC) {
610  LOG_ERROR("current target isn't a MIPS32 target");
611  return ERROR_TARGET_INVALID;
612  }
613 
614  if (target->state != TARGET_HALTED) {
615  LOG_TARGET_ERROR(target, "not halted (run target algo)");
617  }
618 
619  /* refresh core register cache */
620  for (unsigned int i = 0; i < MIPS32_NUM_REGS; i++) {
621  if (!mips32->core_cache->reg_list[i].valid)
622  mips32->read_core_reg(target, i);
623  context[i] = buf_get_u32(mips32->core_cache->reg_list[i].value, 0, 32);
624  }
625 
626  for (int i = 0; i < num_mem_params; i++) {
627  if (mem_params[i].direction == PARAM_IN)
628  continue;
629  retval = target_write_buffer(target, mem_params[i].address,
630  mem_params[i].size, mem_params[i].value);
631  if (retval != ERROR_OK)
632  return retval;
633  }
634 
635  for (int i = 0; i < num_reg_params; i++) {
636  if (reg_params[i].direction == PARAM_IN)
637  continue;
638 
639  struct reg *reg = register_get_by_name(mips32->core_cache, reg_params[i].reg_name, false);
640 
641  if (!reg) {
642  LOG_ERROR("BUG: register '%s' not found", reg_params[i].reg_name);
644  }
645 
646  if (reg->size != reg_params[i].size) {
647  LOG_ERROR("BUG: register '%s' size doesn't match reg_params[i].size",
648  reg_params[i].reg_name);
650  }
651 
652  mips32_set_core_reg(reg, reg_params[i].value);
653  }
654 
655  mips32->isa_mode = mips32_algorithm_info->isa_mode;
656 
657  retval = mips32_run_and_wait(target, entry_point, timeout_ms, exit_point, mips32);
658 
659  if (retval != ERROR_OK)
660  return retval;
661 
662  for (int i = 0; i < num_mem_params; i++) {
663  if (mem_params[i].direction != PARAM_OUT) {
664  retval = target_read_buffer(target, mem_params[i].address, mem_params[i].size,
665  mem_params[i].value);
666  if (retval != ERROR_OK)
667  return retval;
668  }
669  }
670 
671  for (int i = 0; i < num_reg_params; i++) {
672  if (reg_params[i].direction != PARAM_OUT) {
673  struct reg *reg = register_get_by_name(mips32->core_cache, reg_params[i].reg_name, false);
674  if (!reg) {
675  LOG_ERROR("BUG: register '%s' not found", reg_params[i].reg_name);
677  }
678 
679  if (reg->size != reg_params[i].size) {
680  LOG_ERROR("BUG: register '%s' size doesn't match reg_params[i].size",
681  reg_params[i].reg_name);
683  }
684 
685  buf_set_u32(reg_params[i].value, 0, 32, buf_get_u32(reg->value, 0, 32));
686  }
687  }
688 
689  /* restore everything we saved before */
690  for (unsigned int i = 0; i < MIPS32_NUM_REGS; i++) {
691  uint32_t regvalue;
692  regvalue = buf_get_u32(mips32->core_cache->reg_list[i].value, 0, 32);
693  if (regvalue != context[i]) {
694  LOG_DEBUG("restoring register %s with value 0x%8.8" PRIx32,
695  mips32->core_cache->reg_list[i].name, context[i]);
696  buf_set_u32(mips32->core_cache->reg_list[i].value,
697  0, 32, context[i]);
698  mips32->core_cache->reg_list[i].valid = true;
699  mips32->core_cache->reg_list[i].dirty = true;
700  }
701  }
702 
703  mips32->isa_mode = isa_mode;
704 
705  return ERROR_OK;
706 }
707 
709 {
710  struct mips32_common *mips32 = target_to_mips32(target);
711 
712  if (!target_was_examined(target)) {
714 
715  /* we will configure later */
716  mips32->bp_scanned = 0;
717  mips32->num_inst_bpoints = 0;
718  mips32->num_data_bpoints = 0;
719  mips32->num_inst_bpoints_avail = 0;
720  mips32->num_data_bpoints_avail = 0;
721  }
722 
723  return ERROR_OK;
724 }
725 
726 static int mips32_configure_ibs(struct target *target)
727 {
728  struct mips32_common *mips32 = target_to_mips32(target);
729  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
730  int retval, i;
731  uint32_t bpinfo;
732 
733  /* get number of inst breakpoints */
734  retval = target_read_u32(target, ejtag_info->ejtag_ibs_addr, &bpinfo);
735  if (retval != ERROR_OK)
736  return retval;
737 
738  mips32->num_inst_bpoints = (bpinfo >> 24) & 0x0F;
739  mips32->num_inst_bpoints_avail = mips32->num_inst_bpoints;
740  mips32->inst_break_list = calloc(mips32->num_inst_bpoints,
741  sizeof(struct mips32_comparator));
742 
743  for (i = 0; i < mips32->num_inst_bpoints; i++)
744  mips32->inst_break_list[i].reg_address =
745  ejtag_info->ejtag_iba0_addr +
746  (ejtag_info->ejtag_iba_step_size * i);
747 
748  /* clear IBIS reg */
749  retval = target_write_u32(target, ejtag_info->ejtag_ibs_addr, 0);
750  return retval;
751 }
752 
753 static int mips32_configure_dbs(struct target *target)
754 {
755  struct mips32_common *mips32 = target_to_mips32(target);
756  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
757  int retval, i;
758  uint32_t bpinfo;
759 
760  /* get number of data breakpoints */
761  retval = target_read_u32(target, ejtag_info->ejtag_dbs_addr, &bpinfo);
762  if (retval != ERROR_OK)
763  return retval;
764 
765  mips32->num_data_bpoints = (bpinfo >> 24) & 0x0F;
766  mips32->num_data_bpoints_avail = mips32->num_data_bpoints;
767  mips32->data_break_list = calloc(mips32->num_data_bpoints,
768  sizeof(struct mips32_comparator));
769 
770  for (i = 0; i < mips32->num_data_bpoints; i++)
771  mips32->data_break_list[i].reg_address =
772  ejtag_info->ejtag_dba0_addr +
773  (ejtag_info->ejtag_dba_step_size * i);
774 
775  /* clear DBIS reg */
776  retval = target_write_u32(target, ejtag_info->ejtag_dbs_addr, 0);
777  return retval;
778 }
779 
781 {
782  /* get pointers to arch-specific information */
783  struct mips32_common *mips32 = target_to_mips32(target);
784  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
785  int retval;
786  uint32_t dcr;
787 
788  if (mips32->bp_scanned)
789  return ERROR_OK;
790 
791  /* get info about breakpoint support */
792  retval = target_read_u32(target, EJTAG_DCR, &dcr);
793  if (retval != ERROR_OK)
794  return retval;
795 
796  /* EJTAG 2.0 defines IB and DB bits in IMP instead of DCR. */
797  if (ejtag_info->ejtag_version == EJTAG_VERSION_20) {
798  ejtag_info->debug_caps = dcr & EJTAG_DCR_ENM;
799  if (!(ejtag_info->impcode & EJTAG_V20_IMP_NOIB))
800  ejtag_info->debug_caps |= EJTAG_DCR_IB;
801  if (!(ejtag_info->impcode & EJTAG_V20_IMP_NODB))
802  ejtag_info->debug_caps |= EJTAG_DCR_DB;
803  } else
804  /* keep debug caps for later use */
805  ejtag_info->debug_caps = dcr & (EJTAG_DCR_ENM
807 
808 
809  if (ejtag_info->debug_caps & EJTAG_DCR_IB) {
810  retval = mips32_configure_ibs(target);
811  if (retval != ERROR_OK)
812  return retval;
813  }
814 
815  if (ejtag_info->debug_caps & EJTAG_DCR_DB) {
816  retval = mips32_configure_dbs(target);
817  if (retval != ERROR_OK)
818  return retval;
819  }
820 
821  /* check if target endianness settings matches debug control register */
822  if (((ejtag_info->debug_caps & EJTAG_DCR_ENM)
824  (!(ejtag_info->debug_caps & EJTAG_DCR_ENM)
826  LOG_WARNING("DCR endianness settings does not match target settings");
827 
828  LOG_DEBUG("DCR 0x%" PRIx32 " numinst %i numdata %i", dcr, mips32->num_inst_bpoints,
829  mips32->num_data_bpoints);
830 
831  mips32->bp_scanned = 1;
832 
833  return ERROR_OK;
834 }
835 
836 int mips32_enable_interrupts(struct target *target, int enable)
837 {
838  int retval;
839  int update = 0;
840  uint32_t dcr;
841 
842  /* read debug control register */
843  retval = target_read_u32(target, EJTAG_DCR, &dcr);
844  if (retval != ERROR_OK)
845  return retval;
846 
847  if (enable) {
848  if (!(dcr & EJTAG_DCR_INTE)) {
849  /* enable interrupts */
850  dcr |= EJTAG_DCR_INTE;
851  update = 1;
852  }
853  } else {
854  if (dcr & EJTAG_DCR_INTE) {
855  /* disable interrupts */
856  dcr &= ~EJTAG_DCR_INTE;
857  update = 1;
858  }
859  }
860 
861  if (update) {
862  retval = target_write_u32(target, EJTAG_DCR, dcr);
863  if (retval != ERROR_OK)
864  return retval;
865  }
866 
867  return ERROR_OK;
868 }
869 
870 /* read processor identification cp0 register */
871 static int mips32_read_c0_prid(struct target *target)
872 {
873  struct mips32_common *mips32 = target_to_mips32(target);
874  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
875  int retval;
876 
877  retval = mips32_cp0_read(ejtag_info, &mips32->prid, 15, 0);
878  if (retval != ERROR_OK) {
879  LOG_ERROR("processor id not available, failed to read cp0 PRId register");
880  mips32->prid = 0;
881  }
882 
883  return retval;
884 }
885 
896 static const struct cpu_entry *mips32_find_cpu_by_prid(uint32_t prid)
897 {
898  /* AMD/Alchemy CPU uses Company Options instead of Processor ID.
899  * Therefore an extra transform step for prid to map it to an assigned ID,
900  */
902  /* Clears Processor ID field, then put Company Option field to its place */
903  prid = (prid & 0xFFFF00FF) | ((prid & 0xFF000000) >> 16);
904  }
905 
906  /* Mask out Company Option */
907  prid &= 0x00FFFFFF;
908 
909  for (unsigned int i = 0; i < MIPS32_NUM_CPU_ENTRIES; i++) {
910  const struct cpu_entry *entry = &mips32_cpu_entry[i];
911  if ((entry->prid & MIPS32_CORE_MASK) <= prid && prid <= entry->prid)
912  return entry;
913  }
914 
915  /* If nothing matched, then return unknown entry */
917 }
918 
919 static bool mips32_cpu_is_lexra(struct mips_ejtag *ejtag_info)
920 {
921  return (ejtag_info->prid & PRID_COMP_MASK) == PRID_COMP_LEXRA;
922 }
923 
924 static int mips32_cpu_get_release(struct mips_ejtag *ejtag_info)
925 {
926  return (ejtag_info->config[0] & MIPS32_CONFIG0_AR_MASK) >> MIPS32_CONFIG0_AR_SHIFT;
927 }
928 
939 bool mips32_cpu_support_sync(struct mips_ejtag *ejtag_info)
940 {
941  return !mips32_cpu_is_lexra(ejtag_info);
942 }
943 
953 {
954  return mips32_cpu_get_release(ejtag_info) > MIPS32_RELEASE_1;
955 }
956 
972 {
973  struct mips32_common *mips32 = target_to_mips32(target);
974  int retval;
975 
976  if (mips32->prid)
977  return ERROR_OK; /* Already probed once, return early. */
978 
979  retval = mips32_read_c0_prid(target);
980  if (retval != ERROR_OK)
981  return retval;
982 
983  const struct cpu_entry *entry = mips32_find_cpu_by_prid(mips32->prid);
984 
985  switch (mips32->prid & PRID_COMP_MASK) {
987  switch (mips32->prid & PRID_IMP_MASK) {
989  mips32->cpu_quirks |= EJTAG_QUIRK_PAD_DRET;
990  break;
991  default:
992  break;
993  }
994  break;
995 
996  /* Determine which CP0 registers are available in the current processor core */
997  case PRID_COMP_MTI:
998  switch (entry->prid & PRID_IMP_MASK) {
999  case PRID_IMP_MAPTIV_UC:
1000  mips32->cp0_mask = MIPS_CP0_MAPTIV_UC;
1001  break;
1002  case PRID_IMP_MAPTIV_UP:
1003  case PRID_IMP_M5150:
1004  mips32->cp0_mask = MIPS_CP0_MAPTIV_UP;
1005  break;
1006  case PRID_IMP_IAPTIV:
1007  case PRID_IMP_IAPTIV_CM:
1008  mips32->cp0_mask = MIPS_CP0_IAPTIV;
1009  break;
1010  default:
1011  /* CP0 mask should be the same as MK4 by default */
1012  mips32->cp0_mask = MIPS_CP0_MK4;
1013  break;
1014  }
1015 
1016  default:
1017  break;
1018  }
1019 
1020  mips32->cpu_info = entry;
1021  LOG_DEBUG("CPU: %s (PRId %08x)", entry->cpu_name, mips32->prid);
1022 
1023  return ERROR_OK;
1024 }
1025 
1026 /* reads dsp implementation info from CP0 Config3 register {DSPP, DSPREV}*/
1027 static void mips32_read_config_dsp(struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
1028 {
1029  uint32_t dsp_present = ((ejtag_info->config[3] & MIPS32_CONFIG3_DSPP_MASK) >> MIPS32_CONFIG3_DSPP_SHIFT);
1030  if (dsp_present) {
1031  mips32->dsp_imp = ((ejtag_info->config[3] & MIPS32_CONFIG3_DSPREV_MASK) >> MIPS32_CONFIG3_DSPREV_SHIFT) + 1;
1032  LOG_USER("DSP implemented: %s, rev %d", "yes", mips32->dsp_imp);
1033  } else {
1034  LOG_USER("DSP implemented: %s", "no");
1035  }
1036 }
1037 
1038 /* read fpu implementation info from CP0 Config1 register {CU1, FP}*/
1039 static int mips32_read_config_fpu(struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
1040 {
1041  int retval;
1042  uint32_t fp_imp = (ejtag_info->config[1] & MIPS32_CONFIG1_FP_MASK) >> MIPS32_CONFIG1_FP_SHIFT;
1043  char buf[60] = {0};
1044  if (!fp_imp) {
1045  LOG_USER("FPU implemented: %s", "no");
1046  mips32->fp_imp = MIPS32_FP_IMP_NONE;
1047  return ERROR_OK;
1048  }
1049  uint32_t fir_value, status_value;
1050  bool fpu_in_64bit, fp_enabled;
1051 
1052  retval = mips32_cp0_read(ejtag_info, &status_value, MIPS32_C0_STATUS, 0);
1053  if (retval != ERROR_OK) {
1054  LOG_ERROR("Failed to read cp0 status register");
1055  return retval;
1056  }
1057 
1058  fpu_in_64bit = (status_value & BIT(MIPS32_CP0_STATUS_FR_SHIFT)) != 0;
1059  fp_enabled = (status_value & BIT(MIPS32_CP0_STATUS_CU1_SHIFT)) != 0;
1060  if (fp_enabled) {
1061  retval = mips32_cp1_control_read(ejtag_info, &fir_value, 0);
1062  if (retval != ERROR_OK) {
1063  LOG_ERROR("Failed to read cp1 FIR register");
1064  return retval;
1065  }
1066 
1067  if ((fir_value >> MIPS32_CP1_FIR_F64_SHIFT) & 0x1)
1068  fp_imp++;
1069  } else {
1070  /* This is the only condition that writes to buf */
1071  snprintf(buf, sizeof(buf), "yes, disabled");
1072  fp_imp = MIPS32_FP_IMP_UNKNOWN;
1073  }
1074 
1075  mips32->fpu_in_64bit = fpu_in_64bit;
1076  mips32->fpu_enabled = fp_enabled;
1077 
1078  mips32_set_all_fpr_width(mips32, fpu_in_64bit);
1079 
1080  /* If fpu is not disabled, print out more information */
1081  if (!buf[0])
1082  snprintf(buf, sizeof(buf), "yes, %sbit (%s, working in %sbit)",
1083  fp_imp == MIPS32_FP_IMP_64 ? "64" : "32",
1084  fp_enabled ? "enabled" : "disabled",
1085  fpu_in_64bit ? "64" : "32");
1086 
1087  LOG_USER("FPU implemented: %s", buf);
1088  mips32->fp_imp = fp_imp;
1089 
1090  return ERROR_OK;
1091 }
1092 
1109 static void mips32_read_config_fdc(struct mips32_common *mips32, struct mips_ejtag *ejtag_info, uint32_t dcr)
1110 {
1111  if (((ejtag_info->config[3] & MIPS32_CONFIG3_CDMM_MASK) != 0) && ((dcr & EJTAG_DCR_FDC) != 0)) {
1112  mips32->fdc = 1;
1113  mips32->semihosting = 1;
1114  } else {
1115  mips32->fdc = 0;
1116  mips32->semihosting = 0;
1117  }
1118 }
1119 
1120 /* read config to config3 cp0 registers and log isa implementation */
1122 {
1123  struct mips32_common *mips32 = target_to_mips32(target);
1124  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
1125  char buf[60] = {0};
1126  int retval;
1127 
1128  if (ejtag_info->config_regs == 0)
1129  for (int i = 0; i != 4; i++) {
1130  retval = mips32_cp0_read(ejtag_info, &ejtag_info->config[i], 16, i);
1131  if (retval != ERROR_OK) {
1132  LOG_ERROR("isa info not available, failed to read cp0 config register: %" PRId32, i);
1133  ejtag_info->config_regs = 0;
1134  return retval;
1135  }
1136  ejtag_info->config_regs = i + 1;
1137  if ((ejtag_info->config[i] & (1 << 31)) == 0)
1138  break; /* no more config registers implemented */
1139  }
1140  else
1141  return ERROR_OK; /* already successfully read */
1142 
1143  LOG_DEBUG("read %"PRIu32" config registers", ejtag_info->config_regs);
1144 
1145  mips32->isa_rel = (ejtag_info->config[0] & MIPS32_CONFIG0_AR_MASK) >> MIPS32_CONFIG0_AR_SHIFT;
1146  snprintf(buf, sizeof(buf), ", release %s(AR=%d)",
1147  mips32->isa_rel == MIPS32_RELEASE_1 ? "1"
1148  : mips32->isa_rel == MIPS32_RELEASE_2 ? "2"
1149  : mips32->isa_rel == MIPS32_RELEASE_6 ? "6"
1150  : "unknown", mips32->isa_rel);
1151 
1152  if (ejtag_info->impcode & EJTAG_IMP_MIPS16) {
1153  mips32->isa_imp = MIPS32_MIPS16;
1154  LOG_USER("ISA implemented: %s%s", "MIPS32, MIPS16", buf);
1155  } else if (ejtag_info->config_regs >= 4) { /* config3 implemented */
1156  unsigned isa_imp = (ejtag_info->config[3] & MIPS32_CONFIG3_ISA_MASK) >> MIPS32_CONFIG3_ISA_SHIFT;
1157  if (isa_imp == 1) {
1158  mips32->isa_imp = MMIPS32_ONLY;
1159  LOG_USER("ISA implemented: %s%s", "microMIPS32", buf);
1160 
1161  } else if (isa_imp != 0) {
1162  mips32->isa_imp = MIPS32_MMIPS32;
1163  LOG_USER("ISA implemented: %s%s", "MIPS32, microMIPS32", buf);
1164  }
1165  } else if (mips32->isa_imp == MIPS32_ONLY) {
1166  /* initial default value */
1167  LOG_USER("ISA implemented: %s%s", "MIPS32", buf);
1168  }
1169 
1170  /* Retrieve DSP info */
1171  mips32_read_config_dsp(mips32, ejtag_info);
1172 
1173  /* Retrieve if Float Point CoProcessor Implemented */
1174  retval = mips32_read_config_fpu(mips32, ejtag_info);
1175  if (retval != ERROR_OK) {
1176  LOG_ERROR("fpu info is not available, error while reading cp0 status");
1177  mips32->fp_imp = MIPS32_FP_IMP_NONE;
1178  return retval;
1179  }
1180 
1181  uint32_t dcr;
1182 
1183  retval = target_read_u32(target, EJTAG_DCR, &dcr);
1184  if (retval != ERROR_OK) {
1185  LOG_ERROR("failed to read EJTAG_DCR register");
1186  return retval;
1187  }
1188 
1189  /* Determine if FDC and CDMM are implemented for this core */
1190  mips32_read_config_fdc(mips32, ejtag_info, dcr);
1191 
1192  return ERROR_OK;
1193 }
1194 
1196  uint32_t count, uint32_t *checksum)
1197 {
1198  struct working_area *crc_algorithm;
1199  struct reg_param reg_params[2];
1200  struct mips32_algorithm mips32_info;
1201 
1202  struct mips32_common *mips32 = target_to_mips32(target);
1203  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
1204 
1205  /* see contrib/loaders/checksum/mips32.s for src */
1206  uint32_t isa = ejtag_info->isa ? 1 : 0;
1207 
1208  uint32_t mips_crc_code[] = {
1209  MIPS32_ADDIU(isa, 12, 4, 0), /* addiu $t4, $a0, 0 */
1210  MIPS32_ADDIU(isa, 10, 5, 0), /* addiu $t2, $a1, 0 */
1211  MIPS32_ADDIU(isa, 4, 0, 0xFFFF), /* addiu $a0, $zero, 0xffff */
1212  MIPS32_BEQ(isa, 0, 0, 0x10 << isa), /* beq $zero, $zero, ncomp */
1213  MIPS32_ADDIU(isa, 11, 0, 0), /* addiu $t3, $zero, 0 */
1214  /* nbyte: */
1215  MIPS32_LB(isa, 5, 0, 12), /* lb $a1, ($t4) */
1216  MIPS32_ADDI(isa, 12, 12, 1), /* addi $t4, $t4, 1 */
1217  MIPS32_SLL(isa, 5, 5, 24), /* sll $a1, $a1, 24 */
1218  MIPS32_LUI(isa, 2, 0x04c1), /* lui $v0, 0x04c1 */
1219  MIPS32_XOR(isa, 4, 4, 5), /* xor $a0, $a0, $a1 */
1220  MIPS32_ORI(isa, 7, 2, 0x1db7), /* ori $a3, $v0, 0x1db7 */
1221  MIPS32_ADDU(isa, 6, 0, 0), /* addu $a2, $zero, $zero */
1222  /* loop */
1223  MIPS32_SLL(isa, 8, 4, 1), /* sll $t0, $a0, 1 */
1224  MIPS32_ADDIU(isa, 6, 6, 1), /* addiu $a2, $a2, 1 */
1225  MIPS32_SLTI(isa, 4, 4, 0), /* slti $a0, $a0, 0 */
1226  MIPS32_XOR(isa, 9, 8, 7), /* xor $t1, $t0, $a3 */
1227  MIPS32_MOVN(isa, 8, 9, 4), /* movn $t0, $t1, $a0 */
1228  MIPS32_SLTI(isa, 3, 6, 8), /* slti $v1, $a2, 8 */
1229  MIPS32_BNE(isa, 3, 0, NEG16(7 << isa)), /* bne $v1, $zero, loop */
1230  MIPS32_ADDU(isa, 4, 8, 0), /* addu $a0, $t0, $zero */
1231  /* ncomp */
1232  MIPS32_BNE(isa, 10, 11, NEG16(16 << isa)), /* bne $t2, $t3, nbyte */
1233  MIPS32_ADDIU(isa, 11, 11, 1), /* addiu $t3, $t3, 1 */
1234  MIPS32_SDBBP(isa),
1235  };
1236 
1237  /* make sure we have a working area */
1238  if (target_alloc_working_area(target, sizeof(mips_crc_code), &crc_algorithm) != ERROR_OK)
1240 
1241  pracc_swap16_array(ejtag_info, mips_crc_code, ARRAY_SIZE(mips_crc_code));
1242 
1243  /* convert mips crc code into a buffer in target endianness */
1244  uint8_t mips_crc_code_8[sizeof(mips_crc_code)];
1245  target_buffer_set_u32_array(target, mips_crc_code_8,
1246  ARRAY_SIZE(mips_crc_code), mips_crc_code);
1247 
1248  int retval = target_write_buffer(target, crc_algorithm->address, sizeof(mips_crc_code), mips_crc_code_8);
1249  if (retval != ERROR_OK)
1250  return retval;
1251 
1252  mips32_info.common_magic = MIPS32_COMMON_MAGIC;
1253  mips32_info.isa_mode = isa ? MIPS32_ISA_MMIPS32 : MIPS32_ISA_MIPS32; /* run isa as in debug mode */
1254 
1255  init_reg_param(&reg_params[0], "r4", 32, PARAM_IN_OUT);
1256  buf_set_u32(reg_params[0].value, 0, 32, address);
1257 
1258  init_reg_param(&reg_params[1], "r5", 32, PARAM_OUT);
1259  buf_set_u32(reg_params[1].value, 0, 32, count);
1260 
1261  unsigned int timeout = 20000 * (1 + (count / (1024 * 1024)));
1262 
1263  retval = target_run_algorithm(target, 0, NULL, 2, reg_params, crc_algorithm->address,
1264  crc_algorithm->address + (sizeof(mips_crc_code) - 4), timeout, &mips32_info);
1265 
1266  if (retval == ERROR_OK)
1267  *checksum = buf_get_u32(reg_params[0].value, 0, 32);
1268 
1269  destroy_reg_param(&reg_params[0]);
1270  destroy_reg_param(&reg_params[1]);
1271 
1272  target_free_working_area(target, crc_algorithm);
1273 
1274  return retval;
1275 }
1276 
1279  struct target_memory_check_block *blocks, int num_blocks,
1280  uint8_t erased_value)
1281 {
1282  struct working_area *erase_check_algorithm;
1283  struct reg_param reg_params[3];
1284  struct mips32_algorithm mips32_info;
1285 
1286  struct mips32_common *mips32 = target_to_mips32(target);
1287  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
1288 
1289  if (erased_value != 0xff) {
1290  LOG_ERROR("Erase value 0x%02" PRIx8 " not yet supported for MIPS32",
1291  erased_value);
1292  return ERROR_FAIL;
1293  }
1294  uint32_t isa = ejtag_info->isa ? 1 : 0;
1295  uint32_t erase_check_code[] = {
1296  /* nbyte: */
1297  MIPS32_LB(isa, 8, 0, 4), /* lb $t0, ($a0) */
1298  MIPS32_AND(isa, 6, 6, 8), /* and $a2, $a2, $t0 */
1299  MIPS32_ADDIU(isa, 5, 5, NEG16(1)), /* addiu $a1, $a1, -1 */
1300  MIPS32_BNE(isa, 5, 0, NEG16(4 << isa)), /* bne $a1, $zero, nbyte */
1301  MIPS32_ADDIU(isa, 4, 4, 1), /* addiu $a0, $a0, 1 */
1302  MIPS32_SDBBP(isa) /* sdbbp */
1303  };
1304 
1305  /* make sure we have a working area */
1306  if (target_alloc_working_area(target, sizeof(erase_check_code), &erase_check_algorithm) != ERROR_OK)
1308 
1309  pracc_swap16_array(ejtag_info, erase_check_code, ARRAY_SIZE(erase_check_code));
1310 
1311  /* convert erase check code into a buffer in target endianness */
1312  uint8_t erase_check_code_8[sizeof(erase_check_code)];
1313  target_buffer_set_u32_array(target, erase_check_code_8,
1314  ARRAY_SIZE(erase_check_code), erase_check_code);
1315 
1316  int retval = target_write_buffer(target, erase_check_algorithm->address,
1317  sizeof(erase_check_code), erase_check_code_8);
1318  if (retval != ERROR_OK)
1319  goto cleanup;
1320 
1321  mips32_info.common_magic = MIPS32_COMMON_MAGIC;
1323 
1324  init_reg_param(&reg_params[0], "r4", 32, PARAM_OUT);
1325  buf_set_u32(reg_params[0].value, 0, 32, blocks[0].address);
1326 
1327  init_reg_param(&reg_params[1], "r5", 32, PARAM_OUT);
1328  buf_set_u32(reg_params[1].value, 0, 32, blocks[0].size);
1329 
1330  init_reg_param(&reg_params[2], "r6", 32, PARAM_IN_OUT);
1331  buf_set_u32(reg_params[2].value, 0, 32, erased_value);
1332 
1333  retval = target_run_algorithm(target, 0, NULL, 3, reg_params, erase_check_algorithm->address,
1334  erase_check_algorithm->address + (sizeof(erase_check_code) - 4), 10000, &mips32_info);
1335 
1336  if (retval == ERROR_OK)
1337  blocks[0].result = buf_get_u32(reg_params[2].value, 0, 32);
1338 
1339  destroy_reg_param(&reg_params[0]);
1340  destroy_reg_param(&reg_params[1]);
1341  destroy_reg_param(&reg_params[2]);
1342 
1343 cleanup:
1344  target_free_working_area(target, erase_check_algorithm);
1345 
1346  if (retval != ERROR_OK)
1347  return retval;
1348 
1349  return 1; /* only one block has been checked */
1350 }
1351 
1353  struct mips32_common *mips32)
1354 {
1355  if (mips32->common_magic != MIPS32_COMMON_MAGIC) {
1356  command_print(cmd, "target is not an MIPS32");
1357  return ERROR_TARGET_INVALID;
1358  }
1359  return ERROR_OK;
1360 }
1361 
1371 static int mips32_read_config_mmu(struct mips_ejtag *ejtag_info)
1372 {
1373  uint32_t config4, tlb_entries = 0, ways = 0, sets = 0;
1374  uint32_t config0 = ejtag_info->config[0];
1375  uint32_t config1 = ejtag_info->config[1];
1376  uint32_t config3 = ejtag_info->config[3];
1377  uint32_t mmu_type = (config0 >> 7) & 7;
1378  uint32_t vz_present = (config3 & BIT(23));
1379 
1380  int retval = mips32_cp0_read(ejtag_info, &config4, 16, 4);
1381  if (retval != ERROR_OK)
1382  return retval;
1383 
1384  /* mmu type = 1: VTLB only (Note: Does not account for Config4.ExtVTLB)
1385  * mmu type = 3: root RPU/Fixed (Note: Only valid with VZ ASE)
1386  * mmu type = 4: VTLB and FTLB
1387  */
1388  if ((mmu_type == 1 || mmu_type == 4) || (mmu_type == 3 && vz_present)) {
1389  tlb_entries = (uint32_t)(((config1 >> 25) & 0x3f) + 1);
1390  if (mmu_type == 4) {
1391  /* Release 6 definition for Config4[0:15] (MD01251, page 243) */
1392  /* The FTLB ways field is defined as [2, 3, 4, 5, 6, 7, 8, ...0 (reserved)] */
1393  int index = ((config4 >> 4) & 0xf);
1394  ways = index > 6 ? 0 : index + 2;
1395 
1396  /* The FTLB sets field is defined as [1, 2, 4, 8, ..., 16384, 32768] (powers of 2) */
1397  index = (config4 & 0xf);
1398  sets = 1 << index;
1399  tlb_entries = tlb_entries + (ways * sets);
1400  }
1401  }
1402  LOG_USER("TLB Entries: %d (%d ways, %d sets per way)", tlb_entries, ways, sets);
1403 
1404  return ERROR_OK;
1405 }
1406 
1418 static const struct mips32_cp0 *mips32_cp0_find_register_by_name(uint32_t cp0_mask, const char *reg_name)
1419 {
1420  if (reg_name)
1421  for (unsigned int i = 0; i < MIPS32NUMCP0REGS; i++) {
1422  if ((mips32_cp0_regs[i].core & cp0_mask) == 0)
1423  continue;
1424 
1425  if (strcmp(mips32_cp0_regs[i].name, reg_name) == 0)
1426  return &mips32_cp0_regs[i];
1427  }
1428  return NULL;
1429 }
1430 
1442 static int mips32_cp0_get_all_regs(struct command_invocation *cmd, struct mips_ejtag *ejtag_info, uint32_t cp0_mask)
1443 {
1444  uint32_t value;
1445 
1446  for (unsigned int i = 0; i < MIPS32NUMCP0REGS; i++) {
1447  /* Register name not valid for this core */
1448  if ((mips32_cp0_regs[i].core & cp0_mask) == 0)
1449  continue;
1450 
1451  int retval = mips32_cp0_read(ejtag_info, &value, mips32_cp0_regs[i].reg, mips32_cp0_regs[i].sel);
1452  if (retval != ERROR_OK) {
1453  command_print(CMD, "Error: couldn't access reg %s", mips32_cp0_regs[i].name);
1454  return retval;
1455  }
1456 
1457  command_print(CMD, "%*s: 0x%8.8" PRIx32, 14, mips32_cp0_regs[i].name, value);
1458  }
1459  return ERROR_OK;
1460 }
1461 
1473 static int mips32_cp0_get_reg_by_name(struct command_invocation *cmd, struct mips_ejtag *ejtag_info, uint32_t cp0_mask)
1474 {
1475  const struct mips32_cp0 *cp0_regs = mips32_cp0_find_register_by_name(cp0_mask, CMD_ARGV[0]);
1476  if (!cp0_regs) {
1477  command_print(CMD, "Error: Register '%s' not found", CMD_ARGV[0]);
1479  }
1480 
1481  uint32_t value;
1482  int retval = mips32_cp0_read(ejtag_info, &value, cp0_regs->reg, cp0_regs->sel);
1483  if (retval != ERROR_OK) {
1484  command_print(CMD, "Error: Encounter an Error while reading cp0 reg %d sel %d",
1485  cp0_regs->reg, cp0_regs->sel);
1486  return retval;
1487  }
1488 
1489  command_print(CMD, "0x%8.8" PRIx32, value);
1490  return ERROR_OK;
1491 }
1492 
1503 static int mips32_cp0_get_reg_by_number(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
1504 {
1505  uint32_t cp0_reg, cp0_sel, value;
1506  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], cp0_reg);
1507  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], cp0_sel);
1508 
1509  int retval = mips32_cp0_read(ejtag_info, &value, cp0_reg, cp0_sel);
1510  if (retval != ERROR_OK) {
1512  "Error: couldn't access reg %" PRIu32,
1513  cp0_reg);
1514  return retval;
1515  }
1516 
1517  command_print(CMD, "cp0 reg %" PRIu32 ", select %" PRIu32 ": %8.8" PRIx32,
1518  cp0_reg, cp0_sel, value);
1519  return ERROR_OK;
1520 }
1521 
1534  struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
1535 {
1536  const struct mips32_cp0 *cp0_regs = mips32_cp0_find_register_by_name(mips32->cp0_mask, CMD_ARGV[0]);
1537  if (!cp0_regs) {
1538  command_print(CMD, "Error: Register '%s' not found", CMD_ARGV[0]);
1540  }
1541 
1542 
1543  uint32_t value;
1544  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], value);
1545 
1546  if (cp0_regs->reg == MIPS32_C0_STATUS && cp0_regs->sel == 0) {
1547  /* Update cached Status register if user is writing to Status */
1548  mips32->core_regs.cp0[MIPS32_REG_C0_STATUS_INDEX] = value;
1550  } else if (cp0_regs->reg == MIPS32_C0_CAUSE && cp0_regs->sel == 0) {
1551  /* Update register cache with new value if its Cause */
1552  mips32->core_regs.cp0[MIPS32_REG_C0_CAUSE_INDEX] = value;
1554  } else if (cp0_regs->reg == MIPS32_C0_DEPC && cp0_regs->sel == 0) {
1555  /* Update cached PC if its DEPC */
1556  mips32->core_regs.cp0[MIPS32_REG_C0_PC_INDEX] = value;
1558  } else if (cp0_regs->reg == MIPS32_C0_GUESTCTL1 && cp0_regs->sel == 4) {
1559  /* Update cached guestCtl1 */
1560  mips32->core_regs.cp0[MIPS32_REG_C0_GUESTCTL1_INDEX] = value;
1562  }
1563 
1564  int retval = mips32_cp0_write(ejtag_info, value,
1565  cp0_regs->reg,
1566  cp0_regs->sel);
1567  if (retval != ERROR_OK) {
1568  command_print(CMD, "Error: Encounter an Error while writing to cp0 reg %d, sel %d",
1569  cp0_regs->reg, cp0_regs->sel);
1570  return retval;
1571  }
1572 
1573  command_print(CMD, "cp0 reg %s (%u, select %u: %8.8" PRIx32 ")",
1574  CMD_ARGV[0], cp0_regs->reg, cp0_regs->sel, value);
1575  return ERROR_OK;
1576 }
1577 
1590  struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
1591 {
1592  uint32_t cp0_reg, cp0_sel, value;
1593  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], cp0_reg);
1594  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], cp0_sel);
1595  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], value);
1596 
1597  if (cp0_reg == MIPS32_C0_STATUS && cp0_sel == 0) {
1598  /* Update cached status register if user is writing to Status register */
1599  mips32->core_regs.cp0[MIPS32_REG_C0_STATUS_INDEX] = value;
1601  } else if (cp0_reg == MIPS32_C0_CAUSE && cp0_sel == 0) {
1602  /* Update register cache with new value if its Cause register */
1603  mips32->core_regs.cp0[MIPS32_REG_C0_CAUSE_INDEX] = value;
1605  } else if (cp0_reg == MIPS32_C0_DEPC && cp0_sel == 0) {
1606  /* Update cached PC if its DEPC */
1607  mips32->core_regs.cp0[MIPS32_REG_C0_PC_INDEX] = value;
1609  } else if (cp0_reg == MIPS32_C0_GUESTCTL1 && cp0_sel == 4) {
1610  /* Update cached guestCtl1, too */
1611  mips32->core_regs.cp0[MIPS32_REG_C0_GUESTCTL1_INDEX] = value;
1613  }
1614 
1615  int retval = mips32_cp0_write(ejtag_info, value, cp0_reg, cp0_sel);
1616  if (retval != ERROR_OK) {
1618  "Error: couldn't access cp0 reg %" PRIu32 ", select %" PRIu32,
1619  cp0_reg, cp0_sel);
1620  return retval;
1621  }
1622 
1623  command_print(CMD, "cp0 reg %" PRIu32 ", select %" PRIu32 ": %8.8" PRIx32,
1624  cp0_reg, cp0_sel, value);
1625  return ERROR_OK;
1626 }
1627 
1638 COMMAND_HANDLER(mips32_handle_cp0_command)
1639 {
1640  int retval, tmp;
1642  struct mips32_common *mips32 = target_to_mips32(target);
1643  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
1644 
1645 
1646  retval = mips32_verify_pointer(CMD, mips32);
1647  if (retval != ERROR_OK)
1648  return retval;
1649 
1650  if (target->state != TARGET_HALTED) {
1651  command_print(CMD, "Error: target must be stopped for \"%s\" command", CMD_NAME);
1652  return ERROR_TARGET_NOT_HALTED;
1653  }
1654 
1655  switch (CMD_ARGC) {
1656  case 0: /* No arg => print out all cp0 regs */
1657  retval = mips32_cp0_get_all_regs(CMD, ejtag_info, mips32->cp0_mask);
1658  break;
1659  case 1: /* 1 arg => get cp0 #reg/#sel value by name */
1660  retval = mips32_cp0_get_reg_by_name(CMD, ejtag_info, mips32->cp0_mask);
1661  break;
1662  case 2: /* 2 args => get cp0 reg/sel value or set value by name */
1663  tmp = *CMD_ARGV[0];
1664  if (isdigit(tmp)) /* starts from number then args are #reg and #sel */
1665  retval = mips32_cp0_get_reg_by_number(CMD, ejtag_info);
1666  else /* or set value by register name */
1667  retval = mips32_cp0_set_reg_by_name(CMD, mips32, ejtag_info);
1668 
1669  break;
1670  case 3: /* 3 args => set cp0 reg/sel value*/
1671  retval = mips32_cp0_set_reg_by_number(CMD, mips32, ejtag_info);
1672  break;
1673  default: /* Other argc => err */
1674  retval = ERROR_COMMAND_SYNTAX_ERROR;
1675  break;
1676  }
1677 
1678  return retval;
1679 }
1680 
1691 static void mips32_dsp_enable(struct pracc_queue_info *ctx, int isa)
1692 {
1693  /* Save Status Register */
1694  /* move status to $9 (t1) 2*/
1695  pracc_add(ctx, 0, MIPS32_MFC0(isa, 9, 12, 0));
1696 
1697  /* Read it again in order to modify it */
1698  /* move status to $0 (t0) 3*/
1699  pracc_add(ctx, 0, MIPS32_MFC0(isa, 8, 12, 0));
1700 
1701  /* Enable access to DSP registers by setting MX bit in status register */
1702  /* $15 = MIPS32_PRACC_STACK 4/5/6*/
1704  pracc_add(ctx, 0, MIPS32_ORI(isa, 15, 15, LOWER16(MIPS32_DSP_ENABLE)));
1705  pracc_add(ctx, 0, MIPS32_ISA_OR(8, 8, 15));
1706  /* Enable DSP - update status registers 7*/
1707  pracc_add(ctx, 0, MIPS32_MTC0(isa, 8, 12, 0));
1708 }
1709 
1720 static void mips32_dsp_restore(struct pracc_queue_info *ctx, int isa)
1721 {
1722  pracc_add(ctx, 0, MIPS32_MTC0(isa, 9, 12, 0)); /* Restore status registers to previous setting */
1723  pracc_add(ctx, 0, MIPS32_NOP); /* nop */
1724 }
1725 
1740 static int mips32_pracc_read_dsp_reg(struct mips_ejtag *ejtag_info, uint32_t *val, uint32_t reg)
1741 {
1742  int isa = 0;
1743 
1744  struct pracc_queue_info ctx = {
1745  .max_code = 48,
1746  .ejtag_info = ejtag_info
1747  };
1748 
1749  uint32_t dsp_read_code[] = {
1750  MIPS32_MFHI(isa, t0), /* mfhi t0 ($ac0) - OPCODE - 0x00004010 */
1751  MIPS32_DSP_MFHI(t0, 1), /* mfhi t0,$ac1 - OPCODE - 0x00204010 */
1752  MIPS32_DSP_MFHI(t0, 2), /* mfhi t0,$ac2 - OPCODE - 0x00404010 */
1753  MIPS32_DSP_MFHI(t0, 3), /* mfhi t0,$ac3 - OPCODE - 0x00604010*/
1754  MIPS32_MFLO(isa, t0), /* mflo t0 ($ac0) - OPCODE - 0x00004012 */
1755  MIPS32_DSP_MFLO(t0, 1), /* mflo t0,$ac1 - OPCODE - 0x00204012 */
1756  MIPS32_DSP_MFLO(t0, 2), /* mflo t0,$ac2 - OPCODE - 0x00404012 */
1757  MIPS32_DSP_MFLO(t0, 3), /* mflo t0,$ac3 - OPCODE - 0x00604012 */
1758  MIPS32_DSP_RDDSP(t0, 0x3F), /* rddsp t0, 0x3f (DSPCtl) - OPCODE - 0x7c3f44b8 */
1759  };
1760 
1761  /* Check status register to determine if dsp register access is enabled */
1762  /* Get status register so it can be restored later */
1763 
1764  ctx.pracc_list = NULL;
1765 
1766  /* Init context queue */
1767  pracc_queue_init(&ctx);
1768 
1769  if (ctx.retval != ERROR_OK)
1770  goto exit;
1771 
1772  /* Enables DSP whether its already enabled or not */
1773  mips32_dsp_enable(&ctx, isa);
1774 
1775  /* move AC or Control to $8 (t0) 8*/
1776  pracc_add(&ctx, 0, dsp_read_code[reg]);
1777  /* Restore status registers to previous setting */
1778  mips32_dsp_restore(&ctx, isa);
1779 
1780  /* $15 = MIPS32_PRACC_BASE_ADDR 1*/
1782  /* store $8 to pracc_out 10*/
1784  /* move COP0 DeSave to $15 11*/
1785  pracc_add(&ctx, 0, MIPS32_MFC0(isa, 15, 31, 0));
1786  /* restore upper 16 of $8 12*/
1787  pracc_add(&ctx, 0, MIPS32_LUI(isa, 8, UPPER16(ejtag_info->reg8)));
1788  /* restore lower 16 of $8 13*/
1789  pracc_add(&ctx, 0, MIPS32_ORI(isa, 8, 8, LOWER16(ejtag_info->reg8)));
1790  /* restore upper 16 of $9 14*/
1791  pracc_add(&ctx, 0, MIPS32_LUI(isa, 9, UPPER16(ejtag_info->reg9)));
1792  pracc_add(&ctx, 0, MIPS32_SYNC(isa));
1793  /* jump to start 18*/
1794  pracc_add(&ctx, 0, MIPS32_B(isa, NEG16(ctx.code_count + 1)));
1795  /* restore lower 16 of $9 15*/
1796  pracc_add(&ctx, 0, MIPS32_ORI(isa, 9, 9, LOWER16(ejtag_info->reg9)));
1797 
1798  ctx.retval = mips32_pracc_queue_exec(ejtag_info, &ctx, val, 1);
1799 exit:
1800  pracc_queue_free(&ctx);
1801  return ctx.retval;
1802 }
1803 
1817 static int mips32_pracc_write_dsp_reg(struct mips_ejtag *ejtag_info, uint32_t val, uint32_t reg)
1818 {
1819  int isa = 0;
1820 
1821  struct pracc_queue_info ctx = {
1822  .max_code = 48,
1823  .ejtag_info = ejtag_info
1824  };
1825 
1826  uint32_t dsp_write_code[] = {
1827  MIPS32_MTHI(isa, t0), /* mthi t0 ($ac0) - OPCODE - 0x01000011 */
1828  MIPS32_DSP_MTHI(t0, 1), /* mthi t0, $ac1 - OPCODE - 0x01000811 */
1829  MIPS32_DSP_MTHI(t0, 2), /* mthi t0, $ac2 - OPCODE - 0x01001011 */
1830  MIPS32_DSP_MTHI(t0, 3), /* mthi t0, $ac3 - OPCODE - 0x01001811 */
1831  MIPS32_MTLO(isa, t0), /* mtlo t0 ($ac0) - OPCODE - 0x01000013 */
1832  MIPS32_DSP_MTLO(t0, 1), /* mtlo t0, $ac1 - OPCODE - 0x01000813 */
1833  MIPS32_DSP_MTLO(t0, 2), /* mtlo t0, $ac2 - OPCODE - 0x01001013 */
1834  MIPS32_DSP_MTLO(t0, 3), /* mtlo t0, $ac3 - OPCODE - 0x01001813 */
1835  MIPS32_DSP_WRDSP(t0, 0x1F), /* wrdsp t0, 0x1f (DSPCtl) - OPCODE - 0x7d00fcf8*/
1836  };
1837 
1838  /* Init context queue */
1839  pracc_queue_init(&ctx);
1840  if (ctx.retval != ERROR_OK)
1841  goto exit;
1842 
1843  /* Enables DSP whether its already enabled or not */
1844  mips32_dsp_enable(&ctx, isa);
1845 
1846  /* Load val to $8 (t0) */
1847  pracc_add(&ctx, 0, MIPS32_LUI(isa, 8, UPPER16(val)));
1848  pracc_add(&ctx, 0, MIPS32_ORI(isa, 8, 8, LOWER16(val)));
1849 
1850  /* move AC or Control to $8 (t0) */
1851  pracc_add(&ctx, 0, dsp_write_code[reg]);
1852 
1853  /* nop, delay in order to ensure write */
1854  pracc_add(&ctx, 0, MIPS32_NOP);
1855  /* Restore status registers to previous setting */
1856  mips32_dsp_restore(&ctx, isa);
1857 
1858  /* move COP0 DeSave to $15 */
1859  pracc_add(&ctx, 0, MIPS32_MFC0(isa, 15, 31, 0));
1860 
1861  /* restore $8 */
1862  pracc_add(&ctx, 0, MIPS32_LUI(isa, 8, UPPER16(ejtag_info->reg8)));
1863  pracc_add(&ctx, 0, MIPS32_ORI(isa, 8, 8, LOWER16(ejtag_info->reg8)));
1864 
1865  /* restore upper 16 of $9 */
1866  pracc_add(&ctx, 0, MIPS32_LUI(isa, 9, UPPER16(ejtag_info->reg9)));
1867 
1868  /* jump to start */
1869  pracc_add(&ctx, 0, MIPS32_B(isa, NEG16(ctx.code_count + 1)));
1870  /* restore lower 16 of $9 */
1871  pracc_add(&ctx, 0, MIPS32_ORI(isa, 9, 9, LOWER16(ejtag_info->reg9)));
1872 
1873  ctx.retval = mips32_pracc_queue_exec(ejtag_info, &ctx, NULL, 1);
1874 exit:
1875  pracc_queue_free(&ctx);
1876  return ctx.retval;
1877 }
1878 
1888 COMMAND_HANDLER(mips32_handle_cpuinfo_command)
1889 {
1890  int retval;
1892  struct mips32_common *mips32 = target_to_mips32(target);
1893  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
1894 
1895  uint32_t prid = mips32->prid; /* cp0 PRID - 15, 0 */
1896  uint32_t config0 = ejtag_info->config[0]; /* cp0 config - 16, 0 */
1897  uint32_t config1 = ejtag_info->config[1]; /* cp0 config - 16, 1 */
1898  uint32_t config3 = ejtag_info->config[3]; /* cp0 config - 16, 3 */
1899 
1900  /* Following configs are not read during probe */
1901  uint32_t config5; /* cp0 config - 16, 5 */
1902 
1903  /* No args for now */
1904  if (CMD_ARGC != 0)
1906 
1907  if (target->state != TARGET_HALTED) {
1908  command_print(CMD, "target must be stopped for \"%s\" command", CMD_NAME);
1909  return ERROR_TARGET_NOT_HALTED;
1910  }
1911 
1912  retval = mips32_cp0_read(ejtag_info, &config5, 16, 5);
1913  if (retval != ERROR_OK)
1914  return retval;
1915 
1916  /* Determine Core info */
1917  const struct cpu_entry *entry = mips32->cpu_info;
1918  /* Display Core Type info */
1919  command_print(CMD, "CPU Core: %s", entry->cpu_name);
1920 
1921  /* Display Core Vendor ID if it's unknown */
1922  if (entry == &mips32_cpu_entry[MIPS32_NUM_CPU_ENTRIES - 1])
1923  command_print(CMD, "Vendor: Unknown CPU vendor code %x.", ((prid & 0x00ffff00) >> 16));
1924  else
1925  command_print(CMD, "Vendor: %s", entry->vendor);
1926 
1927  /* If MIPS release 2 or above, then get exception base info */
1928  enum mips32_isa_rel ar = mips32->isa_rel;
1929  if (ar > MIPS32_RELEASE_1) { /* release 2 and above */
1930  uint32_t ebase;
1931  retval = mips32_cp0_read(ejtag_info, &ebase, 15, 1);
1932  if (retval != ERROR_OK)
1933  return retval;
1934 
1935  command_print(CMD, "Current CPU ID: %d", (ebase & 0x1ff));
1936  } else {
1937  command_print(CMD, "Current CPU ID: 0");
1938  }
1939 
1940  char *instr;
1941  switch ((config3 & MIPS32_CONFIG3_ISA_MASK) >> MIPS32_CONFIG3_ISA_SHIFT) {
1942  case 0:
1943  instr = "MIPS32";
1944  break;
1945  case 1:
1946  instr = "microMIPS";
1947  break;
1948  case 2:
1949  instr = "MIPS32 (at reset) and microMIPS";
1950  break;
1951  case 3:
1952  default:
1953  instr = "microMIPS (at reset) and MIPS32";
1954  break;
1955  }
1956 
1957  /* Display Instruction Set Info */
1958  command_print(CMD, "Instr set: %s", instr);
1959  command_print(CMD, "Instr rel: %s",
1960  ar == MIPS32_RELEASE_1 ? "1"
1961  : ar == MIPS32_RELEASE_2 ? "2"
1962  : ar == MIPS32_RELEASE_6 ? "6"
1963  : "unknown");
1964  command_print(CMD, "PRId: %x", prid);
1965  /* Some of MIPS CPU Revisions(for M74K) can be seen on MD00541, page 26 */
1966  uint32_t rev = prid & 0x000000ff;
1967  command_print(CMD, "RTL Rev: %d.%d.%d", (rev & 0xE0), (rev & 0x1C), (rev & 0x3));
1968 
1969  command_print(CMD, "Max Number of Instr Breakpoints: %d", mips32->num_inst_bpoints);
1970  command_print(CMD, "Max Number of Data Breakpoints: %d", mips32->num_data_bpoints);
1971 
1972  /* MMU Support */
1973  uint32_t mmu_type = (config0 >> 7) & 7; /* MMU Type Info */
1974  char *mmu;
1975  switch (mmu_type) {
1976  case MIPS32_MMU_TLB:
1977  mmu = "TLB";
1978  break;
1979  case MIPS32_MMU_BAT:
1980  mmu = "BAT";
1981  break;
1982  case MIPS32_MMU_FIXED:
1983  mmu = "FIXED";
1984  break;
1986  mmu = "DUAL VAR/FIXED";
1987  break;
1988  default:
1989  mmu = "Unknown";
1990  }
1991  command_print(CMD, "MMU Type: %s", mmu);
1992 
1993  retval = mips32_read_config_mmu(ejtag_info);
1994  if (retval != ERROR_OK)
1995  return retval;
1996 
1997  /* Definitions of I/D Cache Sizes are available on MD01251, page 224~226 */
1998  int index;
1999  uint32_t ways, sets, bpl;
2000 
2001  /* Determine Instr Cache Size */
2002  /* Ways mapping = [1, 2, 3, 4, 5, 6, 7, 8] */
2003  ways = ((config1 >> MIPS32_CFG1_IASHIFT) & 7);
2004 
2005  /* Sets per way = [64, 128, 256, 512, 1024, 2048, 4096, 32] */
2006  index = ((config1 >> MIPS32_CFG1_ISSHIFT) & 7);
2007  sets = index == 7 ? 32 : 32 << (index + 1);
2008 
2009  /* Bytes per line = [0, 4, 8, 16, 32, 64, 128, Reserved] */
2010  index = ((config1 >> MIPS32_CFG1_ILSHIFT) & 7);
2011  bpl = index == 0 ? 0 : 4 << (index - 1);
2012  command_print(CMD, "Instr Cache: %d (%d ways, %d lines, %d byte per line)", ways * sets * bpl, ways, sets, bpl);
2013 
2014  /* Determine data cache size, same as above */
2015  ways = ((config1 >> MIPS32_CFG1_DASHIFT) & 7);
2016 
2017  index = ((config1 >> MIPS32_CFG1_DSSHIFT) & 7);
2018  sets = index == 7 ? 32 : 32 << (index + 1);
2019 
2020  index = ((config1 >> MIPS32_CFG1_DLSHIFT) & 7);
2021  bpl = index == 0 ? 0 : 4 << (index - 1);
2022  command_print(CMD, " Data Cache: %d (%d ways, %d lines, %d byte per line)", ways * sets * bpl, ways, sets, bpl);
2023 
2024  /* does the core hava FPU*/
2025  mips32_read_config_fpu(mips32, ejtag_info);
2026 
2027  /* does the core support a DSP */
2028  mips32_read_config_dsp(mips32, ejtag_info);
2029 
2030  /* VZ module */
2031  uint32_t vzase = (config3 & BIT(23));
2032  if (vzase)
2033  command_print(CMD, "VZ implemented: yes");
2034  else
2035  command_print(CMD, "VZ implemented: no");
2036 
2037  /* multithreading */
2038  uint32_t mtase = (config3 & BIT(2));
2039  if (mtase) {
2040  command_print(CMD, "MT implemented: yes");
2041 
2042  /* Get VPE and Thread info */
2043  uint32_t tcbind;
2044  uint32_t mvpconf0;
2045 
2046  /* Read tcbind register */
2047  retval = mips32_cp0_read(ejtag_info, &tcbind, 2, 2);
2048  if (retval != ERROR_OK)
2049  return retval;
2050 
2051  command_print(CMD, " | Current VPE: %d", (tcbind & 0xf));
2052  command_print(CMD, " | Current TC: %d", ((tcbind >> 21) & 0xff));
2053 
2054  /* Read mvpconf0 register */
2055  retval = mips32_cp0_read(ejtag_info, &mvpconf0, 0, 2);
2056  if (retval != ERROR_OK)
2057  return retval;
2058 
2059  command_print(CMD, " | Total TC: %d", (mvpconf0 & 0xf) + 1);
2060  command_print(CMD, " | Total VPE: %d", ((mvpconf0 >> 10) & 0xf) + 1);
2061  } else {
2062  command_print(CMD, "MT implemented: no");
2063  }
2064 
2065  /* MIPS SIMD Architecture (MSA) */
2066  uint32_t msa = (config3 & BIT(28));
2067  command_print(CMD, "MSA implemented: %s", msa ? "yes" : "no");
2068 
2069  /* Move To/From High COP0 (MTHC0/MFHC0) instructions are implemented.
2070  * Implicates current ISA release >= 5.*/
2071  uint32_t mvh = (config5 & BIT(5));
2072  command_print(CMD, "MVH implemented: %s", mvh ? "yes" : "no");
2073 
2074  /* Common Device Memory Map implemented? */
2075  uint32_t cdmm = (config3 & BIT(3));
2076  command_print(CMD, "CDMM implemented: %s", cdmm ? "yes" : "no");
2077 
2078  return ERROR_OK;
2079 }
2080 
2090 static int mips32_dsp_find_register_by_name(const char *reg_name)
2091 {
2092  if (reg_name)
2093  for (int i = 0; i < MIPS32NUMDSPREGS; i++) {
2094  if (strcmp(mips32_dsp_regs[i].name, reg_name) == 0)
2095  return i;
2096  }
2097  return MIPS32NUMDSPREGS;
2098 }
2099 
2110 static int mips32_dsp_get_all_regs(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
2111 {
2112  uint32_t value = 0;
2113  for (int i = 0; i < MIPS32NUMDSPREGS; i++) {
2114  int retval = mips32_pracc_read_dsp_reg(ejtag_info, &value, i);
2115  if (retval != ERROR_OK) {
2116  command_print(CMD, "couldn't access reg %s", mips32_dsp_regs[i].name);
2117  return retval;
2118  }
2119  command_print(CMD, "%*s: 0x%8.8x", 7, mips32_dsp_regs[i].name, value);
2120  }
2121  return ERROR_OK;
2122 }
2123 
2135 static int mips32_dsp_get_register(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
2136 {
2137  uint32_t value = 0;
2139  if (index == MIPS32NUMDSPREGS) {
2140  command_print(CMD, "ERROR: register '%s' not found", CMD_ARGV[0]);
2142  }
2143 
2144  int retval = mips32_pracc_read_dsp_reg(ejtag_info, &value, index);
2145  if (retval != ERROR_OK)
2146  command_print(CMD, "ERROR: Could not access dsp register %s", CMD_ARGV[0]);
2147  else
2148  command_print(CMD, "0x%8.8x", value);
2149 
2150  return retval;
2151 }
2152 
2165 static int mips32_dsp_set_register(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
2166 {
2167  uint32_t value;
2169  if (index == MIPS32NUMDSPREGS) {
2170  command_print(CMD, "ERROR: register '%s' not found", CMD_ARGV[0]);
2172  }
2173 
2174  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], value);
2175 
2176  int retval = mips32_pracc_write_dsp_reg(ejtag_info, value, index);
2177  if (retval != ERROR_OK)
2178  command_print(CMD, "Error: could not write to dsp register %s", CMD_ARGV[0]);
2179 
2180  return retval;
2181 }
2182 
2191 COMMAND_HANDLER(mips32_handle_dsp_command)
2192 {
2193  int retval, tmp;
2195  struct mips32_common *mips32 = target_to_mips32(target);
2196  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
2197 
2198  retval = mips32_verify_pointer(CMD, mips32);
2199  if (retval != ERROR_OK)
2200  return retval;
2201 
2202  if (target->state != TARGET_HALTED) {
2203  command_print(CMD, "target must be stopped for \"%s\" command", CMD_NAME);
2204  return ERROR_OK;
2205  }
2206 
2207  /* Check for too many command args */
2208  if (CMD_ARGC >= 3)
2210 
2211  /* Check if DSP access supported or not */
2212  if (!mips32->dsp_imp) {
2213  /* Issue Error Message */
2214  command_print(CMD, "DSP not implemented by this processor");
2215  return ERROR_OK;
2216  }
2217 
2218  switch (CMD_ARGC) {
2219  case 0:
2220  retval = mips32_dsp_get_all_regs(CMD, ejtag_info);
2221  break;
2222  case 1:
2223  retval = mips32_dsp_get_register(CMD, ejtag_info);
2224  break;
2225  case 2:
2226  tmp = *CMD_ARGV[0];
2227  if (isdigit(tmp)) {
2228  command_print(CMD, "Error: invalid dsp command format");
2230  } else {
2231  retval = mips32_dsp_set_register(CMD, ejtag_info);
2232  }
2233  break;
2234  default:
2235  command_print(CMD, "Error: invalid argument format, required 0-2, given %d", CMD_ARGC);
2237  break;
2238  }
2239  return retval;
2240 }
2241 
2250 COMMAND_HANDLER(mips32_handle_ejtag_reg_command)
2251 {
2253  struct mips32_common *mips32 = target_to_mips32(target);
2254  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
2255 
2256  uint32_t ejtag_ctrl;
2257  uint32_t dcr;
2258  int retval;
2259 
2260  retval = mips_ejtag_get_idcode(ejtag_info);
2261  if (retval != ERROR_OK)
2262  command_print(CMD, "Error: Encounter an Error while getting idcode");
2263  else
2264  command_print(CMD, " idcode: 0x%8.8" PRIx32, ejtag_info->idcode);
2265 
2266  retval = mips_ejtag_get_impcode(ejtag_info);
2267  if (retval != ERROR_OK)
2268  command_print(CMD, "Error: Encounter an Error while getting impcode");
2269  else
2270  command_print(CMD, " impcode: 0x%8.8" PRIx32, ejtag_info->impcode);
2271 
2273  ejtag_ctrl = ejtag_info->ejtag_ctrl;
2274  retval = mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
2275  if (retval != ERROR_OK)
2276  command_print(CMD, "Error: Encounter an Error while executing drscan reading EJTAG Control register");
2277  else
2278  command_print(CMD, "ejtag control: 0x%8.8" PRIx32, ejtag_ctrl);
2279 
2280  ejtag_main_print_imp(ejtag_info);
2281 
2282  /* Display current DCR */
2283  retval = target_read_u32(target, EJTAG_DCR, &dcr);
2284  if (retval != ERROR_OK)
2285  command_print(CMD, "Error: Encounter an Error while reading Debug Control Register");
2286  else
2287  command_print(CMD, " DCR: 0x%8.8" PRIx32, dcr);
2288 
2289  for (unsigned int i = 0; i < EJTAG_DCR_ENTRIES; i++) {
2290  if (dcr & BIT(dcr_features[i].bit))
2291  command_print(CMD, "%s supported", dcr_features[i].name);
2292  }
2293 
2294  return ERROR_OK;
2295 }
2296 
2305 COMMAND_HANDLER(mips32_handle_scan_delay_command)
2306 {
2308  struct mips32_common *mips32 = target_to_mips32(target);
2309  struct mips_ejtag *ejtag_info = &mips32->ejtag_info;
2310 
2311  if (CMD_ARGC == 1)
2312  COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], ejtag_info->scan_delay);
2313  else if (CMD_ARGC > 1)
2315 
2316  command_print(CMD, "scan delay: %d nsec", ejtag_info->scan_delay);
2317  if (ejtag_info->scan_delay >= MIPS32_SCAN_DELAY_LEGACY_MODE) {
2318  ejtag_info->mode = 0;
2319  command_print(CMD, "running in legacy mode");
2320  } else {
2321  ejtag_info->mode = 1;
2322  command_print(CMD, "running in fast queued mode");
2323  }
2324 
2325  return ERROR_OK;
2326 }
2327 
2328 static const struct command_registration mips32_exec_command_handlers[] = {
2329  {
2330  .name = "cp0",
2331  .handler = mips32_handle_cp0_command,
2332  .mode = COMMAND_EXEC,
2333  .usage = "[[reg_name|regnum select] [value]]",
2334  .help = "display/modify cp0 register",
2335  },
2336  {
2337  .name = "cpuinfo",
2338  .handler = mips32_handle_cpuinfo_command,
2339  .mode = COMMAND_EXEC,
2340  .help = "display CPU information",
2341  .usage = "",
2342  },
2343  {
2344  .name = "dsp",
2345  .handler = mips32_handle_dsp_command,
2346  .mode = COMMAND_EXEC,
2347  .help = "display or set DSP register; "
2348  "with no arguments, displays all registers and their values",
2349  .usage = "[[register_name] [value]]",
2350  },
2351  {
2352  .name = "scan_delay",
2353  .handler = mips32_handle_scan_delay_command,
2354  .mode = COMMAND_ANY,
2355  .help = "display/set scan delay in nano seconds",
2356  .usage = "[value]",
2357  },
2358  {
2359  .name = "ejtag_reg",
2360  .handler = mips32_handle_ejtag_reg_command,
2361  .mode = COMMAND_ANY,
2362  .help = "read ejtag registers",
2363  .usage = "",
2364  },
2366 };
2367 
2369  {
2370  .name = "mips32",
2371  .mode = COMMAND_ANY,
2372  .help = "mips32 command group",
2373  .usage = "",
2375  },
2377 };
void init_reg_param(struct reg_param *param, char *reg_name, uint32_t size, enum param_direction direction)
Definition: algorithm.c:29
void destroy_reg_param(struct reg_param *param)
Definition: algorithm.c:37
@ PARAM_OUT
Definition: algorithm.h:16
@ PARAM_IN
Definition: algorithm.h:15
@ PARAM_IN_OUT
Definition: algorithm.h:17
static void buf_set_u64(uint8_t *_buffer, unsigned first, unsigned num, uint64_t value)
Sets num bits in _buffer, starting at the first bit, using the bits in value.
Definition: binarybuffer.h:61
static uint32_t buf_get_u32(const uint8_t *_buffer, unsigned first, unsigned num)
Retrieves num bits from _buffer, starting at the first bit, returning the bits in a 32-bit word.
Definition: binarybuffer.h:99
static void buf_set_u32(uint8_t *_buffer, unsigned first, unsigned num, uint32_t value)
Sets num bits in _buffer, starting at the first bit, using the bits in value.
Definition: binarybuffer.h:31
static uint64_t buf_get_u64(const uint8_t *_buffer, unsigned first, unsigned num)
Retrieves num bits from _buffer, starting at the first bit, returning the bits in a 64-bit word.
Definition: binarybuffer.h:128
void command_print(struct command_invocation *cmd, const char *format,...)
Definition: command.c:443
#define CMD
Use this macro to access the command being handled, rather than accessing the variable directly.
Definition: command.h:141
#define CMD_NAME
Use this macro to access the name of the command being handled, rather than accessing the variable di...
Definition: command.h:166
#define CMD_ARGV
Use this macro to access the arguments for the command being handled, rather than accessing the varia...
Definition: command.h:156
#define ERROR_COMMAND_SYNTAX_ERROR
Definition: command.h:402
#define CMD_ARGC
Use this macro to access the number of arguments for the command being handled, rather than accessing...
Definition: command.h:151
#define COMMAND_PARSE_NUMBER(type, in, out)
parses the string in into out as a type, or prints a command error and passes the error code to the c...
Definition: command.h:442
#define CMD_CTX
Use this macro to access the context of the command being handled, rather than accessing the variable...
Definition: command.h:146
#define COMMAND_REGISTRATION_DONE
Use this as the last entry in an array of command_registration records.
Definition: command.h:253
#define ERROR_COMMAND_ARGUMENT_INVALID
Definition: command.h:404
@ COMMAND_ANY
Definition: command.h:42
@ COMMAND_EXEC
Definition: command.h:40
static uint16_t direction
Definition: ftdi.c:120
#define LOG_USER(expr ...)
Definition: log.h:135
#define LOG_WARNING(expr ...)
Definition: log.h:129
#define ERROR_FAIL
Definition: log.h:170
#define LOG_TARGET_ERROR(target, fmt_str,...)
Definition: log.h:158
#define LOG_ERROR(expr ...)
Definition: log.h:132
#define LOG_DEBUG(expr ...)
Definition: log.h:109
#define ERROR_OK
Definition: log.h:164
struct reg_cache * mips32_build_reg_cache(struct target *target)
Definition: mips32.c:477
bool mips32_cpu_support_sync(struct mips_ejtag *ejtag_info)
mips32_cpu_support_sync - Checks CPU supports ordering
Definition: mips32.c:939
static int mips32_read_config_mmu(struct mips_ejtag *ejtag_info)
mips32_read_config_mmu - Reads MMU configuration and logs relevant information.
Definition: mips32.c:1371
const struct command_registration mips32_command_handlers[]
Definition: mips32.c:2368
int mips32_read_config_regs(struct target *target)
Definition: mips32.c:1121
int mips32_checksum_memory(struct target *target, target_addr_t address, uint32_t count, uint32_t *checksum)
Definition: mips32.c:1195
static int mips32_set_core_reg(struct reg *reg, uint8_t *buf)
Definition: mips32.c:240
static void mips32_read_config_dsp(struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
Definition: mips32.c:1027
static int mips32_pracc_read_dsp_reg(struct mips_ejtag *ejtag_info, uint32_t *val, uint32_t reg)
mips32_pracc_read_dsp_reg - Read a value from a MIPS32 DSP register
Definition: mips32.c:1740
#define t0
Definition: mips32.c:176
static void mips32_dsp_restore(struct pracc_queue_info *ctx, int isa)
mips32_dsp_restore - Restore DSP status registers to the previous setting
Definition: mips32.c:1720
static int mips32_cp0_get_reg_by_number(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
mips32_cp0_get_reg_by_number - Read and print a CP0 register's value by number.
Definition: mips32.c:1503
int size
Definition: mips32.c:42
static int mips32_cp0_get_all_regs(struct command_invocation *cmd, struct mips_ejtag *ejtag_info, uint32_t cp0_mask)
mips32_cp0_get_all_regs - Print all CP0 registers and their values.
Definition: mips32.c:1442
int mips32_configure_break_unit(struct target *target)
Definition: mips32.c:780
unsigned id
Definition: mips32.c:37
static int mips32_get_core_reg(struct reg *reg)
Definition: mips32.c:225
static int mips32_dsp_get_all_regs(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
mips32_dsp_get_all_regs - Get values of all MIPS32 DSP registers
Definition: mips32.c:2110
int mips32_arch_state(struct target *target)
Definition: mips32.c:460
COMMAND_HANDLER(mips32_handle_cp0_command)
mips32_handle_cp0_command - Handle commands related to CP0 registers.
Definition: mips32.c:1638
const char * group
Definition: mips32.c:40
static int mips32_cp0_set_reg_by_number(struct command_invocation *cmd, struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
mips32_cp0_set_reg_by_number - Write to a CP0 register identified by number.
Definition: mips32.c:1589
int mips32_cpu_probe(struct target *target)
mips32_cpu_probe - Detects processor type and applies necessary quirks.
Definition: mips32.c:971
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, unsigned int timeout_ms, void *arch_info)
Definition: mips32.c:592
#define MIPS32_NUM_REGS
Definition: mips32.c:161
static int mips32_read_config_fpu(struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
Definition: mips32.c:1039
#define MIPS32_GDB_FP_REG
Definition: mips32.c:30
static int mips32_configure_ibs(struct target *target)
Definition: mips32.c:726
int mips32_examine(struct target *target)
Definition: mips32.c:708
static void mips32_read_config_fdc(struct mips32_common *mips32, struct mips_ejtag *ejtag_info, uint32_t dcr)
mips32_read_config_fdc - Read Fast Debug Channel configuration
Definition: mips32.c:1109
int mips32_init_arch_info(struct target *target, struct mips32_common *mips32, struct jtag_tap *tap)
Definition: mips32.c:536
static const struct reg_arch_type mips32_reg_type
Definition: mips32.c:472
static int mips32_configure_dbs(struct target *target)
Definition: mips32.c:753
const char * name
Definition: mips32.c:38
static const struct @110 mips32_regs[]
bool mips32_cpu_support_hazard_barrier(struct mips_ejtag *ejtag_info)
mips32_cpu_support_hazard_barrier - Checks CPU supports hazard barrier
Definition: mips32.c:952
static int mips32_pracc_write_dsp_reg(struct mips_ejtag *ejtag_info, uint32_t val, uint32_t reg)
mips32_pracc_write_dsp_reg - Write a value to a MIPS32 DSP register
Definition: mips32.c:1817
static int mips32_read_c0_prid(struct target *target)
Definition: mips32.c:871
static void mips32_dsp_enable(struct pracc_queue_info *ctx, int isa)
mips32_dsp_enable - Enable access to DSP registers
Definition: mips32.c:1691
static const struct mips32_cp0 * mips32_cp0_find_register_by_name(uint32_t cp0_mask, const char *reg_name)
mips32_cp0_find_register_by_name - Find CP0 register by its name.
Definition: mips32.c:1418
static int mips32_write_core_reg(struct target *target, unsigned int num)
Definition: mips32.c:363
static void mips32_set_all_fpr_width(struct mips32_common *mips32, bool fp64)
mips32_set_all_fpr_width - Set the width of all floating-point registers
Definition: mips32.c:272
enum reg_type type
Definition: mips32.c:39
static int mips32_read_core_reg(struct target *target, unsigned int num)
Definition: mips32.c:320
static int mips32_run_and_wait(struct target *target, target_addr_t entry_point, unsigned int timeout_ms, target_addr_t exit_point, struct mips32_common *mips32)
Definition: mips32.c:560
int mips32_save_context(struct target *target)
Definition: mips32.c:422
int mips32_enable_interrupts(struct target *target, int enable)
Definition: mips32.c:836
static int mips32_dsp_set_register(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
mips32_dsp_set_register - Set the value of a MIPS32 DSP register
Definition: mips32.c:2165
static const char * mips_isa_strings[]
Definition: mips32.c:26
static const struct cpu_entry * mips32_find_cpu_by_prid(uint32_t prid)
mips32_find_cpu_by_prid - Find CPU information by processor ID.
Definition: mips32.c:896
static void mips32_detect_fpr_mode_change(struct mips32_common *mips32, uint32_t cp0_status)
mips32_detect_fpr_mode_change - Detect changes in floating-point register mode
Definition: mips32.c:293
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:1278
static int mips32_dsp_get_register(struct command_invocation *cmd, struct mips_ejtag *ejtag_info)
mips32_dsp_get_register - Get the value of a MIPS32 DSP register
Definition: mips32.c:2135
static int mips32_cp0_set_reg_by_name(struct command_invocation *cmd, struct mips32_common *mips32, struct mips_ejtag *ejtag_info)
mips32_cp0_set_reg_by_name - Write to a CP0 register identified by name.
Definition: mips32.c:1533
static int mips32_dsp_find_register_by_name(const char *reg_name)
mips32_dsp_find_register_by_name - Find DSP register index by name
Definition: mips32.c:2090
static bool mips32_cpu_is_lexra(struct mips_ejtag *ejtag_info)
Definition: mips32.c:919
int mips32_restore_context(struct target *target)
Definition: mips32.c:444
static int mips32_verify_pointer(struct command_invocation *cmd, struct mips32_common *mips32)
Definition: mips32.c:1352
static int mips32_cp0_get_reg_by_name(struct command_invocation *cmd, struct mips_ejtag *ejtag_info, uint32_t cp0_mask)
mips32_cp0_get_reg_by_name - Read and print a CP0 register's value by name.
Definition: mips32.c:1473
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:405
const char * feature
Definition: mips32.c:41
static int mips32_cpu_get_release(struct mips_ejtag *ejtag_info)
Definition: mips32.c:924
static const struct @111 mips32_dsp_regs[MIPS32NUMDSPREGS]
static const struct command_registration mips32_exec_command_handlers[]
Definition: mips32.c:2328
#define MIPS32_CONFIG3_DSPP_MASK
Definition: mips32.h:59
#define MIPS32_CONFIG3_DSPREV_SHIFT
Definition: mips32.h:61
#define MIPS32_CONFIG3_DSPP_SHIFT
Definition: mips32.h:58
#define MIPS32_NOP
Definition: mips32.h:710
#define MIPS32_C0_CAUSE
Definition: mips32.h:851
#define MIPS32_SCAN_DELAY_LEGACY_MODE
Definition: mips32.h:70
#define MIPS32_CORE_MASK
Definition: mips32.h:274
#define MIPS32_ISA_OR(dst, src, val)
Definition: mips32.h:552
#define MIPS32_CONFIG3_DSPREV_MASK
Definition: mips32.h:62
#define MIPS32_REGLIST_FP_INDEX
Definition: mips32.h:225
#define MIPS32_CONFIG3_CDMM_MASK
Definition: mips32.h:56
#define MIPS32_ADDI(isa, tar, src, val)
Definition: mips32.h:711
#define MIPS32_SYNC(isa)
Definition: mips32.h:763
#define MIPS32_REG_C0_PC_INDEX
Definition: mips32.h:238
#define MIPS32_MFHI(isa, reg)
Definition: mips32.h:741
#define MIPS32_CONFIG3_ISA_MASK
Definition: mips32.h:65
#define MIPS32_REGLIST_C0_STATUS_INDEX
Definition: mips32.h:229
#define MIPS32_DSP_MTLO(reg, ac)
Definition: mips32.h:790
static struct mips32_common * target_to_mips32(struct target *target)
Definition: mips32.h:435
#define MIPS32_XOR(isa, reg, val1, val2)
Definition: mips32.h:764
#define EJTAG_QUIRK_PAD_DRET
Definition: mips32.h:208
#define MIPS32_DSP_ENABLE
Definition: mips32.h:778
#define MIPS32_COMMON_MAGIC
Definition: mips32.h:21
#define MIPS32_NUM_CPU_ENTRIES
Definition: mips32.h:354
#define MIPS32_MTHI(isa, reg)
Definition: mips32.h:743
#define MIPS32_CFG1_ILSHIFT
Definition: mips32.h:805
#define MIPS32_SDBBP(isa)
Definition: mips32.h:771
#define MIPS_CP0_MK4
Definition: mips32.h:75
@ MIPS32_FP_IMP_64
Definition: mips32.h:359
@ MIPS32_FP_IMP_NONE
Definition: mips32.h:357
@ MIPS32_FP_IMP_UNKNOWN
Definition: mips32.h:360
#define MIPS32_CFG1_DASHIFT
Definition: mips32.h:813
#define MIPS32_LB(isa, reg, off, base)
Definition: mips32.h:727
#define MIPS32_CP0_STATUS_CU1_SHIFT
Definition: mips32.h:82
#define MIPS32_REG_C0_GUESTCTL1_INDEX
Definition: mips32.h:239
#define MIPS32_REGLIST_C0_CAUSE_INDEX
Definition: mips32.h:231
#define MIPS32_CONFIG0_AR_SHIFT
Definition: mips32.h:46
#define MIPS32_CONFIG1_FP_SHIFT
Definition: mips32.h:49
#define MIPS32_BNE(isa, src, tar, off)
Definition: mips32.h:720
#define MIPS32_REG_C0_CAUSE_INDEX
Definition: mips32.h:237
#define MIPS32_REG_FP_COUNT
Definition: mips32.h:220
#define MIPS_CP0_IAPTIV
Definition: mips32.h:78
#define MIPS32_BEQ(isa, src, tar, off)
Definition: mips32.h:718
#define MIPS32_CP1_FIR_F64_SHIFT
Definition: mips32.h:85
#define MIPS32_C0_DEPC
Definition: mips32.h:865
#define MIPS_CP0_MAPTIV_UP
Definition: mips32.h:77
#define MIPS32_REGLIST_C0_GUESTCTL1_INDEX
Definition: mips32.h:233
#define MIPS32_CONFIG3_ISA_SHIFT
Definition: mips32.h:64
#define MIPS32_SW(isa, reg, off, base)
Definition: mips32.h:751
#define MIPS32_MTLO(isa, reg)
Definition: mips32.h:742
#define MIPS32_MOVN(isa, dst, src, tar)
Definition: mips32.h:746
#define MIPS32_REGLIST_C0_PC_INDEX
Definition: mips32.h:232
#define MIPS32_C0_STATUS
Definition: mips32.h:846
#define MIPS32_REGLIST_FPC_INDEX
Definition: mips32.h:226
#define MIPS32NUMDSPREGS
Definition: mips32.h:72
#define MIPS32_MMU_TLB
Definition: mips32.h:886
#define MIPS32_MFLO(isa, reg)
Definition: mips32.h:740
#define MIPS32_CFG1_ISSHIFT
Definition: mips32.h:803
#define MIPS32_REGLIST_GP_INDEX
Definition: mips32.h:224
#define MIPS32_ADDU(isa, dst, src, tar)
Definition: mips32.h:713
@ MMIPS32_ONLY
Definition: mips32.h:249
@ MIPS32_MMIPS32
Definition: mips32.h:251
@ MIPS32_MIPS16
Definition: mips32.h:250
@ MIPS32_ONLY
Definition: mips32.h:248
#define MIPS32_CFG1_DSSHIFT
Definition: mips32.h:809
#define MIPS32_REG_C0_STATUS_INDEX
Definition: mips32.h:235
#define MIPS32_MTC0(isa, gpr, cpr, sel)
Definition: mips32.h:735
#define MIPS32_ADDIU(isa, tar, src, val)
Definition: mips32.h:712
#define MIPS32_LUI(isa, reg, val)
Definition: mips32.h:732
#define MIPS_CP0_MAPTIV_UC
Definition: mips32.h:76
#define MIPS32_C0_GUESTCTL1
Definition: mips32.h:844
#define MIPS32_MMU_DUAL_VTLB_FTLB
Definition: mips32.h:889
#define MIPS32_CONFIG0_AR_MASK
Definition: mips32.h:47
#define MIPS32_CFG1_DLSHIFT
Definition: mips32.h:811
#define MIPS32_MMU_FIXED
Definition: mips32.h:888
#define MIPS32_AND(isa, dst, src, tar)
Definition: mips32.h:714
#define MIPS32_DSP_MFHI(reg, ac)
Definition: mips32.h:788
#define MIPS32_REGLIST_C0_BADVADDR_INDEX
Definition: mips32.h:230
#define MIPS32_DSP_MTHI(reg, ac)
Definition: mips32.h:791
mips32_isa_mode
Definition: mips32.h:241
@ MIPS32_ISA_MMIPS32
Definition: mips32.h:244
@ MIPS32_ISA_MIPS32
Definition: mips32.h:242
#define MIPS32_DSP_MFLO(reg, ac)
Definition: mips32.h:789
#define MIPS32_ORI(isa, tar, src, val)
Definition: mips32.h:747
#define MIPS32_SLL(isa, dst, src, sa)
Definition: mips32.h:755
#define MIPS32_MFC0(isa, gpr, cpr, sel)
Definition: mips32.h:734
#define MIPS32_CFG1_IASHIFT
Definition: mips32.h:807
mips32_isa_rel
Definition: mips32.h:259
@ MIPS32_RELEASE_1
Definition: mips32.h:260
@ MIPS32_RELEASE_6
Definition: mips32.h:262
@ MIPS32_RELEASE_2
Definition: mips32.h:261
#define MIPS32_REGLIST_C0_INDEX
Definition: mips32.h:227
static const struct mips32_cp0 mips32_cp0_regs[]
static const struct cpu_entry mips32_cpu_entry[]
#define MIPS32_B(isa, off)
Definition: mips32.h:717
#define MIPS32_MMU_BAT
Definition: mips32.h:887
#define MIPS32_SLTI(isa, tar, src, val)
Definition: mips32.h:758
#define MIPS32_CONFIG1_FP_MASK
Definition: mips32.h:50
#define MIPS32_CP0_STATUS_FR_SHIFT
Definition: mips32.h:81
#define MIPS32_DSP_WRDSP(rs, mask)
Definition: mips32.h:793
#define MIPS32NUMCP0REGS
Definition: mips32.h:205
#define MIPS32_DSP_RDDSP(rt, mask)
Definition: mips32.h:792
void pracc_queue_free(struct pracc_queue_info *ctx)
Definition: mips32_pracc.c:339
int mips32_pracc_write_regs(struct mips32_common *mips32)
Definition: mips32_pracc.c:873
int mips32_pracc_queue_exec(struct mips_ejtag *ejtag_info, struct pracc_queue_info *ctx, uint32_t *buf, bool check_last)
Definition: mips32_pracc.c:344
int mips32_pracc_read_regs(struct mips32_common *mips32)
void pracc_queue_init(struct pracc_queue_info *ctx)
Definition: mips32_pracc.c:297
int mips32_cp0_read(struct mips_ejtag *ejtag_info, uint32_t *val, uint32_t cp0_reg, uint32_t cp0_sel)
mips32_cp0_read
Definition: mips32_pracc.c:552
void pracc_add(struct pracc_queue_info *ctx, uint32_t addr, uint32_t instr)
Definition: mips32_pracc.c:307
int mips32_cp1_control_read(struct mips_ejtag *ejtag_info, uint32_t *val, uint32_t cp1_c_reg)
mips32_cp1_control_read
Definition: mips32_pracc.c:591
int mips32_cp0_write(struct mips_ejtag *ejtag_info, uint32_t val, uint32_t cp0_reg, uint32_t cp0_sel)
mips32_cp0_write
Definition: mips32_pracc.c:573
#define PRACC_UPPER_BASE_ADDR
Definition: mips32_pracc.h:25
#define PRACC_OUT_OFFSET
Definition: mips32_pracc.h:28
#define LOWER16(addr)
Definition: mips32_pracc.h:32
static void pracc_swap16_array(struct mips_ejtag *ejtag_info, uint32_t *buf, int count)
Definition: mips32_pracc.h:121
#define UPPER16(addr)
Definition: mips32_pracc.h:31
#define MIPS32_PRACC_PARAM_OUT
Definition: mips32_pracc.h:23
#define NEG16(v)
Definition: mips32_pracc.h:33
#define PRID_IMP_MASK
Definition: mips_cpu.h:28
#define PRID_COMP_MASK
Definition: mips_cpu.h:13
#define PRID_COMP_LEXRA
Definition: mips_cpu.h:19
#define PRID_COMP_MTI
Definition: mips_cpu.h:16
#define PRID_IMP_MAPTIV_UP
Definition: mips_cpu.h:31
#define PRID_COMP_ALCHEMY
Definition: mips_cpu.h:18
#define PRID_IMP_M5150
Definition: mips_cpu.h:34
#define PRID_IMP_IAPTIV_CM
Definition: mips_cpu.h:32
#define PRID_COMP_INGENIC_E1
Definition: mips_cpu.h:21
#define PRID_IMP_XBURST_REV1
Definition: mips_cpu.h:36
#define PRID_IMP_IAPTIV
Definition: mips_cpu.h:33
#define PRID_IMP_MAPTIV_UC
Definition: mips_cpu.h:30
int mips_ejtag_get_idcode(struct mips_ejtag *ejtag_info)
Definition: mips_ejtag.c:42
void mips_ejtag_set_instr(struct mips_ejtag *ejtag_info, uint32_t new_instr)
Definition: mips_ejtag.c:22
int mips_ejtag_get_impcode(struct mips_ejtag *ejtag_info)
Definition: mips_ejtag.c:50
int mips_ejtag_drscan_32(struct mips_ejtag *ejtag_info, uint32_t *data)
Definition: mips_ejtag.c:130
void ejtag_main_print_imp(struct mips_ejtag *ejtag_info)
Definition: mips_ejtag.c:335
#define EJTAG_DCR_ENTRIES
Definition: mips_ejtag.h:203
#define EJTAG_V20_IMP_NODB
Definition: mips_ejtag.h:117
#define EJTAG_VERSION_20
Definition: mips_ejtag.h:168
#define EJTAG_INST_CONTROL
Definition: mips_ejtag.h:20
#define EJTAG_V20_IMP_NOIB
Definition: mips_ejtag.h:118
#define EJTAG_DCR_FDC
Definition: mips_ejtag.h:127
#define EJTAG_DCR_IB
Definition: mips_ejtag.h:129
#define EJTAG_DCR_DB
Definition: mips_ejtag.h:128
#define EJTAG_DCR_ENM
Definition: mips_ejtag.h:126
#define EJTAG_IMP_MIPS16
Definition: mips_ejtag.h:112
static const struct dcr_feature dcr_features[]
#define EJTAG_DCR
Definition: mips_ejtag.h:125
#define EJTAG_DCR_INTE
Definition: mips_ejtag.h:130
static uint32_t bit(uint32_t value, unsigned int b)
Definition: opcodes.h:15
struct reg * register_get_by_name(struct reg_cache *first, const char *name, bool search_all)
Definition: register.c:50
struct reg_cache ** register_get_last_cache_p(struct reg_cache **first)
Definition: register.c:72
reg_type
Definition: register.h:19
@ REG_TYPE_INT
Definition: register.h:21
@ REG_TYPE_IEEE_DOUBLE
Definition: register.h:37
@ REG_TYPE_IEEE_SINGLE
Definition: register.h:36
struct target * target
Definition: rtt/rtt.c:26
#define BIT(nr)
Definition: stm32l4x.h:18
When run_command is called, a new instance will be created on the stack, filled with the proper value...
Definition: command.h:76
const char * name
Definition: command.h:235
Definition: mips32.h:285
const char * vendor
Definition: mips32.h:288
const char * cpu_name
Definition: mips32.h:289
uint32_t prid
Definition: mips32.h:286
Definition: jtag.h:101
enum mips32_isa_mode isa_mode
Definition: mips32.h:448
unsigned int common_magic
Definition: mips32.h:447
int bp_scanned
Definition: mips32.h:421
enum mips32_dsp_imp dsp_imp
Definition: mips32.h:395
enum mips32_fp_imp fp_imp
Definition: mips32.h:394
int(* write_core_reg)(struct target *target, unsigned int num)
Definition: mips32.h:431
int semihosting
Definition: mips32.h:398
unsigned int common_magic
Definition: mips32.h:383
uint32_t cpu_quirks
Definition: mips32.h:416
int num_data_bpoints
Definition: mips32.h:423
bool fpu_in_64bit
Definition: mips32.h:409
struct mips32_comparator * data_break_list
Definition: mips32.h:427
struct mips32_comparator * inst_break_list
Definition: mips32.h:426
struct mips_ejtag ejtag_info
Definition: mips32.h:387
struct working_area * fast_data_area
Definition: mips32.h:419
struct mips32_core_regs core_regs
Definition: mips32.h:389
int num_data_bpoints_avail
Definition: mips32.h:425
int num_inst_bpoints
Definition: mips32.h:422
uint32_t prid
Definition: mips32.h:412
bool fpu_enabled
Definition: mips32.h:407
uint32_t cp0_mask
Definition: mips32.h:404
int(* read_core_reg)(struct target *target, unsigned int num)
Definition: mips32.h:430
enum mips32_isa_imp isa_imp
Definition: mips32.h:392
enum mips32_isa_mode isa_mode
Definition: mips32.h:391
enum mips32_isa_rel isa_rel
Definition: mips32.h:393
struct reg_cache * core_cache
Definition: mips32.h:386
int num_inst_bpoints_avail
Definition: mips32.h:424
const struct cpu_entry * cpu_info
Definition: mips32.h:414
uint32_t reg_address
Definition: mips32.h:372
struct target * target
Definition: mips32.h:442
struct mips32_common * mips32_common
Definition: mips32.h:443
uint32_t num
Definition: mips32.h:441
uint64_t fpr[MIPS32_REG_FP_COUNT]
Definition: mips32.h:377
uint32_t gpr[MIPS32_REG_GP_COUNT]
Definition: mips32.h:376
uint32_t cp0[MIPS32_REG_C0_COUNT]
Definition: mips32.h:379
uint32_t fpcr[MIPS32_REG_FPC_COUNT]
Definition: mips32.h:378
unsigned int sel
Definition: mips32.h:89
unsigned int reg
Definition: mips32.h:88
const unsigned int core
Definition: mips32.h:91
uint32_t prid
Definition: mips_ejtag.h:209
uint32_t ejtag_ctrl
Definition: mips_ejtag.h:210
unsigned scan_delay
Definition: mips_ejtag.h:217
uint32_t idcode
Definition: mips_ejtag.h:208
uint32_t reg9
Definition: mips_ejtag.h:216
uint32_t config[4]
Definition: mips_ejtag.h:213
unsigned int ejtag_version
Definition: mips_ejtag.h:221
uint32_t impcode
Definition: mips_ejtag.h:207
uint32_t ejtag_iba0_addr
Definition: mips_ejtag.h:229
uint32_t ejtag_iba_step_size
Definition: mips_ejtag.h:241
uint32_t endianness
Definition: mips_ejtag.h:223
struct jtag_tap * tap
Definition: mips_ejtag.h:206
uint32_t ejtag_dba_step_size
Definition: mips_ejtag.h:242
uint32_t reg8
Definition: mips_ejtag.h:215
uint32_t ejtag_ibs_addr
Definition: mips_ejtag.h:228
uint32_t config_regs
Definition: mips_ejtag.h:212
uint32_t ejtag_dbs_addr
Definition: mips_ejtag.h:234
uint32_t ejtag_dba0_addr
Definition: mips_ejtag.h:235
uint32_t debug_caps
Definition: mips_ejtag.h:227
uint32_t isa
Definition: mips_ejtag.h:222
struct pa_list * pracc_list
Definition: mips32_pracc.h:53
struct mips_ejtag * ejtag_info
Definition: mips32_pracc.h:47
int(* get)(struct reg *reg)
Definition: register.h:152
const char * name
Definition: register.h:145
unsigned num_regs
Definition: register.h:148
struct reg * reg_list
Definition: register.h:147
struct reg_cache * next
Definition: register.h:146
enum reg_type type
Definition: register.h:100
uint32_t size
Definition: algorithm.h:29
const char * reg_name
Definition: algorithm.h:28
Definition: register.h:111
bool caller_save
Definition: register.h:119
bool valid
Definition: register.h:126
bool exist
Definition: register.h:128
uint32_t size
Definition: register.h:132
const char * group
Definition: register.h:138
uint8_t * value
Definition: register.h:122
struct reg_feature * feature
Definition: register.h:117
struct reg_data_type * reg_data_type
Definition: register.h:135
uint32_t number
Definition: register.h:115
void * arch_info
Definition: register.h:140
bool dirty
Definition: register.h:124
const struct reg_arch_type * type
Definition: register.h:141
const char * name
Definition: register.h:113
Definition: target.h:116
enum target_state state
Definition: target.h:157
enum target_endianness endianness
Definition: target.h:155
struct reg_cache * reg_cache
Definition: target.h:158
void * arch_info
Definition: target.h:164
Definition: psoc6.c:84
target_addr_t address
Definition: target.h:86
int target_halt(struct target *target)
Definition: target.c:507
int target_write_buffer(struct target *target, target_addr_t address, uint32_t size, const uint8_t *buffer)
Definition: target.c:2342
int target_read_buffer(struct target *target, target_addr_t address, uint32_t size, uint8_t *buffer)
Definition: target.c:2407
int target_run_algorithm(struct target *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_param, target_addr_t entry_point, target_addr_t exit_point, unsigned int timeout_ms, void *arch_info)
Downloads a target-specific native code algorithm to the target, and executes it.
Definition: target.c:773
int target_alloc_working_area(struct target *target, uint32_t size, struct working_area **area)
Definition: target.c:2060
int target_write_u32(struct target *target, target_addr_t address, uint32_t value)
Definition: target.c:2641
int target_free_working_area(struct target *target, struct working_area *area)
Free a working area.
Definition: target.c:2118
int target_read_u32(struct target *target, target_addr_t address, uint32_t *value)
Definition: target.c:2550
const char * debug_reason_name(const struct target *t)
Definition: target.c:247
int target_wait_state(struct target *target, enum target_state state, unsigned int ms)
Definition: target.c:3207
struct target * get_current_target(struct command_context *cmd_ctx)
Definition: target.c:458
void target_buffer_set_u32_array(struct target *target, uint8_t *buffer, uint32_t count, const uint32_t *srcbuf)
Definition: target.c:417
int target_resume(struct target *target, int current, target_addr_t address, int handle_breakpoints, int debug_execution)
Make the target (re)start executing using its saved execution context (possibly with some modificatio...
Definition: target.c:556
target_register_class
Definition: target.h:110
#define ERROR_TARGET_NOT_HALTED
Definition: target.h:790
static bool target_was_examined(const struct target *target)
Definition: target.h:436
#define ERROR_TARGET_INVALID
Definition: target.h:787
@ TARGET_HALTED
Definition: target.h:56
@ TARGET_BIG_ENDIAN
Definition: target.h:82
@ TARGET_LITTLE_ENDIAN
Definition: target.h:82
#define ERROR_TARGET_TIMEOUT
Definition: target.h:789
#define ERROR_TARGET_RESOURCE_NOT_AVAILABLE
Definition: target.h:794
static void target_set_examined(struct target *target)
Sets the examined flag for the given target.
Definition: target.h:443
#define ARRAY_SIZE(x)
Compute the number of elements of a variable length array.
Definition: types.h:57
uint64_t target_addr_t
Definition: types.h:335
#define NULL
Definition: usb.h:16
uint8_t cmd
Definition: vdebug.c:1
uint8_t count[4]
Definition: vdebug.c:22