machine.c 3.5 KB
Newer Older
T
Thomas Huth 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 * S390x machine definitions and functions
 *
 * Copyright IBM Corp. 2014
 *
 * Authors:
 *   Thomas Huth <thuth@linux.vnet.ibm.com>
 *   Christian Borntraeger <borntraeger@de.ibm.com>
 *   Jason J. Herne <jjherne@us.ibm.com>
 *
 * This work is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation; either version 2 of the License,
 * or (at your option) any later version.
 */

#include "hw/hw.h"
#include "cpu.h"
#include "sysemu/kvm.h"

static int cpu_post_load(void *opaque, int version_id)
{
    S390CPU *cpu = opaque;

    /*
     * As the cpu state is pushed to kvm via kvm_set_mp_state rather
     * than via cpu_synchronize_state, we need update kvm here.
     */
    if (kvm_enabled()) {
        kvm_s390_set_cpu_state(cpu, cpu->env.cpu_state);
31
        return kvm_s390_vcpu_interrupt_post_load(cpu);
T
Thomas Huth 已提交
32 33 34 35
    }

    return 0;
}
36 37 38 39 40 41 42 43
static void cpu_pre_save(void *opaque)
{
    S390CPU *cpu = opaque;

    if (kvm_enabled()) {
        kvm_s390_vcpu_interrupt_pre_save(cpu);
    }
}
T
Thomas Huth 已提交
44

45 46 47 48 49
const VMStateDescription vmstate_fpu = {
    .name = "cpu/fpu",
    .version_id = 1,
    .minimum_version_id = 1,
    .fields = (VMStateField[]) {
T
Thomas Huth 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
        VMSTATE_UINT64(env.fregs[0].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[1].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[2].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[3].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[4].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[5].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[6].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[7].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[8].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[9].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[10].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[11].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[12].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[13].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[14].ll, S390CPU),
        VMSTATE_UINT64(env.fregs[15].ll, S390CPU),
66 67 68 69 70 71 72 73 74 75 76 77 78
        VMSTATE_UINT32(env.fpc, S390CPU),
        VMSTATE_END_OF_LIST()
    }
};

static inline bool fpu_needed(void *opaque)
{
    return true;
}

const VMStateDescription vmstate_s390_cpu = {
    .name = "cpu",
    .post_load = cpu_post_load,
79 80
    .pre_save = cpu_pre_save,
    .version_id = 4,
81 82
    .minimum_version_id = 3,
    .fields      = (VMStateField[]) {
T
Thomas Huth 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
        VMSTATE_UINT64_ARRAY(env.regs, S390CPU, 16),
        VMSTATE_UINT64(env.psw.mask, S390CPU),
        VMSTATE_UINT64(env.psw.addr, S390CPU),
        VMSTATE_UINT64(env.psa, S390CPU),
        VMSTATE_UINT32(env.todpr, S390CPU),
        VMSTATE_UINT64(env.pfault_token, S390CPU),
        VMSTATE_UINT64(env.pfault_compare, S390CPU),
        VMSTATE_UINT64(env.pfault_select, S390CPU),
        VMSTATE_UINT64(env.cputm, S390CPU),
        VMSTATE_UINT64(env.ckc, S390CPU),
        VMSTATE_UINT64(env.gbea, S390CPU),
        VMSTATE_UINT64(env.pp, S390CPU),
        VMSTATE_UINT32_ARRAY(env.aregs, S390CPU, 16),
        VMSTATE_UINT64_ARRAY(env.cregs, S390CPU, 16),
        VMSTATE_UINT8(env.cpu_state, S390CPU),
98
        VMSTATE_UINT8(env.sigp_order, S390CPU),
99 100 101
        VMSTATE_UINT32_V(irqstate_saved_size, S390CPU, 4),
        VMSTATE_VBUFFER_UINT32(irqstate, S390CPU, 4, NULL, 0,
                               irqstate_saved_size),
T
Thomas Huth 已提交
102 103
        VMSTATE_END_OF_LIST()
     },
104 105 106 107 108 109 110 111
    .subsections = (VMStateSubsection[]) {
        {
            .vmsd = &vmstate_fpu,
            .needed = fpu_needed,
        } , {
            /* empty */
        }
    },
T
Thomas Huth 已提交
112
};