2009-08-25 01:57:26 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2009 by David Brownell *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "replacements.h"
|
|
|
|
|
|
|
|
#include "armv7a.h"
|
2009-09-08 01:18:45 -05:00
|
|
|
#include "arm_disassembler.h"
|
2009-08-25 01:57:26 -05:00
|
|
|
|
|
|
|
#include "register.h"
|
|
|
|
#include "binarybuffer.h"
|
|
|
|
#include "command.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
2009-11-18 16:46:14 -06:00
|
|
|
static void armv7a_show_fault_registers(struct target *target)
|
2009-10-01 12:39:13 -05:00
|
|
|
{
|
|
|
|
uint32_t dfsr, ifsr, dfar, ifar;
|
2009-11-13 10:41:29 -06:00
|
|
|
struct armv7a_common *armv7a = target_to_armv7a(target);
|
2009-10-01 12:39:13 -05:00
|
|
|
|
|
|
|
armv7a->read_cp15(target, 0, 0, 5, 0, &dfsr);
|
|
|
|
armv7a->read_cp15(target, 0, 1, 5, 0, &ifsr);
|
|
|
|
armv7a->read_cp15(target, 0, 0, 6, 0, &dfar);
|
|
|
|
armv7a->read_cp15(target, 0, 2, 6, 0, &ifar);
|
|
|
|
|
2009-10-13 12:00:46 -05:00
|
|
|
LOG_USER("Data fault registers DFSR: %8.8" PRIx32
|
2009-10-01 12:39:13 -05:00
|
|
|
", DFAR: %8.8" PRIx32, dfsr, dfar);
|
2009-10-13 12:00:46 -05:00
|
|
|
LOG_USER("Instruction fault registers IFSR: %8.8" PRIx32
|
2009-10-01 12:39:13 -05:00
|
|
|
", IFAR: %8.8" PRIx32, ifsr, ifar);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int armv7a_arch_state(struct target *target)
|
2009-08-25 01:57:26 -05:00
|
|
|
{
|
|
|
|
static const char *state[] =
|
|
|
|
{
|
|
|
|
"disabled", "enabled"
|
|
|
|
};
|
|
|
|
|
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-08-25 01:57:26 -05:00
|
|
|
|
2009-11-16 19:58:58 -06:00
|
|
|
if (armv7a->common_magic != ARMV7_COMMON_MAGIC)
|
2009-08-25 01:57:26 -05:00
|
|
|
{
|
2009-11-16 19:58:58 -06:00
|
|
|
LOG_ERROR("BUG: called for a non-ARMv7A target");
|
|
|
|
return ERROR_INVALID_ARGUMENTS;
|
2009-08-25 01:57:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
LOG_USER("target halted in %s state due to %s, current mode: %s\n"
|
2009-11-18 16:46:14 -06:00
|
|
|
"cpsr: 0x%8.8" PRIx32 " pc: 0x%8.8" PRIx32 "\n"
|
2009-08-25 01:57:26 -05:00
|
|
|
"MMU: %s, D-Cache: %s, I-Cache: %s",
|
2009-11-19 04:33:01 -06:00
|
|
|
armv4_5_state_strings[armv4_5->core_state],
|
2009-08-25 01:57:26 -05:00
|
|
|
Jim_Nvp_value2name_simple(nvp_target_debug_reason,
|
|
|
|
target->debug_reason)->name,
|
2009-11-18 01:50:23 -06:00
|
|
|
arm_mode_name(armv4_5->core_mode),
|
2009-11-22 05:37:21 -06:00
|
|
|
buf_get_u32(armv4_5->cpsr->value, 0, 32),
|
2009-08-25 01:57:26 -05:00
|
|
|
buf_get_u32(armv4_5->core_cache->reg_list[15].value, 0, 32),
|
|
|
|
state[armv7a->armv4_5_mmu.mmu_enabled],
|
|
|
|
state[armv7a->armv4_5_mmu.armv4_5_cache.d_u_cache_enabled],
|
|
|
|
state[armv7a->armv4_5_mmu.armv4_5_cache.i_cache_enabled]);
|
|
|
|
|
2009-11-19 04:31:34 -06:00
|
|
|
if (armv4_5->core_mode == ARMV4_5_MODE_ABT)
|
2009-10-01 12:39:13 -05:00
|
|
|
armv7a_show_fault_registers(target);
|
|
|
|
|
2009-08-25 01:57:26 -05:00
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(handle_dap_baseaddr_command)
|
2009-08-25 01:57:26 -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-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:57:26 -05:00
|
|
|
|
2009-11-10 07:32:04 -06:00
|
|
|
return CALL_COMMAND_HANDLER(dap_baseaddr_command, swjdp);
|
2009-08-25 01:57:26 -05:00
|
|
|
}
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(handle_dap_memaccess_command)
|
2009-08-25 01:57:26 -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-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:57:26 -05:00
|
|
|
|
2009-11-10 07:32:04 -06:00
|
|
|
return CALL_COMMAND_HANDLER(dap_memaccess_command, swjdp);
|
2009-08-25 01:57:26 -05:00
|
|
|
}
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(handle_dap_apsel_command)
|
2009-08-25 01:57:26 -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-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:57:26 -05:00
|
|
|
|
2009-11-10 07:32:04 -06:00
|
|
|
return CALL_COMMAND_HANDLER(dap_apsel_command, swjdp);
|
2009-08-25 01:57:26 -05:00
|
|
|
}
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(handle_dap_apid_command)
|
2009-08-25 01:57:26 -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-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:57:26 -05:00
|
|
|
|
2009-11-10 07:32:04 -06:00
|
|
|
return CALL_COMMAND_HANDLER(dap_apid_command, swjdp);
|
2009-08-25 01:57:26 -05:00
|
|
|
}
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(handle_dap_info_command)
|
2009-08-25 01:57:26 -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-11-13 10:40:31 -06:00
|
|
|
struct swjdp_common *swjdp = &armv7a->swjdp_info;
|
2009-08-25 01:57:26 -05:00
|
|
|
uint32_t apsel;
|
|
|
|
|
2009-11-15 06:57:12 -06:00
|
|
|
switch (CMD_ARGC) {
|
2009-10-24 08:36:06 -05:00
|
|
|
case 0:
|
|
|
|
apsel = swjdp->apsel;
|
|
|
|
break;
|
|
|
|
case 1:
|
2009-11-15 10:15:59 -06:00
|
|
|
COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], apsel);
|
2009-10-24 08:36:06 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return ERROR_COMMAND_SYNTAX_ERROR;
|
|
|
|
}
|
2009-08-25 01:57:26 -05:00
|
|
|
|
2009-11-15 07:57:37 -06:00
|
|
|
return dap_info_command(CMD_CTX, swjdp, apsel);
|
2009-08-25 01:57:26 -05:00
|
|
|
}
|
|
|
|
|
2009-11-23 09:43:05 -06:00
|
|
|
static const struct command_registration armv7a_exec_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "info",
|
|
|
|
.handler = &handle_dap_info_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "dap info for ap [num], "
|
|
|
|
"default currently selected AP",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "apsel",
|
|
|
|
.handler = &handle_dap_apsel_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "select a different AP [num] (default 0)",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "apid",
|
|
|
|
.handler = &handle_dap_apid_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "return id reg from AP [num], "
|
|
|
|
"default currently selected AP",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "baseaddr",
|
|
|
|
.handler = &handle_dap_baseaddr_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "return debug base address from AP [num], "
|
|
|
|
"default currently selected AP",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "memaccess",
|
|
|
|
.handler = &handle_dap_memaccess_command,
|
|
|
|
.mode = COMMAND_EXEC,
|
|
|
|
.help = "set/get number of extra tck for mem-ap memory "
|
|
|
|
"bus access [0-255]",
|
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
static const struct command_registration armv7a_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "dap",
|
|
|
|
.mode = COMMAND_ANY,
|
|
|
|
.help = "Cortex DAP command group",
|
|
|
|
.chain = armv7a_exec_command_handlers,
|
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
|
2009-11-13 15:25:47 -06:00
|
|
|
int armv7a_register_commands(struct command_context *cmd_ctx)
|
2009-08-25 01:57:26 -05:00
|
|
|
{
|
2009-11-23 09:43:05 -06:00
|
|
|
return register_commands(cmd_ctx, NULL, armv7a_command_handlers);
|
2009-08-25 01:57:26 -05:00
|
|
|
}
|