Changeset 107984 in vbox for trunk/src/VBox/VMM/include/GICInternal.h
- Timestamp:
- Jan 30, 2025 6:43:18 AM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167247
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/GICInternal.h
r107957 r107984 105 105 /** @name Configurables. 106 106 * @{ */ 107 /** The maximum SPI supported (GICD_TYPER.ItsLinesNumber). */108 uint16_t uItLinesNumber;109 107 /** The GIC architecture (GICD_PIDR2.ArchRev and GICR_PIDR2.ArchRev). */ 110 108 uint8_t uArchRev; 109 /** Extended PPIs supported (GICR_TYPER.PpiNum). */ 110 uint8_t fPpiNum; 111 /** Whether extended SPIs are supported (GICD_TYPER.ESPI). */ 112 bool fExtSpi; 111 113 /** Whether NMIs are supported (GICD_TYPER.NMI). */ 112 114 bool fNmi; 115 /** The maximum SPI supported (GICD_TYPER.ItsLinesNumber). */ 116 uint16_t uMaxSpi; 117 /** Maximum extended SPI supported (GICR_TYPER.ESPI_range). */ 118 uint16_t uMaxExtSpi; 113 119 /** @} */ 114 120 } GICDEV;
Note:
See TracChangeset
for help on using the changeset viewer.