Pekka Paalanen | cfb9b89 | 2020-07-07 14:38:05 +0300 | [diff] [blame] | 1 | .. Copyright 2020 DisplayLink (UK) Ltd. |
| 2 | |
Jani Nikula | 2255402 | 2016-06-21 14:49:00 +0300 | [diff] [blame] | 3 | =================== |
Jani Nikula | ca00c2b | 2016-06-21 14:48:58 +0300 | [diff] [blame] | 4 | Userland interfaces |
| 5 | =================== |
| 6 | |
| 7 | The DRM core exports several interfaces to applications, generally |
| 8 | intended to be used through corresponding libdrm wrapper functions. In |
| 9 | addition, drivers export device-specific interfaces for use by userspace |
| 10 | drivers & device-aware applications through ioctls and sysfs files. |
| 11 | |
| 12 | External interfaces include: memory mapping, context management, DMA |
| 13 | operations, AGP management, vblank control, fence management, memory |
| 14 | management, and output management. |
| 15 | |
| 16 | Cover generic ioctls and sysfs layout here. We only need high-level |
| 17 | info, since man pages should cover the rest. |
| 18 | |
Daniel Vetter | a325725 | 2016-06-21 14:08:33 +0200 | [diff] [blame] | 19 | libdrm Device Lookup |
| 20 | ==================== |
| 21 | |
| 22 | .. kernel-doc:: drivers/gpu/drm/drm_ioctl.c |
| 23 | :doc: getunique and setversion story |
| 24 | |
Daniel Vetter | 3b96a0b | 2016-06-21 10:54:22 +0200 | [diff] [blame] | 25 | |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 26 | .. _drm_primary_node: |
| 27 | |
Daniel Vetter | 3b96a0b | 2016-06-21 10:54:22 +0200 | [diff] [blame] | 28 | Primary Nodes, DRM Master and Authentication |
| 29 | ============================================ |
| 30 | |
| 31 | .. kernel-doc:: drivers/gpu/drm/drm_auth.c |
| 32 | :doc: master and authentication |
| 33 | |
| 34 | .. kernel-doc:: drivers/gpu/drm/drm_auth.c |
| 35 | :export: |
| 36 | |
| 37 | .. kernel-doc:: include/drm/drm_auth.h |
| 38 | :internal: |
| 39 | |
Desmond Cheong Zhi Xi | d793b8f | 2021-07-28 18:27:39 +0800 | [diff] [blame] | 40 | |
| 41 | .. _drm_leasing: |
| 42 | |
| 43 | DRM Display Resource Leasing |
| 44 | ============================ |
| 45 | |
| 46 | .. kernel-doc:: drivers/gpu/drm/drm_lease.c |
| 47 | :doc: drm leasing |
| 48 | |
Daniel Vetter | bcb32b6 | 2016-08-12 22:48:38 +0200 | [diff] [blame] | 49 | Open-Source Userspace Requirements |
| 50 | ================================== |
| 51 | |
Daniel Vetter | 0d42204 | 2016-08-23 14:54:48 +0200 | [diff] [blame] | 52 | The DRM subsystem has stricter requirements than most other kernel subsystems on |
| 53 | what the userspace side for new uAPI needs to look like. This section here |
| 54 | explains what exactly those requirements are, and why they exist. |
| 55 | |
| 56 | The short summary is that any addition of DRM uAPI requires corresponding |
| 57 | open-sourced userspace patches, and those patches must be reviewed and ready for |
| 58 | merging into a suitable and canonical upstream project. |
| 59 | |
| 60 | GFX devices (both display and render/GPU side) are really complex bits of |
| 61 | hardware, with userspace and kernel by necessity having to work together really |
| 62 | closely. The interfaces, for rendering and modesetting, must be extremely wide |
| 63 | and flexible, and therefore it is almost always impossible to precisely define |
| 64 | them for every possible corner case. This in turn makes it really practically |
| 65 | infeasible to differentiate between behaviour that's required by userspace, and |
| 66 | which must not be changed to avoid regressions, and behaviour which is only an |
| 67 | accidental artifact of the current implementation. |
| 68 | |
| 69 | Without access to the full source code of all userspace users that means it |
| 70 | becomes impossible to change the implementation details, since userspace could |
| 71 | depend upon the accidental behaviour of the current implementation in minute |
| 72 | details. And debugging such regressions without access to source code is pretty |
| 73 | much impossible. As a consequence this means: |
| 74 | |
| 75 | - The Linux kernel's "no regression" policy holds in practice only for |
| 76 | open-source userspace of the DRM subsystem. DRM developers are perfectly fine |
| 77 | if closed-source blob drivers in userspace use the same uAPI as the open |
| 78 | drivers, but they must do so in the exact same way as the open drivers. |
| 79 | Creative (ab)use of the interfaces will, and in the past routinely has, lead |
| 80 | to breakage. |
| 81 | |
| 82 | - Any new userspace interface must have an open-source implementation as |
| 83 | demonstration vehicle. |
| 84 | |
| 85 | The other reason for requiring open-source userspace is uAPI review. Since the |
| 86 | kernel and userspace parts of a GFX stack must work together so closely, code |
| 87 | review can only assess whether a new interface achieves its goals by looking at |
| 88 | both sides. Making sure that the interface indeed covers the use-case fully |
| 89 | leads to a few additional requirements: |
| 90 | |
| 91 | - The open-source userspace must not be a toy/test application, but the real |
| 92 | thing. Specifically it needs to handle all the usual error and corner cases. |
| 93 | These are often the places where new uAPI falls apart and hence essential to |
| 94 | assess the fitness of a proposed interface. |
| 95 | |
| 96 | - The userspace side must be fully reviewed and tested to the standards of that |
| 97 | userspace project. For e.g. mesa this means piglit testcases and review on the |
| 98 | mailing list. This is again to ensure that the new interface actually gets the |
Daniel Vetter | e33df4c | 2019-05-21 10:48:49 +0200 | [diff] [blame] | 99 | job done. The userspace-side reviewer should also provide an Acked-by on the |
| 100 | kernel uAPI patch indicating that they believe the proposed uAPI is sound and |
| 101 | sufficiently documented and validated for userspace's consumption. |
Daniel Vetter | 0d42204 | 2016-08-23 14:54:48 +0200 | [diff] [blame] | 102 | |
| 103 | - The userspace patches must be against the canonical upstream, not some vendor |
| 104 | fork. This is to make sure that no one cheats on the review and testing |
| 105 | requirements by doing a quick fork. |
| 106 | |
| 107 | - The kernel patch can only be merged after all the above requirements are met, |
Eric Anholt | 3d42fca | 2019-04-24 15:06:38 -0700 | [diff] [blame] | 108 | but it **must** be merged to either drm-next or drm-misc-next **before** the |
| 109 | userspace patches land. uAPI always flows from the kernel, doing things the |
| 110 | other way round risks divergence of the uAPI definitions and header files. |
Daniel Vetter | 0d42204 | 2016-08-23 14:54:48 +0200 | [diff] [blame] | 111 | |
| 112 | These are fairly steep requirements, but have grown out from years of shared |
| 113 | pain and experience with uAPI added hastily, and almost always regretted about |
| 114 | just as fast. GFX devices change really fast, requiring a paradigm shift and |
| 115 | entire new set of uAPI interfaces every few years at least. Together with the |
| 116 | Linux kernel's guarantee to keep existing userspace running for 10+ years this |
| 117 | is already rather painful for the DRM subsystem, with multiple different uAPIs |
| 118 | for the same thing co-existing. If we add a few more complete mistakes into the |
| 119 | mix every year it would be entirely unmanageable. |
| 120 | |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 121 | .. _drm_render_node: |
| 122 | |
Jani Nikula | ca00c2b | 2016-06-21 14:48:58 +0300 | [diff] [blame] | 123 | Render nodes |
Jani Nikula | 2255402 | 2016-06-21 14:49:00 +0300 | [diff] [blame] | 124 | ============ |
Jani Nikula | ca00c2b | 2016-06-21 14:48:58 +0300 | [diff] [blame] | 125 | |
| 126 | DRM core provides multiple character-devices for user-space to use. |
| 127 | Depending on which device is opened, user-space can perform a different |
| 128 | set of operations (mainly ioctls). The primary node is always created |
| 129 | and called card<num>. Additionally, a currently unused control node, |
| 130 | called controlD<num> is also created. The primary node provides all |
| 131 | legacy operations and historically was the only interface used by |
| 132 | userspace. With KMS, the control node was introduced. However, the |
| 133 | planned KMS control interface has never been written and so the control |
| 134 | node stays unused to date. |
| 135 | |
| 136 | With the increased use of offscreen renderers and GPGPU applications, |
| 137 | clients no longer require running compositors or graphics servers to |
| 138 | make use of a GPU. But the DRM API required unprivileged clients to |
| 139 | authenticate to a DRM-Master prior to getting GPU access. To avoid this |
| 140 | step and to grant clients GPU access without authenticating, render |
| 141 | nodes were introduced. Render nodes solely serve render clients, that |
| 142 | is, no modesetting or privileged ioctls can be issued on render nodes. |
| 143 | Only non-global rendering commands are allowed. If a driver supports |
| 144 | render nodes, it must advertise it via the DRIVER_RENDER DRM driver |
| 145 | capability. If not supported, the primary node must be used for render |
| 146 | clients together with the legacy drmAuth authentication procedure. |
| 147 | |
| 148 | If a driver advertises render node support, DRM core will create a |
| 149 | separate render node called renderD<num>. There will be one render node |
| 150 | per device. No ioctls except PRIME-related ioctls will be allowed on |
| 151 | this node. Especially GEM_OPEN will be explicitly prohibited. Render |
| 152 | nodes are designed to avoid the buffer-leaks, which occur if clients |
| 153 | guess the flink names or mmap offsets on the legacy interface. |
| 154 | Additionally to this basic interface, drivers must mark their |
| 155 | driver-dependent render-only ioctls as DRM_RENDER_ALLOW so render |
| 156 | clients can use them. Driver authors must be careful not to allow any |
| 157 | privileged ioctls on render nodes. |
| 158 | |
| 159 | With render nodes, user-space can now control access to the render node |
| 160 | via basic file-system access-modes. A running graphics server which |
| 161 | authenticates clients on the privileged primary/legacy node is no longer |
| 162 | required. Instead, a client can open the render node and is immediately |
| 163 | granted GPU access. Communication between clients (or servers) is done |
| 164 | via PRIME. FLINK from render node to legacy node is not supported. New |
| 165 | clients must not use the insecure FLINK interface. |
| 166 | |
| 167 | Besides dropping all modeset/global ioctls, render nodes also drop the |
| 168 | DRM-Master concept. There is no reason to associate render clients with |
| 169 | a DRM-Master as they are independent of any graphics server. Besides, |
| 170 | they must work without any running master, anyway. Drivers must be able |
| 171 | to run without a master object if they support render nodes. If, on the |
| 172 | other hand, a driver requires shared state between clients which is |
| 173 | visible to user-space and accessible beyond open-file boundaries, they |
| 174 | cannot support render nodes. |
| 175 | |
Pekka Paalanen | cfb9b89 | 2020-07-07 14:38:05 +0300 | [diff] [blame] | 176 | Device Hot-Unplug |
| 177 | ================= |
| 178 | |
| 179 | .. note:: |
| 180 | The following is the plan. Implementation is not there yet |
| 181 | (2020 May). |
| 182 | |
| 183 | Graphics devices (display and/or render) may be connected via USB (e.g. |
| 184 | display adapters or docking stations) or Thunderbolt (e.g. eGPU). An end |
| 185 | user is able to hot-unplug this kind of devices while they are being |
| 186 | used, and expects that the very least the machine does not crash. Any |
| 187 | damage from hot-unplugging a DRM device needs to be limited as much as |
| 188 | possible and userspace must be given the chance to handle it if it wants |
| 189 | to. Ideally, unplugging a DRM device still lets a desktop continue to |
| 190 | run, but that is going to need explicit support throughout the whole |
| 191 | graphics stack: from kernel and userspace drivers, through display |
| 192 | servers, via window system protocols, and in applications and libraries. |
| 193 | |
| 194 | Other scenarios that should lead to the same are: unrecoverable GPU |
| 195 | crash, PCI device disappearing off the bus, or forced unbind of a driver |
| 196 | from the physical device. |
| 197 | |
| 198 | In other words, from userspace perspective everything needs to keep on |
| 199 | working more or less, until userspace stops using the disappeared DRM |
| 200 | device and closes it completely. Userspace will learn of the device |
| 201 | disappearance from the device removed uevent, ioctls returning ENODEV |
| 202 | (or driver-specific ioctls returning driver-specific things), or open() |
| 203 | returning ENXIO. |
| 204 | |
| 205 | Only after userspace has closed all relevant DRM device and dmabuf file |
| 206 | descriptors and removed all mmaps, the DRM driver can tear down its |
| 207 | instance for the device that no longer exists. If the same physical |
| 208 | device somehow comes back in the mean time, it shall be a new DRM |
| 209 | device. |
| 210 | |
| 211 | Similar to PIDs, chardev minor numbers are not recycled immediately. A |
| 212 | new DRM device always picks the next free minor number compared to the |
| 213 | previous one allocated, and wraps around when minor numbers are |
| 214 | exhausted. |
| 215 | |
| 216 | The goal raises at least the following requirements for the kernel and |
| 217 | drivers. |
| 218 | |
| 219 | Requirements for KMS UAPI |
| 220 | ------------------------- |
| 221 | |
| 222 | - KMS connectors must change their status to disconnected. |
| 223 | |
| 224 | - Legacy modesets and pageflips, and atomic commits, both real and |
| 225 | TEST_ONLY, and any other ioctls either fail with ENODEV or fake |
| 226 | success. |
| 227 | |
| 228 | - Pending non-blocking KMS operations deliver the DRM events userspace |
| 229 | is expecting. This applies also to ioctls that faked success. |
| 230 | |
| 231 | - open() on a device node whose underlying device has disappeared will |
| 232 | fail with ENXIO. |
| 233 | |
| 234 | - Attempting to create a DRM lease on a disappeared DRM device will |
| 235 | fail with ENODEV. Existing DRM leases remain and work as listed |
| 236 | above. |
| 237 | |
| 238 | Requirements for Render and Cross-Device UAPI |
| 239 | --------------------------------------------- |
| 240 | |
| 241 | - All GPU jobs that can no longer run must have their fences |
| 242 | force-signalled to avoid inflicting hangs on userspace. |
| 243 | The associated error code is ENODEV. |
| 244 | |
| 245 | - Some userspace APIs already define what should happen when the device |
| 246 | disappears (OpenGL, GL ES: `GL_KHR_robustness`_; `Vulkan`_: |
| 247 | VK_ERROR_DEVICE_LOST; etc.). DRM drivers are free to implement this |
| 248 | behaviour the way they see best, e.g. returning failures in |
| 249 | driver-specific ioctls and handling those in userspace drivers, or |
| 250 | rely on uevents, and so on. |
| 251 | |
| 252 | - dmabuf which point to memory that has disappeared will either fail to |
| 253 | import with ENODEV or continue to be successfully imported if it would |
| 254 | have succeeded before the disappearance. See also about memory maps |
| 255 | below for already imported dmabufs. |
| 256 | |
| 257 | - Attempting to import a dmabuf to a disappeared device will either fail |
| 258 | with ENODEV or succeed if it would have succeeded without the |
| 259 | disappearance. |
| 260 | |
| 261 | - open() on a device node whose underlying device has disappeared will |
| 262 | fail with ENXIO. |
| 263 | |
| 264 | .. _GL_KHR_robustness: https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_robustness.txt |
| 265 | .. _Vulkan: https://www.khronos.org/vulkan/ |
| 266 | |
| 267 | Requirements for Memory Maps |
| 268 | ---------------------------- |
| 269 | |
| 270 | Memory maps have further requirements that apply to both existing maps |
| 271 | and maps created after the device has disappeared. If the underlying |
| 272 | memory disappears, the map is created or modified such that reads and |
| 273 | writes will still complete successfully but the result is undefined. |
| 274 | This applies to both userspace mmap()'d memory and memory pointed to by |
| 275 | dmabuf which might be mapped to other devices (cross-device dmabuf |
| 276 | imports). |
| 277 | |
| 278 | Raising SIGBUS is not an option, because userspace cannot realistically |
| 279 | handle it. Signal handlers are global, which makes them extremely |
| 280 | difficult to use correctly from libraries like those that Mesa produces. |
| 281 | Signal handlers are not composable, you can't have different handlers |
| 282 | for GPU1 and GPU2 from different vendors, and a third handler for |
| 283 | mmapped regular files. Threads cause additional pain with signal |
| 284 | handling as well. |
| 285 | |
Daniel Vetter | bb2eaba | 2017-05-31 11:20:45 +0200 | [diff] [blame] | 286 | .. _drm_driver_ioctl: |
| 287 | |
Daniel Vetter | 2640981 | 2017-04-04 11:52:57 +0200 | [diff] [blame] | 288 | IOCTL Support on Device Nodes |
| 289 | ============================= |
| 290 | |
| 291 | .. kernel-doc:: drivers/gpu/drm/drm_ioctl.c |
| 292 | :doc: driver specific ioctls |
| 293 | |
Daniel Vetter | 371cadd | 2017-08-18 19:43:28 +0200 | [diff] [blame] | 294 | Recommended IOCTL Return Values |
| 295 | ------------------------------- |
| 296 | |
| 297 | In theory a driver's IOCTL callback is only allowed to return very few error |
| 298 | codes. In practice it's good to abuse a few more. This section documents common |
| 299 | practice within the DRM subsystem: |
| 300 | |
| 301 | ENOENT: |
| 302 | Strictly this should only be used when a file doesn't exist e.g. when |
| 303 | calling the open() syscall. We reuse that to signal any kind of object |
| 304 | lookup failure, e.g. for unknown GEM buffer object handles, unknown KMS |
| 305 | object handles and similar cases. |
| 306 | |
| 307 | ENOSPC: |
| 308 | Some drivers use this to differentiate "out of kernel memory" from "out |
| 309 | of VRAM". Sometimes also applies to other limited gpu resources used for |
| 310 | rendering (e.g. when you have a special limited compression buffer). |
| 311 | Sometimes resource allocation/reservation issues in command submission |
| 312 | IOCTLs are also signalled through EDEADLK. |
| 313 | |
| 314 | Simply running out of kernel/system memory is signalled through ENOMEM. |
| 315 | |
Colin Ian King | cba8087 | 2018-10-26 18:25:49 +0100 | [diff] [blame] | 316 | EPERM/EACCES: |
Daniel Vetter | 371cadd | 2017-08-18 19:43:28 +0200 | [diff] [blame] | 317 | Returned for an operation that is valid, but needs more privileges. |
| 318 | E.g. root-only or much more common, DRM master-only operations return |
Randy Dunlap | bde952f | 2020-07-07 11:04:01 -0700 | [diff] [blame] | 319 | this when called by unpriviledged clients. There's no clear |
Colin Ian King | cba8087 | 2018-10-26 18:25:49 +0100 | [diff] [blame] | 320 | difference between EACCES and EPERM. |
Daniel Vetter | 371cadd | 2017-08-18 19:43:28 +0200 | [diff] [blame] | 321 | |
| 322 | ENODEV: |
Pekka Paalanen | cfb9b89 | 2020-07-07 14:38:05 +0300 | [diff] [blame] | 323 | The device is not present anymore or is not yet fully initialized. |
Daniel Vetter | 9edb6a0 | 2018-10-19 10:43:11 +0200 | [diff] [blame] | 324 | |
| 325 | EOPNOTSUPP: |
Daniel Vetter | 371cadd | 2017-08-18 19:43:28 +0200 | [diff] [blame] | 326 | Feature (like PRIME, modesetting, GEM) is not supported by the driver. |
| 327 | |
| 328 | ENXIO: |
| 329 | Remote failure, either a hardware transaction (like i2c), but also used |
| 330 | when the exporting driver of a shared dma-buf or fence doesn't support a |
| 331 | feature needed. |
| 332 | |
| 333 | EINTR: |
| 334 | DRM drivers assume that userspace restarts all IOCTLs. Any DRM IOCTL can |
| 335 | return EINTR and in such a case should be restarted with the IOCTL |
| 336 | parameters left unchanged. |
| 337 | |
| 338 | EIO: |
| 339 | The GPU died and couldn't be resurrected through a reset. Modesetting |
| 340 | hardware failures are signalled through the "link status" connector |
| 341 | property. |
| 342 | |
| 343 | EINVAL: |
| 344 | Catch-all for anything that is an invalid argument combination which |
| 345 | cannot work. |
| 346 | |
| 347 | IOCTL also use other error codes like ETIME, EFAULT, EBUSY, ENOTTY but their |
| 348 | usage is in line with the common meanings. The above list tries to just document |
| 349 | DRM specific patterns. Note that ENOTTY has the slightly unintuitive meaning of |
| 350 | "this IOCTL does not exist", and is used exactly as such in DRM. |
| 351 | |
Daniel Vetter | 2640981 | 2017-04-04 11:52:57 +0200 | [diff] [blame] | 352 | .. kernel-doc:: include/drm/drm_ioctl.h |
| 353 | :internal: |
| 354 | |
| 355 | .. kernel-doc:: drivers/gpu/drm/drm_ioctl.c |
| 356 | :export: |
| 357 | |
| 358 | .. kernel-doc:: drivers/gpu/drm/drm_ioc32.c |
| 359 | :export: |
Daniel Vetter | a818286 | 2016-12-29 21:48:21 +0100 | [diff] [blame] | 360 | |
| 361 | Testing and validation |
| 362 | ====================== |
| 363 | |
Daniel Vetter | badfa5b | 2019-01-28 18:22:58 +0100 | [diff] [blame] | 364 | Testing Requirements for userspace API |
| 365 | -------------------------------------- |
| 366 | |
| 367 | New cross-driver userspace interface extensions, like new IOCTL, new KMS |
| 368 | properties, new files in sysfs or anything else that constitutes an API change |
| 369 | should have driver-agnostic testcases in IGT for that feature, if such a test |
| 370 | can be reasonably made using IGT for the target hardware. |
| 371 | |
Tomeu Vizoso | 75ac495 | 2016-09-01 09:41:35 +0200 | [diff] [blame] | 372 | Validating changes with IGT |
Daniel Vetter | a818286 | 2016-12-29 21:48:21 +0100 | [diff] [blame] | 373 | --------------------------- |
Tomeu Vizoso | 75ac495 | 2016-09-01 09:41:35 +0200 | [diff] [blame] | 374 | |
| 375 | There's a collection of tests that aims to cover the whole functionality of |
| 376 | DRM drivers and that can be used to check that changes to DRM drivers or the |
| 377 | core don't regress existing functionality. This test suite is called IGT and |
Leandro Ribeiro | 8a537de | 2019-10-29 22:12:11 -0300 | [diff] [blame] | 378 | its code and instructions to build and run can be found in |
| 379 | https://gitlab.freedesktop.org/drm/igt-gpu-tools/. |
Tomeu Vizoso | 75ac495 | 2016-09-01 09:41:35 +0200 | [diff] [blame] | 380 | |
Gabriela Bittencourt | 6f91f44 | 2019-11-04 13:27:05 -0300 | [diff] [blame] | 381 | Using VKMS to test DRM API |
| 382 | -------------------------- |
| 383 | |
| 384 | VKMS is a software-only model of a KMS driver that is useful for testing |
| 385 | and for running compositors. VKMS aims to enable a virtual display without |
| 386 | the need for a hardware display capability. These characteristics made VKMS |
| 387 | a perfect tool for validating the DRM core behavior and also support the |
| 388 | compositor developer. VKMS makes it possible to test DRM functions in a |
| 389 | virtual machine without display, simplifying the validation of some of the |
| 390 | core changes. |
| 391 | |
| 392 | To Validate changes in DRM API with VKMS, start setting the kernel: make |
| 393 | sure to enable VKMS module; compile the kernel with the VKMS enabled and |
| 394 | install it in the target machine. VKMS can be run in a Virtual Machine |
| 395 | (QEMU, virtme or similar). It's recommended the use of KVM with the minimum |
| 396 | of 1GB of RAM and four cores. |
| 397 | |
| 398 | It's possible to run the IGT-tests in a VM in two ways: |
| 399 | |
| 400 | 1. Use IGT inside a VM |
| 401 | 2. Use IGT from the host machine and write the results in a shared directory. |
| 402 | |
| 403 | As follow, there is an example of using a VM with a shared directory with |
| 404 | the host machine to run igt-tests. As an example it's used virtme:: |
| 405 | |
| 406 | $ virtme-run --rwdir /path/for/shared_dir --kdir=path/for/kernel/directory --mods=auto |
| 407 | |
| 408 | Run the igt-tests in the guest machine, as example it's ran the 'kms_flip' |
| 409 | tests:: |
| 410 | |
| 411 | $ /path/for/igt-gpu-tools/scripts/run-tests.sh -p -s -t "kms_flip.*" -v |
| 412 | |
| 413 | In this example, instead of build the igt_runner, Piglit is used |
| 414 | (-p option); it's created html summary of the tests results and it's saved |
| 415 | in the folder "igt-gpu-tools/results"; it's executed only the igt-tests |
| 416 | matching the -t option. |
| 417 | |
Daniel Vetter | a818286 | 2016-12-29 21:48:21 +0100 | [diff] [blame] | 418 | Display CRC Support |
| 419 | ------------------- |
| 420 | |
| 421 | .. kernel-doc:: drivers/gpu/drm/drm_debugfs_crc.c |
| 422 | :doc: CRC ABI |
| 423 | |
Daniel Vetter | 760f71e | 2017-03-22 09:36:04 +0100 | [diff] [blame] | 424 | .. kernel-doc:: drivers/gpu/drm/drm_debugfs_crc.c |
| 425 | :export: |
| 426 | |
Daniel Vetter | 0cad7f7 | 2017-03-22 21:54:01 +0100 | [diff] [blame] | 427 | Debugfs Support |
| 428 | --------------- |
| 429 | |
| 430 | .. kernel-doc:: include/drm/drm_debugfs.h |
| 431 | :internal: |
| 432 | |
| 433 | .. kernel-doc:: drivers/gpu/drm/drm_debugfs.c |
| 434 | :export: |
| 435 | |
Daniel Vetter | e227170 | 2017-04-04 11:52:55 +0200 | [diff] [blame] | 436 | Sysfs Support |
| 437 | ============= |
| 438 | |
| 439 | .. kernel-doc:: drivers/gpu/drm/drm_sysfs.c |
| 440 | :doc: overview |
| 441 | |
| 442 | .. kernel-doc:: drivers/gpu/drm/drm_sysfs.c |
| 443 | :export: |
| 444 | |
| 445 | |
Jani Nikula | ca00c2b | 2016-06-21 14:48:58 +0300 | [diff] [blame] | 446 | VBlank event handling |
Jani Nikula | 2255402 | 2016-06-21 14:49:00 +0300 | [diff] [blame] | 447 | ===================== |
Jani Nikula | ca00c2b | 2016-06-21 14:48:58 +0300 | [diff] [blame] | 448 | |
| 449 | The DRM core exposes two vertical blank related ioctls: |
| 450 | |
| 451 | DRM_IOCTL_WAIT_VBLANK |
| 452 | This takes a struct drm_wait_vblank structure as its argument, and |
| 453 | it is used to block or request a signal when a specified vblank |
| 454 | event occurs. |
| 455 | |
| 456 | DRM_IOCTL_MODESET_CTL |
| 457 | This was only used for user-mode-settind drivers around modesetting |
| 458 | changes to allow the kernel to update the vblank interrupt after |
| 459 | mode setting, since on many devices the vertical blank counter is |
| 460 | reset to 0 at some point during modeset. Modern drivers should not |
| 461 | call this any more since with kernel mode setting it is a no-op. |
Uma Shankar | 309aa92 | 2019-06-03 18:38:48 +0530 | [diff] [blame] | 462 | |
| 463 | Userspace API Structures |
| 464 | ======================== |
| 465 | |
| 466 | .. kernel-doc:: include/uapi/drm/drm_mode.h |
| 467 | :doc: overview |
| 468 | |
Leandro Ribeiro | 2659467 | 2021-06-09 20:00:38 -0300 | [diff] [blame] | 469 | .. _crtc_index: |
| 470 | |
| 471 | CRTC index |
| 472 | ---------- |
| 473 | |
| 474 | CRTC's have both an object ID and an index, and they are not the same thing. |
| 475 | The index is used in cases where a densely packed identifier for a CRTC is |
| 476 | needed, for instance a bitmask of CRTC's. The member possible_crtcs of struct |
| 477 | drm_mode_get_plane is an example. |
| 478 | |
| 479 | DRM_IOCTL_MODE_GETRESOURCES populates a structure with an array of CRTC ID's, |
| 480 | and the CRTC index is its position in this array. |
| 481 | |
Simon Ser | cf9a4be | 2020-12-22 14:35:24 +0100 | [diff] [blame] | 482 | .. kernel-doc:: include/uapi/drm/drm.h |
| 483 | :internal: |
| 484 | |
Uma Shankar | 309aa92 | 2019-06-03 18:38:48 +0530 | [diff] [blame] | 485 | .. kernel-doc:: include/uapi/drm/drm_mode.h |
| 486 | :internal: |