Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 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 | |
| 5 | <book id="drmDevelopersGuide"> |
| 6 | <bookinfo> |
| 7 | <title>Linux DRM Developer's Guide</title> |
| 8 | |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 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> |
Daniel Vetter | 3a05700 | 2014-01-22 22:38:57 +0100 | [diff] [blame] | 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> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 43 | </authorgroup> |
| 44 | |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 45 | <copyright> |
| 46 | <year>2008-2009</year> |
Daniel Vetter | 3a05700 | 2014-01-22 22:38:57 +0100 | [diff] [blame] | 47 | <year>2013-2014</year> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 48 | <holder>Intel Corporation</holder> |
Daniel Vetter | 3a05700 | 2014-01-22 22:38:57 +0100 | [diff] [blame] | 49 | </copyright> |
| 50 | <copyright> |
| 51 | <year>2012</year> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 52 | <holder>Laurent Pinchart</holder> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 53 | </copyright> |
| 54 | |
| 55 | <legalnotice> |
| 56 | <para> |
| 57 | The contents of this file may be used under the terms of the GNU |
| 58 | General Public License version 2 (the "GPL") as distributed in |
| 59 | the kernel source COPYING file. |
| 60 | </para> |
| 61 | </legalnotice> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 62 | |
| 63 | <revhistory> |
| 64 | <!-- Put document revisions here, newest first. --> |
| 65 | <revision> |
| 66 | <revnumber>1.0</revnumber> |
| 67 | <date>2012-07-13</date> |
| 68 | <authorinitials>LP</authorinitials> |
| 69 | <revremark>Added extensive documentation about driver internals. |
| 70 | </revremark> |
| 71 | </revision> |
| 72 | </revhistory> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 73 | </bookinfo> |
| 74 | |
| 75 | <toc></toc> |
| 76 | |
Daniel Vetter | 3519f70 | 2014-01-22 12:21:16 +0100 | [diff] [blame] | 77 | <part id="drmCore"> |
| 78 | <title>DRM Core</title> |
| 79 | <partintro> |
| 80 | <para> |
| 81 | This first part of the DRM Developer's Guide documents core DRM code, |
| 82 | helper libraries for writting drivers and generic userspace interfaces |
| 83 | exposed by DRM drivers. |
| 84 | </para> |
| 85 | </partintro> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 86 | |
| 87 | <chapter id="drmIntroduction"> |
| 88 | <title>Introduction</title> |
| 89 | <para> |
| 90 | The Linux DRM layer contains code intended to support the needs |
| 91 | of complex graphics devices, usually containing programmable |
| 92 | pipelines well suited to 3D graphics acceleration. Graphics |
Michael Witten | f11aca0 | 2011-08-25 17:21:31 +0000 | [diff] [blame] | 93 | drivers in the kernel may make use of DRM functions to make |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 94 | tasks like memory management, interrupt handling and DMA easier, |
| 95 | and provide a uniform interface to applications. |
| 96 | </para> |
| 97 | <para> |
| 98 | A note on versions: this guide covers features found in the DRM |
| 99 | tree, including the TTM memory manager, output configuration and |
| 100 | mode setting, and the new vblank internals, in addition to all |
| 101 | the regular features found in current kernels. |
| 102 | </para> |
| 103 | <para> |
| 104 | [Insert diagram of typical DRM stack here] |
| 105 | </para> |
| 106 | </chapter> |
| 107 | |
| 108 | <!-- Internals --> |
| 109 | |
| 110 | <chapter id="drmInternals"> |
| 111 | <title>DRM Internals</title> |
| 112 | <para> |
| 113 | This chapter documents DRM internals relevant to driver authors |
| 114 | and developers working to add support for the latest features to |
| 115 | existing drivers. |
| 116 | </para> |
| 117 | <para> |
Michael Witten | a78f678 | 2011-08-25 17:18:08 +0000 | [diff] [blame] | 118 | First, we go over some typical driver initialization |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 119 | requirements, like setting up command buffers, creating an |
| 120 | initial output configuration, and initializing core services. |
Michael Witten | a78f678 | 2011-08-25 17:18:08 +0000 | [diff] [blame] | 121 | Subsequent sections cover core internals in more detail, |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 122 | providing implementation notes and examples. |
| 123 | </para> |
| 124 | <para> |
| 125 | The DRM layer provides several services to graphics drivers, |
| 126 | many of them driven by the application interfaces it provides |
| 127 | through libdrm, the library that wraps most of the DRM ioctls. |
| 128 | These include vblank event handling, memory |
| 129 | management, output management, framebuffer management, command |
| 130 | submission & fencing, suspend/resume support, and DMA |
| 131 | services. |
| 132 | </para> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 133 | |
| 134 | <!-- Internals: driver init --> |
| 135 | |
| 136 | <sect1> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 137 | <title>Driver Initialization</title> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 138 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 139 | At the core of every DRM driver is a <structname>drm_driver</structname> |
| 140 | structure. Drivers typically statically initialize a drm_driver structure, |
| 141 | and then pass it to one of the <function>drm_*_init()</function> functions |
| 142 | to register it with the DRM subsystem. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 143 | </para> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 144 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 145 | The <structname>drm_driver</structname> structure contains static |
| 146 | information that describes the driver and features it supports, and |
| 147 | pointers to methods that the DRM core will call to implement the DRM API. |
| 148 | We will first go through the <structname>drm_driver</structname> static |
| 149 | information fields, and will then describe individual operations in |
| 150 | details as they get used in later sections. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 151 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 152 | <sect2> |
| 153 | <title>Driver Information</title> |
| 154 | <sect3> |
| 155 | <title>Driver Features</title> |
| 156 | <para> |
| 157 | Drivers inform the DRM core about their requirements and supported |
| 158 | features by setting appropriate flags in the |
| 159 | <structfield>driver_features</structfield> field. Since those flags |
| 160 | influence the DRM core behaviour since registration time, most of them |
| 161 | must be set to registering the <structname>drm_driver</structname> |
| 162 | instance. |
| 163 | </para> |
| 164 | <synopsis>u32 driver_features;</synopsis> |
| 165 | <variablelist> |
| 166 | <title>Driver Feature Flags</title> |
| 167 | <varlistentry> |
| 168 | <term>DRIVER_USE_AGP</term> |
| 169 | <listitem><para> |
| 170 | Driver uses AGP interface, the DRM core will manage AGP resources. |
| 171 | </para></listitem> |
| 172 | </varlistentry> |
| 173 | <varlistentry> |
| 174 | <term>DRIVER_REQUIRE_AGP</term> |
| 175 | <listitem><para> |
| 176 | Driver needs AGP interface to function. AGP initialization failure |
| 177 | will become a fatal error. |
| 178 | </para></listitem> |
| 179 | </varlistentry> |
| 180 | <varlistentry> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 181 | <term>DRIVER_PCI_DMA</term> |
| 182 | <listitem><para> |
| 183 | Driver is capable of PCI DMA, mapping of PCI DMA buffers to |
| 184 | userspace will be enabled. Deprecated. |
| 185 | </para></listitem> |
| 186 | </varlistentry> |
| 187 | <varlistentry> |
| 188 | <term>DRIVER_SG</term> |
| 189 | <listitem><para> |
| 190 | Driver can perform scatter/gather DMA, allocation and mapping of |
| 191 | scatter/gather buffers will be enabled. Deprecated. |
| 192 | </para></listitem> |
| 193 | </varlistentry> |
| 194 | <varlistentry> |
| 195 | <term>DRIVER_HAVE_DMA</term> |
| 196 | <listitem><para> |
| 197 | Driver supports DMA, the userspace DMA API will be supported. |
| 198 | Deprecated. |
| 199 | </para></listitem> |
| 200 | </varlistentry> |
| 201 | <varlistentry> |
| 202 | <term>DRIVER_HAVE_IRQ</term><term>DRIVER_IRQ_SHARED</term> |
| 203 | <listitem><para> |
Laurent Pinchart | 02b6298 | 2013-06-22 14:10:59 +0200 | [diff] [blame] | 204 | DRIVER_HAVE_IRQ indicates whether the driver has an IRQ handler |
| 205 | managed by the DRM Core. The core will support simple IRQ handler |
| 206 | installation when the flag is set. The installation process is |
| 207 | described in <xref linkend="drm-irq-registration"/>.</para> |
| 208 | <para>DRIVER_IRQ_SHARED indicates whether the device & handler |
| 209 | support shared IRQs (note that this is required of PCI drivers). |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 210 | </para></listitem> |
| 211 | </varlistentry> |
| 212 | <varlistentry> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 213 | <term>DRIVER_GEM</term> |
| 214 | <listitem><para> |
| 215 | Driver use the GEM memory manager. |
| 216 | </para></listitem> |
| 217 | </varlistentry> |
| 218 | <varlistentry> |
| 219 | <term>DRIVER_MODESET</term> |
| 220 | <listitem><para> |
| 221 | Driver supports mode setting interfaces (KMS). |
| 222 | </para></listitem> |
| 223 | </varlistentry> |
| 224 | <varlistentry> |
| 225 | <term>DRIVER_PRIME</term> |
| 226 | <listitem><para> |
| 227 | Driver implements DRM PRIME buffer sharing. |
| 228 | </para></listitem> |
| 229 | </varlistentry> |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 230 | <varlistentry> |
| 231 | <term>DRIVER_RENDER</term> |
| 232 | <listitem><para> |
| 233 | Driver supports dedicated render nodes. |
| 234 | </para></listitem> |
| 235 | </varlistentry> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 236 | </variablelist> |
| 237 | </sect3> |
| 238 | <sect3> |
| 239 | <title>Major, Minor and Patchlevel</title> |
| 240 | <synopsis>int major; |
| 241 | int minor; |
| 242 | int patchlevel;</synopsis> |
| 243 | <para> |
| 244 | The DRM core identifies driver versions by a major, minor and patch |
| 245 | level triplet. The information is printed to the kernel log at |
| 246 | initialization time and passed to userspace through the |
| 247 | DRM_IOCTL_VERSION ioctl. |
| 248 | </para> |
| 249 | <para> |
| 250 | The major and minor numbers are also used to verify the requested driver |
| 251 | API version passed to DRM_IOCTL_SET_VERSION. When the driver API changes |
| 252 | between minor versions, applications can call DRM_IOCTL_SET_VERSION to |
| 253 | select a specific version of the API. If the requested major isn't equal |
| 254 | to the driver major, or the requested minor is larger than the driver |
| 255 | minor, the DRM_IOCTL_SET_VERSION call will return an error. Otherwise |
| 256 | the driver's set_version() method will be called with the requested |
| 257 | version. |
| 258 | </para> |
| 259 | </sect3> |
| 260 | <sect3> |
| 261 | <title>Name, Description and Date</title> |
| 262 | <synopsis>char *name; |
| 263 | char *desc; |
| 264 | char *date;</synopsis> |
| 265 | <para> |
| 266 | The driver name is printed to the kernel log at initialization time, |
| 267 | used for IRQ registration and passed to userspace through |
| 268 | DRM_IOCTL_VERSION. |
| 269 | </para> |
| 270 | <para> |
| 271 | The driver description is a purely informative string passed to |
| 272 | userspace through the DRM_IOCTL_VERSION ioctl and otherwise unused by |
| 273 | the kernel. |
| 274 | </para> |
| 275 | <para> |
| 276 | The driver date, formatted as YYYYMMDD, is meant to identify the date of |
| 277 | the latest modification to the driver. However, as most drivers fail to |
| 278 | update it, its value is mostly useless. The DRM core prints it to the |
| 279 | kernel log at initialization time and passes it to userspace through the |
| 280 | DRM_IOCTL_VERSION ioctl. |
| 281 | </para> |
| 282 | </sect3> |
| 283 | </sect2> |
| 284 | <sect2> |
| 285 | <title>Driver Load</title> |
| 286 | <para> |
| 287 | The <methodname>load</methodname> method is the driver and device |
| 288 | initialization entry point. The method is responsible for allocating and |
Daniel Vetter | e1f8ebd | 2014-01-22 16:32:47 +0100 | [diff] [blame] | 289 | initializing driver private data, performing resource allocation and |
| 290 | mapping (e.g. acquiring |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 291 | clocks, mapping registers or allocating command buffers), initializing |
| 292 | the memory manager (<xref linkend="drm-memory-management"/>), installing |
| 293 | the IRQ handler (<xref linkend="drm-irq-registration"/>), setting up |
| 294 | vertical blanking handling (<xref linkend="drm-vertical-blank"/>), mode |
| 295 | setting (<xref linkend="drm-mode-setting"/>) and initial output |
| 296 | configuration (<xref linkend="drm-kms-init"/>). |
| 297 | </para> |
| 298 | <note><para> |
| 299 | If compatibility is a concern (e.g. with drivers converted over from |
| 300 | User Mode Setting to Kernel Mode Setting), care must be taken to prevent |
| 301 | device initialization and control that is incompatible with currently |
| 302 | active userspace drivers. For instance, if user level mode setting |
| 303 | drivers are in use, it would be problematic to perform output discovery |
| 304 | & configuration at load time. Likewise, if user-level drivers |
| 305 | unaware of memory management are in use, memory management and command |
| 306 | buffer setup may need to be omitted. These requirements are |
| 307 | driver-specific, and care needs to be taken to keep both old and new |
| 308 | applications and libraries working. |
| 309 | </para></note> |
| 310 | <synopsis>int (*load) (struct drm_device *, unsigned long flags);</synopsis> |
| 311 | <para> |
| 312 | The method takes two arguments, a pointer to the newly created |
| 313 | <structname>drm_device</structname> and flags. The flags are used to |
| 314 | pass the <structfield>driver_data</structfield> field of the device id |
| 315 | corresponding to the device passed to <function>drm_*_init()</function>. |
| 316 | Only PCI devices currently use this, USB and platform DRM drivers have |
| 317 | their <methodname>load</methodname> method called with flags to 0. |
| 318 | </para> |
| 319 | <sect3> |
Daniel Vetter | e1f8ebd | 2014-01-22 16:32:47 +0100 | [diff] [blame] | 320 | <title>Driver Private Data</title> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 321 | <para> |
| 322 | The driver private hangs off the main |
| 323 | <structname>drm_device</structname> structure and can be used for |
| 324 | tracking various device-specific bits of information, like register |
| 325 | offsets, command buffer status, register state for suspend/resume, etc. |
| 326 | At load time, a driver may simply allocate one and set |
| 327 | <structname>drm_device</structname>.<structfield>dev_priv</structfield> |
| 328 | appropriately; it should be freed and |
| 329 | <structname>drm_device</structname>.<structfield>dev_priv</structfield> |
| 330 | set to NULL when the driver is unloaded. |
| 331 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 332 | </sect3> |
| 333 | <sect3 id="drm-irq-registration"> |
| 334 | <title>IRQ Registration</title> |
| 335 | <para> |
| 336 | The DRM core tries to facilitate IRQ handler registration and |
| 337 | unregistration by providing <function>drm_irq_install</function> and |
| 338 | <function>drm_irq_uninstall</function> functions. Those functions only |
Laurent Pinchart | 02b6298 | 2013-06-22 14:10:59 +0200 | [diff] [blame] | 339 | support a single interrupt per device, devices that use more than one |
| 340 | IRQs need to be handled manually. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 341 | </para> |
Laurent Pinchart | 02b6298 | 2013-06-22 14:10:59 +0200 | [diff] [blame] | 342 | <sect4> |
| 343 | <title>Managed IRQ Registration</title> |
| 344 | <para> |
Laurent Pinchart | 02b6298 | 2013-06-22 14:10:59 +0200 | [diff] [blame] | 345 | <function>drm_irq_install</function> starts by calling the |
| 346 | <methodname>irq_preinstall</methodname> driver operation. The operation |
| 347 | is optional and must make sure that the interrupt will not get fired by |
| 348 | clearing all pending interrupt flags or disabling the interrupt. |
| 349 | </para> |
| 350 | <para> |
Daniel Vetter | bb0f1b5 | 2013-11-03 21:09:27 +0100 | [diff] [blame] | 351 | The passed-in IRQ will then be requested by a call to |
Laurent Pinchart | 02b6298 | 2013-06-22 14:10:59 +0200 | [diff] [blame] | 352 | <function>request_irq</function>. If the DRIVER_IRQ_SHARED driver |
| 353 | feature flag is set, a shared (IRQF_SHARED) IRQ handler will be |
| 354 | requested. |
| 355 | </para> |
| 356 | <para> |
| 357 | The IRQ handler function must be provided as the mandatory irq_handler |
| 358 | driver operation. It will get passed directly to |
| 359 | <function>request_irq</function> and thus has the same prototype as all |
| 360 | IRQ handlers. It will get called with a pointer to the DRM device as the |
| 361 | second argument. |
| 362 | </para> |
| 363 | <para> |
| 364 | Finally the function calls the optional |
| 365 | <methodname>irq_postinstall</methodname> driver operation. The operation |
| 366 | usually enables interrupts (excluding the vblank interrupt, which is |
| 367 | enabled separately), but drivers may choose to enable/disable interrupts |
| 368 | at a different time. |
| 369 | </para> |
| 370 | <para> |
| 371 | <function>drm_irq_uninstall</function> is similarly used to uninstall an |
| 372 | IRQ handler. It starts by waking up all processes waiting on a vblank |
| 373 | interrupt to make sure they don't hang, and then calls the optional |
| 374 | <methodname>irq_uninstall</methodname> driver operation. The operation |
| 375 | must disable all hardware interrupts. Finally the function frees the IRQ |
| 376 | by calling <function>free_irq</function>. |
| 377 | </para> |
| 378 | </sect4> |
| 379 | <sect4> |
| 380 | <title>Manual IRQ Registration</title> |
| 381 | <para> |
| 382 | Drivers that require multiple interrupt handlers can't use the managed |
| 383 | IRQ registration functions. In that case IRQs must be registered and |
| 384 | unregistered manually (usually with the <function>request_irq</function> |
| 385 | and <function>free_irq</function> functions, or their devm_* equivalent). |
| 386 | </para> |
| 387 | <para> |
| 388 | When manually registering IRQs, drivers must not set the DRIVER_HAVE_IRQ |
| 389 | driver feature flag, and must not provide the |
| 390 | <methodname>irq_handler</methodname> driver operation. They must set the |
| 391 | <structname>drm_device</structname> <structfield>irq_enabled</structfield> |
| 392 | field to 1 upon registration of the IRQs, and clear it to 0 after |
| 393 | unregistering the IRQs. |
| 394 | </para> |
| 395 | </sect4> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 396 | </sect3> |
| 397 | <sect3> |
| 398 | <title>Memory Manager Initialization</title> |
| 399 | <para> |
| 400 | Every DRM driver requires a memory manager which must be initialized at |
| 401 | load time. DRM currently contains two memory managers, the Translation |
| 402 | Table Manager (TTM) and the Graphics Execution Manager (GEM). |
| 403 | This document describes the use of the GEM memory manager only. See |
| 404 | <xref linkend="drm-memory-management"/> for details. |
| 405 | </para> |
| 406 | </sect3> |
| 407 | <sect3> |
| 408 | <title>Miscellaneous Device Configuration</title> |
| 409 | <para> |
| 410 | Another task that may be necessary for PCI devices during configuration |
| 411 | is mapping the video BIOS. On many devices, the VBIOS describes device |
| 412 | configuration, LCD panel timings (if any), and contains flags indicating |
| 413 | device state. Mapping the BIOS can be done using the pci_map_rom() call, |
| 414 | a convenience function that takes care of mapping the actual ROM, |
| 415 | whether it has been shadowed into memory (typically at address 0xc0000) |
| 416 | or exists on the PCI device in the ROM BAR. Note that after the ROM has |
| 417 | been mapped and any necessary information has been extracted, it should |
| 418 | be unmapped; on many devices, the ROM address decoder is shared with |
| 419 | other BARs, so leaving it mapped could cause undesired behaviour like |
| 420 | hangs or memory corruption. |
| 421 | <!--!Fdrivers/pci/rom.c pci_map_rom--> |
| 422 | </para> |
| 423 | </sect3> |
| 424 | </sect2> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 425 | </sect1> |
| 426 | |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 427 | <!-- Internals: memory management --> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 428 | |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 429 | <sect1 id="drm-memory-management"> |
| 430 | <title>Memory management</title> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 431 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 432 | Modern Linux systems require large amount of graphics memory to store |
| 433 | frame buffers, textures, vertices and other graphics-related data. Given |
| 434 | the very dynamic nature of many of that data, managing graphics memory |
| 435 | efficiently is thus crucial for the graphics stack and plays a central |
| 436 | role in the DRM infrastructure. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 437 | </para> |
| 438 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 439 | The DRM core includes two memory managers, namely Translation Table Maps |
| 440 | (TTM) and Graphics Execution Manager (GEM). TTM was the first DRM memory |
| 441 | manager to be developed and tried to be a one-size-fits-them all |
Anatol Pomozov | f884ab1 | 2013-05-08 16:56:16 -0700 | [diff] [blame] | 442 | solution. It provides a single userspace API to accommodate the need of |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 443 | all hardware, supporting both Unified Memory Architecture (UMA) devices |
| 444 | and devices with dedicated video RAM (i.e. most discrete video cards). |
| 445 | This resulted in a large, complex piece of code that turned out to be |
| 446 | hard to use for driver development. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 447 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 448 | <para> |
| 449 | GEM started as an Intel-sponsored project in reaction to TTM's |
| 450 | complexity. Its design philosophy is completely different: instead of |
| 451 | providing a solution to every graphics memory-related problems, GEM |
| 452 | identified common code between drivers and created a support library to |
| 453 | share it. GEM has simpler initialization and execution requirements than |
| 454 | TTM, but has no video RAM management capabitilies and is thus limited to |
| 455 | UMA devices. |
| 456 | </para> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 457 | <sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 458 | <title>The Translation Table Manager (TTM)</title> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 459 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 460 | TTM design background and information belongs here. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 461 | </para> |
| 462 | <sect3> |
| 463 | <title>TTM initialization</title> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 464 | <warning><para>This section is outdated.</para></warning> |
| 465 | <para> |
| 466 | Drivers wishing to support TTM must fill out a drm_bo_driver |
| 467 | structure. The structure contains several fields with function |
| 468 | pointers for initializing the TTM, allocating and freeing memory, |
| 469 | waiting for command completion and fence synchronization, and memory |
| 470 | migration. See the radeon_ttm.c file for an example of usage. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 471 | </para> |
| 472 | <para> |
| 473 | The ttm_global_reference structure is made up of several fields: |
| 474 | </para> |
| 475 | <programlisting> |
| 476 | struct ttm_global_reference { |
| 477 | enum ttm_global_types global_type; |
| 478 | size_t size; |
| 479 | void *object; |
| 480 | int (*init) (struct ttm_global_reference *); |
| 481 | void (*release) (struct ttm_global_reference *); |
| 482 | }; |
| 483 | </programlisting> |
| 484 | <para> |
| 485 | There should be one global reference structure for your memory |
| 486 | manager as a whole, and there will be others for each object |
| 487 | created by the memory manager at runtime. Your global TTM should |
| 488 | have a type of TTM_GLOBAL_TTM_MEM. The size field for the global |
| 489 | object should be sizeof(struct ttm_mem_global), and the init and |
Michael Witten | a5294e0 | 2011-08-29 18:05:52 +0000 | [diff] [blame] | 490 | release hooks should point at your driver-specific init and |
Michael Witten | a78f678 | 2011-08-25 17:18:08 +0000 | [diff] [blame] | 491 | release routines, which probably eventually call |
Michael Witten | 005d7f4 | 2011-08-25 19:02:52 +0000 | [diff] [blame] | 492 | ttm_mem_global_init and ttm_mem_global_release, respectively. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 493 | </para> |
| 494 | <para> |
| 495 | Once your global TTM accounting structure is set up and initialized |
Michael Witten | ae63d79 | 2011-08-25 19:19:18 +0000 | [diff] [blame] | 496 | by calling ttm_global_item_ref() on it, |
Michael Witten | 1c86de2 | 2011-08-25 19:14:26 +0000 | [diff] [blame] | 497 | you need to create a buffer object TTM to |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 498 | provide a pool for buffer object allocation by clients and the |
| 499 | kernel itself. The type of this object should be TTM_GLOBAL_TTM_BO, |
| 500 | and its size should be sizeof(struct ttm_bo_global). Again, |
Michael Witten | a5294e0 | 2011-08-29 18:05:52 +0000 | [diff] [blame] | 501 | driver-specific init and release functions may be provided, |
Michael Witten | ae63d79 | 2011-08-25 19:19:18 +0000 | [diff] [blame] | 502 | likely eventually calling ttm_bo_global_init() and |
| 503 | ttm_bo_global_release(), respectively. Also, like the previous |
| 504 | object, ttm_global_item_ref() is used to create an initial reference |
Nicolas Kaiser | ce04cc0 | 2010-05-28 07:33:49 +0200 | [diff] [blame] | 505 | count for the TTM, which will call your initialization function. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 506 | </para> |
| 507 | </sect3> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 508 | </sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 509 | <sect2 id="drm-gem"> |
| 510 | <title>The Graphics Execution Manager (GEM)</title> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 511 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 512 | The GEM design approach has resulted in a memory manager that doesn't |
| 513 | provide full coverage of all (or even all common) use cases in its |
| 514 | userspace or kernel API. GEM exposes a set of standard memory-related |
| 515 | operations to userspace and a set of helper functions to drivers, and let |
| 516 | drivers implement hardware-specific operations with their own private API. |
| 517 | </para> |
| 518 | <para> |
| 519 | The GEM userspace API is described in the |
| 520 | <ulink url="http://lwn.net/Articles/283798/"><citetitle>GEM - the Graphics |
| 521 | Execution Manager</citetitle></ulink> article on LWN. While slightly |
| 522 | outdated, the document provides a good overview of the GEM API principles. |
| 523 | Buffer allocation and read and write operations, described as part of the |
| 524 | common GEM API, are currently implemented using driver-specific ioctls. |
| 525 | </para> |
| 526 | <para> |
| 527 | GEM is data-agnostic. It manages abstract buffer objects without knowing |
| 528 | what individual buffers contain. APIs that require knowledge of buffer |
| 529 | contents or purpose, such as buffer allocation or synchronization |
| 530 | primitives, are thus outside of the scope of GEM and must be implemented |
| 531 | using driver-specific ioctls. |
| 532 | </para> |
| 533 | <para> |
| 534 | On a fundamental level, GEM involves several operations: |
Michael Witten | 327d6fb | 2011-08-25 20:18:14 +0000 | [diff] [blame] | 535 | <itemizedlist> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 536 | <listitem>Memory allocation and freeing</listitem> |
| 537 | <listitem>Command execution</listitem> |
| 538 | <listitem>Aperture management at command execution time</listitem> |
Michael Witten | 327d6fb | 2011-08-25 20:18:14 +0000 | [diff] [blame] | 539 | </itemizedlist> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 540 | Buffer object allocation is relatively straightforward and largely |
| 541 | provided by Linux's shmem layer, which provides memory to back each |
| 542 | object. |
| 543 | </para> |
| 544 | <para> |
| 545 | Device-specific operations, such as command execution, pinning, buffer |
| 546 | read & write, mapping, and domain ownership transfers are left to |
| 547 | driver-specific ioctls. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 548 | </para> |
| 549 | <sect3> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 550 | <title>GEM Initialization</title> |
| 551 | <para> |
| 552 | Drivers that use GEM must set the DRIVER_GEM bit in the struct |
| 553 | <structname>drm_driver</structname> |
| 554 | <structfield>driver_features</structfield> field. The DRM core will |
| 555 | then automatically initialize the GEM core before calling the |
| 556 | <methodname>load</methodname> operation. Behind the scene, this will |
| 557 | create a DRM Memory Manager object which provides an address space |
| 558 | pool for object allocation. |
| 559 | </para> |
| 560 | <para> |
| 561 | In a KMS configuration, drivers need to allocate and initialize a |
| 562 | command ring buffer following core GEM initialization if required by |
| 563 | the hardware. UMA devices usually have what is called a "stolen" |
| 564 | memory region, which provides space for the initial framebuffer and |
| 565 | large, contiguous memory regions required by the device. This space is |
| 566 | typically not managed by GEM, and must be initialized separately into |
| 567 | its own DRM MM object. |
| 568 | </para> |
| 569 | </sect3> |
| 570 | <sect3> |
| 571 | <title>GEM Objects Creation</title> |
| 572 | <para> |
| 573 | GEM splits creation of GEM objects and allocation of the memory that |
| 574 | backs them in two distinct operations. |
| 575 | </para> |
| 576 | <para> |
| 577 | GEM objects are represented by an instance of struct |
| 578 | <structname>drm_gem_object</structname>. Drivers usually need to extend |
| 579 | GEM objects with private information and thus create a driver-specific |
| 580 | GEM object structure type that embeds an instance of struct |
| 581 | <structname>drm_gem_object</structname>. |
| 582 | </para> |
| 583 | <para> |
| 584 | To create a GEM object, a driver allocates memory for an instance of its |
| 585 | specific GEM object type and initializes the embedded struct |
| 586 | <structname>drm_gem_object</structname> with a call to |
| 587 | <function>drm_gem_object_init</function>. The function takes a pointer to |
| 588 | the DRM device, a pointer to the GEM object and the buffer object size |
| 589 | in bytes. |
| 590 | </para> |
| 591 | <para> |
| 592 | GEM uses shmem to allocate anonymous pageable memory. |
| 593 | <function>drm_gem_object_init</function> will create an shmfs file of |
| 594 | the requested size and store it into the struct |
| 595 | <structname>drm_gem_object</structname> <structfield>filp</structfield> |
| 596 | field. The memory is used as either main storage for the object when the |
| 597 | graphics hardware uses system memory directly or as a backing store |
| 598 | otherwise. |
| 599 | </para> |
| 600 | <para> |
| 601 | Drivers are responsible for the actual physical pages allocation by |
| 602 | calling <function>shmem_read_mapping_page_gfp</function> for each page. |
| 603 | Note that they can decide to allocate pages when initializing the GEM |
| 604 | object, or to delay allocation until the memory is needed (for instance |
| 605 | when a page fault occurs as a result of a userspace memory access or |
| 606 | when the driver needs to start a DMA transfer involving the memory). |
| 607 | </para> |
| 608 | <para> |
| 609 | Anonymous pageable memory allocation is not always desired, for instance |
| 610 | when the hardware requires physically contiguous system memory as is |
| 611 | often the case in embedded devices. Drivers can create GEM objects with |
| 612 | no shmfs backing (called private GEM objects) by initializing them with |
| 613 | a call to <function>drm_gem_private_object_init</function> instead of |
| 614 | <function>drm_gem_object_init</function>. Storage for private GEM |
| 615 | objects must be managed by drivers. |
| 616 | </para> |
| 617 | <para> |
| 618 | Drivers that do not need to extend GEM objects with private information |
| 619 | can call the <function>drm_gem_object_alloc</function> function to |
| 620 | allocate and initialize a struct <structname>drm_gem_object</structname> |
| 621 | instance. The GEM core will call the optional driver |
| 622 | <methodname>gem_init_object</methodname> operation after initializing |
| 623 | the GEM object with <function>drm_gem_object_init</function>. |
| 624 | <synopsis>int (*gem_init_object) (struct drm_gem_object *obj);</synopsis> |
| 625 | </para> |
| 626 | <para> |
| 627 | No alloc-and-init function exists for private GEM objects. |
| 628 | </para> |
| 629 | </sect3> |
| 630 | <sect3> |
| 631 | <title>GEM Objects Lifetime</title> |
| 632 | <para> |
| 633 | All GEM objects are reference-counted by the GEM core. References can be |
| 634 | acquired and release by <function>calling drm_gem_object_reference</function> |
| 635 | and <function>drm_gem_object_unreference</function> respectively. The |
| 636 | caller must hold the <structname>drm_device</structname> |
| 637 | <structfield>struct_mutex</structfield> lock. As a convenience, GEM |
| 638 | provides the <function>drm_gem_object_reference_unlocked</function> and |
| 639 | <function>drm_gem_object_unreference_unlocked</function> functions that |
| 640 | can be called without holding the lock. |
| 641 | </para> |
| 642 | <para> |
| 643 | When the last reference to a GEM object is released the GEM core calls |
| 644 | the <structname>drm_driver</structname> |
| 645 | <methodname>gem_free_object</methodname> operation. That operation is |
| 646 | mandatory for GEM-enabled drivers and must free the GEM object and all |
| 647 | associated resources. |
| 648 | </para> |
| 649 | <para> |
| 650 | <synopsis>void (*gem_free_object) (struct drm_gem_object *obj);</synopsis> |
| 651 | Drivers are responsible for freeing all GEM object resources, including |
| 652 | the resources created by the GEM core. If an mmap offset has been |
| 653 | created for the object (in which case |
| 654 | <structname>drm_gem_object</structname>::<structfield>map_list</structfield>::<structfield>map</structfield> |
| 655 | is not NULL) it must be freed by a call to |
| 656 | <function>drm_gem_free_mmap_offset</function>. The shmfs backing store |
| 657 | must be released by calling <function>drm_gem_object_release</function> |
| 658 | (that function can safely be called if no shmfs backing store has been |
| 659 | created). |
| 660 | </para> |
| 661 | </sect3> |
| 662 | <sect3> |
| 663 | <title>GEM Objects Naming</title> |
| 664 | <para> |
| 665 | Communication between userspace and the kernel refers to GEM objects |
| 666 | using local handles, global names or, more recently, file descriptors. |
| 667 | All of those are 32-bit integer values; the usual Linux kernel limits |
| 668 | apply to the file descriptors. |
| 669 | </para> |
| 670 | <para> |
| 671 | GEM handles are local to a DRM file. Applications get a handle to a GEM |
| 672 | object through a driver-specific ioctl, and can use that handle to refer |
| 673 | to the GEM object in other standard or driver-specific ioctls. Closing a |
| 674 | DRM file handle frees all its GEM handles and dereferences the |
| 675 | associated GEM objects. |
| 676 | </para> |
| 677 | <para> |
| 678 | To create a handle for a GEM object drivers call |
| 679 | <function>drm_gem_handle_create</function>. The function takes a pointer |
| 680 | to the DRM file and the GEM object and returns a locally unique handle. |
| 681 | When the handle is no longer needed drivers delete it with a call to |
| 682 | <function>drm_gem_handle_delete</function>. Finally the GEM object |
| 683 | associated with a handle can be retrieved by a call to |
| 684 | <function>drm_gem_object_lookup</function>. |
| 685 | </para> |
| 686 | <para> |
| 687 | Handles don't take ownership of GEM objects, they only take a reference |
| 688 | to the object that will be dropped when the handle is destroyed. To |
| 689 | avoid leaking GEM objects, drivers must make sure they drop the |
| 690 | reference(s) they own (such as the initial reference taken at object |
| 691 | creation time) as appropriate, without any special consideration for the |
| 692 | handle. For example, in the particular case of combined GEM object and |
| 693 | handle creation in the implementation of the |
| 694 | <methodname>dumb_create</methodname> operation, drivers must drop the |
| 695 | initial reference to the GEM object before returning the handle. |
| 696 | </para> |
| 697 | <para> |
| 698 | GEM names are similar in purpose to handles but are not local to DRM |
| 699 | files. They can be passed between processes to reference a GEM object |
| 700 | globally. Names can't be used directly to refer to objects in the DRM |
| 701 | API, applications must convert handles to names and names to handles |
| 702 | using the DRM_IOCTL_GEM_FLINK and DRM_IOCTL_GEM_OPEN ioctls |
| 703 | respectively. The conversion is handled by the DRM core without any |
| 704 | driver-specific support. |
| 705 | </para> |
Daniel Vetter | 251261d | 2014-01-22 18:46:33 +0100 | [diff] [blame] | 706 | <para> |
| 707 | GEM also supports buffer sharing with dma-buf file descriptors through |
| 708 | PRIME. GEM-based drivers must use the provided helpers functions to |
| 709 | implement the exporting and importing correctly. See <xref linkend="drm-prime-support" />. |
| 710 | Since sharing file descriptors is inherently more secure than the |
| 711 | easily guessable and global GEM names it is the preferred buffer |
| 712 | sharing mechanism. Sharing buffers through GEM names is only supported |
| 713 | for legacy userspace. Furthermore PRIME also allows cross-device |
| 714 | buffer sharing since it is based on dma-bufs. |
| 715 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 716 | </sect3> |
| 717 | <sect3 id="drm-gem-objects-mapping"> |
| 718 | <title>GEM Objects Mapping</title> |
| 719 | <para> |
| 720 | Because mapping operations are fairly heavyweight GEM favours |
| 721 | read/write-like access to buffers, implemented through driver-specific |
| 722 | ioctls, over mapping buffers to userspace. However, when random access |
| 723 | to the buffer is needed (to perform software rendering for instance), |
| 724 | direct access to the object can be more efficient. |
| 725 | </para> |
| 726 | <para> |
| 727 | The mmap system call can't be used directly to map GEM objects, as they |
| 728 | don't have their own file handle. Two alternative methods currently |
| 729 | co-exist to map GEM objects to userspace. The first method uses a |
| 730 | driver-specific ioctl to perform the mapping operation, calling |
| 731 | <function>do_mmap</function> under the hood. This is often considered |
| 732 | dubious, seems to be discouraged for new GEM-enabled drivers, and will |
| 733 | thus not be described here. |
| 734 | </para> |
| 735 | <para> |
| 736 | The second method uses the mmap system call on the DRM file handle. |
| 737 | <synopsis>void *mmap(void *addr, size_t length, int prot, int flags, int fd, |
| 738 | off_t offset);</synopsis> |
| 739 | DRM identifies the GEM object to be mapped by a fake offset passed |
| 740 | through the mmap offset argument. Prior to being mapped, a GEM object |
| 741 | must thus be associated with a fake offset. To do so, drivers must call |
| 742 | <function>drm_gem_create_mmap_offset</function> on the object. The |
| 743 | function allocates a fake offset range from a pool and stores the |
| 744 | offset divided by PAGE_SIZE in |
| 745 | <literal>obj->map_list.hash.key</literal>. Care must be taken not to |
| 746 | call <function>drm_gem_create_mmap_offset</function> if a fake offset |
| 747 | has already been allocated for the object. This can be tested by |
| 748 | <literal>obj->map_list.map</literal> being non-NULL. |
| 749 | </para> |
| 750 | <para> |
| 751 | Once allocated, the fake offset value |
| 752 | (<literal>obj->map_list.hash.key << PAGE_SHIFT</literal>) |
| 753 | must be passed to the application in a driver-specific way and can then |
| 754 | be used as the mmap offset argument. |
| 755 | </para> |
| 756 | <para> |
| 757 | The GEM core provides a helper method <function>drm_gem_mmap</function> |
| 758 | to handle object mapping. The method can be set directly as the mmap |
| 759 | file operation handler. It will look up the GEM object based on the |
| 760 | offset value and set the VMA operations to the |
| 761 | <structname>drm_driver</structname> <structfield>gem_vm_ops</structfield> |
| 762 | field. Note that <function>drm_gem_mmap</function> doesn't map memory to |
| 763 | userspace, but relies on the driver-provided fault handler to map pages |
| 764 | individually. |
| 765 | </para> |
| 766 | <para> |
| 767 | To use <function>drm_gem_mmap</function>, drivers must fill the struct |
| 768 | <structname>drm_driver</structname> <structfield>gem_vm_ops</structfield> |
| 769 | field with a pointer to VM operations. |
| 770 | </para> |
| 771 | <para> |
| 772 | <synopsis>struct vm_operations_struct *gem_vm_ops |
| 773 | |
| 774 | struct vm_operations_struct { |
| 775 | void (*open)(struct vm_area_struct * area); |
| 776 | void (*close)(struct vm_area_struct * area); |
| 777 | int (*fault)(struct vm_area_struct *vma, struct vm_fault *vmf); |
| 778 | };</synopsis> |
| 779 | </para> |
| 780 | <para> |
| 781 | The <methodname>open</methodname> and <methodname>close</methodname> |
| 782 | operations must update the GEM object reference count. Drivers can use |
| 783 | the <function>drm_gem_vm_open</function> and |
| 784 | <function>drm_gem_vm_close</function> helper functions directly as open |
| 785 | and close handlers. |
| 786 | </para> |
| 787 | <para> |
| 788 | The fault operation handler is responsible for mapping individual pages |
| 789 | to userspace when a page fault occurs. Depending on the memory |
| 790 | allocation scheme, drivers can allocate pages at fault time, or can |
| 791 | decide to allocate memory for the GEM object at the time the object is |
| 792 | created. |
| 793 | </para> |
| 794 | <para> |
| 795 | Drivers that want to map the GEM object upfront instead of handling page |
| 796 | faults can implement their own mmap file operation handler. |
| 797 | </para> |
| 798 | </sect3> |
| 799 | <sect3> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 800 | <title>Memory Coherency</title> |
| 801 | <para> |
| 802 | When mapped to the device or used in a command buffer, backing pages |
| 803 | for an object are flushed to memory and marked write combined so as to |
| 804 | be coherent with the GPU. Likewise, if the CPU accesses an object |
| 805 | after the GPU has finished rendering to the object, then the object |
| 806 | must be made coherent with the CPU's view of memory, usually involving |
| 807 | GPU cache flushing of various kinds. This core CPU<->GPU |
| 808 | coherency management is provided by a device-specific ioctl, which |
| 809 | evaluates an object's current domain and performs any necessary |
| 810 | flushing or synchronization to put the object into the desired |
| 811 | coherency domain (note that the object may be busy, i.e. an active |
| 812 | render target; in that case, setting the domain blocks the client and |
| 813 | waits for rendering to complete before performing any necessary |
| 814 | flushing operations). |
| 815 | </para> |
| 816 | </sect3> |
| 817 | <sect3> |
| 818 | <title>Command Execution</title> |
| 819 | <para> |
| 820 | Perhaps the most important GEM function for GPU devices is providing a |
| 821 | command execution interface to clients. Client programs construct |
| 822 | command buffers containing references to previously allocated memory |
| 823 | objects, and then submit them to GEM. At that point, GEM takes care to |
| 824 | bind all the objects into the GTT, execute the buffer, and provide |
| 825 | necessary synchronization between clients accessing the same buffers. |
| 826 | This often involves evicting some objects from the GTT and re-binding |
| 827 | others (a fairly expensive operation), and providing relocation |
| 828 | support which hides fixed GTT offsets from clients. Clients must take |
| 829 | care not to submit command buffers that reference more objects than |
| 830 | can fit in the GTT; otherwise, GEM will reject them and no rendering |
| 831 | will occur. Similarly, if several objects in the buffer require fence |
| 832 | registers to be allocated for correct rendering (e.g. 2D blits on |
| 833 | pre-965 chips), care must be taken not to require more fence registers |
| 834 | than are available to the client. Such resource management should be |
| 835 | abstracted from the client in libdrm. |
| 836 | </para> |
| 837 | </sect3> |
Daniel Vetter | 251261d | 2014-01-22 18:46:33 +0100 | [diff] [blame] | 838 | <sect3> |
Daniel Vetter | 89d61fc | 2014-01-21 12:39:00 +0100 | [diff] [blame] | 839 | <title>GEM Function Reference</title> |
| 840 | !Edrivers/gpu/drm/drm_gem.c |
Daniel Vetter | 251261d | 2014-01-22 18:46:33 +0100 | [diff] [blame] | 841 | </sect3> |
Daniel Vetter | 89d61fc | 2014-01-21 12:39:00 +0100 | [diff] [blame] | 842 | </sect2> |
Daniel Vetter | 4c5acf3 | 2014-01-22 12:28:42 +0100 | [diff] [blame] | 843 | <sect2> |
| 844 | <title>VMA Offset Manager</title> |
| 845 | !Pdrivers/gpu/drm/drm_vma_manager.c vma offset manager |
| 846 | !Edrivers/gpu/drm/drm_vma_manager.c |
| 847 | !Iinclude/drm/drm_vma_manager.h |
| 848 | </sect2> |
Daniel Vetter | 251261d | 2014-01-22 18:46:33 +0100 | [diff] [blame] | 849 | <sect2 id="drm-prime-support"> |
| 850 | <title>PRIME Buffer Sharing</title> |
| 851 | <para> |
| 852 | PRIME is the cross device buffer sharing framework in drm, originally |
| 853 | created for the OPTIMUS range of multi-gpu platforms. To userspace |
| 854 | PRIME buffers are dma-buf based file descriptors. |
| 855 | </para> |
| 856 | <sect3> |
| 857 | <title>Overview and Driver Interface</title> |
| 858 | <para> |
| 859 | Similar to GEM global names, PRIME file descriptors are |
| 860 | also used to share buffer objects across processes. They offer |
| 861 | additional security: as file descriptors must be explicitly sent over |
| 862 | UNIX domain sockets to be shared between applications, they can't be |
| 863 | guessed like the globally unique GEM names. |
| 864 | </para> |
| 865 | <para> |
| 866 | Drivers that support the PRIME |
| 867 | API must set the DRIVER_PRIME bit in the struct |
| 868 | <structname>drm_driver</structname> |
| 869 | <structfield>driver_features</structfield> field, and implement the |
| 870 | <methodname>prime_handle_to_fd</methodname> and |
| 871 | <methodname>prime_fd_to_handle</methodname> operations. |
| 872 | </para> |
| 873 | <para> |
| 874 | <synopsis>int (*prime_handle_to_fd)(struct drm_device *dev, |
| 875 | struct drm_file *file_priv, uint32_t handle, |
| 876 | uint32_t flags, int *prime_fd); |
| 877 | int (*prime_fd_to_handle)(struct drm_device *dev, |
| 878 | struct drm_file *file_priv, int prime_fd, |
| 879 | uint32_t *handle);</synopsis> |
| 880 | Those two operations convert a handle to a PRIME file descriptor and |
| 881 | vice versa. Drivers must use the kernel dma-buf buffer sharing framework |
| 882 | to manage the PRIME file descriptors. Similar to the mode setting |
| 883 | API PRIME is agnostic to the underlying buffer object manager, as |
| 884 | long as handles are 32bit unsinged integers. |
| 885 | </para> |
| 886 | <para> |
| 887 | While non-GEM drivers must implement the operations themselves, GEM |
| 888 | drivers must use the <function>drm_gem_prime_handle_to_fd</function> |
| 889 | and <function>drm_gem_prime_fd_to_handle</function> helper functions. |
| 890 | Those helpers rely on the driver |
| 891 | <methodname>gem_prime_export</methodname> and |
| 892 | <methodname>gem_prime_import</methodname> operations to create a dma-buf |
| 893 | instance from a GEM object (dma-buf exporter role) and to create a GEM |
| 894 | object from a dma-buf instance (dma-buf importer role). |
| 895 | </para> |
| 896 | <para> |
| 897 | <synopsis>struct dma_buf * (*gem_prime_export)(struct drm_device *dev, |
| 898 | struct drm_gem_object *obj, |
| 899 | int flags); |
| 900 | struct drm_gem_object * (*gem_prime_import)(struct drm_device *dev, |
| 901 | struct dma_buf *dma_buf);</synopsis> |
| 902 | These two operations are mandatory for GEM drivers that support |
| 903 | PRIME. |
| 904 | </para> |
| 905 | </sect3> |
| 906 | <sect3> |
Daniel Vetter | 39cc344 | 2014-01-22 19:16:30 +0100 | [diff] [blame] | 907 | <title>PRIME Helper Functions</title> |
Daniel Vetter | 251261d | 2014-01-22 18:46:33 +0100 | [diff] [blame] | 908 | !Pdrivers/gpu/drm/drm_prime.c PRIME Helpers |
| 909 | </sect3> |
| 910 | </sect2> |
Daniel Vetter | 39cc344 | 2014-01-22 19:16:30 +0100 | [diff] [blame] | 911 | <sect2> |
| 912 | <title>PRIME Function References</title> |
| 913 | !Edrivers/gpu/drm/drm_prime.c |
| 914 | </sect2> |
Daniel Vetter | 93110be | 2014-01-23 00:31:48 +0100 | [diff] [blame] | 915 | <sect2> |
| 916 | <title>DRM MM Range Allocator</title> |
| 917 | <sect3> |
| 918 | <title>Overview</title> |
| 919 | !Pdrivers/gpu/drm/drm_mm.c Overview |
| 920 | </sect3> |
| 921 | <sect3> |
| 922 | <title>LRU Scan/Eviction Support</title> |
| 923 | !Pdrivers/gpu/drm/drm_mm.c lru scan roaster |
| 924 | </sect3> |
| 925 | </sect2> |
Daniel Vetter | e18c041 | 2014-01-23 00:39:13 +0100 | [diff] [blame] | 926 | <sect2> |
| 927 | <title>DRM MM Range Allocator Function References</title> |
| 928 | !Edrivers/gpu/drm/drm_mm.c |
| 929 | !Iinclude/drm/drm_mm.h |
| 930 | </sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 931 | </sect1> |
| 932 | |
| 933 | <!-- Internals: mode setting --> |
| 934 | |
| 935 | <sect1 id="drm-mode-setting"> |
| 936 | <title>Mode Setting</title> |
| 937 | <para> |
| 938 | Drivers must initialize the mode setting core by calling |
| 939 | <function>drm_mode_config_init</function> on the DRM device. The function |
| 940 | initializes the <structname>drm_device</structname> |
| 941 | <structfield>mode_config</structfield> field and never fails. Once done, |
| 942 | mode configuration must be setup by initializing the following fields. |
| 943 | </para> |
| 944 | <itemizedlist> |
| 945 | <listitem> |
| 946 | <synopsis>int min_width, min_height; |
| 947 | int max_width, max_height;</synopsis> |
| 948 | <para> |
| 949 | Minimum and maximum width and height of the frame buffers in pixel |
| 950 | units. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 951 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 952 | </listitem> |
| 953 | <listitem> |
| 954 | <synopsis>struct drm_mode_config_funcs *funcs;</synopsis> |
| 955 | <para>Mode setting functions.</para> |
| 956 | </listitem> |
| 957 | </itemizedlist> |
| 958 | <sect2> |
Daniel Vetter | 3ec0db8 | 2014-01-23 15:06:15 +0100 | [diff] [blame] | 959 | <title>Display Modes Function Reference</title> |
Daniel Vetter | f5aabb9 | 2014-01-23 20:05:00 +0100 | [diff] [blame] | 960 | !Iinclude/drm/drm_modes.h |
Daniel Vetter | 3ec0db8 | 2014-01-23 15:06:15 +0100 | [diff] [blame] | 961 | !Edrivers/gpu/drm/drm_modes.c |
| 962 | </sect2> |
| 963 | <sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 964 | <title>Frame Buffer Creation</title> |
| 965 | <synopsis>struct drm_framebuffer *(*fb_create)(struct drm_device *dev, |
| 966 | struct drm_file *file_priv, |
| 967 | struct drm_mode_fb_cmd2 *mode_cmd);</synopsis> |
| 968 | <para> |
| 969 | Frame buffers are abstract memory objects that provide a source of |
| 970 | pixels to scanout to a CRTC. Applications explicitly request the |
| 971 | creation of frame buffers through the DRM_IOCTL_MODE_ADDFB(2) ioctls and |
| 972 | receive an opaque handle that can be passed to the KMS CRTC control, |
| 973 | plane configuration and page flip functions. |
| 974 | </para> |
| 975 | <para> |
| 976 | Frame buffers rely on the underneath memory manager for low-level memory |
| 977 | operations. When creating a frame buffer applications pass a memory |
| 978 | handle (or a list of memory handles for multi-planar formats) through |
Daniel Vetter | 065a502 | 2014-01-21 12:01:41 +0100 | [diff] [blame] | 979 | the <parameter>drm_mode_fb_cmd2</parameter> argument. For drivers using |
| 980 | GEM as their userspace buffer management interface this would be a GEM |
| 981 | handle. Drivers are however free to use their own backing storage object |
| 982 | handles, e.g. vmwgfx directly exposes special TTM handles to userspace |
| 983 | and so expects TTM handles in the create ioctl and not GEM handles. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 984 | </para> |
| 985 | <para> |
| 986 | Drivers must first validate the requested frame buffer parameters passed |
| 987 | through the mode_cmd argument. In particular this is where invalid |
| 988 | sizes, pixel formats or pitches can be caught. |
| 989 | </para> |
| 990 | <para> |
| 991 | If the parameters are deemed valid, drivers then create, initialize and |
| 992 | return an instance of struct <structname>drm_framebuffer</structname>. |
| 993 | If desired the instance can be embedded in a larger driver-specific |
Daniel Vetter | 5d7a951 | 2013-01-04 22:31:20 +0100 | [diff] [blame] | 994 | structure. Drivers must fill its <structfield>width</structfield>, |
| 995 | <structfield>height</structfield>, <structfield>pitches</structfield>, |
| 996 | <structfield>offsets</structfield>, <structfield>depth</structfield>, |
| 997 | <structfield>bits_per_pixel</structfield> and |
| 998 | <structfield>pixel_format</structfield> fields from the values passed |
| 999 | through the <parameter>drm_mode_fb_cmd2</parameter> argument. They |
| 1000 | should call the <function>drm_helper_mode_fill_fb_struct</function> |
| 1001 | helper function to do so. |
| 1002 | </para> |
| 1003 | |
| 1004 | <para> |
Daniel Vetter | 065a502 | 2014-01-21 12:01:41 +0100 | [diff] [blame] | 1005 | The initialization of the new framebuffer instance is finalized with a |
Daniel Vetter | 5d7a951 | 2013-01-04 22:31:20 +0100 | [diff] [blame] | 1006 | call to <function>drm_framebuffer_init</function> which takes a pointer |
| 1007 | to DRM frame buffer operations (struct |
| 1008 | <structname>drm_framebuffer_funcs</structname>). Note that this function |
| 1009 | publishes the framebuffer and so from this point on it can be accessed |
| 1010 | concurrently from other threads. Hence it must be the last step in the |
| 1011 | driver's framebuffer initialization sequence. Frame buffer operations |
| 1012 | are |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1013 | <itemizedlist> |
| 1014 | <listitem> |
| 1015 | <synopsis>int (*create_handle)(struct drm_framebuffer *fb, |
| 1016 | struct drm_file *file_priv, unsigned int *handle);</synopsis> |
| 1017 | <para> |
| 1018 | Create a handle to the frame buffer underlying memory object. If |
| 1019 | the frame buffer uses a multi-plane format, the handle will |
| 1020 | reference the memory object associated with the first plane. |
| 1021 | </para> |
| 1022 | <para> |
| 1023 | Drivers call <function>drm_gem_handle_create</function> to create |
| 1024 | the handle. |
| 1025 | </para> |
| 1026 | </listitem> |
| 1027 | <listitem> |
| 1028 | <synopsis>void (*destroy)(struct drm_framebuffer *framebuffer);</synopsis> |
| 1029 | <para> |
| 1030 | Destroy the frame buffer object and frees all associated |
| 1031 | resources. Drivers must call |
| 1032 | <function>drm_framebuffer_cleanup</function> to free resources |
| 1033 | allocated by the DRM core for the frame buffer object, and must |
| 1034 | make sure to unreference all memory objects associated with the |
| 1035 | frame buffer. Handles created by the |
| 1036 | <methodname>create_handle</methodname> operation are released by |
| 1037 | the DRM core. |
| 1038 | </para> |
| 1039 | </listitem> |
| 1040 | <listitem> |
| 1041 | <synopsis>int (*dirty)(struct drm_framebuffer *framebuffer, |
| 1042 | struct drm_file *file_priv, unsigned flags, unsigned color, |
| 1043 | struct drm_clip_rect *clips, unsigned num_clips);</synopsis> |
| 1044 | <para> |
| 1045 | This optional operation notifies the driver that a region of the |
| 1046 | frame buffer has changed in response to a DRM_IOCTL_MODE_DIRTYFB |
| 1047 | ioctl call. |
| 1048 | </para> |
| 1049 | </listitem> |
| 1050 | </itemizedlist> |
| 1051 | </para> |
| 1052 | <para> |
Daniel Vetter | 5d7a951 | 2013-01-04 22:31:20 +0100 | [diff] [blame] | 1053 | The lifetime of a drm framebuffer is controlled with a reference count, |
| 1054 | drivers can grab additional references with |
Daniel Vetter | 9ee984a | 2014-01-23 21:57:37 +0100 | [diff] [blame] | 1055 | <function>drm_framebuffer_reference</function>and drop them |
Daniel Vetter | 5d7a951 | 2013-01-04 22:31:20 +0100 | [diff] [blame] | 1056 | again with <function>drm_framebuffer_unreference</function>. For |
| 1057 | driver-private framebuffers for which the last reference is never |
| 1058 | dropped (e.g. for the fbdev framebuffer when the struct |
| 1059 | <structname>drm_framebuffer</structname> is embedded into the fbdev |
| 1060 | helper struct) drivers can manually clean up a framebuffer at module |
| 1061 | unload time with |
| 1062 | <function>drm_framebuffer_unregister_private</function>. |
Daniel Vetter | 9ee984a | 2014-01-23 21:57:37 +0100 | [diff] [blame] | 1063 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1064 | </sect2> |
| 1065 | <sect2> |
Daniel Vetter | 065a502 | 2014-01-21 12:01:41 +0100 | [diff] [blame] | 1066 | <title>Dumb Buffer Objects</title> |
| 1067 | <para> |
| 1068 | The KMS API doesn't standardize backing storage object creation and |
| 1069 | leaves it to driver-specific ioctls. Furthermore actually creating a |
| 1070 | buffer object even for GEM-based drivers is done through a |
| 1071 | driver-specific ioctl - GEM only has a common userspace interface for |
| 1072 | sharing and destroying objects. While not an issue for full-fledged |
| 1073 | graphics stacks that include device-specific userspace components (in |
| 1074 | libdrm for instance), this limit makes DRM-based early boot graphics |
| 1075 | unnecessarily complex. |
| 1076 | </para> |
| 1077 | <para> |
| 1078 | Dumb objects partly alleviate the problem by providing a standard |
| 1079 | API to create dumb buffers suitable for scanout, which can then be used |
| 1080 | to create KMS frame buffers. |
| 1081 | </para> |
| 1082 | <para> |
| 1083 | To support dumb objects drivers must implement the |
| 1084 | <methodname>dumb_create</methodname>, |
| 1085 | <methodname>dumb_destroy</methodname> and |
| 1086 | <methodname>dumb_map_offset</methodname> operations. |
| 1087 | </para> |
| 1088 | <itemizedlist> |
| 1089 | <listitem> |
| 1090 | <synopsis>int (*dumb_create)(struct drm_file *file_priv, struct drm_device *dev, |
| 1091 | struct drm_mode_create_dumb *args);</synopsis> |
| 1092 | <para> |
| 1093 | The <methodname>dumb_create</methodname> operation creates a driver |
| 1094 | object (GEM or TTM handle) suitable for scanout based on the |
| 1095 | width, height and depth from the struct |
| 1096 | <structname>drm_mode_create_dumb</structname> argument. It fills the |
| 1097 | argument's <structfield>handle</structfield>, |
| 1098 | <structfield>pitch</structfield> and <structfield>size</structfield> |
| 1099 | fields with a handle for the newly created object and its line |
| 1100 | pitch and size in bytes. |
| 1101 | </para> |
| 1102 | </listitem> |
| 1103 | <listitem> |
| 1104 | <synopsis>int (*dumb_destroy)(struct drm_file *file_priv, struct drm_device *dev, |
| 1105 | uint32_t handle);</synopsis> |
| 1106 | <para> |
| 1107 | The <methodname>dumb_destroy</methodname> operation destroys a dumb |
| 1108 | object created by <methodname>dumb_create</methodname>. |
| 1109 | </para> |
| 1110 | </listitem> |
| 1111 | <listitem> |
| 1112 | <synopsis>int (*dumb_map_offset)(struct drm_file *file_priv, struct drm_device *dev, |
| 1113 | uint32_t handle, uint64_t *offset);</synopsis> |
| 1114 | <para> |
| 1115 | The <methodname>dumb_map_offset</methodname> operation associates an |
| 1116 | mmap fake offset with the object given by the handle and returns |
| 1117 | it. Drivers must use the |
| 1118 | <function>drm_gem_create_mmap_offset</function> function to |
| 1119 | associate the fake offset as described in |
| 1120 | <xref linkend="drm-gem-objects-mapping"/>. |
| 1121 | </para> |
| 1122 | </listitem> |
| 1123 | </itemizedlist> |
| 1124 | <para> |
| 1125 | Note that dumb objects may not be used for gpu acceleration, as has been |
| 1126 | attempted on some ARM embedded platforms. Such drivers really must have |
| 1127 | a hardware-specific ioctl to allocate suitable buffer objects. |
| 1128 | </para> |
| 1129 | </sect2> |
| 1130 | <sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1131 | <title>Output Polling</title> |
| 1132 | <synopsis>void (*output_poll_changed)(struct drm_device *dev);</synopsis> |
| 1133 | <para> |
| 1134 | This operation notifies the driver that the status of one or more |
| 1135 | connectors has changed. Drivers that use the fb helper can just call the |
| 1136 | <function>drm_fb_helper_hotplug_event</function> function to handle this |
| 1137 | operation. |
| 1138 | </para> |
| 1139 | </sect2> |
Daniel Vetter | 5d7a951 | 2013-01-04 22:31:20 +0100 | [diff] [blame] | 1140 | <sect2> |
| 1141 | <title>Locking</title> |
| 1142 | <para> |
| 1143 | Beside some lookup structures with their own locking (which is hidden |
| 1144 | behind the interface functions) most of the modeset state is protected |
| 1145 | by the <code>dev-<mode_config.lock</code> mutex and additionally |
| 1146 | per-crtc locks to allow cursor updates, pageflips and similar operations |
| 1147 | to occur concurrently with background tasks like output detection. |
| 1148 | Operations which cross domains like a full modeset always grab all |
| 1149 | locks. Drivers there need to protect resources shared between crtcs with |
| 1150 | additional locking. They also need to be careful to always grab the |
| 1151 | relevant crtc locks if a modset functions touches crtc state, e.g. for |
| 1152 | load detection (which does only grab the <code>mode_config.lock</code> |
| 1153 | to allow concurrent screen updates on live crtcs). |
| 1154 | </para> |
| 1155 | </sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1156 | </sect1> |
| 1157 | |
| 1158 | <!-- Internals: kms initialization and cleanup --> |
| 1159 | |
| 1160 | <sect1 id="drm-kms-init"> |
| 1161 | <title>KMS Initialization and Cleanup</title> |
| 1162 | <para> |
| 1163 | A KMS device is abstracted and exposed as a set of planes, CRTCs, encoders |
| 1164 | and connectors. KMS drivers must thus create and initialize all those |
| 1165 | objects at load time after initializing mode setting. |
| 1166 | </para> |
| 1167 | <sect2> |
| 1168 | <title>CRTCs (struct <structname>drm_crtc</structname>)</title> |
| 1169 | <para> |
| 1170 | A CRTC is an abstraction representing a part of the chip that contains a |
| 1171 | pointer to a scanout buffer. Therefore, the number of CRTCs available |
| 1172 | determines how many independent scanout buffers can be active at any |
| 1173 | given time. The CRTC structure contains several fields to support this: |
| 1174 | a pointer to some video memory (abstracted as a frame buffer object), a |
| 1175 | display mode, and an (x, y) offset into the video memory to support |
| 1176 | panning or configurations where one piece of video memory spans multiple |
| 1177 | CRTCs. |
| 1178 | </para> |
| 1179 | <sect3> |
| 1180 | <title>CRTC Initialization</title> |
| 1181 | <para> |
| 1182 | A KMS device must create and register at least one struct |
| 1183 | <structname>drm_crtc</structname> instance. The instance is allocated |
| 1184 | and zeroed by the driver, possibly as part of a larger structure, and |
| 1185 | registered with a call to <function>drm_crtc_init</function> with a |
| 1186 | pointer to CRTC functions. |
| 1187 | </para> |
| 1188 | </sect3> |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 1189 | <sect3 id="drm-kms-crtcops"> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1190 | <title>CRTC Operations</title> |
| 1191 | <sect4> |
| 1192 | <title>Set Configuration</title> |
| 1193 | <synopsis>int (*set_config)(struct drm_mode_set *set);</synopsis> |
| 1194 | <para> |
| 1195 | Apply a new CRTC configuration to the device. The configuration |
| 1196 | specifies a CRTC, a frame buffer to scan out from, a (x,y) position in |
| 1197 | the frame buffer, a display mode and an array of connectors to drive |
| 1198 | with the CRTC if possible. |
| 1199 | </para> |
| 1200 | <para> |
| 1201 | If the frame buffer specified in the configuration is NULL, the driver |
| 1202 | must detach all encoders connected to the CRTC and all connectors |
| 1203 | attached to those encoders and disable them. |
| 1204 | </para> |
| 1205 | <para> |
| 1206 | This operation is called with the mode config lock held. |
| 1207 | </para> |
| 1208 | <note><para> |
Daniel Vetter | aa4cd91 | 2014-01-22 16:42:02 +0100 | [diff] [blame] | 1209 | Note that the drm core has no notion of restoring the mode setting |
| 1210 | state after resume, since all resume handling is in the full |
| 1211 | responsibility of the driver. The common mode setting helper library |
| 1212 | though provides a helper which can be used for this: |
| 1213 | <function>drm_helper_resume_force_mode</function>. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1214 | </para></note> |
| 1215 | </sect4> |
| 1216 | <sect4> |
| 1217 | <title>Page Flipping</title> |
| 1218 | <synopsis>int (*page_flip)(struct drm_crtc *crtc, struct drm_framebuffer *fb, |
| 1219 | struct drm_pending_vblank_event *event);</synopsis> |
| 1220 | <para> |
| 1221 | Schedule a page flip to the given frame buffer for the CRTC. This |
| 1222 | operation is called with the mode config mutex held. |
| 1223 | </para> |
| 1224 | <para> |
| 1225 | Page flipping is a synchronization mechanism that replaces the frame |
| 1226 | buffer being scanned out by the CRTC with a new frame buffer during |
| 1227 | vertical blanking, avoiding tearing. When an application requests a page |
| 1228 | flip the DRM core verifies that the new frame buffer is large enough to |
| 1229 | be scanned out by the CRTC in the currently configured mode and then |
| 1230 | calls the CRTC <methodname>page_flip</methodname> operation with a |
| 1231 | pointer to the new frame buffer. |
| 1232 | </para> |
| 1233 | <para> |
| 1234 | The <methodname>page_flip</methodname> operation schedules a page flip. |
Anatol Pomozov | f884ab1 | 2013-05-08 16:56:16 -0700 | [diff] [blame] | 1235 | Once any pending rendering targeting the new frame buffer has |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1236 | completed, the CRTC will be reprogrammed to display that frame buffer |
| 1237 | after the next vertical refresh. The operation must return immediately |
| 1238 | without waiting for rendering or page flip to complete and must block |
| 1239 | any new rendering to the frame buffer until the page flip completes. |
| 1240 | </para> |
| 1241 | <para> |
Thierry Reding | 8cf1e98 | 2013-02-13 16:08:33 +0100 | [diff] [blame] | 1242 | If a page flip can be successfully scheduled the driver must set the |
| 1243 | <code>drm_crtc-<fb</code> field to the new framebuffer pointed to |
| 1244 | by <code>fb</code>. This is important so that the reference counting |
| 1245 | on framebuffers stays balanced. |
| 1246 | </para> |
| 1247 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1248 | If a page flip is already pending, the |
| 1249 | <methodname>page_flip</methodname> operation must return |
| 1250 | -<errorname>EBUSY</errorname>. |
| 1251 | </para> |
| 1252 | <para> |
| 1253 | To synchronize page flip to vertical blanking the driver will likely |
| 1254 | need to enable vertical blanking interrupts. It should call |
| 1255 | <function>drm_vblank_get</function> for that purpose, and call |
| 1256 | <function>drm_vblank_put</function> after the page flip completes. |
| 1257 | </para> |
| 1258 | <para> |
| 1259 | If the application has requested to be notified when page flip completes |
| 1260 | the <methodname>page_flip</methodname> operation will be called with a |
| 1261 | non-NULL <parameter>event</parameter> argument pointing to a |
| 1262 | <structname>drm_pending_vblank_event</structname> instance. Upon page |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 1263 | flip completion the driver must call <methodname>drm_send_vblank_event</methodname> |
| 1264 | to fill in the event and send to wake up any waiting processes. |
| 1265 | This can be performed with |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1266 | <programlisting><![CDATA[ |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1267 | spin_lock_irqsave(&dev->event_lock, flags); |
Rob Clark | c6eefa1 | 2012-10-16 22:48:40 +0000 | [diff] [blame] | 1268 | ... |
| 1269 | drm_send_vblank_event(dev, pipe, event); |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1270 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 1271 | ]]></programlisting> |
| 1272 | </para> |
| 1273 | <note><para> |
| 1274 | FIXME: Could drivers that don't need to wait for rendering to complete |
| 1275 | just add the event to <literal>dev->vblank_event_list</literal> and |
| 1276 | let the DRM core handle everything, as for "normal" vertical blanking |
| 1277 | events? |
| 1278 | </para></note> |
| 1279 | <para> |
| 1280 | While waiting for the page flip to complete, the |
| 1281 | <literal>event->base.link</literal> list head can be used freely by |
| 1282 | the driver to store the pending event in a driver-specific list. |
| 1283 | </para> |
| 1284 | <para> |
| 1285 | If the file handle is closed before the event is signaled, drivers must |
| 1286 | take care to destroy the event in their |
| 1287 | <methodname>preclose</methodname> operation (and, if needed, call |
| 1288 | <function>drm_vblank_put</function>). |
| 1289 | </para> |
| 1290 | </sect4> |
| 1291 | <sect4> |
| 1292 | <title>Miscellaneous</title> |
| 1293 | <itemizedlist> |
| 1294 | <listitem> |
Laurent Pinchart | 421cda3 | 2013-06-22 16:10:30 +0200 | [diff] [blame] | 1295 | <synopsis>void (*set_property)(struct drm_crtc *crtc, |
| 1296 | struct drm_property *property, uint64_t value);</synopsis> |
| 1297 | <para> |
| 1298 | Set the value of the given CRTC property to |
| 1299 | <parameter>value</parameter>. See <xref linkend="drm-kms-properties"/> |
| 1300 | for more information about properties. |
| 1301 | </para> |
| 1302 | </listitem> |
| 1303 | <listitem> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1304 | <synopsis>void (*gamma_set)(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b, |
| 1305 | uint32_t start, uint32_t size);</synopsis> |
| 1306 | <para> |
| 1307 | Apply a gamma table to the device. The operation is optional. |
| 1308 | </para> |
| 1309 | </listitem> |
| 1310 | <listitem> |
| 1311 | <synopsis>void (*destroy)(struct drm_crtc *crtc);</synopsis> |
| 1312 | <para> |
| 1313 | Destroy the CRTC when not needed anymore. See |
| 1314 | <xref linkend="drm-kms-init"/>. |
| 1315 | </para> |
| 1316 | </listitem> |
| 1317 | </itemizedlist> |
| 1318 | </sect4> |
| 1319 | </sect3> |
| 1320 | </sect2> |
| 1321 | <sect2> |
| 1322 | <title>Planes (struct <structname>drm_plane</structname>)</title> |
| 1323 | <para> |
| 1324 | A plane represents an image source that can be blended with or overlayed |
| 1325 | on top of a CRTC during the scanout process. Planes are associated with |
| 1326 | a frame buffer to crop a portion of the image memory (source) and |
| 1327 | optionally scale it to a destination size. The result is then blended |
| 1328 | with or overlayed on top of a CRTC. |
| 1329 | </para> |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 1330 | <para> |
| 1331 | The DRM core recognizes three types of planes: |
| 1332 | <itemizedlist> |
| 1333 | <listitem> |
| 1334 | DRM_PLANE_TYPE_PRIMARY represents a "main" plane for a CRTC. Primary |
| 1335 | planes are the planes operated upon by by CRTC modesetting and flipping |
| 1336 | operations described in <xref linkend="drm-kms-crtcops"/>. |
| 1337 | </listitem> |
| 1338 | <listitem> |
| 1339 | DRM_PLANE_TYPE_CURSOR represents a "cursor" plane for a CRTC. Cursor |
| 1340 | planes are the planes operated upon by the DRM_IOCTL_MODE_CURSOR and |
| 1341 | DRM_IOCTL_MODE_CURSOR2 ioctls. |
| 1342 | </listitem> |
| 1343 | <listitem> |
| 1344 | DRM_PLANE_TYPE_OVERLAY represents all non-primary, non-cursor planes. |
| 1345 | Some drivers refer to these types of planes as "sprites" internally. |
| 1346 | </listitem> |
| 1347 | </itemizedlist> |
| 1348 | For compatibility with legacy userspace, only overlay planes are made |
| 1349 | available to userspace by default. Userspace clients may set the |
| 1350 | DRM_CLIENT_CAP_UNIVERSAL_PLANES client capability bit to indicate that |
| 1351 | they wish to receive a universal plane list containing all plane types. |
| 1352 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1353 | <sect3> |
| 1354 | <title>Plane Initialization</title> |
| 1355 | <para> |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 1356 | To create a plane, a KMS drivers allocates and |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1357 | zeroes an instances of struct <structname>drm_plane</structname> |
| 1358 | (possibly as part of a larger structure) and registers it with a call |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 1359 | to <function>drm_universal_plane_init</function>. The function takes a bitmask |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1360 | of the CRTCs that can be associated with the plane, a pointer to the |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 1361 | plane functions, a list of format supported formats, and the type of |
| 1362 | plane (primary, cursor, or overlay) being initialized. |
| 1363 | </para> |
| 1364 | <para> |
| 1365 | Cursor and overlay planes are optional. All drivers should provide |
| 1366 | one primary plane per CRTC (although this requirement may change in |
| 1367 | the future); drivers that do not wish to provide special handling for |
| 1368 | primary planes may make use of the helper functions described in |
| 1369 | <xref linkend="drm-kms-planehelpers"/> to create and register a |
| 1370 | primary plane with standard capabilities. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1371 | </para> |
| 1372 | </sect3> |
| 1373 | <sect3> |
| 1374 | <title>Plane Operations</title> |
| 1375 | <itemizedlist> |
| 1376 | <listitem> |
| 1377 | <synopsis>int (*update_plane)(struct drm_plane *plane, struct drm_crtc *crtc, |
| 1378 | struct drm_framebuffer *fb, int crtc_x, int crtc_y, |
| 1379 | unsigned int crtc_w, unsigned int crtc_h, |
| 1380 | uint32_t src_x, uint32_t src_y, |
| 1381 | uint32_t src_w, uint32_t src_h);</synopsis> |
| 1382 | <para> |
| 1383 | Enable and configure the plane to use the given CRTC and frame buffer. |
| 1384 | </para> |
| 1385 | <para> |
| 1386 | The source rectangle in frame buffer memory coordinates is given by |
| 1387 | the <parameter>src_x</parameter>, <parameter>src_y</parameter>, |
| 1388 | <parameter>src_w</parameter> and <parameter>src_h</parameter> |
| 1389 | parameters (as 16.16 fixed point values). Devices that don't support |
| 1390 | subpixel plane coordinates can ignore the fractional part. |
| 1391 | </para> |
| 1392 | <para> |
| 1393 | The destination rectangle in CRTC coordinates is given by the |
| 1394 | <parameter>crtc_x</parameter>, <parameter>crtc_y</parameter>, |
| 1395 | <parameter>crtc_w</parameter> and <parameter>crtc_h</parameter> |
| 1396 | parameters (as integer values). Devices scale the source rectangle to |
| 1397 | the destination rectangle. If scaling is not supported, and the source |
| 1398 | rectangle size doesn't match the destination rectangle size, the |
| 1399 | driver must return a -<errorname>EINVAL</errorname> error. |
| 1400 | </para> |
| 1401 | </listitem> |
| 1402 | <listitem> |
| 1403 | <synopsis>int (*disable_plane)(struct drm_plane *plane);</synopsis> |
| 1404 | <para> |
| 1405 | Disable the plane. The DRM core calls this method in response to a |
| 1406 | DRM_IOCTL_MODE_SETPLANE ioctl call with the frame buffer ID set to 0. |
| 1407 | Disabled planes must not be processed by the CRTC. |
| 1408 | </para> |
| 1409 | </listitem> |
| 1410 | <listitem> |
| 1411 | <synopsis>void (*destroy)(struct drm_plane *plane);</synopsis> |
| 1412 | <para> |
| 1413 | Destroy the plane when not needed anymore. See |
| 1414 | <xref linkend="drm-kms-init"/>. |
| 1415 | </para> |
| 1416 | </listitem> |
| 1417 | </itemizedlist> |
| 1418 | </sect3> |
| 1419 | </sect2> |
| 1420 | <sect2> |
| 1421 | <title>Encoders (struct <structname>drm_encoder</structname>)</title> |
| 1422 | <para> |
| 1423 | An encoder takes pixel data from a CRTC and converts it to a format |
| 1424 | suitable for any attached connectors. On some devices, it may be |
| 1425 | possible to have a CRTC send data to more than one encoder. In that |
| 1426 | case, both encoders would receive data from the same scanout buffer, |
| 1427 | resulting in a "cloned" display configuration across the connectors |
| 1428 | attached to each encoder. |
| 1429 | </para> |
| 1430 | <sect3> |
| 1431 | <title>Encoder Initialization</title> |
| 1432 | <para> |
| 1433 | As for CRTCs, a KMS driver must create, initialize and register at |
| 1434 | least one struct <structname>drm_encoder</structname> instance. The |
| 1435 | instance is allocated and zeroed by the driver, possibly as part of a |
| 1436 | larger structure. |
| 1437 | </para> |
| 1438 | <para> |
| 1439 | Drivers must initialize the struct <structname>drm_encoder</structname> |
| 1440 | <structfield>possible_crtcs</structfield> and |
| 1441 | <structfield>possible_clones</structfield> fields before registering the |
| 1442 | encoder. Both fields are bitmasks of respectively the CRTCs that the |
| 1443 | encoder can be connected to, and sibling encoders candidate for cloning. |
| 1444 | </para> |
| 1445 | <para> |
| 1446 | After being initialized, the encoder must be registered with a call to |
| 1447 | <function>drm_encoder_init</function>. The function takes a pointer to |
| 1448 | the encoder functions and an encoder type. Supported types are |
| 1449 | <itemizedlist> |
| 1450 | <listitem> |
| 1451 | DRM_MODE_ENCODER_DAC for VGA and analog on DVI-I/DVI-A |
| 1452 | </listitem> |
| 1453 | <listitem> |
| 1454 | DRM_MODE_ENCODER_TMDS for DVI, HDMI and (embedded) DisplayPort |
| 1455 | </listitem> |
| 1456 | <listitem> |
| 1457 | DRM_MODE_ENCODER_LVDS for display panels |
| 1458 | </listitem> |
| 1459 | <listitem> |
| 1460 | DRM_MODE_ENCODER_TVDAC for TV output (Composite, S-Video, Component, |
| 1461 | SCART) |
| 1462 | </listitem> |
| 1463 | <listitem> |
| 1464 | DRM_MODE_ENCODER_VIRTUAL for virtual machine displays |
| 1465 | </listitem> |
| 1466 | </itemizedlist> |
| 1467 | </para> |
| 1468 | <para> |
| 1469 | Encoders must be attached to a CRTC to be used. DRM drivers leave |
| 1470 | encoders unattached at initialization time. Applications (or the fbdev |
| 1471 | compatibility layer when implemented) are responsible for attaching the |
| 1472 | encoders they want to use to a CRTC. |
| 1473 | </para> |
| 1474 | </sect3> |
| 1475 | <sect3> |
| 1476 | <title>Encoder Operations</title> |
| 1477 | <itemizedlist> |
| 1478 | <listitem> |
| 1479 | <synopsis>void (*destroy)(struct drm_encoder *encoder);</synopsis> |
| 1480 | <para> |
| 1481 | Called to destroy the encoder when not needed anymore. See |
| 1482 | <xref linkend="drm-kms-init"/>. |
| 1483 | </para> |
| 1484 | </listitem> |
Laurent Pinchart | 421cda3 | 2013-06-22 16:10:30 +0200 | [diff] [blame] | 1485 | <listitem> |
| 1486 | <synopsis>void (*set_property)(struct drm_plane *plane, |
| 1487 | struct drm_property *property, uint64_t value);</synopsis> |
| 1488 | <para> |
| 1489 | Set the value of the given plane property to |
| 1490 | <parameter>value</parameter>. See <xref linkend="drm-kms-properties"/> |
| 1491 | for more information about properties. |
| 1492 | </para> |
| 1493 | </listitem> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1494 | </itemizedlist> |
| 1495 | </sect3> |
| 1496 | </sect2> |
| 1497 | <sect2> |
| 1498 | <title>Connectors (struct <structname>drm_connector</structname>)</title> |
| 1499 | <para> |
| 1500 | A connector is the final destination for pixel data on a device, and |
| 1501 | usually connects directly to an external display device like a monitor |
| 1502 | or laptop panel. A connector can only be attached to one encoder at a |
| 1503 | time. The connector is also the structure where information about the |
| 1504 | attached display is kept, so it contains fields for display data, EDID |
| 1505 | data, DPMS & connection status, and information about modes |
| 1506 | supported on the attached displays. |
| 1507 | </para> |
| 1508 | <sect3> |
| 1509 | <title>Connector Initialization</title> |
| 1510 | <para> |
| 1511 | Finally a KMS driver must create, initialize, register and attach at |
| 1512 | least one struct <structname>drm_connector</structname> instance. The |
| 1513 | instance is created as other KMS objects and initialized by setting the |
| 1514 | following fields. |
| 1515 | </para> |
| 1516 | <variablelist> |
| 1517 | <varlistentry> |
| 1518 | <term><structfield>interlace_allowed</structfield></term> |
| 1519 | <listitem><para> |
| 1520 | Whether the connector can handle interlaced modes. |
| 1521 | </para></listitem> |
| 1522 | </varlistentry> |
| 1523 | <varlistentry> |
| 1524 | <term><structfield>doublescan_allowed</structfield></term> |
| 1525 | <listitem><para> |
| 1526 | Whether the connector can handle doublescan. |
| 1527 | </para></listitem> |
| 1528 | </varlistentry> |
| 1529 | <varlistentry> |
| 1530 | <term><structfield>display_info |
| 1531 | </structfield></term> |
| 1532 | <listitem><para> |
| 1533 | Display information is filled from EDID information when a display |
| 1534 | is detected. For non hot-pluggable displays such as flat panels in |
| 1535 | embedded systems, the driver should initialize the |
| 1536 | <structfield>display_info</structfield>.<structfield>width_mm</structfield> |
| 1537 | and |
| 1538 | <structfield>display_info</structfield>.<structfield>height_mm</structfield> |
| 1539 | fields with the physical size of the display. |
| 1540 | </para></listitem> |
| 1541 | </varlistentry> |
| 1542 | <varlistentry> |
| 1543 | <term id="drm-kms-connector-polled"><structfield>polled</structfield></term> |
| 1544 | <listitem><para> |
| 1545 | Connector polling mode, a combination of |
| 1546 | <variablelist> |
| 1547 | <varlistentry> |
| 1548 | <term>DRM_CONNECTOR_POLL_HPD</term> |
| 1549 | <listitem><para> |
| 1550 | The connector generates hotplug events and doesn't need to be |
| 1551 | periodically polled. The CONNECT and DISCONNECT flags must not |
| 1552 | be set together with the HPD flag. |
| 1553 | </para></listitem> |
| 1554 | </varlistentry> |
| 1555 | <varlistentry> |
| 1556 | <term>DRM_CONNECTOR_POLL_CONNECT</term> |
| 1557 | <listitem><para> |
| 1558 | Periodically poll the connector for connection. |
| 1559 | </para></listitem> |
| 1560 | </varlistentry> |
| 1561 | <varlistentry> |
| 1562 | <term>DRM_CONNECTOR_POLL_DISCONNECT</term> |
| 1563 | <listitem><para> |
| 1564 | Periodically poll the connector for disconnection. |
| 1565 | </para></listitem> |
| 1566 | </varlistentry> |
| 1567 | </variablelist> |
| 1568 | Set to 0 for connectors that don't support connection status |
| 1569 | discovery. |
| 1570 | </para></listitem> |
| 1571 | </varlistentry> |
| 1572 | </variablelist> |
| 1573 | <para> |
| 1574 | The connector is then registered with a call to |
| 1575 | <function>drm_connector_init</function> with a pointer to the connector |
| 1576 | functions and a connector type, and exposed through sysfs with a call to |
| 1577 | <function>drm_sysfs_connector_add</function>. |
| 1578 | </para> |
| 1579 | <para> |
| 1580 | Supported connector types are |
| 1581 | <itemizedlist> |
| 1582 | <listitem>DRM_MODE_CONNECTOR_VGA</listitem> |
| 1583 | <listitem>DRM_MODE_CONNECTOR_DVII</listitem> |
| 1584 | <listitem>DRM_MODE_CONNECTOR_DVID</listitem> |
| 1585 | <listitem>DRM_MODE_CONNECTOR_DVIA</listitem> |
| 1586 | <listitem>DRM_MODE_CONNECTOR_Composite</listitem> |
| 1587 | <listitem>DRM_MODE_CONNECTOR_SVIDEO</listitem> |
| 1588 | <listitem>DRM_MODE_CONNECTOR_LVDS</listitem> |
| 1589 | <listitem>DRM_MODE_CONNECTOR_Component</listitem> |
| 1590 | <listitem>DRM_MODE_CONNECTOR_9PinDIN</listitem> |
| 1591 | <listitem>DRM_MODE_CONNECTOR_DisplayPort</listitem> |
| 1592 | <listitem>DRM_MODE_CONNECTOR_HDMIA</listitem> |
| 1593 | <listitem>DRM_MODE_CONNECTOR_HDMIB</listitem> |
| 1594 | <listitem>DRM_MODE_CONNECTOR_TV</listitem> |
| 1595 | <listitem>DRM_MODE_CONNECTOR_eDP</listitem> |
| 1596 | <listitem>DRM_MODE_CONNECTOR_VIRTUAL</listitem> |
| 1597 | </itemizedlist> |
| 1598 | </para> |
| 1599 | <para> |
| 1600 | Connectors must be attached to an encoder to be used. For devices that |
| 1601 | map connectors to encoders 1:1, the connector should be attached at |
| 1602 | initialization time with a call to |
| 1603 | <function>drm_mode_connector_attach_encoder</function>. The driver must |
| 1604 | also set the <structname>drm_connector</structname> |
| 1605 | <structfield>encoder</structfield> field to point to the attached |
| 1606 | encoder. |
| 1607 | </para> |
| 1608 | <para> |
| 1609 | Finally, drivers must initialize the connectors state change detection |
| 1610 | with a call to <function>drm_kms_helper_poll_init</function>. If at |
| 1611 | least one connector is pollable but can't generate hotplug interrupts |
| 1612 | (indicated by the DRM_CONNECTOR_POLL_CONNECT and |
| 1613 | DRM_CONNECTOR_POLL_DISCONNECT connector flags), a delayed work will |
| 1614 | automatically be queued to periodically poll for changes. Connectors |
| 1615 | that can generate hotplug interrupts must be marked with the |
| 1616 | DRM_CONNECTOR_POLL_HPD flag instead, and their interrupt handler must |
| 1617 | call <function>drm_helper_hpd_irq_event</function>. The function will |
| 1618 | queue a delayed work to check the state of all connectors, but no |
| 1619 | periodic polling will be done. |
| 1620 | </para> |
| 1621 | </sect3> |
| 1622 | <sect3> |
| 1623 | <title>Connector Operations</title> |
| 1624 | <note><para> |
| 1625 | Unless otherwise state, all operations are mandatory. |
| 1626 | </para></note> |
| 1627 | <sect4> |
| 1628 | <title>DPMS</title> |
| 1629 | <synopsis>void (*dpms)(struct drm_connector *connector, int mode);</synopsis> |
| 1630 | <para> |
| 1631 | The DPMS operation sets the power state of a connector. The mode |
| 1632 | argument is one of |
| 1633 | <itemizedlist> |
| 1634 | <listitem><para>DRM_MODE_DPMS_ON</para></listitem> |
| 1635 | <listitem><para>DRM_MODE_DPMS_STANDBY</para></listitem> |
| 1636 | <listitem><para>DRM_MODE_DPMS_SUSPEND</para></listitem> |
| 1637 | <listitem><para>DRM_MODE_DPMS_OFF</para></listitem> |
| 1638 | </itemizedlist> |
| 1639 | </para> |
| 1640 | <para> |
| 1641 | In all but DPMS_ON mode the encoder to which the connector is attached |
| 1642 | should put the display in low-power mode by driving its signals |
| 1643 | appropriately. If more than one connector is attached to the encoder |
| 1644 | care should be taken not to change the power state of other displays as |
| 1645 | a side effect. Low-power mode should be propagated to the encoders and |
| 1646 | CRTCs when all related connectors are put in low-power mode. |
| 1647 | </para> |
| 1648 | </sect4> |
| 1649 | <sect4> |
| 1650 | <title>Modes</title> |
| 1651 | <synopsis>int (*fill_modes)(struct drm_connector *connector, uint32_t max_width, |
| 1652 | uint32_t max_height);</synopsis> |
| 1653 | <para> |
| 1654 | Fill the mode list with all supported modes for the connector. If the |
| 1655 | <parameter>max_width</parameter> and <parameter>max_height</parameter> |
| 1656 | arguments are non-zero, the implementation must ignore all modes wider |
| 1657 | than <parameter>max_width</parameter> or higher than |
| 1658 | <parameter>max_height</parameter>. |
| 1659 | </para> |
| 1660 | <para> |
| 1661 | The connector must also fill in this operation its |
| 1662 | <structfield>display_info</structfield> |
| 1663 | <structfield>width_mm</structfield> and |
| 1664 | <structfield>height_mm</structfield> fields with the connected display |
| 1665 | physical size in millimeters. The fields should be set to 0 if the value |
| 1666 | isn't known or is not applicable (for instance for projector devices). |
| 1667 | </para> |
| 1668 | </sect4> |
| 1669 | <sect4> |
| 1670 | <title>Connection Status</title> |
| 1671 | <para> |
| 1672 | The connection status is updated through polling or hotplug events when |
| 1673 | supported (see <xref linkend="drm-kms-connector-polled"/>). The status |
| 1674 | value is reported to userspace through ioctls and must not be used |
| 1675 | inside the driver, as it only gets initialized by a call to |
| 1676 | <function>drm_mode_getconnector</function> from userspace. |
| 1677 | </para> |
| 1678 | <synopsis>enum drm_connector_status (*detect)(struct drm_connector *connector, |
| 1679 | bool force);</synopsis> |
| 1680 | <para> |
| 1681 | Check to see if anything is attached to the connector. The |
| 1682 | <parameter>force</parameter> parameter is set to false whilst polling or |
| 1683 | to true when checking the connector due to user request. |
| 1684 | <parameter>force</parameter> can be used by the driver to avoid |
| 1685 | expensive, destructive operations during automated probing. |
| 1686 | </para> |
| 1687 | <para> |
| 1688 | Return connector_status_connected if something is connected to the |
| 1689 | connector, connector_status_disconnected if nothing is connected and |
| 1690 | connector_status_unknown if the connection state isn't known. |
| 1691 | </para> |
| 1692 | <para> |
| 1693 | Drivers should only return connector_status_connected if the connection |
| 1694 | status has really been probed as connected. Connectors that can't detect |
| 1695 | the connection status, or failed connection status probes, should return |
| 1696 | connector_status_unknown. |
| 1697 | </para> |
| 1698 | </sect4> |
| 1699 | <sect4> |
| 1700 | <title>Miscellaneous</title> |
| 1701 | <itemizedlist> |
| 1702 | <listitem> |
Laurent Pinchart | 421cda3 | 2013-06-22 16:10:30 +0200 | [diff] [blame] | 1703 | <synopsis>void (*set_property)(struct drm_connector *connector, |
| 1704 | struct drm_property *property, uint64_t value);</synopsis> |
| 1705 | <para> |
| 1706 | Set the value of the given connector property to |
| 1707 | <parameter>value</parameter>. See <xref linkend="drm-kms-properties"/> |
| 1708 | for more information about properties. |
| 1709 | </para> |
| 1710 | </listitem> |
| 1711 | <listitem> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1712 | <synopsis>void (*destroy)(struct drm_connector *connector);</synopsis> |
| 1713 | <para> |
| 1714 | Destroy the connector when not needed anymore. See |
| 1715 | <xref linkend="drm-kms-init"/>. |
| 1716 | </para> |
| 1717 | </listitem> |
| 1718 | </itemizedlist> |
| 1719 | </sect4> |
| 1720 | </sect3> |
| 1721 | </sect2> |
| 1722 | <sect2> |
| 1723 | <title>Cleanup</title> |
| 1724 | <para> |
| 1725 | The DRM core manages its objects' lifetime. When an object is not needed |
| 1726 | anymore the core calls its destroy function, which must clean up and |
| 1727 | free every resource allocated for the object. Every |
| 1728 | <function>drm_*_init</function> call must be matched with a |
| 1729 | corresponding <function>drm_*_cleanup</function> call to cleanup CRTCs |
| 1730 | (<function>drm_crtc_cleanup</function>), planes |
| 1731 | (<function>drm_plane_cleanup</function>), encoders |
| 1732 | (<function>drm_encoder_cleanup</function>) and connectors |
| 1733 | (<function>drm_connector_cleanup</function>). Furthermore, connectors |
| 1734 | that have been added to sysfs must be removed by a call to |
| 1735 | <function>drm_sysfs_connector_remove</function> before calling |
| 1736 | <function>drm_connector_cleanup</function>. |
| 1737 | </para> |
| 1738 | <para> |
| 1739 | Connectors state change detection must be cleanup up with a call to |
| 1740 | <function>drm_kms_helper_poll_fini</function>. |
| 1741 | </para> |
| 1742 | </sect2> |
| 1743 | <sect2> |
| 1744 | <title>Output discovery and initialization example</title> |
| 1745 | <programlisting><![CDATA[ |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 1746 | void intel_crt_init(struct drm_device *dev) |
| 1747 | { |
| 1748 | struct drm_connector *connector; |
| 1749 | struct intel_output *intel_output; |
| 1750 | |
| 1751 | intel_output = kzalloc(sizeof(struct intel_output), GFP_KERNEL); |
| 1752 | if (!intel_output) |
| 1753 | return; |
| 1754 | |
| 1755 | connector = &intel_output->base; |
| 1756 | drm_connector_init(dev, &intel_output->base, |
| 1757 | &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA); |
| 1758 | |
| 1759 | drm_encoder_init(dev, &intel_output->enc, &intel_crt_enc_funcs, |
| 1760 | DRM_MODE_ENCODER_DAC); |
| 1761 | |
| 1762 | drm_mode_connector_attach_encoder(&intel_output->base, |
| 1763 | &intel_output->enc); |
| 1764 | |
| 1765 | /* Set up the DDC bus. */ |
| 1766 | intel_output->ddc_bus = intel_i2c_create(dev, GPIOA, "CRTDDC_A"); |
| 1767 | if (!intel_output->ddc_bus) { |
| 1768 | dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration " |
| 1769 | "failed.\n"); |
| 1770 | return; |
| 1771 | } |
| 1772 | |
| 1773 | intel_output->type = INTEL_OUTPUT_ANALOG; |
| 1774 | connector->interlace_allowed = 0; |
| 1775 | connector->doublescan_allowed = 0; |
| 1776 | |
| 1777 | drm_encoder_helper_add(&intel_output->enc, &intel_crt_helper_funcs); |
| 1778 | drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs); |
| 1779 | |
| 1780 | drm_sysfs_connector_add(connector); |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1781 | }]]></programlisting> |
| 1782 | <para> |
| 1783 | In the example above (taken from the i915 driver), a CRTC, connector and |
| 1784 | encoder combination is created. A device-specific i2c bus is also |
| 1785 | created for fetching EDID data and performing monitor detection. Once |
| 1786 | the process is complete, the new connector is registered with sysfs to |
| 1787 | make its properties available to applications. |
| 1788 | </para> |
| 1789 | </sect2> |
Daniel Vetter | 065a50ed | 2012-12-02 00:09:18 +0100 | [diff] [blame] | 1790 | <sect2> |
| 1791 | <title>KMS API Functions</title> |
| 1792 | !Edrivers/gpu/drm/drm_crtc.c |
| 1793 | </sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1794 | </sect1> |
| 1795 | |
Daniel Vetter | e4949f2 | 2012-11-01 14:45:15 +0100 | [diff] [blame] | 1796 | <!-- Internals: kms helper functions --> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1797 | |
| 1798 | <sect1> |
Daniel Vetter | e4949f2 | 2012-11-01 14:45:15 +0100 | [diff] [blame] | 1799 | <title>Mode Setting Helper Functions</title> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1800 | <para> |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 1801 | The plane, CRTC, encoder and connector functions provided by the drivers |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1802 | implement the DRM API. They're called by the DRM core and ioctl handlers |
| 1803 | to handle device state changes and configuration request. As implementing |
| 1804 | those functions often requires logic not specific to drivers, mid-layer |
| 1805 | helper functions are available to avoid duplicating boilerplate code. |
| 1806 | </para> |
| 1807 | <para> |
| 1808 | The DRM core contains one mid-layer implementation. The mid-layer provides |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 1809 | implementations of several plane, CRTC, encoder and connector functions |
| 1810 | (called from the top of the mid-layer) that pre-process requests and call |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1811 | lower-level functions provided by the driver (at the bottom of the |
| 1812 | mid-layer). For instance, the |
| 1813 | <function>drm_crtc_helper_set_config</function> function can be used to |
| 1814 | fill the struct <structname>drm_crtc_funcs</structname> |
| 1815 | <structfield>set_config</structfield> field. When called, it will split |
| 1816 | the <methodname>set_config</methodname> operation in smaller, simpler |
| 1817 | operations and call the driver to handle them. |
| 1818 | </para> |
| 1819 | <para> |
| 1820 | To use the mid-layer, drivers call <function>drm_crtc_helper_add</function>, |
| 1821 | <function>drm_encoder_helper_add</function> and |
| 1822 | <function>drm_connector_helper_add</function> functions to install their |
| 1823 | mid-layer bottom operations handlers, and fill the |
| 1824 | <structname>drm_crtc_funcs</structname>, |
| 1825 | <structname>drm_encoder_funcs</structname> and |
| 1826 | <structname>drm_connector_funcs</structname> structures with pointers to |
| 1827 | the mid-layer top API functions. Installing the mid-layer bottom operation |
| 1828 | handlers is best done right after registering the corresponding KMS object. |
| 1829 | </para> |
| 1830 | <para> |
| 1831 | The mid-layer is not split between CRTC, encoder and connector operations. |
| 1832 | To use it, a driver must provide bottom functions for all of the three KMS |
| 1833 | entities. |
| 1834 | </para> |
| 1835 | <sect2> |
| 1836 | <title>Helper Functions</title> |
| 1837 | <itemizedlist> |
| 1838 | <listitem> |
| 1839 | <synopsis>int drm_crtc_helper_set_config(struct drm_mode_set *set);</synopsis> |
| 1840 | <para> |
| 1841 | The <function>drm_crtc_helper_set_config</function> helper function |
| 1842 | is a CRTC <methodname>set_config</methodname> implementation. It |
| 1843 | first tries to locate the best encoder for each connector by calling |
| 1844 | the connector <methodname>best_encoder</methodname> helper |
| 1845 | operation. |
| 1846 | </para> |
| 1847 | <para> |
| 1848 | After locating the appropriate encoders, the helper function will |
| 1849 | call the <methodname>mode_fixup</methodname> encoder and CRTC helper |
| 1850 | operations to adjust the requested mode, or reject it completely in |
| 1851 | which case an error will be returned to the application. If the new |
| 1852 | configuration after mode adjustment is identical to the current |
| 1853 | configuration the helper function will return without performing any |
| 1854 | other operation. |
| 1855 | </para> |
| 1856 | <para> |
| 1857 | If the adjusted mode is identical to the current mode but changes to |
| 1858 | the frame buffer need to be applied, the |
| 1859 | <function>drm_crtc_helper_set_config</function> function will call |
| 1860 | the CRTC <methodname>mode_set_base</methodname> helper operation. If |
| 1861 | the adjusted mode differs from the current mode, or if the |
| 1862 | <methodname>mode_set_base</methodname> helper operation is not |
| 1863 | provided, the helper function performs a full mode set sequence by |
| 1864 | calling the <methodname>prepare</methodname>, |
| 1865 | <methodname>mode_set</methodname> and |
| 1866 | <methodname>commit</methodname> CRTC and encoder helper operations, |
| 1867 | in that order. |
| 1868 | </para> |
| 1869 | </listitem> |
| 1870 | <listitem> |
| 1871 | <synopsis>void drm_helper_connector_dpms(struct drm_connector *connector, int mode);</synopsis> |
| 1872 | <para> |
| 1873 | The <function>drm_helper_connector_dpms</function> helper function |
| 1874 | is a connector <methodname>dpms</methodname> implementation that |
| 1875 | tracks power state of connectors. To use the function, drivers must |
| 1876 | provide <methodname>dpms</methodname> helper operations for CRTCs |
| 1877 | and encoders to apply the DPMS state to the device. |
| 1878 | </para> |
| 1879 | <para> |
| 1880 | The mid-layer doesn't track the power state of CRTCs and encoders. |
| 1881 | The <methodname>dpms</methodname> helper operations can thus be |
| 1882 | called with a mode identical to the currently active mode. |
| 1883 | </para> |
| 1884 | </listitem> |
| 1885 | <listitem> |
| 1886 | <synopsis>int drm_helper_probe_single_connector_modes(struct drm_connector *connector, |
| 1887 | uint32_t maxX, uint32_t maxY);</synopsis> |
| 1888 | <para> |
| 1889 | The <function>drm_helper_probe_single_connector_modes</function> helper |
| 1890 | function is a connector <methodname>fill_modes</methodname> |
| 1891 | implementation that updates the connection status for the connector |
| 1892 | and then retrieves a list of modes by calling the connector |
| 1893 | <methodname>get_modes</methodname> helper operation. |
| 1894 | </para> |
| 1895 | <para> |
| 1896 | The function filters out modes larger than |
| 1897 | <parameter>max_width</parameter> and <parameter>max_height</parameter> |
Andrzej Hajda | f9b0e25 | 2014-04-02 12:29:46 +0200 | [diff] [blame] | 1898 | if specified. It then calls the optional connector |
| 1899 | <methodname>mode_valid</methodname> helper operation for each mode in |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1900 | the probed list to check whether the mode is valid for the connector. |
| 1901 | </para> |
| 1902 | </listitem> |
| 1903 | </itemizedlist> |
| 1904 | </sect2> |
| 1905 | <sect2> |
| 1906 | <title>CRTC Helper Operations</title> |
| 1907 | <itemizedlist> |
| 1908 | <listitem id="drm-helper-crtc-mode-fixup"> |
| 1909 | <synopsis>bool (*mode_fixup)(struct drm_crtc *crtc, |
| 1910 | const struct drm_display_mode *mode, |
| 1911 | struct drm_display_mode *adjusted_mode);</synopsis> |
| 1912 | <para> |
| 1913 | Let CRTCs adjust the requested mode or reject it completely. This |
| 1914 | operation returns true if the mode is accepted (possibly after being |
| 1915 | adjusted) or false if it is rejected. |
| 1916 | </para> |
| 1917 | <para> |
| 1918 | The <methodname>mode_fixup</methodname> operation should reject the |
| 1919 | mode if it can't reasonably use it. The definition of "reasonable" |
| 1920 | is currently fuzzy in this context. One possible behaviour would be |
| 1921 | to set the adjusted mode to the panel timings when a fixed-mode |
| 1922 | panel is used with hardware capable of scaling. Another behaviour |
| 1923 | would be to accept any input mode and adjust it to the closest mode |
| 1924 | supported by the hardware (FIXME: This needs to be clarified). |
| 1925 | </para> |
| 1926 | </listitem> |
| 1927 | <listitem> |
| 1928 | <synopsis>int (*mode_set_base)(struct drm_crtc *crtc, int x, int y, |
| 1929 | struct drm_framebuffer *old_fb)</synopsis> |
| 1930 | <para> |
| 1931 | Move the CRTC on the current frame buffer (stored in |
| 1932 | <literal>crtc->fb</literal>) to position (x,y). Any of the frame |
| 1933 | buffer, x position or y position may have been modified. |
| 1934 | </para> |
| 1935 | <para> |
| 1936 | This helper operation is optional. If not provided, the |
| 1937 | <function>drm_crtc_helper_set_config</function> function will fall |
| 1938 | back to the <methodname>mode_set</methodname> helper operation. |
| 1939 | </para> |
| 1940 | <note><para> |
| 1941 | FIXME: Why are x and y passed as arguments, as they can be accessed |
| 1942 | through <literal>crtc->x</literal> and |
| 1943 | <literal>crtc->y</literal>? |
| 1944 | </para></note> |
| 1945 | </listitem> |
| 1946 | <listitem> |
| 1947 | <synopsis>void (*prepare)(struct drm_crtc *crtc);</synopsis> |
| 1948 | <para> |
| 1949 | Prepare the CRTC for mode setting. This operation is called after |
| 1950 | validating the requested mode. Drivers use it to perform |
| 1951 | device-specific operations required before setting the new mode. |
| 1952 | </para> |
| 1953 | </listitem> |
| 1954 | <listitem> |
| 1955 | <synopsis>int (*mode_set)(struct drm_crtc *crtc, struct drm_display_mode *mode, |
| 1956 | struct drm_display_mode *adjusted_mode, int x, int y, |
| 1957 | struct drm_framebuffer *old_fb);</synopsis> |
| 1958 | <para> |
| 1959 | Set a new mode, position and frame buffer. Depending on the device |
| 1960 | requirements, the mode can be stored internally by the driver and |
| 1961 | applied in the <methodname>commit</methodname> operation, or |
| 1962 | programmed to the hardware immediately. |
| 1963 | </para> |
| 1964 | <para> |
| 1965 | The <methodname>mode_set</methodname> operation returns 0 on success |
| 1966 | or a negative error code if an error occurs. |
| 1967 | </para> |
| 1968 | </listitem> |
| 1969 | <listitem> |
| 1970 | <synopsis>void (*commit)(struct drm_crtc *crtc);</synopsis> |
| 1971 | <para> |
| 1972 | Commit a mode. This operation is called after setting the new mode. |
| 1973 | Upon return the device must use the new mode and be fully |
| 1974 | operational. |
| 1975 | </para> |
| 1976 | </listitem> |
| 1977 | </itemizedlist> |
| 1978 | </sect2> |
| 1979 | <sect2> |
| 1980 | <title>Encoder Helper Operations</title> |
| 1981 | <itemizedlist> |
| 1982 | <listitem> |
| 1983 | <synopsis>bool (*mode_fixup)(struct drm_encoder *encoder, |
| 1984 | const struct drm_display_mode *mode, |
| 1985 | struct drm_display_mode *adjusted_mode);</synopsis> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 1986 | <para> |
| 1987 | Let encoders adjust the requested mode or reject it completely. This |
| 1988 | operation returns true if the mode is accepted (possibly after being |
| 1989 | adjusted) or false if it is rejected. See the |
| 1990 | <link linkend="drm-helper-crtc-mode-fixup">mode_fixup CRTC helper |
| 1991 | operation</link> for an explanation of the allowed adjustments. |
| 1992 | </para> |
| 1993 | </listitem> |
| 1994 | <listitem> |
| 1995 | <synopsis>void (*prepare)(struct drm_encoder *encoder);</synopsis> |
| 1996 | <para> |
| 1997 | Prepare the encoder for mode setting. This operation is called after |
| 1998 | validating the requested mode. Drivers use it to perform |
| 1999 | device-specific operations required before setting the new mode. |
| 2000 | </para> |
| 2001 | </listitem> |
| 2002 | <listitem> |
| 2003 | <synopsis>void (*mode_set)(struct drm_encoder *encoder, |
| 2004 | struct drm_display_mode *mode, |
| 2005 | struct drm_display_mode *adjusted_mode);</synopsis> |
| 2006 | <para> |
| 2007 | Set a new mode. Depending on the device requirements, the mode can |
| 2008 | be stored internally by the driver and applied in the |
| 2009 | <methodname>commit</methodname> operation, or programmed to the |
| 2010 | hardware immediately. |
| 2011 | </para> |
| 2012 | </listitem> |
| 2013 | <listitem> |
| 2014 | <synopsis>void (*commit)(struct drm_encoder *encoder);</synopsis> |
| 2015 | <para> |
| 2016 | Commit a mode. This operation is called after setting the new mode. |
| 2017 | Upon return the device must use the new mode and be fully |
| 2018 | operational. |
| 2019 | </para> |
| 2020 | </listitem> |
| 2021 | </itemizedlist> |
| 2022 | </sect2> |
| 2023 | <sect2> |
| 2024 | <title>Connector Helper Operations</title> |
| 2025 | <itemizedlist> |
| 2026 | <listitem> |
| 2027 | <synopsis>struct drm_encoder *(*best_encoder)(struct drm_connector *connector);</synopsis> |
| 2028 | <para> |
| 2029 | Return a pointer to the best encoder for the connecter. Device that |
| 2030 | map connectors to encoders 1:1 simply return the pointer to the |
| 2031 | associated encoder. This operation is mandatory. |
| 2032 | </para> |
| 2033 | </listitem> |
| 2034 | <listitem> |
| 2035 | <synopsis>int (*get_modes)(struct drm_connector *connector);</synopsis> |
| 2036 | <para> |
| 2037 | Fill the connector's <structfield>probed_modes</structfield> list |
| 2038 | by parsing EDID data with <function>drm_add_edid_modes</function> or |
| 2039 | calling <function>drm_mode_probed_add</function> directly for every |
| 2040 | supported mode and return the number of modes it has detected. This |
| 2041 | operation is mandatory. |
| 2042 | </para> |
| 2043 | <para> |
| 2044 | When adding modes manually the driver creates each mode with a call to |
| 2045 | <function>drm_mode_create</function> and must fill the following fields. |
| 2046 | <itemizedlist> |
| 2047 | <listitem> |
| 2048 | <synopsis>__u32 type;</synopsis> |
| 2049 | <para> |
| 2050 | Mode type bitmask, a combination of |
| 2051 | <variablelist> |
| 2052 | <varlistentry> |
| 2053 | <term>DRM_MODE_TYPE_BUILTIN</term> |
| 2054 | <listitem><para>not used?</para></listitem> |
| 2055 | </varlistentry> |
| 2056 | <varlistentry> |
| 2057 | <term>DRM_MODE_TYPE_CLOCK_C</term> |
| 2058 | <listitem><para>not used?</para></listitem> |
| 2059 | </varlistentry> |
| 2060 | <varlistentry> |
| 2061 | <term>DRM_MODE_TYPE_CRTC_C</term> |
| 2062 | <listitem><para>not used?</para></listitem> |
| 2063 | </varlistentry> |
| 2064 | <varlistentry> |
| 2065 | <term> |
| 2066 | DRM_MODE_TYPE_PREFERRED - The preferred mode for the connector |
| 2067 | </term> |
| 2068 | <listitem> |
| 2069 | <para>not used?</para> |
| 2070 | </listitem> |
| 2071 | </varlistentry> |
| 2072 | <varlistentry> |
| 2073 | <term>DRM_MODE_TYPE_DEFAULT</term> |
| 2074 | <listitem><para>not used?</para></listitem> |
| 2075 | </varlistentry> |
| 2076 | <varlistentry> |
| 2077 | <term>DRM_MODE_TYPE_USERDEF</term> |
| 2078 | <listitem><para>not used?</para></listitem> |
| 2079 | </varlistentry> |
| 2080 | <varlistentry> |
| 2081 | <term>DRM_MODE_TYPE_DRIVER</term> |
| 2082 | <listitem> |
| 2083 | <para> |
| 2084 | The mode has been created by the driver (as opposed to |
| 2085 | to user-created modes). |
| 2086 | </para> |
| 2087 | </listitem> |
| 2088 | </varlistentry> |
| 2089 | </variablelist> |
| 2090 | Drivers must set the DRM_MODE_TYPE_DRIVER bit for all modes they |
| 2091 | create, and set the DRM_MODE_TYPE_PREFERRED bit for the preferred |
| 2092 | mode. |
| 2093 | </para> |
| 2094 | </listitem> |
| 2095 | <listitem> |
| 2096 | <synopsis>__u32 clock;</synopsis> |
| 2097 | <para>Pixel clock frequency in kHz unit</para> |
| 2098 | </listitem> |
| 2099 | <listitem> |
| 2100 | <synopsis>__u16 hdisplay, hsync_start, hsync_end, htotal; |
| 2101 | __u16 vdisplay, vsync_start, vsync_end, vtotal;</synopsis> |
| 2102 | <para>Horizontal and vertical timing information</para> |
| 2103 | <screen><![CDATA[ |
| 2104 | Active Front Sync Back |
| 2105 | Region Porch Porch |
| 2106 | <-----------------------><----------------><-------------><--------------> |
| 2107 | |
| 2108 | //////////////////////| |
| 2109 | ////////////////////// | |
| 2110 | ////////////////////// |.................. ................ |
| 2111 | _______________ |
| 2112 | |
| 2113 | <----- [hv]display -----> |
| 2114 | <------------- [hv]sync_start ------------> |
| 2115 | <--------------------- [hv]sync_end ---------------------> |
| 2116 | <-------------------------------- [hv]total -----------------------------> |
| 2117 | ]]></screen> |
| 2118 | </listitem> |
| 2119 | <listitem> |
| 2120 | <synopsis>__u16 hskew; |
| 2121 | __u16 vscan;</synopsis> |
| 2122 | <para>Unknown</para> |
| 2123 | </listitem> |
| 2124 | <listitem> |
| 2125 | <synopsis>__u32 flags;</synopsis> |
| 2126 | <para> |
| 2127 | Mode flags, a combination of |
| 2128 | <variablelist> |
| 2129 | <varlistentry> |
| 2130 | <term>DRM_MODE_FLAG_PHSYNC</term> |
| 2131 | <listitem><para> |
| 2132 | Horizontal sync is active high |
| 2133 | </para></listitem> |
| 2134 | </varlistentry> |
| 2135 | <varlistentry> |
| 2136 | <term>DRM_MODE_FLAG_NHSYNC</term> |
| 2137 | <listitem><para> |
| 2138 | Horizontal sync is active low |
| 2139 | </para></listitem> |
| 2140 | </varlistentry> |
| 2141 | <varlistentry> |
| 2142 | <term>DRM_MODE_FLAG_PVSYNC</term> |
| 2143 | <listitem><para> |
| 2144 | Vertical sync is active high |
| 2145 | </para></listitem> |
| 2146 | </varlistentry> |
| 2147 | <varlistentry> |
| 2148 | <term>DRM_MODE_FLAG_NVSYNC</term> |
| 2149 | <listitem><para> |
| 2150 | Vertical sync is active low |
| 2151 | </para></listitem> |
| 2152 | </varlistentry> |
| 2153 | <varlistentry> |
| 2154 | <term>DRM_MODE_FLAG_INTERLACE</term> |
| 2155 | <listitem><para> |
| 2156 | Mode is interlaced |
| 2157 | </para></listitem> |
| 2158 | </varlistentry> |
| 2159 | <varlistentry> |
| 2160 | <term>DRM_MODE_FLAG_DBLSCAN</term> |
| 2161 | <listitem><para> |
| 2162 | Mode uses doublescan |
| 2163 | </para></listitem> |
| 2164 | </varlistentry> |
| 2165 | <varlistentry> |
| 2166 | <term>DRM_MODE_FLAG_CSYNC</term> |
| 2167 | <listitem><para> |
| 2168 | Mode uses composite sync |
| 2169 | </para></listitem> |
| 2170 | </varlistentry> |
| 2171 | <varlistentry> |
| 2172 | <term>DRM_MODE_FLAG_PCSYNC</term> |
| 2173 | <listitem><para> |
| 2174 | Composite sync is active high |
| 2175 | </para></listitem> |
| 2176 | </varlistentry> |
| 2177 | <varlistentry> |
| 2178 | <term>DRM_MODE_FLAG_NCSYNC</term> |
| 2179 | <listitem><para> |
| 2180 | Composite sync is active low |
| 2181 | </para></listitem> |
| 2182 | </varlistentry> |
| 2183 | <varlistentry> |
| 2184 | <term>DRM_MODE_FLAG_HSKEW</term> |
| 2185 | <listitem><para> |
| 2186 | hskew provided (not used?) |
| 2187 | </para></listitem> |
| 2188 | </varlistentry> |
| 2189 | <varlistentry> |
| 2190 | <term>DRM_MODE_FLAG_BCAST</term> |
| 2191 | <listitem><para> |
| 2192 | not used? |
| 2193 | </para></listitem> |
| 2194 | </varlistentry> |
| 2195 | <varlistentry> |
| 2196 | <term>DRM_MODE_FLAG_PIXMUX</term> |
| 2197 | <listitem><para> |
| 2198 | not used? |
| 2199 | </para></listitem> |
| 2200 | </varlistentry> |
| 2201 | <varlistentry> |
| 2202 | <term>DRM_MODE_FLAG_DBLCLK</term> |
| 2203 | <listitem><para> |
| 2204 | not used? |
| 2205 | </para></listitem> |
| 2206 | </varlistentry> |
| 2207 | <varlistentry> |
| 2208 | <term>DRM_MODE_FLAG_CLKDIV2</term> |
| 2209 | <listitem><para> |
| 2210 | ? |
| 2211 | </para></listitem> |
| 2212 | </varlistentry> |
| 2213 | </variablelist> |
| 2214 | </para> |
| 2215 | <para> |
| 2216 | Note that modes marked with the INTERLACE or DBLSCAN flags will be |
| 2217 | filtered out by |
| 2218 | <function>drm_helper_probe_single_connector_modes</function> if |
| 2219 | the connector's <structfield>interlace_allowed</structfield> or |
| 2220 | <structfield>doublescan_allowed</structfield> field is set to 0. |
| 2221 | </para> |
| 2222 | </listitem> |
| 2223 | <listitem> |
| 2224 | <synopsis>char name[DRM_DISPLAY_MODE_LEN];</synopsis> |
| 2225 | <para> |
| 2226 | Mode name. The driver must call |
| 2227 | <function>drm_mode_set_name</function> to fill the mode name from |
| 2228 | <structfield>hdisplay</structfield>, |
| 2229 | <structfield>vdisplay</structfield> and interlace flag after |
| 2230 | filling the corresponding fields. |
| 2231 | </para> |
| 2232 | </listitem> |
| 2233 | </itemizedlist> |
| 2234 | </para> |
| 2235 | <para> |
| 2236 | The <structfield>vrefresh</structfield> value is computed by |
| 2237 | <function>drm_helper_probe_single_connector_modes</function>. |
| 2238 | </para> |
| 2239 | <para> |
| 2240 | When parsing EDID data, <function>drm_add_edid_modes</function> fill the |
| 2241 | connector <structfield>display_info</structfield> |
| 2242 | <structfield>width_mm</structfield> and |
| 2243 | <structfield>height_mm</structfield> fields. When creating modes |
| 2244 | manually the <methodname>get_modes</methodname> helper operation must |
| 2245 | set the <structfield>display_info</structfield> |
| 2246 | <structfield>width_mm</structfield> and |
| 2247 | <structfield>height_mm</structfield> fields if they haven't been set |
Daniel Vetter | 065a502 | 2014-01-21 12:01:41 +0100 | [diff] [blame] | 2248 | already (for instance at initialization time when a fixed-size panel is |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2249 | attached to the connector). The mode <structfield>width_mm</structfield> |
| 2250 | and <structfield>height_mm</structfield> fields are only used internally |
| 2251 | during EDID parsing and should not be set when creating modes manually. |
| 2252 | </para> |
| 2253 | </listitem> |
| 2254 | <listitem> |
| 2255 | <synopsis>int (*mode_valid)(struct drm_connector *connector, |
| 2256 | struct drm_display_mode *mode);</synopsis> |
| 2257 | <para> |
| 2258 | Verify whether a mode is valid for the connector. Return MODE_OK for |
| 2259 | supported modes and one of the enum drm_mode_status values (MODE_*) |
Andrzej Hajda | f9b0e25 | 2014-04-02 12:29:46 +0200 | [diff] [blame] | 2260 | for unsupported modes. This operation is optional. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2261 | </para> |
| 2262 | <para> |
| 2263 | As the mode rejection reason is currently not used beside for |
| 2264 | immediately removing the unsupported mode, an implementation can |
| 2265 | return MODE_BAD regardless of the exact reason why the mode is not |
| 2266 | valid. |
| 2267 | </para> |
| 2268 | <note><para> |
| 2269 | Note that the <methodname>mode_valid</methodname> helper operation is |
| 2270 | only called for modes detected by the device, and |
| 2271 | <emphasis>not</emphasis> for modes set by the user through the CRTC |
| 2272 | <methodname>set_config</methodname> operation. |
| 2273 | </para></note> |
| 2274 | </listitem> |
| 2275 | </itemizedlist> |
| 2276 | </sect2> |
Daniel Vetter | 0d4ed4c | 2012-11-01 14:45:16 +0100 | [diff] [blame] | 2277 | <sect2> |
| 2278 | <title>Modeset Helper Functions Reference</title> |
| 2279 | !Edrivers/gpu/drm/drm_crtc_helper.c |
| 2280 | </sect2> |
Daniel Vetter | d0ddc033 | 2012-11-01 14:45:17 +0100 | [diff] [blame] | 2281 | <sect2> |
Daniel Vetter | 8d75454 | 2014-04-10 10:51:11 +0200 | [diff] [blame] | 2282 | <title>Output Probing Helper Functions Reference</title> |
| 2283 | !Pdrivers/gpu/drm/drm_probe_helper.c output probing helper overview |
| 2284 | !Edrivers/gpu/drm/drm_probe_helper.c |
| 2285 | </sect2> |
| 2286 | <sect2> |
Daniel Vetter | d0ddc033 | 2012-11-01 14:45:17 +0100 | [diff] [blame] | 2287 | <title>fbdev Helper Functions Reference</title> |
| 2288 | !Pdrivers/gpu/drm/drm_fb_helper.c fbdev helpers |
| 2289 | !Edrivers/gpu/drm/drm_fb_helper.c |
Daniel Vetter | 207fd32 | 2013-01-20 22:13:14 +0100 | [diff] [blame] | 2290 | !Iinclude/drm/drm_fb_helper.h |
Daniel Vetter | d0ddc033 | 2012-11-01 14:45:17 +0100 | [diff] [blame] | 2291 | </sect2> |
Daniel Vetter | 28164fd | 2012-11-01 14:45:18 +0100 | [diff] [blame] | 2292 | <sect2> |
| 2293 | <title>Display Port Helper Functions Reference</title> |
| 2294 | !Pdrivers/gpu/drm/drm_dp_helper.c dp helpers |
| 2295 | !Iinclude/drm/drm_dp_helper.h |
| 2296 | !Edrivers/gpu/drm/drm_dp_helper.c |
| 2297 | </sect2> |
Thierry Reding | 5e30859 | 2013-01-14 09:00:31 +0100 | [diff] [blame] | 2298 | <sect2> |
| 2299 | <title>EDID Helper Functions Reference</title> |
| 2300 | !Edrivers/gpu/drm/drm_edid.c |
| 2301 | </sect2> |
Ville Syrjälä | 0397353 | 2013-05-08 17:16:45 +0300 | [diff] [blame] | 2302 | <sect2> |
| 2303 | <title>Rectangle Utilities Reference</title> |
| 2304 | !Pinclude/drm/drm_rect.h rect utils |
| 2305 | !Iinclude/drm/drm_rect.h |
| 2306 | !Edrivers/gpu/drm/drm_rect.c |
| 2307 | </sect2> |
David Herrmann | fe3078f | 2013-07-24 21:06:15 +0200 | [diff] [blame] | 2308 | <sect2> |
Rob Clark | cabaafc | 2013-08-07 14:41:54 -0400 | [diff] [blame] | 2309 | <title>Flip-work Helper Reference</title> |
| 2310 | !Pinclude/drm/drm_flip_work.h flip utils |
| 2311 | !Iinclude/drm/drm_flip_work.h |
| 2312 | !Edrivers/gpu/drm/drm_flip_work.c |
| 2313 | </sect2> |
Daniel Vetter | 2d123f4 | 2014-01-22 18:26:16 +0100 | [diff] [blame] | 2314 | <sect2> |
| 2315 | <title>HDMI Infoframes Helper Reference</title> |
| 2316 | <para> |
| 2317 | Strictly speaking this is not a DRM helper library but generally useable |
| 2318 | by any driver interfacing with HDMI outputs like v4l or alsa drivers. |
| 2319 | But it nicely fits into the overall topic of mode setting helper |
| 2320 | libraries and hence is also included here. |
| 2321 | </para> |
| 2322 | !Iinclude/linux/hdmi.h |
| 2323 | !Edrivers/video/hdmi.c |
| 2324 | </sect2> |
Matt Roper | 6efa1f2 | 2014-04-01 15:22:43 -0700 | [diff] [blame] | 2325 | <sect2> |
| 2326 | <title id="drm-kms-planehelpers">Plane Helper Reference</title> |
| 2327 | !Edrivers/gpu/drm/drm_plane_helper.c Plane Helpers |
| 2328 | </sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2329 | </sect1> |
| 2330 | |
Laurent Pinchart | 421cda3 | 2013-06-22 16:10:30 +0200 | [diff] [blame] | 2331 | <!-- Internals: kms properties --> |
| 2332 | |
| 2333 | <sect1 id="drm-kms-properties"> |
| 2334 | <title>KMS Properties</title> |
| 2335 | <para> |
| 2336 | Drivers may need to expose additional parameters to applications than |
| 2337 | those described in the previous sections. KMS supports attaching |
| 2338 | properties to CRTCs, connectors and planes and offers a userspace API to |
| 2339 | list, get and set the property values. |
| 2340 | </para> |
| 2341 | <para> |
| 2342 | Properties are identified by a name that uniquely defines the property |
| 2343 | purpose, and store an associated value. For all property types except blob |
| 2344 | properties the value is a 64-bit unsigned integer. |
| 2345 | </para> |
| 2346 | <para> |
| 2347 | KMS differentiates between properties and property instances. Drivers |
| 2348 | first create properties and then create and associate individual instances |
| 2349 | of those properties to objects. A property can be instantiated multiple |
| 2350 | times and associated with different objects. Values are stored in property |
| 2351 | instances, and all other property information are stored in the propery |
| 2352 | and shared between all instances of the property. |
| 2353 | </para> |
| 2354 | <para> |
| 2355 | Every property is created with a type that influences how the KMS core |
| 2356 | handles the property. Supported property types are |
| 2357 | <variablelist> |
| 2358 | <varlistentry> |
| 2359 | <term>DRM_MODE_PROP_RANGE</term> |
| 2360 | <listitem><para>Range properties report their minimum and maximum |
| 2361 | admissible values. The KMS core verifies that values set by |
| 2362 | application fit in that range.</para></listitem> |
| 2363 | </varlistentry> |
| 2364 | <varlistentry> |
| 2365 | <term>DRM_MODE_PROP_ENUM</term> |
| 2366 | <listitem><para>Enumerated properties take a numerical value that |
| 2367 | ranges from 0 to the number of enumerated values defined by the |
| 2368 | property minus one, and associate a free-formed string name to each |
| 2369 | value. Applications can retrieve the list of defined value-name pairs |
| 2370 | and use the numerical value to get and set property instance values. |
| 2371 | </para></listitem> |
| 2372 | </varlistentry> |
| 2373 | <varlistentry> |
| 2374 | <term>DRM_MODE_PROP_BITMASK</term> |
| 2375 | <listitem><para>Bitmask properties are enumeration properties that |
| 2376 | additionally restrict all enumerated values to the 0..63 range. |
| 2377 | Bitmask property instance values combine one or more of the |
| 2378 | enumerated bits defined by the property.</para></listitem> |
| 2379 | </varlistentry> |
| 2380 | <varlistentry> |
| 2381 | <term>DRM_MODE_PROP_BLOB</term> |
| 2382 | <listitem><para>Blob properties store a binary blob without any format |
| 2383 | restriction. The binary blobs are created as KMS standalone objects, |
| 2384 | and blob property instance values store the ID of their associated |
| 2385 | blob object.</para> |
| 2386 | <para>Blob properties are only used for the connector EDID property |
| 2387 | and cannot be created by drivers.</para></listitem> |
| 2388 | </varlistentry> |
| 2389 | </variablelist> |
| 2390 | </para> |
| 2391 | <para> |
| 2392 | To create a property drivers call one of the following functions depending |
| 2393 | on the property type. All property creation functions take property flags |
| 2394 | and name, as well as type-specific arguments. |
| 2395 | <itemizedlist> |
| 2396 | <listitem> |
| 2397 | <synopsis>struct drm_property *drm_property_create_range(struct drm_device *dev, int flags, |
| 2398 | const char *name, |
| 2399 | uint64_t min, uint64_t max);</synopsis> |
| 2400 | <para>Create a range property with the given minimum and maximum |
| 2401 | values.</para> |
| 2402 | </listitem> |
| 2403 | <listitem> |
| 2404 | <synopsis>struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags, |
| 2405 | const char *name, |
| 2406 | const struct drm_prop_enum_list *props, |
| 2407 | int num_values);</synopsis> |
| 2408 | <para>Create an enumerated property. The <parameter>props</parameter> |
| 2409 | argument points to an array of <parameter>num_values</parameter> |
| 2410 | value-name pairs.</para> |
| 2411 | </listitem> |
| 2412 | <listitem> |
| 2413 | <synopsis>struct drm_property *drm_property_create_bitmask(struct drm_device *dev, |
| 2414 | int flags, const char *name, |
| 2415 | const struct drm_prop_enum_list *props, |
| 2416 | int num_values);</synopsis> |
| 2417 | <para>Create a bitmask property. The <parameter>props</parameter> |
| 2418 | argument points to an array of <parameter>num_values</parameter> |
| 2419 | value-name pairs.</para> |
| 2420 | </listitem> |
| 2421 | </itemizedlist> |
| 2422 | </para> |
| 2423 | <para> |
| 2424 | Properties can additionally be created as immutable, in which case they |
| 2425 | will be read-only for applications but can be modified by the driver. To |
| 2426 | create an immutable property drivers must set the DRM_MODE_PROP_IMMUTABLE |
| 2427 | flag at property creation time. |
| 2428 | </para> |
| 2429 | <para> |
| 2430 | When no array of value-name pairs is readily available at property |
| 2431 | creation time for enumerated or range properties, drivers can create |
| 2432 | the property using the <function>drm_property_create</function> function |
| 2433 | and manually add enumeration value-name pairs by calling the |
| 2434 | <function>drm_property_add_enum</function> function. Care must be taken to |
| 2435 | properly specify the property type through the <parameter>flags</parameter> |
| 2436 | argument. |
| 2437 | </para> |
| 2438 | <para> |
| 2439 | After creating properties drivers can attach property instances to CRTC, |
| 2440 | connector and plane objects by calling the |
| 2441 | <function>drm_object_attach_property</function>. The function takes a |
| 2442 | pointer to the target object, a pointer to the previously created property |
| 2443 | and an initial instance value. |
| 2444 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2445 | </sect1> |
| 2446 | |
| 2447 | <!-- Internals: vertical blanking --> |
| 2448 | |
| 2449 | <sect1 id="drm-vertical-blank"> |
| 2450 | <title>Vertical Blanking</title> |
| 2451 | <para> |
| 2452 | Vertical blanking plays a major role in graphics rendering. To achieve |
| 2453 | tear-free display, users must synchronize page flips and/or rendering to |
| 2454 | vertical blanking. The DRM API offers ioctls to perform page flips |
| 2455 | synchronized to vertical blanking and wait for vertical blanking. |
| 2456 | </para> |
| 2457 | <para> |
| 2458 | The DRM core handles most of the vertical blanking management logic, which |
| 2459 | involves filtering out spurious interrupts, keeping race-free blanking |
| 2460 | counters, coping with counter wrap-around and resets and keeping use |
| 2461 | counts. It relies on the driver to generate vertical blanking interrupts |
| 2462 | and optionally provide a hardware vertical blanking counter. Drivers must |
| 2463 | implement the following operations. |
| 2464 | </para> |
| 2465 | <itemizedlist> |
| 2466 | <listitem> |
| 2467 | <synopsis>int (*enable_vblank) (struct drm_device *dev, int crtc); |
| 2468 | void (*disable_vblank) (struct drm_device *dev, int crtc);</synopsis> |
| 2469 | <para> |
| 2470 | Enable or disable vertical blanking interrupts for the given CRTC. |
| 2471 | </para> |
| 2472 | </listitem> |
| 2473 | <listitem> |
| 2474 | <synopsis>u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);</synopsis> |
| 2475 | <para> |
| 2476 | Retrieve the value of the vertical blanking counter for the given |
| 2477 | CRTC. If the hardware maintains a vertical blanking counter its value |
| 2478 | should be returned. Otherwise drivers can use the |
| 2479 | <function>drm_vblank_count</function> helper function to handle this |
| 2480 | operation. |
| 2481 | </para> |
| 2482 | </listitem> |
| 2483 | </itemizedlist> |
| 2484 | <para> |
| 2485 | Drivers must initialize the vertical blanking handling core with a call to |
| 2486 | <function>drm_vblank_init</function> in their |
| 2487 | <methodname>load</methodname> operation. The function will set the struct |
| 2488 | <structname>drm_device</structname> |
| 2489 | <structfield>vblank_disable_allowed</structfield> field to 0. This will |
| 2490 | keep vertical blanking interrupts enabled permanently until the first mode |
| 2491 | set operation, where <structfield>vblank_disable_allowed</structfield> is |
| 2492 | set to 1. The reason behind this is not clear. Drivers can set the field |
| 2493 | to 1 after <function>calling drm_vblank_init</function> to make vertical |
| 2494 | blanking interrupts dynamically managed from the beginning. |
| 2495 | </para> |
| 2496 | <para> |
| 2497 | Vertical blanking interrupts can be enabled by the DRM core or by drivers |
| 2498 | themselves (for instance to handle page flipping operations). The DRM core |
| 2499 | maintains a vertical blanking use count to ensure that the interrupts are |
| 2500 | not disabled while a user still needs them. To increment the use count, |
| 2501 | drivers call <function>drm_vblank_get</function>. Upon return vertical |
| 2502 | blanking interrupts are guaranteed to be enabled. |
| 2503 | </para> |
| 2504 | <para> |
| 2505 | To decrement the use count drivers call |
| 2506 | <function>drm_vblank_put</function>. Only when the use count drops to zero |
| 2507 | will the DRM core disable the vertical blanking interrupts after a delay |
| 2508 | by scheduling a timer. The delay is accessible through the vblankoffdelay |
| 2509 | module parameter or the <varname>drm_vblank_offdelay</varname> global |
| 2510 | variable and expressed in milliseconds. Its default value is 5000 ms. |
| 2511 | </para> |
| 2512 | <para> |
| 2513 | When a vertical blanking interrupt occurs drivers only need to call the |
| 2514 | <function>drm_handle_vblank</function> function to account for the |
| 2515 | interrupt. |
| 2516 | </para> |
| 2517 | <para> |
| 2518 | Resources allocated by <function>drm_vblank_init</function> must be freed |
| 2519 | with a call to <function>drm_vblank_cleanup</function> in the driver |
| 2520 | <methodname>unload</methodname> operation handler. |
| 2521 | </para> |
Daniel Vetter | f5752b3 | 2014-05-08 16:41:51 +0200 | [diff] [blame^] | 2522 | <sect2> |
| 2523 | <title>Vertical Blanking and Interrupt Handling Functions Reference</title> |
| 2524 | !Edrivers/gpu/drm/drm_irq.c |
| 2525 | </sect2> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2526 | </sect1> |
| 2527 | |
| 2528 | <!-- Internals: open/close, file operations and ioctls --> |
| 2529 | |
| 2530 | <sect1> |
| 2531 | <title>Open/Close, File Operations and IOCTLs</title> |
| 2532 | <sect2> |
| 2533 | <title>Open and Close</title> |
| 2534 | <synopsis>int (*firstopen) (struct drm_device *); |
| 2535 | void (*lastclose) (struct drm_device *); |
| 2536 | int (*open) (struct drm_device *, struct drm_file *); |
| 2537 | void (*preclose) (struct drm_device *, struct drm_file *); |
| 2538 | void (*postclose) (struct drm_device *, struct drm_file *);</synopsis> |
| 2539 | <abstract>Open and close handlers. None of those methods are mandatory. |
| 2540 | </abstract> |
| 2541 | <para> |
| 2542 | The <methodname>firstopen</methodname> method is called by the DRM core |
Daniel Vetter | 7d14bb6b | 2013-08-08 15:41:15 +0200 | [diff] [blame] | 2543 | for legacy UMS (User Mode Setting) drivers only when an application |
| 2544 | opens a device that has no other opened file handle. UMS drivers can |
| 2545 | implement it to acquire device resources. KMS drivers can't use the |
| 2546 | method and must acquire resources in the <methodname>load</methodname> |
| 2547 | method instead. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2548 | </para> |
| 2549 | <para> |
Daniel Vetter | 7d14bb6b | 2013-08-08 15:41:15 +0200 | [diff] [blame] | 2550 | Similarly the <methodname>lastclose</methodname> method is called when |
| 2551 | the last application holding a file handle opened on the device closes |
| 2552 | it, for both UMS and KMS drivers. Additionally, the method is also |
| 2553 | called at module unload time or, for hot-pluggable devices, when the |
| 2554 | device is unplugged. The <methodname>firstopen</methodname> and |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2555 | <methodname>lastclose</methodname> calls can thus be unbalanced. |
| 2556 | </para> |
| 2557 | <para> |
| 2558 | The <methodname>open</methodname> method is called every time the device |
| 2559 | is opened by an application. Drivers can allocate per-file private data |
| 2560 | in this method and store them in the struct |
| 2561 | <structname>drm_file</structname> <structfield>driver_priv</structfield> |
| 2562 | field. Note that the <methodname>open</methodname> method is called |
| 2563 | before <methodname>firstopen</methodname>. |
| 2564 | </para> |
| 2565 | <para> |
| 2566 | The close operation is split into <methodname>preclose</methodname> and |
| 2567 | <methodname>postclose</methodname> methods. Drivers must stop and |
| 2568 | cleanup all per-file operations in the <methodname>preclose</methodname> |
| 2569 | method. For instance pending vertical blanking and page flip events must |
| 2570 | be cancelled. No per-file operation is allowed on the file handle after |
| 2571 | returning from the <methodname>preclose</methodname> method. |
| 2572 | </para> |
| 2573 | <para> |
| 2574 | Finally the <methodname>postclose</methodname> method is called as the |
| 2575 | last step of the close operation, right before calling the |
| 2576 | <methodname>lastclose</methodname> method if no other open file handle |
| 2577 | exists for the device. Drivers that have allocated per-file private data |
| 2578 | in the <methodname>open</methodname> method should free it here. |
| 2579 | </para> |
| 2580 | <para> |
| 2581 | The <methodname>lastclose</methodname> method should restore CRTC and |
| 2582 | plane properties to default value, so that a subsequent open of the |
Daniel Vetter | 7d14bb6b | 2013-08-08 15:41:15 +0200 | [diff] [blame] | 2583 | device will not inherit state from the previous user. It can also be |
| 2584 | used to execute delayed power switching state changes, e.g. in |
| 2585 | conjunction with the vga-switcheroo infrastructure. Beyond that KMS |
| 2586 | drivers should not do any further cleanup. Only legacy UMS drivers might |
| 2587 | need to clean up device state so that the vga console or an independent |
| 2588 | fbdev driver could take over. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2589 | </para> |
| 2590 | </sect2> |
| 2591 | <sect2> |
| 2592 | <title>File Operations</title> |
| 2593 | <synopsis>const struct file_operations *fops</synopsis> |
| 2594 | <abstract>File operations for the DRM device node.</abstract> |
| 2595 | <para> |
| 2596 | Drivers must define the file operations structure that forms the DRM |
| 2597 | userspace API entry point, even though most of those operations are |
| 2598 | implemented in the DRM core. The <methodname>open</methodname>, |
| 2599 | <methodname>release</methodname> and <methodname>ioctl</methodname> |
| 2600 | operations are handled by |
| 2601 | <programlisting> |
| 2602 | .owner = THIS_MODULE, |
| 2603 | .open = drm_open, |
| 2604 | .release = drm_release, |
| 2605 | .unlocked_ioctl = drm_ioctl, |
| 2606 | #ifdef CONFIG_COMPAT |
| 2607 | .compat_ioctl = drm_compat_ioctl, |
| 2608 | #endif |
| 2609 | </programlisting> |
| 2610 | </para> |
| 2611 | <para> |
| 2612 | Drivers that implement private ioctls that requires 32/64bit |
| 2613 | compatibility support must provide their own |
| 2614 | <methodname>compat_ioctl</methodname> handler that processes private |
| 2615 | ioctls and calls <function>drm_compat_ioctl</function> for core ioctls. |
| 2616 | </para> |
| 2617 | <para> |
| 2618 | The <methodname>read</methodname> and <methodname>poll</methodname> |
| 2619 | operations provide support for reading DRM events and polling them. They |
| 2620 | are implemented by |
| 2621 | <programlisting> |
| 2622 | .poll = drm_poll, |
| 2623 | .read = drm_read, |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2624 | .llseek = no_llseek, |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2625 | </programlisting> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2626 | </para> |
| 2627 | <para> |
| 2628 | The memory mapping implementation varies depending on how the driver |
| 2629 | manages memory. Pre-GEM drivers will use <function>drm_mmap</function>, |
| 2630 | while GEM-aware drivers will use <function>drm_gem_mmap</function>. See |
| 2631 | <xref linkend="drm-gem"/>. |
| 2632 | <programlisting> |
| 2633 | .mmap = drm_gem_mmap, |
| 2634 | </programlisting> |
| 2635 | </para> |
| 2636 | <para> |
| 2637 | No other file operation is supported by the DRM API. |
| 2638 | </para> |
| 2639 | </sect2> |
| 2640 | <sect2> |
| 2641 | <title>IOCTLs</title> |
| 2642 | <synopsis>struct drm_ioctl_desc *ioctls; |
| 2643 | int num_ioctls;</synopsis> |
| 2644 | <abstract>Driver-specific ioctls descriptors table.</abstract> |
| 2645 | <para> |
| 2646 | Driver-specific ioctls numbers start at DRM_COMMAND_BASE. The ioctls |
| 2647 | descriptors table is indexed by the ioctl number offset from the base |
| 2648 | value. Drivers can use the DRM_IOCTL_DEF_DRV() macro to initialize the |
| 2649 | table entries. |
| 2650 | </para> |
| 2651 | <para> |
| 2652 | <programlisting>DRM_IOCTL_DEF_DRV(ioctl, func, flags)</programlisting> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2653 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2654 | <parameter>ioctl</parameter> is the ioctl name. Drivers must define |
| 2655 | the DRM_##ioctl and DRM_IOCTL_##ioctl macros to the ioctl number |
| 2656 | offset from DRM_COMMAND_BASE and the ioctl number respectively. The |
| 2657 | first macro is private to the device while the second must be exposed |
| 2658 | to userspace in a public header. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2659 | </para> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2660 | <para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2661 | <parameter>func</parameter> is a pointer to the ioctl handler function |
| 2662 | compatible with the <type>drm_ioctl_t</type> type. |
| 2663 | <programlisting>typedef int drm_ioctl_t(struct drm_device *dev, void *data, |
| 2664 | struct drm_file *file_priv);</programlisting> |
| 2665 | </para> |
| 2666 | <para> |
| 2667 | <parameter>flags</parameter> is a bitmask combination of the following |
| 2668 | values. It restricts how the ioctl is allowed to be called. |
Michael Witten | 65ffef5 | 2011-08-25 20:55:58 +0000 | [diff] [blame] | 2669 | <itemizedlist> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2670 | <listitem><para> |
| 2671 | DRM_AUTH - Only authenticated callers allowed |
| 2672 | </para></listitem> |
| 2673 | <listitem><para> |
| 2674 | DRM_MASTER - The ioctl can only be called on the master file |
| 2675 | handle |
| 2676 | </para></listitem> |
| 2677 | <listitem><para> |
| 2678 | DRM_ROOT_ONLY - Only callers with the SYSADMIN capability allowed |
| 2679 | </para></listitem> |
| 2680 | <listitem><para> |
| 2681 | DRM_CONTROL_ALLOW - The ioctl can only be called on a control |
| 2682 | device |
| 2683 | </para></listitem> |
| 2684 | <listitem><para> |
| 2685 | DRM_UNLOCKED - The ioctl handler will be called without locking |
| 2686 | the DRM global mutex |
| 2687 | </para></listitem> |
Michael Witten | 65ffef5 | 2011-08-25 20:55:58 +0000 | [diff] [blame] | 2688 | </itemizedlist> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2689 | </para> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2690 | </para> |
| 2691 | </sect2> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2692 | </sect1> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2693 | <sect1> |
Daniel Vetter | 4c6e2df | 2014-01-22 16:46:44 +0100 | [diff] [blame] | 2694 | <title>Legacy Support Code</title> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2695 | <para> |
Daniel Vetter | 4c6e2df | 2014-01-22 16:46:44 +0100 | [diff] [blame] | 2696 | The section very brievely covers some of the old legacy support code which |
| 2697 | is only used by old DRM drivers which have done a so-called shadow-attach |
| 2698 | to the underlying device instead of registering as a real driver. This |
| 2699 | also includes some of the old generic buffer mangement and command |
| 2700 | submission code. Do not use any of this in new and modern drivers. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2701 | </para> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2702 | |
Daniel Vetter | 4c6e2df | 2014-01-22 16:46:44 +0100 | [diff] [blame] | 2703 | <sect2> |
| 2704 | <title>Legacy Suspend/Resume</title> |
| 2705 | <para> |
| 2706 | The DRM core provides some suspend/resume code, but drivers wanting full |
| 2707 | suspend/resume support should provide save() and restore() functions. |
| 2708 | These are called at suspend, hibernate, or resume time, and should perform |
| 2709 | any state save or restore required by your device across suspend or |
| 2710 | hibernate states. |
| 2711 | </para> |
| 2712 | <synopsis>int (*suspend) (struct drm_device *, pm_message_t state); |
| 2713 | int (*resume) (struct drm_device *);</synopsis> |
| 2714 | <para> |
| 2715 | Those are legacy suspend and resume methods which |
| 2716 | <emphasis>only</emphasis> work with the legacy shadow-attach driver |
| 2717 | registration functions. New driver should use the power management |
| 2718 | interface provided by their bus type (usually through |
| 2719 | the struct <structname>device_driver</structname> dev_pm_ops) and set |
| 2720 | these methods to NULL. |
| 2721 | </para> |
| 2722 | </sect2> |
| 2723 | |
| 2724 | <sect2> |
| 2725 | <title>Legacy DMA Services</title> |
| 2726 | <para> |
| 2727 | This should cover how DMA mapping etc. is supported by the core. |
| 2728 | These functions are deprecated and should not be used. |
| 2729 | </para> |
| 2730 | </sect2> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2731 | </sect1> |
| 2732 | </chapter> |
| 2733 | |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2734 | <!-- TODO |
| 2735 | |
| 2736 | - Add a glossary |
| 2737 | - Document the struct_mutex catch-all lock |
| 2738 | - Document connector properties |
| 2739 | |
| 2740 | - Why is the load method optional? |
| 2741 | - What are drivers supposed to set the initial display state to, and how? |
| 2742 | Connector's DPMS states are not initialized and are thus equal to |
| 2743 | DRM_MODE_DPMS_ON. The fbcon compatibility layer calls |
| 2744 | drm_helper_disable_unused_functions(), which disables unused encoders and |
| 2745 | CRTCs, but doesn't touch the connectors' DPMS state, and |
| 2746 | drm_helper_connector_dpms() in reaction to fbdev blanking events. Do drivers |
| 2747 | that don't implement (or just don't use) fbcon compatibility need to call |
| 2748 | those functions themselves? |
| 2749 | - KMS drivers must call drm_vblank_pre_modeset() and drm_vblank_post_modeset() |
| 2750 | around mode setting. Should this be done in the DRM core? |
| 2751 | - vblank_disable_allowed is set to 1 in the first drm_vblank_post_modeset() |
| 2752 | call and never set back to 0. It seems to be safe to permanently set it to 1 |
| 2753 | in drm_vblank_init() for KMS driver, and it might be safe for UMS drivers as |
| 2754 | well. This should be investigated. |
| 2755 | - crtc and connector .save and .restore operations are only used internally in |
| 2756 | drivers, should they be removed from the core? |
| 2757 | - encoder mid-layer .save and .restore operations are only used internally in |
| 2758 | drivers, should they be removed from the core? |
| 2759 | - encoder mid-layer .detect operation is only used internally in drivers, |
| 2760 | should it be removed from the core? |
| 2761 | --> |
| 2762 | |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2763 | <!-- External interfaces --> |
| 2764 | |
| 2765 | <chapter id="drmExternals"> |
| 2766 | <title>Userland interfaces</title> |
| 2767 | <para> |
| 2768 | The DRM core exports several interfaces to applications, |
| 2769 | generally intended to be used through corresponding libdrm |
Michael Witten | a5294e0 | 2011-08-29 18:05:52 +0000 | [diff] [blame] | 2770 | wrapper functions. In addition, drivers export device-specific |
Michael Witten | 7f0925a | 2011-08-29 18:07:13 +0000 | [diff] [blame] | 2771 | interfaces for use by userspace drivers & device-aware |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2772 | applications through ioctls and sysfs files. |
| 2773 | </para> |
| 2774 | <para> |
| 2775 | External interfaces include: memory mapping, context management, |
| 2776 | DMA operations, AGP management, vblank control, fence |
| 2777 | management, memory management, and output management. |
| 2778 | </para> |
| 2779 | <para> |
Michael Witten | bcd3cfc | 2011-08-29 19:29:16 +0000 | [diff] [blame] | 2780 | Cover generic ioctls and sysfs layout here. We only need high-level |
| 2781 | info, since man pages should cover the rest. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2782 | </para> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2783 | |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 2784 | <!-- External: render nodes --> |
| 2785 | |
| 2786 | <sect1> |
| 2787 | <title>Render nodes</title> |
| 2788 | <para> |
| 2789 | DRM core provides multiple character-devices for user-space to use. |
| 2790 | Depending on which device is opened, user-space can perform a different |
| 2791 | set of operations (mainly ioctls). The primary node is always created |
Daniel Vetter | 00153ae | 2014-01-21 12:51:43 +0100 | [diff] [blame] | 2792 | and called card<num>. Additionally, a currently |
| 2793 | unused control node, called controlD<num> is also |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 2794 | created. The primary node provides all legacy operations and |
| 2795 | historically was the only interface used by userspace. With KMS, the |
| 2796 | control node was introduced. However, the planned KMS control interface |
| 2797 | has never been written and so the control node stays unused to date. |
| 2798 | </para> |
| 2799 | <para> |
| 2800 | With the increased use of offscreen renderers and GPGPU applications, |
| 2801 | clients no longer require running compositors or graphics servers to |
| 2802 | make use of a GPU. But the DRM API required unprivileged clients to |
| 2803 | authenticate to a DRM-Master prior to getting GPU access. To avoid this |
| 2804 | step and to grant clients GPU access without authenticating, render |
| 2805 | nodes were introduced. Render nodes solely serve render clients, that |
| 2806 | is, no modesetting or privileged ioctls can be issued on render nodes. |
| 2807 | Only non-global rendering commands are allowed. If a driver supports |
Daniel Vetter | 00153ae | 2014-01-21 12:51:43 +0100 | [diff] [blame] | 2808 | render nodes, it must advertise it via the DRIVER_RENDER |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 2809 | DRM driver capability. If not supported, the primary node must be used |
| 2810 | for render clients together with the legacy drmAuth authentication |
| 2811 | procedure. |
| 2812 | </para> |
| 2813 | <para> |
| 2814 | If a driver advertises render node support, DRM core will create a |
Daniel Vetter | 00153ae | 2014-01-21 12:51:43 +0100 | [diff] [blame] | 2815 | separate render node called renderD<num>. There will |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 2816 | be one render node per device. No ioctls except PRIME-related ioctls |
Daniel Vetter | 00153ae | 2014-01-21 12:51:43 +0100 | [diff] [blame] | 2817 | will be allowed on this node. Especially GEM_OPEN will be |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 2818 | explicitly prohibited. Render nodes are designed to avoid the |
| 2819 | buffer-leaks, which occur if clients guess the flink names or mmap |
| 2820 | offsets on the legacy interface. Additionally to this basic interface, |
| 2821 | drivers must mark their driver-dependent render-only ioctls as |
Daniel Vetter | 00153ae | 2014-01-21 12:51:43 +0100 | [diff] [blame] | 2822 | DRM_RENDER_ALLOW so render clients can use them. Driver |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 2823 | authors must be careful not to allow any privileged ioctls on render |
| 2824 | nodes. |
| 2825 | </para> |
| 2826 | <para> |
| 2827 | With render nodes, user-space can now control access to the render node |
| 2828 | via basic file-system access-modes. A running graphics server which |
| 2829 | authenticates clients on the privileged primary/legacy node is no longer |
| 2830 | required. Instead, a client can open the render node and is immediately |
| 2831 | granted GPU access. Communication between clients (or servers) is done |
| 2832 | via PRIME. FLINK from render node to legacy node is not supported. New |
| 2833 | clients must not use the insecure FLINK interface. |
| 2834 | </para> |
| 2835 | <para> |
| 2836 | Besides dropping all modeset/global ioctls, render nodes also drop the |
| 2837 | DRM-Master concept. There is no reason to associate render clients with |
| 2838 | a DRM-Master as they are independent of any graphics server. Besides, |
| 2839 | they must work without any running master, anyway. |
| 2840 | Drivers must be able to run without a master object if they support |
| 2841 | render nodes. If, on the other hand, a driver requires shared state |
| 2842 | between clients which is visible to user-space and accessible beyond |
| 2843 | open-file boundaries, they cannot support render nodes. |
| 2844 | </para> |
| 2845 | </sect1> |
| 2846 | |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2847 | <!-- External: vblank handling --> |
| 2848 | |
| 2849 | <sect1> |
| 2850 | <title>VBlank event handling</title> |
| 2851 | <para> |
| 2852 | The DRM core exposes two vertical blank related ioctls: |
| 2853 | <variablelist> |
| 2854 | <varlistentry> |
| 2855 | <term>DRM_IOCTL_WAIT_VBLANK</term> |
| 2856 | <listitem> |
| 2857 | <para> |
| 2858 | This takes a struct drm_wait_vblank structure as its argument, |
| 2859 | and it is used to block or request a signal when a specified |
| 2860 | vblank event occurs. |
| 2861 | </para> |
| 2862 | </listitem> |
| 2863 | </varlistentry> |
| 2864 | <varlistentry> |
| 2865 | <term>DRM_IOCTL_MODESET_CTL</term> |
| 2866 | <listitem> |
| 2867 | <para> |
Daniel Vetter | 8edffbb | 2014-05-08 15:39:19 +0200 | [diff] [blame] | 2868 | This was only used for user-mode-settind drivers around |
| 2869 | modesetting changes to allow the kernel to update the vblank |
| 2870 | interrupt after mode setting, since on many devices the vertical |
| 2871 | blank counter is reset to 0 at some point during modeset. Modern |
| 2872 | drivers should not call this any more since with kernel mode |
| 2873 | setting it is a no-op. |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2874 | </para> |
| 2875 | </listitem> |
| 2876 | </varlistentry> |
| 2877 | </variablelist> |
Laurent Pinchart | 9cad9c9 | 2012-07-13 00:57:26 +0200 | [diff] [blame] | 2878 | </para> |
| 2879 | </sect1> |
| 2880 | |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2881 | </chapter> |
Daniel Vetter | 3519f70 | 2014-01-22 12:21:16 +0100 | [diff] [blame] | 2882 | </part> |
| 2883 | <part id="drmDrivers"> |
| 2884 | <title>DRM Drivers</title> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2885 | |
Daniel Vetter | 3519f70 | 2014-01-22 12:21:16 +0100 | [diff] [blame] | 2886 | <partintro> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2887 | <para> |
Daniel Vetter | 3519f70 | 2014-01-22 12:21:16 +0100 | [diff] [blame] | 2888 | This second part of the DRM Developer's Guide documents driver code, |
| 2889 | implementation details and also all the driver-specific userspace |
| 2890 | interfaces. Especially since all hardware-acceleration interfaces to |
| 2891 | userspace are driver specific for efficiency and other reasons these |
| 2892 | interfaces can be rather substantial. Hence every driver has its own |
| 2893 | chapter. |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2894 | </para> |
Daniel Vetter | 3519f70 | 2014-01-22 12:21:16 +0100 | [diff] [blame] | 2895 | </partintro> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2896 | |
Daniel Vetter | 3519f70 | 2014-01-22 12:21:16 +0100 | [diff] [blame] | 2897 | <chapter id="drmI915"> |
| 2898 | <title>drm/i915 Intel GFX Driver</title> |
| 2899 | <para> |
| 2900 | The drm/i915 driver supports all (with the exception of some very early |
| 2901 | models) integrated GFX chipsets with both Intel display and rendering |
| 2902 | blocks. This excludes a set of SoC platforms with an SGX rendering unit, |
| 2903 | those have basic support through the gma500 drm driver. |
| 2904 | </para> |
| 2905 | <sect1> |
| 2906 | <title>Display Hardware Handling</title> |
| 2907 | <para> |
| 2908 | This section covers everything related to the display hardware including |
| 2909 | the mode setting infrastructure, plane, sprite and cursor handling and |
| 2910 | display, output probing and related topics. |
| 2911 | </para> |
| 2912 | <sect2> |
| 2913 | <title>Mode Setting Infrastructure</title> |
| 2914 | <para> |
| 2915 | The i915 driver is thus far the only DRM driver which doesn't use the |
| 2916 | common DRM helper code to implement mode setting sequences. Thus it |
| 2917 | has its own tailor-made infrastructure for executing a display |
| 2918 | configuration change. |
| 2919 | </para> |
| 2920 | </sect2> |
| 2921 | <sect2> |
| 2922 | <title>Plane Configuration</title> |
| 2923 | <para> |
| 2924 | This section covers plane configuration and composition with the |
| 2925 | primary plane, sprites, cursors and overlays. This includes the |
| 2926 | infrastructure to do atomic vsync'ed updates of all this state and |
| 2927 | also tightly coupled topics like watermark setup and computation, |
| 2928 | framebuffer compression and panel self refresh. |
| 2929 | </para> |
| 2930 | </sect2> |
| 2931 | <sect2> |
| 2932 | <title>Output Probing</title> |
| 2933 | <para> |
| 2934 | This section covers output probing and related infrastructure like the |
| 2935 | hotplug interrupt storm detection and mitigation code. Note that the |
| 2936 | i915 driver still uses most of the common DRM helper code for output |
| 2937 | probing, so those sections fully apply. |
| 2938 | </para> |
| 2939 | </sect2> |
| 2940 | </sect1> |
| 2941 | |
| 2942 | <sect1> |
| 2943 | <title>Memory Management and Command Submission</title> |
| 2944 | <para> |
| 2945 | This sections covers all things related to the GEM implementation in the |
| 2946 | i915 driver. |
| 2947 | </para> |
Daniel Vetter | 122b250 | 2014-04-25 16:59:00 +0200 | [diff] [blame] | 2948 | <sect2> |
| 2949 | <title>Batchbuffer Parsing</title> |
| 2950 | !Pdrivers/gpu/drm/i915/i915_cmd_parser.c batch buffer command parser |
| 2951 | !Idrivers/gpu/drm/i915/i915_cmd_parser.c |
| 2952 | </sect2> |
Daniel Vetter | 3519f70 | 2014-01-22 12:21:16 +0100 | [diff] [blame] | 2953 | </sect1> |
| 2954 | </chapter> |
| 2955 | </part> |
Jesse Barnes | 2d2ef82 | 2009-10-26 13:06:31 -0700 | [diff] [blame] | 2956 | </book> |