All of lore.kernel.org
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: Auger Eric <eric.auger@redhat.com>
Cc: peter.maydell@linaro.org, drjones@redhat.com, david@redhat.com,
	qemu-devel@nongnu.org, shameerali.kolothum.thodi@huawei.com,
	dgilbert@redhat.com, qemu-arm@nongnu.org, pbonzini@redhat.com,
	david@gibson.dropbear.id.au, eric.auger.pro@gmail.com
Subject: Re: [Qemu-arm] [PATCH v8 12/18] hw/arm/boot: Expose the PC-DIMM nodes in the DT
Date: Wed, 27 Feb 2019 13:40:35 +0100	[thread overview]
Message-ID: <20190227134035.5b8a0b98@redhat.com> (raw)
In-Reply-To: <2cd3fb96-6f46-18db-cb55-5c4e30fd3bac@redhat.com>

On Tue, 26 Feb 2019 18:59:49 +0100
Auger Eric <eric.auger@redhat.com> wrote:

> Hi Igor,
> 
> On 2/26/19 6:08 PM, Igor Mammedov wrote:
> > On Tue, 26 Feb 2019 14:50:08 +0100
> > Eric Auger <eric.auger@redhat.com> wrote:
> >   
> >> From: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
> >>
> >> This patch adds memory nodes corresponding to PC-DIMM regions.
> >>
> >> NVDIMM and ACPI_NVDIMM configs are not yet set for ARM so we
> >> don't need to care about NVDIMM at this stage.
> >>
> >> Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
> >> Signed-off-by: Eric Auger <eric.auger@redhat.com>
> >> Reviewed-by: Igor Mammedov <imammedo@redhat.com>  
> > I'm having second thoughts on this one,
> > maybe we should drop this patch or at least not to do this by default.  
> See my reply on your cover letter remark.
Replied there.

> > In the later case it would mean some kind of property that user could use
> > to turn this on which in its own turn adds more clutter to user tunables
> > (which is not desirable). So I'm leaning more towards dropping this patch for now.  
> So what about DT support? Doesn't it make sense to support
> cold-pluggable DIMMS?
It would have a sense if initial memory was also dimms, in that case
for static cases it would be possible to describe numa mapping using
only -device, but we are far from being ale to do it yet.

So right now, I'm not sure if is there are a compelling reasons for
cold-plugged dimms, at startup time initial RAM is sufficient to do the job.
Main goal was to introduce most of infrastructure so that it would be
easier to add hotplug on top. 


