63 lines
3.1 KiB
C
63 lines
3.1 KiB
C
|
/***************************************************************************
|
||
|
* 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_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__ */
|