Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 2 | /* |
Heinrich Schuchardt | b9b4cec | 2022-02-05 08:45:55 +0100 | [diff] [blame] | 3 | * efi_selftest_fdt |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2018 Heinrich Schuchardt <xypron.glpk@gmx.de> |
Heinrich Schuchardt | b9b4cec | 2022-02-05 08:45:55 +0100 | [diff] [blame] | 6 | * Copyright (c) 2022 Ventana Micro Systems Inc |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 7 | * |
Heinrich Schuchardt | b9b4cec | 2022-02-05 08:45:55 +0100 | [diff] [blame] | 8 | * Check the device tree, test the RISCV_EFI_BOOT_PROTOCOL. |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
Heinrich Schuchardt | b9b4cec | 2022-02-05 08:45:55 +0100 | [diff] [blame] | 11 | #include <efi_riscv.h> |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 12 | #include <efi_selftest.h> |
Heinrich Schuchardt | 9967adb | 2018-03-12 19:52:25 +0100 | [diff] [blame] | 13 | #include <linux/libfdt.h> |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 14 | |
Heinrich Schuchardt | 68066d5 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 15 | static const struct efi_system_table *systemtab; |
| 16 | static const struct efi_boot_services *boottime; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 17 | static const char *fdt; |
| 18 | |
Heinrich Schuchardt | d8b2216 | 2018-09-27 20:44:40 +0200 | [diff] [blame] | 19 | /* This should be sufficient for */ |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 20 | #define BUFFERSIZE 0x100000 |
| 21 | |
Heinrich Schuchardt | 68066d5 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 22 | static const efi_guid_t fdt_guid = EFI_FDT_GUID; |
| 23 | static const efi_guid_t acpi_guid = EFI_ACPI_TABLE_GUID; |
Heinrich Schuchardt | b9b4cec | 2022-02-05 08:45:55 +0100 | [diff] [blame] | 24 | static const efi_guid_t riscv_efi_boot_protocol_guid = |
| 25 | RISCV_EFI_BOOT_PROTOCOL_GUID; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 26 | |
Heinrich Schuchardt | 9abd2ca | 2021-11-25 18:55:09 +0100 | [diff] [blame] | 27 | /** |
| 28 | * f2h() - convert FDT value to host endianness. |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 29 | * |
Heinrich Schuchardt | 9abd2ca | 2021-11-25 18:55:09 +0100 | [diff] [blame] | 30 | * UEFI code is always low endian. The FDT is big endian. |
| 31 | * |
| 32 | * @val: FDT value |
| 33 | * Return: converted value |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 34 | */ |
| 35 | static uint32_t f2h(fdt32_t val) |
| 36 | { |
| 37 | char *buf = (char *)&val; |
| 38 | char i; |
| 39 | |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 40 | /* 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 Schuchardt | 9abd2ca | 2021-11-25 18:55:09 +0100 | [diff] [blame] | 43 | |
| 44 | return val; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 45 | } |
| 46 | |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 47 | /** |
| 48 | * get_property() - return value of a property of an FDT node |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 49 | * |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 50 | * 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 Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 55 | * Return: value of the property |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 56 | */ |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 57 | static char *get_property(const u16 *property, const u16 *node) |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 58 | { |
| 59 | struct fdt_header *header = (struct fdt_header *)fdt; |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 60 | const fdt32_t *end; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 61 | const fdt32_t *pos; |
| 62 | const char *strings; |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 63 | size_t level = 0; |
| 64 | const char *nodelabel = NULL; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 65 | |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 66 | if (!header) { |
| 67 | efi_st_error("Missing device tree\n"); |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 68 | return NULL; |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 69 | } |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 70 | |
| 71 | if (f2h(header->magic) != FDT_MAGIC) { |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 72 | efi_st_error("Wrong device tree magic\n"); |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 73 | return NULL; |
| 74 | } |
| 75 | |
| 76 | pos = (fdt32_t *)(fdt + f2h(header->off_dt_struct)); |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 77 | end = &pos[f2h(header->totalsize) >> 2]; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 78 | strings = fdt + f2h(header->off_dt_strings); |
| 79 | |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 80 | for (; pos < end;) { |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 81 | switch (f2h(pos[0])) { |
| 82 | case FDT_BEGIN_NODE: { |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 83 | const char *c = (char *)&pos[1]; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 84 | size_t i; |
| 85 | |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 86 | if (level == 1) |
| 87 | nodelabel = c; |
| 88 | ++level; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 89 | 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 Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 100 | 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 Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 104 | 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 Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 117 | efi_st_error("AllocatePool failed\n"); |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 118 | 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 Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 130 | ++pos; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 131 | break; |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 132 | case FDT_END_NODE: |
| 133 | --level; |
| 134 | ++pos; |
| 135 | break; |
| 136 | case FDT_END: |
| 137 | return NULL; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 138 | default: |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 139 | efi_st_error("Invalid device tree token\n"); |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 140 | return NULL; |
| 141 | } |
| 142 | } |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 143 | efi_st_error("Missing FDT_END token\n"); |
| 144 | return NULL; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | /* |
| 148 | * Setup unit test. |
| 149 | * |
| 150 | * @handle: handle of the loaded image |
| 151 | * @systable: system table |
Heinrich Schuchardt | 3dd719d | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 152 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 153 | */ |
| 154 | static int setup(const efi_handle_t img_handle, |
| 155 | const struct efi_system_table *systable) |
| 156 | { |
Heinrich Schuchardt | 68066d5 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 157 | void *acpi; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 158 | |
Heinrich Schuchardt | 68066d5 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 159 | systemtab = systable; |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 160 | boottime = systable->boottime; |
| 161 | |
Heinrich Schuchardt | 68066d5 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 162 | acpi = efi_st_get_config_table(&acpi_guid); |
| 163 | fdt = efi_st_get_config_table(&fdt_guid); |
| 164 | |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 165 | if (!fdt) { |
| 166 | efi_st_error("Missing device tree\n"); |
| 167 | return EFI_ST_FAILURE; |
| 168 | } |
Heinrich Schuchardt | 68066d5 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 169 | if (acpi) { |
| 170 | efi_st_error("Found ACPI table and device tree\n"); |
| 171 | return EFI_ST_FAILURE; |
| 172 | } |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 173 | return EFI_ST_SUCCESS; |
| 174 | } |
| 175 | |
Heinrich Schuchardt | b9b4cec | 2022-02-05 08:45:55 +0100 | [diff] [blame] | 176 | __maybe_unused static efi_status_t get_boot_hartid(efi_uintn_t *efi_hartid) |
| 177 | { |
| 178 | efi_status_t ret; |
| 179 | struct riscv_efi_boot_protocol *prot; |
| 180 | |
| 181 | /* Get RISC-V boot protocol */ |
| 182 | ret = boottime->locate_protocol(&riscv_efi_boot_protocol_guid, NULL, |
| 183 | (void **)&prot); |
| 184 | if (ret != EFI_SUCCESS) { |
| 185 | efi_st_error("RISC-V Boot Protocol not available\n"); |
| 186 | return EFI_ST_FAILURE; |
| 187 | } |
| 188 | |
| 189 | /* Get boot hart ID from EFI protocol */ |
| 190 | ret = prot->get_boot_hartid(prot, efi_hartid); |
| 191 | if (ret != EFI_SUCCESS) { |
| 192 | efi_st_error("Could not retrieve boot hart ID\n"); |
| 193 | return EFI_ST_FAILURE; |
| 194 | } |
| 195 | |
| 196 | return EFI_ST_SUCCESS; |
| 197 | } |
| 198 | |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 199 | /* |
| 200 | * Execute unit test. |
| 201 | * |
Heinrich Schuchardt | 3dd719d | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 202 | * Return: EFI_ST_SUCCESS for success |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 203 | */ |
| 204 | static int execute(void) |
| 205 | { |
| 206 | char *str; |
| 207 | efi_status_t ret; |
| 208 | |
Simon Glass | 156ccbc | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 209 | str = get_property(u"compatible", NULL); |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 210 | if (str) { |
| 211 | efi_st_printf("compatible: %s\n", str); |
| 212 | ret = boottime->free_pool(str); |
| 213 | if (ret != EFI_SUCCESS) { |
| 214 | efi_st_error("FreePool failed\n"); |
| 215 | return EFI_ST_FAILURE; |
| 216 | } |
| 217 | } else { |
Heinrich Schuchardt | 18161a8 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 218 | efi_st_error("Missing property 'compatible'\n"); |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 219 | return EFI_ST_FAILURE; |
| 220 | } |
Simon Glass | 156ccbc | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 221 | str = get_property(u"serial-number", NULL); |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 222 | if (str) { |
| 223 | efi_st_printf("serial-number: %s\n", str); |
| 224 | ret = boottime->free_pool(str); |
| 225 | if (ret != EFI_SUCCESS) { |
| 226 | efi_st_error("FreePool failed\n"); |
| 227 | return EFI_ST_FAILURE; |
| 228 | } |
| 229 | } |
Heinrich Schuchardt | b94217a | 2024-06-18 14:23:48 +0200 | [diff] [blame] | 230 | if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL_MEASURE_DTB)) { |
| 231 | str = get_property(u"kaslr-seed", u"chosen"); |
| 232 | if (str) { |
| 233 | efi_st_error("kaslr-seed with measured fdt\n"); |
| 234 | return EFI_ST_FAILURE; |
| 235 | } |
| 236 | } |
Heinrich Schuchardt | 52a8481 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 237 | if (IS_ENABLED(CONFIG_RISCV)) { |
Heinrich Schuchardt | b9b4cec | 2022-02-05 08:45:55 +0100 | [diff] [blame] | 238 | u32 fdt_hartid; |
| 239 | |
| 240 | str = get_property(u"boot-hartid", u"chosen"); |
| 241 | if (!str) { |
| 242 | efi_st_error("boot-hartid missing in devicetree\n"); |
| 243 | return EFI_ST_FAILURE; |
| 244 | } |
| 245 | fdt_hartid = f2h(*(fdt32_t *)str); |
| 246 | efi_st_printf("boot-hartid: %u\n", fdt_hartid); |
| 247 | |
| 248 | ret = boottime->free_pool(str); |
| 249 | if (ret != EFI_SUCCESS) { |
| 250 | efi_st_error("FreePool failed\n"); |
| 251 | return EFI_ST_FAILURE; |
| 252 | } |
| 253 | |
| 254 | if (IS_ENABLED(CONFIG_EFI_RISCV_BOOT_PROTOCOL)) { |
| 255 | efi_uintn_t efi_hartid; |
| 256 | int r; |
| 257 | |
| 258 | r = get_boot_hartid(&efi_hartid); |
| 259 | if (r != EFI_ST_SUCCESS) |
| 260 | return r; |
| 261 | /* Boot hart ID should be same */ |
| 262 | if (efi_hartid != fdt_hartid) { |
| 263 | efi_st_error("boot-hartid differs: prot 0x%p, DT 0x%.8x\n", |
| 264 | (void *)(uintptr_t)efi_hartid, |
| 265 | fdt_hartid); |
Heinrich Schuchardt | 52a8481 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 266 | return EFI_ST_FAILURE; |
| 267 | } |
Heinrich Schuchardt | 52a8481 | 2020-09-17 07:33:29 +0200 | [diff] [blame] | 268 | } |
| 269 | } |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 270 | |
| 271 | return EFI_ST_SUCCESS; |
| 272 | } |
| 273 | |
| 274 | EFI_UNIT_TEST(fdt) = { |
| 275 | .name = "device tree", |
| 276 | .phase = EFI_EXECUTE_BEFORE_BOOTTIME_EXIT, |
| 277 | .setup = setup, |
| 278 | .execute = execute, |
Heinrich Schuchardt | 06c3d5b | 2018-03-03 15:29:04 +0100 | [diff] [blame] | 279 | }; |