blob: 87e5023e3f5508e047cc1025df05009acdf2b5b7 [file] [log] [blame]
Jani Nikula2fa91d12016-06-21 14:49:02 +03001=========================
2Kernel Mode Setting (KMS)
3=========================
4
Jani Nikula2fa91d12016-06-21 14:49:02 +03005Drivers must initialize the mode setting core by calling
Daniel Vetterc3b790e2020-03-23 15:49:25 +01006drmm_mode_config_init() on the DRM device. The function
Jani Nikula2fa91d12016-06-21 14:49:02 +03007initializes the :c:type:`struct drm_device <drm_device>`
8mode_config field and never fails. Once done, mode configuration must
9be setup by initializing the following fields.
10
11- int min_width, min_height; int max_width, max_height;
12 Minimum and maximum width and height of the frame buffers in pixel
13 units.
14
15- struct drm_mode_config_funcs \*funcs;
16 Mode setting functions.
17
Daniel Vetter2564d0b2017-03-02 16:16:35 +010018Overview
19========
20
21.. kernel-render:: DOT
22 :alt: KMS Display Pipeline
23 :caption: KMS Display Pipeline Overview
24
25 digraph "KMS" {
26 node [shape=box]
27
28 subgraph cluster_static {
29 style=dashed
30 label="Static Objects"
31
32 node [bgcolor=grey style=filled]
33 "drm_plane A" -> "drm_crtc"
34 "drm_plane B" -> "drm_crtc"
35 "drm_crtc" -> "drm_encoder A"
36 "drm_crtc" -> "drm_encoder B"
37 }
38
39 subgraph cluster_user_created {
40 style=dashed
41 label="Userspace-Created"
42
43 node [shape=oval]
44 "drm_framebuffer 1" -> "drm_plane A"
45 "drm_framebuffer 2" -> "drm_plane B"
46 }
47
48 subgraph cluster_connector {
49 style=dashed
50 label="Hotpluggable"
51
52 "drm_encoder A" -> "drm_connector A"
53 "drm_encoder B" -> "drm_connector B"
54 }
55 }
56
57The basic object structure KMS presents to userspace is fairly simple.
58Framebuffers (represented by :c:type:`struct drm_framebuffer <drm_framebuffer>`,
Daniel Vetter268bc242018-07-09 10:40:10 +020059see `Frame Buffer Abstraction`_) feed into planes. Planes are represented by
60:c:type:`struct drm_plane <drm_plane>`, see `Plane Abstraction`_ for more
61details. One or more (or even no) planes feed their pixel data into a CRTC
62(represented by :c:type:`struct drm_crtc <drm_crtc>`, see `CRTC Abstraction`_)
63for blending. The precise blending step is explained in more detail in `Plane
64Composition Properties`_ and related chapters.
Daniel Vetter2564d0b2017-03-02 16:16:35 +010065
66For the output routing the first step is encoders (represented by
67:c:type:`struct drm_encoder <drm_encoder>`, see `Encoder Abstraction`_). Those
68are really just internal artifacts of the helper libraries used to implement KMS
69drivers. Besides that they make it unecessarily more complicated for userspace
70to figure out which connections between a CRTC and a connector are possible, and
71what kind of cloning is supported, they serve no purpose in the userspace API.
72Unfortunately encoders have been exposed to userspace, hence can't remove them
73at this point. Futhermore the exposed restrictions are often wrongly set by
74drivers, and in many cases not powerful enough to express the real restrictions.
75A CRTC can be connected to multiple encoders, and for an active CRTC there must
76be at least one encoder.
77
78The final, and real, endpoint in the display chain is the connector (represented
79by :c:type:`struct drm_connector <drm_connector>`, see `Connector
80Abstraction`_). Connectors can have different possible encoders, but the kernel
81driver selects which encoder to use for each connector. The use case is DVI,
82which could switch between an analog and a digital encoder. Encoders can also
83drive multiple different connectors. There is exactly one active connector for
84every active encoder.
85
86Internally the output pipeline is a bit more complex and matches today's
87hardware more closely:
88
89.. kernel-render:: DOT
90 :alt: KMS Output Pipeline
91 :caption: KMS Output Pipeline
92
93 digraph "Output Pipeline" {
94 node [shape=box]
95
96 subgraph {
97 "drm_crtc" [bgcolor=grey style=filled]
98 }
99
100 subgraph cluster_internal {
101 style=dashed
102 label="Internal Pipeline"
103 {
104 node [bgcolor=grey style=filled]
105 "drm_encoder A";
106 "drm_encoder B";
107 "drm_encoder C";
108 }
109
110 {
111 node [bgcolor=grey style=filled]
112 "drm_encoder B" -> "drm_bridge B"
113 "drm_encoder C" -> "drm_bridge C1"
114 "drm_bridge C1" -> "drm_bridge C2";
115 }
116 }
117
118 "drm_crtc" -> "drm_encoder A"
119 "drm_crtc" -> "drm_encoder B"
120 "drm_crtc" -> "drm_encoder C"
121
122
123 subgraph cluster_output {
124 style=dashed
125 label="Outputs"
126
127 "drm_encoder A" -> "drm_connector A";
128 "drm_bridge B" -> "drm_connector B";
129 "drm_bridge C2" -> "drm_connector C";
130
131 "drm_panel"
132 }
133 }
134
135Internally two additional helper objects come into play. First, to be able to
136share code for encoders (sometimes on the same SoC, sometimes off-chip) one or
137more :ref:`drm_bridges` (represented by :c:type:`struct drm_bridge
138<drm_bridge>`) can be linked to an encoder. This link is static and cannot be
139changed, which means the cross-bar (if there is any) needs to be mapped between
140the CRTC and any encoders. Often for drivers with bridges there's no code left
141at the encoder level. Atomic drivers can leave out all the encoder callbacks to
142essentially only leave a dummy routing object behind, which is needed for
143backwards compatibility since encoders are exposed to userspace.
144
145The second object is for panels, represented by :c:type:`struct drm_panel
146<drm_panel>`, see :ref:`drm_panel_helper`. Panels do not have a fixed binding
147point, but are generally linked to the driver private structure that embeds
148:c:type:`struct drm_connector <drm_connector>`.
149
150Note that currently the bridge chaining and interactions with connectors and
151panels are still in-flux and not really fully sorted out yet.
Daniel Vetter28575f12016-11-14 12:58:23 +0100152
153KMS Core Structures and Functions
154=================================
155
Daniel Vetter28575f12016-11-14 12:58:23 +0100156.. kernel-doc:: include/drm/drm_mode_config.h
157 :internal:
158
Daniel Vetter1ea35762017-03-02 16:16:36 +0100159.. kernel-doc:: drivers/gpu/drm/drm_mode_config.c
160 :export:
161
Daniel Vetter949619f2016-08-29 10:27:51 +0200162Modeset Base Object Abstraction
163===============================
164
Daniel Vetterb2b82c22017-03-02 16:16:37 +0100165.. kernel-render:: DOT
166 :alt: Mode Objects and Properties
167 :caption: Mode Objects and Properties
168
169 digraph {
170 node [shape=box]
171
172 "drm_property A" -> "drm_mode_object A"
173 "drm_property A" -> "drm_mode_object B"
174 "drm_property B" -> "drm_mode_object A"
175 }
176
177The base structure for all KMS objects is :c:type:`struct drm_mode_object
178<drm_mode_object>`. One of the base services it provides is tracking properties,
179which are especially important for the atomic IOCTL (see `Atomic Mode
180Setting`_). The somewhat surprising part here is that properties are not
181directly instantiated on each object, but free-standing mode objects themselves,
182represented by :c:type:`struct drm_property <drm_property>`, which only specify
183the type and value range of a property. Any given property can be attached
Daniel Vetter6acc9422019-12-04 11:19:33 +0100184multiple times to different objects using drm_object_attach_property().
Daniel Vetterb2b82c22017-03-02 16:16:37 +0100185
Daniel Vetter949619f2016-08-29 10:27:51 +0200186.. kernel-doc:: include/drm/drm_mode_object.h
187 :internal:
188
189.. kernel-doc:: drivers/gpu/drm/drm_mode_object.c
190 :export:
191
Daniel Vetter4a8e2292017-03-02 16:16:38 +0100192Atomic Mode Setting
193===================
194
195
196.. kernel-render:: DOT
197 :alt: Mode Objects and Properties
198 :caption: Mode Objects and Properties
199
200 digraph {
201 node [shape=box]
202
203 subgraph cluster_state {
204 style=dashed
205 label="Free-standing state"
206
207 "drm_atomic_state" -> "duplicated drm_plane_state A"
208 "drm_atomic_state" -> "duplicated drm_plane_state B"
209 "drm_atomic_state" -> "duplicated drm_crtc_state"
210 "drm_atomic_state" -> "duplicated drm_connector_state"
211 "drm_atomic_state" -> "duplicated driver private state"
212 }
213
214 subgraph cluster_current {
215 style=dashed
216 label="Current state"
217
218 "drm_device" -> "drm_plane A"
219 "drm_device" -> "drm_plane B"
220 "drm_device" -> "drm_crtc"
221 "drm_device" -> "drm_connector"
222 "drm_device" -> "driver private object"
223
224 "drm_plane A" -> "drm_plane_state A"
225 "drm_plane B" -> "drm_plane_state B"
226 "drm_crtc" -> "drm_crtc_state"
227 "drm_connector" -> "drm_connector_state"
228 "driver private object" -> "driver private state"
229 }
230
231 "drm_atomic_state" -> "drm_device" [label="atomic_commit"]
232 "duplicated drm_plane_state A" -> "drm_device"[style=invis]
233 }
234
235Atomic provides transactional modeset (including planes) updates, but a
236bit differently from the usual transactional approach of try-commit and
237rollback:
238
239- Firstly, no hardware changes are allowed when the commit would fail. This
240 allows us to implement the DRM_MODE_ATOMIC_TEST_ONLY mode, which allows
241 userspace to explore whether certain configurations would work or not.
242
243- This would still allow setting and rollback of just the software state,
244 simplifying conversion of existing drivers. But auditing drivers for
245 correctness of the atomic_check code becomes really hard with that: Rolling
246 back changes in data structures all over the place is hard to get right.
247
248- Lastly, for backwards compatibility and to support all use-cases, atomic
249 updates need to be incremental and be able to execute in parallel. Hardware
250 doesn't always allow it, but where possible plane updates on different CRTCs
251 should not interfere, and not get stalled due to output routing changing on
252 different CRTCs.
253
254Taken all together there's two consequences for the atomic design:
255
256- The overall state is split up into per-object state structures:
257 :c:type:`struct drm_plane_state <drm_plane_state>` for planes, :c:type:`struct
258 drm_crtc_state <drm_crtc_state>` for CRTCs and :c:type:`struct
259 drm_connector_state <drm_connector_state>` for connectors. These are the only
260 objects with userspace-visible and settable state. For internal state drivers
261 can subclass these structures through embeddeding, or add entirely new state
Daniel Vetter0380c682019-12-04 11:00:11 +0100262 structures for their globally shared hardware functions, see :c:type:`struct
263 drm_private_state<drm_private_state>`.
Daniel Vetter4a8e2292017-03-02 16:16:38 +0100264
265- An atomic update is assembled and validated as an entirely free-standing pile
266 of structures within the :c:type:`drm_atomic_state <drm_atomic_state>`
Daniel Vetter5fca5ec2017-12-14 21:30:54 +0100267 container. Driver private state structures are also tracked in the same
268 structure; see the next chapter. Only when a state is committed is it applied
269 to the driver and modeset objects. This way rolling back an update boils down
270 to releasing memory and unreferencing objects like framebuffers.
Daniel Vetter4a8e2292017-03-02 16:16:38 +0100271
Daniel Vetter0380c682019-12-04 11:00:11 +0100272Locking of atomic state structures is internally using :c:type:`struct
273drm_modeset_lock <drm_modeset_lock>`. As a general rule the locking shouldn't be
274exposed to drivers, instead the right locks should be automatically acquired by
275any function that duplicates or peeks into a state, like e.g.
Daniel Vetter6acc9422019-12-04 11:19:33 +0100276drm_atomic_get_crtc_state(). Locking only protects the software data
Daniel Vetter0380c682019-12-04 11:00:11 +0100277structure, ordering of committing state changes to hardware is sequenced using
278:c:type:`struct drm_crtc_commit <drm_crtc_commit>`.
279
Daniel Vetter4a8e2292017-03-02 16:16:38 +0100280Read on in this chapter, and also in :ref:`drm_atomic_helper` for more detailed
281coverage of specific topics.
282
Daniel Vetterda6c0592017-12-14 21:30:53 +0100283Handling Driver Private State
284-----------------------------
285
286.. kernel-doc:: drivers/gpu/drm/drm_atomic.c
287 :doc: handling driver private state
288
Jani Nikula2fa91d12016-06-21 14:49:02 +0300289Atomic Mode Setting Function Reference
Daniel Vetter4a8e2292017-03-02 16:16:38 +0100290--------------------------------------
Jani Nikula2fa91d12016-06-21 14:49:02 +0300291
Daniel Vetter5d070be2016-08-12 22:48:46 +0200292.. kernel-doc:: include/drm/drm_atomic.h
Jani Nikula2fa91d12016-06-21 14:49:02 +0300293 :internal:
294
Daniel Vetter1ea35762017-03-02 16:16:36 +0100295.. kernel-doc:: drivers/gpu/drm/drm_atomic.c
296 :export:
297
Daniel Vetter72fdb40c2018-09-05 15:57:11 +0200298Atomic Mode Setting IOCTL and UAPI Functions
299--------------------------------------------
300
301.. kernel-doc:: drivers/gpu/drm/drm_atomic_uapi.c
302 :doc: overview
303
304.. kernel-doc:: drivers/gpu/drm/drm_atomic_uapi.c
305 :export:
306
Daniel Vetter28575f12016-11-14 12:58:23 +0100307CRTC Abstraction
308================
309
310.. kernel-doc:: drivers/gpu/drm/drm_crtc.c
Daniel Vetterd5d487e2017-01-25 07:26:57 +0100311 :doc: overview
312
313CRTC Functions Reference
314--------------------------------
Daniel Vetter28575f12016-11-14 12:58:23 +0100315
316.. kernel-doc:: include/drm/drm_crtc.h
317 :internal:
318
Daniel Vetterd5d487e2017-01-25 07:26:57 +0100319.. kernel-doc:: drivers/gpu/drm/drm_crtc.c
320 :export:
321
Simon Ser21891002020-12-16 21:22:18 +0100322Color Management Functions Reference
323------------------------------------
324
325.. kernel-doc:: drivers/gpu/drm/drm_color_mgmt.c
326 :export:
327
328.. kernel-doc:: include/drm/drm_color_mgmt.h
329 :internal:
330
Jani Nikula2fa91d12016-06-21 14:49:02 +0300331Frame Buffer Abstraction
Daniel Vetter311b62d2016-08-12 22:48:41 +0200332========================
Jani Nikula2fa91d12016-06-21 14:49:02 +0300333
Daniel Vetter750fb8c2016-08-12 22:48:48 +0200334.. kernel-doc:: drivers/gpu/drm/drm_framebuffer.c
335 :doc: overview
Jani Nikula2fa91d12016-06-21 14:49:02 +0300336
Daniel Vetter7520a272016-08-15 16:07:02 +0200337Frame Buffer Functions Reference
338--------------------------------
339
Daniel Vetter7520a272016-08-15 16:07:02 +0200340.. kernel-doc:: include/drm/drm_framebuffer.h
341 :internal:
342
Daniel Vetter1ea35762017-03-02 16:16:36 +0100343.. kernel-doc:: drivers/gpu/drm/drm_framebuffer.c
344 :export:
345
Jani Nikula2fa91d12016-06-21 14:49:02 +0300346DRM Format Handling
Daniel Vetter311b62d2016-08-12 22:48:41 +0200347===================
Jani Nikula2fa91d12016-06-21 14:49:02 +0300348
Brian Starkey7e7b68e2018-08-21 17:16:11 +0100349.. kernel-doc:: include/uapi/drm/drm_fourcc.h
350 :doc: overview
351
352Format Functions Reference
353--------------------------
354
Laurent Pinchart84770cc2016-10-18 01:41:09 +0300355.. kernel-doc:: include/drm/drm_fourcc.h
356 :internal:
357
Jani Nikula2fa91d12016-06-21 14:49:02 +0300358.. kernel-doc:: drivers/gpu/drm/drm_fourcc.c
359 :export:
360
361Dumb Buffer Objects
Daniel Vetter311b62d2016-08-12 22:48:41 +0200362===================
Jani Nikula2fa91d12016-06-21 14:49:02 +0300363
Daniel Vetter4f936242016-11-14 12:58:21 +0100364.. kernel-doc:: drivers/gpu/drm/drm_dumb_buffers.c
365 :doc: overview
Jani Nikula2fa91d12016-06-21 14:49:02 +0300366
Daniel Vetter43968d72016-09-21 10:59:24 +0200367Plane Abstraction
368=================
369
Daniel Vetter532b3672016-09-21 10:59:25 +0200370.. kernel-doc:: drivers/gpu/drm/drm_plane.c
371 :doc: overview
372
Daniel Vetter43968d72016-09-21 10:59:24 +0200373Plane Functions Reference
374-------------------------
375
376.. kernel-doc:: include/drm/drm_plane.h
377 :internal:
378
379.. kernel-doc:: drivers/gpu/drm/drm_plane.c
380 :export:
381
Simon Ser9d8f78f2020-12-16 21:22:16 +0100382Plane Composition Functions Reference
383-------------------------------------
384
385.. kernel-doc:: drivers/gpu/drm/drm_blend.c
386 :export:
387
Simon Ser31c558f2020-12-16 21:22:17 +0100388Plane Damage Tracking Functions Reference
389-----------------------------------------
390
391.. kernel-doc:: drivers/gpu/drm/drm_damage_helper.c
392 :export:
393
394.. kernel-doc:: include/drm/drm_damage_helper.h
395 :internal:
396
Daniel Vetter311b62d2016-08-12 22:48:41 +0200397Display Modes Function Reference
398================================
Jani Nikula2fa91d12016-06-21 14:49:02 +0300399
Daniel Vetter311b62d2016-08-12 22:48:41 +0200400.. kernel-doc:: include/drm/drm_modes.h
401 :internal:
402
403.. kernel-doc:: drivers/gpu/drm/drm_modes.c
404 :export:
Jani Nikula2fa91d12016-06-21 14:49:02 +0300405
Daniel Vetterae2a6da2016-08-12 22:48:53 +0200406Connector Abstraction
407=====================
408
409.. kernel-doc:: drivers/gpu/drm/drm_connector.c
410 :doc: overview
411
412Connector Functions Reference
413-----------------------------
Daniel Vetter52217192016-08-12 22:48:50 +0200414
415.. kernel-doc:: include/drm/drm_connector.h
416 :internal:
417
418.. kernel-doc:: drivers/gpu/drm/drm_connector.c
419 :export:
420
Brian Starkey935774c2017-03-29 17:42:32 +0100421Writeback Connectors
422--------------------
423
Sam Ravnborge2d7fc22020-04-06 21:47:46 +0200424.. kernel-doc:: include/drm/drm_writeback.h
425 :internal:
426
Brian Starkey935774c2017-03-29 17:42:32 +0100427.. kernel-doc:: drivers/gpu/drm/drm_writeback.c
428 :doc: overview
429
430.. kernel-doc:: drivers/gpu/drm/drm_writeback.c
431 :export:
432
Daniel Vetter321a95a2016-08-29 10:27:49 +0200433Encoder Abstraction
434===================
435
Daniel Vettere03e6de2016-08-29 10:27:50 +0200436.. kernel-doc:: drivers/gpu/drm/drm_encoder.c
437 :doc: overview
438
439Encoder Functions Reference
440---------------------------
441
Daniel Vetter321a95a2016-08-29 10:27:49 +0200442.. kernel-doc:: include/drm/drm_encoder.h
443 :internal:
444
445.. kernel-doc:: drivers/gpu/drm/drm_encoder.c
446 :export:
447
Jani Nikula2fa91d12016-06-21 14:49:02 +0300448KMS Locking
Daniel Vetter311b62d2016-08-12 22:48:41 +0200449===========
Jani Nikula2fa91d12016-06-21 14:49:02 +0300450
451.. kernel-doc:: drivers/gpu/drm/drm_modeset_lock.c
452 :doc: kms locking
453
454.. kernel-doc:: include/drm/drm_modeset_lock.h
455 :internal:
456
457.. kernel-doc:: drivers/gpu/drm/drm_modeset_lock.c
458 :export:
459
460KMS Properties
461==============
462
Simon Ser46f9be42020-12-17 12:32:12 +0100463This section of the documentation is primarily aimed at user-space developers.
464For the driver APIs, see the other sections.
465
Daniel Vetter59e71ee2016-08-29 10:27:55 +0200466Property Types and Blob Property Support
467----------------------------------------
468
Daniel Vetterc8458c72016-08-29 10:27:57 +0200469.. kernel-doc:: drivers/gpu/drm/drm_property.c
470 :doc: overview
471
Daniel Vetter59e71ee2016-08-29 10:27:55 +0200472.. kernel-doc:: include/drm/drm_property.h
473 :internal:
474
475.. kernel-doc:: drivers/gpu/drm/drm_property.c
476 :export:
477
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100478Standard Connector Properties
479-----------------------------
480
481.. kernel-doc:: drivers/gpu/drm/drm_connector.c
482 :doc: standard connector properties
483
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +0300484HDMI Specific Connector Properties
Daniel Vetterba609632018-07-02 11:10:23 +0200485----------------------------------
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +0300486
487.. kernel-doc:: drivers/gpu/drm/drm_connector.c
488 :doc: HDMI connector properties
489
Simon Sere954f772020-05-21 11:09:31 +0000490Standard CRTC Properties
491------------------------
492
493.. kernel-doc:: drivers/gpu/drm/drm_crtc.c
494 :doc: standard CRTC properties
495
Simon Ser77a71ab2020-12-17 12:32:13 +0100496Standard Plane Properties
497-------------------------
498
499.. kernel-doc:: drivers/gpu/drm/drm_plane.c
500 :doc: standard plane properties
501
Daniel Vetter1e4d84c2016-09-21 10:59:27 +0200502Plane Composition Properties
503----------------------------
504
505.. kernel-doc:: drivers/gpu/drm/drm_blend.c
506 :doc: overview
Daniel Vetter52a9fcd2016-08-12 22:48:51 +0200507
Simon Sere07f0012020-12-16 21:22:15 +0100508Damage Tracking Properties
509--------------------------
Lukasz Spintzykd3b21762018-05-23 19:04:08 -0700510
511.. kernel-doc:: drivers/gpu/drm/drm_damage_helper.c
512 :doc: overview
513
Daniel Vettera6acccf2016-09-21 10:59:29 +0200514Color Management Properties
515---------------------------
516
517.. kernel-doc:: drivers/gpu/drm/drm_color_mgmt.c
518 :doc: overview
519
Daniel Vetter9498c192016-11-14 12:58:24 +0100520Tile Group Property
521-------------------
522
523.. kernel-doc:: drivers/gpu/drm/drm_connector.c
524 :doc: Tile group
525
Gustavo Padovan9a83a712016-11-22 09:11:28 +0900526Explicit Fencing Properties
527---------------------------
528
Daniel Vetter72fdb40c2018-09-05 15:57:11 +0200529.. kernel-doc:: drivers/gpu/drm/drm_atomic_uapi.c
Gustavo Padovan9a83a712016-11-22 09:11:28 +0900530 :doc: explicit fencing properties
531
Nicholas Kazlauskasab7a6642018-10-04 14:38:42 -0400532
533Variable Refresh Properties
534---------------------------
535
536.. kernel-doc:: drivers/gpu/drm/drm_connector.c
537 :doc: Variable refresh properties
538
Jani Nikula2fa91d12016-06-21 14:49:02 +0300539Existing KMS Properties
540-----------------------
541
Daniel Vetter3f0df752018-02-19 23:53:52 +0100542The following table gives description of drm properties exposed by various
543modules/drivers. Because this table is very unwieldy, do not add any new
544properties here. Instead document them in a section above.
Jani Nikula2fa91d12016-06-21 14:49:02 +0300545
546.. csv-table::
547 :header-rows: 1
548 :file: kms-properties.csv
549
550Vertical Blanking
551=================
552
Daniel Vetter57d30232017-05-24 16:51:45 +0200553.. kernel-doc:: drivers/gpu/drm/drm_vblank.c
554 :doc: vblank handling
Jani Nikula2fa91d12016-06-21 14:49:02 +0300555
556Vertical Blanking and Interrupt Handling Functions Reference
557------------------------------------------------------------
558
Daniel Vetter3ed43512017-05-31 11:21:46 +0200559.. kernel-doc:: include/drm/drm_vblank.h
Daniel Vetter34a67dd2016-07-15 21:48:01 +0200560 :internal:
Daniel Vetter1ea35762017-03-02 16:16:36 +0100561
Daniel Vetter3ed43512017-05-31 11:21:46 +0200562.. kernel-doc:: drivers/gpu/drm/drm_vblank.c
Daniel Vetter1ea35762017-03-02 16:16:36 +0100563 :export:
Lyude Paul5e6c2b42020-04-17 15:33:13 -0400564
565Vertical Blank Work
566===================
567
568.. kernel-doc:: drivers/gpu/drm/drm_vblank_work.c
569 :doc: vblank works
570
571Vertical Blank Work Functions Reference
572---------------------------------------
573
574.. kernel-doc:: include/drm/drm_vblank_work.h
575 :internal:
576
577.. kernel-doc:: drivers/gpu/drm/drm_vblank_work.c
578 :export: