xref: /openbmc/qemu/target/sh4/cpu-qom.h (revision 974e58d2)
1fcf5ef2aSThomas Huth /*
2fcf5ef2aSThomas Huth  * QEMU SuperH CPU
3fcf5ef2aSThomas Huth  *
4fcf5ef2aSThomas Huth  * Copyright (c) 2012 SUSE LINUX Products GmbH
5fcf5ef2aSThomas Huth  *
6fcf5ef2aSThomas Huth  * This library is free software; you can redistribute it and/or
7fcf5ef2aSThomas Huth  * modify it under the terms of the GNU Lesser General Public
8fcf5ef2aSThomas Huth  * License as published by the Free Software Foundation; either
9fcf5ef2aSThomas Huth  * version 2.1 of the License, or (at your option) any later version.
10fcf5ef2aSThomas Huth  *
11fcf5ef2aSThomas Huth  * This library is distributed in the hope that it will be useful,
12fcf5ef2aSThomas Huth  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13fcf5ef2aSThomas Huth  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14fcf5ef2aSThomas Huth  * Lesser General Public License for more details.
15fcf5ef2aSThomas Huth  *
16fcf5ef2aSThomas Huth  * You should have received a copy of the GNU Lesser General Public
17fcf5ef2aSThomas Huth  * License along with this library; if not, see
18fcf5ef2aSThomas Huth  * <http://www.gnu.org/licenses/lgpl-2.1.html>
19fcf5ef2aSThomas Huth  */
20fcf5ef2aSThomas Huth #ifndef QEMU_SUPERH_CPU_QOM_H
21fcf5ef2aSThomas Huth #define QEMU_SUPERH_CPU_QOM_H
22fcf5ef2aSThomas Huth 
23fcf5ef2aSThomas Huth #include "qom/cpu.h"
24fcf5ef2aSThomas Huth 
25fcf5ef2aSThomas Huth #define TYPE_SUPERH_CPU "superh-cpu"
26fcf5ef2aSThomas Huth 
27*974e58d2SIgor Mammedov #define TYPE_SH7750R_CPU SUPERH_CPU_TYPE_NAME("sh7750r")
28*974e58d2SIgor Mammedov #define TYPE_SH7751R_CPU SUPERH_CPU_TYPE_NAME("sh7751r")
29*974e58d2SIgor Mammedov #define TYPE_SH7785_CPU  SUPERH_CPU_TYPE_NAME("sh7785")
30fcf5ef2aSThomas Huth 
31fcf5ef2aSThomas Huth #define SUPERH_CPU_CLASS(klass) \
32fcf5ef2aSThomas Huth     OBJECT_CLASS_CHECK(SuperHCPUClass, (klass), TYPE_SUPERH_CPU)
33fcf5ef2aSThomas Huth #define SUPERH_CPU(obj) \
34fcf5ef2aSThomas Huth     OBJECT_CHECK(SuperHCPU, (obj), TYPE_SUPERH_CPU)
35fcf5ef2aSThomas Huth #define SUPERH_CPU_GET_CLASS(obj) \
36fcf5ef2aSThomas Huth     OBJECT_GET_CLASS(SuperHCPUClass, (obj), TYPE_SUPERH_CPU)
37fcf5ef2aSThomas Huth 
38fcf5ef2aSThomas Huth /**
39fcf5ef2aSThomas Huth  * SuperHCPUClass:
40fcf5ef2aSThomas Huth  * @parent_realize: The parent class' realize handler.
41fcf5ef2aSThomas Huth  * @parent_reset: The parent class' reset handler.
42fcf5ef2aSThomas Huth  * @name: The name.
43fcf5ef2aSThomas Huth  * @pvr: Processor Version Register
44fcf5ef2aSThomas Huth  * @prr: Processor Revision Register
45fcf5ef2aSThomas Huth  * @cvr: Cache Version Register
46fcf5ef2aSThomas Huth  *
47fcf5ef2aSThomas Huth  * A SuperH CPU model.
48fcf5ef2aSThomas Huth  */
49fcf5ef2aSThomas Huth typedef struct SuperHCPUClass {
50fcf5ef2aSThomas Huth     /*< private >*/
51fcf5ef2aSThomas Huth     CPUClass parent_class;
52fcf5ef2aSThomas Huth     /*< public >*/
53fcf5ef2aSThomas Huth 
54fcf5ef2aSThomas Huth     DeviceRealize parent_realize;
55fcf5ef2aSThomas Huth     void (*parent_reset)(CPUState *cpu);
56fcf5ef2aSThomas Huth 
57fcf5ef2aSThomas Huth     const char *name;
58fcf5ef2aSThomas Huth     uint32_t pvr;
59fcf5ef2aSThomas Huth     uint32_t prr;
60fcf5ef2aSThomas Huth     uint32_t cvr;
61fcf5ef2aSThomas Huth } SuperHCPUClass;
62fcf5ef2aSThomas Huth 
63fcf5ef2aSThomas Huth typedef struct SuperHCPU SuperHCPU;
64fcf5ef2aSThomas Huth 
65fcf5ef2aSThomas Huth #endif
66