Changeset 89001 in vbox for trunk/include/VBox
- Timestamp:
- May 12, 2021 8:43:29 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144339
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/iommu-intel.h
r88894 r89001 1248 1248 (IMD, RSVD_31_16)); 1249 1249 1250 /** RW: Read/write mask. */ 1251 #define VTD_FEDATA_REG_RW_MASK VTD_BF_FEDATA_REG_IMD_MASK 1250 /** RW: Read/write mask, see 5.1.6 "Remapping Hardware Event Interrupt 1251 * Programming". */ 1252 #define VTD_FEDATA_REG_RW_MASK UINT32_C(0x000001ff) 1252 1253 /** @} */ 1253 1254 … … 1498 1499 (IMD, RSVD_31_16)); 1499 1500 1500 /** RW: Read/write mask. */ 1501 #define VTD_IEDATA_REG_RW_MASK VTD_BF_IEDATA_REG_IMD_MASK 1501 /** RW: Read/write mask, see 5.1.6 "Remapping Hardware Event Interrupt 1502 * Programming". */ 1503 #define VTD_IEDATA_REG_RW_MASK UINT32_C(0x000001ff) 1502 1504 /** @} */ 1503 1505 … … 1707 1709 (IMD, RSVD_31_16)); 1708 1710 1709 /** RW: Read/write mask. */ 1710 #define VTD_PEDATA_REG_RW_MASK VTD_BF_PEDATA_REG_IMD_MASK 1711 /** RW: Read/write mask, see 5.1.6 "Remapping Hardware Event Interrupt 1712 * Programming". */ 1713 #define VTD_PEDATA_REG_RW_MASK UINT32_C(0x000001ff) 1711 1714 /** @} */ 1712 1715 … … 2285 2288 #define VTD_REMAPPABLE_MSI_DATA_VALID_MASK VTD_BF_REMAPPABLE_MSI_DATA_SUBHANDLE_MASK 2286 2289 2287 /** Gets the interrupt format from an MSI address. */2288 #define VTD_MSI_ADDR_GET_INTR_FORMAT(a_uMsiAddr) ((a_uMsiAddr) & RT_BIT_64(4))2289 2290 /** Interrupt format: Compatibility. */ 2290 2291 #define VTD_INTR_FORMAT_COMPAT 0
Note:
See TracChangeset
for help on using the changeset viewer.