blob: e70913e40bfec047757ee8226d3d82a8f34f5370 [file] [log] [blame]
Simon Glass0b885bc2020-04-26 09:19:53 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6#include <common.h>
7#include <command.h>
Simon Glass4e4bf942022-07-31 12:28:48 -06008#include <display_options.h>
Simon Glass0b885bc2020-04-26 09:19:53 -06009#include <mapmem.h>
10#include <acpi/acpi_table.h>
11#include <asm/acpi_table.h>
Simon Glass401d1c42020-10-30 21:38:53 -060012#include <asm/global_data.h>
Simon Glass0b885bc2020-04-26 09:19:53 -060013#include <dm/acpi.h>
14
15DECLARE_GLOBAL_DATA_PTR;
16
17/**
18 * dump_hdr() - Dump an ACPI header
19 *
20 * If the header is for FACS then it shows the revision information as well
21 *
22 * @hdr: ACPI header to dump
23 */
24static void dump_hdr(struct acpi_table_header *hdr)
25{
26 bool has_hdr = memcmp(hdr->signature, "FACS", ACPI_NAME_LEN);
27
Simon Glass06f6f3d2021-12-01 09:03:06 -070028 printf("%.*s %08lx %5x", ACPI_NAME_LEN, hdr->signature,
Simon Glass0b885bc2020-04-26 09:19:53 -060029 (ulong)map_to_sysmem(hdr), hdr->length);
30 if (has_hdr) {
Simon Glass06f6f3d2021-12-01 09:03:06 -070031 printf(" v%02d %.6s %.8s %x %.4s %x\n", hdr->revision,
Simon Glass0b885bc2020-04-26 09:19:53 -060032 hdr->oem_id, hdr->oem_table_id, hdr->oem_revision,
33 hdr->aslc_id, hdr->aslc_revision);
34 } else {
35 printf("\n");
36 }
37}
38
Simon Glass0b885bc2020-04-26 09:19:53 -060039static int dump_table_name(const char *sig)
40{
41 struct acpi_table_header *hdr;
42
Simon Glass37bf4402023-05-04 16:54:58 -060043 hdr = acpi_find_table(sig);
Simon Glass0b885bc2020-04-26 09:19:53 -060044 if (!hdr)
45 return -ENOENT;
46 printf("%.*s @ %08lx\n", ACPI_NAME_LEN, hdr->signature,
47 (ulong)map_to_sysmem(hdr));
48 print_buffer(0, hdr, 1, hdr->length, 0);
49
50 return 0;
51}
52
53static void list_fadt(struct acpi_fadt *fadt)
54{
55 if (fadt->dsdt)
56 dump_hdr(map_sysmem(fadt->dsdt, 0));
57 if (fadt->firmware_ctrl)
58 dump_hdr(map_sysmem(fadt->firmware_ctrl, 0));
59}
60
61static int list_rsdt(struct acpi_rsdt *rsdt, struct acpi_xsdt *xsdt)
62{
63 int len, i, count;
64
65 dump_hdr(&rsdt->header);
66 if (xsdt)
67 dump_hdr(&xsdt->header);
68 len = rsdt->header.length - sizeof(rsdt->header);
69 count = len / sizeof(u32);
70 for (i = 0; i < count; i++) {
71 struct acpi_table_header *hdr;
72
73 if (!rsdt->entry[i])
74 break;
75 hdr = map_sysmem(rsdt->entry[i], 0);
76 dump_hdr(hdr);
77 if (!memcmp(hdr->signature, "FACP", ACPI_NAME_LEN))
78 list_fadt((struct acpi_fadt *)hdr);
79 if (xsdt) {
80 if (xsdt->entry[i] != rsdt->entry[i]) {
81 printf(" (xsdt mismatch %llx)\n",
82 xsdt->entry[i]);
83 }
84 }
85 }
86
87 return 0;
88}
89
90static int list_rsdp(struct acpi_rsdp *rsdp)
91{
92 struct acpi_rsdt *rsdt;
93 struct acpi_xsdt *xsdt;
94
Simon Glass06f6f3d2021-12-01 09:03:06 -070095 printf("RSDP %08lx %5x v%02d %.6s\n", (ulong)map_to_sysmem(rsdp),
Simon Glass0b885bc2020-04-26 09:19:53 -060096 rsdp->length, rsdp->revision, rsdp->oem_id);
97 rsdt = map_sysmem(rsdp->rsdt_address, 0);
98 xsdt = map_sysmem(rsdp->xsdt_address, 0);
99 list_rsdt(rsdt, xsdt);
100
101 return 0;
102}
103
Simon Glass09140112020-05-10 11:40:03 -0600104static int do_acpi_list(struct cmd_tbl *cmdtp, int flag, int argc,
Simon Glass0b885bc2020-04-26 09:19:53 -0600105 char *const argv[])
106{
107 struct acpi_rsdp *rsdp;
108
Simon Glass233f0e32021-12-01 09:02:37 -0700109 rsdp = map_sysmem(gd_acpi_start(), 0);
Simon Glass0b885bc2020-04-26 09:19:53 -0600110 if (!rsdp) {
111 printf("No ACPI tables present\n");
112 return 0;
113 }
Simon Glass06f6f3d2021-12-01 09:03:06 -0700114 printf("Name Base Size Detail\n");
115 printf("---- -------- ----- ------\n");
Simon Glass0b885bc2020-04-26 09:19:53 -0600116 list_rsdp(rsdp);
117
118 return 0;
119}
120
Simon Glassa4f82082020-07-07 13:12:12 -0600121static int do_acpi_items(struct cmd_tbl *cmdtp, int flag, int argc,
122 char *const argv[])
123{
124 bool dump_contents;
125
126 dump_contents = argc >= 2 && !strcmp("-d", argv[1]);
Simon Glass0992a902023-05-04 16:54:57 -0600127 if (!IS_ENABLED(CONFIG_ACPIGEN)) {
128 printf("Not supported (enable ACPIGEN)\n");
129 return CMD_RET_FAILURE;
130 }
Simon Glassa4f82082020-07-07 13:12:12 -0600131 acpi_dump_items(dump_contents ? ACPI_DUMP_CONTENTS : ACPI_DUMP_LIST);
132
133 return 0;
134}
135
Simon Glass09140112020-05-10 11:40:03 -0600136static int do_acpi_dump(struct cmd_tbl *cmdtp, int flag, int argc,
Simon Glass0b885bc2020-04-26 09:19:53 -0600137 char *const argv[])
138{
139 const char *name;
140 char sig[ACPI_NAME_LEN];
141 int ret;
142
Simon Glass0b885bc2020-04-26 09:19:53 -0600143 name = argv[1];
144 if (strlen(name) != ACPI_NAME_LEN) {
145 printf("Table name '%s' must be four characters\n", name);
146 return CMD_RET_FAILURE;
147 }
Andrew Scull3849ca72022-04-03 10:39:09 +0000148 str_to_upper(name, sig, ACPI_NAME_LEN);
Simon Glass0b885bc2020-04-26 09:19:53 -0600149 ret = dump_table_name(sig);
150 if (ret) {
151 printf("Table '%.*s' not found\n", ACPI_NAME_LEN, sig);
152 return CMD_RET_FAILURE;
153 }
154
155 return 0;
156}
157
Simon Glass907bcd32021-03-15 18:00:25 +1300158#ifdef CONFIG_SYS_LONGHELP
Simon Glass0b885bc2020-04-26 09:19:53 -0600159static char acpi_help_text[] =
160 "list - list ACPI tables\n"
Simon Glassa4f82082020-07-07 13:12:12 -0600161 "acpi items [-d] - List/dump each piece of ACPI data from devices\n"
Simon Glass0b885bc2020-04-26 09:19:53 -0600162 "acpi dump <name> - Dump ACPI table";
Simon Glass907bcd32021-03-15 18:00:25 +1300163#endif
Simon Glass0b885bc2020-04-26 09:19:53 -0600164
165U_BOOT_CMD_WITH_SUBCMDS(acpi, "ACPI tables", acpi_help_text,
166 U_BOOT_SUBCMD_MKENT(list, 1, 1, do_acpi_list),
Simon Glassa4f82082020-07-07 13:12:12 -0600167 U_BOOT_SUBCMD_MKENT(items, 2, 1, do_acpi_items),
Simon Glass0b885bc2020-04-26 09:19:53 -0600168 U_BOOT_SUBCMD_MKENT(dump, 2, 1, do_acpi_dump));