4 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see
18 * <http://www.gnu.org/licenses/gpl-2.0.html>
20 #ifndef QEMU_ARM_CPU_QOM_H
21 #define QEMU_ARM_CPU_QOM_H
26 #define TYPE_ARM_CPU "arm-cpu"
28 #define ARM_CPU_CLASS(klass) \
29 OBJECT_CLASS_CHECK(ARMCPUClass, (klass), TYPE_ARM_CPU)
30 #define ARM_CPU(obj) \
31 OBJECT_CHECK(ARMCPU, (obj), TYPE_ARM_CPU)
32 #define ARM_CPU_GET_CLASS(obj) \
33 OBJECT_GET_CLASS(ARMCPUClass, (obj), TYPE_ARM_CPU)
37 * @parent_reset: The parent class' reset handler.
41 typedef struct ARMCPUClass {
43 CPUClass parent_class;
46 void (*parent_reset)(CPUState *cpu);
55 typedef struct ARMCPU {
63 static inline ARMCPU *arm_env_get_cpu(CPUARMState *env)
65 return ARM_CPU(container_of(env, ARMCPU, env));
68 #define ENV_GET_CPU(e) CPU(arm_env_get_cpu(e))