From: Wei Liu <wei.liu2@citrix.com>
To: Shannon Zhao <zhaoshenglong@huawei.com>
Cc: sstabellini@kernel.org, wei.liu2@citrix.com,
ian.jackson@eu.citrix.com, peter.huangpeng@huawei.com,
xen-devel@lists.xen.org, julien.grall@arm.com,
shannon.zhao@linaro.org, boris.ostrovsky@oracle.com,
"Roger Pau Monné" <roger.pau@citrix.com>
Subject: Re: [PATCH v4 07/16] libxl/arm: Construct ACPI GTDT table
Date: Wed, 24 Aug 2016 13:56:04 +0100 [thread overview]
Message-ID: <20160824125604.GL20641@citrix.com> (raw)
In-Reply-To: <1471343113-10652-8-git-send-email-zhaoshenglong@huawei.com>
On Tue, Aug 16, 2016 at 06:25:04PM +0800, Shannon Zhao wrote:
> From: Shannon Zhao <shannon.zhao@linaro.org>
>
> Construct GTDT table with the interrupt information of timers.
>
> Signed-off-by: Shannon Zhao <shannon.zhao@linaro.org>
> ---
> tools/libxl/libxl_arm_acpi.c | 29 +++++++++++++++++++++++++++++
> 1 file changed, 29 insertions(+)
>
> diff --git a/tools/libxl/libxl_arm_acpi.c b/tools/libxl/libxl_arm_acpi.c
> index 8cd1d9b..28fb6fe 100644
> --- a/tools/libxl/libxl_arm_acpi.c
> +++ b/tools/libxl/libxl_arm_acpi.c
> @@ -24,10 +24,18 @@ typedef uint8_t u8;
> typedef uint16_t u16;
> typedef uint32_t u32;
> typedef uint64_t u64;
> +typedef int64_t s64;
>
> #include <acpi/acconfig.h>
> #include <acpi/actbl.h>
>
> +#include <asm-generic/bitsperlong.h>
Hmm... This is likely to be Linux-centric. But I'm not sure if FreeBSD
or other BSDes have plan for Xen on ARM support.
CC Roger here.
> +#define ACPI_MACHINE_WIDTH __BITS_PER_LONG
> +#define COMPILER_DEPENDENT_INT64 int64_t
> +#define COMPILER_DEPENDENT_UINT64 uint64_t
> +
> +#include <acpi/actypes.h>
> +
> _hidden
> extern const unsigned char dsdt_anycpu_arm[];
> _hidden
> @@ -175,6 +183,26 @@ static void make_acpi_xsdt(libxl__gc *gc, struct xc_dom_image *dom,
> acpitables[XSDT].size);
> }
>
> +static void make_acpi_gtdt(libxl__gc *gc, struct xc_dom_image *dom,
> + struct acpitable acpitables[])
> +{
> + uint64_t offset = acpitables[GTDT].addr - GUEST_ACPI_BASE;
> + struct acpi_table_gtdt *gtdt = (void *)dom->acpi_modules[0].data + offset;
> +
> + gtdt->non_secure_el1_interrupt = GUEST_TIMER_PHYS_NS_PPI;
> + gtdt->non_secure_el1_flags =
> + (ACPI_LEVEL_SENSITIVE << ACPI_GTDT_INTERRUPT_MODE)
> + |(ACPI_ACTIVE_LOW << ACPI_GTDT_INTERRUPT_POLARITY);
> + gtdt->virtual_timer_interrupt = GUEST_TIMER_VIRT_PPI;
> + gtdt->virtual_timer_flags =
> + (ACPI_LEVEL_SENSITIVE << ACPI_GTDT_INTERRUPT_MODE)
> + |(ACPI_ACTIVE_LOW << ACPI_GTDT_INTERRUPT_POLARITY);
> +
> + make_acpi_header(>dt->header, "GTDT", acpitables[GTDT].size, 2);
> + calculate_checksum(gtdt, offsetof(struct acpi_table_header, checksum),
> + acpitables[GTDT].size);
> +}
> +
> int libxl__prepare_acpi(libxl__gc *gc, libxl_domain_build_info *info,
> libxl__domain_build_state *state,
> struct xc_dom_image *dom)
> @@ -205,6 +233,7 @@ int libxl__prepare_acpi(libxl__gc *gc, libxl_domain_build_info *info,
>
> make_acpi_rsdp(gc, dom, acpitables);
> make_acpi_xsdt(gc, dom, acpitables);
> + make_acpi_gtdt(gc, dom, acpitables);
>
> out:
> return rc;
> --
> 2.0.4
>
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-08-24 12:56 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-16 10:24 [PATCH v4 00/16] Xen ARM DomU ACPI support Shannon Zhao
2016-08-16 10:24 ` [PATCH v4 01/16] tools/libxl: Add an unified configuration option for ACPI Shannon Zhao
2016-08-18 16:16 ` Julien Grall
2016-08-24 12:50 ` Wei Liu
2016-08-25 7:54 ` Shannon Zhao
2016-08-25 9:05 ` Wei Liu
2016-08-25 9:09 ` Shannon Zhao
2016-08-16 10:24 ` [PATCH v4 02/16] libxl/arm: prepare for constructing ACPI tables Shannon Zhao
2016-08-18 16:36 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 03/16] libxl/arm: Generate static ACPI DSDT table Shannon Zhao
2016-08-24 21:52 ` Boris Ostrovsky
2016-08-29 17:46 ` Julien Grall
2016-08-31 6:37 ` Shannon Zhao
2016-08-31 9:58 ` Julien Grall
2016-08-31 18:51 ` Stefano Stabellini
2016-09-01 3:18 ` Shannon Zhao
2016-09-01 12:53 ` Boris Ostrovsky
2016-09-02 0:55 ` Shannon Zhao
2016-09-02 1:12 ` Boris Ostrovsky
2016-08-16 10:25 ` [PATCH v4 04/16] libxl/arm: Estimate the size of ACPI tables Shannon Zhao
2016-08-16 10:25 ` [PATCH v4 05/16] libxl/arm: Construct ACPI RSDP table Shannon Zhao
2016-08-24 12:52 ` Wei Liu
2016-08-25 8:05 ` Shannon Zhao
2016-08-25 9:05 ` Wei Liu
2016-08-29 18:05 ` Julien Grall
2016-08-30 1:21 ` Shannon Zhao
2016-08-30 17:11 ` Julien Grall
2016-08-30 21:38 ` Stefano Stabellini
2016-08-29 18:03 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 06/16] libxl/arm: Construct ACPI XSDT table Shannon Zhao
2016-08-29 18:10 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 07/16] libxl/arm: Construct ACPI GTDT table Shannon Zhao
2016-08-24 12:56 ` Wei Liu [this message]
2016-08-24 14:13 ` Roger Pau Monné
2016-08-25 7:58 ` Shannon Zhao
2016-08-29 18:16 ` Julien Grall
2016-08-30 1:36 ` Shannon Zhao
2016-08-16 10:25 ` [PATCH v4 08/16] libxl/arm: Factor MPIDR computing codes out as a helper Shannon Zhao
2016-08-29 18:17 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 09/16] libxl/arm: Construct ACPI MADT table Shannon Zhao
2016-08-29 18:30 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 10/16] libxl/arm: Construct ACPI FADT table Shannon Zhao
2016-08-29 18:38 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 11/16] libxl/arm: Construct ACPI DSDT table Shannon Zhao
2016-08-16 10:25 ` [PATCH v4 12/16] libxl/arm: Factor finalise_one_memory_node as a gerneric function Shannon Zhao
2016-08-29 18:39 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 13/16] libxl/arm: Add ACPI module Shannon Zhao
2016-08-29 18:41 ` Julien Grall
2016-08-16 10:25 ` [PATCH v4 14/16] public/hvm/params.h: Add macros for HVM_PARAM_CALLBACK_TYPE_PPI Shannon Zhao
2016-08-24 13:06 ` Wei Liu
2016-08-24 13:15 ` Jan Beulich
2016-08-24 22:27 ` Boris Ostrovsky
2016-08-29 19:00 ` Julien Grall
2016-08-30 1:30 ` Shannon Zhao
2016-08-16 10:25 ` [PATCH v4 15/16] libxl/arm: Initialize domain param HVM_PARAM_CALLBACK_IRQ Shannon Zhao
2016-08-16 10:25 ` [PATCH v4 16/16] libxl/arm: Add the size of ACPI tables to maxmem Shannon Zhao
2016-08-29 19:07 ` Julien Grall
2016-08-30 1:25 ` Shannon Zhao
2016-08-30 8:29 ` Wei Liu
2016-08-30 9:20 ` Shannon Zhao
2016-08-24 12:58 ` [PATCH v4 00/16] Xen ARM DomU ACPI support Wei Liu
2016-08-25 8:01 ` Shannon Zhao
2016-08-29 19:08 ` Julien Grall
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=20160824125604.GL20641@citrix.com \
--to=wei.liu2@citrix.com \
--cc=boris.ostrovsky@oracle.com \
--cc=ian.jackson@eu.citrix.com \
--cc=julien.grall@arm.com \
--cc=peter.huangpeng@huawei.com \
--cc=roger.pau@citrix.com \
--cc=shannon.zhao@linaro.org \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xen.org \
--cc=zhaoshenglong@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).