Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_ARM920T_H
#include "arm9tdmi.h"
#include "armv4_5_mmu.h"
#define ARM920T_COMMON_MAGIC
arm920t_common
target_to_arm920(struct target *)
arm920t_cache_line
arm920t_tlb_entry
arm920t_arch_state(struct target *);
arm920t_soft_reset_halt(struct target *);
arm920t_read_memory(struct target *, target_addr_t, uint32_t, uint32_t, uint8_t *);
arm920t_write_memory(struct target *, target_addr_t, uint32_t, uint32_t, const uint8_t *);
arm920t_post_debug_entry(struct target *);
arm920t_pre_restore_context(struct target *);
arm920t_get_ttb(struct target *, uint32_t *);
arm920t_disable_mmu_caches(struct target *, int, int, int);
arm920t_enable_mmu_caches(struct target *, int, int, int);
arm920t_command_handlers;
Files
loading...
CodeScopeDevelopment ToolsOpenOCDsrc/target/arm920t.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2005 by Dominic Rath * * Dominic.Rath@gmx.de * ***************************************************************************//* ... */ #ifndef OPENOCD_TARGET_ARM920T_H #define OPENOCD_TARGET_ARM920T_H #include "arm9tdmi.h" #include "armv4_5_mmu.h" #define ARM920T_COMMON_MAGIC 0xa920a920U struct arm920t_common { unsigned int common_magic; struct arm7_9_common arm7_9_common; struct armv4_5_mmu_common armv4_5_mmu; uint32_t cp15_control_reg; uint32_t d_fsr; uint32_t i_fsr; uint32_t d_far; uint32_t i_far; int preserve_cache; ...}; static inline struct arm920t_common *target_to_arm920(struct target *target) { return container_of(target->arch_info, struct arm920t_common, arm7_9_common.arm); }{ ... } struct arm920t_cache_line { uint32_t cam; uint32_t data[8]; ...}; struct arm920t_tlb_entry { uint32_t cam; uint32_t ram1; uint32_t ram2; ...}; int arm920t_arch_state(struct target *target); int arm920t_soft_reset_halt(struct target *target); int arm920t_read_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, uint8_t *buffer); int arm920t_write_memory(struct target *target, target_addr_t address, uint32_t size, uint32_t count, const uint8_t *buffer); int arm920t_post_debug_entry(struct target *target); void arm920t_pre_restore_context(struct target *target); int arm920t_get_ttb(struct target *target, uint32_t *result); int arm920t_disable_mmu_caches(struct target *target, int mmu, int d_u_cache, int i_cache); int arm920t_enable_mmu_caches(struct target *target, int mmu, int d_u_cache, int i_cache); extern const struct command_registration arm920t_command_handlers[]; /* ... */ #endif /* OPENOCD_TARGET_ARM920T_H */