Changeset 105600 in vbox for trunk/include
- Timestamp:
- Aug 6, 2024 9:39:44 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/platforms/vbox-armv8.h
r102514 r105600 62 62 /** Size of the base RAM region in bytes. */ 63 63 uint64_t cbRamBase; 64 /** Offset to the beginning of the FDT backwardsfrom the start of this descriptor, 0 if not available. */65 uint64_t u64OffBackFdt;64 /** Offset to the beginning of the FDT from the start of this descriptor, 0 if not available. */ 65 int64_t i64OffFdt; 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 ACPI backwardsfrom the start of this descriptor, 0 if not available. */69 uint64_t u64OffBackAcpiXsdp;68 /** Offset to the RDSP/XSDP table for ACPI from the start of this descriptor, 0 if not available. */ 69 int64_t i64OffAcpiXsdp; 70 70 /** Size of the RDSP/XSDP table, 0 if not available. */ 71 71 uint64_t cbAcpiXsdp; 72 /** Offset backwardsto the start of the UEFI ROM region from the start of this descriptor, 0 if not available (doesn't make much sense though). */73 uint64_t u64OffBackUefiRom;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 int64_t i64OffUefiRom; 74 74 /** Size if the UEFI ROM region in bytes, 0 if not available. */ 75 75 uint64_t cbUefiRom; 76 /** Offset backwardsto the start of the MMIO region from the start of this descriptor, 0 if not available (doesn't make much sense though). */77 uint64_t u64OffBackMmio;76 /** Offset to the start of the MMIO region from the start of this descriptor, 0 if not available (doesn't make much sense though). */ 77 int64_t i64OffMmio; 78 78 /** Size of the MMIO region in bytes, 0 if not available. */ 79 79 uint64_t cbMmio; 80 /** Offset backwardsto the start of the MMIO32 region from the start of this descriptor, 0 if not available. */81 uint64_t u64OffBackMmio32;80 /** Offset to the start of the MMIO32 region from the start of this descriptor, 0 if not available. */ 81 int64_t i64OffMmio32; 82 82 /** Size of the MMIO32 region in bytes, 0 if not available. */ 83 83 uint64_t cbMmio32; … … 94 94 #define VBOXPLATFORMARMV8_VERSION 0x1 95 95 96 /** Physical address of the VBox platform descriptor (128MiB). */ 97 #define VBOXPLATFORMARMV8_PHYS_ADDR UINT64_C(0x08000000) 98 96 99 #endif /* !VBOX_INCLUDED_platforms_vbox_armv8_h */
Note:
See TracChangeset
for help on using the changeset viewer.