Blame view

include/drm/drm_plane.h 26.3 KB
43968d7b8   Daniel Vetter   drm: Extract drm_...
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
  /*
   * Copyright (c) 2016 Intel Corporation
   *
   * Permission to use, copy, modify, distribute, and sell this software and its
   * documentation for any purpose is hereby granted without fee, provided that
   * the above copyright notice appear in all copies and that both that copyright
   * notice and this permission notice appear in supporting documentation, and
   * that the name of the copyright holders not be used in advertising or
   * publicity pertaining to distribution of the software without specific,
   * written prior permission.  The copyright holders make no representations
   * about the suitability of this software for any purpose.  It is provided "as
   * is" without express or implied warranty.
   *
   * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
   * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
   * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
   * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
   * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
   * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
   * OF THIS SOFTWARE.
   */
  
  #ifndef __DRM_PLANE_H__
  #define __DRM_PLANE_H__
  
  #include <linux/list.h>
  #include <linux/ctype.h>
  #include <drm/drm_mode_object.h>
80f690e9e   Jyri Sarha   drm: Add optional...
29
  #include <drm/drm_color_mgmt.h>
b88ac0056   Daniel Vetter   drm: drop drmP.h ...
30
31
  #include <drm/drm_rect.h>
  #include <drm/drm_modeset_lock.h>
d78aa6506   Daniel Vetter   drm: Add drm/drm_...
32
  #include <drm/drm_util.h>
43968d7b8   Daniel Vetter   drm: Extract drm_...
33
34
  
  struct drm_crtc;
fceffb325   Rob Clark   drm/atomic: add n...
35
  struct drm_printer;
34a2ab5e0   Daniel Vetter   drm: Add acquire ...
36
  struct drm_modeset_acquire_ctx;
