nds32: support multi-target debugging
[openocd.git] / src / target / nds32.h
blobfe5ee00edcafc99ea4c0ddb3b8e6f1ea43eb92a5
1 /***************************************************************************
2 * Copyright (C) 2013 Andes Technology *
3 * Hsiangkai Wang <hkwang@andestech.com> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
19 ***************************************************************************/
21 #ifndef __NDS32_H__
22 #define __NDS32_H__
24 #include <jtag/jtag.h>
25 #include "target.h"
26 #include "target_type.h"
27 #include "register.h"
28 #include "breakpoints.h"
29 #include "nds32_reg.h"
30 #include "nds32_insn.h"
31 #include "nds32_edm.h"
33 #define NDS32_EDM_OPERATION_MAX_NUM 64
35 #define CHECK_RETVAL(action) \
36 do { \
37 int __retval = (action); \
38 if (__retval != ERROR_OK) { \
39 LOG_DEBUG("error while calling \"%s\"", \
40 # action); \
41 return __retval; \
42 } \
43 } while (0)
45 /**
46 * @file
47 * Holds the interface to Andes cores.
50 extern const char *nds32_debug_type_name[11];
52 enum nds32_debug_reason {
53 NDS32_DEBUG_BREAK = 0,
54 NDS32_DEBUG_BREAK_16,
55 NDS32_DEBUG_INST_BREAK,
56 NDS32_DEBUG_DATA_ADDR_WATCHPOINT_PRECISE,
57 NDS32_DEBUG_DATA_VALUE_WATCHPOINT_PRECISE,
58 NDS32_DEBUG_DATA_VALUE_WATCHPOINT_IMPRECISE,
59 NDS32_DEBUG_DEBUG_INTERRUPT,
60 NDS32_DEBUG_HARDWARE_SINGLE_STEP,
61 NDS32_DEBUG_DATA_ADDR_WATCHPOINT_NEXT_PRECISE,
62 NDS32_DEBUG_DATA_VALUE_WATCHPOINT_NEXT_PRECISE,
63 NDS32_DEBUG_LOAD_STORE_GLOBAL_STOP,
66 #define NDS32_STRUCT_STAT_SIZE 60
67 #define NDS32_STRUCT_TIMEVAL_SIZE 8
69 enum nds32_syscall_id {
70 NDS32_SYSCALL_UNDEFINED = 0,
71 NDS32_SYSCALL_EXIT = 1,
72 NDS32_SYSCALL_OPEN = 2,
73 NDS32_SYSCALL_CLOSE = 3,
74 NDS32_SYSCALL_READ = 4,
75 NDS32_SYSCALL_WRITE = 5,
76 NDS32_SYSCALL_LSEEK = 6,
77 NDS32_SYSCALL_UNLINK = 7,
78 NDS32_SYSCALL_RENAME = 3001,
79 NDS32_SYSCALL_FSTAT = 10,
80 NDS32_SYSCALL_STAT = 15,
81 NDS32_SYSCALL_GETTIMEOFDAY = 19,
82 NDS32_SYSCALL_ISATTY = 3002,
83 NDS32_SYSCALL_SYSTEM = 3003,
84 NDS32_SYSCALL_ERRNO = 6001,
87 #define NDS32_COMMON_MAGIC (int)0xADE5ADE5
89 struct nds32_edm {
91 /** EDM_CFG.VER, indicate the EDM version */
92 int version;
94 /** The number of hardware breakpoints */
95 int breakpoint_num;
97 /** EDM_CFG.DALM, indicate if direct local memory access
98 * feature is supported or not */
99 bool direct_access_local_memory;
101 /** Support ACC_CTL register */
102 bool access_control;
104 /** */
105 bool support_max_stop;
108 struct nds32_cache {
110 /** enable cache or not */
111 bool enable;
113 /** cache sets per way */
114 int set;
116 /** cache ways */
117 int way;
119 /** cache line size */
120 int line_size;
122 /** cache locking support */
123 bool lock_support;
126 struct nds32_memory {
128 /** ICache */
129 struct nds32_cache icache;
131 /** DCache */
132 struct nds32_cache dcache;
134 /** On-chip instruction local memory base */
135 int ilm_base;
137 /** On-chip instruction local memory size */
138 int ilm_size;
140 /** ILM base register alignment version */
141 int ilm_align_ver;
143 /** DLM is enabled or not */
144 bool ilm_enable;
146 /** DLM start address */
147 int ilm_start;
149 /** DLM end address */
150 int ilm_end;
152 /** On-chip data local memory base */
153 int dlm_base;
155 /** On-chip data local memory size */
156 int dlm_size;
158 /** DLM base register alignment version */
159 int dlm_align_ver;
161 /** DLM is enabled or not */
162 bool dlm_enable;
164 /** DLM start address */
165 int dlm_start;
167 /** DLM end address */
168 int dlm_end;
170 /** Memory access method */
171 enum nds_memory_access access_channel;
173 /** Memory access mode */
174 enum nds_memory_select mode;
176 /** Address translation */
177 bool address_translation;
180 struct nds32_cpu_version {
181 bool performance_extension;
182 bool _16bit_extension;
183 bool performance_extension_2;
184 bool cop_fpu_extension;
185 bool string_extension;
187 int revision;
188 int cpu_id_family;
189 int cpu_id_version;
192 struct nds32_mmu_config {
193 int memory_protection;
194 int memory_protection_version;
195 bool fully_associative_tlb;
196 int tlb_size;
197 int tlb_ways;
198 int tlb_sets;
199 bool _8k_page_support;
200 int extra_page_size_support;
201 bool tlb_lock;
202 bool hardware_page_table_walker;
203 bool default_endian;
204 int partition_num;
205 bool invisible_tlb;
206 bool vlpt;
207 bool ntme;
208 bool drde;
209 int default_min_page_size;
210 bool multiple_page_size_in_use;
213 struct nds32_misc_config {
214 bool edm;
215 bool local_memory_dma;
216 bool performance_monitor;
217 bool high_speed_memory_port;
218 bool debug_tracer;
219 bool div_instruction;
220 bool mac_instruction;
221 int audio_isa;
222 bool L2_cache;
223 bool reduce_register;
224 bool addr_24;
225 bool interruption_level;
226 int baseline_instruction;
227 bool no_dx_register;
228 bool implement_dependant_register;
229 bool implement_dependant_sr_encoding;
230 bool ifc;
231 bool mcu;
232 bool ex9;
233 int shadow;
237 * Represents a generic Andes core.
239 struct nds32 {
240 int common_magic;
241 struct reg_cache *core_cache;
243 /** Handle for the debug module. */
244 struct nds32_edm edm;
246 /** Memory information */
247 struct nds32_memory memory;
249 /** cpu version */
250 struct nds32_cpu_version cpu_version;
252 /** MMU configuration */
253 struct nds32_mmu_config mmu_config;
255 /** Misc configuration */
256 struct nds32_misc_config misc_config;
258 /** Retrieve all core registers, for display. */
259 int (*full_context)(struct nds32 *nds32);
261 /** Register mappings */
262 int (*register_map)(struct nds32 *nds32, int reg_no);
264 /** Get debug exception virtual address */
265 int (*get_debug_reason)(struct nds32 *nds32, uint32_t *reason);
267 /** Restore target registers may be modified in debug state */
268 int (*leave_debug_state)(struct nds32 *nds32, bool enable_watchpoint);
270 /** Backup target registers may be modified in debug state */
271 int (*enter_debug_state)(struct nds32 *nds32, bool enable_watchpoint);
273 /** Get address hit watchpoint */
274 int (*get_watched_address)(struct nds32 *nds32, uint32_t *address, uint32_t reason);
276 /** maximum interrupt level */
277 uint32_t max_interrupt_level;
279 /** current interrupt level */
280 uint32_t current_interrupt_level;
282 uint32_t watched_address;
284 /** Flag reporting whether virtual hosting is active. */
285 bool virtual_hosting;
287 /** Flag reporting whether continue/step hits syscall or not */
288 bool hit_syscall;
290 /** Value to be returned by virtual hosting SYS_ERRNO request. */
291 int virtual_hosting_errno;
293 /** Flag reporting whether syscall is aborted */
294 bool virtual_hosting_ctrl_c;
296 /** Record syscall ID for other operations to do special processing for target */
297 int active_syscall_id;
299 struct breakpoint syscall_break;
301 /** Flag reporting whether global stop is active. */
302 bool global_stop;
304 /** Flag reporting whether to use soft-reset-halt or not as issuing reset-halt. */
305 bool soft_reset_halt;
307 /** reset-halt as target examine */
308 bool reset_halt_as_examine;
310 /** backup/restore target EDM_CTL value. As debugging target debug
311 * handler, it should be true. */
312 bool keep_target_edm_ctl;
314 /* Value of $EDM_CTL before target enters debug mode */
315 uint32_t backup_edm_ctl;
317 /** always use word-aligned address to access memory */
318 bool word_access_mem;
320 /** EDM passcode for debugging secure MCU */
321 char *edm_passcode;
323 /** current privilege_level if using secure MCU. value 0 is the highest level. */
324 int privilege_level;
326 /** Period to wait after SRST. */
327 uint32_t boot_time;
329 /** Flag to indicate HSS steps into ISR or not */
330 bool step_isr_enable;
332 /** Flag to indicate register table is ready or not */
333 bool init_arch_info_after_halted;
335 /** Flag to indicate audio-extension is enabled or not */
336 bool audio_enable;
338 /** Flag to indicate fpu-extension is enabled or not */
339 bool fpu_enable;
341 /* Andes Core has mixed endian model. Instruction is always big-endian.
342 * Data may be big or little endian. Device registers may have different
343 * endian from data and instruction. */
344 /** Endian of data memory */
345 enum target_endianness data_endian;
347 /** Endian of device registers */
348 enum target_endianness device_reg_endian;
350 /** Flag to indicate if auto convert software breakpoints to
351 * hardware breakpoints or not in ROM */
352 bool auto_convert_hw_bp;
354 /* Flag to indicate the target is attached by debugger or not */
355 bool attached;
357 /** Backpointer to the target. */
358 struct target *target;
360 void *arch_info;
363 struct nds32_reg {
364 int32_t num;
365 uint32_t value;
366 uint64_t value_64;
367 struct target *target;
368 struct nds32 *nds32;
369 bool enable;
372 struct nds32_edm_operation {
373 uint32_t reg_no;
374 uint32_t value;
377 extern int nds32_config(struct nds32 *nds32);
378 extern int nds32_init_arch_info(struct target *target, struct nds32 *nds32);
379 extern int nds32_full_context(struct nds32 *nds32);
380 extern int nds32_arch_state(struct target *target);
381 extern int nds32_add_software_breakpoint(struct target *target,
382 struct breakpoint *breakpoint);
383 extern int nds32_remove_software_breakpoint(struct target *target,
384 struct breakpoint *breakpoint);
386 extern int nds32_get_gdb_reg_list(struct target *target,
387 struct reg **reg_list[], int *reg_list_size,
388 enum target_register_class reg_class);
390 extern int nds32_write_buffer(struct target *target, uint32_t address,
391 uint32_t size, const uint8_t *buffer);
392 extern int nds32_read_buffer(struct target *target, uint32_t address,
393 uint32_t size, uint8_t *buffer);
394 extern int nds32_bulk_write_memory(struct target *target,
395 uint32_t address, uint32_t count, const uint8_t *buffer);
396 extern int nds32_read_memory(struct target *target, uint32_t address,
397 uint32_t size, uint32_t count, uint8_t *buffer);
398 extern int nds32_write_memory(struct target *target, uint32_t address,
399 uint32_t size, uint32_t count, const uint8_t *buffer);
401 extern int nds32_init_register_table(struct nds32 *nds32);
402 extern int nds32_init_memory_info(struct nds32 *nds32);
403 extern int nds32_restore_context(struct target *target);
404 extern int nds32_get_mapped_reg(struct nds32 *nds32, unsigned regnum, uint32_t *value);
405 extern int nds32_set_mapped_reg(struct nds32 *nds32, unsigned regnum, uint32_t value);
407 extern int nds32_edm_config(struct nds32 *nds32);
408 extern int nds32_cache_sync(struct target *target, uint32_t address, uint32_t length);
409 extern int nds32_mmu(struct target *target, int *enabled);
410 extern int nds32_virtual_to_physical(struct target *target, uint32_t address,
411 uint32_t *physical);
412 extern int nds32_read_phys_memory(struct target *target, uint32_t address,
413 uint32_t size, uint32_t count, uint8_t *buffer);
414 extern int nds32_write_phys_memory(struct target *target, uint32_t address,
415 uint32_t size, uint32_t count, const uint8_t *buffer);
416 extern uint32_t nds32_nextpc(struct nds32 *nds32, int current, uint32_t address);
417 extern int nds32_examine_debug_reason(struct nds32 *nds32);
418 extern int nds32_step(struct target *target, int current,
419 uint32_t address, int handle_breakpoints);
420 extern int nds32_target_state(struct nds32 *nds32, enum target_state *state);
421 extern int nds32_halt(struct target *target);
422 extern int nds32_poll(struct target *target);
423 extern int nds32_resume(struct target *target, int current,
424 uint32_t address, int handle_breakpoints, int debug_execution);
425 extern int nds32_assert_reset(struct target *target);
426 extern int nds32_init(struct nds32 *nds32);
427 extern int nds32_get_gdb_fileio_info(struct target *target, struct gdb_fileio_info *fileio_info);
428 extern int nds32_gdb_fileio_write_memory(struct nds32 *nds32, uint32_t address,
429 uint32_t size, const uint8_t *buffer);
430 extern int nds32_gdb_fileio_end(struct target *target, int retcode, int fileio_errno, bool ctrl_c);
431 extern int nds32_reset_halt(struct nds32 *nds32);
432 extern int nds32_login(struct nds32 *nds32);
433 extern int nds32_profiling(struct target *target, uint32_t *samples,
434 uint32_t max_num_samples, uint32_t *num_samples, uint32_t seconds);
436 /** Convert target handle to generic Andes target state handle. */
437 static inline struct nds32 *target_to_nds32(struct target *target)
439 assert(target != NULL);
440 return target->arch_info;
443 /** */
444 static inline struct aice_port_s *target_to_aice(struct target *target)
446 assert(target != NULL);
447 return target->tap->priv;
450 static inline bool is_nds32(struct nds32 *nds32)
452 assert(nds32 != NULL);
453 return nds32->common_magic == NDS32_COMMON_MAGIC;
456 static inline bool nds32_reach_max_interrupt_level(struct nds32 *nds32)
458 assert(nds32 != NULL);
459 return nds32->max_interrupt_level == nds32->current_interrupt_level;
462 #endif /* __NDS32_H__ */