diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-11-07 10:05:03 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-11-07 10:05:03 +0000 |
commit | 44a9935465b1cd79547807a431232177362ef43e (patch) | |
tree | 7ffc76576dd2745a8fc7ef3dc8406757cf2b417e /hw/sun4u.c | |
parent | e43941318d22795df91682fec6720540ede6ad02 (diff) | |
download | qemu-44a9935465b1cd79547807a431232177362ef43e.zip |
Sparc64/x86: remove unneeded calls to device reset
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/sun4u.c')
-rw-r--r-- | hw/sun4u.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/hw/sun4u.c b/hw/sun4u.c index 0c7cea67d9..8f11442f08 100644 --- a/hw/sun4u.c +++ b/hw/sun4u.c @@ -268,13 +268,14 @@ static void cpu_set_irq(void *opaque, int irq, int level) typedef struct ResetData { CPUState *env; - uint64_t reset_addr; + uint64_t prom_addr; } ResetData; static void main_cpu_reset(void *opaque) { ResetData *s = (ResetData *)opaque; CPUState *env = s->env; + static unsigned int nr_resets; cpu_reset(env); env->tick_cmpr = TICK_INT_DIS | 0; @@ -289,7 +290,12 @@ static void main_cpu_reset(void *opaque) env->gregs[1] = 0; // Memory start env->gregs[2] = ram_size; // Memory size env->gregs[3] = 0; // Machine description XXX - env->pc = s->reset_addr; + if (nr_resets++ == 0) { + /* Power on reset */ + env->pc = s->prom_addr + 0x20ULL; + } else { + env->pc = s->prom_addr + 0x40ULL; + } env->npc = env->pc + 4; } @@ -544,12 +550,8 @@ static CPUState *cpu_devinit(const char *cpu_model, const struct hwdef *hwdef) reset_info = qemu_mallocz(sizeof(ResetData)); reset_info->env = env; - reset_info->reset_addr = hwdef->prom_addr + 0x40ULL; + reset_info->prom_addr = hwdef->prom_addr; qemu_register_reset(main_cpu_reset, reset_info); - main_cpu_reset(reset_info); - // Override warm reset address with cold start address - env->pc = hwdef->prom_addr + 0x20ULL; - env->npc = env->pc + 4; return env; } |