[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 16/25] spapr: Use QEMU limit for maximum CPUs number
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PATCH 16/25] spapr: Use QEMU limit for maximum CPUs number |
Date: |
Thu, 3 Sep 2015 14:28:07 +1000 |
From: Alexey Kardashevskiy <address@hidden>
sPAPR uses hard coded limit of maximum 255 supported CPUs which is
exactly the same as QEMU-wide limit which is MAX_CPUMASK_BITS and also
defined as 255.
This makes use of a global CPU number limit for the "pseries" machine.
In order to anticipate future increase of the MAX_CPUMASK_BITS
(or to help debugging large systems), this also bumps the FDT_MAX_SIZE
limit from 256K to 1M assuming that 1 CPU core needs roughly 512 bytes
in the device tree so the new limit can cover up to 2048 CPU cores.
Signed-off-by: Alexey Kardashevskiy <address@hidden>
Reviewed-by: David Gibson <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/ppc/spapr.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 0c18f15..95066f4 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -76,7 +76,7 @@
*
* We load our kernel at 4M, leaving space for SLOF initial image
*/
-#define FDT_MAX_SIZE 0x40000
+#define FDT_MAX_SIZE 0x100000
#define RTAS_MAX_SIZE 0x10000
#define RTAS_MAX_ADDR 0x80000000 /* RTAS must stay below that */
#define FW_MAX_SIZE 0x400000
@@ -88,8 +88,6 @@
#define TIMEBASE_FREQ 512000000ULL
-#define MAX_CPUS 255
-
#define PHANDLE_XICP 0x00001111
#define HTAB_SIZE(spapr) (1ULL << ((spapr)->htab_shift))
@@ -2204,7 +2202,7 @@ static void spapr_machine_class_init(ObjectClass *oc,
void *data)
mc->init = ppc_spapr_init;
mc->reset = ppc_spapr_reset;
mc->block_default_type = IF_SCSI;
- mc->max_cpus = MAX_CPUS;
+ mc->max_cpus = MAX_CPUMASK_BITS;
mc->no_parallel = 1;
mc->default_boot_order = "";
mc->default_ram_size = 512 * M_BYTE;
--
2.4.3
- [Qemu-ppc] [PATCH 12/25] spapr: SPLPAR Characteristics, (continued)
- [Qemu-ppc] [PATCH 12/25] spapr: SPLPAR Characteristics, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 14/25] spapr: add dumpdtb support, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 04/25] spapr: Add LMB DR connectors, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 22/25] spapr_rtas: Prevent QEMU crash during hotplug without a prior device_add, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 03/25] spapr: Initialize hotplug memory address space, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 07/25] spapr: Memory hotplug support, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 08/25] spapr: Don't allow memory hotplug to memory less nodes, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 09/25] spapr: Add /ibm,partition-name, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 17/25] spapr: Provide better error message when slots exceed max allowed, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 20/25] spapr: Support hotplug by specifying DRC count, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 16/25] spapr: Use QEMU limit for maximum CPUs number,
David Gibson <=
- [Qemu-ppc] [PATCH 18/25] spapr: Populate ibm, associativity-lookup-arrays correctly for non-NUMA, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 21/25] spapr: Move memory hotplug to RTAS_LOG_V6_HP_ID_DRC_COUNT type, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 23/25] sPAPR: Introduce rtas_ldq(), David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 24/25] pseries: define coldplugged devices as "configured", David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 15/25] ppc/spapr: Use qemu_log_mask() for hcall_dprintf(), David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 05/25] spapr: Support ibm, dynamic-reconfiguration-memory, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 19/25] spapr: Revert to address@hidden representation for non-hotplugged memory, David Gibson, 2015/09/03
- [Qemu-ppc] [PATCH 25/25] pseries: Update SLOF firmware image to qemu-slof-20150813, David Gibson, 2015/09/03