Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | // SPDX-License-Identifier: GPL-2.0+ /* * Hello world EFI application * * Copyright (c) 2016 Google, Inc * Written by Simon Glass <sjg@chromium.org> * * Copyright 2020, Heinrich Schuchardt <xypron.glpk@gmx.de> * * This test program is used to test the invocation of an EFI application. * It writes * * * a greeting * * the firmware's UEFI version * * the installed configuration tables * * the boot device's device path and the file path * * to the console. */ #include <efi_api.h> static const efi_guid_t loaded_image_guid = EFI_LOADED_IMAGE_PROTOCOL_GUID; static const efi_guid_t device_path_to_text_protocol_guid = EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID; static const efi_guid_t device_path_guid = EFI_DEVICE_PATH_PROTOCOL_GUID; static const efi_guid_t fdt_guid = EFI_FDT_GUID; static const efi_guid_t acpi_guid = EFI_ACPI_TABLE_GUID; static const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID; static struct efi_system_table *systable; static struct efi_boot_services *boottime; static struct efi_simple_text_output_protocol *con_out; /* * Print an unsigned 32bit value as decimal number to an u16 string * * @value: value to be printed * @buf: pointer to buffer address * on return position of terminating zero word */ static void uint2dec(u32 value, u16 **buf) { u16 *pos = *buf; int i; u16 c; u64 f; /* * Increment by .5 and multiply with * (2 << 60) / 1,000,000,000 = 0x44B82FA0.9B5A52CC * to move the first digit to bit 60-63. */ f = 0x225C17D0; f += (0x9B5A52DULL * value) >> 28; f += 0x44B82FA0ULL * value; for (i = 0; i < 10; ++i) { /* Write current digit */ c = f >> 60; if (c || pos != *buf) *pos++ = c + '0'; /* Eliminate current digit */ f &= 0xfffffffffffffff; /* Get next digit */ f *= 0xaULL; } if (pos == *buf) *pos++ = '0'; *pos = 0; *buf = pos; } /** * Print an unsigned 32bit value as hexadecimal number to an u16 string * * @value: value to be printed * @buf: pointer to buffer address * on return position of terminating zero word */ static void uint2hex(u32 value, u16 **buf) { u16 *pos = *buf; int i; u16 c; for (i = 0; i < 8; ++i) { /* Write current digit */ c = value >> 28; value <<= 4; if (c < 10) c += '0'; else c += 'a' - 10; *pos++ = c; } *pos = 0; *buf = pos; } /** * print_uefi_revision() - print UEFI revision number */ static void print_uefi_revision(void) { u16 rev[13] = {0}; u16 *buf = rev; u16 digit; uint2dec(systable->hdr.revision >> 16, &buf); *buf++ = '.'; uint2dec(systable->hdr.revision & 0xffff, &buf); /* Minor revision is only to be shown if non-zero */ digit = *--buf; if (digit == '0') { *buf = 0; } else { *buf++ = '.'; *buf = digit; } con_out->output_string(con_out, u"Running on UEFI "); con_out->output_string(con_out, rev); con_out->output_string(con_out, u"\r\n"); con_out->output_string(con_out, u"Firmware vendor: "); con_out->output_string(con_out, systable->fw_vendor); con_out->output_string(con_out, u"\r\n"); buf = rev; uint2hex(systable->fw_revision, &buf); con_out->output_string(con_out, u"Firmware revision: "); con_out->output_string(con_out, rev); con_out->output_string(con_out, u"\r\n"); } /** * print_config_tables() - print configuration tables */ static void print_config_tables(void) { efi_uintn_t i; /* Find configuration tables */ for (i = 0; i < systable->nr_tables; ++i) { if (!memcmp(&systable->tables[i].guid, &fdt_guid, sizeof(efi_guid_t))) con_out->output_string (con_out, u"Have device tree\r\n"); if (!memcmp(&systable->tables[i].guid, &acpi_guid, sizeof(efi_guid_t))) con_out->output_string (con_out, u"Have ACPI 2.0 table\r\n"); if (!memcmp(&systable->tables[i].guid, &smbios_guid, sizeof(efi_guid_t))) con_out->output_string (con_out, u"Have SMBIOS table\r\n"); } } /** * print_load_options() - print load options * * @systable: system table * @con_out: simple text output protocol */ static void print_load_options(struct efi_loaded_image *loaded_image) { /* Output the load options */ con_out->output_string(con_out, u"Load options: "); if (loaded_image->load_options_size && loaded_image->load_options) con_out->output_string(con_out, (u16 *)loaded_image->load_options); else con_out->output_string(con_out, u"<none>"); con_out->output_string(con_out, u"\r\n"); } /** * print_device_path() - print device path * * @device_path: device path to print * @dp2txt: device path to text protocol */ static efi_status_t print_device_path(struct efi_device_path *device_path, struct efi_device_path_to_text_protocol *dp2txt) { u16 *string; efi_status_t ret; if (!device_path) { con_out->output_string(con_out, u"<none>\r\n"); return EFI_SUCCESS; } string = dp2txt->convert_device_path_to_text(device_path, true, false); if (!string) { con_out->output_string (con_out, u"Cannot convert device path to text\r\n"); return EFI_OUT_OF_RESOURCES; } con_out->output_string(con_out, string); con_out->output_string(con_out, u"\r\n"); ret = boottime->free_pool(string); if (ret != EFI_SUCCESS) { con_out->output_string(con_out, u"Cannot free pool memory\r\n"); return ret; } return EFI_SUCCESS; } /** * efi_main() - entry point of the EFI application. * * @handle: handle of the loaded image * @systab: system table * Return: status code */ efi_status_t EFIAPI efi_main(efi_handle_t handle, struct efi_system_table *systab) { struct efi_loaded_image *loaded_image; struct efi_device_path_to_text_protocol *device_path_to_text; struct efi_device_path *device_path; efi_status_t ret; systable = systab; boottime = systable->boottime; con_out = systable->con_out; /* UEFI requires CR LF */ con_out->output_string(con_out, u"Hello, world!\r\n"); print_uefi_revision(); print_config_tables(); /* Get the loaded image protocol */ ret = boottime->open_protocol(handle, &loaded_image_guid, (void **)&loaded_image, NULL, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL); if (ret != EFI_SUCCESS) { con_out->output_string (con_out, u"Cannot open loaded image protocol\r\n"); goto out; } print_load_options(loaded_image); /* Get the device path to text protocol */ ret = boottime->locate_protocol(&device_path_to_text_protocol_guid, NULL, (void **)&device_path_to_text); if (ret != EFI_SUCCESS) { con_out->output_string (con_out, u"Cannot open device path to text protocol\r\n"); goto out; } con_out->output_string(con_out, u"File path: "); ret = print_device_path(loaded_image->file_path, device_path_to_text); if (ret != EFI_SUCCESS) goto out; if (!loaded_image->device_handle) { con_out->output_string (con_out, u"Missing device handle\r\n"); goto out; } ret = boottime->open_protocol(loaded_image->device_handle, &device_path_guid, (void **)&device_path, NULL, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL); if (ret != EFI_SUCCESS) { con_out->output_string (con_out, u"Missing device path for device handle\r\n"); goto out; } con_out->output_string(con_out, u"Boot device: "); ret = print_device_path(device_path, device_path_to_text); if (ret != EFI_SUCCESS) goto out; out: boottime->exit(handle, ret, 0, NULL); /* We should never arrive here */ return ret; } |