* [PATCH] fixup! efi: guid: add some more GUIDs
@ 2025-12-18 19:30 Ahmad Fatoum
0 siblings, 0 replies; 3+ messages in thread
From: Ahmad Fatoum @ 2025-12-18 19:30 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
From: Sascha Hauer <s.hauer@pengutronix.de>
efi: guid: declare extern efi_smbios3_guid in header
We added the definition, but omitted the extern definition, so it can be
used.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
include/efi/guid.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/efi/guid.h b/include/efi/guid.h
index cc9449fd8bb6..f6018b5f7ef8 100644
--- a/include/efi/guid.h
+++ b/include/efi/guid.h
@@ -41,6 +41,7 @@ extern const efi_guid_t efi_load_file2_protocol_guid;
extern const efi_guid_t efi_device_path_utilities_protocol_guid;
extern const efi_guid_t efi_linux_initrd_media_guid;
extern const efi_guid_t efi_smbios_guid;
+extern const efi_guid_t efi_smbios3_guid;
extern const efi_guid_t efi_gop_guid;
extern const efi_guid_t efi_snp_guid;
extern const efi_guid_t efi_text_input_ex_guid;
--
2.47.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] fixup! efi: guid: add some more GUIDs
2025-12-15 8:30 ` [PATCH] fixup! " Ahmad Fatoum
@ 2025-12-15 9:03 ` Sascha Hauer
0 siblings, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2025-12-15 9:03 UTC (permalink / raw)
To: barebox, Ahmad Fatoum
On Mon, 15 Dec 2025 09:30:22 +0100, Ahmad Fatoum wrote:
> efi: guid: add SMBIOS3 GUID as well
>
> The EFI loader will install a table with a SMBIOS3 table, so let's
> squeeze its GUID in for preparation.
>
> Having all GUIDs added in a single commit gives some more flexibility
> with ordering the protocols and tables for which support is going to be
> added.
>
> [...]
Applied, thanks!
[1/1] fixup! efi: guid: add some more GUIDs
https://git.pengutronix.de/cgit/barebox/commit/?id=9c5619f9019a (link may not be stable)
Best regards,
--
Sascha Hauer <s.hauer@pengutronix.de>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] fixup! efi: guid: add some more GUIDs
2025-12-11 20:30 [PATCH 12/16] " Ahmad Fatoum
@ 2025-12-15 8:30 ` Ahmad Fatoum
2025-12-15 9:03 ` Sascha Hauer
0 siblings, 1 reply; 3+ messages in thread
From: Ahmad Fatoum @ 2025-12-15 8:30 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
efi: guid: add SMBIOS3 GUID as well
The EFI loader will install a table with a SMBIOS3 table, so let's
squeeze its GUID in for preparation.
Having all GUIDs added in a single commit gives some more flexibility
with ordering the protocols and tables for which support is going to be
added.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
efi/guid.c | 1 +
include/efi/guid.h | 8 ++++++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/efi/guid.c b/efi/guid.c
index cbea412c1c42..8853829d216b 100644
--- a/efi/guid.c
+++ b/efi/guid.c
@@ -35,6 +35,7 @@ const efi_guid_t efi_device_path_utilities_protocol_guid =
EFI_DEVICE_PATH_UTILITIES_PROTOCOL_GUID;
const efi_guid_t efi_linux_initrd_media_guid = EFI_LINUX_INITRD_MEDIA_GUID;
const efi_guid_t efi_smbios_guid = EFI_SMBIOS_TABLE_GUID;
+const efi_guid_t efi_smbios3_guid = EFI_SMBIOS3_TABLE_GUID;
const efi_guid_t efi_guid_hii_database_protocol = EFI_HII_DATABASE_PROTOCOL_GUID;
const efi_guid_t efi_guid_hii_string_protocol = EFI_HII_STRING_PROTOCOL_GUID;
const efi_guid_t efi_guid_hii_config_routing_protocol = EFI_HII_CONFIG_ROUTING_PROTOCOL_GUID;
diff --git a/include/efi/guid.h b/include/efi/guid.h
index eafd80b25ccd..202300c74aaa 100644
--- a/include/efi/guid.h
+++ b/include/efi/guid.h
@@ -41,6 +41,7 @@ extern const efi_guid_t efi_load_file2_protocol_guid;
extern const efi_guid_t efi_device_path_utilities_protocol_guid;
extern const efi_guid_t efi_linux_initrd_media_guid;
extern const efi_guid_t efi_smbios_guid;
+extern const efi_guid_t efi_smbios3_guid;
extern const efi_guid_t efi_gop_guid;
extern const efi_guid_t efi_snp_guid;
extern const efi_guid_t efi_text_input_ex_guid;
@@ -71,8 +72,11 @@ extern const efi_guid_t efi_debug_image_info_table_guid;
#define EFI_ACPI_20_TABLE_GUID \
EFI_GUID( 0x8868e871, 0xe4f1, 0x11d3, 0xbc, 0x22, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 )
-#define EFI_SMBIOS_TABLE_GUID \
- EFI_GUID( 0xeb9d2d31, 0x2d88, 0x11d3, 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d )
+#define EFI_SMBIOS_TABLE_GUID \
+ EFI_GUID(0xeb9d2d31, 0x2d88, 0x11d3, 0x9a, 0x16, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d )
+
+#define EFI_SMBIOS3_TABLE_GUID \
+ EFI_GUID(0xf2fd1544, 0x9794, 0x4a2c, 0x99, 0x2e, 0xe5, 0xbb, 0xcf, 0x20, 0xe3, 0x94 )
#define EFI_SAL_SYSTEM_TABLE_GUID \
EFI_GUID( 0xeb9d2d32, 0x2d88, 0x11d3, 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d )
--
2.47.3
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-18 19:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-18 19:30 [PATCH] fixup! efi: guid: add some more GUIDs Ahmad Fatoum
-- strict thread matches above, loose matches on Subject: below --
2025-12-11 20:30 [PATCH 12/16] " Ahmad Fatoum
2025-12-15 8:30 ` [PATCH] fixup! " Ahmad Fatoum
2025-12-15 9:03 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox