From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40163) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEK0h-0006Qo-Hr for qemu-devel@nongnu.org; Thu, 22 Jan 2015 10:49:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YEK0e-0003eq-9n for qemu-devel@nongnu.org; Thu, 22 Jan 2015 10:49:31 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46531) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEK0e-0003ei-2Z for qemu-devel@nongnu.org; Thu, 22 Jan 2015 10:49:28 -0500 From: Igor Mammedov Date: Thu, 22 Jan 2015 14:49:53 +0000 Message-Id: <1421938231-25698-10-git-send-email-imammedo@redhat.com> In-Reply-To: <1421938231-25698-1-git-send-email-imammedo@redhat.com> References: <1421938231-25698-1-git-send-email-imammedo@redhat.com> Subject: [Qemu-devel] [PATCH v2 09/47] acpi: add acpi_int() term List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, drjones@redhat.com, marcel.a@redhat.com, claudio.fontana@huawei.com, mst@redhat.com Signed-off-by: Igor Mammedov --- hw/acpi/acpi-build-utils.c | 11 +++++++++++ include/hw/acpi/acpi-build-utils.h | 1 + 2 files changed, 12 insertions(+) diff --git a/hw/acpi/acpi-build-utils.c b/hw/acpi/acpi-build-utils.c index b68e1d8..745e58b 100644 --- a/hw/acpi/acpi-build-utils.c +++ b/hw/acpi/acpi-build-utils.c @@ -305,6 +305,17 @@ static AcpiAml aml_allocate_internal(uint8_t op, AcpiBlockFlags flags) } /* + * ACPI 5.0: 20.2.3 Data Objects Encoding: + * encodes: ByteConst, WordConst, DWordConst, QWordConst, ZeroOp, OneOp + */ +AcpiAml acpi_int(const uint64_t val) +{ + AcpiAml var = aml_allocate_internal(0, NON_BLOCK); + build_append_int(var.buf, val); + return var; +} + +/* * help to construct NameString, which return AcpiAml object * for using with other aml_append or other acpi_* terms */ diff --git a/include/hw/acpi/acpi-build-utils.h b/include/hw/acpi/acpi-build-utils.h index d21e107..2ea53f9 100644 --- a/include/hw/acpi/acpi-build-utils.h +++ b/include/hw/acpi/acpi-build-utils.h @@ -22,6 +22,7 @@ typedef struct AcpiAml { void aml_append(AcpiAml *parent_ctx, AcpiAml child); /* non block ASL object primitives */ +AcpiAml acpi_int(const uint64_t val); AcpiAml GCC_FMT_ATTR(1, 2) acpi_name(const char *name_format, ...); AcpiAml acpi_name_decl(const char *name, AcpiAml val); /* Block ASL object primitives */ -- 1.8.3.1