2013-02-04 21:55:37 -06:00
|
|
|
/***************************************************************************
|
|
|
|
* 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 *
|
2016-05-16 15:41:00 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2013-02-04 21:55:37 -06:00
|
|
|
***************************************************************************/
|
2015-09-21 14:07:46 -05:00
|
|
|
|
|
|
|
#ifndef OPENOCD_TARGET_NDS32_V3_COMMON_H
|
|
|
|
#define OPENOCD_TARGET_NDS32_V3_COMMON_H
|
2013-02-04 21:55:37 -06:00
|
|
|
|
|
|
|
#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);
|
|
|
|
|
2015-09-21 14:07:46 -05:00
|
|
|
#endif /* OPENOCD_TARGET_NDS32_V3_COMMON_H */
|