2006-06-02 05:36:31 -05:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* Copyright (C) 2005 by Dominic Rath *
|
|
|
|
|
* Dominic.Rath@gmx.de *
|
|
|
|
|
* *
|
2008-09-20 05:50:53 -05:00
|
|
|
|
* Copyright (C) 2007,2008 <EFBFBD>yvind Harboe *
|
2008-07-25 01:54:17 -05:00
|
|
|
|
* oyvind.harboe@zylin.com *
|
|
|
|
|
* *
|
2008-09-20 05:50:53 -05:00
|
|
|
|
* Copyright (C) 2008 by Spencer Oliver *
|
|
|
|
|
* spen@spen-soft.co.uk *
|
|
|
|
|
* *
|
2008-10-30 02:49:13 -05:00
|
|
|
|
* Copyright (C) 2008 by Hongtao Zheng *
|
|
|
|
|
* hontor@126.com *
|
|
|
|
|
* *
|
2006-06-02 05:36:31 -05:00
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
#ifndef ARM7_9_COMMON_H
|
|
|
|
|
#define ARM7_9_COMMON_H
|
|
|
|
|
|
|
|
|
|
#include "breakpoints.h"
|
2007-05-29 06:23:42 -05:00
|
|
|
|
#include "etm.h"
|
2007-03-26 16:47:26 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
#define ARM7_9_COMMON_MAGIC 0x0a790a79 /**< */
|
2006-06-02 05:36:31 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
/**
|
|
|
|
|
* Structure for items that are common between both ARM7 and ARM9 targets.
|
|
|
|
|
*/
|
2006-06-02 05:36:31 -05:00
|
|
|
|
typedef struct arm7_9_common_s
|
|
|
|
|
{
|
2009-04-19 15:51:16 -05:00
|
|
|
|
u32 common_magic;
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
arm_jtag_t jtag_info; /**< JTAG information for target */
|
|
|
|
|
reg_cache_t *eice_cache; /**< Embedded ICE register cache */
|
|
|
|
|
|
|
|
|
|
u32 arm_bkpt; /**< ARM breakpoint instruction */
|
|
|
|
|
u16 thumb_bkpt; /**< Thumb breakpoint instruction */
|
|
|
|
|
int sw_breakpoints_added; /**< Specifies which watchpoint software breakpoints are setup on */
|
|
|
|
|
int breakpoint_count; /**< Current number of set breakpoints */
|
|
|
|
|
int wp_available; /**< Current number of available watchpoint units */
|
|
|
|
|
int wp_available_max; /**< Maximum number of available watchpoint units */
|
|
|
|
|
int wp0_used; /**< Specifies if and how watchpoint unit 0 is used */
|
|
|
|
|
int wp1_used; /**< Specifies if and how watchpoint unit 1 is used */
|
|
|
|
|
int wp1_used_default; /**< Specifies if and how watchpoint unit 1 is used by default */
|
2006-06-02 05:36:31 -05:00
|
|
|
|
int force_hw_bkpts;
|
2009-05-21 21:27:30 -05:00
|
|
|
|
int dbgreq_adjust_pc; /**< Amount of PC adjustment caused by a DBGREQ */
|
|
|
|
|
int use_dbgrq; /**< Specifies if DBGRQ should be used to halt the target */
|
|
|
|
|
int need_bypass_before_restart; /**< Specifies if there should be a bypass before a JTAG restart */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2007-05-29 06:23:42 -05:00
|
|
|
|
etm_context_t *etm_ctx;
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2007-01-22 08:47:00 -06:00
|
|
|
|
int has_single_step;
|
|
|
|
|
int has_monitor_mode;
|
2009-05-21 21:27:30 -05:00
|
|
|
|
int has_vector_catch; /**< Specifies if the target has a reset vector catch */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
int debug_entry_from_reset; /**< Specifies if debug entry was from a reset */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2006-06-02 05:36:31 -05:00
|
|
|
|
struct working_area_s *dcc_working_area;
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2006-08-31 07:41:49 -05:00
|
|
|
|
int fast_memory_access;
|
2006-06-02 05:36:31 -05:00
|
|
|
|
int dcc_downloads;
|
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
int (*examine_debug_reason)(target_t *target); /**< Function for determining why debug state was entered */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*change_to_arm)(target_t *target, u32 *r0, u32 *pc); /**< Function for changing from Thumb to ARM mode */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*read_core_regs)(target_t *target, u32 mask, u32 *core_regs[16]); /**< Function for reading the core registers */
|
2006-08-31 07:41:49 -05:00
|
|
|
|
void (*read_core_regs_target_buffer)(target_t *target, u32 mask, void *buffer, int size);
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*read_xpsr)(target_t *target, u32 *xpsr, int spsr); /**< Function for reading CPSR or SPSR */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*write_xpsr)(target_t *target, u32 xpsr, int spsr); /**< Function for writing to CPSR or SPSR */
|
|
|
|
|
void (*write_xpsr_im8)(target_t *target, u8 xpsr_im, int rot, int spsr); /**< Function for writing an immediate value to CPSR or SPSR */
|
2006-06-02 05:36:31 -05:00
|
|
|
|
void (*write_core_regs)(target_t *target, u32 mask, u32 core_regs[16]);
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2006-06-02 05:36:31 -05:00
|
|
|
|
void (*load_word_regs)(target_t *target, u32 mask);
|
|
|
|
|
void (*load_hword_reg)(target_t *target, int num);
|
|
|
|
|
void (*load_byte_reg)(target_t *target, int num);
|
|
|
|
|
|
|
|
|
|
void (*store_word_regs)(target_t *target, u32 mask);
|
|
|
|
|
void (*store_hword_reg)(target_t *target, int num);
|
|
|
|
|
void (*store_byte_reg)(target_t *target, int num);
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*write_pc)(target_t *target, u32 pc); /**< Function for writing to the program counter */
|
2006-06-02 05:36:31 -05:00
|
|
|
|
void (*branch_resume)(target_t *target);
|
|
|
|
|
void (*branch_resume_thumb)(target_t *target);
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2008-10-30 02:49:13 -05:00
|
|
|
|
void (*enable_single_step)(target_t *target, u32 next_pc);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
void (*disable_single_step)(target_t *target);
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*set_special_dbgrq)(target_t *target); /**< Function for setting DBGRQ if the normal way won't work */
|
2008-06-06 01:12:04 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*pre_debug_entry)(target_t *target); /**< Callback function called before entering debug mode */
|
|
|
|
|
void (*post_debug_entry)(target_t *target); /**< Callback function called after entering debug mode */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2009-05-21 21:27:30 -05:00
|
|
|
|
void (*pre_restore_context)(target_t *target); /**< Callback function called before restoring the processor context */
|
|
|
|
|
void (*post_restore_context)(target_t *target); /**< Callback function called after restoring the processor context */
|
2009-05-10 14:02:07 -05:00
|
|
|
|
|
2006-06-02 05:36:31 -05:00
|
|
|
|
armv4_5_common_t armv4_5_common;
|
|
|
|
|
void *arch_info;
|
|
|
|
|
|
|
|
|
|
} arm7_9_common_t;
|
|
|
|
|
|
|
|
|
|
int arm7_9_register_commands(struct command_context_s *cmd_ctx);
|
|
|
|
|
|
2008-02-24 12:52:45 -06:00
|
|
|
|
int arm7_9_poll(target_t *target);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
|
2007-08-10 14:44:06 -05:00
|
|
|
|
int arm7_9_target_request_data(target_t *target, u32 size, u8 *buffer);
|
|
|
|
|
|
2008-04-16 04:17:22 -05:00
|
|
|
|
int arm7_9_setup(target_t *target);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
int arm7_9_assert_reset(target_t *target);
|
|
|
|
|
int arm7_9_deassert_reset(target_t *target);
|
|
|
|
|
int arm7_9_reset_request_halt(target_t *target);
|
|
|
|
|
int arm7_9_early_halt(target_t *target);
|
|
|
|
|
int arm7_9_soft_reset_halt(struct target_s *target);
|
2007-04-16 09:58:16 -05:00
|
|
|
|
int arm7_9_prepare_reset_halt(struct target_s *target);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
|
|
|
|
|
int arm7_9_halt(target_t *target);
|
|
|
|
|
int arm7_9_full_context(target_t *target);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
int arm7_9_restore_context(target_t *target);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
int arm7_9_resume(struct target_s *target, int current, u32 address, int handle_breakpoints, int debug_execution);
|
|
|
|
|
int arm7_9_step(struct target_s *target, int current, u32 address, int handle_breakpoints);
|
|
|
|
|
int arm7_9_read_core_reg(struct target_s *target, int num, enum armv4_5_mode mode);
|
|
|
|
|
int arm7_9_read_memory(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer);
|
|
|
|
|
int arm7_9_write_memory(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer);
|
|
|
|
|
int arm7_9_bulk_write_memory(target_t *target, u32 address, u32 count, u8 *buffer);
|
2007-10-22 03:44:34 -05:00
|
|
|
|
int arm7_9_checksum_memory(struct target_s *target, u32 address, u32 count, u32* checksum);
|
2008-05-27 16:23:47 -05:00
|
|
|
|
int arm7_9_blank_check_memory(struct target_s *target, u32 address, u32 count, u32* blank);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
|
|
|
|
|
int arm7_9_run_algorithm(struct target_s *target, int num_mem_params, mem_param_t *mem_params, int num_reg_prams, reg_param_t *reg_param, u32 entry_point, void *arch_info);
|
|
|
|
|
|
2006-11-07 04:54:19 -06:00
|
|
|
|
int arm7_9_add_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
int arm7_9_remove_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
|
2006-11-07 04:54:19 -06:00
|
|
|
|
int arm7_9_add_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
int arm7_9_remove_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
|
|
|
|
|
|
2008-10-30 02:49:13 -05:00
|
|
|
|
void arm7_9_enable_eice_step(target_t *target, u32 next_pc);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
void arm7_9_disable_eice_step(target_t *target);
|
|
|
|
|
|
|
|
|
|
int arm7_9_execute_sys_speed(struct target_s *target);
|
|
|
|
|
|
|
|
|
|
int arm7_9_init_arch_info(target_t *target, arm7_9_common_t *arm7_9);
|
2007-04-25 15:15:59 -05:00
|
|
|
|
int arm7_9_get_arch_pointers(target_t *target, armv4_5_common_t **armv4_5_p, arm7_9_common_t **arm7_9_p);
|
2006-06-02 05:36:31 -05:00
|
|
|
|
|
|
|
|
|
#endif /* ARM7_9_COMMON_H */
|