From: Alistair Francis <alistair23@gmail.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, peter.crosthwaite@xilinx.com,
konstanty@ieee.org, martin.galvan@tallertechnologies.com
Subject: [Qemu-devel] [Patch v3 6/8] target_arm: Change the reset values based on the ELF entry
Date: Fri, 26 Sep 2014 09:02:34 +1000 [thread overview]
Message-ID: <02e412b4b3b308ac81bc2443b1be20aebdcd7d79.1411659147.git.alistair23@gmail.com> (raw)
In-Reply-To: <cover.1411659146.git.alistair23@gmail.com>
The Netduino 2 machine won't run unless the reset_pc is based
on the ELF entry point.
Signed-off-by: Alistair Francis <alistair23@gmail.com>
Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
V2:
- Malloc straight away, thanks to Peter C
hw/arm/armv7m.c | 23 ++++++++++++++++++-----
1 file changed, 18 insertions(+), 5 deletions(-)
diff --git a/hw/arm/armv7m.c b/hw/arm/armv7m.c
index 6636926..cff342d 100644
--- a/hw/arm/armv7m.c
+++ b/hw/arm/armv7m.c
@@ -155,11 +155,19 @@ static void armv7m_bitband_init(void)
/* Board init. */
-static void armv7m_reset(void *opaque)
-{
- ARMCPU *cpu = opaque;
+typedef struct ARMV7MResetArgs {
+ ARMCPU *cpu;
+ uint32_t reset_pc;
+} ARMV7MResetArgs;
+
+ static void armv7m_reset(void *opaque)
+ {
+ ARMV7MResetArgs *args = opaque;
+
+ cpu_reset(CPU(args->cpu));
- cpu_reset(CPU(cpu));
+ args->cpu->env.thumb = args->reset_pc & 1;
+ args->cpu->env.regs[15] = args->reset_pc & ~1;
}
/* Init CPU and memory for a v7-M based board.
@@ -180,6 +188,7 @@ qemu_irq *armv7m_init(MemoryRegion *system_memory, int mem_size, int num_irq,
int i;
int big_endian;
MemoryRegion *hack = g_new(MemoryRegion, 1);
+ ARMV7MResetArgs *reset_args = g_new0(ARMV7MResetArgs, 1);
if (cpu_model == NULL) {
cpu_model = "cortex-m3";
@@ -234,7 +243,11 @@ qemu_irq *armv7m_init(MemoryRegion *system_memory, int mem_size, int num_irq,
vmstate_register_ram_global(hack);
memory_region_add_subregion(system_memory, 0xfffff000, hack);
- qemu_register_reset(armv7m_reset, cpu);
+ *reset_args = (ARMV7MResetArgs) {
+ .cpu = cpu,
+ .reset_pc = entry,
+ };
+ qemu_register_reset(armv7m_reset, reset_args);
return pic;
}
--
1.9.1
next prev parent reply other threads:[~2014-09-25 23:03 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-25 23:01 [Qemu-devel] [Patch v3 0/8] Netduino 2 Machine Model Alistair Francis
2014-09-25 23:01 ` [Qemu-devel] [Patch v3 1/8] stm32f205_timer: Add the stm32f205 Timer Alistair Francis
2014-09-25 23:02 ` [Qemu-devel] [Patch v3 2/8] stm32f205_USART: Add the stm32f205 USART Controller Alistair Francis
2014-09-25 23:02 ` [Qemu-devel] [Patch v3 3/8] stm32f205_SYSCFG: Add the stm32f205 SYSCFG Alistair Francis
2014-09-25 23:02 ` [Qemu-devel] [Patch v3 4/8] target_arm: Remove memory region init from armv7m_init Alistair Francis
2014-09-25 23:02 ` [Qemu-devel] [Patch v3 5/8] target_arm: Parameterise the irq lines for armv7m_init Alistair Francis
2014-09-25 23:02 ` Alistair Francis [this message]
2014-09-25 23:02 ` [Qemu-devel] [Patch v3 7/8] stm32f205: Add the stm32f205 SoC Alistair Francis
2014-09-25 23:02 ` [Qemu-devel] [Patch v3 8/8] netduino2: Add the Netduino 2 Machine Alistair Francis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=02e412b4b3b308ac81bc2443b1be20aebdcd7d79.1411659147.git.alistair23@gmail.com \
--to=alistair23@gmail.com \
--cc=konstanty@ieee.org \
--cc=martin.galvan@tallertechnologies.com \
--cc=peter.crosthwaite@xilinx.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).