> 
> Thanks
> 
> Eric
> >   
> >>
> >> ---
> >> v7 -> v8:
> >> - s/NV_DIMM/NVDIMM
> >> - fix indent
> >> v6 -> v7:
> >> - rework the error messages, use a switch/case
> >> v3 -> v4:
> >> - git rid of @base and @len in fdt_add_hotpluggable_memory_nodes
> >>
> >> v1 -> v2:
> >> - added qapi_free_MemoryDeviceInfoList and simplify the loop
> >> ---
> >>  hw/arm/boot.c | 42 ++++++++++++++++++++++++++++++++++++++++++
> >>  1 file changed, 42 insertions(+)
> >>
> >> diff --git a/hw/arm/boot.c b/hw/arm/boot.c
> >> index a830655e1a..4caaf91583 100644
> >> --- a/hw/arm/boot.c
> >> +++ b/hw/arm/boot.c
> >> @@ -19,6 +19,7 @@
> >>  #include "sysemu/numa.h"
> >>  #include "hw/boards.h"
> >>  #include "hw/loader.h"
> >> +#include "hw/mem/memory-device.h"
> >>  #include "elf.h"
> >>  #include "sysemu/device_tree.h"
> >>  #include "qemu/config-file.h"
> >> @@ -522,6 +523,41 @@ static void fdt_add_psci_node(void *fdt)
> >>      qemu_fdt_setprop_cell(fdt, "/psci", "migrate", migrate_fn);
> >>  }
> >>  
> >> +static int fdt_add_hotpluggable_memory_nodes(void *fdt,
> >> +                                             uint32_t acells, uint32_t scells) {
> >> +    MemoryDeviceInfoList *info, *info_list = qmp_memory_device_list();
> >> +    MemoryDeviceInfo *mi;
> >> +    int ret = 0;
> >> +
> >> +    for (info = info_list; info != NULL; info = info->next) {
> >> +        mi = info->value;
> >> +        switch (mi->type) {
> >> +        case MEMORY_DEVICE_INFO_KIND_DIMM:
> >> +        {
> >> +            PCDIMMDeviceInfo *di = mi->u.dimm.data;
> >> +
> >> +            ret = fdt_add_memory_node(fdt, acells, di->addr,
> >> +                                      scells, di->size, di->node);
> >> +            if (ret) {
> >> +                fprintf(stderr,
> >> +                        "couldn't add PCDIMM /memory@%"PRIx64" node\n",
> >> +                        di->addr);
> >> +                goto out;
> >> +            }
> >> +            break;
> >> +        }
> >> +        default:
> >> +            fprintf(stderr, "%s memory nodes are not yet supported\n",
> >> +                    MemoryDeviceInfoKind_str(mi->type));
> >> +            ret = -ENOENT;
> >> +            goto out;
> >> +        }
> >> +    }
> >> +out:
> >> +    qapi_free_MemoryDeviceInfoList(info_list);
> >> +    return ret;
> >> +}
> >> +
> >>  int arm_load_dtb(hwaddr addr, const struct arm_boot_info *binfo,
> >>                   hwaddr addr_limit, AddressSpace *as)
> >>  {
> >> @@ -621,6 +657,12 @@ int arm_load_dtb(hwaddr addr, const struct arm_boot_info *binfo,
> >>          }
> >>      }
> >>  
> >> +    rc = fdt_add_hotpluggable_memory_nodes(fdt, acells, scells);
> >> +    if (rc < 0) {
> >> +        fprintf(stderr, "couldn't add hotpluggable memory nodes\n");
> >> +        goto fail;
> >> +    }
> >> +
> >>      rc = fdt_path_offset(fdt, "/chosen");
> >>      if (rc < 0) {
> >>          qemu_fdt_add_subnode(fdt, "/chosen");  
> >   


WARNING: multiple messages have this Message-ID (diff)
From: Igor Mammedov <imammedo@redhat.com>
To: Auger Eric <eric.auger@redhat.com>
Cc: eric.auger.pro@gmail.com, qemu-devel@nongnu.org,
	qemu-arm@nongnu.org, peter.maydell@linaro.org,
	shameerali.kolothum.thodi@huawei.com, david@redhat.com,
	dgilbert@redhat.com, david@gibson.dropbear.id.au,
	drjones@redhat.com, pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH v8 12/18] hw/arm/boot: Expose the PC-DIMM nodes in the DT
Date: Wed, 27 Feb 2019 13:40:35 +0100	[thread overview]
Message-ID: <20190227134035.5b8a0b98@redhat.com> (raw)
In-Reply-To: <2cd3fb96-6f46-18db-cb55-5c4e30fd3bac@redhat.com>

On Tue, 26 Feb 2019 18:59:49 +0100
Auger Eric <eric.auger@redhat.com> wrote:

> Hi Igor,
> 
> On 2/26/19 6:08 PM, Igor Mammedov wrote:
> > On Tue, 26 Feb 2019 14:50:08 +0100
> > Eric Auger <eric.auger@redhat.com> wrote:
> >   
> >> From: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
> >>
> >> This patch adds memory nodes corresponding to PC-DIMM regions.
> >>
> >> NVDIMM and ACPI_NVDIMM configs are not yet set for ARM so we
> >> don't need to care about NVDIMM at this stage.
> >>
> >> Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
> >> Signed-off-by: Eric Auger <eric.auger@redhat.com>
> >> Reviewed-by: Igor Mammedov <imammedo@redhat.com>  
> > I'm having second thoughts on this one,
> > maybe we should drop this patch or at least not to do this by default.  
> See my reply on your cover letter remark.
Replied there.

> > In the later case it would mean some kind of property that user could use
> > to turn this on which in its own turn adds more clutter to user tunables
> > (which is not desirable). So I'm leaning more towards dropping this patch for now.  
> So what about DT support? Doesn't it make sense to support
> cold-pluggable DIMMS?
It would have a sense if initial memory was also dimms, in that case
for static cases it would be possible to describe numa mapping using
only -device, but we are far from being ale to do it yet.

