]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
acpi: Support generation of ACPI code
authorSimon Glass <sjg@chromium.org>
Tue, 7 Jul 2020 19:11:42 +0000 (13:11 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 17 Jul 2020 06:32:24 +0000 (14:32 +0800)
Add a new file to handle generating ACPI code programatically. This is
used when information must be dynamically added to the tables, e.g. the
SSDT.

Initial support is just for writing simple values. Also add a 'base' value
so that the table can be freed. This likely doesn't happen in normal code,
but is nice to do in tests.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
include/acpi/acpigen.h [new file with mode: 0644]
include/dm/acpi.h
lib/acpi/Makefile
lib/acpi/acpi_table.c
lib/acpi/acpigen.c [new file with mode: 0644]
test/dm/Makefile
test/dm/acpigen.c [new file with mode: 0644]

diff --git a/include/acpi/acpigen.h b/include/acpi/acpigen.h
new file mode 100644 (file)
index 0000000..8809cdb
--- /dev/null
@@ -0,0 +1,49 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Core ACPI (Advanced Configuration and Power Interface) support
+ *
+ * Copyright 2019 Google LLC
+ *
+ * Modified from coreboot file acpigen.h
+ */
+
+#ifndef __ACPI_ACPIGEN_H
+#define __ACPI_ACPIGEN_H
+
+#include <linux/types.h>
+
+struct acpi_ctx;
+
+/**
+ * acpigen_get_current() - Get the current ACPI code output pointer
+ *
+ * @ctx: ACPI context pointer
+ * @return output pointer
+ */
+u8 *acpigen_get_current(struct acpi_ctx *ctx);
+
+/**
+ * acpigen_emit_byte() - Emit a byte to the ACPI code
+ *
+ * @ctx: ACPI context pointer
+ * @data: Value to output
+ */
+void acpigen_emit_byte(struct acpi_ctx *ctx, uint data);
+
+/**
+ * acpigen_emit_word() - Emit a 16-bit word to the ACPI code
+ *
+ * @ctx: ACPI context pointer
+ * @data: Value to output
+ */
+void acpigen_emit_word(struct acpi_ctx *ctx, uint data);
+
+/**
+ * acpigen_emit_dword() - Emit a 32-bit 'double word' to the ACPI code
+ *
+ * @ctx: ACPI context pointer
+ * @data: Value to output
+ */
+void acpigen_emit_dword(struct acpi_ctx *ctx, uint data);
+
+#endif
index 7563a4c60a72d0852dac168ae134d52cc172eaa2..696b1a96a0999e0a2ef8e7e4a39b7028a851d51d 100644 (file)
@@ -29,6 +29,7 @@
  *
  * This contains a few useful pieces of information used when writing
  *
+ * @base: Base address of ACPI tables
  * @current: Current address for writing
  * @rsdp: Pointer to the Root System Description Pointer, typically used when
  *     adding a new table. The RSDP holds pointers to the RSDT and XSDT.
@@ -36,6 +37,7 @@
  * @xsdt: Pointer to the Extended System Description Table
  */
 struct acpi_ctx {
+       void *base;
        void *current;
        struct acpi_rsdp *rsdp;
        struct acpi_rsdt *rsdt;
index caae6c01bd91284919d53ec1062d9b9717c78bb5..85a1f774ad409cea02665c92efeca42846514b33 100644 (file)
@@ -1,5 +1,6 @@
 # SPDX-License-Identifier: GPL-2.0+
 #
 
+obj-y += acpigen.o
 obj-y += acpi_device.o
 obj-y += acpi_table.o
index 431776666e2b0b66b51df267dbdf829fc2086835..acc55e7fad69e6e476e4e870b6a44ec7366063bd 100644 (file)
@@ -237,6 +237,7 @@ static void acpi_write_xsdt(struct acpi_xsdt *xsdt)
 
 void acpi_setup_base_tables(struct acpi_ctx *ctx, void *start)
 {
+       ctx->base = start;
        ctx->current = start;
 
        /* Align ACPI tables to 16 byte */
diff --git a/lib/acpi/acpigen.c b/lib/acpi/acpigen.c
new file mode 100644 (file)
index 0000000..a42ae26
--- /dev/null
@@ -0,0 +1,39 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Generation of ACPI (Advanced Configuration and Power Interface) tables
+ *
+ * Copyright 2019 Google LLC
+ * Mostly taken from coreboot
+ */
+
+#define LOG_CATEGORY LOGC_ACPI
+
+#include <common.h>
+#include <dm.h>
+#include <acpi/acpigen.h>
+#include <dm/acpi.h>
+
+u8 *acpigen_get_current(struct acpi_ctx *ctx)
+{
+       return ctx->current;
+}
+
+void acpigen_emit_byte(struct acpi_ctx *ctx, uint data)
+{
+       *(u8 *)ctx->current++ = data;
+}
+
+void acpigen_emit_word(struct acpi_ctx *ctx, uint data)
+{
+       acpigen_emit_byte(ctx, data & 0xff);
+       acpigen_emit_byte(ctx, (data >> 8) & 0xff);
+}
+
+void acpigen_emit_dword(struct acpi_ctx *ctx, uint data)
+{
+       /* Output the value in little-endian format */
+       acpigen_emit_byte(ctx, data & 0xff);
+       acpigen_emit_byte(ctx, (data >> 8) & 0xff);
+       acpigen_emit_byte(ctx, (data >> 16) & 0xff);
+       acpigen_emit_byte(ctx, (data >> 24) & 0xff);
+}
index 0d1c66fa1e65f4de73b089e56665fa8f7ef55ea3..5641070ea115dd2ec6a7d7d2b7855396b22f53b8 100644 (file)
@@ -14,6 +14,7 @@ obj-$(CONFIG_UT_DM) += test-uclass.o
 obj-$(CONFIG_UT_DM) += core.o
 ifneq ($(CONFIG_SANDBOX),)
 obj-$(CONFIG_ACPIGEN) += acpi.o
+obj-$(CONFIG_ACPIGEN) += acpigen.o
 obj-$(CONFIG_SOUND) += audio.o
 obj-$(CONFIG_BLK) += blk.o
 obj-$(CONFIG_BOARD) += board.o
diff --git a/test/dm/acpigen.c b/test/dm/acpigen.c
new file mode 100644 (file)
index 0000000..9ff9b68
--- /dev/null
@@ -0,0 +1,72 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Tests for ACPI code generation
+ *
+ * Copyright 2019 Google LLC
+ * Written by Simon Glass <sjg@chromium.org>
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <malloc.h>
+#include <acpi/acpigen.h>
+#include <asm/unaligned.h>
+#include <dm/acpi.h>
+#include <dm/test.h>
+#include <test/ut.h>
+
+/* Maximum size of the ACPI context needed for most tests */
+#define ACPI_CONTEXT_SIZE      150
+
+static int alloc_context(struct acpi_ctx **ctxp)
+{
+       struct acpi_ctx *ctx;
+
+       *ctxp = NULL;
+       ctx = malloc(sizeof(*ctx));
+       if (!ctx)
+               return -ENOMEM;
+       ctx->base = malloc(ACPI_CONTEXT_SIZE);
+       if (!ctx->base) {
+               free(ctx);
+               return -ENOMEM;
+       }
+       ctx->current = ctx->base;
+       *ctxp = ctx;
+
+       return 0;
+}
+
+static void free_context(struct acpi_ctx **ctxp)
+{
+       free((*ctxp)->base);
+       free(*ctxp);
+       *ctxp = NULL;
+}
+
+/* Test emitting simple types and acpigen_get_current() */
+static int dm_test_acpi_emit_simple(struct unit_test_state *uts)
+{
+       struct acpi_ctx *ctx;
+       u8 *ptr;
+
+       ut_assertok(alloc_context(&ctx));
+
+       ptr = acpigen_get_current(ctx);
+       acpigen_emit_byte(ctx, 0x23);
+       ut_asserteq(1, acpigen_get_current(ctx) - ptr);
+       ut_asserteq(0x23, *(u8 *)ptr);
+
+       acpigen_emit_word(ctx, 0x1234);
+       ut_asserteq(3, acpigen_get_current(ctx) - ptr);
+       ut_asserteq(0x1234, get_unaligned((u16 *)(ptr + 1)));
+
+       acpigen_emit_dword(ctx, 0x87654321);
+       ut_asserteq(7, acpigen_get_current(ctx) - ptr);
+       ut_asserteq(0x87654321, get_unaligned((u32 *)(ptr + 3)));
+
+       free_context(&ctx);
+
+       return 0;
+}
+DM_TEST(dm_test_acpi_emit_simple, 0);