hw/timer/sse-timer: Model the SSE Subsystem System Timer
[qemu/ar7.git] / target / unicore32 / cpu-qom.h
blob43621e7479206d3560a346a5249320f8b4784aa3
1 /*
2 * QEMU UniCore32 CPU
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation, or (at your option) any
9 * later version. See the COPYING file in the top-level directory.
11 #ifndef QEMU_UC32_CPU_QOM_H
12 #define QEMU_UC32_CPU_QOM_H
14 #include "hw/core/cpu.h"
15 #include "qom/object.h"
17 #define TYPE_UNICORE32_CPU "unicore32-cpu"
19 OBJECT_DECLARE_TYPE(UniCore32CPU, UniCore32CPUClass,
20 UNICORE32_CPU)
22 /**
23 * UniCore32CPUClass:
24 * @parent_realize: The parent class' realize handler.
26 * A UniCore32 CPU model.
28 struct UniCore32CPUClass {
29 /*< private >*/
30 CPUClass parent_class;
31 /*< public >*/
33 DeviceRealize parent_realize;
37 #endif