mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-21 01:24:36 +00:00
This reverts commit ce9d5e8779.
Before readiness of better solution to fix SOS VM e820 and efi memmap mismatch
issue, revert this patch.
Tracked-On: #5626
Signed-off-by: Victor Sun <victor.sun@intel.com>
22 lines
493 B
C
22 lines
493 B
C
/*
|
|
* Copyright (C) 2020 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef EFI_H
|
|
#define EFI_H
|
|
|
|
struct efi_info {
|
|
uint32_t efi_loader_signature; /* 0x1c0 */
|
|
uint32_t efi_systab; /* 0x1c4 */
|
|
uint32_t efi_memdesc_size; /* 0x1c8 */
|
|
uint32_t efi_memdesc_version; /* 0x1cc */
|
|
uint32_t efi_memmap; /* 0x1d0 */
|
|
uint32_t efi_memmap_size; /* 0x1d4 */
|
|
uint32_t efi_systab_hi; /* 0x1d8 */
|
|
uint32_t efi_memmap_hi; /* 0x1dc */
|
|
} __packed;
|
|
|
|
#endif
|