2013-07-07 12:32:15 +02:00
|
|
|
/*
|
|
|
|
* ARM gdb server stub
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003-2005 Fabrice Bellard
|
|
|
|
* Copyright (c) 2013 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2015-12-07 17:23:44 +01:00
|
|
|
#include "qemu/osdep.h"
|
2013-06-29 04:18:45 +02:00
|
|
|
#include "qemu-common.h"
|
2016-03-15 16:58:45 +01:00
|
|
|
#include "cpu.h"
|
2013-06-29 04:18:45 +02:00
|
|
|
#include "exec/gdbstub.h"
|
2013-07-07 12:32:15 +02:00
|
|
|
|
2018-05-18 18:48:07 +02:00
|
|
|
typedef struct RegisterSysregXmlParam {
|
|
|
|
CPUState *cs;
|
|
|
|
GString *s;
|
|
|
|
} RegisterSysregXmlParam;
|
|
|
|
|
2013-07-07 12:32:15 +02:00
|
|
|
/* Old gdb always expect FPA registers. Newer (xml-aware) gdb only expect
|
|
|
|
whatever the target description contains. Due to a historical mishap
|
|
|
|
the FPA registers appear in between core integer regs and the CPSR.
|
|
|
|
We hack round this by giving the FPA regs zero size when talking to a
|
|
|
|
newer gdb. */
|
|
|
|
|
2013-06-29 04:18:45 +02:00
|
|
|
int arm_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n)
|
2013-07-07 12:32:15 +02:00
|
|
|
{
|
2013-06-29 04:18:45 +02:00
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
CPUARMState *env = &cpu->env;
|
|
|
|
|
2013-07-07 12:32:15 +02:00
|
|
|
if (n < 16) {
|
|
|
|
/* Core integer register. */
|
2013-07-07 13:05:05 +02:00
|
|
|
return gdb_get_reg32(mem_buf, env->regs[n]);
|
2013-07-07 12:32:15 +02:00
|
|
|
}
|
|
|
|
if (n < 24) {
|
|
|
|
/* FPA registers. */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
memset(mem_buf, 0, 12);
|
|
|
|
return 12;
|
|
|
|
}
|
|
|
|
switch (n) {
|
|
|
|
case 24:
|
|
|
|
/* FPA status register. */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
2013-07-07 13:05:05 +02:00
|
|
|
return gdb_get_reg32(mem_buf, 0);
|
2013-07-07 12:32:15 +02:00
|
|
|
case 25:
|
|
|
|
/* CPSR */
|
2013-07-07 13:05:05 +02:00
|
|
|
return gdb_get_reg32(mem_buf, cpsr_read(env));
|
2013-07-07 12:32:15 +02:00
|
|
|
}
|
|
|
|
/* Unknown register. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-29 04:18:45 +02:00
|
|
|
int arm_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
2013-07-07 12:32:15 +02:00
|
|
|
{
|
2013-06-29 04:18:45 +02:00
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
CPUARMState *env = &cpu->env;
|
2013-07-07 12:32:15 +02:00
|
|
|
uint32_t tmp;
|
|
|
|
|
|
|
|
tmp = ldl_p(mem_buf);
|
|
|
|
|
|
|
|
/* Mask out low bit of PC to workaround gdb bugs. This will probably
|
|
|
|
cause problems if we ever implement the Jazelle DBX extensions. */
|
|
|
|
if (n == 15) {
|
|
|
|
tmp &= ~1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < 16) {
|
|
|
|
/* Core integer register. */
|
|
|
|
env->regs[n] = tmp;
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
if (n < 24) { /* 16-23 */
|
|
|
|
/* FPA registers (ignored). */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 12;
|
|
|
|
}
|
|
|
|
switch (n) {
|
|
|
|
case 24:
|
|
|
|
/* FPA status register (ignored). */
|
|
|
|
if (gdb_has_xml) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 4;
|
|
|
|
case 25:
|
|
|
|
/* CPSR */
|
2016-02-23 16:36:43 +01:00
|
|
|
cpsr_write(env, tmp, 0xffffffff, CPSRWriteByGDBStub);
|
2013-07-07 12:32:15 +02:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
/* Unknown register. */
|
|
|
|
return 0;
|
|
|
|
}
|
2018-05-18 18:48:07 +02:00
|
|
|
|
|
|
|
static void arm_gen_one_xml_reg_tag(GString *s, DynamicGDBXMLInfo *dyn_xml,
|
|
|
|
ARMCPRegInfo *ri, uint32_t ri_key,
|
|
|
|
int bitsize)
|
|
|
|
{
|
|
|
|
g_string_append_printf(s, "<reg name=\"%s\"", ri->name);
|
|
|
|
g_string_append_printf(s, " bitsize=\"%d\"", bitsize);
|
|
|
|
g_string_append_printf(s, " group=\"cp_regs\"/>");
|
|
|
|
dyn_xml->num_cpregs++;
|
|
|
|
dyn_xml->cpregs_keys[dyn_xml->num_cpregs - 1] = ri_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void arm_register_sysreg_for_xml(gpointer key, gpointer value,
|
|
|
|
gpointer p)
|
|
|
|
{
|
|
|
|
uint32_t ri_key = *(uint32_t *)key;
|
|
|
|
ARMCPRegInfo *ri = value;
|
|
|
|
RegisterSysregXmlParam *param = (RegisterSysregXmlParam *)p;
|
|
|
|
GString *s = param->s;
|
|
|
|
ARMCPU *cpu = ARM_CPU(param->cs);
|
|
|
|
CPUARMState *env = &cpu->env;
|
|
|
|
DynamicGDBXMLInfo *dyn_xml = &cpu->dyn_xml;
|
|
|
|
|
|
|
|
if (!(ri->type & (ARM_CP_NO_RAW | ARM_CP_NO_GDB))) {
|
|
|
|
if (arm_feature(env, ARM_FEATURE_AARCH64)) {
|
|
|
|
if (ri->state == ARM_CP_STATE_AA64) {
|
|
|
|
arm_gen_one_xml_reg_tag(s , dyn_xml, ri, ri_key, 64);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ri->state == ARM_CP_STATE_AA32) {
|
|
|
|
if (!arm_feature(env, ARM_FEATURE_EL3) &&
|
|
|
|
(ri->secure & ARM_CP_SECSTATE_S)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ri->type & ARM_CP_64BIT) {
|
|
|
|
arm_gen_one_xml_reg_tag(s , dyn_xml, ri, ri_key, 64);
|
|
|
|
} else {
|
|
|
|
arm_gen_one_xml_reg_tag(s , dyn_xml, ri, ri_key, 32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int arm_gen_dynamic_xml(CPUState *cs)
|
|
|
|
{
|
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
GString *s = g_string_new(NULL);
|
|
|
|
RegisterSysregXmlParam param = {cs, s};
|
|
|
|
|
|
|
|
cpu->dyn_xml.num_cpregs = 0;
|
2018-05-31 15:50:52 +02:00
|
|
|
cpu->dyn_xml.cpregs_keys = g_new(uint32_t, g_hash_table_size(cpu->cp_regs));
|
2018-05-18 18:48:07 +02:00
|
|
|
g_string_printf(s, "<?xml version=\"1.0\"?>");
|
|
|
|
g_string_append_printf(s, "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">");
|
|
|
|
g_string_append_printf(s, "<feature name=\"org.qemu.gdb.arm.sys.regs\">");
|
|
|
|
g_hash_table_foreach(cpu->cp_regs, arm_register_sysreg_for_xml, ¶m);
|
|
|
|
g_string_append_printf(s, "</feature>");
|
|
|
|
cpu->dyn_xml.desc = g_string_free(s, false);
|
|
|
|
return cpu->dyn_xml.num_cpregs;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *arm_gdb_get_dynamic_xml(CPUState *cs, const char *xmlname)
|
|
|
|
{
|
|
|
|
ARMCPU *cpu = ARM_CPU(cs);
|
|
|
|
|
|
|
|
if (strcmp(xmlname, "system-registers.xml") == 0) {
|
|
|
|
return cpu->dyn_xml.desc;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|