u-boot/lib/efi_loader/efi_debug_support.c
Ying-Chun Liu (PaulLiu) e7a85ec651 efi: add EFI_DEBUG_IMAGE_INFO_TABLE for debug
EFI_DEBUG_IMAGE_INFO_TABLE is used to store EFI_LOADED_IMAGE for
debug purpose. This commit adds the table to the EFI_CONFIGURATION_TABLE.

This feature is described in UEFI Spec version 2.10. Section 18.4.
The implementation ensures support for hardware-assisted debugging and
provides a standardized mechanism for debuggers to discover and interact
with system-level debug resources.

Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
Cc: Peter Robinson <pbrobinson@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Ying-Chun Liu (PaulLiu) <paul.liu@linaro.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
2025-07-03 12:25:56 +03:00

47 lines
1.2 KiB
C

// SPDX-License-Identifier: GPL-2.0-or-later
/*
* EFI debug support
*
* Copyright (c) 2025 Ying-Chun Liu, Linaro Ltd. <paul.liu@linaro.org>
*/
#include <efi_loader.h>
#include <linux/sizes.h>
#include <u-boot/crc.h>
struct efi_system_table_pointer __efi_runtime_data * systab_pointer = NULL;
struct efi_debug_image_info_table_header efi_m_debug_info_table_header = {
0,
0,
NULL
};
/**
* efi_initialize_system_table_pointer() - Initialize system table pointer
*
* Return: status code
*/
efi_status_t efi_initialize_system_table_pointer(void)
{
/* Allocate efi_system_table_pointer structure with 4MB alignment. */
systab_pointer = efi_alloc_aligned_pages(sizeof(struct efi_system_table_pointer),
EFI_RUNTIME_SERVICES_DATA,
SZ_4M);
if (!systab_pointer) {
log_err("Installing EFI system table pointer failed\n");
return EFI_OUT_OF_RESOURCES;
}
systab_pointer->crc32 = 0;
systab_pointer->signature = EFI_SYSTEM_TABLE_SIGNATURE;
systab_pointer->efi_system_table_base = (uintptr_t)&systab;
systab_pointer->crc32 = crc32(0,
(const unsigned char *)systab_pointer,
sizeof(struct efi_system_table_pointer));
return EFI_SUCCESS;
}