43968d7b8   Daniel Vetter   drm: Extract drm_...
37
38
39
  
  /**
   * struct drm_plane_state - mutable plane state
2e784a914   Daniel Vetter   drm: Switch drm_p...
40
41
42
43
44
45
   *
   * Please not that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
   * @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the
   * raw coordinates provided by userspace. Drivers should use
   * drm_atomic_helper_check_plane_state() and only use the derived rectangles in
   * @src and @dst to program the hardware.
43968d7b8   Daniel Vetter   drm: Extract drm_...
46
47
   */
  struct drm_plane_state {
2e784a914   Daniel Vetter   drm: Switch drm_p...
48
  	/** @plane: backpointer to the plane */
43968d7b8   Daniel Vetter   drm: Extract drm_...
49
  	struct drm_plane *plane;
3835b46e5   Gustavo Padovan   drm/plane: add in...
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  	/**
  	 * @crtc:
  	 *
  	 * Currently bound CRTC, NULL if disabled. Do not this write directly,
  	 * use drm_atomic_set_crtc_for_plane()
  	 */
  	struct drm_crtc *crtc;
  
  	/**
  	 * @fb:
  	 *
  	 * Currently bound framebuffer. Do not write this directly, use
  	 * drm_atomic_set_fb_for_plane()
  	 */
  	struct drm_framebuffer *fb;
  
  	/**
  	 * @fence:
  	 *
30d23f220   Daniel Vetter   drm/atomic: bette...
69
70
  	 * Optional fence to wait for before scanning out @fb. The core atomic
  	 * code will set this when userspace is using explicit fencing. Do not
1b94f4779   Daniel Vetter   drm/docs: More li...
71
  	 * write this field directly for a driver's implicit fence, use
30d23f220   Daniel Vetter   drm/atomic: bette...
72
73
74
75
  	 * drm_atomic_set_fence_for_plane() to ensure that an explicit fence is
  	 * preserved.
  	 *
  	 * Drivers should store any implicit fence in this from their
2e784a914   Daniel Vetter   drm: Switch drm_p...
76
  	 * &drm_plane_helper_funcs.prepare_fb callback. See drm_gem_fb_prepare_fb()
30d23f220   Daniel Vetter   drm/atomic: bette...
77
  	 * and drm_gem_fb_simple_display_pipe_prepare_fb() for suitable helpers.
3835b46e5   Gustavo Padovan   drm/plane: add in...
78
  	 */
f54d18670   Chris Wilson   dma-buf: Rename s...
79
  	struct dma_fence *fence;
43968d7b8   Daniel Vetter   drm: Extract drm_...
80

3835b46e5   Gustavo Padovan   drm/plane: add in...
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  	/**
  	 * @crtc_x:
  	 *
  	 * Left position of visible portion of plane on crtc, signed dest
  	 * location allows it to be partially off screen.
  	 */
  
  	int32_t crtc_x;
  	/**
  	 * @crtc_y:
  	 *
  	 * Upper position of visible portion of plane on crtc, signed dest
  	 * location allows it to be partially off screen.
  	 */
  	int32_t crtc_y;
43968d7b8   Daniel Vetter   drm: Extract drm_...
96

2e784a914   Daniel Vetter   drm: Switch drm_p...
97
98
  	/** @crtc_w: width of visible portion of plane on crtc */
  	/** @crtc_h: height of visible portion of plane on crtc */
43968d7b8   Daniel Vetter   drm: Extract drm_...
99
  	uint32_t crtc_w, crtc_h;
2e784a914   Daniel Vetter   drm: Switch drm_p...
100
101
102
103
104
105
106
107
108
109
110
111
  	/**
  	 * @src_x: left position of visible portion of plane within plane (in
  	 * 16.16 fixed point).
  	 */
  	uint32_t src_x;
  	/**
  	 * @src_y: upper position of visible portion of plane within plane (in
  	 * 16.16 fixed point).
  	 */
  	uint32_t src_y;
  	/** @src_w: width of visible portion of plane (in 16.16) */
  	/** @src_h: height of visible portion of plane (in 16.16) */
43968d7b8   Daniel Vetter   drm: Extract drm_...
112
  	uint32_t src_h, src_w;
2e784a914   Daniel Vetter   drm: Switch drm_p...
113
114
115
116
117
118
  	/**
  	 * @alpha:
  	 * Opacity of the plane with 0 as completely transparent and 0xffff as
  	 * completely opaque. See drm_plane_create_alpha_property() for more
  	 * details.
  	 */
ae0e28265   Maxime Ripard   drm/blend: Add a ...
119
  	u16 alpha;
b972cece9   Sean Paul   drm: Describe pix...
120
121
122
123
124
125
126
  
  	/**
  	 * @pixel_blend_mode:
  	 * The alpha blending equation selection, describing how the pixels from
  	 * the current plane are composited with the background. Value can be
  	 * one of DRM_MODE_BLEND_*
  	 */
a5ec8332d   Lowry Li   drm: Add per-plan...
127
  	uint16_t pixel_blend_mode;
ae0e28265   Maxime Ripard   drm/blend: Add a ...
128

2e784a914   Daniel Vetter   drm: Switch drm_p...
129
130
131
132
133
  	/**
  	 * @rotation:
  	 * Rotation of the plane. See drm_plane_create_rotation_property() for
  	 * more details.
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
134
  	unsigned int rotation;
2e784a914   Daniel Vetter   drm: Switch drm_p...
135
136
137
138
139
140
141
142
143
144
145
146
  	/**
  	 * @zpos:
  	 * Priority of the given plane on crtc (optional).
  	 *
  	 * Note that multiple active planes on the same crtc can have an
  	 * identical zpos value. The rule to solving the conflict is to compare
  	 * the plane object IDs; the plane with a higher ID must be stacked on
  	 * top of a plane with a lower ID.
  	 *
  	 * See drm_plane_create_zpos_property() and
  	 * drm_plane_create_zpos_immutable_property() for more details.
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
147
  	unsigned int zpos;
2e784a914   Daniel Vetter   drm: Switch drm_p...
148
149
150
151
152
153
154
155
  
  	/**
  	 * @normalized_zpos:
  	 * Normalized value of zpos: unique, range from 0 to N-1 where N is the
  	 * number of active planes for given crtc. Note that the driver must set
  	 * &drm_mode_config.normalize_zpos or call drm_atomic_normalize_zpos() to
  	 * update this before it can be trusted.
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
156
  	unsigned int normalized_zpos;
80f690e9e   Jyri Sarha   drm: Add optional...
157
158
159
160
161
162
163
164
165
166
167
168
169
  	/**
  	 * @color_encoding:
  	 *
  	 * Color encoding for non RGB formats
  	 */
  	enum drm_color_encoding color_encoding;
  
  	/**
  	 * @color_range:
  	 *
  	 * Color range for non RGB formats
  	 */
  	enum drm_color_range color_range;
d3b217678   Lukasz Spintzyk   drm: Add a new pl...
170
171
172
173
174
175
176
177
178
  	/**
  	 * @fb_damage_clips:
  	 *
  	 * Blob representing damage (area in plane framebuffer that changed
  	 * since last plane update) as an array of &drm_mode_rect in framebuffer
  	 * coodinates of the attached framebuffer. Note that unlike plane src,
  	 * damage clips are not in 16.16 fixed point.
  	 */
  	struct drm_property_blob *fb_damage_clips;
2e784a914   Daniel Vetter   drm: Switch drm_p...
179
180
  	/** @src: clipped source coordinates of the plane (in 16.16) */
  	/** @dst: clipped destination coordinates of the plane */
43968d7b8   Daniel Vetter   drm: Extract drm_...
181
  	struct drm_rect src, dst;
3835b46e5   Gustavo Padovan   drm/plane: add in...
182
183
184
185
186
  	/**
  	 * @visible:
  	 *
  	 * Visibility of the plane. This can be false even if fb!=NULL and
  	 * crtc!=NULL, due to clipping.
43968d7b8   Daniel Vetter   drm: Extract drm_...
187
188
  	 */
  	bool visible;
21a01abbe   Maarten Lankhorst   drm/atomic: Fix f...
189
  	/**
669c9215a   Maarten Lankhorst   drm/atomic: Make ...
190
191
  	 * @commit: Tracks the pending commit to prevent use-after-free conditions,
  	 * and for async plane updates.
21a01abbe   Maarten Lankhorst   drm/atomic: Fix f...
192
  	 *
669c9215a   Maarten Lankhorst   drm/atomic: Make ...
193
  	 * May be NULL.
21a01abbe   Maarten Lankhorst   drm/atomic: Fix f...
194
195
  	 */
  	struct drm_crtc_commit *commit;
2e784a914   Daniel Vetter   drm: Switch drm_p...
196
  	/** @state: backpointer to global drm_atomic_state */
43968d7b8   Daniel Vetter   drm: Extract drm_...
197
198
  	struct drm_atomic_state *state;
  };
