nds32: always polling after gdb attached

Do not turn on/off polling as leave/enter debug mode.
Enable polling after gdb attached, and disable polling
after gdb detached.

Change-Id: Id64459b86f44937af7ea5ccfe2cd13e31732eecf
Signed-off-by: Hsiangkai Wang <hsiangkai@gmail.com>
Reviewed-on: http://openocd.zylin.com/1574
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
Hsiangkai Wang
2013-05-27 13:18:08 +08:00
committed by Spencer Oliver
parent 9288a59aa1
commit 54d8a801b2
5 changed files with 4 additions and 26 deletions

View File

@@ -287,8 +287,6 @@ static int nds32_v2_debug_entry(struct nds32 *nds32, bool enable_watchpoint)
{
LOG_DEBUG("nds32_v2_debug_entry");
jtag_poll_set_enabled(false);
if (nds32->virtual_hosting)
LOG_WARNING("<-- TARGET WARNING! Virtual hosting is not supported "
"under V1/V2 architecture. -->");
@@ -387,8 +385,6 @@ static int nds32_v2_leave_debug_state(struct nds32 *nds32, bool enable_watchpoin
register_cache_invalidate(nds32->core_cache);
jtag_poll_set_enabled(true);
return ERROR_OK;
}
@@ -426,10 +422,6 @@ static int nds32_v2_deassert_reset(struct target *target)
retval = target_halt(target);
if (retval != ERROR_OK)
return retval;
/* call target_poll() to avoid "Halt timed out" */
CHECK_RETVAL(target_poll(target));
} else {
jtag_poll_set_enabled(false);
}
return ERROR_OK;