qemu-arm.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Auger Eric <eric.auger@redhat.com>
To: Igor Mammedov <imammedo@redhat.com>, qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Andrew Jones <drjones@redhat.com>,
	qemu-arm@nongnu.org, "Michael S. Tsirkin" <mst@redhat.com>,
	Shannon Zhao <zhaoshenglong@huawei.com>
Subject: Re: [Qemu-arm] [Qemu-devel] [PATCH 4/9] acpi: add build_append_gas() helper for Generic Address Structure
Date: Tue, 27 Feb 2018 13:48:45 +0100	[thread overview]
Message-ID: <4c3fb706-41e8-0b2f-f2b9-25f0ef60b90d@redhat.com> (raw)
In-Reply-To: <1519303376-92875-5-git-send-email-imammedo@redhat.com>

Hi,

On 22/02/18 13:42, Igor Mammedov wrote:
> it will help to add Generic Address Structure to ACPI tables
> without using packed C structures and avoid endianness
> issues as API doesn't need an explicit conversion.
> 
> Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>

Thanks

Eric
> ---
>  include/hw/acpi/aml-build.h | 20 ++++++++++++++++++++
>  hw/acpi/aml-build.c         | 16 ++++++++++++++++
>  2 files changed, 36 insertions(+)
> 
> diff --git a/include/hw/acpi/aml-build.h b/include/hw/acpi/aml-build.h
> index 88d0738..8692ccc 100644
> --- a/include/hw/acpi/aml-build.h
> +++ b/include/hw/acpi/aml-build.h
> @@ -78,6 +78,15 @@ typedef enum {
>  } AmlUpdateRule;
>  
>  typedef enum {
> +    AML_AS_SYSTEM_MEMORY = 0X00,
> +    AML_AS_SYSTEM_IO = 0X01,
> +    AML_AS_PCI_CONFIG = 0X02,
> +    AML_AS_EMBEDDED_CTRL = 0X03,
> +    AML_AS_SMBUS = 0X04,
> +    AML_AS_FFH = 0X7F,
> +} AmlAddressSpace;
> +
> +typedef enum {
>      AML_SYSTEM_MEMORY = 0X00,
>      AML_SYSTEM_IO = 0X01,
>      AML_PCI_CONFIG = 0X02,
> @@ -389,6 +398,17 @@ int
>  build_append_named_dword(GArray *array, const char *name_format, ...)
>  GCC_FMT_ATTR(2, 3);
>  
> +void build_append_gas(GArray *table, AmlAddressSpace as,
> +                      uint8_t bit_width, uint8_t bit_offset,
> +                      uint8_t access_width, uint64_t address);
> +
> +static inline void
> +build_append_gas_from_struct(GArray *table, const struct AcpiGenericAddress *s)
> +{
> +    build_append_gas(table, s->space_id, s->bit_width, s->bit_offset,
> +                     s->access_width, s->address);
> +}
> +
>  void build_srat_memory(AcpiSratMemoryAffinity *numamem, uint64_t base,
>                         uint64_t len, int node, MemoryAffinityFlags flags);
>  
> diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml-build.c
> index 36a6cc4..3fef5f6 100644
> --- a/hw/acpi/aml-build.c
> +++ b/hw/acpi/aml-build.c
> @@ -258,6 +258,22 @@ static void build_append_int(GArray *table, uint64_t value)
>      }
>  }
>  
> +/* Generic Address Structure (GAS)
> + * ACPI 2.0/3.0: 5.2.3.1 Generic Address Structure
> + * 2.0 compat note:
> + *    @access_width must be 0, see ACPI 2.0:Table 5-1
> + */
> +void build_append_gas(GArray *table, AmlAddressSpace as,
> +                      uint8_t bit_width, uint8_t bit_offset,
> +                      uint8_t access_width, uint64_t address)
> +{
> +    build_append_int_noprefix(table, as, 1);
> +    build_append_int_noprefix(table, bit_width, 1);
> +    build_append_int_noprefix(table, bit_offset, 1);
> +    build_append_int_noprefix(table, access_width, 1);
> +    build_append_int_noprefix(table, address, 8);
> +}
> +
>  /*
>   * Build NAME(XXXX, 0x00000000) where 0x00000000 is encoded as a dword,
>   * and return the offset to 0x00000000 for runtime patching.
> 

  reply	other threads:[~2018-02-27 12:49 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-22 12:42 [Qemu-arm] [PATCH 0/9] generalize build_fadt() Igor Mammedov
2018-02-22 12:42 ` [Qemu-arm] [PATCH 1/9] acpi: remove unused acpi-dsdt.aml Igor Mammedov
2018-02-22 14:25   ` Gerd Hoffmann
2018-02-27 12:42   ` [Qemu-arm] [Qemu-devel] " Auger Eric
2018-02-27 15:09     ` Igor Mammedov
2018-02-22 12:42 ` [Qemu-arm] [PATCH 2/9] pc: replace pm object initialization with one-liner in acpi_get_pm_info() Igor Mammedov
2018-02-27 12:42   ` [Qemu-arm] [Qemu-devel] " Auger Eric
2018-02-27 23:41   ` [Qemu-arm] " Philippe Mathieu-Daudé
2018-02-22 12:42 ` [Qemu-arm] [PATCH 3/9] acpi: reuse AcpiGenericAddress instead of Acpi20GenericAddress Igor Mammedov
2018-02-27 12:42   ` [Qemu-arm] [Qemu-devel] " Auger Eric
2018-02-22 12:42 ` [Qemu-arm] [PATCH 4/9] acpi: add build_append_gas() helper for Generic Address Structure Igor Mammedov
2018-02-27 12:48   ` Auger Eric [this message]
2018-02-22 12:42 ` [Qemu-arm] [PATCH 5/9] pc: acpi: isolate FADT specific data into AcpiFadtData structure Igor Mammedov
2018-02-27 13:47   ` [Qemu-arm] [Qemu-devel] " Auger Eric
2018-02-27 15:44     ` Igor Mammedov
2018-02-22 12:42 ` [Qemu-arm] [PATCH 6/9] pc: acpi: use build_append_foo() API to construct FADT Igor Mammedov
2018-02-27 14:10   ` [Qemu-arm] [Qemu-devel] " Auger Eric
2018-02-22 12:42 ` [Qemu-devel] [PATCH 7/9] acpi: move build_fadt() from i386 specific to generic ACPI source Igor Mammedov
2018-02-27 14:15   ` [Qemu-arm] " Auger Eric
2018-02-22 12:42 ` [Qemu-arm] [PATCH 8/9] virt_arm: acpi: reuse common build_fadt() Igor Mammedov
2018-02-27 14:42   ` [Qemu-devel] " Auger Eric
2018-02-27 15:07   ` [Qemu-arm] " Auger Eric
2018-02-27 15:49     ` Igor Mammedov
2018-02-22 12:42 ` [Qemu-arm] [PATCH 9/9] tests: acpi: don't read all fields in test_acpi_fadt_table() Igor Mammedov

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=4c3fb706-41e8-0b2f-f2b9-25f0ef60b90d@redhat.com \
    --to=eric.auger@redhat.com \
    --cc=drjones@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=mst@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.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).