Lines Matching +full:hot +full:- +full:plug
44 * enum drm_bridge_attach_flags - Flags for &drm_bridge_funcs.attach
55 * struct drm_bridge_funcs - drm_bridge control functions
106 * to look at anything else but the passed-in mode, and validate it
107 * against configuration-invariant hardward constraints. Any further
389 * non-NULL).
548 * DRM_BRIDGE_OP_DETECT flag in their &drm_bridge->ops.
562 * The @get_modes callback is mostly intended to support non-probeable
565 * &drm_bridge_funcs->get_edid callback instead.
568 * DRM_BRIDGE_OP_MODES flag in their &drm_bridge->ops.
596 * DRM_BRIDGE_OP_EDID flag in their &drm_bridge->ops.
614 * Notify the bridge of hot plug detection.
627 * Enable hot plug detection. From now on the bridge shall call
629 * connection status, until hot plug detection gets disabled with
633 * that support hot-plug notification without polling. Bridges that
635 * the DRM_BRIDGE_OP_HPD flag in their &drm_bridge->ops.
642 * Disable hot plug detection. Once this function returns the bridge
647 * that support hot-plug notification without polling. Bridges that
649 * the DRM_BRIDGE_OP_HPD flag in their &drm_bridge->ops.
655 * struct drm_bridge_timings - timing information for the bridge
663 * &drm_display_info->bus_flags.
683 * True if the bus operates in dual-link mode. The exact meaning is
684 * dependent on the bus type. For LVDS buses, this indicates that even-
685 * and odd-numbered pixels are received on separate links.
691 * enum drm_bridge_ops - Bitmask of operations supported by the bridge
697 * &drm_bridge_funcs->detect callback.
703 * the &drm_bridge_funcs->get_edid callback.
707 * @DRM_BRIDGE_OP_HPD: The bridge can detect hot-plug and hot-unplug
709 * implement the &drm_bridge_funcs->hpd_enable and
710 * &drm_bridge_funcs->hpd_disable callbacks if they support enabling
711 * and disabling hot-plug detection dynamically.
718 * this flag shall implement the &drm_bridge_funcs->get_modes callback.
724 * struct drm_bridge - central DRM bridge control structure
774 * @hpd_cb: Hot plug detection callback, registered with
779 * @hpd_data: Private data passed to the Hot plug detection callback
799 * drm_bridge_get_next_bridge() - Get the next bridge in the chain
808 if (list_is_last(&bridge->chain_node, &bridge->encoder->bridge_chain)) in drm_bridge_get_next_bridge()
815 * drm_bridge_get_prev_bridge() - Get the previous bridge in the chain
824 if (list_is_first(&bridge->chain_node, &bridge->encoder->bridge_chain)) in drm_bridge_get_prev_bridge()
831 * drm_bridge_chain_get_first_bridge() - Get the first bridge in the chain
841 return list_first_entry_or_null(&encoder->bridge_chain, in drm_bridge_chain_get_first_bridge()
846 * drm_for_each_bridge_in_chain() - Iterate over all bridges present in a chain
854 list_for_each_entry(bridge, &(encoder)->bridge_chain, chain_node)