Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 2 | /* |
| 3 | * EFI application tables support |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
Heinrich Schuchardt | c193d9b | 2021-05-15 18:07:47 +0200 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_EFI |
| 9 | |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 10 | #include <efi_loader.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 12 | #include <malloc.h> |
Simon Glass | a2505fc | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 13 | #include <mapmem.h> |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 14 | #include <smbios.h> |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 15 | #include <linux/sizes.h> |
Heinrich Schuchardt | efe441a | 2024-01-03 09:07:20 +0100 | [diff] [blame] | 16 | #include <asm/global_data.h> |
| 17 | |
| 18 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 19 | |
Simon Glass | 138e691 | 2023-12-31 08:25:49 -0700 | [diff] [blame] | 20 | const efi_guid_t smbios3_guid = SMBIOS3_TABLE_GUID; |
| 21 | |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 22 | enum { |
| 23 | TABLE_SIZE = SZ_4K, |
| 24 | }; |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 25 | |
Heinrich Schuchardt | 7657152 | 2018-03-03 15:28:54 +0100 | [diff] [blame] | 26 | /* |
| 27 | * Install the SMBIOS table as a configuration table. |
| 28 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 29 | * Return: status code |
Heinrich Schuchardt | 7657152 | 2018-03-03 15:28:54 +0100 | [diff] [blame] | 30 | */ |
| 31 | efi_status_t efi_smbios_register(void) |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 32 | { |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 33 | ulong addr; |
Heinrich Schuchardt | 7657152 | 2018-03-03 15:28:54 +0100 | [diff] [blame] | 34 | efi_status_t ret; |
Simon Glass | 138e691 | 2023-12-31 08:25:49 -0700 | [diff] [blame] | 35 | void *buf; |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 36 | |
Simon Glass | b2b58e1 | 2023-12-31 08:25:48 -0700 | [diff] [blame] | 37 | addr = gd_smbios_start(); |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 38 | if (!addr) { |
| 39 | log_err("No SMBIOS tables to install\n"); |
| 40 | return EFI_NOT_FOUND; |
Alexander Graf | 62f3757 | 2018-06-18 17:23:00 +0200 | [diff] [blame] | 41 | } |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 42 | |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 43 | /* Mark space used for tables */ |
| 44 | ret = efi_add_memory_map(addr, TABLE_SIZE, EFI_RUNTIME_SERVICES_DATA); |
| 45 | if (ret) |
| 46 | return ret; |
| 47 | |
| 48 | log_debug("EFI using SMBIOS tables at %lx\n", addr); |
| 49 | |
| 50 | /* Install SMBIOS information as configuration table */ |
Simon Glass | 138e691 | 2023-12-31 08:25:49 -0700 | [diff] [blame] | 51 | buf = map_sysmem(addr, 0); |
Simon Glass | aa84996 | 2023-12-31 08:25:52 -0700 | [diff] [blame] | 52 | ret = efi_install_configuration_table(&smbios3_guid, buf); |
Simon Glass | 138e691 | 2023-12-31 08:25:49 -0700 | [diff] [blame] | 53 | unmap_sysmem(buf); |
| 54 | |
| 55 | return ret; |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 56 | } |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 57 | |
| 58 | static int install_smbios_table(void) |
| 59 | { |
Simon Glass | 06ef808 | 2023-12-31 08:25:55 -0700 | [diff] [blame] | 60 | ulong addr; |
| 61 | void *buf; |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 62 | |
Heinrich Schuchardt | 1c5aab8 | 2023-12-23 02:03:34 +0100 | [diff] [blame] | 63 | if (!IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLE) || |
| 64 | IS_ENABLED(CONFIG_X86) || |
| 65 | IS_ENABLED(CONFIG_QFW_SMBIOS)) |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 66 | return 0; |
| 67 | |
Simon Glass | 06ef808 | 2023-12-31 08:25:55 -0700 | [diff] [blame] | 68 | /* Align the table to a 4KB boundary to keep EFI happy */ |
| 69 | buf = memalign(SZ_4K, TABLE_SIZE); |
| 70 | if (!buf) |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 71 | return log_msg_ret("mem", -ENOMEM); |
| 72 | |
Simon Glass | 06ef808 | 2023-12-31 08:25:55 -0700 | [diff] [blame] | 73 | addr = map_to_sysmem(buf); |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 74 | if (!write_smbios_table(addr)) { |
| 75 | log_err("Failed to write SMBIOS table\n"); |
| 76 | return log_msg_ret("smbios", -EINVAL); |
| 77 | } |
| 78 | |
| 79 | /* Make a note of where we put it */ |
Simon Glass | 06ef808 | 2023-12-31 08:25:55 -0700 | [diff] [blame] | 80 | log_debug("SMBIOS tables written to %lx\n", addr); |
Simon Glass | 53fab13 | 2023-09-20 07:29:51 -0600 | [diff] [blame] | 81 | gd->arch.smbios_start = addr; |
| 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, install_smbios_table); |