OpenOCD
fa526.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 
3 /***************************************************************************
4  * Copyright (C) 2009 by Paulius Zaleckas *
5  * paulius.zaleckas@gmail.com *
6  ***************************************************************************/
7 
8 /*
9  * FA526 is very similar to ARM920T with following differences:
10  *
11  * - execution pipeline is 6 steps
12  * - Unified TLB
13  * - has Branch Target Buffer
14  * - does not support reading of I/D cache contents
15  */
16 
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20 
21 #include "arm920t.h"
22 #include "target_type.h"
23 #include "arm_opcodes.h"
24 
25 static void fa526_change_to_arm(struct target *target, uint32_t *r0, uint32_t *pc)
26 {
27  LOG_ERROR("%s: there is no Thumb state on FA526", __func__);
28 }
29 
30 static void fa526_read_core_regs(struct target *target,
31  uint32_t mask, uint32_t *core_regs[16])
32 {
33  int i;
34  struct arm7_9_common *arm7_9 = target_to_arm7_9(target);
35  struct arm_jtag *jtag_info = &arm7_9->jtag_info;
36 
37  /* STMIA r0-15, [r0] at debug speed
38  * register values will start to appear on 4th DCLK
39  */
40  arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
41 
42  /* fetch NOP, STM in DECODE stage */
43  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
44  /* fetch NOP, STM in SHIFT stage */
45  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
46  /* fetch NOP, STM in EXECUTE stage (1st cycle) */
47  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
48 
49  for (i = 0; i <= 15; i++) {
50  if (mask & (1 << i))
51  /* nothing fetched, STM in MEMORY (i'th cycle) */
52  arm9tdmi_clock_data_in(jtag_info, core_regs[i]);
53  }
54 }
55 
57  uint32_t mask, void *buffer, int size)
58 {
59  int i;
60  struct arm7_9_common *arm7_9 = target_to_arm7_9(target);
61  struct arm_jtag *jtag_info = &arm7_9->jtag_info;
62  int be = (target->endianness == TARGET_BIG_ENDIAN) ? 1 : 0;
63  uint32_t *buf_u32 = buffer;
64  uint16_t *buf_u16 = buffer;
65  uint8_t *buf_u8 = buffer;
66 
67  /* STMIA r0-15, [r0] at debug speed
68  * register values will start to appear on 4th DCLK
69  */
70  arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
71 
72  /* fetch NOP, STM in DECODE stage */
73  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
74  /* fetch NOP, STM in SHIFT stage */
75  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
76  /* fetch NOP, STM in EXECUTE stage (1st cycle) */
77  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
78 
79  for (i = 0; i <= 15; i++) {
80  if (mask & (1 << i))
81  /* nothing fetched, STM in MEMORY (i'th cycle) */
82  switch (size) {
83  case 4:
84  arm9tdmi_clock_data_in_endianness(jtag_info, buf_u32++, 4, be);
85  break;
86  case 2:
87  arm9tdmi_clock_data_in_endianness(jtag_info, buf_u16++, 2, be);
88  break;
89  case 1:
90  arm9tdmi_clock_data_in_endianness(jtag_info, buf_u8++, 1, be);
91  break;
92  }
93  }
94 }
95 
96 static void fa526_read_xpsr(struct target *target, uint32_t *xpsr, int spsr)
97 {
98  struct arm7_9_common *arm7_9 = target_to_arm7_9(target);
99  struct arm_jtag *jtag_info = &arm7_9->jtag_info;
100 
101  /* MRS r0, cpsr */
102  arm9tdmi_clock_out(jtag_info, ARMV4_5_MRS(0, spsr & 1), 0, NULL, 0);
103  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
104  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
105  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
106  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
107  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
108 
109  /* STR r0, [r15] */
110  arm9tdmi_clock_out(jtag_info, ARMV4_5_STR(0, 15), 0, NULL, 0);
111  /* fetch NOP, STR in DECODE stage */
112  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
113  /* fetch NOP, STR in SHIFT stage */
114  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
115  /* fetch NOP, STR in EXECUTE stage (1st cycle) */
116  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
117  /* nothing fetched, STR in MEMORY */
118  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, xpsr, 0);
119 }
120 
121 static void fa526_write_xpsr(struct target *target, uint32_t xpsr, int spsr)
122 {
123  struct arm7_9_common *arm7_9 = target_to_arm7_9(target);
124  struct arm_jtag *jtag_info = &arm7_9->jtag_info;
125 
126  LOG_DEBUG("xpsr: %8.8" PRIx32 ", spsr: %i", xpsr, spsr);
127 
128  /* MSR1 fetched */
129  arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM(xpsr & 0xff, 0, 1, spsr), 0, NULL, 0);
130  /* MSR2 fetched, MSR1 in DECODE */
131  arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff00) >> 8, 0xc, 2, spsr), 0, NULL, 0);
132  /* MSR3 fetched, MSR1 in SHIFT, MSR2 in DECODE */
133  arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff0000) >> 16, 0x8, 4, spsr), 0, NULL, 0);
134  /* MSR4 fetched, MSR1 in EXECUTE (1), MSR2 in SHIFT, MSR3 in DECODE */
135  arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff000000) >> 24, 0x4, 8, spsr), 0, NULL, 0);
136  /* nothing fetched, MSR1 in EXECUTE (2) */
137  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
138  /* nothing fetched, MSR1 in EXECUTE (3) */
139  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
140  /* nothing fetched, MSR2 in EXECUTE (1), MSR3 in SHIFT, MSR4 in DECODE */
141  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
142  /* nothing fetched, MSR2 in EXECUTE (2) */
143  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
144  /* nothing fetched, MSR2 in EXECUTE (3) */
145  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
146  /* NOP fetched, MSR3 in EXECUTE (1), MSR4 in SHIFT */
147  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
148  /* nothing fetched, MSR3 in EXECUTE (2) */
149  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
150  /* nothing fetched, MSR3 in EXECUTE (3) */
151  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
152  /* NOP fetched, MSR4 in EXECUTE (1) */
153  /* last MSR writes flags, which takes only one cycle */
154  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
155 }
156 
157 static void fa526_write_xpsr_im8(struct target *target,
158  uint8_t xpsr_im, int rot, int spsr)
159 {
160  struct arm7_9_common *arm7_9 = target_to_arm7_9(target);
161  struct arm_jtag *jtag_info = &arm7_9->jtag_info;
162 
163  LOG_DEBUG("xpsr_im: %2.2x, rot: %i, spsr: %i", xpsr_im, rot, spsr);
164 
165  /* MSR fetched */
166  arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM(xpsr_im, rot, 1, spsr), 0, NULL, 0);
167  /* NOP fetched, MSR in DECODE */
168  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
169  /* NOP fetched, MSR in SHIFT */
170  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
171  /* NOP fetched, MSR in EXECUTE (1) */
172  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
173 
174  /* rot == 4 writes flags, which takes only one cycle */
175  if (rot != 4) {
176  /* nothing fetched, MSR in EXECUTE (2) */
177  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
178  /* nothing fetched, MSR in EXECUTE (3) */
179  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
180  }
181 }
182 
183 static void fa526_write_core_regs(struct target *target,
184  uint32_t mask, uint32_t core_regs[16])
185 {
186  int i;
187  struct arm7_9_common *arm7_9 = target_to_arm7_9(target);
188  struct arm_jtag *jtag_info = &arm7_9->jtag_info;
189 
190  /* LDMIA r0-15, [r0] at debug speed
191  * register values will start to appear on 4th DCLK
192  */
193  arm9tdmi_clock_out(jtag_info, ARMV4_5_LDMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
194 
195  /* fetch NOP, LDM in DECODE stage */
196  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
197  /* fetch NOP, LDM in SHIFT stage */
198  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
199  /* fetch NOP, LDM in EXECUTE stage (1st cycle) */
200  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
201 
202  for (i = 0; i <= 15; i++) {
203  if (mask & (1 << i))
204  /* nothing fetched, LDM still in EXECUTE (1 + i cycle) */
205  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, core_regs[i], NULL, 0);
206  }
207  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
208 }
209 
210 static void fa526_write_pc(struct target *target, uint32_t pc)
211 {
212  struct arm7_9_common *arm7_9 = target_to_arm7_9(target);
213  struct arm_jtag *jtag_info = &arm7_9->jtag_info;
214 
215  /* LDMIA r0-15, [r0] at debug speed
216  * register values will start to appear on 4th DCLK
217  */
218  arm9tdmi_clock_out(jtag_info, ARMV4_5_LDMIA(0, 0x8000, 0, 0), 0, NULL, 0);
219 
220  /* fetch NOP, LDM in DECODE stage */
221  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
222  /* fetch NOP, LDM in SHIFT stage */
223  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
224  /* fetch NOP, LDM in EXECUTE stage (1st cycle) */
225  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
226  /* nothing fetched, LDM in EXECUTE stage (2nd cycle) (output data) */
227  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, pc, NULL, 0);
228  /* nothing fetched, LDM in EXECUTE stage (3rd cycle) */
229  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
230  /* fetch NOP, LDM in EXECUTE stage (4th cycle) */
231  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
232  /* fetch NOP, LDM in EXECUTE stage (5th cycle) */
233  arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
234 }
235 
237 {
238  LOG_ERROR("%s: there is no Thumb state on FA526", __func__);
239 }
240 
242  struct arm7_9_common *arm7_9, struct jtag_tap *tap)
243 {
244  /* prepare JTAG information for the new target */
245  arm7_9->jtag_info.tap = tap;
246  arm7_9->jtag_info.scann_size = 5;
247 
248  /* register arch-specific functions */
253  arm7_9->read_xpsr = fa526_read_xpsr;
254 
255  arm7_9->write_xpsr = fa526_write_xpsr;
258 
262 
266 
267  arm7_9->write_pc = fa526_write_pc;
270 
273 
276 
277  arm7_9->post_debug_entry = NULL;
278 
279  arm7_9->pre_restore_context = NULL;
280 
281  /* initialize arch-specific breakpoint handling */
282  arm7_9->arm_bkpt = 0xdeeedeee;
283  arm7_9->thumb_bkpt = 0xdeee;
284 
285  arm7_9->dbgreq_adjust_pc = 3;
286 
287  arm7_9_init_arch_info(target, arm7_9);
288 
289  /* override use of DBGRQ, this is safe on ARM9TDMI */
290  arm7_9->use_dbgrq = 1;
291 
292  /* all ARM9s have the vector catch register */
293  arm7_9->has_vector_catch = 1;
294 
295  return ERROR_OK;
296 }
297 
298 static int fa526_init_arch_info(struct target *target,
299  struct arm920t_common *arm920t, struct jtag_tap *tap)
300 {
301  struct arm7_9_common *arm7_9 = &arm920t->arm7_9_common;
302 
303  /* initialize arm7/arm9 specific info (including armv4_5) */
304  fa526_init_arch_info_2(target, arm7_9, tap);
305 
307 
310 
311  arm920t->armv4_5_mmu.armv4_5_cache.ctype = -1;
317  arm920t->armv4_5_mmu.has_tiny_pages = 1;
318  arm920t->armv4_5_mmu.mmu_enabled = 0;
319 
320  /* disabling linefills leads to lockups, so keep them enabled for now
321  * this doesn't affect correctness, but might affect timing issues, if
322  * important data is evicted from the cache during the debug session
323  * */
324  arm920t->preserve_cache = 0;
325 
326  /* override hw single-step capability from ARM9TDMI */
327  arm7_9->has_single_step = 1;
328 
329  return ERROR_OK;
330 }
331 
332 static int fa526_target_create(struct target *target, Jim_Interp *interp)
333 {
334  struct arm920t_common *arm920t = calloc(1, sizeof(struct arm920t_common));
335 
336  return fa526_init_arch_info(target, arm920t, target->tap);
337 }
338 
339 static void fa526_deinit_target(struct target *target)
340 {
341  struct arm *arm = target_to_arm(target);
342  struct arm920t_common *arm920t = target_to_arm920(target);
343 
346  free(arm920t);
347 }
348 
350 struct target_type fa526_target = {
351  .name = "fa526",
352 
353  .poll = arm7_9_poll,
354  .arch_state = arm920t_arch_state,
355 
356  .target_request_data = arm7_9_target_request_data,
357 
358  .halt = arm7_9_halt,
359  .resume = arm7_9_resume,
360  .step = arm7_9_step,
361 
362  .assert_reset = arm7_9_assert_reset,
363  .deassert_reset = arm7_9_deassert_reset,
364  .soft_reset_halt = arm920t_soft_reset_halt,
365 
366  .get_gdb_arch = arm_get_gdb_arch,
367  .get_gdb_reg_list = arm_get_gdb_reg_list,
368 
369  .read_memory = arm920t_read_memory,
370  .write_memory = arm7_9_write_memory_opt,
371 
372  .checksum_memory = arm_checksum_memory,
373  .blank_check_memory = arm_blank_check_memory,
374 
375  .run_algorithm = armv4_5_run_algorithm,
376 
377  .add_breakpoint = arm7_9_add_breakpoint,
378  .remove_breakpoint = arm7_9_remove_breakpoint,
379  .add_watchpoint = arm7_9_add_watchpoint,
380  .remove_watchpoint = arm7_9_remove_watchpoint,
381 
382  .commands = arm920t_command_handlers,
383  .target_create = fa526_target_create,
384  .init_target = arm9tdmi_init_target,
385  .deinit_target = fa526_deinit_target,
386  .examine = arm7_9_examine,
387  .check_reset = arm7_9_check_reset,
388 };
int arm7_9_write_memory_opt(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer)
int arm7_9_examine(struct target *target)
Perform per-target setup that requires JTAG access.
void arm7_9_deinit(struct target *target)
int arm7_9_read_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, uint8_t *buffer)
int arm7_9_add_breakpoint(struct target *target, struct breakpoint *breakpoint)
Add a breakpoint to an ARM7/9 target.
int arm7_9_assert_reset(struct target *target)
Asserts the reset (SRST) on an ARM7/9 target.
int arm7_9_poll(struct target *target)
Polls an ARM7/9 target for its current status.
int arm7_9_halt(struct target *target)
Halt an ARM7/9 target.
int arm7_9_remove_breakpoint(struct target *target, struct breakpoint *breakpoint)
Removes a breakpoint from an ARM7/9 target.
int arm7_9_remove_watchpoint(struct target *target, struct watchpoint *watchpoint)
Remove a watchpoint from an ARM7/9 target.
int arm7_9_deassert_reset(struct target *target)
Deassert the reset (SRST) signal on an ARM7/9 target.
int arm7_9_write_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer)
int arm7_9_bulk_write_memory(struct target *target, target_addr_t address, uint32_t count, const uint8_t *buffer)
int arm7_9_step(struct target *target, int current, target_addr_t address, int handle_breakpoints)
int arm7_9_target_request_data(struct target *target, uint32_t size, uint8_t *buffer)
Get some data from the ARM7/9 target.
int arm7_9_add_watchpoint(struct target *target, struct watchpoint *watchpoint)
Add a watchpoint to an ARM7/9 target.
int arm7_9_check_reset(struct target *target)
int arm7_9_init_arch_info(struct target *target, struct arm7_9_common *arm7_9)
int arm7_9_resume(struct target *target, int current, target_addr_t address, int handle_breakpoints, int debug_execution)
static struct arm7_9_common * target_to_arm7_9(struct target *target)
int arm920t_post_debug_entry(struct target *target)
Definition: arm920t.c:398
const struct command_registration arm920t_command_handlers[]
Definition: arm920t.c:1581
int arm920t_write_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer)
Writes a buffer, in the specified word size, with current MMU settings.
Definition: arm920t.c:592
int arm920t_disable_mmu_caches(struct target *target, int mmu, int d_u_cache, int i_cache)
Definition: arm920t.c:342
int arm920t_read_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, uint8_t *buffer)
Reads a buffer, in the specified word size, with current MMU settings.
Definition: arm920t.c:560
int arm920t_soft_reset_halt(struct target *target)
Definition: arm920t.c:731
int arm920t_get_ttb(struct target *target, uint32_t *result)
Definition: arm920t.c:326
void arm920t_pre_restore_context(struct target *target)
Definition: arm920t.c:474
int arm920t_enable_mmu_caches(struct target *target, int mmu, int d_u_cache, int i_cache)
Definition: arm920t.c:370
int arm920t_arch_state(struct target *target)
Logs summary of ARM920 state for a halted target.
Definition: arm920t.c:511
#define ARM920T_COMMON_MAGIC
Definition: arm920t.h:14
static struct arm920t_common * target_to_arm920(struct target *target)
Definition: arm920t.h:29
void arm9tdmi_load_hword_reg(struct target *target, int num)
Definition: arm9tdmi.c:529
void arm9tdmi_load_byte_reg(struct target *target, int num)
Definition: arm9tdmi.c:539
void arm9tdmi_store_byte_reg(struct target *target, int num)
Definition: arm9tdmi.c:569
void arm9tdmi_store_hword_reg(struct target *target, int num)
Definition: arm9tdmi.c:559
int arm9tdmi_init_target(struct command_context *cmd_ctx, struct target *target)
Definition: arm9tdmi.c:703
int arm9tdmi_clock_data_in_endianness(struct arm_jtag *jtag_info, void *in, int size, int be)
Definition: arm9tdmi.c:239
void arm9tdmi_enable_single_step(struct target *target, uint32_t next_pc)
Definition: arm9tdmi.c:673
int arm9tdmi_clock_data_in(struct arm_jtag *jtag_info, uint32_t *in)
Definition: arm9tdmi.c:188
int arm9tdmi_examine_debug_reason(struct target *target)
Definition: arm9tdmi.c:63
void arm9tdmi_load_word_regs(struct target *target, uint32_t mask)
Definition: arm9tdmi.c:519
void arm9tdmi_store_word_regs(struct target *target, uint32_t mask)
Definition: arm9tdmi.c:549
void arm9tdmi_branch_resume(struct target *target)
Definition: arm9tdmi.c:603
void arm9tdmi_disable_single_step(struct target *target)
Definition: arm9tdmi.c:684
int arm9tdmi_clock_out(struct arm_jtag *jtag_info, uint32_t instr, uint32_t out, uint32_t *in, int sysspeed)
Definition: arm9tdmi.c:124
int arm_blank_check_memory(struct target *target, struct target_memory_check_block *blocks, int num_blocks, uint8_t erased_value)
Runs ARM code in the target to check whether a memory block holds all ones.
Definition: armv4_5.c:1673
int arm_checksum_memory(struct target *target, target_addr_t address, uint32_t count, uint32_t *checksum)
Runs ARM code in the target to calculate a CRC32 checksum.
Definition: armv4_5.c:1600
const char * arm_get_gdb_arch(const struct target *target)
Definition: armv4_5.c:1267
int arm_get_gdb_reg_list(struct target *target, struct reg **reg_list[], int *reg_list_size, enum target_register_class reg_class)
Definition: armv4_5.c:1272
void arm_free_reg_cache(struct arm *arm)
Definition: armv4_5.c:761
static struct arm * target_to_arm(const struct target *target)
Convert target handle to generic ARM target state handle.
Definition: arm.h:260
int armv4_5_run_algorithm(struct target *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_params, target_addr_t entry_point, target_addr_t exit_point, unsigned int timeout_ms, void *arch_info)
Definition: armv4_5.c:1574
Macros used to generate various ARM or Thumb opcodes.
#define ARMV4_5_LDMIA(rn, list, s, w)
Definition: arm_opcodes.h:42
#define ARMV4_5_MRS(rn, r)
Definition: arm_opcodes.h:52
#define ARMV4_5_STR(rd, rn)
Definition: arm_opcodes.h:58
#define ARMV4_5_NOP
Definition: arm_opcodes.h:46
#define ARMV4_5_STMIA(rn, list, s, w)
Definition: arm_opcodes.h:33
#define ARMV4_5_MSR_IM(im, rotate, field, r)
Definition: arm_opcodes.h:74
int mask
Definition: esirisc.c:1741
static void fa526_write_xpsr(struct target *target, uint32_t xpsr, int spsr)
Definition: fa526.c:121
static void fa526_read_xpsr(struct target *target, uint32_t *xpsr, int spsr)
Definition: fa526.c:96
static void fa526_write_pc(struct target *target, uint32_t pc)
Definition: fa526.c:210
static void fa526_branch_resume_thumb(struct target *target)
Definition: fa526.c:236
static void fa526_change_to_arm(struct target *target, uint32_t *r0, uint32_t *pc)
Definition: fa526.c:25
static void fa526_deinit_target(struct target *target)
Definition: fa526.c:339
static void fa526_read_core_regs(struct target *target, uint32_t mask, uint32_t *core_regs[16])
Definition: fa526.c:30
static int fa526_init_arch_info(struct target *target, struct arm920t_common *arm920t, struct jtag_tap *tap)
Definition: fa526.c:298
static int fa526_init_arch_info_2(struct target *target, struct arm7_9_common *arm7_9, struct jtag_tap *tap)
Definition: fa526.c:241
static void fa526_read_core_regs_target_buffer(struct target *target, uint32_t mask, void *buffer, int size)
Definition: fa526.c:56
static void fa526_write_core_regs(struct target *target, uint32_t mask, uint32_t core_regs[16])
Definition: fa526.c:183
static void fa526_write_xpsr_im8(struct target *target, uint8_t xpsr_im, int rot, int spsr)
Definition: fa526.c:157
static int fa526_target_create(struct target *target, Jim_Interp *interp)
Definition: fa526.c:332
struct target_type fa526_target
Holds methods for FA526 targets.
Definition: fa526.c:350
#define LOG_ERROR(expr ...)
Definition: log.h:132
#define LOG_DEBUG(expr ...)
Definition: log.h:109
#define ERROR_OK
Definition: log.h:164
size_t size
Size of the control block search area.
Definition: rtt/rtt.c:30
Structure for items that are common between both ARM7 and ARM9 targets.
Definition: arm7_9_common.h:28
void(* enable_single_step)(struct target *target, uint32_t next_pc)
Definition: arm7_9_common.h:98
bool has_vector_catch
Specifies if the target has a reset vector catch.
Definition: arm7_9_common.h:53
void(* read_xpsr)(struct target *target, uint32_t *xpsr, int spsr)
Function for reading CPSR or SPSR.
Definition: arm7_9_common.h:73
void(* store_hword_reg)(struct target *target, int num)
Definition: arm7_9_common.h:89
void(* write_xpsr_im8)(struct target *target, uint8_t xpsr_im, int rot, int spsr)
Function for writing an immediate value to CPSR or SPSR.
Definition: arm7_9_common.h:79
void(* write_core_regs)(struct target *target, uint32_t mask, uint32_t core_regs[16])
Definition: arm7_9_common.h:82
uint32_t arm_bkpt
ARM breakpoint instruction.
Definition: arm7_9_common.h:36
bool use_dbgrq
Specifies if DBGRQ should be used to halt the target.
Definition: arm7_9_common.h:48
int(* bulk_write_memory)(struct target *target, target_addr_t address, uint32_t count, const uint8_t *buffer)
Write target memory in multiples of 4 bytes, optimized for writing large quantities of data.
bool has_single_step
Definition: arm7_9_common.h:51
void(* branch_resume)(struct target *target)
Definition: arm7_9_common.h:95
int(* write_memory)(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer)
Variant specific memory write function that does not dispatch to bulk_write_memory.
struct arm_jtag jtag_info
JTAG information for target.
Definition: arm7_9_common.h:33
void(* read_core_regs_target_buffer)(struct target *target, uint32_t mask, void *buffer, int size)
Definition: arm7_9_common.h:71
void(* store_byte_reg)(struct target *target, int num)
Definition: arm7_9_common.h:90
int(* post_debug_entry)(struct target *target)
Callback function called after entering debug mode.
void(* load_word_regs)(struct target *target, uint32_t mask)
Definition: arm7_9_common.h:84
void(* load_byte_reg)(struct target *target, int num)
Definition: arm7_9_common.h:86
void(* read_core_regs)(struct target *target, uint32_t mask, uint32_t *core_regs[16])
Function for reading the core registers.
Definition: arm7_9_common.h:68
void(* load_hword_reg)(struct target *target, int num)
Definition: arm7_9_common.h:85
void(* disable_single_step)(struct target *target)
Definition: arm7_9_common.h:99
void(* write_pc)(struct target *target, uint32_t pc)
Function for writing to the program counter.
Definition: arm7_9_common.h:92
uint16_t thumb_bkpt
Thumb breakpoint instruction.
Definition: arm7_9_common.h:37
void(* store_word_regs)(struct target *target, uint32_t mask)
Definition: arm7_9_common.h:88
void(* pre_restore_context)(struct target *target)
Callback function called before restoring the processor context.
int dbgreq_adjust_pc
Amount of PC adjustment caused by a DBGREQ.
Definition: arm7_9_common.h:47
int(* examine_debug_reason)(struct target *target)
Function for determining why debug state was entered.
Definition: arm7_9_common.h:62
void(* branch_resume_thumb)(struct target *target)
Definition: arm7_9_common.h:96
void(* change_to_arm)(struct target *target, uint32_t *r0, uint32_t *pc)
Function for changing from Thumb to ARM mode.
Definition: arm7_9_common.h:65
void(* write_xpsr)(struct target *target, uint32_t xpsr, int spsr)
Function for writing to CPSR or SPSR.
Definition: arm7_9_common.h:76
int preserve_cache
Definition: arm920t.h:26
unsigned int common_magic
Definition: arm920t.h:17
struct arm7_9_common arm7_9_common
Definition: arm920t.h:19
struct armv4_5_mmu_common armv4_5_mmu
Definition: arm920t.h:20
uint32_t scann_size
Definition: arm_jtag.h:20
struct jtag_tap * tap
Definition: arm_jtag.h:18
Represents a generic ARM core, with standard application registers.
Definition: arm.h:174
int(* write_memory)(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer)
Definition: armv4_5_mmu.h:18
int(* read_memory)(struct target *target, target_addr_t address, uint32_t size, uint32_t count, uint8_t *buffer)
Definition: armv4_5_mmu.h:17
int(* get_ttb)(struct target *target, uint32_t *result)
Definition: armv4_5_mmu.h:16
int(* enable_mmu_caches)(struct target *target, int mmu, int d_u_cache, int i_cache)
Definition: armv4_5_mmu.h:21
int(* disable_mmu_caches)(struct target *target, int mmu, int d_u_cache, int i_cache)
Definition: armv4_5_mmu.h:20
struct armv4_5_cache_common armv4_5_cache
Definition: armv4_5_mmu.h:22
Definition: jtag.h:101
This holds methods shared between all instances of a given target type.
Definition: target_type.h:26
const char * name
Name of this type of target.
Definition: target_type.h:31
Definition: target.h:116
struct jtag_tap * tap
Definition: target.h:119
enum target_endianness endianness
Definition: target.h:155
@ TARGET_BIG_ENDIAN
Definition: target.h:82
#define NULL
Definition: usb.h:16