From fbf5bec7f3ea9f4a9584099a12e71681cb55ce35 Mon Sep 17 00:00:00 2001 From: drath Date: Sun, 6 Aug 2006 11:20:42 +0000 Subject: - 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 --- src/target/embeddedice.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/target/embeddedice.h') 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; -- cgit v1.2.3