Lines Matching +full:edid +full:- +full:emulation

42  * struct drm_mode_config_funcs - basic driver provided mode setting functions
44 * Some global (i.e. not per-CRTC, connector, etc) mode setting functions that
59 * ie. when (@mode_cmd->flags & DRM_MODE_FB_MODIFIERS) == 0.
70 * driver-specific information (like the internal native buffer object
106 * Drivers implementing fbdev emulation use drm_kms_helper_hotplug_event()
135 * - Checking that the modes, framebuffers, scaling and placement
138 * - Checking that any hidden shared resources are not oversubscribed.
143 * - Checking that virtualized resources exported to userspace are not
146 * example is dual-pipe operations (which generally should be hidden
153 * - Check that any transitional state is possible and that if
157 * - Check any other constraints the driver or hardware might have.
159 * - This callback also needs to correctly fill out the &drm_crtc_state
168 * - The driver also does not need to repeat basic input validation
180 * drm_atomic_helper_check(), or one of the exported sub-functions of
187 * - -EINVAL, if any of the above constraints are violated.
189 * - -EDEADLK, when returned from an attempt to acquire an additional
192 * - -ENOMEM, if allocating additional state sub-structures failed due
195 * - -EINTR, -EAGAIN or -ERESTARTSYS, if the IOCTL should be restarted.
216 * drm_atomic_helper_commit(), or one of the exported sub-functions of
222 * errors resulting in -EIO. But even in that case the driver must
232 * buffer is a shared dma-buf. Nonblocking commits must not wait for
236 * completed. These events are per-CRTC and can be distinguished by the
255 * - -EBUSY, if a nonblocking updated is requested and there is
262 * - -ENOMEM, if the driver failed to allocate memory. Specifically
266 * - -ENOSPC, as a refinement of the more generic -ENOMEM to indicate
270 * - -EIO, if the hardware completely died.
272 * - -EINTR, -EAGAIN or -ERESTARTSYS, if the IOCTL should be restarted.
279 * return -EINVAL (any invalid requests should be caught in
280 * @atomic_check) or -EDEADLK (this function must not acquire
291 * &drm_atomic_state to be able to track their own driver-private global
308 * passed-in &drm_atomic_state. This hook is called when the caller
342 * struct drm_mode_config - Mode configuration control structure
354 * @prefer_shadow: hint to userspace to prefer shadow-fb rendering
357 * @helper_private: mid-layer private data
382 * anything from under its protection and move it into more well-scoped
404 * impossible to use driver-private &struct drm_modeset_lock. Users of
421 * connector, modes - just makes life easier to have only one.
429 * high-res DP MST screens.
572 * @edid_property: Default connector property to hold the EDID of the
680 * CRTC. A 0 mode implies that the CRTC is entirely disabled - all
691 * @dvi_i_subconnector_property: Optional DVI-I property to
696 * @dvi_i_select_subconnector_property: Optional DVI-I property to
774 * upscaling, mostly used for built-in panels.
794 * the degamma LUT as supported by the driver (read-only).
811 * gamma LUT as supported by the driver (read-only).
835 * how the lcd-panel is mounted inside the casing (e.g. normal or
836 * upside-down).
850 * engine (read-only).
888 * Hint to framebuffer emulation to prefer shadow-fb rendering.
910 * opt-in.
962 * drm_mode_config_init - DRM mode_configuration structure initialization