Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 2 | /* |
| 3 | * EFI hello world |
| 4 | * |
| 5 | * Copyright (c) 2016 Google, Inc |
| 6 | * Written by Simon Glass <sjg@chromium.org> |
| 7 | * |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 8 | * This program demonstrates calling a boottime service. |
| 9 | * It writes a greeting and the load options to the console. |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 13 | #include <efi_api.h> |
| 14 | |
Alexander Graf | ae67dca | 2017-12-11 09:40:47 +0100 | [diff] [blame] | 15 | static const efi_guid_t loaded_image_guid = LOADED_IMAGE_GUID; |
Heinrich Schuchardt | 0aaabbb | 2018-01-19 20:24:42 +0100 | [diff] [blame] | 16 | static const efi_guid_t fdt_guid = EFI_FDT_GUID; |
Bin Meng | 47cae01 | 2018-06-27 20:38:04 -0700 | [diff] [blame] | 17 | static const efi_guid_t acpi_guid = EFI_ACPI_TABLE_GUID; |
Heinrich Schuchardt | 0aaabbb | 2018-01-19 20:24:42 +0100 | [diff] [blame] | 18 | static const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID; |
| 19 | |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 20 | /** |
| 21 | * hw_memcmp() - compare memory areas |
| 22 | * |
| 23 | * @buf1: pointer to first area |
| 24 | * @buf2: pointer to second area |
| 25 | * @length: number of bytes to compare |
| 26 | * Return: 0 if both memory areas are the same, otherwise the sign of the |
| 27 | * result value is the same as the sign of ghe difference between |
| 28 | * the first differing pair of bytes taken as u8. |
| 29 | */ |
Heinrich Schuchardt | 0aaabbb | 2018-01-19 20:24:42 +0100 | [diff] [blame] | 30 | static int hw_memcmp(const void *buf1, const void *buf2, size_t length) |
| 31 | { |
| 32 | const u8 *pos1 = buf1; |
| 33 | const u8 *pos2 = buf2; |
| 34 | |
| 35 | for (; length; --length) { |
| 36 | if (*pos1 != *pos2) |
| 37 | return *pos1 - *pos2; |
| 38 | ++pos1; |
| 39 | ++pos2; |
| 40 | } |
| 41 | return 0; |
| 42 | } |
Alexander Graf | ae67dca | 2017-12-11 09:40:47 +0100 | [diff] [blame] | 43 | |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 44 | /** |
| 45 | * efi_main() - entry point of the EFI application. |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 46 | * |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 47 | * @handle: handle of the loaded image |
| 48 | * @systable: system table |
| 49 | * @return: status code |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 50 | */ |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 51 | efi_status_t EFIAPI efi_main(efi_handle_t handle, |
| 52 | struct efi_system_table *systable) |
| 53 | { |
| 54 | struct efi_simple_text_output_protocol *con_out = systable->con_out; |
| 55 | struct efi_boot_services *boottime = systable->boottime; |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 56 | struct efi_loaded_image *loaded_image; |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 57 | efi_status_t ret; |
Heinrich Schuchardt | 0aaabbb | 2018-01-19 20:24:42 +0100 | [diff] [blame] | 58 | efi_uintn_t i; |
Heinrich Schuchardt | f7c342f | 2018-02-05 18:24:26 +0100 | [diff] [blame] | 59 | u16 rev[] = L"0.0.0"; |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 60 | |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 61 | /* UEFI requires CR LF */ |
| 62 | con_out->output_string(con_out, L"Hello, world!\r\n"); |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 63 | |
Heinrich Schuchardt | f7c342f | 2018-02-05 18:24:26 +0100 | [diff] [blame] | 64 | /* Print the revision number */ |
| 65 | rev[0] = (systable->hdr.revision >> 16) + '0'; |
| 66 | rev[4] = systable->hdr.revision & 0xffff; |
| 67 | for (; rev[4] >= 10;) { |
| 68 | rev[4] -= 10; |
| 69 | ++rev[2]; |
| 70 | } |
| 71 | /* Third digit is only to be shown if non-zero */ |
| 72 | if (rev[4]) |
| 73 | rev[4] += '0'; |
| 74 | else |
| 75 | rev[3] = 0; |
| 76 | |
| 77 | con_out->output_string(con_out, L"Running on UEFI "); |
| 78 | con_out->output_string(con_out, rev); |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 79 | con_out->output_string(con_out, L"\r\n"); |
Heinrich Schuchardt | f7c342f | 2018-02-05 18:24:26 +0100 | [diff] [blame] | 80 | |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 81 | /* Get the loaded image protocol */ |
| 82 | ret = boottime->handle_protocol(handle, &loaded_image_guid, |
| 83 | (void **)&loaded_image); |
| 84 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 85 | con_out->output_string |
| 86 | (con_out, L"Cannot open loaded image protocol\r\n"); |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 87 | goto out; |
| 88 | } |
Heinrich Schuchardt | 0aaabbb | 2018-01-19 20:24:42 +0100 | [diff] [blame] | 89 | /* Find configuration tables */ |
| 90 | for (i = 0; i < systable->nr_tables; ++i) { |
| 91 | if (!hw_memcmp(&systable->tables[i].guid, &fdt_guid, |
| 92 | sizeof(efi_guid_t))) |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 93 | con_out->output_string |
| 94 | (con_out, L"Have device tree\r\n"); |
Bin Meng | 47cae01 | 2018-06-27 20:38:04 -0700 | [diff] [blame] | 95 | if (!hw_memcmp(&systable->tables[i].guid, &acpi_guid, |
| 96 | sizeof(efi_guid_t))) |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 97 | con_out->output_string |
| 98 | (con_out, L"Have ACPI 2.0 table\r\n"); |
Heinrich Schuchardt | 0aaabbb | 2018-01-19 20:24:42 +0100 | [diff] [blame] | 99 | if (!hw_memcmp(&systable->tables[i].guid, &smbios_guid, |
| 100 | sizeof(efi_guid_t))) |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 101 | con_out->output_string |
| 102 | (con_out, L"Have SMBIOS table\r\n"); |
Heinrich Schuchardt | 0aaabbb | 2018-01-19 20:24:42 +0100 | [diff] [blame] | 103 | } |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 104 | /* Output the load options */ |
| 105 | con_out->output_string(con_out, L"Load options: "); |
| 106 | if (loaded_image->load_options_size && loaded_image->load_options) |
| 107 | con_out->output_string(con_out, |
| 108 | (u16 *)loaded_image->load_options); |
| 109 | else |
| 110 | con_out->output_string(con_out, L"<none>"); |
Heinrich Schuchardt | 87fc275 | 2018-09-24 23:53:51 +0200 | [diff] [blame] | 111 | con_out->output_string(con_out, L"\r\n"); |
Heinrich Schuchardt | bbf75dd | 2017-11-26 14:05:20 +0100 | [diff] [blame] | 112 | |
| 113 | out: |
| 114 | boottime->exit(handle, ret, 0, NULL); |
| 115 | |
| 116 | /* We should never arrive here */ |
| 117 | return ret; |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 118 | } |