drm/atomic-helper: Drop unneeded argument from check_pending_encoder
[deliverable/linux.git] / Documentation / DocBook / gpu.tmpl
CommitLineData
2d2ef822
JB
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
4
7f817074 5<book id="gpuDevelopersGuide">
2d2ef822 6 <bookinfo>
3a4579b4 7 <title>Linux GPU Driver Developer's Guide</title>
2d2ef822 8
9cad9c95
LP
9 <authorgroup>
10 <author>
11 <firstname>Jesse</firstname>
12 <surname>Barnes</surname>
13 <contrib>Initial version</contrib>
14 <affiliation>
15 <orgname>Intel Corporation</orgname>
16 <address>
17 <email>jesse.barnes@intel.com</email>
18 </address>
19 </affiliation>
20 </author>
21 <author>
22 <firstname>Laurent</firstname>
23 <surname>Pinchart</surname>
24 <contrib>Driver internals</contrib>
25 <affiliation>
26 <orgname>Ideas on board SPRL</orgname>
27 <address>
28 <email>laurent.pinchart@ideasonboard.com</email>
29 </address>
30 </affiliation>
31 </author>
3a05700d
DV
32 <author>
33 <firstname>Daniel</firstname>
34 <surname>Vetter</surname>
35 <contrib>Contributions all over the place</contrib>
36 <affiliation>
37 <orgname>Intel Corporation</orgname>
38 <address>
39 <email>daniel.vetter@ffwll.ch</email>
40 </address>
41 </affiliation>
42 </author>
6648f487
LW
43 <author>
44 <firstname>Lukas</firstname>
45 <surname>Wunner</surname>
46 <contrib>vga_switcheroo documentation</contrib>
47 <affiliation>
48 <address>
49 <email>lukas@wunner.de</email>
50 </address>
51 </affiliation>
52 </author>
9cad9c95
LP
53 </authorgroup>
54
2d2ef822
JB
55 <copyright>
56 <year>2008-2009</year>
3a05700d 57 <year>2013-2014</year>
9cad9c95 58 <holder>Intel Corporation</holder>
3a05700d
DV
59 </copyright>
60 <copyright>
61 <year>2012</year>
9cad9c95 62 <holder>Laurent Pinchart</holder>
2d2ef822 63 </copyright>
6648f487
LW
64 <copyright>
65 <year>2015</year>
66 <holder>Lukas Wunner</holder>
67 </copyright>
2d2ef822
JB
68
69 <legalnotice>
70 <para>
71 The contents of this file may be used under the terms of the GNU
72 General Public License version 2 (the "GPL") as distributed in
73 the kernel source COPYING file.
74 </para>
75 </legalnotice>
9cad9c95
LP
76
77 <revhistory>
78 <!-- Put document revisions here, newest first. -->
79 <revision>
80 <revnumber>1.0</revnumber>
81 <date>2012-07-13</date>
82 <authorinitials>LP</authorinitials>
83 <revremark>Added extensive documentation about driver internals.
84 </revremark>
85 </revision>
6648f487
LW
86 <revision>
87 <revnumber>1.1</revnumber>
88 <date>2015-10-11</date>
89 <authorinitials>LW</authorinitials>
90 <revremark>Added vga_switcheroo documentation.
91 </revremark>
92 </revision>
9cad9c95 93 </revhistory>
2d2ef822
JB
94 </bookinfo>
95
96<toc></toc>
97
3519f70e
DV
98<part id="drmCore">
99 <title>DRM Core</title>
100 <partintro>
101 <para>
7f817074
LW
102 This first part of the GPU Driver Developer's Guide documents core DRM
103 code, helper libraries for writing drivers and generic userspace
104 interfaces exposed by DRM drivers.
3519f70e
DV
105 </para>
106 </partintro>
2d2ef822
JB
107
108 <chapter id="drmIntroduction">
109 <title>Introduction</title>
110 <para>
111 The Linux DRM layer contains code intended to support the needs
112 of complex graphics devices, usually containing programmable
113 pipelines well suited to 3D graphics acceleration. Graphics
f11aca04 114 drivers in the kernel may make use of DRM functions to make
2d2ef822
JB
115 tasks like memory management, interrupt handling and DMA easier,
116 and provide a uniform interface to applications.
117 </para>
118 <para>
119 A note on versions: this guide covers features found in the DRM
120 tree, including the TTM memory manager, output configuration and
121 mode setting, and the new vblank internals, in addition to all
122 the regular features found in current kernels.
123 </para>
124 <para>
125 [Insert diagram of typical DRM stack here]
126 </para>
fb9f7a6b
DV
127 <sect1>
128 <title>Style Guidelines</title>
129 <para>
130 For consistency this documentation uses American English. Abbreviations
131 are written as all-uppercase, for example: DRM, KMS, IOCTL, CRTC, and so
132 on. To aid in reading, documentations make full use of the markup
133 characters kerneldoc provides: @parameter for function parameters, @member
134 for structure members, &amp;structure to reference structures and
135 function() for functions. These all get automatically hyperlinked if
136 kerneldoc for the referenced objects exists. When referencing entries in
137 function vtables please use -&gt;vfunc(). Note that kerneldoc does
138 not support referencing struct members directly, so please add a reference
139 to the vtable struct somewhere in the same paragraph or at least section.
140 </para>
141 <para>
142 Except in special situations (to separate locked from unlocked variants)
143 locking requirements for functions aren't documented in the kerneldoc.
144 Instead locking should be check at runtime using e.g.
145 <code>WARN_ON(!mutex_is_locked(...));</code>. Since it's much easier to
146 ignore documentation than runtime noise this provides more value. And on
147 top of that runtime checks do need to be updated when the locking rules
148 change, increasing the chances that they're correct. Within the
149 documentation the locking rules should be explained in the relevant
150 structures: Either in the comment for the lock explaining what it
151 protects, or data fields need a note about which lock protects them, or
152 both.
153 </para>
154 <para>
155 Functions which have a non-<code>void</code> return value should have a
156 section called "Returns" explaining the expected return values in
157 different cases and their meanings. Currently there's no consensus whether
158 that section name should be all upper-case or not, and whether it should
159 end in a colon or not. Go with the file-local style. Other common section
160 names are "Notes" with information for dangerous or tricky corner cases,
161 and "FIXME" where the interface could be cleaned up.
162 </para>
163 </sect1>
2d2ef822
JB
164 </chapter>
165
166 <!-- Internals -->
167
168 <chapter id="drmInternals">
169 <title>DRM Internals</title>
170 <para>
171 This chapter documents DRM internals relevant to driver authors
172 and developers working to add support for the latest features to
173 existing drivers.
174 </para>
175 <para>
a78f6787 176 First, we go over some typical driver initialization
2d2ef822
JB
177 requirements, like setting up command buffers, creating an
178 initial output configuration, and initializing core services.
a78f6787 179 Subsequent sections cover core internals in more detail,
2d2ef822
JB
180 providing implementation notes and examples.
181 </para>
182 <para>
183 The DRM layer provides several services to graphics drivers,
184 many of them driven by the application interfaces it provides
185 through libdrm, the library that wraps most of the DRM ioctls.
186 These include vblank event handling, memory
187 management, output management, framebuffer management, command
188 submission &amp; fencing, suspend/resume support, and DMA
189 services.
190 </para>
2d2ef822
JB
191
192 <!-- Internals: driver init -->
193
194 <sect1>
9cad9c95
LP
195 <title>Driver Initialization</title>
196 <para>
197 At the core of every DRM driver is a <structname>drm_driver</structname>
198 structure. Drivers typically statically initialize a drm_driver structure,
6e3f797c
DV
199 and then pass it to <function>drm_dev_alloc()</function> to allocate a
200 device instance. After the device instance is fully initialized it can be
201 registered (which makes it accessible from userspace) using
202 <function>drm_dev_register()</function>.
b528ae71 203 </para>
9cad9c95
LP
204 <para>
205 The <structname>drm_driver</structname> structure contains static
206 information that describes the driver and features it supports, and
207 pointers to methods that the DRM core will call to implement the DRM API.
208 We will first go through the <structname>drm_driver</structname> static
209 information fields, and will then describe individual operations in
210 details as they get used in later sections.
2d2ef822 211 </para>
2d2ef822 212 <sect2>
9cad9c95
LP
213 <title>Driver Information</title>
214 <sect3>
215 <title>Driver Features</title>
216 <para>
217 Drivers inform the DRM core about their requirements and supported
218 features by setting appropriate flags in the
219 <structfield>driver_features</structfield> field. Since those flags
220 influence the DRM core behaviour since registration time, most of them
221 must be set to registering the <structname>drm_driver</structname>
222 instance.
223 </para>
224 <synopsis>u32 driver_features;</synopsis>
225 <variablelist>
226 <title>Driver Feature Flags</title>
227 <varlistentry>
228 <term>DRIVER_USE_AGP</term>
229 <listitem><para>
230 Driver uses AGP interface, the DRM core will manage AGP resources.
231 </para></listitem>
232 </varlistentry>
233 <varlistentry>
234 <term>DRIVER_REQUIRE_AGP</term>
235 <listitem><para>
236 Driver needs AGP interface to function. AGP initialization failure
237 will become a fatal error.
238 </para></listitem>
239 </varlistentry>
9cad9c95
LP
240 <varlistentry>
241 <term>DRIVER_PCI_DMA</term>
242 <listitem><para>
243 Driver is capable of PCI DMA, mapping of PCI DMA buffers to
244 userspace will be enabled. Deprecated.
245 </para></listitem>
246 </varlistentry>
247 <varlistentry>
248 <term>DRIVER_SG</term>
249 <listitem><para>
250 Driver can perform scatter/gather DMA, allocation and mapping of
251 scatter/gather buffers will be enabled. Deprecated.
252 </para></listitem>
253 </varlistentry>
254 <varlistentry>
255 <term>DRIVER_HAVE_DMA</term>
256 <listitem><para>
257 Driver supports DMA, the userspace DMA API will be supported.
258 Deprecated.
259 </para></listitem>
260 </varlistentry>
261 <varlistentry>
262 <term>DRIVER_HAVE_IRQ</term><term>DRIVER_IRQ_SHARED</term>
263 <listitem><para>
02b62985
LP
264 DRIVER_HAVE_IRQ indicates whether the driver has an IRQ handler
265 managed by the DRM Core. The core will support simple IRQ handler
266 installation when the flag is set. The installation process is
267 described in <xref linkend="drm-irq-registration"/>.</para>
268 <para>DRIVER_IRQ_SHARED indicates whether the device &amp; handler
269 support shared IRQs (note that this is required of PCI drivers).
9cad9c95
LP
270 </para></listitem>
271 </varlistentry>
9cad9c95
LP
272 <varlistentry>
273 <term>DRIVER_GEM</term>
274 <listitem><para>
275 Driver use the GEM memory manager.
276 </para></listitem>
277 </varlistentry>
278 <varlistentry>
279 <term>DRIVER_MODESET</term>
280 <listitem><para>
281 Driver supports mode setting interfaces (KMS).
282 </para></listitem>
283 </varlistentry>
284 <varlistentry>
285 <term>DRIVER_PRIME</term>
286 <listitem><para>
287 Driver implements DRM PRIME buffer sharing.
288 </para></listitem>
289 </varlistentry>
1793126f
DH
290 <varlistentry>
291 <term>DRIVER_RENDER</term>
292 <listitem><para>
293 Driver supports dedicated render nodes.
294 </para></listitem>
295 </varlistentry>
88a48e29
RC
296 <varlistentry>
297 <term>DRIVER_ATOMIC</term>
298 <listitem><para>
299 Driver supports atomic properties. In this case the driver
300 must implement appropriate obj->atomic_get_property() vfuncs
301 for any modeset objects with driver specific properties.
302 </para></listitem>
303 </varlistentry>
9cad9c95
LP
304 </variablelist>
305 </sect3>
306 <sect3>
307 <title>Major, Minor and Patchlevel</title>
308 <synopsis>int major;
309int minor;
310int patchlevel;</synopsis>
311 <para>
312 The DRM core identifies driver versions by a major, minor and patch
313 level triplet. The information is printed to the kernel log at
314 initialization time and passed to userspace through the
315 DRM_IOCTL_VERSION ioctl.
316 </para>
317 <para>
318 The major and minor numbers are also used to verify the requested driver
319 API version passed to DRM_IOCTL_SET_VERSION. When the driver API changes
320 between minor versions, applications can call DRM_IOCTL_SET_VERSION to
321 select a specific version of the API. If the requested major isn't equal
322 to the driver major, or the requested minor is larger than the driver
323 minor, the DRM_IOCTL_SET_VERSION call will return an error. Otherwise
324 the driver's set_version() method will be called with the requested
325 version.
326 </para>
327 </sect3>
328 <sect3>
329 <title>Name, Description and Date</title>
330 <synopsis>char *name;
331char *desc;
332char *date;</synopsis>
333 <para>
334 The driver name is printed to the kernel log at initialization time,
335 used for IRQ registration and passed to userspace through
336 DRM_IOCTL_VERSION.
337 </para>
338 <para>
339 The driver description is a purely informative string passed to
340 userspace through the DRM_IOCTL_VERSION ioctl and otherwise unused by
341 the kernel.
342 </para>
343 <para>
344 The driver date, formatted as YYYYMMDD, is meant to identify the date of
345 the latest modification to the driver. However, as most drivers fail to
346 update it, its value is mostly useless. The DRM core prints it to the
347 kernel log at initialization time and passes it to userspace through the
348 DRM_IOCTL_VERSION ioctl.
349 </para>
350 </sect3>
351 </sect2>
c6a1af8a 352 <sect2>
6e3f797c
DV
353 <title>Device Instance and Driver Handling</title>
354!Pdrivers/gpu/drm/drm_drv.c driver instance overview
25196484 355!Edrivers/gpu/drm/drm_drv.c
c6a1af8a 356 </sect2>
9cad9c95
LP
357 <sect2>
358 <title>Driver Load</title>
9cad9c95
LP
359 <sect3 id="drm-irq-registration">
360 <title>IRQ Registration</title>
361 <para>
362 The DRM core tries to facilitate IRQ handler registration and
363 unregistration by providing <function>drm_irq_install</function> and
364 <function>drm_irq_uninstall</function> functions. Those functions only
02b62985
LP
365 support a single interrupt per device, devices that use more than one
366 IRQs need to be handled manually.
9cad9c95 367 </para>
02b62985
LP
368 <sect4>
369 <title>Managed IRQ Registration</title>
02b62985
LP
370 <para>
371 <function>drm_irq_install</function> starts by calling the
372 <methodname>irq_preinstall</methodname> driver operation. The operation
373 is optional and must make sure that the interrupt will not get fired by
374 clearing all pending interrupt flags or disabling the interrupt.
375 </para>
376 <para>
bb0f1b5c 377 The passed-in IRQ will then be requested by a call to
02b62985
LP
378 <function>request_irq</function>. If the DRIVER_IRQ_SHARED driver
379 feature flag is set, a shared (IRQF_SHARED) IRQ handler will be
380 requested.
381 </para>
382 <para>
383 The IRQ handler function must be provided as the mandatory irq_handler
384 driver operation. It will get passed directly to
385 <function>request_irq</function> and thus has the same prototype as all
386 IRQ handlers. It will get called with a pointer to the DRM device as the
387 second argument.
388 </para>
389 <para>
390 Finally the function calls the optional
391 <methodname>irq_postinstall</methodname> driver operation. The operation
392 usually enables interrupts (excluding the vblank interrupt, which is
393 enabled separately), but drivers may choose to enable/disable interrupts
394 at a different time.
395 </para>
396 <para>
397 <function>drm_irq_uninstall</function> is similarly used to uninstall an
398 IRQ handler. It starts by waking up all processes waiting on a vblank
399 interrupt to make sure they don't hang, and then calls the optional
400 <methodname>irq_uninstall</methodname> driver operation. The operation
401 must disable all hardware interrupts. Finally the function frees the IRQ
402 by calling <function>free_irq</function>.
403 </para>
404 </sect4>
405 <sect4>
406 <title>Manual IRQ Registration</title>
407 <para>
408 Drivers that require multiple interrupt handlers can't use the managed
409 IRQ registration functions. In that case IRQs must be registered and
410 unregistered manually (usually with the <function>request_irq</function>
411 and <function>free_irq</function> functions, or their devm_* equivalent).
412 </para>
413 <para>
414 When manually registering IRQs, drivers must not set the DRIVER_HAVE_IRQ
415 driver feature flag, and must not provide the
416 <methodname>irq_handler</methodname> driver operation. They must set the
417 <structname>drm_device</structname> <structfield>irq_enabled</structfield>
418 field to 1 upon registration of the IRQs, and clear it to 0 after
419 unregistering the IRQs.
420 </para>
421 </sect4>
9cad9c95
LP
422 </sect3>
423 <sect3>
424 <title>Memory Manager Initialization</title>
425 <para>
426 Every DRM driver requires a memory manager which must be initialized at
427 load time. DRM currently contains two memory managers, the Translation
428 Table Manager (TTM) and the Graphics Execution Manager (GEM).
429 This document describes the use of the GEM memory manager only. See
430 <xref linkend="drm-memory-management"/> for details.
431 </para>
432 </sect3>
433 <sect3>
434 <title>Miscellaneous Device Configuration</title>
435 <para>
436 Another task that may be necessary for PCI devices during configuration
437 is mapping the video BIOS. On many devices, the VBIOS describes device
438 configuration, LCD panel timings (if any), and contains flags indicating
439 device state. Mapping the BIOS can be done using the pci_map_rom() call,
440 a convenience function that takes care of mapping the actual ROM,
441 whether it has been shadowed into memory (typically at address 0xc0000)
442 or exists on the PCI device in the ROM BAR. Note that after the ROM has
443 been mapped and any necessary information has been extracted, it should
444 be unmapped; on many devices, the ROM address decoder is shared with
445 other BARs, so leaving it mapped could cause undesired behaviour like
446 hangs or memory corruption.
447 <!--!Fdrivers/pci/rom.c pci_map_rom-->
448 </para>
449 </sect3>
2d2ef822 450 </sect2>
6e3f797c
DV
451 <sect2>
452 <title>Bus-specific Device Registration and PCI Support</title>
453 <para>
454 A number of functions are provided to help with device registration.
455 The functions deal with PCI and platform devices respectively and are
456 only provided for historical reasons. These are all deprecated and
457 shouldn't be used in new drivers. Besides that there's a few
458 helpers for pci drivers.
459 </para>
460!Edrivers/gpu/drm/drm_pci.c
461!Edrivers/gpu/drm/drm_platform.c
462 </sect2>
9cad9c95 463 </sect1>
2d2ef822 464
9cad9c95 465 <!-- Internals: memory management -->
2d2ef822 466
9cad9c95
LP
467 <sect1 id="drm-memory-management">
468 <title>Memory management</title>
469 <para>
470 Modern Linux systems require large amount of graphics memory to store
471 frame buffers, textures, vertices and other graphics-related data. Given
472 the very dynamic nature of many of that data, managing graphics memory
473 efficiently is thus crucial for the graphics stack and plays a central
474 role in the DRM infrastructure.
475 </para>
476 <para>
477 The DRM core includes two memory managers, namely Translation Table Maps
478 (TTM) and Graphics Execution Manager (GEM). TTM was the first DRM memory
479 manager to be developed and tried to be a one-size-fits-them all
f884ab15 480 solution. It provides a single userspace API to accommodate the need of
9cad9c95
LP
481 all hardware, supporting both Unified Memory Architecture (UMA) devices
482 and devices with dedicated video RAM (i.e. most discrete video cards).
483 This resulted in a large, complex piece of code that turned out to be
484 hard to use for driver development.
485 </para>
486 <para>
487 GEM started as an Intel-sponsored project in reaction to TTM's
488 complexity. Its design philosophy is completely different: instead of
489 providing a solution to every graphics memory-related problems, GEM
490 identified common code between drivers and created a support library to
491 share it. GEM has simpler initialization and execution requirements than
9a6594fc 492 TTM, but has no video RAM management capabilities and is thus limited to
9cad9c95
LP
493 UMA devices.
494 </para>
2d2ef822 495 <sect2>
9cad9c95 496 <title>The Translation Table Manager (TTM)</title>
2d2ef822 497 <para>
79058100 498 TTM design background and information belongs here.
2d2ef822
JB
499 </para>
500 <sect3>
79058100 501 <title>TTM initialization</title>
9cad9c95
LP
502 <warning><para>This section is outdated.</para></warning>
503 <para>
504 Drivers wishing to support TTM must fill out a drm_bo_driver
505 structure. The structure contains several fields with function
506 pointers for initializing the TTM, allocating and freeing memory,
507 waiting for command completion and fence synchronization, and memory
508 migration. See the radeon_ttm.c file for an example of usage.
79058100
TR
509 </para>
510 <para>
511 The ttm_global_reference structure is made up of several fields:
512 </para>
513 <programlisting>
514 struct ttm_global_reference {
515 enum ttm_global_types global_type;
516 size_t size;
517 void *object;
518 int (*init) (struct ttm_global_reference *);
519 void (*release) (struct ttm_global_reference *);
520 };
521 </programlisting>
522 <para>
523 There should be one global reference structure for your memory
524 manager as a whole, and there will be others for each object
525 created by the memory manager at runtime. Your global TTM should
526 have a type of TTM_GLOBAL_TTM_MEM. The size field for the global
527 object should be sizeof(struct ttm_mem_global), and the init and
528 release hooks should point at your driver-specific init and
529 release routines, which probably eventually call
530 ttm_mem_global_init and ttm_mem_global_release, respectively.
531 </para>
532 <para>
533 Once your global TTM accounting structure is set up and initialized
534 by calling ttm_global_item_ref() on it,
535 you need to create a buffer object TTM to
536 provide a pool for buffer object allocation by clients and the
537 kernel itself. The type of this object should be TTM_GLOBAL_TTM_BO,
538 and its size should be sizeof(struct ttm_bo_global). Again,
539 driver-specific init and release functions may be provided,
540 likely eventually calling ttm_bo_global_init() and
541 ttm_bo_global_release(), respectively. Also, like the previous
542 object, ttm_global_item_ref() is used to create an initial reference
543 count for the TTM, which will call your initialization function.
544 </para>
2d2ef822 545 </sect3>
9cad9c95
LP
546 </sect2>
547 <sect2 id="drm-gem">
548 <title>The Graphics Execution Manager (GEM)</title>
549 <para>
550 The GEM design approach has resulted in a memory manager that doesn't
551 provide full coverage of all (or even all common) use cases in its
552 userspace or kernel API. GEM exposes a set of standard memory-related
553 operations to userspace and a set of helper functions to drivers, and let
554 drivers implement hardware-specific operations with their own private API.
555 </para>
556 <para>
557 The GEM userspace API is described in the
558 <ulink url="http://lwn.net/Articles/283798/"><citetitle>GEM - the Graphics
559 Execution Manager</citetitle></ulink> article on LWN. While slightly
560 outdated, the document provides a good overview of the GEM API principles.
561 Buffer allocation and read and write operations, described as part of the
562 common GEM API, are currently implemented using driver-specific ioctls.
563 </para>
564 <para>
565 GEM is data-agnostic. It manages abstract buffer objects without knowing
566 what individual buffers contain. APIs that require knowledge of buffer
567 contents or purpose, such as buffer allocation or synchronization
568 primitives, are thus outside of the scope of GEM and must be implemented
569 using driver-specific ioctls.
570 </para>
571 <para>
79058100
TR
572 On a fundamental level, GEM involves several operations:
573 <itemizedlist>
574 <listitem>Memory allocation and freeing</listitem>
575 <listitem>Command execution</listitem>
576 <listitem>Aperture management at command execution time</listitem>
577 </itemizedlist>
578 Buffer object allocation is relatively straightforward and largely
9cad9c95
LP
579 provided by Linux's shmem layer, which provides memory to back each
580 object.
581 </para>
582 <para>
583 Device-specific operations, such as command execution, pinning, buffer
79058100 584 read &amp; write, mapping, and domain ownership transfers are left to
9cad9c95
LP
585 driver-specific ioctls.
586 </para>
587 <sect3>
588 <title>GEM Initialization</title>
589 <para>
590 Drivers that use GEM must set the DRIVER_GEM bit in the struct
591 <structname>drm_driver</structname>
592 <structfield>driver_features</structfield> field. The DRM core will
593 then automatically initialize the GEM core before calling the
594 <methodname>load</methodname> operation. Behind the scene, this will
595 create a DRM Memory Manager object which provides an address space
596 pool for object allocation.
597 </para>
598 <para>
599 In a KMS configuration, drivers need to allocate and initialize a
600 command ring buffer following core GEM initialization if required by
601 the hardware. UMA devices usually have what is called a "stolen"
602 memory region, which provides space for the initial framebuffer and
603 large, contiguous memory regions required by the device. This space is
604 typically not managed by GEM, and must be initialized separately into
605 its own DRM MM object.
606 </para>
607 </sect3>
2d2ef822 608 <sect3>
9cad9c95
LP
609 <title>GEM Objects Creation</title>
610 <para>
611 GEM splits creation of GEM objects and allocation of the memory that
612 backs them in two distinct operations.
613 </para>
614 <para>
615 GEM objects are represented by an instance of struct
616 <structname>drm_gem_object</structname>. Drivers usually need to extend
617 GEM objects with private information and thus create a driver-specific
618 GEM object structure type that embeds an instance of struct
619 <structname>drm_gem_object</structname>.
620 </para>
621 <para>
622 To create a GEM object, a driver allocates memory for an instance of its
623 specific GEM object type and initializes the embedded struct
624 <structname>drm_gem_object</structname> with a call to
625 <function>drm_gem_object_init</function>. The function takes a pointer to
626 the DRM device, a pointer to the GEM object and the buffer object size
627 in bytes.
628 </para>
629 <para>
630 GEM uses shmem to allocate anonymous pageable memory.
631 <function>drm_gem_object_init</function> will create an shmfs file of
632 the requested size and store it into the struct
633 <structname>drm_gem_object</structname> <structfield>filp</structfield>
634 field. The memory is used as either main storage for the object when the
635 graphics hardware uses system memory directly or as a backing store
636 otherwise.
637 </para>
638 <para>
639 Drivers are responsible for the actual physical pages allocation by
640 calling <function>shmem_read_mapping_page_gfp</function> for each page.
641 Note that they can decide to allocate pages when initializing the GEM
642 object, or to delay allocation until the memory is needed (for instance
643 when a page fault occurs as a result of a userspace memory access or
644 when the driver needs to start a DMA transfer involving the memory).
645 </para>
646 <para>
647 Anonymous pageable memory allocation is not always desired, for instance
648 when the hardware requires physically contiguous system memory as is
649 often the case in embedded devices. Drivers can create GEM objects with
650 no shmfs backing (called private GEM objects) by initializing them with
651 a call to <function>drm_gem_private_object_init</function> instead of
652 <function>drm_gem_object_init</function>. Storage for private GEM
653 objects must be managed by drivers.
654 </para>
9cad9c95
LP
655 </sect3>
656 <sect3>
657 <title>GEM Objects Lifetime</title>
658 <para>
659 All GEM objects are reference-counted by the GEM core. References can be
660 acquired and release by <function>calling drm_gem_object_reference</function>
661 and <function>drm_gem_object_unreference</function> respectively. The
662 caller must hold the <structname>drm_device</structname>
decc60bf
DV
663 <structfield>struct_mutex</structfield> lock when calling
664 <function>drm_gem_object_reference</function>. As a convenience, GEM
665 provides <function>drm_gem_object_unreference_unlocked</function>
666 functions that can be called without holding the lock.
9cad9c95
LP
667 </para>
668 <para>
669 When the last reference to a GEM object is released the GEM core calls
670 the <structname>drm_driver</structname>
671 <methodname>gem_free_object</methodname> operation. That operation is
672 mandatory for GEM-enabled drivers and must free the GEM object and all
673 associated resources.
674 </para>
675 <para>
676 <synopsis>void (*gem_free_object) (struct drm_gem_object *obj);</synopsis>
df2e0900
DV
677 Drivers are responsible for freeing all GEM object resources. This includes
678 the resources created by the GEM core, which need to be released with
679 <function>drm_gem_object_release</function>.
9cad9c95
LP
680 </para>
681 </sect3>
682 <sect3>
683 <title>GEM Objects Naming</title>
684 <para>
685 Communication between userspace and the kernel refers to GEM objects
686 using local handles, global names or, more recently, file descriptors.
687 All of those are 32-bit integer values; the usual Linux kernel limits
688 apply to the file descriptors.
689 </para>
690 <para>
691 GEM handles are local to a DRM file. Applications get a handle to a GEM
692 object through a driver-specific ioctl, and can use that handle to refer
693 to the GEM object in other standard or driver-specific ioctls. Closing a
694 DRM file handle frees all its GEM handles and dereferences the
695 associated GEM objects.
696 </para>
697 <para>
698 To create a handle for a GEM object drivers call
699 <function>drm_gem_handle_create</function>. The function takes a pointer
700 to the DRM file and the GEM object and returns a locally unique handle.
701 When the handle is no longer needed drivers delete it with a call to
702 <function>drm_gem_handle_delete</function>. Finally the GEM object
703 associated with a handle can be retrieved by a call to
704 <function>drm_gem_object_lookup</function>.
705 </para>
706 <para>
707 Handles don't take ownership of GEM objects, they only take a reference
708 to the object that will be dropped when the handle is destroyed. To
709 avoid leaking GEM objects, drivers must make sure they drop the
710 reference(s) they own (such as the initial reference taken at object
711 creation time) as appropriate, without any special consideration for the
712 handle. For example, in the particular case of combined GEM object and
713 handle creation in the implementation of the
714 <methodname>dumb_create</methodname> operation, drivers must drop the
715 initial reference to the GEM object before returning the handle.
716 </para>
717 <para>
718 GEM names are similar in purpose to handles but are not local to DRM
719 files. They can be passed between processes to reference a GEM object
720 globally. Names can't be used directly to refer to objects in the DRM
721 API, applications must convert handles to names and names to handles
722 using the DRM_IOCTL_GEM_FLINK and DRM_IOCTL_GEM_OPEN ioctls
723 respectively. The conversion is handled by the DRM core without any
724 driver-specific support.
725 </para>
79058100
TR
726 <para>
727 GEM also supports buffer sharing with dma-buf file descriptors through
728 PRIME. GEM-based drivers must use the provided helpers functions to
729 implement the exporting and importing correctly. See <xref linkend="drm-prime-support" />.
730 Since sharing file descriptors is inherently more secure than the
731 easily guessable and global GEM names it is the preferred buffer
732 sharing mechanism. Sharing buffers through GEM names is only supported
733 for legacy userspace. Furthermore PRIME also allows cross-device
734 buffer sharing since it is based on dma-bufs.
735 </para>
9cad9c95
LP
736 </sect3>
737 <sect3 id="drm-gem-objects-mapping">
738 <title>GEM Objects Mapping</title>
739 <para>
740 Because mapping operations are fairly heavyweight GEM favours
741 read/write-like access to buffers, implemented through driver-specific
742 ioctls, over mapping buffers to userspace. However, when random access
743 to the buffer is needed (to perform software rendering for instance),
744 direct access to the object can be more efficient.
745 </para>
746 <para>
747 The mmap system call can't be used directly to map GEM objects, as they
748 don't have their own file handle. Two alternative methods currently
749 co-exist to map GEM objects to userspace. The first method uses a
750 driver-specific ioctl to perform the mapping operation, calling
751 <function>do_mmap</function> under the hood. This is often considered
752 dubious, seems to be discouraged for new GEM-enabled drivers, and will
753 thus not be described here.
754 </para>
755 <para>
756 The second method uses the mmap system call on the DRM file handle.
757 <synopsis>void *mmap(void *addr, size_t length, int prot, int flags, int fd,
758 off_t offset);</synopsis>
759 DRM identifies the GEM object to be mapped by a fake offset passed
760 through the mmap offset argument. Prior to being mapped, a GEM object
761 must thus be associated with a fake offset. To do so, drivers must call
df2e0900 762 <function>drm_gem_create_mmap_offset</function> on the object.
9cad9c95
LP
763 </para>
764 <para>
765 Once allocated, the fake offset value
9cad9c95
LP
766 must be passed to the application in a driver-specific way and can then
767 be used as the mmap offset argument.
768 </para>
769 <para>
770 The GEM core provides a helper method <function>drm_gem_mmap</function>
771 to handle object mapping. The method can be set directly as the mmap
772 file operation handler. It will look up the GEM object based on the
773 offset value and set the VMA operations to the
774 <structname>drm_driver</structname> <structfield>gem_vm_ops</structfield>
775 field. Note that <function>drm_gem_mmap</function> doesn't map memory to
776 userspace, but relies on the driver-provided fault handler to map pages
777 individually.
778 </para>
779 <para>
780 To use <function>drm_gem_mmap</function>, drivers must fill the struct
781 <structname>drm_driver</structname> <structfield>gem_vm_ops</structfield>
782 field with a pointer to VM operations.
783 </para>
784 <para>
785 <synopsis>struct vm_operations_struct *gem_vm_ops
786
787 struct vm_operations_struct {
788 void (*open)(struct vm_area_struct * area);
789 void (*close)(struct vm_area_struct * area);
790 int (*fault)(struct vm_area_struct *vma, struct vm_fault *vmf);
791 };</synopsis>
792 </para>
793 <para>
794 The <methodname>open</methodname> and <methodname>close</methodname>
795 operations must update the GEM object reference count. Drivers can use
796 the <function>drm_gem_vm_open</function> and
797 <function>drm_gem_vm_close</function> helper functions directly as open
798 and close handlers.
799 </para>
800 <para>
801 The fault operation handler is responsible for mapping individual pages
802 to userspace when a page fault occurs. Depending on the memory
803 allocation scheme, drivers can allocate pages at fault time, or can
804 decide to allocate memory for the GEM object at the time the object is
805 created.
806 </para>
807 <para>
808 Drivers that want to map the GEM object upfront instead of handling page
809 faults can implement their own mmap file operation handler.
810 </para>
811 </sect3>
9cad9c95
LP
812 <sect3>
813 <title>Memory Coherency</title>
814 <para>
815 When mapped to the device or used in a command buffer, backing pages
816 for an object are flushed to memory and marked write combined so as to
817 be coherent with the GPU. Likewise, if the CPU accesses an object
818 after the GPU has finished rendering to the object, then the object
819 must be made coherent with the CPU's view of memory, usually involving
820 GPU cache flushing of various kinds. This core CPU&lt;-&gt;GPU
821 coherency management is provided by a device-specific ioctl, which
822 evaluates an object's current domain and performs any necessary
823 flushing or synchronization to put the object into the desired
824 coherency domain (note that the object may be busy, i.e. an active
825 render target; in that case, setting the domain blocks the client and
826 waits for rendering to complete before performing any necessary
827 flushing operations).
828 </para>
829 </sect3>
830 <sect3>
831 <title>Command Execution</title>
832 <para>
79058100 833 Perhaps the most important GEM function for GPU devices is providing a
9cad9c95
LP
834 command execution interface to clients. Client programs construct
835 command buffers containing references to previously allocated memory
836 objects, and then submit them to GEM. At that point, GEM takes care to
837 bind all the objects into the GTT, execute the buffer, and provide
838 necessary synchronization between clients accessing the same buffers.
839 This often involves evicting some objects from the GTT and re-binding
840 others (a fairly expensive operation), and providing relocation
841 support which hides fixed GTT offsets from clients. Clients must take
842 care not to submit command buffers that reference more objects than
843 can fit in the GTT; otherwise, GEM will reject them and no rendering
844 will occur. Similarly, if several objects in the buffer require fence
845 registers to be allocated for correct rendering (e.g. 2D blits on
846 pre-965 chips), care must be taken not to require more fence registers
847 than are available to the client. Such resource management should be
848 abstracted from the client in libdrm.
849 </para>
2d2ef822 850 </sect3>
decc60bf
DV
851 </sect2>
852 <sect2>
853 <title>GEM Function Reference</title>
89d61fc0 854!Edrivers/gpu/drm/drm_gem.c
decc60bf 855!Iinclude/drm/drm_gem.h
79058100
TR
856 </sect2>
857 <sect2>
858 <title>VMA Offset Manager</title>
4c5acf3c
DV
859!Pdrivers/gpu/drm/drm_vma_manager.c vma offset manager
860!Edrivers/gpu/drm/drm_vma_manager.c
861!Iinclude/drm/drm_vma_manager.h
79058100
TR
862 </sect2>
863 <sect2 id="drm-prime-support">
864 <title>PRIME Buffer Sharing</title>
865 <para>
866 PRIME is the cross device buffer sharing framework in drm, originally
867 created for the OPTIMUS range of multi-gpu platforms. To userspace
868 PRIME buffers are dma-buf based file descriptors.
869 </para>
870 <sect3>
871 <title>Overview and Driver Interface</title>
872 <para>
873 Similar to GEM global names, PRIME file descriptors are
874 also used to share buffer objects across processes. They offer
875 additional security: as file descriptors must be explicitly sent over
876 UNIX domain sockets to be shared between applications, they can't be
877 guessed like the globally unique GEM names.
878 </para>
879 <para>
880 Drivers that support the PRIME
881 API must set the DRIVER_PRIME bit in the struct
882 <structname>drm_driver</structname>
883 <structfield>driver_features</structfield> field, and implement the
884 <methodname>prime_handle_to_fd</methodname> and
885 <methodname>prime_fd_to_handle</methodname> operations.
886 </para>
887 <para>
888 <synopsis>int (*prime_handle_to_fd)(struct drm_device *dev,
889 struct drm_file *file_priv, uint32_t handle,
890 uint32_t flags, int *prime_fd);
251261db 891int (*prime_fd_to_handle)(struct drm_device *dev,
79058100
TR
892 struct drm_file *file_priv, int prime_fd,
893 uint32_t *handle);</synopsis>
894 Those two operations convert a handle to a PRIME file descriptor and
895 vice versa. Drivers must use the kernel dma-buf buffer sharing framework
896 to manage the PRIME file descriptors. Similar to the mode setting
897 API PRIME is agnostic to the underlying buffer object manager, as
898 long as handles are 32bit unsigned integers.
899 </para>
900 <para>
901 While non-GEM drivers must implement the operations themselves, GEM
902 drivers must use the <function>drm_gem_prime_handle_to_fd</function>
903 and <function>drm_gem_prime_fd_to_handle</function> helper functions.
904 Those helpers rely on the driver
905 <methodname>gem_prime_export</methodname> and
906 <methodname>gem_prime_import</methodname> operations to create a dma-buf
907 instance from a GEM object (dma-buf exporter role) and to create a GEM
908 object from a dma-buf instance (dma-buf importer role).
909 </para>
910 <para>
911 <synopsis>struct dma_buf * (*gem_prime_export)(struct drm_device *dev,
912 struct drm_gem_object *obj,
913 int flags);
251261db 914struct drm_gem_object * (*gem_prime_import)(struct drm_device *dev,
79058100
TR
915 struct dma_buf *dma_buf);</synopsis>
916 These two operations are mandatory for GEM drivers that support
917 PRIME.
918 </para>
251261db 919 </sect3>
79058100
TR
920 <sect3>
921 <title>PRIME Helper Functions</title>
922!Pdrivers/gpu/drm/drm_prime.c PRIME Helpers
923 </sect3>
924 </sect2>
925 <sect2>
926 <title>PRIME Function References</title>
39cc344a 927!Edrivers/gpu/drm/drm_prime.c
79058100
TR
928 </sect2>
929 <sect2>
930 <title>DRM MM Range Allocator</title>
931 <sect3>
932 <title>Overview</title>
93110be6 933!Pdrivers/gpu/drm/drm_mm.c Overview
79058100
TR
934 </sect3>
935 <sect3>
936 <title>LRU Scan/Eviction Support</title>
93110be6 937!Pdrivers/gpu/drm/drm_mm.c lru scan roaster
79058100 938 </sect3>
93110be6 939 </sect2>
79058100
TR
940 <sect2>
941 <title>DRM MM Range Allocator Function References</title>
e18c0412
DV
942!Edrivers/gpu/drm/drm_mm.c
943!Iinclude/drm/drm_mm.h
79058100 944 </sect2>
d7883f87
TR
945 <sect2>
946 <title>CMA Helper Functions Reference</title>
947!Pdrivers/gpu/drm/drm_gem_cma_helper.c cma helpers
948!Edrivers/gpu/drm/drm_gem_cma_helper.c
949!Iinclude/drm/drm_gem_cma_helper.h
950 </sect2>
9cad9c95
LP
951 </sect1>
952
953 <!-- Internals: mode setting -->
2d2ef822 954
9cad9c95
LP
955 <sect1 id="drm-mode-setting">
956 <title>Mode Setting</title>
957 <para>
958 Drivers must initialize the mode setting core by calling
959 <function>drm_mode_config_init</function> on the DRM device. The function
960 initializes the <structname>drm_device</structname>
961 <structfield>mode_config</structfield> field and never fails. Once done,
962 mode configuration must be setup by initializing the following fields.
963 </para>
964 <itemizedlist>
965 <listitem>
966 <synopsis>int min_width, min_height;
967int max_width, max_height;</synopsis>
968 <para>
969 Minimum and maximum width and height of the frame buffers in pixel
970 units.
971 </para>
972 </listitem>
973 <listitem>
974 <synopsis>struct drm_mode_config_funcs *funcs;</synopsis>
975 <para>Mode setting functions.</para>
976 </listitem>
977 </itemizedlist>
3ec0db81
DV
978 <sect2>
979 <title>Display Modes Function Reference</title>
f5aabb97 980!Iinclude/drm/drm_modes.h
3ec0db81 981!Edrivers/gpu/drm/drm_modes.c
cc4ceb48
DV
982 </sect2>
983 <sect2>
984 <title>Atomic Mode Setting Function Reference</title>
985!Edrivers/gpu/drm/drm_atomic.c
c0714fc9 986!Idrivers/gpu/drm/drm_atomic.c
3ec0db81 987 </sect2>
2d2ef822 988 <sect2>
9cad9c95
LP
989 <title>Frame Buffer Creation</title>
990 <synopsis>struct drm_framebuffer *(*fb_create)(struct drm_device *dev,
991 struct drm_file *file_priv,
992 struct drm_mode_fb_cmd2 *mode_cmd);</synopsis>
2d2ef822 993 <para>
9cad9c95
LP
994 Frame buffers are abstract memory objects that provide a source of
995 pixels to scanout to a CRTC. Applications explicitly request the
996 creation of frame buffers through the DRM_IOCTL_MODE_ADDFB(2) ioctls and
997 receive an opaque handle that can be passed to the KMS CRTC control,
998 plane configuration and page flip functions.
999 </para>
1000 <para>
1001 Frame buffers rely on the underneath memory manager for low-level memory
1002 operations. When creating a frame buffer applications pass a memory
1003 handle (or a list of memory handles for multi-planar formats) through
065a5027
DV
1004 the <parameter>drm_mode_fb_cmd2</parameter> argument. For drivers using
1005 GEM as their userspace buffer management interface this would be a GEM
1006 handle. Drivers are however free to use their own backing storage object
1007 handles, e.g. vmwgfx directly exposes special TTM handles to userspace
1008 and so expects TTM handles in the create ioctl and not GEM handles.
9cad9c95
LP
1009 </para>
1010 <para>
1011 Drivers must first validate the requested frame buffer parameters passed
1012 through the mode_cmd argument. In particular this is where invalid
1013 sizes, pixel formats or pitches can be caught.
1014 </para>
1015 <para>
1016 If the parameters are deemed valid, drivers then create, initialize and
1017 return an instance of struct <structname>drm_framebuffer</structname>.
1018 If desired the instance can be embedded in a larger driver-specific
5d7a9515
DV
1019 structure. Drivers must fill its <structfield>width</structfield>,
1020 <structfield>height</structfield>, <structfield>pitches</structfield>,
1021 <structfield>offsets</structfield>, <structfield>depth</structfield>,
1022 <structfield>bits_per_pixel</structfield> and
1023 <structfield>pixel_format</structfield> fields from the values passed
1024 through the <parameter>drm_mode_fb_cmd2</parameter> argument. They
1025 should call the <function>drm_helper_mode_fill_fb_struct</function>
1026 helper function to do so.
1027 </para>
1028
1029 <para>
065a5027 1030 The initialization of the new framebuffer instance is finalized with a
5d7a9515
DV
1031 call to <function>drm_framebuffer_init</function> which takes a pointer
1032 to DRM frame buffer operations (struct
1033 <structname>drm_framebuffer_funcs</structname>). Note that this function
1034 publishes the framebuffer and so from this point on it can be accessed
1035 concurrently from other threads. Hence it must be the last step in the
1036 driver's framebuffer initialization sequence. Frame buffer operations
1037 are
9cad9c95
LP
1038 <itemizedlist>
1039 <listitem>
1040 <synopsis>int (*create_handle)(struct drm_framebuffer *fb,
1041 struct drm_file *file_priv, unsigned int *handle);</synopsis>
1042 <para>
1043 Create a handle to the frame buffer underlying memory object. If
1044 the frame buffer uses a multi-plane format, the handle will
1045 reference the memory object associated with the first plane.
1046 </para>
1047 <para>
1048 Drivers call <function>drm_gem_handle_create</function> to create
1049 the handle.
1050 </para>
1051 </listitem>
1052 <listitem>
1053 <synopsis>void (*destroy)(struct drm_framebuffer *framebuffer);</synopsis>
1054 <para>
1055 Destroy the frame buffer object and frees all associated
1056 resources. Drivers must call
1057 <function>drm_framebuffer_cleanup</function> to free resources
1058 allocated by the DRM core for the frame buffer object, and must
1059 make sure to unreference all memory objects associated with the
1060 frame buffer. Handles created by the
1061 <methodname>create_handle</methodname> operation are released by
1062 the DRM core.
1063 </para>
1064 </listitem>
1065 <listitem>
1066 <synopsis>int (*dirty)(struct drm_framebuffer *framebuffer,
1067 struct drm_file *file_priv, unsigned flags, unsigned color,
1068 struct drm_clip_rect *clips, unsigned num_clips);</synopsis>
1069 <para>
1070 This optional operation notifies the driver that a region of the
1071 frame buffer has changed in response to a DRM_IOCTL_MODE_DIRTYFB
1072 ioctl call.
1073 </para>
1074 </listitem>
1075 </itemizedlist>
1076 </para>
1077 <para>
5d7a9515
DV
1078 The lifetime of a drm framebuffer is controlled with a reference count,
1079 drivers can grab additional references with
9ee984a5 1080 <function>drm_framebuffer_reference</function>and drop them
5d7a9515
DV
1081 again with <function>drm_framebuffer_unreference</function>. For
1082 driver-private framebuffers for which the last reference is never
1083 dropped (e.g. for the fbdev framebuffer when the struct
1084 <structname>drm_framebuffer</structname> is embedded into the fbdev
1085 helper struct) drivers can manually clean up a framebuffer at module
1086 unload time with
1087 <function>drm_framebuffer_unregister_private</function>.
9ee984a5 1088 </para>
9cad9c95 1089 </sect2>
065a5027
DV
1090 <sect2>
1091 <title>Dumb Buffer Objects</title>
1092 <para>
1093 The KMS API doesn't standardize backing storage object creation and
1094 leaves it to driver-specific ioctls. Furthermore actually creating a
1095 buffer object even for GEM-based drivers is done through a
1096 driver-specific ioctl - GEM only has a common userspace interface for
1097 sharing and destroying objects. While not an issue for full-fledged
1098 graphics stacks that include device-specific userspace components (in
1099 libdrm for instance), this limit makes DRM-based early boot graphics
1100 unnecessarily complex.
1101 </para>
1102 <para>
1103 Dumb objects partly alleviate the problem by providing a standard
1104 API to create dumb buffers suitable for scanout, which can then be used
1105 to create KMS frame buffers.
1106 </para>
1107 <para>
1108 To support dumb objects drivers must implement the
1109 <methodname>dumb_create</methodname>,
1110 <methodname>dumb_destroy</methodname> and
1111 <methodname>dumb_map_offset</methodname> operations.
1112 </para>
1113 <itemizedlist>
1114 <listitem>
1115 <synopsis>int (*dumb_create)(struct drm_file *file_priv, struct drm_device *dev,
1116 struct drm_mode_create_dumb *args);</synopsis>
1117 <para>
1118 The <methodname>dumb_create</methodname> operation creates a driver
1119 object (GEM or TTM handle) suitable for scanout based on the
1120 width, height and depth from the struct
1121 <structname>drm_mode_create_dumb</structname> argument. It fills the
1122 argument's <structfield>handle</structfield>,
1123 <structfield>pitch</structfield> and <structfield>size</structfield>
1124 fields with a handle for the newly created object and its line
1125 pitch and size in bytes.
1126 </para>
1127 </listitem>
1128 <listitem>
1129 <synopsis>int (*dumb_destroy)(struct drm_file *file_priv, struct drm_device *dev,
1130 uint32_t handle);</synopsis>
1131 <para>
1132 The <methodname>dumb_destroy</methodname> operation destroys a dumb
1133 object created by <methodname>dumb_create</methodname>.
1134 </para>
1135 </listitem>
1136 <listitem>
1137 <synopsis>int (*dumb_map_offset)(struct drm_file *file_priv, struct drm_device *dev,
1138 uint32_t handle, uint64_t *offset);</synopsis>
1139 <para>
1140 The <methodname>dumb_map_offset</methodname> operation associates an
1141 mmap fake offset with the object given by the handle and returns
1142 it. Drivers must use the
1143 <function>drm_gem_create_mmap_offset</function> function to
1144 associate the fake offset as described in
1145 <xref linkend="drm-gem-objects-mapping"/>.
1146 </para>
1147 </listitem>
1148 </itemizedlist>
1149 <para>
1150 Note that dumb objects may not be used for gpu acceleration, as has been
1151 attempted on some ARM embedded platforms. Such drivers really must have
1152 a hardware-specific ioctl to allocate suitable buffer objects.
1153 </para>
1154 </sect2>
9cad9c95
LP
1155 <sect2>
1156 <title>Output Polling</title>
1157 <synopsis>void (*output_poll_changed)(struct drm_device *dev);</synopsis>
1158 <para>
1159 This operation notifies the driver that the status of one or more
1160 connectors has changed. Drivers that use the fb helper can just call the
1161 <function>drm_fb_helper_hotplug_event</function> function to handle this
1162 operation.
1163 </para>
1164 </sect2>
5d7a9515
DV
1165 <sect2>
1166 <title>Locking</title>
1167 <para>
1168 Beside some lookup structures with their own locking (which is hidden
1169 behind the interface functions) most of the modeset state is protected
1170 by the <code>dev-&lt;mode_config.lock</code> mutex and additionally
1171 per-crtc locks to allow cursor updates, pageflips and similar operations
1172 to occur concurrently with background tasks like output detection.
1173 Operations which cross domains like a full modeset always grab all
1174 locks. Drivers there need to protect resources shared between crtcs with
1175 additional locking. They also need to be careful to always grab the
1176 relevant crtc locks if a modset functions touches crtc state, e.g. for
1177 load detection (which does only grab the <code>mode_config.lock</code>
1178 to allow concurrent screen updates on live crtcs).
1179 </para>
1180 </sect2>
9cad9c95
LP
1181 </sect1>
1182
1183 <!-- Internals: kms initialization and cleanup -->
1184
1185 <sect1 id="drm-kms-init">
1186 <title>KMS Initialization and Cleanup</title>
1187 <para>
1188 A KMS device is abstracted and exposed as a set of planes, CRTCs, encoders
1189 and connectors. KMS drivers must thus create and initialize all those
1190 objects at load time after initializing mode setting.
1191 </para>
1192 <sect2>
1193 <title>CRTCs (struct <structname>drm_crtc</structname>)</title>
1194 <para>
1195 A CRTC is an abstraction representing a part of the chip that contains a
1196 pointer to a scanout buffer. Therefore, the number of CRTCs available
1197 determines how many independent scanout buffers can be active at any
1198 given time. The CRTC structure contains several fields to support this:
1199 a pointer to some video memory (abstracted as a frame buffer object), a
1200 display mode, and an (x, y) offset into the video memory to support
1201 panning or configurations where one piece of video memory spans multiple
1202 CRTCs.
2d2ef822
JB
1203 </para>
1204 <sect3>
9cad9c95
LP
1205 <title>CRTC Initialization</title>
1206 <para>
1207 A KMS device must create and register at least one struct
1208 <structname>drm_crtc</structname> instance. The instance is allocated
1209 and zeroed by the driver, possibly as part of a larger structure, and
1210 registered with a call to <function>drm_crtc_init</function> with a
1211 pointer to CRTC functions.
1212 </para>
1213 </sect3>
9cad9c95
LP
1214 </sect2>
1215 <sect2>
1216 <title>Planes (struct <structname>drm_plane</structname>)</title>
1217 <para>
1218 A plane represents an image source that can be blended with or overlayed
1219 on top of a CRTC during the scanout process. Planes are associated with
1220 a frame buffer to crop a portion of the image memory (source) and
1221 optionally scale it to a destination size. The result is then blended
1222 with or overlayed on top of a CRTC.
1223 </para>
6efa1f2f
MR
1224 <para>
1225 The DRM core recognizes three types of planes:
1226 <itemizedlist>
1227 <listitem>
1228 DRM_PLANE_TYPE_PRIMARY represents a "main" plane for a CRTC. Primary
ef21bf73 1229 planes are the planes operated upon by CRTC modesetting and flipping
f6da8c6e 1230 operations described in the page_flip hook in <structname>drm_crtc_funcs</structname>.
6efa1f2f
MR
1231 </listitem>
1232 <listitem>
1233 DRM_PLANE_TYPE_CURSOR represents a "cursor" plane for a CRTC. Cursor
1234 planes are the planes operated upon by the DRM_IOCTL_MODE_CURSOR and
1235 DRM_IOCTL_MODE_CURSOR2 ioctls.
1236 </listitem>
1237 <listitem>
1238 DRM_PLANE_TYPE_OVERLAY represents all non-primary, non-cursor planes.
1239 Some drivers refer to these types of planes as "sprites" internally.
1240 </listitem>
1241 </itemizedlist>
1242 For compatibility with legacy userspace, only overlay planes are made
1243 available to userspace by default. Userspace clients may set the
1244 DRM_CLIENT_CAP_UNIVERSAL_PLANES client capability bit to indicate that
1245 they wish to receive a universal plane list containing all plane types.
1246 </para>
9cad9c95
LP
1247 <sect3>
1248 <title>Plane Initialization</title>
1249 <para>
6efa1f2f 1250 To create a plane, a KMS drivers allocates and
9cad9c95
LP
1251 zeroes an instances of struct <structname>drm_plane</structname>
1252 (possibly as part of a larger structure) and registers it with a call
6efa1f2f 1253 to <function>drm_universal_plane_init</function>. The function takes a bitmask
9cad9c95 1254 of the CRTCs that can be associated with the plane, a pointer to the
6efa1f2f
MR
1255 plane functions, a list of format supported formats, and the type of
1256 plane (primary, cursor, or overlay) being initialized.
1257 </para>
1258 <para>
1259 Cursor and overlay planes are optional. All drivers should provide
1260 one primary plane per CRTC (although this requirement may change in
1261 the future); drivers that do not wish to provide special handling for
1262 primary planes may make use of the helper functions described in
1263 <xref linkend="drm-kms-planehelpers"/> to create and register a
1264 primary plane with standard capabilities.
9cad9c95
LP
1265 </para>
1266 </sect3>
9cad9c95
LP
1267 </sect2>
1268 <sect2>
1269 <title>Encoders (struct <structname>drm_encoder</structname>)</title>
1270 <para>
1271 An encoder takes pixel data from a CRTC and converts it to a format
1272 suitable for any attached connectors. On some devices, it may be
1273 possible to have a CRTC send data to more than one encoder. In that
1274 case, both encoders would receive data from the same scanout buffer,
1275 resulting in a "cloned" display configuration across the connectors
1276 attached to each encoder.
1277 </para>
1278 <sect3>
1279 <title>Encoder Initialization</title>
1280 <para>
1281 As for CRTCs, a KMS driver must create, initialize and register at
1282 least one struct <structname>drm_encoder</structname> instance. The
1283 instance is allocated and zeroed by the driver, possibly as part of a
1284 larger structure.
1285 </para>
1286 <para>
1287 Drivers must initialize the struct <structname>drm_encoder</structname>
1288 <structfield>possible_crtcs</structfield> and
1289 <structfield>possible_clones</structfield> fields before registering the
1290 encoder. Both fields are bitmasks of respectively the CRTCs that the
1291 encoder can be connected to, and sibling encoders candidate for cloning.
1292 </para>
1293 <para>
1294 After being initialized, the encoder must be registered with a call to
1295 <function>drm_encoder_init</function>. The function takes a pointer to
1296 the encoder functions and an encoder type. Supported types are
1297 <itemizedlist>
1298 <listitem>
1299 DRM_MODE_ENCODER_DAC for VGA and analog on DVI-I/DVI-A
1300 </listitem>
1301 <listitem>
1302 DRM_MODE_ENCODER_TMDS for DVI, HDMI and (embedded) DisplayPort
1303 </listitem>
1304 <listitem>
1305 DRM_MODE_ENCODER_LVDS for display panels
1306 </listitem>
1307 <listitem>
1308 DRM_MODE_ENCODER_TVDAC for TV output (Composite, S-Video, Component,
1309 SCART)
1310 </listitem>
1311 <listitem>
1312 DRM_MODE_ENCODER_VIRTUAL for virtual machine displays
1313 </listitem>
1314 </itemizedlist>
1315 </para>
1316 <para>
1317 Encoders must be attached to a CRTC to be used. DRM drivers leave
1318 encoders unattached at initialization time. Applications (or the fbdev
1319 compatibility layer when implemented) are responsible for attaching the
1320 encoders they want to use to a CRTC.
1321 </para>
1322 </sect3>
9cad9c95
LP
1323 </sect2>
1324 <sect2>
1325 <title>Connectors (struct <structname>drm_connector</structname>)</title>
1326 <para>
1327 A connector is the final destination for pixel data on a device, and
1328 usually connects directly to an external display device like a monitor
1329 or laptop panel. A connector can only be attached to one encoder at a
1330 time. The connector is also the structure where information about the
1331 attached display is kept, so it contains fields for display data, EDID
1332 data, DPMS &amp; connection status, and information about modes
1333 supported on the attached displays.
1334 </para>
1335 <sect3>
1336 <title>Connector Initialization</title>
1337 <para>
1338 Finally a KMS driver must create, initialize, register and attach at
1339 least one struct <structname>drm_connector</structname> instance. The
1340 instance is created as other KMS objects and initialized by setting the
1341 following fields.
1342 </para>
1343 <variablelist>
1344 <varlistentry>
1345 <term><structfield>interlace_allowed</structfield></term>
1346 <listitem><para>
1347 Whether the connector can handle interlaced modes.
1348 </para></listitem>
1349 </varlistentry>
1350 <varlistentry>
1351 <term><structfield>doublescan_allowed</structfield></term>
1352 <listitem><para>
1353 Whether the connector can handle doublescan.
1354 </para></listitem>
1355 </varlistentry>
1356 <varlistentry>
1357 <term><structfield>display_info
1358 </structfield></term>
1359 <listitem><para>
1360 Display information is filled from EDID information when a display
1361 is detected. For non hot-pluggable displays such as flat panels in
1362 embedded systems, the driver should initialize the
1363 <structfield>display_info</structfield>.<structfield>width_mm</structfield>
1364 and
1365 <structfield>display_info</structfield>.<structfield>height_mm</structfield>
1366 fields with the physical size of the display.
1367 </para></listitem>
1368 </varlistentry>
1369 <varlistentry>
1370 <term id="drm-kms-connector-polled"><structfield>polled</structfield></term>
1371 <listitem><para>
1372 Connector polling mode, a combination of
1373 <variablelist>
1374 <varlistentry>
1375 <term>DRM_CONNECTOR_POLL_HPD</term>
1376 <listitem><para>
1377 The connector generates hotplug events and doesn't need to be
1378 periodically polled. The CONNECT and DISCONNECT flags must not
1379 be set together with the HPD flag.
1380 </para></listitem>
1381 </varlistentry>
1382 <varlistentry>
1383 <term>DRM_CONNECTOR_POLL_CONNECT</term>
1384 <listitem><para>
1385 Periodically poll the connector for connection.
1386 </para></listitem>
1387 </varlistentry>
1388 <varlistentry>
1389 <term>DRM_CONNECTOR_POLL_DISCONNECT</term>
1390 <listitem><para>
1391 Periodically poll the connector for disconnection.
1392 </para></listitem>
1393 </varlistentry>
1394 </variablelist>
1395 Set to 0 for connectors that don't support connection status
1396 discovery.
1397 </para></listitem>
1398 </varlistentry>
1399 </variablelist>
1400 <para>
1401 The connector is then registered with a call to
1402 <function>drm_connector_init</function> with a pointer to the connector
1403 functions and a connector type, and exposed through sysfs with a call to
34ea3d38 1404 <function>drm_connector_register</function>.
9cad9c95
LP
1405 </para>
1406 <para>
1407 Supported connector types are
1408 <itemizedlist>
1409 <listitem>DRM_MODE_CONNECTOR_VGA</listitem>
1410 <listitem>DRM_MODE_CONNECTOR_DVII</listitem>
1411 <listitem>DRM_MODE_CONNECTOR_DVID</listitem>
1412 <listitem>DRM_MODE_CONNECTOR_DVIA</listitem>
1413 <listitem>DRM_MODE_CONNECTOR_Composite</listitem>
1414 <listitem>DRM_MODE_CONNECTOR_SVIDEO</listitem>
1415 <listitem>DRM_MODE_CONNECTOR_LVDS</listitem>
1416 <listitem>DRM_MODE_CONNECTOR_Component</listitem>
1417 <listitem>DRM_MODE_CONNECTOR_9PinDIN</listitem>
1418 <listitem>DRM_MODE_CONNECTOR_DisplayPort</listitem>
1419 <listitem>DRM_MODE_CONNECTOR_HDMIA</listitem>
1420 <listitem>DRM_MODE_CONNECTOR_HDMIB</listitem>
1421 <listitem>DRM_MODE_CONNECTOR_TV</listitem>
1422 <listitem>DRM_MODE_CONNECTOR_eDP</listitem>
1423 <listitem>DRM_MODE_CONNECTOR_VIRTUAL</listitem>
1424 </itemizedlist>
1425 </para>
1426 <para>
1427 Connectors must be attached to an encoder to be used. For devices that
1428 map connectors to encoders 1:1, the connector should be attached at
1429 initialization time with a call to
1430 <function>drm_mode_connector_attach_encoder</function>. The driver must
1431 also set the <structname>drm_connector</structname>
1432 <structfield>encoder</structfield> field to point to the attached
1433 encoder.
1434 </para>
1435 <para>
1436 Finally, drivers must initialize the connectors state change detection
1437 with a call to <function>drm_kms_helper_poll_init</function>. If at
1438 least one connector is pollable but can't generate hotplug interrupts
1439 (indicated by the DRM_CONNECTOR_POLL_CONNECT and
1440 DRM_CONNECTOR_POLL_DISCONNECT connector flags), a delayed work will
1441 automatically be queued to periodically poll for changes. Connectors
1442 that can generate hotplug interrupts must be marked with the
1443 DRM_CONNECTOR_POLL_HPD flag instead, and their interrupt handler must
1444 call <function>drm_helper_hpd_irq_event</function>. The function will
1445 queue a delayed work to check the state of all connectors, but no
1446 periodic polling will be done.
1447 </para>
1448 </sect3>
1449 <sect3>
1450 <title>Connector Operations</title>
1451 <note><para>
1452 Unless otherwise state, all operations are mandatory.
1453 </para></note>
1454 <sect4>
1455 <title>DPMS</title>
1456 <synopsis>void (*dpms)(struct drm_connector *connector, int mode);</synopsis>
1457 <para>
1458 The DPMS operation sets the power state of a connector. The mode
1459 argument is one of
1460 <itemizedlist>
1461 <listitem><para>DRM_MODE_DPMS_ON</para></listitem>
1462 <listitem><para>DRM_MODE_DPMS_STANDBY</para></listitem>
1463 <listitem><para>DRM_MODE_DPMS_SUSPEND</para></listitem>
1464 <listitem><para>DRM_MODE_DPMS_OFF</para></listitem>
1465 </itemizedlist>
1466 </para>
1467 <para>
1468 In all but DPMS_ON mode the encoder to which the connector is attached
1469 should put the display in low-power mode by driving its signals
1470 appropriately. If more than one connector is attached to the encoder
1471 care should be taken not to change the power state of other displays as
1472 a side effect. Low-power mode should be propagated to the encoders and
1473 CRTCs when all related connectors are put in low-power mode.
1474 </para>
1475 </sect4>
1476 <sect4>
1477 <title>Modes</title>
1478 <synopsis>int (*fill_modes)(struct drm_connector *connector, uint32_t max_width,
1479 uint32_t max_height);</synopsis>
1480 <para>
1481 Fill the mode list with all supported modes for the connector. If the
1482 <parameter>max_width</parameter> and <parameter>max_height</parameter>
1483 arguments are non-zero, the implementation must ignore all modes wider
1484 than <parameter>max_width</parameter> or higher than
1485 <parameter>max_height</parameter>.
1486 </para>
1487 <para>
1488 The connector must also fill in this operation its
1489 <structfield>display_info</structfield>
1490 <structfield>width_mm</structfield> and
1491 <structfield>height_mm</structfield> fields with the connected display
1492 physical size in millimeters. The fields should be set to 0 if the value
1493 isn't known or is not applicable (for instance for projector devices).
1494 </para>
1495 </sect4>
1496 <sect4>
1497 <title>Connection Status</title>
1498 <para>
1499 The connection status is updated through polling or hotplug events when
1500 supported (see <xref linkend="drm-kms-connector-polled"/>). The status
1501 value is reported to userspace through ioctls and must not be used
1502 inside the driver, as it only gets initialized by a call to
1503 <function>drm_mode_getconnector</function> from userspace.
1504 </para>
1505 <synopsis>enum drm_connector_status (*detect)(struct drm_connector *connector,
1506 bool force);</synopsis>
1507 <para>
1508 Check to see if anything is attached to the connector. The
1509 <parameter>force</parameter> parameter is set to false whilst polling or
1510 to true when checking the connector due to user request.
1511 <parameter>force</parameter> can be used by the driver to avoid
1512 expensive, destructive operations during automated probing.
1513 </para>
1514 <para>
1515 Return connector_status_connected if something is connected to the
1516 connector, connector_status_disconnected if nothing is connected and
1517 connector_status_unknown if the connection state isn't known.
1518 </para>
1519 <para>
1520 Drivers should only return connector_status_connected if the connection
1521 status has really been probed as connected. Connectors that can't detect
1522 the connection status, or failed connection status probes, should return
1523 connector_status_unknown.
1524 </para>
1525 </sect4>
9cad9c95
LP
1526 </sect3>
1527 </sect2>
1528 <sect2>
1529 <title>Cleanup</title>
1530 <para>
1531 The DRM core manages its objects' lifetime. When an object is not needed
1532 anymore the core calls its destroy function, which must clean up and
1533 free every resource allocated for the object. Every
1534 <function>drm_*_init</function> call must be matched with a
1535 corresponding <function>drm_*_cleanup</function> call to cleanup CRTCs
1536 (<function>drm_crtc_cleanup</function>), planes
1537 (<function>drm_plane_cleanup</function>), encoders
1538 (<function>drm_encoder_cleanup</function>) and connectors
1539 (<function>drm_connector_cleanup</function>). Furthermore, connectors
1540 that have been added to sysfs must be removed by a call to
34ea3d38 1541 <function>drm_connector_unregister</function> before calling
9cad9c95
LP
1542 <function>drm_connector_cleanup</function>.
1543 </para>
1544 <para>
1545 Connectors state change detection must be cleanup up with a call to
1546 <function>drm_kms_helper_poll_fini</function>.
1547 </para>
1548 </sect2>
1549 <sect2>
1550 <title>Output discovery and initialization example</title>
1551 <programlisting><![CDATA[
2d2ef822
JB
1552void intel_crt_init(struct drm_device *dev)
1553{
1554 struct drm_connector *connector;
1555 struct intel_output *intel_output;
1556
1557 intel_output = kzalloc(sizeof(struct intel_output), GFP_KERNEL);
1558 if (!intel_output)
1559 return;
1560
1561 connector = &intel_output->base;
1562 drm_connector_init(dev, &intel_output->base,
1563 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
1564
1565 drm_encoder_init(dev, &intel_output->enc, &intel_crt_enc_funcs,
1566 DRM_MODE_ENCODER_DAC);
1567
1568 drm_mode_connector_attach_encoder(&intel_output->base,
1569 &intel_output->enc);
1570
1571 /* Set up the DDC bus. */
1572 intel_output->ddc_bus = intel_i2c_create(dev, GPIOA, "CRTDDC_A");
1573 if (!intel_output->ddc_bus) {
1574 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
1575 "failed.\n");
1576 return;
1577 }
1578
1579 intel_output->type = INTEL_OUTPUT_ANALOG;
1580 connector->interlace_allowed = 0;
1581 connector->doublescan_allowed = 0;
1582
1583 drm_encoder_helper_add(&intel_output->enc, &intel_crt_helper_funcs);
1584 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
1585
34ea3d38 1586 drm_connector_register(connector);
9cad9c95
LP
1587}]]></programlisting>
1588 <para>
1589 In the example above (taken from the i915 driver), a CRTC, connector and
1590 encoder combination is created. A device-specific i2c bus is also
1591 created for fetching EDID data and performing monitor detection. Once
1592 the process is complete, the new connector is registered with sysfs to
1593 make its properties available to applications.
1594 </para>
2d2ef822 1595 </sect2>
065a50ed
DV
1596 <sect2>
1597 <title>KMS API Functions</title>
1598!Edrivers/gpu/drm/drm_crtc.c
3bf0401c
DV
1599 </sect2>
1600 <sect2>
1601 <title>KMS Data Structures</title>
1602!Iinclude/drm/drm_crtc.h
065a50ed 1603 </sect2>
51fd371b
RC
1604 <sect2>
1605 <title>KMS Locking</title>
1606!Pdrivers/gpu/drm/drm_modeset_lock.c kms locking
1607!Iinclude/drm/drm_modeset_lock.h
1608!Edrivers/gpu/drm/drm_modeset_lock.c
1609 </sect2>
2d2ef822
JB
1610 </sect1>
1611
e4949f29 1612 <!-- Internals: kms helper functions -->
2d2ef822
JB
1613
1614 <sect1>
e4949f29 1615 <title>Mode Setting Helper Functions</title>
2d2ef822 1616 <para>
6efa1f2f 1617 The plane, CRTC, encoder and connector functions provided by the drivers
9cad9c95
LP
1618 implement the DRM API. They're called by the DRM core and ioctl handlers
1619 to handle device state changes and configuration request. As implementing
1620 those functions often requires logic not specific to drivers, mid-layer
1621 helper functions are available to avoid duplicating boilerplate code.
1622 </para>
1623 <para>
1624 The DRM core contains one mid-layer implementation. The mid-layer provides
6efa1f2f
MR
1625 implementations of several plane, CRTC, encoder and connector functions
1626 (called from the top of the mid-layer) that pre-process requests and call
9cad9c95
LP
1627 lower-level functions provided by the driver (at the bottom of the
1628 mid-layer). For instance, the
1629 <function>drm_crtc_helper_set_config</function> function can be used to
1630 fill the struct <structname>drm_crtc_funcs</structname>
1631 <structfield>set_config</structfield> field. When called, it will split
1632 the <methodname>set_config</methodname> operation in smaller, simpler
1633 operations and call the driver to handle them.
2d2ef822 1634 </para>
2d2ef822 1635 <para>
9cad9c95
LP
1636 To use the mid-layer, drivers call <function>drm_crtc_helper_add</function>,
1637 <function>drm_encoder_helper_add</function> and
1638 <function>drm_connector_helper_add</function> functions to install their
1639 mid-layer bottom operations handlers, and fill the
1640 <structname>drm_crtc_funcs</structname>,
1641 <structname>drm_encoder_funcs</structname> and
1642 <structname>drm_connector_funcs</structname> structures with pointers to
1643 the mid-layer top API functions. Installing the mid-layer bottom operation
1644 handlers is best done right after registering the corresponding KMS object.
2d2ef822
JB
1645 </para>
1646 <para>
9cad9c95
LP
1647 The mid-layer is not split between CRTC, encoder and connector operations.
1648 To use it, a driver must provide bottom functions for all of the three KMS
1649 entities.
2d2ef822 1650 </para>
9cad9c95 1651 <sect2>
2be94971 1652 <title>Legacy CRTC Helper Operations</title>
9cad9c95
LP
1653 <itemizedlist>
1654 <listitem id="drm-helper-crtc-mode-fixup">
1655 <synopsis>bool (*mode_fixup)(struct drm_crtc *crtc,
1656 const struct drm_display_mode *mode,
1657 struct drm_display_mode *adjusted_mode);</synopsis>
1658 <para>
1659 Let CRTCs adjust the requested mode or reject it completely. This
1660 operation returns true if the mode is accepted (possibly after being
1661 adjusted) or false if it is rejected.
1662 </para>
1663 <para>
1664 The <methodname>mode_fixup</methodname> operation should reject the
1665 mode if it can't reasonably use it. The definition of "reasonable"
1666 is currently fuzzy in this context. One possible behaviour would be
1667 to set the adjusted mode to the panel timings when a fixed-mode
1668 panel is used with hardware capable of scaling. Another behaviour
1669 would be to accept any input mode and adjust it to the closest mode
1670 supported by the hardware (FIXME: This needs to be clarified).
1671 </para>
1672 </listitem>
1673 <listitem>
1674 <synopsis>int (*mode_set_base)(struct drm_crtc *crtc, int x, int y,
1675 struct drm_framebuffer *old_fb)</synopsis>
1676 <para>
1677 Move the CRTC on the current frame buffer (stored in
1678 <literal>crtc-&gt;fb</literal>) to position (x,y). Any of the frame
1679 buffer, x position or y position may have been modified.
1680 </para>
1681 <para>
1682 This helper operation is optional. If not provided, the
1683 <function>drm_crtc_helper_set_config</function> function will fall
1684 back to the <methodname>mode_set</methodname> helper operation.
1685 </para>
1686 <note><para>
1687 FIXME: Why are x and y passed as arguments, as they can be accessed
1688 through <literal>crtc-&gt;x</literal> and
1689 <literal>crtc-&gt;y</literal>?
1690 </para></note>
1691 </listitem>
1692 <listitem>
1693 <synopsis>void (*prepare)(struct drm_crtc *crtc);</synopsis>
1694 <para>
1695 Prepare the CRTC for mode setting. This operation is called after
1696 validating the requested mode. Drivers use it to perform
1697 device-specific operations required before setting the new mode.
1698 </para>
1699 </listitem>
1700 <listitem>
1701 <synopsis>int (*mode_set)(struct drm_crtc *crtc, struct drm_display_mode *mode,
1702 struct drm_display_mode *adjusted_mode, int x, int y,
1703 struct drm_framebuffer *old_fb);</synopsis>
1704 <para>
1705 Set a new mode, position and frame buffer. Depending on the device
1706 requirements, the mode can be stored internally by the driver and
1707 applied in the <methodname>commit</methodname> operation, or
1708 programmed to the hardware immediately.
1709 </para>
1710 <para>
1711 The <methodname>mode_set</methodname> operation returns 0 on success
1712 or a negative error code if an error occurs.
1713 </para>
1714 </listitem>
1715 <listitem>
1716 <synopsis>void (*commit)(struct drm_crtc *crtc);</synopsis>
1717 <para>
1718 Commit a mode. This operation is called after setting the new mode.
1719 Upon return the device must use the new mode and be fully
1720 operational.
1721 </para>
1722 </listitem>
1723 </itemizedlist>
1724 </sect2>
1725 <sect2>
1726 <title>Encoder Helper Operations</title>
1727 <itemizedlist>
1728 <listitem>
1729 <synopsis>bool (*mode_fixup)(struct drm_encoder *encoder,
1730 const struct drm_display_mode *mode,
1731 struct drm_display_mode *adjusted_mode);</synopsis>
9cad9c95
LP
1732 <para>
1733 Let encoders adjust the requested mode or reject it completely. This
1734 operation returns true if the mode is accepted (possibly after being
1735 adjusted) or false if it is rejected. See the
1736 <link linkend="drm-helper-crtc-mode-fixup">mode_fixup CRTC helper
1737 operation</link> for an explanation of the allowed adjustments.
1738 </para>
1739 </listitem>
1740 <listitem>
1741 <synopsis>void (*prepare)(struct drm_encoder *encoder);</synopsis>
1742 <para>
1743 Prepare the encoder for mode setting. This operation is called after
1744 validating the requested mode. Drivers use it to perform
1745 device-specific operations required before setting the new mode.
1746 </para>
1747 </listitem>
1748 <listitem>
1749 <synopsis>void (*mode_set)(struct drm_encoder *encoder,
1750 struct drm_display_mode *mode,
1751 struct drm_display_mode *adjusted_mode);</synopsis>
1752 <para>
1753 Set a new mode. Depending on the device requirements, the mode can
1754 be stored internally by the driver and applied in the
1755 <methodname>commit</methodname> operation, or programmed to the
1756 hardware immediately.
1757 </para>
1758 </listitem>
1759 <listitem>
1760 <synopsis>void (*commit)(struct drm_encoder *encoder);</synopsis>
1761 <para>
1762 Commit a mode. This operation is called after setting the new mode.
1763 Upon return the device must use the new mode and be fully
1764 operational.
1765 </para>
1766 </listitem>
1767 </itemizedlist>
1768 </sect2>
1769 <sect2>
1770 <title>Connector Helper Operations</title>
1771 <itemizedlist>
1772 <listitem>
1773 <synopsis>struct drm_encoder *(*best_encoder)(struct drm_connector *connector);</synopsis>
1774 <para>
1775 Return a pointer to the best encoder for the connecter. Device that
1776 map connectors to encoders 1:1 simply return the pointer to the
1777 associated encoder. This operation is mandatory.
1778 </para>
1779 </listitem>
1780 <listitem>
1781 <synopsis>int (*get_modes)(struct drm_connector *connector);</synopsis>
1782 <para>
1783 Fill the connector's <structfield>probed_modes</structfield> list
f41c2581
LP
1784 by parsing EDID data with <function>drm_add_edid_modes</function>,
1785 adding standard VESA DMT modes with <function>drm_add_modes_noedid</function>,
1786 or calling <function>drm_mode_probed_add</function> directly for every
9cad9c95
LP
1787 supported mode and return the number of modes it has detected. This
1788 operation is mandatory.
1789 </para>
f41c2581
LP
1790 <para>
1791 Note that the caller function will automatically add standard VESA
1792 DMT modes up to 1024x768 if the <methodname>get_modes</methodname>
1793 helper operation returns no mode and if the connector status is
1794 connector_status_connected. There is no need to call
1795 <function>drm_add_edid_modes</function> manually in that case.
1796 </para>
9cad9c95
LP
1797 <para>
1798 The <structfield>vrefresh</structfield> value is computed by
1799 <function>drm_helper_probe_single_connector_modes</function>.
1800 </para>
1801 <para>
f41c2581 1802 When parsing EDID data, <function>drm_add_edid_modes</function> fills the
9cad9c95
LP
1803 connector <structfield>display_info</structfield>
1804 <structfield>width_mm</structfield> and
1805 <structfield>height_mm</structfield> fields. When creating modes
1806 manually the <methodname>get_modes</methodname> helper operation must
1807 set the <structfield>display_info</structfield>
1808 <structfield>width_mm</structfield> and
1809 <structfield>height_mm</structfield> fields if they haven't been set
065a5027 1810 already (for instance at initialization time when a fixed-size panel is
9cad9c95
LP
1811 attached to the connector). The mode <structfield>width_mm</structfield>
1812 and <structfield>height_mm</structfield> fields are only used internally
1813 during EDID parsing and should not be set when creating modes manually.
1814 </para>
1815 </listitem>
1816 <listitem>
1817 <synopsis>int (*mode_valid)(struct drm_connector *connector,
1818 struct drm_display_mode *mode);</synopsis>
1819 <para>
1820 Verify whether a mode is valid for the connector. Return MODE_OK for
1821 supported modes and one of the enum drm_mode_status values (MODE_*)
f9b0e251 1822 for unsupported modes. This operation is optional.
9cad9c95
LP
1823 </para>
1824 <para>
1825 As the mode rejection reason is currently not used beside for
1826 immediately removing the unsupported mode, an implementation can
1827 return MODE_BAD regardless of the exact reason why the mode is not
1828 valid.
1829 </para>
1830 <note><para>
1831 Note that the <methodname>mode_valid</methodname> helper operation is
1832 only called for modes detected by the device, and
1833 <emphasis>not</emphasis> for modes set by the user through the CRTC
1834 <methodname>set_config</methodname> operation.
1835 </para></note>
1836 </listitem>
1837 </itemizedlist>
1838 </sect2>
3150c7d0
DV
1839 <sect2>
1840 <title>Atomic Modeset Helper Functions Reference</title>
1841 <sect3>
1842 <title>Overview</title>
1843!Pdrivers/gpu/drm/drm_atomic_helper.c overview
1844 </sect3>
1845 <sect3>
1846 <title>Implementing Asynchronous Atomic Commit</title>
1847!Pdrivers/gpu/drm/drm_atomic_helper.c implementing async commit
1848 </sect3>
1849 <sect3>
1850 <title>Atomic State Reset and Initialization</title>
1851!Pdrivers/gpu/drm/drm_atomic_helper.c atomic state reset and initialization
1852 </sect3>
dd275956 1853!Iinclude/drm/drm_atomic_helper.h
3150c7d0 1854!Edrivers/gpu/drm/drm_atomic_helper.c
092d01da
DV
1855 </sect2>
1856 <sect2>
1857 <title>Modeset Helper Reference for Common Vtables</title>
1858!Iinclude/drm/drm_modeset_helper_vtables.h
1859!Pinclude/drm/drm_modeset_helper_vtables.h overview
3150c7d0 1860 </sect2>
0d4ed4c8 1861 <sect2>
2be94971 1862 <title>Legacy CRTC/Modeset Helper Functions Reference</title>
0d4ed4c8 1863!Edrivers/gpu/drm/drm_crtc_helper.c
3150c7d0 1864!Pdrivers/gpu/drm/drm_crtc_helper.c overview
8d754544
DV
1865 </sect2>
1866 <sect2>
1867 <title>Output Probing Helper Functions Reference</title>
1868!Pdrivers/gpu/drm/drm_probe_helper.c output probing helper overview
1869!Edrivers/gpu/drm/drm_probe_helper.c
0d4ed4c8 1870 </sect2>
d0ddc033
DV
1871 <sect2>
1872 <title>fbdev Helper Functions Reference</title>
1873!Pdrivers/gpu/drm/drm_fb_helper.c fbdev helpers
1874!Edrivers/gpu/drm/drm_fb_helper.c
207fd329 1875!Iinclude/drm/drm_fb_helper.h
d0ddc033 1876 </sect2>
28164fda
DV
1877 <sect2>
1878 <title>Display Port Helper Functions Reference</title>
1879!Pdrivers/gpu/drm/drm_dp_helper.c dp helpers
1880!Iinclude/drm/drm_dp_helper.h
1881!Edrivers/gpu/drm/drm_dp_helper.c
ad7f8a1f
DA
1882 </sect2>
1883 <sect2>
1884 <title>Display Port MST Helper Functions Reference</title>
1885!Pdrivers/gpu/drm/drm_dp_mst_topology.c dp mst helper
1886!Iinclude/drm/drm_dp_mst_helper.h
1887!Edrivers/gpu/drm/drm_dp_mst_topology.c
009081e0
TR
1888 </sect2>
1889 <sect2>
1890 <title>MIPI DSI Helper Functions Reference</title>
1891!Pdrivers/gpu/drm/drm_mipi_dsi.c dsi helpers
1892!Iinclude/drm/drm_mipi_dsi.h
1893!Edrivers/gpu/drm/drm_mipi_dsi.c
28164fda 1894 </sect2>
5e308591
TR
1895 <sect2>
1896 <title>EDID Helper Functions Reference</title>
1897!Edrivers/gpu/drm/drm_edid.c
1898 </sect2>
03973536
VS
1899 <sect2>
1900 <title>Rectangle Utilities Reference</title>
1901!Pinclude/drm/drm_rect.h rect utils
1902!Iinclude/drm/drm_rect.h
1903!Edrivers/gpu/drm/drm_rect.c
cabaafc7
RC
1904 </sect2>
1905 <sect2>
1906 <title>Flip-work Helper Reference</title>
1907!Pinclude/drm/drm_flip_work.h flip utils
1908!Iinclude/drm/drm_flip_work.h
1909!Edrivers/gpu/drm/drm_flip_work.c
03973536 1910 </sect2>
2d123f46
DV
1911 <sect2>
1912 <title>HDMI Infoframes Helper Reference</title>
1913 <para>
1914 Strictly speaking this is not a DRM helper library but generally useable
1915 by any driver interfacing with HDMI outputs like v4l or alsa drivers.
1916 But it nicely fits into the overall topic of mode setting helper
1917 libraries and hence is also included here.
1918 </para>
1919!Iinclude/linux/hdmi.h
1920!Edrivers/video/hdmi.c
1921 </sect2>
6efa1f2f
MR
1922 <sect2>
1923 <title id="drm-kms-planehelpers">Plane Helper Reference</title>
3150c7d0
DV
1924!Edrivers/gpu/drm/drm_plane_helper.c
1925!Pdrivers/gpu/drm/drm_plane_helper.c overview
6efa1f2f 1926 </sect2>
138f9ebb
DA
1927 <sect2>
1928 <title>Tile group</title>
1929!Pdrivers/gpu/drm/drm_crtc.c Tile group
1930 </sect2>
2331b4e4
AT
1931 <sect2>
1932 <title>Bridges</title>
1933 <sect3>
1934 <title>Overview</title>
1935!Pdrivers/gpu/drm/drm_bridge.c overview
1936 </sect3>
1937 <sect3>
1938 <title>Default bridge callback sequence</title>
1939!Pdrivers/gpu/drm/drm_bridge.c bridge callbacks
1940 </sect3>
1941!Edrivers/gpu/drm/drm_bridge.c
1942 </sect2>
2d2ef822
JB
1943 </sect1>
1944
421cda3e
LP
1945 <!-- Internals: kms properties -->
1946
1947 <sect1 id="drm-kms-properties">
1948 <title>KMS Properties</title>
1949 <para>
1950 Drivers may need to expose additional parameters to applications than
1951 those described in the previous sections. KMS supports attaching
1952 properties to CRTCs, connectors and planes and offers a userspace API to
1953 list, get and set the property values.
1954 </para>
1955 <para>
1956 Properties are identified by a name that uniquely defines the property
1957 purpose, and store an associated value. For all property types except blob
1958 properties the value is a 64-bit unsigned integer.
1959 </para>
1960 <para>
1961 KMS differentiates between properties and property instances. Drivers
1962 first create properties and then create and associate individual instances
1963 of those properties to objects. A property can be instantiated multiple
1964 times and associated with different objects. Values are stored in property
9a6594fc 1965 instances, and all other property information are stored in the property
421cda3e
LP
1966 and shared between all instances of the property.
1967 </para>
1968 <para>
1969 Every property is created with a type that influences how the KMS core
1970 handles the property. Supported property types are
1971 <variablelist>
1972 <varlistentry>
1973 <term>DRM_MODE_PROP_RANGE</term>
1974 <listitem><para>Range properties report their minimum and maximum
1975 admissible values. The KMS core verifies that values set by
1976 application fit in that range.</para></listitem>
1977 </varlistentry>
1978 <varlistentry>
1979 <term>DRM_MODE_PROP_ENUM</term>
1980 <listitem><para>Enumerated properties take a numerical value that
1981 ranges from 0 to the number of enumerated values defined by the
1982 property minus one, and associate a free-formed string name to each
1983 value. Applications can retrieve the list of defined value-name pairs
1984 and use the numerical value to get and set property instance values.
1985 </para></listitem>
1986 </varlistentry>
1987 <varlistentry>
1988 <term>DRM_MODE_PROP_BITMASK</term>
1989 <listitem><para>Bitmask properties are enumeration properties that
1990 additionally restrict all enumerated values to the 0..63 range.
1991 Bitmask property instance values combine one or more of the
1992 enumerated bits defined by the property.</para></listitem>
1993 </varlistentry>
1994 <varlistentry>
1995 <term>DRM_MODE_PROP_BLOB</term>
1996 <listitem><para>Blob properties store a binary blob without any format
1997 restriction. The binary blobs are created as KMS standalone objects,
1998 and blob property instance values store the ID of their associated
1999 blob object.</para>
2000 <para>Blob properties are only used for the connector EDID property
2001 and cannot be created by drivers.</para></listitem>
2002 </varlistentry>
2003 </variablelist>
2004 </para>
2005 <para>
2006 To create a property drivers call one of the following functions depending
2007 on the property type. All property creation functions take property flags
2008 and name, as well as type-specific arguments.
2009 <itemizedlist>
2010 <listitem>
2011 <synopsis>struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
2012 const char *name,
2013 uint64_t min, uint64_t max);</synopsis>
2014 <para>Create a range property with the given minimum and maximum
2015 values.</para>
2016 </listitem>
2017 <listitem>
2018 <synopsis>struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
2019 const char *name,
2020 const struct drm_prop_enum_list *props,
2021 int num_values);</synopsis>
2022 <para>Create an enumerated property. The <parameter>props</parameter>
2023 argument points to an array of <parameter>num_values</parameter>
2024 value-name pairs.</para>
2025 </listitem>
2026 <listitem>
2027 <synopsis>struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
2028 int flags, const char *name,
2029 const struct drm_prop_enum_list *props,
2030 int num_values);</synopsis>
2031 <para>Create a bitmask property. The <parameter>props</parameter>
2032 argument points to an array of <parameter>num_values</parameter>
2033 value-name pairs.</para>
2034 </listitem>
2035 </itemizedlist>
2036 </para>
2037 <para>
2038 Properties can additionally be created as immutable, in which case they
2039 will be read-only for applications but can be modified by the driver. To
2040 create an immutable property drivers must set the DRM_MODE_PROP_IMMUTABLE
2041 flag at property creation time.
2042 </para>
2043 <para>
2044 When no array of value-name pairs is readily available at property
2045 creation time for enumerated or range properties, drivers can create
2046 the property using the <function>drm_property_create</function> function
2047 and manually add enumeration value-name pairs by calling the
2048 <function>drm_property_add_enum</function> function. Care must be taken to
2049 properly specify the property type through the <parameter>flags</parameter>
2050 argument.
2051 </para>
2052 <para>
2053 After creating properties drivers can attach property instances to CRTC,
2054 connector and plane objects by calling the
2055 <function>drm_object_attach_property</function>. The function takes a
2056 pointer to the target object, a pointer to the previously created property
2057 and an initial instance value.
2058 </para>
6c6a3996
SK
2059 <sect2>
2060 <title>Existing KMS Properties</title>
2061 <para>
2062 The following table gives description of drm properties exposed by various
2063 modules/drivers.
2064 </para>
2065 <table border="1" cellpadding="0" cellspacing="0">
2066 <tbody>
2067 <tr style="font-weight: bold;">
2068 <td valign="top" >Owner Module/Drivers</td>
2069 <td valign="top" >Group</td>
2070 <td valign="top" >Property Name</td>
2071 <td valign="top" >Type</td>
2072 <td valign="top" >Property Values</td>
2073 <td valign="top" >Object attached</td>
2074 <td valign="top" >Description/Restrictions</td>
2075 </tr>
2076 <tr>
712a0dd9
SJ
2077 <td rowspan="37" valign="top" >DRM</td>
2078 <td valign="top" >Generic</td>
2079 <td valign="top" >“rotation”</td>
2080 <td valign="top" >BITMASK</td>
2081 <td valign="top" >{ 0, "rotate-0" },
2082 { 1, "rotate-90" },
2083 { 2, "rotate-180" },
2084 { 3, "rotate-270" },
2085 { 4, "reflect-x" },
2086 { 5, "reflect-y" }</td>
2087 <td valign="top" >CRTC, Plane</td>
2088 <td valign="top" >rotate-(degrees) rotates the image by the specified amount in degrees
2089 in counter clockwise direction. reflect-x and reflect-y reflects the
2090 image along the specified axis prior to rotation</td>
2091 </tr>
2092 <tr>
ae16c597 2093 <td rowspan="5" valign="top" >Connector</td>
6c6a3996
SK
2094 <td valign="top" >“EDID”</td>
2095 <td valign="top" >BLOB | IMMUTABLE</td>
2096 <td valign="top" >0</td>
2097 <td valign="top" >Connector</td>
2098 <td valign="top" >Contains id of edid blob ptr object.</td>
2099 </tr>
2100 <tr>
2101 <td valign="top" >“DPMS”</td>
2102 <td valign="top" >ENUM</td>
2103 <td valign="top" >{ “On”, “Standby”, “Suspend”, “Off” }</td>
2104 <td valign="top" >Connector</td>
2105 <td valign="top" >Contains DPMS operation mode value.</td>
2106 </tr>
2107 <tr>
cc7096fb
DA
2108 <td valign="top" >“PATH”</td>
2109 <td valign="top" >BLOB | IMMUTABLE</td>
2110 <td valign="top" >0</td>
2111 <td valign="top" >Connector</td>
2112 <td valign="top" >Contains topology path to a connector.</td>
2113 </tr>
2114 <tr>
6f134d7b
DA
2115 <td valign="top" >“TILE”</td>
2116 <td valign="top" >BLOB | IMMUTABLE</td>
2117 <td valign="top" >0</td>
2118 <td valign="top" >Connector</td>
2119 <td valign="top" >Contains tiling information for a connector.</td>
2120 </tr>
2121 <tr>
ae16c597
RC
2122 <td valign="top" >“CRTC_ID”</td>
2123 <td valign="top" >OBJECT</td>
2124 <td valign="top" >DRM_MODE_OBJECT_CRTC</td>
2125 <td valign="top" >Connector</td>
2126 <td valign="top" >CRTC that connector is attached to (atomic)</td>
2127 </tr>
2128 <tr>
6b4959f4 2129 <td rowspan="11" valign="top" >Plane</td>
59748616
DL
2130 <td valign="top" >“type”</td>
2131 <td valign="top" >ENUM | IMMUTABLE</td>
2132 <td valign="top" >{ "Overlay", "Primary", "Cursor" }</td>
2133 <td valign="top" >Plane</td>
2134 <td valign="top" >Plane type</td>
2135 </tr>
2136 <tr>
6b4959f4
RC
2137 <td valign="top" >“SRC_X”</td>
2138 <td valign="top" >RANGE</td>
2139 <td valign="top" >Min=0, Max=UINT_MAX</td>
2140 <td valign="top" >Plane</td>
2141 <td valign="top" >Scanout source x coordinate in 16.16 fixed point (atomic)</td>
2142 </tr>
2143 <tr>
2144 <td valign="top" >“SRC_Y”</td>
2145 <td valign="top" >RANGE</td>
2146 <td valign="top" >Min=0, Max=UINT_MAX</td>
2147 <td valign="top" >Plane</td>
2148 <td valign="top" >Scanout source y coordinate in 16.16 fixed point (atomic)</td>
2149 </tr>
2150 <tr>
2151 <td valign="top" >“SRC_W”</td>
2152 <td valign="top" >RANGE</td>
2153 <td valign="top" >Min=0, Max=UINT_MAX</td>
2154 <td valign="top" >Plane</td>
2155 <td valign="top" >Scanout source width in 16.16 fixed point (atomic)</td>
2156 </tr>
2157 <tr>
2158 <td valign="top" >“SRC_H”</td>
2159 <td valign="top" >RANGE</td>
2160 <td valign="top" >Min=0, Max=UINT_MAX</td>
2161 <td valign="top" >Plane</td>
2162 <td valign="top" >Scanout source height in 16.16 fixed point (atomic)</td>
2163 </tr>
2164 <tr>
2165 <td valign="top" >“CRTC_X”</td>
2166 <td valign="top" >SIGNED_RANGE</td>
2167 <td valign="top" >Min=INT_MIN, Max=INT_MAX</td>
2168 <td valign="top" >Plane</td>
2169 <td valign="top" >Scanout CRTC (destination) x coordinate (atomic)</td>
2170 </tr>
2171 <tr>
2172 <td valign="top" >“CRTC_Y”</td>
2173 <td valign="top" >SIGNED_RANGE</td>
2174 <td valign="top" >Min=INT_MIN, Max=INT_MAX</td>
2175 <td valign="top" >Plane</td>
2176 <td valign="top" >Scanout CRTC (destination) y coordinate (atomic)</td>
2177 </tr>
2178 <tr>
2179 <td valign="top" >“CRTC_W”</td>
2180 <td valign="top" >RANGE</td>
2181 <td valign="top" >Min=0, Max=UINT_MAX</td>
2182 <td valign="top" >Plane</td>
2183 <td valign="top" >Scanout CRTC (destination) width (atomic)</td>
2184 </tr>
2185 <tr>
2186 <td valign="top" >“CRTC_H”</td>
2187 <td valign="top" >RANGE</td>
2188 <td valign="top" >Min=0, Max=UINT_MAX</td>
2189 <td valign="top" >Plane</td>
2190 <td valign="top" >Scanout CRTC (destination) height (atomic)</td>
2191 </tr>
2192 <tr>
2193 <td valign="top" >“FB_ID”</td>
2194 <td valign="top" >OBJECT</td>
2195 <td valign="top" >DRM_MODE_OBJECT_FB</td>
2196 <td valign="top" >Plane</td>
2197 <td valign="top" >Scanout framebuffer (atomic)</td>
2198 </tr>
2199 <tr>
2200 <td valign="top" >“CRTC_ID”</td>
2201 <td valign="top" >OBJECT</td>
2202 <td valign="top" >DRM_MODE_OBJECT_CRTC</td>
2203 <td valign="top" >Plane</td>
2204 <td valign="top" >CRTC that plane is attached to (atomic)</td>
2205 </tr>
2206 <tr>
6c6a3996
SK
2207 <td rowspan="2" valign="top" >DVI-I</td>
2208 <td valign="top" >“subconnector”</td>
2209 <td valign="top" >ENUM</td>
2210 <td valign="top" >{ “Unknown”, “DVI-D”, “DVI-A” }</td>
2211 <td valign="top" >Connector</td>
2212 <td valign="top" >TBD</td>
2213 </tr>
2214 <tr>
2215 <td valign="top" >“select subconnector”</td>
2216 <td valign="top" >ENUM</td>
2217 <td valign="top" >{ “Automatic”, “DVI-D”, “DVI-A” }</td>
2218 <td valign="top" >Connector</td>
2219 <td valign="top" >TBD</td>
2220 </tr>
2221 <tr>
2222 <td rowspan="13" valign="top" >TV</td>
2223 <td valign="top" >“subconnector”</td>
2224 <td valign="top" >ENUM</td>
2225 <td valign="top" >{ "Unknown", "Composite", "SVIDEO", "Component", "SCART" }</td>
2226 <td valign="top" >Connector</td>
2227 <td valign="top" >TBD</td>
2228 </tr>
2229 <tr>
2230 <td valign="top" >“select subconnector”</td>
2231 <td valign="top" >ENUM</td>
2232 <td valign="top" >{ "Automatic", "Composite", "SVIDEO", "Component", "SCART" }</td>
2233 <td valign="top" >Connector</td>
2234 <td valign="top" >TBD</td>
2235 </tr>
2236 <tr>
2237 <td valign="top" >“mode”</td>
2238 <td valign="top" >ENUM</td>
2239 <td valign="top" >{ "NTSC_M", "NTSC_J", "NTSC_443", "PAL_B" } etc.</td>
2240 <td valign="top" >Connector</td>
2241 <td valign="top" >TBD</td>
2242 </tr>
2243 <tr>
2244 <td valign="top" >“left margin”</td>
2245 <td valign="top" >RANGE</td>
2246 <td valign="top" >Min=0, Max=100</td>
2247 <td valign="top" >Connector</td>
2248 <td valign="top" >TBD</td>
2249 </tr>
2250 <tr>
2251 <td valign="top" >“right margin”</td>
2252 <td valign="top" >RANGE</td>
2253 <td valign="top" >Min=0, Max=100</td>
2254 <td valign="top" >Connector</td>
2255 <td valign="top" >TBD</td>
2256 </tr>
2257 <tr>
2258 <td valign="top" >“top margin”</td>
2259 <td valign="top" >RANGE</td>
2260 <td valign="top" >Min=0, Max=100</td>
2261 <td valign="top" >Connector</td>
2262 <td valign="top" >TBD</td>
2263 </tr>
2264 <tr>
2265 <td valign="top" >“bottom margin”</td>
2266 <td valign="top" >RANGE</td>
2267 <td valign="top" >Min=0, Max=100</td>
2268 <td valign="top" >Connector</td>
2269 <td valign="top" >TBD</td>
2270 </tr>
2271 <tr>
2272 <td valign="top" >“brightness”</td>
2273 <td valign="top" >RANGE</td>
2274 <td valign="top" >Min=0, Max=100</td>
2275 <td valign="top" >Connector</td>
2276 <td valign="top" >TBD</td>
2277 </tr>
2278 <tr>
2279 <td valign="top" >“contrast”</td>
2280 <td valign="top" >RANGE</td>
2281 <td valign="top" >Min=0, Max=100</td>
2282 <td valign="top" >Connector</td>
2283 <td valign="top" >TBD</td>
2284 </tr>
2285 <tr>
2286 <td valign="top" >“flicker reduction”</td>
2287 <td valign="top" >RANGE</td>
2288 <td valign="top" >Min=0, Max=100</td>
2289 <td valign="top" >Connector</td>
2290 <td valign="top" >TBD</td>
2291 </tr>
2292 <tr>
2293 <td valign="top" >“overscan”</td>
2294 <td valign="top" >RANGE</td>
2295 <td valign="top" >Min=0, Max=100</td>
2296 <td valign="top" >Connector</td>
2297 <td valign="top" >TBD</td>
2298 </tr>
2299 <tr>
2300 <td valign="top" >“saturation”</td>
2301 <td valign="top" >RANGE</td>
2302 <td valign="top" >Min=0, Max=100</td>
2303 <td valign="top" >Connector</td>
2304 <td valign="top" >TBD</td>
2305 </tr>
2306 <tr>
2307 <td valign="top" >“hue”</td>
2308 <td valign="top" >RANGE</td>
2309 <td valign="top" >Min=0, Max=100</td>
2310 <td valign="top" >Connector</td>
2311 <td valign="top" >TBD</td>
2312 </tr>
2313 <tr>
5bb2bbf5
DA
2314 <td rowspan="2" valign="top" >Virtual GPU</td>
2315 <td valign="top" >“suggested X”</td>
2316 <td valign="top" >RANGE</td>
2317 <td valign="top" >Min=0, Max=0xffffffff</td>
2318 <td valign="top" >Connector</td>
2319 <td valign="top" >property to suggest an X offset for a connector</td>
2320 </tr>
2321 <tr>
2322 <td valign="top" >“suggested Y”</td>
2323 <td valign="top" >RANGE</td>
2324 <td valign="top" >Min=0, Max=0xffffffff</td>
2325 <td valign="top" >Connector</td>
2326 <td valign="top" >property to suggest an Y offset for a connector</td>
2327 </tr>
2328 <tr>
726a280d 2329 <td rowspan="3" valign="top" >Optional</td>
6c6a3996
SK
2330 <td valign="top" >“scaling mode”</td>
2331 <td valign="top" >ENUM</td>
2332 <td valign="top" >{ "None", "Full", "Center", "Full aspect" }</td>
2333 <td valign="top" >Connector</td>
2334 <td valign="top" >TBD</td>
2335 </tr>
2336 <tr>
726a280d
VK
2337 <td valign="top" >"aspect ratio"</td>
2338 <td valign="top" >ENUM</td>
2339 <td valign="top" >{ "None", "4:3", "16:9" }</td>
2340 <td valign="top" >Connector</td>
2341 <td valign="top" >DRM property to set aspect ratio from user space app.
2342 This enum is made generic to allow addition of custom aspect
2343 ratios.</td>
2344 </tr>
2345 <tr>
6c6a3996
SK
2346 <td valign="top" >“dirty”</td>
2347 <td valign="top" >ENUM | IMMUTABLE</td>
2348 <td valign="top" >{ "Off", "On", "Annotate" }</td>
2349 <td valign="top" >Connector</td>
2350 <td valign="top" >TBD</td>
2351 </tr>
2352 <tr>
712a0dd9 2353 <td rowspan="20" valign="top" >i915</td>
4ba08faa 2354 <td rowspan="2" valign="top" >Generic</td>
6c6a3996
SK
2355 <td valign="top" >"Broadcast RGB"</td>
2356 <td valign="top" >ENUM</td>
2357 <td valign="top" >{ "Automatic", "Full", "Limited 16:235" }</td>
2358 <td valign="top" >Connector</td>
2359 <td valign="top" >TBD</td>
2360 </tr>
2361 <tr>
2362 <td valign="top" >“audio”</td>
2363 <td valign="top" >ENUM</td>
2364 <td valign="top" >{ "force-dvi", "off", "auto", "on" }</td>
2365 <td valign="top" >Connector</td>
2366 <td valign="top" >TBD</td>
2367 </tr>
2368 <tr>
6c6a3996
SK
2369 <td rowspan="17" valign="top" >SDVO-TV</td>
2370 <td valign="top" >“mode”</td>
2371 <td valign="top" >ENUM</td>
2372 <td valign="top" >{ "NTSC_M", "NTSC_J", "NTSC_443", "PAL_B" } etc.</td>
2373 <td valign="top" >Connector</td>
2374 <td valign="top" >TBD</td>
2375 </tr>
2376 <tr>
2377 <td valign="top" >"left_margin"</td>
2378 <td valign="top" >RANGE</td>
2379 <td valign="top" >Min=0, Max= SDVO dependent</td>
2380 <td valign="top" >Connector</td>
2381 <td valign="top" >TBD</td>
2382 </tr>
2383 <tr>
2384 <td valign="top" >"right_margin"</td>
2385 <td valign="top" >RANGE</td>
2386 <td valign="top" >Min=0, Max= SDVO dependent</td>
2387 <td valign="top" >Connector</td>
2388 <td valign="top" >TBD</td>
2389 </tr>
2390 <tr>
2391 <td valign="top" >"top_margin"</td>
2392 <td valign="top" >RANGE</td>
2393 <td valign="top" >Min=0, Max= SDVO dependent</td>
2394 <td valign="top" >Connector</td>
2395 <td valign="top" >TBD</td>
2396 </tr>
2397 <tr>
2398 <td valign="top" >"bottom_margin"</td>
2399 <td valign="top" >RANGE</td>
2400 <td valign="top" >Min=0, Max= SDVO dependent</td>
2401 <td valign="top" >Connector</td>
2402 <td valign="top" >TBD</td>
2403 </tr>
2404 <tr>
2405 <td valign="top" >“hpos”</td>
2406 <td valign="top" >RANGE</td>
2407 <td valign="top" >Min=0, Max= SDVO dependent</td>
2408 <td valign="top" >Connector</td>
2409 <td valign="top" >TBD</td>
2410 </tr>
2411 <tr>
2412 <td valign="top" >“vpos”</td>
2413 <td valign="top" >RANGE</td>
2414 <td valign="top" >Min=0, Max= SDVO dependent</td>
2415 <td valign="top" >Connector</td>
2416 <td valign="top" >TBD</td>
2417 </tr>
2418 <tr>
2419 <td valign="top" >“contrast”</td>
2420 <td valign="top" >RANGE</td>
2421 <td valign="top" >Min=0, Max= SDVO dependent</td>
2422 <td valign="top" >Connector</td>
2423 <td valign="top" >TBD</td>
2424 </tr>
2425 <tr>
2426 <td valign="top" >“saturation”</td>
2427 <td valign="top" >RANGE</td>
2428 <td valign="top" >Min=0, Max= SDVO dependent</td>
2429 <td valign="top" >Connector</td>
2430 <td valign="top" >TBD</td>
2431 </tr>
2432 <tr>
2433 <td valign="top" >“hue”</td>
2434 <td valign="top" >RANGE</td>
2435 <td valign="top" >Min=0, Max= SDVO dependent</td>
2436 <td valign="top" >Connector</td>
2437 <td valign="top" >TBD</td>
2438 </tr>
2439 <tr>
2440 <td valign="top" >“sharpness”</td>
2441 <td valign="top" >RANGE</td>
2442 <td valign="top" >Min=0, Max= SDVO dependent</td>
2443 <td valign="top" >Connector</td>
2444 <td valign="top" >TBD</td>
2445 </tr>
2446 <tr>
2447 <td valign="top" >“flicker_filter”</td>
2448 <td valign="top" >RANGE</td>
2449 <td valign="top" >Min=0, Max= SDVO dependent</td>
2450 <td valign="top" >Connector</td>
2451 <td valign="top" >TBD</td>
2452 </tr>
2453 <tr>
2454 <td valign="top" >“flicker_filter_adaptive”</td>
2455 <td valign="top" >RANGE</td>
2456 <td valign="top" >Min=0, Max= SDVO dependent</td>
2457 <td valign="top" >Connector</td>
2458 <td valign="top" >TBD</td>
2459 </tr>
2460 <tr>
2461 <td valign="top" >“flicker_filter_2d”</td>
2462 <td valign="top" >RANGE</td>
2463 <td valign="top" >Min=0, Max= SDVO dependent</td>
2464 <td valign="top" >Connector</td>
2465 <td valign="top" >TBD</td>
2466 </tr>
2467 <tr>
2468 <td valign="top" >“tv_chroma_filter”</td>
2469 <td valign="top" >RANGE</td>
2470 <td valign="top" >Min=0, Max= SDVO dependent</td>
2471 <td valign="top" >Connector</td>
2472 <td valign="top" >TBD</td>
2473 </tr>
2474 <tr>
2475 <td valign="top" >“tv_luma_filter”</td>
2476 <td valign="top" >RANGE</td>
2477 <td valign="top" >Min=0, Max= SDVO dependent</td>
2478 <td valign="top" >Connector</td>
2479 <td valign="top" >TBD</td>
2480 </tr>
2481 <tr>
2482 <td valign="top" >“dot_crawl”</td>
2483 <td valign="top" >RANGE</td>
2484 <td valign="top" >Min=0, Max=1</td>
2485 <td valign="top" >Connector</td>
2486 <td valign="top" >TBD</td>
2487 </tr>
2488 <tr>
2489 <td valign="top" >SDVO-TV/LVDS</td>
2490 <td valign="top" >“brightness”</td>
2491 <td valign="top" >RANGE</td>
2492 <td valign="top" >Min=0, Max= SDVO dependent</td>
2493 <td valign="top" >Connector</td>
2494 <td valign="top" >TBD</td>
2495 </tr>
2496 <tr>
4ba08faa
SK
2497 <td rowspan="2" valign="top" >CDV gma-500</td>
2498 <td rowspan="2" valign="top" >Generic</td>
6c6a3996
SK
2499 <td valign="top" >"Broadcast RGB"</td>
2500 <td valign="top" >ENUM</td>
2501 <td valign="top" >{ “Full”, “Limited 16:235” }</td>
2502 <td valign="top" >Connector</td>
2503 <td valign="top" >TBD</td>
2504 </tr>
2505 <tr>
2506 <td valign="top" >"Broadcast RGB"</td>
2507 <td valign="top" >ENUM</td>
2508 <td valign="top" >{ “off”, “auto”, “on” }</td>
2509 <td valign="top" >Connector</td>
2510 <td valign="top" >TBD</td>
2511 </tr>
2512 <tr>
4ba08faa
SK
2513 <td rowspan="19" valign="top" >Poulsbo</td>
2514 <td rowspan="1" valign="top" >Generic</td>
6c6a3996
SK
2515 <td valign="top" >“backlight”</td>
2516 <td valign="top" >RANGE</td>
2517 <td valign="top" >Min=0, Max=100</td>
2518 <td valign="top" >Connector</td>
2519 <td valign="top" >TBD</td>
2520 </tr>
2521 <tr>
6c6a3996
SK
2522 <td rowspan="17" valign="top" >SDVO-TV</td>
2523 <td valign="top" >“mode”</td>
2524 <td valign="top" >ENUM</td>
2525 <td valign="top" >{ "NTSC_M", "NTSC_J", "NTSC_443", "PAL_B" } etc.</td>
2526 <td valign="top" >Connector</td>
2527 <td valign="top" >TBD</td>
2528 </tr>
2529 <tr>
2530 <td valign="top" >"left_margin"</td>
2531 <td valign="top" >RANGE</td>
2532 <td valign="top" >Min=0, Max= SDVO dependent</td>
2533 <td valign="top" >Connector</td>
2534 <td valign="top" >TBD</td>
2535 </tr>
2536 <tr>
2537 <td valign="top" >"right_margin"</td>
2538 <td valign="top" >RANGE</td>
2539 <td valign="top" >Min=0, Max= SDVO dependent</td>
2540 <td valign="top" >Connector</td>
2541 <td valign="top" >TBD</td>
2542 </tr>
2543 <tr>
2544 <td valign="top" >"top_margin"</td>
2545 <td valign="top" >RANGE</td>
2546 <td valign="top" >Min=0, Max= SDVO dependent</td>
2547 <td valign="top" >Connector</td>
2548 <td valign="top" >TBD</td>
2549 </tr>
2550 <tr>
2551 <td valign="top" >"bottom_margin"</td>
2552 <td valign="top" >RANGE</td>
2553 <td valign="top" >Min=0, Max= SDVO dependent</td>
2554 <td valign="top" >Connector</td>
2555 <td valign="top" >TBD</td>
2556 </tr>
2557 <tr>
2558 <td valign="top" >“hpos”</td>
2559 <td valign="top" >RANGE</td>
2560 <td valign="top" >Min=0, Max= SDVO dependent</td>
2561 <td valign="top" >Connector</td>
2562 <td valign="top" >TBD</td>
2563 </tr>
2564 <tr>
2565 <td valign="top" >“vpos”</td>
2566 <td valign="top" >RANGE</td>
2567 <td valign="top" >Min=0, Max= SDVO dependent</td>
2568 <td valign="top" >Connector</td>
2569 <td valign="top" >TBD</td>
2570 </tr>
2571 <tr>
2572 <td valign="top" >“contrast”</td>
2573 <td valign="top" >RANGE</td>
2574 <td valign="top" >Min=0, Max= SDVO dependent</td>
2575 <td valign="top" >Connector</td>
2576 <td valign="top" >TBD</td>
2577 </tr>
2578 <tr>
2579 <td valign="top" >“saturation”</td>
2580 <td valign="top" >RANGE</td>
2581 <td valign="top" >Min=0, Max= SDVO dependent</td>
2582 <td valign="top" >Connector</td>
2583 <td valign="top" >TBD</td>
2584 </tr>
2585 <tr>
2586 <td valign="top" >“hue”</td>
2587 <td valign="top" >RANGE</td>
2588 <td valign="top" >Min=0, Max= SDVO dependent</td>
2589 <td valign="top" >Connector</td>
2590 <td valign="top" >TBD</td>
2591 </tr>
2592 <tr>
2593 <td valign="top" >“sharpness”</td>
2594 <td valign="top" >RANGE</td>
2595 <td valign="top" >Min=0, Max= SDVO dependent</td>
2596 <td valign="top" >Connector</td>
2597 <td valign="top" >TBD</td>
2598 </tr>
2599 <tr>
2600 <td valign="top" >“flicker_filter”</td>
2601 <td valign="top" >RANGE</td>
2602 <td valign="top" >Min=0, Max= SDVO dependent</td>
2603 <td valign="top" >Connector</td>
2604 <td valign="top" >TBD</td>
2605 </tr>
2606 <tr>
2607 <td valign="top" >“flicker_filter_adaptive”</td>
2608 <td valign="top" >RANGE</td>
2609 <td valign="top" >Min=0, Max= SDVO dependent</td>
2610 <td valign="top" >Connector</td>
2611 <td valign="top" >TBD</td>
2612 </tr>
2613 <tr>
2614 <td valign="top" >“flicker_filter_2d”</td>
2615 <td valign="top" >RANGE</td>
2616 <td valign="top" >Min=0, Max= SDVO dependent</td>
2617 <td valign="top" >Connector</td>
2618 <td valign="top" >TBD</td>
2619 </tr>
2620 <tr>
2621 <td valign="top" >“tv_chroma_filter”</td>
2622 <td valign="top" >RANGE</td>
2623 <td valign="top" >Min=0, Max= SDVO dependent</td>
2624 <td valign="top" >Connector</td>
2625 <td valign="top" >TBD</td>
2626 </tr>
2627 <tr>
2628 <td valign="top" >“tv_luma_filter”</td>
2629 <td valign="top" >RANGE</td>
2630 <td valign="top" >Min=0, Max= SDVO dependent</td>
2631 <td valign="top" >Connector</td>
2632 <td valign="top" >TBD</td>
2633 </tr>
2634 <tr>
2635 <td valign="top" >“dot_crawl”</td>
2636 <td valign="top" >RANGE</td>
2637 <td valign="top" >Min=0, Max=1</td>
2638 <td valign="top" >Connector</td>
2639 <td valign="top" >TBD</td>
2640 </tr>
2641 <tr>
2642 <td valign="top" >SDVO-TV/LVDS</td>
2643 <td valign="top" >“brightness”</td>
2644 <td valign="top" >RANGE</td>
2645 <td valign="top" >Min=0, Max= SDVO dependent</td>
2646 <td valign="top" >Connector</td>
2647 <td valign="top" >TBD</td>
2648 </tr>
2649 <tr>
2650 <td rowspan="11" valign="top" >armada</td>
2651 <td rowspan="2" valign="top" >CRTC</td>
2652 <td valign="top" >"CSC_YUV"</td>
2653 <td valign="top" >ENUM</td>
2654 <td valign="top" >{ "Auto" , "CCIR601", "CCIR709" }</td>
2655 <td valign="top" >CRTC</td>
2656 <td valign="top" >TBD</td>
2657 </tr>
2658 <tr>
2659 <td valign="top" >"CSC_RGB"</td>
2660 <td valign="top" >ENUM</td>
2661 <td valign="top" >{ "Auto", "Computer system", "Studio" }</td>
2662 <td valign="top" >CRTC</td>
2663 <td valign="top" >TBD</td>
2664 </tr>
2665 <tr>
2666 <td rowspan="9" valign="top" >Overlay</td>
2667 <td valign="top" >"colorkey"</td>
2668 <td valign="top" >RANGE</td>
2669 <td valign="top" >Min=0, Max=0xffffff</td>
2670 <td valign="top" >Plane</td>
2671 <td valign="top" >TBD</td>
2672 </tr>
2673 <tr>
2674 <td valign="top" >"colorkey_min"</td>
2675 <td valign="top" >RANGE</td>
2676 <td valign="top" >Min=0, Max=0xffffff</td>
2677 <td valign="top" >Plane</td>
2678 <td valign="top" >TBD</td>
2679 </tr>
2680 <tr>
2681 <td valign="top" >"colorkey_max"</td>
2682 <td valign="top" >RANGE</td>
2683 <td valign="top" >Min=0, Max=0xffffff</td>
2684 <td valign="top" >Plane</td>
2685 <td valign="top" >TBD</td>
2686 </tr>
2687 <tr>
2688 <td valign="top" >"colorkey_val"</td>
2689 <td valign="top" >RANGE</td>
2690 <td valign="top" >Min=0, Max=0xffffff</td>
2691 <td valign="top" >Plane</td>
2692 <td valign="top" >TBD</td>
2693 </tr>
2694 <tr>
2695 <td valign="top" >"colorkey_alpha"</td>
2696 <td valign="top" >RANGE</td>
2697 <td valign="top" >Min=0, Max=0xffffff</td>
2698 <td valign="top" >Plane</td>
2699 <td valign="top" >TBD</td>
2700 </tr>
2701 <tr>
2702 <td valign="top" >"colorkey_mode"</td>
2703 <td valign="top" >ENUM</td>
2704 <td valign="top" >{ "disabled", "Y component", "U component"
2705 , "V component", "RGB", “R component", "G component", "B component" }</td>
2706 <td valign="top" >Plane</td>
2707 <td valign="top" >TBD</td>
2708 </tr>
2709 <tr>
2710 <td valign="top" >"brightness"</td>
2711 <td valign="top" >RANGE</td>
2712 <td valign="top" >Min=0, Max=256 + 255</td>
2713 <td valign="top" >Plane</td>
2714 <td valign="top" >TBD</td>
2715 </tr>
2716 <tr>
2717 <td valign="top" >"contrast"</td>
2718 <td valign="top" >RANGE</td>
2719 <td valign="top" >Min=0, Max=0x7fff</td>
2720 <td valign="top" >Plane</td>
2721 <td valign="top" >TBD</td>
2722 </tr>
2723 <tr>
2724 <td valign="top" >"saturation"</td>
2725 <td valign="top" >RANGE</td>
2726 <td valign="top" >Min=0, Max=0x7fff</td>
2727 <td valign="top" >Plane</td>
2728 <td valign="top" >TBD</td>
2729 </tr>
2730 <tr>
2731 <td rowspan="2" valign="top" >exynos</td>
2732 <td valign="top" >CRTC</td>
2733 <td valign="top" >“mode”</td>
2734 <td valign="top" >ENUM</td>
2735 <td valign="top" >{ "normal", "blank" }</td>
2736 <td valign="top" >CRTC</td>
2737 <td valign="top" >TBD</td>
2738 </tr>
2739 <tr>
2740 <td valign="top" >Overlay</td>
2741 <td valign="top" >“zpos”</td>
2742 <td valign="top" >RANGE</td>
2743 <td valign="top" >Min=0, Max=MAX_PLANE-1</td>
2744 <td valign="top" >Plane</td>
2745 <td valign="top" >TBD</td>
2746 </tr>
2747 <tr>
4ba08faa 2748 <td rowspan="2" valign="top" >i2c/ch7006_drv</td>
6c6a3996
SK
2749 <td valign="top" >Generic</td>
2750 <td valign="top" >“scale”</td>
2751 <td valign="top" >RANGE</td>
2752 <td valign="top" >Min=0, Max=2</td>
2753 <td valign="top" >Connector</td>
2754 <td valign="top" >TBD</td>
2755 </tr>
2756 <tr>
4ba08faa 2757 <td rowspan="1" valign="top" >TV</td>
6c6a3996
SK
2758 <td valign="top" >“mode”</td>
2759 <td valign="top" >ENUM</td>
2760 <td valign="top" >{ "PAL", "PAL-M","PAL-N"}, ”PAL-Nc"
2761 , "PAL-60", "NTSC-M", "NTSC-J" }</td>
2762 <td valign="top" >Connector</td>
2763 <td valign="top" >TBD</td>
2764 </tr>
2765 <tr>
4ba08faa 2766 <td rowspan="15" valign="top" >nouveau</td>
6c6a3996
SK
2767 <td rowspan="6" valign="top" >NV10 Overlay</td>
2768 <td valign="top" >"colorkey"</td>
2769 <td valign="top" >RANGE</td>
2770 <td valign="top" >Min=0, Max=0x01ffffff</td>
2771 <td valign="top" >Plane</td>
2772 <td valign="top" >TBD</td>
2773 </tr>
2774 <tr>
2775 <td valign="top" >“contrast”</td>
2776 <td valign="top" >RANGE</td>
2777 <td valign="top" >Min=0, Max=8192-1</td>
2778 <td valign="top" >Plane</td>
2779 <td valign="top" >TBD</td>
2780 </tr>
2781 <tr>
2782 <td valign="top" >“brightness”</td>
2783 <td valign="top" >RANGE</td>
2784 <td valign="top" >Min=0, Max=1024</td>
2785 <td valign="top" >Plane</td>
2786 <td valign="top" >TBD</td>
2787 </tr>
2788 <tr>
2789 <td valign="top" >“hue”</td>
2790 <td valign="top" >RANGE</td>
2791 <td valign="top" >Min=0, Max=359</td>
2792 <td valign="top" >Plane</td>
2793 <td valign="top" >TBD</td>
2794 </tr>
2795 <tr>
2796 <td valign="top" >“saturation”</td>
2797 <td valign="top" >RANGE</td>
2798 <td valign="top" >Min=0, Max=8192-1</td>
2799 <td valign="top" >Plane</td>
2800 <td valign="top" >TBD</td>
2801 </tr>
2802 <tr>
2803 <td valign="top" >“iturbt_709”</td>
2804 <td valign="top" >RANGE</td>
2805 <td valign="top" >Min=0, Max=1</td>
2806 <td valign="top" >Plane</td>
2807 <td valign="top" >TBD</td>
2808 </tr>
2809 <tr>
2810 <td rowspan="2" valign="top" >Nv04 Overlay</td>
2811 <td valign="top" >“colorkey”</td>
2812 <td valign="top" >RANGE</td>
2813 <td valign="top" >Min=0, Max=0x01ffffff</td>
2814 <td valign="top" >Plane</td>
2815 <td valign="top" >TBD</td>
2816 </tr>
2817 <tr>
2818 <td valign="top" >“brightness”</td>
2819 <td valign="top" >RANGE</td>
2820 <td valign="top" >Min=0, Max=1024</td>
2821 <td valign="top" >Plane</td>
2822 <td valign="top" >TBD</td>
2823 </tr>
2824 <tr>
2825 <td rowspan="7" valign="top" >Display</td>
2826 <td valign="top" >“dithering mode”</td>
2827 <td valign="top" >ENUM</td>
2828 <td valign="top" >{ "auto", "off", "on" }</td>
2829 <td valign="top" >Connector</td>
2830 <td valign="top" >TBD</td>
2831 </tr>
2832 <tr>
2833 <td valign="top" >“dithering depth”</td>
2834 <td valign="top" >ENUM</td>
2835 <td valign="top" >{ "auto", "off", "on", "static 2x2", "dynamic 2x2", "temporal" }</td>
2836 <td valign="top" >Connector</td>
2837 <td valign="top" >TBD</td>
2838 </tr>
2839 <tr>
2840 <td valign="top" >“underscan”</td>
2841 <td valign="top" >ENUM</td>
2842 <td valign="top" >{ "auto", "6 bpc", "8 bpc" }</td>
2843 <td valign="top" >Connector</td>
2844 <td valign="top" >TBD</td>
2845 </tr>
2846 <tr>
2847 <td valign="top" >“underscan hborder”</td>
2848 <td valign="top" >RANGE</td>
2849 <td valign="top" >Min=0, Max=128</td>
2850 <td valign="top" >Connector</td>
2851 <td valign="top" >TBD</td>
2852 </tr>
2853 <tr>
2854 <td valign="top" >“underscan vborder”</td>
2855 <td valign="top" >RANGE</td>
2856 <td valign="top" >Min=0, Max=128</td>
2857 <td valign="top" >Connector</td>
2858 <td valign="top" >TBD</td>
2859 </tr>
2860 <tr>
2861 <td valign="top" >“vibrant hue”</td>
2862 <td valign="top" >RANGE</td>
2863 <td valign="top" >Min=0, Max=180</td>
2864 <td valign="top" >Connector</td>
2865 <td valign="top" >TBD</td>
2866 </tr>
2867 <tr>
2868 <td valign="top" >“color vibrance”</td>
2869 <td valign="top" >RANGE</td>
2870 <td valign="top" >Min=0, Max=200</td>
2871 <td valign="top" >Connector</td>
2872 <td valign="top" >TBD</td>
2873 </tr>
2874 <tr>
d4acc165 2875 <td valign="top" >omap</td>
712a0dd9 2876 <td valign="top" >Generic</td>
6c6a3996
SK
2877 <td valign="top" >“zorder”</td>
2878 <td valign="top" >RANGE</td>
2879 <td valign="top" >Min=0, Max=3</td>
2880 <td valign="top" >CRTC, Plane</td>
2881 <td valign="top" >TBD</td>
2882 </tr>
2883 <tr>
2884 <td valign="top" >qxl</td>
2885 <td valign="top" >Generic</td>
2886 <td valign="top" >“hotplug_mode_update"</td>
2887 <td valign="top" >RANGE</td>
2888 <td valign="top" >Min=0, Max=1</td>
2889 <td valign="top" >Connector</td>
2890 <td valign="top" >TBD</td>
2891 </tr>
2892 <tr>
4ba08faa 2893 <td rowspan="9" valign="top" >radeon</td>
6c6a3996
SK
2894 <td valign="top" >DVI-I</td>
2895 <td valign="top" >“coherent”</td>
2896 <td valign="top" >RANGE</td>
2897 <td valign="top" >Min=0, Max=1</td>
2898 <td valign="top" >Connector</td>
2899 <td valign="top" >TBD</td>
2900 </tr>
2901 <tr>
2902 <td valign="top" >DAC enable load detect</td>
2903 <td valign="top" >“load detection”</td>
2904 <td valign="top" >RANGE</td>
2905 <td valign="top" >Min=0, Max=1</td>
2906 <td valign="top" >Connector</td>
2907 <td valign="top" >TBD</td>
2908 </tr>
2909 <tr>
2910 <td valign="top" >TV Standard</td>
2911 <td valign="top" >"tv standard"</td>
2912 <td valign="top" >ENUM</td>
2913 <td valign="top" >{ "ntsc", "pal", "pal-m", "pal-60", "ntsc-j"
2914 , "scart-pal", "pal-cn", "secam" }</td>
2915 <td valign="top" >Connector</td>
2916 <td valign="top" >TBD</td>
2917 </tr>
2918 <tr>
2919 <td valign="top" >legacy TMDS PLL detect</td>
2920 <td valign="top" >"tmds_pll"</td>
2921 <td valign="top" >ENUM</td>
2922 <td valign="top" >{ "driver", "bios" }</td>
2923 <td valign="top" >-</td>
2924 <td valign="top" >TBD</td>
2925 </tr>
2926 <tr>
2927 <td rowspan="3" valign="top" >Underscan</td>
2928 <td valign="top" >"underscan"</td>
2929 <td valign="top" >ENUM</td>
2930 <td valign="top" >{ "off", "on", "auto" }</td>
2931 <td valign="top" >Connector</td>
2932 <td valign="top" >TBD</td>
2933 </tr>
2934 <tr>
2935 <td valign="top" >"underscan hborder"</td>
2936 <td valign="top" >RANGE</td>
2937 <td valign="top" >Min=0, Max=128</td>
2938 <td valign="top" >Connector</td>
2939 <td valign="top" >TBD</td>
2940 </tr>
2941 <tr>
2942 <td valign="top" >"underscan vborder"</td>
2943 <td valign="top" >RANGE</td>
2944 <td valign="top" >Min=0, Max=128</td>
2945 <td valign="top" >Connector</td>
2946 <td valign="top" >TBD</td>
2947 </tr>
2948 <tr>
2949 <td valign="top" >Audio</td>
2950 <td valign="top" >“audio”</td>
2951 <td valign="top" >ENUM</td>
2952 <td valign="top" >{ "off", "on", "auto" }</td>
2953 <td valign="top" >Connector</td>
2954 <td valign="top" >TBD</td>
2955 </tr>
2956 <tr>
2957 <td valign="top" >FMT Dithering</td>
2958 <td valign="top" >“dither”</td>
2959 <td valign="top" >ENUM</td>
2960 <td valign="top" >{ "off", "on" }</td>
2961 <td valign="top" >Connector</td>
2962 <td valign="top" >TBD</td>
2963 </tr>
2964 <tr>
6c6a3996
SK
2965 <td rowspan="3" valign="top" >rcar-du</td>
2966 <td rowspan="3" valign="top" >Generic</td>
2967 <td valign="top" >"alpha"</td>
2968 <td valign="top" >RANGE</td>
2969 <td valign="top" >Min=0, Max=255</td>
2970 <td valign="top" >Plane</td>
2971 <td valign="top" >TBD</td>
2972 </tr>
2973 <tr>
2974 <td valign="top" >"colorkey"</td>
2975 <td valign="top" >RANGE</td>
2976 <td valign="top" >Min=0, Max=0x01ffffff</td>
2977 <td valign="top" >Plane</td>
2978 <td valign="top" >TBD</td>
2979 </tr>
2980 <tr>
2981 <td valign="top" >"zpos"</td>
2982 <td valign="top" >RANGE</td>
2983 <td valign="top" >Min=1, Max=7</td>
2984 <td valign="top" >Plane</td>
2985 <td valign="top" >TBD</td>
2986 </tr>
2987 </tbody>
2988 </table>
2989 </sect2>
2d2ef822
JB
2990 </sect1>
2991
9cad9c95
LP
2992 <!-- Internals: vertical blanking -->
2993
2994 <sect1 id="drm-vertical-blank">
2995 <title>Vertical Blanking</title>
2996 <para>
2997 Vertical blanking plays a major role in graphics rendering. To achieve
2998 tear-free display, users must synchronize page flips and/or rendering to
2999 vertical blanking. The DRM API offers ioctls to perform page flips
3000 synchronized to vertical blanking and wait for vertical blanking.
3001 </para>
3002 <para>
3003 The DRM core handles most of the vertical blanking management logic, which
3004 involves filtering out spurious interrupts, keeping race-free blanking
3005 counters, coping with counter wrap-around and resets and keeping use
3006 counts. It relies on the driver to generate vertical blanking interrupts
3007 and optionally provide a hardware vertical blanking counter. Drivers must
3008 implement the following operations.
3009 </para>
3010 <itemizedlist>
3011 <listitem>
3012 <synopsis>int (*enable_vblank) (struct drm_device *dev, int crtc);
3013void (*disable_vblank) (struct drm_device *dev, int crtc);</synopsis>
3014 <para>
3015 Enable or disable vertical blanking interrupts for the given CRTC.
3016 </para>
3017 </listitem>
3018 <listitem>
3019 <synopsis>u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);</synopsis>
3020 <para>
3021 Retrieve the value of the vertical blanking counter for the given
3022 CRTC. If the hardware maintains a vertical blanking counter its value
3023 should be returned. Otherwise drivers can use the
3024 <function>drm_vblank_count</function> helper function to handle this
3025 operation.
3026 </para>
3027 </listitem>
3028 </itemizedlist>
2d2ef822 3029 <para>
9cad9c95
LP
3030 Drivers must initialize the vertical blanking handling core with a call to
3031 <function>drm_vblank_init</function> in their
3032 <methodname>load</methodname> operation. The function will set the struct
3033 <structname>drm_device</structname>
3034 <structfield>vblank_disable_allowed</structfield> field to 0. This will
3035 keep vertical blanking interrupts enabled permanently until the first mode
3036 set operation, where <structfield>vblank_disable_allowed</structfield> is
3037 set to 1. The reason behind this is not clear. Drivers can set the field
3038 to 1 after <function>calling drm_vblank_init</function> to make vertical
3039 blanking interrupts dynamically managed from the beginning.
2d2ef822 3040 </para>
9cad9c95
LP
3041 <para>
3042 Vertical blanking interrupts can be enabled by the DRM core or by drivers
3043 themselves (for instance to handle page flipping operations). The DRM core
3044 maintains a vertical blanking use count to ensure that the interrupts are
3045 not disabled while a user still needs them. To increment the use count,
3046 drivers call <function>drm_vblank_get</function>. Upon return vertical
3047 blanking interrupts are guaranteed to be enabled.
3048 </para>
3049 <para>
3050 To decrement the use count drivers call
3051 <function>drm_vblank_put</function>. Only when the use count drops to zero
3052 will the DRM core disable the vertical blanking interrupts after a delay
3053 by scheduling a timer. The delay is accessible through the vblankoffdelay
3054 module parameter or the <varname>drm_vblank_offdelay</varname> global
3055 variable and expressed in milliseconds. Its default value is 5000 ms.
4ed0ce3d 3056 Zero means never disable, and a negative value means disable immediately.
00185e66
VS
3057 Drivers may override the behaviour by setting the
3058 <structname>drm_device</structname>
3059 <structfield>vblank_disable_immediate</structfield> flag, which when set
3060 causes vblank interrupts to be disabled immediately regardless of the
3061 drm_vblank_offdelay value. The flag should only be set if there's a
3062 properly working hardware vblank counter present.
9cad9c95
LP
3063 </para>
3064 <para>
3065 When a vertical blanking interrupt occurs drivers only need to call the
3066 <function>drm_handle_vblank</function> function to account for the
3067 interrupt.
3068 </para>
3069 <para>
3070 Resources allocated by <function>drm_vblank_init</function> must be freed
3071 with a call to <function>drm_vblank_cleanup</function> in the driver
3072 <methodname>unload</methodname> operation handler.
3073 </para>
f5752b38
DV
3074 <sect2>
3075 <title>Vertical Blanking and Interrupt Handling Functions Reference</title>
3076!Edrivers/gpu/drm/drm_irq.c
d743ecf3 3077!Finclude/drm/drmP.h drm_crtc_vblank_waitqueue
f5752b38 3078 </sect2>
9cad9c95
LP
3079 </sect1>
3080
3081 <!-- Internals: open/close, file operations and ioctls -->
2d2ef822 3082
9cad9c95
LP
3083 <sect1>
3084 <title>Open/Close, File Operations and IOCTLs</title>
2d2ef822 3085 <sect2>
9cad9c95
LP
3086 <title>Open and Close</title>
3087 <synopsis>int (*firstopen) (struct drm_device *);
3088void (*lastclose) (struct drm_device *);
3089int (*open) (struct drm_device *, struct drm_file *);
3090void (*preclose) (struct drm_device *, struct drm_file *);
3091void (*postclose) (struct drm_device *, struct drm_file *);</synopsis>
3092 <abstract>Open and close handlers. None of those methods are mandatory.
3093 </abstract>
2d2ef822 3094 <para>
9cad9c95 3095 The <methodname>firstopen</methodname> method is called by the DRM core
7d14bb6b
DV
3096 for legacy UMS (User Mode Setting) drivers only when an application
3097 opens a device that has no other opened file handle. UMS drivers can
3098 implement it to acquire device resources. KMS drivers can't use the
3099 method and must acquire resources in the <methodname>load</methodname>
3100 method instead.
2d2ef822
JB
3101 </para>
3102 <para>
7d14bb6b
DV
3103 Similarly the <methodname>lastclose</methodname> method is called when
3104 the last application holding a file handle opened on the device closes
3105 it, for both UMS and KMS drivers. Additionally, the method is also
3106 called at module unload time or, for hot-pluggable devices, when the
3107 device is unplugged. The <methodname>firstopen</methodname> and
9cad9c95 3108 <methodname>lastclose</methodname> calls can thus be unbalanced.
2d2ef822
JB
3109 </para>
3110 <para>
9cad9c95
LP
3111 The <methodname>open</methodname> method is called every time the device
3112 is opened by an application. Drivers can allocate per-file private data
3113 in this method and store them in the struct
3114 <structname>drm_file</structname> <structfield>driver_priv</structfield>
3115 field. Note that the <methodname>open</methodname> method is called
3116 before <methodname>firstopen</methodname>.
3117 </para>
3118 <para>
3119 The close operation is split into <methodname>preclose</methodname> and
3120 <methodname>postclose</methodname> methods. Drivers must stop and
3121 cleanup all per-file operations in the <methodname>preclose</methodname>
3122 method. For instance pending vertical blanking and page flip events must
3123 be cancelled. No per-file operation is allowed on the file handle after
3124 returning from the <methodname>preclose</methodname> method.
3125 </para>
3126 <para>
3127 Finally the <methodname>postclose</methodname> method is called as the
3128 last step of the close operation, right before calling the
3129 <methodname>lastclose</methodname> method if no other open file handle
3130 exists for the device. Drivers that have allocated per-file private data
3131 in the <methodname>open</methodname> method should free it here.
3132 </para>
3133 <para>
3134 The <methodname>lastclose</methodname> method should restore CRTC and
3135 plane properties to default value, so that a subsequent open of the
7d14bb6b
DV
3136 device will not inherit state from the previous user. It can also be
3137 used to execute delayed power switching state changes, e.g. in
6648f487
LW
3138 conjunction with the vga_switcheroo infrastructure (see
3139 <xref linkend="vga_switcheroo"/>). Beyond that KMS drivers should not
3140 do any further cleanup. Only legacy UMS drivers might need to clean up
3141 device state so that the vga console or an independent fbdev driver
3142 could take over.
2d2ef822
JB
3143 </para>
3144 </sect2>
2d2ef822 3145 <sect2>
9cad9c95
LP
3146 <title>File Operations</title>
3147 <synopsis>const struct file_operations *fops</synopsis>
3148 <abstract>File operations for the DRM device node.</abstract>
2d2ef822 3149 <para>
9cad9c95
LP
3150 Drivers must define the file operations structure that forms the DRM
3151 userspace API entry point, even though most of those operations are
3152 implemented in the DRM core. The <methodname>open</methodname>,
3153 <methodname>release</methodname> and <methodname>ioctl</methodname>
3154 operations are handled by
3155 <programlisting>
3156 .owner = THIS_MODULE,
3157 .open = drm_open,
3158 .release = drm_release,
3159 .unlocked_ioctl = drm_ioctl,
3160 #ifdef CONFIG_COMPAT
3161 .compat_ioctl = drm_compat_ioctl,
3162 #endif
3163 </programlisting>
2d2ef822
JB
3164 </para>
3165 <para>
9cad9c95
LP
3166 Drivers that implement private ioctls that requires 32/64bit
3167 compatibility support must provide their own
3168 <methodname>compat_ioctl</methodname> handler that processes private
3169 ioctls and calls <function>drm_compat_ioctl</function> for core ioctls.
2d2ef822
JB
3170 </para>
3171 <para>
9cad9c95
LP
3172 The <methodname>read</methodname> and <methodname>poll</methodname>
3173 operations provide support for reading DRM events and polling them. They
3174 are implemented by
3175 <programlisting>
3176 .poll = drm_poll,
3177 .read = drm_read,
9cad9c95
LP
3178 .llseek = no_llseek,
3179 </programlisting>
3180 </para>
3181 <para>
3182 The memory mapping implementation varies depending on how the driver
3183 manages memory. Pre-GEM drivers will use <function>drm_mmap</function>,
3184 while GEM-aware drivers will use <function>drm_gem_mmap</function>. See
3185 <xref linkend="drm-gem"/>.
3186 <programlisting>
3187 .mmap = drm_gem_mmap,
3188 </programlisting>
3189 </para>
3190 <para>
3191 No other file operation is supported by the DRM API.
3192 </para>
3193 </sect2>
3194 <sect2>
3195 <title>IOCTLs</title>
3196 <synopsis>struct drm_ioctl_desc *ioctls;
3197int num_ioctls;</synopsis>
3198 <abstract>Driver-specific ioctls descriptors table.</abstract>
3199 <para>
3200 Driver-specific ioctls numbers start at DRM_COMMAND_BASE. The ioctls
3201 descriptors table is indexed by the ioctl number offset from the base
3202 value. Drivers can use the DRM_IOCTL_DEF_DRV() macro to initialize the
3203 table entries.
3204 </para>
3205 <para>
3206 <programlisting>DRM_IOCTL_DEF_DRV(ioctl, func, flags)</programlisting>
3207 <para>
3208 <parameter>ioctl</parameter> is the ioctl name. Drivers must define
3209 the DRM_##ioctl and DRM_IOCTL_##ioctl macros to the ioctl number
3210 offset from DRM_COMMAND_BASE and the ioctl number respectively. The
3211 first macro is private to the device while the second must be exposed
3212 to userspace in a public header.
3213 </para>
3214 <para>
3215 <parameter>func</parameter> is a pointer to the ioctl handler function
3216 compatible with the <type>drm_ioctl_t</type> type.
3217 <programlisting>typedef int drm_ioctl_t(struct drm_device *dev, void *data,
3218 struct drm_file *file_priv);</programlisting>
3219 </para>
3220 <para>
3221 <parameter>flags</parameter> is a bitmask combination of the following
3222 values. It restricts how the ioctl is allowed to be called.
3223 <itemizedlist>
3224 <listitem><para>
3225 DRM_AUTH - Only authenticated callers allowed
3226 </para></listitem>
3227 <listitem><para>
3228 DRM_MASTER - The ioctl can only be called on the master file
3229 handle
3230 </para></listitem>
3231 <listitem><para>
3232 DRM_ROOT_ONLY - Only callers with the SYSADMIN capability allowed
3233 </para></listitem>
3234 <listitem><para>
3235 DRM_CONTROL_ALLOW - The ioctl can only be called on a control
3236 device
3237 </para></listitem>
3238 <listitem><para>
3239 DRM_UNLOCKED - The ioctl handler will be called without locking
ea487835
DV
3240 the DRM global mutex. This is the enforced default for kms drivers
3241 (i.e. using the DRIVER_MODESET flag) and hence shouldn't be used
3242 any more for new drivers.
9cad9c95
LP
3243 </para></listitem>
3244 </itemizedlist>
3245 </para>
2d2ef822 3246 </para>
0aaf20cf 3247!Edrivers/gpu/drm/drm_ioctl.c
2d2ef822 3248 </sect2>
2d2ef822 3249 </sect1>
2d2ef822 3250 <sect1>
4c6e2dfe 3251 <title>Legacy Support Code</title>
2d2ef822 3252 <para>
9a6594fc 3253 The section very briefly covers some of the old legacy support code which
4c6e2dfe
DV
3254 is only used by old DRM drivers which have done a so-called shadow-attach
3255 to the underlying device instead of registering as a real driver. This
9a6594fc 3256 also includes some of the old generic buffer management and command
4c6e2dfe 3257 submission code. Do not use any of this in new and modern drivers.
2d2ef822 3258 </para>
2d2ef822 3259
4c6e2dfe
DV
3260 <sect2>
3261 <title>Legacy Suspend/Resume</title>
3262 <para>
3263 The DRM core provides some suspend/resume code, but drivers wanting full
3264 suspend/resume support should provide save() and restore() functions.
3265 These are called at suspend, hibernate, or resume time, and should perform
3266 any state save or restore required by your device across suspend or
3267 hibernate states.
3268 </para>
3269 <synopsis>int (*suspend) (struct drm_device *, pm_message_t state);
3270 int (*resume) (struct drm_device *);</synopsis>
3271 <para>
3272 Those are legacy suspend and resume methods which
3273 <emphasis>only</emphasis> work with the legacy shadow-attach driver
3274 registration functions. New driver should use the power management
3275 interface provided by their bus type (usually through
3276 the struct <structname>device_driver</structname> dev_pm_ops) and set
3277 these methods to NULL.
3278 </para>
3279 </sect2>
3280
3281 <sect2>
3282 <title>Legacy DMA Services</title>
3283 <para>
3284 This should cover how DMA mapping etc. is supported by the core.
3285 These functions are deprecated and should not be used.
3286 </para>
3287 </sect2>
2d2ef822
JB
3288 </sect1>
3289 </chapter>
3290
9cad9c95
LP
3291<!-- TODO
3292
3293- Add a glossary
3294- Document the struct_mutex catch-all lock
3295- Document connector properties
3296
3297- Why is the load method optional?
3298- What are drivers supposed to set the initial display state to, and how?
3299 Connector's DPMS states are not initialized and are thus equal to
3300 DRM_MODE_DPMS_ON. The fbcon compatibility layer calls
3301 drm_helper_disable_unused_functions(), which disables unused encoders and
3302 CRTCs, but doesn't touch the connectors' DPMS state, and
3303 drm_helper_connector_dpms() in reaction to fbdev blanking events. Do drivers
3304 that don't implement (or just don't use) fbcon compatibility need to call
3305 those functions themselves?
3306- KMS drivers must call drm_vblank_pre_modeset() and drm_vblank_post_modeset()
3307 around mode setting. Should this be done in the DRM core?
3308- vblank_disable_allowed is set to 1 in the first drm_vblank_post_modeset()
3309 call and never set back to 0. It seems to be safe to permanently set it to 1
3310 in drm_vblank_init() for KMS driver, and it might be safe for UMS drivers as
3311 well. This should be investigated.
3312- crtc and connector .save and .restore operations are only used internally in
3313 drivers, should they be removed from the core?
3314- encoder mid-layer .save and .restore operations are only used internally in
3315 drivers, should they be removed from the core?
3316- encoder mid-layer .detect operation is only used internally in drivers,
3317 should it be removed from the core?
3318-->
3319
2d2ef822
JB
3320 <!-- External interfaces -->
3321
3322 <chapter id="drmExternals">
3323 <title>Userland interfaces</title>
3324 <para>
3325 The DRM core exports several interfaces to applications,
3326 generally intended to be used through corresponding libdrm
a5294e01 3327 wrapper functions. In addition, drivers export device-specific
7f0925ac 3328 interfaces for use by userspace drivers &amp; device-aware
2d2ef822
JB
3329 applications through ioctls and sysfs files.
3330 </para>
3331 <para>
3332 External interfaces include: memory mapping, context management,
3333 DMA operations, AGP management, vblank control, fence
3334 management, memory management, and output management.
3335 </para>
3336 <para>
bcd3cfc1
MW
3337 Cover generic ioctls and sysfs layout here. We only need high-level
3338 info, since man pages should cover the rest.
2d2ef822 3339 </para>
9cad9c95 3340
1793126f
DH
3341 <!-- External: render nodes -->
3342
3343 <sect1>
3344 <title>Render nodes</title>
3345 <para>
3346 DRM core provides multiple character-devices for user-space to use.
3347 Depending on which device is opened, user-space can perform a different
3348 set of operations (mainly ioctls). The primary node is always created
00153aeb
DV
3349 and called card&lt;num&gt;. Additionally, a currently
3350 unused control node, called controlD&lt;num&gt; is also
1793126f
DH
3351 created. The primary node provides all legacy operations and
3352 historically was the only interface used by userspace. With KMS, the
3353 control node was introduced. However, the planned KMS control interface
3354 has never been written and so the control node stays unused to date.
3355 </para>
3356 <para>
3357 With the increased use of offscreen renderers and GPGPU applications,
3358 clients no longer require running compositors or graphics servers to
3359 make use of a GPU. But the DRM API required unprivileged clients to
3360 authenticate to a DRM-Master prior to getting GPU access. To avoid this
3361 step and to grant clients GPU access without authenticating, render
3362 nodes were introduced. Render nodes solely serve render clients, that
3363 is, no modesetting or privileged ioctls can be issued on render nodes.
3364 Only non-global rendering commands are allowed. If a driver supports
00153aeb 3365 render nodes, it must advertise it via the DRIVER_RENDER
1793126f
DH
3366 DRM driver capability. If not supported, the primary node must be used
3367 for render clients together with the legacy drmAuth authentication
3368 procedure.
3369 </para>
3370 <para>
3371 If a driver advertises render node support, DRM core will create a
00153aeb 3372 separate render node called renderD&lt;num&gt;. There will
1793126f 3373 be one render node per device. No ioctls except PRIME-related ioctls
00153aeb 3374 will be allowed on this node. Especially GEM_OPEN will be
1793126f
DH
3375 explicitly prohibited. Render nodes are designed to avoid the
3376 buffer-leaks, which occur if clients guess the flink names or mmap
3377 offsets on the legacy interface. Additionally to this basic interface,
3378 drivers must mark their driver-dependent render-only ioctls as
00153aeb 3379 DRM_RENDER_ALLOW so render clients can use them. Driver
1793126f
DH
3380 authors must be careful not to allow any privileged ioctls on render
3381 nodes.
3382 </para>
3383 <para>
3384 With render nodes, user-space can now control access to the render node
3385 via basic file-system access-modes. A running graphics server which
3386 authenticates clients on the privileged primary/legacy node is no longer
3387 required. Instead, a client can open the render node and is immediately
3388 granted GPU access. Communication between clients (or servers) is done
3389 via PRIME. FLINK from render node to legacy node is not supported. New
3390 clients must not use the insecure FLINK interface.
3391 </para>
3392 <para>
3393 Besides dropping all modeset/global ioctls, render nodes also drop the
3394 DRM-Master concept. There is no reason to associate render clients with
3395 a DRM-Master as they are independent of any graphics server. Besides,
3396 they must work without any running master, anyway.
3397 Drivers must be able to run without a master object if they support
3398 render nodes. If, on the other hand, a driver requires shared state
3399 between clients which is visible to user-space and accessible beyond
3400 open-file boundaries, they cannot support render nodes.
3401 </para>
3402 </sect1>
3403
9cad9c95
LP
3404 <!-- External: vblank handling -->
3405
3406 <sect1>
3407 <title>VBlank event handling</title>
3408 <para>
3409 The DRM core exposes two vertical blank related ioctls:
3410 <variablelist>
3411 <varlistentry>
3412 <term>DRM_IOCTL_WAIT_VBLANK</term>
3413 <listitem>
3414 <para>
3415 This takes a struct drm_wait_vblank structure as its argument,
3416 and it is used to block or request a signal when a specified
3417 vblank event occurs.
3418 </para>
3419 </listitem>
3420 </varlistentry>
3421 <varlistentry>
3422 <term>DRM_IOCTL_MODESET_CTL</term>
3423 <listitem>
3424 <para>
8edffbb9
DV
3425 This was only used for user-mode-settind drivers around
3426 modesetting changes to allow the kernel to update the vblank
3427 interrupt after mode setting, since on many devices the vertical
3428 blank counter is reset to 0 at some point during modeset. Modern
3429 drivers should not call this any more since with kernel mode
3430 setting it is a no-op.
9cad9c95
LP
3431 </para>
3432 </listitem>
3433 </varlistentry>
3434 </variablelist>
9cad9c95
LP
3435 </para>
3436 </sect1>
3437
2d2ef822 3438 </chapter>
3519f70e
DV
3439</part>
3440<part id="drmDrivers">
3441 <title>DRM Drivers</title>
2d2ef822 3442
3519f70e
DV
3443 <partintro>
3444 <para>
7f817074
LW
3445 This second part of the GPU Driver Developer's Guide documents driver
3446 code, implementation details and also all the driver-specific userspace
3519f70e
DV
3447 interfaces. Especially since all hardware-acceleration interfaces to
3448 userspace are driver specific for efficiency and other reasons these
3449 interfaces can be rather substantial. Hence every driver has its own
3450 chapter.
3451 </para>
3452 </partintro>
2d2ef822 3453
3519f70e
DV
3454 <chapter id="drmI915">
3455 <title>drm/i915 Intel GFX Driver</title>
2d2ef822 3456 <para>
3519f70e
DV
3457 The drm/i915 driver supports all (with the exception of some very early
3458 models) integrated GFX chipsets with both Intel display and rendering
3459 blocks. This excludes a set of SoC platforms with an SGX rendering unit,
3460 those have basic support through the gma500 drm driver.
2d2ef822 3461 </para>
e4e7684f
DV
3462 <sect1>
3463 <title>Core Driver Infrastructure</title>
3464 <para>
3465 This section covers core driver infrastructure used by both the display
3466 and the GEM parts of the driver.
3467 </para>
3468 <sect2>
3469 <title>Runtime Power Management</title>
3470!Pdrivers/gpu/drm/i915/intel_runtime_pm.c runtime pm
3471!Idrivers/gpu/drm/i915/intel_runtime_pm.c
397f6fa6 3472!Idrivers/gpu/drm/i915/intel_uncore.c
e4e7684f 3473 </sect2>
fca52a55
DV
3474 <sect2>
3475 <title>Interrupt Handling</title>
3476!Pdrivers/gpu/drm/i915/i915_irq.c interrupt handling
3477!Fdrivers/gpu/drm/i915/i915_irq.c intel_irq_init intel_irq_init_hw intel_hpd_init
fca52a55
DV
3478!Fdrivers/gpu/drm/i915/i915_irq.c intel_runtime_pm_disable_interrupts
3479!Fdrivers/gpu/drm/i915/i915_irq.c intel_runtime_pm_enable_interrupts
3480 </sect2>
cf9d2890
YZ
3481 <sect2>
3482 <title>Intel GVT-g Guest Support(vGPU)</title>
3483!Pdrivers/gpu/drm/i915/i915_vgpu.c Intel GVT-g guest support
3484!Idrivers/gpu/drm/i915/i915_vgpu.c
3485 </sect2>
e4e7684f 3486 </sect1>
3519f70e
DV
3487 <sect1>
3488 <title>Display Hardware Handling</title>
3489 <para>
3490 This section covers everything related to the display hardware including
3491 the mode setting infrastructure, plane, sprite and cursor handling and
3492 display, output probing and related topics.
3493 </para>
3494 <sect2>
3495 <title>Mode Setting Infrastructure</title>
3496 <para>
3497 The i915 driver is thus far the only DRM driver which doesn't use the
3498 common DRM helper code to implement mode setting sequences. Thus it
3499 has its own tailor-made infrastructure for executing a display
3500 configuration change.
3501 </para>
3502 </sect2>
b680c37a
DV
3503 <sect2>
3504 <title>Frontbuffer Tracking</title>
3505!Pdrivers/gpu/drm/i915/intel_frontbuffer.c frontbuffer tracking
3506!Idrivers/gpu/drm/i915/intel_frontbuffer.c
b680c37a 3507!Fdrivers/gpu/drm/i915/i915_gem.c i915_gem_track_fb
ef07388e
DV
3508 </sect2>
3509 <sect2>
3510 <title>Display FIFO Underrun Reporting</title>
3511!Pdrivers/gpu/drm/i915/intel_fifo_underrun.c fifo underrun handling
3512!Idrivers/gpu/drm/i915/intel_fifo_underrun.c
b680c37a 3513 </sect2>
3519f70e
DV
3514 <sect2>
3515 <title>Plane Configuration</title>
3516 <para>
3517 This section covers plane configuration and composition with the
3518 primary plane, sprites, cursors and overlays. This includes the
3519 infrastructure to do atomic vsync'ed updates of all this state and
3520 also tightly coupled topics like watermark setup and computation,
3521 framebuffer compression and panel self refresh.
3522 </para>
3523 </sect2>
ea2c67bb
MR
3524 <sect2>
3525 <title>Atomic Plane Helpers</title>
3526!Pdrivers/gpu/drm/i915/intel_atomic_plane.c atomic plane helpers
3527!Idrivers/gpu/drm/i915/intel_atomic_plane.c
3528 </sect2>
3519f70e
DV
3529 <sect2>
3530 <title>Output Probing</title>
3531 <para>
3532 This section covers output probing and related infrastructure like the
3533 hotplug interrupt storm detection and mitigation code. Note that the
3534 i915 driver still uses most of the common DRM helper code for output
3535 probing, so those sections fully apply.
3536 </para>
3537 </sect2>
856974a4
JN
3538 <sect2>
3539 <title>Hotplug</title>
3540!Pdrivers/gpu/drm/i915/intel_hotplug.c Hotplug
3541!Idrivers/gpu/drm/i915/intel_hotplug.c
3542 </sect2>
28855d2a
JN
3543 <sect2>
3544 <title>High Definition Audio</title>
3545!Pdrivers/gpu/drm/i915/intel_audio.c High Definition Audio over HDMI and Display Port
3546!Idrivers/gpu/drm/i915/intel_audio.c
cb422619 3547!Iinclude/drm/i915_component.h
b2b89f55
RV
3548 </sect2>
3549 <sect2>
3550 <title>Panel Self Refresh PSR (PSR/SRD)</title>
3551!Pdrivers/gpu/drm/i915/intel_psr.c Panel Self Refresh (PSR/SRD)
3552!Idrivers/gpu/drm/i915/intel_psr.c
94b83957
RV
3553 </sect2>
3554 <sect2>
3555 <title>Frame Buffer Compression (FBC)</title>
3556!Pdrivers/gpu/drm/i915/intel_fbc.c Frame Buffer Compression (FBC)
3557!Idrivers/gpu/drm/i915/intel_fbc.c
b33a2815
VK
3558 </sect2>
3559 <sect2>
3560 <title>Display Refresh Rate Switching (DRRS)</title>
3561!Pdrivers/gpu/drm/i915/intel_dp.c Display Refresh Rate Switching (DRRS)
3562!Fdrivers/gpu/drm/i915/intel_dp.c intel_dp_set_drrs_state
3563!Fdrivers/gpu/drm/i915/intel_dp.c intel_edp_drrs_enable
3564!Fdrivers/gpu/drm/i915/intel_dp.c intel_edp_drrs_disable
3565!Fdrivers/gpu/drm/i915/intel_dp.c intel_edp_drrs_invalidate
3566!Fdrivers/gpu/drm/i915/intel_dp.c intel_edp_drrs_flush
3567!Fdrivers/gpu/drm/i915/intel_dp.c intel_dp_drrs_init
3568
28855d2a 3569 </sect2>
0e767189
VS
3570 <sect2>
3571 <title>DPIO</title>
3572!Pdrivers/gpu/drm/i915/i915_reg.h DPIO
3573 </sect2>
aa9145c4
AM
3574
3575 <sect2>
3576 <title>CSR firmware support for DMC</title>
3577!Pdrivers/gpu/drm/i915/intel_csr.c csr support for dmc
3578!Idrivers/gpu/drm/i915/intel_csr.c
3579 </sect2>
3519f70e 3580 </sect1>
2d2ef822 3581
3519f70e
DV
3582 <sect1>
3583 <title>Memory Management and Command Submission</title>
3584 <para>
3585 This sections covers all things related to the GEM implementation in the
3586 i915 driver.
3587 </para>
122b2505
DV
3588 <sect2>
3589 <title>Batchbuffer Parsing</title>
3590!Pdrivers/gpu/drm/i915/i915_cmd_parser.c batch buffer command parser
3591!Idrivers/gpu/drm/i915/i915_cmd_parser.c
493018dc
BV
3592 </sect2>
3593 <sect2>
3594 <title>Batchbuffer Pools</title>
3595!Pdrivers/gpu/drm/i915/i915_gem_batch_pool.c batch pool
3596!Idrivers/gpu/drm/i915/i915_gem_batch_pool.c
122b2505 3597 </sect2>
73e4d07f
OM
3598 <sect2>
3599 <title>Logical Rings, Logical Ring Contexts and Execlists</title>
3600!Pdrivers/gpu/drm/i915/intel_lrc.c Logical Rings, Logical Ring Contexts and Execlists
3601!Idrivers/gpu/drm/i915/intel_lrc.c
3602 </sect2>
45f8f69a
TU
3603 <sect2>
3604 <title>Global GTT views</title>
3605!Pdrivers/gpu/drm/i915/i915_gem_gtt.c Global GTT views
3606!Idrivers/gpu/drm/i915/i915_gem_gtt.c
a794f62a
DV
3607 </sect2>
3608 <sect2>
3271dca4 3609 <title>GTT Fences and Swizzling</title>
a794f62a 3610!Idrivers/gpu/drm/i915/i915_gem_fence.c
3271dca4
DV
3611 <sect3>
3612 <title>Global GTT Fence Handling</title>
3613!Pdrivers/gpu/drm/i915/i915_gem_fence.c fence register handling
3614 </sect3>
3615 <sect3>
3616 <title>Hardware Tiling and Swizzling Details</title>
3617!Pdrivers/gpu/drm/i915/i915_gem_fence.c tiling swizzling details
3618 </sect3>
3619 </sect2>
3620 <sect2>
3621 <title>Object Tiling IOCTLs</title>
3622!Idrivers/gpu/drm/i915/i915_gem_tiling.c
3623!Pdrivers/gpu/drm/i915/i915_gem_tiling.c buffer object tiling
45f8f69a 3624 </sect2>
7838a63a
DV
3625 <sect2>
3626 <title>Buffer Object Eviction</title>
3627 <para>
eb0b44ad 3628 This section documents the interface functions for evicting buffer
7838a63a
DV
3629 objects to make space available in the virtual gpu address spaces.
3630 Note that this is mostly orthogonal to shrinking buffer objects
3631 caches, which has the goal to make main memory (shared with the gpu
3632 through the unified memory architecture) available.
3633 </para>
3634!Idrivers/gpu/drm/i915/i915_gem_evict.c
3635 </sect2>
eb0b44ad
DV
3636 <sect2>
3637 <title>Buffer Object Memory Shrinking</title>
3638 <para>
3639 This section documents the interface function for shrinking memory
3640 usage of buffer object caches. Shrinking is used to make main memory
3641 available. Note that this is mostly orthogonal to evicting buffer
3642 objects, which has the goal to make space in gpu virtual address
3643 spaces.
3644 </para>
3645!Idrivers/gpu/drm/i915/i915_gem_shrinker.c
3646 </sect2>
3519f70e 3647 </sect1>
d1675198 3648 <sect1>
feda33ef 3649 <title>GuC</title>
d1675198 3650 <sect2>
feda33ef 3651 <title>GuC-specific firmware loader</title>
d1675198
AD
3652!Pdrivers/gpu/drm/i915/intel_guc_loader.c GuC-specific firmware loader
3653!Idrivers/gpu/drm/i915/intel_guc_loader.c
3654 </sect2>
3655 <sect2>
feda33ef
AD
3656 <title>GuC-based command submission</title>
3657!Pdrivers/gpu/drm/i915/i915_guc_submission.c GuC-based command submission
cff4f55b 3658!Idrivers/gpu/drm/i915/i915_guc_submission.c
d1675198 3659 </sect2>
feda33ef
AD
3660 <sect2>
3661 <title>GuC Firmware Layout</title>
3662!Pdrivers/gpu/drm/i915/intel_guc_fwif.h GuC Firmware Layout
3663 </sect2>
d1675198
AD
3664 </sect1>
3665
198c974d
DCS
3666 <sect1>
3667 <title> Tracing </title>
3668 <para>
3669 This sections covers all things related to the tracepoints implemented in
3670 the i915 driver.
3671 </para>
3672 <sect2>
3673 <title> i915_ppgtt_create and i915_ppgtt_release </title>
3674!Pdrivers/gpu/drm/i915/i915_trace.h i915_ppgtt_create and i915_ppgtt_release tracepoints
3675 </sect2>
3676 <sect2>
3677 <title> i915_context_create and i915_context_free </title>
3678!Pdrivers/gpu/drm/i915/i915_trace.h i915_context_create and i915_context_free tracepoints
3679 </sect2>
3680 <sect2>
3681 <title> switch_mm </title>
3682!Pdrivers/gpu/drm/i915/i915_trace.h switch_mm tracepoint
3683 </sect2>
3684 </sect1>
3685
3519f70e 3686 </chapter>
fca52a55 3687!Cdrivers/gpu/drm/i915/i915_irq.c
3519f70e 3688</part>
6648f487
LW
3689
3690<part id="vga_switcheroo">
3691 <title>vga_switcheroo</title>
3692 <partintro>
3693!Pdrivers/gpu/vga/vga_switcheroo.c Overview
3694 </partintro>
3695
3696 <chapter id="modes_of_use">
3697 <title>Modes of Use</title>
3698 <sect1>
3699 <title>Manual switching and manual power control</title>
3700!Pdrivers/gpu/vga/vga_switcheroo.c Manual switching and manual power control
3701 </sect1>
3702 <sect1>
3703 <title>Driver power control</title>
3704!Pdrivers/gpu/vga/vga_switcheroo.c Driver power control
3705 </sect1>
3706 </chapter>
3707
3708 <chapter id="pubfunctions">
3709 <title>Public functions</title>
3710!Edrivers/gpu/vga/vga_switcheroo.c
3711 </chapter>
3712
3713 <chapter id="pubstructures">
3714 <title>Public structures</title>
3715!Finclude/linux/vga_switcheroo.h vga_switcheroo_handler
3716!Finclude/linux/vga_switcheroo.h vga_switcheroo_client_ops
3717 </chapter>
3718
3719 <chapter id="pubconstants">
3720 <title>Public constants</title>
3721!Finclude/linux/vga_switcheroo.h vga_switcheroo_client_id
3722!Finclude/linux/vga_switcheroo.h vga_switcheroo_state
3723 </chapter>
3724
3725 <chapter id="privstructures">
3726 <title>Private structures</title>
3727!Fdrivers/gpu/vga/vga_switcheroo.c vgasr_priv
3728!Fdrivers/gpu/vga/vga_switcheroo.c vga_switcheroo_client
3729 </chapter>
3730
3731!Cdrivers/gpu/vga/vga_switcheroo.c
3732!Cinclude/linux/vga_switcheroo.h
3733</part>
3734
2d2ef822 3735</book>
This page took 0.555342 seconds and 5 git commands to generate.