struct drm_dp_mst_port — MST port
struct drm_dp_mst_port { struct kref kref; u8 port_num; bool input; bool mcs; bool ddps; u8 pdt; bool ldps; u8 dpcd_rev; u8 num_sdp_streams; u8 num_sdp_stream_sinks; uint16_t available_pbn; struct list_head next; struct drm_dp_mst_branch * mstb; struct drm_dp_aux aux; struct drm_dp_mst_branch * parent; struct drm_dp_vcpi vcpi; struct drm_connector * connector; struct drm_dp_mst_topology_mgr * mgr; };
reference count for this port.
port number
if this port is an input port.
message capability status - DP 1.2 spec.
DisplayPort Device Plug Status - DP 1.2
Peer Device Type
Legacy Device Plug Status
DPCD revision of device on this port
Number of simultaneous streams
Number of stream sinks
Available bandwidth for this port.
link to next port on this branch device
branch device attach below this port
i2c aux transport to talk to device connected to this port.
branch device parent of this port
Virtual Channel Payload info for this port.
DRM connector this port is connected to.
topology manager this port lives under.