summaryrefslogtreecommitdiff
path: root/src/jtag/jtag.h
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-09-11 18:34:15 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-09-11 18:34:15 +0000
commit4f7761828c91108d4bf4a12e78f23b6483b18ade (patch)
treef6217430dfd24eb56d033fc1196e031e13cd201a /src/jtag/jtag.h
parentec3015db1ab822e1245a00ce4884ef67dea6137f (diff)
downloadopenocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.tar.gz
openocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.tar.bz2
openocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.tar.xz
openocd+libswd-4f7761828c91108d4bf4a12e78f23b6483b18ade.zip
tap post reset event added. Allows omap3530 to send 100 runtest idle tickle's after a TAP_RESET.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2696 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag/jtag.h')
-rw-r--r--src/jtag/jtag.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h
index 3e3686b8..b7bfd4cc 100644
--- a/src/jtag/jtag.h
+++ b/src/jtag/jtag.h
@@ -208,6 +208,7 @@ enum jtag_event {
JTAG_TRST_ASSERTED,
JTAG_TAP_EVENT_ENABLE,
JTAG_TAP_EVENT_DISABLE,
+ JTAG_TAP_EVENT_POST_RESET,
};
struct jtag_tap_event_action_s
@@ -635,6 +636,9 @@ extern void jtag_execute_queue_noclear(void);
/// @returns the number of times the scan queue has been flushed
int jtag_get_flush_queue_count(void);
+/// Notify all TAP's about a TLR reset
+void jtag_notify_reset(void);
+
/* can be implemented by hw + sw */
extern int jtag_power_dropout(int* dropout);