forked from auracaster/openocd
nds32: add new target type nds32_v2, nds32_v3, nds32_v3m
Add target code for Andes targets. Change-Id: Ibf0e1b61b06127ca7d9ed502d98d7e2aeebbbe82 Signed-off-by: Hsiangkai Wang <hsiangkai@gmail.com> Reviewed-on: http://openocd.zylin.com/1259 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
committed by
Spencer Oliver
parent
ceb402dc9e
commit
cf8a3c3d70
63
src/target/nds32_v3_common.h
Normal file
63
src/target/nds32_v3_common.h
Normal file
@@ -0,0 +1,63 @@
|
||||
/***************************************************************************
|
||||
* Copyright (C) 2013 Andes Technology *
|
||||
* Hsiangkai Wang <hkwang@andestech.com> *
|
||||
* *
|
||||
* 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., *
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
|
||||
***************************************************************************/
|
||||
#ifndef __NDS32_V3_COMMON_H__
|
||||
#define __NDS32_V3_COMMON_H__
|
||||
|
||||
#include "target.h"
|
||||
|
||||
struct nds32_v3_common_callback {
|
||||
int (*check_interrupt_stack)(struct nds32 *nds32);
|
||||
int (*restore_interrupt_stack)(struct nds32 *nds32);
|
||||
int (*activate_hardware_breakpoint)(struct target *target);
|
||||
int (*activate_hardware_watchpoint)(struct target *target);
|
||||
int (*deactivate_hardware_breakpoint)(struct target *target);
|
||||
int (*deactivate_hardware_watchpoint)(struct target *target);
|
||||
};
|
||||
|
||||
void nds32_v3_common_register_callback(struct nds32_v3_common_callback *callback);
|
||||
int nds32_v3_target_request_data(struct target *target,
|
||||
uint32_t size, uint8_t *buffer);
|
||||
int nds32_v3_soft_reset_halt(struct target *target);
|
||||
int nds32_v3_checksum_memory(struct target *target,
|
||||
uint32_t address, uint32_t count, uint32_t *checksum);
|
||||
int nds32_v3_hit_watchpoint(struct target *target,
|
||||
struct watchpoint **hit_watchpoint);
|
||||
int nds32_v3_target_create_common(struct target *target, struct nds32 *nds32);
|
||||
int nds32_v3_run_algorithm(struct target *target,
|
||||
int num_mem_params,
|
||||
struct mem_param *mem_params,
|
||||
int num_reg_params,
|
||||
struct reg_param *reg_params,
|
||||
uint32_t entry_point,
|
||||
uint32_t exit_point,
|
||||
int timeout_ms,
|
||||
void *arch_info);
|
||||
int nds32_v3_read_buffer(struct target *target, uint32_t address,
|
||||
uint32_t size, uint8_t *buffer);
|
||||
int nds32_v3_write_buffer(struct target *target, uint32_t address,
|
||||
uint32_t size, const uint8_t *buffer);
|
||||
int nds32_v3_read_memory(struct target *target, uint32_t address,
|
||||
uint32_t size, uint32_t count, uint8_t *buffer);
|
||||
int nds32_v3_write_memory(struct target *target, uint32_t address,
|
||||
uint32_t size, uint32_t count, const uint8_t *buffer);
|
||||
int nds32_v3_init_target(struct command_context *cmd_ctx,
|
||||
struct target *target);
|
||||
|
||||
#endif /* __NDS32_V3_COMMON_H__ */
|
||||
Reference in New Issue
Block a user