1638d30c1   Rob Clark   drm: add helpers ...
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
  static inline struct drm_rect
  drm_plane_state_src(const struct drm_plane_state *state)
  {
  	struct drm_rect src = {
  		.x1 = state->src_x,
  		.y1 = state->src_y,
  		.x2 = state->src_x + state->src_w,
  		.y2 = state->src_y + state->src_h,
  	};
  	return src;
  }
  
  static inline struct drm_rect
  drm_plane_state_dest(const struct drm_plane_state *state)
  {
  	struct drm_rect dest = {
  		.x1 = state->crtc_x,
  		.y1 = state->crtc_y,
  		.x2 = state->crtc_x + state->crtc_w,
  		.y2 = state->crtc_y + state->crtc_h,
  	};
  	return dest;
  }
43968d7b8   Daniel Vetter   drm: Extract drm_...
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  /**
   * struct drm_plane_funcs - driver plane control functions
   */
  struct drm_plane_funcs {
  	/**
  	 * @update_plane:
  	 *
  	 * This is the legacy entry point to enable and configure the plane for
  	 * the given CRTC and framebuffer. It is never called to disable the
  	 * plane, i.e. the passed-in crtc and fb paramters are never NULL.
  	 *
  	 * The source rectangle in frame buffer memory coordinates is given by
  	 * the src_x, src_y, src_w and src_h parameters (as 16.16 fixed point
  	 * values). Devices that don't support subpixel plane coordinates can
  	 * ignore the fractional part.
  	 *
  	 * The destination rectangle in CRTC coordinates is given by the
  	 * crtc_x, crtc_y, crtc_w and crtc_h parameters (as integer values).
  	 * Devices scale the source rectangle to the destination rectangle. If
  	 * scaling is not supported, and the source rectangle size doesn't match
  	 * the destination rectangle size, the driver must return a
  	 * -<errorname>EINVAL</errorname> error.
  	 *
  	 * Drivers implementing atomic modeset should use
  	 * drm_atomic_helper_update_plane() to implement this hook.
  	 *
  	 * RETURNS:
  	 *
  	 * 0 on success or a negative error code on failure.
  	 */
  	int (*update_plane)(struct drm_plane *plane,
  			    struct drm_crtc *crtc, struct drm_framebuffer *fb,
  			    int crtc_x, int crtc_y,
  			    unsigned int crtc_w, unsigned int crtc_h,
  			    uint32_t src_x, uint32_t src_y,
34a2ab5e0   Daniel Vetter   drm: Add acquire ...
257
258
  			    uint32_t src_w, uint32_t src_h,
  			    struct drm_modeset_acquire_ctx *ctx);
43968d7b8   Daniel Vetter   drm: Extract drm_...
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
  
  	/**
  	 * @disable_plane:
  	 *
  	 * This is the legacy entry point to disable the plane. The DRM core
  	 * calls this method in response to a DRM_IOCTL_MODE_SETPLANE IOCTL call
  	 * with the frame buffer ID set to 0.  Disabled planes must not be
  	 * processed by the CRTC.
  	 *
  	 * Drivers implementing atomic modeset should use
  	 * drm_atomic_helper_disable_plane() to implement this hook.
  	 *
  	 * RETURNS:
  	 *
  	 * 0 on success or a negative error code on failure.
  	 */
193152944   Daniel Vetter   drm: Add acquire ...
275
276
  	int (*disable_plane)(struct drm_plane *plane,
  			     struct drm_modeset_acquire_ctx *ctx);
43968d7b8   Daniel Vetter   drm: Extract drm_...
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
  
  	/**
  	 * @destroy:
  	 *
  	 * Clean up plane resources. This is only called at driver unload time
  	 * through drm_mode_config_cleanup() since a plane cannot be hotplugged
  	 * in DRM.
  	 */
  	void (*destroy)(struct drm_plane *plane);
  
  	/**
  	 * @reset:
  	 *
  	 * Reset plane hardware and software state to off. This function isn't
  	 * called by the core directly, only through drm_mode_config_reset().
  	 * It's not a helper hook only for historical reasons.
  	 *
  	 * Atomic drivers can use drm_atomic_helper_plane_reset() to reset
  	 * atomic state using this hook.
  	 */
  	void (*reset)(struct drm_plane *plane);
  
  	/**
  	 * @set_property:
  	 *
  	 * This is the legacy entry point to update a property attached to the
  	 * plane.
  	 *
43968d7b8   Daniel Vetter   drm: Extract drm_...
305
  	 * This callback is optional if the driver does not support any legacy
144a7999d   Daniel Vetter   drm: Handle prope...
306
307
  	 * driver-private properties. For atomic drivers it is not used because
  	 * property handling is done entirely in the DRM core.
43968d7b8   Daniel Vetter   drm: Extract drm_...
308
309
310
311
312
313
314
315
316
317
318
319
  	 *
  	 * RETURNS:
  	 *
  	 * 0 on success or a negative error code on failure.
  	 */
  	int (*set_property)(struct drm_plane *plane,
  			    struct drm_property *property, uint64_t val);
  
  	/**
  	 * @atomic_duplicate_state:
  	 *
  	 * Duplicate the current atomic state for this plane and return it.
d574528a6   Daniel Vetter   drm/kms-core: Use...
320
  	 * The core and helpers guarantee that any atomic state duplicated with
43968d7b8   Daniel Vetter   drm: Extract drm_...
321
  	 * this hook and still owned by the caller (i.e. not transferred to the
d574528a6   Daniel Vetter   drm/kms-core: Use...
322
323
324
  	 * driver by calling &drm_mode_config_funcs.atomic_commit) will be
  	 * cleaned up by calling the @atomic_destroy_state hook in this
  	 * structure.
43968d7b8   Daniel Vetter   drm: Extract drm_...
325
  	 *
ba1f665f1   Haneen Mohammed   drm: Add checks f...
326
327
  	 * This callback is mandatory for atomic drivers.
  	 *
ea0dd85a7   Daniel Vetter   drm/doc: use pref...
328
  	 * Atomic drivers which don't subclass &struct drm_plane_state should use
43968d7b8   Daniel Vetter   drm: Extract drm_...
329
330
331
332
333
  	 * drm_atomic_helper_plane_duplicate_state(). Drivers that subclass the
  	 * state structure to extend it with driver-private state should use
  	 * __drm_atomic_helper_plane_duplicate_state() to make sure shared state is
  	 * duplicated in a consistent fashion across drivers.
  	 *
d574528a6   Daniel Vetter   drm/kms-core: Use...
334
  	 * It is an error to call this hook before &drm_plane.state has been
43968d7b8   Daniel Vetter   drm: Extract drm_...
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
  	 * initialized correctly.
  	 *
  	 * NOTE:
  	 *
  	 * If the duplicate state references refcounted resources this hook must
  	 * acquire a reference for each of them. The driver must release these
  	 * references again in @atomic_destroy_state.
  	 *
  	 * RETURNS:
  	 *
  	 * Duplicated atomic state or NULL when the allocation failed.
  	 */
  	struct drm_plane_state *(*atomic_duplicate_state)(struct drm_plane *plane);
  
  	/**
  	 * @atomic_destroy_state:
  	 *
  	 * Destroy a state duplicated with @atomic_duplicate_state and release
  	 * or unreference all resources it references
ba1f665f1   Haneen Mohammed   drm: Add checks f...
354
355
  	 *
  	 * This callback is mandatory for atomic drivers.
43968d7b8   Daniel Vetter   drm: Extract drm_...
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
  	 */
  	void (*atomic_destroy_state)(struct drm_plane *plane,
  				     struct drm_plane_state *state);
  
  	/**
  	 * @atomic_set_property:
  	 *
  	 * Decode a driver-private property value and store the decoded value
  	 * into the passed-in state structure. Since the atomic core decodes all
  	 * standardized properties (even for extensions beyond the core set of
  	 * properties which might not be implemented by all drivers) this
  	 * requires drivers to subclass the state structure.
  	 *
  	 * Such driver-private properties should really only be implemented for
  	 * truly hardware/vendor specific state. Instead it is preferred to
  	 * standardize atomic extension and decode the properties used to expose
  	 * such an extension in the core.
  	 *
  	 * Do not call this function directly, use
  	 * drm_atomic_plane_set_property() instead.
  	 *
  	 * This callback is optional if the driver does not support any
  	 * driver-private atomic properties.
  	 *
  	 * NOTE:
  	 *
  	 * This function is called in the state assembly phase of atomic
  	 * modesets, which can be aborted for any reason (including on
  	 * userspace's request to just check whether a configuration would be
  	 * possible). Drivers MUST NOT touch any persistent state (hardware or
  	 * software) or data structures except the passed in @state parameter.
  	 *
  	 * Also since userspace controls in which order properties are set this
  	 * function must not do any input validation (since the state update is
  	 * incomplete and hence likely inconsistent). Instead any such input
  	 * validation must be done in the various atomic_check callbacks.
  	 *
  	 * RETURNS:
  	 *
  	 * 0 if the property has been found, -EINVAL if the property isn't
  	 * implemented by the driver (which shouldn't ever happen, the core only
  	 * asks for properties attached to this plane). No other validation is
  	 * allowed by the driver. The core already checks that the property
  	 * value is within the range (integer, valid enum value, ...) the driver
  	 * set when registering the property.
  	 */
  	int (*atomic_set_property)(struct drm_plane *plane,
  				   struct drm_plane_state *state,
  				   struct drm_property *property,
  				   uint64_t val);
  
  	/**
  	 * @atomic_get_property:
  	 *
  	 * Reads out the decoded driver-private property. This is used to
  	 * implement the GETPLANE IOCTL.
  	 *
  	 * Do not call this function directly, use
  	 * drm_atomic_plane_get_property() instead.
  	 *
  	 * This callback is optional if the driver does not support any
  	 * driver-private atomic properties.
  	 *
  	 * RETURNS:
  	 *
  	 * 0 on success, -EINVAL if the property isn't implemented by the
  	 * driver (which should never happen, the core only asks for
  	 * properties attached to this plane).
  	 */
  	int (*atomic_get_property)(struct drm_plane *plane,
  				   const struct drm_plane_state *state,
  				   struct drm_property *property,
  				   uint64_t *val);
  	/**
  	 * @late_register:
  	 *
  	 * This optional hook can be used to register additional userspace
  	 * interfaces attached to the plane like debugfs interfaces.
  	 * It is called late in the driver load sequence from drm_dev_register().
  	 * Everything added from this callback should be unregistered in
  	 * the early_unregister callback.
  	 *
  	 * Returns:
  	 *
  	 * 0 on success, or a negative error code on failure.
  	 */
  	int (*late_register)(struct drm_plane *plane);
  
  	/**
  	 * @early_unregister:
  	 *
  	 * This optional hook should be used to unregister the additional
  	 * userspace interfaces attached to the plane from
559bdaf72   Daniel Vetter   drm/doc: Fix typo...
449
  	 * @late_register. It is called from drm_dev_unregister(),
43968d7b8   Daniel Vetter   drm: Extract drm_...
450
451
452
453
  	 * early in the driver unload sequence to disable userspace access
  	 * before data structures are torndown.
  	 */
  	void (*early_unregister)(struct drm_plane *plane);
fceffb325   Rob Clark   drm/atomic: add n...
454
455
456
457
  
  	/**
  	 * @atomic_print_state:
  	 *
ea0dd85a7   Daniel Vetter   drm/doc: use pref...
458
  	 * If driver subclasses &struct drm_plane_state, it should implement
fceffb325   Rob Clark   drm/atomic: add n...
459
460
461
462
463
464
465
  	 * this optional hook for printing additional driver specific state.
  	 *
  	 * Do not call this directly, use drm_atomic_plane_print_state()
  	 * instead.
  	 */
  	void (*atomic_print_state)(struct drm_printer *p,
  				   const struct drm_plane_state *state);
e6fc3b685   Ben Widawsky   drm: Plumb modifi...
466
467
468
469
470
471
472
  
  	/**
  	 * @format_mod_supported:
  	 *
  	 * This optional hook is used for the DRM to determine if the given
  	 * format/modifier combination is valid for the plane. This allows the
  	 * DRM to generate the correct format bitmask (which formats apply to
8fb756dfa   Eric Anholt   drm: Trust format...
473
474
475
476
  	 * which modifier), and to valdiate modifiers at atomic_check time.
  	 *
  	 * If not present, then any modifier in the plane's modifier
  	 * list is allowed with any of the plane's formats.
e6fc3b685   Ben Widawsky   drm: Plumb modifi...
477
478
479
480
481
482
483
484
  	 *
  	 * Returns:
  	 *
  	 * True if the given modifier is valid for that format on the plane.
  	 * False otherwise.
  	 */
  	bool (*format_mod_supported)(struct drm_plane *plane, uint32_t format,
  				     uint64_t modifier);
43968d7b8   Daniel Vetter   drm: Extract drm_...
485
  };
