OpenOCD
nds32_v3.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /***************************************************************************
4  * Copyright (C) 2013 Andes Technology *
5  * Hsiangkai Wang <hkwang@andestech.com> *
6  ***************************************************************************/
7 
8 #ifndef OPENOCD_TARGET_NDS32_V3_H
9 #define OPENOCD_TARGET_NDS32_V3_H
10 
11 #include "nds32.h"
12 
14  struct nds32 nds32;
15 
17  int32_t n_hbr;
18 
20  int32_t used_n_wp;
21 
23  int32_t next_hbr_index;
24 
27 };
28 
29 static inline struct nds32_v3_common *target_to_nds32_v3(struct target *target)
30 {
32 }
33 
34 #endif /* OPENOCD_TARGET_NDS32_V3_H */
Holds the interface to Andes cores.
static struct nds32_v3_common * target_to_nds32_v3(struct target *target)
Definition: nds32_v3.h:29
int32_t used_n_wp
number of used hardware watchpoints
Definition: nds32_v3.h:20
bool low_interference_profile
low interference profiling
Definition: nds32_v3.h:26
int32_t next_hbr_index
next hardware breakpoint index
Definition: nds32_v3.h:23
int32_t n_hbr
number of hardware breakpoints
Definition: nds32_v3.h:17
Represents a generic Andes core.
Definition: nds32.h:226
Definition: target.h:120
void * arch_info
Definition: target.h:169
#define container_of(ptr, type, member)
Cast a member of a structure out to the containing structure.
Definition: types.h:68