quark: add Intel Quark mcu D2000 support
[openocd.git] / src / target / x86_32_common.h
1 /*
2 * Copyright(c) 2013-2016 Intel Corporation.
3 *
4 * Adrian Burns (adrian.burns@intel.com)
5 * Thomas Faust (thomas.faust@intel.com)
6 * Ivan De Cesaris (ivan.de.cesaris@intel.com)
7 * Julien Carreno (julien.carreno@intel.com)
8 * Jeffrey Maxwell (jeffrey.r.maxwell@intel.com)
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 * Contact Information:
25 * Intel Corporation
26 */
27
28 /*
29 * @file
30 * This is the interface to the x86 32 bit memory and breakpoint operations.
31 */
32
33 #ifndef X86_32_COMMON_H
34 #define X86_32_COMMON_H
35
36 #include <jtag/jtag.h>
37 #include <helper/command.h>
38 #include <helper/types.h>
39
40 extern const struct command_registration x86_32_command_handlers[];
41
42 /* for memory access */
43 #define BYTE 1
44 #define WORD 2
45 #define DWORD 4
46
47 #define EFLAGS_TF ((uint32_t)0x00000100) /* Trap Flag */
48 #define EFLAGS_IF ((uint32_t)0x00000200) /* Interrupt Flag */
49 #define EFLAGS_RF ((uint32_t)0x00010000) /* Resume Flag */
50 #define EFLAGS_VM86 ((uint32_t)0x00020000) /* Virtual 8086 Mode */
51
52 #define CSAR_DPL ((uint32_t)0x00006000)
53 #define CSAR_D ((uint32_t)0x00400000)
54 #define SSAR_DPL ((uint32_t)0x00006000)
55
56 #define CR0_PE ((uint32_t)0x00000001) /* Protected Mode Enable */
57 #define CR0_NW ((uint32_t)0x20000000) /* Non Write-Through */
58 #define CR0_CD ((uint32_t)0x40000000) /* Cache Disable */
59 #define CR0_PG ((uint32_t)0x80000000) /* Paging Enable */
60
61 /* TODO - move back to PM specific file */
62 #define PM_DR6 ((uint32_t)0xFFFF0FF0)
63
64 #define DR6_BRKDETECT_0 ((uint32_t)0x00000001) /* B0 through B3 */
65 #define DR6_BRKDETECT_1 ((uint32_t)0x00000002) /* breakpoint condition detected */
66 #define DR6_BRKDETECT_2 ((uint32_t)0x00000004)
67 #define DR6_BRKDETECT_3 ((uint32_t)0x00000008)
68
69 enum {
70 /* general purpose registers */
71 EAX = 0,
72 ECX,
73 EDX,
74 EBX,
75 ESP,
76 EBP,
77 ESI,
78 EDI,
79 /* instruction pointer & flags */
80 EIP,
81 EFLAGS,
82
83 /* segment registers */
84 CS,
85 SS,
86 DS,
87 ES,
88 FS,
89 GS,
90
91 /* floating point unit registers */
92 ST0,
93 ST1,
94 ST2,
95 ST3,
96 ST4,
97 ST5,
98 ST6,
99 ST7,
100 FCTRL,
101 FSTAT,
102 FTAG,
103 FISEG,
104 FIOFF,
105 FOSEG,
106 FOOFF,
107 FOP,
108
109 /* control registers */
110 CR0,
111 CR2,
112 CR3,
113 CR4,
114
115 /* debug registers */
116 DR0,
117 DR1,
118 DR2,
119 DR3,
120 DR6,
121 DR7,
122
123 /* descriptor tables */
124 IDTB,
125 IDTL,
126 IDTAR,
127 GDTB,
128 GDTL,
129 GDTAR,
130 TR,
131 LDTR,
132 LDTB,
133 LDTL,
134 LDTAR,
135
136 /* segment registers */
137 CSB,
138 CSL,
139 CSAR,
140 DSB,
141 DSL,
142 DSAR,
143 ESB,
144 ESL,
145 ESAR,
146 FSB,
147 FSL,
148 FSAR,
149 GSB,
150 GSL,
151 GSAR,
152 SSB,
153 SSL,
154 SSAR,
155 TSSB,
156 TSSL,
157 TSSAR,
158
159 /* PM control reg */
160 PMCR,
161 };
162
163 #define X86_32_COMMON_MAGIC 0x86328632
164
165 enum {
166 /* memory read/write */
167 MEMRDB32 = 0,
168 MEMRDB16,
169 MEMRDH32,
170 MEMRDH16,
171 MEMRDW32,
172 MEMRDW16,
173 MEMWRB32,
174 MEMWRB16,
175 MEMWRH32,
176 MEMWRH16,
177 MEMWRW32,
178 MEMWRW16,
179 /* IO read/write */
180 IORDB32,
181 IORDB16,
182 IORDH32,
183 IORDH16,
184 IORDW32,
185 IORDW16,
186 IOWRB32,
187 IOWRB16,
188 IOWRH32,
189 IOWRH16,
190 IOWRW32,
191 IOWRW16,
192 /* lakemont1 core shadow ram access opcodes */
193 SRAMACCESS,
194 SRAM2PDR,
195 PDR2SRAM,
196 WBINVD,
197 };
198
199 enum x86_core_type {
200 LMT1,
201 LMT3_5
202 };
203
204 struct swbp_mem_patch {
205 uint8_t orig_byte;
206 uint32_t swbp_unique_id;
207 uint32_t physaddr;
208 struct swbp_mem_patch *next;
209 };
210
211 /* TODO - probemode specific - consider removing */
212 #define NUM_PM_REGS 18 /* regs used in save/restore */
213
214 struct x86_32_common {
215 uint32_t common_magic;
216 void *arch_info;
217 enum x86_core_type core_type;
218 struct reg_cache *cache;
219 struct jtag_tap *curr_tap;
220 uint32_t stored_pc;
221 int flush;
222
223 /* pm_regs are for probemode save/restore state */
224 uint32_t pm_regs[NUM_PM_REGS];
225
226 /* working area for fastdata access */
227 struct working_area *fast_data_area;
228
229 int num_hw_bpoints;
230 struct x86_32_dbg_reg *hw_break_list;
231 struct swbp_mem_patch *swbbp_mem_patch_list;
232
233 /* core probemode implementation dependent functions */
234 uint8_t (*get_num_user_regs)(struct target *t);
235 bool (*is_paging_enabled)(struct target *t);
236 int (*disable_paging)(struct target *t);
237 int (*enable_paging)(struct target *t);
238 bool (*sw_bpts_supported)(struct target *t);
239 int (*transaction_status)(struct target *t);
240 int (*submit_instruction)(struct target *t, int num);
241 int (*read_hw_reg)(struct target *t, int reg, uint32_t *regval, uint8_t cache);
242 int (*write_hw_reg)(struct target *t, int reg,
243 uint32_t regval, uint8_t cache);
244
245 /* register cache to processor synchronization */
246 int (*read_hw_reg_to_cache)(struct target *target, int num);
247 int (*write_hw_reg_from_cache)(struct target *target, int num);
248 };
249
250 static inline struct x86_32_common *
251 target_to_x86_32(struct target *target)
252 {
253 return target->arch_info;
254 }
255 bool check_not_halted(const struct target *t);
256
257 /* breakpoint defines */
258 #define MAX_DEBUG_REGS 4
259 #define SW_BP_OPCODE 0xf1
260 #define MAX_SW_BPTS 20
261
262 struct x86_32_dbg_reg {
263 int used;
264 uint32_t bp_value;
265 };
266
267 #define DR7_G_ENABLE_SHIFT 1
268 #define DR7_ENABLE_SIZE 2 /* 2 bits per debug reg */
269 #define DR7_RW_SHIFT 16
270 #define DR7_LENGTH_SHIFT 18
271 #define DR7_RW_LEN_SIZE 4
272 #define DR7_BP_EXECUTE 0 /* 00 - only on instruction execution*/
273 #define DR7_BP_WRITE 1 /* 01 - only on data writes */
274 /*#define DR7_RW_IORW 2 UNSUPPORTED 10 - an I/O read and I/O write */
275 #define DR7_BP_READWRITE 3 /* on data read or data write */
276 #define DR7_BP_LENGTH_1 0 /* 00 - 1 byte length */
277 #define DR7_BP_LENGTH_2 1 /* 01 - 2 byte length */
278 #define DR7_BP_LENGTH_4 3 /* 11 - 4 byte length */
279
280 #define DR7_GLOBAL_ENABLE(val, regnum) \
281 (val |= (1 << (DR7_G_ENABLE_SHIFT + (DR7_ENABLE_SIZE * (regnum)))))
282
283 #define DR7_GLOBAL_DISABLE(val, regnum) \
284 (val &= ~(3 << (DR7_ENABLE_SIZE * (regnum))))
285
286 #define DR7_BP_FREE(val, regnum) \
287 ((val & (3 << (DR7_ENABLE_SIZE * (regnum)))) == 0)
288
289 #define DR7_RESET_RWLEN_BITS(val, regnum) \
290 (val &= ~(0x0f << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
291
292 #define DR7_SET_EXE(val, regnum) \
293 (val &= ~(0x0f << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
294
295 #define DR7_SET_WRITE(val, regnum) \
296 (val |= (DR7_BP_WRITE << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
297
298 #define DR7_SET_ACCESS(val, regnum) \
299 (val |= (DR7_BP_READWRITE << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
300
301 #define DR7_SET_LENGTH(val, regnum, len) \
302 (val |= (len == 1) ? (DR7_BP_LENGTH_1 << (DR7_LENGTH_SHIFT + DR7_RW_LEN_SIZE * (regnum))) : \
303 (len == 2) ? (DR7_BP_LENGTH_2 << (DR7_LENGTH_SHIFT + DR7_RW_LEN_SIZE * (regnum))) : \
304 (DR7_BP_LENGTH_4 << (DR7_LENGTH_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
305
306 /* public interface */
307 int x86_32_get_gdb_reg_list(struct target *t,
308 struct reg **reg_list[], int *reg_list_size,
309 enum target_register_class reg_class);
310 int x86_32_common_init_arch_info(struct target *target,
311 struct x86_32_common *x86_32);
312 int x86_32_common_mmu(struct target *t, int *enabled);
313 int x86_32_common_virt2phys(struct target *t, uint32_t address, uint32_t *physical);
314 int x86_32_common_read_phys_mem(struct target *t, uint32_t phys_address,
315 uint32_t size, uint32_t count, uint8_t *buffer);
316 int x86_32_common_write_phys_mem(struct target *t, uint32_t phys_address,
317 uint32_t size, uint32_t count, const uint8_t *buffer);
318 int x86_32_common_read_memory(struct target *t, uint32_t addr,
319 uint32_t size, uint32_t count, uint8_t *buf);
320 int x86_32_common_write_memory(struct target *t, uint32_t addr,
321 uint32_t size, uint32_t count, const uint8_t *buf);
322 int x86_32_common_read_io(struct target *t, uint32_t addr,
323 uint32_t size, uint8_t *buf);
324 int x86_32_common_write_io(struct target *t, uint32_t addr,
325 uint32_t size, const uint8_t *buf);
326 int x86_32_common_add_breakpoint(struct target *t, struct breakpoint *bp);
327 int x86_32_common_remove_breakpoint(struct target *t, struct breakpoint *bp);
328 int x86_32_common_add_watchpoint(struct target *t, struct watchpoint *wp);
329 int x86_32_common_remove_watchpoint(struct target *t, struct watchpoint *wp);
330
331 #endif /* X86_32_COMMON_H */

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)