/** @file x64-specifc functionality for DxeLoad. Copyright (c) 2006 - 2020, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include #include #include #include #include #include #include #include #include #include "UefiPayloadEntry.h" /** Entry point to the C language phase of UEFI payload. @param[in] Param1, Hartid which is ignored @param[in] Param2, Device Tree @retval It will not return if SUCCESS, and return error when passing bootloader parameter. **/ EFI_STATUS EFIAPI _ModuleEntryPoint ( IN UINTN Param1, IN UINTN Param2 ) { return FitUplEntryPoint (Param2); }