blob: 114ac58bf5c4e7b665f594973a9261bea315427c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heinrich Schuchardt43d27992018-03-03 15:29:04 +01002/*
Heinrich Schuchardtece3c872022-02-05 08:45:55 +01003 * efi_selftest_fdt
Heinrich Schuchardt43d27992018-03-03 15:29:04 +01004 *
5 * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de>
Heinrich Schuchardtece3c872022-02-05 08:45:55 +01006 * Copyright (c) 2022 Ventana Micro Systems Inc
Heinrich Schuchardt43d27992018-03-03 15:29:04 +01007 *
Heinrich Schuchardtece3c872022-02-05 08:45:55 +01008 * Check the device tree, test the RISCV_EFI_BOOT_PROTOCOL.
Heinrich Schuchardt43d27992018-03-03 15:29:04 +01009 */
10
Heinrich Schuchardtece3c872022-02-05 08:45:55 +010011#include <efi_riscv.h>
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010012#include <efi_selftest.h>
Heinrich Schuchardt0a9b9e52018-03-12 19:52:25 +010013#include <linux/libfdt.h>
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010014
Heinrich Schuchardt1c111f92019-04-20 13:33:55 +020015static const struct efi_system_table *systemtab;
16static const struct efi_boot_services *boottime;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010017static const char *fdt;
18
Heinrich Schuchardt702e7782018-09-27 20:44:40 +020019/* This should be sufficient for */
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010020#define BUFFERSIZE 0x100000
21
Heinrich Schuchardt1c111f92019-04-20 13:33:55 +020022static const efi_guid_t fdt_guid = EFI_FDT_GUID;
23static const efi_guid_t acpi_guid = EFI_ACPI_TABLE_GUID;
Heinrich Schuchardtece3c872022-02-05 08:45:55 +010024static const efi_guid_t riscv_efi_boot_protocol_guid =
25 RISCV_EFI_BOOT_PROTOCOL_GUID;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010026
Heinrich Schuchardtc3da3962021-11-25 18:55:09 +010027/**
28 * f2h() - convert FDT value to host endianness.
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010029 *
Heinrich Schuchardtc3da3962021-11-25 18:55:09 +010030 * UEFI code is always low endian. The FDT is big endian.
31 *
32 * @val: FDT value
33 * Return: converted value
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010034 */
35static uint32_t f2h(fdt32_t val)
36{
37 char *buf = (char *)&val;
38 char i;
39
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010040 /* Swap the bytes */
41 i = buf[0]; buf[0] = buf[3]; buf[3] = i;
42 i = buf[1]; buf[1] = buf[2]; buf[2] = i;
Heinrich Schuchardtc3da3962021-11-25 18:55:09 +010043
44 return val;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010045}
46
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020047/**
48 * get_property() - return value of a property of an FDT node
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010049 *
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020050 * A property of the root node or one of its direct children can be
51 * retrieved.
52 *
53 * @property name of the property
54 * @node name of the node or NULL for root node
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010055 * Return: value of the property
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010056 */
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020057static char *get_property(const u16 *property, const u16 *node)
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010058{
59 struct fdt_header *header = (struct fdt_header *)fdt;
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020060 const fdt32_t *end;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010061 const fdt32_t *pos;
62 const char *strings;
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020063 size_t level = 0;
64 const char *nodelabel = NULL;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010065
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020066 if (!header) {
67 efi_st_error("Missing device tree\n");
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010068 return NULL;
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020069 }
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010070
71 if (f2h(header->magic) != FDT_MAGIC) {
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020072 efi_st_error("Wrong device tree magic\n");
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010073 return NULL;
74 }
75
76 pos = (fdt32_t *)(fdt + f2h(header->off_dt_struct));
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020077 end = &pos[f2h(header->totalsize) >> 2];
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010078 strings = fdt + f2h(header->off_dt_strings);
79
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020080 for (; pos < end;) {
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010081 switch (f2h(pos[0])) {
82 case FDT_BEGIN_NODE: {
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020083 const char *c = (char *)&pos[1];
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010084 size_t i;
85
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +020086 if (level == 1)
87 nodelabel = c;
88 ++level;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +010089 for (i = 0; c[i]; ++i)
90 ;
91 pos = &pos[2 + (i >> 2)];
92 break;
93 }
94 case FDT_PROP: {
95 struct fdt_property *prop = (struct fdt_property *)pos;
96 const char *label = &strings[f2h(prop->nameoff)];
97 efi_status_t ret;
98
99 /* Check if this is the property to be returned */
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +0200100 if (!efi_st_strcmp_16_8(property, label) &&
101 ((level == 1 && !node) ||
102 (level == 2 && node &&
103 !efi_st_strcmp_16_8(node, nodelabel)))) {
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100104 char *str;
105 efi_uintn_t len = f2h(prop->len);
106
107 if (!len)
108 return NULL;
109 /*
110 * The string might not be 0 terminated.
111 * It is safer to make a copy.
112 */
113 ret = boottime->allocate_pool(
114 EFI_LOADER_DATA, len + 1,
115 (void **)&str);
116 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +0200117 efi_st_error("AllocatePool failed\n");
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100118 return NULL;
119 }
120 boottime->copy_mem(str, &pos[3], len);
121 str[len] = 0;
122
123 return str;
124 }
125
126 pos = &pos[3 + ((f2h(prop->len) + 3) >> 2)];
127 break;
128 }
129 case FDT_NOP:
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +0200130 ++pos;
131 break;
132 case FDT_END_NODE:
133 --level;
134 ++pos;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100135 break;
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +0200136 case FDT_END:
137 return NULL;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100138 default:
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +0200139 efi_st_error("Invalid device tree token\n");
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100140 return NULL;
141 }
142 }
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +0200143 efi_st_error("Missing FDT_END token\n");
144 return NULL;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100145}
146
Heinrich Schuchardt1c111f92019-04-20 13:33:55 +0200147/**
148 * efi_st_get_config_table() - get configuration table
149 *
150 * @guid: GUID of the configuration table
151 * Return: pointer to configuration table or NULL
152 */
153static void *efi_st_get_config_table(const efi_guid_t *guid)
154{
155 size_t i;
156
157 for (i = 0; i < systab.nr_tables; i++) {
158 if (!guidcmp(guid, &systemtab->tables[i].guid))
159 return systemtab->tables[i].table;
160 }
161 return NULL;
162}
163
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100164/*
165 * Setup unit test.
166 *
167 * @handle: handle of the loaded image
168 * @systable: system table
Heinrich Schuchardtfbe90212022-01-20 19:48:20 +0100169 * Return: EFI_ST_SUCCESS for success
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100170 */
171static int setup(const efi_handle_t img_handle,
172 const struct efi_system_table *systable)
173{
Heinrich Schuchardt1c111f92019-04-20 13:33:55 +0200174 void *acpi;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100175
Heinrich Schuchardt1c111f92019-04-20 13:33:55 +0200176 systemtab = systable;
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100177 boottime = systable->boottime;
178
Heinrich Schuchardt1c111f92019-04-20 13:33:55 +0200179 acpi = efi_st_get_config_table(&acpi_guid);
180 fdt = efi_st_get_config_table(&fdt_guid);
181
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100182 if (!fdt) {
183 efi_st_error("Missing device tree\n");
184 return EFI_ST_FAILURE;
185 }
Heinrich Schuchardt1c111f92019-04-20 13:33:55 +0200186 if (acpi) {
187 efi_st_error("Found ACPI table and device tree\n");
188 return EFI_ST_FAILURE;
189 }
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100190 return EFI_ST_SUCCESS;
191}
192
Heinrich Schuchardtece3c872022-02-05 08:45:55 +0100193__maybe_unused static efi_status_t get_boot_hartid(efi_uintn_t *efi_hartid)
194{
195 efi_status_t ret;
196 struct riscv_efi_boot_protocol *prot;
197
198 /* Get RISC-V boot protocol */
199 ret = boottime->locate_protocol(&riscv_efi_boot_protocol_guid, NULL,
200 (void **)&prot);
201 if (ret != EFI_SUCCESS) {
202 efi_st_error("RISC-V Boot Protocol not available\n");
203 return EFI_ST_FAILURE;
204 }
205
206 /* Get boot hart ID from EFI protocol */
207 ret = prot->get_boot_hartid(prot, efi_hartid);
208 if (ret != EFI_SUCCESS) {
209 efi_st_error("Could not retrieve boot hart ID\n");
210 return EFI_ST_FAILURE;
211 }
212
213 return EFI_ST_SUCCESS;
214}
215
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100216/*
217 * Execute unit test.
218 *
Heinrich Schuchardtfbe90212022-01-20 19:48:20 +0100219 * Return: EFI_ST_SUCCESS for success
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100220 */
221static int execute(void)
222{
223 char *str;
224 efi_status_t ret;
225
Simon Glass90975372022-01-23 12:55:12 -0700226 str = get_property(u"compatible", NULL);
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100227 if (str) {
228 efi_st_printf("compatible: %s\n", str);
229 ret = boottime->free_pool(str);
230 if (ret != EFI_SUCCESS) {
231 efi_st_error("FreePool failed\n");
232 return EFI_ST_FAILURE;
233 }
234 } else {
Heinrich Schuchardt0fe99562020-09-17 07:33:29 +0200235 efi_st_error("Missing property 'compatible'\n");
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100236 return EFI_ST_FAILURE;
237 }
Simon Glass90975372022-01-23 12:55:12 -0700238 str = get_property(u"serial-number", NULL);
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100239 if (str) {
240 efi_st_printf("serial-number: %s\n", str);
241 ret = boottime->free_pool(str);
242 if (ret != EFI_SUCCESS) {
243 efi_st_error("FreePool failed\n");
244 return EFI_ST_FAILURE;
245 }
246 }
Heinrich Schuchardt2bcaad82020-09-17 07:33:29 +0200247 if (IS_ENABLED(CONFIG_RISCV)) {
Heinrich Schuchardtece3c872022-02-05 08:45:55 +0100248 u32 fdt_hartid;
249
250 str = get_property(u"boot-hartid", u"chosen");
251 if (!str) {
252 efi_st_error("boot-hartid missing in devicetree\n");
253 return EFI_ST_FAILURE;
254 }
255 fdt_hartid = f2h(*(fdt32_t *)str);
256 efi_st_printf("boot-hartid: %u\n", fdt_hartid);
257
258 ret = boottime->free_pool(str);
259 if (ret != EFI_SUCCESS) {
260 efi_st_error("FreePool failed\n");
261 return EFI_ST_FAILURE;
262 }
263
264 if (IS_ENABLED(CONFIG_EFI_RISCV_BOOT_PROTOCOL)) {
265 efi_uintn_t efi_hartid;
266 int r;
267
268 r = get_boot_hartid(&efi_hartid);
269 if (r != EFI_ST_SUCCESS)
270 return r;
271 /* Boot hart ID should be same */
272 if (efi_hartid != fdt_hartid) {
273 efi_st_error("boot-hartid differs: prot 0x%p, DT 0x%.8x\n",
274 (void *)(uintptr_t)efi_hartid,
275 fdt_hartid);
Heinrich Schuchardt2bcaad82020-09-17 07:33:29 +0200276 return EFI_ST_FAILURE;
277 }
Heinrich Schuchardt2bcaad82020-09-17 07:33:29 +0200278 }
279 }
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100280
281 return EFI_ST_SUCCESS;
282}
283
284EFI_UNIT_TEST(fdt) = {
285 .name = "device tree",
286 .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT,
287 .setup = setup,
288 .execute = execute,
Heinrich Schuchardt43d27992018-03-03 15:29:04 +0100289};