4 * Copyright (c) 2012 SUSE LINUX Products GmbH
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.
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.
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>
22 #include "qemu-common.h"
25 /* CPUClass::reset() */
26 static void mips_cpu_reset(CPUState
*s
)
28 MIPSCPU
*cpu
= MIPS_CPU(s
);
29 MIPSCPUClass
*mcc
= MIPS_CPU_GET_CLASS(cpu
);
30 CPUMIPSState
*env
= &cpu
->env
;
32 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
33 qemu_log("CPU Reset (CPU %d)\n", s
->cpu_index
);
34 log_cpu_state(env
, 0);
39 memset(env
, 0, offsetof(CPUMIPSState
, breakpoints
));
45 static void mips_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
47 MIPSCPU
*cpu
= MIPS_CPU(dev
);
48 MIPSCPUClass
*mcc
= MIPS_CPU_GET_CLASS(dev
);
52 mcc
->parent_realize(dev
, errp
);
55 static void mips_cpu_initfn(Object
*obj
)
57 CPUState
*cs
= CPU(obj
);
58 MIPSCPU
*cpu
= MIPS_CPU(obj
);
59 CPUMIPSState
*env
= &cpu
->env
;
69 static void mips_cpu_class_init(ObjectClass
*c
, void *data
)
71 MIPSCPUClass
*mcc
= MIPS_CPU_CLASS(c
);
72 CPUClass
*cc
= CPU_CLASS(c
);
73 DeviceClass
*dc
= DEVICE_CLASS(c
);
75 mcc
->parent_realize
= dc
->realize
;
76 dc
->realize
= mips_cpu_realizefn
;
78 mcc
->parent_reset
= cc
->reset
;
79 cc
->reset
= mips_cpu_reset
;
81 cc
->do_interrupt
= mips_cpu_do_interrupt
;
82 cc
->dump_state
= mips_cpu_dump_state
;
83 cpu_class_set_do_unassigned_access(cc
, mips_cpu_unassigned_access
);
86 static const TypeInfo mips_cpu_type_info
= {
87 .name
= TYPE_MIPS_CPU
,
89 .instance_size
= sizeof(MIPSCPU
),
90 .instance_init
= mips_cpu_initfn
,
92 .class_size
= sizeof(MIPSCPUClass
),
93 .class_init
= mips_cpu_class_init
,
96 static void mips_cpu_register_types(void)
98 type_register_static(&mips_cpu_type_info
);
101 type_init(mips_cpu_register_types
)