Files
Guo Dong 927f60e884 Add BuildFdtLib for universal payload support
New universal payload uses FDT instead HOB to pass information
from bootloader to payload. This BuildFdtLib could help build
the required FDT nodes.

Signed-off-by: Guo Dong <guo.dong@intel.com>
2025-01-10 13:19:29 -07:00

23 lines
453 B
C

/** @file
This library will Build the FDT (flat device tree) table information.
Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef BUILD_FDT_LIB_H_
#define BUILD_FDT_LIB_H_
/**
Build FDT node table for universal payload.
@retval Start address of FDT node table. NULL if there is failure to build FDT node.
**/
VOID *
EFIAPI
BuildFdtForUpl (
VOID
);
#endif