OpenOCD
aarch64.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /***************************************************************************
4  * Copyright (C) 2015 by David Ung *
5  ***************************************************************************/
6 
7 #ifndef OPENOCD_TARGET_AARCH64_H
8 #define OPENOCD_TARGET_AARCH64_H
9 
10 #include "armv8.h"
11 
12 #define AARCH64_COMMON_MAGIC 0x41413634U
13 
14 #define CPUDBG_CPUID 0xD00
15 #define CPUDBG_CTYPR 0xD04
16 #define CPUDBG_TTYPR 0xD0C
17 #define ID_AA64PFR0_EL1 0xD20
18 #define ID_AA64DFR0_EL1 0xD28
19 #define CPUDBG_LOCKACCESS 0xFB0
20 #define CPUDBG_LOCKSTATUS 0xFB4
21 
22 #define BRP_NORMAL 0
23 #define BRP_CONTEXT 1
24 
25 #define AARCH64_PADDRDBG_CPU_SHIFT 13
26 
30 };
31 
32 struct aarch64_brp {
33  int used;
34  int type;
36  uint32_t control;
37  uint8_t brpn;
38 };
39 
41  unsigned int common_magic;
42 
44 
45  /* Context information */
48 
49  /* Breakpoint register pairs */
51  int brp_num;
54 
55  /* Watchpoint register pairs */
56  int wp_num;
59 
61 };
62 
63 static inline struct aarch64_common *
65 {
67 }
68 
69 #endif /* OPENOCD_TARGET_AARCH64_H */
static struct aarch64_common * target_to_aarch64(struct target *target)
Definition: aarch64.h:64
aarch64_isrmasking_mode
Definition: aarch64.h:27
@ AARCH64_ISRMASK_ON
Definition: aarch64.h:29
@ AARCH64_ISRMASK_OFF
Definition: aarch64.h:28
uint8_t brpn
Definition: aarch64.h:37
target_addr_t value
Definition: aarch64.h:35
int type
Definition: aarch64.h:34
uint32_t control
Definition: aarch64.h:36
int used
Definition: aarch64.h:33
unsigned int common_magic
Definition: aarch64.h:41
int wp_num_available
Definition: aarch64.h:57
struct aarch64_brp * wp_list
Definition: aarch64.h:58
int brp_num_available
Definition: aarch64.h:52
uint64_t system_control_reg_curr
Definition: aarch64.h:47
struct aarch64_brp * brp_list
Definition: aarch64.h:53
enum aarch64_isrmasking_mode isrmasking_mode
Definition: aarch64.h:60
uint64_t system_control_reg
Definition: aarch64.h:46
int brp_num_context
Definition: aarch64.h:50
struct arm arm
Definition: armv8.h:187
Definition: target.h:116
void * arch_info
Definition: target.h:164
uint64_t target_addr_t
Definition: types.h:335
#define container_of(ptr, type, member)
Cast a member of a structure out to the containing structure.
Definition: types.h:68