]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
acpi: Support writing an integer
authorSimon Glass <sjg@chromium.org>
Tue, 7 Jul 2020 19:11:52 +0000 (13:11 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 17 Jul 2020 06:32:24 +0000 (14:32 +0800)
ACPI supports storing integers in various ways. Add a function to handle
this.

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
lib/acpi/acpigen.c
test/dm/acpigen.c

index c1a6bc263caec9ad34c7f75dee5324c8429d877a..9e52ec589f5fa66ef52f4e04c48730d577ef2ce6 100644 (file)
@@ -19,6 +19,12 @@ struct acpi_ctx;
 
 /* ACPI Op/Prefix codes */
 enum {
+       ZERO_OP                 = 0x00,
+       ONE_OP                  = 0x01,
+       BYTE_PREFIX             = 0x0a,
+       WORD_PREFIX             = 0x0b,
+       DWORD_PREFIX            = 0x0c,
+       QWORD_PREFIX            = 0x0e,
        PACKAGE_OP              = 0x12,
 };
 
@@ -138,4 +144,15 @@ void acpigen_pop_len(struct acpi_ctx *ctx);
  */
 char *acpigen_write_package(struct acpi_ctx *ctx, int nr_el);
 
+/**
+ * acpigen_write_integer() - Write an integer
+ *
+ * This writes an operation (BYTE_OP, WORD_OP, DWORD_OP, QWORD_OP depending on
+ * the integer size) and an integer value. Note that WORD means 16 bits in ACPI.
+ *
+ * @ctx: ACPI context pointer
+ * @data: Integer to write
+ */
+void acpigen_write_integer(struct acpi_ctx *ctx, u64 data);
+
 #endif
index 9043c2bc723d609e4f1eaf107e89b58142dfa376..27d4eab7a60783d6b75d31ef42063ba085d6ecdc 100644 (file)
@@ -83,6 +83,57 @@ char *acpigen_write_package(struct acpi_ctx *ctx, int nr_el)
        return p;
 }
 
+void acpigen_write_byte(struct acpi_ctx *ctx, unsigned int data)
+{
+       acpigen_emit_byte(ctx, BYTE_PREFIX);
+       acpigen_emit_byte(ctx, data & 0xff);
+}
+
+void acpigen_write_word(struct acpi_ctx *ctx, unsigned int data)
+{
+       acpigen_emit_byte(ctx, WORD_PREFIX);
+       acpigen_emit_word(ctx, data);
+}
+
+void acpigen_write_dword(struct acpi_ctx *ctx, unsigned int data)
+{
+       acpigen_emit_byte(ctx, DWORD_PREFIX);
+       acpigen_emit_dword(ctx, data);
+}
+
+void acpigen_write_qword(struct acpi_ctx *ctx, u64 data)
+{
+       acpigen_emit_byte(ctx, QWORD_PREFIX);
+       acpigen_emit_dword(ctx, data & 0xffffffff);
+       acpigen_emit_dword(ctx, (data >> 32) & 0xffffffff);
+}
+
+void acpigen_write_zero(struct acpi_ctx *ctx)
+{
+       acpigen_emit_byte(ctx, ZERO_OP);
+}
+
+void acpigen_write_one(struct acpi_ctx *ctx)
+{
+       acpigen_emit_byte(ctx, ONE_OP);
+}
+
+void acpigen_write_integer(struct acpi_ctx *ctx, u64 data)
+{
+       if (data == 0)
+               acpigen_write_zero(ctx);
+       else if (data == 1)
+               acpigen_write_one(ctx);
+       else if (data <= 0xff)
+               acpigen_write_byte(ctx, (unsigned char)data);
+       else if (data <= 0xffff)
+               acpigen_write_word(ctx, (unsigned int)data);
+       else if (data <= 0xffffffff)
+               acpigen_write_dword(ctx, (unsigned int)data);
+       else
+               acpigen_write_qword(ctx, data);
+}
+
 void acpigen_emit_stream(struct acpi_ctx *ctx, const char *data, int size)
 {
        int i;
index aaffc6a4cf5696b1d307ec9d747f0255588c4b90..187001d2fcbcd0e1f0eb0b37317e610aa7a6e69a 100644 (file)
 #define TEST_STRING    "frogmore"
 #define TEST_STREAM2   "\xfa\xde"
 
+#define TEST_INT8      0x7d
+#define TEST_INT16     0x2345
+#define TEST_INT32     0x12345678
+#define TEST_INT64     0x4567890123456
+
 static int alloc_context_size(struct acpi_ctx **ctxp, int size)
 {
        struct acpi_ctx *ctx;
@@ -431,3 +436,44 @@ static int dm_test_acpi_package(struct unit_test_state *uts)
        return 0;
 }
 DM_TEST(dm_test_acpi_package, 0);
+
+/* Test writing an integer */
+static int dm_test_acpi_integer(struct unit_test_state *uts)
+{
+       struct acpi_ctx *ctx;
+       u8 *ptr;
+
+       ut_assertok(alloc_context(&ctx));
+
+       ptr = acpigen_get_current(ctx);
+
+       acpigen_write_integer(ctx, 0);
+       acpigen_write_integer(ctx, 1);
+       acpigen_write_integer(ctx, TEST_INT8);
+       acpigen_write_integer(ctx, TEST_INT16);
+       acpigen_write_integer(ctx, TEST_INT32);
+       acpigen_write_integer(ctx, TEST_INT64);
+
+       ut_asserteq(6 + 1 + 2 + 4 + 8, acpigen_get_current(ctx) - ptr);
+
+       ut_asserteq(ZERO_OP, ptr[0]);
+
+       ut_asserteq(ONE_OP, ptr[1]);
+
+       ut_asserteq(BYTE_PREFIX, ptr[2]);
+       ut_asserteq(TEST_INT8, ptr[3]);
+
+       ut_asserteq(WORD_PREFIX, ptr[4]);
+       ut_asserteq(TEST_INT16, get_unaligned((u16 *)(ptr + 5)));
+
+       ut_asserteq(DWORD_PREFIX, ptr[7]);
+       ut_asserteq(TEST_INT32, get_unaligned((u32 *)(ptr + 8)));
+
+       ut_asserteq(QWORD_PREFIX, ptr[12]);
+       ut_asserteq_64(TEST_INT64, get_unaligned((u64 *)(ptr + 13)));
+
+       free_context(&ctx);
+
+       return 0;
+}
+DM_TEST(dm_test_acpi_integer, 0);