summaryrefslogtreecommitdiff
path: root/src/target/arm920t.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-19 22:39:35 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-19 22:39:35 +0000
commit9eb3181cc8bb0b82d6c9e580c2042274e5490b77 (patch)
tree55a86b8cc6aca10419358580fec699ef6943dd6d /src/target/arm920t.c
parent13e592f9f68de793bd6681fc8cb43091031cb7c0 (diff)
downloadopenocd_libswd-9eb3181cc8bb0b82d6c9e580c2042274e5490b77.tar.gz
openocd_libswd-9eb3181cc8bb0b82d6c9e580c2042274e5490b77.tar.bz2
openocd_libswd-9eb3181cc8bb0b82d6c9e580c2042274e5490b77.tar.xz
openocd_libswd-9eb3181cc8bb0b82d6c9e580c2042274e5490b77.zip
Paulius Zaleckas <paulius.zaleckas@gmail.com>:
This is minimal patch to support FA526 ARMv4 compatible core. Since it is very similar to ARM920T I tried to reuse as much code as possible. CPU and board configs will follow soon. git-svn-id: svn://svn.berlios.de/openocd/trunk@2292 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/arm920t.c')
-rw-r--r--src/target/arm920t.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/target/arm920t.c b/src/target/arm920t.c
index 80e0d99b..269513f5 100644
--- a/src/target/arm920t.c
+++ b/src/target/arm920t.c
@@ -31,8 +31,6 @@
#endif
/* cli handling */
-int arm920t_register_commands(struct command_context_s *cmd_ctx);
-
int arm920t_handle_cp15_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
int arm920t_handle_cp15i_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
int arm920t_handle_virt2phys_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
@@ -47,10 +45,6 @@ int arm920t_handle_read_mmu_command(struct command_context_s *cmd_ctx, char *cmd
int arm920t_target_create(struct target_s *target, Jim_Interp *interp);
int arm920t_init_target(struct command_context_s *cmd_ctx, struct target_s *target);
int arm920t_quit(void);
-int arm920t_arch_state(struct target_s *target);
-int arm920t_read_memory(struct target_s *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
-int arm920t_write_memory(struct target_s *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
-int arm920t_soft_reset_halt(struct target_s *target);
#define ARM920T_CP15_PHYS_ADDR(x, y, z) ((x << 5) | (y << 1) << (z))