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/>.
19 #include "qemu/osdep.h"
20 #include "sysemu/sysemu.h"
21 #include "qapi/error.h"
23 #include "target/ppc/cpu.h"
24 #include "hw/ppc/ppc.h"
25 #include "hw/ppc/pnv.h"
26 #include "hw/ppc/pnv_core.h"
27 #include "hw/ppc/pnv_xscom.h"
29 static void powernv_cpu_reset(void *opaque
)
31 PowerPCCPU
*cpu
= opaque
;
32 CPUState
*cs
= CPU(cpu
);
33 CPUPPCState
*env
= &cpu
->env
;
38 * the skiboot firmware elects a primary thread to initialize the
39 * system and it can be any.
41 env
->gpr
[3] = PNV_FDT_ADDR
;
43 env
->msr
|= MSR_HVB
; /* Hypervisor mode */
46 static void powernv_cpu_init(PowerPCCPU
*cpu
, Error
**errp
)
48 CPUPPCState
*env
= &cpu
->env
;
50 int thread_index
= 0; /* TODO: TCG supports only one thread */
51 ppc_spr_t
*pir
= &env
->spr_cb
[SPR_PIR
];
53 core_pir
= object_property_get_int(OBJECT(cpu
), "core-pir", &error_abort
);
56 * The PIR of a thread is the core PIR + the thread index. We will
57 * need to find a way to get the thread index when TCG supports
58 * more than 1. We could use the object name ?
60 pir
->default_value
= core_pir
+ thread_index
;
62 /* Set time-base frequency to 512 MHz */
63 cpu_ppc_tb_init(env
, PNV_TIMEBASE_FREQ
);
65 qemu_register_reset(powernv_cpu_reset
, cpu
);
69 * These values are read by the PowerNV HW monitors under Linux
71 #define PNV_XSCOM_EX_DTS_RESULT0 0x50000
72 #define PNV_XSCOM_EX_DTS_RESULT1 0x50001
74 static uint64_t pnv_core_xscom_read(void *opaque
, hwaddr addr
,
77 uint32_t offset
= addr
>> 3;
80 /* The result should be 38 C */
82 case PNV_XSCOM_EX_DTS_RESULT0
:
83 val
= 0x26f024f023f0000ull
;
85 case PNV_XSCOM_EX_DTS_RESULT1
:
86 val
= 0x24f000000000000ull
;
89 qemu_log_mask(LOG_UNIMP
, "Warning: reading reg=0x%" HWADDR_PRIx
,
96 static void pnv_core_xscom_write(void *opaque
, hwaddr addr
, uint64_t val
,
99 qemu_log_mask(LOG_UNIMP
, "Warning: writing to reg=0x%" HWADDR_PRIx
,
103 static const MemoryRegionOps pnv_core_xscom_ops
= {
104 .read
= pnv_core_xscom_read
,
105 .write
= pnv_core_xscom_write
,
106 .valid
.min_access_size
= 8,
107 .valid
.max_access_size
= 8,
108 .impl
.min_access_size
= 8,
109 .impl
.max_access_size
= 8,
110 .endianness
= DEVICE_BIG_ENDIAN
,
113 static void pnv_core_realize_child(Object
*child
, Error
**errp
)
115 Error
*local_err
= NULL
;
116 CPUState
*cs
= CPU(child
);
117 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
119 object_property_set_bool(child
, true, "realized", &local_err
);
121 error_propagate(errp
, local_err
);
125 powernv_cpu_init(cpu
, &local_err
);
127 error_propagate(errp
, local_err
);
132 static void pnv_core_realize(DeviceState
*dev
, Error
**errp
)
134 PnvCore
*pc
= PNV_CORE(OBJECT(dev
));
135 CPUCore
*cc
= CPU_CORE(OBJECT(dev
));
136 PnvCoreClass
*pcc
= PNV_CORE_GET_CLASS(OBJECT(dev
));
137 const char *typename
= object_class_get_name(pcc
->cpu_oc
);
138 size_t size
= object_type_get_instance_size(typename
);
139 Error
*local_err
= NULL
;
144 pc
->threads
= g_malloc0(size
* cc
->nr_threads
);
145 for (i
= 0; i
< cc
->nr_threads
; i
++) {
146 obj
= pc
->threads
+ i
* size
;
148 object_initialize(obj
, size
, typename
);
150 snprintf(name
, sizeof(name
), "thread[%d]", i
);
151 object_property_add_child(OBJECT(pc
), name
, obj
, &local_err
);
152 object_property_add_alias(obj
, "core-pir", OBJECT(pc
),
160 for (j
= 0; j
< cc
->nr_threads
; j
++) {
161 obj
= pc
->threads
+ j
* size
;
163 pnv_core_realize_child(obj
, &local_err
);
169 snprintf(name
, sizeof(name
), "xscom-core.%d", cc
->core_id
);
170 pnv_xscom_region_init(&pc
->xscom_regs
, OBJECT(dev
), &pnv_core_xscom_ops
,
171 pc
, name
, PNV_XSCOM_EX_CORE_SIZE
);
176 obj
= pc
->threads
+ i
* size
;
177 object_unparent(obj
);
180 error_propagate(errp
, local_err
);
183 static Property pnv_core_properties
[] = {
184 DEFINE_PROP_UINT32("pir", PnvCore
, pir
, 0),
185 DEFINE_PROP_END_OF_LIST(),
188 static void pnv_core_class_init(ObjectClass
*oc
, void *data
)
190 DeviceClass
*dc
= DEVICE_CLASS(oc
);
191 PnvCoreClass
*pcc
= PNV_CORE_CLASS(oc
);
193 dc
->realize
= pnv_core_realize
;
194 dc
->props
= pnv_core_properties
;
195 pcc
->cpu_oc
= cpu_class_by_name(TYPE_POWERPC_CPU
, data
);
198 static const TypeInfo pnv_core_info
= {
199 .name
= TYPE_PNV_CORE
,
200 .parent
= TYPE_CPU_CORE
,
201 .instance_size
= sizeof(PnvCore
),
202 .class_size
= sizeof(PnvCoreClass
),
206 static const char *pnv_core_models
[] = {
207 "POWER8E", "POWER8", "POWER8NVL", "POWER9"
210 static void pnv_core_register_types(void)
214 type_register_static(&pnv_core_info
);
215 for (i
= 0; i
< ARRAY_SIZE(pnv_core_models
); ++i
) {
217 .parent
= TYPE_PNV_CORE
,
218 .instance_size
= sizeof(PnvCore
),
219 .class_init
= pnv_core_class_init
,
220 .class_data
= (void *) pnv_core_models
[i
],
222 ti
.name
= pnv_core_typename(pnv_core_models
[i
]);
224 g_free((void *)ti
.name
);
228 type_init(pnv_core_register_types
)
230 char *pnv_core_typename(const char *model
)
232 return g_strdup_printf(TYPE_PNV_CORE
"-%s", model
);