From: "Michael S. Tsirkin" <mst@redhat.com>
To: Heyi Guo <guoheyi@huawei.com>
Cc: Marc Zyngier <marc.zyngier@arm.com>,
qemu-devel@nongnu.org, Dave Martin <Dave.Martin@arm.com>,
qemu-arm@nongnu.org, Igor Mammedov <imammedo@redhat.com>,
kvmarm@lists.cs.columbia.edu,
linux-arm-kernel@lists.infradead.org
Subject: Re: [RFC PATCH 12/12] virt/acpi: add SDEI table if SDEI is enabled
Date: Thu, 10 Oct 2019 10:01:42 -0400 [thread overview]
Message-ID: <20191010100107-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1569338511-3572-13-git-send-email-guoheyi@huawei.com>
On Tue, Sep 24, 2019 at 11:21:51PM +0800, Heyi Guo wrote:
> Add SDEI table if SDEI is enabled, so that guest OS can get aware and
> utilize the interfaces.
>
> Signed-off-by: Heyi Guo <guoheyi@huawei.com>
> Cc: Peter Maydell <peter.maydell@linaro.org>
> Cc: Dave Martin <Dave.Martin@arm.com>
> Cc: Marc Zyngier <marc.zyngier@arm.com>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Cc: James Morse <james.morse@arm.com>
> Cc: Shannon Zhao <shannon.zhaosl@gmail.com>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/arm/virt-acpi-build.c | 16 ++++++++++++++++
> include/hw/acpi/acpi-defs.h | 5 +++++
> 2 files changed, 21 insertions(+)
>
> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
> index 6cdf156..1088214 100644
> --- a/hw/arm/virt-acpi-build.c
> +++ b/hw/arm/virt-acpi-build.c
> @@ -32,6 +32,7 @@
> #include "trace.h"
> #include "hw/core/cpu.h"
> #include "target/arm/cpu.h"
> +#include "target/arm/sdei.h"
> #include "hw/acpi/acpi-defs.h"
> #include "hw/acpi/acpi.h"
> #include "hw/nvram/fw_cfg.h"
> @@ -475,6 +476,16 @@ build_iort(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> }
>
> static void
> +build_sdei(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> +{
> + int sdei_start = table_data->len;
> +
> + (void)acpi_data_push(table_data, sizeof(AcpiSdei));
> + build_header(linker, table_data, (void *)(table_data->data + sdei_start),
> + "SDEI", table_data->len - sdei_start, 1, NULL, NULL);
> +}
> +
Please quote the relevant spec, earliest version that includes
this table, and chapter in that spec.
> +static void
> build_spcr(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> {
> AcpiSerialPortConsoleRedirection *spcr;
> @@ -796,6 +807,11 @@ void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables)
> acpi_add_table(table_offsets, tables_blob);
> build_spcr(tables_blob, tables->linker, vms);
>
> + if (sdei_enabled) {
> + acpi_add_table(table_offsets, tables_blob);
> + build_sdei(tables_blob, tables->linker, vms);
> + }
> +
> if (ms->numa_state->num_nodes > 0) {
> acpi_add_table(table_offsets, tables_blob);
> build_srat(tables_blob, tables->linker, vms);
> diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h
> index 57a3f58..0a2265d 100644
> --- a/include/hw/acpi/acpi-defs.h
> +++ b/include/hw/acpi/acpi-defs.h
> @@ -634,4 +634,9 @@ struct AcpiIortRC {
> } QEMU_PACKED;
> typedef struct AcpiIortRC AcpiIortRC;
>
> +struct AcpiSdei {
> + ACPI_TABLE_HEADER_DEF /* ACPI common table header */
> +} QEMU_PACKED;
> +typedef struct AcpiSdei AcpiSdei;
> +
> #endif
> --
> 1.8.3.1
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Heyi Guo <guoheyi@huawei.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
Peter Maydell <peter.maydell@linaro.org>,
Marc Zyngier <marc.zyngier@arm.com>,
qemu-devel@nongnu.org, Dave Martin <Dave.Martin@arm.com>,
Shannon Zhao <shannon.zhaosl@gmail.com>,
qemu-arm@nongnu.org, James Morse <james.morse@arm.com>,
Igor Mammedov <imammedo@redhat.com>,
wanghaibin.wang@huawei.com, kvmarm@lists.cs.columbia.edu,
linux-arm-kernel@lists.infradead.org
Subject: Re: [RFC PATCH 12/12] virt/acpi: add SDEI table if SDEI is enabled
Date: Thu, 10 Oct 2019 10:01:42 -0400 [thread overview]
Message-ID: <20191010100107-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1569338511-3572-13-git-send-email-guoheyi@huawei.com>
On Tue, Sep 24, 2019 at 11:21:51PM +0800, Heyi Guo wrote:
> Add SDEI table if SDEI is enabled, so that guest OS can get aware and
> utilize the interfaces.
>
> Signed-off-by: Heyi Guo <guoheyi@huawei.com>
> Cc: Peter Maydell <peter.maydell@linaro.org>
> Cc: Dave Martin <Dave.Martin@arm.com>
> Cc: Marc Zyngier <marc.zyngier@arm.com>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Cc: James Morse <james.morse@arm.com>
> Cc: Shannon Zhao <shannon.zhaosl@gmail.com>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/arm/virt-acpi-build.c | 16 ++++++++++++++++
> include/hw/acpi/acpi-defs.h | 5 +++++
> 2 files changed, 21 insertions(+)
>
> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
> index 6cdf156..1088214 100644
> --- a/hw/arm/virt-acpi-build.c
> +++ b/hw/arm/virt-acpi-build.c
> @@ -32,6 +32,7 @@
> #include "trace.h"
> #include "hw/core/cpu.h"
> #include "target/arm/cpu.h"
> +#include "target/arm/sdei.h"
> #include "hw/acpi/acpi-defs.h"
> #include "hw/acpi/acpi.h"
> #include "hw/nvram/fw_cfg.h"
> @@ -475,6 +476,16 @@ build_iort(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> }
>
> static void
> +build_sdei(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> +{
> + int sdei_start = table_data->len;
> +
> + (void)acpi_data_push(table_data, sizeof(AcpiSdei));
> + build_header(linker, table_data, (void *)(table_data->data + sdei_start),
> + "SDEI", table_data->len - sdei_start, 1, NULL, NULL);
> +}
> +
Please quote the relevant spec, earliest version that includes
this table, and chapter in that spec.
> +static void
> build_spcr(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> {
> AcpiSerialPortConsoleRedirection *spcr;
> @@ -796,6 +807,11 @@ void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables)
> acpi_add_table(table_offsets, tables_blob);
> build_spcr(tables_blob, tables->linker, vms);
>
> + if (sdei_enabled) {
> + acpi_add_table(table_offsets, tables_blob);
> + build_sdei(tables_blob, tables->linker, vms);
> + }
> +
> if (ms->numa_state->num_nodes > 0) {
> acpi_add_table(table_offsets, tables_blob);
> build_srat(tables_blob, tables->linker, vms);
> diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h
> index 57a3f58..0a2265d 100644
> --- a/include/hw/acpi/acpi-defs.h
> +++ b/include/hw/acpi/acpi-defs.h
> @@ -634,4 +634,9 @@ struct AcpiIortRC {
> } QEMU_PACKED;
> typedef struct AcpiIortRC AcpiIortRC;
>
> +struct AcpiSdei {
> + ACPI_TABLE_HEADER_DEF /* ACPI common table header */
> +} QEMU_PACKED;
> +typedef struct AcpiSdei AcpiSdei;
> +
> #endif
> --
> 1.8.3.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Heyi Guo <guoheyi@huawei.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
Peter Maydell <peter.maydell@linaro.org>,
Marc Zyngier <marc.zyngier@arm.com>,
qemu-devel@nongnu.org, Dave Martin <Dave.Martin@arm.com>,
Shannon Zhao <shannon.zhaosl@gmail.com>,
qemu-arm@nongnu.org, James Morse <james.morse@arm.com>,
Igor Mammedov <imammedo@redhat.com>,
wanghaibin.wang@huawei.com, kvmarm@lists.cs.columbia.edu,
linux-arm-kernel@lists.infradead.org
Subject: Re: [RFC PATCH 12/12] virt/acpi: add SDEI table if SDEI is enabled
Date: Thu, 10 Oct 2019 10:01:42 -0400 [thread overview]
Message-ID: <20191010100107-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1569338511-3572-13-git-send-email-guoheyi@huawei.com>
On Tue, Sep 24, 2019 at 11:21:51PM +0800, Heyi Guo wrote:
> Add SDEI table if SDEI is enabled, so that guest OS can get aware and
> utilize the interfaces.
>
> Signed-off-by: Heyi Guo <guoheyi@huawei.com>
> Cc: Peter Maydell <peter.maydell@linaro.org>
> Cc: Dave Martin <Dave.Martin@arm.com>
> Cc: Marc Zyngier <marc.zyngier@arm.com>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Cc: James Morse <james.morse@arm.com>
> Cc: Shannon Zhao <shannon.zhaosl@gmail.com>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Igor Mammedov <imammedo@redhat.com>
> ---
> hw/arm/virt-acpi-build.c | 16 ++++++++++++++++
> include/hw/acpi/acpi-defs.h | 5 +++++
> 2 files changed, 21 insertions(+)
>
> diff --git a/hw/arm/virt-acpi-build.c b/hw/arm/virt-acpi-build.c
> index 6cdf156..1088214 100644
> --- a/hw/arm/virt-acpi-build.c
> +++ b/hw/arm/virt-acpi-build.c
> @@ -32,6 +32,7 @@
> #include "trace.h"
> #include "hw/core/cpu.h"
> #include "target/arm/cpu.h"
> +#include "target/arm/sdei.h"
> #include "hw/acpi/acpi-defs.h"
> #include "hw/acpi/acpi.h"
> #include "hw/nvram/fw_cfg.h"
> @@ -475,6 +476,16 @@ build_iort(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> }
>
> static void
> +build_sdei(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> +{
> + int sdei_start = table_data->len;
> +
> + (void)acpi_data_push(table_data, sizeof(AcpiSdei));
> + build_header(linker, table_data, (void *)(table_data->data + sdei_start),
> + "SDEI", table_data->len - sdei_start, 1, NULL, NULL);
> +}
> +
Please quote the relevant spec, earliest version that includes
this table, and chapter in that spec.
> +static void
> build_spcr(GArray *table_data, BIOSLinker *linker, VirtMachineState *vms)
> {
> AcpiSerialPortConsoleRedirection *spcr;
> @@ -796,6 +807,11 @@ void virt_acpi_build(VirtMachineState *vms, AcpiBuildTables *tables)
> acpi_add_table(table_offsets, tables_blob);
> build_spcr(tables_blob, tables->linker, vms);
>
> + if (sdei_enabled) {
> + acpi_add_table(table_offsets, tables_blob);
> + build_sdei(tables_blob, tables->linker, vms);
> + }
> +
> if (ms->numa_state->num_nodes > 0) {
> acpi_add_table(table_offsets, tables_blob);
> build_srat(tables_blob, tables->linker, vms);
> diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h
> index 57a3f58..0a2265d 100644
> --- a/include/hw/acpi/acpi-defs.h
> +++ b/include/hw/acpi/acpi-defs.h
> @@ -634,4 +634,9 @@ struct AcpiIortRC {
> } QEMU_PACKED;
> typedef struct AcpiIortRC AcpiIortRC;
>
> +struct AcpiSdei {
> + ACPI_TABLE_HEADER_DEF /* ACPI common table header */
> +} QEMU_PACKED;
> +typedef struct AcpiSdei AcpiSdei;
> +
> #endif
> --
> 1.8.3.1
next prev parent reply other threads:[~2019-10-10 14:01 UTC|newest]
Thread overview: 75+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-24 15:21 [RFC PATCH 00/12] Add SDEI support for arm64 Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 01/12] linux-headers: import arm_sdei.h Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:39 ` Michael S. Tsirkin
2019-09-24 15:39 ` Michael S. Tsirkin
2019-09-24 15:39 ` Michael S. Tsirkin
2019-09-25 8:12 ` Guoheyi
2019-09-25 8:12 ` Guoheyi
2019-09-25 8:12 ` Guoheyi
2019-09-24 15:21 ` [RFC PATCH 02/12] arm/sdei: add virtual device framework Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 03/12] arm/sdei: add support to handle SDEI requests from guest Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 04/12] arm/sdei: add system reset callback Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 05/12] arm/sdei: add support to trigger event by GIC interrupt ID Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 06/12] core/irq: add qemu_irq_remove_intercept interface Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 07/12] arm/sdei: override qemu_irq handler when binding interrupt Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-30 13:19 ` Peter Maydell
2019-09-30 13:19 ` Peter Maydell
2019-09-30 13:19 ` Peter Maydell
2019-10-09 13:06 ` Guoheyi
2019-10-09 13:06 ` Guoheyi
2019-10-09 13:06 ` Guoheyi
2019-09-24 15:21 ` [RFC PATCH 08/12] arm/sdei: add support to register interrupt bind notifier Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 09/12] linux-headers/kvm.h: add capability to forward hypercall Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 10/12] arm/sdei: check KVM cap and enable SDEI Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 11/12] arm/kvm: handle guest exit of hypercall Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` [RFC PATCH 12/12] virt/acpi: add SDEI table if SDEI is enabled Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-09-24 15:21 ` Heyi Guo
2019-10-10 9:15 ` Igor Mammedov
2019-10-10 9:15 ` Igor Mammedov
2019-10-10 9:15 ` Igor Mammedov
2019-10-10 13:08 ` Guoheyi
2019-10-10 13:08 ` Guoheyi
2019-10-10 13:08 ` Guoheyi
2019-10-10 13:57 ` Igor Mammedov
2019-10-10 13:57 ` Igor Mammedov
2019-10-10 13:57 ` Igor Mammedov
2019-10-10 14:01 ` Michael S. Tsirkin [this message]
2019-10-10 14:01 ` Michael S. Tsirkin
2019-10-10 14:01 ` Michael S. Tsirkin
2019-09-25 6:54 ` [RFC PATCH 00/12] Add SDEI support for arm64 no-reply
2019-09-25 6:54 ` no-reply
2019-09-25 6:54 ` no-reply
2019-09-25 6:58 ` no-reply
2019-09-25 6:58 ` no-reply
2019-09-25 6:58 ` no-reply
2019-09-30 13:15 ` Peter Maydell
2019-09-30 13:15 ` Peter Maydell
2019-09-30 13:15 ` Peter Maydell
2019-10-09 13:42 ` Guoheyi
2019-10-09 13:42 ` Guoheyi
2019-10-09 13:42 ` Guoheyi
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=20191010100107-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=Dave.Martin@arm.com \
--cc=guoheyi@huawei.com \
--cc=imammedo@redhat.com \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=marc.zyngier@arm.com \
--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.