/usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/drm
NameSizeModeActions
bridge/-0755rm
display/-0755rm
i2c/-0755rm
ttm/-0755rm
amd_asic_type.h22280644editdlrm
drm_accel.h25020644editdlrm
drm_aperture.h11600644editdlrm
drm_atomic.h423450644editdlrm
drm_atomic_helper.h99980644editdlrm
drm_atomic_state_helper.h45290644editdlrm
drm_atomic_uapi.h21110644editdlrm
drm_audio_component.h39350644editdlrm
drm_auth.h47540644editdlrm
drm_blend.h24070644editdlrm
drm_bridge.h344360644editdlrm
drm_bridge_connector.h4050644editdlrm
drm_buddy.h42270644editdlrm
drm_cache.h33770644editdlrm
drm_client.h51660644editdlrm
drm_color_mgmt.h38840644editdlrm
drm_connector.h635490644editdlrm
drm_crtc.h458860644editdlrm
drm_crtc_helper.h25670644editdlrm
drm_damage_helper.h34080644editdlrm
drm_debugfs.h50580644editdlrm
drm_debugfs_crc.h27230644editdlrm
drm_device.h94160644editdlrm
drm_displayid.h49490644editdlrm
drm_drv.h197440644editdlrm
drm_edid.h203990644editdlrm
drm_encoder.h110870644editdlrm
drm_encoder_slave.h66140644editdlrm
drm_fbdev_generic.h3490644editdlrm
drm_fb_dma_helper.h5750644editdlrm
drm_fb_helper.h143800644editdlrm
drm_file.h128270644editdlrm
drm_fixed.h49930644editdlrm
drm_flip_work.h30800644editdlrm
drm_format_helper.h33190644editdlrm
drm_fourcc.h100960644editdlrm
drm_framebuffer.h108560644editdlrm
drm_gem.h136460644editdlrm
drm_gem_atomic_helper.h53600644editdlrm
drm_gem_dma_helper.h97660644editdlrm
drm_gem_framebuffer_helper.h19730644editdlrm
drm_gem_shmem_helper.h85970644editdlrm
drm_gem_ttm_helper.h8220644editdlrm
drm_gem_vram_helper.h62860644editdlrm
drm_ioctl.h63200644editdlrm
drm_kunit_helpers.h30720644editdlrm
drm_lease.h10100644editdlrm
drm_legacy.h96170644editdlrm
drm_managed.h39920644editdlrm
drm_mipi_dbi.h69530644editdlrm
drm_mipi_dsi.h134490644editdlrm
drm_mm.h179500644editdlrm
drm_modes.h203810644editdlrm
drm_modeset_helper.h18140644editdlrm
drm_modeset_helper_vtables.h596220644editdlrm
drm_modeset_lock.h72440644editdlrm
drm_mode_config.h337290644editdlrm
drm_mode_object.h55870644editdlrm
drm_module.h38080644editdlrm
drm_of.h50160644editdlrm
drm_panel.h71000644editdlrm
drm_pciids.h625020644editdlrm
drm_plane.h308110644editdlrm
drm_plane_helper.h23910644editdlrm
drm_prime.h41620644editdlrm
drm_print.h192150644editdlrm
drm_privacy_screen_consumer.h19830644editdlrm
drm_privacy_screen_driver.h30580644editdlrm
drm_privacy_screen_machine.h12810644editdlrm
drm_probe_helper.h16070644editdlrm
drm_property.h120420644editdlrm
drm_rect.h73380644editdlrm
drm_self_refresh_helper.h5940644editdlrm
drm_simple_kms_helper.h97440644editdlrm
drm_syncobj.h39430644editdlrm
drm_sysfs.h5150644editdlrm
drm_util.h26420644editdlrm
drm_utils.h5040644editdlrm
drm_vblank.h92550644editdlrm
drm_vblank_work.h19560644editdlrm
drm_vma_manager.h84280644editdlrm
drm_writeback.h45520644editdlrm
gma_drm.h4130644editdlrm
gpu_scheduler.h193640644editdlrm
gud.h119340644editdlrm
i915_component.h18250644editdlrm
i915_drm.h36550644editdlrm
i915_mei_hdcp_interface.h59070644editdlrm
i915_pciids.h240030644editdlrm
i915_pxp_tee_interface.h12500644editdlrm
intel-gtt.h10150644editdlrm
intel_lpe_audio.h17580644editdlrm
spsc_queue.h31310644editdlrm
task_barrier.h30200644editdlrm
Edit: /usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/drm/drm_writeback.h (4552B)
/* SPDX-License-Identifier: GPL-2.0 */ /* * (C) COPYRIGHT 2016 ARM Limited. All rights reserved. * Author: Brian Starkey * * This program is free software and is provided to you under the terms of the * GNU General Public License version 2 as published by the Free Software * Foundation, and any use by you of this program is subject to the terms * of such GNU licence. */ #ifndef __DRM_WRITEBACK_H__ #define __DRM_WRITEBACK_H__ #include #include #include /** * struct drm_writeback_connector - DRM writeback connector */ struct drm_writeback_connector { /** * @base: base drm_connector object */ struct drm_connector base; /** * @encoder: Internal encoder used by the connector to fulfill * the DRM framework requirements. The users of the * @drm_writeback_connector control the behaviour of the @encoder * by passing the @enc_funcs parameter to drm_writeback_connector_init() * function. * For users of drm_writeback_connector_init_with_encoder(), this field * is not valid as the encoder is managed within their drivers. */ struct drm_encoder encoder; /** * @pixel_formats_blob_ptr: * * DRM blob property data for the pixel formats list on writeback * connectors * See also drm_writeback_connector_init() */ struct drm_property_blob *pixel_formats_blob_ptr; /** @job_lock: Protects job_queue */ spinlock_t job_lock; /** * @job_queue: * * Holds a list of a connector's writeback jobs; the last item is the * most recent. The first item may be either waiting for the hardware * to begin writing, or currently being written. * * See also: drm_writeback_queue_job() and * drm_writeback_signal_completion() */ struct list_head job_queue; /** * @fence_context: * * timeline context used for fence operations. */ unsigned int fence_context; /** * @fence_lock: * * spinlock to protect the fences in the fence_context. */ spinlock_t fence_lock; /** * @fence_seqno: * * Seqno variable used as monotonic counter for the fences * created on the connector's timeline. */ unsigned long fence_seqno; /** * @timeline_name: * * The name of the connector's fence timeline. */ char timeline_name[32]; }; /** * struct drm_writeback_job - DRM writeback job */ struct drm_writeback_job { /** * @connector: * * Back-pointer to the writeback connector associated with the job */ struct drm_writeback_connector *connector; /** * @prepared: * * Set when the job has been prepared with drm_writeback_prepare_job() */ bool prepared; /** * @cleanup_work: * * Used to allow drm_writeback_signal_completion to defer dropping the * framebuffer reference to a workqueue */ struct work_struct cleanup_work; /** * @list_entry: * * List item for the writeback connector's @job_queue */ struct list_head list_entry; /** * @fb: * * Framebuffer to be written to by the writeback connector. Do not set * directly, use drm_writeback_set_fb() */ struct drm_framebuffer *fb; /** * @out_fence: * * Fence which will signal once the writeback has completed */ struct dma_fence *out_fence; /** * @priv: * * Driver-private data */ void *priv; }; static inline struct drm_writeback_connector * drm_connector_to_writeback(struct drm_connector *connector) { return container_of(connector, struct drm_writeback_connector, base); } int drm_writeback_connector_init(struct drm_device *dev, struct drm_writeback_connector *wb_connector, const struct drm_connector_funcs *con_funcs, const struct drm_encoder_helper_funcs *enc_helper_funcs, const u32 *formats, int n_formats, u32 possible_crtcs); int drm_writeback_connector_init_with_encoder(struct drm_device *dev, struct drm_writeback_connector *wb_connector, struct drm_encoder *enc, const struct drm_connector_funcs *con_funcs, const u32 *formats, int n_formats); int drm_writeback_set_fb(struct drm_connector_state *conn_state, struct drm_framebuffer *fb); int drm_writeback_prepare_job(struct drm_writeback_job *job); void drm_writeback_queue_job(struct drm_writeback_connector *wb_connector, struct drm_connector_state *conn_state); void drm_writeback_cleanup_job(struct drm_writeback_job *job); void drm_writeback_signal_completion(struct drm_writeback_connector *wb_connector, int status); struct dma_fence * drm_writeback_get_out_fence(struct drm_writeback_connector *wb_connector); #endif