Lines Matching +full:protected +full:- +full:clocks

50 	DRM_FORCE_ON_DIGITAL, /* for DVI-I use digital connector */
54 * enum drm_connector_status - status for a &drm_connector
69 * nothing there. It is driver-dependent whether a connector with this
76 * flicker (like load-detection when the connector is in use), or when a
77 * hardware resource isn't available (like when load-detection needs a
87 * enum drm_connector_registration_state - userspace registration status for
120 * - An unregistered connector may only have its DPMS changed from
121 * On->Off. Once DPMS is changed to Off, it may not be switched back
123 * - Modesets are not allowed on unregistered connectors, unless they
127 * - Removing a CRTC from an unregistered connector is OK, but new
158 * struct drm_scdc - Information about scdc capabilities of a HDMI 2.0 sink
179 * struct drm_hdmi_dsc_cap - DSC capabilities of HDMI sink
220 * struct drm_hdmi_info - runtime information about the connected HDMI sink
223 * This information is available in CEA-861-F extension blocks (like HF-VSDB).
232 * defined by the CEA-861-G spec is 219, so the size is 256 bits to map
240 * the CEA-861-G spec is 219, so the size is 256 bits to map up to 256
262 * enum drm_link_status - connector's link_status property value
278 * enum drm_panel_orientation - panel_orientation info for &drm_display_info
292 * the panel is mounted upside-down.
299 DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1,
307 * struct drm_monitor_range_info - Panel's Monitor range in EDID for
356 * enum drm_bus_flags - bus_flags info for &drm_display_info
461 * Set if the Sharp-specific signals (SPL, CLS, PS, REV) must be used
467 * struct drm_display_info - runtime data about the connected sink
470 * fixed display sinks like built-in panels there's not much difference between
504 * @panel_orientation: Read only connector property for built-in panels,
545 * @dvi_dual: Dual-link DVI sink?
600 * struct drm_connector_tv_margins - TV connector related margins
628 * struct drm_tv_connector_state - TV connector related states
652 * struct drm_connector_state - mutable connector state
694 * @commit: Tracks the pending commit to prevent use-after-free conditions.
736 * protected content. This is most commonly used for HDCP.
742 * upscaling, mostly used for built-in panels.
762 * Holds the framebuffer and out-fence for a writeback connector. As
792 * struct drm_connector_funcs - control connectors on a given device
802 * Legacy entry point to set the per-connector DPMS state. Legacy DPMS
892 * received for this output connector->edid must be NULL.
911 * driver-private properties. For atomic drivers it is not used because
957 * when a connector is being hot-unplugged for drivers that support
976 * state structure to extend it with driver-private state should use
1009 * Decode a driver-private property value and store the decoded value
1010 * into the passed-in state structure. Since the atomic core decodes all
1015 * Such driver-private properties should really only be implemented for
1024 * driver-private atomic properties.
1041 * 0 if the property has been found, -EINVAL if the property isn't
1056 * Reads out the decoded driver-private property. This is used to
1063 * driver-private atomic properties.
1067 * 0 on success, -EINVAL if the property isn't implemented by the
1090 * struct drm_cmdline_mode - DRM Mode passed through the kernel command-line
1094 * express those parameters and will be filled by the command-line
1108 * Has a mode been read from the command-line?
1205 * drm-connector "panel orientation" property override value,
1217 * struct drm_connector - central DRM connector control structure
1236 * &drm_mode_config.connector_list. Protected by
1250 * @registered. Most of the connector state is still protected by
1257 * the mode_config.list for drivers not supporting hot-add/removing. Can
1301 * Protected by @mutex.
1308 * Protected by &drm_mode_config.mutex.
1315 * Protected by &drm_mode_config.mutex.
1322 * filtering is applied. Used by the probe helpers. Protected by
1329 * when a display is detected. For non hot-pluggable displays such as
1334 * Protected by &drm_mode_config.mutex.
1342 * @edid_blob_ptr: DRM property containing EDID if present. Protected by
1423 /** @helper_private: mid-layer private data */
1444 * Only really meaningful for non-atomic drivers. Atomic drivers should
1451 /** @eld: EDID-like data, if present */
1488 * in Displayport compliance testing - Displayport Link CTS Core 1.2
1507 * This is protected by &drm_mode_config.connection_mutex. Note that
1526 * genlocked clocks. For tiled panels which are genlocked, like
1527 * dual-link LVDS or dual-link DSI, the driver should try to not expose
1586 return connector->index; in drm_connector_index()
1591 return 1 << connector->index; in drm_connector_mask()
1595 * drm_connector_lookup - lookup connector object
1613 * drm_connector_get - acquire a connector reference
1620 drm_mode_object_get(&connector->base); in drm_connector_get()
1624 * drm_connector_put - release a connector reference
1632 drm_mode_object_put(&connector->base); in drm_connector_put()
1636 * drm_connector_is_unregistered - has the connector been unregistered from
1649 return READ_ONCE(connector->registration_state) == in drm_connector_is_unregistered()
1712 * struct drm_tile_group - Tile group metadata
1716 * @group_data: Sink-private data identifying this group
1736 * struct drm_connector_list_iter - connector_list iterator
1765 * drm_for_each_connector_iter - connector_list iterator macro
1777 * drm_connector_for_each_possible_encoder - iterate connector's possible encoders
1782 drm_for_each_encoder_mask(encoder, (connector)->dev, \
1783 (connector)->possible_encoders)