blob: 4d62031c36377f0418d3fa733bf8491667f87a82 [file] [log] [blame]
Andreas Färber0f71a702012-04-15 23:29:19 +02001/*
2 * QEMU MIPS CPU
3 *
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see
18 * <http://www.gnu.org/licenses/lgpl-2.1.html>
19 */
20
21#include "cpu.h"
22#include "qemu-common.h"
23
24
25/* CPUClass::reset() */
26static void mips_cpu_reset(CPUState *s)
27{
28 MIPSCPU *cpu = MIPS_CPU(s);
29 MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(cpu);
30 CPUMIPSState *env = &cpu->env;
31
Andreas Färber55e5c282012-12-17 06:18:02 +010032 if (qemu_loglevel_mask(CPU_LOG_RESET)) {
33 qemu_log("CPU Reset (CPU %d)\n", s->cpu_index);
34 log_cpu_state(env, 0);
35 }
36
Andreas Färber0f71a702012-04-15 23:29:19 +020037 mcc->parent_reset(s);
38
Andreas Färber55e5c282012-12-17 06:18:02 +010039 memset(env, 0, offsetof(CPUMIPSState, breakpoints));
40 tlb_flush(env, 1);
41
Andreas Färber0f71a702012-04-15 23:29:19 +020042 cpu_state_reset(env);
43}
44
Andreas Färberc1caf1d2013-01-16 03:48:37 +010045static void mips_cpu_realizefn(DeviceState *dev, Error **errp)
46{
47 MIPSCPU *cpu = MIPS_CPU(dev);
48 MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(dev);
49
50 cpu_reset(CPU(cpu));
51 qemu_init_vcpu(&cpu->env);
52
53 mcc->parent_realize(dev, errp);
54}
55
Andreas Färber5b0c40f2012-04-16 02:37:56 +020056static void mips_cpu_initfn(Object *obj)
57{
Andreas Färberc05efcb2013-01-17 12:13:41 +010058 CPUState *cs = CPU(obj);
Andreas Färber5b0c40f2012-04-16 02:37:56 +020059 MIPSCPU *cpu = MIPS_CPU(obj);
60 CPUMIPSState *env = &cpu->env;
61
Andreas Färberc05efcb2013-01-17 12:13:41 +010062 cs->env_ptr = env;
Andreas Färber5b0c40f2012-04-16 02:37:56 +020063 cpu_exec_init(env);
Andreas Färber78ce64f2013-01-20 01:22:25 +010064
65 if (tcg_enabled()) {
66 mips_tcg_init();
67 }
Andreas Färber5b0c40f2012-04-16 02:37:56 +020068}
69
Andreas Färber0f71a702012-04-15 23:29:19 +020070static void mips_cpu_class_init(ObjectClass *c, void *data)
71{
72 MIPSCPUClass *mcc = MIPS_CPU_CLASS(c);
73 CPUClass *cc = CPU_CLASS(c);
Andreas Färberc1caf1d2013-01-16 03:48:37 +010074 DeviceClass *dc = DEVICE_CLASS(c);
75
76 mcc->parent_realize = dc->realize;
77 dc->realize = mips_cpu_realizefn;
Andreas Färber0f71a702012-04-15 23:29:19 +020078
79 mcc->parent_reset = cc->reset;
80 cc->reset = mips_cpu_reset;
81}
82
83static const TypeInfo mips_cpu_type_info = {
84 .name = TYPE_MIPS_CPU,
85 .parent = TYPE_CPU,
86 .instance_size = sizeof(MIPSCPU),
Andreas Färber5b0c40f2012-04-16 02:37:56 +020087 .instance_init = mips_cpu_initfn,
Andreas Färber0f71a702012-04-15 23:29:19 +020088 .abstract = false,
89 .class_size = sizeof(MIPSCPUClass),
90 .class_init = mips_cpu_class_init,
91};
92
93static void mips_cpu_register_types(void)
94{
95 type_register_static(&mips_cpu_type_info);
96}
97
98type_init(mips_cpu_register_types)