// d3dkmddi.h
typedef struct _DXGK_PHYSICAL_MEMORY_CAPS {
PHYSICAL_ADDRESS HighestVisibleAddress;
} DXGK_PHYSICAL_MEMORY_CAPS;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_PHYSICAL_MEMORY_CAPS structure provides information about the driver's physical memory restrictions.
HighestVisibleAddressThe highest visible physical memory address. If multiple linked physical adapters have different values for their highest visible address, the driver should report the minimum value of all physical adapters.
The driver fills in this structure when Dxgkernel calls DxgkDdiQueryAdapterInfo with a DXGK_QUERYADAPTERINFOTYPE value of DXGKQAITYPE_PHYSICAL_MEMORY_CAPS.
To indicate logical DMA remapping support, the driver must also fill in DXGK_IOMMU_CAPS accordingly.
See IOMMU DMA remapping for more information.