target-ppc: Add "compat" CPU option
[qemu.git] / target-ppc / cpu-qom.h
1 /*
2  * QEMU PowerPC CPU
3  *
4  * Copyright (c) 2012 SUSE LINUX Products GmbH
5  *
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.
10  *
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.
15  *
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>
19  */
20 #ifndef QEMU_PPC_CPU_QOM_H
21 #define QEMU_PPC_CPU_QOM_H
22
23 #include "qom/cpu.h"
24 #include "cpu.h"
25
26 #ifdef TARGET_PPC64
27 #define TYPE_POWERPC_CPU "powerpc64-cpu"
28 #elif defined(TARGET_PPCEMB)
29 #define TYPE_POWERPC_CPU "embedded-powerpc-cpu"
30 #else
31 #define TYPE_POWERPC_CPU "powerpc-cpu"
32 #endif
33
34 #define POWERPC_CPU_CLASS(klass) \
35     OBJECT_CLASS_CHECK(PowerPCCPUClass, (klass), TYPE_POWERPC_CPU)
36 #define POWERPC_CPU(obj) \
37     OBJECT_CHECK(PowerPCCPU, (obj), TYPE_POWERPC_CPU)
38 #define POWERPC_CPU_GET_CLASS(obj) \
39     OBJECT_GET_CLASS(PowerPCCPUClass, (obj), TYPE_POWERPC_CPU)
40
41 typedef struct PowerPCCPU PowerPCCPU;
42
43 /**
44  * PowerPCCPUClass:
45  * @parent_realize: The parent class' realize handler.
46  * @parent_reset: The parent class' reset handler.
47  *
48  * A PowerPC CPU model.
49  */
50 typedef struct PowerPCCPUClass {
51     /*< private >*/
52     CPUClass parent_class;
53     /*< public >*/
54
55     DeviceRealize parent_realize;
56     void (*parent_reset)(CPUState *cpu);
57
58     uint32_t pvr;
59     uint32_t pvr_mask;
60     uint32_t svr;
61     uint64_t insns_flags;
62     uint64_t insns_flags2;
63     uint64_t msr_mask;
64     powerpc_mmu_t   mmu_model;
65     powerpc_excp_t  excp_model;
66     powerpc_input_t bus_model;
67     uint32_t flags;
68     int bfd_mach;
69     uint32_t l1_dcache_size, l1_icache_size;
70 #if defined(TARGET_PPC64)
71     const struct ppc_segment_page_sizes *sps;
72 #endif
73     void (*init_proc)(CPUPPCState *env);
74     int  (*check_pow)(CPUPPCState *env);
75 #if defined(CONFIG_SOFTMMU)
76     int (*handle_mmu_fault)(PowerPCCPU *cpu, target_ulong eaddr, int rwx,
77                             int mmu_idx);
78 #endif
79     bool (*interrupts_big_endian)(PowerPCCPU *cpu);
80 } PowerPCCPUClass;
81
82 /**
83  * PowerPCCPU:
84  * @env: #CPUPPCState
85  * @cpu_dt_id: CPU index used in the device tree. KVM uses this index too
86  * @max_compat: Maximal supported logical PVR from the command line
87  *
88  * A PowerPC CPU.
89  */
90 struct PowerPCCPU {
91     /*< private >*/
92     CPUState parent_obj;
93     /*< public >*/
94
95     CPUPPCState env;
96     int cpu_dt_id;
97     uint32_t max_compat;
98 };
99
100 static inline PowerPCCPU *ppc_env_get_cpu(CPUPPCState *env)
101 {
102     return container_of(env, PowerPCCPU, env);
103 }
104
105 #define ENV_GET_CPU(e) CPU(ppc_env_get_cpu(e))
106
107 #define ENV_OFFSET offsetof(PowerPCCPU, env)
108
109 PowerPCCPUClass *ppc_cpu_class_by_pvr(uint32_t pvr);
110 PowerPCCPUClass *ppc_cpu_class_by_pvr_mask(uint32_t pvr);
111
112 void ppc_cpu_do_interrupt(CPUState *cpu);
113 void ppc_cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
114                         int flags);
115 void ppc_cpu_dump_statistics(CPUState *cpu, FILE *f,
116                              fprintf_function cpu_fprintf, int flags);
117 hwaddr ppc_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
118 int ppc_cpu_gdb_read_register(CPUState *cpu, uint8_t *buf, int reg);
119 int ppc_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg);
120 int ppc64_cpu_write_elf64_qemunote(WriteCoreDumpFunction f,
121                                    CPUState *cpu, void *opaque);
122 int ppc64_cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cs,
123                                int cpuid, void *opaque);
124 #ifndef CONFIG_USER_ONLY
125 extern const struct VMStateDescription vmstate_ppc_cpu;
126
127 typedef struct PPCTimebase {
128     uint64_t guest_timebase;
129     int64_t time_of_the_day_ns;
130 } PPCTimebase;
131
132 extern const struct VMStateDescription vmstate_ppc_timebase;
133
134 #define VMSTATE_PPC_TIMEBASE_V(_field, _state, _version) {            \
135     .name       = (stringify(_field)),                                \
136     .version_id = (_version),                                         \
137     .size       = sizeof(PPCTimebase),                                \
138     .vmsd       = &vmstate_ppc_timebase,                              \
139     .flags      = VMS_STRUCT,                                         \
140     .offset     = vmstate_offset_value(_state, _field, PPCTimebase),  \
141 }
142 #endif
143
144 #endif
This page took 0.02797 seconds and 4 git commands to generate.