From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48621) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b8ixa-0006Nf-Kc for qemu-devel@nongnu.org; Fri, 03 Jun 2016 02:52:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b8ixY-0003f8-KQ for qemu-devel@nongnu.org; Fri, 03 Jun 2016 02:51:58 -0400 Date: Fri, 3 Jun 2016 16:10:59 +1000 From: David Gibson Message-ID: <20160603061059.GM1087@voom.fritz.box> References: <1463024905-28401-1-git-send-email-bharata@linux.vnet.ibm.com> <1463024905-28401-10-git-send-email-bharata@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="x38akuY2VS0PywU3" Content-Disposition: inline In-Reply-To: <1463024905-28401-10-git-send-email-bharata@linux.vnet.ibm.com> Subject: Re: [Qemu-devel] [for-2.7 PATCH v3 09/15] spapr: CPU hotplug support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Bharata B Rao Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org, afaerber@suse.de, imammedo@redhat.com, armbru@redhat.com, thuth@redhat.com, aik@ozlabs.ru, agraf@suse.de, pbonzini@redhat.com, ehabkost@redhat.com, pkrempa@redhat.com, mdroth@linux.vnet.ibm.com, eblake@redhat.com, mjrosato@linux.vnet.ibm.com, borntraeger@de.ibm.com --x38akuY2VS0PywU3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 12, 2016 at 09:18:19AM +0530, Bharata B Rao wrote: > Set up device tree entries for the hotplugged CPU core and use the > exising RTAS event logging infrastructure to send CPU hotplug notification > to the guest. >=20 > Signed-off-by: Bharata B Rao Reviewed-by: David Gibson > --- > hw/ppc/spapr.c | 91 ++++++++++++++++++++++++++++++++++-= ------ > hw/ppc/spapr_cpu_core.c | 69 +++++++++++++++++++++++++++++++ > hw/ppc/spapr_events.c | 3 ++ > hw/ppc/spapr_rtas.c | 24 +++++++++++ > include/hw/ppc/spapr.h | 2 + > include/hw/ppc/spapr_cpu_core.h | 2 + > 6 files changed, 176 insertions(+), 15 deletions(-) >=20 > diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c > index 0f64218..8c3100d 100644 > --- a/hw/ppc/spapr.c > +++ b/hw/ppc/spapr.c > @@ -605,6 +605,16 @@ static void spapr_populate_cpu_dt(CPUState *cs, void= *fdt, int offset, > size_t page_sizes_prop_size; > uint32_t vcpus_per_socket =3D smp_threads * smp_cores; > uint32_t pft_size_prop[] =3D {0, cpu_to_be32(spapr->htab_shift)}; > + sPAPRDRConnector *drc; > + sPAPRDRConnectorClass *drck; > + int drc_index; > + > + drc =3D spapr_dr_connector_by_id(SPAPR_DR_CONNECTOR_TYPE_CPU, index); > + if (drc) { > + drck =3D SPAPR_DR_CONNECTOR_GET_CLASS(drc); > + drc_index =3D drck->get_index(drc); > + _FDT((fdt_setprop_cell(fdt, offset, "ibm,my-drc-index", drc_inde= x))); > + } > =20 > /* Note: we keep CI large pages off for now because a 64K capable gu= est > * provisioned with large pages might otherwise try to map a qemu > @@ -988,6 +998,16 @@ static void spapr_finalize_fdt(sPAPRMachineState *sp= apr, > _FDT(spapr_drc_populate_dt(fdt, 0, NULL, SPAPR_DR_CONNECTOR_TYPE= _LMB)); > } > =20 > + if (smc->dr_cpu_enabled) { > + int offset =3D fdt_path_offset(fdt, "/cpus"); > + ret =3D spapr_drc_populate_dt(fdt, offset, NULL, > + SPAPR_DR_CONNECTOR_TYPE_CPU); > + if (ret < 0) { > + error_report("Couldn't set up CPU DR device tree properties"= ); > + exit(1); > + } > + } > + > _FDT((fdt_pack(fdt))); > =20 > if (fdt_totalsize(fdt) > FDT_MAX_SIZE) { > @@ -1613,6 +1633,8 @@ static void spapr_boot_set(void *opaque, const char= *boot_device, > void spapr_cpu_init(sPAPRMachineState *spapr, PowerPCCPU *cpu, Error **e= rrp) > { > CPUPPCState *env =3D &cpu->env; > + CPUState *cs =3D CPU(cpu); > + int i; > =20 > /* Set time-base frequency to 512 MHz */ > cpu_ppc_tb_init(env, TIMEBASE_FREQ); > @@ -1630,6 +1652,14 @@ void spapr_cpu_init(sPAPRMachineState *spapr, Powe= rPCCPU *cpu, Error **errp) > } > } > =20 > + /* Set NUMA node for the added CPUs */ > + for (i =3D 0; i < nb_numa_nodes; i++) { > + if (test_bit(cs->cpu_index, numa_info[i].node_cpu)) { > + cs->numa_node =3D i; > + break; > + } > + } > + > xics_cpu_setup(spapr->icp, cpu); > =20 > qemu_register_reset(spapr_cpu_reset, cpu); > @@ -1807,23 +1837,31 @@ static void ppc_spapr_init(MachineState *machine) > if (smc->dr_cpu_enabled) { > spapr->cores =3D g_new0(Object *, spapr_max_cores); > =20 > - for (i =3D 0; i < spapr_cores; i++) { > + for (i =3D 0; i < spapr_max_cores; i++) { > int core_dt_id =3D i * smt; > - char *type =3D spapr_get_cpu_core_type(machine->cpu_model); > - Object *core; > - > - if (!object_class_by_name(type)) { > - error_report("Unable to find sPAPR CPU Core definition"); > - exit(1); > + sPAPRDRConnector *drc =3D > + spapr_dr_connector_new(OBJECT(spapr), > + SPAPR_DR_CONNECTOR_TYPE_CPU, core= _dt_id); > + > + qemu_register_reset(spapr_drc_reset, drc); > + > + if (i < spapr_cores) { > + char *type =3D spapr_get_cpu_core_type(machine->cpu_mode= l); > + Object *core; > + > + if (!object_class_by_name(type)) { > + error_report("Unable to find sPAPR CPU Core definiti= on"); > + exit(1); > + } > + > + core =3D object_new(type); > + g_free(type); > + object_property_set_int(core, smp_threads, "threads", > + &error_fatal); > + object_property_set_int(core, core_dt_id, CPU_CORE_PROP_= CORE, > + &error_fatal); > + object_property_set_bool(core, true, "realized", &error_= fatal); > } > - > - core =3D object_new(type); > - g_free(type); > - object_property_set_int(core, smp_threads, "threads", > - &error_fatal); > - object_property_set_int(core, core_dt_id, CPU_CORE_PROP_CORE, > - &error_fatal); > - object_property_set_bool(core, true, "realized", &error_fata= l); > } > } else { > for (i =3D 0; i < smp_cpus; i++) { > @@ -2234,6 +2272,27 @@ out: > error_propagate(errp, local_err); > } > =20 > +void *spapr_populate_hotplug_cpu_dt(CPUState *cs, int *fdt_offset, > + sPAPRMachineState *spapr) > +{ > + PowerPCCPU *cpu =3D POWERPC_CPU(cs); > + DeviceClass *dc =3D DEVICE_GET_CLASS(cs); > + int id =3D ppc_get_vcpu_dt_id(cpu); > + void *fdt; > + int offset, fdt_size; > + char *nodename; > + > + fdt =3D create_device_tree(&fdt_size); > + nodename =3D g_strdup_printf("%s@%x", dc->fw_name, id); > + offset =3D fdt_add_subnode(fdt, 0, nodename); > + > + spapr_populate_cpu_dt(cs, fdt, offset, spapr); > + g_free(nodename); > + > + *fdt_offset =3D offset; > + return fdt; > +} > + > static void spapr_machine_device_plug(HotplugHandler *hotplug_dev, > DeviceState *dev, Error **errp) > { > @@ -2278,6 +2337,8 @@ static void spapr_machine_device_plug(HotplugHandle= r *hotplug_dev, > } > =20 > spapr_memory_plug(hotplug_dev, dev, node, errp); > + } else if (object_dynamic_cast(OBJECT(dev), TYPE_SPAPR_CPU_CORE)) { > + spapr_core_plug(hotplug_dev, dev, errp); > } > } > =20 > diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c > index 4450362..ed36beb 100644 > --- a/hw/ppc/spapr_cpu_core.c > +++ b/hw/ppc/spapr_cpu_core.c > @@ -28,10 +28,74 @@ char *spapr_get_cpu_core_type(const char *model) > return g_strdup(core_type); > } > =20 > +void spapr_core_plug(HotplugHandler *hotplug_dev, DeviceState *dev, > + Error **errp) > +{ > + sPAPRMachineClass *smc =3D SPAPR_MACHINE_GET_CLASS(OBJECT(hotplug_de= v)); > + sPAPRMachineState *spapr =3D SPAPR_MACHINE(OBJECT(hotplug_dev)); > + sPAPRCPUCore *core =3D SPAPR_CPU_CORE(OBJECT(dev)); > + CPUCore *cc =3D CPU_CORE(dev); > + CPUState *cs =3D CPU(&core->threads[0]); > + sPAPRDRConnector *drc; > + sPAPRDRConnectorClass *drck; > + Error *local_err =3D NULL; > + void *fdt =3D NULL; > + int fdt_offset =3D 0; > + int index; > + int smt =3D kvmppc_smt_threads(); > + > + drc =3D spapr_dr_connector_by_id(SPAPR_DR_CONNECTOR_TYPE_CPU, cc->co= re); > + index =3D cc->core / smt; > + spapr->cores[index] =3D OBJECT(dev); > + > + if (!smc->dr_cpu_enabled) { > + /* > + * This is a cold plugged CPU core but the machine doesn't suppo= rt > + * DR. So skip the hotplug path ensuring that the core is brought > + * up online with out an associated DR connector. > + */ > + return; > + } > + > + g_assert(drc); > + > + /* > + * Setup CPU DT entries only for hotplugged CPUs. For boot time or > + * coldplugged CPUs DT entries are setup in spapr_finalize_fdt(). > + */ > + if (dev->hotplugged) { > + fdt =3D spapr_populate_hotplug_cpu_dt(cs, &fdt_offset, spapr); > + } > + > + drck =3D SPAPR_DR_CONNECTOR_GET_CLASS(drc); > + drck->attach(drc, dev, fdt, fdt_offset, !dev->hotplugged, &local_err= ); > + if (local_err) { > + g_free(fdt); > + spapr->cores[index] =3D NULL; > + error_propagate(errp, local_err); > + return; > + } > + > + if (dev->hotplugged) { > + /* > + * Send hotplug notification interrupt to the guest only in case > + * of hotplugged CPUs. > + */ > + spapr_hotplug_req_add_by_index(drc); > + } else { > + /* > + * Set the right DRC states for cold plugged CPU. > + */ > + drck->set_allocation_state(drc, SPAPR_DR_ALLOCATION_STATE_USABLE= ); > + drck->set_isolation_state(drc, SPAPR_DR_ISOLATION_STATE_UNISOLAT= ED); > + } > +} > + > void spapr_core_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev, > Error **errp) > { > MachineState *machine =3D MACHINE(OBJECT(hotplug_dev)); > + sPAPRMachineClass *smc =3D SPAPR_MACHINE_GET_CLASS(OBJECT(hotplug_de= v)); > sPAPRMachineState *spapr =3D SPAPR_MACHINE(OBJECT(hotplug_dev)); > int spapr_max_cores =3D max_cpus / smp_threads; > int index; > @@ -46,6 +110,11 @@ void spapr_core_pre_plug(HotplugHandler *hotplug_dev,= DeviceState *dev, > goto out; > } > =20 > + if (!smc->dr_cpu_enabled && dev->hotplugged) { > + error_setg(&local_err, "CPU hotplug not supported for this machi= ne"); > + goto out; > + } > + > if (cc->threads !=3D smp_threads) { > error_setg(&local_err, "threads must be %d", smp_threads); > goto out; > diff --git a/hw/ppc/spapr_events.c b/hw/ppc/spapr_events.c > index 049fb1b..af80992 100644 > --- a/hw/ppc/spapr_events.c > +++ b/hw/ppc/spapr_events.c > @@ -449,6 +449,9 @@ static void spapr_hotplug_req_event(uint8_t hp_id, ui= nt8_t hp_action, > case SPAPR_DR_CONNECTOR_TYPE_LMB: > hp->hotplug_type =3D RTAS_LOG_V6_HP_TYPE_MEMORY; > break; > + case SPAPR_DR_CONNECTOR_TYPE_CPU: > + hp->hotplug_type =3D RTAS_LOG_V6_HP_TYPE_CPU; > + break; > default: > /* we shouldn't be signaling hotplug events for resources > * that don't support them > diff --git a/hw/ppc/spapr_rtas.c b/hw/ppc/spapr_rtas.c > index f073258..e53ecc0 100644 > --- a/hw/ppc/spapr_rtas.c > +++ b/hw/ppc/spapr_rtas.c > @@ -34,6 +34,7 @@ > =20 > #include "hw/ppc/spapr.h" > #include "hw/ppc/spapr_vio.h" > +#include "hw/ppc/ppc.h" > #include "qapi-event.h" > #include "hw/boards.h" > =20 > @@ -162,6 +163,27 @@ static void rtas_query_cpu_stopped_state(PowerPCCPU = *cpu_, > rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); > } > =20 > +/* > + * Set the timebase offset of the CPU to that of first CPU. > + * This helps hotplugged CPU to have the correct timebase offset. > + */ > +static void spapr_cpu_update_tb_offset(PowerPCCPU *cpu) > +{ > + PowerPCCPU *fcpu =3D POWERPC_CPU(first_cpu); > + > + cpu->env.tb_env->tb_offset =3D fcpu->env.tb_env->tb_offset; > +} > + > +static void spapr_cpu_set_endianness(PowerPCCPU *cpu) > +{ > + PowerPCCPU *fcpu =3D POWERPC_CPU(first_cpu); > + PowerPCCPUClass *pcc =3D POWERPC_CPU_GET_CLASS(fcpu); > + > + if (!pcc->interrupts_big_endian(fcpu)) { > + cpu->env.spr[SPR_LPCR] |=3D LPCR_ILE; > + } > +} > + > static void rtas_start_cpu(PowerPCCPU *cpu_, sPAPRMachineState *spapr, > uint32_t token, uint32_t nargs, > target_ulong args, > @@ -198,6 +220,8 @@ static void rtas_start_cpu(PowerPCCPU *cpu_, sPAPRMac= hineState *spapr, > env->nip =3D start; > env->gpr[3] =3D r3; > cs->halted =3D 0; > + spapr_cpu_set_endianness(cpu); > + spapr_cpu_update_tb_offset(cpu); > =20 > qemu_cpu_kick(cs); > =20 > diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h > index 1b3eeee..ca4ae3e 100644 > --- a/include/hw/ppc/spapr.h > +++ b/include/hw/ppc/spapr.h > @@ -583,6 +583,8 @@ void spapr_hotplug_req_add_by_count(sPAPRDRConnectorT= ype drc_type, > void spapr_hotplug_req_remove_by_count(sPAPRDRConnectorType drc_type, > uint32_t count); > void spapr_cpu_init(sPAPRMachineState *spapr, PowerPCCPU *cpu, Error **e= rrp); > +void *spapr_populate_hotplug_cpu_dt(CPUState *cs, int *fdt_offset, > + sPAPRMachineState *spapr); > =20 > /* rtas-configure-connector state */ > struct sPAPRConfigureConnectorState { > diff --git a/include/hw/ppc/spapr_cpu_core.h b/include/hw/ppc/spapr_cpu_c= ore.h > index f1ebd85..4cd837e 100644 > --- a/include/hw/ppc/spapr_cpu_core.h > +++ b/include/hw/ppc/spapr_cpu_core.h > @@ -28,4 +28,6 @@ typedef struct sPAPRCPUCore { > void spapr_core_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev, > Error **errp); > char *spapr_get_cpu_core_type(const char *model); > +void spapr_core_plug(HotplugHandler *hotplug_dev, DeviceState *dev, > + Error **errp); > #endif --=20 David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson --x38akuY2VS0PywU3 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBAgAGBQJXUR9yAAoJEGw4ysog2bOSEuYQALsQBa7WCa6Agstemg0OKUgp q/HmAcjT0yqpXWMUuBDsmCFyq1fOKkE0CERMO0Bx5+CGY6nwFO+Wm8WMTdu2n9o2 NQzBA5H0zs1kTcXhWYFdyryyo0x0Gl2HwHNQHwALWU6+3S9DRkOrXLelvvhzKR5V tCEU09wKeam2yUcLNxGkr4mEOmVQieHodXNkKpj1UEjDUOsz0njJO+c983AmmyME QG3AoyFc8ezwtMgxQLAR67JtslCsDtvskteLP0pSZT95GhaCbwmK1wtF0HHECoK9 isoEdQdqYhyARR0q7p1R0lDPFdoCtzQ2f43vsachOlNhGgwJb9ZDLfcBQa/6XfRm /mpUfQIUC9sXxI9gpMho41KnFBUHBjbp4BDM+8R9DA3JLFzO0kGz4+9n5ou8GBxv AkWYWIBqEmhh7ELXedT6WYe80Q2ngxlQH2HEf+Gvm4+gJUzJLjwpkLASq8vM7e/3 mSFKKswAzE6NSWqP3uI+FmcpE0wBPczNG+XFQBGMrFSMwnT3cJOb+kLC9zSYkBqa luujMNT4uKw70FD5lxyFLOESgnMjN3+mKq+w6/2SB6fuuJmKjM/I51ZzzeoVnhYR 8PSwUEck7sAhxoQNISyWvabsglNHNVTefnG7VMrgUvsZjDFFWv39FbAsA67cgSn7 308k0WksuiB8nfekBALE =ifZJ -----END PGP SIGNATURE----- --x38akuY2VS0PywU3--