diff options
author | Fabiano Rosas <farosas@linux.ibm.com> | 2022-02-18 08:34:15 +0100 |
---|---|---|
committer | Cédric Le Goater <clg@kaod.org> | 2022-02-18 08:34:15 +0100 |
commit | c1f215772810626930d44132adc080eb488c7e60 (patch) | |
tree | 89eabdaa5a75ef0dab4fe2b84c31a189ca85505e /target | |
parent | 0df0ca16b4aa491e9228d887b80ed392b2ef1039 (diff) | |
download | qemu-c1f215772810626930d44132adc080eb488c7e60.zip qemu-c1f215772810626930d44132adc080eb488c7e60.tar.gz qemu-c1f215772810626930d44132adc080eb488c7e60.tar.bz2 |
target/ppc: cpu_init: Reuse init_proc_745 for the 755
The init_proc_755 function is identical to the 745 one except for the
755-specific registers. I think it is worth it to make them share
code.
Signed-off-by: Fabiano Rosas <farosas@linux.ibm.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20220216162426.1885923-21-farosas@linux.ibm.com>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/ppc/cpu_init.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/target/ppc/cpu_init.c b/target/ppc/cpu_init.c index 28e65ba..243e05f 100644 --- a/target/ppc/cpu_init.c +++ b/target/ppc/cpu_init.c @@ -4544,24 +4544,8 @@ POWERPC_FAMILY(745)(ObjectClass *oc, void *data) static void init_proc_755(CPUPPCState *env) { - register_ne_601_sprs(env); - register_sdr1_sprs(env); - register_7xx_sprs(env); - register_745_sprs(env); + init_proc_745(env); register_755_sprs(env); - - /* Thermal management */ - register_thrm_sprs(env); - - /* Memory management */ - register_low_BATs(env); - register_high_BATs(env); - register_6xx_7xx_soft_tlb(env, 64, 2); - init_excp_7x5(env); - env->dcache_line_size = 32; - env->icache_line_size = 32; - /* Allocate hardware IRQ controller */ - ppc6xx_irq_init(env_archcpu(env)); } POWERPC_FAMILY(755)(ObjectClass *oc, void *data) |