hw/riscv: microchip_pfsoc: Connect the IOSCB module
[qemu/ar7.git] / include / hw / ppc / spapr_cpu_core.h
blobdab3dfc76c0ae0016632be234e580fb83bcbe111
1 /*
2 * sPAPR CPU core device.
4 * Copyright (C) 2016 Bharata B Rao <bharata@linux.vnet.ibm.com>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
9 #ifndef HW_SPAPR_CPU_CORE_H
10 #define HW_SPAPR_CPU_CORE_H
12 #include "hw/cpu/core.h"
13 #include "hw/qdev-core.h"
14 #include "target/ppc/cpu-qom.h"
15 #include "target/ppc/cpu.h"
16 #include "qom/object.h"
18 #define TYPE_SPAPR_CPU_CORE "spapr-cpu-core"
19 OBJECT_DECLARE_TYPE(SpaprCpuCore, SpaprCpuCoreClass,
20 SPAPR_CPU_CORE)
22 #define SPAPR_CPU_CORE_TYPE_NAME(model) model "-" TYPE_SPAPR_CPU_CORE
24 struct SpaprCpuCore {
25 /*< private >*/
26 CPUCore parent_obj;
28 /*< public >*/
29 PowerPCCPU **threads;
30 int node_id;
31 bool pre_3_0_migration; /* older machine don't know about SpaprCpuState */
34 struct SpaprCpuCoreClass {
35 DeviceClass parent_class;
36 const char *cpu_type;
39 const char *spapr_get_cpu_core_type(const char *cpu_type);
40 void spapr_cpu_set_entry_state(PowerPCCPU *cpu, target_ulong nip,
41 target_ulong r1, target_ulong r3,
42 target_ulong r4);
44 typedef struct SpaprCpuState {
45 uint64_t vpa_addr;
46 uint64_t slb_shadow_addr, slb_shadow_size;
47 uint64_t dtl_addr, dtl_size;
48 bool prod; /* not migrated, only used to improve dispatch latencies */
49 struct ICPState *icp;
50 struct XiveTCTX *tctx;
51 } SpaprCpuState;
53 static inline SpaprCpuState *spapr_cpu_state(PowerPCCPU *cpu)
55 return (SpaprCpuState *)cpu->machine_data;
58 #endif