Remove FSF address from GPL notices
[fw/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 X86_32_COMMON_H
33 #define 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 flush;
221
222         /* pm_regs are for probemode save/restore state */
223         uint32_t pm_regs[NUM_PM_REGS];
224
225         /* working area for fastdata access */
226         struct working_area *fast_data_area;
227
228         int num_hw_bpoints;
229         struct x86_32_dbg_reg *hw_break_list;
230         struct swbp_mem_patch *swbbp_mem_patch_list;
231
232         /* core probemode implementation dependent functions */
233         uint8_t (*get_num_user_regs)(struct target *t);
234         bool (*is_paging_enabled)(struct target *t);
235         int (*disable_paging)(struct target *t);
236         int (*enable_paging)(struct target *t);
237         bool (*sw_bpts_supported)(struct target *t);
238         int (*transaction_status)(struct target *t);
239         int (*submit_instruction)(struct target *t, int num);
240         int (*read_hw_reg)(struct target *t, int reg, uint32_t *regval, uint8_t cache);
241         int (*write_hw_reg)(struct target *t, int reg,
242                                 uint32_t regval, uint8_t cache);
243
244         /* register cache to processor synchronization */
245         int (*read_hw_reg_to_cache)(struct target *target, int num);
246         int (*write_hw_reg_from_cache)(struct target *target, int num);
247 };
248
249 static inline struct x86_32_common *
250 target_to_x86_32(struct target *target)
251 {
252         return target->arch_info;
253 }
254 bool check_not_halted(const struct target *t);
255
256 /* breakpoint defines */
257 #define MAX_DEBUG_REGS          4
258 #define SW_BP_OPCODE            0xf1
259 #define MAX_SW_BPTS             20
260
261 struct x86_32_dbg_reg {
262         int used;
263         uint32_t bp_value;
264 };
265
266 #define DR7_G_ENABLE_SHIFT              1
267 #define DR7_ENABLE_SIZE                 2 /* 2 bits per debug reg */
268 #define DR7_RW_SHIFT                    16
269 #define DR7_LENGTH_SHIFT                18
270 #define DR7_RW_LEN_SIZE                 4
271 #define DR7_BP_EXECUTE                  0 /* 00 - only on instruction execution*/
272 #define DR7_BP_WRITE                    1 /* 01 - only on data writes */
273 /*#define DR7_RW_IORW                   2 UNSUPPORTED 10 - an I/O read and I/O write */
274 #define DR7_BP_READWRITE                3 /* on data read or data write */
275 #define DR7_BP_LENGTH_1                 0 /* 00 - 1 byte length */
276 #define DR7_BP_LENGTH_2                 1 /* 01 - 2 byte length */
277 #define DR7_BP_LENGTH_4                 3 /* 11 - 4 byte length */
278
279 #define DR7_GLOBAL_ENABLE(val, regnum) \
280         (val |= (1 << (DR7_G_ENABLE_SHIFT + (DR7_ENABLE_SIZE * (regnum)))))
281
282 #define DR7_GLOBAL_DISABLE(val, regnum) \
283         (val &= ~(3 << (DR7_ENABLE_SIZE * (regnum))))
284
285 #define DR7_BP_FREE(val, regnum) \
286         ((val & (3 << (DR7_ENABLE_SIZE * (regnum)))) == 0)
287
288 #define DR7_RESET_RWLEN_BITS(val, regnum) \
289         (val &= ~(0x0f << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
290
291 #define DR7_SET_EXE(val, regnum) \
292         (val &= ~(0x0f << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
293
294 #define DR7_SET_WRITE(val, regnum) \
295         (val |= (DR7_BP_WRITE << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
296
297 #define DR7_SET_ACCESS(val, regnum) \
298         (val |= (DR7_BP_READWRITE << (DR7_RW_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
299
300 #define DR7_SET_LENGTH(val, regnum, len) \
301         (val |= (len == 1) ? (DR7_BP_LENGTH_1 << (DR7_LENGTH_SHIFT + DR7_RW_LEN_SIZE * (regnum))) : \
302         (len == 2) ? (DR7_BP_LENGTH_2 << (DR7_LENGTH_SHIFT + DR7_RW_LEN_SIZE * (regnum))) : \
303         (DR7_BP_LENGTH_4 << (DR7_LENGTH_SHIFT + DR7_RW_LEN_SIZE * (regnum))))
304
305 /* public interface */
306 int x86_32_get_gdb_reg_list(struct target *t,
307                         struct reg **reg_list[], int *reg_list_size,
308                         enum target_register_class reg_class);
309 int x86_32_common_init_arch_info(struct target *target,
310                         struct x86_32_common *x86_32);
311 int x86_32_common_mmu(struct target *t, int *enabled);
312 int x86_32_common_virt2phys(struct target *t, uint32_t address, uint32_t *physical);
313 int x86_32_common_read_phys_mem(struct target *t, uint32_t phys_address,
314                         uint32_t size, uint32_t count, uint8_t *buffer);
315 int x86_32_common_write_phys_mem(struct target *t, uint32_t phys_address,
316                         uint32_t size, uint32_t count, const uint8_t *buffer);
317 int x86_32_common_read_memory(struct target *t, uint32_t addr,
318                         uint32_t size, uint32_t count, uint8_t *buf);
319 int x86_32_common_write_memory(struct target *t, uint32_t addr,
320                         uint32_t size, uint32_t count, const uint8_t *buf);
321 int x86_32_common_read_io(struct target *t, uint32_t addr,
322                         uint32_t size, uint8_t *buf);
323 int x86_32_common_write_io(struct target *t, uint32_t addr,
324                         uint32_t size, const uint8_t *buf);
325 int x86_32_common_add_breakpoint(struct target *t, struct breakpoint *bp);
326 int x86_32_common_remove_breakpoint(struct target *t, struct breakpoint *bp);
327 int x86_32_common_add_watchpoint(struct target *t, struct watchpoint *wp);
328 int x86_32_common_remove_watchpoint(struct target *t, struct watchpoint *wp);
329
330 #endif /* X86_32_COMMON_H */