2018-05-07 21:02:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-08-18 23:23:29 +00:00
|
|
|
/*
|
|
|
|
* EFI application tables support
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Alexander Graf
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <efi_loader.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2018-11-22 20:46:37 +00:00
|
|
|
#include <mapmem.h>
|
2016-08-18 23:23:29 +00:00
|
|
|
#include <smbios.h>
|
|
|
|
|
|
|
|
static const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID;
|
|
|
|
|
2018-03-03 14:28:54 +00:00
|
|
|
/*
|
|
|
|
* Install the SMBIOS table as a configuration table.
|
|
|
|
*
|
|
|
|
* @return status code
|
|
|
|
*/
|
|
|
|
efi_status_t efi_smbios_register(void)
|
2016-08-18 23:23:29 +00:00
|
|
|
{
|
|
|
|
/* Map within the low 32 bits, to allow for 32bit SMBIOS tables */
|
2018-11-22 20:46:37 +00:00
|
|
|
u64 dmi_addr = U32_MAX;
|
2018-03-03 14:28:54 +00:00
|
|
|
efi_status_t ret;
|
2018-11-22 20:46:37 +00:00
|
|
|
void *dmi;
|
2016-08-18 23:23:29 +00:00
|
|
|
|
2018-03-03 14:28:54 +00:00
|
|
|
/* Reserve 4kiB page for SMBIOS */
|
|
|
|
ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
|
2018-11-22 20:46:37 +00:00
|
|
|
EFI_RUNTIME_SERVICES_DATA, 1, &dmi_addr);
|
2018-06-18 15:23:00 +00:00
|
|
|
|
|
|
|
if (ret != EFI_SUCCESS) {
|
|
|
|
/* Could not find space in lowmem, use highmem instead */
|
|
|
|
ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
|
2018-11-22 20:46:37 +00:00
|
|
|
EFI_RUNTIME_SERVICES_DATA, 1,
|
|
|
|
&dmi_addr);
|
2018-06-18 15:23:00 +00:00
|
|
|
|
|
|
|
if (ret != EFI_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
}
|
2016-08-18 23:23:29 +00:00
|
|
|
|
2018-05-16 15:42:19 +00:00
|
|
|
/*
|
|
|
|
* Generate SMBIOS tables - we know that efi_allocate_pages() returns
|
|
|
|
* a 4k-aligned address, so it is safe to assume that
|
|
|
|
* write_smbios_table() will write the table at that address.
|
2018-11-22 20:46:37 +00:00
|
|
|
*
|
|
|
|
* Note that on sandbox, efi_allocate_pages() unfortunately returns a
|
|
|
|
* pointer even though it uses a uint64_t type. Convert it.
|
2018-05-16 15:42:19 +00:00
|
|
|
*/
|
2018-11-22 20:46:37 +00:00
|
|
|
assert(!(dmi_addr & 0xf));
|
|
|
|
dmi = (void *)(uintptr_t)dmi_addr;
|
|
|
|
write_smbios_table(map_to_sysmem(dmi));
|
2016-08-18 23:23:29 +00:00
|
|
|
|
|
|
|
/* And expose them to our EFI payload */
|
2018-11-22 20:46:37 +00:00
|
|
|
return efi_install_configuration_table(&smbios_guid, dmi);
|
2016-08-18 23:23:29 +00:00
|
|
|
}
|