4 * Copyright (c) 2012 SUSE LINUX Products GmbH
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.
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.
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>
20 #ifndef QEMU_PPC_CPU_QOM_H
21 #define QEMU_PPC_CPU_QOM_H
23 #include "hw/core/cpu.h"
24 #include "qom/object.h"
27 #define TYPE_POWERPC_CPU "powerpc64-cpu"
29 #define TYPE_POWERPC_CPU "powerpc-cpu"
32 OBJECT_DECLARE_CPU_TYPE(PowerPCCPU
, PowerPCCPUClass
, POWERPC_CPU
)
34 #define POWERPC_CPU_TYPE_SUFFIX "-" TYPE_POWERPC_CPU
35 #define POWERPC_CPU_TYPE_NAME(model) model POWERPC_CPU_TYPE_SUFFIX
36 #define CPU_RESOLVING_TYPE TYPE_POWERPC_CPU
38 #define TYPE_HOST_POWERPC_CPU POWERPC_CPU_TYPE_NAME("host")
40 ObjectClass
*ppc_cpu_class_by_name(const char *name
);
42 typedef struct CPUArchState CPUPPCState
;
43 typedef struct ppc_tb_t ppc_tb_t
;
44 typedef struct ppc_dcr_t ppc_dcr_t
;
46 /*****************************************************************************/
48 typedef enum powerpc_mmu_t powerpc_mmu_t
;
50 POWERPC_MMU_UNKNOWN
= 0x00000000,
51 /* Standard 32 bits PowerPC MMU */
52 POWERPC_MMU_32B
= 0x00000001,
53 /* PowerPC 6xx MMU with software TLB */
54 POWERPC_MMU_SOFT_6xx
= 0x00000002,
56 * PowerPC 74xx MMU with software TLB (this has been
57 * disabled, see git history for more information.
58 * keywords: tlbld tlbli TLBMISS PTEHI PTELO)
60 POWERPC_MMU_SOFT_74xx
= 0x00000003,
61 /* PowerPC 4xx MMU with software TLB */
62 POWERPC_MMU_SOFT_4xx
= 0x00000004,
63 /* PowerPC MMU in real mode only */
64 POWERPC_MMU_REAL
= 0x00000006,
65 /* Freescale MPC8xx MMU model */
66 POWERPC_MMU_MPC8xx
= 0x00000007,
68 POWERPC_MMU_BOOKE
= 0x00000008,
69 /* BookE 2.06 MMU model */
70 POWERPC_MMU_BOOKE206
= 0x00000009,
71 #define POWERPC_MMU_64 0x00010000
72 /* 64 bits PowerPC MMU */
73 POWERPC_MMU_64B
= POWERPC_MMU_64
| 0x00000001,
74 /* Architecture 2.03 and later (has LPCR) */
75 POWERPC_MMU_2_03
= POWERPC_MMU_64
| 0x00000002,
76 /* Architecture 2.06 variant */
77 POWERPC_MMU_2_06
= POWERPC_MMU_64
| 0x00000003,
78 /* Architecture 2.07 variant */
79 POWERPC_MMU_2_07
= POWERPC_MMU_64
| 0x00000004,
80 /* Architecture 3.00 variant */
81 POWERPC_MMU_3_00
= POWERPC_MMU_64
| 0x00000005,
84 static inline bool mmu_is_64bit(powerpc_mmu_t mmu_model
)
86 return mmu_model
& POWERPC_MMU_64
;
89 /*****************************************************************************/
91 typedef enum powerpc_excp_t powerpc_excp_t
;
93 POWERPC_EXCP_UNKNOWN
= 0,
94 /* Standard PowerPC exception model */
96 /* PowerPC 40x exception model */
98 /* PowerPC 603/604/G2 exception model */
100 /* PowerPC 7xx exception model */
102 /* PowerPC 74xx exception model */
104 /* BookE exception model */
106 /* PowerPC 970 exception model */
108 /* POWER7 exception model */
110 /* POWER8 exception model */
112 /* POWER9 exception model */
114 /* POWER10 exception model */
115 POWERPC_EXCP_POWER10
,
118 /*****************************************************************************/
119 /* PM instructions */
128 /*****************************************************************************/
129 /* Input pins model */
130 typedef enum powerpc_input_t powerpc_input_t
;
131 enum powerpc_input_t
{
132 PPC_FLAGS_INPUT_UNKNOWN
= 0,
133 /* PowerPC 6xx bus */
136 PPC_FLAGS_INPUT_BookE
,
137 /* PowerPC 405 bus */
139 /* PowerPC 970 bus */
141 /* PowerPC POWER7 bus */
142 PPC_FLAGS_INPUT_POWER7
,
143 /* PowerPC POWER9 bus */
144 PPC_FLAGS_INPUT_POWER9
,
145 /* Freescale RCPU bus */
146 PPC_FLAGS_INPUT_RCPU
,
149 typedef struct PPCHash64Options PPCHash64Options
;
153 * @parent_realize: The parent class' realize handler.
154 * @parent_phases: The parent class' reset phase handlers.
156 * A PowerPC CPU model.
158 struct PowerPCCPUClass
{
160 CPUClass parent_class
;
163 DeviceRealize parent_realize
;
164 DeviceUnrealize parent_unrealize
;
165 ResettablePhases parent_phases
;
166 void (*parent_parse_features
)(const char *type
, char *str
, Error
**errp
);
170 * If @best is false, match if pcc is in the family of pvr
171 * Else match only if pcc is the best match for pvr in this family.
173 bool (*pvr_match
)(struct PowerPCCPUClass
*pcc
, uint32_t pvr
, bool best
);
174 uint64_t pcr_mask
; /* Available bits in PCR register */
175 uint64_t pcr_supported
; /* Bits for supported PowerISA versions */
177 uint64_t insns_flags
;
178 uint64_t insns_flags2
;
180 uint64_t lpcr_mask
; /* Available bits in the LPCR */
181 uint64_t lpcr_pm
; /* Power-saving mode Exit Cause Enable bits */
182 powerpc_mmu_t mmu_model
;
183 powerpc_excp_t excp_model
;
184 powerpc_input_t bus_model
;
187 uint32_t l1_dcache_size
, l1_icache_size
;
188 #ifndef CONFIG_USER_ONLY
189 unsigned int gdb_num_sprs
;
190 const char *gdb_spr_xml
;
192 const PPCHash64Options
*hash64_opts
;
193 struct ppc_radix_page_info
*radix_page_info
;
194 uint32_t lrg_decr_bits
;
196 void (*init_proc
)(CPUPPCState
*env
);
197 int (*check_pow
)(CPUPPCState
*env
);
200 #ifndef CONFIG_USER_ONLY
201 typedef struct PPCTimebase
{
202 uint64_t guest_timebase
;
203 int64_t time_of_the_day_ns
;
204 bool runstate_paused
;
207 extern const VMStateDescription vmstate_ppc_timebase
;
209 #define VMSTATE_PPC_TIMEBASE_V(_field, _state, _version) { \
210 .name = (stringify(_field)), \
211 .version_id = (_version), \
212 .size = sizeof(PPCTimebase), \
213 .vmsd = &vmstate_ppc_timebase, \
214 .flags = VMS_STRUCT, \
215 .offset = vmstate_offset_value(_state, _field, PPCTimebase), \
218 void cpu_ppc_clock_vm_state_change(void *opaque
, bool running
,