2 * PowerPC CPU initialization for qemu.
4 * Copyright 2016, David Gibson, Red Hat Inc. <dgibson@redhat.com>
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 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 <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "sysemu/hw_accel.h"
22 #include "sysemu/kvm.h"
24 #include "sysemu/cpus.h"
25 #include "qemu/error-report.h"
26 #include "qapi/error.h"
27 #include "cpu-models.h"
36 static const CompatInfo compat_table
[] = {
38 * Ordered from oldest to newest - the code relies on this
40 { /* POWER6, ISA2.05 */
41 .pvr
= CPU_POWERPC_LOGICAL_2_05
,
42 .pcr
= PCR_COMPAT_3_00
| PCR_COMPAT_2_07
| PCR_COMPAT_2_06
|
43 PCR_COMPAT_2_05
| PCR_TM_DIS
| PCR_VSX_DIS
,
44 .pcr_level
= PCR_COMPAT_2_05
,
47 { /* POWER7, ISA2.06 */
48 .pvr
= CPU_POWERPC_LOGICAL_2_06
,
49 .pcr
= PCR_COMPAT_3_00
| PCR_COMPAT_2_07
| PCR_COMPAT_2_06
| PCR_TM_DIS
,
50 .pcr_level
= PCR_COMPAT_2_06
,
54 .pvr
= CPU_POWERPC_LOGICAL_2_06_PLUS
,
55 .pcr
= PCR_COMPAT_3_00
| PCR_COMPAT_2_07
| PCR_COMPAT_2_06
| PCR_TM_DIS
,
56 .pcr_level
= PCR_COMPAT_2_06
,
59 { /* POWER8, ISA2.07 */
60 .pvr
= CPU_POWERPC_LOGICAL_2_07
,
61 .pcr
= PCR_COMPAT_3_00
| PCR_COMPAT_2_07
,
62 .pcr_level
= PCR_COMPAT_2_07
,
65 { /* POWER9, ISA3.00 */
66 .pvr
= CPU_POWERPC_LOGICAL_3_00
,
67 .pcr
= PCR_COMPAT_3_00
,
68 .pcr_level
= PCR_COMPAT_3_00
,
73 static const CompatInfo
*compat_by_pvr(uint32_t pvr
)
77 for (i
= 0; i
< ARRAY_SIZE(compat_table
); i
++) {
78 if (compat_table
[i
].pvr
== pvr
) {
79 return &compat_table
[i
];
85 bool ppc_check_compat(PowerPCCPU
*cpu
, uint32_t compat_pvr
,
86 uint32_t min_compat_pvr
, uint32_t max_compat_pvr
)
88 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cpu
);
89 const CompatInfo
*compat
= compat_by_pvr(compat_pvr
);
90 const CompatInfo
*min
= compat_by_pvr(min_compat_pvr
);
91 const CompatInfo
*max
= compat_by_pvr(max_compat_pvr
);
93 #if !defined(CONFIG_USER_ONLY)
96 g_assert(!min_compat_pvr
|| min
);
97 g_assert(!max_compat_pvr
|| max
);
100 /* Not a recognized logical PVR */
103 if ((min
&& (compat
< min
)) || (max
&& (compat
> max
))) {
104 /* Outside specified range */
107 if (!(pcc
->pcr_supported
& compat
->pcr_level
)) {
108 /* Not supported by this CPU */
114 void ppc_set_compat(PowerPCCPU
*cpu
, uint32_t compat_pvr
, Error
**errp
)
116 const CompatInfo
*compat
= compat_by_pvr(compat_pvr
);
117 CPUPPCState
*env
= &cpu
->env
;
118 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cpu
);
123 } else if (!compat
) {
124 error_setg(errp
, "Unknown compatibility PVR 0x%08"PRIx32
, compat_pvr
);
126 } else if (!ppc_check_compat(cpu
, compat_pvr
, 0, 0)) {
127 error_setg(errp
, "Compatibility PVR 0x%08"PRIx32
" not valid for CPU",
134 cpu_synchronize_state(CPU(cpu
));
136 cpu
->compat_pvr
= compat_pvr
;
137 env
->spr
[SPR_PCR
] = pcr
& pcc
->pcr_mask
;
140 int ret
= kvmppc_set_compat(cpu
, cpu
->compat_pvr
);
142 error_setg_errno(errp
, -ret
,
143 "Unable to set CPU compatibility mode in KVM");
153 static void do_set_compat(CPUState
*cs
, run_on_cpu_data arg
)
155 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
156 SetCompatState
*s
= arg
.host_ptr
;
158 ppc_set_compat(cpu
, s
->compat_pvr
, &s
->err
);
161 void ppc_set_compat_all(uint32_t compat_pvr
, Error
**errp
)
167 .compat_pvr
= compat_pvr
,
171 run_on_cpu(cs
, do_set_compat
, RUN_ON_CPU_HOST_PTR(&s
));
174 error_propagate(errp
, s
.err
);
180 int ppc_compat_max_threads(PowerPCCPU
*cpu
)
182 const CompatInfo
*compat
= compat_by_pvr(cpu
->compat_pvr
);
183 int n_threads
= CPU(cpu
)->nr_threads
;
185 if (cpu
->compat_pvr
) {
187 n_threads
= MIN(n_threads
, compat
->max_threads
);