blob: 2eb4cb1c1af65cf1093889df4961e557c6ec4a40 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Graf66f96e12016-08-19 01:23:29 +02002/*
3 * EFI application tables support
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Graf66f96e12016-08-19 01:23:29 +02006 */
7
Heinrich Schuchardt21da91f2021-05-15 18:07:47 +02008#define LOG_CATEGORY LOGC_EFI
9
Alexander Graf66f96e12016-08-19 01:23:29 +020010#include <common.h>
11#include <efi_loader.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glass2d93add2018-11-22 13:46:37 -070013#include <mapmem.h>
Alexander Graf66f96e12016-08-19 01:23:29 +020014#include <smbios.h>
15
16static const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID;
17
Heinrich Schuchardt7a369c42018-03-03 15:28:54 +010018/*
19 * Install the SMBIOS table as a configuration table.
20 *
21 * @return status code
22 */
23efi_status_t efi_smbios_register(void)
Alexander Graf66f96e12016-08-19 01:23:29 +020024{
25 /* Map within the low 32 bits, to allow for 32bit SMBIOS tables */
Simon Glass2d93add2018-11-22 13:46:37 -070026 u64 dmi_addr = U32_MAX;
Heinrich Schuchardt7a369c42018-03-03 15:28:54 +010027 efi_status_t ret;
Simon Glass2d93add2018-11-22 13:46:37 -070028 void *dmi;
Alexander Graf66f96e12016-08-19 01:23:29 +020029
Heinrich Schuchardt7a369c42018-03-03 15:28:54 +010030 /* Reserve 4kiB page for SMBIOS */
31 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Simon Glass2d93add2018-11-22 13:46:37 -070032 EFI_RUNTIME_SERVICES_DATA, 1, &dmi_addr);
Alexander Graf17990072018-06-18 17:23:00 +020033
34 if (ret != EFI_SUCCESS) {
35 /* Could not find space in lowmem, use highmem instead */
36 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
Simon Glass2d93add2018-11-22 13:46:37 -070037 EFI_RUNTIME_SERVICES_DATA, 1,
38 &dmi_addr);
Alexander Graf17990072018-06-18 17:23:00 +020039
40 if (ret != EFI_SUCCESS)
41 return ret;
42 }
Alexander Graf66f96e12016-08-19 01:23:29 +020043
Simon Glass2e2858f2018-05-16 09:42:19 -060044 /*
45 * Generate SMBIOS tables - we know that efi_allocate_pages() returns
46 * a 4k-aligned address, so it is safe to assume that
47 * write_smbios_table() will write the table at that address.
48 */
Simon Glass2d93add2018-11-22 13:46:37 -070049 assert(!(dmi_addr & 0xf));
50 dmi = (void *)(uintptr_t)dmi_addr;
Heinrich Schuchardt21da91f2021-05-15 18:07:47 +020051 if (write_smbios_table(map_to_sysmem(dmi)))
52 /* Install SMBIOS information as configuration table */
53 return efi_install_configuration_table(&smbios_guid, dmi);
54 efi_free_pages(dmi_addr, 1);
55 log_err("Cannot create SMBIOS table\n");
56 return EFI_SUCCESS;
Alexander Graf66f96e12016-08-19 01:23:29 +020057}