summaryrefslogtreecommitdiff
path: root/src/target/embeddedice.h
diff options
context:
space:
mode:
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-08-06 11:20:42 +0000
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-08-06 11:20:42 +0000
commitfbf5bec7f3ea9f4a9584099a12e71681cb55ce35 (patch)
tree576fd656bbf5ba38fc42fbc99109a5082eed6887 /src/target/embeddedice.h
parent7d244761461701e1161df32c2f1d4cd50ae2bb26 (diff)
downloadopenocd+libswd-fbf5bec7f3ea9f4a9584099a12e71681cb55ce35.tar.gz
openocd+libswd-fbf5bec7f3ea9f4a9584099a12e71681cb55ce35.tar.bz2
openocd+libswd-fbf5bec7f3ea9f4a9584099a12e71681cb55ce35.tar.xz
openocd+libswd-fbf5bec7f3ea9f4a9584099a12e71681cb55ce35.zip
- fixed a minor problem with the GDB server that could drop the first packet (non-fatal)
- fixed some small memory leaks (thanks to Spencer Oliver) - verify chip- and buswidth of cfi flash configurations - added support for ARM966E based systems (tested only with ST micro STR9, thanks to Spencer Oliver) git-svn-id: svn://svn.berlios.de/openocd/trunk@81 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/embeddedice.h')
-rw-r--r--src/target/embeddedice.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/target/embeddedice.h b/src/target/embeddedice.h
index 0062153f..e038f92d 100644
--- a/src/target/embeddedice.h
+++ b/src/target/embeddedice.h
@@ -46,6 +46,8 @@ enum
enum
{
+ EICE_DBG_CONTROL_ICEDIS = 5,
+ EICE_DBG_CONTROL_MONEN = 4,
EICE_DBG_CONTROL_INTDIS = 2,
EICE_DBG_CONTROL_DBGRQ = 1,
EICE_DBG_CONTROL_DBGACK = 0,
@@ -73,6 +75,12 @@ enum
EICE_W_CTRL_nRW = 0x1
};
+enum
+{
+ EICE_COMM_CTRL_WBIT = 1,
+ EICE_COMM_CTRL_RBIT = 0
+};
+
typedef struct embeddedice_reg_s
{
int addr;