532b36712   Daniel Vetter   drm/doc: Polish f...
486
487
488
489
490
491
492
493
494
495
496
497
498
499
  /**
   * enum drm_plane_type - uapi plane type enumeration
   *
   * For historical reasons not all planes are made the same. This enumeration is
   * used to tell the different types of planes apart to implement the different
   * uapi semantics for them. For userspace which is universal plane aware and
   * which is using that atomic IOCTL there's no difference between these planes
   * (beyong what the driver and hardware can support of course).
   *
   * For compatibility with legacy userspace, only overlay planes are made
   * available to userspace by default. Userspace clients may set the
   * DRM_CLIENT_CAP_UNIVERSAL_PLANES client capability bit to indicate that they
   * wish to receive a universal plane list containing all plane types. See also
   * drm_for_each_legacy_plane().
226714dc7   Daniel Vetter   drm: Fix plane ty...
500
501
502
   *
   * WARNING: The values of this enum is UABI since they're exposed in the "type"
   * property.
532b36712   Daniel Vetter   drm/doc: Polish f...
503
   */
43968d7b8   Daniel Vetter   drm: Extract drm_...
504
  enum drm_plane_type {
532b36712   Daniel Vetter   drm/doc: Polish f...
505
  	/**
226714dc7   Daniel Vetter   drm: Fix plane ty...
506
507
508
509
510
511
512
513
  	 * @DRM_PLANE_TYPE_OVERLAY:
  	 *
  	 * Overlay planes represent all non-primary, non-cursor planes. Some
  	 * drivers refer to these types of planes as "sprites" internally.
  	 */
  	DRM_PLANE_TYPE_OVERLAY,
  
  	/**
532b36712   Daniel Vetter   drm/doc: Polish f...
514
515
516
517
  	 * @DRM_PLANE_TYPE_PRIMARY:
  	 *
  	 * Primary planes represent a "main" plane for a CRTC.  Primary planes
  	 * are the planes operated upon by CRTC modesetting and flipping
d574528a6   Daniel Vetter   drm/kms-core: Use...
518
519
  	 * operations described in the &drm_crtc_funcs.page_flip and
  	 * &drm_crtc_funcs.set_config hooks.
532b36712   Daniel Vetter   drm/doc: Polish f...
520
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
521
  	DRM_PLANE_TYPE_PRIMARY,
532b36712   Daniel Vetter   drm/doc: Polish f...
522
523
524
525
526
527
528
529
  
  	/**
  	 * @DRM_PLANE_TYPE_CURSOR:
  	 *
  	 * Cursor planes represent a "cursor" plane for a CRTC.  Cursor planes
  	 * are the planes operated upon by the DRM_IOCTL_MODE_CURSOR and
  	 * DRM_IOCTL_MODE_CURSOR2 IOCTLs.
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
530
531
532
533
534
535
  	DRM_PLANE_TYPE_CURSOR,
  };
  
  
  /**
   * struct drm_plane - central DRM plane control structure
268bc24e8   Daniel Vetter   drm: switch drm_p...
536
537
538
539
540
541
   *
   * Planes represent the scanout hardware of a display block. They receive their
   * input data from a &drm_framebuffer and feed it to a &drm_crtc. Planes control
   * the color conversion, see `Plane Composition Properties`_ for more details,
   * and are also involved in the color conversion of input pixels, see `Color
   * Management Properties`_ for details on that.
43968d7b8   Daniel Vetter   drm: Extract drm_...
542
543
   */
  struct drm_plane {
268bc24e8   Daniel Vetter   drm: switch drm_p...
544
  	/** @dev: DRM device this plane belongs to */
43968d7b8   Daniel Vetter   drm: Extract drm_...
545
  	struct drm_device *dev;
268bc24e8   Daniel Vetter   drm: switch drm_p...
546
547
548
549
550
551
552
553
  
  	/**
  	 * @head:
  	 *
  	 * List of all planes on @dev, linked from &drm_mode_config.plane_list.
  	 * Invariant over the lifetime of @dev and therefore does not need
  	 * locking.
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
554
  	struct list_head head;
268bc24e8   Daniel Vetter   drm: switch drm_p...
555
  	/** @name: human readable name, can be overwritten by the driver */
43968d7b8   Daniel Vetter   drm: Extract drm_...
556
557
558
559
560
  	char *name;
  
  	/**
  	 * @mutex:
  	 *
d574528a6   Daniel Vetter   drm/kms-core: Use...
561
562
563
  	 * Protects modeset plane state, together with the &drm_crtc.mutex of
  	 * CRTC this plane is linked to (when active, getting activated or
  	 * getting disabled).
c9e42b72b   Daniel Vetter   drm: Document kms...
564
565
  	 *
  	 * For atomic drivers specifically this protects @state.
43968d7b8   Daniel Vetter   drm: Extract drm_...
566
567
  	 */
  	struct drm_modeset_lock mutex;
268bc24e8   Daniel Vetter   drm: switch drm_p...
568
  	/** @base: base mode object */
43968d7b8   Daniel Vetter   drm: Extract drm_...
569
  	struct drm_mode_object base;
268bc24e8   Daniel Vetter   drm: switch drm_p...
570
571
572
573
  	/**
  	 * @possible_crtcs: pipes this plane can be bound to constructed from
  	 * drm_crtc_mask()
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
574
  	uint32_t possible_crtcs;
268bc24e8   Daniel Vetter   drm: switch drm_p...
575
  	/** @format_types: array of formats supported by this plane */
43968d7b8   Daniel Vetter   drm: Extract drm_...
576
  	uint32_t *format_types;
268bc24e8   Daniel Vetter   drm: switch drm_p...
577
  	/** @format_count: Size of the array pointed at by @format_types. */
43968d7b8   Daniel Vetter   drm: Extract drm_...
578
  	unsigned int format_count;
268bc24e8   Daniel Vetter   drm: switch drm_p...
579
580
581
582
  	/**
  	 * @format_default: driver hasn't supplied supported formats for the
  	 * plane. Used by the drm_plane_init compatibility wrapper only.
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
583
  	bool format_default;
268bc24e8   Daniel Vetter   drm: switch drm_p...
584
  	/** @modifiers: array of modifiers supported by this plane */
e6fc3b685   Ben Widawsky   drm: Plumb modifi...
585
  	uint64_t *modifiers;
268bc24e8   Daniel Vetter   drm: switch drm_p...
586
  	/** @modifier_count: Size of the array pointed at by @modifier_count. */
e6fc3b685   Ben Widawsky   drm: Plumb modifi...
587
  	unsigned int modifier_count;
2e2b96ef7   Daniel Vetter   drm: Update docs ...
588
  	/**
268bc24e8   Daniel Vetter   drm: switch drm_p...
589
590
591
592
593
  	 * @crtc:
  	 *
  	 * Currently bound CRTC, only meaningful for non-atomic drivers. For
  	 * atomic drivers this is forced to be NULL, atomic drivers should
  	 * instead check &drm_plane_state.crtc.
2e2b96ef7   Daniel Vetter   drm: Update docs ...
594
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
595
  	struct drm_crtc *crtc;
2e2b96ef7   Daniel Vetter   drm: Update docs ...
596
597
  
  	/**
268bc24e8   Daniel Vetter   drm: switch drm_p...
598
599
600
601
602
  	 * @fb:
  	 *
  	 * Currently bound framebuffer, only meaningful for non-atomic drivers.
  	 * For atomic drivers this is forced to be NULL, atomic drivers should
  	 * instead check &drm_plane_state.fb.
2e2b96ef7   Daniel Vetter   drm: Update docs ...
603
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
604
  	struct drm_framebuffer *fb;
268bc24e8   Daniel Vetter   drm: switch drm_p...
605
606
607
608
609
610
  	/**
  	 * @old_fb:
  	 *
  	 * Temporary tracking of the old fb while a modeset is ongoing. Only
  	 * used by non-atomic drivers, forced to be NULL for atomic drivers.
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
611
  	struct drm_framebuffer *old_fb;
268bc24e8   Daniel Vetter   drm: switch drm_p...
612
  	/** @funcs: plane control functions */
43968d7b8   Daniel Vetter   drm: Extract drm_...
613
  	const struct drm_plane_funcs *funcs;
268bc24e8   Daniel Vetter   drm: switch drm_p...
614
  	/** @properties: property tracking for this plane */
43968d7b8   Daniel Vetter   drm: Extract drm_...
615
  	struct drm_object_properties properties;
268bc24e8   Daniel Vetter   drm: switch drm_p...
616
  	/** @type: Type of plane, see &enum drm_plane_type for details. */
43968d7b8   Daniel Vetter   drm: Extract drm_...
617
618
619
620
621
622
623
  	enum drm_plane_type type;
  
  	/**
  	 * @index: Position inside the mode_config.list, can be used as an array
  	 * index. It is invariant over the lifetime of the plane.
  	 */
  	unsigned index;
268bc24e8   Daniel Vetter   drm: switch drm_p...
624
  	/** @helper_private: mid-layer private data */
43968d7b8   Daniel Vetter   drm: Extract drm_...
625
  	const struct drm_plane_helper_funcs *helper_private;
c9e42b72b   Daniel Vetter   drm: Document kms...
626
627
628
629
630
631
632
633
  	/**
  	 * @state:
  	 *
  	 * Current atomic state for this plane.
  	 *
  	 * This is protected by @mutex. Note that nonblocking atomic commits
  	 * access the current plane state without taking locks. Either by going
  	 * through the &struct drm_atomic_state pointers, see
77ac3b00b   Maarten Lankhorst   drm/atomic: Remov...
634
635
636
637
  	 * for_each_oldnew_plane_in_state(), for_each_old_plane_in_state() and
  	 * for_each_new_plane_in_state(). Or through careful ordering of atomic
  	 * commit operations as implemented in the atomic helpers, see
  	 * &struct drm_crtc_commit.
c9e42b72b   Daniel Vetter   drm: Document kms...
638
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
639
  	struct drm_plane_state *state;
268bc24e8   Daniel Vetter   drm: switch drm_p...
640
641
642
643
644
  	/**
  	 * @alpha_property:
  	 * Optional alpha property for this plane. See
  	 * drm_plane_create_alpha_property().
  	 */
ae0e28265   Maxime Ripard   drm/blend: Add a ...
645
  	struct drm_property *alpha_property;
268bc24e8   Daniel Vetter   drm: switch drm_p...
646
647
648
649
650
  	/**
  	 * @zpos_property:
  	 * Optional zpos property for this plane. See
  	 * drm_plane_create_zpos_property().
  	 */
43968d7b8   Daniel Vetter   drm: Extract drm_...
651
  	struct drm_property *zpos_property;
268bc24e8   Daniel Vetter   drm: switch drm_p...
652
653
654
655
656
  	/**
  	 * @rotation_property:
  	 * Optional rotation property for this plane. See
  	 * drm_plane_create_rotation_property().
  	 */
d138dd3c0   Ville Syrjälä   drm: Add support ...
657
  	struct drm_property *rotation_property;
a5ec8332d   Lowry Li   drm: Add per-plan...
658
659
660
661
662
663
664
665
  	/**
  	 * @blend_mode_property:
  	 * Optional "pixel blend mode" enum property for this plane.
  	 * Blend mode property represents the alpha blending equation selection,
  	 * describing how the pixels from the current plane are composited with
  	 * the background.
  	 */
  	struct drm_property *blend_mode_property;
80f690e9e   Jyri Sarha   drm: Add optional...
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
  
  	/**
  	 * @color_encoding_property:
  	 *
  	 * Optional "COLOR_ENCODING" enum property for specifying
  	 * color encoding for non RGB formats.
  	 * See drm_plane_create_color_properties().
  	 */
  	struct drm_property *color_encoding_property;
  	/**
  	 * @color_range_property:
  	 *
  	 * Optional "COLOR_RANGE" enum property for specifying
  	 * color range for non RGB formats.
  	 * See drm_plane_create_color_properties().
  	 */
  	struct drm_property *color_range_property;
43968d7b8   Daniel Vetter   drm: Extract drm_...
683
684
685
  };
  
  #define obj_to_plane(x) container_of(x, struct drm_plane, base)
e6fc3b685   Ben Widawsky   drm: Plumb modifi...
686
  __printf(9, 10)
43968d7b8   Daniel Vetter   drm: Extract drm_...
687
688
  int drm_universal_plane_init(struct drm_device *dev,
  			     struct drm_plane *plane,
5cd57a46e   Tomi Valkeinen   drm: fix possible...
689
  			     uint32_t possible_crtcs,
43968d7b8   Daniel Vetter   drm: Extract drm_...
690
691
692
  			     const struct drm_plane_funcs *funcs,
  			     const uint32_t *formats,
  			     unsigned int format_count,
e6fc3b685   Ben Widawsky   drm: Plumb modifi...
693
  			     const uint64_t *format_modifiers,
43968d7b8   Daniel Vetter   drm: Extract drm_...
694
695
  			     enum drm_plane_type type,
  			     const char *name, ...);
91faa0478   Daniel Vetter   drm: drop extern ...
696
697
698
699
700
701
702
  int drm_plane_init(struct drm_device *dev,
  		   struct drm_plane *plane,
  		   uint32_t possible_crtcs,
  		   const struct drm_plane_funcs *funcs,
  		   const uint32_t *formats, unsigned int format_count,
  		   bool is_primary);
  void drm_plane_cleanup(struct drm_plane *plane);
43968d7b8   Daniel Vetter   drm: Extract drm_...
703
704
705
706
707
708
709
710
  
  /**
   * drm_plane_index - find the index of a registered plane
   * @plane: plane to find index for
   *
   * Given a registered plane, return the index of that plane within a DRM
   * device's list of planes.
   */
62f77ad09   Ville Syrjälä   drm: Add drm_plan...
711
  static inline unsigned int drm_plane_index(const struct drm_plane *plane)
43968d7b8   Daniel Vetter   drm: Extract drm_...
712
713
714
  {
  	return plane->index;
  }
62f77ad09   Ville Syrjälä   drm: Add drm_plan...
715
716
717
718
719
720
721
722
723
  
  /**
   * drm_plane_mask - find the mask of a registered plane
   * @plane: plane to find mask for
   */
  static inline u32 drm_plane_mask(const struct drm_plane *plane)
  {
  	return 1 << drm_plane_index(plane);
  }
91faa0478   Daniel Vetter   drm: drop extern ...
724
725
  struct drm_plane * drm_plane_from_index(struct drm_device *dev, int idx);
  void drm_plane_force_disable(struct drm_plane *plane);
43968d7b8   Daniel Vetter   drm: Extract drm_...
726
727
728
729
730
731
732
733
  
  int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
  				       struct drm_property *property,
  				       uint64_t value);
  
  /**
   * drm_plane_find - find a &drm_plane
   * @dev: DRM device
e7e62c7ef   Dave Airlie   drm/mode_object: ...
734
   * @file_priv: drm file to check for lease against.
43968d7b8   Daniel Vetter   drm: Extract drm_...
735
736
737
738
739
740
   * @id: plane id
   *
   * Returns the plane with @id, NULL if it doesn't exist. Simple wrapper around
   * drm_mode_object_find().
   */
  static inline struct drm_plane *drm_plane_find(struct drm_device *dev,
418da1721   Keith Packard   drm: Pass struct ...
741
  		struct drm_file *file_priv,
43968d7b8   Daniel Vetter   drm: Extract drm_...
742
743
744
  		uint32_t id)
  {
  	struct drm_mode_object *mo;
418da1721   Keith Packard   drm: Pass struct ...
745
  	mo = drm_mode_object_find(dev, file_priv, id, DRM_MODE_OBJECT_PLANE);
43968d7b8   Daniel Vetter   drm: Extract drm_...
746
747
748
749
750
751
752
753
754
755
756
757
758
  	return mo ? obj_to_plane(mo) : NULL;
  }
  
  /**
   * drm_for_each_plane_mask - iterate over planes specified by bitmask
   * @plane: the loop cursor
   * @dev: the DRM device
   * @plane_mask: bitmask of plane indices
   *
   * Iterate over all planes specified by bitmask.
   */
  #define drm_for_each_plane_mask(plane, dev, plane_mask) \
  	list_for_each_entry((plane), &(dev)->mode_config.plane_list, head) \
