Heinrich Schuchardt | 79d7202 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Root node for system services |
| 4 | * |
| 5 | * Copyright (c) 2018 Heinrich Schuchardt |
| 6 | */ |
| 7 | |
Heinrich Schuchardt | 79d7202 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 8 | #include <malloc.h> |
Heinrich Schuchardt | 2c1e224 | 2020-12-13 10:30:24 +0100 | [diff] [blame] | 9 | #include <efi_dt_fixup.h> |
Heinrich Schuchardt | 79d7202 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 10 | #include <efi_loader.h> |
| 11 | |
| 12 | const efi_guid_t efi_u_boot_guid = U_BOOT_GUID; |
| 13 | |
AKASHI Takahiro | 0b27575 | 2019-04-16 13:24:20 +0900 | [diff] [blame] | 14 | efi_handle_t efi_root = NULL; |
| 15 | |
Heinrich Schuchardt | 79d7202 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 16 | struct efi_root_dp { |
| 17 | struct efi_device_path_vendor vendor; |
| 18 | struct efi_device_path end; |
| 19 | } __packed; |
| 20 | |
| 21 | /** |
| 22 | * efi_root_node_register() - create root node |
| 23 | * |
| 24 | * Create the root node on which we install all protocols that are |
| 25 | * not related to a loaded image or a driver. |
| 26 | * |
| 27 | * Return: status code |
| 28 | */ |
| 29 | efi_status_t efi_root_node_register(void) |
| 30 | { |
Heinrich Schuchardt | 2e0a790 | 2019-05-05 16:55:06 +0200 | [diff] [blame] | 31 | efi_status_t ret; |
Heinrich Schuchardt | 79d7202 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 32 | struct efi_root_dp *dp; |
| 33 | |
Heinrich Schuchardt | 22b9fb9 | 2019-04-12 07:14:43 +0200 | [diff] [blame] | 34 | /* Create device path protocol */ |
Heinrich Schuchardt | 79d7202 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 35 | dp = calloc(1, sizeof(*dp)); |
| 36 | if (!dp) |
| 37 | return EFI_OUT_OF_RESOURCES; |
| 38 | |
| 39 | /* Fill vendor node */ |
| 40 | dp->vendor.dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE; |
| 41 | dp->vendor.dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR; |
| 42 | dp->vendor.dp.length = sizeof(struct efi_device_path_vendor); |
| 43 | dp->vendor.guid = efi_u_boot_guid; |
| 44 | |
| 45 | /* Fill end node */ |
| 46 | dp->end.type = DEVICE_PATH_TYPE_END; |
| 47 | dp->end.sub_type = DEVICE_PATH_SUB_TYPE_END; |
| 48 | dp->end.length = sizeof(struct efi_device_path); |
| 49 | |
Heinrich Schuchardt | 22b9fb9 | 2019-04-12 07:14:43 +0200 | [diff] [blame] | 50 | /* Create root node and install protocols */ |
Ilias Apalodimas | 8ac0ebe | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 51 | ret = efi_install_multiple_protocol_interfaces |
| 52 | (&efi_root, |
| 53 | /* Device path protocol */ |
| 54 | &efi_guid_device_path, dp, |
Heinrich Schuchardt | 3db3591 | 2019-05-11 09:53:33 +0200 | [diff] [blame] | 55 | #if CONFIG_IS_ENABLED(EFI_DEVICE_PATH_TO_TEXT) |
Ilias Apalodimas | 8ac0ebe | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 56 | /* Device path to text protocol */ |
| 57 | &efi_guid_device_path_to_text_protocol, |
| 58 | &efi_device_path_to_text, |
Heinrich Schuchardt | 3db3591 | 2019-05-11 09:53:33 +0200 | [diff] [blame] | 59 | #endif |
Simon Glass | 3e26ee4 | 2023-02-05 15:39:41 -0700 | [diff] [blame] | 60 | #if IS_ENABLED(CONFIG_EFI_DEVICE_PATH_UTIL) |
Ilias Apalodimas | 8ac0ebe | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 61 | /* Device path utilities protocol */ |
| 62 | &efi_guid_device_path_utilities_protocol, |
| 63 | &efi_device_path_utilities, |
Heinrich Schuchardt | 1cb1a9d | 2021-01-16 09:44:25 +0100 | [diff] [blame] | 64 | #endif |
Ilias Apalodimas | 8ac0ebe | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 65 | #if CONFIG_IS_ENABLED(EFI_DT_FIXUP) |
| 66 | /* Device-tree fix-up protocol */ |
| 67 | &efi_guid_dt_fixup_protocol, |
| 68 | &efi_dt_fixup_prot, |
Heinrich Schuchardt | 2c1e224 | 2020-12-13 10:30:24 +0100 | [diff] [blame] | 69 | #endif |
Simon Glass | 8f43811 | 2023-02-05 15:39:47 -0700 | [diff] [blame] | 70 | #if IS_ENABLED(CONFIG_EFI_UNICODE_COLLATION_PROTOCOL2) |
Ilias Apalodimas | 8ac0ebe | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 71 | &efi_guid_unicode_collation_protocol2, |
| 72 | &efi_unicode_collation_protocol2, |
Heinrich Schuchardt | 532fec7 | 2019-05-08 23:24:26 +0200 | [diff] [blame] | 73 | #endif |
Simon Glass | 6b52ab5 | 2023-02-05 15:39:43 -0700 | [diff] [blame] | 74 | #if IS_ENABLED(CONFIG_EFI_LOADER_HII) |
Ilias Apalodimas | 8ac0ebe | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 75 | /* HII string protocol */ |
| 76 | &efi_guid_hii_string_protocol, |
| 77 | &efi_hii_string, |
| 78 | /* HII database protocol */ |
| 79 | &efi_guid_hii_database_protocol, |
| 80 | &efi_hii_database, |
Heinrich Schuchardt | 926e696 | 2019-04-07 23:53:53 +0200 | [diff] [blame] | 81 | #endif |
Ilias Apalodimas | 8ac0ebe | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 82 | NULL); |
Heinrich Schuchardt | 2e0a790 | 2019-05-05 16:55:06 +0200 | [diff] [blame] | 83 | efi_root->type = EFI_OBJECT_TYPE_U_BOOT_FIRMWARE; |
| 84 | return ret; |
Heinrich Schuchardt | 79d7202 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 85 | } |