2 * QEMU PowerPC PowerNV CPU Core model
4 * Copyright (c) 2016, IBM Corporation.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful, but
12 * 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/reset.h"
22 #include "qapi/error.h"
24 #include "qemu/module.h"
25 #include "target/ppc/cpu.h"
26 #include "hw/ppc/ppc.h"
27 #include "hw/ppc/pnv.h"
28 #include "hw/ppc/pnv_core.h"
29 #include "hw/ppc/pnv_xscom.h"
30 #include "hw/ppc/xics.h"
31 #include "hw/qdev-properties.h"
33 static const char *pnv_core_cpu_typename(PnvCore
*pc
)
35 const char *core_type
= object_class_get_name(object_get_class(OBJECT(pc
)));
36 int len
= strlen(core_type
) - strlen(PNV_CORE_TYPE_SUFFIX
);
37 char *s
= g_strdup_printf(POWERPC_CPU_TYPE_NAME("%.*s"), len
, core_type
);
38 const char *cpu_type
= object_class_get_name(object_class_by_name(s
));
43 static void pnv_core_cpu_reset(PnvCore
*pc
, PowerPCCPU
*cpu
)
45 CPUState
*cs
= CPU(cpu
);
46 CPUPPCState
*env
= &cpu
->env
;
47 PnvChipClass
*pcc
= PNV_CHIP_GET_CLASS(pc
->chip
);
52 * the skiboot firmware elects a primary thread to initialize the
53 * system and it can be any.
55 env
->gpr
[3] = PNV_FDT_ADDR
;
57 env
->msr
|= MSR_HVB
; /* Hypervisor mode */
59 env
->spr
[SPR_HRMOR
] = pc
->hrmor
;
61 pcc
->intc_reset(pc
->chip
, cpu
);
65 * These values are read by the PowerNV HW monitors under Linux
67 #define PNV_XSCOM_EX_DTS_RESULT0 0x50000
68 #define PNV_XSCOM_EX_DTS_RESULT1 0x50001
70 static uint64_t pnv_core_power8_xscom_read(void *opaque
, hwaddr addr
,
73 uint32_t offset
= addr
>> 3;
76 /* The result should be 38 C */
78 case PNV_XSCOM_EX_DTS_RESULT0
:
79 val
= 0x26f024f023f0000ull
;
81 case PNV_XSCOM_EX_DTS_RESULT1
:
82 val
= 0x24f000000000000ull
;
85 qemu_log_mask(LOG_UNIMP
, "Warning: reading reg=0x%" HWADDR_PRIx
"\n",
92 static void pnv_core_power8_xscom_write(void *opaque
, hwaddr addr
, uint64_t val
,
95 qemu_log_mask(LOG_UNIMP
, "Warning: writing to reg=0x%" HWADDR_PRIx
"\n",
99 static const MemoryRegionOps pnv_core_power8_xscom_ops
= {
100 .read
= pnv_core_power8_xscom_read
,
101 .write
= pnv_core_power8_xscom_write
,
102 .valid
.min_access_size
= 8,
103 .valid
.max_access_size
= 8,
104 .impl
.min_access_size
= 8,
105 .impl
.max_access_size
= 8,
106 .endianness
= DEVICE_BIG_ENDIAN
,
111 * POWER9 core controls
113 #define PNV9_XSCOM_EC_PPM_SPECIAL_WKUP_HYP 0xf010d
114 #define PNV9_XSCOM_EC_PPM_SPECIAL_WKUP_OTR 0xf010a
116 static uint64_t pnv_core_power9_xscom_read(void *opaque
, hwaddr addr
,
119 uint32_t offset
= addr
>> 3;
122 /* The result should be 38 C */
124 case PNV_XSCOM_EX_DTS_RESULT0
:
125 val
= 0x26f024f023f0000ull
;
127 case PNV_XSCOM_EX_DTS_RESULT1
:
128 val
= 0x24f000000000000ull
;
130 case PNV9_XSCOM_EC_PPM_SPECIAL_WKUP_HYP
:
131 case PNV9_XSCOM_EC_PPM_SPECIAL_WKUP_OTR
:
135 qemu_log_mask(LOG_UNIMP
, "Warning: reading reg=0x%" HWADDR_PRIx
"\n",
142 static void pnv_core_power9_xscom_write(void *opaque
, hwaddr addr
, uint64_t val
,
145 uint32_t offset
= addr
>> 3;
148 case PNV9_XSCOM_EC_PPM_SPECIAL_WKUP_HYP
:
149 case PNV9_XSCOM_EC_PPM_SPECIAL_WKUP_OTR
:
152 qemu_log_mask(LOG_UNIMP
, "Warning: writing to reg=0x%" HWADDR_PRIx
"\n",
157 static const MemoryRegionOps pnv_core_power9_xscom_ops
= {
158 .read
= pnv_core_power9_xscom_read
,
159 .write
= pnv_core_power9_xscom_write
,
160 .valid
.min_access_size
= 8,
161 .valid
.max_access_size
= 8,
162 .impl
.min_access_size
= 8,
163 .impl
.max_access_size
= 8,
164 .endianness
= DEVICE_BIG_ENDIAN
,
167 static void pnv_core_cpu_realize(PnvCore
*pc
, PowerPCCPU
*cpu
, Error
**errp
)
169 CPUPPCState
*env
= &cpu
->env
;
171 int thread_index
= 0; /* TODO: TCG supports only one thread */
172 ppc_spr_t
*pir
= &env
->spr_cb
[SPR_PIR
];
173 Error
*local_err
= NULL
;
174 PnvChipClass
*pcc
= PNV_CHIP_GET_CLASS(pc
->chip
);
176 if (!qdev_realize(DEVICE(cpu
), NULL
, &local_err
)) {
177 error_propagate(errp
, local_err
);
181 pcc
->intc_create(pc
->chip
, cpu
, &local_err
);
183 error_propagate(errp
, local_err
);
187 core_pir
= object_property_get_uint(OBJECT(pc
), "pir", &error_abort
);
190 * The PIR of a thread is the core PIR + the thread index. We will
191 * need to find a way to get the thread index when TCG supports
192 * more than 1. We could use the object name ?
194 pir
->default_value
= core_pir
+ thread_index
;
196 /* Set time-base frequency to 512 MHz */
197 cpu_ppc_tb_init(env
, PNV_TIMEBASE_FREQ
);
200 static void pnv_core_reset(void *dev
)
202 CPUCore
*cc
= CPU_CORE(dev
);
203 PnvCore
*pc
= PNV_CORE(dev
);
206 for (i
= 0; i
< cc
->nr_threads
; i
++) {
207 pnv_core_cpu_reset(pc
, pc
->threads
[i
]);
211 static void pnv_core_realize(DeviceState
*dev
, Error
**errp
)
213 PnvCore
*pc
= PNV_CORE(OBJECT(dev
));
214 PnvCoreClass
*pcc
= PNV_CORE_GET_CLASS(pc
);
215 CPUCore
*cc
= CPU_CORE(OBJECT(dev
));
216 const char *typename
= pnv_core_cpu_typename(pc
);
217 Error
*local_err
= NULL
;
224 pc
->threads
= g_new(PowerPCCPU
*, cc
->nr_threads
);
225 for (i
= 0; i
< cc
->nr_threads
; i
++) {
228 obj
= object_new(typename
);
229 cpu
= POWERPC_CPU(obj
);
231 pc
->threads
[i
] = POWERPC_CPU(obj
);
233 snprintf(name
, sizeof(name
), "thread[%d]", i
);
234 object_property_add_child(OBJECT(pc
), name
, obj
);
236 cpu
->machine_data
= g_new0(PnvCPUState
, 1);
241 for (j
= 0; j
< cc
->nr_threads
; j
++) {
242 pnv_core_cpu_realize(pc
, pc
->threads
[j
], &local_err
);
248 snprintf(name
, sizeof(name
), "xscom-core.%d", cc
->core_id
);
249 /* TODO: check PNV_XSCOM_EX_SIZE for p10 */
250 pnv_xscom_region_init(&pc
->xscom_regs
, OBJECT(dev
), pcc
->xscom_ops
,
251 pc
, name
, PNV_XSCOM_EX_SIZE
);
253 qemu_register_reset(pnv_core_reset
, pc
);
258 obj
= OBJECT(pc
->threads
[i
]);
259 object_unparent(obj
);
262 error_propagate(errp
, local_err
);
265 static void pnv_core_cpu_unrealize(PnvCore
*pc
, PowerPCCPU
*cpu
)
267 PnvCPUState
*pnv_cpu
= pnv_cpu_state(cpu
);
268 PnvChipClass
*pcc
= PNV_CHIP_GET_CLASS(pc
->chip
);
270 pcc
->intc_destroy(pc
->chip
, cpu
);
271 cpu_remove_sync(CPU(cpu
));
272 cpu
->machine_data
= NULL
;
274 object_unparent(OBJECT(cpu
));
277 static void pnv_core_unrealize(DeviceState
*dev
)
279 PnvCore
*pc
= PNV_CORE(dev
);
280 CPUCore
*cc
= CPU_CORE(dev
);
283 qemu_unregister_reset(pnv_core_reset
, pc
);
285 for (i
= 0; i
< cc
->nr_threads
; i
++) {
286 pnv_core_cpu_unrealize(pc
, pc
->threads
[i
]);
291 static Property pnv_core_properties
[] = {
292 DEFINE_PROP_UINT32("pir", PnvCore
, pir
, 0),
293 DEFINE_PROP_UINT64("hrmor", PnvCore
, hrmor
, 0),
294 DEFINE_PROP_LINK("chip", PnvCore
, chip
, TYPE_PNV_CHIP
, PnvChip
*),
295 DEFINE_PROP_END_OF_LIST(),
298 static void pnv_core_power8_class_init(ObjectClass
*oc
, void *data
)
300 PnvCoreClass
*pcc
= PNV_CORE_CLASS(oc
);
302 pcc
->xscom_ops
= &pnv_core_power8_xscom_ops
;
305 static void pnv_core_power9_class_init(ObjectClass
*oc
, void *data
)
307 PnvCoreClass
*pcc
= PNV_CORE_CLASS(oc
);
309 pcc
->xscom_ops
= &pnv_core_power9_xscom_ops
;
312 static void pnv_core_power10_class_init(ObjectClass
*oc
, void *data
)
314 PnvCoreClass
*pcc
= PNV_CORE_CLASS(oc
);
316 /* TODO: Use the P9 XSCOMs for now on P10 */
317 pcc
->xscom_ops
= &pnv_core_power9_xscom_ops
;
320 static void pnv_core_class_init(ObjectClass
*oc
, void *data
)
322 DeviceClass
*dc
= DEVICE_CLASS(oc
);
324 dc
->realize
= pnv_core_realize
;
325 dc
->unrealize
= pnv_core_unrealize
;
326 device_class_set_props(dc
, pnv_core_properties
);
327 dc
->user_creatable
= false;
330 #define DEFINE_PNV_CORE_TYPE(family, cpu_model) \
332 .parent = TYPE_PNV_CORE, \
333 .name = PNV_CORE_TYPE_NAME(cpu_model), \
334 .class_init = pnv_core_##family##_class_init, \
337 static const TypeInfo pnv_core_infos
[] = {
339 .name
= TYPE_PNV_CORE
,
340 .parent
= TYPE_CPU_CORE
,
341 .instance_size
= sizeof(PnvCore
),
342 .class_size
= sizeof(PnvCoreClass
),
343 .class_init
= pnv_core_class_init
,
346 DEFINE_PNV_CORE_TYPE(power8
, "power8e_v2.1"),
347 DEFINE_PNV_CORE_TYPE(power8
, "power8_v2.0"),
348 DEFINE_PNV_CORE_TYPE(power8
, "power8nvl_v1.0"),
349 DEFINE_PNV_CORE_TYPE(power9
, "power9_v2.0"),
350 DEFINE_PNV_CORE_TYPE(power10
, "power10_v1.0"),
353 DEFINE_TYPES(pnv_core_infos
)
359 #define P9X_EX_NCU_SPEC_BAR 0x11010
361 static uint64_t pnv_quad_xscom_read(void *opaque
, hwaddr addr
,
364 uint32_t offset
= addr
>> 3;
368 case P9X_EX_NCU_SPEC_BAR
:
369 case P9X_EX_NCU_SPEC_BAR
+ 0x400: /* Second EX */
373 qemu_log_mask(LOG_UNIMP
, "%s: writing @0x%08x\n", __func__
,
380 static void pnv_quad_xscom_write(void *opaque
, hwaddr addr
, uint64_t val
,
383 uint32_t offset
= addr
>> 3;
386 case P9X_EX_NCU_SPEC_BAR
:
387 case P9X_EX_NCU_SPEC_BAR
+ 0x400: /* Second EX */
390 qemu_log_mask(LOG_UNIMP
, "%s: writing @0x%08x\n", __func__
,
395 static const MemoryRegionOps pnv_quad_xscom_ops
= {
396 .read
= pnv_quad_xscom_read
,
397 .write
= pnv_quad_xscom_write
,
398 .valid
.min_access_size
= 8,
399 .valid
.max_access_size
= 8,
400 .impl
.min_access_size
= 8,
401 .impl
.max_access_size
= 8,
402 .endianness
= DEVICE_BIG_ENDIAN
,
405 static void pnv_quad_realize(DeviceState
*dev
, Error
**errp
)
407 PnvQuad
*eq
= PNV_QUAD(dev
);
410 snprintf(name
, sizeof(name
), "xscom-quad.%d", eq
->id
);
411 pnv_xscom_region_init(&eq
->xscom_regs
, OBJECT(dev
), &pnv_quad_xscom_ops
,
412 eq
, name
, PNV9_XSCOM_EQ_SIZE
);
415 static Property pnv_quad_properties
[] = {
416 DEFINE_PROP_UINT32("id", PnvQuad
, id
, 0),
417 DEFINE_PROP_END_OF_LIST(),
420 static void pnv_quad_class_init(ObjectClass
*oc
, void *data
)
422 DeviceClass
*dc
= DEVICE_CLASS(oc
);
424 dc
->realize
= pnv_quad_realize
;
425 device_class_set_props(dc
, pnv_quad_properties
);
426 dc
->user_creatable
= false;
429 static const TypeInfo pnv_quad_info
= {
430 .name
= TYPE_PNV_QUAD
,
431 .parent
= TYPE_DEVICE
,
432 .instance_size
= sizeof(PnvQuad
),
433 .class_init
= pnv_quad_class_init
,
436 static void pnv_core_register_types(void)
438 type_register_static(&pnv_quad_info
);
441 type_init(pnv_core_register_types
)