62f77ad09   Ville Syrjälä   drm: Add drm_plan...
759
  		for_each_if ((plane_mask) & drm_plane_mask(plane))
43968d7b8   Daniel Vetter   drm: Extract drm_...
760

532b36712   Daniel Vetter   drm/doc: Polish f...
761
762
763
764
765
766
767
  /**
   * drm_for_each_legacy_plane - iterate over all planes for legacy userspace
   * @plane: the loop cursor
   * @dev: the DRM device
   *
   * Iterate over all legacy planes of @dev, excluding primary and cursor planes.
   * This is useful for implementing userspace apis when userspace is not
d574528a6   Daniel Vetter   drm/kms-core: Use...
768
   * universal plane aware. See also &enum drm_plane_type.
532b36712   Daniel Vetter   drm/doc: Polish f...
769
   */
43968d7b8   Daniel Vetter   drm: Extract drm_...
770
771
772
  #define drm_for_each_legacy_plane(plane, dev) \
  	list_for_each_entry(plane, &(dev)->mode_config.plane_list, head) \
  		for_each_if (plane->type == DRM_PLANE_TYPE_OVERLAY)
532b36712   Daniel Vetter   drm/doc: Polish f...
773
774
775
776
777
778
779
  /**
   * drm_for_each_plane - iterate over all planes
   * @plane: the loop cursor
   * @dev: the DRM device
   *
   * Iterate over all planes of @dev, include primary and cursor planes.
   */
