target: tell which target state is meant

If we work on smp system, the output of step command will depend
on Id of default target.
This patch adds additional information to help find what on which
core is happening.

Example of LOG after this patch.
imx6.cpu.1: target state: halted
^^^^^^^^^^
target halted in ARM state due to breakpoint, current mode: Supervisor
cpsr: 0x60000093 pc: 0x80076c0c
MMU: enabled, D-Cache: enabled, I-Cache: enabled
imx6.cpu.0: target state: halted
^^^^^^^^^^
target halted in ARM state due to debug-request, current mode: Supervisor
cpsr: 0x20000193 pc: 0x802ccb6c
MMU: enabled, D-Cache: enabled, I-Cache: enabled

Change-Id: I536a2cce33b5ab10af9de2a43b9960320c17729f
Signed-off-by: Oleksij Rempel <external.Oleksij.Rempel@de.bosch.com>
Reviewed-on: http://openocd.zylin.com/2691
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
Oleksij Rempel 2015-04-01 14:44:41 +02:00 committed by Freddie Chopin
parent 3f0aef4272
commit 0578e4c4f4
1 changed files with 2 additions and 1 deletions

View File

@ -1930,7 +1930,8 @@ int target_arch_state(struct target *target)
return ERROR_OK;
}
LOG_USER("target state: %s", target_state_name(target));
LOG_USER("%s: target state: %s", target_name(target),
target_state_name(target));
if (target->state != TARGET_HALTED)
return ERROR_OK;