Remove whitespace at end of lines, step 1.
- Replace '\s*$' with ''. git-svn-id: svn://svn.berlios.de/openocd/trunk@2379 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -35,7 +35,7 @@ typedef struct mem_param_s
|
||||
uint32_t size;
|
||||
uint8_t *value;
|
||||
enum param_direction direction;
|
||||
} mem_param_t;
|
||||
} mem_param_t;
|
||||
|
||||
typedef struct reg_param_s
|
||||
{
|
||||
|
||||
@@ -1888,7 +1888,7 @@ int arm11_handle_mrc_mcr(struct command_context_s *cmd_ctx, char *cmd, char **ar
|
||||
if (values[i] > arm11_coproc_instruction_limits[i])
|
||||
{
|
||||
LOG_ERROR("Parameter %ld out of bounds (%" PRId32 " max). %s",
|
||||
(long)(i + 2),
|
||||
(long)(i + 2),
|
||||
arm11_coproc_instruction_limits[i],
|
||||
read ? arm11_mrc_syntax : arm11_mcr_syntax);
|
||||
return -1;
|
||||
@@ -1913,10 +1913,10 @@ int arm11_handle_mrc_mcr(struct command_context_s *cmd_ctx, char *cmd, char **ar
|
||||
arm11_run_instr_data_from_core_via_r0(arm11, instr, &result);
|
||||
|
||||
LOG_INFO("MRC p%d, %d, R0, c%d, c%d, %d = 0x%08" PRIx32 " (%" PRId32 ")",
|
||||
(int)(values[0]),
|
||||
(int)(values[1]),
|
||||
(int)(values[2]),
|
||||
(int)(values[3]),
|
||||
(int)(values[0]),
|
||||
(int)(values[1]),
|
||||
(int)(values[2]),
|
||||
(int)(values[3]),
|
||||
(int)(values[4]), result, result);
|
||||
}
|
||||
else
|
||||
|
||||
@@ -39,9 +39,9 @@ typedef struct arm926ejs_common_s
|
||||
} arm926ejs_common_t;
|
||||
|
||||
extern int arm926ejs_init_arch_info(target_t *target, arm926ejs_common_t *arm926ejs, jtag_tap_t *tap);
|
||||
extern int arm926ejs_register_commands(struct command_context_s *cmd_ctx);
|
||||
extern int arm926ejs_arch_state(struct target_s *target);
|
||||
extern int arm926ejs_write_memory(struct target_s *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
|
||||
extern int arm926ejs_register_commands(struct command_context_s *cmd_ctx);
|
||||
extern int arm926ejs_arch_state(struct target_s *target);
|
||||
extern int arm926ejs_write_memory(struct target_s *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
|
||||
extern int arm926ejs_soft_reset_halt(struct target_s *target);
|
||||
|
||||
#endif /* ARM926EJS_H */
|
||||
|
||||
@@ -59,7 +59,7 @@ extern int arm9tdmi_register_commands(struct command_context_s *cmd_ctx);
|
||||
|
||||
extern int arm9tdmi_clock_out(arm_jtag_t *jtag_info, uint32_t instr, uint32_t out, uint32_t *in, int sysspeed);
|
||||
extern int arm9tdmi_clock_data_in(arm_jtag_t *jtag_info, uint32_t *in);
|
||||
extern int arm9tdmi_clock_data_in_endianness(arm_jtag_t *jtag_info, void *in, int size, int be);
|
||||
extern int arm9tdmi_clock_data_in_endianness(arm_jtag_t *jtag_info, void *in, int size, int be);
|
||||
extern void arm9tdmi_read_core_regs(target_t *target, uint32_t mask, uint32_t* core_regs[16]);
|
||||
extern void arm9tdmi_write_core_regs(target_t *target, uint32_t mask, uint32_t core_regs[16]);
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@ typedef struct swjdp_common_s
|
||||
|
||||
} swjdp_common_t;
|
||||
|
||||
/* Accessor function for currently selected DAP-AP number */
|
||||
/* Accessor function for currently selected DAP-AP number */
|
||||
static inline uint8_t dap_ap_get_select(swjdp_common_t *swjdp)
|
||||
{
|
||||
return (uint8_t)(swjdp ->apsel >> 24);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -25,13 +25,13 @@
|
||||
enum arm_instruction_type
|
||||
{
|
||||
ARM_UNKNOWN_INSTUCTION,
|
||||
|
||||
|
||||
/* Branch instructions */
|
||||
ARM_B,
|
||||
ARM_BL,
|
||||
ARM_BX,
|
||||
ARM_BLX,
|
||||
|
||||
|
||||
/* Data processing instructions */
|
||||
ARM_AND,
|
||||
ARM_EOR,
|
||||
@@ -49,32 +49,32 @@ enum arm_instruction_type
|
||||
ARM_MOV,
|
||||
ARM_BIC,
|
||||
ARM_MVN,
|
||||
|
||||
|
||||
/* Load/store instructions */
|
||||
ARM_LDR,
|
||||
ARM_LDRB,
|
||||
ARM_LDRT,
|
||||
ARM_LDRBT,
|
||||
|
||||
|
||||
ARM_LDRH,
|
||||
ARM_LDRSB,
|
||||
ARM_LDRSH,
|
||||
|
||||
|
||||
ARM_LDM,
|
||||
|
||||
ARM_STR,
|
||||
ARM_STRB,
|
||||
ARM_STRT,
|
||||
ARM_STRBT,
|
||||
|
||||
|
||||
ARM_STRH,
|
||||
|
||||
|
||||
ARM_STM,
|
||||
|
||||
|
||||
/* Status register access instructions */
|
||||
ARM_MRS,
|
||||
ARM_MSR,
|
||||
|
||||
|
||||
/* Multiply instructions */
|
||||
ARM_MUL,
|
||||
ARM_MLA,
|
||||
@@ -82,25 +82,25 @@ enum arm_instruction_type
|
||||
ARM_SMLAL,
|
||||
ARM_UMULL,
|
||||
ARM_UMLAL,
|
||||
|
||||
|
||||
/* Miscellaneous instructions */
|
||||
ARM_CLZ,
|
||||
|
||||
|
||||
/* Exception generating instructions */
|
||||
ARM_BKPT,
|
||||
ARM_SWI,
|
||||
|
||||
|
||||
/* Coprocessor instructions */
|
||||
ARM_CDP,
|
||||
ARM_LDC,
|
||||
ARM_STC,
|
||||
ARM_MCR,
|
||||
ARM_MRC,
|
||||
|
||||
|
||||
/* Semaphore instructions */
|
||||
ARM_SWP,
|
||||
ARM_SWPB,
|
||||
|
||||
|
||||
/* Enhanced DSP extensions */
|
||||
ARM_MCRR,
|
||||
ARM_MRRC,
|
||||
@@ -184,7 +184,7 @@ typedef struct arm_instruction_s
|
||||
enum arm_instruction_type type;
|
||||
char text[128];
|
||||
uint32_t opcode;
|
||||
|
||||
|
||||
union {
|
||||
arm_b_bl_bx_blx_instr_t b_bl_bx_blx;
|
||||
arm_data_proc_instr_t data_proc;
|
||||
|
||||
@@ -48,7 +48,7 @@ int arm_jtag_set_instr(arm_jtag_t *jtag_info, uint32_t new_instr, void *no_veri
|
||||
field.out_value = t;
|
||||
buf_set_u32(field.out_value, 0, field.num_bits, new_instr);
|
||||
field.in_value = NULL;
|
||||
|
||||
|
||||
|
||||
|
||||
if (no_verify_capture == NULL)
|
||||
|
||||
@@ -35,7 +35,7 @@ uint32_t arm_shift(uint8_t shift, uint32_t Rm, uint32_t shift_amount, uint8_t *c
|
||||
{
|
||||
uint32_t return_value = 0;
|
||||
shift_amount &= 0xff;
|
||||
|
||||
|
||||
if (shift == 0x0) /* LSL */
|
||||
{
|
||||
if ((shift_amount > 0) && (shift_amount <= 32))
|
||||
@@ -118,7 +118,7 @@ uint32_t arm_shift(uint8_t shift, uint32_t Rm, uint32_t shift_amount, uint8_t *c
|
||||
Rm |= 0x80000000;
|
||||
*carry = Rm & 0x1;
|
||||
}
|
||||
|
||||
|
||||
return return_value;
|
||||
}
|
||||
|
||||
@@ -126,14 +126,14 @@ uint32_t arm_shifter_operand(armv4_5_common_t *armv4_5, int variant, union arm_s
|
||||
{
|
||||
uint32_t return_value;
|
||||
int instruction_size;
|
||||
|
||||
|
||||
if (armv4_5->core_state == ARMV4_5_STATE_ARM)
|
||||
instruction_size = 4;
|
||||
else
|
||||
instruction_size = 2;
|
||||
|
||||
|
||||
*shifter_carry_out = buf_get_u32(armv4_5->core_cache->reg_list[ARMV4_5_CPSR].value, 29, 1);
|
||||
|
||||
|
||||
if (variant == 0) /* 32-bit immediate */
|
||||
{
|
||||
return_value = shifter_operand.immediate.immediate;
|
||||
@@ -141,22 +141,22 @@ uint32_t arm_shifter_operand(armv4_5_common_t *armv4_5, int variant, union arm_s
|
||||
else if (variant == 1) /* immediate shift */
|
||||
{
|
||||
uint32_t Rm = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, shifter_operand.immediate_shift.Rm).value, 0, 32);
|
||||
|
||||
|
||||
/* adjust RM in case the PC is being read */
|
||||
if (shifter_operand.immediate_shift.Rm == 15)
|
||||
Rm += 2 * instruction_size;
|
||||
|
||||
|
||||
return_value = arm_shift(shifter_operand.immediate_shift.shift, Rm, shifter_operand.immediate_shift.shift_imm, shifter_carry_out);
|
||||
}
|
||||
else if (variant == 2) /* register shift */
|
||||
{
|
||||
uint32_t Rm = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, shifter_operand.register_shift.Rm).value, 0, 32);
|
||||
uint32_t Rs = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, shifter_operand.register_shift.Rs).value, 0, 32);
|
||||
|
||||
|
||||
/* adjust RM in case the PC is being read */
|
||||
if (shifter_operand.register_shift.Rm == 15)
|
||||
Rm += 2 * instruction_size;
|
||||
|
||||
|
||||
return_value = arm_shift(shifter_operand.immediate_shift.shift, Rm, Rs, shifter_carry_out);
|
||||
}
|
||||
else
|
||||
@@ -164,7 +164,7 @@ uint32_t arm_shifter_operand(armv4_5_common_t *armv4_5, int variant, union arm_s
|
||||
LOG_ERROR("BUG: shifter_operand.variant not 0, 1 or 2");
|
||||
return_value = 0xffffffff;
|
||||
}
|
||||
|
||||
|
||||
return return_value;
|
||||
}
|
||||
|
||||
@@ -251,16 +251,16 @@ int pass_condition(uint32_t cpsr, uint32_t opcode)
|
||||
case 0xe:
|
||||
case 0xf:
|
||||
return 1;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
LOG_ERROR("BUG: should never get here");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int thumb_pass_branch_condition(uint32_t cpsr, uint16_t opcode)
|
||||
{
|
||||
return pass_condition(cpsr, (opcode & 0x0f00) << 20);
|
||||
return pass_condition(cpsr, (opcode & 0x0f00) << 20);
|
||||
}
|
||||
|
||||
/* simulate a single step (if possible)
|
||||
@@ -274,11 +274,11 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
arm_instruction_t instruction;
|
||||
int instruction_size;
|
||||
int retval = ERROR_OK;
|
||||
|
||||
|
||||
if (armv4_5->core_state == ARMV4_5_STATE_ARM)
|
||||
{
|
||||
uint32_t opcode;
|
||||
|
||||
|
||||
/* get current instruction, and identify it */
|
||||
if ((retval = target_read_u32(target, current_pc, &opcode)) != ERROR_OK)
|
||||
{
|
||||
@@ -289,7 +289,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
return retval;
|
||||
}
|
||||
instruction_size = 4;
|
||||
|
||||
|
||||
/* check condition code (for all instructions) */
|
||||
if (!pass_condition(buf_get_u32(armv4_5->core_cache->reg_list[ARMV4_5_CPSR].value, 0, 32), opcode))
|
||||
{
|
||||
@@ -301,14 +301,14 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
{
|
||||
buf_set_u32(armv4_5->core_cache->reg_list[15].value, 0, 32, current_pc + instruction_size);
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint16_t opcode;
|
||||
|
||||
|
||||
if ((retval = target_read_u16(target, current_pc, &opcode)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
@@ -318,7 +318,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
return retval;
|
||||
}
|
||||
instruction_size = 2;
|
||||
|
||||
|
||||
/* check condition code (only for branch instructions) */
|
||||
if ((!thumb_pass_branch_condition(buf_get_u32(armv4_5->core_cache->reg_list[ARMV4_5_CPSR].value, 0, 32), opcode)) &&
|
||||
(instruction.type == ARM_B))
|
||||
@@ -331,33 +331,33 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
{
|
||||
buf_set_u32(armv4_5->core_cache->reg_list[15].value, 0, 32, current_pc + instruction_size);
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* examine instruction type */
|
||||
|
||||
/* branch instructions */
|
||||
if ((instruction.type >= ARM_B) && (instruction.type <= ARM_BLX))
|
||||
{
|
||||
uint32_t target;
|
||||
|
||||
|
||||
if (instruction.info.b_bl_bx_blx.reg_operand == -1)
|
||||
{
|
||||
target = instruction.info.b_bl_bx_blx.target_address;
|
||||
}
|
||||
else
|
||||
{
|
||||
target = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.b_bl_bx_blx.reg_operand).value, 0, 32);
|
||||
target = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.b_bl_bx_blx.reg_operand).value, 0, 32);
|
||||
if (instruction.info.b_bl_bx_blx.reg_operand == 15)
|
||||
{
|
||||
target += 2 * instruction_size;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (dry_run_pc)
|
||||
{
|
||||
{
|
||||
*dry_run_pc = target;
|
||||
return ERROR_OK;
|
||||
}
|
||||
@@ -400,7 +400,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
}
|
||||
buf_set_u32(armv4_5->core_cache->reg_list[15].value, 0, 32, target & 0xfffffffe);
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
}
|
||||
@@ -411,7 +411,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
uint32_t Rd, Rn, shifter_operand;
|
||||
uint8_t C = buf_get_u32(armv4_5->core_cache->reg_list[ARMV4_5_CPSR].value, 29, 1);
|
||||
uint8_t carry_out;
|
||||
|
||||
|
||||
Rd = 0x0;
|
||||
/* ARM_MOV and ARM_MVN does not use Rn */
|
||||
if ((instruction.type != ARM_MOV) && (instruction.type != ARM_MVN))
|
||||
@@ -424,7 +424,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
/* adjust Rn in case the PC is being read */
|
||||
if (instruction.info.data_proc.Rn == 15)
|
||||
Rn += 2 * instruction_size;
|
||||
|
||||
|
||||
if (instruction.type == ARM_AND)
|
||||
Rd = Rn & shifter_operand;
|
||||
else if (instruction.type == ARM_EOR)
|
||||
@@ -451,7 +451,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
Rd = ~shifter_operand;
|
||||
else
|
||||
LOG_WARNING("unhandled instruction type");
|
||||
|
||||
|
||||
if (dry_run_pc)
|
||||
{
|
||||
if (instruction.info.data_proc.Rd == 15)
|
||||
@@ -463,7 +463,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
{
|
||||
*dry_run_pc = current_pc + instruction_size;
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
else
|
||||
@@ -471,7 +471,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.data_proc.Rd).value, 0, 32, Rd);
|
||||
LOG_WARNING("no updating of flags yet");
|
||||
|
||||
if (instruction.info.data_proc.Rd == 15)
|
||||
if (instruction.info.data_proc.Rd == 15)
|
||||
return ERROR_OK;
|
||||
}
|
||||
}
|
||||
@@ -493,11 +493,11 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
{
|
||||
uint32_t load_address = 0, modified_address = 0, load_value;
|
||||
uint32_t Rn = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.load_store.Rn).value, 0, 32);
|
||||
|
||||
|
||||
/* adjust Rn in case the PC is being read */
|
||||
if (instruction.info.load_store.Rn == 15)
|
||||
Rn += 2 * instruction_size;
|
||||
|
||||
|
||||
if (instruction.info.load_store.offset_mode == 0)
|
||||
{
|
||||
if (instruction.info.load_store.U)
|
||||
@@ -512,9 +512,9 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
uint8_t shift = instruction.info.load_store.offset.reg.shift;
|
||||
uint8_t shift_imm = instruction.info.load_store.offset.reg.shift_imm;
|
||||
uint8_t carry = buf_get_u32(armv4_5->core_cache->reg_list[ARMV4_5_CPSR].value, 29, 1);
|
||||
|
||||
|
||||
offset = arm_shift(shift, Rm, shift_imm, &carry);
|
||||
|
||||
|
||||
if (instruction.info.load_store.U)
|
||||
modified_address = Rn + offset;
|
||||
else
|
||||
@@ -524,7 +524,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
{
|
||||
LOG_ERROR("BUG: offset_mode neither 0 (offset) nor 1 (scaled register)");
|
||||
}
|
||||
|
||||
|
||||
if (instruction.info.load_store.index_mode == 0)
|
||||
{
|
||||
/* offset mode
|
||||
@@ -544,7 +544,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
* we load from the unmodified address, and write the modified address back */
|
||||
load_address = Rn;
|
||||
}
|
||||
|
||||
|
||||
if ((!dry_run_pc) || (instruction.info.load_store.Rd == 15))
|
||||
{
|
||||
if ((retval = target_read_u32(target, load_address, &load_value)) != ERROR_OK)
|
||||
@@ -552,7 +552,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
return retval;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (dry_run_pc)
|
||||
{
|
||||
if (instruction.info.load_store.Rd == 15)
|
||||
@@ -564,7 +564,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
{
|
||||
*dry_run_pc = current_pc + instruction_size;
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
else
|
||||
@@ -573,9 +573,9 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
(instruction.info.load_store.index_mode == 2))
|
||||
{
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.load_store.Rn).value, 0, 32, modified_address);
|
||||
}
|
||||
}
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.load_store.Rd).value, 0, 32, load_value);
|
||||
|
||||
|
||||
if (instruction.info.load_store.Rd == 15)
|
||||
return ERROR_OK;
|
||||
}
|
||||
@@ -593,7 +593,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
if (instruction.info.load_store_multiple.register_list & (1 << i))
|
||||
bits_set++;
|
||||
}
|
||||
|
||||
|
||||
switch (instruction.info.load_store_multiple.addressing_mode)
|
||||
{
|
||||
case 0: /* Increment after */
|
||||
@@ -603,7 +603,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
Rn = Rn + 4;
|
||||
break;
|
||||
case 2: /* Decrement after */
|
||||
Rn = Rn - (bits_set * 4) + 4;
|
||||
Rn = Rn - (bits_set * 4) + 4;
|
||||
break;
|
||||
case 3: /* Decrement before */
|
||||
Rn = Rn - (bits_set * 4);
|
||||
@@ -621,7 +621,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
Rn += 4;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (dry_run_pc)
|
||||
{
|
||||
if (instruction.info.load_store_multiple.register_list & 0x8000)
|
||||
@@ -650,17 +650,17 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, mode, i).value, 0, 32, load_values[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (update_cpsr)
|
||||
{
|
||||
uint32_t spsr = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, 16).value, 0, 32);
|
||||
buf_set_u32(armv4_5->core_cache->reg_list[ARMV4_5_CPSR].value, 0, 32, spsr);
|
||||
}
|
||||
|
||||
|
||||
/* base register writeback */
|
||||
if (instruction.info.load_store_multiple.W)
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.load_store_multiple.Rn).value, 0, 32, Rn);
|
||||
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.load_store_multiple.Rn).value, 0, 32, Rn);
|
||||
|
||||
if (instruction.info.load_store_multiple.register_list & 0x8000)
|
||||
return ERROR_OK;
|
||||
}
|
||||
@@ -685,12 +685,12 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
if (instruction.info.load_store_multiple.register_list & (1 << i))
|
||||
bits_set++;
|
||||
}
|
||||
|
||||
|
||||
if (instruction.info.load_store_multiple.S)
|
||||
{
|
||||
mode = ARMV4_5_MODE_USR;
|
||||
}
|
||||
|
||||
|
||||
switch (instruction.info.load_store_multiple.addressing_mode)
|
||||
{
|
||||
case 0: /* Increment after */
|
||||
@@ -700,13 +700,13 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
Rn = Rn + 4;
|
||||
break;
|
||||
case 2: /* Decrement after */
|
||||
Rn = Rn - (bits_set * 4) + 4;
|
||||
Rn = Rn - (bits_set * 4) + 4;
|
||||
break;
|
||||
case 3: /* Decrement before */
|
||||
Rn = Rn - (bits_set * 4);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
for (i = 0; i < 16; i++)
|
||||
{
|
||||
if (instruction.info.load_store_multiple.register_list & (1 << i))
|
||||
@@ -715,11 +715,11 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
Rn += 4;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* base register writeback */
|
||||
if (instruction.info.load_store_multiple.W)
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.load_store_multiple.Rn).value, 0, 32, Rn);
|
||||
|
||||
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, instruction.info.load_store_multiple.Rn).value, 0, 32, Rn);
|
||||
|
||||
}
|
||||
}
|
||||
else if (!dry_run_pc)
|
||||
@@ -728,7 +728,7 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
*/
|
||||
return ERROR_ARM_SIMULATOR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
if (dry_run_pc)
|
||||
{
|
||||
*dry_run_pc = current_pc + instruction_size;
|
||||
@@ -739,5 +739,5 @@ int arm_simulate_step(target_t *target, uint32_t *dry_run_pc)
|
||||
buf_set_u32(armv4_5->core_cache->reg_list[15].value, 0, 32, current_pc + instruction_size);
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -339,9 +339,9 @@ int handle_armv4_5_reg_command(struct command_context_s *cmd_ctx, char *cmd, cha
|
||||
{
|
||||
armv4_5->full_context(target);
|
||||
}
|
||||
output_len += snprintf(output + output_len,
|
||||
128 - output_len,
|
||||
"%8s: %8.8" PRIx32 " ",
|
||||
output_len += snprintf(output + output_len,
|
||||
128 - output_len,
|
||||
"%8s: %8.8" PRIx32 " ",
|
||||
ARMV4_5_CORE_REG_MODENUM(armv4_5->core_cache, mode, num).name,
|
||||
buf_get_u32(ARMV4_5_CORE_REG_MODENUM(armv4_5->core_cache, mode, num).value, 0, 32));
|
||||
}
|
||||
|
||||
@@ -543,7 +543,7 @@ int armv7m_register_commands(struct command_context_s *cmd_ctx)
|
||||
{
|
||||
command_t *arm_adi_v5_dap_cmd;
|
||||
|
||||
arm_adi_v5_dap_cmd = register_command(cmd_ctx, NULL, "dap", NULL, COMMAND_ANY, "cortex dap specific commands");
|
||||
arm_adi_v5_dap_cmd = register_command(cmd_ctx, NULL, "dap", NULL, COMMAND_ANY, "cortex dap specific commands");
|
||||
register_command(cmd_ctx, arm_adi_v5_dap_cmd, "info", handle_dap_info_command, COMMAND_EXEC, "Displays dap info for ap [num], default currently selected AP");
|
||||
register_command(cmd_ctx, arm_adi_v5_dap_cmd, "apsel", handle_dap_apsel_command, COMMAND_EXEC, "Select a different AP [num] (default 0)");
|
||||
register_command(cmd_ctx, arm_adi_v5_dap_cmd, "apid", handle_dap_apid_command, COMMAND_EXEC, "Displays id reg from AP [num], default currently selected AP");
|
||||
@@ -710,7 +710,7 @@ int handle_dap_baseaddr_command(struct command_context_s *cmd_ctx, char *cmd, ch
|
||||
apsel = swjdp->apsel;
|
||||
apselsave = swjdp->apsel;
|
||||
if (argc > 0)
|
||||
{
|
||||
{
|
||||
apsel = strtoul(args[0], NULL, 0);
|
||||
}
|
||||
if (apselsave != apsel)
|
||||
@@ -745,7 +745,7 @@ extern int handle_dap_apid_command(struct command_context_s *cmd_ctx, char *cmd,
|
||||
apsel = swjdp->apsel;
|
||||
apselsave = swjdp->apsel;
|
||||
if (argc > 0)
|
||||
{
|
||||
{
|
||||
apsel = strtoul(args[0], NULL, 0);
|
||||
}
|
||||
|
||||
@@ -775,7 +775,7 @@ int handle_dap_apsel_command(struct command_context_s *cmd_ctx, char *cmd, char
|
||||
|
||||
apsel = 0;
|
||||
if (argc > 0)
|
||||
{
|
||||
{
|
||||
apsel = strtoul(args[0], NULL, 0);
|
||||
}
|
||||
|
||||
@@ -796,7 +796,7 @@ int handle_dap_memaccess_command(struct command_context_s *cmd_ctx, char *cmd, c
|
||||
|
||||
memaccess_tck = swjdp->memaccess_tck;
|
||||
if (argc > 0)
|
||||
{
|
||||
{
|
||||
memaccess_tck = strtoul(args[0], NULL, 0);
|
||||
}
|
||||
|
||||
@@ -816,10 +816,10 @@ int handle_dap_info_command(struct command_context_s *cmd_ctx, char *cmd, char *
|
||||
|
||||
apsel = swjdp->apsel;
|
||||
if (argc > 0)
|
||||
{
|
||||
{
|
||||
apsel = strtoul(args[0], NULL, 0);
|
||||
}
|
||||
|
||||
|
||||
retval = dap_info_command(cmd_ctx, swjdp, apsel);
|
||||
|
||||
return retval;
|
||||
|
||||
@@ -55,7 +55,7 @@ extern char* armv7m_exception_strings[];
|
||||
extern char *armv7m_exception_string(int number);
|
||||
|
||||
/* offsets into armv7m core register cache */
|
||||
enum
|
||||
enum
|
||||
{
|
||||
ARMV7M_PC = 15,
|
||||
ARMV7M_xPSR = 16,
|
||||
@@ -78,18 +78,18 @@ typedef struct armv7m_common_s
|
||||
int exception_number;
|
||||
swjdp_common_t swjdp_info;
|
||||
|
||||
|
||||
|
||||
/* Direct processor core register read and writes */
|
||||
int (*load_core_reg_u32)(struct target_s *target, enum armv7m_regtype type, uint32_t num, uint32_t *value);
|
||||
int (*store_core_reg_u32)(struct target_s *target, enum armv7m_regtype type, uint32_t num, uint32_t value);
|
||||
/* register cache to processor synchronization */
|
||||
int (*read_core_reg)(struct target_s *target, int num);
|
||||
int (*write_core_reg)(struct target_s *target, int num);
|
||||
|
||||
|
||||
int (*examine_debug_reason)(target_t *target);
|
||||
void (*pre_debug_entry)(target_t *target);
|
||||
void (*post_debug_entry)(target_t *target);
|
||||
|
||||
|
||||
void (*pre_restore_context)(target_t *target);
|
||||
void (*post_restore_context)(target_t *target);
|
||||
|
||||
@@ -99,7 +99,7 @@ typedef struct armv7m_common_s
|
||||
typedef struct armv7m_algorithm_s
|
||||
{
|
||||
int common_magic;
|
||||
|
||||
|
||||
enum armv7m_mode core_mode;
|
||||
} armv7m_algorithm_t;
|
||||
|
||||
@@ -133,28 +133,28 @@ extern int armv7m_blank_check_memory(struct target_s *target, uint32_t address,
|
||||
|
||||
/* Thumb mode instructions
|
||||
*/
|
||||
|
||||
|
||||
/* Move to Register from Special Register (Thumb mode) 32 bit Thumb2 instruction
|
||||
* Rd: destination register
|
||||
* SYSm: source special register
|
||||
*/
|
||||
#define ARMV7M_T_MRS(Rd, SYSm) ((0xF3EF) | ((0x8000 | (Rd << 8) | SYSm) << 16))
|
||||
#define ARMV7M_T_MRS(Rd, SYSm) ((0xF3EF) | ((0x8000 | (Rd << 8) | SYSm) << 16))
|
||||
|
||||
/* Move from Register from Special Register (Thumb mode) 32 bit Thumb2 instruction
|
||||
* Rd: source register
|
||||
* SYSm: destination special register
|
||||
*/
|
||||
#define ARMV7M_T_MSR(SYSm, Rn) ((0xF380 | (Rn << 8)) | ((0x8800 | SYSm) << 16))
|
||||
#define ARMV7M_T_MSR(SYSm, Rn) ((0xF380 | (Rn << 8)) | ((0x8800 | SYSm) << 16))
|
||||
|
||||
/* Change Processor State. The instruction modifies the PRIMASK and FAULTMASK
|
||||
/* Change Processor State. The instruction modifies the PRIMASK and FAULTMASK
|
||||
* special-purpose register values (Thumb mode) 16 bit Thumb2 instruction
|
||||
* Rd: source register
|
||||
* IF:
|
||||
* IF:
|
||||
*/
|
||||
#define I_FLAG 2
|
||||
#define F_FLAG 1
|
||||
#define ARMV7M_T_CPSID(IF) ((0xB660 | (1 << 8) | (IF&0x3)) | ((0xB660 | (1 << 8) | (IF&0x3)) << 16))
|
||||
#define ARMV7M_T_CPSIE(IF) ((0xB660 | (0 << 8) | (IF&0x3)) | ((0xB660 | (0 << 8) | (IF&0x3)) << 16))
|
||||
#define F_FLAG 1
|
||||
#define ARMV7M_T_CPSID(IF) ((0xB660 | (1 << 8) | (IF&0x3)) | ((0xB660 | (1 << 8) | (IF&0x3)) << 16))
|
||||
#define ARMV7M_T_CPSIE(IF) ((0xB660 | (0 << 8) | (IF&0x3)) | ((0xB660 | (0 << 8) | (IF&0x3)) << 16))
|
||||
|
||||
/* Breakpoint (Thumb mode) v5 onwards
|
||||
* Im: immediate value used by debugger
|
||||
@@ -178,12 +178,12 @@ extern int armv7m_blank_check_memory(struct target_s *target, uint32_t address,
|
||||
* List: for each bit in list: store register
|
||||
*/
|
||||
#define ARMV7M_T_LDMIA(Rn, List) ((0xc800 | (Rn << 8) | List) | ((0xc800 | (Rn << 8) | List) << 16))
|
||||
|
||||
|
||||
/* Load register with PC relative addressing
|
||||
* Rd: register to load
|
||||
*/
|
||||
#define ARMV7M_T_LDR_PCREL(Rd) ((0x4800 | (Rd << 8)) | ((0x4800 | (Rd << 8)) << 16))
|
||||
|
||||
#define ARMV7M_T_LDR_PCREL(Rd) ((0x4800 | (Rd << 8)) | ((0x4800 | (Rd << 8)) << 16))
|
||||
|
||||
/* Move hi register (Thumb mode)
|
||||
* Rd: destination register
|
||||
* Rm: source register
|
||||
|
||||
@@ -44,7 +44,7 @@ int breakpoint_add(target_t *target, uint32_t address, uint32_t length, enum bre
|
||||
breakpoint_t *breakpoint = target->breakpoints;
|
||||
breakpoint_t **breakpoint_p = &target->breakpoints;
|
||||
int retval;
|
||||
|
||||
|
||||
while (breakpoint)
|
||||
{
|
||||
if (breakpoint->address == address)
|
||||
@@ -52,7 +52,7 @@ int breakpoint_add(target_t *target, uint32_t address, uint32_t length, enum bre
|
||||
breakpoint_p = &breakpoint->next;
|
||||
breakpoint = breakpoint->next;
|
||||
}
|
||||
|
||||
|
||||
(*breakpoint_p) = malloc(sizeof(breakpoint_t));
|
||||
(*breakpoint_p)->address = address;
|
||||
(*breakpoint_p)->length = length;
|
||||
@@ -60,7 +60,7 @@ int breakpoint_add(target_t *target, uint32_t address, uint32_t length, enum bre
|
||||
(*breakpoint_p)->set = 0;
|
||||
(*breakpoint_p)->orig_instr = malloc(length);
|
||||
(*breakpoint_p)->next = NULL;
|
||||
|
||||
|
||||
if ((retval = target_add_breakpoint(target, *breakpoint_p)) != ERROR_OK)
|
||||
{
|
||||
switch (retval)
|
||||
@@ -83,11 +83,11 @@ int breakpoint_add(target_t *target, uint32_t address, uint32_t length, enum bre
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
LOG_DEBUG("added %s breakpoint at 0x%8.8" PRIx32 " of length 0x%8.8x",
|
||||
|
||||
LOG_DEBUG("added %s breakpoint at 0x%8.8" PRIx32 " of length 0x%8.8x",
|
||||
breakpoint_type_strings[(*breakpoint_p)->type],
|
||||
(*breakpoint_p)->address, (*breakpoint_p)->length);
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ static void breakpoint_free(target_t *target, breakpoint_t *breakpoint_remove)
|
||||
{
|
||||
breakpoint_t *breakpoint = target->breakpoints;
|
||||
breakpoint_t **breakpoint_p = &target->breakpoints;
|
||||
|
||||
|
||||
while (breakpoint)
|
||||
{
|
||||
if (breakpoint == breakpoint_remove)
|
||||
@@ -104,12 +104,12 @@ static void breakpoint_free(target_t *target, breakpoint_t *breakpoint_remove)
|
||||
breakpoint_p = &breakpoint->next;
|
||||
breakpoint = breakpoint->next;
|
||||
}
|
||||
|
||||
|
||||
if (breakpoint == NULL)
|
||||
return;
|
||||
|
||||
|
||||
target_remove_breakpoint(target, breakpoint);
|
||||
|
||||
|
||||
(*breakpoint_p) = breakpoint->next;
|
||||
free(breakpoint->orig_instr);
|
||||
free(breakpoint);
|
||||
@@ -119,7 +119,7 @@ void breakpoint_remove(target_t *target, uint32_t address)
|
||||
{
|
||||
breakpoint_t *breakpoint = target->breakpoints;
|
||||
breakpoint_t **breakpoint_p = &target->breakpoints;
|
||||
|
||||
|
||||
while (breakpoint)
|
||||
{
|
||||
if (breakpoint->address == address)
|
||||
@@ -127,7 +127,7 @@ void breakpoint_remove(target_t *target, uint32_t address)
|
||||
breakpoint_p = &breakpoint->next;
|
||||
breakpoint = breakpoint->next;
|
||||
}
|
||||
|
||||
|
||||
if (breakpoint)
|
||||
{
|
||||
breakpoint_free(target, breakpoint);
|
||||
@@ -150,14 +150,14 @@ void breakpoint_clear_target(target_t *target)
|
||||
breakpoint_t* breakpoint_find(target_t *target, uint32_t address)
|
||||
{
|
||||
breakpoint_t *breakpoint = target->breakpoints;
|
||||
|
||||
|
||||
while (breakpoint)
|
||||
{
|
||||
if (breakpoint->address == address)
|
||||
return breakpoint;
|
||||
breakpoint = breakpoint->next;
|
||||
}
|
||||
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -166,7 +166,7 @@ int watchpoint_add(target_t *target, uint32_t address, uint32_t length, enum wat
|
||||
watchpoint_t *watchpoint = target->watchpoints;
|
||||
watchpoint_t **watchpoint_p = &target->watchpoints;
|
||||
int retval;
|
||||
|
||||
|
||||
while (watchpoint)
|
||||
{
|
||||
if (watchpoint->address == address)
|
||||
@@ -174,7 +174,7 @@ int watchpoint_add(target_t *target, uint32_t address, uint32_t length, enum wat
|
||||
watchpoint_p = &watchpoint->next;
|
||||
watchpoint = watchpoint->next;
|
||||
}
|
||||
|
||||
|
||||
(*watchpoint_p) = malloc(sizeof(watchpoint_t));
|
||||
(*watchpoint_p)->address = address;
|
||||
(*watchpoint_p)->length = length;
|
||||
@@ -183,7 +183,7 @@ int watchpoint_add(target_t *target, uint32_t address, uint32_t length, enum wat
|
||||
(*watchpoint_p)->rw = rw;
|
||||
(*watchpoint_p)->set = 0;
|
||||
(*watchpoint_p)->next = NULL;
|
||||
|
||||
|
||||
if ((retval = target_add_watchpoint(target, *watchpoint_p)) != ERROR_OK)
|
||||
{
|
||||
switch (retval)
|
||||
@@ -206,11 +206,11 @@ int watchpoint_add(target_t *target, uint32_t address, uint32_t length, enum wat
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
LOG_DEBUG("added %s watchpoint at 0x%8.8" PRIx32 " of length 0x%8.8x",
|
||||
watchpoint_rw_strings[(*watchpoint_p)->rw],
|
||||
(*watchpoint_p)->address, (*watchpoint_p)->length);
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -226,7 +226,7 @@ static void watchpoint_free(target_t *target, watchpoint_t *watchpoint_remove)
|
||||
watchpoint_p = &watchpoint->next;
|
||||
watchpoint = watchpoint->next;
|
||||
}
|
||||
|
||||
|
||||
if (watchpoint == NULL)
|
||||
return;
|
||||
target_remove_watchpoint(target, watchpoint);
|
||||
@@ -238,7 +238,7 @@ void watchpoint_remove(target_t *target, uint32_t address)
|
||||
{
|
||||
watchpoint_t *watchpoint = target->watchpoints;
|
||||
watchpoint_t **watchpoint_p = &target->watchpoints;
|
||||
|
||||
|
||||
while (watchpoint)
|
||||
{
|
||||
if (watchpoint->address == address)
|
||||
@@ -246,7 +246,7 @@ void watchpoint_remove(target_t *target, uint32_t address)
|
||||
watchpoint_p = &watchpoint->next;
|
||||
watchpoint = watchpoint->next;
|
||||
}
|
||||
|
||||
|
||||
if (watchpoint)
|
||||
{
|
||||
watchpoint_free(target, watchpoint);
|
||||
|
||||
@@ -44,7 +44,7 @@ extern char* cortex_m3_state_strings[];
|
||||
#define DCB_DCRDR 0xE000EDF8
|
||||
#define DCB_DEMCR 0xE000EDFC
|
||||
|
||||
#define DCRSR_WnR (1 << 16)
|
||||
#define DCRSR_WnR (1 << 16)
|
||||
|
||||
#define DWT_CTRL 0xE0001000
|
||||
#define DWT_COMP0 0xE0001020
|
||||
@@ -138,12 +138,12 @@ typedef struct cortex_m3_common_s
|
||||
{
|
||||
int common_magic;
|
||||
arm_jtag_t jtag_info;
|
||||
|
||||
|
||||
/* Context information */
|
||||
uint32_t dcb_dhcsr;
|
||||
uint32_t nvic_dfsr; /* Debug Fault Status Register - shows reason for debug halt */
|
||||
uint32_t nvic_icsr; /* Interrupt Control State Register - shows active and pending IRQ */
|
||||
|
||||
|
||||
/* Flash Patch and Breakpoint (FPB) */
|
||||
int fp_num_lit;
|
||||
int fp_num_code;
|
||||
@@ -151,16 +151,16 @@ typedef struct cortex_m3_common_s
|
||||
int fpb_enabled;
|
||||
int auto_bp_type;
|
||||
cortex_m3_fp_comparator_t *fp_comparator_list;
|
||||
|
||||
|
||||
/* Data Watchpoint and Trace (DWT) */
|
||||
int dwt_num_comp;
|
||||
int dwt_comp_available;
|
||||
cortex_m3_dwt_comparator_t *dwt_comparator_list;
|
||||
|
||||
|
||||
/* Interrupts */
|
||||
int intlinesnum;
|
||||
uint32_t *intsetenable;
|
||||
|
||||
|
||||
armv7m_common_t armv7m;
|
||||
// swjdp_common_t swjdp_info;
|
||||
void *arch_info;
|
||||
|
||||
@@ -132,32 +132,32 @@ int feroceon_dummy_clock_out(arm_jtag_t *jtag_info, uint32_t instr)
|
||||
fields[0].tap = jtag_info->tap;
|
||||
fields[0].num_bits = 32;
|
||||
fields[0].out_value = out_buf;
|
||||
|
||||
|
||||
fields[0].in_value = NULL;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
fields[1].tap = jtag_info->tap;
|
||||
fields[1].num_bits = 3;
|
||||
fields[1].out_value = &sysspeed_buf;
|
||||
|
||||
|
||||
fields[1].in_value = NULL;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
fields[2].tap = jtag_info->tap;
|
||||
fields[2].num_bits = 32;
|
||||
fields[2].out_value = instr_buf;
|
||||
|
||||
|
||||
fields[2].in_value = NULL;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
jtag_add_dr_scan(3, fields, jtag_get_end_state());
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ char* mips32_core_reg_list[] =
|
||||
"status", "lo", "hi", "badvaddr", "cause", "pc"
|
||||
};
|
||||
|
||||
mips32_core_reg_t mips32_core_reg_list_arch_info[MIPS32NUMCOREREGS] =
|
||||
mips32_core_reg_t mips32_core_reg_list_arch_info[MIPS32NUMCOREREGS] =
|
||||
{
|
||||
{0, NULL, NULL},
|
||||
{1, NULL, NULL},
|
||||
@@ -72,7 +72,7 @@ mips32_core_reg_t mips32_core_reg_list_arch_info[MIPS32NUMCOREREGS] =
|
||||
{29, NULL, NULL},
|
||||
{30, NULL, NULL},
|
||||
{31, NULL, NULL},
|
||||
|
||||
|
||||
{32, NULL, NULL},
|
||||
{33, NULL, NULL},
|
||||
{34, NULL, NULL},
|
||||
@@ -101,14 +101,14 @@ int mips32_get_core_reg(reg_t *reg)
|
||||
mips32_core_reg_t *mips32_reg = reg->arch_info;
|
||||
target_t *target = mips32_reg->target;
|
||||
mips32_common_t *mips32_target = target->arch_info;
|
||||
|
||||
|
||||
if (target->state != TARGET_HALTED)
|
||||
{
|
||||
return ERROR_TARGET_NOT_HALTED;
|
||||
}
|
||||
|
||||
retval = mips32_target->read_core_reg(target, mips32_reg->num);
|
||||
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
@@ -117,12 +117,12 @@ int mips32_set_core_reg(reg_t *reg, uint8_t *buf)
|
||||
mips32_core_reg_t *mips32_reg = reg->arch_info;
|
||||
target_t *target = mips32_reg->target;
|
||||
uint32_t value = buf_get_u32(buf, 0, 32);
|
||||
|
||||
|
||||
if (target->state != TARGET_HALTED)
|
||||
{
|
||||
return ERROR_TARGET_NOT_HALTED;
|
||||
}
|
||||
|
||||
|
||||
buf_set_u32(reg->value, 0, 32, value);
|
||||
reg->dirty = 1;
|
||||
reg->valid = 1;
|
||||
@@ -134,10 +134,10 @@ int mips32_read_core_reg(struct target_s *target, int num)
|
||||
{
|
||||
uint32_t reg_value;
|
||||
mips32_core_reg_t *mips_core_reg;
|
||||
|
||||
|
||||
/* get pointers to arch-specific information */
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
|
||||
|
||||
if ((num < 0) || (num >= MIPS32NUMCOREREGS))
|
||||
return ERROR_INVALID_ARGUMENTS;
|
||||
|
||||
@@ -146,28 +146,28 @@ int mips32_read_core_reg(struct target_s *target, int num)
|
||||
buf_set_u32(mips32->core_cache->reg_list[num].value, 0, 32, reg_value);
|
||||
mips32->core_cache->reg_list[num].valid = 1;
|
||||
mips32->core_cache->reg_list[num].dirty = 0;
|
||||
|
||||
return ERROR_OK;
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int mips32_write_core_reg(struct target_s *target, int num)
|
||||
{
|
||||
uint32_t reg_value;
|
||||
mips32_core_reg_t *mips_core_reg;
|
||||
|
||||
|
||||
/* get pointers to arch-specific information */
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
|
||||
if ((num < 0) || (num >= MIPS32NUMCOREREGS))
|
||||
return ERROR_INVALID_ARGUMENTS;
|
||||
|
||||
|
||||
reg_value = buf_get_u32(mips32->core_cache->reg_list[num].value, 0, 32);
|
||||
mips_core_reg = mips32->core_cache->reg_list[num].arch_info;
|
||||
mips32->core_regs[num] = reg_value;
|
||||
LOG_DEBUG("write core reg %i value 0x%" PRIx32 "", num , reg_value);
|
||||
mips32->core_cache->reg_list[num].valid = 1;
|
||||
mips32->core_cache->reg_list[num].dirty = 0;
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -176,13 +176,13 @@ int mips32_invalidate_core_regs(target_t *target)
|
||||
/* get pointers to arch-specific information */
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
int i;
|
||||
|
||||
|
||||
for (i = 0; i < mips32->core_cache->num_regs; i++)
|
||||
{
|
||||
mips32->core_cache->reg_list[i].valid = 0;
|
||||
mips32->core_cache->reg_list[i].dirty = 0;
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -191,16 +191,16 @@ int mips32_get_gdb_reg_list(target_t *target, reg_t **reg_list[], int *reg_list_
|
||||
/* get pointers to arch-specific information */
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
int i;
|
||||
|
||||
|
||||
/* include floating point registers */
|
||||
*reg_list_size = MIPS32NUMCOREREGS + MIPS32NUMFPREGS;
|
||||
*reg_list = malloc(sizeof(reg_t*) * (*reg_list_size));
|
||||
|
||||
|
||||
for (i = 0; i < MIPS32NUMCOREREGS; i++)
|
||||
{
|
||||
(*reg_list)[i] = &mips32->core_cache->reg_list[i];
|
||||
}
|
||||
|
||||
|
||||
/* add dummy floating points regs */
|
||||
for (i = MIPS32NUMCOREREGS; i < (MIPS32NUMCOREREGS + MIPS32NUMFPREGS); i++)
|
||||
{
|
||||
@@ -213,14 +213,14 @@ int mips32_get_gdb_reg_list(target_t *target, reg_t **reg_list[], int *reg_list_
|
||||
int mips32_save_context(target_t *target)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
||||
/* get pointers to arch-specific information */
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
mips_ejtag_t *ejtag_info = &mips32->ejtag_info;
|
||||
|
||||
|
||||
/* read core registers */
|
||||
mips32_pracc_read_regs(ejtag_info, mips32->core_regs);
|
||||
|
||||
|
||||
for (i = 0; i < MIPS32NUMCOREREGS; i++)
|
||||
{
|
||||
if (!mips32->core_cache->reg_list[i].valid)
|
||||
@@ -228,18 +228,18 @@ int mips32_save_context(target_t *target)
|
||||
mips32->read_core_reg(target, i);
|
||||
}
|
||||
}
|
||||
|
||||
return ERROR_OK;
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int mips32_restore_context(target_t *target)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
||||
/* get pointers to arch-specific information */
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
mips_ejtag_t *ejtag_info = &mips32->ejtag_info;
|
||||
|
||||
|
||||
for (i = 0; i < MIPS32NUMCOREREGS; i++)
|
||||
{
|
||||
if (mips32->core_cache->reg_list[i].dirty)
|
||||
@@ -247,27 +247,27 @@ int mips32_restore_context(target_t *target)
|
||||
mips32->write_core_reg(target, i);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* write core regs */
|
||||
mips32_pracc_write_regs(ejtag_info, mips32->core_regs);
|
||||
|
||||
return ERROR_OK;
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int mips32_arch_state(struct target_s *target)
|
||||
{
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
|
||||
|
||||
if (mips32->common_magic != MIPS32_COMMON_MAGIC)
|
||||
{
|
||||
LOG_ERROR("BUG: called for a non-MIPS32 target");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
|
||||
LOG_USER("target halted due to %s, pc: 0x%8.8" PRIx32 "",
|
||||
Jim_Nvp_value2name_simple(nvp_target_debug_reason, target->debug_reason)->name ,
|
||||
buf_get_u32(mips32->core_cache->reg_list[MIPS32_PC].value, 0, 32));
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -282,20 +282,20 @@ reg_cache_t *mips32_build_reg_cache(target_t *target)
|
||||
reg_t *reg_list = malloc(sizeof(reg_t) * num_regs);
|
||||
mips32_core_reg_t *arch_info = malloc(sizeof(mips32_core_reg_t) * num_regs);
|
||||
int i;
|
||||
|
||||
|
||||
if (mips32_core_reg_arch_type == -1)
|
||||
mips32_core_reg_arch_type = register_reg_arch_type(mips32_get_core_reg, mips32_set_core_reg);
|
||||
|
||||
register_init_dummy(&mips32_gdb_dummy_fp_reg);
|
||||
|
||||
/* Build the process context cache */
|
||||
/* Build the process context cache */
|
||||
cache->name = "mips32 registers";
|
||||
cache->next = NULL;
|
||||
cache->reg_list = reg_list;
|
||||
cache->num_regs = num_regs;
|
||||
(*cache_p) = cache;
|
||||
mips32->core_cache = cache;
|
||||
|
||||
|
||||
for (i = 0; i < num_regs; i++)
|
||||
{
|
||||
arch_info[i] = mips32_core_reg_list_arch_info[i];
|
||||
@@ -311,7 +311,7 @@ reg_cache_t *mips32_build_reg_cache(target_t *target)
|
||||
reg_list[i].arch_type = mips32_core_reg_arch_type;
|
||||
reg_list[i].arch_info = &arch_info[i];
|
||||
}
|
||||
|
||||
|
||||
return cache;
|
||||
}
|
||||
|
||||
@@ -319,15 +319,15 @@ int mips32_init_arch_info(target_t *target, mips32_common_t *mips32, jtag_tap_t
|
||||
{
|
||||
target->arch_info = mips32;
|
||||
mips32->common_magic = MIPS32_COMMON_MAGIC;
|
||||
|
||||
|
||||
/* has breakpoint/watchpint unit been scanned */
|
||||
mips32->bp_scanned = 0;
|
||||
mips32->data_break_list = NULL;
|
||||
|
||||
|
||||
mips32->ejtag_info.tap = tap;
|
||||
mips32->read_core_reg = mips32_read_core_reg;
|
||||
mips32->write_core_reg = mips32_write_core_reg;
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -345,11 +345,11 @@ int mips32_run_algorithm(struct target_s *target, int num_mem_params, mem_param_
|
||||
int mips32_examine(struct target_s *target)
|
||||
{
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
|
||||
|
||||
if (!target_was_examined(target))
|
||||
{
|
||||
target_set_examined(target);
|
||||
|
||||
|
||||
/* we will configure later */
|
||||
mips32->bp_scanned = 0;
|
||||
mips32->num_inst_bpoints = 0;
|
||||
@@ -357,7 +357,7 @@ int mips32_examine(struct target_s *target)
|
||||
mips32->num_inst_bpoints_avail = 0;
|
||||
mips32->num_data_bpoints_avail = 0;
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -368,20 +368,20 @@ int mips32_configure_break_unit(struct target_s *target)
|
||||
int retval;
|
||||
uint32_t dcr, bpinfo;
|
||||
int i;
|
||||
|
||||
|
||||
if (mips32->bp_scanned)
|
||||
return ERROR_OK;
|
||||
|
||||
|
||||
/* get info about breakpoint support */
|
||||
if ((retval = target_read_u32(target, EJTAG_DCR, &dcr)) != ERROR_OK)
|
||||
return retval;
|
||||
|
||||
|
||||
if (dcr & (1 << 16))
|
||||
{
|
||||
/* get number of inst breakpoints */
|
||||
if ((retval = target_read_u32(target, EJTAG_IBS, &bpinfo)) != ERROR_OK)
|
||||
return retval;
|
||||
|
||||
|
||||
mips32->num_inst_bpoints = (bpinfo >> 24) & 0x0F;
|
||||
mips32->num_inst_bpoints_avail = mips32->num_inst_bpoints;
|
||||
mips32->inst_break_list = calloc(mips32->num_inst_bpoints, sizeof(mips32_comparator_t));
|
||||
@@ -389,18 +389,18 @@ int mips32_configure_break_unit(struct target_s *target)
|
||||
{
|
||||
mips32->inst_break_list[i].reg_address = EJTAG_IBA1 + (0x100 * i);
|
||||
}
|
||||
|
||||
|
||||
/* clear IBIS reg */
|
||||
if ((retval = target_write_u32(target, EJTAG_IBS, 0)) != ERROR_OK)
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
if (dcr & (1 << 17))
|
||||
{
|
||||
/* get number of data breakpoints */
|
||||
if ((retval = target_read_u32(target, EJTAG_DBS, &bpinfo)) != ERROR_OK)
|
||||
return retval;
|
||||
|
||||
|
||||
mips32->num_data_bpoints = (bpinfo >> 24) & 0x0F;
|
||||
mips32->num_data_bpoints_avail = mips32->num_data_bpoints;
|
||||
mips32->data_break_list = calloc(mips32->num_data_bpoints, sizeof(mips32_comparator_t));
|
||||
@@ -408,16 +408,16 @@ int mips32_configure_break_unit(struct target_s *target)
|
||||
{
|
||||
mips32->data_break_list[i].reg_address = EJTAG_DBA1 + (0x100 * i);
|
||||
}
|
||||
|
||||
|
||||
/* clear DBIS reg */
|
||||
if ((retval = target_write_u32(target, EJTAG_DBS, 0)) != ERROR_OK)
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
LOG_DEBUG("DCR 0x%" PRIx32 " numinst %i numdata %i", dcr, mips32->num_inst_bpoints, mips32->num_data_bpoints);
|
||||
|
||||
|
||||
mips32->bp_scanned = 1;
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -426,11 +426,11 @@ int mips32_enable_interrupts(struct target_s *target, int enable)
|
||||
int retval;
|
||||
int update = 0;
|
||||
uint32_t dcr;
|
||||
|
||||
|
||||
/* read debug control register */
|
||||
if ((retval = target_read_u32(target, EJTAG_DCR, &dcr)) != ERROR_OK)
|
||||
return retval;
|
||||
|
||||
|
||||
if (enable)
|
||||
{
|
||||
if (!(dcr & (1 << 4)))
|
||||
@@ -449,12 +449,12 @@ int mips32_enable_interrupts(struct target_s *target, int enable)
|
||||
update = 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (update)
|
||||
{
|
||||
if ((retval = target_write_u32(target, EJTAG_DCR, dcr)) != ERROR_OK)
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#define MIPS32_COMMON_MAGIC 0xB320B320
|
||||
|
||||
/* offsets into mips32 core register cache */
|
||||
enum
|
||||
enum
|
||||
{
|
||||
MIPS32_PC = 37,
|
||||
MIPS32NUMCOREREGS
|
||||
@@ -52,7 +52,7 @@ typedef struct mips32_common_s
|
||||
reg_cache_t *core_cache;
|
||||
mips_ejtag_t ejtag_info;
|
||||
uint32_t core_regs[MIPS32NUMCOREREGS];
|
||||
|
||||
|
||||
int bp_scanned;
|
||||
int num_inst_bpoints;
|
||||
int num_data_bpoints;
|
||||
@@ -60,7 +60,7 @@ typedef struct mips32_common_s
|
||||
int num_data_bpoints_avail;
|
||||
mips32_comparator_t *inst_break_list;
|
||||
mips32_comparator_t *data_break_list;
|
||||
|
||||
|
||||
/* register cache to processor synchronization */
|
||||
int (*read_core_reg)(struct target_s *target, int num);
|
||||
int (*write_core_reg)(struct target_s *target, int num);
|
||||
|
||||
@@ -191,7 +191,7 @@ begin_ejtag_dma_read_b:
|
||||
case 2:
|
||||
*data = (v >> 16) & 0xff;
|
||||
break;
|
||||
case 3:
|
||||
case 3:
|
||||
*data = (v >> 24) & 0xff;
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ This version has optimized assembly routines for 32 bit operations:
|
||||
- write word
|
||||
- write array of words
|
||||
|
||||
One thing to be aware of is that the MIPS32 cpu will execute the
|
||||
One thing to be aware of is that the MIPS32 cpu will execute the
|
||||
instruction after a branch instruction (one delay slot).
|
||||
|
||||
For example:
|
||||
@@ -36,7 +36,7 @@ For example:
|
||||
B foo
|
||||
LW $1, ($2 +100)
|
||||
|
||||
The LW $1, ($2 +100) instruction is also executed. If this is
|
||||
The LW $1, ($2 +100) instruction is also executed. If this is
|
||||
not wanted a NOP can be inserted:
|
||||
|
||||
LW $2, ($5 +10)
|
||||
@@ -92,8 +92,8 @@ typedef struct {
|
||||
static int wait_for_pracc_rw(mips_ejtag_t *ejtag_info, uint32_t *ctrl)
|
||||
{
|
||||
uint32_t ejtag_ctrl;
|
||||
|
||||
while (1)
|
||||
|
||||
while (1)
|
||||
{
|
||||
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_CONTROL, NULL);
|
||||
ejtag_ctrl = ejtag_info->ejtag_ctrl;
|
||||
@@ -103,7 +103,7 @@ static int wait_for_pracc_rw(mips_ejtag_t *ejtag_info, uint32_t *ctrl)
|
||||
LOG_DEBUG("DEBUGMODULE: No memory access in progress!\n");
|
||||
return ERROR_JTAG_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
||||
*ctrl = ejtag_ctrl;
|
||||
return ERROR_OK;
|
||||
}
|
||||
@@ -141,12 +141,12 @@ static int mips32_pracc_exec_read(mips32_pracc_context *ctx, uint32_t address)
|
||||
{
|
||||
/* TODO: send JMP 0xFF200000 instruction. Hopefully processor jump back
|
||||
* to start of debug vector */
|
||||
|
||||
|
||||
data = 0;
|
||||
LOG_ERROR("Error reading unexpected address %8.8" PRIx32 "", address);
|
||||
return ERROR_JTAG_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
||||
/* Send the data out */
|
||||
mips_ejtag_set_instr(ctx->ejtag_info, EJTAG_INST_DATA, NULL);
|
||||
mips_ejtag_drscan_32(ctx->ejtag_info, &data);
|
||||
@@ -159,7 +159,7 @@ static int mips32_pracc_exec_read(mips32_pracc_context *ctx, uint32_t address)
|
||||
|
||||
jtag_add_clocks(5);
|
||||
jtag_execute_queue();
|
||||
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
@@ -172,7 +172,7 @@ static int mips32_pracc_exec_write(mips32_pracc_context *ctx, uint32_t address)
|
||||
|
||||
mips_ejtag_set_instr(ctx->ejtag_info, EJTAG_INST_DATA, NULL);
|
||||
mips_ejtag_drscan_32(ctx->ejtag_info, &data);
|
||||
|
||||
|
||||
/* Clear access pending bit */
|
||||
ejtag_ctrl = ejtag_info->ejtag_ctrl & ~EJTAG_CTRL_PRACC;
|
||||
mips_ejtag_set_instr(ctx->ejtag_info, EJTAG_INST_CONTROL, NULL);
|
||||
@@ -180,7 +180,7 @@ static int mips32_pracc_exec_write(mips32_pracc_context *ctx, uint32_t address)
|
||||
|
||||
jtag_add_clocks(5);
|
||||
jtag_execute_queue();
|
||||
|
||||
|
||||
if ((address >= MIPS32_PRACC_PARAM_IN)
|
||||
&& (address <= MIPS32_PRACC_PARAM_IN + ctx->num_iparam * 4))
|
||||
{
|
||||
@@ -203,7 +203,7 @@ static int mips32_pracc_exec_write(mips32_pracc_context *ctx, uint32_t address)
|
||||
LOG_ERROR("Error writing unexpected address %8.8" PRIx32 "", address);
|
||||
return ERROR_JTAG_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -214,7 +214,7 @@ int mips32_pracc_exec(mips_ejtag_t *ejtag_info, int code_len, uint32_t *code, in
|
||||
mips32_pracc_context ctx;
|
||||
int retval;
|
||||
int pass = 0;
|
||||
|
||||
|
||||
ctx.local_iparam = param_in;
|
||||
ctx.local_oparam = param_out;
|
||||
ctx.num_iparam = num_param_in;
|
||||
@@ -223,18 +223,18 @@ int mips32_pracc_exec(mips_ejtag_t *ejtag_info, int code_len, uint32_t *code, in
|
||||
ctx.code_len = code_len;
|
||||
ctx.ejtag_info = ejtag_info;
|
||||
ctx.stack_offset = 0;
|
||||
|
||||
|
||||
while (1)
|
||||
{
|
||||
if ((retval = wait_for_pracc_rw(ejtag_info, &ejtag_ctrl)) != ERROR_OK)
|
||||
return retval;
|
||||
|
||||
|
||||
address = data = 0;
|
||||
mips_ejtag_set_instr(ejtag_info, EJTAG_INST_ADDRESS, NULL);
|
||||
mips_ejtag_drscan_32(ejtag_info, &address);
|
||||
|
||||
// printf("Adres: %.8x\n", address);
|
||||
|
||||
|
||||
/* Check for read or write */
|
||||
if (ejtag_ctrl & EJTAG_CTRL_PRNW)
|
||||
{
|
||||
@@ -250,22 +250,22 @@ int mips32_pracc_exec(mips_ejtag_t *ejtag_info, int code_len, uint32_t *code, in
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
if ((retval = mips32_pracc_exec_read(&ctx, address)) != ERROR_OK)
|
||||
return retval;
|
||||
|
||||
}
|
||||
|
||||
|
||||
if (cycle == 0)
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
/* stack sanity check */
|
||||
if (ctx.stack_offset != 0)
|
||||
{
|
||||
LOG_DEBUG("Pracc Stack not zero");
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -283,12 +283,12 @@ int mips32_pracc_read_mem(mips_ejtag_t *ejtag_info, uint32_t addr, int size, int
|
||||
else
|
||||
return mips32_pracc_read_mem32(ejtag_info, addr, count, (uint32_t*)buf);
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int mips32_pracc_read_mem32(mips_ejtag_t *ejtag_info, uint32_t addr, int count, uint32_t *buf)
|
||||
{
|
||||
{
|
||||
uint32_t code[] = {
|
||||
/* start: */
|
||||
MIPS32_MTC0(15,31,0), /* move $15 to COP0 DeSave */
|
||||
@@ -298,7 +298,7 @@ int mips32_pracc_read_mem32(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_SW(9,0,15), /* sw $9,($15) */
|
||||
MIPS32_SW(10,0,15), /* sw $10,($15) */
|
||||
MIPS32_SW(11,0,15), /* sw $11,($15) */
|
||||
|
||||
|
||||
MIPS32_LUI(8,UPPER16(MIPS32_PRACC_PARAM_IN)), /* $8 = MIPS32_PRACC_PARAM_IN */
|
||||
MIPS32_ORI(8,8,LOWER16(MIPS32_PRACC_PARAM_IN)),
|
||||
MIPS32_LW(9,0,8), /* $9 = mem[$8]; read addr */
|
||||
@@ -309,14 +309,14 @@ int mips32_pracc_read_mem32(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
/* loop: */
|
||||
MIPS32_BEQ(0,10,9), /* beq 0, $10, end */
|
||||
MIPS32_NOP,
|
||||
|
||||
|
||||
MIPS32_LW(8,0,9), /* lw $8,0($9), Load $8 with the word @mem[$9] */
|
||||
MIPS32_SW(8,0,11), /* sw $8,0($11) */
|
||||
|
||||
|
||||
MIPS32_ADDI(10,10,NEG16(1)), /* $10-- */
|
||||
MIPS32_ADDI(9,9,4), /* $1 += 4 */
|
||||
MIPS32_ADDI(11,11,4), /* $11 += 4 */
|
||||
|
||||
|
||||
MIPS32_NOP,
|
||||
MIPS32_B(NEG16(9)), /* b loop */
|
||||
MIPS32_NOP,
|
||||
@@ -330,29 +330,29 @@ int mips32_pracc_read_mem32(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_B(NEG16(31)), /* b start */
|
||||
MIPS32_NOP,
|
||||
};
|
||||
|
||||
|
||||
int retval = ERROR_OK;
|
||||
int blocksize;
|
||||
int bytesread;
|
||||
uint32_t param_in[2];
|
||||
|
||||
|
||||
bytesread = 0;
|
||||
|
||||
|
||||
while (count > 0)
|
||||
{
|
||||
{
|
||||
blocksize = count;
|
||||
if (count > 0x400)
|
||||
blocksize = 0x400;
|
||||
|
||||
|
||||
param_in[0] = addr;
|
||||
param_in[1] = blocksize;
|
||||
|
||||
if ((retval = mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code,
|
||||
|
||||
if ((retval = mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code,
|
||||
sizeof(param_in)/sizeof(param_in[0]), param_in, blocksize, &buf[bytesread], 1)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
count -= blocksize;
|
||||
addr += blocksize;
|
||||
bytesread += blocksize;
|
||||
@@ -386,7 +386,7 @@ int mips32_pracc_read_u32(mips_ejtag_t *ejtag_info, uint32_t addr, uint32_t *buf
|
||||
|
||||
param_in[0] = addr;
|
||||
|
||||
if ((retval = mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code,
|
||||
if ((retval = mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code,
|
||||
sizeof(param_in)/sizeof(param_in[0]), param_in, sizeof(uint32_t), buf, 1)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
@@ -406,7 +406,7 @@ int mips32_pracc_read_mem16(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_SW(9,0,15), /* sw $9,($15) */
|
||||
MIPS32_SW(10,0,15), /* sw $10,($15) */
|
||||
MIPS32_SW(11,0,15), /* sw $11,($15) */
|
||||
|
||||
|
||||
MIPS32_LUI(8,UPPER16(MIPS32_PRACC_PARAM_IN)), /* $8 = MIPS32_PRACC_PARAM_IN */
|
||||
MIPS32_ORI(8,8,LOWER16(MIPS32_PRACC_PARAM_IN)),
|
||||
MIPS32_LW(9,0,8), /* $9 = mem[$8]; read addr */
|
||||
@@ -417,10 +417,10 @@ int mips32_pracc_read_mem16(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
/* loop: */
|
||||
MIPS32_BEQ(0,10,9), /* beq 0, $10, end */
|
||||
MIPS32_NOP,
|
||||
|
||||
|
||||
MIPS32_LHU(8,0,9), /* lw $8,0($9), Load $8 with the halfword @mem[$9] */
|
||||
MIPS32_SW(8,0,11), /* sw $8,0($11) */
|
||||
|
||||
|
||||
MIPS32_ADDI(10,10,NEG16(1)), /* $10-- */
|
||||
MIPS32_ADDI(9,9,2), /* $9 += 2 */
|
||||
MIPS32_ADDI(11,11,4), /* $11 += 4 */
|
||||
@@ -441,36 +441,36 @@ int mips32_pracc_read_mem16(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
// /* TODO remove array */
|
||||
uint32_t param_out[count];
|
||||
int i;
|
||||
|
||||
|
||||
// int retval;
|
||||
int blocksize;
|
||||
int bytesread;
|
||||
uint32_t param_in[2];
|
||||
|
||||
|
||||
bytesread = 0;
|
||||
|
||||
|
||||
//while (count > 0)
|
||||
{
|
||||
{
|
||||
blocksize = count;
|
||||
if (count > 0x400)
|
||||
blocksize = 0x400;
|
||||
|
||||
|
||||
param_in[0] = addr;
|
||||
param_in[1] = blocksize;
|
||||
|
||||
|
||||
mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code, \
|
||||
sizeof(param_in)/sizeof(param_in[0]), param_in, count, param_out, 1);
|
||||
|
||||
|
||||
// count -= blocksize;
|
||||
// addr += blocksize;
|
||||
// bytesread += blocksize;
|
||||
}
|
||||
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
buf[i] = param_out[i];
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -485,7 +485,7 @@ int mips32_pracc_read_mem8(mips_ejtag_t *ejtag_info, uint32_t addr, int count, u
|
||||
MIPS32_SW(9,0,15), /* sw $9,($15) */
|
||||
MIPS32_SW(10,0,15), /* sw $10,($15) */
|
||||
MIPS32_SW(11,0,15), /* sw $11,($15) */
|
||||
|
||||
|
||||
MIPS32_LUI(8,UPPER16(MIPS32_PRACC_PARAM_IN)), /* $8 = MIPS32_PRACC_PARAM_IN */
|
||||
MIPS32_ORI(8,8,LOWER16(MIPS32_PRACC_PARAM_IN)),
|
||||
MIPS32_LW(9,0,8), /* $9 = mem[$8]; read addr */
|
||||
@@ -496,10 +496,10 @@ int mips32_pracc_read_mem8(mips_ejtag_t *ejtag_info, uint32_t addr, int count, u
|
||||
/* loop: */
|
||||
MIPS32_BEQ(0,10,9), /* beq 0, $10, end */
|
||||
MIPS32_NOP,
|
||||
|
||||
|
||||
MIPS32_LBU(8,0,9), /* lw $8,0($9), Load t4 with the byte @mem[t1] */
|
||||
MIPS32_SW(8,0,11), /* sw $8,0($11) */
|
||||
|
||||
|
||||
MIPS32_ADDI(10,10,NEG16(1)), /* $10-- */
|
||||
MIPS32_ADDI(9,9,1), /* $9 += 1 */
|
||||
MIPS32_ADDI(11,11,4), /* $11 += 4 */
|
||||
@@ -516,35 +516,35 @@ int mips32_pracc_read_mem8(mips_ejtag_t *ejtag_info, uint32_t addr, int count, u
|
||||
MIPS32_B(NEG16(31)), /* b start */
|
||||
MIPS32_NOP,
|
||||
};
|
||||
|
||||
|
||||
// /* TODO remove array */
|
||||
uint32_t param_out[count];
|
||||
int i;
|
||||
|
||||
|
||||
// int retval;
|
||||
int blocksize;
|
||||
int bytesread;
|
||||
uint32_t param_in[2];
|
||||
|
||||
|
||||
bytesread = 0;
|
||||
|
||||
|
||||
// while (count > 0)
|
||||
{
|
||||
{
|
||||
blocksize = count;
|
||||
if (count > 0x400)
|
||||
blocksize = 0x400;
|
||||
|
||||
|
||||
param_in[0] = addr;
|
||||
param_in[1] = blocksize;
|
||||
|
||||
|
||||
mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code, \
|
||||
sizeof(param_in)/sizeof(param_in[0]), param_in, count, param_out, 1);
|
||||
|
||||
|
||||
// count -= blocksize;
|
||||
// addr += blocksize;
|
||||
// bytesread += blocksize;
|
||||
}
|
||||
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
buf[i] = param_out[i];
|
||||
@@ -567,7 +567,7 @@ int mips32_pracc_write_mem(mips_ejtag_t *ejtag_info, uint32_t addr, int size, in
|
||||
else
|
||||
return mips32_pracc_write_mem32(ejtag_info, addr, count, (uint32_t*)buf);
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -584,7 +584,7 @@ int mips32_pracc_write_mem32(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_SW(9,0,15), /* sw $9,($15) */
|
||||
MIPS32_SW(10,0,15), /* sw $10,($15) */
|
||||
MIPS32_SW(11,0,15), /* sw $11,($15) */
|
||||
|
||||
|
||||
MIPS32_ADDI(8,15,NEG16(MIPS32_PRACC_STACK-MIPS32_PRACC_PARAM_IN)), //$8= MIPS32_PRACC_PARAM_IN
|
||||
MIPS32_LW(9,0,8), /* Load write addr to $9 */
|
||||
MIPS32_LW(10,4,8), //last address /* Load write count to $10 */
|
||||
@@ -593,7 +593,7 @@ int mips32_pracc_write_mem32(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
//loop:
|
||||
MIPS32_LW(11,0,8), /* lw $11,0($8), Load $11 with the word @mem[$8] */
|
||||
MIPS32_SW(11,0,9), /* sw $11,0($9) */
|
||||
|
||||
|
||||
MIPS32_ADDI(9,9,4), /* $9 += 4 */
|
||||
MIPS32_BNE(10,9,NEG16(4)), //was 9 BNE $10, 9, loop /* b loop */
|
||||
MIPS32_ADDI(8,8,4), //this instruction is part of the loop (one delay slot)! /* $8 += 4 */
|
||||
@@ -606,14 +606,14 @@ int mips32_pracc_write_mem32(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_MFC0(15,31,0), /* move COP0 DeSave to $15 */
|
||||
MIPS32_NOP, //this one will not be executed
|
||||
};
|
||||
|
||||
|
||||
/* TODO remove array */
|
||||
uint32_t param_in[count + 2];
|
||||
param_in[0] = addr;
|
||||
param_in[1] = addr + count * sizeof(uint32_t); //last address
|
||||
|
||||
|
||||
memcpy(¶m_in[2], buf, count * sizeof(uint32_t));
|
||||
|
||||
|
||||
mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code, \
|
||||
sizeof(param_in)/sizeof(param_in[0]),param_in, 0, NULL, 1);
|
||||
|
||||
@@ -629,7 +629,7 @@ int mips32_pracc_write_u32(mips_ejtag_t *ejtag_info, uint32_t addr, uint32_t *bu
|
||||
MIPS32_ORI(15,15,LOWER16(MIPS32_PRACC_STACK)),
|
||||
MIPS32_SW(8,0,15), /* sw $8,($15) */
|
||||
MIPS32_SW(9,0,15), /* sw $9,($15) */
|
||||
|
||||
|
||||
MIPS32_LW(8,NEG16((MIPS32_PRACC_STACK-MIPS32_PRACC_PARAM_IN)-4), 15), //load R8 @ param_in[1] = data
|
||||
MIPS32_LW(9,NEG16(MIPS32_PRACC_STACK-MIPS32_PRACC_PARAM_IN), 15), //load R9 @ param_in[0] = address
|
||||
|
||||
@@ -664,7 +664,7 @@ int mips32_pracc_write_mem16(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_SW(9,0,15), /* sw $9,($15) */
|
||||
MIPS32_SW(10,0,15), /* sw $10,($15) */
|
||||
MIPS32_SW(11,0,15), /* sw $11,($15) */
|
||||
|
||||
|
||||
MIPS32_LUI(8,UPPER16(MIPS32_PRACC_PARAM_IN)), /* $8 = MIPS32_PRACC_PARAM_IN */
|
||||
MIPS32_ORI(8,8,LOWER16(MIPS32_PRACC_PARAM_IN)),
|
||||
MIPS32_LW(9,0,8), /* Load write addr to $9 */
|
||||
@@ -674,14 +674,14 @@ int mips32_pracc_write_mem16(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
/* loop: */
|
||||
MIPS32_BEQ(0,10,9), /* beq $0, $10, end */
|
||||
MIPS32_NOP,
|
||||
|
||||
|
||||
MIPS32_LW(11,0,8), /* lw $11,0($8), Load $11 with the word @mem[$8] */
|
||||
MIPS32_SH(11,0,9), /* sh $11,0($9) */
|
||||
|
||||
|
||||
MIPS32_ADDI(10,10,NEG16(1)), /* $10-- */
|
||||
MIPS32_ADDI(9,9,2), /* $9 += 2 */
|
||||
MIPS32_ADDI(8,8,4), /* $8 += 4 */
|
||||
|
||||
|
||||
MIPS32_NOP,
|
||||
MIPS32_B(NEG16(9)), /* b loop */
|
||||
MIPS32_NOP,
|
||||
@@ -695,18 +695,18 @@ int mips32_pracc_write_mem16(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_B(NEG16(30)), /* b start */
|
||||
MIPS32_NOP,
|
||||
};
|
||||
|
||||
|
||||
/* TODO remove array */
|
||||
uint32_t param_in[count + 2];
|
||||
int i;
|
||||
param_in[0] = addr;
|
||||
param_in[1] = count;
|
||||
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
param_in[i + 2] = buf[i];
|
||||
}
|
||||
|
||||
|
||||
mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code, \
|
||||
sizeof(param_in)/sizeof(param_in[0]), param_in, 0, NULL, 1);
|
||||
|
||||
@@ -724,7 +724,7 @@ int mips32_pracc_write_mem8(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_SW(9,0,15), /* sw $9,($15) */
|
||||
MIPS32_SW(10,0,15), /* sw $10,($15) */
|
||||
MIPS32_SW(11,0,15), /* sw $11,($15) */
|
||||
|
||||
|
||||
MIPS32_LUI(8,UPPER16(MIPS32_PRACC_PARAM_IN)), /* $8 = MIPS32_PRACC_PARAM_IN */
|
||||
MIPS32_ORI(8,8,LOWER16(MIPS32_PRACC_PARAM_IN)),
|
||||
MIPS32_LW(9,0,8), /* Load write addr to $9 */
|
||||
@@ -734,14 +734,14 @@ int mips32_pracc_write_mem8(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
/* loop: */
|
||||
MIPS32_BEQ(0,10,9), /* beq $0, $10, end */
|
||||
MIPS32_NOP,
|
||||
|
||||
|
||||
MIPS32_LW(11,0,8), /* lw $11,0($8), Load $11 with the word @mem[$8] */
|
||||
MIPS32_SB(11,0,9), /* sb $11,0($9) */
|
||||
|
||||
|
||||
MIPS32_ADDI(10,10,NEG16(1)), /* $10-- */
|
||||
MIPS32_ADDI(9,9,1), /* $9 += 1 */
|
||||
MIPS32_ADDI(8,8,4), /* $8 += 4 */
|
||||
|
||||
|
||||
MIPS32_NOP,
|
||||
MIPS32_B(NEG16(9)), /* b loop */
|
||||
MIPS32_NOP,
|
||||
@@ -755,19 +755,19 @@ int mips32_pracc_write_mem8(mips_ejtag_t *ejtag_info, uint32_t addr, int count,
|
||||
MIPS32_B(NEG16(30)), /* b start */
|
||||
MIPS32_NOP,
|
||||
};
|
||||
|
||||
|
||||
/* TODO remove array */
|
||||
uint32_t param_in[count + 2];
|
||||
int retval;
|
||||
int i;
|
||||
param_in[0] = addr;
|
||||
param_in[1] = count;
|
||||
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
param_in[i + 2] = buf[i];
|
||||
}
|
||||
|
||||
|
||||
retval = mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code, \
|
||||
sizeof(param_in)/sizeof(param_in[0]), param_in, 0, NULL, 1);
|
||||
|
||||
@@ -816,7 +816,7 @@ int mips32_pracc_write_regs(mips_ejtag_t *ejtag_info, uint32_t *regs)
|
||||
MIPS32_LW(29,29*4,1), /* lw $29,29*4($1) */
|
||||
MIPS32_LW(30,30*4,1), /* lw $30,30*4($1) */
|
||||
MIPS32_LW(31,31*4,1), /* lw $31,31*4($1) */
|
||||
|
||||
|
||||
MIPS32_LW(2,32*4,1), /* lw $2,32*4($1) */
|
||||
MIPS32_MTC0(2,12,0), /* move $2 to status */
|
||||
MIPS32_LW(2,33*4,1), /* lw $2,33*4($1) */
|
||||
@@ -829,7 +829,7 @@ int mips32_pracc_write_regs(mips_ejtag_t *ejtag_info, uint32_t *regs)
|
||||
MIPS32_MTC0(2,13,0), /* move $2 to cause*/
|
||||
MIPS32_LW(2,37*4,1), /* lw $2,37*4($1) */
|
||||
MIPS32_MTC0(2,24,0), /* move $2 to pc */
|
||||
|
||||
|
||||
MIPS32_LW(2,2*4,1), /* lw $2,2*4($1) */
|
||||
MIPS32_LW(1,0,15), /* lw $1,($15) */
|
||||
MIPS32_MFC0(15,31,0), /* move COP0 DeSave to $15 */
|
||||
@@ -837,12 +837,12 @@ int mips32_pracc_write_regs(mips_ejtag_t *ejtag_info, uint32_t *regs)
|
||||
MIPS32_B(NEG16(55)), /* b start */
|
||||
MIPS32_NOP,
|
||||
};
|
||||
|
||||
|
||||
int retval;
|
||||
|
||||
|
||||
retval = mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code, \
|
||||
38, regs, 0, NULL, 1);
|
||||
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
@@ -893,7 +893,7 @@ int mips32_pracc_read_regs(mips_ejtag_t *ejtag_info, uint32_t *regs)
|
||||
MIPS32_SW(29,29*4,1), /* sw $29,29*4($1) */
|
||||
MIPS32_SW(30,30*4,1), /* sw $30,30*4($1) */
|
||||
MIPS32_SW(31,31*4,1), /* sw $31,31*4($1) */
|
||||
|
||||
|
||||
MIPS32_MFC0(2,12,0), /* move status to $2 */
|
||||
MIPS32_SW(2,32*4,1), /* sw $2,32*4($1) */
|
||||
MIPS32_MFLO(2), /* move lo to $2 */
|
||||
@@ -906,7 +906,7 @@ int mips32_pracc_read_regs(mips_ejtag_t *ejtag_info, uint32_t *regs)
|
||||
MIPS32_SW(2,36*4,1), /* sw $2,36*4($1) */
|
||||
MIPS32_MFC0(2,24,0), /* move pc to $2 */
|
||||
MIPS32_SW(2,37*4,1), /* sw $2,37*4($1) */
|
||||
|
||||
|
||||
MIPS32_LW(2,0,15), /* lw $2,($15) */
|
||||
MIPS32_LW(1,0,15), /* lw $1,($15) */
|
||||
MIPS32_MFC0(15,31,0), /* move COP0 DeSave to $15 */
|
||||
@@ -914,11 +914,11 @@ int mips32_pracc_read_regs(mips_ejtag_t *ejtag_info, uint32_t *regs)
|
||||
MIPS32_B(NEG16(60)), /* b start */
|
||||
MIPS32_NOP,
|
||||
};
|
||||
|
||||
|
||||
int retval;
|
||||
|
||||
|
||||
retval = mips32_pracc_exec(ejtag_info, sizeof(code)/sizeof(code[0]), code, \
|
||||
0, NULL, 38, regs, 1);
|
||||
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
@@ -46,10 +46,10 @@ int mips_ejtag_set_instr(mips_ejtag_t *ejtag_info, int new_instr, void *delete_m
|
||||
buf_set_u32(field.out_value, 0, field.num_bits, new_instr);
|
||||
|
||||
field.in_value = NULL;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
jtag_add_ir_scan(1, &field, jtag_get_end_state());
|
||||
}
|
||||
|
||||
@@ -69,10 +69,10 @@ int mips_ejtag_get_idcode(mips_ejtag_t *ejtag_info, uint32_t *idcode)
|
||||
field.out_value = NULL;
|
||||
|
||||
field.in_value = (void*)idcode;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
jtag_add_dr_scan(1, &field, jtag_get_end_state());
|
||||
|
||||
if (jtag_execute_queue() != ERROR_OK)
|
||||
@@ -96,10 +96,10 @@ int mips_ejtag_get_impcode(mips_ejtag_t *ejtag_info, uint32_t *impcode)
|
||||
field.out_value = NULL;
|
||||
|
||||
field.in_value = (void*)impcode;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
jtag_add_dr_scan(1, &field, jtag_get_end_state());
|
||||
|
||||
if (jtag_execute_queue() != ERROR_OK)
|
||||
@@ -127,10 +127,10 @@ int mips_ejtag_drscan_32(mips_ejtag_t *ejtag_info, uint32_t *data)
|
||||
buf_set_u32(field.out_value, 0, field.num_bits, *data);
|
||||
|
||||
field.in_value = r;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
jtag_add_dr_scan(1, &field, jtag_get_end_state());
|
||||
|
||||
if ((retval = jtag_execute_queue()) != ERROR_OK)
|
||||
@@ -222,7 +222,7 @@ int mips_ejtag_exit_debug(mips_ejtag_t *ejtag_info)
|
||||
{
|
||||
uint32_t inst;
|
||||
inst = MIPS32_DRET;
|
||||
|
||||
|
||||
/* execute our dret instruction */
|
||||
mips32_pracc_exec(ejtag_info, 1, &inst, 0, NULL, 0, NULL, 0);
|
||||
|
||||
|
||||
@@ -348,7 +348,7 @@ int mips_m4k_single_step_core(target_t *target)
|
||||
|
||||
/* disable interrupts while stepping */
|
||||
mips32_enable_interrupts(target, 0);
|
||||
|
||||
|
||||
/* exit debug mode */
|
||||
mips_ejtag_exit_debug(ejtag_info);
|
||||
|
||||
@@ -404,7 +404,7 @@ int mips_m4k_resume(struct target_s *target, int current, uint32_t address, int
|
||||
|
||||
/* enable interrupts if we are running */
|
||||
mips32_enable_interrupts(target, !debug_execution);
|
||||
|
||||
|
||||
/* exit debug mode */
|
||||
mips_ejtag_exit_debug(ejtag_info);
|
||||
target->debug_reason = DBG_REASON_NOTHALTED;
|
||||
@@ -462,7 +462,7 @@ int mips_m4k_step(struct target_s *target, int current, uint32_t address, int ha
|
||||
|
||||
/* disable interrupts while stepping */
|
||||
mips32_enable_interrupts(target, 0);
|
||||
|
||||
|
||||
/* exit debug mode */
|
||||
mips_ejtag_exit_debug(ejtag_info);
|
||||
|
||||
@@ -498,7 +498,7 @@ int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
mips32_comparator_t * comparator_list = mips32->inst_break_list;
|
||||
int retval;
|
||||
|
||||
|
||||
if (breakpoint->set)
|
||||
{
|
||||
LOG_WARNING("breakpoint already set");
|
||||
@@ -530,7 +530,7 @@ int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
if (breakpoint->length == 4)
|
||||
{
|
||||
uint32_t verify = 0xffffffff;
|
||||
|
||||
|
||||
if ((retval = target_read_memory(target, breakpoint->address, breakpoint->length, 1, breakpoint->orig_instr)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
@@ -539,7 +539,7 @@ int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
{
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
if ((retval = target_read_u32(target, breakpoint->address, &verify)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
@@ -553,7 +553,7 @@ int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
else
|
||||
{
|
||||
uint16_t verify = 0xffff;
|
||||
|
||||
|
||||
if ((retval = target_read_memory(target, breakpoint->address, breakpoint->length, 1, breakpoint->orig_instr)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
@@ -562,7 +562,7 @@ int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
{
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
if ((retval = target_read_u16(target, breakpoint->address, &verify)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
@@ -573,7 +573,7 @@ int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
return ERROR_OK;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
breakpoint->set = 20; /* Any nice value but 0 */
|
||||
}
|
||||
|
||||
@@ -586,7 +586,7 @@ int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
mips32_common_t *mips32 = target->arch_info;
|
||||
mips32_comparator_t * comparator_list = mips32->inst_break_list;
|
||||
int retval;
|
||||
|
||||
|
||||
if (!breakpoint->set)
|
||||
{
|
||||
LOG_WARNING("breakpoint not set");
|
||||
@@ -611,7 +611,7 @@ int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
if (breakpoint->length == 4)
|
||||
{
|
||||
uint32_t current_instr;
|
||||
|
||||
|
||||
/* check that user program has not modified breakpoint instruction */
|
||||
if ((retval = target_read_memory(target, breakpoint->address, 4, 1, (uint8_t*)¤t_instr)) != ERROR_OK)
|
||||
{
|
||||
@@ -628,13 +628,13 @@ int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
else
|
||||
{
|
||||
uint16_t current_instr;
|
||||
|
||||
|
||||
/* check that user program has not modified breakpoint instruction */
|
||||
if ((retval = target_read_memory(target, breakpoint->address, 2, 1, (uint8_t*)¤t_instr)) != ERROR_OK)
|
||||
{
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
||||
if (current_instr == MIPS16_SDBBP)
|
||||
{
|
||||
if ((retval = target_write_memory(target, breakpoint->address, 2, 1, breakpoint->orig_instr)) != ERROR_OK)
|
||||
@@ -660,9 +660,9 @@ int mips_m4k_add_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
|
||||
LOG_INFO("no hardware breakpoint available");
|
||||
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
|
||||
mips32->num_inst_bpoints_avail--;
|
||||
}
|
||||
}
|
||||
|
||||
mips_m4k_set_breakpoint(target, breakpoint);
|
||||
|
||||
@@ -758,7 +758,7 @@ int mips_m4k_read_memory(struct target_s *target, uint32_t address, uint32_t siz
|
||||
return retval;
|
||||
|
||||
/* TAP data register is loaded LSB first (little endian) */
|
||||
if (target->endianness == TARGET_BIG_ENDIAN)
|
||||
if (target->endianness == TARGET_BIG_ENDIAN)
|
||||
{
|
||||
uint32_t i, t32;
|
||||
uint16_t t16;
|
||||
@@ -810,7 +810,7 @@ int mips_m4k_write_memory(struct target_s *target, uint32_t address, uint32_t si
|
||||
|
||||
for (i = 0; i < (count*size); i += size)
|
||||
{
|
||||
switch (size)
|
||||
switch (size)
|
||||
{
|
||||
case 4:
|
||||
t32 = be_to_h_u32(&buffer[i]);
|
||||
@@ -822,7 +822,7 @@ int mips_m4k_write_memory(struct target_s *target, uint32_t address, uint32_t si
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* if noDMA off, use DMAACC mode for memory write */
|
||||
if (ejtag_info->impcode & EJTAG_IMP_NODMA)
|
||||
@@ -884,7 +884,7 @@ int mips_m4k_examine(struct target_s *target)
|
||||
{
|
||||
mips_ejtag_get_idcode(ejtag_info, &idcode);
|
||||
ejtag_info->idcode = idcode;
|
||||
|
||||
|
||||
if (((idcode >> 1) & 0x7FF) == 0x29)
|
||||
{
|
||||
/* we are using a pic32mx so select ejtag port
|
||||
|
||||
@@ -969,7 +969,7 @@ int target_alloc_working_area(struct target_s *target, uint32_t size, working_ar
|
||||
|
||||
if (free_size < size)
|
||||
{
|
||||
LOG_WARNING("not enough working area available(requested %u, free %u)",
|
||||
LOG_WARNING("not enough working area available(requested %u, free %u)",
|
||||
(unsigned)(size), (unsigned)(free_size));
|
||||
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
||||
}
|
||||
@@ -1102,7 +1102,7 @@ int target_arch_state(struct target_s *target)
|
||||
int target_write_buffer(struct target_s *target, uint32_t address, uint32_t size, uint8_t *buffer)
|
||||
{
|
||||
int retval;
|
||||
LOG_DEBUG("writing buffer of %i byte at 0x%8.8x",
|
||||
LOG_DEBUG("writing buffer of %i byte at 0x%8.8x",
|
||||
(int)size, (unsigned)address);
|
||||
|
||||
if (!target_was_examined(target))
|
||||
@@ -1118,8 +1118,8 @@ int target_write_buffer(struct target_s *target, uint32_t address, uint32_t size
|
||||
if ((address + size - 1) < address)
|
||||
{
|
||||
/* GDB can request this when e.g. PC is 0xfffffffc*/
|
||||
LOG_ERROR("address + size wrapped(0x%08x, 0x%08x)",
|
||||
(unsigned)address,
|
||||
LOG_ERROR("address + size wrapped(0x%08x, 0x%08x)",
|
||||
(unsigned)address,
|
||||
(unsigned)size);
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
@@ -1184,7 +1184,7 @@ int target_write_buffer(struct target_s *target, uint32_t address, uint32_t size
|
||||
int target_read_buffer(struct target_s *target, uint32_t address, uint32_t size, uint8_t *buffer)
|
||||
{
|
||||
int retval;
|
||||
LOG_DEBUG("reading buffer of %i byte at 0x%8.8x",
|
||||
LOG_DEBUG("reading buffer of %i byte at 0x%8.8x",
|
||||
(int)size, (unsigned)address);
|
||||
|
||||
if (!target_was_examined(target))
|
||||
@@ -1200,8 +1200,8 @@ int target_read_buffer(struct target_s *target, uint32_t address, uint32_t size,
|
||||
if ((address + size - 1) < address)
|
||||
{
|
||||
/* GDB can request this when e.g. PC is 0xfffffffc*/
|
||||
LOG_ERROR("address + size wrapped(0x%08" PRIx32 ", 0x%08" PRIx32 ")",
|
||||
address,
|
||||
LOG_ERROR("address + size wrapped(0x%08" PRIx32 ", 0x%08" PRIx32 ")",
|
||||
address,
|
||||
size);
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
@@ -1326,14 +1326,14 @@ int target_read_u32(struct target_s *target, uint32_t address, uint32_t *value)
|
||||
if (retval == ERROR_OK)
|
||||
{
|
||||
*value = target_buffer_get_u32(target, value_buf);
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%8.8" PRIx32 "",
|
||||
address,
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%8.8" PRIx32 "",
|
||||
address,
|
||||
*value);
|
||||
}
|
||||
else
|
||||
{
|
||||
*value = 0x0;
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 " failed",
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 " failed",
|
||||
address);
|
||||
}
|
||||
|
||||
@@ -1354,14 +1354,14 @@ int target_read_u16(struct target_s *target, uint32_t address, uint16_t *value)
|
||||
if (retval == ERROR_OK)
|
||||
{
|
||||
*value = target_buffer_get_u16(target, value_buf);
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%4.4x",
|
||||
address,
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%4.4x",
|
||||
address,
|
||||
*value);
|
||||
}
|
||||
else
|
||||
{
|
||||
*value = 0x0;
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 " failed",
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 " failed",
|
||||
address);
|
||||
}
|
||||
|
||||
@@ -1379,14 +1379,14 @@ int target_read_u8(struct target_s *target, uint32_t address, uint8_t *value)
|
||||
|
||||
if (retval == ERROR_OK)
|
||||
{
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%2.2x",
|
||||
address,
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%2.2x",
|
||||
address,
|
||||
*value);
|
||||
}
|
||||
else
|
||||
{
|
||||
*value = 0x0;
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 " failed",
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 " failed",
|
||||
address);
|
||||
}
|
||||
|
||||
@@ -1403,8 +1403,8 @@ int target_write_u32(struct target_s *target, uint32_t address, uint32_t value)
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%8.8" PRIx32 "",
|
||||
address,
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%8.8" PRIx32 "",
|
||||
address,
|
||||
value);
|
||||
|
||||
target_buffer_set_u32(target, value_buf, value);
|
||||
@@ -1426,8 +1426,8 @@ int target_write_u16(struct target_s *target, uint32_t address, uint16_t value)
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%8.8x",
|
||||
address,
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%8.8x",
|
||||
address,
|
||||
value);
|
||||
|
||||
target_buffer_set_u16(target, value_buf, value);
|
||||
@@ -1448,7 +1448,7 @@ int target_write_u8(struct target_s *target, uint32_t address, uint8_t value)
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%2.2x",
|
||||
LOG_DEBUG("address: 0x%8.8" PRIx32 ", value: 0x%2.2x",
|
||||
address, value);
|
||||
|
||||
if ((retval = target_write_memory(target, address, 1, 1, &value)) != ERROR_OK)
|
||||
@@ -1734,12 +1734,12 @@ static int handle_reg_command(struct command_context_s *cmd_ctx, char *cmd, char
|
||||
for (i = 0; i < cache->num_regs; i++)
|
||||
{
|
||||
value = buf_to_str(cache->reg_list[i].value, cache->reg_list[i].size, 16);
|
||||
command_print(cmd_ctx, "(%i) %s (/%i): 0x%s (dirty: %i, valid: %i)",
|
||||
count++,
|
||||
cache->reg_list[i].name,
|
||||
command_print(cmd_ctx, "(%i) %s (/%i): 0x%s (dirty: %i, valid: %i)",
|
||||
count++,
|
||||
cache->reg_list[i].name,
|
||||
(int)(cache->reg_list[i].size),
|
||||
value,
|
||||
cache->reg_list[i].dirty,
|
||||
value,
|
||||
cache->reg_list[i].dirty,
|
||||
cache->reg_list[i].valid);
|
||||
free(value);
|
||||
}
|
||||
@@ -2066,7 +2066,7 @@ static void handle_md_output(struct command_context_s *cmd_ctx,
|
||||
{
|
||||
output_len += snprintf(output + output_len,
|
||||
sizeof(output) - output_len,
|
||||
"0x%8.8x: ",
|
||||
"0x%8.8x: ",
|
||||
(unsigned)(address + (i*size)));
|
||||
}
|
||||
|
||||
@@ -2241,7 +2241,7 @@ static int handle_load_image_command(struct command_context_s *cmd_ctx, char *cm
|
||||
|
||||
duration_t duration;
|
||||
char *duration_text;
|
||||
|
||||
|
||||
int retval = parse_load_image_command_args(args, argc,
|
||||
&image, &min_address, &max_address);
|
||||
if (ERROR_OK != retval)
|
||||
@@ -2262,8 +2262,8 @@ static int handle_load_image_command(struct command_context_s *cmd_ctx, char *cm
|
||||
buffer = malloc(image.sections[i].size);
|
||||
if (buffer == NULL)
|
||||
{
|
||||
command_print(cmd_ctx,
|
||||
"error allocating buffer for section (%d bytes)",
|
||||
command_print(cmd_ctx,
|
||||
"error allocating buffer for section (%d bytes)",
|
||||
(int)(image.sections[i].size));
|
||||
break;
|
||||
}
|
||||
@@ -2300,8 +2300,8 @@ static int handle_load_image_command(struct command_context_s *cmd_ctx, char *cm
|
||||
break;
|
||||
}
|
||||
image_size += length;
|
||||
command_print(cmd_ctx, "%u byte written at address 0x%8.8" PRIx32 "",
|
||||
(unsigned int)length,
|
||||
command_print(cmd_ctx, "%u byte written at address 0x%8.8" PRIx32 "",
|
||||
(unsigned int)length,
|
||||
image.sections[i].base_address + offset);
|
||||
}
|
||||
|
||||
@@ -2316,8 +2316,8 @@ static int handle_load_image_command(struct command_context_s *cmd_ctx, char *cm
|
||||
|
||||
if (retval == ERROR_OK)
|
||||
{
|
||||
command_print(cmd_ctx, "downloaded %u byte in %s",
|
||||
(unsigned int)image_size,
|
||||
command_print(cmd_ctx, "downloaded %u byte in %s",
|
||||
(unsigned int)image_size,
|
||||
duration_text);
|
||||
}
|
||||
free(duration_text);
|
||||
@@ -2459,8 +2459,8 @@ static int handle_verify_image_command_internal(struct command_context_s *cmd_ct
|
||||
buffer = malloc(image.sections[i].size);
|
||||
if (buffer == NULL)
|
||||
{
|
||||
command_print(cmd_ctx,
|
||||
"error allocating buffer for section (%d bytes)",
|
||||
command_print(cmd_ctx,
|
||||
"error allocating buffer for section (%d bytes)",
|
||||
(int)(image.sections[i].size));
|
||||
break;
|
||||
}
|
||||
@@ -2507,10 +2507,10 @@ static int handle_verify_image_command_internal(struct command_context_s *cmd_ct
|
||||
{
|
||||
if (data[t] != buffer[t])
|
||||
{
|
||||
command_print(cmd_ctx,
|
||||
"Verify operation failed address 0x%08x. Was 0x%02x instead of 0x%02x\n",
|
||||
(unsigned)(t + image.sections[i].base_address),
|
||||
data[t],
|
||||
command_print(cmd_ctx,
|
||||
"Verify operation failed address 0x%08x. Was 0x%02x instead of 0x%02x\n",
|
||||
(unsigned)(t + image.sections[i].base_address),
|
||||
data[t],
|
||||
buffer[t]);
|
||||
free(data);
|
||||
free(buffer);
|
||||
@@ -2528,8 +2528,8 @@ static int handle_verify_image_command_internal(struct command_context_s *cmd_ct
|
||||
}
|
||||
} else
|
||||
{
|
||||
command_print(cmd_ctx, "address 0x%08" PRIx32 " length 0x%08" PRIx32 "",
|
||||
image.sections[i].base_address,
|
||||
command_print(cmd_ctx, "address 0x%08" PRIx32 " length 0x%08" PRIx32 "",
|
||||
image.sections[i].base_address,
|
||||
buf_cnt);
|
||||
}
|
||||
|
||||
@@ -2546,8 +2546,8 @@ done:
|
||||
|
||||
if (retval == ERROR_OK)
|
||||
{
|
||||
command_print(cmd_ctx, "verified %u bytes in %s",
|
||||
(unsigned int)image_size,
|
||||
command_print(cmd_ctx, "verified %u bytes in %s",
|
||||
(unsigned int)image_size,
|
||||
duration_text);
|
||||
}
|
||||
free(duration_text);
|
||||
@@ -2578,7 +2578,7 @@ static int handle_bp_command_list(struct command_context_s *cmd_ctx)
|
||||
char* buf = buf_to_str(breakpoint->orig_instr,
|
||||
breakpoint->length, 16);
|
||||
command_print(cmd_ctx, "0x%8.8" PRIx32 ", 0x%x, %i, 0x%s",
|
||||
breakpoint->address,
|
||||
breakpoint->address,
|
||||
breakpoint->length,
|
||||
breakpoint->set, buf);
|
||||
free(buf);
|
||||
@@ -2586,7 +2586,7 @@ static int handle_bp_command_list(struct command_context_s *cmd_ctx)
|
||||
else
|
||||
{
|
||||
command_print(cmd_ctx, "0x%8.8" PRIx32 ", 0x%x, %i",
|
||||
breakpoint->address,
|
||||
breakpoint->address,
|
||||
breakpoint->length, breakpoint->set);
|
||||
}
|
||||
|
||||
@@ -2667,9 +2667,9 @@ static int handle_wp_command(struct command_context_s *cmd_ctx, char *cmd, char
|
||||
|
||||
while (watchpoint)
|
||||
{
|
||||
command_print(cmd_ctx,
|
||||
"address: 0x%8.8" PRIx32 ", len: 0x%8.8x, r/w/a: %i, value: 0x%8.8" PRIx32 ", mask: 0x%8.8" PRIx32 "",
|
||||
watchpoint->address,
|
||||
command_print(cmd_ctx,
|
||||
"address: 0x%8.8" PRIx32 ", len: 0x%8.8x, r/w/a: %i, value: 0x%8.8" PRIx32 ", mask: 0x%8.8" PRIx32 "",
|
||||
watchpoint->address,
|
||||
watchpoint->length,
|
||||
(int)(watchpoint->rw),
|
||||
watchpoint->value,
|
||||
@@ -3111,8 +3111,8 @@ static int target_mem2array(Jim_Interp *interp, target_t *target, int argc, Jim_
|
||||
} else {
|
||||
char buf[100];
|
||||
Jim_SetResult(interp, Jim_NewEmptyStringObj(interp));
|
||||
sprintf(buf, "mem2array address: 0x%08" PRIx32 " is not aligned for %" PRId32 " byte reads",
|
||||
addr,
|
||||
sprintf(buf, "mem2array address: 0x%08" PRIx32 " is not aligned for %" PRId32 " byte reads",
|
||||
addr,
|
||||
width);
|
||||
Jim_AppendStrings(interp, Jim_GetResult(interp), buf , NULL);
|
||||
return JIM_ERR;
|
||||
@@ -3135,9 +3135,9 @@ static int target_mem2array(Jim_Interp *interp, target_t *target, int argc, Jim_
|
||||
retval = target_read_memory(target, addr, width, count, buffer);
|
||||
if (retval != ERROR_OK) {
|
||||
/* BOO !*/
|
||||
LOG_ERROR("mem2array: Read @ 0x%08x, w=%d, cnt=%d, failed",
|
||||
(unsigned int)addr,
|
||||
(int)width,
|
||||
LOG_ERROR("mem2array: Read @ 0x%08x, w=%d, cnt=%d, failed",
|
||||
(unsigned int)addr,
|
||||
(int)width,
|
||||
(int)count);
|
||||
Jim_SetResult(interp, Jim_NewEmptyStringObj(interp));
|
||||
Jim_AppendStrings(interp, Jim_GetResult(interp), "mem2array: cannot read memory", NULL);
|
||||
@@ -3298,8 +3298,8 @@ static int target_array2mem(Jim_Interp *interp, target_t *target, int argc, Jim_
|
||||
} else {
|
||||
char buf[100];
|
||||
Jim_SetResult(interp, Jim_NewEmptyStringObj(interp));
|
||||
sprintf(buf, "array2mem address: 0x%08x is not aligned for %d byte reads",
|
||||
(unsigned int)addr,
|
||||
sprintf(buf, "array2mem address: 0x%08x is not aligned for %d byte reads",
|
||||
(unsigned int)addr,
|
||||
(int)width);
|
||||
Jim_AppendStrings(interp, Jim_GetResult(interp), buf , NULL);
|
||||
return JIM_ERR;
|
||||
@@ -3339,9 +3339,9 @@ static int target_array2mem(Jim_Interp *interp, target_t *target, int argc, Jim_
|
||||
retval = target_write_memory(target, addr, width, count, buffer);
|
||||
if (retval != ERROR_OK) {
|
||||
/* BOO !*/
|
||||
LOG_ERROR("array2mem: Write @ 0x%08x, w=%d, cnt=%d, failed",
|
||||
(unsigned int)addr,
|
||||
(int)width,
|
||||
LOG_ERROR("array2mem: Write @ 0x%08x, w=%d, cnt=%d, failed",
|
||||
(unsigned int)addr,
|
||||
(int)width,
|
||||
(int)count);
|
||||
Jim_SetResult(interp, Jim_NewEmptyStringObj(interp));
|
||||
Jim_AppendStrings(interp, Jim_GetResult(interp), "array2mem: cannot read memory", NULL);
|
||||
@@ -4443,7 +4443,7 @@ static int handle_fast_load_image_command(struct command_context_s *cmd_ctx, cha
|
||||
buffer = malloc(image.sections[i].size);
|
||||
if (buffer == NULL)
|
||||
{
|
||||
command_print(cmd_ctx, "error allocating buffer for section (%d bytes)",
|
||||
command_print(cmd_ctx, "error allocating buffer for section (%d bytes)",
|
||||
(int)(image.sections[i].size));
|
||||
break;
|
||||
}
|
||||
@@ -4486,8 +4486,8 @@ static int handle_fast_load_image_command(struct command_context_s *cmd_ctx, cha
|
||||
fastload[i].length = length;
|
||||
|
||||
image_size += length;
|
||||
command_print(cmd_ctx, "%u byte written at address 0x%8.8x",
|
||||
(unsigned int)length,
|
||||
command_print(cmd_ctx, "%u byte written at address 0x%8.8x",
|
||||
(unsigned int)length,
|
||||
((unsigned int)(image.sections[i].base_address + offset)));
|
||||
}
|
||||
|
||||
@@ -4528,8 +4528,8 @@ static int handle_fast_load_command(struct command_context_s *cmd_ctx, char *cmd
|
||||
for (i = 0; i < fastload_num;i++)
|
||||
{
|
||||
target_t *target = get_current_target(cmd_ctx);
|
||||
command_print(cmd_ctx, "Write to 0x%08x, length 0x%08x",
|
||||
(unsigned int)(fastload[i].address),
|
||||
command_print(cmd_ctx, "Write to 0x%08x, length 0x%08x",
|
||||
(unsigned int)(fastload[i].address),
|
||||
(unsigned int)(fastload[i].length));
|
||||
if (retval == ERROR_OK)
|
||||
{
|
||||
@@ -4544,7 +4544,7 @@ static int handle_fast_load_command(struct command_context_s *cmd_ctx, char *cmd
|
||||
|
||||
|
||||
/*
|
||||
* Local Variables:
|
||||
* Local Variables:
|
||||
* c-basic-offset: 4
|
||||
* tab-width: 4
|
||||
* End:
|
||||
|
||||
@@ -30,7 +30,7 @@ int trace_point(target_t *target, uint32_t number)
|
||||
trace_t *trace = target->trace_info;
|
||||
|
||||
LOG_DEBUG("tracepoint: %i", (int)number);
|
||||
|
||||
|
||||
if (number < trace->num_trace_points)
|
||||
trace->trace_points[number].hit_counter++;
|
||||
|
||||
@@ -43,7 +43,7 @@ int trace_point(target_t *target, uint32_t number)
|
||||
trace->trace_history_overflowed = 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -51,11 +51,11 @@ static int handle_trace_point_command(struct command_context_s *cmd_ctx, char *c
|
||||
{
|
||||
target_t *target = get_current_target(cmd_ctx);
|
||||
trace_t *trace = target->trace_info;
|
||||
|
||||
|
||||
if (argc == 0)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
|
||||
for (i = 0; i < trace->num_trace_points; i++)
|
||||
{
|
||||
command_print(cmd_ctx, "trace point 0x%8.8" PRIx32 " (%lld times hit)",
|
||||
@@ -65,7 +65,7 @@ static int handle_trace_point_command(struct command_context_s *cmd_ctx, char *c
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
|
||||
if (!strcmp(args[0], "clear"))
|
||||
{
|
||||
if (trace->trace_points)
|
||||
@@ -75,21 +75,21 @@ static int handle_trace_point_command(struct command_context_s *cmd_ctx, char *c
|
||||
}
|
||||
trace->num_trace_points = 0;
|
||||
trace->trace_points_size = 0;
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
|
||||
/* resize array if necessary */
|
||||
if (!trace->trace_points || (trace->trace_points_size == trace->num_trace_points))
|
||||
{
|
||||
trace->trace_points = realloc(trace->trace_points, sizeof(trace_point_t) * (trace->trace_points_size + 32));
|
||||
trace->trace_points_size += 32;
|
||||
}
|
||||
|
||||
|
||||
trace->trace_points[trace->num_trace_points].address = strtoul(args[0], NULL, 0);
|
||||
trace->trace_points[trace->num_trace_points].hit_counter = 0;
|
||||
trace->num_trace_points++;
|
||||
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -97,7 +97,7 @@ static int handle_trace_history_command(struct command_context_s *cmd_ctx, char
|
||||
{
|
||||
target_t *target = get_current_target(cmd_ctx);
|
||||
trace_t *trace = target->trace_info;
|
||||
|
||||
|
||||
if (argc > 0)
|
||||
{
|
||||
trace->trace_history_pos = 0;
|
||||
@@ -108,13 +108,13 @@ static int handle_trace_history_command(struct command_context_s *cmd_ctx, char
|
||||
/* clearing is implicit, we've just reset position anyway */
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
|
||||
if (trace->trace_history)
|
||||
free(trace->trace_history);
|
||||
|
||||
|
||||
trace->trace_history_size = strtoul(args[0], NULL, 0);
|
||||
trace->trace_history = malloc(sizeof(uint32_t) * trace->trace_history_size);
|
||||
|
||||
|
||||
command_print(cmd_ctx, "new trace history size: %i", (int)(trace->trace_history_size));
|
||||
}
|
||||
else
|
||||
@@ -132,7 +132,7 @@ static int handle_trace_history_command(struct command_context_s *cmd_ctx, char
|
||||
first = trace->trace_history_pos;
|
||||
last = trace->trace_history_pos - 1;
|
||||
}
|
||||
|
||||
|
||||
for (i = first; (i % trace->trace_history_size) != last; i++)
|
||||
{
|
||||
if (trace->trace_history[i % trace->trace_history_size] < trace->num_trace_points)
|
||||
@@ -158,7 +158,7 @@ int trace_register_commands(struct command_context_s *cmd_ctx)
|
||||
{
|
||||
command_t *trace_cmd =
|
||||
register_command(cmd_ctx, NULL, "trace", NULL, COMMAND_ANY, "trace commands");
|
||||
|
||||
|
||||
register_command(cmd_ctx, trace_cmd, "history", handle_trace_history_command,
|
||||
COMMAND_EXEC, "display trace history, ['clear'] history or set [size]");
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ typedef struct xscale_jtag_s
|
||||
/* position in JTAG scan chain */
|
||||
jtag_tap_t *tap;
|
||||
|
||||
/* IR length and instructions */
|
||||
/* IR length and instructions */
|
||||
int ir_length;
|
||||
uint32_t dbgrx;
|
||||
uint32_t dbgtx;
|
||||
@@ -86,7 +86,7 @@ typedef struct xscale_trace_s
|
||||
typedef struct xscale_common_s
|
||||
{
|
||||
int common_magic;
|
||||
|
||||
|
||||
/* XScale registers (CP15, DBG) */
|
||||
reg_cache_t *reg_cache;
|
||||
|
||||
@@ -94,29 +94,29 @@ typedef struct xscale_common_s
|
||||
char *variant;
|
||||
|
||||
xscale_jtag_t jtag_info;
|
||||
|
||||
|
||||
/* current state of the debug handler */
|
||||
int handler_installed;
|
||||
int handler_running;
|
||||
uint32_t handler_address;
|
||||
|
||||
|
||||
/* target-endian buffers with exception vectors */
|
||||
uint32_t low_vectors[8];
|
||||
uint32_t high_vectors[8];
|
||||
|
||||
|
||||
/* static low vectors */
|
||||
uint8_t static_low_vectors_set; /* bit field with static vectors set by the user */
|
||||
uint8_t static_high_vectors_set; /* bit field with static vectors set by the user */
|
||||
uint32_t static_low_vectors[8];
|
||||
uint32_t static_high_vectors[8];
|
||||
|
||||
/* DCache cleaning */
|
||||
/* DCache cleaning */
|
||||
uint32_t cache_clean_address;
|
||||
|
||||
|
||||
/* whether hold_rst and ext_dbg_break should be set */
|
||||
int hold_rst;
|
||||
int external_debug_break;
|
||||
|
||||
|
||||
/* breakpoint / watchpoint handling */
|
||||
int dbr_available;
|
||||
int dbr0_used;
|
||||
@@ -126,23 +126,23 @@ typedef struct xscale_common_s
|
||||
int ibcr1_used;
|
||||
uint32_t arm_bkpt;
|
||||
uint16_t thumb_bkpt;
|
||||
|
||||
|
||||
uint8_t vector_catch;
|
||||
|
||||
xscale_trace_t trace;
|
||||
|
||||
|
||||
int arch_debug_reason;
|
||||
|
||||
|
||||
/* armv4/5 common stuff */
|
||||
armv4_5_common_t armv4_5_common;
|
||||
|
||||
|
||||
/* MMU/Caches */
|
||||
armv4_5_mmu_common_t armv4_5_mmu;
|
||||
uint32_t cp15_control_reg;
|
||||
|
||||
|
||||
/* possible future enhancements that go beyond XScale common stuff */
|
||||
void *arch_info;
|
||||
|
||||
|
||||
int fast_memory_access;
|
||||
} xscale_common_t;
|
||||
|
||||
|
||||
@@ -37,10 +37,10 @@
|
||||
#define REG_CPSR 16
|
||||
#define REG_SPSR 17
|
||||
|
||||
#define MODE_USR 0x10
|
||||
#define MODE_USR 0x10
|
||||
#define MODE_FIQ 0x11
|
||||
#define MODE_IRQ 0x12
|
||||
#define MODE_SVC 0x13
|
||||
#define MODE_IRQ 0x12
|
||||
#define MODE_SVC 0x13
|
||||
#define MODE_ABT 0x17
|
||||
#define MODE_UND 0x1b
|
||||
#define MODE_SYS 0x1f
|
||||
|
||||
Reference in New Issue
Block a user