From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58329) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ya6D1-0001hI-U3 for qemu-devel@nongnu.org; Mon, 23 Mar 2015 13:32:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ya6Cu-0005O5-5e for qemu-devel@nongnu.org; Mon, 23 Mar 2015 13:32:14 -0400 Received: from cantor2.suse.de ([195.135.220.15]:52959 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ya6Ct-0005Ni-T9 for qemu-devel@nongnu.org; Mon, 23 Mar 2015 13:32:08 -0400 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Mon, 23 Mar 2015 18:32:01 +0100 Message-Id: <1427131923-4670-3-git-send-email-afaerber@suse.de> In-Reply-To: <1427131923-4670-1-git-send-email-afaerber@suse.de> References: <1427131923-4670-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH RFC 2/4] target-i386: Prepare CPU socket/core abstraction List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , "Michael S. Tsirkin" , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Richard Henderson Short of generic recursive device realization, realize cores and threads recursively. Signed-off-by: Andreas F=C3=A4rber --- hw/i386/Makefile.objs | 1 + hw/i386/cpu-core.c | 45 ++++++++++++++++++++++++++++++++++++++= ++++++ hw/i386/cpu-socket.c | 45 ++++++++++++++++++++++++++++++++++++++= ++++++ include/hw/i386/cpu-core.h | 26 +++++++++++++++++++++++++ include/hw/i386/cpu-socket.h | 29 ++++++++++++++++++++++++++++ 5 files changed, 146 insertions(+) create mode 100644 hw/i386/cpu-core.c create mode 100644 hw/i386/cpu-socket.c create mode 100644 include/hw/i386/cpu-core.h create mode 100644 include/hw/i386/cpu-socket.h diff --git a/hw/i386/Makefile.objs b/hw/i386/Makefile.objs index e058a39..9f76424 100644 --- a/hw/i386/Makefile.objs +++ b/hw/i386/Makefile.objs @@ -1,5 +1,6 @@ obj-$(CONFIG_KVM) +=3D kvm/ obj-y +=3D multiboot.o smbios.o +obj-y +=3D cpu-socket.o cpu-core.o obj-y +=3D pc.o pc_piix.o pc_q35.o obj-y +=3D pc_sysfw.o obj-y +=3D intel_iommu.o diff --git a/hw/i386/cpu-core.c b/hw/i386/cpu-core.c new file mode 100644 index 0000000..d579025 --- /dev/null +++ b/hw/i386/cpu-core.c @@ -0,0 +1,45 @@ +/* + * x86 CPU core abstraction + * + * Copyright (c) 2015 SUSE Linux GmbH + */ + +#include "hw/i386/cpu-core.h" + +static int x86_cpu_core_realize_child(Object *child, void *opaque) +{ + Error **errp =3D opaque; + Error *local_err =3D NULL; + + object_property_set_bool(child, true, "realized", &local_err); + error_propagate(errp, local_err); + + return local_err !=3D NULL ? 1 : 0; +} + +static void x86_cpu_core_realize(DeviceState *dev, Error **errp) +{ + /* XXX generic */ + object_child_foreach(OBJECT(dev), x86_cpu_core_realize_child, errp); +} + +static void x86_cpu_core_class_init(ObjectClass *oc, void *data) +{ + DeviceClass *dc =3D DEVICE_CLASS(oc); + + dc->realize =3D x86_cpu_core_realize; +} + +static const TypeInfo x86_cpu_core_type_info =3D { + .name =3D TYPE_X86_CPU_CORE, + .parent =3D TYPE_DEVICE, + .instance_size =3D sizeof(X86CPUCore), + .class_init =3D x86_cpu_core_class_init, +}; + +static void x86_cpu_core_register_types(void) +{ + type_register_static(&x86_cpu_core_type_info); +} + +type_init(x86_cpu_core_register_types) diff --git a/hw/i386/cpu-socket.c b/hw/i386/cpu-socket.c new file mode 100644 index 0000000..dc27400 --- /dev/null +++ b/hw/i386/cpu-socket.c @@ -0,0 +1,45 @@ +/* + * x86 CPU socket abstraction + * + * Copyright (c) 2015 SUSE Linux GmbH + */ + +#include "hw/i386/cpu-socket.h" + +static int x86_cpu_socket_realize_child(Object *child, void *opaque) +{ + Error **errp =3D opaque; + Error *local_err =3D NULL; + + object_property_set_bool(child, true, "realized", &local_err); + error_propagate(errp, local_err); + + return local_err !=3D NULL ? 1 : 0; +} + +static void x86_cpu_socket_realize(DeviceState *dev, Error **errp) +{ + /* XXX generic */ + object_child_foreach(OBJECT(dev), x86_cpu_socket_realize_child, errp= ); +} + +static void x86_cpu_socket_class_init(ObjectClass *oc, void *data) +{ + DeviceClass *dc =3D DEVICE_CLASS(oc); + + dc->realize =3D x86_cpu_socket_realize; +} + +static const TypeInfo x86_cpu_socket_type_info =3D { + .name =3D TYPE_X86_CPU_SOCKET, + .parent =3D TYPE_CPU_SOCKET, + .instance_size =3D sizeof(X86CPUSocket), + .class_init =3D x86_cpu_socket_class_init, +}; + +static void x86_cpu_socket_register_types(void) +{ + type_register_static(&x86_cpu_socket_type_info); +} + +type_init(x86_cpu_socket_register_types) diff --git a/include/hw/i386/cpu-core.h b/include/hw/i386/cpu-core.h new file mode 100644 index 0000000..be78f95 --- /dev/null +++ b/include/hw/i386/cpu-core.h @@ -0,0 +1,26 @@ +/* + * x86 CPU core abstraction + * + * Copyright (c) 2015 SUSE Linux GmbH + */ +#ifndef HW_I386_CPU_CORE_H +#define HW_I386_CPU_CORE_H + +#include "hw/qdev.h" + +#ifdef TARGET_X86_64 +#define TYPE_X86_CPU_CORE "x86_64-cpu-core" +#else +#define TYPE_X86_CPU_CORE "i386-cpu-core" +#endif + +#define X86_CPU_CORE(obj) \ + OBJECT_CHECK(X86CPUCore, (obj), TYPE_X86_CPU_CORE) + +typedef struct X86CPUCore { + /*< private >*/ + DeviceState parent_obj; + /*< public >*/ +} X86CPUCore; + +#endif diff --git a/include/hw/i386/cpu-socket.h b/include/hw/i386/cpu-socket.h new file mode 100644 index 0000000..9fb3ef8 --- /dev/null +++ b/include/hw/i386/cpu-socket.h @@ -0,0 +1,29 @@ +/* + * x86 CPU socket abstraction + * + * Copyright (c) 2015 SUSE Linux GmbH + */ +#ifndef HW_I386_CPU_SOCKET_H +#define HW_I386_CPU_SOCKET_H + +#include "hw/cpu/socket.h" +#include "cpu-core.h" + +#ifdef TARGET_X86_64 +#define TYPE_X86_CPU_SOCKET "x86_64-cpu-socket" +#else +#define TYPE_X86_CPU_SOCKET "i386-cpu-socket" +#endif + +#define X86_CPU_SOCKET(obj) \ + OBJECT_CHECK(X86CPUSocket, (obj), TYPE_X86_CPU_SOCKET) + +typedef struct X86CPUSocket { + /*< private >*/ + DeviceState parent_obj; + /*< public >*/ + + X86CPUCore core[0]; +} X86CPUSocket; + +#endif --=20 2.1.4