| // Copyright 2017 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef SYSROOT_ZIRCON_BOOT_E820_H_ |
| #define SYSROOT_ZIRCON_BOOT_E820_H_ |
| |
| #include <stdint.h> |
| #include <zircon/compiler.h> |
| |
| #define E820_RAM 1 |
| #define E820_RESERVED 2 |
| #define E820_ACPI 3 |
| #define E820_NVS 4 |
| #define E820_UNUSABLE 5 |
| |
| typedef struct e820entry { |
| uint64_t addr; |
| uint64_t size; |
| uint32_t type; |
| } __PACKED e820entry_t; |
| |
| #endif // SYSROOT_ZIRCON_BOOT_E820_H_ |