You've already forked slimbootloader
mirror of
https://github.com/Dasharo/slimbootloader.git
synced 2026-03-06 15:26:20 -08:00
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>
23 lines
453 B
C
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
|