From: Shannon Zhao <zhaoshenglong@huawei.com>
To: Andrew Jones <drjones@redhat.com>, <qemu-devel@nongnu.org>,
<qemu-arm@nongnu.org>
Cc: peter.maydell@linaro.org
Subject: Re: [Qemu-arm] [PATCH 2/2] hw/arm/virt: fdt: generate distance-map when needed
Date: Wed, 31 May 2017 09:16:33 +0800 [thread overview]
Message-ID: <592E1971.8000008@huawei.com> (raw)
In-Reply-To: <20170529173751.3443-3-drjones@redhat.com>
On 2017/5/30 1:37, Andrew Jones wrote:
> This is based on patch Shannon Zhao originally posted.
>
> Cc: Shannon Zhao <zhaoshenglong@huawei.com>
> Signed-off-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Shannon Zhao <shannon.zhao@linaro.org>
> ---
> hw/arm/virt.c | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> index c7c8159dfd59..4db2d4207cf2 100644
> --- a/hw/arm/virt.c
> +++ b/hw/arm/virt.c
> @@ -219,6 +219,27 @@ static void create_fdt(VirtMachineState *vms)
> "clk24mhz");
> qemu_fdt_setprop_cell(fdt, "/apb-pclk", "phandle", vms->clock_phandle);
>
> + if (have_numa_distance) {
> + int size = nb_numa_nodes * nb_numa_nodes * 3 * sizeof(uint32_t);
> + uint32_t *matrix = g_malloc0(size);
> + int idx, i, j;
> +
> + for (i = 0; i < nb_numa_nodes; i++) {
> + for (j = 0; j < nb_numa_nodes; j++) {
> + idx = (i * nb_numa_nodes + j) * 3;
> + matrix[idx + 0] = cpu_to_be32(i);
> + matrix[idx + 1] = cpu_to_be32(j);
> + matrix[idx + 2] = cpu_to_be32(numa_info[i].distance[j]);
> + }
> + }
> +
> + qemu_fdt_add_subnode(fdt, "/distance-map");
> + qemu_fdt_setprop_string(fdt, "/distance-map", "compatible",
> + "numa-distance-map-v1");
> + qemu_fdt_setprop(fdt, "/distance-map", "distance-matrix",
> + matrix, size);
> + g_free(matrix);
> + }
> }
>
> static void fdt_add_psci_node(const VirtMachineState *vms)
>
--
Shannon
WARNING: multiple messages have this Message-ID (diff)
From: Shannon Zhao <zhaoshenglong@huawei.com>
To: Andrew Jones <drjones@redhat.com>,
qemu-devel@nongnu.org, qemu-arm@nongnu.org
Cc: peter.maydell@linaro.org
Subject: Re: [Qemu-devel] [PATCH 2/2] hw/arm/virt: fdt: generate distance-map when needed
Date: Wed, 31 May 2017 09:16:33 +0800 [thread overview]
Message-ID: <592E1971.8000008@huawei.com> (raw)
In-Reply-To: <20170529173751.3443-3-drjones@redhat.com>
On 2017/5/30 1:37, Andrew Jones wrote:
> This is based on patch Shannon Zhao originally posted.
>
> Cc: Shannon Zhao <zhaoshenglong@huawei.com>
> Signed-off-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Shannon Zhao <shannon.zhao@linaro.org>
> ---
> hw/arm/virt.c | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> index c7c8159dfd59..4db2d4207cf2 100644
> --- a/hw/arm/virt.c
> +++ b/hw/arm/virt.c
> @@ -219,6 +219,27 @@ static void create_fdt(VirtMachineState *vms)
> "clk24mhz");
> qemu_fdt_setprop_cell(fdt, "/apb-pclk", "phandle", vms->clock_phandle);
>
> + if (have_numa_distance) {
> + int size = nb_numa_nodes * nb_numa_nodes * 3 * sizeof(uint32_t);
> + uint32_t *matrix = g_malloc0(size);
> + int idx, i, j;
> +
> + for (i = 0; i < nb_numa_nodes; i++) {
> + for (j = 0; j < nb_numa_nodes; j++) {
> + idx = (i * nb_numa_nodes + j) * 3;
> + matrix[idx + 0] = cpu_to_be32(i);
> + matrix[idx + 1] = cpu_to_be32(j);
> + matrix[idx + 2] = cpu_to_be32(numa_info[i].distance[j]);
> + }
> + }
> +
> + qemu_fdt_add_subnode(fdt, "/distance-map");
> + qemu_fdt_setprop_string(fdt, "/distance-map", "compatible",
> + "numa-distance-map-v1");
> + qemu_fdt_setprop(fdt, "/distance-map", "distance-matrix",
> + matrix, size);
> + g_free(matrix);
> + }
> }
>
> static void fdt_add_psci_node(const VirtMachineState *vms)
>
--
Shannon
next prev parent reply other threads:[~2017-05-31 1:23 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-29 17:37 [Qemu-arm] [PATCH 0/2] hw/arm/virt: numa: provide distance info when needed Andrew Jones
2017-05-29 17:37 ` [Qemu-devel] " Andrew Jones
2017-05-29 17:37 ` [Qemu-arm] [PATCH 1/2] hw/arm/virt-acpi-build: build SLIT " Andrew Jones
2017-05-29 17:37 ` [Qemu-devel] " Andrew Jones
2017-05-30 6:58 ` [Qemu-arm] " Igor Mammedov
2017-05-30 6:58 ` Igor Mammedov
2017-05-31 1:17 ` [Qemu-arm] " Shannon Zhao
2017-05-31 1:17 ` [Qemu-devel] " Shannon Zhao
2017-05-29 17:37 ` [Qemu-arm] [PATCH 2/2] hw/arm/virt: fdt: generate distance-map " Andrew Jones
2017-05-29 17:37 ` [Qemu-devel] " Andrew Jones
2017-05-31 1:16 ` Shannon Zhao [this message]
2017-05-31 1:16 ` Shannon Zhao
2017-06-01 16:28 ` [Qemu-arm] [PATCH 0/2] hw/arm/virt: numa: provide distance info " Peter Maydell
2017-06-01 16:28 ` [Qemu-devel] " Peter Maydell
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=592E1971.8000008@huawei.com \
--to=zhaoshenglong@huawei.com \
--cc=drjones@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--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.