summaryrefslogtreecommitdiff
path: root/src/jtag/jtag.h
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2009-12-04 16:00:43 +0100
committerØyvind Harboe <oyvind.harboe@zylin.com>2009-12-08 10:29:58 +0100
commit97de520bc02f96f31063175fbc9cad034e84055d (patch)
treeaf141babaa1d5e09f15e53cc5806b98ecbf7b217 /src/jtag/jtag.h
parent304af6e7d87af60a4c807b940ff6102243d465a4 (diff)
downloadopenocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.tar.gz
openocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.tar.bz2
openocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.tar.xz
openocd+libswd-97de520bc02f96f31063175fbc9cad034e84055d.zip
minidriver: fix inline capability of minidriver
Low latency low CPU processing power systems(embedded) will benefit greatly from being able to inline certain jtag_add_xxx() fn's. The trick is that this has to be done in such a way as to allow implementing an OpenOCD API with a shared library(eventually) on a PC hosted OpenOCD. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/jtag/jtag.h')
-rw-r--r--src/jtag/jtag.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h
index eaa0c7c7..fece6521 100644
--- a/src/jtag/jtag.h
+++ b/src/jtag/jtag.h
@@ -461,10 +461,6 @@ typedef int (*jtag_callback_t)(jtag_callback_data_t data0,
* @param data3 An integer big enough to use as an @c int or a pointer.
*
*/
-void jtag_add_callback4(jtag_callback_t f, jtag_callback_data_t data0,
- jtag_callback_data_t data1, jtag_callback_data_t data2,
- jtag_callback_data_t data3);
-
/**
* Run a TAP_RESET reset where the end state is TAP_RESET,
@@ -688,9 +684,6 @@ void jtag_sleep(uint32_t us);
* There is no jtag_add_dr_outin() version of this fn that also allows
* clocking data back in. Patches gladly accepted!
*/
-void jtag_add_dr_out(struct jtag_tap* tap,
- int num_fields, const int* num_bits, const uint32_t* value,
- tap_state_t end_state);
/**
@@ -725,4 +718,9 @@ bool jtag_poll_get_enabled(void);
*/
void jtag_poll_set_enabled(bool value);
+
+/* The minidriver may have inline versions of some of the low
+ * level APIs that are used in inner loops. */
+#include <jtag/minidriver.h>
+
#endif /* JTAG_H */