Lines Matching +full:deep +full:- +full:touch
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_status - 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
180 * struct drm_hdmi_info - runtime information about the connected HDMI sink
183 * This information is available in CEA-861-F extension blocks (like HF-VSDB).
192 * defined by the CEA-861-G spec is 219, so the size is 256 bits to map
200 * the CEA-861-G spec is 219, so the size is 256 bits to map up to 256
208 /** @y420_dc_modes: bitmap of deep color support index */
213 * enum drm_link_status - connector's link_status property value
229 * enum drm_panel_orientation - panel_orientation info for &drm_display_info
243 * the panel is mounted upside-down.
250 DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1,
258 * struct drm_monitor_range_info - Panel's Monitor range in EDID for
307 * enum drm_bus_flags - bus_flags info for &drm_display_info
412 * Set if the Sharp-specific signals (SPL, CLS, PS, REV) must be used
418 * struct drm_display_info - runtime data about the connected sink
421 * fixed display sinks like built-in panels there's not much difference between
455 * @panel_orientation: Read only connector property for built-in panels,
496 * @dvi_dual: Dual-link DVI sink?
520 * @edid_hdmi_dc_modes: Mask of supported hdmi deep color modes. Even
551 * struct drm_connector_tv_margins - TV connector related margins
579 * struct drm_tv_connector_state - TV connector related states
603 * struct drm_connector_state - mutable connector state
645 * @commit: Tracks the pending commit to prevent use-after-free conditions.
693 * upscaling, mostly used for built-in panels.
713 * Holds the framebuffer and out-fence for a writeback connector. As
743 * struct drm_connector_funcs - control connectors on a given device
753 * Legacy entry point to set the per-connector DPMS state. Legacy DPMS
838 * received for this output connector->edid must be NULL.
857 * driver-private properties. For atomic drivers it is not used because
903 * when a connector is being hot-unplugged for drivers that support
922 * state structure to extend it with driver-private state should use
955 * Decode a driver-private property value and store the decoded value
956 * into the passed-in state structure. Since the atomic core decodes all
961 * Such driver-private properties should really only be implemented for
970 * driver-private atomic properties.
977 * possible). Drivers MUST NOT touch any persistent state (hardware or
987 * 0 if the property has been found, -EINVAL if the property isn't
1002 * Reads out the decoded driver-private property. This is used to
1009 * driver-private atomic properties.
1013 * 0 on success, -EINVAL if the property isn't implemented by the
1036 * struct drm_cmdline_mode - DRM Mode passed through the kernel command-line
1040 * express those parameters and will be filled by the command-line
1054 * Has a mode been read from the command-line?
1151 * drm-connector "panel orientation" property override value,
1163 * struct drm_connector - central DRM connector control structure
1203 * the mode_config.list for drivers not supporting hot-add/removing. Can
1275 * when a display is detected. For non hot-pluggable displays such as
1369 /** @helper_private: mid-layer private data */
1390 * Only really meaningful for non-atomic drivers. Atomic drivers should
1397 /** @eld: EDID-like data, if present */
1434 * in Displayport compliance testing - Displayport Link CTS Core 1.2
1473 * dual-link LVDS or dual-link DSI, the driver should try to not expose
1532 return connector->index; in drm_connector_index()
1537 return 1 << connector->index; in drm_connector_mask()
1541 * drm_connector_lookup - lookup connector object
1559 * drm_connector_get - acquire a connector reference
1566 drm_mode_object_get(&connector->base); in drm_connector_get()
1570 * drm_connector_put - release a connector reference
1578 drm_mode_object_put(&connector->base); in drm_connector_put()
1582 * drm_connector_is_unregistered - has the connector been unregistered from
1595 return READ_ONCE(connector->registration_state) == in drm_connector_is_unregistered()
1654 * struct drm_tile_group - Tile group metadata
1658 * @group_data: Sink-private data identifying this group
1678 * struct drm_connector_list_iter - connector_list iterator
1702 * drm_for_each_connector_iter - connector_list iterator macro
1714 * drm_connector_for_each_possible_encoder - iterate connector's possible encoders
1719 drm_for_each_encoder_mask(encoder, (connector)->dev, \
1720 (connector)->possible_encoders)