Skip to content

Commit

Permalink
ppc_booke: Pass PowerPCCPU to ppc_booke_timers_init()
Browse files Browse the repository at this point in the history
Cleans up after passing PowerPCCPU to timer callbacks.

Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
afaerber committed Dec 19, 2012
1 parent 2f9859f commit a34a92b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion hw/ppc.h
Expand Up @@ -89,4 +89,4 @@ enum {
#define PPC_SERIAL_MM_BAUDBASE 399193

/* ppc_booke.c */
void ppc_booke_timers_init(CPUPPCState *env, uint32_t freq, uint32_t flags);
void ppc_booke_timers_init(PowerPCCPU *cpu, uint32_t freq, uint32_t flags);
2 changes: 1 addition & 1 deletion hw/ppc/e500.c
Expand Up @@ -495,7 +495,7 @@ void ppce500_init(PPCE500Params *params)
env->mpic_cpu_base = MPC8544_CCSRBAR_BASE +
MPC8544_MPIC_REGS_OFFSET + 0x20000;

ppc_booke_timers_init(env, 400000000, PPC_TIMER_E500);
ppc_booke_timers_init(cpu, 400000000, PPC_TIMER_E500);

/* Register reset handler */
if (!i) {
Expand Down
2 changes: 1 addition & 1 deletion hw/ppc405_uc.c
Expand Up @@ -2482,7 +2482,7 @@ CPUPPCState *ppc405ep_init(MemoryRegion *address_space_mem,
/* OBP arbitrer */
ppc4xx_opba_init(0xef600600);
/* Initialize timers */
ppc_booke_timers_init(env, sysclk, 0);
ppc_booke_timers_init(cpu, sysclk, 0);
/* Universal interrupt controller */
irqs = g_malloc0(sizeof(qemu_irq) * PPCUIC_OUTPUT_NB);
irqs[PPCUIC_OUTPUT_INT] =
Expand Down
2 changes: 1 addition & 1 deletion hw/ppc440_bamboo.c
Expand Up @@ -195,7 +195,7 @@ static void bamboo_init(QEMUMachineInitArgs *args)
env = &cpu->env;

qemu_register_reset(main_cpu_reset, cpu);
ppc_booke_timers_init(env, 400000000, 0);
ppc_booke_timers_init(cpu, 400000000, 0);
ppc_dcr_init(env, NULL, NULL);

/* interrupt controller */
Expand Down
5 changes: 2 additions & 3 deletions hw/ppc_booke.c
Expand Up @@ -237,16 +237,15 @@ void store_booke_tcr(CPUPPCState *env, target_ulong val)

}

void ppc_booke_timers_init(CPUPPCState *env, uint32_t freq, uint32_t flags)
void ppc_booke_timers_init(PowerPCCPU *cpu, uint32_t freq, uint32_t flags)
{
PowerPCCPU *cpu = ppc_env_get_cpu(env);
ppc_tb_t *tb_env;
booke_timer_t *booke_timer;

tb_env = g_malloc0(sizeof(ppc_tb_t));
booke_timer = g_malloc0(sizeof(booke_timer_t));

env->tb_env = tb_env;
cpu->env.tb_env = tb_env;
tb_env->flags = flags | PPC_TIMER_BOOKE | PPC_DECR_ZERO_TRIGGERED;

tb_env->tb_freq = freq;
Expand Down
2 changes: 1 addition & 1 deletion hw/virtex_ml507.c
Expand Up @@ -94,7 +94,7 @@ static PowerPCCPU *ppc440_init_xilinx(ram_addr_t *ram_size,
}
env = &cpu->env;

ppc_booke_timers_init(env, sysclk, 0/* no flags */);
ppc_booke_timers_init(cpu, sysclk, 0/* no flags */);

ppc_dcr_init(env, NULL, NULL);

Expand Down

0 comments on commit a34a92b

Please sign in to comment.