2012-07-20 09:50:39 +02:00
|
|
|
/*
|
|
|
|
* OpenRISC Machine
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:22 +01:00
|
|
|
#include "qemu/osdep.h"
|
2016-03-15 16:58:45 +01:00
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "cpu.h"
|
2012-07-20 09:50:39 +02:00
|
|
|
#include "hw/hw.h"
|
|
|
|
#include "hw/boards.h"
|
2016-03-15 12:51:18 +01:00
|
|
|
#include "migration/cpu.h"
|
2012-07-20 09:50:39 +02:00
|
|
|
|
2017-04-16 12:44:58 +02:00
|
|
|
static int env_post_load(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
CPUOpenRISCState *env = opaque;
|
|
|
|
|
|
|
|
/* Restore MMU handlers */
|
|
|
|
if (env->sr & SR_DME) {
|
|
|
|
env->tlb->cpu_openrisc_map_address_data =
|
|
|
|
&cpu_openrisc_get_phys_data;
|
|
|
|
} else {
|
|
|
|
env->tlb->cpu_openrisc_map_address_data =
|
|
|
|
&cpu_openrisc_get_phys_nommu;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (env->sr & SR_IME) {
|
|
|
|
env->tlb->cpu_openrisc_map_address_code =
|
|
|
|
&cpu_openrisc_get_phys_code;
|
|
|
|
} else {
|
|
|
|
env->tlb->cpu_openrisc_map_address_code =
|
|
|
|
&cpu_openrisc_get_phys_nommu;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_tlb_entry = {
|
|
|
|
.name = "tlb_entry",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.minimum_version_id_old = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_UINTTL(mr, OpenRISCTLBEntry),
|
|
|
|
VMSTATE_UINTTL(tr, OpenRISCTLBEntry),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_cpu_tlb = {
|
|
|
|
.name = "cpu_tlb",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.minimum_version_id_old = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_STRUCT_2DARRAY(itlb, CPUOpenRISCTLBContext,
|
|
|
|
ITLB_WAYS, ITLB_SIZE, 0,
|
|
|
|
vmstate_tlb_entry, OpenRISCTLBEntry),
|
|
|
|
VMSTATE_STRUCT_2DARRAY(dtlb, CPUOpenRISCTLBContext,
|
|
|
|
DTLB_WAYS, DTLB_SIZE, 0,
|
|
|
|
vmstate_tlb_entry, OpenRISCTLBEntry),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define VMSTATE_CPU_TLB(_f, _s) \
|
|
|
|
VMSTATE_STRUCT_POINTER(_f, _s, vmstate_cpu_tlb, CPUOpenRISCTLBContext)
|
|
|
|
|
|
|
|
|
2015-02-18 20:45:54 +01:00
|
|
|
static int get_sr(QEMUFile *f, void *opaque, size_t size, VMStateField *field)
|
|
|
|
{
|
|
|
|
CPUOpenRISCState *env = opaque;
|
|
|
|
cpu_set_sr(env, qemu_get_be32(f));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int put_sr(QEMUFile *f, void *opaque, size_t size,
|
|
|
|
VMStateField *field, QJSON *vmdesc)
|
|
|
|
{
|
|
|
|
CPUOpenRISCState *env = opaque;
|
|
|
|
qemu_put_be32(f, cpu_get_sr(env));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateInfo vmstate_sr = {
|
|
|
|
.name = "sr",
|
|
|
|
.get = get_sr,
|
|
|
|
.put = put_sr,
|
|
|
|
};
|
|
|
|
|
2013-02-02 13:59:05 +01:00
|
|
|
static const VMStateDescription vmstate_env = {
|
|
|
|
.name = "env",
|
2017-04-16 12:44:58 +02:00
|
|
|
.version_id = 6,
|
|
|
|
.minimum_version_id = 6,
|
|
|
|
.post_load = env_post_load,
|
2012-07-20 09:50:39 +02:00
|
|
|
.fields = (VMStateField[]) {
|
2017-04-05 23:44:56 +02:00
|
|
|
VMSTATE_UINTTL_2DARRAY(shadow_gpr, CPUOpenRISCState, 16, 32),
|
2015-02-19 07:19:18 +01:00
|
|
|
VMSTATE_UINTTL(pc, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINTTL(ppc, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINTTL(jmp_pc, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINTTL(lock_addr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINTTL(lock_value, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINTTL(epcr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINTTL(eear, CPUOpenRISCState),
|
2015-02-18 20:45:54 +01:00
|
|
|
|
|
|
|
/* Save the architecture value of the SR, not the internally
|
|
|
|
expanded version. Since this architecture value does not
|
|
|
|
exist in memory to be stored, this requires a but of hoop
|
|
|
|
jumping. We want OFFSET=0 so that we effectively pass ENV
|
|
|
|
to the helper functions, and we need to fill in the name by
|
|
|
|
hand since there's no field of that name. */
|
|
|
|
{
|
|
|
|
.name = "sr",
|
|
|
|
.version_id = 0,
|
|
|
|
.size = sizeof(uint32_t),
|
|
|
|
.info = &vmstate_sr,
|
|
|
|
.flags = VMS_SINGLE,
|
|
|
|
.offset = 0
|
|
|
|
},
|
|
|
|
|
2015-02-19 07:19:18 +01:00
|
|
|
VMSTATE_UINT32(vr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(upr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(cpucfgr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(dmmucfgr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(immucfgr, CPUOpenRISCState),
|
2017-04-16 12:44:58 +02:00
|
|
|
VMSTATE_UINT32(evbar, CPUOpenRISCState),
|
2017-04-23 23:07:42 +02:00
|
|
|
VMSTATE_UINT32(pmr, CPUOpenRISCState),
|
2012-07-20 09:50:39 +02:00
|
|
|
VMSTATE_UINT32(esr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(fpcsr, CPUOpenRISCState),
|
2015-02-19 00:05:05 +01:00
|
|
|
VMSTATE_UINT64(mac, CPUOpenRISCState),
|
2017-04-16 12:44:58 +02:00
|
|
|
|
|
|
|
VMSTATE_CPU_TLB(tlb, CPUOpenRISCState),
|
|
|
|
|
|
|
|
VMSTATE_TIMER_PTR(timer, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(ttmr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(ttcr, CPUOpenRISCState),
|
|
|
|
|
|
|
|
VMSTATE_UINT32(picmr, CPUOpenRISCState),
|
|
|
|
VMSTATE_UINT32(picsr, CPUOpenRISCState),
|
|
|
|
|
2012-07-20 09:50:39 +02:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-02-02 13:59:05 +01:00
|
|
|
const VMStateDescription vmstate_openrisc_cpu = {
|
|
|
|
.name = "cpu",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_CPU(),
|
|
|
|
VMSTATE_STRUCT(env, OpenRISCCPU, 1, vmstate_env, CPUOpenRISCState),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|