- Timestamp:
- Mar 25, 2025 10:24:27 AM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168156
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/GICR3.cpp
r108716 r108733 630 630 AssertCompile(GIC_DIST_REG_TYPER_NUM_ITLINES == 31); 631 631 /** @todo This currently isn't implemented and the full range is always 632 * supported. */632 * reported to the guest. */ 633 633 rc = pHlp->pfnCFGMQueryU8Def(pCfg, "MaxSpi", &pGicDev->uMaxSpi, 31 /* Upto and incl. IntId 1023 */); 634 634 AssertLogRelRCReturn(rc, rc); … … 654 654 AssertCompile(GIC_DIST_REG_TYPER_ESPI_RANGE >> GIC_DIST_REG_TYPER_ESPI_RANGE_BIT == 31); 655 655 /** @todo This currently isn't implemented and the full range is always 656 * supported. */656 * reported to the guest. */ 657 657 rc = pHlp->pfnCFGMQueryU8Def(pCfg, "MaxExtSpi", &pGicDev->uMaxExtSpi, 31); 658 658 AssertLogRelRCReturn(rc, rc); … … 675 675 * [1087,1119]. This is unused when extended PPIs are disabled. */ 676 676 /** @todo This currently isn't implemented and the full range is always 677 * supported. */677 * reported to the guest. */ 678 678 rc = pHlp->pfnCFGMQueryU8Def(pCfg, "MaxExtPpi", &pGicDev->uMaxExtPpi, 2); 679 679 AssertLogRelRCReturn(rc, rc);
Note:
See TracChangeset
for help on using the changeset viewer.