You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

243 lines
7.6 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2005 by Dominic Rath *
  3. * Dominic.Rath@gmx.de *
  4. * *
  5. * Copyright (C) 2006 by Magnus Lundin *
  6. * lundin@mlu.mine.nu *
  7. * *
  8. * Copyright (C) 2008 by Spencer Oliver *
  9. * spen@spen-soft.co.uk *
  10. * *
  11. * This program is free software; you can redistribute it and/or modify *
  12. * it under the terms of the GNU General Public License as published by *
  13. * the Free Software Foundation; either version 2 of the License, or *
  14. * (at your option) any later version. *
  15. * *
  16. * This program is distributed in the hope that it will be useful, *
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  19. * GNU General Public License for more details. *
  20. * *
  21. * You should have received a copy of the GNU General Public License *
  22. * along with this program; if not, write to the *
  23. * Free Software Foundation, Inc., *
  24. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  25. ***************************************************************************/
  26. #ifndef ARMV7M_COMMON_H
  27. #define ARMV7M_COMMON_H
  28. #include "arm_adi_v5.h"
  29. /* define for enabling armv7 gdb workarounds */
  30. #if 1
  31. #define ARMV7_GDB_HACKS
  32. #endif
  33. enum armv7m_mode
  34. {
  35. ARMV7M_MODE_THREAD = 0,
  36. ARMV7M_MODE_USER_THREAD = 1,
  37. ARMV7M_MODE_HANDLER = 2,
  38. ARMV7M_MODE_ANY = -1
  39. };
  40. extern char *armv7m_mode_strings[];
  41. enum armv7m_regtype
  42. {
  43. ARMV7M_REGISTER_CORE_GP,
  44. ARMV7M_REGISTER_CORE_SP,
  45. ARMV7M_REGISTER_MEMMAP
  46. };
  47. char *armv7m_exception_string(int number);
  48. /* offsets into armv7m core register cache */
  49. enum
  50. {
  51. /* for convenience, the first set of indices match
  52. * the Cortex-M3 DCRSR selectors
  53. */
  54. ARMV7M_R0,
  55. ARMV7M_R1,
  56. ARMV7M_R2,
  57. ARMV7M_R3,
  58. ARMV7M_R4,
  59. ARMV7M_R5,
  60. ARMV7M_R6,
  61. ARMV7M_R7,
  62. ARMV7M_R8,
  63. ARMV7M_R9,
  64. ARMV7M_R10,
  65. ARMV7M_R11,
  66. ARMV7M_R12,
  67. ARMV7M_R13,
  68. ARMV7M_R14,
  69. ARMV7M_PC = 15,
  70. ARMV7M_xPSR = 16,
  71. ARMV7M_MSP,
  72. ARMV7M_PSP,
  73. /* this next set of indices is arbitrary */
  74. ARMV7M_PRIMASK,
  75. ARMV7M_BASEPRI,
  76. ARMV7M_FAULTMASK,
  77. ARMV7M_CONTROL,
  78. };
  79. #define ARMV7M_COMMON_MAGIC 0x2A452A45
  80. typedef struct armv7m_common_s
  81. {
  82. int common_magic;
  83. reg_cache_t *core_cache;
  84. enum armv7m_mode core_mode;
  85. int exception_number;
  86. swjdp_common_t swjdp_info;
  87. /* Direct processor core register read and writes */
  88. int (*load_core_reg_u32)(struct target_s *target, enum armv7m_regtype type, uint32_t num, uint32_t *value);
  89. int (*store_core_reg_u32)(struct target_s *target, enum armv7m_regtype type, uint32_t num, uint32_t value);
  90. /* register cache to processor synchronization */
  91. int (*read_core_reg)(struct target_s *target, int num);
  92. int (*write_core_reg)(struct target_s *target, int num);
  93. int (*examine_debug_reason)(target_t *target);
  94. void (*post_debug_entry)(target_t *target);
  95. void (*pre_restore_context)(target_t *target);
  96. void (*post_restore_context)(target_t *target);
  97. } armv7m_common_t;
  98. static inline struct armv7m_common_s *
  99. target_to_armv7m(struct target_s *target)
  100. {
  101. return target->arch_info;
  102. }
  103. typedef struct armv7m_algorithm_s
  104. {
  105. int common_magic;
  106. enum armv7m_mode core_mode;
  107. } armv7m_algorithm_t;
  108. typedef struct armv7m_core_reg_s
  109. {
  110. uint32_t num;
  111. enum armv7m_regtype type;
  112. target_t *target;
  113. armv7m_common_t *armv7m_common;
  114. } armv7m_core_reg_t;
  115. reg_cache_t *armv7m_build_reg_cache(target_t *target);
  116. enum armv7m_mode armv7m_number_to_mode(int number);
  117. int armv7m_mode_to_number(enum armv7m_mode mode);
  118. int armv7m_arch_state(struct target_s *target);
  119. int armv7m_get_gdb_reg_list(target_t *target,
  120. reg_t **reg_list[], int *reg_list_size);
  121. int armv7m_register_commands(struct command_context_s *cmd_ctx);
  122. int armv7m_init_arch_info(target_t *target, armv7m_common_t *armv7m);
  123. int armv7m_run_algorithm(struct target_s *target,
  124. int num_mem_params, mem_param_t *mem_params,
  125. int num_reg_params, reg_param_t *reg_params,
  126. uint32_t entry_point, uint32_t exit_point,
  127. int timeout_ms, void *arch_info);
  128. int armv7m_invalidate_core_regs(target_t *target);
  129. int armv7m_restore_context(target_t *target);
  130. int armv7m_checksum_memory(struct target_s *target,
  131. uint32_t address, uint32_t count, uint32_t* checksum);
  132. int armv7m_blank_check_memory(struct target_s *target,
  133. uint32_t address, uint32_t count, uint32_t* blank);
  134. /* Thumb mode instructions
  135. */
  136. /* Move to Register from Special Register (Thumb mode) 32 bit Thumb2 instruction
  137. * Rd: destination register
  138. * SYSm: source special register
  139. */
  140. #define ARMV7M_T_MRS(Rd, SYSm) ((0xF3EF) | ((0x8000 | (Rd << 8) | SYSm) << 16))
  141. /* Move from Register from Special Register (Thumb mode) 32 bit Thumb2 instruction
  142. * Rd: source register
  143. * SYSm: destination special register
  144. */
  145. #define ARMV7M_T_MSR(SYSm, Rn) ((0xF380 | (Rn << 8)) | ((0x8800 | SYSm) << 16))
  146. /* Change Processor State. The instruction modifies the PRIMASK and FAULTMASK
  147. * special-purpose register values (Thumb mode) 16 bit Thumb2 instruction
  148. * Rd: source register
  149. * IF:
  150. */
  151. #define I_FLAG 2
  152. #define F_FLAG 1
  153. #define ARMV7M_T_CPSID(IF) ((0xB660 | (1 << 8) | (IF&0x3)) | ((0xB660 | (1 << 8) | (IF&0x3)) << 16))
  154. #define ARMV7M_T_CPSIE(IF) ((0xB660 | (0 << 8) | (IF&0x3)) | ((0xB660 | (0 << 8) | (IF&0x3)) << 16))
  155. /* Breakpoint (Thumb mode) v5 onwards
  156. * Im: immediate value used by debugger
  157. */
  158. #define ARMV7M_T_BKPT(Im) ((0xBE00 | Im) | ((0xBE00 | Im) << 16))
  159. /* Store register (Thumb mode)
  160. * Rd: source register
  161. * Rn: base register
  162. */
  163. #define ARMV7M_T_STR(Rd, Rn) ((0x6000 | Rd | (Rn << 3)) | ((0x6000 | Rd | (Rn << 3)) << 16))
  164. /* Load register (Thumb state)
  165. * Rd: destination register
  166. * Rn: base register
  167. */
  168. #define ARMV7M_T_LDR(Rd, Rn) ((0x6800 | (Rn << 3) | Rd) | ((0x6800 | (Rn << 3) | Rd) << 16))
  169. /* Load multiple (Thumb state)
  170. * Rn: base register
  171. * List: for each bit in list: store register
  172. */
  173. #define ARMV7M_T_LDMIA(Rn, List) ((0xc800 | (Rn << 8) | List) | ((0xc800 | (Rn << 8) | List) << 16))
  174. /* Load register with PC relative addressing
  175. * Rd: register to load
  176. */
  177. #define ARMV7M_T_LDR_PCREL(Rd) ((0x4800 | (Rd << 8)) | ((0x4800 | (Rd << 8)) << 16))
  178. /* Move hi register (Thumb mode)
  179. * Rd: destination register
  180. * Rm: source register
  181. */
  182. #define ARMV7M_T_MOV(Rd, Rm) ((0x4600 | (Rd & 0x7) | ((Rd & 0x8) << 4) | ((Rm & 0x7) << 3) | ((Rm & 0x8) << 3)) | ((0x4600 | (Rd & 0x7) | ((Rd & 0x8) << 4) | ((Rm & 0x7) << 3) | ((Rm & 0x8) << 3)) << 16))
  183. /* No operation (Thumb mode)
  184. */
  185. #define ARMV7M_T_NOP (0x46c0 | (0x46c0 << 16))
  186. /* Move immediate to register (Thumb state)
  187. * Rd: destination register
  188. * Im: 8-bit immediate value
  189. */
  190. #define ARMV7M_T_MOV_IM(Rd, Im) ((0x2000 | (Rd << 8) | Im) | ((0x2000 | (Rd << 8) | Im) << 16))
  191. /* Branch and Exchange
  192. * Rm: register containing branch target
  193. */
  194. #define ARMV7M_T_BX(Rm) ((0x4700 | (Rm << 3)) | ((0x4700 | (Rm << 3)) << 16))
  195. /* Branch (Thumb state)
  196. * Imm: Branch target
  197. */
  198. #define ARMV7M_T_B(Imm) ((0xe000 | Imm) | ((0xe000 | Imm) << 16))
  199. #endif /* ARMV7M_H */