target-ppc: Drop cpu_ppc_close()
[qemu/ar7.git] / target-arm / cpu-qom.h
blob42d2a6b63b140a3a307f6c33d9d857073a5b66db
1 /*
2 * QEMU ARM CPU
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
23 #include "qemu/cpu.h"
24 #include "cpu.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)
35 /**
36 * ARMCPUClass:
37 * @parent_reset: The parent class' reset handler.
39 * An ARM CPU model.
41 typedef struct ARMCPUClass {
42 /*< private >*/
43 CPUClass parent_class;
44 /*< public >*/
46 void (*parent_reset)(CPUState *cpu);
47 } ARMCPUClass;
49 /**
50 * ARMCPU:
51 * @env: #CPUARMState
53 * An ARM CPU core.
55 typedef struct ARMCPU {
56 /*< private >*/
57 CPUState parent_obj;
58 /*< public >*/
60 CPUARMState env;
61 } 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))
71 #endif