- explicitly disable monitor mode on ARM7/9 targets
- added "prepare_reset_halt()" to target_type_t, which allows reset_halt to be prepared before a reset is asserted, possibly preventing communication with the target - arm7/9 devices now use a breakpoint at 0x0 or reset vector catching for debug out of reset git-svn-id: svn://svn.berlios.de/openocd/trunk@141 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -58,6 +58,7 @@ int xscale_restore_context(target_t *target);
|
||||
int xscale_assert_reset(target_t *target);
|
||||
int xscale_deassert_reset(target_t *target);
|
||||
int xscale_soft_reset_halt(struct target_s *target);
|
||||
int xscale_prepare_reset_halt(struct target_s *target);
|
||||
|
||||
int xscale_set_reg_u32(reg_t *reg, u32 value);
|
||||
|
||||
@@ -91,6 +92,7 @@ target_type_t xscale_target =
|
||||
.assert_reset = xscale_assert_reset,
|
||||
.deassert_reset = xscale_deassert_reset,
|
||||
.soft_reset_halt = xscale_soft_reset_halt,
|
||||
.prepare_reset_halt = xscale_prepare_reset_halt,
|
||||
|
||||
.get_gdb_reg_list = armv4_5_get_gdb_reg_list,
|
||||
|
||||
@@ -1679,6 +1681,12 @@ int xscale_soft_reset_halt(struct target_s *target)
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int xscale_prepare_reset_halt(struct target_s *target)
|
||||
{
|
||||
/* nothing to be done for reset_halt on XScale targets */
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int xscale_read_core_reg(struct target_s *target, int num, enum armv4_5_mode mode)
|
||||
{
|
||||
|
||||
|
||||
Reference in New Issue
Block a user