]> git.proxmox.com Git - mirror_edk2.git/blob - StandaloneMmPkg/Include/StandaloneMm.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / StandaloneMmPkg / Include / StandaloneMm.h
1 /** @file
2 Standalone MM.
3
4 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
5 Copyright (c) 2016 - 2018, ARM Limited. All rights reserved.<BR>
6
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11 #ifndef _STANDALONE_MM_H_
12 #define _STANDALONE_MM_H_
13
14 #include <PiMm.h>
15
16 typedef
17 EFI_STATUS
18 (EFIAPI *MM_IMAGE_ENTRY_POINT)(
19 IN EFI_HANDLE ImageHandle,
20 IN EFI_MM_SYSTEM_TABLE *MmSystemTable
21 );
22
23 typedef
24 EFI_STATUS
25 (EFIAPI *STANDALONE_MM_FOUNDATION_ENTRY_POINT)(
26 IN VOID *HobStart
27 );
28
29 #endif