2022-06-26 18:24:07 -05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
2008-02-29 06:37:45 -06:00
|
|
|
/***************************************************************************
|
2009-09-11 03:03:46 -05:00
|
|
|
* Copyright (C) 2008-2009 by Marvell Semiconductors, Inc. *
|
2008-02-29 06:37:45 -06:00
|
|
|
* Written by Nicolas Pitre <nico@marvell.com> *
|
|
|
|
* *
|
2008-10-30 02:49:13 -05:00
|
|
|
* Copyright (C) 2008 by Hongtao Zheng *
|
|
|
|
* hontor@126.com *
|
2008-02-29 06:37:45 -06:00
|
|
|
***************************************************************************/
|
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
/*
|
2009-09-11 03:03:46 -05:00
|
|
|
* Marvell Feroceon/Dragonite support.
|
2008-02-21 05:43:04 -06:00
|
|
|
*
|
2009-09-11 03:03:46 -05:00
|
|
|
* The Feroceon core, as found in the Orion and Kirkwood SoCs amongst others,
|
|
|
|
* mimics the ARM926 ICE interface with the following differences:
|
2008-02-21 05:43:04 -06:00
|
|
|
*
|
|
|
|
* - the MOE (method of entry) reporting is not implemented
|
|
|
|
*
|
|
|
|
* - breakpoint/watchpoint comparator #1 is seemingly not implemented
|
|
|
|
*
|
|
|
|
* - due to a different pipeline implementation, some injected debug
|
|
|
|
* instruction sequences have to be somewhat different
|
|
|
|
*
|
|
|
|
* Other issues:
|
|
|
|
*
|
|
|
|
* - asserting DBGRQ doesn't work if target is looping on the undef vector
|
|
|
|
*
|
|
|
|
* - the EICE version signature in the COMMS_CTL reg is next to the flow bits
|
2020-07-12 13:25:00 -05:00
|
|
|
* not at the top, and rather meaningless due to existing discrepancies
|
2008-02-21 05:43:04 -06:00
|
|
|
*
|
|
|
|
* - the DCC channel is half duplex (only one FIFO for both directions) with
|
|
|
|
* seemingly no proper flow control.
|
2009-09-11 03:03:46 -05:00
|
|
|
*
|
|
|
|
* The Dragonite core is the non-mmu version based on the ARM966 model, and
|
|
|
|
* it shares the above issues as well.
|
2008-02-21 05:43:04 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "arm926ejs.h"
|
2009-09-11 03:03:46 -05:00
|
|
|
#include "arm966e.h"
|
2009-05-31 07:38:28 -05:00
|
|
|
#include "target_type.h"
|
2009-11-16 02:35:14 -06:00
|
|
|
#include "register.h"
|
2009-12-07 16:54:12 -06:00
|
|
|
#include "arm_opcodes.h"
|
2009-11-16 02:35:14 -06:00
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_assert_reset(struct target *target)
|
2008-08-20 02:27:24 -05:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2008-08-20 02:27:24 -05:00
|
|
|
int ud = arm7_9->use_dbgrq;
|
|
|
|
|
2015-03-15 13:09:15 -05:00
|
|
|
/* TODO: apply hw reset signal in not examined state */
|
|
|
|
if (!(target_was_examined(target))) {
|
|
|
|
LOG_WARNING("Reset is not asserted because the target is not examined.");
|
|
|
|
LOG_WARNING("Use a reset button or power cycle the target.");
|
|
|
|
return ERROR_TARGET_NOT_EXAMINED;
|
|
|
|
}
|
|
|
|
|
2008-08-20 02:27:24 -05:00
|
|
|
arm7_9->use_dbgrq = 0;
|
|
|
|
if (target->reset_halt)
|
|
|
|
arm7_9_halt(target);
|
|
|
|
arm7_9->use_dbgrq = ud;
|
|
|
|
return arm7_9_assert_reset(target);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_dummy_clock_out(struct arm_jtag *jtag_info, uint32_t instr)
|
2008-06-06 01:12:04 -05:00
|
|
|
{
|
2009-11-13 05:28:03 -06:00
|
|
|
struct scan_field fields[3];
|
2009-06-18 02:04:08 -05:00
|
|
|
uint8_t out_buf[4];
|
|
|
|
uint8_t instr_buf[4];
|
|
|
|
uint8_t sysspeed_buf = 0x0;
|
2010-07-19 07:37:45 -05:00
|
|
|
int retval;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
/* prepare buffer */
|
|
|
|
buf_set_u32(out_buf, 0, 32, 0);
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
buf_set_u32(instr_buf, 0, 32, flip_u32(instr, 32));
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2010-07-20 01:23:59 -05:00
|
|
|
retval = arm_jtag_scann(jtag_info, 0x1, TAP_DRPAUSE);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2015-11-13 17:30:28 -06:00
|
|
|
retval = arm_jtag_set_instr(jtag_info->tap, jtag_info->intest_instr, NULL, TAP_DRPAUSE);
|
2010-07-19 07:37:45 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
fields[0].num_bits = 32;
|
|
|
|
fields[0].out_value = out_buf;
|
|
|
|
fields[0].in_value = NULL;
|
2009-06-23 17:49:23 -05:00
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
fields[1].num_bits = 3;
|
|
|
|
fields[1].out_value = &sysspeed_buf;
|
|
|
|
fields[1].in_value = NULL;
|
2009-06-23 17:49:23 -05:00
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
fields[2].num_bits = 32;
|
|
|
|
fields[2].out_value = instr_buf;
|
|
|
|
fields[2].in_value = NULL;
|
2009-06-23 17:49:23 -05:00
|
|
|
|
2010-03-16 08:13:03 -05:00
|
|
|
jtag_add_dr_scan(jtag_info->tap, 3, fields, TAP_DRPAUSE);
|
2008-06-06 01:12:04 -05:00
|
|
|
|
2010-03-16 08:13:03 -05:00
|
|
|
/* no jtag_add_runtest(0, TAP_DRPAUSE) here */
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_change_to_arm(struct target *target, uint32_t *r0,
|
|
|
|
uint32_t *pc)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
/*
|
2008-12-13 00:25:50 -06:00
|
|
|
* save r0 before using it and put system in ARM state
|
2008-02-21 05:43:04 -06:00
|
|
|
* to allow common handling of ARM and THUMB debugging
|
|
|
|
*/
|
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
feroceon_dummy_clock_out(jtag_info, ARMV4_5_T_NOP);
|
|
|
|
feroceon_dummy_clock_out(jtag_info, ARMV4_5_T_NOP);
|
|
|
|
feroceon_dummy_clock_out(jtag_info, ARMV4_5_T_NOP);
|
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_STR(0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, r0, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_MOV(0, 15), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_STR(0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, pc, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_BX(15), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
jtag_execute_queue();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fix program counter:
|
2008-06-06 01:12:04 -05:00
|
|
|
* MOV R0, PC was the 7th instruction (+12)
|
2008-02-21 05:43:04 -06:00
|
|
|
* reading PC in Thumb state gives address of instruction + 4
|
|
|
|
*/
|
2008-06-06 01:12:04 -05:00
|
|
|
*pc -= (12 + 4);
|
2008-02-21 05:43:04 -06:00
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_read_core_regs(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t mask, uint32_t *core_regs[16])
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
|
|
|
int i;
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
for (i = 0; i <= 15; i++)
|
|
|
|
if (mask & (1 << i))
|
|
|
|
arm9tdmi_clock_data_in(jtag_info, core_regs[i]);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_read_core_regs_target_buffer(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t mask, void *buffer, int size)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
|
|
|
int i;
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-02-21 05:43:04 -06:00
|
|
|
int be = (target->endianness == TARGET_BIG_ENDIAN) ? 1 : 0;
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t *buf_u32 = buffer;
|
2009-06-18 02:07:59 -05:00
|
|
|
uint16_t *buf_u16 = buffer;
|
2009-06-18 02:04:08 -05:00
|
|
|
uint8_t *buf_u8 = buffer;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
for (i = 0; i <= 15; i++) {
|
2008-02-21 05:43:04 -06:00
|
|
|
if (mask & (1 << i)) {
|
2012-02-05 06:03:04 -06:00
|
|
|
switch (size) {
|
2008-02-21 05:43:04 -06:00
|
|
|
case 4:
|
|
|
|
arm9tdmi_clock_data_in_endianness(jtag_info, buf_u32++, 4, be);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
arm9tdmi_clock_data_in_endianness(jtag_info, buf_u16++, 2, be);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
arm9tdmi_clock_data_in_endianness(jtag_info, buf_u8++, 1, be);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_read_xpsr(struct target *target, uint32_t *xpsr, int spsr)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MRS(0, spsr & 1), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, 1, 0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, xpsr, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_write_xpsr(struct target *target, uint32_t xpsr, int spsr)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2009-06-20 22:16:46 -05:00
|
|
|
LOG_DEBUG("xpsr: %8.8" PRIx32 ", spsr: %i", xpsr, spsr);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM(xpsr & 0xff, 0, 1, spsr), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff00) >> 8, 0xc, 2, spsr), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff0000) >> 16, 0x8, 4, spsr), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM((xpsr & 0xff000000) >> 24, 0x4, 8, spsr), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_write_xpsr_im8(struct target *target,
|
|
|
|
uint8_t xpsr_im, int rot, int spsr)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
2008-03-25 10:45:17 -05:00
|
|
|
LOG_DEBUG("xpsr_im: %2.2x, rot: %i, spsr: %i", xpsr_im, rot, spsr);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MSR_IM(xpsr_im, rot, 1, spsr), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_write_core_regs(struct target *target,
|
|
|
|
uint32_t mask, uint32_t core_regs[16])
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
|
|
|
int i;
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_LDMIA(0, mask & 0xffff, 0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
for (i = 0; i <= 15; i++)
|
|
|
|
if (mask & (1 << i))
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, core_regs[i], NULL, 0);
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_branch_resume(struct target *target)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_B(0xfffff9, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 1);
|
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
arm7_9->need_bypass_before_restart = 1;
|
2008-02-21 05:43:04 -06:00
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_branch_resume_thumb(struct target *target)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2008-03-25 10:45:17 -05:00
|
|
|
LOG_DEBUG("-");
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2012-01-19 04:06:37 -06:00
|
|
|
uint32_t r0 = buf_get_u32(arm->core_cache->reg_list[0].value, 0, 32);
|
|
|
|
uint32_t pc = buf_get_u32(arm->pc->value, 0, 32);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, 0xE28F0001, 0, NULL, 0); /* add r0,pc,#1 */
|
2008-02-21 05:43:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_BX(0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
2008-06-06 01:12:04 -05:00
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_LDMIA(0, 0x1), 0, NULL, 0);
|
2008-02-21 05:43:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2009-10-22 22:23:44 -05:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, r0, NULL, 0);
|
2008-02-21 05:43:04 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 0);
|
|
|
|
|
|
|
|
pc = (pc & 2) >> 1;
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_B(0x7e9 + pc), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_T_NOP, 0, NULL, 1);
|
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
arm7_9->need_bypass_before_restart = 1;
|
2008-02-21 05:43:04 -06:00
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_read_cp15(struct target *target, uint32_t op1,
|
2021-04-27 08:58:26 -05:00
|
|
|
uint32_t op2, uint32_t crn, uint32_t crm, uint32_t *value)
|
2008-02-23 10:30:13 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-02-23 10:30:13 -06:00
|
|
|
int err;
|
|
|
|
|
2021-04-27 08:58:26 -05:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MRC(15, op1, 0, crn, crm, op2), 0, NULL, 0);
|
2008-02-23 10:30:13 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 1);
|
|
|
|
err = arm7_9_execute_sys_speed(target);
|
|
|
|
if (err != ERROR_OK)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_STMIA(0, 1, 0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, value, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
return jtag_execute_queue();
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_write_cp15(struct target *target, uint32_t op1,
|
2021-04-27 08:58:26 -05:00
|
|
|
uint32_t op2, uint32_t crn, uint32_t crm, uint32_t value)
|
2008-02-23 10:30:13 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 10:41:00 -06:00
|
|
|
struct arm_jtag *jtag_info = &arm7_9->jtag_info;
|
2008-02-23 10:30:13 -06:00
|
|
|
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_LDMIA(0, 1, 0, 0), 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, value, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 0);
|
|
|
|
|
2021-04-27 08:58:26 -05:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_MCR(15, op1, 0, crn, crm, op2), 0, NULL, 0);
|
2008-02-23 10:30:13 -06:00
|
|
|
arm9tdmi_clock_out(jtag_info, ARMV4_5_NOP, 0, NULL, 1);
|
|
|
|
return arm7_9_execute_sys_speed(target);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_set_dbgrq(struct target *target)
|
2008-06-06 01:12:04 -05:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2009-11-13 11:55:49 -06:00
|
|
|
struct reg *dbg_ctrl = &arm7_9->eice_cache->reg_list[EICE_DBG_CTRL];
|
2008-06-06 01:12:04 -05:00
|
|
|
|
|
|
|
buf_set_u32(dbg_ctrl->value, 0, 8, 2);
|
|
|
|
embeddedice_store_reg(dbg_ctrl);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_enable_single_step(struct target *target, uint32_t next_pc)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/* set a breakpoint there */
|
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_VALUE], next_pc);
|
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_MASK], 0);
|
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_DATA_MASK], 0xffffffff);
|
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_VALUE], 0x100);
|
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_MASK], 0xf7);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_disable_single_step(struct target *target)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_VALUE]);
|
|
|
|
embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_ADDR_MASK]);
|
|
|
|
embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_DATA_MASK]);
|
|
|
|
embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_MASK]);
|
|
|
|
embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_W0_CONTROL_VALUE]);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_examine_debug_reason(struct target *target)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
|
|
|
/* the MOE is not implemented */
|
|
|
|
if (target->debug_reason != DBG_REASON_SINGLESTEP)
|
|
|
|
target->debug_reason = DBG_REASON_DBGRQ;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_bulk_write_memory(struct target *target,
|
2013-09-23 03:27:03 -05:00
|
|
|
target_addr_t address, uint32_t count, const uint8_t *buffer)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2008-10-15 06:44:36 -05:00
|
|
|
int retval;
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
|
|
|
enum arm_state core_state = arm->core_state;
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t x, flip, shift, save[7];
|
|
|
|
uint32_t i;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We can't use the dcc flow control bits, so let's transfer data
|
|
|
|
* with 31 bits and flip the MSB each time a new data word is sent.
|
|
|
|
*/
|
2012-02-05 06:03:04 -06:00
|
|
|
static uint32_t dcc_code[] = {
|
2008-02-21 05:43:04 -06:00
|
|
|
0xee115e10, /* 3: mrc p14, 0, r5, c1, c0, 0 */
|
|
|
|
0xe3a0301e, /* 1: mov r3, #30 */
|
|
|
|
0xe3a04002, /* mov r4, #2 */
|
|
|
|
0xee111e10, /* 2: mrc p14, 0, r1, c1, c0, 0 */
|
|
|
|
0xe1310005, /* teq r1, r5 */
|
|
|
|
0x0afffffc, /* beq 1b */
|
|
|
|
0xe1a05001, /* mov r5, r1 */
|
|
|
|
0xe1a01081, /* mov r1, r1, lsl #1 */
|
|
|
|
0xee112e10, /* 3: mrc p14, 0, r2, c1, c0, 0 */
|
|
|
|
0xe1320005, /* teq r2, r5 */
|
|
|
|
0x0afffffc, /* beq 3b */
|
|
|
|
0xe1a05002, /* mov r5, r2 */
|
|
|
|
0xe3c22102, /* bic r2, r2, #0x80000000 */
|
|
|
|
0xe1811332, /* orr r1, r1, r2, lsr r3 */
|
|
|
|
0xe2533001, /* subs r3, r3, #1 */
|
|
|
|
0xe4801004, /* str r1, [r0], #4 */
|
|
|
|
0xe1a01412, /* mov r1, r2, lsl r4 */
|
|
|
|
0xe2844001, /* add r4, r4, #1 */
|
|
|
|
0x4affffed, /* bmi 1b */
|
|
|
|
0xeafffff3, /* b 3b */
|
|
|
|
};
|
|
|
|
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t dcc_size = sizeof(dcc_code);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
2013-10-04 17:19:08 -05:00
|
|
|
if (address % 4 != 0)
|
|
|
|
return ERROR_TARGET_UNALIGNED_ACCESS;
|
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
if (!arm7_9->dcc_downloads)
|
2013-10-04 17:19:08 -05:00
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/* regrab previously allocated working_area, or allocate a new one */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!arm7_9->dcc_working_area) {
|
2009-06-18 02:04:08 -05:00
|
|
|
uint8_t dcc_code_buf[dcc_size];
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/* make sure we have a working area */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target_alloc_working_area(target, dcc_size, &arm7_9->dcc_working_area) != ERROR_OK) {
|
2008-03-25 10:45:17 -05:00
|
|
|
LOG_INFO("no working area available, falling back to memory writes");
|
2013-10-04 17:19:08 -05:00
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
2008-02-21 05:43:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* copy target instructions to target endianness */
|
2013-10-24 17:26:51 -05:00
|
|
|
target_buffer_set_u32_array(target, dcc_code_buf, ARRAY_SIZE(dcc_code), dcc_code);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
2013-10-04 17:19:08 -05:00
|
|
|
/* write DCC code to working area, using the non-optimized
|
|
|
|
* memory write to avoid ending up here again */
|
|
|
|
retval = arm7_9_write_memory_no_opt(target,
|
2012-02-05 06:03:04 -06:00
|
|
|
arm7_9->dcc_working_area->address, 4, dcc_size/4, dcc_code_buf);
|
|
|
|
if (retval != ERROR_OK)
|
2008-10-15 06:44:36 -05:00
|
|
|
return retval;
|
2008-02-21 05:43:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* backup clobbered processor state */
|
|
|
|
for (i = 0; i <= 5; i++)
|
2012-01-19 04:06:37 -06:00
|
|
|
save[i] = buf_get_u32(arm->core_cache->reg_list[i].value, 0, 32);
|
|
|
|
save[i] = buf_get_u32(arm->pc->value, 0, 32);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/* set up target address in r0 */
|
2012-01-19 04:06:37 -06:00
|
|
|
buf_set_u32(arm->core_cache->reg_list[0].value, 0, 32, address);
|
2019-02-26 07:09:22 -06:00
|
|
|
arm->core_cache->reg_list[0].valid = true;
|
|
|
|
arm->core_cache->reg_list[0].dirty = true;
|
2012-01-19 04:06:37 -06:00
|
|
|
arm->core_state = ARM_STATE_ARM;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
2008-12-13 00:25:50 -06:00
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_COMMS_DATA], 0);
|
2008-02-21 05:43:04 -06:00
|
|
|
arm7_9_resume(target, 0, arm7_9->dcc_working_area->address, 1, 1);
|
|
|
|
|
|
|
|
/* send data over */
|
|
|
|
x = 0;
|
|
|
|
flip = 0;
|
|
|
|
shift = 1;
|
2012-02-05 06:03:04 -06:00
|
|
|
for (i = 0; i < count; i++) {
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t y = target_buffer_get_u32(target, buffer);
|
|
|
|
uint32_t z = (x >> 1) | (y >> shift) | (flip ^= 0x80000000);
|
2008-12-13 00:25:50 -06:00
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_COMMS_DATA], z);
|
2008-02-21 05:43:04 -06:00
|
|
|
x = y << (32 - shift);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (++shift >= 32 || i + 1 >= count) {
|
2008-02-21 05:43:04 -06:00
|
|
|
z = (x >> 1) | (flip ^= 0x80000000);
|
2008-12-13 00:25:50 -06:00
|
|
|
embeddedice_write_reg(&arm7_9->eice_cache->reg_list[EICE_COMMS_DATA], z);
|
2008-02-21 05:43:04 -06:00
|
|
|
x = 0;
|
|
|
|
shift = 1;
|
|
|
|
}
|
|
|
|
buffer += 4;
|
|
|
|
}
|
|
|
|
|
2009-09-11 00:57:51 -05:00
|
|
|
retval = target_halt(target);
|
|
|
|
if (retval == ERROR_OK)
|
|
|
|
retval = target_wait_state(target, TARGET_HALTED, 500);
|
|
|
|
if (retval == ERROR_OK) {
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t endaddress =
|
2012-01-19 04:06:37 -06:00
|
|
|
buf_get_u32(arm->core_cache->reg_list[0].value, 0, 32);
|
2009-09-11 00:57:51 -05:00
|
|
|
if (endaddress != address + count*4) {
|
|
|
|
LOG_ERROR("DCC write failed,"
|
2013-09-23 03:27:03 -05:00
|
|
|
" expected end address 0x%08" TARGET_PRIxADDR
|
2009-09-11 00:57:51 -05:00
|
|
|
" got 0x%0" PRIx32 "",
|
2012-02-05 06:03:04 -06:00
|
|
|
address + count*4, endaddress);
|
2009-09-11 00:57:51 -05:00
|
|
|
retval = ERROR_FAIL;
|
|
|
|
}
|
|
|
|
}
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/* restore target state */
|
2012-02-05 06:03:04 -06:00
|
|
|
for (i = 0; i <= 5; i++) {
|
2012-01-19 04:06:37 -06:00
|
|
|
buf_set_u32(arm->core_cache->reg_list[i].value, 0, 32, save[i]);
|
2019-02-26 07:09:22 -06:00
|
|
|
arm->core_cache->reg_list[i].valid = true;
|
|
|
|
arm->core_cache->reg_list[i].dirty = true;
|
2008-02-21 05:43:04 -06:00
|
|
|
}
|
2012-01-19 04:06:37 -06:00
|
|
|
buf_set_u32(arm->pc->value, 0, 32, save[i]);
|
2019-02-26 07:09:22 -06:00
|
|
|
arm->pc->valid = true;
|
|
|
|
arm->pc->dirty = true;
|
2012-01-19 04:06:37 -06:00
|
|
|
arm->core_state = core_state;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
2009-09-11 00:57:51 -05:00
|
|
|
return retval;
|
2008-02-21 05:43:04 -06:00
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_init_target(struct command_context *cmd_ctx,
|
|
|
|
struct target *target)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
|
|
|
arm9tdmi_init_target(cmd_ctx, target);
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2020-05-25 04:28:22 -05:00
|
|
|
static void feroceon_deinit_target(struct target *target)
|
|
|
|
{
|
|
|
|
arm9tdmi_deinit_target(target);
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static void feroceon_common_setup(struct target *target)
|
2008-02-21 05:43:04 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/* override some insn sequence functions */
|
|
|
|
arm7_9->change_to_arm = feroceon_change_to_arm;
|
|
|
|
arm7_9->read_core_regs = feroceon_read_core_regs;
|
|
|
|
arm7_9->read_core_regs_target_buffer = feroceon_read_core_regs_target_buffer;
|
|
|
|
arm7_9->read_xpsr = feroceon_read_xpsr;
|
|
|
|
arm7_9->write_xpsr = feroceon_write_xpsr;
|
|
|
|
arm7_9->write_xpsr_im8 = feroceon_write_xpsr_im8;
|
|
|
|
arm7_9->write_core_regs = feroceon_write_core_regs;
|
|
|
|
arm7_9->branch_resume = feroceon_branch_resume;
|
|
|
|
arm7_9->branch_resume_thumb = feroceon_branch_resume_thumb;
|
|
|
|
|
|
|
|
/* must be implemented with only one comparator */
|
|
|
|
arm7_9->enable_single_step = feroceon_enable_single_step;
|
|
|
|
arm7_9->disable_single_step = feroceon_disable_single_step;
|
|
|
|
|
2013-03-11 16:21:13 -05:00
|
|
|
arm7_9->bulk_write_memory = feroceon_bulk_write_memory;
|
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
/* MOE is not implemented */
|
|
|
|
arm7_9->examine_debug_reason = feroceon_examine_debug_reason;
|
|
|
|
|
2008-06-06 01:12:04 -05:00
|
|
|
/* Note: asserting DBGRQ might not win over the undef exception.
|
|
|
|
If that happens then just use "arm7_9 dbgrq disable". */
|
|
|
|
arm7_9->use_dbgrq = 1;
|
|
|
|
arm7_9->set_special_dbgrq = feroceon_set_dbgrq;
|
2008-02-21 05:43:04 -06:00
|
|
|
|
|
|
|
/* only one working comparator */
|
2008-12-13 00:25:50 -06:00
|
|
|
arm7_9->wp_available_max = 1;
|
|
|
|
arm7_9->wp1_used_default = -1;
|
2009-09-11 03:03:46 -05:00
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_target_create(struct target *target, Jim_Interp *interp)
|
2009-09-11 03:03:46 -05:00
|
|
|
{
|
2012-02-05 06:03:04 -06:00
|
|
|
struct arm926ejs_common *arm926ejs = calloc(1, sizeof(struct arm926ejs_common));
|
2009-09-11 03:03:46 -05:00
|
|
|
|
|
|
|
arm926ejs_init_arch_info(target, arm926ejs, target->tap);
|
|
|
|
feroceon_common_setup(target);
|
|
|
|
|
2013-10-04 17:19:08 -05:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
|
|
|
arm7_9->write_memory = arm926ejs_write_memory;
|
|
|
|
|
2009-09-11 03:03:46 -05:00
|
|
|
/* the standard ARM926 methods don't always work (don't ask...) */
|
|
|
|
arm926ejs->read_cp15 = feroceon_read_cp15;
|
|
|
|
arm926ejs->write_cp15 = feroceon_write_cp15;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int dragonite_target_create(struct target *target, Jim_Interp *interp)
|
2009-09-11 03:03:46 -05:00
|
|
|
{
|
2012-02-05 06:03:04 -06:00
|
|
|
struct arm966e_common *arm966e = calloc(1, sizeof(struct arm966e_common));
|
2009-09-11 03:03:46 -05:00
|
|
|
|
|
|
|
arm966e_init_arch_info(target, arm966e, target->tap);
|
|
|
|
feroceon_common_setup(target);
|
2008-02-21 05:43:04 -06:00
|
|
|
|
2013-10-04 17:19:08 -05:00
|
|
|
struct arm *arm = target->arch_info;
|
|
|
|
struct arm7_9_common *arm7_9 = arm->arch_info;
|
|
|
|
arm7_9->write_memory = arm7_9_write_memory;
|
|
|
|
|
2008-02-21 05:43:04 -06:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
2008-04-15 14:08:25 -05:00
|
|
|
|
2010-06-19 23:20:01 -05:00
|
|
|
static int feroceon_examine(struct target *target)
|
2008-04-15 14:08:25 -05:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm;
|
2009-11-13 10:40:03 -06:00
|
|
|
struct arm7_9_common *arm7_9;
|
2008-04-15 14:08:25 -05:00
|
|
|
int retval;
|
|
|
|
|
2009-11-13 18:26:39 -06:00
|
|
|
retval = arm7_9_examine(target);
|
2009-06-23 17:38:12 -05:00
|
|
|
if (retval != ERROR_OK)
|
2008-04-15 14:08:25 -05:00
|
|
|
return retval;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2012-01-19 04:06:37 -06:00
|
|
|
arm = target->arch_info;
|
|
|
|
arm7_9 = arm->arch_info;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-04-15 14:08:25 -05:00
|
|
|
/* the COMMS_CTRL bits are all contiguous */
|
|
|
|
if (buf_get_u32(arm7_9->eice_cache->reg_list[EICE_COMMS_CTRL].value, 2, 4) != 6)
|
|
|
|
LOG_ERROR("unexpected Feroceon EICE version signature");
|
2008-12-13 00:25:50 -06:00
|
|
|
|
|
|
|
arm7_9->eice_cache->reg_list[EICE_DBG_CTRL].size = 6;
|
|
|
|
arm7_9->eice_cache->reg_list[EICE_DBG_STAT].size = 5;
|
2008-04-15 14:08:25 -05:00
|
|
|
arm7_9->has_monitor_mode = 1;
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-04-15 14:08:25 -05:00
|
|
|
/* vector catch reg is not initialized on reset */
|
|
|
|
embeddedice_set_reg(&arm7_9->eice_cache->reg_list[EICE_VEC_CATCH], 0);
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-04-15 14:08:25 -05:00
|
|
|
/* clear monitor mode, enable comparators */
|
|
|
|
embeddedice_read_reg(&arm7_9->eice_cache->reg_list[EICE_DBG_CTRL]);
|
2008-12-13 00:25:50 -06:00
|
|
|
jtag_execute_queue();
|
2008-04-15 14:08:25 -05:00
|
|
|
buf_set_u32(arm7_9->eice_cache->reg_list[EICE_DBG_CTRL].value, 4, 1, 0);
|
2008-12-13 00:25:50 -06:00
|
|
|
buf_set_u32(arm7_9->eice_cache->reg_list[EICE_DBG_CTRL].value, 5, 1, 0);
|
2008-04-15 14:08:25 -05:00
|
|
|
embeddedice_store_reg(&arm7_9->eice_cache->reg_list[EICE_DBG_CTRL]);
|
2008-12-13 00:25:50 -06:00
|
|
|
|
2008-04-15 14:08:25 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
2009-09-11 03:04:50 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
struct target_type feroceon_target = {
|
2009-09-11 03:04:50 -05:00
|
|
|
.name = "feroceon",
|
|
|
|
|
|
|
|
.poll = arm7_9_poll,
|
|
|
|
.arch_state = arm926ejs_arch_state,
|
|
|
|
|
|
|
|
.target_request_data = arm7_9_target_request_data,
|
|
|
|
|
|
|
|
.halt = arm7_9_halt,
|
|
|
|
.resume = arm7_9_resume,
|
|
|
|
.step = arm7_9_step,
|
|
|
|
|
|
|
|
.assert_reset = feroceon_assert_reset,
|
|
|
|
.deassert_reset = arm7_9_deassert_reset,
|
|
|
|
.soft_reset_halt = arm926ejs_soft_reset_halt,
|
|
|
|
|
target/arm: add support for multi-architecture gdb
GDB can be built for multi-architecture through the command
./configure --enable-targets=all && make
Such multi-architecture GDB requires the target's architecture to
be selected either manually by the user through the GDB command
"set architecture" or automatically by the target description sent
by the remote target (i.e. OpenOCD).
Commit e65acd889c61a424c7bd72fdee5d6a3aee1d8504 ("gdb_server: add
support for architecture element") already provides the required
infrastructure to support multi-architecture gdb.
arm-none-eabi-gdb 8.2 uses "arm" as default architecture, but also
supports the following values: "arm_any", "armv2", "armv2a",
"armv3", "armv3m", "armv4", "armv4t", "armv5", "armv5t", "armv5te",
"armv5tej", "armv6", "armv6k", "armv6kz", "armv6-m", "armv6s-m",
"armv6t2", "armv7", "armv7e-m", "armv8-a", "armv8-m.base",
"armv8-m.main", "armv8-r", "ep9312", "iwmmxt", "iwmmxt2", "xscale".
These values can be displayed on arm gdb prompt by typing
"set architecture " followed by a TAB for autocompletion.
Set the gdb architecture value for all arm targets to "arm".
Change-Id: I176cb89878606e1febd546ce26543b3e7849500a
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/4754
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
2018-11-01 08:50:27 -05:00
|
|
|
.get_gdb_arch = arm_get_gdb_arch,
|
2009-12-07 16:54:13 -06:00
|
|
|
.get_gdb_reg_list = arm_get_gdb_reg_list,
|
2009-09-11 03:04:50 -05:00
|
|
|
|
|
|
|
.read_memory = arm7_9_read_memory,
|
2013-10-04 17:19:08 -05:00
|
|
|
.write_memory = arm7_9_write_memory_opt,
|
2009-11-15 12:35:34 -06:00
|
|
|
|
|
|
|
.checksum_memory = arm_checksum_memory,
|
|
|
|
.blank_check_memory = arm_blank_check_memory,
|
2009-09-11 03:04:50 -05:00
|
|
|
|
|
|
|
.run_algorithm = armv4_5_run_algorithm,
|
|
|
|
|
|
|
|
.add_breakpoint = arm7_9_add_breakpoint,
|
|
|
|
.remove_breakpoint = arm7_9_remove_breakpoint,
|
|
|
|
.add_watchpoint = arm7_9_add_watchpoint,
|
|
|
|
.remove_watchpoint = arm7_9_remove_watchpoint,
|
|
|
|
|
2009-11-23 10:17:01 -06:00
|
|
|
.commands = arm926ejs_command_handlers,
|
2009-09-11 03:04:50 -05:00
|
|
|
.target_create = feroceon_target_create,
|
|
|
|
.init_target = feroceon_init_target,
|
2020-05-25 04:28:22 -05:00
|
|
|
.deinit_target = feroceon_deinit_target,
|
2009-09-11 03:04:50 -05:00
|
|
|
.examine = feroceon_examine,
|
|
|
|
};
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
struct target_type dragonite_target = {
|
2009-09-11 03:04:50 -05:00
|
|
|
.name = "dragonite",
|
|
|
|
|
|
|
|
.poll = arm7_9_poll,
|
2009-12-07 16:54:13 -06:00
|
|
|
.arch_state = arm_arch_state,
|
2009-09-11 03:04:50 -05:00
|
|
|
|
|
|
|
.target_request_data = arm7_9_target_request_data,
|
|
|
|
|
|
|
|
.halt = arm7_9_halt,
|
|
|
|
.resume = arm7_9_resume,
|
|
|
|
.step = arm7_9_step,
|
|
|
|
|
|
|
|
.assert_reset = feroceon_assert_reset,
|
|
|
|
.deassert_reset = arm7_9_deassert_reset,
|
|
|
|
.soft_reset_halt = arm7_9_soft_reset_halt,
|
|
|
|
|
target/arm: add support for multi-architecture gdb
GDB can be built for multi-architecture through the command
./configure --enable-targets=all && make
Such multi-architecture GDB requires the target's architecture to
be selected either manually by the user through the GDB command
"set architecture" or automatically by the target description sent
by the remote target (i.e. OpenOCD).
Commit e65acd889c61a424c7bd72fdee5d6a3aee1d8504 ("gdb_server: add
support for architecture element") already provides the required
infrastructure to support multi-architecture gdb.
arm-none-eabi-gdb 8.2 uses "arm" as default architecture, but also
supports the following values: "arm_any", "armv2", "armv2a",
"armv3", "armv3m", "armv4", "armv4t", "armv5", "armv5t", "armv5te",
"armv5tej", "armv6", "armv6k", "armv6kz", "armv6-m", "armv6s-m",
"armv6t2", "armv7", "armv7e-m", "armv8-a", "armv8-m.base",
"armv8-m.main", "armv8-r", "ep9312", "iwmmxt", "iwmmxt2", "xscale".
These values can be displayed on arm gdb prompt by typing
"set architecture " followed by a TAB for autocompletion.
Set the gdb architecture value for all arm targets to "arm".
Change-Id: I176cb89878606e1febd546ce26543b3e7849500a
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/4754
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
2018-11-01 08:50:27 -05:00
|
|
|
.get_gdb_arch = arm_get_gdb_arch,
|
2009-12-07 16:54:13 -06:00
|
|
|
.get_gdb_reg_list = arm_get_gdb_reg_list,
|
2009-09-11 03:04:50 -05:00
|
|
|
|
|
|
|
.read_memory = arm7_9_read_memory,
|
2013-03-11 16:21:13 -05:00
|
|
|
.write_memory = arm7_9_write_memory_opt,
|
2009-11-15 12:35:34 -06:00
|
|
|
|
|
|
|
.checksum_memory = arm_checksum_memory,
|
|
|
|
.blank_check_memory = arm_blank_check_memory,
|
2009-09-11 03:04:50 -05:00
|
|
|
|
|
|
|
.run_algorithm = armv4_5_run_algorithm,
|
|
|
|
|
|
|
|
.add_breakpoint = arm7_9_add_breakpoint,
|
|
|
|
.remove_breakpoint = arm7_9_remove_breakpoint,
|
|
|
|
.add_watchpoint = arm7_9_add_watchpoint,
|
|
|
|
.remove_watchpoint = arm7_9_remove_watchpoint,
|
|
|
|
|
2009-11-23 10:17:01 -06:00
|
|
|
.commands = arm966e_command_handlers,
|
2009-09-11 03:04:50 -05:00
|
|
|
.target_create = dragonite_target_create,
|
|
|
|
.init_target = feroceon_init_target,
|
|
|
|
.examine = feroceon_examine,
|
|
|
|
};
|