summaryrefslogtreecommitdiff
path: root/src/target/embeddedice.h
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-28 14:37:38 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-28 14:37:38 +0000
commitdb7c3810c2248c0560e00ab4f0532ffab2f173a7 (patch)
tree557fe565ebd80095ccbd7c7cee980fa64037055e /src/target/embeddedice.h
parent0f18744a8756335dea29ba1389d0728bba39abf4 (diff)
downloadopenocd+libswd-db7c3810c2248c0560e00ab4f0532ffab2f173a7.tar.gz
openocd+libswd-db7c3810c2248c0560e00ab4f0532ffab2f173a7.tar.bz2
openocd+libswd-db7c3810c2248c0560e00ab4f0532ffab2f173a7.tar.xz
openocd+libswd-db7c3810c2248c0560e00ab4f0532ffab2f173a7.zip
allow minidrivers to implement inner loop of dcc memory writes
git-svn-id: svn://svn.berlios.de/openocd/trunk@879 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/embeddedice.h')
-rw-r--r--src/target/embeddedice.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/target/embeddedice.h b/src/target/embeddedice.h
index 1ab667c1..a5929e18 100644
--- a/src/target/embeddedice.h
+++ b/src/target/embeddedice.h
@@ -52,7 +52,7 @@ enum
enum
{
EICE_DBG_CONTROL_ICEDIS = 5,
- EICE_DBG_CONTROL_MONEN = 4,
+ EICE_DBG_CONTROL_MONEN = 4,
EICE_DBG_CONTROL_INTDIS = 2,
EICE_DBG_CONTROL_DBGRQ = 1,
EICE_DBG_CONTROL_DBGACK = 0,
@@ -105,24 +105,26 @@ extern int embeddedice_receive(arm_jtag_t *jtag_info, u32 *data, u32 size);
extern int embeddedice_send(arm_jtag_t *jtag_info, u32 *data, u32 size);
extern int embeddedice_handshake(arm_jtag_t *jtag_info, int hsbit, u32 timeout);
-/* If many embeddedice_write_reg() follow eachother, then the >1 invocations can be this faster version of
+/* If many embeddedice_write_reg() follow eachother, then the >1 invocations can be this faster version of
* embeddedice_write_reg
*/
static const int embeddedice_num_bits[]={32,5,1};
static __inline__ void embeddedice_write_reg_inner(int chain_pos, int reg_addr, u32 value)
{
u32 values[3];
-
+
values[0]=value;
values[1]=reg_addr;
values[2]=1;
-
- jtag_add_dr_out(chain_pos,
+
+ jtag_add_dr_out(chain_pos,
3,
embeddedice_num_bits,
values,
-1);
}
+void embeddedice_write_dcc(int chain_pos, int reg_addr, u8 *buffer, int little, int count);
+
#endif /* EMBEDDED_ICE_H */