Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | /* SPDX-License-Identifier: GPL-2.0 */ /* * (C) COPYRIGHT 2016 ARM Limited. All rights reserved. * Author: Brian Starkey <brian.starkey@arm.com> * * 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 <drm/drm_connector.h> #include <drm/drm_encoder.h> #include <linux/workqueue.h> /** * 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 |