2009-05-04 13:44:12 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2005 by Dominic Rath *
|
|
|
|
* Dominic.Rath@gmx.de *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2006 by Magnus Lundin *
|
|
|
|
* lundin@mlu.mine.nu *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2008 by Spencer Oliver *
|
|
|
|
* spen@spen-soft.co.uk *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2009 by Dirk Behme *
|
|
|
|
* dirk.behme@gmail.com - copy from cortex_m3 *
|
|
|
|
* *
|
2010-07-18 16:01:16 -05:00
|
|
|
* Copyright (C) 2010 Øyvind Harboe *
|
|
|
|
* oyvind.harboe@zylin.com *
|
|
|
|
* *
|
2011-04-19 01:50:00 -05:00
|
|
|
* Copyright (C) ST-Ericsson SA 2011 *
|
|
|
|
* michel.jaouen@stericsson.com : smp minimum support *
|
|
|
|
* *
|
2009-05-04 13:44:12 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
* *
|
|
|
|
* Cortex-A8(tm) TRM, ARM DDI 0344H *
|
2011-03-21 08:10:57 -05:00
|
|
|
* Cortex-A9(tm) TRM, ARM DDI 0407F *
|
2009-05-04 13:44:12 -05:00
|
|
|
* *
|
|
|
|
***************************************************************************/
|
2012-02-05 06:03:04 -06:00
|
|
|
|
2009-05-04 13:44:12 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-11-16 02:34:57 -06:00
|
|
|
#include "breakpoints.h"
|
2011-03-22 05:29:10 -05:00
|
|
|
#include "cortex_a.h"
|
2009-11-16 02:35:14 -06:00
|
|
|
#include "register.h"
|
2009-05-04 13:44:12 -05:00
|
|
|
#include "target_request.h"
|
2009-05-31 07:38:28 -05:00
|
|
|
#include "target_type.h"
|
2009-12-07 16:54:12 -06:00
|
|
|
#include "arm_opcodes.h"
|
2010-06-21 07:14:31 -05:00
|
|
|
#include <helper/time_support.h>
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_poll(struct target *target);
|
|
|
|
static int cortex_a8_debug_entry(struct target *target);
|
2009-12-01 23:47:45 -06:00
|
|
|
static int cortex_a8_restore_context(struct target *target, bool bpwp);
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_set_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint, uint8_t matchmode);
|
2011-05-09 03:40:35 -05:00
|
|
|
static int cortex_a8_set_context_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint, uint8_t matchmode);
|
2011-05-09 03:40:35 -05:00
|
|
|
static int cortex_a8_set_hybrid_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint);
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_unset_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint);
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_dap_read_coreregister_u32(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t *value, int regnum);
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_dap_write_coreregister_u32(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t value, int regnum);
|
2010-04-14 00:36:08 -05:00
|
|
|
static int cortex_a8_mmu(struct target *target, int *enabled);
|
|
|
|
static int cortex_a8_virt2phys(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t virt, uint32_t *phys);
|
2012-10-22 23:48:41 -05:00
|
|
|
static int cortex_a8_read_apb_ab_memory(struct target *target,
|
|
|
|
uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
|
2010-04-14 00:36:08 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2011-09-29 10:17:27 -05:00
|
|
|
/* restore cp15_control_reg at resume */
|
2012-02-05 06:03:04 -06:00
|
|
|
static int cortex_a8_restore_cp15_control_reg(struct target *target)
|
2011-09-29 10:17:27 -05:00
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2012-02-05 06:03:04 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2011-09-29 10:17:27 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (cortex_a8->cp15_control_reg != cortex_a8->cp15_control_reg_curr) {
|
2011-09-29 10:17:27 -05:00
|
|
|
cortex_a8->cp15_control_reg_curr = cortex_a8->cp15_control_reg;
|
2012-02-05 06:03:04 -06:00
|
|
|
/* LOG_INFO("cp15_control_reg: %8.8" PRIx32, cortex_a8->cp15_control_reg); */
|
2012-01-19 04:06:37 -06:00
|
|
|
retval = armv7a->arm.mcr(target, 15,
|
2012-02-05 06:03:04 -06:00
|
|
|
0, 0, /* op1, op2 */
|
|
|
|
1, 0, /* CRn, CRm */
|
2011-09-29 10:17:27 -05:00
|
|
|
cortex_a8->cp15_control_reg);
|
|
|
|
}
|
2011-10-19 14:40:48 -05:00
|
|
|
return retval;
|
2011-09-29 10:17:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check address before cortex_a8_apb read write access with mmu on
|
|
|
|
* remove apb predictible data abort */
|
|
|
|
static int cortex_a8_check_address(struct target *target, uint32_t address)
|
|
|
|
{
|
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
|
|
|
uint32_t os_border = armv7a->armv7a_mmu.os_border;
|
|
|
|
if ((address < os_border) &&
|
2012-02-05 06:03:04 -06:00
|
|
|
(armv7a->arm.core_mode == ARM_MODE_SVC)) {
|
|
|
|
LOG_ERROR("%x access in userspace and target in supervisor", address);
|
2011-09-29 10:17:27 -05:00
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
if ((address >= os_border) &&
|
2012-02-05 06:03:04 -06:00
|
|
|
(cortex_a8->curr_mode != ARM_MODE_SVC)) {
|
2012-01-19 04:06:37 -06:00
|
|
|
dpm_modeswitch(&armv7a->dpm, ARM_MODE_SVC);
|
|
|
|
cortex_a8->curr_mode = ARM_MODE_SVC;
|
2011-09-29 10:17:27 -05:00
|
|
|
LOG_INFO("%x access in kernel space and target not in supervisor",
|
2012-02-05 06:03:04 -06:00
|
|
|
address);
|
2011-09-29 10:17:27 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
if ((address < os_border) &&
|
2012-02-05 06:03:04 -06:00
|
|
|
(cortex_a8->curr_mode == ARM_MODE_SVC)) {
|
2012-01-19 04:06:37 -06:00
|
|
|
dpm_modeswitch(&armv7a->dpm, ARM_MODE_ANY);
|
|
|
|
cortex_a8->curr_mode = ARM_MODE_ANY;
|
2011-09-29 10:17:27 -05:00
|
|
|
}
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
/* modify cp15_control_reg in order to enable or disable mmu for :
|
|
|
|
* - virt2phys address conversion
|
|
|
|
* - read or write memory in phys or virt address */
|
|
|
|
static int cortex_a8_mmu_modify(struct target *target, int enable)
|
|
|
|
{
|
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
|
|
|
int retval = ERROR_OK;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (enable) {
|
2011-09-29 10:17:27 -05:00
|
|
|
/* if mmu enabled at target stop and mmu not enable */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!(cortex_a8->cp15_control_reg & 0x1U)) {
|
2011-09-29 10:17:27 -05:00
|
|
|
LOG_ERROR("trying to enable mmu on target stopped with mmu disable");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!(cortex_a8->cp15_control_reg_curr & 0x1U)) {
|
2011-09-29 10:17:27 -05:00
|
|
|
cortex_a8->cp15_control_reg_curr |= 0x1U;
|
2012-01-19 04:06:37 -06:00
|
|
|
retval = armv7a->arm.mcr(target, 15,
|
2012-02-05 06:03:04 -06:00
|
|
|
0, 0, /* op1, op2 */
|
|
|
|
1, 0, /* CRn, CRm */
|
2011-09-29 10:17:27 -05:00
|
|
|
cortex_a8->cp15_control_reg_curr);
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
} else {
|
|
|
|
if (cortex_a8->cp15_control_reg_curr & 0x4U) {
|
|
|
|
/* data cache is active */
|
2011-09-29 10:17:27 -05:00
|
|
|
cortex_a8->cp15_control_reg_curr &= ~0x4U;
|
|
|
|
/* flush data cache armv7 function to be called */
|
|
|
|
if (armv7a->armv7a_mmu.armv7a_cache.flush_all_data_cache)
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->armv7a_mmu.armv7a_cache.flush_all_data_cache(target);
|
2011-09-29 10:17:27 -05:00
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((cortex_a8->cp15_control_reg_curr & 0x1U)) {
|
2011-09-29 10:17:27 -05:00
|
|
|
cortex_a8->cp15_control_reg_curr &= ~0x1U;
|
2012-01-19 04:06:37 -06:00
|
|
|
retval = armv7a->arm.mcr(target, 15,
|
2012-02-05 06:03:04 -06:00
|
|
|
0, 0, /* op1, op2 */
|
|
|
|
1, 0, /* CRn, CRm */
|
2011-09-29 10:17:27 -05:00
|
|
|
cortex_a8->cp15_control_reg_curr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/*
|
|
|
|
* Cortex-A8 Basic debug access, very low level assumes state is saved
|
|
|
|
*/
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_init_debug_access(struct target *target)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-09-18 10:11:46 -05:00
|
|
|
int retval;
|
|
|
|
uint32_t dummy;
|
|
|
|
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
/* Unlocking the debug registers for modification
|
|
|
|
* The debugport might be uninitialised so try twice */
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
2011-02-22 14:16:10 -06:00
|
|
|
armv7a->debug_base + CPUDBG_LOCKACCESS, 0xC5ACCE55);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK) {
|
2010-06-21 06:58:52 -05:00
|
|
|
/* try again */
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
2011-02-22 14:16:10 -06:00
|
|
|
armv7a->debug_base + CPUDBG_LOCKACCESS, 0xC5ACCE55);
|
2010-06-21 07:34:07 -05:00
|
|
|
if (retval == ERROR_OK)
|
2012-02-05 06:03:04 -06:00
|
|
|
LOG_USER(
|
|
|
|
"Locking debug access failed on first, but succeeded on second try.");
|
2010-06-21 06:58:52 -05:00
|
|
|
}
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-09-18 10:11:46 -05:00
|
|
|
/* Clear Sticky Power Down status Bit in PRSR to enable access to
|
|
|
|
the registers in the Core Power Domain */
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_PRSR, &dummy);
|
2010-06-21 07:26:19 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2009-10-13 12:00:46 -05:00
|
|
|
/* Enabling of instruction execution in debug mode is done in debug_entry code */
|
|
|
|
|
2009-10-02 11:36:03 -05:00
|
|
|
/* Resync breakpoint registers */
|
2009-10-13 12:00:46 -05:00
|
|
|
|
2010-07-18 15:56:01 -05:00
|
|
|
/* Since this is likely called from init or reset, update target state information*/
|
2011-02-22 14:16:10 -06:00
|
|
|
return cortex_a8_poll(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* To reduce needless round-trips, pass in a pointer to the current
|
|
|
|
* DSCR value. Initialize it to zero if you just need to know the
|
2009-12-03 18:08:04 -06:00
|
|
|
* value on return from this function; or DSCR_INSTR_COMP if you
|
|
|
|
* happen to know that no instruction is pending.
|
2009-11-24 23:24:44 -06:00
|
|
|
*/
|
2009-11-24 23:24:44 -06:00
|
|
|
static int cortex_a8_exec_opcode(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t opcode, uint32_t *dscr_p)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
uint32_t dscr;
|
2009-09-14 17:41:47 -05:00
|
|
|
int retval;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
dscr = dscr_p ? *dscr_p : 0;
|
|
|
|
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("exec opcode 0x%08" PRIx32, opcode);
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* Wait for InstrCompl bit to be set */
|
2010-07-19 05:17:11 -05:00
|
|
|
long long then = timeval_ms();
|
2012-02-05 06:03:04 -06:00
|
|
|
while ((dscr & DSCR_INSTR_COMP) == 0) {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK) {
|
2009-10-02 11:39:50 -05:00
|
|
|
LOG_ERROR("Could not read DSCR register, opcode = 0x%08" PRIx32, opcode);
|
2009-09-14 17:41:47 -05:00
|
|
|
return retval;
|
2009-09-16 13:17:26 -05:00
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-07-19 05:17:11 -05:00
|
|
|
LOG_ERROR("Timeout waiting for cortex_a8_exec_opcode");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2009-10-02 11:39:50 -05:00
|
|
|
}
|
2009-08-26 14:16:08 -05:00
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_ITR, opcode);
|
2010-07-18 16:03:05 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-26 14:16:08 -05:00
|
|
|
|
2010-07-19 05:17:11 -05:00
|
|
|
then = timeval_ms();
|
2012-02-05 06:03:04 -06:00
|
|
|
do {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK) {
|
2009-10-02 11:39:50 -05:00
|
|
|
LOG_ERROR("Could not read DSCR register");
|
2009-09-14 17:41:47 -05:00
|
|
|
return retval;
|
2009-09-16 13:17:26 -05:00
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-07-19 05:17:11 -05:00
|
|
|
LOG_ERROR("Timeout waiting for cortex_a8_exec_opcode");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
} while ((dscr & DSCR_INSTR_COMP) == 0); /* Wait for InstrCompl bit to be set */
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
if (dscr_p)
|
|
|
|
*dscr_p = dscr;
|
|
|
|
|
2009-09-14 17:41:47 -05:00
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
Read core register with very few exec_opcode, fast but needs work_area.
|
|
|
|
This can cause problems with MMU active.
|
|
|
|
**************************************************************************/
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_read_regs_through_mem(struct target *target, uint32_t address,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t *regfile)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2010-07-18 16:10:50 -05:00
|
|
|
retval = cortex_a8_dap_read_coreregister_u32(target, regfile, 0);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_coreregister_u32(target, address, 0);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target, ARMV4_5_STMIA(0, 0xFFFE, 0, 0), NULL);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_buf_u32(swjdp, armv7a->memory_ap,
|
2011-02-22 14:16:10 -06:00
|
|
|
(uint8_t *)(®file[1]), 4*15, address);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_dap_read_coreregister_u32(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t *value, int regnum)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
uint8_t reg = regnum&0xFF;
|
2009-11-24 23:24:44 -06:00
|
|
|
uint32_t dscr = 0;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
if (reg > 17)
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (reg < 15) {
|
2009-11-18 16:46:14 -06:00
|
|
|
/* Rn to DCCTX, "MCR p14, 0, Rn, c0, c5, 0" 0xEE00nE15 */
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target,
|
2009-11-24 23:24:44 -06:00
|
|
|
ARMV4_5_MCR(14, 0, reg, 0, 5, 0),
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
} else if (reg == 15) {
|
2009-11-18 16:46:14 -06:00
|
|
|
/* "MOV r0, r15"; then move r0 to DCCTX */
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target, 0xE1A0000F, &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_exec_opcode(target,
|
2009-11-24 23:24:44 -06:00
|
|
|
ARMV4_5_MCR(14, 0, 0, 0, 5, 0),
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
} else {
|
2009-11-19 21:03:02 -06:00
|
|
|
/* "MRS r0, CPSR" or "MRS r0, SPSR"
|
|
|
|
* then move r0 to DCCTX
|
|
|
|
*/
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target, ARMV4_5_MRS(0, reg & 1), &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_exec_opcode(target,
|
2009-11-24 23:24:44 -06:00
|
|
|
ARMV4_5_MCR(14, 0, 0, 0, 5, 0),
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* Wait for DTRRXfull then read DTRRTX */
|
2010-07-19 05:17:11 -05:00
|
|
|
long long then = timeval_ms();
|
2012-02-05 06:03:04 -06:00
|
|
|
while ((dscr & DSCR_DTR_TX_FULL) == 0) {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2010-07-18 16:01:16 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-07-19 05:17:11 -05:00
|
|
|
LOG_ERROR("Timeout waiting for cortex_a8_exec_opcode");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2009-08-26 14:20:25 -05:00
|
|
|
}
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DTRTX, value);
|
2009-11-19 21:03:02 -06:00
|
|
|
LOG_DEBUG("read DCC 0x%08" PRIx32, *value);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
static int cortex_a8_dap_write_coreregister_u32(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t value, int regnum)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
uint8_t Rd = regnum&0xFF;
|
2009-10-02 11:44:16 -05:00
|
|
|
uint32_t dscr;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-10-13 12:00:46 -05:00
|
|
|
|
2009-10-02 11:44:16 -05:00
|
|
|
LOG_DEBUG("register %i, value 0x%08" PRIx32, regnum, value);
|
|
|
|
|
|
|
|
/* Check that DCCRX is not full */
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2010-07-18 16:01:16 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (dscr & DSCR_DTR_RX_FULL) {
|
2009-10-02 11:44:16 -05:00
|
|
|
LOG_ERROR("DSCR_DTR_RX_FULL, dscr 0x%08" PRIx32, dscr);
|
2011-02-07 23:16:54 -06:00
|
|
|
/* Clear DCCRX with MRC(p14, 0, Rd, c0, c5, 0), opcode 0xEE100E15 */
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0),
|
2009-11-24 23:24:44 -06:00
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-10-02 11:44:16 -05:00
|
|
|
}
|
2009-10-13 12:00:46 -05:00
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
if (Rd > 17)
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* Write DTRRX ... sets DSCR.DTRRXfull but exec_opcode() won't care */
|
2009-11-19 21:03:02 -06:00
|
|
|
LOG_DEBUG("write DCC 0x%08" PRIx32, value);
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_u32(swjdp, armv7a->debug_ap,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DTRRX, value);
|
2010-07-18 16:03:05 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (Rd < 15) {
|
2011-02-07 23:16:54 -06:00
|
|
|
/* DCCRX to Rn, "MRC p14, 0, Rn, c0, c5, 0", 0xEE10nE15 */
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, Rd, 0, 5, 0),
|
2009-11-24 23:24:44 -06:00
|
|
|
&dscr);
|
2012-02-05 06:03:04 -06:00
|
|
|
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
} else if (Rd == 15) {
|
2011-02-07 23:16:54 -06:00
|
|
|
/* DCCRX to R0, "MRC p14, 0, R0, c0, c5, 0", 0xEE100E15
|
2009-11-19 21:03:02 -06:00
|
|
|
* then "mov r15, r0"
|
|
|
|
*/
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0),
|
2009-11-24 23:24:44 -06:00
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_exec_opcode(target, 0xE1A0F000, &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
} else {
|
2011-02-07 23:16:54 -06:00
|
|
|
/* DCCRX to R0, "MRC p14, 0, R0, c0, c5, 0", 0xEE100E15
|
2009-11-19 21:03:02 -06:00
|
|
|
* then "MSR CPSR_cxsf, r0" or "MSR SPSR_cxsf, r0" (all fields)
|
|
|
|
*/
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0),
|
2009-11-24 23:24:44 -06:00
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_exec_opcode(target, ARMV4_5_MSR_GP(0, 0xF, Rd & 1),
|
2009-11-24 23:24:44 -06:00
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-19 21:03:02 -06:00
|
|
|
|
|
|
|
/* "Prefetch flush" after modifying execution status in CPSR */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (Rd == 16) {
|
2010-07-18 16:08:26 -05:00
|
|
|
retval = cortex_a8_exec_opcode(target,
|
2009-11-24 23:24:44 -06:00
|
|
|
ARMV4_5_MCR(15, 0, 0, 7, 5, 4),
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-09-19 09:50:18 -05:00
|
|
|
/* Write to memory mapped registers directly with no cache or mmu handling */
|
2012-02-05 06:03:04 -06:00
|
|
|
static int cortex_a8_dap_write_memap_register_u32(struct target *target,
|
|
|
|
uint32_t address,
|
|
|
|
uint32_t value)
|
2009-09-19 09:50:18 -05:00
|
|
|
{
|
|
|
|
int retval;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-09-19 09:50:18 -05:00
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap, address, value);
|
2009-09-19 09:50:18 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/*
|
|
|
|
* Cortex-A8 implementation of Debug Programmer's Model
|
|
|
|
*
|
2009-11-24 23:24:44 -06:00
|
|
|
* NOTE the invariant: these routines return with DSCR_INSTR_COMP set,
|
|
|
|
* so there's no need to poll for it before executing an instruction.
|
|
|
|
*
|
2009-11-24 23:24:44 -06:00
|
|
|
* NOTE that in several of these cases the "stall" mode might be useful.
|
|
|
|
* It'd let us queue a few operations together... prepare/finish might
|
|
|
|
* be the places to enable/disable that mode.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline struct cortex_a8_common *dpm_to_a8(struct arm_dpm *dpm)
|
|
|
|
{
|
|
|
|
return container_of(dpm, struct cortex_a8_common, armv7a_common.dpm);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_write_dcc(struct cortex_a8_common *a8, uint32_t data)
|
|
|
|
{
|
|
|
|
LOG_DEBUG("write DCC 0x%08" PRIx32, data);
|
2012-01-19 04:06:37 -06:00
|
|
|
return mem_ap_sel_write_u32(a8->armv7a_common.arm.dap,
|
2012-10-11 17:07:45 -05:00
|
|
|
a8->armv7a_common.debug_ap, a8->armv7a_common.debug_base + CPUDBG_DTRRX, data);
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
static int cortex_a8_read_dcc(struct cortex_a8_common *a8, uint32_t *data,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t *dscr_p)
|
2009-11-24 23:24:44 -06:00
|
|
|
{
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = a8->armv7a_common.arm.dap;
|
2009-12-03 18:08:04 -06:00
|
|
|
uint32_t dscr = DSCR_INSTR_COMP;
|
2009-11-24 23:24:44 -06:00
|
|
|
int retval;
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
if (dscr_p)
|
|
|
|
dscr = *dscr_p;
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* Wait for DTRRXfull */
|
2010-07-19 05:17:11 -05:00
|
|
|
long long then = timeval_ms();
|
2009-12-03 18:08:04 -06:00
|
|
|
while ((dscr & DSCR_DTR_TX_FULL) == 0) {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, a8->armv7a_common.debug_ap,
|
2009-11-24 23:24:44 -06:00
|
|
|
a8->armv7a_common.debug_base + CPUDBG_DSCR,
|
|
|
|
&dscr);
|
2010-07-18 16:01:16 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-07-19 05:17:11 -05:00
|
|
|
LOG_ERROR("Timeout waiting for read dcc");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, a8->armv7a_common.debug_ap,
|
2009-11-24 23:24:44 -06:00
|
|
|
a8->armv7a_common.debug_base + CPUDBG_DTRTX, data);
|
2010-07-18 16:01:16 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
/* LOG_DEBUG("read DCC 0x%08" PRIx32, *data); */
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
if (dscr_p)
|
|
|
|
*dscr_p = dscr;
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_dpm_prepare(struct arm_dpm *dpm)
|
|
|
|
{
|
|
|
|
struct cortex_a8_common *a8 = dpm_to_a8(dpm);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = a8->armv7a_common.arm.dap;
|
2009-11-24 23:24:44 -06:00
|
|
|
uint32_t dscr;
|
|
|
|
int retval;
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* set up invariant: INSTR_COMP is set after ever DPM operation */
|
2010-06-21 07:14:31 -05:00
|
|
|
long long then = timeval_ms();
|
2012-02-05 06:03:04 -06:00
|
|
|
for (;; ) {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, a8->armv7a_common.debug_ap,
|
2009-11-24 23:24:44 -06:00
|
|
|
a8->armv7a_common.debug_base + CPUDBG_DSCR,
|
|
|
|
&dscr);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2010-06-21 07:14:31 -05:00
|
|
|
if ((dscr & DSCR_INSTR_COMP) != 0)
|
|
|
|
break;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-06-21 07:14:31 -05:00
|
|
|
LOG_ERROR("Timeout waiting for dpm prepare");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
}
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* this "should never happen" ... */
|
2009-12-03 18:08:04 -06:00
|
|
|
if (dscr & DSCR_DTR_RX_FULL) {
|
2009-11-24 23:24:44 -06:00
|
|
|
LOG_ERROR("DSCR_DTR_RX_FULL, dscr 0x%08" PRIx32, dscr);
|
|
|
|
/* Clear DCCRX */
|
|
|
|
retval = cortex_a8_exec_opcode(
|
2012-01-19 04:06:37 -06:00
|
|
|
a8->armv7a_common.arm.target,
|
2009-11-24 23:24:44 -06:00
|
|
|
ARMV4_5_MRC(14, 0, 0, 0, 5, 0),
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_dpm_finish(struct arm_dpm *dpm)
|
|
|
|
{
|
|
|
|
/* REVISIT what could be done here? */
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_instr_write_data_dcc(struct arm_dpm *dpm,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t opcode, uint32_t data)
|
2009-11-24 23:24:44 -06:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *a8 = dpm_to_a8(dpm);
|
|
|
|
int retval;
|
2009-12-03 18:08:04 -06:00
|
|
|
uint32_t dscr = DSCR_INSTR_COMP;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
retval = cortex_a8_write_dcc(a8, data);
|
2010-07-18 16:30:31 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
return cortex_a8_exec_opcode(
|
2012-01-19 04:06:37 -06:00
|
|
|
a8->armv7a_common.arm.target,
|
2009-11-24 23:24:44 -06:00
|
|
|
opcode,
|
|
|
|
&dscr);
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_instr_write_data_r0(struct arm_dpm *dpm,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t opcode, uint32_t data)
|
2009-11-24 23:24:44 -06:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *a8 = dpm_to_a8(dpm);
|
2009-12-03 18:08:04 -06:00
|
|
|
uint32_t dscr = DSCR_INSTR_COMP;
|
2009-11-24 23:24:44 -06:00
|
|
|
int retval;
|
|
|
|
|
|
|
|
retval = cortex_a8_write_dcc(a8, data);
|
2010-07-18 16:30:31 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* DCCRX to R0, "MCR p14, 0, R0, c0, c5, 0", 0xEE000E15 */
|
|
|
|
retval = cortex_a8_exec_opcode(
|
2012-01-19 04:06:37 -06:00
|
|
|
a8->armv7a_common.arm.target,
|
2009-11-24 23:24:44 -06:00
|
|
|
ARMV4_5_MRC(14, 0, 0, 0, 5, 0),
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* then the opcode, taking data from R0 */
|
|
|
|
retval = cortex_a8_exec_opcode(
|
2012-01-19 04:06:37 -06:00
|
|
|
a8->armv7a_common.arm.target,
|
2009-11-24 23:24:44 -06:00
|
|
|
opcode,
|
|
|
|
&dscr);
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_instr_cpsr_sync(struct arm_dpm *dpm)
|
|
|
|
{
|
|
|
|
struct target *target = dpm->arm->target;
|
2009-12-03 18:08:04 -06:00
|
|
|
uint32_t dscr = DSCR_INSTR_COMP;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* "Prefetch flush" after modifying execution status in CPSR */
|
2009-11-24 23:24:44 -06:00
|
|
|
return cortex_a8_exec_opcode(target,
|
|
|
|
ARMV4_5_MCR(15, 0, 0, 7, 5, 4),
|
|
|
|
&dscr);
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_instr_read_data_dcc(struct arm_dpm *dpm,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t opcode, uint32_t *data)
|
2009-11-24 23:24:44 -06:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *a8 = dpm_to_a8(dpm);
|
|
|
|
int retval;
|
2009-12-03 18:08:04 -06:00
|
|
|
uint32_t dscr = DSCR_INSTR_COMP;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* the opcode, writing data to DCC */
|
|
|
|
retval = cortex_a8_exec_opcode(
|
2012-01-19 04:06:37 -06:00
|
|
|
a8->armv7a_common.arm.target,
|
2009-11-24 23:24:44 -06:00
|
|
|
opcode,
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
return cortex_a8_read_dcc(a8, data, &dscr);
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int cortex_a8_instr_read_data_r0(struct arm_dpm *dpm,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t opcode, uint32_t *data)
|
2009-11-24 23:24:44 -06:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *a8 = dpm_to_a8(dpm);
|
2009-12-03 18:08:04 -06:00
|
|
|
uint32_t dscr = DSCR_INSTR_COMP;
|
2009-11-24 23:24:44 -06:00
|
|
|
int retval;
|
|
|
|
|
|
|
|
/* the opcode, writing data to R0 */
|
|
|
|
retval = cortex_a8_exec_opcode(
|
2012-01-19 04:06:37 -06:00
|
|
|
a8->armv7a_common.arm.target,
|
2009-11-24 23:24:44 -06:00
|
|
|
opcode,
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* write R0 to DCC */
|
|
|
|
retval = cortex_a8_exec_opcode(
|
2012-01-19 04:06:37 -06:00
|
|
|
a8->armv7a_common.arm.target,
|
2009-11-24 23:24:44 -06:00
|
|
|
ARMV4_5_MCR(14, 0, 0, 0, 5, 0),
|
|
|
|
&dscr);
|
2010-07-18 16:08:26 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
return cortex_a8_read_dcc(a8, data, &dscr);
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
|
|
|
|
2010-06-15 16:23:16 -05:00
|
|
|
static int cortex_a8_bpwp_enable(struct arm_dpm *dpm, unsigned index_t,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t addr, uint32_t control)
|
2009-12-01 23:47:45 -06:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *a8 = dpm_to_a8(dpm);
|
|
|
|
uint32_t vr = a8->armv7a_common.debug_base;
|
|
|
|
uint32_t cr = a8->armv7a_common.debug_base;
|
|
|
|
int retval;
|
|
|
|
|
2010-06-15 16:23:16 -05:00
|
|
|
switch (index_t) {
|
2012-02-05 06:03:04 -06:00
|
|
|
case 0 ... 15: /* breakpoints */
|
|
|
|
vr += CPUDBG_BVR_BASE;
|
|
|
|
cr += CPUDBG_BCR_BASE;
|
|
|
|
break;
|
|
|
|
case 16 ... 31: /* watchpoints */
|
|
|
|
vr += CPUDBG_WVR_BASE;
|
|
|
|
cr += CPUDBG_WCR_BASE;
|
|
|
|
index_t -= 16;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return ERROR_FAIL;
|
2009-12-01 23:47:45 -06:00
|
|
|
}
|
2010-06-15 16:23:16 -05:00
|
|
|
vr += 4 * index_t;
|
|
|
|
cr += 4 * index_t;
|
2009-12-01 23:47:45 -06:00
|
|
|
|
|
|
|
LOG_DEBUG("A8: bpwp enable, vr %08x cr %08x",
|
2012-02-05 06:03:04 -06:00
|
|
|
(unsigned) vr, (unsigned) cr);
|
2009-12-01 23:47:45 -06:00
|
|
|
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(dpm->arm->target,
|
|
|
|
vr, addr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(dpm->arm->target,
|
|
|
|
cr, control);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2010-06-15 16:23:16 -05:00
|
|
|
static int cortex_a8_bpwp_disable(struct arm_dpm *dpm, unsigned index_t)
|
2009-12-01 23:47:45 -06:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *a8 = dpm_to_a8(dpm);
|
|
|
|
uint32_t cr;
|
|
|
|
|
2010-06-15 16:23:16 -05:00
|
|
|
switch (index_t) {
|
2012-02-05 06:03:04 -06:00
|
|
|
case 0 ... 15:
|
|
|
|
cr = a8->armv7a_common.debug_base + CPUDBG_BCR_BASE;
|
|
|
|
break;
|
|
|
|
case 16 ... 31:
|
|
|
|
cr = a8->armv7a_common.debug_base + CPUDBG_WCR_BASE;
|
|
|
|
index_t -= 16;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return ERROR_FAIL;
|
2009-12-01 23:47:45 -06:00
|
|
|
}
|
2010-06-15 16:23:16 -05:00
|
|
|
cr += 4 * index_t;
|
2009-12-01 23:47:45 -06:00
|
|
|
|
|
|
|
LOG_DEBUG("A8: bpwp disable, cr %08x", (unsigned) cr);
|
|
|
|
|
|
|
|
/* clear control register */
|
|
|
|
return cortex_a8_dap_write_memap_register_u32(dpm->arm->target, cr, 0);
|
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
static int cortex_a8_dpm_setup(struct cortex_a8_common *a8, uint32_t didr)
|
2009-11-24 23:24:44 -06:00
|
|
|
{
|
|
|
|
struct arm_dpm *dpm = &a8->armv7a_common.dpm;
|
2009-12-03 00:57:07 -06:00
|
|
|
int retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2012-01-19 04:06:37 -06:00
|
|
|
dpm->arm = &a8->armv7a_common.arm;
|
2009-11-24 23:24:44 -06:00
|
|
|
dpm->didr = didr;
|
|
|
|
|
|
|
|
dpm->prepare = cortex_a8_dpm_prepare;
|
|
|
|
dpm->finish = cortex_a8_dpm_finish;
|
|
|
|
|
|
|
|
dpm->instr_write_data_dcc = cortex_a8_instr_write_data_dcc;
|
|
|
|
dpm->instr_write_data_r0 = cortex_a8_instr_write_data_r0;
|
|
|
|
dpm->instr_cpsr_sync = cortex_a8_instr_cpsr_sync;
|
|
|
|
|
|
|
|
dpm->instr_read_data_dcc = cortex_a8_instr_read_data_dcc;
|
|
|
|
dpm->instr_read_data_r0 = cortex_a8_instr_read_data_r0;
|
|
|
|
|
2009-12-01 23:47:45 -06:00
|
|
|
dpm->bpwp_enable = cortex_a8_bpwp_enable;
|
|
|
|
dpm->bpwp_disable = cortex_a8_bpwp_disable;
|
|
|
|
|
2009-12-03 00:57:07 -06:00
|
|
|
retval = arm_dpm_setup(dpm);
|
|
|
|
if (retval == ERROR_OK)
|
|
|
|
retval = arm_dpm_initialize(dpm);
|
|
|
|
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
}
|
2011-04-19 01:50:00 -05:00
|
|
|
static struct target *get_cortex_a8(struct target *target, int32_t coreid)
|
|
|
|
{
|
2012-02-05 06:03:04 -06:00
|
|
|
struct target_list *head;
|
|
|
|
struct target *curr;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2011-04-19 01:50:00 -05:00
|
|
|
head = target->head;
|
2012-02-05 06:03:04 -06:00
|
|
|
while (head != (struct target_list *)NULL) {
|
2011-04-19 01:50:00 -05:00
|
|
|
curr = head->target;
|
|
|
|
if ((curr->coreid == coreid) && (curr->state == TARGET_HALTED))
|
2012-02-05 06:03:04 -06:00
|
|
|
return curr;
|
2011-04-19 01:50:00 -05:00
|
|
|
head = head->next;
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
return target;
|
2011-04-19 01:50:00 -05:00
|
|
|
}
|
|
|
|
static int cortex_a8_halt(struct target *target);
|
|
|
|
|
|
|
|
static int cortex_a8_halt_smp(struct target *target)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
struct target_list *head;
|
|
|
|
struct target *curr;
|
|
|
|
head = target->head;
|
2012-02-05 06:03:04 -06:00
|
|
|
while (head != (struct target_list *)NULL) {
|
2011-04-19 01:50:00 -05:00
|
|
|
curr = head->target;
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((curr != target) && (curr->state != TARGET_HALTED))
|
2011-04-19 01:50:00 -05:00
|
|
|
retval += cortex_a8_halt(curr);
|
|
|
|
head = head->next;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int update_halt_gdb(struct target *target)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->gdb_service->core[0] == -1) {
|
2011-04-19 01:50:00 -05:00
|
|
|
target->gdb_service->target = target;
|
|
|
|
target->gdb_service->core[0] = target->coreid;
|
|
|
|
retval += cortex_a8_halt_smp(target);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/*
|
|
|
|
* Cortex-A8 Run control
|
|
|
|
*/
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_poll(struct target *target)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
uint32_t dscr;
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-08-25 01:58:34 -05:00
|
|
|
enum target_state prev_target_state = target->state;
|
2012-02-05 06:03:04 -06:00
|
|
|
/* toggle to another core is done by gdb as follow */
|
|
|
|
/* maint packet J core_id */
|
|
|
|
/* continue */
|
|
|
|
/* the next polling trigger an halt event sent to gdb */
|
2011-04-19 01:50:00 -05:00
|
|
|
if ((target->state == TARGET_HALTED) && (target->smp) &&
|
2012-02-05 06:03:04 -06:00
|
|
|
(target->gdb_service) &&
|
|
|
|
(target->gdb_service->target == NULL)) {
|
2011-04-19 01:50:00 -05:00
|
|
|
target->gdb_service->target =
|
|
|
|
get_cortex_a8(target, target->gdb_service->core[1]);
|
2012-02-05 06:03:04 -06:00
|
|
|
target_call_event_callbacks(target, TARGET_EVENT_HALTED);
|
2011-04-19 01:50:00 -05:00
|
|
|
return retval;
|
|
|
|
}
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-08-25 01:58:34 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
cortex_a8->cpudbg_dscr = dscr;
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (DSCR_RUN_MODE(dscr) == (DSCR_CORE_HALTED | DSCR_CORE_RESTARTED)) {
|
|
|
|
if (prev_target_state != TARGET_HALTED) {
|
2009-08-25 01:58:34 -05:00
|
|
|
/* We have a halting debug event */
|
|
|
|
LOG_DEBUG("Target halted");
|
|
|
|
target->state = TARGET_HALTED;
|
|
|
|
if ((prev_target_state == TARGET_RUNNING)
|
2012-11-02 01:59:03 -05:00
|
|
|
|| (prev_target_state == TARGET_UNKNOWN)
|
2012-02-05 06:03:04 -06:00
|
|
|
|| (prev_target_state == TARGET_RESET)) {
|
2009-08-25 01:58:34 -05:00
|
|
|
retval = cortex_a8_debug_entry(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->smp) {
|
2011-04-19 01:50:00 -05:00
|
|
|
retval = update_halt_gdb(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
target_call_event_callbacks(target,
|
2012-02-05 06:03:04 -06:00
|
|
|
TARGET_EVENT_HALTED);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
if (prev_target_state == TARGET_DEBUG_RUNNING) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
|
|
|
retval = cortex_a8_debug_entry(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->smp) {
|
2011-04-19 01:50:00 -05:00
|
|
|
retval = update_halt_gdb(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
target_call_event_callbacks(target,
|
2012-02-05 06:03:04 -06:00
|
|
|
TARGET_EVENT_DEBUG_HALTED);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
} else if (DSCR_RUN_MODE(dscr) == DSCR_CORE_RESTARTED)
|
2009-08-25 01:58:34 -05:00
|
|
|
target->state = TARGET_RUNNING;
|
2012-02-05 06:03:04 -06:00
|
|
|
else {
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("Unknown target state dscr = 0x%08" PRIx32, dscr);
|
2009-08-25 01:58:34 -05:00
|
|
|
target->state = TARGET_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_halt(struct target *target)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
2009-08-26 14:25:44 -05:00
|
|
|
uint32_t dscr;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-08-26 14:25:44 -05:00
|
|
|
/*
|
|
|
|
* Tell the core to be halted by writing DRCR with 0x1
|
|
|
|
* and then wait for the core to be halted.
|
|
|
|
*/
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
2011-03-21 08:10:57 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DRCR, DRCR_HALT);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2011-02-22 14:16:10 -06:00
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-09-04 03:22:02 -05:00
|
|
|
/*
|
|
|
|
* enter halting debug mode
|
|
|
|
*/
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2011-02-22 14:16:10 -06:00
|
|
|
return retval;
|
2010-06-21 06:58:52 -05:00
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr | DSCR_HALT_DBG_MODE);
|
2009-08-26 14:25:44 -05:00
|
|
|
if (retval != ERROR_OK)
|
2011-02-22 14:16:10 -06:00
|
|
|
return retval;
|
2009-08-26 14:25:44 -05:00
|
|
|
|
2010-06-21 07:14:31 -05:00
|
|
|
long long then = timeval_ms();
|
2012-02-05 06:03:04 -06:00
|
|
|
for (;; ) {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
2011-02-22 14:16:10 -06:00
|
|
|
return retval;
|
2010-06-21 07:14:31 -05:00
|
|
|
if ((dscr & DSCR_CORE_HALTED) != 0)
|
|
|
|
break;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-06-21 07:14:31 -05:00
|
|
|
LOG_ERROR("Timeout waiting for halt");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
}
|
2009-08-26 14:25:44 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
target->debug_reason = DBG_REASON_DBGRQ;
|
|
|
|
|
2011-02-22 14:16:10 -06:00
|
|
|
return ERROR_OK;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2011-04-19 01:50:00 -05:00
|
|
|
static int cortex_a8_internal_restore(struct target *target, int current,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t *address, int handle_breakpoints, int debug_execution)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = &armv7a->arm;
|
2010-06-21 06:58:52 -05:00
|
|
|
int retval;
|
2011-04-19 01:50:00 -05:00
|
|
|
uint32_t resume_pc;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if (!debug_execution)
|
|
|
|
target_free_all_working_areas(target);
|
|
|
|
|
|
|
|
#if 0
|
2012-02-05 06:03:04 -06:00
|
|
|
if (debug_execution) {
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Disable interrupts */
|
|
|
|
/* We disable interrupts in the PRIMASK register instead of
|
|
|
|
* masking with C_MASKINTS,
|
|
|
|
* This is probably the same issue as Cortex-M3 Errata 377493:
|
|
|
|
* C_MASKINTS in parallel with disabled interrupts can cause
|
|
|
|
* local faults to not be taken. */
|
|
|
|
buf_set_u32(armv7m->core_cache->reg_list[ARMV7M_PRIMASK].value, 0, 32, 1);
|
|
|
|
armv7m->core_cache->reg_list[ARMV7M_PRIMASK].dirty = 1;
|
|
|
|
armv7m->core_cache->reg_list[ARMV7M_PRIMASK].valid = 1;
|
|
|
|
|
|
|
|
/* Make sure we are in Thumb mode */
|
|
|
|
buf_set_u32(armv7m->core_cache->reg_list[ARMV7M_xPSR].value, 0, 32,
|
2012-02-05 06:03:04 -06:00
|
|
|
buf_get_u32(armv7m->core_cache->reg_list[ARMV7M_xPSR].value, 0,
|
|
|
|
32) | (1 << 24));
|
2009-08-25 01:58:34 -05:00
|
|
|
armv7m->core_cache->reg_list[ARMV7M_xPSR].dirty = 1;
|
|
|
|
armv7m->core_cache->reg_list[ARMV7M_xPSR].valid = 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* current = 1: continue on current pc, otherwise continue at <address> */
|
2012-01-19 04:06:37 -06:00
|
|
|
resume_pc = buf_get_u32(arm->pc->value, 0, 32);
|
2009-08-25 01:58:34 -05:00
|
|
|
if (!current)
|
2011-04-19 01:50:00 -05:00
|
|
|
resume_pc = *address;
|
|
|
|
else
|
|
|
|
*address = resume_pc;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
/* Make sure that the Armv7 gdb thumb fixups does not
|
|
|
|
* kill the return address
|
|
|
|
*/
|
2012-02-05 06:03:04 -06:00
|
|
|
switch (arm->core_state) {
|
|
|
|
case ARM_STATE_ARM:
|
|
|
|
resume_pc &= 0xFFFFFFFC;
|
|
|
|
break;
|
|
|
|
case ARM_STATE_THUMB:
|
|
|
|
case ARM_STATE_THUMB_EE:
|
|
|
|
/* When the return address is loaded into PC
|
|
|
|
* bit 0 must be 1 to stay in Thumb state
|
|
|
|
*/
|
|
|
|
resume_pc |= 0x1;
|
|
|
|
break;
|
|
|
|
case ARM_STATE_JAZELLE:
|
|
|
|
LOG_ERROR("How do I resume into Jazelle state??");
|
|
|
|
return ERROR_FAIL;
|
2009-09-08 10:31:24 -05:00
|
|
|
}
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("resume pc = 0x%08" PRIx32, resume_pc);
|
2012-01-19 04:06:37 -06:00
|
|
|
buf_set_u32(arm->pc->value, 0, 32, resume_pc);
|
|
|
|
arm->pc->dirty = 1;
|
|
|
|
arm->pc->valid = 1;
|
2011-09-29 10:17:27 -05:00
|
|
|
/* restore dpm_mode at system halt */
|
2012-02-05 06:03:04 -06:00
|
|
|
dpm_modeswitch(&armv7a->dpm, ARM_MODE_ANY);
|
|
|
|
/* called it now before restoring context because it uses cpu
|
2011-09-29 10:17:27 -05:00
|
|
|
* register r0 for restoring cp15 control register */
|
|
|
|
retval = cortex_a8_restore_cp15_control_reg(target);
|
2011-11-01 16:56:28 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2010-07-18 16:30:31 -05:00
|
|
|
retval = cortex_a8_restore_context(target, handle_breakpoints);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
target->debug_reason = DBG_REASON_NOTHALTED;
|
2011-04-19 01:50:00 -05:00
|
|
|
target->state = TARGET_RUNNING;
|
|
|
|
|
|
|
|
/* registers are now invalid */
|
2012-01-19 04:06:37 -06:00
|
|
|
register_cache_invalidate(arm->core_cache);
|
2009-11-19 21:03:12 -06:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
#if 0
|
|
|
|
/* the front-end may request us not to handle breakpoints */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (handle_breakpoints) {
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Single step past breakpoint at current address */
|
2012-02-05 06:03:04 -06:00
|
|
|
breakpoint = breakpoint_find(target, resume_pc);
|
|
|
|
if (breakpoint) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_DEBUG("unset breakpoint at 0x%8.8x", breakpoint->address);
|
|
|
|
cortex_m3_unset_breakpoint(target, breakpoint);
|
|
|
|
cortex_m3_single_step_core(target);
|
|
|
|
cortex_m3_set_breakpoint(target, breakpoint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2011-04-19 01:50:00 -05:00
|
|
|
return retval;
|
|
|
|
}
|
2011-03-21 08:10:57 -05:00
|
|
|
|
2011-04-19 01:50:00 -05:00
|
|
|
static int cortex_a8_internal_restart(struct target *target)
|
|
|
|
{
|
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = &armv7a->arm;
|
|
|
|
struct adiv5_dap *swjdp = arm->dap;
|
2011-04-19 01:50:00 -05:00
|
|
|
int retval;
|
|
|
|
uint32_t dscr;
|
2012-02-05 06:03:04 -06:00
|
|
|
/*
|
|
|
|
* * Restart core and wait for it to be started. Clear ITRen and sticky
|
|
|
|
* * exception flags: see ARMv7 ARM, C5.9.
|
2009-12-03 18:08:04 -06:00
|
|
|
*
|
|
|
|
* REVISIT: for single stepping, we probably want to
|
|
|
|
* disable IRQs by default, with optional override...
|
|
|
|
*/
|
2011-03-21 08:10:57 -05:00
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2011-03-21 08:10:57 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
if ((dscr & DSCR_INSTR_COMP) == 0)
|
|
|
|
LOG_ERROR("DSCR InstrCompl must be set before leaving debug!");
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr & ~DSCR_ITR_EN);
|
2011-03-21 08:10:57 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
2011-04-19 01:50:00 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DRCR, DRCR_RESTART |
|
|
|
|
DRCR_CLEAR_EXCEPTIONS);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2010-06-21 07:14:31 -05:00
|
|
|
long long then = timeval_ms();
|
2012-02-05 06:03:04 -06:00
|
|
|
for (;; ) {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2010-06-21 07:14:31 -05:00
|
|
|
if ((dscr & DSCR_CORE_RESTARTED) != 0)
|
|
|
|
break;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-06-21 07:14:31 -05:00
|
|
|
LOG_ERROR("Timeout waiting for resume");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
}
|
2009-08-26 14:25:44 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
target->debug_reason = DBG_REASON_NOTHALTED;
|
|
|
|
target->state = TARGET_RUNNING;
|
|
|
|
|
|
|
|
/* registers are now invalid */
|
2012-01-19 04:06:37 -06:00
|
|
|
register_cache_invalidate(arm->core_cache);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2011-04-19 01:50:00 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
static int cortex_a8_restore_smp(struct target *target, int handle_breakpoints)
|
2011-04-19 01:50:00 -05:00
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
struct target_list *head;
|
|
|
|
struct target *curr;
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t address;
|
2011-04-19 01:50:00 -05:00
|
|
|
head = target->head;
|
2012-02-05 06:03:04 -06:00
|
|
|
while (head != (struct target_list *)NULL) {
|
2011-04-19 01:50:00 -05:00
|
|
|
curr = head->target;
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((curr != target) && (curr->state != TARGET_RUNNING)) {
|
|
|
|
/* resume current address , not in step mode */
|
|
|
|
retval += cortex_a8_internal_restore(curr, 1, &address,
|
|
|
|
handle_breakpoints, 0);
|
|
|
|
retval += cortex_a8_internal_restart(curr);
|
2011-04-19 01:50:00 -05:00
|
|
|
}
|
|
|
|
head = head->next;
|
|
|
|
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_resume(struct target *target, int current,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t address, int handle_breakpoints, int debug_execution)
|
2011-04-19 01:50:00 -05:00
|
|
|
{
|
|
|
|
int retval = 0;
|
2012-02-05 06:03:04 -06:00
|
|
|
/* dummy resume for smp toggle in order to reduce gdb impact */
|
|
|
|
if ((target->smp) && (target->gdb_service->core[1] != -1)) {
|
2011-04-19 01:50:00 -05:00
|
|
|
/* simulate a start and halt of target */
|
|
|
|
target->gdb_service->target = NULL;
|
|
|
|
target->gdb_service->core[0] = target->gdb_service->core[1];
|
|
|
|
/* fake resume at next poll we play the target core[1], see poll*/
|
|
|
|
target_call_event_callbacks(target, TARGET_EVENT_RESUMED);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cortex_a8_internal_restore(target, current, &address, handle_breakpoints, debug_execution);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->smp) {
|
|
|
|
target->gdb_service->core[0] = -1;
|
2011-11-01 16:56:28 -05:00
|
|
|
retval = cortex_a8_restore_smp(target, handle_breakpoints);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-04-19 01:50:00 -05:00
|
|
|
}
|
|
|
|
cortex_a8_internal_restart(target);
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!debug_execution) {
|
2009-08-25 01:58:34 -05:00
|
|
|
target->state = TARGET_RUNNING;
|
|
|
|
target_call_event_callbacks(target, TARGET_EVENT_RESUMED);
|
2011-04-19 01:50:00 -05:00
|
|
|
LOG_DEBUG("target resumed at 0x%" PRIx32, address);
|
2012-02-05 06:03:04 -06:00
|
|
|
} else {
|
2009-08-25 01:58:34 -05:00
|
|
|
target->state = TARGET_DEBUG_RUNNING;
|
|
|
|
target_call_event_callbacks(target, TARGET_EVENT_DEBUG_RESUMED);
|
2011-04-19 01:50:00 -05:00
|
|
|
LOG_DEBUG("target debug resumed at 0x%" PRIx32, address);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_debug_entry(struct target *target)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int i;
|
2009-12-03 18:08:04 -06:00
|
|
|
uint32_t regfile[16], cpsr, dscr;
|
2009-08-25 01:58:34 -05:00
|
|
|
int retval = ERROR_OK;
|
2009-11-13 10:44:30 -06:00
|
|
|
struct working_area *regfile_working_area = NULL;
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = &armv7a->arm;
|
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-11-18 17:04:58 -06:00
|
|
|
struct reg *reg;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("dscr = 0x%08" PRIx32, cortex_a8->cpudbg_dscr);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-12-03 18:08:04 -06:00
|
|
|
/* REVISIT surely we should not re-read DSCR !! */
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
|
|
|
/* REVISIT see A8 TRM 12.11.4 steps 2..3 -- make sure that any
|
|
|
|
* imprecise data aborts get discarded by issuing a Data
|
|
|
|
* Synchronization Barrier: ARMV4_5_MCR(15, 0, 0, 7, 10, 4).
|
|
|
|
*/
|
|
|
|
|
2009-12-03 18:08:04 -06:00
|
|
|
/* Enable the ITR execution once we are in debug mode */
|
|
|
|
dscr |= DSCR_ITR_EN;
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-26 14:21:26 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Examine debug reason */
|
2009-12-03 18:08:04 -06:00
|
|
|
arm_dpm_report_dscr(&armv7a->dpm, cortex_a8->cpudbg_dscr);
|
|
|
|
|
|
|
|
/* save address of instruction that triggered the watchpoint? */
|
|
|
|
if (target->debug_reason == DBG_REASON_WATCHPOINT) {
|
|
|
|
uint32_t wfar;
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2009-12-03 18:08:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_WFAR,
|
|
|
|
&wfar);
|
2010-06-21 06:58:52 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-12-03 18:08:04 -06:00
|
|
|
arm_dpm_report_wfar(&armv7a->dpm, wfar);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* REVISIT fast_reg_read is never set ... */
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Examine target state and mode */
|
|
|
|
if (cortex_a8->fast_reg_read)
|
|
|
|
target_alloc_working_area(target, 64, ®file_working_area);
|
|
|
|
|
|
|
|
/* First load register acessible through core debug port*/
|
|
|
|
if (!regfile_working_area)
|
2009-11-24 23:24:44 -06:00
|
|
|
retval = arm_dpm_read_current_registers(&armv7a->dpm);
|
2012-02-05 06:03:04 -06:00
|
|
|
else {
|
2010-07-18 16:30:31 -05:00
|
|
|
retval = cortex_a8_read_regs_through_mem(target,
|
2009-08-25 01:58:34 -05:00
|
|
|
regfile_working_area->address, regfile);
|
2011-02-22 14:16:10 -06:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
target_free_working_area(target, regfile_working_area);
|
2010-07-18 16:30:31 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* read Current PSR */
|
2010-07-18 16:10:50 -05:00
|
|
|
retval = cortex_a8_dap_read_coreregister_u32(target, &cpsr, 16);
|
2011-09-29 10:17:27 -05:00
|
|
|
/* store current cpsr */
|
2010-07-18 16:10:50 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-02-22 14:16:10 -06:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
LOG_DEBUG("cpsr: %8.8" PRIx32, cpsr);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-01-19 04:06:37 -06:00
|
|
|
arm_set_cpsr(arm, cpsr);
|
2009-11-19 04:33:01 -06:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* update cache */
|
2012-02-05 06:03:04 -06:00
|
|
|
for (i = 0; i <= ARM_PC; i++) {
|
2012-01-19 04:06:37 -06:00
|
|
|
reg = arm_reg_current(arm, i);
|
2009-11-18 16:46:14 -06:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
buf_set_u32(reg->value, 0, 32, regfile[i]);
|
|
|
|
reg->valid = 1;
|
|
|
|
reg->dirty = 0;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
/* Fixup PC Resume Address */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (cpsr & (1 << 5)) {
|
|
|
|
/* T bit set for Thumb or ThumbEE state */
|
2009-11-24 23:24:44 -06:00
|
|
|
regfile[ARM_PC] -= 4;
|
2012-02-05 06:03:04 -06:00
|
|
|
} else {
|
|
|
|
/* ARM state */
|
2009-11-24 23:24:44 -06:00
|
|
|
regfile[ARM_PC] -= 8;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-01-19 04:06:37 -06:00
|
|
|
reg = arm->pc;
|
2009-11-24 23:24:44 -06:00
|
|
|
buf_set_u32(reg->value, 0, 32, regfile[ARM_PC]);
|
|
|
|
reg->dirty = reg->valid;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* TODO, Move this */
|
|
|
|
uint32_t cp15_control_register, cp15_cacr, cp15_nacr;
|
|
|
|
cortex_a8_read_cp(target, &cp15_control_register, 15, 0, 1, 0, 0);
|
|
|
|
LOG_DEBUG("cp15_control_register = 0x%08x", cp15_control_register);
|
|
|
|
|
|
|
|
cortex_a8_read_cp(target, &cp15_cacr, 15, 0, 1, 0, 2);
|
|
|
|
LOG_DEBUG("cp15 Coprocessor Access Control Register = 0x%08x", cp15_cacr);
|
|
|
|
|
|
|
|
cortex_a8_read_cp(target, &cp15_nacr, 15, 0, 1, 1, 2);
|
|
|
|
LOG_DEBUG("cp15 Nonsecure Access Control Register = 0x%08x", cp15_nacr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Are we in an exception handler */
|
2012-02-05 06:03:04 -06:00
|
|
|
/* armv4_5->exception_number = 0; */
|
|
|
|
if (armv7a->post_debug_entry) {
|
2010-07-19 05:34:54 -05:00
|
|
|
retval = armv7a->post_debug_entry(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2010-07-19 05:34:54 -05:00
|
|
|
static int cortex_a8_post_debug_entry(struct target *target)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2009-12-01 02:48:40 -06:00
|
|
|
int retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-12-01 02:48:40 -06:00
|
|
|
/* MRC p15,0,<Rt>,c1,c0,0 ; Read CP15 System Control Register */
|
2012-01-19 04:06:37 -06:00
|
|
|
retval = armv7a->arm.mrc(target, 15,
|
2009-12-01 02:48:40 -06:00
|
|
|
0, 0, /* op1, op2 */
|
|
|
|
1, 0, /* CRn, CRm */
|
|
|
|
&cortex_a8->cp15_control_reg);
|
2010-07-19 05:34:54 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("cp15_control_reg: %8.8" PRIx32, cortex_a8->cp15_control_reg);
|
2012-02-05 06:03:04 -06:00
|
|
|
cortex_a8->cp15_control_reg_curr = cortex_a8->cp15_control_reg;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2011-09-29 10:17:27 -05:00
|
|
|
if (armv7a->armv7a_mmu.armv7a_cache.ctype == -1)
|
|
|
|
armv7a_identify_cache(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2011-09-29 10:17:27 -05:00
|
|
|
armv7a->armv7a_mmu.mmu_enabled =
|
2012-02-05 06:03:04 -06:00
|
|
|
(cortex_a8->cp15_control_reg & 0x1U) ? 1 : 0;
|
2011-09-29 10:17:27 -05:00
|
|
|
armv7a->armv7a_mmu.armv7a_cache.d_u_cache_enabled =
|
2012-02-05 06:03:04 -06:00
|
|
|
(cortex_a8->cp15_control_reg & 0x4U) ? 1 : 0;
|
2011-09-29 10:17:27 -05:00
|
|
|
armv7a->armv7a_mmu.armv7a_cache.i_cache_enabled =
|
2012-02-05 06:03:04 -06:00
|
|
|
(cortex_a8->cp15_control_reg & 0x1000U) ? 1 : 0;
|
2012-01-19 04:06:37 -06:00
|
|
|
cortex_a8->curr_mode = armv7a->arm.core_mode;
|
|
|
|
|
2010-07-19 05:34:54 -05:00
|
|
|
return ERROR_OK;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_step(struct target *target, int current, uint32_t address,
|
2012-02-05 06:03:04 -06:00
|
|
|
int handle_breakpoints)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = &armv7a->arm;
|
2009-11-13 11:15:32 -06:00
|
|
|
struct breakpoint *breakpoint = NULL;
|
|
|
|
struct breakpoint stepbreakpoint;
|
2009-11-24 23:24:44 -06:00
|
|
|
struct reg *r;
|
2010-06-21 07:26:19 -05:00
|
|
|
int retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->state != TARGET_HALTED) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_WARNING("target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* current = 1: continue on current pc, otherwise continue at <address> */
|
2012-01-19 04:06:37 -06:00
|
|
|
r = arm->pc;
|
2009-08-25 01:58:34 -05:00
|
|
|
if (!current)
|
2009-11-24 23:24:44 -06:00
|
|
|
buf_set_u32(r->value, 0, 32, address);
|
2009-08-25 01:58:34 -05:00
|
|
|
else
|
2009-11-24 23:24:44 -06:00
|
|
|
address = buf_get_u32(r->value, 0, 32);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
/* The front-end may request us not to handle breakpoints.
|
|
|
|
* But since Cortex-A8 uses breakpoint for single step,
|
|
|
|
* we MUST handle breakpoints.
|
|
|
|
*/
|
|
|
|
handle_breakpoints = 1;
|
|
|
|
if (handle_breakpoints) {
|
2009-11-24 23:24:44 -06:00
|
|
|
breakpoint = breakpoint_find(target, address);
|
2009-08-25 01:58:34 -05:00
|
|
|
if (breakpoint)
|
|
|
|
cortex_a8_unset_breakpoint(target, breakpoint);
|
2009-05-04 13:44:12 -05:00
|
|
|
}
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Setup single step breakpoint */
|
|
|
|
stepbreakpoint.address = address;
|
2012-01-19 04:06:37 -06:00
|
|
|
stepbreakpoint.length = (arm->core_state == ARM_STATE_THUMB)
|
2012-02-05 06:03:04 -06:00
|
|
|
? 2 : 4;
|
2009-08-25 01:58:34 -05:00
|
|
|
stepbreakpoint.type = BKPT_HARD;
|
|
|
|
stepbreakpoint.set = 0;
|
|
|
|
|
|
|
|
/* Break on IVA mismatch */
|
|
|
|
cortex_a8_set_breakpoint(target, &stepbreakpoint, 0x04);
|
|
|
|
|
|
|
|
target->debug_reason = DBG_REASON_SINGLESTEP;
|
|
|
|
|
2010-06-21 07:26:19 -05:00
|
|
|
retval = cortex_a8_resume(target, 1, address, 0, 0);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2010-07-19 05:17:11 -05:00
|
|
|
long long then = timeval_ms();
|
2012-02-05 06:03:04 -06:00
|
|
|
while (target->state != TARGET_HALTED) {
|
2010-06-21 07:26:19 -05:00
|
|
|
retval = cortex_a8_poll(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (timeval_ms() > then + 1000) {
|
2010-06-21 07:26:19 -05:00
|
|
|
LOG_ERROR("timeout waiting for target halt");
|
|
|
|
return ERROR_FAIL;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cortex_a8_unset_breakpoint(target, &stepbreakpoint);
|
2010-07-19 05:17:11 -05:00
|
|
|
|
|
|
|
target->debug_reason = DBG_REASON_BREAKPOINT;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if (breakpoint)
|
|
|
|
cortex_a8_set_breakpoint(target, breakpoint, 0);
|
|
|
|
|
|
|
|
if (target->state != TARGET_HALTED)
|
|
|
|
LOG_DEBUG("target stepped");
|
|
|
|
|
2009-05-04 13:44:12 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-12-01 23:47:45 -06:00
|
|
|
static int cortex_a8_restore_context(struct target *target, bool bpwp)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
|
|
|
if (armv7a->pre_restore_context)
|
|
|
|
armv7a->pre_restore_context(target);
|
|
|
|
|
2010-07-18 16:30:31 -05:00
|
|
|
return arm_dpm_write_dirty_registers(&armv7a->dpm, bpwp);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-07-18 15:56:01 -05:00
|
|
|
* Cortex-A8 Breakpoint and watchpoint functions
|
2009-08-25 01:58:34 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Setup hardware Breakpoint Register Pair */
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_set_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint, uint8_t matchmode)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
int brp_i = 0;
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t control;
|
|
|
|
uint8_t byte_addr_select = 0x0F;
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2012-02-05 06:03:04 -06:00
|
|
|
struct cortex_a8_brp *brp_list = cortex_a8->brp_list;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (breakpoint->set) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_WARNING("breakpoint already set");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (breakpoint->type == BKPT_HARD) {
|
2009-08-25 01:58:34 -05:00
|
|
|
while (brp_list[brp_i].used && (brp_i < cortex_a8->brp_num))
|
2012-02-05 06:03:04 -06:00
|
|
|
brp_i++;
|
|
|
|
if (brp_i >= cortex_a8->brp_num) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_ERROR("ERROR Can not find free Breakpoint Register Pair");
|
2010-09-12 14:05:07 -05:00
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
breakpoint->set = brp_i + 1;
|
|
|
|
if (breakpoint->length == 2)
|
|
|
|
byte_addr_select = (3 << (breakpoint->address & 0x02));
|
|
|
|
control = ((matchmode & 0x7) << 20)
|
2012-02-05 06:03:04 -06:00
|
|
|
| (byte_addr_select << 5)
|
|
|
|
| (3 << 1) | 1;
|
2009-08-25 01:58:34 -05:00
|
|
|
brp_list[brp_i].used = 1;
|
|
|
|
brp_list[brp_i].value = (breakpoint->address & 0xFFFFFFFC);
|
|
|
|
brp_list[brp_i].control = control;
|
2010-07-18 16:30:31 -05:00
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
2009-08-25 01:58:34 -05:00
|
|
|
+ CPUDBG_BVR_BASE + 4 * brp_list[brp_i].BRPn,
|
|
|
|
brp_list[brp_i].value);
|
2010-07-18 16:30:31 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
2009-08-25 01:58:34 -05:00
|
|
|
+ CPUDBG_BCR_BASE + 4 * brp_list[brp_i].BRPn,
|
|
|
|
brp_list[brp_i].control);
|
2010-07-18 16:30:31 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("brp %i control 0x%0" PRIx32 " value 0x%0" PRIx32, brp_i,
|
2012-02-05 06:03:04 -06:00
|
|
|
brp_list[brp_i].control,
|
|
|
|
brp_list[brp_i].value);
|
|
|
|
} else if (breakpoint->type == BKPT_SOFT) {
|
2009-08-25 01:58:34 -05:00
|
|
|
uint8_t code[4];
|
|
|
|
if (breakpoint->length == 2)
|
|
|
|
buf_set_u32(code, 0, 32, ARMV5_T_BKPT(0x11));
|
|
|
|
else
|
|
|
|
buf_set_u32(code, 0, 32, ARMV5_BKPT(0x11));
|
2013-03-10 08:39:31 -05:00
|
|
|
retval = target_read_memory(target,
|
2009-08-25 01:58:34 -05:00
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
breakpoint->length, 1,
|
|
|
|
breakpoint->orig_instr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2013-03-10 07:16:14 -05:00
|
|
|
retval = target_write_memory(target,
|
2009-08-25 01:58:34 -05:00
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
breakpoint->length, 1, code);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
breakpoint->set = 0x11; /* Any nice value but 0 */
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2011-05-09 03:40:35 -05:00
|
|
|
static int cortex_a8_set_context_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint, uint8_t matchmode)
|
2011-05-09 03:40:35 -05:00
|
|
|
{
|
|
|
|
int retval = ERROR_FAIL;
|
2012-02-05 06:03:04 -06:00
|
|
|
int brp_i = 0;
|
2011-05-09 03:40:35 -05:00
|
|
|
uint32_t control;
|
|
|
|
uint8_t byte_addr_select = 0x0F;
|
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2012-02-05 06:03:04 -06:00
|
|
|
struct cortex_a8_brp *brp_list = cortex_a8->brp_list;
|
|
|
|
|
|
|
|
if (breakpoint->set) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_WARNING("breakpoint already set");
|
2012-02-05 06:03:04 -06:00
|
|
|
return retval;
|
2011-05-09 03:40:35 -05:00
|
|
|
}
|
|
|
|
/*check available context BRPs*/
|
2012-02-05 06:03:04 -06:00
|
|
|
while ((brp_list[brp_i].used ||
|
|
|
|
(brp_list[brp_i].type != BRP_CONTEXT)) && (brp_i < cortex_a8->brp_num))
|
|
|
|
brp_i++;
|
|
|
|
|
|
|
|
if (brp_i >= cortex_a8->brp_num) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_ERROR("ERROR Can not find free Breakpoint Register Pair");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
breakpoint->set = brp_i + 1;
|
|
|
|
control = ((matchmode & 0x7) << 20)
|
2012-02-05 06:03:04 -06:00
|
|
|
| (byte_addr_select << 5)
|
|
|
|
| (3 << 1) | 1;
|
2011-05-09 03:40:35 -05:00
|
|
|
brp_list[brp_i].used = 1;
|
|
|
|
brp_list[brp_i].value = (breakpoint->asid);
|
|
|
|
brp_list[brp_i].control = control;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
2012-02-05 06:03:04 -06:00
|
|
|
+ CPUDBG_BVR_BASE + 4 * brp_list[brp_i].BRPn,
|
2011-05-09 03:40:35 -05:00
|
|
|
brp_list[brp_i].value);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
2011-05-09 03:40:35 -05:00
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BCR_BASE + 4 * brp_list[brp_i].BRPn,
|
|
|
|
brp_list[brp_i].control);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
2011-05-09 03:40:35 -05:00
|
|
|
return retval;
|
|
|
|
LOG_DEBUG("brp %i control 0x%0" PRIx32 " value 0x%0" PRIx32, brp_i,
|
2012-02-05 06:03:04 -06:00
|
|
|
brp_list[brp_i].control,
|
|
|
|
brp_list[brp_i].value);
|
2011-05-09 03:40:35 -05:00
|
|
|
return ERROR_OK;
|
2012-02-05 06:03:04 -06:00
|
|
|
|
2011-05-09 03:40:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_set_hybrid_breakpoint(struct target *target, struct breakpoint *breakpoint)
|
|
|
|
{
|
|
|
|
int retval = ERROR_FAIL;
|
2012-02-05 06:03:04 -06:00
|
|
|
int brp_1 = 0; /* holds the contextID pair */
|
|
|
|
int brp_2 = 0; /* holds the IVA pair */
|
2011-05-09 03:40:35 -05:00
|
|
|
uint32_t control_CTX, control_IVA;
|
|
|
|
uint8_t CTX_byte_addr_select = 0x0F;
|
|
|
|
uint8_t IVA_byte_addr_select = 0x0F;
|
|
|
|
uint8_t CTX_machmode = 0x03;
|
|
|
|
uint8_t IVA_machmode = 0x01;
|
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2012-02-05 06:03:04 -06:00
|
|
|
struct cortex_a8_brp *brp_list = cortex_a8->brp_list;
|
|
|
|
|
|
|
|
if (breakpoint->set) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_WARNING("breakpoint already set");
|
2012-02-05 06:03:04 -06:00
|
|
|
return retval;
|
2011-05-09 03:40:35 -05:00
|
|
|
}
|
|
|
|
/*check available context BRPs*/
|
2012-02-05 06:03:04 -06:00
|
|
|
while ((brp_list[brp_1].used ||
|
|
|
|
(brp_list[brp_1].type != BRP_CONTEXT)) && (brp_1 < cortex_a8->brp_num))
|
|
|
|
brp_1++;
|
|
|
|
|
|
|
|
printf("brp(CTX) found num: %d\n", brp_1);
|
|
|
|
if (brp_1 >= cortex_a8->brp_num) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_ERROR("ERROR Can not find free Breakpoint Register Pair");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
while ((brp_list[brp_2].used ||
|
|
|
|
(brp_list[brp_2].type != BRP_NORMAL)) && (brp_2 < cortex_a8->brp_num))
|
|
|
|
brp_2++;
|
|
|
|
|
|
|
|
printf("brp(IVA) found num: %d\n", brp_2);
|
|
|
|
if (brp_2 >= cortex_a8->brp_num) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_ERROR("ERROR Can not find free Breakpoint Register Pair");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
breakpoint->set = brp_1 + 1;
|
2012-02-05 06:03:04 -06:00
|
|
|
breakpoint->linked_BRP = brp_2;
|
2011-05-09 03:40:35 -05:00
|
|
|
control_CTX = ((CTX_machmode & 0x7) << 20)
|
2012-02-05 06:03:04 -06:00
|
|
|
| (brp_2 << 16)
|
|
|
|
| (0 << 14)
|
|
|
|
| (CTX_byte_addr_select << 5)
|
|
|
|
| (3 << 1) | 1;
|
|
|
|
brp_list[brp_1].used = 1;
|
|
|
|
brp_list[brp_1].value = (breakpoint->asid);
|
|
|
|
brp_list[brp_1].control = control_CTX;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BVR_BASE + 4 * brp_list[brp_1].BRPn,
|
|
|
|
brp_list[brp_1].value);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BCR_BASE + 4 * brp_list[brp_1].BRPn,
|
|
|
|
brp_list[brp_1].control);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-05-09 03:40:35 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
control_IVA = ((IVA_machmode & 0x7) << 20)
|
|
|
|
| (brp_1 << 16)
|
|
|
|
| (IVA_byte_addr_select << 5)
|
|
|
|
| (3 << 1) | 1;
|
|
|
|
brp_list[brp_2].used = 1;
|
|
|
|
brp_list[brp_2].value = (breakpoint->address & 0xFFFFFFFC);
|
|
|
|
brp_list[brp_2].control = control_IVA;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BVR_BASE + 4 * brp_list[brp_2].BRPn,
|
|
|
|
brp_list[brp_2].value);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BCR_BASE + 4 * brp_list[brp_2].BRPn,
|
|
|
|
brp_list[brp_2].control);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-05-09 03:40:35 -05:00
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_unset_breakpoint(struct target *target, struct breakpoint *breakpoint)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-05-04 13:44:12 -05:00
|
|
|
int retval;
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2012-02-05 06:03:04 -06:00
|
|
|
struct cortex_a8_brp *brp_list = cortex_a8->brp_list;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!breakpoint->set) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_WARNING("breakpoint not set");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (breakpoint->type == BKPT_HARD) {
|
|
|
|
if ((breakpoint->address != 0) && (breakpoint->asid != 0)) {
|
2011-05-09 03:40:35 -05:00
|
|
|
int brp_i = breakpoint->set - 1;
|
|
|
|
int brp_j = breakpoint->linked_BRP;
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((brp_i < 0) || (brp_i >= cortex_a8->brp_num)) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_DEBUG("Invalid BRP number in breakpoint");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
LOG_DEBUG("rbp %i control 0x%0" PRIx32 " value 0x%0" PRIx32, brp_i,
|
2012-02-05 06:03:04 -06:00
|
|
|
brp_list[brp_i].control, brp_list[brp_i].value);
|
2011-05-09 03:40:35 -05:00
|
|
|
brp_list[brp_i].used = 0;
|
|
|
|
brp_list[brp_i].value = 0;
|
|
|
|
brp_list[brp_i].control = 0;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BCR_BASE + 4 * brp_list[brp_i].BRPn,
|
|
|
|
brp_list[brp_i].control);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BVR_BASE + 4 * brp_list[brp_i].BRPn,
|
|
|
|
brp_list[brp_i].value);
|
|
|
|
if (retval != ERROR_OK)
|
2012-02-05 06:03:04 -06:00
|
|
|
return retval;
|
|
|
|
if ((brp_j < 0) || (brp_j >= cortex_a8->brp_num)) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_DEBUG("Invalid BRP number in breakpoint");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
LOG_DEBUG("rbp %i control 0x%0" PRIx32 " value 0x%0" PRIx32, brp_j,
|
2012-02-05 06:03:04 -06:00
|
|
|
brp_list[brp_j].control, brp_list[brp_j].value);
|
2011-05-09 03:40:35 -05:00
|
|
|
brp_list[brp_j].used = 0;
|
|
|
|
brp_list[brp_j].value = 0;
|
|
|
|
brp_list[brp_j].control = 0;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BCR_BASE + 4 * brp_list[brp_j].BRPn,
|
|
|
|
brp_list[brp_j].control);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BVR_BASE + 4 * brp_list[brp_j].BRPn,
|
|
|
|
brp_list[brp_j].value);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
breakpoint->linked_BRP = 0;
|
|
|
|
breakpoint->set = 0;
|
2009-08-25 01:58:34 -05:00
|
|
|
return ERROR_OK;
|
2012-02-05 06:03:04 -06:00
|
|
|
|
|
|
|
} else {
|
2011-05-09 03:40:35 -05:00
|
|
|
int brp_i = breakpoint->set - 1;
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((brp_i < 0) || (brp_i >= cortex_a8->brp_num)) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_DEBUG("Invalid BRP number in breakpoint");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
LOG_DEBUG("rbp %i control 0x%0" PRIx32 " value 0x%0" PRIx32, brp_i,
|
2012-02-05 06:03:04 -06:00
|
|
|
brp_list[brp_i].control, brp_list[brp_i].value);
|
2011-05-09 03:40:35 -05:00
|
|
|
brp_list[brp_i].used = 0;
|
|
|
|
brp_list[brp_i].value = 0;
|
|
|
|
brp_list[brp_i].control = 0;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BCR_BASE + 4 * brp_list[brp_i].BRPn,
|
|
|
|
brp_list[brp_i].control);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_dap_write_memap_register_u32(target, armv7a->debug_base
|
|
|
|
+ CPUDBG_BVR_BASE + 4 * brp_list[brp_i].BRPn,
|
|
|
|
brp_list[brp_i].value);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
breakpoint->set = 0;
|
|
|
|
return ERROR_OK;
|
2012-02-05 06:03:04 -06:00
|
|
|
}
|
|
|
|
} else {
|
2009-08-25 01:58:34 -05:00
|
|
|
/* restore original instruction (kept in target endianness) */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (breakpoint->length == 4) {
|
2013-03-10 07:16:14 -05:00
|
|
|
retval = target_write_memory(target,
|
2009-08-25 01:58:34 -05:00
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
4, 1, breakpoint->orig_instr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
} else {
|
2013-03-10 07:16:14 -05:00
|
|
|
retval = target_write_memory(target,
|
2009-08-25 01:58:34 -05:00
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
2, 1, breakpoint->orig_instr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
breakpoint->set = 0;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
static int cortex_a8_add_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((breakpoint->type == BKPT_HARD) && (cortex_a8->brp_num_available < 1)) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_INFO("no hardware breakpoint available");
|
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
|
|
|
cortex_a8->brp_num_available--;
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
return cortex_a8_set_breakpoint(target, breakpoint, 0x00); /* Exact match */
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2011-05-09 03:40:35 -05:00
|
|
|
static int cortex_a8_add_context_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint)
|
2011-05-09 03:40:35 -05:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((breakpoint->type == BKPT_HARD) && (cortex_a8->brp_num_available < 1)) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_INFO("no hardware breakpoint available");
|
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
|
|
|
cortex_a8->brp_num_available--;
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
return cortex_a8_set_context_breakpoint(target, breakpoint, 0x02); /* asid match */
|
2011-05-09 03:40:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_add_hybrid_breakpoint(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct breakpoint *breakpoint)
|
2011-05-09 03:40:35 -05:00
|
|
|
{
|
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if ((breakpoint->type == BKPT_HARD) && (cortex_a8->brp_num_available < 1)) {
|
2011-05-09 03:40:35 -05:00
|
|
|
LOG_INFO("no hardware breakpoint available");
|
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
|
|
|
cortex_a8->brp_num_available--;
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
return cortex_a8_set_hybrid_breakpoint(target, breakpoint); /* ??? */
|
2011-05-09 03:40:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_remove_breakpoint(struct target *target, struct breakpoint *breakpoint)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
#if 0
|
2010-07-18 15:56:01 -05:00
|
|
|
/* It is perfectly possible to remove breakpoints while the target is running */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->state != TARGET_HALTED) {
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_WARNING("target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (breakpoint->set) {
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_unset_breakpoint(target, breakpoint);
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
2012-02-05 06:03:04 -06:00
|
|
|
cortex_a8->brp_num_available++;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-07-18 15:56:01 -05:00
|
|
|
* Cortex-A8 Reset functions
|
2009-08-25 01:58:34 -05:00
|
|
|
*/
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_assert_reset(struct target *target)
|
2009-10-02 11:36:03 -05:00
|
|
|
{
|
2009-11-19 21:02:10 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-10-02 11:36:03 -05:00
|
|
|
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
2009-11-27 20:50:26 -06:00
|
|
|
/* FIXME when halt is requested, make it work somehow... */
|
|
|
|
|
|
|
|
/* Issue some kind of warm reset. */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target_has_event_action(target, TARGET_EVENT_RESET_ASSERT))
|
2009-11-27 20:50:26 -06:00
|
|
|
target_handle_event(target, TARGET_EVENT_RESET_ASSERT);
|
2012-02-05 06:03:04 -06:00
|
|
|
else if (jtag_get_reset_config() & RESET_HAS_SRST) {
|
2009-11-27 20:50:26 -06:00
|
|
|
/* REVISIT handle "pulls" cases, if there's
|
|
|
|
* hardware that needs them to work.
|
|
|
|
*/
|
|
|
|
jtag_add_reset(0, 1);
|
|
|
|
} else {
|
|
|
|
LOG_ERROR("%s: how to reset?", target_name(target));
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
|
2009-10-02 11:36:03 -05:00
|
|
|
/* registers are now invalid */
|
2012-01-19 04:06:37 -06:00
|
|
|
register_cache_invalidate(armv7a->arm.core_cache);
|
2009-10-02 11:36:03 -05:00
|
|
|
|
|
|
|
target->state = TARGET_RESET;
|
2009-10-13 12:00:46 -05:00
|
|
|
|
2009-10-02 11:36:03 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_deassert_reset(struct target *target)
|
2009-10-02 11:36:03 -05:00
|
|
|
{
|
2009-11-27 20:50:26 -06:00
|
|
|
int retval;
|
2009-10-02 11:36:03 -05:00
|
|
|
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
2009-11-27 20:50:26 -06:00
|
|
|
/* be certain SRST is off */
|
|
|
|
jtag_add_reset(0, 0);
|
|
|
|
|
|
|
|
retval = cortex_a8_poll(target);
|
2010-06-21 07:26:19 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-27 20:50:26 -06:00
|
|
|
|
|
|
|
if (target->reset_halt) {
|
|
|
|
if (target->state != TARGET_HALTED) {
|
|
|
|
LOG_WARNING("%s: ran after reset and before halt ...",
|
2012-02-05 06:03:04 -06:00
|
|
|
target_name(target));
|
|
|
|
retval = target_halt(target);
|
|
|
|
if (retval != ERROR_OK)
|
2009-11-27 20:50:26 -06:00
|
|
|
return retval;
|
|
|
|
}
|
2009-10-02 11:36:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2011-04-12 09:48:22 -05:00
|
|
|
static int cortex_a8_write_apb_ab_memory(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t address, uint32_t size,
|
|
|
|
uint32_t count, const uint8_t *buffer)
|
2011-04-12 09:48:22 -05:00
|
|
|
{
|
2011-04-13 13:55:19 -05:00
|
|
|
/* write memory through APB-AP */
|
|
|
|
|
2011-12-28 05:56:08 -06:00
|
|
|
int retval = ERROR_COMMAND_SYNTAX_ERROR;
|
2011-04-12 09:48:22 -05:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = &armv7a->arm;
|
2012-10-22 23:48:41 -05:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2011-04-13 13:55:19 -05:00
|
|
|
int total_bytes = count * size;
|
2012-10-22 23:48:41 -05:00
|
|
|
int total_u32;
|
|
|
|
int start_byte = address & 0x3;
|
|
|
|
int end_byte = (address + total_bytes) & 0x3;
|
2011-04-12 09:48:22 -05:00
|
|
|
struct reg *reg;
|
2012-10-22 23:48:41 -05:00
|
|
|
uint32_t dscr;
|
|
|
|
uint8_t *tmp_buff = NULL;
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->state != TARGET_HALTED) {
|
2011-04-12 09:48:22 -05:00
|
|
|
LOG_WARNING("target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
total_u32 = DIV_ROUND_UP((address & 3) + total_bytes, 4);
|
|
|
|
|
|
|
|
/* Mark register R0 as dirty, as it will be used
|
|
|
|
* for transferring the data.
|
|
|
|
* It will be restored automatically when exiting
|
|
|
|
* debug mode
|
|
|
|
*/
|
2012-01-19 04:06:37 -06:00
|
|
|
reg = arm_reg_current(arm, 0);
|
2012-10-22 23:48:41 -05:00
|
|
|
reg->dirty = true;
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* clear any abort */
|
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap, armv7a->debug_base + CPUDBG_DRCR, 1<<2);
|
2011-04-12 09:48:22 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* This algorithm comes from either :
|
|
|
|
* Cortex-A8 TRM Example 12-25
|
|
|
|
* Cortex-R4 TRM Example 11-26
|
|
|
|
* (slight differences)
|
|
|
|
*/
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* The algorithm only copies 32 bit words, so the buffer
|
|
|
|
* should be expanded to include the words at either end.
|
|
|
|
* The first and last words will be read first to avoid
|
|
|
|
* corruption if needed.
|
|
|
|
*/
|
|
|
|
tmp_buff = (uint8_t *) malloc(total_u32 << 2);
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
if ((start_byte != 0) && (total_u32 > 1)) {
|
|
|
|
/* First bytes not aligned - read the 32 bit word to avoid corrupting
|
|
|
|
* the other bytes in the word.
|
|
|
|
*/
|
|
|
|
retval = cortex_a8_read_apb_ab_memory(target, (address & ~0x3), 4, 1, tmp_buff);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_w;
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* If end of write is not aligned, or the write is less than 4 bytes */
|
|
|
|
if ((end_byte != 0) ||
|
|
|
|
((total_u32 == 1) && (total_bytes != 4))) {
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Read the last word to avoid corruption during 32 bit write */
|
|
|
|
int mem_offset = (total_u32-1) << 4;
|
|
|
|
retval = cortex_a8_read_apb_ab_memory(target, (address & ~0x3) + mem_offset, 4, 1, &tmp_buff[mem_offset]);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_w;
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Copy the write buffer over the top of the temporary buffer */
|
|
|
|
memcpy(&tmp_buff[start_byte], buffer, total_bytes);
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* We now have a 32 bit aligned buffer that can be written */
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Read DSCR */
|
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_w;
|
|
|
|
|
|
|
|
/* Set DTR mode to Fast (2) */
|
|
|
|
dscr = (dscr & ~DSCR_EXT_DCC_MASK) | DSCR_EXT_DCC_FAST_MODE;
|
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_w;
|
|
|
|
|
|
|
|
/* Copy the destination address into R0 */
|
|
|
|
/* - pend an instruction MRC p14, 0, R0, c5, c0 */
|
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_ITR, ARMV4_5_MRC(14, 0, 0, 0, 5, 0));
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_unset_dtr_w;
|
|
|
|
/* Write address into DTRRX, which triggers previous instruction */
|
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DTRRX, address & (~0x3));
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_unset_dtr_w;
|
|
|
|
|
|
|
|
/* Write the data transfer instruction into the ITR
|
|
|
|
* (STC p14, c5, [R0], 4)
|
|
|
|
*/
|
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_ITR, ARMV4_5_STC(0, 1, 0, 1, 14, 5, 0, 4));
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_unset_dtr_w;
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Do the write */
|
|
|
|
retval = mem_ap_sel_write_buf_u32_noincr(swjdp, armv7a->debug_ap,
|
|
|
|
tmp_buff, (total_u32)<<2, armv7a->debug_base + CPUDBG_DTRRX);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_unset_dtr_w;
|
|
|
|
|
|
|
|
|
|
|
|
/* Switch DTR mode back to non-blocking (0) */
|
|
|
|
dscr = (dscr & ~DSCR_EXT_DCC_MASK) | DSCR_EXT_DCC_NON_BLOCKING;
|
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_unset_dtr_w;
|
|
|
|
|
|
|
|
/* Check for sticky abort flags in the DSCR */
|
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_w;
|
|
|
|
if (dscr & (DSCR_STICKY_ABORT_PRECISE | DSCR_STICKY_ABORT_IMPRECISE)) {
|
|
|
|
/* Abort occurred - clear it and exit */
|
|
|
|
LOG_ERROR("abort occurred - dscr = 0x%08x", dscr);
|
|
|
|
mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DRCR, 1<<2);
|
|
|
|
goto error_free_buff_w;
|
2011-04-12 09:48:22 -05:00
|
|
|
}
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Done */
|
|
|
|
free(tmp_buff);
|
|
|
|
return ERROR_OK;
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
error_unset_dtr_w:
|
|
|
|
/* Unset DTR mode */
|
|
|
|
mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
dscr = (dscr & ~DSCR_EXT_DCC_MASK) | DSCR_EXT_DCC_NON_BLOCKING;
|
|
|
|
mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
|
|
|
error_free_buff_w:
|
|
|
|
LOG_ERROR("error");
|
|
|
|
free(tmp_buff);
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2011-04-12 09:48:22 -05:00
|
|
|
|
|
|
|
static int cortex_a8_read_apb_ab_memory(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t address, uint32_t size,
|
|
|
|
uint32_t count, uint8_t *buffer)
|
2011-04-12 09:48:22 -05:00
|
|
|
{
|
2011-04-13 13:55:19 -05:00
|
|
|
/* read memory through APB-AP */
|
|
|
|
|
2011-12-28 05:56:08 -06:00
|
|
|
int retval = ERROR_COMMAND_SYNTAX_ERROR;
|
2011-04-12 09:48:22 -05:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-10-22 23:48:41 -05:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm *arm = &armv7a->arm;
|
2011-04-13 13:55:19 -05:00
|
|
|
int total_bytes = count * size;
|
2012-10-22 23:48:41 -05:00
|
|
|
int total_u32;
|
|
|
|
int start_byte = address & 0x3;
|
2011-04-12 09:48:22 -05:00
|
|
|
struct reg *reg;
|
2012-10-22 23:48:41 -05:00
|
|
|
uint32_t dscr;
|
|
|
|
char *tmp_buff = NULL;
|
|
|
|
uint32_t buff32[2];
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->state != TARGET_HALTED) {
|
2011-04-12 09:48:22 -05:00
|
|
|
LOG_WARNING("target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
total_u32 = DIV_ROUND_UP((address & 3) + total_bytes, 4);
|
|
|
|
|
|
|
|
/* Mark register R0 as dirty, as it will be used
|
|
|
|
* for transferring the data.
|
|
|
|
* It will be restored automatically when exiting
|
|
|
|
* debug mode
|
|
|
|
*/
|
2012-01-19 04:06:37 -06:00
|
|
|
reg = arm_reg_current(arm, 0);
|
2012-10-22 23:48:41 -05:00
|
|
|
reg->dirty = true;
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* clear any abort */
|
|
|
|
retval =
|
|
|
|
mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap, armv7a->debug_base + CPUDBG_DRCR, 1<<2);
|
2011-04-12 09:48:22 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Read DSCR */
|
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* This algorithm comes from either :
|
|
|
|
* Cortex-A8 TRM Example 12-24
|
|
|
|
* Cortex-R4 TRM Example 11-25
|
|
|
|
* (slight differences)
|
|
|
|
*/
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Set DTR access mode to stall mode b01 */
|
|
|
|
dscr = (dscr & ~DSCR_EXT_DCC_MASK) | DSCR_EXT_DCC_STALL_MODE;
|
|
|
|
retval += mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
|
|
|
|
|
|
|
/* Write R0 with value 'address' using write procedure for stall mode */
|
|
|
|
/* - Write the address for read access into DTRRX */
|
|
|
|
retval += mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DTRRX, address & ~0x3);
|
|
|
|
/* - Copy value from DTRRX to R0 using instruction mrc p14, 0, r0, c5, c0 */
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0), &dscr);
|
|
|
|
|
|
|
|
|
|
|
|
/* Write the data transfer instruction (ldc p14, c5, [r0],4)
|
|
|
|
* and the DTR mode setting to fast mode
|
|
|
|
* in one combined write (since they are adjacent registers)
|
|
|
|
*/
|
|
|
|
buff32[0] = ARMV4_5_LDC(0, 1, 0, 1, 14, 5, 0, 4);
|
|
|
|
dscr = (dscr & ~DSCR_EXT_DCC_MASK) | DSCR_EXT_DCC_FAST_MODE;
|
|
|
|
buff32[1] = dscr;
|
|
|
|
/* group the 2 access CPUDBG_ITR 0x84 and CPUDBG_DSCR 0x88 */
|
|
|
|
retval += mem_ap_sel_write_buf_u32(swjdp, armv7a->debug_ap, (uint8_t *)buff32, 8,
|
|
|
|
armv7a->debug_base + CPUDBG_ITR);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_unset_dtr_r;
|
|
|
|
|
|
|
|
|
|
|
|
/* Due to offset word alignment, the buffer may not have space
|
|
|
|
* to read the full first and last int32 words,
|
|
|
|
* hence, malloc space to read into, then copy and align into the buffer.
|
|
|
|
*/
|
|
|
|
tmp_buff = (char *) malloc(total_u32<<2);
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* The last word needs to be handled separately - read all other words in one go.
|
|
|
|
*/
|
|
|
|
if (total_u32 > 1) {
|
|
|
|
/* Read the data - Each read of the DTRTX register causes the instruction to be reissued
|
|
|
|
* Abort flags are sticky, so can be read at end of transactions
|
|
|
|
*
|
|
|
|
* This data is read in aligned to 32 bit boundary, hence may need shifting later.
|
|
|
|
*/
|
|
|
|
retval = mem_ap_sel_read_buf_u32_noincr(swjdp, armv7a->debug_ap, (uint8_t *)tmp_buff, (total_u32-1)<<2,
|
|
|
|
armv7a->debug_base + CPUDBG_DTRTX);
|
2011-04-12 09:48:22 -05:00
|
|
|
if (retval != ERROR_OK)
|
2012-10-22 23:48:41 -05:00
|
|
|
goto error_unset_dtr_r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set DTR access mode back to non blocking b00 */
|
|
|
|
dscr = (dscr & ~DSCR_EXT_DCC_MASK) | DSCR_EXT_DCC_NON_BLOCKING;
|
|
|
|
retval = mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_r;
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Wait for the final read instruction to finish */
|
|
|
|
do {
|
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_r;
|
|
|
|
} while ((dscr & DSCR_INSTR_COMP) == 0);
|
2012-02-05 06:03:04 -06:00
|
|
|
|
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Check for sticky abort flags in the DSCR */
|
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_r;
|
|
|
|
if (dscr & (DSCR_STICKY_ABORT_PRECISE | DSCR_STICKY_ABORT_IMPRECISE)) {
|
|
|
|
/* Abort occurred - clear it and exit */
|
|
|
|
LOG_ERROR("abort occurred - dscr = 0x%08x", dscr);
|
|
|
|
mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DRCR, 1<<2);
|
|
|
|
goto error_free_buff_r;
|
2011-04-12 09:48:22 -05:00
|
|
|
}
|
2011-04-13 13:55:19 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Read the last word */
|
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DTRTX, (uint32_t *)&tmp_buff[(total_u32-1)<<2]);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto error_free_buff_r;
|
|
|
|
|
|
|
|
/* Copy and align the data into the output buffer */
|
|
|
|
memcpy(buffer, &tmp_buff[start_byte], total_bytes);
|
|
|
|
|
|
|
|
free(tmp_buff);
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-10-22 23:48:41 -05:00
|
|
|
/* Done */
|
|
|
|
return ERROR_OK;
|
|
|
|
|
|
|
|
|
|
|
|
error_unset_dtr_r:
|
|
|
|
/* Unset DTR mode */
|
|
|
|
mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
dscr = (dscr & ~DSCR_EXT_DCC_MASK) | DSCR_EXT_DCC_NON_BLOCKING;
|
|
|
|
mem_ap_sel_write_atomic_u32(swjdp, armv7a->debug_ap,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
|
|
|
error_free_buff_r:
|
|
|
|
LOG_ERROR("error");
|
|
|
|
free(tmp_buff);
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2011-04-12 09:48:22 -05:00
|
|
|
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/*
|
|
|
|
* Cortex-A8 Memory access
|
|
|
|
*
|
|
|
|
* This is same Cortex M3 but we must also use the correct
|
|
|
|
* ap number for every access.
|
|
|
|
*/
|
|
|
|
|
2010-04-14 00:36:08 -05:00
|
|
|
static int cortex_a8_read_phys_memory(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t address, uint32_t size,
|
|
|
|
uint32_t count, uint8_t *buffer)
|
2010-04-14 00:36:08 -05:00
|
|
|
{
|
2011-03-21 08:10:57 -05:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2011-12-28 05:56:08 -06:00
|
|
|
int retval = ERROR_COMMAND_SYNTAX_ERROR;
|
2011-03-21 08:10:57 -05:00
|
|
|
uint8_t apsel = swjdp->apsel;
|
2011-04-12 09:48:22 -05:00
|
|
|
LOG_DEBUG("Reading memory at real address 0x%x; size %d; count %d",
|
2012-02-05 06:03:04 -06:00
|
|
|
address, size, count);
|
2011-03-21 08:10:57 -05:00
|
|
|
|
|
|
|
if (count && buffer) {
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
if (armv7a->memory_ap_available && (apsel == armv7a->memory_ap)) {
|
2011-03-21 08:10:57 -05:00
|
|
|
|
|
|
|
/* read memory through AHB-AP */
|
|
|
|
|
|
|
|
switch (size) {
|
2012-02-05 06:03:04 -06:00
|
|
|
case 4:
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_buf_u32(swjdp, armv7a->memory_ap,
|
2011-04-12 09:48:22 -05:00
|
|
|
buffer, 4 * count, address);
|
2012-02-05 06:03:04 -06:00
|
|
|
break;
|
|
|
|
case 2:
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_buf_u16(swjdp, armv7a->memory_ap,
|
2011-04-12 09:48:22 -05:00
|
|
|
buffer, 2 * count, address);
|
2012-02-05 06:03:04 -06:00
|
|
|
break;
|
|
|
|
case 1:
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_buf_u8(swjdp, armv7a->memory_ap,
|
2011-04-12 09:48:22 -05:00
|
|
|
buffer, count, address);
|
2012-02-05 06:03:04 -06:00
|
|
|
break;
|
2011-03-21 08:10:57 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
/* read memory through APB-AP
|
|
|
|
* disable mmu */
|
2011-09-29 10:17:27 -05:00
|
|
|
retval = cortex_a8_mmu_modify(target, 0);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = cortex_a8_read_apb_ab_memory(target, address, size, count, buffer);
|
2011-03-21 08:10:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
2010-04-14 00:36:08 -05:00
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_read_memory(struct target *target, uint32_t address,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t size, uint32_t count, uint8_t *buffer)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2011-04-12 09:48:22 -05:00
|
|
|
int enabled = 0;
|
|
|
|
uint32_t virt, phys;
|
|
|
|
int retval;
|
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2011-04-12 09:48:22 -05:00
|
|
|
uint8_t apsel = swjdp->apsel;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
|
|
|
/* cortex_a8 handles unaligned memory access */
|
2011-04-12 09:48:22 -05:00
|
|
|
LOG_DEBUG("Reading memory at address 0x%x; size %d; count %d", address,
|
2012-02-05 06:03:04 -06:00
|
|
|
size, count);
|
2012-10-11 17:07:45 -05:00
|
|
|
if (armv7a->memory_ap_available && (apsel == armv7a->memory_ap)) {
|
2011-04-12 09:48:22 -05:00
|
|
|
retval = cortex_a8_mmu(target, &enabled);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2011-04-19 01:50:00 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (enabled) {
|
2011-04-12 09:48:22 -05:00
|
|
|
virt = address;
|
|
|
|
retval = cortex_a8_virt2phys(target, virt, &phys);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2010-04-14 00:36:08 -05:00
|
|
|
|
2011-04-12 09:48:22 -05:00
|
|
|
LOG_DEBUG("Reading at virtual address. Translating v:0x%x to r:0x%x",
|
2012-02-05 06:03:04 -06:00
|
|
|
virt, phys);
|
2011-04-12 09:48:22 -05:00
|
|
|
address = phys;
|
|
|
|
}
|
|
|
|
retval = cortex_a8_read_phys_memory(target, address, size, count, buffer);
|
|
|
|
} else {
|
2011-09-29 10:17:27 -05:00
|
|
|
retval = cortex_a8_check_address(target, address);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-09-29 10:17:27 -05:00
|
|
|
/* enable mmu */
|
|
|
|
retval = cortex_a8_mmu_modify(target, 1);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-04-12 09:48:22 -05:00
|
|
|
retval = cortex_a8_read_apb_ab_memory(target, address, size, count, buffer);
|
|
|
|
}
|
|
|
|
return retval;
|
2010-04-14 00:36:08 -05:00
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2010-04-14 00:36:08 -05:00
|
|
|
static int cortex_a8_write_phys_memory(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t address, uint32_t size,
|
|
|
|
uint32_t count, const uint8_t *buffer)
|
2010-04-14 00:36:08 -05:00
|
|
|
{
|
2011-03-21 08:10:57 -05:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2011-12-28 05:56:08 -06:00
|
|
|
int retval = ERROR_COMMAND_SYNTAX_ERROR;
|
2011-03-21 08:10:57 -05:00
|
|
|
uint8_t apsel = swjdp->apsel;
|
|
|
|
|
2011-04-12 09:48:22 -05:00
|
|
|
LOG_DEBUG("Writing memory to real address 0x%x; size %d; count %d", address,
|
2012-02-05 06:03:04 -06:00
|
|
|
size, count);
|
2011-03-21 08:10:57 -05:00
|
|
|
|
|
|
|
if (count && buffer) {
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
if (armv7a->memory_ap_available && (apsel == armv7a->memory_ap)) {
|
2011-03-21 08:10:57 -05:00
|
|
|
|
|
|
|
/* write memory through AHB-AP */
|
|
|
|
|
|
|
|
switch (size) {
|
|
|
|
case 4:
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_buf_u32(swjdp, armv7a->memory_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
buffer, 4 * count, address);
|
2011-03-21 08:10:57 -05:00
|
|
|
break;
|
|
|
|
case 2:
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_buf_u16(swjdp, armv7a->memory_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
buffer, 2 * count, address);
|
2011-03-21 08:10:57 -05:00
|
|
|
break;
|
|
|
|
case 1:
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_write_buf_u8(swjdp, armv7a->memory_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
buffer, count, address);
|
2011-03-21 08:10:57 -05:00
|
|
|
break;
|
|
|
|
}
|
2010-04-14 00:36:08 -05:00
|
|
|
|
2011-03-21 08:10:57 -05:00
|
|
|
} else {
|
2010-04-14 00:36:08 -05:00
|
|
|
|
2011-03-21 08:10:57 -05:00
|
|
|
/* write memory through APB-AP */
|
2011-09-29 10:17:27 -05:00
|
|
|
retval = cortex_a8_mmu_modify(target, 0);
|
2011-03-21 08:10:57 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
return cortex_a8_write_apb_ab_memory(target, address, size, count, buffer);
|
2011-03-21 08:10:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* REVISIT this op is generic ARMv7-A/R stuff */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval == ERROR_OK && target->state == TARGET_HALTED) {
|
2012-01-19 04:06:37 -06:00
|
|
|
struct arm_dpm *dpm = armv7a->arm.dpm;
|
2011-03-21 08:10:57 -05:00
|
|
|
|
|
|
|
retval = dpm->prepare(dpm);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
/* The Cache handling will NOT work with MMU active, the
|
|
|
|
* wrong addresses will be invalidated!
|
|
|
|
*
|
|
|
|
* For both ICache and DCache, walk all cache lines in the
|
|
|
|
* address range. Cortex-A8 has fixed 64 byte line length.
|
|
|
|
*
|
|
|
|
* REVISIT per ARMv7, these may trigger watchpoints ...
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* invalidate I-Cache */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (armv7a->armv7a_mmu.armv7a_cache.i_cache_enabled) {
|
2011-03-21 08:10:57 -05:00
|
|
|
/* ICIMVAU - Invalidate Cache single entry
|
|
|
|
* with MVA to PoU
|
|
|
|
* MCR p15, 0, r0, c7, c5, 1
|
|
|
|
*/
|
|
|
|
for (uint32_t cacheline = address;
|
2012-02-05 06:03:04 -06:00
|
|
|
cacheline < address + size * count;
|
|
|
|
cacheline += 64) {
|
2011-03-21 08:10:57 -05:00
|
|
|
retval = dpm->instr_write_data_r0(dpm,
|
|
|
|
ARMV4_5_MCR(15, 0, 0, 7, 5, 1),
|
|
|
|
cacheline);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* invalidate D-Cache */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (armv7a->armv7a_mmu.armv7a_cache.d_u_cache_enabled) {
|
2011-03-21 08:10:57 -05:00
|
|
|
/* DCIMVAC - Invalidate data Cache line
|
|
|
|
* with MVA to PoC
|
|
|
|
* MCR p15, 0, r0, c7, c6, 1
|
|
|
|
*/
|
|
|
|
for (uint32_t cacheline = address;
|
2012-02-05 06:03:04 -06:00
|
|
|
cacheline < address + size * count;
|
|
|
|
cacheline += 64) {
|
2011-03-21 08:10:57 -05:00
|
|
|
retval = dpm->instr_write_data_r0(dpm,
|
|
|
|
ARMV4_5_MCR(15, 0, 0, 7, 6, 1),
|
|
|
|
cacheline);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (void) */ dpm->finish(dpm);
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
2009-05-04 13:44:12 -05:00
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
static int cortex_a8_write_memory(struct target *target, uint32_t address,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t size, uint32_t count, const uint8_t *buffer)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2011-04-12 09:48:22 -05:00
|
|
|
int enabled = 0;
|
|
|
|
uint32_t virt, phys;
|
|
|
|
int retval;
|
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2011-04-12 09:48:22 -05:00
|
|
|
uint8_t apsel = swjdp->apsel;
|
|
|
|
/* cortex_a8 handles unaligned memory access */
|
|
|
|
LOG_DEBUG("Reading memory at address 0x%x; size %d; count %d", address,
|
2012-02-05 06:03:04 -06:00
|
|
|
size, count);
|
2012-10-11 17:07:45 -05:00
|
|
|
if (armv7a->memory_ap_available && (apsel == armv7a->memory_ap)) {
|
2011-04-12 09:48:22 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
LOG_DEBUG("Writing memory to address 0x%x; size %d; count %d", address, size,
|
|
|
|
count);
|
2011-04-12 09:48:22 -05:00
|
|
|
retval = cortex_a8_mmu(target, &enabled);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (enabled) {
|
2011-04-12 09:48:22 -05:00
|
|
|
virt = address;
|
|
|
|
retval = cortex_a8_virt2phys(target, virt, &phys);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
LOG_DEBUG("Writing to virtual address. Translating v:0x%x to r:0x%x",
|
|
|
|
virt,
|
|
|
|
phys);
|
2011-04-12 09:48:22 -05:00
|
|
|
address = phys;
|
|
|
|
}
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
retval = cortex_a8_write_phys_memory(target, address, size,
|
2011-04-12 09:48:22 -05:00
|
|
|
count, buffer);
|
2012-02-05 06:03:04 -06:00
|
|
|
} else {
|
2011-09-29 10:17:27 -05:00
|
|
|
retval = cortex_a8_check_address(target, address);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-09-29 10:17:27 -05:00
|
|
|
/* enable mmu */
|
|
|
|
retval = cortex_a8_mmu_modify(target, 1);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-04-12 09:48:22 -05:00
|
|
|
retval = cortex_a8_write_apb_ab_memory(target, address, size, count, buffer);
|
|
|
|
}
|
2012-02-05 06:03:04 -06:00
|
|
|
return retval;
|
2009-05-04 13:44:12 -05:00
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_bulk_write_memory(struct target *target, uint32_t address,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t count, const uint8_t *buffer)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
return cortex_a8_write_memory(target, address, 4, count, buffer);
|
|
|
|
}
|
|
|
|
|
2009-11-10 20:26:13 -06:00
|
|
|
static int cortex_a8_handle_target_request(void *priv)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-11-13 12:11:13 -06:00
|
|
|
struct target *target = priv;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2010-07-18 16:30:31 -05:00
|
|
|
int retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-15 12:35:25 -06:00
|
|
|
if (!target_was_examined(target))
|
|
|
|
return ERROR_OK;
|
2009-05-04 13:44:12 -05:00
|
|
|
if (!target->dbg_msg_enabled)
|
|
|
|
return ERROR_OK;
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (target->state == TARGET_RUNNING) {
|
2011-04-05 11:41:32 -05:00
|
|
|
uint32_t request;
|
|
|
|
uint32_t dscr;
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-05-04 13:44:12 -05:00
|
|
|
|
|
|
|
/* check if we have data */
|
2012-02-05 06:03:04 -06:00
|
|
|
while ((dscr & DSCR_DTR_TX_FULL) && (retval == ERROR_OK)) {
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DTRTX, &request);
|
|
|
|
if (retval == ERROR_OK) {
|
2011-04-05 11:41:32 -05:00
|
|
|
target_request(target, request);
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2011-04-05 11:41:32 -05:00
|
|
|
}
|
2009-05-04 13:44:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/*
|
|
|
|
* Cortex-A8 target information and configuration
|
|
|
|
*/
|
|
|
|
|
2009-11-19 12:47:31 -06:00
|
|
|
static int cortex_a8_examine_first(struct target *target)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = target_to_cortex_a8(target);
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2009-08-25 01:58:34 -05:00
|
|
|
int i;
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
uint32_t didr, ctypr, ttypr, cpuid;
|
|
|
|
|
|
|
|
/* We do one extra read to ensure DAP is configured,
|
|
|
|
* we call ahbap_debugport_init(swjdp) instead
|
|
|
|
*/
|
2010-06-21 02:02:02 -05:00
|
|
|
retval = ahbap_debugport_init(swjdp);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
/* Search for the APB-AB - it is needed for access to debug registers */
|
|
|
|
retval = dap_find_ap(swjdp, AP_TYPE_APB_AP, &armv7a->debug_ap);
|
|
|
|
if (retval != ERROR_OK) {
|
|
|
|
LOG_ERROR("Could not find APB-AP for debug access");
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
/* Search for the AHB-AB */
|
|
|
|
retval = dap_find_ap(swjdp, AP_TYPE_AHB_AP, &armv7a->memory_ap);
|
|
|
|
if (retval != ERROR_OK) {
|
|
|
|
/* AHB-AP not found - use APB-AP */
|
|
|
|
LOG_DEBUG("Could not find AHB-AP - using APB-AP for memory access");
|
|
|
|
armv7a->memory_ap_available = false;
|
|
|
|
} else {
|
|
|
|
armv7a->memory_ap_available = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!target->dbgbase_set) {
|
2011-04-01 10:54:28 -05:00
|
|
|
uint32_t dbgbase;
|
2011-03-30 06:34:50 -05:00
|
|
|
/* Get ROM Table base */
|
|
|
|
uint32_t apid;
|
|
|
|
retval = dap_get_debugbase(swjdp, 1, &dbgbase, &apid);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2011-04-01 10:54:28 -05:00
|
|
|
/* Lookup 0x15 -- Processor DAP */
|
|
|
|
retval = dap_lookup_cs_component(swjdp, 1, dbgbase, 0x15,
|
|
|
|
&armv7a->debug_base);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
} else
|
2011-04-01 10:54:28 -05:00
|
|
|
armv7a->debug_base = target->dbgbase;
|
2010-10-28 19:57:32 -05:00
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2011-02-22 14:16:10 -06:00
|
|
|
armv7a->debug_base + CPUDBG_CPUID, &cpuid);
|
2010-06-21 02:02:02 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_CPUID, &cpuid);
|
|
|
|
if (retval != ERROR_OK) {
|
2010-01-27 15:24:21 -06:00
|
|
|
LOG_DEBUG("Examine %s failed", "CPUID");
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_CTYPR, &ctypr);
|
|
|
|
if (retval != ERROR_OK) {
|
2010-01-27 15:24:21 -06:00
|
|
|
LOG_DEBUG("Examine %s failed", "CTYPR");
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_TTYPR, &ttypr);
|
|
|
|
if (retval != ERROR_OK) {
|
2010-01-27 15:24:21 -06:00
|
|
|
LOG_DEBUG("Examine %s failed", "TTYPR");
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-10-11 17:07:45 -05:00
|
|
|
retval = mem_ap_sel_read_atomic_u32(swjdp, armv7a->debug_ap,
|
2012-02-05 06:03:04 -06:00
|
|
|
armv7a->debug_base + CPUDBG_DIDR, &didr);
|
|
|
|
if (retval != ERROR_OK) {
|
2010-01-27 15:24:21 -06:00
|
|
|
LOG_DEBUG("Examine %s failed", "DIDR");
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("cpuid = 0x%08" PRIx32, cpuid);
|
|
|
|
LOG_DEBUG("ctypr = 0x%08" PRIx32, ctypr);
|
|
|
|
LOG_DEBUG("ttypr = 0x%08" PRIx32, ttypr);
|
|
|
|
LOG_DEBUG("didr = 0x%08" PRIx32, didr);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-01-19 04:06:37 -06:00
|
|
|
armv7a->arm.core_type = ARM_MODE_MON;
|
2010-06-21 02:02:02 -05:00
|
|
|
retval = cortex_a8_dpm_setup(cortex_a8, didr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Setup Breakpoint Register Pairs */
|
|
|
|
cortex_a8->brp_num = ((didr >> 24) & 0x0F) + 1;
|
|
|
|
cortex_a8->brp_num_context = ((didr >> 20) & 0x0F) + 1;
|
|
|
|
cortex_a8->brp_num_available = cortex_a8->brp_num;
|
2009-11-13 11:17:08 -06:00
|
|
|
cortex_a8->brp_list = calloc(cortex_a8->brp_num, sizeof(struct cortex_a8_brp));
|
2012-02-05 06:03:04 -06:00
|
|
|
/* cortex_a8->brb_enabled = ????; */
|
|
|
|
for (i = 0; i < cortex_a8->brp_num; i++) {
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8->brp_list[i].used = 0;
|
|
|
|
if (i < (cortex_a8->brp_num-cortex_a8->brp_num_context))
|
|
|
|
cortex_a8->brp_list[i].type = BRP_NORMAL;
|
|
|
|
else
|
|
|
|
cortex_a8->brp_list[i].type = BRP_CONTEXT;
|
|
|
|
cortex_a8->brp_list[i].value = 0;
|
|
|
|
cortex_a8->brp_list[i].control = 0;
|
|
|
|
cortex_a8->brp_list[i].BRPn = i;
|
|
|
|
}
|
|
|
|
|
2009-12-02 13:31:32 -06:00
|
|
|
LOG_DEBUG("Configured %i hw breakpoints", cortex_a8->brp_num);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-15 12:35:25 -06:00
|
|
|
target_set_examined(target);
|
2009-11-19 12:47:31 -06:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_examine(struct target *target)
|
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
|
|
|
|
/* don't re-probe hardware after each reset */
|
|
|
|
if (!target_was_examined(target))
|
|
|
|
retval = cortex_a8_examine_first(target);
|
|
|
|
|
|
|
|
/* Configure core debug access */
|
|
|
|
if (retval == ERROR_OK)
|
|
|
|
retval = cortex_a8_init_debug_access(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cortex-A8 target creation and initialization
|
|
|
|
*/
|
|
|
|
|
2009-11-13 15:25:47 -06:00
|
|
|
static int cortex_a8_init_target(struct command_context *cmd_ctx,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct target *target)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-24 23:24:44 -06:00
|
|
|
/* examine_first() does a bunch of this */
|
2009-08-25 01:58:34 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-24 23:24:44 -06:00
|
|
|
static int cortex_a8_init_arch_info(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
struct cortex_a8_common *cortex_a8, struct jtag_tap *tap)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-16 19:57:12 -06:00
|
|
|
struct armv7a_common *armv7a = &cortex_a8->armv7a_common;
|
2010-03-05 12:39:25 -06:00
|
|
|
struct adiv5_dap *dap = &armv7a->dap;
|
|
|
|
|
2012-01-19 04:06:37 -06:00
|
|
|
armv7a->arm.dap = dap;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-13 10:42:11 -06:00
|
|
|
/* Setup struct cortex_a8_common */
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8->common_magic = CORTEX_A8_COMMON_MAGIC;
|
2011-04-12 11:24:50 -05:00
|
|
|
/* tap has no dap initialized */
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!tap->dap) {
|
|
|
|
armv7a->arm.dap = dap;
|
|
|
|
/* Setup struct cortex_a8_common */
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
/* prepare JTAG information for the new target */
|
|
|
|
cortex_a8->jtag_info.tap = tap;
|
|
|
|
cortex_a8->jtag_info.scann_size = 4;
|
2009-11-24 23:24:44 -06:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
/* Leave (only) generic DAP stuff for debugport_init() */
|
|
|
|
dap->jtag_info = &cortex_a8->jtag_info;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
/* Number of bits for tar autoincrement, impl. dep. at least 10 */
|
|
|
|
dap->tar_autoincr_block = (1 << 10);
|
|
|
|
dap->memaccess_tck = 80;
|
|
|
|
tap->dap = dap;
|
|
|
|
} else
|
|
|
|
armv7a->arm.dap = tap->dap;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8->fast_reg_read = 0;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
|
|
|
/* register arch-specific functions */
|
2009-08-25 01:58:34 -05:00
|
|
|
armv7a->examine_debug_reason = NULL;
|
|
|
|
|
|
|
|
armv7a->post_debug_entry = cortex_a8_post_debug_entry;
|
|
|
|
|
|
|
|
armv7a->pre_restore_context = NULL;
|
|
|
|
|
2011-09-29 10:17:27 -05:00
|
|
|
armv7a->armv7a_mmu.read_physical_memory = cortex_a8_read_phys_memory;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
|
|
|
|
/* arm7_9->handle_target_request = cortex_a8_handle_target_request; */
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-11-18 16:49:22 -06:00
|
|
|
/* REVISIT v7a setup should be in a v7a-specific routine */
|
2011-09-29 10:17:27 -05:00
|
|
|
armv7a_init_arch_info(target, armv7a);
|
2009-05-04 13:44:12 -05:00
|
|
|
target_register_timer_callback(cortex_a8_handle_target_request, 1, 1, target);
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_target_create(struct target *target, Jim_Interp *interp)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-11-13 10:42:11 -06:00
|
|
|
struct cortex_a8_common *cortex_a8 = calloc(1, sizeof(struct cortex_a8_common));
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2010-07-18 16:30:31 -05:00
|
|
|
return cortex_a8_init_arch_info(target, cortex_a8, target->tap);
|
2009-05-04 13:44:12 -05:00
|
|
|
}
|
|
|
|
|
2010-04-14 00:36:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
static int cortex_a8_mmu(struct target *target, int *enabled)
|
|
|
|
{
|
|
|
|
if (target->state != TARGET_HALTED) {
|
|
|
|
LOG_ERROR("%s: target not halted", __func__);
|
|
|
|
return ERROR_TARGET_INVALID;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:17:27 -05:00
|
|
|
*enabled = target_to_cortex_a8(target)->armv7a_common.armv7a_mmu.mmu_enabled;
|
2010-04-14 00:36:08 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cortex_a8_virt2phys(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t virt, uint32_t *phys)
|
2010-04-14 00:36:08 -05:00
|
|
|
{
|
2011-09-29 10:17:27 -05:00
|
|
|
int retval = ERROR_FAIL;
|
2010-04-14 00:36:08 -05:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2012-01-19 04:06:37 -06:00
|
|
|
struct adiv5_dap *swjdp = armv7a->arm.dap;
|
2011-09-29 10:17:27 -05:00
|
|
|
uint8_t apsel = swjdp->apsel;
|
2012-10-11 17:07:45 -05:00
|
|
|
if (armv7a->memory_ap_available && (apsel == armv7a->memory_ap)) {
|
2011-09-29 10:17:27 -05:00
|
|
|
uint32_t ret;
|
|
|
|
retval = armv7a_mmu_translate_va(target,
|
2012-02-05 06:03:04 -06:00
|
|
|
virt, &ret);
|
2011-09-29 10:17:27 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto done;
|
|
|
|
*phys = ret;
|
2012-10-11 17:07:45 -05:00
|
|
|
} else {/* use this method if armv7a->memory_ap not selected
|
2012-02-05 06:03:04 -06:00
|
|
|
* mmu must be enable in order to get a correct translation */
|
2011-09-29 10:17:27 -05:00
|
|
|
retval = cortex_a8_mmu_modify(target, 1);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto done;
|
2011-09-29 10:17:27 -05:00
|
|
|
retval = armv7a_mmu_translate_va_pa(target, virt, phys, 1);
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
return retval;
|
2010-04-14 00:36:08 -05:00
|
|
|
}
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(cortex_a8_handle_cache_info_command)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-15 07:57:37 -06:00
|
|
|
struct target *target = get_current_target(CMD_CTX);
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2011-09-29 10:17:27 -05:00
|
|
|
return armv7a_handle_cache_info_command(CMD_CTX,
|
|
|
|
&armv7a->armv7a_mmu.armv7a_cache);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(cortex_a8_handle_dbginit_command)
|
2009-09-18 10:11:46 -05:00
|
|
|
{
|
2009-11-15 07:57:37 -06:00
|
|
|
struct target *target = get_current_target(CMD_CTX);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!target_was_examined(target)) {
|
2010-06-18 08:35:52 -05:00
|
|
|
LOG_ERROR("target not examined yet");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
2009-09-18 10:11:46 -05:00
|
|
|
|
2010-06-18 08:35:52 -05:00
|
|
|
return cortex_a8_init_debug_access(target);
|
2009-09-18 10:11:46 -05:00
|
|
|
}
|
2011-04-19 01:50:00 -05:00
|
|
|
COMMAND_HANDLER(cortex_a8_handle_smp_off_command)
|
|
|
|
{
|
|
|
|
struct target *target = get_current_target(CMD_CTX);
|
2012-02-05 06:03:04 -06:00
|
|
|
/* check target is an smp target */
|
|
|
|
struct target_list *head;
|
2011-04-19 01:50:00 -05:00
|
|
|
struct target *curr;
|
|
|
|
head = target->head;
|
|
|
|
target->smp = 0;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (head != (struct target_list *)NULL) {
|
|
|
|
while (head != (struct target_list *)NULL) {
|
2011-04-19 01:50:00 -05:00
|
|
|
curr = head->target;
|
|
|
|
curr->smp = 0;
|
|
|
|
head = head->next;
|
|
|
|
}
|
|
|
|
/* fixes the target display to the debugger */
|
|
|
|
target->gdb_service->target = target;
|
|
|
|
}
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
COMMAND_HANDLER(cortex_a8_handle_smp_on_command)
|
|
|
|
{
|
|
|
|
struct target *target = get_current_target(CMD_CTX);
|
|
|
|
struct target_list *head;
|
|
|
|
struct target *curr;
|
|
|
|
head = target->head;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (head != (struct target_list *)NULL) {
|
|
|
|
target->smp = 1;
|
|
|
|
while (head != (struct target_list *)NULL) {
|
2011-04-19 01:50:00 -05:00
|
|
|
curr = head->target;
|
|
|
|
curr->smp = 1;
|
|
|
|
head = head->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
COMMAND_HANDLER(cortex_a8_handle_smp_gdb_command)
|
|
|
|
{
|
|
|
|
struct target *target = get_current_target(CMD_CTX);
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
struct target_list *head;
|
|
|
|
head = target->head;
|
2012-02-05 06:03:04 -06:00
|
|
|
if (head != (struct target_list *)NULL) {
|
|
|
|
if (CMD_ARGC == 1) {
|
2011-04-19 01:50:00 -05:00
|
|
|
int coreid = 0;
|
|
|
|
COMMAND_PARSE_NUMBER(int, CMD_ARGV[0], coreid);
|
|
|
|
if (ERROR_OK != retval)
|
|
|
|
return retval;
|
2012-02-05 06:03:04 -06:00
|
|
|
target->gdb_service->core[1] = coreid;
|
2011-04-19 01:50:00 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
command_print(CMD_CTX, "gdb coreid %d -> %d", target->gdb_service->core[0]
|
2012-02-05 06:03:04 -06:00
|
|
|
, target->gdb_service->core[1]);
|
2011-04-19 01:50:00 -05:00
|
|
|
}
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
2009-09-18 10:11:46 -05:00
|
|
|
|
2009-11-23 09:43:06 -06:00
|
|
|
static const struct command_registration cortex_a8_exec_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "cache_info",
|
2010-01-07 17:52:38 -06:00
|
|
|
.handler = cortex_a8_handle_cache_info_command,
|
2009-11-23 09:43:06 -06:00
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "display information about target caches",
|
2012-01-16 07:35:23 -06:00
|
|
|
.usage = "",
|
2009-11-23 09:43:06 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "dbginit",
|
2010-01-07 17:52:38 -06:00
|
|
|
.handler = cortex_a8_handle_dbginit_command,
|
2009-11-23 09:43:06 -06:00
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "Initialize core debug",
|
2012-01-16 07:35:23 -06:00
|
|
|
.usage = "",
|
2009-11-23 09:43:06 -06:00
|
|
|
},
|
2012-02-05 06:03:04 -06:00
|
|
|
{ .name = "smp_off",
|
2011-04-19 01:50:00 -05:00
|
|
|
.handler = cortex_a8_handle_smp_off_command,
|
2012-02-05 06:03:04 -06:00
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "Stop smp handling",
|
|
|
|
.usage = "",},
|
2011-04-19 01:50:00 -05:00
|
|
|
{
|
2012-02-05 06:03:04 -06:00
|
|
|
.name = "smp_on",
|
|
|
|
.handler = cortex_a8_handle_smp_on_command,
|
2011-04-19 01:50:00 -05:00
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "Restart smp handling",
|
2012-01-16 07:35:23 -06:00
|
|
|
.usage = "",
|
2011-04-19 01:50:00 -05:00
|
|
|
},
|
|
|
|
{
|
2012-02-05 06:03:04 -06:00
|
|
|
.name = "smp_gdb",
|
|
|
|
.handler = cortex_a8_handle_smp_gdb_command,
|
2011-04-19 01:50:00 -05:00
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "display/fix current core played to gdb",
|
2012-01-16 07:35:23 -06:00
|
|
|
.usage = "",
|
2011-04-19 01:50:00 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
|
2009-11-23 09:43:06 -06:00
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
static const struct command_registration cortex_a8_command_handlers[] = {
|
2009-11-23 10:17:01 -06:00
|
|
|
{
|
|
|
|
.chain = arm_command_handlers,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.chain = armv7a_command_handlers,
|
|
|
|
},
|
2009-11-23 09:43:06 -06:00
|
|
|
{
|
|
|
|
.name = "cortex_a8",
|
|
|
|
.mode = COMMAND_ANY,
|
|
|
|
.help = "Cortex-A8 command group",
|
2012-01-16 07:35:23 -06:00
|
|
|
.usage = "",
|
2009-11-23 09:43:06 -06:00
|
|
|
.chain = cortex_a8_exec_command_handlers,
|
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
2009-09-18 10:11:46 -05:00
|
|
|
|
2009-11-13 11:52:20 -06:00
|
|
|
struct target_type cortexa8_target = {
|
2009-11-13 10:45:20 -06:00
|
|
|
.name = "cortex_a8",
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.poll = cortex_a8_poll,
|
|
|
|
.arch_state = armv7a_arch_state,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.target_request_data = NULL,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.halt = cortex_a8_halt,
|
|
|
|
.resume = cortex_a8_resume,
|
|
|
|
.step = cortex_a8_step,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.assert_reset = cortex_a8_assert_reset,
|
|
|
|
.deassert_reset = cortex_a8_deassert_reset,
|
|
|
|
.soft_reset_halt = NULL,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-12-26 13:25:44 -06:00
|
|
|
/* REVISIT allow exporting VFP3 registers ... */
|
2009-12-07 16:54:13 -06:00
|
|
|
.get_gdb_reg_list = arm_get_gdb_reg_list,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.read_memory = cortex_a8_read_memory,
|
|
|
|
.write_memory = cortex_a8_write_memory,
|
|
|
|
.bulk_write_memory = cortex_a8_bulk_write_memory,
|
2009-11-15 12:35:34 -06:00
|
|
|
|
|
|
|
.checksum_memory = arm_checksum_memory,
|
|
|
|
.blank_check_memory = arm_blank_check_memory,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.run_algorithm = armv4_5_run_algorithm,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.add_breakpoint = cortex_a8_add_breakpoint,
|
2011-05-09 03:40:35 -05:00
|
|
|
.add_context_breakpoint = cortex_a8_add_context_breakpoint,
|
|
|
|
.add_hybrid_breakpoint = cortex_a8_add_hybrid_breakpoint,
|
2009-11-13 10:45:20 -06:00
|
|
|
.remove_breakpoint = cortex_a8_remove_breakpoint,
|
|
|
|
.add_watchpoint = NULL,
|
|
|
|
.remove_watchpoint = NULL,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-23 10:17:01 -06:00
|
|
|
.commands = cortex_a8_command_handlers,
|
2009-11-13 10:45:20 -06:00
|
|
|
.target_create = cortex_a8_target_create,
|
|
|
|
.init_target = cortex_a8_init_target,
|
|
|
|
.examine = cortex_a8_examine,
|
2010-04-14 00:36:08 -05:00
|
|
|
|
|
|
|
.read_phys_memory = cortex_a8_read_phys_memory,
|
|
|
|
.write_phys_memory = cortex_a8_write_phys_memory,
|
|
|
|
.mmu = cortex_a8_mmu,
|
|
|
|
.virt2phys = cortex_a8_virt2phys,
|
2009-11-13 10:45:20 -06:00
|
|
|
};
|