target: Add 64-bit target address support
Define a target_addr_t type to support 32-bit and 64-bit addresses at the same time. Also define matching TARGET_PRI*ADDR format macros as well as a convenient TARGET_ADDR_FMT. In targets that are 32-bit (avr32, nds32, arm7/9/11, fm4, xmc1000) be least invasive by leaving the formatting unchanged apart from the type; for generic code adopt TARGET_ADDR_FMT as unified address format. Don't silently change gdb formatting here, leave that to later. Add COMMAND_PARSE_ADDRESS() macro to abstract the address type. Implement it using its own parse_target_addr() function, in the hopes of catching pointer type mismatches better. Add '--disable-target64' configure option to revert to previous 32-bit target address behavior. Change-Id: I2e91d205862ceb14f94b3e72a7e99ee0373a85d5 Signed-off-by: Dongxue Zhang <elta.era@gmail.com> Signed-off-by: David Ung <david.ung.42@gmail.com> [AF: Default to enabling (Paul Fertser), rename macros, simplify] Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Matthias Welwarsky <matthias.welwarsky@sysgo.com>
This commit is contained in:
committed by
Matthias Welwarsky
parent
0ecee83266
commit
47b8cf8420
@@ -861,7 +861,7 @@ static int or1k_resume_or_step(struct target *target, int current,
|
||||
/* Single step past breakpoint at current address */
|
||||
breakpoint = breakpoint_find(target, resume_pc);
|
||||
if (breakpoint) {
|
||||
LOG_DEBUG("Unset breakpoint at 0x%08" PRIx32, breakpoint->address);
|
||||
LOG_DEBUG("Unset breakpoint at 0x%08" TARGET_PRIxADDR, breakpoint->address);
|
||||
retval = or1k_remove_breakpoint(target, breakpoint);
|
||||
if (retval != ERROR_OK)
|
||||
return retval;
|
||||
@@ -897,7 +897,8 @@ static int or1k_resume_or_step(struct target *target, int current,
|
||||
}
|
||||
|
||||
static int or1k_resume(struct target *target, int current,
|
||||
uint32_t address, int handle_breakpoints, int debug_execution)
|
||||
target_addr_t address, int handle_breakpoints,
|
||||
int debug_execution)
|
||||
{
|
||||
return or1k_resume_or_step(target, current, address,
|
||||
handle_breakpoints,
|
||||
@@ -906,7 +907,7 @@ static int or1k_resume(struct target *target, int current,
|
||||
}
|
||||
|
||||
static int or1k_step(struct target *target, int current,
|
||||
uint32_t address, int handle_breakpoints)
|
||||
target_addr_t address, int handle_breakpoints)
|
||||
{
|
||||
return or1k_resume_or_step(target, current, address,
|
||||
handle_breakpoints,
|
||||
@@ -922,7 +923,7 @@ static int or1k_add_breakpoint(struct target *target,
|
||||
struct or1k_du *du_core = or1k_to_du(or1k);
|
||||
uint8_t data;
|
||||
|
||||
LOG_DEBUG("Adding breakpoint: addr 0x%08" PRIx32 ", len %d, type %d, set: %d, id: %" PRId32,
|
||||
LOG_DEBUG("Adding breakpoint: addr 0x%08" TARGET_PRIxADDR ", len %d, type %d, set: %d, id: %" PRId32,
|
||||
breakpoint->address, breakpoint->length, breakpoint->type,
|
||||
breakpoint->set, breakpoint->unique_id);
|
||||
|
||||
@@ -937,7 +938,7 @@ static int or1k_add_breakpoint(struct target *target,
|
||||
1,
|
||||
&data);
|
||||
if (retval != ERROR_OK) {
|
||||
LOG_ERROR("Error while reading the instruction at 0x%08" PRIx32,
|
||||
LOG_ERROR("Error while reading the instruction at 0x%08" TARGET_PRIxADDR,
|
||||
breakpoint->address);
|
||||
return retval;
|
||||
}
|
||||
@@ -958,14 +959,15 @@ static int or1k_add_breakpoint(struct target *target,
|
||||
or1k_trap_insn);
|
||||
|
||||
if (retval != ERROR_OK) {
|
||||
LOG_ERROR("Error while writing OR1K_TRAP_INSTR at 0x%08" PRIx32,
|
||||
LOG_ERROR("Error while writing OR1K_TRAP_INSTR at 0x%08" TARGET_PRIxADDR,
|
||||
breakpoint->address);
|
||||
return retval;
|
||||
}
|
||||
|
||||
/* invalidate instruction cache */
|
||||
uint32_t addr = breakpoint->address;
|
||||
retval = du_core->or1k_jtag_write_cpu(&or1k->jtag,
|
||||
OR1K_ICBIR_CPU_REG_ADD, 1, &breakpoint->address);
|
||||
OR1K_ICBIR_CPU_REG_ADD, 1, &addr);
|
||||
if (retval != ERROR_OK) {
|
||||
LOG_ERROR("Error while invalidating the ICACHE");
|
||||
return retval;
|
||||
@@ -980,7 +982,7 @@ static int or1k_remove_breakpoint(struct target *target,
|
||||
struct or1k_common *or1k = target_to_or1k(target);
|
||||
struct or1k_du *du_core = or1k_to_du(or1k);
|
||||
|
||||
LOG_DEBUG("Removing breakpoint: addr 0x%08" PRIx32 ", len %d, type %d, set: %d, id: %" PRId32,
|
||||
LOG_DEBUG("Removing breakpoint: addr 0x%08" TARGET_PRIxADDR ", len %d, type %d, set: %d, id: %" PRId32,
|
||||
breakpoint->address, breakpoint->length, breakpoint->type,
|
||||
breakpoint->set, breakpoint->unique_id);
|
||||
|
||||
@@ -996,14 +998,15 @@ static int or1k_remove_breakpoint(struct target *target,
|
||||
breakpoint->orig_instr);
|
||||
|
||||
if (retval != ERROR_OK) {
|
||||
LOG_ERROR("Error while writing back the instruction at 0x%08" PRIx32,
|
||||
LOG_ERROR("Error while writing back the instruction at 0x%08" TARGET_PRIxADDR,
|
||||
breakpoint->address);
|
||||
return retval;
|
||||
}
|
||||
|
||||
/* invalidate instruction cache */
|
||||
uint32_t addr = breakpoint->address;
|
||||
retval = du_core->or1k_jtag_write_cpu(&or1k->jtag,
|
||||
OR1K_ICBIR_CPU_REG_ADD, 1, &breakpoint->address);
|
||||
OR1K_ICBIR_CPU_REG_ADD, 1, &addr);
|
||||
if (retval != ERROR_OK) {
|
||||
LOG_ERROR("Error while invalidating the ICACHE");
|
||||
return retval;
|
||||
@@ -1026,13 +1029,13 @@ static int or1k_remove_watchpoint(struct target *target,
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
static int or1k_read_memory(struct target *target, uint32_t address,
|
||||
static int or1k_read_memory(struct target *target, target_addr_t address,
|
||||
uint32_t size, uint32_t count, uint8_t *buffer)
|
||||
{
|
||||
struct or1k_common *or1k = target_to_or1k(target);
|
||||
struct or1k_du *du_core = or1k_to_du(or1k);
|
||||
|
||||
LOG_DEBUG("Read memory at 0x%08" PRIx32 ", size: %" PRIu32 ", count: 0x%08" PRIx32, address, size, count);
|
||||
LOG_DEBUG("Read memory at 0x%08" TARGET_PRIxADDR ", size: %" PRIu32 ", count: 0x%08" PRIx32, address, size, count);
|
||||
|
||||
if (target->state != TARGET_HALTED) {
|
||||
LOG_ERROR("Target not halted");
|
||||
@@ -1053,13 +1056,13 @@ static int or1k_read_memory(struct target *target, uint32_t address,
|
||||
return du_core->or1k_jtag_read_memory(&or1k->jtag, address, size, count, buffer);
|
||||
}
|
||||
|
||||
static int or1k_write_memory(struct target *target, uint32_t address,
|
||||
static int or1k_write_memory(struct target *target, target_addr_t address,
|
||||
uint32_t size, uint32_t count, const uint8_t *buffer)
|
||||
{
|
||||
struct or1k_common *or1k = target_to_or1k(target);
|
||||
struct or1k_du *du_core = or1k_to_du(or1k);
|
||||
|
||||
LOG_DEBUG("Write memory at 0x%08" PRIx32 ", size: %" PRIu32 ", count: 0x%08" PRIx32, address, size, count);
|
||||
LOG_DEBUG("Write memory at 0x%08" TARGET_PRIxADDR ", size: %" PRIu32 ", count: 0x%08" PRIx32, address, size, count);
|
||||
|
||||
if (target->state != TARGET_HALTED) {
|
||||
LOG_WARNING("Target not halted");
|
||||
@@ -1203,7 +1206,7 @@ int or1k_get_gdb_fileio_info(struct target *target, struct gdb_fileio_info *file
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
|
||||
static int or1k_checksum_memory(struct target *target, uint32_t address,
|
||||
static int or1k_checksum_memory(struct target *target, target_addr_t address,
|
||||
uint32_t count, uint32_t *checksum) {
|
||||
|
||||
return ERROR_FAIL;
|
||||
|
||||
Reference in New Issue
Block a user