target/arm_adi_v5: fix sync CSW cache on apreg write
[openocd.git] / src / target / register.h
blob32c1f39aceadc50b55673de05137a994565a3182
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
20 ***************************************************************************/
22 #ifndef OPENOCD_TARGET_REGISTER_H
23 #define OPENOCD_TARGET_REGISTER_H
25 struct target;
27 enum reg_type {
28 REG_TYPE_BOOL,
29 REG_TYPE_INT,
30 REG_TYPE_INT8,
31 REG_TYPE_INT16,
32 REG_TYPE_INT32,
33 REG_TYPE_INT64,
34 REG_TYPE_INT128,
35 REG_TYPE_UINT,
36 REG_TYPE_UINT8,
37 REG_TYPE_UINT16,
38 REG_TYPE_UINT32,
39 REG_TYPE_UINT64,
40 REG_TYPE_UINT128,
41 REG_TYPE_CODE_PTR,
42 REG_TYPE_DATA_PTR,
43 REG_TYPE_FLOAT,
44 REG_TYPE_IEEE_SINGLE,
45 REG_TYPE_IEEE_DOUBLE,
46 REG_TYPE_ARCH_DEFINED,
49 struct reg_feature {
50 const char *name;
53 struct reg_data_type_vector {
54 struct reg_data_type *type;
55 uint32_t count;
58 struct reg_data_type_union_field {
59 const char *name;
60 struct reg_data_type *type;
61 struct reg_data_type_union_field *next;
64 struct reg_data_type_union {
65 struct reg_data_type_union_field *fields;
68 struct reg_data_type_bitfield {
69 uint32_t start;
70 uint32_t end;
71 enum reg_type type;
74 struct reg_data_type_struct_field {
75 const char *name;
76 bool use_bitfields;
77 union {
78 struct reg_data_type_bitfield *bitfield;
79 struct reg_data_type *type;
81 struct reg_data_type_struct_field *next;
84 struct reg_data_type_struct {
85 uint32_t size;
86 struct reg_data_type_struct_field *fields;
89 struct reg_data_type_flags_field {
90 const char *name;
91 struct reg_data_type_bitfield *bitfield;
92 struct reg_data_type_flags_field *next;
95 struct reg_data_type_flags {
96 uint32_t size;
97 struct reg_data_type_flags_field *fields;
100 enum reg_data_type_class {
101 REG_TYPE_CLASS_VECTOR,
102 REG_TYPE_CLASS_UNION,
103 REG_TYPE_CLASS_STRUCT,
104 REG_TYPE_CLASS_FLAGS,
107 struct reg_data_type {
108 enum reg_type type;
109 const char *id;
110 enum reg_data_type_class type_class;
111 union {
112 struct reg_data_type_vector *reg_type_vector;
113 struct reg_data_type_union *reg_type_union;
114 struct reg_data_type_struct *reg_type_struct;
115 struct reg_data_type_flags *reg_type_flags;
119 struct reg {
120 /* Canonical name of the register. */
121 const char *name;
122 /* Number that gdb uses to access this register. */
123 uint32_t number;
124 /* TODO. This should probably be const. */
125 struct reg_feature *feature;
126 /* TODO: When true, the caller will save this register before running any algorithm. */
127 bool caller_save;
128 /* Pointer to place where the value is stored, in the format understood by
129 * the binarybuffer.h functions. */
130 void *value;
131 /* The stored value needs to be written to the target. */
132 bool dirty;
133 /* When true, value is valid. */
134 bool valid;
135 /* When false, the register doesn't actually exist in the target. */
136 bool exist;
137 /* Size of the register in bits. */
138 uint32_t size;
139 /* Used for generating XML description of registers. Can be set to NULL for
140 * targets that don't use that. */
141 struct reg_data_type *reg_data_type;
142 /* Used for generating XML description of registers. Can be set to NULL for
143 * targets that don't use that. */
144 const char *group;
145 /* Pointer to architecture-specific info for this register. */
146 void *arch_info;
147 const struct reg_arch_type *type;
150 struct reg_cache {
151 const char *name;
152 struct reg_cache *next;
153 struct reg *reg_list;
154 unsigned num_regs;
157 struct reg_arch_type {
158 int (*get)(struct reg *reg);
159 int (*set)(struct reg *reg, uint8_t *buf);
162 struct reg *register_get_by_name(struct reg_cache *first,
163 const char *name, bool search_all);
164 struct reg_cache **register_get_last_cache_p(struct reg_cache **first);
165 void register_unlink_cache(struct reg_cache **cache_p, const struct reg_cache *cache);
166 void register_cache_invalidate(struct reg_cache *cache);
168 void register_init_dummy(struct reg *reg);
170 #endif /* OPENOCD_TARGET_REGISTER_H */