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 *
|
|
|
|
* *
|
|
|
|
* 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 *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-11-16 02:34:57 -06:00
|
|
|
#include "breakpoints.h"
|
2009-05-04 13:44:12 -05:00
|
|
|
#include "cortex_a8.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-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);
|
|
|
|
static int cortex_a8_restore_context(struct target *target);
|
|
|
|
static int cortex_a8_set_breakpoint(struct target *target,
|
2009-11-13 11:15:32 -06:00
|
|
|
struct breakpoint *breakpoint, uint8_t matchmode);
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_unset_breakpoint(struct target *target,
|
2009-11-13 11:15:32 -06:00
|
|
|
struct breakpoint *breakpoint);
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_dap_read_coreregister_u32(struct target *target,
|
2009-08-25 01:58:34 -05: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,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t value, int regnum);
|
|
|
|
/*
|
|
|
|
* FIXME do topology discovery using the ROM; don't
|
|
|
|
* assume this is an OMAP3.
|
|
|
|
*/
|
|
|
|
#define swjdp_memoryap 0
|
|
|
|
#define swjdp_debugap 1
|
|
|
|
#define OMAP3530_DEBUG_BASE 0x54011000
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-09-18 10:11:46 -05:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
uint32_t dummy;
|
|
|
|
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
|
|
|
/* Unlocking the debug registers for modification */
|
|
|
|
/* The debugport might be uninitialised so try twice */
|
|
|
|
retval = mem_ap_write_atomic_u32(swjdp, armv7a->debug_base + CPUDBG_LOCKACCESS, 0xC5ACCE55);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
mem_ap_write_atomic_u32(swjdp, armv7a->debug_base + CPUDBG_LOCKACCESS, 0xC5ACCE55);
|
|
|
|
/* Clear Sticky Power Down status Bit in PRSR to enable access to
|
|
|
|
the registers in the Core Power Domain */
|
|
|
|
retval = mem_ap_read_atomic_u32(swjdp, armv7a->debug_base + CPUDBG_PRSR, &dummy);
|
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
|
|
|
|
2009-10-02 11:36:03 -05:00
|
|
|
/* Since this is likley called from init or reset, update targtet state information*/
|
|
|
|
cortex_a8_poll(target);
|
2009-10-13 12:00:46 -05:00
|
|
|
|
2009-09-18 10:11:46 -05:00
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int cortex_a8_exec_opcode(struct target *target, uint32_t opcode)
|
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);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("exec opcode 0x%08" PRIx32, opcode);
|
2009-08-26 14:16:08 -05:00
|
|
|
do
|
|
|
|
{
|
2009-09-14 17:41:47 -05:00
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-09-14 17:41:47 -05: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
|
|
|
}
|
2009-10-02 11:39:50 -05:00
|
|
|
}
|
2009-09-04 00:20:45 -05:00
|
|
|
while ((dscr & (1 << DSCR_INSTR_COMP)) == 0); /* Wait for InstrCompl bit to be set */
|
2009-08-26 14:16:08 -05:00
|
|
|
|
2009-09-16 13:17:26 -05:00
|
|
|
mem_ap_write_u32(swjdp, armv7a->debug_base + CPUDBG_ITR, opcode);
|
2009-08-26 14:16:08 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
do
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-09-14 17:41:47 -05:00
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-09-14 17:41:47 -05: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
|
|
|
}
|
2009-10-02 11:39:50 -05:00
|
|
|
}
|
2009-09-04 00:20:45 -05:00
|
|
|
while ((dscr & (1 << DSCR_INSTR_COMP)) == 0); /* Wait for InstrCompl bit to be set */
|
2009-08-25 01:58:34 -05:00
|
|
|
|
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,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t * regfile)
|
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
cortex_a8_dap_read_coreregister_u32(target, regfile, 0);
|
|
|
|
cortex_a8_dap_write_coreregister_u32(target, address, 0);
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_STMIA(0, 0xFFFE, 0, 0));
|
|
|
|
dap_ap_select(swjdp, swjdp_memoryap);
|
|
|
|
mem_ap_read_buf_u32(swjdp, (uint8_t *)(®file[1]), 4*15, address);
|
|
|
|
dap_ap_select(swjdp, swjdp_debugap);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_read_cp(struct target *target, uint32_t *value, uint8_t CP,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint8_t op1, uint8_t CRn, uint8_t CRm, uint8_t op2)
|
|
|
|
{
|
|
|
|
int retval;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(CP, op1, 0, CRn, CRm, op2));
|
|
|
|
/* Move R0 to DTRTX */
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MCR(14, 0, 0, 0, 5, 0));
|
|
|
|
|
|
|
|
/* Read DCCTX */
|
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DTRTX, value);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_write_cp(struct target *target, uint32_t value,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint8_t CP, uint8_t op1, uint8_t CRn, uint8_t CRm, uint8_t op2)
|
|
|
|
{
|
|
|
|
int retval;
|
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);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-10-02 11:44:16 -05:00
|
|
|
LOG_DEBUG("CP%i, CRn %i, value 0x%08" PRIx32, CP, CRn, value);
|
|
|
|
|
|
|
|
/* Check that DCCRX is not full */
|
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
if (dscr & (1 << DSCR_DTR_RX_FULL))
|
|
|
|
{
|
|
|
|
LOG_ERROR("DSCR_DTR_RX_FULL, dscr 0x%08" PRIx32, dscr);
|
|
|
|
/* Clear DCCRX with MCR(p14, 0, Rd, c0, c5, 0), opcode 0xEE000E15 */
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0));
|
|
|
|
}
|
2009-10-13 12:00:46 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
retval = mem_ap_write_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DTRRX, value);
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Move DTRRX to r0 */
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0));
|
|
|
|
|
2009-09-13 08:57:50 -05:00
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MCR(CP, op1, 0, CRn, CRm, op2));
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_read_cp15(struct target *target, uint32_t op1, uint32_t op2,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t CRn, uint32_t CRm, uint32_t *value)
|
|
|
|
{
|
|
|
|
return cortex_a8_read_cp(target, value, 15, op1, CRn, CRm, op2);
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_write_cp15(struct target *target, uint32_t op1, uint32_t op2,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t CRn, uint32_t CRm, uint32_t value)
|
|
|
|
{
|
|
|
|
return cortex_a8_write_cp(target, value, 15, op1, CRn, CRm, op2);
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_mrc(struct target *target, int cpnum, uint32_t op1, uint32_t op2, uint32_t CRn, uint32_t CRm, uint32_t *value)
|
2009-10-24 06:17:04 -05:00
|
|
|
{
|
|
|
|
if (cpnum!=15)
|
|
|
|
{
|
|
|
|
LOG_ERROR("Only cp15 is supported");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
return cortex_a8_read_cp15(target, op1, op2, CRn, CRm, value);
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_mcr(struct target *target, int cpnum, uint32_t op1, uint32_t op2, uint32_t CRn, uint32_t CRm, uint32_t value)
|
2009-10-24 06:17:04 -05:00
|
|
|
{
|
|
|
|
if (cpnum!=15)
|
|
|
|
{
|
|
|
|
LOG_ERROR("Only cp15 is supported");
|
|
|
|
return ERROR_FAIL;
|
|
|
|
}
|
|
|
|
return cortex_a8_write_cp15(target, op1, op2, CRn, CRm, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_dap_read_coreregister_u32(struct target *target,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t *value, int regnum)
|
|
|
|
{
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
uint8_t reg = regnum&0xFF;
|
2009-08-26 14:20:25 -05:00
|
|
|
uint32_t dscr;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
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;
|
|
|
|
|
|
|
|
if (reg < 15)
|
|
|
|
{
|
2009-11-18 16:46:14 -06:00
|
|
|
/* Rn to DCCTX, "MCR p14, 0, Rn, c0, c5, 0" 0xEE00nE15 */
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MCR(14, 0, reg, 0, 5, 0));
|
|
|
|
}
|
|
|
|
else if (reg == 15)
|
|
|
|
{
|
2009-11-18 16:46:14 -06:00
|
|
|
/* "MOV r0, r15"; then move r0 to DCCTX */
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_exec_opcode(target, 0xE1A0000F);
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MCR(14, 0, 0, 0, 5, 0));
|
|
|
|
}
|
2009-11-19 21:03:02 -06:00
|
|
|
else
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-19 21:03:02 -06:00
|
|
|
/* "MRS r0, CPSR" or "MRS r0, SPSR"
|
|
|
|
* then move r0 to DCCTX
|
|
|
|
*/
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRS(0, reg & 1));
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MCR(14, 0, 0, 0, 5, 0));
|
|
|
|
}
|
|
|
|
|
2009-08-26 14:20:25 -05:00
|
|
|
/* Read DTRRTX */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-08-26 14:20:25 -05:00
|
|
|
}
|
2009-09-04 00:20:45 -05:00
|
|
|
while ((dscr & (1 << DSCR_DTR_TX_FULL)) == 0); /* Wait for DTRRXfull */
|
2009-08-26 14:20:25 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
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,
|
|
|
|
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);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
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 */
|
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
|
|
|
if (dscr & (1 << DSCR_DTR_RX_FULL))
|
|
|
|
{
|
|
|
|
LOG_ERROR("DSCR_DTR_RX_FULL, dscr 0x%08" PRIx32, dscr);
|
|
|
|
/* Clear DCCRX with MCR(p14, 0, Rd, c0, c5, 0), opcode 0xEE000E15 */
|
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0));
|
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
/* Write to DCCRX */
|
2009-11-19 21:03:02 -06:00
|
|
|
LOG_DEBUG("write DCC 0x%08" PRIx32, value);
|
2009-08-25 01:58:34 -05:00
|
|
|
retval = mem_ap_write_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DTRRX, value);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if (Rd < 15)
|
|
|
|
{
|
2009-11-19 21:03:02 -06:00
|
|
|
/* DCCRX to Rn, "MCR p14, 0, Rn, c0, c5, 0", 0xEE00nE15 */
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, Rd, 0, 5, 0));
|
|
|
|
}
|
|
|
|
else if (Rd == 15)
|
|
|
|
{
|
2009-11-19 21:03:02 -06:00
|
|
|
/* DCCRX to R0, "MCR p14, 0, R0, c0, c5, 0", 0xEE000E15
|
|
|
|
* then "mov r15, r0"
|
|
|
|
*/
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0));
|
|
|
|
cortex_a8_exec_opcode(target, 0xE1A0F000);
|
|
|
|
}
|
2009-11-19 21:03:02 -06:00
|
|
|
else
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-19 21:03:02 -06:00
|
|
|
/* DCCRX to R0, "MCR p14, 0, R0, c0, c5, 0", 0xEE000E15
|
|
|
|
* then "MSR CPSR_cxsf, r0" or "MSR SPSR_cxsf, r0" (all fields)
|
|
|
|
*/
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MRC(14, 0, 0, 0, 5, 0));
|
2009-11-19 21:03:02 -06:00
|
|
|
cortex_a8_exec_opcode(target, ARMV4_5_MSR_GP(0, 0xF, Rd & 1));
|
|
|
|
|
|
|
|
/* "Prefetch flush" after modifying execution status in CPSR */
|
|
|
|
if (Rd == 16)
|
|
|
|
cortex_a8_exec_opcode(target,
|
|
|
|
ARMV4_5_MCR(15, 0, 0, 7, 5, 4));
|
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 */
|
2009-11-13 12:11:13 -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);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-09-19 09:50:18 -05:00
|
|
|
|
|
|
|
retval = mem_ap_write_atomic_u32(swjdp, address, value);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
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;
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
enum target_state prev_target_state = target->state;
|
|
|
|
uint8_t saved_apsel = dap_ap_get_select(swjdp);
|
2009-11-06 00:04:13 -06:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
dap_ap_select(swjdp, swjdp_debugap);
|
|
|
|
retval = mem_ap_read_atomic_u32(swjdp,
|
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)
|
|
|
|
{
|
|
|
|
dap_ap_select(swjdp, saved_apsel);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
cortex_a8->cpudbg_dscr = dscr;
|
|
|
|
|
|
|
|
if ((dscr & 0x3) == 0x3)
|
|
|
|
{
|
|
|
|
if (prev_target_state != TARGET_HALTED)
|
|
|
|
{
|
|
|
|
/* We have a halting debug event */
|
|
|
|
LOG_DEBUG("Target halted");
|
|
|
|
target->state = TARGET_HALTED;
|
|
|
|
if ((prev_target_state == TARGET_RUNNING)
|
|
|
|
|| (prev_target_state == TARGET_RESET))
|
|
|
|
{
|
|
|
|
retval = cortex_a8_debug_entry(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
target_call_event_callbacks(target,
|
|
|
|
TARGET_EVENT_HALTED);
|
|
|
|
}
|
|
|
|
if (prev_target_state == TARGET_DEBUG_RUNNING)
|
|
|
|
{
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
|
|
|
retval = cortex_a8_debug_entry(target);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
target_call_event_callbacks(target,
|
|
|
|
TARGET_EVENT_DEBUG_HALTED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((dscr & 0x3) == 0x2)
|
|
|
|
{
|
|
|
|
target->state = TARGET_RUNNING;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
dap_ap_select(swjdp, saved_apsel);
|
|
|
|
|
|
|
|
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);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
uint8_t saved_apsel = dap_ap_get_select(swjdp);
|
|
|
|
dap_ap_select(swjdp, swjdp_debugap);
|
|
|
|
|
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.
|
|
|
|
*/
|
2009-08-25 01:58:34 -05:00
|
|
|
retval = mem_ap_write_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DRCR, 0x1);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-09-04 03:22:02 -05:00
|
|
|
/*
|
|
|
|
* enter halting debug mode
|
|
|
|
*/
|
2009-09-16 13:17:26 -05:00
|
|
|
mem_ap_read_atomic_u32(swjdp, armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-09-04 03:22:02 -05:00
|
|
|
retval = mem_ap_write_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr | (1 << DSCR_HALT_DBG_MODE));
|
2009-09-04 03:22:02 -05:00
|
|
|
|
2009-08-26 14:25:44 -05:00
|
|
|
if (retval != ERROR_OK)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
do {
|
|
|
|
mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-09-04 00:20:45 -05:00
|
|
|
} while ((dscr & (1 << DSCR_CORE_HALTED)) == 0);
|
2009-08-26 14:25:44 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
target->debug_reason = DBG_REASON_DBGRQ;
|
|
|
|
|
2009-08-26 14:25:44 -05:00
|
|
|
out:
|
|
|
|
dap_ap_select(swjdp, saved_apsel);
|
2009-08-25 01:58:34 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_resume(struct target *target, int current,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t address, int handle_breakpoints, int debug_execution)
|
|
|
|
{
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = &armv7a->armv4_5_common;
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-13 11:15:32 -06:00
|
|
|
// struct breakpoint *breakpoint = NULL;
|
2009-08-26 14:25:44 -05:00
|
|
|
uint32_t resume_pc, dscr;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
uint8_t saved_apsel = dap_ap_get_select(swjdp);
|
|
|
|
dap_ap_select(swjdp, swjdp_debugap);
|
|
|
|
|
|
|
|
if (!debug_execution)
|
|
|
|
{
|
|
|
|
target_free_all_working_areas(target);
|
|
|
|
// cortex_m3_enable_breakpoints(target);
|
|
|
|
// cortex_m3_enable_watchpoints(target);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if (debug_execution)
|
|
|
|
{
|
|
|
|
/* 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,
|
|
|
|
buf_get_u32(armv7m->core_cache->reg_list[ARMV7M_xPSR].value, 0, 32) | (1 << 24));
|
|
|
|
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> */
|
|
|
|
resume_pc = buf_get_u32(
|
2009-11-22 12:21:48 -06:00
|
|
|
armv4_5->core_cache->reg_list[15].value,
|
2009-08-25 01:58:34 -05:00
|
|
|
0, 32);
|
|
|
|
if (!current)
|
|
|
|
resume_pc = address;
|
|
|
|
|
|
|
|
/* Make sure that the Armv7 gdb thumb fixups does not
|
|
|
|
* kill the return address
|
|
|
|
*/
|
2009-11-19 04:33:01 -06:00
|
|
|
switch (armv4_5->core_state)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-19 04:33:01 -06:00
|
|
|
case ARMV4_5_STATE_ARM:
|
2009-08-25 01:58:34 -05:00
|
|
|
resume_pc &= 0xFFFFFFFC;
|
2009-11-19 04:33:01 -06:00
|
|
|
break;
|
|
|
|
case ARMV4_5_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
|
|
|
|
*/
|
2009-09-08 10:31:24 -05:00
|
|
|
resume_pc |= 0x1;
|
2009-11-19 04:33:01 -06:00
|
|
|
break;
|
|
|
|
case ARMV4_5_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);
|
2009-11-22 12:21:48 -06:00
|
|
|
buf_set_u32(armv4_5->core_cache->reg_list[15].value,
|
2009-08-25 01:58:34 -05:00
|
|
|
0, 32, resume_pc);
|
2009-11-22 12:21:48 -06:00
|
|
|
armv4_5->core_cache->reg_list[15].dirty = 1;
|
|
|
|
armv4_5->core_cache->reg_list[15].valid = 1;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
cortex_a8_restore_context(target);
|
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 */
|
|
|
|
if (handle_breakpoints)
|
|
|
|
{
|
|
|
|
/* Single step past breakpoint at current address */
|
|
|
|
if ((breakpoint = breakpoint_find(target, resume_pc)))
|
|
|
|
{
|
|
|
|
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
|
2009-08-26 14:25:44 -05:00
|
|
|
/* Restart core and wait for it to be started */
|
2009-09-16 13:17:26 -05:00
|
|
|
mem_ap_write_atomic_u32(swjdp, armv7a->debug_base + CPUDBG_DRCR, 0x2);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-08-26 14:25:44 -05:00
|
|
|
do {
|
|
|
|
mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-09-04 00:20:45 -05:00
|
|
|
} while ((dscr & (1 << DSCR_CORE_RESTARTED)) == 0);
|
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 */
|
2009-11-19 21:02:10 -06:00
|
|
|
register_cache_invalidate(armv4_5->core_cache);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if (!debug_execution)
|
|
|
|
{
|
|
|
|
target->state = TARGET_RUNNING;
|
|
|
|
target_call_event_callbacks(target, TARGET_EVENT_RESUMED);
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("target resumed at 0x%" PRIx32, resume_pc);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
target->state = TARGET_DEBUG_RUNNING;
|
|
|
|
target_call_event_callbacks(target, TARGET_EVENT_DEBUG_RESUMED);
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("target debug resumed at 0x%" PRIx32, resume_pc);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dap_ap_select(swjdp, saved_apsel);
|
|
|
|
|
|
|
|
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-08-26 14:21:26 -05:00
|
|
|
uint32_t regfile[16], pc, 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);
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = &armv7a->armv4_5_common;
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
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-08-26 14:21:26 -05:00
|
|
|
/* Enable the ITR execution once we are in debug mode */
|
|
|
|
mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, &dscr);
|
2009-09-04 00:20:45 -05:00
|
|
|
dscr |= (1 << DSCR_EXT_INT_EN);
|
2009-08-26 14:21:26 -05:00
|
|
|
retval = mem_ap_write_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DSCR, dscr);
|
2009-08-26 14:21:26 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Examine debug reason */
|
|
|
|
switch ((cortex_a8->cpudbg_dscr >> 2)&0xF)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
case 4:
|
|
|
|
target->debug_reason = DBG_REASON_DBGRQ;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 3:
|
|
|
|
target->debug_reason = DBG_REASON_BREAKPOINT;
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
target->debug_reason = DBG_REASON_WATCHPOINT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
target->debug_reason = DBG_REASON_UNDEFINED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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-18 17:04:58 -06:00
|
|
|
/* FIXME we don't actually need all these registers;
|
|
|
|
* reading them slows us down. Just R0, PC, CPSR...
|
|
|
|
*/
|
2009-08-25 01:58:34 -05:00
|
|
|
for (i = 0; i <= 15; i++)
|
|
|
|
cortex_a8_dap_read_coreregister_u32(target,
|
|
|
|
®file[i], i);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-08-26 14:23:35 -05:00
|
|
|
dap_ap_select(swjdp, swjdp_memoryap);
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_read_regs_through_mem(target,
|
|
|
|
regfile_working_area->address, regfile);
|
|
|
|
dap_ap_select(swjdp, swjdp_memoryap);
|
|
|
|
target_free_working_area(target, regfile_working_area);
|
|
|
|
}
|
|
|
|
|
2009-11-18 17:04:58 -06:00
|
|
|
/* read Current PSR */
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_dap_read_coreregister_u32(target, &cpsr, 16);
|
|
|
|
pc = regfile[15];
|
|
|
|
dap_ap_select(swjdp, swjdp_debugap);
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("cpsr: %8.8" PRIx32, cpsr);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-22 05:38:34 -06:00
|
|
|
arm_set_cpsr(armv4_5, cpsr);
|
2009-11-19 04:33:01 -06:00
|
|
|
|
2009-11-18 17:04:58 -06:00
|
|
|
/* update cache */
|
2009-08-25 01:58:34 -05:00
|
|
|
for (i = 0; i <= ARM_PC; i++)
|
|
|
|
{
|
2009-11-22 12:21:48 -06:00
|
|
|
reg = arm_reg_current(armv4_5, i);
|
2009-11-18 16:46:14 -06:00
|
|
|
|
2009-11-18 17:04:58 -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
|
|
|
|
|
|
|
/* Fixup PC Resume Address */
|
2009-11-19 04:33:01 -06:00
|
|
|
if (cpsr & (1 << 5))
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
// T bit set for Thumb or ThumbEE state
|
|
|
|
regfile[ARM_PC] -= 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// ARM state
|
|
|
|
regfile[ARM_PC] -= 8;
|
|
|
|
}
|
|
|
|
|
2009-11-22 12:21:48 -06:00
|
|
|
reg = armv4_5->core_cache->reg_list + 15;
|
|
|
|
buf_set_u32(reg->value, 0, 32, regfile[ARM_PC]);
|
|
|
|
reg->dirty = reg->valid;
|
2009-11-18 16:46:14 -06:00
|
|
|
ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, 15)
|
|
|
|
.dirty = ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, 15).valid;
|
|
|
|
|
|
|
|
#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 */
|
|
|
|
// armv4_5->exception_number = 0;
|
|
|
|
if (armv7a->post_debug_entry)
|
|
|
|
armv7a->post_debug_entry(target);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static void 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-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
// cortex_a8_read_cp(target, &cp15_control_register, 15, 0, 1, 0, 0);
|
|
|
|
/* examine cp15 control reg */
|
|
|
|
armv7a->read_cp15(target, 0, 0, 1, 0, &cortex_a8->cp15_control_reg);
|
|
|
|
jtag_execute_queue();
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("cp15_control_reg: %8.8" PRIx32, cortex_a8->cp15_control_reg);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if (armv7a->armv4_5_mmu.armv4_5_cache.ctype == -1)
|
|
|
|
{
|
|
|
|
uint32_t cache_type_reg;
|
|
|
|
/* identify caches */
|
|
|
|
armv7a->read_cp15(target, 0, 1, 0, 0, &cache_type_reg);
|
|
|
|
jtag_execute_queue();
|
|
|
|
/* FIXME the armv4_4 cache info DOES NOT APPLY to Cortex-A8 */
|
|
|
|
armv4_5_identify_cache(cache_type_reg,
|
|
|
|
&armv7a->armv4_5_mmu.armv4_5_cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
armv7a->armv4_5_mmu.mmu_enabled =
|
|
|
|
(cortex_a8->cp15_control_reg & 0x1U) ? 1 : 0;
|
|
|
|
armv7a->armv4_5_mmu.armv4_5_cache.d_u_cache_enabled =
|
|
|
|
(cortex_a8->cp15_control_reg & 0x4U) ? 1 : 0;
|
|
|
|
armv7a->armv4_5_mmu.armv4_5_cache.i_cache_enabled =
|
|
|
|
(cortex_a8->cp15_control_reg & 0x1000U) ? 1 : 0;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_step(struct target *target, int current, uint32_t address,
|
2009-08-25 01:58:34 -05:00
|
|
|
int handle_breakpoints)
|
|
|
|
{
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = &armv7a->armv4_5_common;
|
2009-11-13 11:15:32 -06:00
|
|
|
struct breakpoint *breakpoint = NULL;
|
|
|
|
struct breakpoint stepbreakpoint;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
int timeout = 100;
|
|
|
|
|
|
|
|
if (target->state != TARGET_HALTED)
|
|
|
|
{
|
|
|
|
LOG_WARNING("target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* current = 1: continue on current pc, otherwise continue at <address> */
|
|
|
|
if (!current)
|
|
|
|
{
|
2009-11-18 16:46:14 -06:00
|
|
|
buf_set_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, ARM_PC).value,
|
|
|
|
0, 32, address);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-11-18 16:46:14 -06:00
|
|
|
address = buf_get_u32(ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, ARM_PC).value,
|
|
|
|
0, 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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) {
|
|
|
|
breakpoint = breakpoint_find(target,
|
2009-11-18 16:46:14 -06:00
|
|
|
buf_get_u32(ARMV4_5_CORE_REG_MODE(
|
|
|
|
armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, 15).value,
|
|
|
|
0, 32));
|
|
|
|
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;
|
2009-11-19 04:33:01 -06:00
|
|
|
stepbreakpoint.length = (armv4_5->core_state == ARMV4_5_STATE_THUMB)
|
|
|
|
? 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;
|
|
|
|
|
|
|
|
cortex_a8_resume(target, 1, address, 0, 0);
|
|
|
|
|
|
|
|
while (target->state != TARGET_HALTED)
|
|
|
|
{
|
|
|
|
cortex_a8_poll(target);
|
|
|
|
if (--timeout == 0)
|
|
|
|
{
|
|
|
|
LOG_WARNING("timeout waiting for target halt");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cortex_a8_unset_breakpoint(target, &stepbreakpoint);
|
|
|
|
if (timeout > 0) target->debug_reason = DBG_REASON_BREAKPOINT;
|
|
|
|
|
|
|
|
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-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_restore_context(struct target *target)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t value;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-11-19 21:03:12 -06:00
|
|
|
struct reg_cache *cache = armv7a->armv4_5_common.core_cache;
|
|
|
|
unsigned max = cache->num_regs;
|
|
|
|
struct reg *r;
|
|
|
|
bool flushed, flush_cpsr = false;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
|
|
|
if (armv7a->pre_restore_context)
|
|
|
|
armv7a->pre_restore_context(target);
|
|
|
|
|
2009-11-19 21:03:12 -06:00
|
|
|
/* Flush all dirty registers from the cache, one mode at a time so
|
|
|
|
* that we write CPSR as little as possible. Save CPSR and R0 for
|
|
|
|
* last; they're used to change modes and write other registers.
|
|
|
|
*
|
|
|
|
* REVISIT be smarter: save eventual mode for last loop, don't
|
|
|
|
* need to write CPSR an extra time.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
enum armv4_5_mode mode = ARMV4_5_MODE_ANY;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
flushed = false;
|
|
|
|
|
|
|
|
/* write dirty non-{R0,CPSR} registers sharing the same mode */
|
|
|
|
for (i = max - 1, r = cache->reg_list + 1; i > 0; i--, r++) {
|
2009-11-20 18:27:24 -06:00
|
|
|
struct arm_reg *reg;
|
2009-11-19 21:03:12 -06:00
|
|
|
|
2009-11-22 05:37:21 -06:00
|
|
|
if (!r->dirty || r == armv7a->armv4_5_common.cpsr)
|
2009-11-19 21:03:12 -06:00
|
|
|
continue;
|
|
|
|
reg = r->arch_info;
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/* TODO Check return values */
|
2009-11-19 21:03:12 -06:00
|
|
|
|
|
|
|
/* Pick a mode and update CPSR; else ignore this
|
|
|
|
* register if it's for a different mode than what
|
|
|
|
* we're handling on this pass.
|
|
|
|
*
|
|
|
|
* REVISIT don't distinguish SYS and USR modes.
|
|
|
|
*
|
|
|
|
* FIXME if we restore from FIQ mode, R8..R12 will
|
|
|
|
* get wrongly flushed onto FIQ shadows...
|
|
|
|
*/
|
|
|
|
if (mode == ARMV4_5_MODE_ANY) {
|
|
|
|
mode = reg->mode;
|
|
|
|
if (mode != ARMV4_5_MODE_ANY) {
|
|
|
|
cortex_a8_dap_write_coreregister_u32(
|
|
|
|
target, mode, 16);
|
|
|
|
flush_cpsr = true;
|
|
|
|
}
|
|
|
|
} else if (mode != reg->mode)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Write this register */
|
|
|
|
value = buf_get_u32(r->value, 0, 32);
|
|
|
|
cortex_a8_dap_write_coreregister_u32(target, value,
|
|
|
|
(reg->num == 16) ? 17 : reg->num);
|
|
|
|
r->dirty = false;
|
|
|
|
flushed = true;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
2009-11-19 21:03:12 -06:00
|
|
|
|
|
|
|
} while (flushed);
|
|
|
|
|
|
|
|
/* now flush CPSR if needed ... */
|
2009-11-22 05:37:21 -06:00
|
|
|
r = armv7a->armv4_5_common.cpsr;
|
2009-11-19 21:03:12 -06:00
|
|
|
if (flush_cpsr || r->dirty) {
|
|
|
|
value = buf_get_u32(r->value, 0, 32);
|
|
|
|
cortex_a8_dap_write_coreregister_u32(target, value, 16);
|
|
|
|
r->dirty = false;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-19 21:03:12 -06:00
|
|
|
/* ... and R0 always (it was dirtied when we saved context) */
|
|
|
|
r = cache->reg_list + 0;
|
|
|
|
value = buf_get_u32(r->value, 0, 32);
|
|
|
|
cortex_a8_dap_write_coreregister_u32(target, value, 0);
|
|
|
|
r->dirty = false;
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
if (armv7a->post_restore_context)
|
|
|
|
armv7a->post_restore_context(target);
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-10 20:26:13 -06:00
|
|
|
#if 0
|
2009-08-25 01:58:34 -05:00
|
|
|
/*
|
|
|
|
* Cortex-A8 Core register functions
|
|
|
|
*/
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_load_core_reg_u32(struct target *target, int num,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5_mode_t mode, uint32_t * value)
|
|
|
|
{
|
|
|
|
int retval;
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = target_to_armv4_5(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if ((num <= ARM_CPSR))
|
|
|
|
{
|
|
|
|
/* read a normal core register */
|
|
|
|
retval = cortex_a8_dap_read_coreregister_u32(target, value, num);
|
|
|
|
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
{
|
|
|
|
LOG_ERROR("JTAG failure %i", retval);
|
|
|
|
return ERROR_JTAG_DEVICE_ERROR;
|
|
|
|
}
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("load from core reg %i value 0x%" PRIx32, num, *value);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ERROR_INVALID_ARGUMENTS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Register other than r0 - r14 uses r0 for access */
|
|
|
|
if (num > 14)
|
2009-11-18 16:46:14 -06:00
|
|
|
ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, 0).dirty =
|
2009-11-18 16:46:14 -06:00
|
|
|
ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, 0).valid;
|
2009-11-18 16:46:14 -06:00
|
|
|
ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, 15).dirty =
|
2009-11-18 16:46:14 -06:00
|
|
|
ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, 15).valid;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_store_core_reg_u32(struct target *target, int num,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5_mode_t mode, uint32_t value)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
// uint32_t reg;
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = target_to_armv4_5(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
#ifdef ARMV7_GDB_HACKS
|
|
|
|
/* If the LR register is being modified, make sure it will put us
|
|
|
|
* in "thumb" mode, or an INVSTATE exception will occur. This is a
|
|
|
|
* hack to deal with the fact that gdb will sometimes "forge"
|
|
|
|
* return addresses, and doesn't set the LSB correctly (i.e., when
|
|
|
|
* printing expressions containing function calls, it sets LR=0.) */
|
|
|
|
|
|
|
|
if (num == 14)
|
|
|
|
value |= 0x01;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if ((num <= ARM_CPSR))
|
|
|
|
{
|
|
|
|
retval = cortex_a8_dap_write_coreregister_u32(target, value, num);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
{
|
|
|
|
LOG_ERROR("JTAG failure %i", retval);
|
2009-11-18 16:46:14 -06:00
|
|
|
ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, num).dirty =
|
2009-11-18 16:46:14 -06:00
|
|
|
ARMV4_5_CORE_REG_MODE(armv4_5->core_cache,
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->core_mode, num).valid;
|
|
|
|
return ERROR_JTAG_DEVICE_ERROR;
|
|
|
|
}
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("write core reg %i value 0x%" PRIx32, num, value);
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return ERROR_INVALID_ARGUMENTS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
2009-11-10 20:26:13 -06:00
|
|
|
#endif
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
|
2009-11-20 18:27:24 -06:00
|
|
|
static int cortex_a8_write_core_reg(struct target *target, struct reg *r,
|
|
|
|
int num, enum armv4_5_mode mode, uint32_t value);
|
2009-11-19 21:03:02 -06:00
|
|
|
|
2009-11-20 18:27:24 -06:00
|
|
|
static int cortex_a8_read_core_reg(struct target *target, struct reg *r,
|
|
|
|
int num, enum armv4_5_mode mode)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
uint32_t value;
|
|
|
|
int retval;
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = target_to_armv4_5(target);
|
2009-11-20 18:27:24 -06:00
|
|
|
struct reg *cpsr_r = NULL;
|
2009-11-19 21:03:02 -06:00
|
|
|
uint32_t cpsr = 0;
|
|
|
|
unsigned cookie = num;
|
2009-11-06 00:04:13 -06:00
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
/* avoid some needless mode changes
|
|
|
|
* FIXME move some of these to shared ARM code...
|
|
|
|
*/
|
|
|
|
if (mode != armv4_5->core_mode) {
|
|
|
|
if ((armv4_5->core_mode == ARMV4_5_MODE_SYS)
|
|
|
|
&& (mode == ARMV4_5_MODE_USR))
|
|
|
|
mode = ARMV4_5_MODE_ANY;
|
|
|
|
else if ((mode != ARMV4_5_MODE_FIQ) && (num <= 12))
|
|
|
|
mode = ARMV4_5_MODE_ANY;
|
|
|
|
|
|
|
|
if (mode != ARMV4_5_MODE_ANY) {
|
2009-11-22 05:37:21 -06:00
|
|
|
cpsr_r = armv4_5->cpsr;
|
2009-11-20 18:27:24 -06:00
|
|
|
cpsr = buf_get_u32(cpsr_r->value, 0, 32);
|
|
|
|
cortex_a8_write_core_reg(target, cpsr_r,
|
|
|
|
16, ARMV4_5_MODE_ANY, mode);
|
2009-11-19 21:03:02 -06:00
|
|
|
}
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
if (num == 16) {
|
|
|
|
switch (mode) {
|
|
|
|
case ARMV4_5_MODE_USR:
|
|
|
|
case ARMV4_5_MODE_SYS:
|
|
|
|
case ARMV4_5_MODE_ANY:
|
|
|
|
/* CPSR */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* SPSR */
|
|
|
|
cookie++;
|
|
|
|
break;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
cortex_a8_dap_read_coreregister_u32(target, &value, cookie);
|
|
|
|
retval = jtag_execute_queue();
|
|
|
|
if (retval == ERROR_OK) {
|
|
|
|
r->valid = 1;
|
|
|
|
r->dirty = 0;
|
|
|
|
buf_set_u32(r->value, 0, 32, value);
|
|
|
|
}
|
|
|
|
|
2009-11-20 18:27:24 -06:00
|
|
|
if (cpsr_r)
|
|
|
|
cortex_a8_write_core_reg(target, cpsr_r,
|
|
|
|
16, ARMV4_5_MODE_ANY, cpsr);
|
2009-11-19 21:03:02 -06:00
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-20 18:27:24 -06:00
|
|
|
static int cortex_a8_write_core_reg(struct target *target, struct reg *r,
|
|
|
|
int num, enum armv4_5_mode mode, uint32_t value)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval;
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = target_to_armv4_5(target);
|
2009-11-20 18:27:24 -06:00
|
|
|
struct reg *cpsr_r = NULL;
|
2009-11-19 21:03:02 -06:00
|
|
|
uint32_t cpsr = 0;
|
|
|
|
unsigned cookie = num;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
/* avoid some needless mode changes
|
|
|
|
* FIXME move some of these to shared ARM code...
|
|
|
|
*/
|
|
|
|
if (mode != armv4_5->core_mode) {
|
|
|
|
if ((armv4_5->core_mode == ARMV4_5_MODE_SYS)
|
|
|
|
&& (mode == ARMV4_5_MODE_USR))
|
|
|
|
mode = ARMV4_5_MODE_ANY;
|
|
|
|
else if ((mode != ARMV4_5_MODE_FIQ) && (num <= 12))
|
|
|
|
mode = ARMV4_5_MODE_ANY;
|
|
|
|
|
|
|
|
if (mode != ARMV4_5_MODE_ANY) {
|
2009-11-22 05:37:21 -06:00
|
|
|
cpsr_r = armv4_5->cpsr;
|
2009-11-20 18:27:24 -06:00
|
|
|
cpsr = buf_get_u32(cpsr_r->value, 0, 32);
|
|
|
|
cortex_a8_write_core_reg(target, cpsr_r,
|
|
|
|
16, ARMV4_5_MODE_ANY, mode);
|
2009-11-19 21:03:02 -06:00
|
|
|
}
|
|
|
|
}
|
2009-11-18 16:46:14 -06:00
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
|
|
|
|
if (num == 16) {
|
|
|
|
switch (mode) {
|
|
|
|
case ARMV4_5_MODE_USR:
|
|
|
|
case ARMV4_5_MODE_SYS:
|
|
|
|
case ARMV4_5_MODE_ANY:
|
|
|
|
/* CPSR */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* SPSR */
|
|
|
|
cookie++;
|
|
|
|
break;
|
|
|
|
}
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
2009-11-19 21:03:02 -06:00
|
|
|
cortex_a8_dap_write_coreregister_u32(target, value, cookie);
|
|
|
|
if ((retval = jtag_execute_queue()) == ERROR_OK) {
|
|
|
|
buf_set_u32(r->value, 0, 32, value);
|
|
|
|
r->valid = 1;
|
|
|
|
r->dirty = 0;
|
|
|
|
}
|
|
|
|
|
2009-11-20 18:27:24 -06:00
|
|
|
if (cpsr_r)
|
|
|
|
cortex_a8_write_core_reg(target, cpsr_r,
|
|
|
|
16, ARMV4_5_MODE_ANY, cpsr);
|
2009-11-19 21:03:02 -06:00
|
|
|
return retval;
|
2009-08-25 01:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cortex-A8 Breakpoint and watchpoint fuctions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Setup hardware Breakpoint Register Pair */
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_set_breakpoint(struct target *target,
|
2009-11-13 11:15:32 -06:00
|
|
|
struct breakpoint *breakpoint, uint8_t matchmode)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
int brp_i=0;
|
|
|
|
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;
|
2009-11-13 11:17:08 -06:00
|
|
|
struct cortex_a8_brp * brp_list = cortex_a8->brp_list;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if (breakpoint->set)
|
|
|
|
{
|
|
|
|
LOG_WARNING("breakpoint already set");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
|
|
|
{
|
|
|
|
while (brp_list[brp_i].used && (brp_i < cortex_a8->brp_num))
|
|
|
|
brp_i++ ;
|
|
|
|
if (brp_i >= cortex_a8->brp_num)
|
|
|
|
{
|
|
|
|
LOG_ERROR("ERROR Can not find free Breakpoint Register Pair");
|
2009-11-16 19:57:12 -06:00
|
|
|
return ERROR_FAIL;
|
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)
|
|
|
|
| (byte_addr_select << 5)
|
|
|
|
| (3 << 1) | 1;
|
|
|
|
brp_list[brp_i].used = 1;
|
|
|
|
brp_list[brp_i].value = (breakpoint->address & 0xFFFFFFFC);
|
|
|
|
brp_list[brp_i].control = control;
|
2009-09-19 09:50:18 -05:00
|
|
|
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);
|
2009-09-19 09:50:18 -05:00
|
|
|
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);
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("brp %i control 0x%0" PRIx32 " value 0x%0" PRIx32, brp_i,
|
2009-08-25 01:58:34 -05:00
|
|
|
brp_list[brp_i].control,
|
|
|
|
brp_list[brp_i].value);
|
|
|
|
}
|
|
|
|
else if (breakpoint->type == BKPT_SOFT)
|
|
|
|
{
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
retval = target->type->read_memory(target,
|
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
breakpoint->length, 1,
|
|
|
|
breakpoint->orig_instr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
retval = target->type->write_memory(target,
|
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
breakpoint->length, 1, code);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
breakpoint->set = 0x11; /* Any nice value but 0 */
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2009-11-13 11:17:08 -06:00
|
|
|
struct cortex_a8_brp * brp_list = cortex_a8->brp_list;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
if (!breakpoint->set)
|
|
|
|
{
|
|
|
|
LOG_WARNING("breakpoint not set");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
|
|
|
{
|
|
|
|
int brp_i = breakpoint->set - 1;
|
|
|
|
if ((brp_i < 0) || (brp_i >= cortex_a8->brp_num))
|
|
|
|
{
|
|
|
|
LOG_DEBUG("Invalid BRP number in breakpoint");
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
2009-08-25 07:19:44 -05:00
|
|
|
LOG_DEBUG("rbp %i control 0x%0" PRIx32 " value 0x%0" PRIx32, brp_i,
|
2009-08-25 01:58:34 -05:00
|
|
|
brp_list[brp_i].control, brp_list[brp_i].value);
|
|
|
|
brp_list[brp_i].used = 0;
|
|
|
|
brp_list[brp_i].value = 0;
|
|
|
|
brp_list[brp_i].control = 0;
|
2009-09-19 09:50:18 -05:00
|
|
|
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);
|
2009-09-19 09:50:18 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* restore original instruction (kept in target endianness) */
|
|
|
|
if (breakpoint->length == 4)
|
|
|
|
{
|
|
|
|
retval = target->type->write_memory(target,
|
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
4, 1, breakpoint->orig_instr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retval = target->type->write_memory(target,
|
|
|
|
breakpoint->address & 0xFFFFFFFE,
|
|
|
|
2, 1, breakpoint->orig_instr);
|
|
|
|
if (retval != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
breakpoint->set = 0;
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int cortex_a8_add_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 ((breakpoint->type == BKPT_HARD) && (cortex_a8->brp_num_available < 1))
|
|
|
|
{
|
|
|
|
LOG_INFO("no hardware breakpoint available");
|
|
|
|
return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
|
|
|
cortex_a8->brp_num_available--;
|
|
|
|
cortex_a8_set_breakpoint(target, breakpoint, 0x00); /* Exact match */
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
/* It is perfectly possible to remove brakpoints while the taget is running */
|
|
|
|
if (target->state != TARGET_HALTED)
|
|
|
|
{
|
|
|
|
LOG_WARNING("target not halted");
|
|
|
|
return ERROR_TARGET_NOT_HALTED;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (breakpoint->set)
|
|
|
|
{
|
|
|
|
cortex_a8_unset_breakpoint(target, breakpoint);
|
|
|
|
if (breakpoint->type == BKPT_HARD)
|
|
|
|
cortex_a8->brp_num_available++ ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cortex-A8 Reset fuctions
|
|
|
|
*/
|
|
|
|
|
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(" ");
|
|
|
|
|
|
|
|
/* registers are now invalid */
|
2009-11-19 21:02:10 -06:00
|
|
|
register_cache_invalidate(armv7a->armv4_5_common.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
|
|
|
{
|
|
|
|
|
|
|
|
LOG_DEBUG(" ");
|
|
|
|
|
|
|
|
if (target->reset_halt)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
if ((retval = target_halt(target)) != ERROR_OK)
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
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.
|
|
|
|
*/
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_read_memory(struct target *target, uint32_t address,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t size, uint32_t count, uint8_t *buffer)
|
|
|
|
{
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-11-16 19:57:12 -06:00
|
|
|
int retval = ERROR_INVALID_ARGUMENTS;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
|
|
|
/* cortex_a8 handles unaligned memory access */
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
// ??? dap_ap_select(swjdp, swjdp_memoryap);
|
|
|
|
|
2009-11-16 19:57:12 -06:00
|
|
|
if (count && buffer) {
|
|
|
|
switch (size) {
|
2009-05-04 13:44:12 -05:00
|
|
|
case 4:
|
|
|
|
retval = mem_ap_read_buf_u32(swjdp, buffer, 4 * count, address);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
retval = mem_ap_read_buf_u16(swjdp, buffer, 2 * count, address);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
retval = mem_ap_read_buf_u8(swjdp, buffer, count, address);
|
|
|
|
break;
|
2009-11-16 19:57:12 -06:00
|
|
|
}
|
2009-05-04 13:44:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int cortex_a8_write_memory(struct target *target, uint32_t address,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t size, uint32_t count, uint8_t *buffer)
|
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-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-11-16 19:57:12 -06:00
|
|
|
int retval = ERROR_INVALID_ARGUMENTS;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
// ??? dap_ap_select(swjdp, swjdp_memoryap);
|
|
|
|
|
2009-11-16 19:57:12 -06:00
|
|
|
if (count && buffer) {
|
|
|
|
switch (size) {
|
2009-05-04 13:44:12 -05:00
|
|
|
case 4:
|
|
|
|
retval = mem_ap_write_buf_u32(swjdp, buffer, 4 * count, address);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
retval = mem_ap_write_buf_u16(swjdp, buffer, 2 * count, address);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
retval = mem_ap_write_buf_u8(swjdp, buffer, count, address);
|
|
|
|
break;
|
2009-11-16 19:57:12 -06:00
|
|
|
}
|
2009-05-04 13:44:12 -05:00
|
|
|
}
|
|
|
|
|
2009-11-16 19:57:12 -06:00
|
|
|
if (retval == ERROR_OK && target->state == TARGET_HALTED)
|
2009-10-02 11:50:42 -05:00
|
|
|
{
|
2009-10-02 11:36:03 -05:00
|
|
|
/* The Cache handling will NOT work with MMU active, the wrong addresses will be invalidated */
|
|
|
|
/* invalidate I-Cache */
|
|
|
|
if (armv7a->armv4_5_mmu.armv4_5_cache.i_cache_enabled)
|
|
|
|
{
|
|
|
|
/* Invalidate ICache single entry with MVA, repeat this for all cache
|
|
|
|
lines in the address range, Cortex-A8 has fixed 64 byte line length */
|
|
|
|
/* Invalidate Cache single entry with MVA to PoU */
|
|
|
|
for (uint32_t cacheline=address; cacheline<address+size*count; cacheline+=64)
|
|
|
|
armv7a->write_cp15(target, 0, 1, 7, 5, cacheline); /* I-Cache to PoU */
|
|
|
|
}
|
|
|
|
/* invalidate D-Cache */
|
|
|
|
if (armv7a->armv4_5_mmu.armv4_5_cache.d_u_cache_enabled)
|
|
|
|
{
|
|
|
|
/* Invalidate Cache single entry with MVA to PoC */
|
|
|
|
for (uint32_t cacheline=address; cacheline<address+size*count; cacheline+=64)
|
|
|
|
armv7a->write_cp15(target, 0, 1, 7, 6, cacheline); /* U/D cache to PoC */
|
|
|
|
}
|
2009-10-02 11:50:42 -05:00
|
|
|
}
|
2009-09-14 17:36:27 -05:00
|
|
|
|
2009-05-04 13:44:12 -05:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
static int cortex_a8_bulk_write_memory(struct target *target, uint32_t address,
|
2009-08-25 01:58:34 -05:00
|
|
|
uint32_t count, uint8_t *buffer)
|
|
|
|
{
|
|
|
|
return cortex_a8_write_memory(target, address, 4, count, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-13 10:40:31 -06:00
|
|
|
static int cortex_a8_dcc_read(struct swjdp_common *swjdp, uint8_t *value, uint8_t *ctrl)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
u16 dcrdr;
|
|
|
|
|
|
|
|
mem_ap_read_buf_u16(swjdp, (uint8_t*)&dcrdr, 1, DCB_DCRDR);
|
|
|
|
*ctrl = (uint8_t)dcrdr;
|
|
|
|
*value = (uint8_t)(dcrdr >> 8);
|
|
|
|
|
|
|
|
LOG_DEBUG("data 0x%x ctrl 0x%x", *value, *ctrl);
|
|
|
|
|
|
|
|
/* write ack back to software dcc register
|
|
|
|
* signify we have read data */
|
|
|
|
if (dcrdr & (1 << 0))
|
|
|
|
{
|
|
|
|
dcrdr = 0;
|
|
|
|
mem_ap_write_buf_u16(swjdp, (uint8_t*)&dcrdr, 1, DCB_DCRDR);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
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;
|
|
|
|
|
|
|
|
if (target->state == TARGET_RUNNING)
|
|
|
|
{
|
2009-08-25 01:58:34 -05:00
|
|
|
uint8_t data = 0;
|
|
|
|
uint8_t ctrl = 0;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
|
|
|
cortex_a8_dcc_read(swjdp, &data, &ctrl);
|
|
|
|
|
|
|
|
/* check if we have data */
|
|
|
|
if (ctrl & (1 << 0))
|
|
|
|
{
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t request;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
|
|
|
/* we assume target is quick enough */
|
|
|
|
request = data;
|
|
|
|
cortex_a8_dcc_read(swjdp, &data, &ctrl);
|
|
|
|
request |= (data << 8);
|
|
|
|
cortex_a8_dcc_read(swjdp, &data, &ctrl);
|
|
|
|
request |= (data << 16);
|
|
|
|
cortex_a8_dcc_read(swjdp, &data, &ctrl);
|
|
|
|
request |= (data << 24);
|
|
|
|
target_request(target, request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:58:34 -05:00
|
|
|
int i;
|
|
|
|
int retval = ERROR_OK;
|
|
|
|
uint32_t didr, ctypr, ttypr, cpuid;
|
|
|
|
|
|
|
|
LOG_DEBUG("TODO");
|
2009-10-13 12:00:46 -05:00
|
|
|
|
2009-09-16 13:17:26 -05:00
|
|
|
/* Here we shall insert a proper ROM Table scan */
|
|
|
|
armv7a->debug_base = OMAP3530_DEBUG_BASE;
|
2009-08-25 01:58:34 -05:00
|
|
|
|
|
|
|
/* We do one extra read to ensure DAP is configured,
|
|
|
|
* we call ahbap_debugport_init(swjdp) instead
|
|
|
|
*/
|
|
|
|
ahbap_debugport_init(swjdp);
|
2009-09-16 13:17:26 -05:00
|
|
|
mem_ap_read_atomic_u32(swjdp, armv7a->debug_base + CPUDBG_CPUID, &cpuid);
|
2009-08-25 01:58:34 -05:00
|
|
|
if ((retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_CPUID, &cpuid)) != ERROR_OK)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
LOG_DEBUG("Examine failed");
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_CTYPR, &ctypr)) != ERROR_OK)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
LOG_DEBUG("Examine failed");
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_TTYPR, &ttypr)) != ERROR_OK)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
LOG_DEBUG("Examine failed");
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((retval = mem_ap_read_atomic_u32(swjdp,
|
2009-09-16 13:17:26 -05:00
|
|
|
armv7a->debug_base + CPUDBG_DIDR, &didr)) != ERROR_OK)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
LOG_DEBUG("Examine failed");
|
|
|
|
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
|
|
|
|
|
|
|
/* 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));
|
2009-08-25 01:58:34 -05:00
|
|
|
// cortex_a8->brb_enabled = ????;
|
|
|
|
for (i = 0; i < cortex_a8->brp_num; i++)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup Watchpoint Register Pairs */
|
|
|
|
cortex_a8->wrp_num = ((didr >> 28) & 0x0F) + 1;
|
|
|
|
cortex_a8->wrp_num_available = cortex_a8->wrp_num;
|
2009-11-13 11:18:27 -06:00
|
|
|
cortex_a8->wrp_list = calloc(cortex_a8->wrp_num, sizeof(struct cortex_a8_wrp));
|
2009-08-25 01:58:34 -05:00
|
|
|
for (i = 0; i < cortex_a8->wrp_num; i++)
|
|
|
|
{
|
|
|
|
cortex_a8->wrp_list[i].used = 0;
|
|
|
|
cortex_a8->wrp_list[i].type = 0;
|
|
|
|
cortex_a8->wrp_list[i].value = 0;
|
|
|
|
cortex_a8->wrp_list[i].control = 0;
|
|
|
|
cortex_a8->wrp_list[i].WRPn = i;
|
|
|
|
}
|
|
|
|
LOG_DEBUG("Configured %i hw breakpoint pairs and %i hw watchpoint pairs",
|
|
|
|
cortex_a8->brp_num , cortex_a8->wrp_num);
|
|
|
|
|
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 12:11:13 -06:00
|
|
|
static void cortex_a8_build_reg_cache(struct target *target)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
2009-11-13 10:44:08 -06:00
|
|
|
struct reg_cache **cache_p = register_get_last_cache_p(&target->reg_cache);
|
2009-11-22 12:19:58 -06:00
|
|
|
struct arm *armv4_5 = target_to_armv4_5(target);
|
2009-08-25 01:58:34 -05:00
|
|
|
|
2009-11-18 15:22:27 -06:00
|
|
|
armv4_5->core_type = ARM_MODE_MON;
|
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
(*cache_p) = armv4_5_build_reg_cache(target, armv4_5);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-13 15:25:47 -06:00
|
|
|
static int cortex_a8_init_target(struct command_context *cmd_ctx,
|
2009-11-13 12:11:13 -06:00
|
|
|
struct target *target)
|
2009-08-25 01:58:34 -05:00
|
|
|
{
|
|
|
|
cortex_a8_build_reg_cache(target);
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int cortex_a8_init_arch_info(struct target *target,
|
2009-11-13 10:42:11 -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;
|
|
|
|
struct arm *armv4_5 = &armv7a->armv4_5_common;
|
2009-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
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;
|
|
|
|
armv4_5->arch_info = armv7a;
|
|
|
|
|
2009-05-04 13:44:12 -05:00
|
|
|
/* prepare JTAG information for the new target */
|
|
|
|
cortex_a8->jtag_info.tap = tap;
|
|
|
|
cortex_a8->jtag_info.scann_size = 4;
|
2009-08-25 01:58:34 -05:00
|
|
|
LOG_DEBUG(" ");
|
|
|
|
swjdp->dp_select_value = -1;
|
|
|
|
swjdp->ap_csw_value = -1;
|
|
|
|
swjdp->ap_tar_value = -1;
|
|
|
|
swjdp->jtag_info = &cortex_a8->jtag_info;
|
|
|
|
swjdp->memaccess_tck = 80;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
/* Number of bits for tar autoincrement, impl. dep. at least 10 */
|
|
|
|
swjdp->tar_autoincr_block = (1 << 10);
|
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;
|
|
|
|
armv7a->post_restore_context = NULL;
|
|
|
|
armv7a->armv4_5_mmu.armv4_5_cache.ctype = -1;
|
|
|
|
// armv7a->armv4_5_mmu.get_ttb = armv7a_get_ttb;
|
|
|
|
armv7a->armv4_5_mmu.read_memory = cortex_a8_read_memory;
|
|
|
|
armv7a->armv4_5_mmu.write_memory = cortex_a8_write_memory;
|
|
|
|
// armv7a->armv4_5_mmu.disable_mmu_caches = armv7a_disable_mmu_caches;
|
|
|
|
// armv7a->armv4_5_mmu.enable_mmu_caches = armv7a_enable_mmu_caches;
|
|
|
|
armv7a->armv4_5_mmu.has_tiny_pages = 1;
|
|
|
|
armv7a->armv4_5_mmu.mmu_enabled = 0;
|
|
|
|
armv7a->read_cp15 = cortex_a8_read_cp15;
|
|
|
|
armv7a->write_cp15 = cortex_a8_write_cp15;
|
|
|
|
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
// arm7_9->handle_target_request = cortex_a8_handle_target_request;
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
armv4_5->read_core_reg = cortex_a8_read_core_reg;
|
|
|
|
armv4_5->write_core_reg = cortex_a8_write_core_reg;
|
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 */
|
|
|
|
armv4_5_init_arch_info(target, armv4_5);
|
|
|
|
armv7a->common_magic = ARMV7_COMMON_MAGIC;
|
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
|
|
|
|
|
|
|
cortex_a8_init_arch_info(target, cortex_a8, target->tap);
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-11-15 07:57:37 -06:00
|
|
|
return armv4_5_handle_cache_info_command(CMD_CTX,
|
2009-08-25 01:58:34 -05:00
|
|
|
&armv7a->armv4_5_mmu.armv4_5_cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
2009-09-18 10:11:46 -05:00
|
|
|
|
|
|
|
cortex_a8_init_debug_access(target);
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-13 15:25:47 -06:00
|
|
|
static int cortex_a8_register_commands(struct command_context *cmd_ctx)
|
2009-05-04 13:44:12 -05:00
|
|
|
{
|
2009-11-13 15:30:50 -06:00
|
|
|
struct command *cortex_a8_cmd;
|
2009-08-25 01:58:34 -05:00
|
|
|
int retval = ERROR_OK;
|
|
|
|
|
|
|
|
armv4_5_register_commands(cmd_ctx);
|
|
|
|
armv7a_register_commands(cmd_ctx);
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
cortex_a8_cmd = register_command(cmd_ctx, NULL, "cortex_a8",
|
|
|
|
NULL, COMMAND_ANY,
|
|
|
|
"cortex_a8 specific commands");
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-08-25 01:58:34 -05:00
|
|
|
register_command(cmd_ctx, cortex_a8_cmd, "cache_info",
|
|
|
|
cortex_a8_handle_cache_info_command, COMMAND_EXEC,
|
|
|
|
"display information about target caches");
|
2009-05-04 13:44:12 -05:00
|
|
|
|
2009-09-18 10:11:46 -05:00
|
|
|
register_command(cmd_ctx, cortex_a8_cmd, "dbginit",
|
|
|
|
cortex_a8_handle_dbginit_command, COMMAND_EXEC,
|
|
|
|
"Initialize core debug");
|
|
|
|
|
2009-05-04 13:44:12 -05:00
|
|
|
return retval;
|
|
|
|
}
|
2009-11-10 20:26:13 -06: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-11-13 10:45:20 -06:00
|
|
|
.get_gdb_reg_list = armv4_5_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,
|
|
|
|
.remove_breakpoint = cortex_a8_remove_breakpoint,
|
|
|
|
.add_watchpoint = NULL,
|
|
|
|
.remove_watchpoint = NULL,
|
2009-11-10 20:26:13 -06:00
|
|
|
|
2009-11-13 10:45:20 -06:00
|
|
|
.register_commands = cortex_a8_register_commands,
|
|
|
|
.target_create = cortex_a8_target_create,
|
|
|
|
.init_target = cortex_a8_init_target,
|
|
|
|
.examine = cortex_a8_examine,
|
|
|
|
.mrc = cortex_a8_mrc,
|
|
|
|
.mcr = cortex_a8_mcr,
|
|
|
|
};
|