blob: 0ca26f57a7f2323f23cfd9747d4bf19df630a44d [file] [log] [blame]
Jose Marinhoff72cb32021-12-23 14:51:07 +00001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * EFI conformance profile table
4 *
5 * Copyright (C) 2022 Arm Ltd.
6 */
7
8#include <common.h>
9#include <efi_loader.h>
10#include <log.h>
11#include <efi_api.h>
12#include <malloc.h>
13
14static const efi_guid_t efi_ecpt_guid = EFI_CONFORMANCE_PROFILES_TABLE_GUID;
Vincent Stehléc53cec62022-12-16 17:55:04 +010015static const efi_guid_t efi_ebbr_2_1_guid =
16 EFI_CONFORMANCE_PROFILE_EBBR_2_1_GUID;
Jose Marinhoff72cb32021-12-23 14:51:07 +000017
18/**
19 * efi_ecpt_register() - Install the ECPT system table.
20 *
21 * Return: status code
22 */
23efi_status_t efi_ecpt_register(void)
24{
Heinrich Schuchardtf8b438e2023-02-10 09:19:41 +010025 u16 num_entries = 0;
Jose Marinhoff72cb32021-12-23 14:51:07 +000026 struct efi_conformance_profiles_table *ecpt;
27 efi_status_t ret;
28 size_t ecpt_size;
29
30 ecpt_size = num_entries * sizeof(efi_guid_t)
31 + sizeof(struct efi_conformance_profiles_table);
32 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, ecpt_size,
33 (void **)&ecpt);
34
35 if (ret != EFI_SUCCESS) {
36 log_err("Out of memory\n");
37
38 return ret;
39 }
40
Vincent Stehléc53cec62022-12-16 17:55:04 +010041 if (CONFIG_IS_ENABLED(EFI_EBBR_2_1_CONFORMANCE))
Jose Marinhoe3b7c9b2021-12-17 12:55:05 +000042 guidcpy(&ecpt->conformance_profiles[num_entries++],
Vincent Stehléc53cec62022-12-16 17:55:04 +010043 &efi_ebbr_2_1_guid);
Jose Marinhoe3b7c9b2021-12-17 12:55:05 +000044
Jose Marinhoff72cb32021-12-23 14:51:07 +000045 ecpt->version = EFI_CONFORMANCE_PROFILES_TABLE_VERSION;
46 ecpt->number_of_profiles = num_entries;
47
48 /* Install the ECPT in the system configuration table. */
49 ret = efi_install_configuration_table(&efi_ecpt_guid, (void *)ecpt);
50 if (ret != EFI_SUCCESS) {
51 log_err("Failed to install ECPT\n");
52 efi_free_pool(ecpt);
53
54 return ret;
55 }
56
57 log_debug("ECPT created\n");
58
59 return EFI_SUCCESS;
60}