qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

machine.c (3722B)


      1 /*
      2  *  CRIS virtual CPU state save/load support
      3  *
      4  *  Copyright (c) 2012 Red Hat, Inc.
      5  *  Written by Juan Quintela <quintela@redhat.com>
      6  *
      7  * This library is free software; you can redistribute it and/or
      8  * modify it under the terms of the GNU Lesser General Public
      9  * License as published by the Free Software Foundation; either
     10  * version 2.1 of the License, or (at your option) any later version.
     11  *
     12  * This library is distributed in the hope that it will be useful,
     13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     15  * General Public License for more details.
     16  *
     17  * You should have received a copy of the GNU Lesser General Public
     18  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
     19  */
     20 
     21 #include "qemu/osdep.h"
     22 #include "cpu.h"
     23 #include "migration/cpu.h"
     24 
     25 static const VMStateDescription vmstate_tlbset = {
     26     .name = "cpu/tlbset",
     27     .version_id = 1,
     28     .minimum_version_id = 1,
     29     .fields = (VMStateField[]) {
     30         VMSTATE_UINT32(lo, TLBSet),
     31         VMSTATE_UINT32(hi, TLBSet),
     32         VMSTATE_END_OF_LIST()
     33     }
     34 };
     35 
     36 static const VMStateDescription vmstate_cris_env = {
     37     .name = "env",
     38     .version_id = 2,
     39     .minimum_version_id = 2,
     40     .fields = (VMStateField[]) {
     41         VMSTATE_UINT32_ARRAY(regs, CPUCRISState, 16),
     42         VMSTATE_UINT32_ARRAY(pregs, CPUCRISState, 16),
     43         VMSTATE_UINT32(pc, CPUCRISState),
     44         VMSTATE_UINT32(ksp, CPUCRISState),
     45         VMSTATE_INT32(dslot, CPUCRISState),
     46         VMSTATE_INT32(btaken, CPUCRISState),
     47         VMSTATE_UINT32(btarget, CPUCRISState),
     48         VMSTATE_UINT32(cc_op, CPUCRISState),
     49         VMSTATE_UINT32(cc_mask, CPUCRISState),
     50         VMSTATE_UINT32(cc_dest, CPUCRISState),
     51         VMSTATE_UINT32(cc_src, CPUCRISState),
     52         VMSTATE_UINT32(cc_result, CPUCRISState),
     53         VMSTATE_INT32(cc_size, CPUCRISState),
     54         VMSTATE_INT32(cc_x, CPUCRISState),
     55         VMSTATE_INT32(locked_irq, CPUCRISState),
     56         VMSTATE_INT32(interrupt_vector, CPUCRISState),
     57         VMSTATE_INT32(fault_vector, CPUCRISState),
     58         VMSTATE_INT32(trap_vector, CPUCRISState),
     59         VMSTATE_UINT32_ARRAY(sregs[0], CPUCRISState, 16),
     60         VMSTATE_UINT32_ARRAY(sregs[1], CPUCRISState, 16),
     61         VMSTATE_UINT32_ARRAY(sregs[2], CPUCRISState, 16),
     62         VMSTATE_UINT32_ARRAY(sregs[3], CPUCRISState, 16),
     63         VMSTATE_UINT32(mmu_rand_lfsr, CPUCRISState),
     64         VMSTATE_STRUCT_ARRAY(tlbsets[0][0], CPUCRISState, 16, 0,
     65                              vmstate_tlbset, TLBSet),
     66         VMSTATE_STRUCT_ARRAY(tlbsets[0][1], CPUCRISState, 16, 0,
     67                              vmstate_tlbset, TLBSet),
     68         VMSTATE_STRUCT_ARRAY(tlbsets[0][2], CPUCRISState, 16, 0,
     69                              vmstate_tlbset, TLBSet),
     70         VMSTATE_STRUCT_ARRAY(tlbsets[0][3], CPUCRISState, 16, 0,
     71                              vmstate_tlbset, TLBSet),
     72         VMSTATE_STRUCT_ARRAY(tlbsets[1][0], CPUCRISState, 16, 0,
     73                              vmstate_tlbset, TLBSet),
     74         VMSTATE_STRUCT_ARRAY(tlbsets[1][1], CPUCRISState, 16, 0,
     75                              vmstate_tlbset, TLBSet),
     76         VMSTATE_STRUCT_ARRAY(tlbsets[1][2], CPUCRISState, 16, 0,
     77                              vmstate_tlbset, TLBSet),
     78         VMSTATE_STRUCT_ARRAY(tlbsets[1][3], CPUCRISState, 16, 0,
     79                              vmstate_tlbset, TLBSet),
     80         VMSTATE_END_OF_LIST()
     81     }
     82 };
     83 
     84 const VMStateDescription vmstate_cris_cpu = {
     85     .name = "cpu",
     86     .version_id = 1,
     87     .minimum_version_id = 1,
     88     .fields = (VMStateField[]) {
     89         VMSTATE_CPU(),
     90         VMSTATE_STRUCT(env, CRISCPU, 1, vmstate_cris_env, CPUCRISState),
     91         VMSTATE_END_OF_LIST()
     92     }
     93 };