]> git.sur5r.net Git - openocd/blob - src/target/x86_32_common.h
target: fix 'bp' command help message
[openocd] / 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, see <http://www.gnu.org/licenses/>.
22  *
23  * Contact Information:
24  * Intel Corporation
25  */
26
27 /*
28  * @file
29  * This is the interface to the x86 32 bit memory and breakpoint operations.
30  */
31
32 #ifndef OPENOCD_TARGET_X86_32_COMMON_H
33 #define OPENOCD_TARGET_X86_32_COMMON_H
34
35 #include <jtag/jtag.h>
36 #include <helper/command.h>
37 #include <helper/types.h>
38
39 extern const struct command_registration x86_32_command_handlers[];
40
41 /* for memory access */
42 #define BYTE                    1
43 #define WORD                    2
44 #define DWORD                   4
45
46 #define EFLAGS_TF               ((uint32_t)0x00000100) /* Trap Flag */
47 #define EFLAGS_IF               ((uint32_t)0x00000200) /* Interrupt Flag */
48 #define EFLAGS_RF               ((uint32_t)0x00010000) /* Resume Flag */
49 #define EFLAGS_VM86             ((uint32_t)0x00020000) /* Virtual 8086 Mode */
50
51 #define CSAR_DPL                ((uint32_t)0x00006000)
52 #define CSAR_D                  ((uint32_t)0x00400000)
53 #define SSAR_DPL                ((uint32_t)0x00006000)
54
55 #define CR0_PE                  ((uint32_t)0x00000001) /* Protected Mode Enable */
56 #define CR0_NW                  ((uint32_t)0x20000000) /* Non Write-Through */
57 #define CR0_CD                  ((uint32_t)0x40000000) /* Cache Disable */
58 #define CR0_PG                  ((uint32_t)0x80000000) /* Paging Enable */
59
60 /* TODO - move back to PM specific file */
61 #define PM_DR6                  ((uint32_t)0xFFFF0FF0)
62
63 #define DR6_BRKDETECT_0         ((uint32_t)0x00000001) /* B0 through B3 */
64 #define DR6_BRKDETECT_1         ((uint32_t)0x00000002) /* breakpoint condition detected */
65 #define DR6_BRKDETECT_2         ((uint32_t)0x00000004)
66 #define DR6_BRKDETECT_3         ((uint32_t)0x00000008)
67
68 enum {
69         /* general purpose registers */
70         EAX = 0,
71         ECX,
72         EDX,
73         EBX,
74         ESP,
75         EBP,
76         ESI,
77         EDI,
78         /* instruction pointer & flags */
79         EIP,
80         EFLAGS,
81
82         /* segment registers */
83         CS,
84         SS,
85         DS,
86         ES,
87         FS,
88         GS,
89
90         /* floating point unit registers */
91         ST0,
92         ST1,
93         ST2,
94         ST3,
95         ST4,
96         ST5,
97         ST6,
98         ST7,
99         FCTRL,
100         FSTAT,
101         FTAG,
102         FISEG,
103         FIOFF,
104         FOSEG,
105         FOOFF,
106         FOP,
107
108         /* control registers */
109         CR0,
110         CR2,
111         CR3,
112         CR4,
113
114         /* debug registers */
115         DR0,
116         DR1,
117         DR2,
118         DR3,
119         DR6,
120         DR7,
121
122         /* descriptor tables */
123         IDTB,
124         IDTL,
125         IDTAR,
126         GDTB,
127         GDTL,
128         GDTAR,
129         TR,
130         LDTR,
131         LDTB,
132         LDTL,
133         LDTAR,
134
135         /* segment registers */
136         CSB,
137         CSL,
138         CSAR,
139         DSB,
140         DSL,
141         DSAR,
142         ESB,
143         ESL,
144         ESAR,
145         FSB,
146         FSL,
147         FSAR,
148         GSB,
149         GSL,
150         GSAR,
151         SSB,
152         SSL,
153         SSAR,
154         TSSB,
155         TSSL,
156         TSSAR,
157
158         /* PM control reg */
159         PMCR,
160 };
161
162 #define X86_32_COMMON_MAGIC 0x86328632
163
164 enum {
165         /* memory read/write */
166         MEMRDB32 = 0,
167         MEMRDB16,
168         MEMRDH32,
169         MEMRDH16,
170         MEMRDW32,
171         MEMRDW16,
172         MEMWRB32,
173         MEMWRB16,
174         MEMWRH32,
175         MEMWRH16,
176         MEMWRW32,
177         MEMWRW16,
178         /* IO read/write */
179         IORDB32,
180         IORDB16,
181         IORDH32,
182         IORDH16,
183         IORDW32,
184         IORDW16,
185         IOWRB32,
186         IOWRB16,
187         IOWRH32,
188         IOWRH16,
189         IOWRW32,
190         IOWRW16,
191         /* lakemont1 core shadow ram access opcodes */
192         SRAMACCESS,
193         SRAM2PDR,
194         PDR2SRAM,
195         WBINVD,
196 };
197
198 enum x86_core_type {
199         LMT1,
200         LMT3_5
201 };
202
203 struct swbp_mem_patch {
204         uint8_t orig_byte;
205         uint32_t swbp_unique_id;
206         uint32_t physaddr;
207         struct swbp_mem_patch *next;
208 };
209
210 /* TODO - probemode specific - consider removing */
211 #define NUM_PM_REGS             18 /* regs used in save/restore */
212
213 struct x86_32_common {
214         uint32_t common_magic;
215         void *arch_info;
216         enum x86_core_type core_type;
217         struct reg_cache *cache;
218         struct jtag_tap *curr_tap;
219         uint32_t stored_pc;
220         int forced_halt_for_reset;
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, target_addr_t address, target_addr_t *physical);
314 int x86_32_common_read_phys_mem(struct target *t, target_addr_t phys_address,
315                         uint32_t size, uint32_t count, uint8_t *buffer);
316 int x86_32_common_write_phys_mem(struct target *t, target_addr_t phys_address,
317                         uint32_t size, uint32_t count, const uint8_t *buffer);
318 int x86_32_common_read_memory(struct target *t, target_addr_t addr,
319                         uint32_t size, uint32_t count, uint8_t *buf);
320 int x86_32_common_write_memory(struct target *t, target_addr_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 void x86_32_common_reset_breakpoints_watchpoints(struct target *t);
331
332 #endif /* OPENOCD_TARGET_X86_32_COMMON_H */