summaryrefslogtreecommitdiff
path: root/src/target/target.h
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-19 19:26:17 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-02-19 19:26:17 +0000
commit5c0e8efa051f4e266add8b3685020970fe394a4c (patch)
tree261d72e1ce7002f3b331b93ee6d8fa8e01de545c /src/target/target.h
parentb02d64a1bff5bbbb56c3119e336e1530888c04bd (diff)
downloadopenocd+libswd-5c0e8efa051f4e266add8b3685020970fe394a4c.tar.gz
openocd+libswd-5c0e8efa051f4e266add8b3685020970fe394a4c.tar.bz2
openocd+libswd-5c0e8efa051f4e266add8b3685020970fe394a4c.tar.xz
openocd+libswd-5c0e8efa051f4e266add8b3685020970fe394a4c.zip
- Fixed bug in pathmove for XScale
- added virtual address to working_area. - Improved error messages in a number of places - Added ERROR_COMMAND_SYNTAX_ERROR that commands can return to have syntax printed - Added help for some config commands - Added verification of sw breakpoints with ERROR() message - Removed a couple of exit()'s and replaced with error message - cosmetic fix to armv4_5.c, easier to read - added polymorphic(with default) virt2phys and mmu enable query function to target.h - added virt2phys command that uses target->type->virt2phys() fn Thanks to Øyvind Harboe git-svn-id: svn://svn.berlios.de/openocd/trunk@310 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/target.h')
-rw-r--r--src/target/target.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/target/target.h b/src/target/target.h
index 46ae505d..29de1e98 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -147,6 +147,9 @@ typedef struct target_type_s
int (*init_target)(struct command_context_s *cmd_ctx, struct target_s *target);
int (*quit)(void);
+ int (*virt2phys)(struct target_s *target, u32 address, u32 *physical);
+ int (*mmu)(struct target_s *target, int *enabled);
+
} target_type_t;
typedef struct target_s
@@ -158,7 +161,11 @@ typedef struct target_s
char *post_halt_script; /* script file to execute after the target halted */
char *pre_resume_script; /* script file to execute before the target resumed */
char *gdb_program_script; /* script file to execute before programming vis gdb */
- u32 working_area; /* working area (initialized RAM) */
+ u32 working_area; /* working area (initialized RAM). Evaluated
+ upon first allocation from virtual/physical address.
+ */
+ u32 working_area_virt; /* virtual address */
+ u32 working_area_phys; /* physical address */
u32 working_area_size; /* size in bytes */
u32 backup_working_area; /* whether the content of the working area has to be preserved */
struct working_area_s *working_areas;/* list of allocated working areas */