So right now, I'm not sure if is there are a compelling reasons for
cold-plugged dimms, at startup time initial RAM is sufficient to do the job.
Main goal was to introduce most of infrastructure so that it would be
easier to add hotplug on top. 


> 
> Thanks
> 
> Eric
> >   
> >>
> >> ---
> >> v7 -> v8:
> >> - s/NV_DIMM/NVDIMM
> >> - fix indent
> >> v6 -> v7:
> >> - rework the error messages, use a switch/case
> >> v3 -> v4:
> >> - git rid of @base and @len in fdt_add_hotpluggable_memory_nodes
> >>
> >> v1 -> v2:
> >> - added qapi_free_MemoryDeviceInfoList and simplify the loop
> >> ---
> >>  hw/arm/boot.c | 42 ++++++++++++++++++++++++++++++++++++++++++
> >>  1 file changed, 42 insertions(+)
> >>
> >> diff --git a/hw/arm/boot.c b/hw/arm/boot.c
> >> index a830655e1a..4caaf91583 100644
> >> --- a/hw/arm/boot.c
> >> +++ b/hw/arm/boot.c
> >> @@ -19,6 +19,7 @@
> >>  #include "sysemu/numa.h"
> >>  #include "hw/boards.h"
> >>  #include "hw/loader.h"
> >> +#include "hw/mem/memory-device.h"
> >>  #include "elf.h"
> >>  #include "sysemu/device_tree.h"
> >>  #include "qemu/config-file.h"
> >> @@ -522,6 +523,41 @@ static void fdt_add_psci_node(void *fdt)
> >>      qemu_fdt_setprop_cell(fdt, "/psci", "migrate", migrate_fn);
> >>  }
> >>  
> >> +static int fdt_add_hotpluggable_memory_nodes(void *fdt,
> >> +                                             uint32_t acells, uint32_t scells) {
> >> +    MemoryDeviceInfoList *info, *info_list = qmp_memory_device_list();
> >> +    MemoryDeviceInfo *mi;
> >> +    int ret = 0;
> >> +
> >> +    for (info = info_list; info != NULL; info = info->next) {
> >> +        mi = info->value;
> >> +        switch (mi->type) {
> >> +        case MEMORY_DEVICE_INFO_KIND_DIMM:
> >> +        {
> >> +            PCDIMMDeviceInfo *di = mi->u.dimm.data;
> >> +
> >> +            ret = fdt_add_memory_node(fdt, acells, di->addr,
> >> +                                      scells, di->size, di->node);
> >> +            if (ret) {
> >> +                fprintf(stderr,
> >> +                        "couldn't add PCDIMM /memory@%"PRIx64" node\n",
> >> +                        di->addr);
> >> +                goto out;
> >> +            }
> >> +            break;
> >> +        }
> >> +        default:
> >> +            fprintf(stderr, "%s memory nodes are not yet supported\n",
> >> +                    MemoryDeviceInfoKind_str(mi->type));
> >> +            ret = -ENOENT;
> >> +            goto out;
> >> +        }
> >> +    }
> >> +out:
> >> +    qapi_free_MemoryDeviceInfoList(info_list);
> >> +    return ret;
> >> +}
> >> +
> >>  int arm_load_dtb(hwaddr addr, const struct arm_boot_info *binfo,
> >>                   hwaddr addr_limit, AddressSpace *as)
> >>  {
> >> @@ -621,6 +657,12 @@ int arm_load_dtb(hwaddr addr, const struct arm_boot_info *binfo,
> >>          }
> >>      }
> >>  
> >> +    rc = fdt_add_hotpluggable_memory_nodes(fdt, acells, scells);
> >> +    if (rc < 0) {
> >> +        fprintf(stderr, "couldn't add hotpluggable memory nodes\n");
> >> +        goto fail;
> >> +    }
> >> +
> >>      rc = fdt_path_offset(fdt, "/chosen");
> >>      if (rc < 0) {
> >>          qemu_fdt_add_subnode(fdt, "/chosen");  
> >   

  reply	other threads:[~2019-02-27 14:15 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-26 13:49 [Qemu-devel] [PATCH v8 00/18] ARM virt: Initial RAM expansion and PCDIMM/NVDIMM support Eric Auger
2019-02-26 13:49 ` Eric Auger
2019-02-26 13:49 ` [Qemu-arm] [PATCH v8 01/18] hw/arm/boot: introduce fdt_add_memory_node helper Eric Auger
2019-02-26 13:49   ` [Qemu-devel] " Eric Auger
2019-02-26 13:49 ` [Qemu-arm] [PATCH v8 02/18] hw/arm/virt: Rename highmem IO regions Eric Auger
2019-02-26 13:49   ` [Qemu-devel] " Eric Auger
2019-02-26 13:49 ` [Qemu-arm] [PATCH v8 03/18] hw/arm/virt: Split the memory map description Eric Auger
2019-02-26 13:49   ` [Qemu-devel] " Eric Auger
2019-02-26 13:50 ` [Qemu-devel] [PATCH v8 04/18] hw/boards: Add a MachineState parameter to kvm_type callback Eric Auger
2019-02-26 13:50   ` Eric Auger
2019-02-26 13:50 ` [Qemu-devel] [PATCH v8 05/18] kvm: add kvm_arm_get_max_vm_ipa_size Eric Auger
2019-02-26 13:50   ` Eric Auger
2019-02-26 13:50 ` [Qemu-devel] [PATCH v8 06/18] vl: Set machine ram_size, maxram_size and ram_slots earlier Eric Auger
2019-02-26 13:50   ` Eric Auger
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 07/18] hw/arm/virt: Dynamic memory map depending on RAM requirements Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger
2019-02-26 15:12   ` [Qemu-arm] " Auger Eric
2019-02-26 15:12     ` Auger Eric
2019-02-26 13:50 ` [Qemu-devel] [PATCH v8 08/18] hw/arm/virt: Implement kvm_type function for 4.0 machine Eric Auger
2019-02-26 13:50   ` Eric Auger
2019-02-26 13:50 ` [Qemu-devel] [PATCH v8 09/18] hw/arm/virt: Check the VCPU PA range in TCG mode Eric Auger
2019-02-26 13:50   ` Eric Auger
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 10/18] hw/arm/virt: Bump the 255GB initial RAM limit Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger
2019-02-26 13:50 ` [Qemu-devel] [PATCH v8 11/18] hw/arm/virt: Add memory hotplug framework Eric Auger
2019-02-26 13:50   ` Eric Auger
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 12/18] hw/arm/boot: Expose the PC-DIMM nodes in the DT Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger
2019-02-26 17:08   ` [Qemu-arm] " Igor Mammedov
2019-02-26 17:08     ` [Qemu-devel] " Igor Mammedov
2019-02-26 17:59     ` [Qemu-arm] " Auger Eric
2019-02-26 17:59       ` [Qemu-devel] " Auger Eric
2019-02-27 12:40       ` Igor Mammedov [this message]
2019-02-27 12:40         ` Igor Mammedov
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 13/18] hw/arm/virt-acpi-build: Add PC-DIMM in SRAT Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger
2019-02-26 13:50 ` [Qemu-devel] [PATCH v8 14/18] nvdimm: Use configurable ACPI IO base and size Eric Auger
2019-02-26 13:50   ` Eric Auger
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 15/18] machine: Move acpi_nvdimm_state into struct MachineState Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 16/18] hw/arm/virt: Add nvdimm hot-plug infrastructure Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 17/18] hw/arm/boot: Expose the pmem nodes in the DT Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger
2019-02-26 13:50 ` [Qemu-arm] [PATCH v8 18/18] hw/arm/virt: Allow nvdimm instantiation Eric Auger
2019-02-26 13:50   ` [Qemu-devel] " Eric Auger

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=20190227134035.5b8a0b98@redhat.com \
    --to=imammedo@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=david@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=drjones@redhat.com \
    --cc=eric.auger.pro@gmail.com \
    --cc=eric.auger@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=shameerali.kolothum.thodi@huawei.com \
    /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.