1 /***************************************************************************
2 * Copyright (C) 2009 by David Brownell *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
22 #include "arm_adi_v5.h"
24 #include "armv4_5_mmu.h"
25 #include "armv4_5_cache.h"
33 /* offsets into armv4_5 core register cache */
44 #define ARMV7_COMMON_MAGIC 0x0A450999
46 /* VA to PA translation operations opc2 values*/
58 struct arm armv4_5_common
;
60 struct reg_cache
*core_cache
;
62 /* arm adp debug port */
63 struct swjdp_common swjdp_info
;
70 /* Cache and Memory Management Unit */
71 struct armv4_5_mmu_common armv4_5_mmu
;
73 int (*read_cp15
)(struct target
*target
,
74 uint32_t op1
, uint32_t op2
,
75 uint32_t CRn
, uint32_t CRm
, uint32_t *value
);
76 int (*write_cp15
)(struct target
*target
,
77 uint32_t op1
, uint32_t op2
,
78 uint32_t CRn
, uint32_t CRm
, uint32_t value
);
80 int (*examine_debug_reason
)(struct target
*target
);
81 void (*post_debug_entry
)(struct target
*target
);
83 void (*pre_restore_context
)(struct target
*target
);
84 void (*post_restore_context
)(struct target
*target
);
88 static inline struct armv7a_common
*
89 target_to_armv7a(struct target
*target
)
91 return container_of(target
->arch_info
, struct armv7a_common
,
95 struct armv7a_algorithm
99 enum armv4_5_mode core_mode
;
100 enum armv4_5_state core_state
;
103 struct armv7a_core_reg
106 enum armv4_5_mode mode
;
107 struct target
*target
;
108 struct armv7a_common
*armv7a_common
;
111 int armv7a_arch_state(struct target
*target
);
112 struct reg_cache
*armv7a_build_reg_cache(struct target
*target
,
113 struct armv7a_common
*armv7a_common
);
114 int armv7a_register_commands(struct command_context
*cmd_ctx
);
115 int armv7a_init_arch_info(struct target
*target
, struct armv7a_common
*armv7a
);
117 #endif /* ARMV4_5_H */