Changeset 106352 in vbox for trunk/include
- Timestamp:
- Oct 16, 2024 11:36:33 AM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 165165
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/platforms/vbox-armv8.h
r106061 r106352 66 66 /** Size of the FDT in bytes, 0 if not available. */ 67 67 uint64_t cbFdt; 68 /** Offset to the RDSP/XSDP table for ACPIfrom the start of this descriptor, 0 if not available. */69 int64_t i64OffAcpi Xsdp;70 /** Size of the RDSP/XSDP table, 0 if not available. */71 uint64_t cbAcpi Xsdp;68 /** Offset to the start of the ACPI table region from the start of this descriptor, 0 if not available. */ 69 int64_t i64OffAcpi; 70 /** Size of the ACPI region in bytes, 0 if not available. */ 71 uint64_t cbAcpi; 72 72 /** Offset to the start of the UEFI ROM region from the start of this descriptor, 0 if not available (doesn't make much sense though). */ 73 73 int64_t i64OffUefiRom; … … 82 82 /** Size of the MMIO32 region in bytes, 0 if not available. */ 83 83 uint64_t cbMmio32; 84 /** Offset to the RDSP/XSDP table for ACPI from the start of this descriptor, 0 if not available. */ 85 int64_t i64OffAcpiXsdp; 86 /** Size of the RDSP/XSDP table, 0 if not available. */ 87 uint64_t cbAcpiXsdp; 84 88 /** Padding to 64KiB. */ 85 uint8_t abPadding[_64K - 4 * sizeof(uint32_t) - 1 2* sizeof(uint64_t)];89 uint8_t abPadding[_64K - 4 * sizeof(uint32_t) - 14 * sizeof(uint64_t)]; 86 90 } VBOXPLATFORMARMV8; 87 91 AssertCompileSize(VBOXPLATFORMARMV8, _64K);
Note:
See TracChangeset
for help on using the changeset viewer.