43968d7b8   Daniel Vetter   drm: Extract drm_...
780
781
  #define drm_for_each_plane(plane, dev) \
  	list_for_each_entry(plane, &(dev)->mode_config.plane_list, head)
e7afb623b   Ville Syrjälä   drm: Add drm_any_...
782
783
  bool drm_any_plane_has_format(struct drm_device *dev,
  			      u32 format, u64 modifier);
d3b217678   Lukasz Spintzyk   drm: Add a new pl...
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
  /**
   * drm_plane_get_damage_clips_count - Returns damage clips count.
   * @state: Plane state.
   *
   * Simple helper to get the number of &drm_mode_rect clips set by user-space
   * during plane update.
   *
   * Return: Number of clips in plane fb_damage_clips blob property.
   */
  static inline unsigned int
  drm_plane_get_damage_clips_count(const struct drm_plane_state *state)
  {
  	return (state && state->fb_damage_clips) ?
  		state->fb_damage_clips->length/sizeof(struct drm_mode_rect) : 0;
  }
  
  /**
   * drm_plane_get_damage_clips - Returns damage clips.
   * @state: Plane state.
   *
d2780b1f0   Deepak Rawat   drm: Add helper i...
804
805
806
   * Note that this function returns uapi type &drm_mode_rect. Drivers might
   * instead be interested in internal &drm_rect which can be obtained by calling
   * drm_helper_get_plane_damage_clips().
d3b217678   Lukasz Spintzyk   drm: Add a new pl...
807
808
809
810
811
812
813
814
815
   *
   * Return: Damage clips in plane fb_damage_clips blob property.
   */
  static inline struct drm_mode_rect *
  drm_plane_get_damage_clips(const struct drm_plane_state *state)
  {
  	return (struct drm_mode_rect *)((state && state->fb_damage_clips) ?
  					state->fb_damage_clips->data : NULL);
  }
43968d7b8   Daniel Vetter   drm: Extract drm_...
816
817
  
  #endif