Lines Matching +full:i2c +full:- +full:topology

52  * struct drm_dp_mst_port - MST port
56 * @mcs: message capability status - DP 1.2 spec. Protected by
58 * @ddps: DisplayPort Device Plug Status - DP 1.2. Protected by
73 * @aux: i2c aux transport to talk to device connected to this port, protected
75 * @passthrough_aux: parent aux to which DSC pass-through requests should be
76 * sent, only set if DSC pass-through is possible.
81 * @mgr: topology manager this port lives under.
84 * in the MST topology.
88 * @topology_kref: refcount for this port's lifetime in the topology,
102 * @topology_ref_history: A history of each topology
130 struct drm_dp_aux aux; /* i2c bus for this port? */
138 * @cached_edid: for DP logical ports - make tiling work by ensuring
144 * audio-capable.
150 * point in the MST topology.
155 /* sideband msg header - not bit struct */
181 * struct drm_dp_mst_branch - MST branch device.
186 * @mgr: topology manager for this branch device.
198 * topology, only the DP MST helpers should need to touch this
211 * @topology_ref_history: A history of each topology
218 * @destroy_next: linked-list entry used by
305 /* Bit[23:16]- Stream Id */
308 /* Bit[15]- Signed */
311 /* Bit[10:8]- Stream Output Sink Type */
316 /* Bit[12:11]- Stream Output CP Type */
320 /* Bit[4]- Stream Authentication */
323 /* Bit[3]- Stream Encryption */
326 /* Bit[2]- Stream Repeater Function Present */
329 /* Bit[1:0]- Stream State */
395 u8 client_id[7]; /* 56-bit nonce */
481 /* msg has started transmitting on a slot - still on msgq */
483 /* msg has finished transmitting on a slot - removed from msgq only in slot */
485 /* msg has received a response - removed from slot */
510 * If provided MST core calls this callback from a poll-waiting loop
521 * struct drm_dp_mst_atomic_payload - Atomic state struct for an MST payload
537 * protected by the MST helpers ensuring that async commits operating on the given topology
546 * * Acquire the MST modesetting lock, and then wait for any pending MST-related commits to
577 * struct drm_dp_mst_topology_state - DisplayPort MST topology atomic state
585 /** @mgr: The topology manager */
589 * @pending_crtc_mask: A bitmask of all CRTCs this topology state touches, drivers may
594 * @commit_deps: A list of all CRTC commits affecting this topology, this field isn't
606 /** @total_avail_slots: The total number of slots this topology can handle (63 or 64) */
608 /** @start_slot: The first usable time slot in this topology (1 or 0) */
612 * @pbn_div: The current PBN divisor for this topology. The driver is expected to fill this
621 * struct drm_dp_mst_topology_mgr - DisplayPort MST manager
623 * This struct represents the toplevel displayport MST topology manager.
634 * @dev: device pointer for adding i2c devices etc.
681 * while they update the topology.
783 * @up_req_list: List of pending up requests from the topology that
793 * topology. Needed to avoid blocking hotplug handling and sideband
914 * __drm_dp_mst_state_iter_get - private atomic state iterator function for
915 * macro-internal use
922 * @i: int iteration cursor, for macro-internal use
939 struct __drm_private_objs_state *objs_state = &state->private_objs[i]; in __drm_dp_mst_state_iter_get()
941 if (objs_state->ptr->funcs != &drm_dp_mst_topology_state_funcs) in __drm_dp_mst_state_iter_get()
944 *mgr = to_dp_mst_topology_mgr(objs_state->ptr); in __drm_dp_mst_state_iter_get()
946 *old_state = to_dp_mst_topology_state(objs_state->old_state); in __drm_dp_mst_state_iter_get()
948 *new_state = to_dp_mst_topology_state(objs_state->new_state); in __drm_dp_mst_state_iter_get()
954 * for_each_oldnew_mst_mgr_in_state - iterate over all DP MST topology
962 * @__i: int iteration cursor, for macro-internal use
964 * This iterates over all DRM DP MST topology managers in an atomic update,
969 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \
973 * for_each_old_mst_mgr_in_state - iterate over all DP MST topology managers
979 * @__i: int iteration cursor, for macro-internal use
981 * This iterates over all DRM DP MST topology managers in an atomic update,
986 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \
990 * for_each_new_mst_mgr_in_state - iterate over all DP MST topology managers
996 * @__i: int iteration cursor, for macro-internal use
998 * This iterates over all DRM DP MST topology managers in an atomic update,
1004 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \