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.
 
 
 
 
 
 

754 lines
26 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2008-2009 by Marvell Semiconductors, Inc. *
  3. * Written by Nicolas Pitre <nico@marvell.com> *
  4. * *
  5. * Copyright (C) 2008 by Hongtao Zheng *
  6. * hontor@126.com *
  7. * *
  8. * This program is free software; you can redistribute it and/or modify *
  9. * it under the terms of the GNU General Public License as published by *
  10. * the Free Software Foundation; either version 2 of the License, or *
  11. * (at your option) any later version. *
  12. * *
  13. * This program is distributed in the hope that it will be useful, *
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  16. * GNU General Public License for more details. *
  17. * *
  18. * You should have received a copy of the GNU General Public License *
  19. * along with this program; if not, write to the *
  20. * Free Software Foundation, Inc., *
  21. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  22. ***************************************************************************/
  23. /*
  24. * Marvell Feroceon/Dragonite support.
  25. *
  26. * The Feroceon core, as found in the Orion and Kirkwood SoCs amongst others,
  27. * mimics the ARM926 ICE interface with the following differences:
  28. *
  29. * - the MOE (method of entry) reporting is not implemented
  30. *
  31. * - breakpoint/watchpoint comparator #1 is seemingly not implemented
  32. *
  33. * - due to a different pipeline implementation, some injected debug
  34. * instruction sequences have to be somewhat different
  35. *
  36. * Other issues:
  37. *
  38. * - asserting DBGRQ doesn't work if target is looping on the undef vector
  39. *
  40. * - the EICE version signature in the COMMS_CTL reg is next to the flow bits
  41. * not at the top, and rather meaningless due to existing discrepencies
  42. *
  43. * - the DCC channel is half duplex (only one FIFO for both directions) with
  44. * seemingly no proper flow control.
  45. *
  46. * The Dragonite core is the non-mmu version based on the ARM966 model, and
  47. * it shares the above issues as well.
  48. */
  49. #ifdef HAVE_CONFIG_H
  50. #include "config.h"
  51. #endif
  52. #include "arm926ejs.h"
  53. #include "arm966e.h"
  54. #include "target_type.h"
  55. #include "register.h"
  56. #include "arm_opcodes.h"
  57. static int feroceon_assert_reset(struct target *target)
  58. {
  59. struct arm *arm = target->arch_info;
  60. struct arm7_9_common *arm7_9 = arm->arch_info;
  61. int ud = arm7_9->use_dbgrq;
  62. arm7_9->use_dbgrq = 0;
  63. if (target->reset_halt)
  64. arm7_9_halt(target);
  65. arm7_9->use_dbgrq = ud;
  66. return arm7_9_assert_reset(target);
  67. }
  68. static int feroceon_dummy_clock_out(struct arm_jtag *jtag_info, uint32_t instr)
  69. {
  70. struct scan_field fields[3];
  71. uint8_t out_buf[4];
  72. uint8_t instr_buf[4];
  73. uint8_t sysspeed_buf = 0x0;
  74. int retval;
  75. /* prepare buffer */
  76. buf_set_u32(out_buf, 0, 32, 0);
  77. buf_set_u32(instr_buf, 0, 32, flip_u32(instr, 32));
  78. retval = arm_jtag_scann(jtag_info, 0x1, TAP_DRPAUSE);
  79. if (retval != ERROR_OK)
  80. return retval;
  81. retval = arm_jtag_set_instr(jtag_info, jtag_info->intest_instr, NULL, TAP_DRPAUSE);
  82. if (retval != ERROR_OK)
  83. return retval;
  84. fields[0].num_bits = 32;
  85. fields[0].out_value = out_buf;
  86. fields[0].in_value = NULL;
  87. fields[1].num_bits = 3;
  88. fields[1].out_value = &sysspeed_buf;
  89. fields[1].in_value = NULL;
  90. fields[2].num_bits = 32;
  91. fields[2].out_value = instr_buf;
  92. fields[2].in_value = NULL;
  93. jtag_add_dr_scan(jtag_info->tap, 3, fields, TAP_DRPAUSE);
  94. /* no jtag_add_runtest(0, TAP_DRPAUSE) here */
  95. return ERROR_OK;
  96. }
  97. static void feroceon_change_to_arm(struct target *target, uint32_t *r0,
  98. uint32_t *pc)
  99. {
  100. struct arm *arm = target->arch_info;
  101. struct arm7_9_common *arm7_9 = arm->arch_info;
  102. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  103. /*
  104. * save r0 before using it and put system in ARM state
  105. * to allow common handling of ARM and THUMB debugging
  106. */
  107. feroceon_dummy_clock_out(jtag_info, ARMV4_5_T_NOP);
  108. feroceon_dummy_clock_out(jtag_info, ARMV4_5_T_NOP);
  109. feroceon_dummy_clock_out(jtag_info, ARMV4_5_T_NOP);
  110. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_STR(0, 0), 0, NULL, 0);
  111. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  112. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  113. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, r0, 0);
  114. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  115. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  116. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_MOV(0, 15), 0, NULL, 0);
  117. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_STR(0, 0), 0, NULL, 0);
  118. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  119. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  120. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, pc, 0);
  121. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  122. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  123. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_BX(15), 0, NULL, 0);
  124. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  125. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  126. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  127. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  128. jtag_execute_queue();
  129. /*
  130. * fix program counter:
  131. * MOV R0, PC was the 7th instruction (+12)
  132. * reading PC in Thumb state gives address of instruction + 4
  133. */
  134. *pc -= (12 + 4);
  135. }
  136. static void feroceon_read_core_regs(struct target *target,
  137. uint32_t mask, uint32_t *core_regs[16])
  138. {
  139. int i;
  140. struct arm *arm = target->arch_info;
  141. struct arm7_9_common *arm7_9 = arm->arch_info;
  142. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  143. arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
  144. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  145. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  146. for (i = 0; i <= 15; i++)
  147. if (mask & (1 << i))
  148. arm9tdmi_clock_data_in(jtag_info, core_regs[i]);
  149. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  150. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  151. }
  152. static void feroceon_read_core_regs_target_buffer(struct target *target,
  153. uint32_t mask, void *buffer, int size)
  154. {
  155. int i;
  156. struct arm *arm = target->arch_info;
  157. struct arm7_9_common *arm7_9 = arm->arch_info;
  158. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  159. int be = (target->endianness == TARGET_BIG_ENDIAN) ? 1 : 0;
  160. uint32_t *buf_u32 = buffer;
  161. uint16_t *buf_u16 = buffer;
  162. uint8_t *buf_u8 = buffer;
  163. arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
  164. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  165. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  166. for (i = 0; i <= 15; i++) {
  167. if (mask & (1 << i)) {
  168. switch (size) {
  169. case 4:
  170. arm9tdmi_clock_data_in_endianness(jtag_info, buf_u32++, 4, be);
  171. break;
  172. case 2:
  173. arm9tdmi_clock_data_in_endianness(jtag_info, buf_u16++, 2, be);
  174. break;
  175. case 1:
  176. arm9tdmi_clock_data_in_endianness(jtag_info, buf_u8++, 1, be);
  177. break;
  178. }
  179. }
  180. }
  181. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  182. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  183. }
  184. static void feroceon_read_xpsr(struct target *target, uint32_t *xpsr, int spsr)
  185. {
  186. struct arm *arm = target->arch_info;
  187. struct arm7_9_common *arm7_9 = arm->arch_info;
  188. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  189. arm9tdmi_clock_out(jtag_info, ARMV4_5_MRS(0, spsr & 1), 0, NULL, 0);
  190. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  191. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  192. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  193. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  194. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  195. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  196. arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, 1, 0, 0), 0, NULL, 0);
  197. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  198. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  199. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, xpsr, 0);
  200. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  201. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  202. }
  203. static void feroceon_write_xpsr(struct target *target, uint32_t xpsr, int spsr)
  204. {
  205. struct arm *arm = target->arch_info;
  206. struct arm7_9_common *arm7_9 = arm->arch_info;
  207. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  208. LOG_DEBUG("xpsr: %8.8" PRIx32 ", spsr: %i", xpsr, spsr);
  209. arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM(xpsr & 0xff, 0, 1, spsr), 0, NULL, 0);
  210. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  211. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  212. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  213. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  214. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  215. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  216. arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff00) >> 8, 0xc, 2, spsr), 0, NULL, 0);
  217. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  218. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  219. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  220. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  221. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  222. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  223. arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff0000) >> 16, 0x8, 4, spsr), 0, NULL, 0);
  224. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  225. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  226. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  227. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  228. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  229. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  230. arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff000000) >> 24, 0x4, 8, spsr), 0, NULL, 0);
  231. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  232. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  233. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  234. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  235. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  236. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  237. }
  238. static void feroceon_write_xpsr_im8(struct target *target,
  239. uint8_t xpsr_im, int rot, int spsr)
  240. {
  241. struct arm *arm = target->arch_info;
  242. struct arm7_9_common *arm7_9 = arm->arch_info;
  243. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  244. LOG_DEBUG("xpsr_im: %2.2x, rot: %i, spsr: %i", xpsr_im, rot, spsr);
  245. arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM(xpsr_im, rot, 1, spsr), 0, NULL, 0);
  246. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  247. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  248. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  249. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  250. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  251. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  252. }
  253. static void feroceon_write_core_regs(struct target *target,
  254. uint32_t mask, uint32_t core_regs[16])
  255. {
  256. int i;
  257. struct arm *arm = target->arch_info;
  258. struct arm7_9_common *arm7_9 = arm->arch_info;
  259. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  260. arm9tdmi_clock_out(jtag_info, ARMV4_5_LDMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
  261. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  262. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  263. for (i = 0; i <= 15; i++)
  264. if (mask & (1 << i))
  265. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, core_regs[i], NULL, 0);
  266. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  267. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  268. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  269. }
  270. static void feroceon_branch_resume(struct target *target)
  271. {
  272. struct arm *arm = target->arch_info;
  273. struct arm7_9_common *arm7_9 = arm->arch_info;
  274. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  275. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  276. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  277. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  278. arm9tdmi_clock_out(jtag_info, ARMV4_5_B(0xfffff9, 0), 0, NULL, 0);
  279. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 1);
  280. arm7_9->need_bypass_before_restart = 1;
  281. }
  282. static void feroceon_branch_resume_thumb(struct target *target)
  283. {
  284. LOG_DEBUG("-");
  285. struct arm *arm = target->arch_info;
  286. struct arm7_9_common *arm7_9 = arm->arch_info;
  287. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  288. uint32_t r0 = buf_get_u32(arm->core_cache->reg_list[0].value, 0, 32);
  289. uint32_t pc = buf_get_u32(arm->pc->value, 0, 32);
  290. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  291. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  292. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  293. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  294. arm9tdmi_clock_out(jtag_info, 0xE28F0001, 0, NULL, 0); /* add r0,pc,#1 */
  295. arm9tdmi_clock_out(jtag_info, ARMV4_5_BX(0), 0, NULL, 0);
  296. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  297. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  298. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_LDMIA(0, 0x1), 0, NULL, 0);
  299. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  300. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  301. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, r0, NULL, 0);
  302. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  303. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
  304. pc = (pc & 2) >> 1;
  305. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_B(0x7e9 + pc), 0, NULL, 0);
  306. arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 1);
  307. arm7_9->need_bypass_before_restart = 1;
  308. }
  309. static int feroceon_read_cp15(struct target *target, uint32_t op1,
  310. uint32_t op2, uint32_t CRn, uint32_t CRm, uint32_t *value)
  311. {
  312. struct arm *arm = target->arch_info;
  313. struct arm7_9_common *arm7_9 = arm->arch_info;
  314. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  315. int err;
  316. arm9tdmi_clock_out(jtag_info, ARMV4_5_MRC(15, op1, 0, CRn, CRm, op2), 0, NULL, 0);
  317. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 1);
  318. err = arm7_9_execute_sys_speed(target);
  319. if (err != ERROR_OK)
  320. return err;
  321. arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, 1, 0, 0), 0, NULL, 0);
  322. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  323. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  324. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, value, 0);
  325. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  326. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  327. return jtag_execute_queue();
  328. }
  329. static int feroceon_write_cp15(struct target *target, uint32_t op1,
  330. uint32_t op2, uint32_t CRn, uint32_t CRm, uint32_t value)
  331. {
  332. struct arm *arm = target->arch_info;
  333. struct arm7_9_common *arm7_9 = arm->arch_info;
  334. struct arm_jtag *jtag_info = &arm7_9->jtag_info;
  335. arm9tdmi_clock_out(jtag_info, ARMV4_5_LDMIA(0, 1, 0, 0), 0, NULL, 0);
  336. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  337. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  338. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, value, NULL, 0);
  339. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  340. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  341. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
  342. arm9tdmi_clock_out(jtag_info, ARMV4_5_MCR(15, op1, 0, CRn, CRm, op2), 0, NULL, 0);
  343. arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 1);
  344. return arm7_9_execute_sys_speed(target);
  345. }
  346. static void feroceon_set_dbgrq(struct target *target)
  347. {
  348. struct arm *arm = target->arch_info;
  349. struct arm7_9_common *arm7_9 = arm->arch_info;
  350. struct reg *dbg_ctrl = &arm7_9->eice_cache->reg_list[EICE_DBG_CTRL];
  351. buf_set_u32(dbg_ctrl->value, 0, 8, 2);
  352. embeddedice_store_reg(dbg_ctrl);
  353. }
  354. static void feroceon_enable_single_step(struct target *target, uint32_t next_pc)
  355. {
  356. struct arm *arm = target->arch_info;
  357. struct arm7_9_common *arm7_9 = arm->arch_info;
  358. /* set a breakpoint there */
  359. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_VALUE], next_pc);
  360. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_MASK], 0);
  361. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_DATA_MASK], 0xffffffff);
  362. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_VALUE], 0x100);
  363. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_MASK], 0xf7);
  364. }
  365. static void feroceon_disable_single_step(struct target *target)
  366. {
  367. struct arm *arm = target->arch_info;
  368. struct arm7_9_common *arm7_9 = arm->arch_info;
  369. embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_VALUE]);
  370. embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_MASK]);
  371. embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_DATA_MASK]);
  372. embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_MASK]);
  373. embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_VALUE]);
  374. }
  375. static int feroceon_examine_debug_reason(struct target *target)
  376. {
  377. /* the MOE is not implemented */
  378. if (target->debug_reason != DBG_REASON_SINGLESTEP)
  379. target->debug_reason = DBG_REASON_DBGRQ;
  380. return ERROR_OK;
  381. }
  382. static int feroceon_bulk_write_memory(struct target *target,
  383. uint32_t address, uint32_t count, const uint8_t *buffer)
  384. {
  385. int retval;
  386. struct arm *arm = target->arch_info;
  387. struct arm7_9_common *arm7_9 = arm->arch_info;
  388. enum arm_state core_state = arm->core_state;
  389. uint32_t x, flip, shift, save[7];
  390. uint32_t i;
  391. /*
  392. * We can't use the dcc flow control bits, so let's transfer data
  393. * with 31 bits and flip the MSB each time a new data word is sent.
  394. */
  395. static uint32_t dcc_code[] = {
  396. 0xee115e10, /* 3: mrc p14, 0, r5, c1, c0, 0 */
  397. 0xe3a0301e, /* 1: mov r3, #30 */
  398. 0xe3a04002, /* mov r4, #2 */
  399. 0xee111e10, /* 2: mrc p14, 0, r1, c1, c0, 0 */
  400. 0xe1310005, /* teq r1, r5 */
  401. 0x0afffffc, /* beq 1b */
  402. 0xe1a05001, /* mov r5, r1 */
  403. 0xe1a01081, /* mov r1, r1, lsl #1 */
  404. 0xee112e10, /* 3: mrc p14, 0, r2, c1, c0, 0 */
  405. 0xe1320005, /* teq r2, r5 */
  406. 0x0afffffc, /* beq 3b */
  407. 0xe1a05002, /* mov r5, r2 */
  408. 0xe3c22102, /* bic r2, r2, #0x80000000 */
  409. 0xe1811332, /* orr r1, r1, r2, lsr r3 */
  410. 0xe2533001, /* subs r3, r3, #1 */
  411. 0xe4801004, /* str r1, [r0], #4 */
  412. 0xe1a01412, /* mov r1, r2, lsl r4 */
  413. 0xe2844001, /* add r4, r4, #1 */
  414. 0x4affffed, /* bmi 1b */
  415. 0xeafffff3, /* b 3b */
  416. };
  417. uint32_t dcc_size = sizeof(dcc_code);
  418. if (!arm7_9->dcc_downloads)
  419. return target_write_memory(target, address, 4, count, buffer);
  420. /* regrab previously allocated working_area, or allocate a new one */
  421. if (!arm7_9->dcc_working_area) {
  422. uint8_t dcc_code_buf[dcc_size];
  423. /* make sure we have a working area */
  424. if (target_alloc_working_area(target, dcc_size, &arm7_9->dcc_working_area) != ERROR_OK) {
  425. LOG_INFO("no working area available, falling back to memory writes");
  426. return target_write_memory(target, address, 4, count, buffer);
  427. }
  428. /* copy target instructions to target endianness */
  429. for (i = 0; i < dcc_size/4; i++)
  430. target_buffer_set_u32(target, dcc_code_buf + i*4, dcc_code[i]);
  431. /* write DCC code to working area */
  432. retval = target_write_memory(target,
  433. arm7_9->dcc_working_area->address, 4, dcc_size/4, dcc_code_buf);
  434. if (retval != ERROR_OK)
  435. return retval;
  436. }
  437. /* backup clobbered processor state */
  438. for (i = 0; i <= 5; i++)
  439. save[i] = buf_get_u32(arm->core_cache->reg_list[i].value, 0, 32);
  440. save[i] = buf_get_u32(arm->pc->value, 0, 32);
  441. /* set up target address in r0 */
  442. buf_set_u32(arm->core_cache->reg_list[0].value, 0, 32, address);
  443. arm->core_cache->reg_list[0].valid = 1;
  444. arm->core_cache->reg_list[0].dirty = 1;
  445. arm->core_state = ARM_STATE_ARM;
  446. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_COMMS_DATA], 0);
  447. arm7_9_resume(target, 0, arm7_9->dcc_working_area->address, 1, 1);
  448. /* send data over */
  449. x = 0;
  450. flip = 0;
  451. shift = 1;
  452. for (i = 0; i < count; i++) {
  453. uint32_t y = target_buffer_get_u32(target, buffer);
  454. uint32_t z = (x >> 1) | (y >> shift) | (flip ^= 0x80000000);
  455. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_COMMS_DATA], z);
  456. x = y << (32 - shift);
  457. if (++shift >= 32 || i + 1 >= count) {
  458. z = (x >> 1) | (flip ^= 0x80000000);
  459. embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_COMMS_DATA], z);
  460. x = 0;
  461. shift = 1;
  462. }
  463. buffer += 4;
  464. }
  465. retval = target_halt(target);
  466. if (retval == ERROR_OK)
  467. retval = target_wait_state(target, TARGET_HALTED, 500);
  468. if (retval == ERROR_OK) {
  469. uint32_t endaddress =
  470. buf_get_u32(arm->core_cache->reg_list[0].value, 0, 32);
  471. if (endaddress != address + count*4) {
  472. LOG_ERROR("DCC write failed,"
  473. " expected end address 0x%08" PRIx32
  474. " got 0x%0" PRIx32 "",
  475. address + count*4, endaddress);
  476. retval = ERROR_FAIL;
  477. }
  478. }
  479. /* restore target state */
  480. for (i = 0; i <= 5; i++) {
  481. buf_set_u32(arm->core_cache->reg_list[i].value, 0, 32, save[i]);
  482. arm->core_cache->reg_list[i].valid = 1;
  483. arm->core_cache->reg_list[i].dirty = 1;
  484. }
  485. buf_set_u32(arm->pc->value, 0, 32, save[i]);
  486. arm->pc->valid = 1;
  487. arm->pc->dirty = 1;
  488. arm->core_state = core_state;
  489. return retval;
  490. }
  491. static int feroceon_init_target(struct command_context *cmd_ctx,
  492. struct target *target)
  493. {
  494. arm9tdmi_init_target(cmd_ctx, target);
  495. return ERROR_OK;
  496. }
  497. static void feroceon_common_setup(struct target *target)
  498. {
  499. struct arm *arm = target->arch_info;
  500. struct arm7_9_common *arm7_9 = arm->arch_info;
  501. /* override some insn sequence functions */
  502. arm7_9->change_to_arm = feroceon_change_to_arm;
  503. arm7_9->read_core_regs = feroceon_read_core_regs;
  504. arm7_9->read_core_regs_target_buffer = feroceon_read_core_regs_target_buffer;
  505. arm7_9->read_xpsr = feroceon_read_xpsr;
  506. arm7_9->write_xpsr = feroceon_write_xpsr;
  507. arm7_9->write_xpsr_im8 = feroceon_write_xpsr_im8;
  508. arm7_9->write_core_regs = feroceon_write_core_regs;
  509. arm7_9->branch_resume = feroceon_branch_resume;
  510. arm7_9->branch_resume_thumb = feroceon_branch_resume_thumb;
  511. /* must be implemented with only one comparator */
  512. arm7_9->enable_single_step = feroceon_enable_single_step;
  513. arm7_9->disable_single_step = feroceon_disable_single_step;
  514. /* MOE is not implemented */
  515. arm7_9->examine_debug_reason = feroceon_examine_debug_reason;
  516. /* Note: asserting DBGRQ might not win over the undef exception.
  517. If that happens then just use "arm7_9 dbgrq disable". */
  518. arm7_9->use_dbgrq = 1;
  519. arm7_9->set_special_dbgrq = feroceon_set_dbgrq;
  520. /* only one working comparator */
  521. arm7_9->wp_available_max = 1;
  522. arm7_9->wp1_used_default = -1;
  523. }
  524. static int feroceon_target_create(struct target *target, Jim_Interp *interp)
  525. {
  526. struct arm926ejs_common *arm926ejs = calloc(1, sizeof(struct arm926ejs_common));
  527. arm926ejs_init_arch_info(target, arm926ejs, target->tap);
  528. feroceon_common_setup(target);
  529. /* the standard ARM926 methods don't always work (don't ask...) */
  530. arm926ejs->read_cp15 = feroceon_read_cp15;
  531. arm926ejs->write_cp15 = feroceon_write_cp15;
  532. return ERROR_OK;
  533. }
  534. static int dragonite_target_create(struct target *target, Jim_Interp *interp)
  535. {
  536. struct arm966e_common *arm966e = calloc(1, sizeof(struct arm966e_common));
  537. arm966e_init_arch_info(target, arm966e, target->tap);
  538. feroceon_common_setup(target);
  539. return ERROR_OK;
  540. }
  541. static int feroceon_examine(struct target *target)
  542. {
  543. struct arm *arm;
  544. struct arm7_9_common *arm7_9;
  545. int retval;
  546. retval = arm7_9_examine(target);
  547. if (retval != ERROR_OK)
  548. return retval;
  549. arm = target->arch_info;
  550. arm7_9 = arm->arch_info;
  551. /* the COMMS_CTRL bits are all contiguous */
  552. if (buf_get_u32(arm7_9->eice_cache->reg_list[EICE_COMMS_CTRL].value, 2, 4) != 6)
  553. LOG_ERROR("unexpected Feroceon EICE version signature");
  554. arm7_9->eice_cache->reg_list[EICE_DBG_CTRL].size = 6;
  555. arm7_9->eice_cache->reg_list[EICE_DBG_STAT].size = 5;
  556. arm7_9->has_monitor_mode = 1;
  557. /* vector catch reg is not initialized on reset */
  558. embeddedice_set_reg(&arm7_9->eice_cache->reg_list[EICE_VEC_CATCH], 0);
  559. /* clear monitor mode, enable comparators */
  560. embeddedice_read_reg(&arm7_9->eice_cache->reg_list[EICE_DBG_CTRL]);
  561. jtag_execute_queue();
  562. buf_set_u32(arm7_9->eice_cache->reg_list[EICE_DBG_CTRL].value, 4, 1, 0);
  563. buf_set_u32(arm7_9->eice_cache->reg_list[EICE_DBG_CTRL].value, 5, 1, 0);
  564. embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_DBG_CTRL]);
  565. return ERROR_OK;
  566. }
  567. struct target_type feroceon_target = {
  568. .name = "feroceon",
  569. .poll = arm7_9_poll,
  570. .arch_state = arm926ejs_arch_state,
  571. .target_request_data = arm7_9_target_request_data,
  572. .halt = arm7_9_halt,
  573. .resume = arm7_9_resume,
  574. .step = arm7_9_step,
  575. .assert_reset = feroceon_assert_reset,
  576. .deassert_reset = arm7_9_deassert_reset,
  577. .soft_reset_halt = arm926ejs_soft_reset_halt,
  578. .get_gdb_reg_list = arm_get_gdb_reg_list,
  579. .read_memory = arm7_9_read_memory,
  580. .write_memory = arm926ejs_write_memory,
  581. .bulk_write_memory = feroceon_bulk_write_memory,
  582. .checksum_memory = arm_checksum_memory,
  583. .blank_check_memory = arm_blank_check_memory,
  584. .run_algorithm = armv4_5_run_algorithm,
  585. .add_breakpoint = arm7_9_add_breakpoint,
  586. .remove_breakpoint = arm7_9_remove_breakpoint,
  587. .add_watchpoint = arm7_9_add_watchpoint,
  588. .remove_watchpoint = arm7_9_remove_watchpoint,
  589. .commands = arm926ejs_command_handlers,
  590. .target_create = feroceon_target_create,
  591. .init_target = feroceon_init_target,
  592. .examine = feroceon_examine,
  593. };
  594. struct target_type dragonite_target = {
  595. .name = "dragonite",
  596. .poll = arm7_9_poll,
  597. .arch_state = arm_arch_state,
  598. .target_request_data = arm7_9_target_request_data,
  599. .halt = arm7_9_halt,
  600. .resume = arm7_9_resume,
  601. .step = arm7_9_step,
  602. .assert_reset = feroceon_assert_reset,
  603. .deassert_reset = arm7_9_deassert_reset,
  604. .soft_reset_halt = arm7_9_soft_reset_halt,
  605. .get_gdb_reg_list = arm_get_gdb_reg_list,
  606. .read_memory = arm7_9_read_memory,
  607. .write_memory = arm7_9_write_memory,
  608. .bulk_write_memory = feroceon_bulk_write_memory,
  609. .checksum_memory = arm_checksum_memory,
  610. .blank_check_memory = arm_blank_check_memory,
  611. .run_algorithm = armv4_5_run_algorithm,
  612. .add_breakpoint = arm7_9_add_breakpoint,
  613. .remove_breakpoint = arm7_9_remove_breakpoint,
  614. .add_watchpoint = arm7_9_add_watchpoint,
  615. .remove_watchpoint = arm7_9_remove_watchpoint,
  616. .commands = arm966e_command_handlers,
  617. .target_create = dragonite_target_create,
  618. .init_target = feroceon_init_target,
  619. .examine = feroceon_examine,
  620. };