2011-09-13 06:00:32 +02:00
|
|
|
/*
|
|
|
|
* QEMU PowerPC Booke hardware System Emulator
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 AdaCore
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2016-01-26 19:16:58 +01:00
|
|
|
#include "qemu/osdep.h"
|
2016-01-19 21:51:44 +01:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "cpu.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/hw.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/ppc/ppc.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/timer/m48t59.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/log.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/loader.h"
|
2013-02-24 19:16:21 +01:00
|
|
|
#include "kvm_ppc.h"
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Timer Control Register */
|
|
|
|
|
|
|
|
#define TCR_WP_SHIFT 30 /* Watchdog Timer Period */
|
2014-03-17 17:00:37 +01:00
|
|
|
#define TCR_WP_MASK (0x3U << TCR_WP_SHIFT)
|
2011-09-13 06:00:32 +02:00
|
|
|
#define TCR_WRC_SHIFT 28 /* Watchdog Timer Reset Control */
|
2014-03-17 17:00:37 +01:00
|
|
|
#define TCR_WRC_MASK (0x3U << TCR_WRC_SHIFT)
|
|
|
|
#define TCR_WIE (1U << 27) /* Watchdog Timer Interrupt Enable */
|
|
|
|
#define TCR_DIE (1U << 26) /* Decrementer Interrupt Enable */
|
2011-09-13 06:00:32 +02:00
|
|
|
#define TCR_FP_SHIFT 24 /* Fixed-Interval Timer Period */
|
2014-03-17 17:00:37 +01:00
|
|
|
#define TCR_FP_MASK (0x3U << TCR_FP_SHIFT)
|
|
|
|
#define TCR_FIE (1U << 23) /* Fixed-Interval Timer Interrupt Enable */
|
|
|
|
#define TCR_ARE (1U << 22) /* Auto-Reload Enable */
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
/* Timer Control Register (e500 specific fields) */
|
|
|
|
|
|
|
|
#define TCR_E500_FPEXT_SHIFT 13 /* Fixed-Interval Timer Period Extension */
|
|
|
|
#define TCR_E500_FPEXT_MASK (0xf << TCR_E500_FPEXT_SHIFT)
|
|
|
|
#define TCR_E500_WPEXT_SHIFT 17 /* Watchdog Timer Period Extension */
|
|
|
|
#define TCR_E500_WPEXT_MASK (0xf << TCR_E500_WPEXT_SHIFT)
|
|
|
|
|
|
|
|
/* Timer Status Register */
|
|
|
|
|
2014-03-17 17:00:37 +01:00
|
|
|
#define TSR_FIS (1U << 26) /* Fixed-Interval Timer Interrupt Status */
|
|
|
|
#define TSR_DIS (1U << 27) /* Decrementer Interrupt Status */
|
2011-09-13 06:00:32 +02:00
|
|
|
#define TSR_WRS_SHIFT 28 /* Watchdog Timer Reset Status */
|
2014-03-17 17:00:37 +01:00
|
|
|
#define TSR_WRS_MASK (0x3U << TSR_WRS_SHIFT)
|
|
|
|
#define TSR_WIS (1U << 30) /* Watchdog Timer Interrupt Status */
|
|
|
|
#define TSR_ENW (1U << 31) /* Enable Next Watchdog Timer */
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
typedef struct booke_timer_t booke_timer_t;
|
|
|
|
struct booke_timer_t {
|
|
|
|
|
|
|
|
uint64_t fit_next;
|
2013-12-01 08:49:47 +01:00
|
|
|
QEMUTimer *fit_timer;
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
uint64_t wdt_next;
|
2013-12-01 08:49:47 +01:00
|
|
|
QEMUTimer *wdt_timer;
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
uint32_t flags;
|
|
|
|
};
|
|
|
|
|
2012-12-01 03:55:58 +01:00
|
|
|
static void booke_update_irq(PowerPCCPU *cpu)
|
2011-09-13 06:00:32 +02:00
|
|
|
{
|
2012-12-01 03:55:58 +01:00
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
|
|
|
ppc_set_irq(cpu, PPC_INTERRUPT_DECR,
|
2011-09-13 06:00:32 +02:00
|
|
|
(env->spr[SPR_BOOKE_TSR] & TSR_DIS
|
|
|
|
&& env->spr[SPR_BOOKE_TCR] & TCR_DIE));
|
|
|
|
|
2012-12-01 03:55:58 +01:00
|
|
|
ppc_set_irq(cpu, PPC_INTERRUPT_WDT,
|
2011-09-13 06:00:32 +02:00
|
|
|
(env->spr[SPR_BOOKE_TSR] & TSR_WIS
|
|
|
|
&& env->spr[SPR_BOOKE_TCR] & TCR_WIE));
|
|
|
|
|
2012-12-01 03:55:58 +01:00
|
|
|
ppc_set_irq(cpu, PPC_INTERRUPT_FIT,
|
2011-09-13 06:00:32 +02:00
|
|
|
(env->spr[SPR_BOOKE_TSR] & TSR_FIS
|
|
|
|
&& env->spr[SPR_BOOKE_TCR] & TCR_FIE));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the location of the bit of time base at which the FIT will raise an
|
|
|
|
interrupt */
|
2012-03-14 01:38:23 +01:00
|
|
|
static uint8_t booke_get_fit_target(CPUPPCState *env, ppc_tb_t *tb_env)
|
2011-09-13 06:00:32 +02:00
|
|
|
{
|
|
|
|
uint8_t fp = (env->spr[SPR_BOOKE_TCR] & TCR_FP_MASK) >> TCR_FP_SHIFT;
|
|
|
|
|
|
|
|
if (tb_env->flags & PPC_TIMER_E500) {
|
|
|
|
/* e500 Fixed-interval timer period extension */
|
|
|
|
uint32_t fpext = (env->spr[SPR_BOOKE_TCR] & TCR_E500_FPEXT_MASK)
|
|
|
|
>> TCR_E500_FPEXT_SHIFT;
|
|
|
|
fp = 63 - (fp | fpext << 2);
|
|
|
|
} else {
|
|
|
|
fp = env->fit_period[fp];
|
|
|
|
}
|
|
|
|
|
|
|
|
return fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the location of the bit of time base at which the WDT will raise an
|
|
|
|
interrupt */
|
2012-03-14 01:38:23 +01:00
|
|
|
static uint8_t booke_get_wdt_target(CPUPPCState *env, ppc_tb_t *tb_env)
|
2011-09-13 06:00:32 +02:00
|
|
|
{
|
|
|
|
uint8_t wp = (env->spr[SPR_BOOKE_TCR] & TCR_WP_MASK) >> TCR_WP_SHIFT;
|
|
|
|
|
|
|
|
if (tb_env->flags & PPC_TIMER_E500) {
|
|
|
|
/* e500 Watchdog timer period extension */
|
|
|
|
uint32_t wpext = (env->spr[SPR_BOOKE_TCR] & TCR_E500_WPEXT_MASK)
|
|
|
|
>> TCR_E500_WPEXT_SHIFT;
|
|
|
|
wp = 63 - (wp | wpext << 2);
|
|
|
|
} else {
|
|
|
|
wp = env->wdt_period[wp];
|
|
|
|
}
|
|
|
|
|
|
|
|
return wp;
|
|
|
|
}
|
|
|
|
|
2012-03-14 01:38:23 +01:00
|
|
|
static void booke_update_fixed_timer(CPUPPCState *env,
|
2011-09-13 06:00:32 +02:00
|
|
|
uint8_t target_bit,
|
|
|
|
uint64_t *next,
|
2013-11-25 22:46:54 +01:00
|
|
|
QEMUTimer *timer,
|
|
|
|
int tsr_bit)
|
2011-09-13 06:00:32 +02:00
|
|
|
{
|
|
|
|
ppc_tb_t *tb_env = env->tb_env;
|
2013-06-12 14:30:50 +02:00
|
|
|
uint64_t delta_tick, ticks = 0;
|
2011-09-13 06:00:32 +02:00
|
|
|
uint64_t tb;
|
2013-06-12 14:30:50 +02:00
|
|
|
uint64_t period;
|
2011-09-13 06:00:32 +02:00
|
|
|
uint64_t now;
|
|
|
|
|
2013-11-25 22:46:54 +01:00
|
|
|
if (!(env->spr[SPR_BOOKE_TSR] & tsr_bit)) {
|
|
|
|
/*
|
|
|
|
* Don't arm the timer again when the guest has the current
|
|
|
|
* interrupt still pending. Wait for it to ack it.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-21 17:03:08 +02:00
|
|
|
now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
|
2011-09-13 06:00:32 +02:00
|
|
|
tb = cpu_ppc_get_tb(tb_env, now, tb_env->tb_offset);
|
2013-06-12 14:30:50 +02:00
|
|
|
period = 1ULL << target_bit;
|
|
|
|
delta_tick = period - (tb & (period - 1));
|
2011-09-13 06:00:32 +02:00
|
|
|
|
2013-06-12 14:30:50 +02:00
|
|
|
/* the timer triggers only when the selected bit toggles from 0 to 1 */
|
|
|
|
if (tb & period) {
|
|
|
|
ticks = period;
|
|
|
|
}
|
2011-09-13 06:00:32 +02:00
|
|
|
|
2013-06-12 14:30:50 +02:00
|
|
|
if (ticks + delta_tick < ticks) {
|
|
|
|
/* Overflow, so assume the biggest number we can express. */
|
|
|
|
ticks = UINT64_MAX;
|
|
|
|
} else {
|
|
|
|
ticks += delta_tick;
|
|
|
|
}
|
|
|
|
|
2016-03-21 17:02:30 +01:00
|
|
|
*next = now + muldiv64(ticks, NANOSECONDS_PER_SECOND, tb_env->tb_freq);
|
2013-06-12 14:30:50 +02:00
|
|
|
if ((*next < now) || (*next > INT64_MAX)) {
|
|
|
|
/* Overflow, so assume the biggest number the qemu timer supports. */
|
|
|
|
*next = INT64_MAX;
|
|
|
|
}
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
/* XXX: If expire time is now. We can't run the callback because we don't
|
|
|
|
* have access to it. So we just set the timer one nanosecond later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (*next == now) {
|
|
|
|
(*next)++;
|
2013-11-25 22:46:55 +01:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* There's no point to fake any granularity that's more fine grained
|
|
|
|
* than milliseconds. Anything beyond that just overloads the system.
|
|
|
|
*/
|
|
|
|
*next = MAX(*next, now + SCALE_MS);
|
2011-09-13 06:00:32 +02:00
|
|
|
}
|
|
|
|
|
2013-11-25 22:46:54 +01:00
|
|
|
/* Fire the next timer */
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(timer, *next);
|
2011-09-13 06:00:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void booke_decr_cb(void *opaque)
|
|
|
|
{
|
2012-12-01 04:35:15 +01:00
|
|
|
PowerPCCPU *cpu = opaque;
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
env->spr[SPR_BOOKE_TSR] |= TSR_DIS;
|
2012-12-01 03:55:58 +01:00
|
|
|
booke_update_irq(cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
if (env->spr[SPR_BOOKE_TCR] & TCR_ARE) {
|
|
|
|
/* Auto Reload */
|
|
|
|
cpu_ppc_store_decr(env, env->spr[SPR_BOOKE_DECAR]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void booke_fit_cb(void *opaque)
|
|
|
|
{
|
2012-12-01 04:35:15 +01:00
|
|
|
PowerPCCPU *cpu = opaque;
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2011-09-13 06:00:32 +02:00
|
|
|
ppc_tb_t *tb_env;
|
|
|
|
booke_timer_t *booke_timer;
|
|
|
|
|
|
|
|
tb_env = env->tb_env;
|
|
|
|
booke_timer = tb_env->opaque;
|
|
|
|
env->spr[SPR_BOOKE_TSR] |= TSR_FIS;
|
|
|
|
|
2012-12-01 03:55:58 +01:00
|
|
|
booke_update_irq(cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
booke_update_fixed_timer(env,
|
|
|
|
booke_get_fit_target(env, tb_env),
|
|
|
|
&booke_timer->fit_next,
|
2013-11-25 22:46:54 +01:00
|
|
|
booke_timer->fit_timer,
|
|
|
|
TSR_FIS);
|
2011-09-13 06:00:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void booke_wdt_cb(void *opaque)
|
|
|
|
{
|
2012-12-01 04:35:15 +01:00
|
|
|
PowerPCCPU *cpu = opaque;
|
|
|
|
CPUPPCState *env = &cpu->env;
|
2011-09-13 06:00:32 +02:00
|
|
|
ppc_tb_t *tb_env;
|
|
|
|
booke_timer_t *booke_timer;
|
|
|
|
|
|
|
|
tb_env = env->tb_env;
|
|
|
|
booke_timer = tb_env->opaque;
|
|
|
|
|
|
|
|
/* TODO: There's lots of complicated stuff to do here */
|
|
|
|
|
2012-12-01 03:55:58 +01:00
|
|
|
booke_update_irq(cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
booke_update_fixed_timer(env,
|
|
|
|
booke_get_wdt_target(env, tb_env),
|
|
|
|
&booke_timer->wdt_next,
|
2013-11-25 22:46:54 +01:00
|
|
|
booke_timer->wdt_timer,
|
|
|
|
TSR_WIS);
|
2011-09-13 06:00:32 +02:00
|
|
|
}
|
|
|
|
|
2012-03-14 01:38:23 +01:00
|
|
|
void store_booke_tsr(CPUPPCState *env, target_ulong val)
|
2011-09-13 06:00:32 +02:00
|
|
|
{
|
2012-12-01 03:55:58 +01:00
|
|
|
PowerPCCPU *cpu = ppc_env_get_cpu(env);
|
2013-11-25 22:46:54 +01:00
|
|
|
ppc_tb_t *tb_env = env->tb_env;
|
|
|
|
booke_timer_t *booke_timer = tb_env->opaque;
|
2012-12-01 03:55:58 +01:00
|
|
|
|
2011-09-13 06:00:32 +02:00
|
|
|
env->spr[SPR_BOOKE_TSR] &= ~val;
|
2013-02-24 19:16:21 +01:00
|
|
|
kvmppc_clear_tsr_bits(cpu, val);
|
2013-11-25 22:46:54 +01:00
|
|
|
|
|
|
|
if (val & TSR_FIS) {
|
|
|
|
booke_update_fixed_timer(env,
|
|
|
|
booke_get_fit_target(env, tb_env),
|
|
|
|
&booke_timer->fit_next,
|
|
|
|
booke_timer->fit_timer,
|
|
|
|
TSR_FIS);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val & TSR_WIS) {
|
|
|
|
booke_update_fixed_timer(env,
|
|
|
|
booke_get_wdt_target(env, tb_env),
|
|
|
|
&booke_timer->wdt_next,
|
|
|
|
booke_timer->wdt_timer,
|
|
|
|
TSR_WIS);
|
|
|
|
}
|
|
|
|
|
2012-12-01 03:55:58 +01:00
|
|
|
booke_update_irq(cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
}
|
|
|
|
|
2012-03-14 01:38:23 +01:00
|
|
|
void store_booke_tcr(CPUPPCState *env, target_ulong val)
|
2011-09-13 06:00:32 +02:00
|
|
|
{
|
2012-12-01 03:55:58 +01:00
|
|
|
PowerPCCPU *cpu = ppc_env_get_cpu(env);
|
2011-09-13 06:00:32 +02:00
|
|
|
ppc_tb_t *tb_env = env->tb_env;
|
|
|
|
booke_timer_t *booke_timer = tb_env->opaque;
|
|
|
|
|
|
|
|
tb_env = env->tb_env;
|
|
|
|
env->spr[SPR_BOOKE_TCR] = val;
|
2013-02-24 19:16:21 +01:00
|
|
|
kvmppc_set_tcr(cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
|
2012-12-01 03:55:58 +01:00
|
|
|
booke_update_irq(cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
booke_update_fixed_timer(env,
|
|
|
|
booke_get_fit_target(env, tb_env),
|
|
|
|
&booke_timer->fit_next,
|
2013-11-25 22:46:54 +01:00
|
|
|
booke_timer->fit_timer,
|
|
|
|
TSR_FIS);
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
booke_update_fixed_timer(env,
|
|
|
|
booke_get_wdt_target(env, tb_env),
|
|
|
|
&booke_timer->wdt_next,
|
2013-11-25 22:46:54 +01:00
|
|
|
booke_timer->wdt_timer,
|
|
|
|
TSR_WIS);
|
2011-09-13 06:00:32 +02:00
|
|
|
}
|
|
|
|
|
2012-12-27 20:16:51 +01:00
|
|
|
static void ppc_booke_timer_reset_handle(void *opaque)
|
|
|
|
{
|
|
|
|
PowerPCCPU *cpu = opaque;
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
2013-02-24 19:16:21 +01:00
|
|
|
store_booke_tcr(env, 0);
|
|
|
|
store_booke_tsr(env, -1);
|
|
|
|
}
|
2012-12-27 20:16:51 +01:00
|
|
|
|
2013-02-24 19:16:21 +01:00
|
|
|
/*
|
|
|
|
* This function will be called whenever the CPU state changes.
|
|
|
|
* CPU states are defined "typedef enum RunState".
|
|
|
|
* Regarding timer, When CPU state changes to running after debug halt
|
|
|
|
* or similar cases which takes time then in between final watchdog
|
|
|
|
* expiry happenes. This will cause exit to QEMU and configured watchdog
|
|
|
|
* action will be taken. To avoid this we always clear the watchdog state when
|
|
|
|
* state changes to running.
|
|
|
|
*/
|
|
|
|
static void cpu_state_change_handler(void *opaque, int running, RunState state)
|
|
|
|
{
|
|
|
|
PowerPCCPU *cpu = opaque;
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
|
|
|
if (!running) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear watchdog interrupt condition by clearing TSR.
|
|
|
|
*/
|
|
|
|
store_booke_tsr(env, TSR_ENW | TSR_WIS | TSR_WRS_MASK);
|
2012-12-27 20:16:51 +01:00
|
|
|
}
|
|
|
|
|
2012-12-01 04:43:18 +01:00
|
|
|
void ppc_booke_timers_init(PowerPCCPU *cpu, uint32_t freq, uint32_t flags)
|
2011-09-13 06:00:32 +02:00
|
|
|
{
|
|
|
|
ppc_tb_t *tb_env;
|
|
|
|
booke_timer_t *booke_timer;
|
2013-02-24 19:16:21 +01:00
|
|
|
int ret = 0;
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
tb_env = g_malloc0(sizeof(ppc_tb_t));
|
|
|
|
booke_timer = g_malloc0(sizeof(booke_timer_t));
|
|
|
|
|
2012-12-01 04:43:18 +01:00
|
|
|
cpu->env.tb_env = tb_env;
|
2011-09-13 06:00:32 +02:00
|
|
|
tb_env->flags = flags | PPC_TIMER_BOOKE | PPC_DECR_ZERO_TRIGGERED;
|
|
|
|
|
|
|
|
tb_env->tb_freq = freq;
|
|
|
|
tb_env->decr_freq = freq;
|
|
|
|
tb_env->opaque = booke_timer;
|
2013-08-21 17:03:08 +02:00
|
|
|
tb_env->decr_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_decr_cb, cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
|
|
|
|
booke_timer->fit_timer =
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_fit_cb, cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
booke_timer->wdt_timer =
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_new_ns(QEMU_CLOCK_VIRTUAL, &booke_wdt_cb, cpu);
|
2012-12-27 20:16:51 +01:00
|
|
|
|
2013-02-24 19:16:21 +01:00
|
|
|
ret = kvmppc_booke_watchdog_enable(cpu);
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
/* TODO: Start the QEMU emulated watchdog if not running on KVM.
|
|
|
|
* Also start the QEMU emulated watchdog if KVM does not support
|
|
|
|
* emulated watchdog or somehow it is not enabled (supported but
|
|
|
|
* not enabled is though some bug and requires debugging :)).
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_add_vm_change_state_handler(cpu_state_change_handler, cpu);
|
|
|
|
|
2012-12-27 20:16:51 +01:00
|
|
|
qemu_register_reset(ppc_booke_timer_reset_handle, cpu);
|
2011-09-13 06:00:32 +02:00
|
|
|
}
|