VirtualBox

Changeset 108946 in vbox for trunk/include/VBox/gic.h


Ignore:
Timestamp:
Apr 11, 2025 9:44:17 AM (4 weeks ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
168457
Message:

VMM/GIC: bugref:10877 LPI work-in-progress.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/gic.h

    r108877 r108946  
    723723/** @} */
    724724
     725
     726/** @name LPI configuration table entry.
     727 * @{ */
     728/** GITS LPI Configuration   */
     729/** GITS LPI CTE: Enable. */
     730#define GITS_BF_LPI_CTE_ENABLE_SHIFT                            0
     731#define GITS_BF_LPI_CTE_ENABLE_MASK                             UINT8_C(0x1)
     732/** GITS LPI CTE: Reserved (bit 1). */
     733#define GITS_BF_LPI_CTE_RSVD_1_SHIFT                            1
     734#define GITS_BF_LPI_CTE_RSVD_1_MASK                             UINT8_C(0x2)
     735/** GITS LPI CTE: Priority. */
     736#define GITS_BF_LPI_CTE_PRIORITY_SHIFT                          2
     737#define GITS_BF_LPI_CTE_PRIORITY_MASK                           UINT8_C(0xfc)
     738RT_BF_ASSERT_COMPILE_CHECKS(GITS_BF_LPI_CTE_, UINT8_C(0), UINT8_MAX,
     739                            (ENABLE, RSVD_1, PRIORITY));
     740/** @} */
     741
    725742#endif /* !VBOX_INCLUDED_gic_h */
    726743
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette