mirror of
https://github.com/xemu-project/xemu.git
synced 2024-12-26 05:45:08 +00:00
f1020c2c26
Add an abstract CPU core type that could be used by machines that want to define and hotplug CPUs in core granularity. Signed-off-by: Bharata B Rao <bharata@linux.vnet.ibm.com> Signed-off-by: Igor Mammedov <imammedo@redhat.com> [Integer core property] Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Igor Mammedov <imammedo@redhat.com> [dwg: changed property names to 'core-id' and 'nr-threads'] Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
32 lines
623 B
C
32 lines
623 B
C
/*
|
|
* CPU core abstract device
|
|
*
|
|
* Copyright (C) 2016 Bharata B Rao <bharata@linux.vnet.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
#ifndef HW_CPU_CORE_H
|
|
#define HW_CPU_CORE_H
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/qdev.h"
|
|
|
|
#define TYPE_CPU_CORE "cpu-core"
|
|
|
|
#define CPU_CORE(obj) \
|
|
OBJECT_CHECK(CPUCore, (obj), TYPE_CPU_CORE)
|
|
|
|
typedef struct CPUCore {
|
|
/*< private >*/
|
|
DeviceState parent_obj;
|
|
|
|
/*< public >*/
|
|
int core_id;
|
|
int nr_threads;
|
|
} CPUCore;
|
|
|
|
#define CPU_CORE_PROP_CORE_ID "core-id"
|
|
|
|
#endif
|