1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2019 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
9 #include <acpi/acpi_table.h>
10 #include <asm/acpi_table.h>
11 #include <asm/global_data.h>
14 DECLARE_GLOBAL_DATA_PTR;
17 * dump_hdr() - Dump an ACPI header
19 * If the header is for FACS then it shows the revision information as well
21 * @hdr: ACPI header to dump
23 static void dump_hdr(struct acpi_table_header *hdr)
25 bool has_hdr = memcmp(hdr->signature, "FACS", ACPI_NAME_LEN);
27 printf("%.*s %08lx %5x", ACPI_NAME_LEN, hdr->signature,
28 (ulong)map_to_sysmem(hdr), hdr->length);
30 printf(" v%02d %.6s %.8s %x %.4s %x\n", hdr->revision,
31 hdr->oem_id, hdr->oem_table_id, hdr->oem_revision,
32 hdr->aslc_id, hdr->aslc_revision);
39 * find_table() - Look up an ACPI table
41 * @sig: Signature of table (4 characters, upper case)
42 * Return: pointer to table header, or NULL if not found
44 struct acpi_table_header *find_table(const char *sig)
46 struct acpi_rsdp *rsdp;
47 struct acpi_rsdt *rsdt;
50 rsdp = map_sysmem(gd_acpi_start(), 0);
53 rsdt = map_sysmem(rsdp->rsdt_address, 0);
54 len = rsdt->header.length - sizeof(rsdt->header);
55 count = len / sizeof(u32);
56 for (i = 0; i < count; i++) {
57 struct acpi_table_header *hdr;
59 hdr = map_sysmem(rsdt->entry[i], 0);
60 if (!memcmp(hdr->signature, sig, ACPI_NAME_LEN))
62 if (!memcmp(hdr->signature, "FACP", ACPI_NAME_LEN)) {
63 struct acpi_fadt *fadt = (struct acpi_fadt *)hdr;
65 if (!memcmp(sig, "DSDT", ACPI_NAME_LEN) && fadt->dsdt)
66 return map_sysmem(fadt->dsdt, 0);
67 if (!memcmp(sig, "FACS", ACPI_NAME_LEN) &&
69 return map_sysmem(fadt->firmware_ctrl, 0);
76 static int dump_table_name(const char *sig)
78 struct acpi_table_header *hdr;
80 hdr = find_table(sig);
83 printf("%.*s @ %08lx\n", ACPI_NAME_LEN, hdr->signature,
84 (ulong)map_to_sysmem(hdr));
85 print_buffer(0, hdr, 1, hdr->length, 0);
90 static void list_fadt(struct acpi_fadt *fadt)
93 dump_hdr(map_sysmem(fadt->dsdt, 0));
94 if (fadt->firmware_ctrl)
95 dump_hdr(map_sysmem(fadt->firmware_ctrl, 0));
98 static int list_rsdt(struct acpi_rsdt *rsdt, struct acpi_xsdt *xsdt)
102 dump_hdr(&rsdt->header);
104 dump_hdr(&xsdt->header);
105 len = rsdt->header.length - sizeof(rsdt->header);
106 count = len / sizeof(u32);
107 for (i = 0; i < count; i++) {
108 struct acpi_table_header *hdr;
112 hdr = map_sysmem(rsdt->entry[i], 0);
114 if (!memcmp(hdr->signature, "FACP", ACPI_NAME_LEN))
115 list_fadt((struct acpi_fadt *)hdr);
117 if (xsdt->entry[i] != rsdt->entry[i]) {
118 printf(" (xsdt mismatch %llx)\n",
127 static int list_rsdp(struct acpi_rsdp *rsdp)
129 struct acpi_rsdt *rsdt;
130 struct acpi_xsdt *xsdt;
132 printf("RSDP %08lx %5x v%02d %.6s\n", (ulong)map_to_sysmem(rsdp),
133 rsdp->length, rsdp->revision, rsdp->oem_id);
134 rsdt = map_sysmem(rsdp->rsdt_address, 0);
135 xsdt = map_sysmem(rsdp->xsdt_address, 0);
136 list_rsdt(rsdt, xsdt);
141 static int do_acpi_list(struct cmd_tbl *cmdtp, int flag, int argc,
144 struct acpi_rsdp *rsdp;
146 rsdp = map_sysmem(gd_acpi_start(), 0);
148 printf("No ACPI tables present\n");
151 printf("Name Base Size Detail\n");
152 printf("---- -------- ----- ------\n");
158 static int do_acpi_items(struct cmd_tbl *cmdtp, int flag, int argc,
163 dump_contents = argc >= 2 && !strcmp("-d", argv[1]);
164 acpi_dump_items(dump_contents ? ACPI_DUMP_CONTENTS : ACPI_DUMP_LIST);
169 static int do_acpi_dump(struct cmd_tbl *cmdtp, int flag, int argc,
173 char sig[ACPI_NAME_LEN];
177 if (strlen(name) != ACPI_NAME_LEN) {
178 printf("Table name '%s' must be four characters\n", name);
179 return CMD_RET_FAILURE;
181 str_to_upper(name, sig, ACPI_NAME_LEN);
182 ret = dump_table_name(sig);
184 printf("Table '%.*s' not found\n", ACPI_NAME_LEN, sig);
185 return CMD_RET_FAILURE;
191 #ifdef CONFIG_SYS_LONGHELP
192 static char acpi_help_text[] =
193 "list - list ACPI tables\n"
194 "acpi items [-d] - List/dump each piece of ACPI data from devices\n"
195 "acpi dump <name> - Dump ACPI table";
198 U_BOOT_CMD_WITH_SUBCMDS(acpi, "ACPI tables", acpi_help_text,
199 U_BOOT_SUBCMD_MKENT(list, 1, 1, do_acpi_list),
200 U_BOOT_SUBCMD_MKENT(items, 2, 1, do_acpi_items),
201 U_BOOT_SUBCMD_MKENT(dump, 2, 1, do_acpi_dump));