From: Marcel Apfelbaum <marcel@redhat.com>
To: Igor Mammedov <imammedo@redhat.com>, qemu-devel@nongnu.org
Cc: ehabkost@redhat.com, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH v4 08/10] pc: acpi: drop cpu->found_cpus bitmap
Date: Thu, 3 Mar 2016 13:33:29 +0200 [thread overview]
Message-ID: <56D82109.7000407@redhat.com> (raw)
In-Reply-To: <1456495168-144510-9-git-send-email-imammedo@redhat.com>
On 02/26/2016 03:59 PM, Igor Mammedov wrote:
> cpu->found_cpus bitmap is used for setting present
> flag in CPON AML package. But it takes a bunch of code
> to fill bitmap and could be simplified by getting
> presense info from possible CPUs list directly.
>
> So drop cpu->found_cpus bitmap and unroll possible
> CPUs list into APIC index array at the place where
> CPUON AML package is created.
>
> Signed-off-by: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/i386/acpi-build.c | 53 ++++++++++++++--------------------------------------
> 1 file changed, 14 insertions(+), 39 deletions(-)
>
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index df7e6df..48240e0 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -76,10 +76,6 @@
> #define ACPI_BUILD_DPRINTF(fmt, ...)
> #endif
>
> -typedef struct AcpiCpuInfo {
> - DECLARE_BITMAP(found_cpus, ACPI_CPU_HOTPLUG_ID_LIMIT);
> -} AcpiCpuInfo;
> -
> typedef struct AcpiMcfgInfo {
> uint64_t mcfg_base;
> uint32_t mcfg_size;
> @@ -121,31 +117,6 @@ typedef struct AcpiBuildPciBusHotplugState {
> bool pcihp_bridge_en;
> } AcpiBuildPciBusHotplugState;
>
> -static
> -int acpi_add_cpu_info(Object *o, void *opaque)
> -{
> - AcpiCpuInfo *cpu = opaque;
> - uint64_t apic_id;
> -
> - if (object_dynamic_cast(o, TYPE_CPU)) {
> - apic_id = object_property_get_int(o, "apic-id", NULL);
> - assert(apic_id < ACPI_CPU_HOTPLUG_ID_LIMIT);
> -
> - set_bit(apic_id, cpu->found_cpus);
> - }
> -
> - object_child_foreach(o, acpi_add_cpu_info, opaque);
> - return 0;
> -}
> -
> -static void acpi_get_cpu_info(AcpiCpuInfo *cpu)
> -{
> - Object *root = object_get_root();
> -
> - memset(cpu->found_cpus, 0, sizeof cpu->found_cpus);
> - object_child_foreach(root, acpi_add_cpu_info, cpu);
> -}
> -
> static void acpi_get_pm_info(AcpiPmInfo *pm)
> {
> Object *piix = piix4_pm_find();
> @@ -966,9 +937,9 @@ static Aml *build_crs(PCIHostState *host,
> }
>
> static void build_processor_devices(Aml *sb_scope, MachineState *machine,
> - AcpiCpuInfo *cpu, AcpiPmInfo *pm)
> + AcpiPmInfo *pm)
> {
> - int i;
> + int i, apic_idx;
> Aml *dev;
> Aml *crs;
> Aml *pkg;
> @@ -1011,6 +982,7 @@ static void build_processor_devices(Aml *sb_scope, MachineState *machine,
> int apic_id = apic_ids->cpus[i].arch_id;
>
> assert(apic_id < ACPI_CPU_HOTPLUG_ID_LIMIT);
> +
Unneeded chunk, not really a big issue :)
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Thanks,
Marcel
> dev = aml_processor(apic_id, 0, 0, "CP%.02X", apic_id);
>
> method = aml_method("_MAT", 0, AML_NOTSERIALIZED);
> @@ -1059,9 +1031,14 @@ static void build_processor_devices(Aml *sb_scope, MachineState *machine,
> pkg = pcms->apic_id_limit <= 255 ? aml_package(pcms->apic_id_limit) :
> aml_varpackage(pcms->apic_id_limit);
>
> - for (i = 0; i < pcms->apic_id_limit; i++) {
> - uint8_t b = test_bit(i, cpu->found_cpus) ? 0x01 : 0x00;
> - aml_append(pkg, aml_int(b));
> + for (i = 0, apic_idx = 0; i < apic_ids->len; i++) {
> + int apic_id = apic_ids->cpus[i].arch_id;
> +
> + for (; apic_idx < apic_id; apic_idx++) {
> + aml_append(pkg, aml_int(0));
> + }
> + aml_append(pkg, aml_int(apic_ids->cpus[i].cpu ? 1 : 0));
> + apic_idx = apic_id + 1;
> }
> aml_append(sb_scope, aml_name_decl(CPU_ON_BITMAP, pkg));
> g_free(apic_ids);
> @@ -1952,7 +1929,7 @@ static Aml *build_q35_osc_method(void)
>
> static void
> build_dsdt(GArray *table_data, GArray *linker,
> - AcpiCpuInfo *cpu, AcpiPmInfo *pm, AcpiMiscInfo *misc,
> + AcpiPmInfo *pm, AcpiMiscInfo *misc,
> PcPciInfo *pci, MachineState *machine)
> {
> CrsRangeEntry *entry;
> @@ -2259,7 +2236,7 @@ build_dsdt(GArray *table_data, GArray *linker,
>
> sb_scope = aml_scope("\\_SB");
> {
> - build_processor_devices(sb_scope, machine, cpu, pm);
> + build_processor_devices(sb_scope, machine, pm);
>
> build_memory_devices(sb_scope, nr_mem, pm->mem_hp_io_base,
> pm->mem_hp_io_len);
> @@ -2613,7 +2590,6 @@ void acpi_build(AcpiBuildTables *tables, MachineState *machine)
> PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
> GArray *table_offsets;
> unsigned facs, dsdt, rsdt, fadt;
> - AcpiCpuInfo cpu;
> AcpiPmInfo pm;
> AcpiMiscInfo misc;
> AcpiMcfgInfo mcfg;
> @@ -2623,7 +2599,6 @@ void acpi_build(AcpiBuildTables *tables, MachineState *machine)
> GArray *tables_blob = tables->table_data;
> AcpiSlicOem slic_oem = { .id = NULL, .table_id = NULL };
>
> - acpi_get_cpu_info(&cpu);
> acpi_get_pm_info(&pm);
> acpi_get_misc_info(&misc);
> acpi_get_pci_info(&pci);
> @@ -2647,7 +2622,7 @@ void acpi_build(AcpiBuildTables *tables, MachineState *machine)
>
> /* DSDT is pointed to by FADT */
> dsdt = tables_blob->len;
> - build_dsdt(tables_blob, tables->linker, &cpu, &pm, &misc, &pci, machine);
> + build_dsdt(tables_blob, tables->linker, &pm, &misc, &pci, machine);
>
> /* Count the size of the DSDT and SSDT, we will need it for legacy
> * sizing of ACPI tables.
>
next prev parent reply other threads:[~2016-03-03 11:33 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-26 13:59 [Qemu-devel] [PATCH v4 00/10] pc: do not create invalid MADT.LAPIC/Processor entries Igor Mammedov
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 01/10] tests: pc: acpi: piix4: add sparse CPU hotplug case Igor Mammedov
2016-03-03 11:36 ` Marcel Apfelbaum
2016-03-08 14:05 ` Marcel Apfelbaum
2016-03-11 13:48 ` Michael S. Tsirkin
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 02/10] pc: init pcms->apic_id_limit once and use it throughout pc.c Igor Mammedov
2016-02-28 20:11 ` Marcel Apfelbaum
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 03/10] machine: introduce MachineClass.possible_cpu_arch_ids() hook Igor Mammedov
2016-03-03 11:27 ` Marcel Apfelbaum
2016-03-03 14:13 ` Igor Mammedov
2016-03-03 14:28 ` [Qemu-devel] [PATCH v5 " Igor Mammedov
[not found] ` <20160308132850.2fbe25bd@nial.brq.redhat.com>
[not found] ` <56DEDBBF.9050203@redhat.com>
[not found] ` <20160308154317.72a695a4@nial.brq.redhat.com>
2016-03-08 15:16 ` Marcel Apfelbaum
2016-03-08 16:29 ` Igor Mammedov
2016-03-08 17:40 ` Marcel Apfelbaum
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 04/10] pc: acpi: cleanup qdev_get_machine() calls Igor Mammedov
2016-02-28 20:05 ` Marcel Apfelbaum
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 05/10] pc: acpi: SRAT: create only valid processor lapic entries Igor Mammedov
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 06/10] pc: acpi: create MADT.lapic entries only for valid lapics Igor Mammedov
2016-03-03 10:35 ` Marcel Apfelbaum
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 07/10] pc: acpi: create Processor and Notify objects " Igor Mammedov
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 08/10] pc: acpi: drop cpu->found_cpus bitmap Igor Mammedov
2016-03-03 11:33 ` Marcel Apfelbaum [this message]
2016-03-03 14:24 ` Igor Mammedov
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 09/10] pc: acpi: clarify why possible LAPIC entries must be present in MADT Igor Mammedov
2016-02-26 13:59 ` [Qemu-devel] [PATCH v4 10/10] tests: update ACPI tables blobs for cpuhp_sparse case Igor Mammedov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56D82109.7000407@redhat.com \
--to=marcel@redhat.com \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.