1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. 4 */ 5 6 #ifndef __HOB_GUID_H 7 #define __HOB_GUID_H 8 9 #include <efi/efi_types.h> 10 11 /** 12 * Guid used for creating StandaloneMm relalted information. 13 */ 14 15 #define MM_PEI_MMRAM_MEMORY_RESERVE_GUID \ 16 { \ 17 0x0703f912, 0xbf8d, 0x4e2a, \ 18 {0xbe, 0x07, 0xab, 0x27, 0x25, 0x25, 0xc5, 0x92 } \ 19 } 20 21 #define MM_NS_BUFFER_GUID \ 22 { \ 23 0xf00497e3, 0xbfa2, 0x41a1, \ 24 {0x9d, 0x29, 0x54, 0xc2, 0xe9, 0x37, 0x21, 0xc5 } \ 25 } 26 27 #define MM_MP_INFORMATION_GUID \ 28 { \ 29 0xba33f15d, 0x4000, 0x45c1, \ 30 {0x8e, 0x88, 0xf9, 0x16, 0x92, 0xd4, 0x57, 0xe3} \ 31 } 32 33 #endif /* __HOB_GUID_H */ 34