mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
Added LoongArch64 support. Currently, LoongArch64 doesn't supports TRNG, it uses the `RDTIME` instruction and a xorshif64 alorithms to compose a PRNG(RngLib). It may supports the SE TRNG in the future, and will change to the TRNG when SE support becomes available. Signed-off-by: Chao Li <lichao@loongson.cn> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn>
51 lines
1.3 KiB
INI
51 lines
1.3 KiB
INI
## @file
|
|
# Module entry point library for UEFI Application that dynamically updates the stack cookie.
|
|
#
|
|
# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = UefiApplicationEntryPointDynamicInit
|
|
MODULE_UNI_FILE = UefiApplication/UefiApplicationEntryPoint.uni
|
|
FILE_GUID = 755B9094-E5AF-4E5B-BE33-D430CDE2C5D2
|
|
MODULE_TYPE = UEFI_APPLICATION
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = UefiApplicationEntryPoint|UEFI_APPLICATION
|
|
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 AARCH64 LOONGARCH64
|
|
#
|
|
|
|
[Sources]
|
|
UefiApplication/ApplicationEntryPoint.c
|
|
|
|
[Sources.IA32]
|
|
IA32/DynamicCookieGcc.nasm | GCC
|
|
IA32/DynamicCookieMsvc.nasm | MSFT
|
|
|
|
[Sources.X64]
|
|
X64/DynamicCookieGcc.nasm | GCC
|
|
X64/DynamicCookieMsvc.nasm | MSFT
|
|
|
|
[Sources.AARCH64]
|
|
AArch64/DynamicCookieGcc.S | GCC
|
|
|
|
[Sources.LOONGARCH64]
|
|
LoongArch64/DynamicCookieGcc.S | GCC
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
|
|
[LibraryClasses]
|
|
UefiBootServicesTableLib
|
|
DebugLib
|
|
BaseLib
|
|
StackCheckLib
|
|
|
|
[LibraryClasses.LOONGARCH64]
|
|
RngLib
|