]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/Library/OpensslLib/UefiAsm.conf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / CryptoPkg / Library / OpensslLib / UefiAsm.conf
1 ## -*- mode: perl; -*-
2 # UEFI assembly openssl configuration targets.
3 #
4 # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
5 #
6 # SPDX-License-Identifier: BSD-2-Clause-Patent
7 #
8 ##
9
10 my %targets = (
11 #### UEFI
12 "UEFI-x86_64" => {
13 perlasm_scheme => "nasm",
14 # inherit_from => [ "UEFI", asm("x86_64_asm") ],
15 inherit_from => [ "UEFI" ],
16 cpuid_asm_src => "x86_64cpuid.s",
17 aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s",
18 sha1_asm_src => "sha1-x86_64.s sha256-x86_64.s sha512-x86_64.s sha1-mb-x86_64.s sha256-mb-x86_64.s",
19 modes_asm_src => "ghash-x86_64.s aesni-gcm-x86_64.s",
20 },
21 "UEFI-x86_64-GCC" => {
22 perlasm_scheme => "elf",
23 # inherit_from => [ "UEFI", asm("x86_64_asm") ],
24 inherit_from => [ "UEFI" ],
25 cpuid_asm_src => "x86_64cpuid.s",
26 aes_asm_src => "aes_core.c aes_cbc.c vpaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s",
27 sha1_asm_src => "sha1-x86_64.s sha256-x86_64.s sha512-x86_64.s sha1-mb-x86_64.s sha256-mb-x86_64.s",
28 modes_asm_src => "ghash-x86_64.s aesni-gcm-x86_64.s",
29 },
30 );