xen-all.c 843 字节
Newer Older
A
Anthony PERARD 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * Copyright (C) 2010       Citrix Ltd.
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

#include "hw/xen_common.h"
#include "hw/xen_backend.h"

A
Anthony PERARD 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/* VCPU Operations, MMIO, IO ring ... */

static void xen_reset_vcpu(void *opaque)
{
    CPUState *env = opaque;

    env->halted = 1;
}

void xen_vcpu_init(void)
{
    CPUState *first_cpu;

    if ((first_cpu = qemu_get_cpu(0))) {
        qemu_register_reset(xen_reset_vcpu, first_cpu);
        xen_reset_vcpu(first_cpu);
    }
}

A
Anthony PERARD 已提交
31 32 33 34 35 36 37 38 39 40 41 42
/* Initialise Xen */

int xen_init(void)
{
    xen_xc = xen_xc_interface_open(0, 0, 0);
    if (xen_xc == XC_HANDLER_INITIAL_VALUE) {
        xen_be_printf(NULL, 0, "can't open xen interface\n");
        return -1;
    }

    return 0;
}
A
Anthony PERARD 已提交
43 44 45 46 47

int xen_hvm_init(void)
{
    return 0;
}