]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
acpi: Support generation of a scope
authorSimon Glass <sjg@chromium.org>
Wed, 8 Jul 2020 03:32:10 +0000 (21:32 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 17 Jul 2020 06:32:24 +0000 (14:32 +0800)
Add a function to write a scope to the generated ACPI code.

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>
[bmeng: Fix build failures on Sandbox]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
include/acpi/acpigen.h
lib/acpi/acpigen.c
test/dm/acpi.c
test/dm/acpi.h
test/dm/acpigen.c

index c6644bc2b239da8c08cefa211eb48c214e590928..4a606125de0aa483311a949bc7baf292566d7466 100644 (file)
@@ -31,6 +31,7 @@ enum {
        DWORD_PREFIX            = 0x0c,
        STRING_PREFIX           = 0x0d,
        QWORD_PREFIX            = 0x0e,
+       SCOPE_OP                = 0x10,
        BUFFER_OP               = 0x11,
        PACKAGE_OP              = 0x12,
        METHOD_OP               = 0x14,
@@ -261,6 +262,14 @@ void acpigen_emit_namestring(struct acpi_ctx *ctx, const char *namepath);
  */
 void acpigen_write_name(struct acpi_ctx *ctx, const char *namepath);
 
+/**
+ * acpigen_write_scope() - Write a scope
+ *
+ * @ctx: ACPI context pointer
+ * @scope: Scope to write (e.g. "\\_SB.ABCD")
+ */
+void acpigen_write_scope(struct acpi_ctx *ctx, const char *scope);
+
 /**
  * acpigen_write_uuid() - Write a UUID
  *
index 45216c1f9d6f40e6fc42ad7a5cca51c62faa17e5..1e0a489d7b93ed9960bcaba2efb37283babbcb51 100644 (file)
@@ -258,6 +258,13 @@ void acpigen_write_name(struct acpi_ctx *ctx, const char *namepath)
        acpigen_emit_namestring(ctx, namepath);
 }
 
+void acpigen_write_scope(struct acpi_ctx *ctx, const char *scope)
+{
+       acpigen_emit_byte(ctx, SCOPE_OP);
+       acpigen_write_len_f(ctx);
+       acpigen_emit_namestring(ctx, scope);
+}
+
 static void acpigen_write_method_internal(struct acpi_ctx *ctx,
                                          const char *name, uint flags)
 {
index 7768f9514cfe2f20d9fd3cc8d8d7c423221dfc64..b94c4ba4d134c8c710bbf59a0e58292db8be6dbd 100644 (file)
@@ -20,9 +20,8 @@
 #include <dm/acpi.h>
 #include <dm/test.h>
 #include <test/ut.h>
+#include "acpi.h"
 
-#define ACPI_TEST_DEV_NAME     "ABCD"
-#define ACPI_TEST_CHILD_NAME   "EFGH"
 #define BUF_SIZE               4096
 
 /**
index 885dff85d3d9d447efd8a0fad1ccab567116af0e..535db56b51e408963a9b1a89438f59b04f63cc25 100644 (file)
@@ -9,6 +9,9 @@
 #ifndef __TEST_DM_ACPI_H
 #define __TEST_DM_ACPI_H
 
+#define ACPI_TEST_DEV_NAME     "ABCD"
+#define ACPI_TEST_CHILD_NAME   "EFGH"
+
 /**
  * acpi_test_alloc_context_size() - Allocate an ACPI context of a given size
  *
index f25be938a47485b1a2012e115a89e15f2b3dc7ad..46792d8e89fe1f25c36bd78fc6d98d7a530c6b75 100644 (file)
@@ -916,3 +916,34 @@ static int dm_test_acpi_write_values(struct unit_test_state *uts)
        return 0;
 }
 DM_TEST(dm_test_acpi_write_values, 0);
+
+/* Test writing a scope */
+static int dm_test_acpi_scope(struct unit_test_state *uts)
+{
+       char buf[ACPI_PATH_MAX];
+       struct acpi_ctx *ctx;
+       struct udevice *dev;
+       u8 *ptr;
+
+       ut_assertok(alloc_context(&ctx));
+       ptr = acpigen_get_current(ctx);
+
+       ut_assertok(uclass_first_device_err(UCLASS_TEST_ACPI, &dev));
+       ut_assertok(acpi_device_path(dev, buf, sizeof(buf)));
+       acpigen_write_scope(ctx, buf);
+       acpigen_pop_len(ctx);
+
+       ut_asserteq(SCOPE_OP, *ptr++);
+       ut_asserteq(13, acpi_test_get_length(ptr));
+       ptr += 3;
+       ut_asserteq(ROOT_PREFIX, *ptr++);
+       ut_asserteq(DUAL_NAME_PREFIX, *ptr++);
+       ut_asserteq_strn("_SB_" ACPI_TEST_DEV_NAME, (char *)ptr);
+       ptr += 8;
+       ut_asserteq_ptr(ptr, ctx->current);
+
+       free_context(&ctx);
+
+       return 0;
+}
+DM_TEST(dm_test_acpi_scope, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);