DXGK_MIPI_DSI_INTERFACE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// dispmprt.h

typedef struct _DXGK_MIPI_DSI_INTERFACE {
  [in]  IN USHORT                    Size;
  [in]  IN USHORT                    Version;
  [in]  OUT PVOID                    Context;
  [out] OUT PINTERFACE_REFERENCE     InterfaceReference;
  [out] OUT PINTERFACE_DEREFERENCE   InterfaceDereference;
  [out] OUT PDXGKDDI_DSICAPS         DxgkDdiDsiCaps;
  [out] OUT PDXGKDDI_DSITRANSMISSION DxgkDdiDsiTransmission;
  [out] OUT PDXGKDDI_DSIRESET        DxgkDdiDsiReset;
} DXGK_MIPI_DSI_INTERFACE, *PDXGK_MIPI_DSI_INTERFACE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-dispmprt-dxgk_mipi_dsi_interface)

DXGK_MIPI_DSI_INTERFACE structure

Description

DXGK_MIPI_DSI_INTERFACE allows the OS to request Display Serial Interface (DSI) operations to be performed on a target using a control interface to the target owned by the graphics adapter.

Members

Size [in]

The size, in bytes, of this structure.

Version [in]

The version number of the DSI interface. Version number constants are defined in Dispmprt.h (for example, DXGK_MIPI_DSI_INTERFACE_VERSION_1).

Context [in]

Pointer to a private context block.

InterfaceReference [out]

Pointer to an interface reference function that is implemented by the display miniport driver.

InterfaceDereference [out]

Pointer to an interface dereference function that is implemented by the display miniport driver.

DxgkDdiDsiCaps [out]

Pointer to a display miniport driver DsiCaps function to query capabilities for a particular target. pArgs is a DXGI_DSI_CAPS structure.

DxgkDdiDsiTransmission [out]

Pointer to a display miniport driver DsiTransmission function to perform a DSI transmission. pArgs is a DXGI_DSI_TRANSMISSION structure.

DxgkDdiDsiReset [out]

Pointer to a display miniport driver DsiReset function to perform a DSI reset. pArgs is a DXGI_DSI_RESET structure.

Remarks

A kernel-mode component that needs to use the MIPI DSI Display Control interface calls the display miniport driver's DxgkDdiQueryInterface function to get its DSI-related functional interface.

See also

DXGI_DSI_CAPS

DXGI_DSI_RESET

DXGI_DSI_TRANSMISSION

DsiCaps

DxgkDdiQueryInterface

DsiReset

DsiTransmission