Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. |
| 3 | * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. |
| 4 | * Copyright (c) 2009-2010, Code Aurora Forum. |
| 5 | * Copyright 2016 Intel Corp. |
| 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 8 | * copy of this software and associated documentation files (the "Software"), |
| 9 | * to deal in the Software without restriction, including without limitation |
| 10 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 11 | * and/or sell copies of the Software, and to permit persons to whom the |
| 12 | * Software is furnished to do so, subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice (including the next |
| 15 | * paragraph) shall be included in all copies or substantial portions of the |
| 16 | * Software. |
| 17 | * |
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 21 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 22 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 23 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 24 | * OTHER DEALINGS IN THE SOFTWARE. |
| 25 | */ |
| 26 | |
| 27 | #ifndef _DRM_DRV_H_ |
| 28 | #define _DRM_DRV_H_ |
| 29 | |
| 30 | #include <linux/list.h> |
| 31 | #include <linux/irqreturn.h> |
| 32 | |
Daniel Vetter | c07dcd6 | 2017-08-02 13:56:02 +0200 | [diff] [blame] | 33 | #include <drm/drm_device.h> |
| 34 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 35 | struct drm_file; |
| 36 | struct drm_gem_object; |
| 37 | struct drm_master; |
| 38 | struct drm_minor; |
| 39 | struct dma_buf_attachment; |
| 40 | struct drm_display_mode; |
| 41 | struct drm_mode_create_dumb; |
Noralf Trønnes | 45d58b4 | 2017-11-07 20:13:40 +0100 | [diff] [blame] | 42 | struct drm_printer; |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 43 | |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 44 | /** |
| 45 | * enum drm_driver_feature - feature flags |
| 46 | * |
| 47 | * See &drm_driver.driver_features, drm_device.driver_features and |
| 48 | * drm_core_check_feature(). |
| 49 | */ |
| 50 | enum drm_driver_feature { |
| 51 | /** |
| 52 | * @DRIVER_GEM: |
| 53 | * |
| 54 | * Driver use the GEM memory manager. This should be set for all modern |
| 55 | * drivers. |
| 56 | */ |
| 57 | DRIVER_GEM = BIT(0), |
| 58 | /** |
| 59 | * @DRIVER_MODESET: |
| 60 | * |
| 61 | * Driver supports mode setting interfaces (KMS). |
| 62 | */ |
| 63 | DRIVER_MODESET = BIT(1), |
| 64 | /** |
| 65 | * @DRIVER_PRIME: |
| 66 | * |
| 67 | * Driver implements DRM PRIME buffer sharing. |
| 68 | */ |
| 69 | DRIVER_PRIME = BIT(2), |
| 70 | /** |
| 71 | * @DRIVER_RENDER: |
| 72 | * |
| 73 | * Driver supports dedicated render nodes. See also the :ref:`section on |
| 74 | * render nodes <drm_render_node>` for details. |
| 75 | */ |
| 76 | DRIVER_RENDER = BIT(3), |
| 77 | /** |
| 78 | * @DRIVER_ATOMIC: |
| 79 | * |
| 80 | * Driver supports the full atomic modesetting userspace API. Drivers |
| 81 | * which only use atomic internally, but do not the support the full |
| 82 | * userspace API (e.g. not all properties converted to atomic, or |
| 83 | * multi-plane updates are not guaranteed to be tear-free) should not |
| 84 | * set this flag. |
| 85 | */ |
| 86 | DRIVER_ATOMIC = BIT(4), |
| 87 | /** |
| 88 | * @DRIVER_SYNCOBJ: |
| 89 | * |
| 90 | * Driver supports &drm_syncobj for explicit synchronization of command |
| 91 | * submission. |
| 92 | */ |
| 93 | DRIVER_SYNCOBJ = BIT(5), |
| 94 | |
| 95 | /* IMPORTANT: Below are all the legacy flags, add new ones above. */ |
| 96 | |
| 97 | /** |
| 98 | * @DRIVER_USE_AGP: |
| 99 | * |
| 100 | * Set up DRM AGP support, see drm_agp_init(), the DRM core will manage |
| 101 | * AGP resources. New drivers don't need this. |
| 102 | */ |
Daniel Vetter | 1ff4948 | 2019-01-29 11:42:48 +0100 | [diff] [blame] | 103 | DRIVER_USE_AGP = BIT(25), |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 104 | /** |
| 105 | * @DRIVER_LEGACY: |
| 106 | * |
| 107 | * Denote a legacy driver using shadow attach. Do not use. |
| 108 | */ |
Daniel Vetter | 1ff4948 | 2019-01-29 11:42:48 +0100 | [diff] [blame] | 109 | DRIVER_LEGACY = BIT(26), |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 110 | /** |
| 111 | * @DRIVER_PCI_DMA: |
| 112 | * |
| 113 | * Driver is capable of PCI DMA, mapping of PCI DMA buffers to userspace |
| 114 | * will be enabled. Only for legacy drivers. Do not use. |
| 115 | */ |
Daniel Vetter | 1ff4948 | 2019-01-29 11:42:48 +0100 | [diff] [blame] | 116 | DRIVER_PCI_DMA = BIT(27), |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 117 | /** |
| 118 | * @DRIVER_SG: |
| 119 | * |
| 120 | * Driver can perform scatter/gather DMA, allocation and mapping of |
| 121 | * scatter/gather buffers will be enabled. Only for legacy drivers. Do |
| 122 | * not use. |
| 123 | */ |
Daniel Vetter | 1ff4948 | 2019-01-29 11:42:48 +0100 | [diff] [blame] | 124 | DRIVER_SG = BIT(28), |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 125 | |
| 126 | /** |
| 127 | * @DRIVER_HAVE_DMA: |
| 128 | * |
| 129 | * Driver supports DMA, the userspace DMA API will be supported. Only |
| 130 | * for legacy drivers. Do not use. |
| 131 | */ |
Daniel Vetter | 1ff4948 | 2019-01-29 11:42:48 +0100 | [diff] [blame] | 132 | DRIVER_HAVE_DMA = BIT(29), |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 133 | /** |
| 134 | * @DRIVER_HAVE_IRQ: |
| 135 | * |
| 136 | * Legacy irq support. Only for legacy drivers. Do not use. |
| 137 | * |
| 138 | * New drivers can either use the drm_irq_install() and |
| 139 | * drm_irq_uninstall() helper functions, or roll their own irq support |
| 140 | * code by calling request_irq() directly. |
| 141 | */ |
Daniel Vetter | 1ff4948 | 2019-01-29 11:42:48 +0100 | [diff] [blame] | 142 | DRIVER_HAVE_IRQ = BIT(30), |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 143 | /** |
| 144 | * @DRIVER_KMS_LEGACY_CONTEXT: |
| 145 | * |
| 146 | * Used only by nouveau for backwards compatibility with existing |
| 147 | * userspace. Do not use. |
| 148 | */ |
| 149 | DRIVER_KMS_LEGACY_CONTEXT = BIT(31), |
| 150 | }; |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 151 | |
| 152 | /** |
| 153 | * struct drm_driver - DRM driver structure |
| 154 | * |
Luca Ceresoli | 60e6ecf | 2019-03-13 16:35:37 +0100 | [diff] [blame^] | 155 | * This structure represent the common code for a family of cards. There will be |
| 156 | * one &struct drm_device for each card present in this family. It contains lots |
| 157 | * of vfunc entries, and a pile of those probably should be moved to more |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 158 | * appropriate places like &drm_mode_config_funcs or into a new operations |
| 159 | * structure for GEM drivers. |
| 160 | */ |
| 161 | struct drm_driver { |
Gabriel Krisman Bertazi | 5692650 | 2017-01-02 12:20:08 -0200 | [diff] [blame] | 162 | /** |
| 163 | * @load: |
| 164 | * |
| 165 | * Backward-compatible driver callback to complete |
| 166 | * initialization steps after the driver is registered. For |
| 167 | * this reason, may suffer from race conditions and its use is |
| 168 | * deprecated for new drivers. It is therefore only supported |
| 169 | * for existing drivers not yet converted to the new scheme. |
| 170 | * See drm_dev_init() and drm_dev_register() for proper and |
| 171 | * race-free way to set up a &struct drm_device. |
| 172 | * |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 173 | * This is deprecated, do not use! |
| 174 | * |
Gabriel Krisman Bertazi | 5692650 | 2017-01-02 12:20:08 -0200 | [diff] [blame] | 175 | * Returns: |
| 176 | * |
| 177 | * Zero on success, non-zero value on failure. |
| 178 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 179 | int (*load) (struct drm_device *, unsigned long flags); |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 180 | |
| 181 | /** |
| 182 | * @open: |
| 183 | * |
| 184 | * Driver callback when a new &struct drm_file is opened. Useful for |
| 185 | * setting up driver-private data structures like buffer allocators, |
| 186 | * execution contexts or similar things. Such driver-private resources |
| 187 | * must be released again in @postclose. |
| 188 | * |
| 189 | * Since the display/modeset side of DRM can only be owned by exactly |
| 190 | * one &struct drm_file (see &drm_file.is_master and &drm_device.master) |
| 191 | * there should never be a need to set up any modeset related resources |
| 192 | * in this callback. Doing so would be a driver design bug. |
| 193 | * |
| 194 | * Returns: |
| 195 | * |
| 196 | * 0 on success, a negative error code on failure, which will be |
| 197 | * promoted to userspace as the result of the open() system call. |
| 198 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 199 | int (*open) (struct drm_device *, struct drm_file *); |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 200 | |
| 201 | /** |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 202 | * @postclose: |
| 203 | * |
| 204 | * One of the driver callbacks when a new &struct drm_file is closed. |
| 205 | * Useful for tearing down driver-private data structures allocated in |
| 206 | * @open like buffer allocators, execution contexts or similar things. |
| 207 | * |
| 208 | * Since the display/modeset side of DRM can only be owned by exactly |
| 209 | * one &struct drm_file (see &drm_file.is_master and &drm_device.master) |
| 210 | * there should never be a need to tear down any modeset related |
| 211 | * resources in this callback. Doing so would be a driver design bug. |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 212 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 213 | void (*postclose) (struct drm_device *, struct drm_file *); |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 214 | |
| 215 | /** |
| 216 | * @lastclose: |
| 217 | * |
| 218 | * Called when the last &struct drm_file has been closed and there's |
| 219 | * currently no userspace client for the &struct drm_device. |
| 220 | * |
| 221 | * Modern drivers should only use this to force-restore the fbdev |
| 222 | * framebuffer using drm_fb_helper_restore_fbdev_mode_unlocked(). |
| 223 | * Anything else would indicate there's something seriously wrong. |
| 224 | * Modern drivers can also use this to execute delayed power switching |
| 225 | * state changes, e.g. in conjunction with the :ref:`vga_switcheroo` |
| 226 | * infrastructure. |
| 227 | * |
Daniel Vetter | 45c3d21 | 2017-05-08 10:26:33 +0200 | [diff] [blame] | 228 | * This is called after @postclose hook has been called. |
Daniel Vetter | b93658f | 2017-03-08 15:12:44 +0100 | [diff] [blame] | 229 | * |
| 230 | * NOTE: |
| 231 | * |
| 232 | * All legacy drivers use this callback to de-initialize the hardware. |
| 233 | * This is purely because of the shadow-attach model, where the DRM |
| 234 | * kernel driver does not really own the hardware. Instead ownershipe is |
| 235 | * handled with the help of userspace through an inheritedly racy dance |
| 236 | * to set/unset the VT into raw mode. |
| 237 | * |
| 238 | * Legacy drivers initialize the hardware in the @firstopen callback, |
| 239 | * which isn't even called for modern drivers. |
| 240 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 241 | void (*lastclose) (struct drm_device *); |
Gabriel Krisman Bertazi | 5692650 | 2017-01-02 12:20:08 -0200 | [diff] [blame] | 242 | |
| 243 | /** |
| 244 | * @unload: |
| 245 | * |
| 246 | * Reverse the effects of the driver load callback. Ideally, |
| 247 | * the clean up performed by the driver should happen in the |
| 248 | * reverse order of the initialization. Similarly to the load |
| 249 | * hook, this handler is deprecated and its usage should be |
| 250 | * dropped in favor of an open-coded teardown function at the |
Aishwarya Pant | 9a96f55 | 2017-09-26 13:58:49 +0530 | [diff] [blame] | 251 | * driver layer. See drm_dev_unregister() and drm_dev_put() |
Gabriel Krisman Bertazi | 5692650 | 2017-01-02 12:20:08 -0200 | [diff] [blame] | 252 | * for the proper way to remove a &struct drm_device. |
| 253 | * |
| 254 | * The unload() hook is called right after unregistering |
| 255 | * the device. |
| 256 | * |
Gabriel Krisman Bertazi | 5692650 | 2017-01-02 12:20:08 -0200 | [diff] [blame] | 257 | */ |
Gabriel Krisman Bertazi | 11b3c20 | 2017-01-06 15:57:31 -0200 | [diff] [blame] | 258 | void (*unload) (struct drm_device *); |
Chris Wilson | f30c925 | 2017-02-02 09:36:32 +0000 | [diff] [blame] | 259 | |
| 260 | /** |
| 261 | * @release: |
| 262 | * |
| 263 | * Optional callback for destroying device data after the final |
| 264 | * reference is released, i.e. the device is being destroyed. Drivers |
| 265 | * using this callback are responsible for calling drm_dev_fini() |
| 266 | * to finalize the device and then freeing the struct themselves. |
| 267 | */ |
| 268 | void (*release) (struct drm_device *); |
| 269 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 270 | /** |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 271 | * @get_vblank_counter: |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 272 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 273 | * Driver callback for fetching a raw hardware vblank counter for the |
| 274 | * CRTC specified with the pipe argument. If a device doesn't have a |
Shawn Guo | 5ac7475 | 2017-02-07 17:16:15 +0800 | [diff] [blame] | 275 | * hardware counter, the driver can simply leave the hook as NULL. |
| 276 | * The DRM core will account for missed vblank events while interrupts |
| 277 | * where disabled based on system timestamps. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 278 | * |
| 279 | * Wraparound handling and loss of events due to modesetting is dealt |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 280 | * with in the DRM core code, as long as drivers call |
| 281 | * drm_crtc_vblank_off() and drm_crtc_vblank_on() when disabling or |
| 282 | * enabling a CRTC. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 283 | * |
Shawn Guo | 84e3548 | 2017-02-07 17:16:13 +0800 | [diff] [blame] | 284 | * This is deprecated and should not be used by new drivers. |
| 285 | * Use &drm_crtc_funcs.get_vblank_counter instead. |
| 286 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 287 | * Returns: |
| 288 | * |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 289 | * Raw vblank counter value. |
| 290 | */ |
| 291 | u32 (*get_vblank_counter) (struct drm_device *dev, unsigned int pipe); |
| 292 | |
| 293 | /** |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 294 | * @enable_vblank: |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 295 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 296 | * Enable vblank interrupts for the CRTC specified with the pipe |
| 297 | * argument. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 298 | * |
Shawn Guo | 84e3548 | 2017-02-07 17:16:13 +0800 | [diff] [blame] | 299 | * This is deprecated and should not be used by new drivers. |
| 300 | * Use &drm_crtc_funcs.enable_vblank instead. |
| 301 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 302 | * Returns: |
| 303 | * |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 304 | * Zero on success, appropriate errno if the given @crtc's vblank |
| 305 | * interrupt cannot be enabled. |
| 306 | */ |
| 307 | int (*enable_vblank) (struct drm_device *dev, unsigned int pipe); |
| 308 | |
| 309 | /** |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 310 | * @disable_vblank: |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 311 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 312 | * Disable vblank interrupts for the CRTC specified with the pipe |
| 313 | * argument. |
Shawn Guo | 84e3548 | 2017-02-07 17:16:13 +0800 | [diff] [blame] | 314 | * |
| 315 | * This is deprecated and should not be used by new drivers. |
| 316 | * Use &drm_crtc_funcs.disable_vblank instead. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 317 | */ |
| 318 | void (*disable_vblank) (struct drm_device *dev, unsigned int pipe); |
| 319 | |
| 320 | /** |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 321 | * @get_scanout_position: |
| 322 | * |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 323 | * Called by vblank timestamping code. |
| 324 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 325 | * Returns the current display scanout position from a crtc, and an |
| 326 | * optional accurate ktime_get() timestamp of when position was |
| 327 | * measured. Note that this is a helper callback which is only used if a |
| 328 | * driver uses drm_calc_vbltimestamp_from_scanoutpos() for the |
| 329 | * @get_vblank_timestamp callback. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 330 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 331 | * Parameters: |
| 332 | * |
| 333 | * dev: |
| 334 | * DRM device. |
| 335 | * pipe: |
| 336 | * Id of the crtc to query. |
Daniel Vetter | 3fcdcb2 | 2017-05-09 16:03:26 +0200 | [diff] [blame] | 337 | * in_vblank_irq: |
| 338 | * True when called from drm_crtc_handle_vblank(). Some drivers |
| 339 | * need to apply some workarounds for gpu-specific vblank irq quirks |
| 340 | * if flag is set. |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 341 | * vpos: |
| 342 | * Target location for current vertical scanout position. |
| 343 | * hpos: |
| 344 | * Target location for current horizontal scanout position. |
| 345 | * stime: |
| 346 | * Target location for timestamp taken immediately before |
| 347 | * scanout position query. Can be NULL to skip timestamp. |
| 348 | * etime: |
| 349 | * Target location for timestamp taken immediately after |
| 350 | * scanout position query. Can be NULL to skip timestamp. |
| 351 | * mode: |
| 352 | * Current display timings. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 353 | * |
| 354 | * Returns vpos as a positive number while in active scanout area. |
| 355 | * Returns vpos as a negative number inside vblank, counting the number |
| 356 | * of scanlines to go until end of vblank, e.g., -1 means "one scanline |
| 357 | * until start of active scanout / end of vblank." |
| 358 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 359 | * Returns: |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 360 | * |
Daniel Vetter | 1bf6ad6 | 2017-05-09 16:03:28 +0200 | [diff] [blame] | 361 | * True on success, false if a reliable scanout position counter could |
| 362 | * not be read out. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 363 | * |
Daniel Vetter | 2a39b88 | 2017-05-09 16:03:27 +0200 | [diff] [blame] | 364 | * FIXME: |
| 365 | * |
| 366 | * Since this is a helper to implement @get_vblank_timestamp, we should |
| 367 | * move it to &struct drm_crtc_helper_funcs, like all the other |
| 368 | * helper-internal hooks. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 369 | */ |
Daniel Vetter | 1bf6ad6 | 2017-05-09 16:03:28 +0200 | [diff] [blame] | 370 | bool (*get_scanout_position) (struct drm_device *dev, unsigned int pipe, |
| 371 | bool in_vblank_irq, int *vpos, int *hpos, |
| 372 | ktime_t *stime, ktime_t *etime, |
| 373 | const struct drm_display_mode *mode); |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 374 | |
| 375 | /** |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 376 | * @get_vblank_timestamp: |
| 377 | * |
| 378 | * Called by drm_get_last_vbltimestamp(). Should return a precise |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 379 | * timestamp when the most recent VBLANK interval ended or will end. |
| 380 | * |
| 381 | * Specifically, the timestamp in @vblank_time should correspond as |
| 382 | * closely as possible to the time when the first video scanline of |
| 383 | * the video frame after the end of VBLANK will start scanning out, |
| 384 | * the time immediately after end of the VBLANK interval. If the |
| 385 | * @crtc is currently inside VBLANK, this will be a time in the future. |
| 386 | * If the @crtc is currently scanning out a frame, this will be the |
| 387 | * past start time of the current scanout. This is meant to adhere |
| 388 | * to the OpenML OML_sync_control extension specification. |
| 389 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 390 | * Paramters: |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 391 | * |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 392 | * dev: |
| 393 | * dev DRM device handle. |
| 394 | * pipe: |
| 395 | * crtc for which timestamp should be returned. |
| 396 | * max_error: |
| 397 | * Maximum allowable timestamp error in nanoseconds. |
| 398 | * Implementation should strive to provide timestamp |
| 399 | * with an error of at most max_error nanoseconds. |
| 400 | * Returns true upper bound on error for timestamp. |
| 401 | * vblank_time: |
| 402 | * Target location for returned vblank timestamp. |
Daniel Vetter | 3fcdcb2 | 2017-05-09 16:03:26 +0200 | [diff] [blame] | 403 | * in_vblank_irq: |
| 404 | * True when called from drm_crtc_handle_vblank(). Some drivers |
| 405 | * need to apply some workarounds for gpu-specific vblank irq quirks |
| 406 | * if flag is set. |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 407 | * |
| 408 | * Returns: |
| 409 | * |
Daniel Vetter | d673c02 | 2017-05-09 16:03:25 +0200 | [diff] [blame] | 410 | * True on success, false on failure, which means the core should |
| 411 | * fallback to a simple timestamp taken in drm_crtc_handle_vblank(). |
Daniel Vetter | 2a39b88 | 2017-05-09 16:03:27 +0200 | [diff] [blame] | 412 | * |
| 413 | * FIXME: |
| 414 | * |
| 415 | * We should move this hook to &struct drm_crtc_funcs like all the other |
| 416 | * vblank hooks. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 417 | */ |
Daniel Vetter | d673c02 | 2017-05-09 16:03:25 +0200 | [diff] [blame] | 418 | bool (*get_vblank_timestamp) (struct drm_device *dev, unsigned int pipe, |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 419 | int *max_error, |
Arnd Bergmann | 67680d3 | 2017-10-11 17:20:12 +0200 | [diff] [blame] | 420 | ktime_t *vblank_time, |
Daniel Vetter | 3fcdcb2 | 2017-05-09 16:03:26 +0200 | [diff] [blame] | 421 | bool in_vblank_irq); |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 422 | |
Daniel Vetter | 16584b2 | 2017-05-31 11:22:53 +0200 | [diff] [blame] | 423 | /** |
| 424 | * @irq_handler: |
| 425 | * |
| 426 | * Interrupt handler called when using drm_irq_install(). Not used by |
| 427 | * drivers which implement their own interrupt handling. |
| 428 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 429 | irqreturn_t(*irq_handler) (int irq, void *arg); |
Daniel Vetter | 16584b2 | 2017-05-31 11:22:53 +0200 | [diff] [blame] | 430 | |
| 431 | /** |
| 432 | * @irq_preinstall: |
| 433 | * |
| 434 | * Optional callback used by drm_irq_install() which is called before |
| 435 | * the interrupt handler is registered. This should be used to clear out |
| 436 | * any pending interrupts (from e.g. firmware based drives) and reset |
| 437 | * the interrupt handling registers. |
| 438 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 439 | void (*irq_preinstall) (struct drm_device *dev); |
Daniel Vetter | 16584b2 | 2017-05-31 11:22:53 +0200 | [diff] [blame] | 440 | |
| 441 | /** |
| 442 | * @irq_postinstall: |
| 443 | * |
| 444 | * Optional callback used by drm_irq_install() which is called after |
| 445 | * the interrupt handler is registered. This should be used to enable |
| 446 | * interrupt generation in the hardware. |
| 447 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 448 | int (*irq_postinstall) (struct drm_device *dev); |
Daniel Vetter | 16584b2 | 2017-05-31 11:22:53 +0200 | [diff] [blame] | 449 | |
| 450 | /** |
| 451 | * @irq_uninstall: |
| 452 | * |
| 453 | * Optional callback used by drm_irq_uninstall() which is called before |
| 454 | * the interrupt handler is unregistered. This should be used to disable |
| 455 | * interrupt generation in the hardware. |
| 456 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 457 | void (*irq_uninstall) (struct drm_device *dev); |
| 458 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 459 | /** |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 460 | * @master_create: |
| 461 | * |
| 462 | * Called whenever a new master is created. Only used by vmwgfx. |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 463 | */ |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 464 | int (*master_create)(struct drm_device *dev, struct drm_master *master); |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 465 | |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 466 | /** |
| 467 | * @master_destroy: |
| 468 | * |
| 469 | * Called whenever a master is destroyed. Only used by vmwgfx. |
| 470 | */ |
| 471 | void (*master_destroy)(struct drm_device *dev, struct drm_master *master); |
| 472 | |
| 473 | /** |
| 474 | * @master_set: |
| 475 | * |
| 476 | * Called whenever the minor master is set. Only used by vmwgfx. |
| 477 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 478 | int (*master_set)(struct drm_device *dev, struct drm_file *file_priv, |
| 479 | bool from_open); |
Daniel Vetter | 6c4789e | 2016-11-14 12:58:20 +0100 | [diff] [blame] | 480 | /** |
| 481 | * @master_drop: |
| 482 | * |
| 483 | * Called whenever the minor master is dropped. Only used by vmwgfx. |
| 484 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 485 | void (*master_drop)(struct drm_device *dev, struct drm_file *file_priv); |
| 486 | |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 487 | /** |
| 488 | * @debugfs_init: |
| 489 | * |
| 490 | * Allows drivers to create driver-specific debugfs files. |
| 491 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 492 | int (*debugfs_init)(struct drm_minor *minor); |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 493 | |
| 494 | /** |
| 495 | * @gem_free_object: deconstructor for drm_gem_objects |
| 496 | * |
| 497 | * This is deprecated and should not be used by new drivers. Use |
| 498 | * @gem_free_object_unlocked instead. |
| 499 | */ |
| 500 | void (*gem_free_object) (struct drm_gem_object *obj); |
| 501 | |
| 502 | /** |
| 503 | * @gem_free_object_unlocked: deconstructor for drm_gem_objects |
| 504 | * |
Daniel Vetter | ef40cbf9 | 2017-01-25 07:26:47 +0100 | [diff] [blame] | 505 | * This is for drivers which are not encumbered with &drm_device.struct_mutex |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 506 | * legacy locking schemes. Use this hook instead of @gem_free_object. |
| 507 | */ |
| 508 | void (*gem_free_object_unlocked) (struct drm_gem_object *obj); |
| 509 | |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 510 | /** |
| 511 | * @gem_open_object: |
| 512 | * |
| 513 | * Driver hook called upon gem handle creation |
| 514 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 515 | int (*gem_open_object) (struct drm_gem_object *, struct drm_file *); |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 516 | |
| 517 | /** |
| 518 | * @gem_close_object: |
| 519 | * |
| 520 | * Driver hook called upon gem handle release |
| 521 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 522 | void (*gem_close_object) (struct drm_gem_object *, struct drm_file *); |
| 523 | |
| 524 | /** |
Noralf Trønnes | 45d58b4 | 2017-11-07 20:13:40 +0100 | [diff] [blame] | 525 | * @gem_print_info: |
| 526 | * |
| 527 | * If driver subclasses struct &drm_gem_object, it can implement this |
| 528 | * optional hook for printing additional driver specific info. |
| 529 | * |
| 530 | * drm_printf_indent() should be used in the callback passing it the |
| 531 | * indent argument. |
| 532 | * |
| 533 | * This callback is called from drm_gem_print_info(). |
| 534 | */ |
| 535 | void (*gem_print_info)(struct drm_printer *p, unsigned int indent, |
| 536 | const struct drm_gem_object *obj); |
| 537 | |
| 538 | /** |
Chris Wilson | 218adc1 | 2016-11-25 12:34:27 +0000 | [diff] [blame] | 539 | * @gem_create_object: constructor for gem objects |
| 540 | * |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 541 | * Hook for allocating the GEM object struct, for use by core |
| 542 | * helpers. |
| 543 | */ |
| 544 | struct drm_gem_object *(*gem_create_object)(struct drm_device *dev, |
| 545 | size_t size); |
| 546 | |
| 547 | /* prime: */ |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 548 | /** |
| 549 | * @prime_handle_to_fd: |
| 550 | * |
| 551 | * export handle -> fd (see drm_gem_prime_handle_to_fd() helper) |
| 552 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 553 | int (*prime_handle_to_fd)(struct drm_device *dev, struct drm_file *file_priv, |
| 554 | uint32_t handle, uint32_t flags, int *prime_fd); |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 555 | /** |
| 556 | * @prime_fd_to_handle: |
| 557 | * |
| 558 | * import fd -> handle (see drm_gem_prime_fd_to_handle() helper) |
| 559 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 560 | int (*prime_fd_to_handle)(struct drm_device *dev, struct drm_file *file_priv, |
| 561 | int prime_fd, uint32_t *handle); |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 562 | /** |
| 563 | * @gem_prime_export: |
| 564 | * |
| 565 | * export GEM -> dmabuf |
Noralf Trønnes | f001488 | 2018-11-10 15:56:43 +0100 | [diff] [blame] | 566 | * |
| 567 | * This defaults to drm_gem_prime_export() if not set. |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 568 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 569 | struct dma_buf * (*gem_prime_export)(struct drm_device *dev, |
| 570 | struct drm_gem_object *obj, int flags); |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 571 | /** |
| 572 | * @gem_prime_import: |
| 573 | * |
| 574 | * import dmabuf -> GEM |
Noralf Trønnes | f001488 | 2018-11-10 15:56:43 +0100 | [diff] [blame] | 575 | * |
| 576 | * This defaults to drm_gem_prime_import() if not set. |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 577 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 578 | struct drm_gem_object * (*gem_prime_import)(struct drm_device *dev, |
| 579 | struct dma_buf *dma_buf); |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 580 | int (*gem_prime_pin)(struct drm_gem_object *obj); |
| 581 | void (*gem_prime_unpin)(struct drm_gem_object *obj); |
| 582 | struct reservation_object * (*gem_prime_res_obj)( |
| 583 | struct drm_gem_object *obj); |
| 584 | struct sg_table *(*gem_prime_get_sg_table)(struct drm_gem_object *obj); |
| 585 | struct drm_gem_object *(*gem_prime_import_sg_table)( |
| 586 | struct drm_device *dev, |
| 587 | struct dma_buf_attachment *attach, |
| 588 | struct sg_table *sgt); |
| 589 | void *(*gem_prime_vmap)(struct drm_gem_object *obj); |
| 590 | void (*gem_prime_vunmap)(struct drm_gem_object *obj, void *vaddr); |
| 591 | int (*gem_prime_mmap)(struct drm_gem_object *obj, |
| 592 | struct vm_area_struct *vma); |
| 593 | |
Daniel Vetter | 4f93624 | 2016-11-14 12:58:21 +0100 | [diff] [blame] | 594 | /** |
| 595 | * @dumb_create: |
| 596 | * |
| 597 | * This creates a new dumb buffer in the driver's backing storage manager (GEM, |
| 598 | * TTM or something else entirely) and returns the resulting buffer handle. This |
| 599 | * handle can then be wrapped up into a framebuffer modeset object. |
| 600 | * |
| 601 | * Note that userspace is not allowed to use such objects for render |
| 602 | * acceleration - drivers must create their own private ioctls for such a use |
| 603 | * case. |
| 604 | * |
| 605 | * Width, height and depth are specified in the &drm_mode_create_dumb |
| 606 | * argument. The callback needs to fill the handle, pitch and size for |
| 607 | * the created buffer. |
| 608 | * |
| 609 | * Called by the user via ioctl. |
| 610 | * |
| 611 | * Returns: |
| 612 | * |
| 613 | * Zero on success, negative errno on failure. |
| 614 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 615 | int (*dumb_create)(struct drm_file *file_priv, |
| 616 | struct drm_device *dev, |
| 617 | struct drm_mode_create_dumb *args); |
Daniel Vetter | 4f93624 | 2016-11-14 12:58:21 +0100 | [diff] [blame] | 618 | /** |
| 619 | * @dumb_map_offset: |
| 620 | * |
| 621 | * Allocate an offset in the drm device node's address space to be able to |
Daniel Vetter | 39dea70 | 2018-11-27 10:19:21 +0100 | [diff] [blame] | 622 | * memory map a dumb buffer. |
| 623 | * |
| 624 | * The default implementation is drm_gem_create_mmap_offset(). GEM based |
| 625 | * drivers must not overwrite this. |
Daniel Vetter | 4f93624 | 2016-11-14 12:58:21 +0100 | [diff] [blame] | 626 | * |
| 627 | * Called by the user via ioctl. |
| 628 | * |
| 629 | * Returns: |
| 630 | * |
| 631 | * Zero on success, negative errno on failure. |
| 632 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 633 | int (*dumb_map_offset)(struct drm_file *file_priv, |
| 634 | struct drm_device *dev, uint32_t handle, |
| 635 | uint64_t *offset); |
Daniel Vetter | 4f93624 | 2016-11-14 12:58:21 +0100 | [diff] [blame] | 636 | /** |
| 637 | * @dumb_destroy: |
| 638 | * |
| 639 | * This destroys the userspace handle for the given dumb backing storage buffer. |
| 640 | * Since buffer objects must be reference counted in the kernel a buffer object |
| 641 | * won't be immediately freed if a framebuffer modeset object still uses it. |
| 642 | * |
| 643 | * Called by the user via ioctl. |
| 644 | * |
Daniel Vetter | 39dea70 | 2018-11-27 10:19:21 +0100 | [diff] [blame] | 645 | * The default implementation is drm_gem_dumb_destroy(). GEM based drivers |
| 646 | * must not overwrite this. |
| 647 | * |
Daniel Vetter | 4f93624 | 2016-11-14 12:58:21 +0100 | [diff] [blame] | 648 | * Returns: |
| 649 | * |
| 650 | * Zero on success, negative errno on failure. |
| 651 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 652 | int (*dumb_destroy)(struct drm_file *file_priv, |
| 653 | struct drm_device *dev, |
| 654 | uint32_t handle); |
| 655 | |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 656 | /** |
| 657 | * @gem_vm_ops: Driver private ops for this object |
| 658 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 659 | const struct vm_operations_struct *gem_vm_ops; |
| 660 | |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 661 | /** @major: driver major number */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 662 | int major; |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 663 | /** @minor: driver minor number */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 664 | int minor; |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 665 | /** @patchlevel: driver patch level */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 666 | int patchlevel; |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 667 | /** @name: driver name */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 668 | char *name; |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 669 | /** @desc: driver description */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 670 | char *desc; |
Sean Paul | d1b6c62 | 2017-07-20 13:47:43 -0400 | [diff] [blame] | 671 | /** @date: driver date */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 672 | char *date; |
| 673 | |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 674 | /** |
| 675 | * @driver_features: |
| 676 | * Driver features, see &enum drm_driver_feature. Drivers can disable |
| 677 | * some features on a per-instance basis using |
| 678 | * &drm_device.driver_features. |
| 679 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 680 | u32 driver_features; |
Daniel Vetter | bb2eaba | 2017-05-31 11:20:45 +0200 | [diff] [blame] | 681 | |
| 682 | /** |
| 683 | * @ioctls: |
| 684 | * |
| 685 | * Array of driver-private IOCTL description entries. See the chapter on |
| 686 | * :ref:`IOCTL support in the userland interfaces |
| 687 | * chapter<drm_driver_ioctl>` for the full details. |
| 688 | */ |
| 689 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 690 | const struct drm_ioctl_desc *ioctls; |
Daniel Vetter | bb2eaba | 2017-05-31 11:20:45 +0200 | [diff] [blame] | 691 | /** @num_ioctls: Number of entries in @ioctls. */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 692 | int num_ioctls; |
Daniel Vetter | bb2eaba | 2017-05-31 11:20:45 +0200 | [diff] [blame] | 693 | |
| 694 | /** |
| 695 | * @fops: |
| 696 | * |
| 697 | * File operations for the DRM device node. See the discussion in |
| 698 | * :ref:`file operations<drm_driver_fops>` for in-depth coverage and |
| 699 | * some examples. |
| 700 | */ |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 701 | const struct file_operations *fops; |
| 702 | |
Daniel Vetter | 0683c0a | 2017-01-25 07:26:54 +0100 | [diff] [blame] | 703 | /* Everything below here is for legacy driver, never use! */ |
| 704 | /* private: */ |
| 705 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 706 | /* List of devices hanging off this driver with stealth attach. */ |
| 707 | struct list_head legacy_dev_list; |
Daniel Vetter | 0683c0a | 2017-01-25 07:26:54 +0100 | [diff] [blame] | 708 | int (*firstopen) (struct drm_device *); |
Daniel Vetter | 45c3d21 | 2017-05-08 10:26:33 +0200 | [diff] [blame] | 709 | void (*preclose) (struct drm_device *, struct drm_file *file_priv); |
Daniel Vetter | 0683c0a | 2017-01-25 07:26:54 +0100 | [diff] [blame] | 710 | int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv); |
| 711 | int (*dma_quiescent) (struct drm_device *); |
| 712 | int (*context_dtor) (struct drm_device *dev, int context); |
| 713 | int dev_priv_size; |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 714 | }; |
| 715 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 716 | extern unsigned int drm_debug; |
| 717 | |
| 718 | int drm_dev_init(struct drm_device *dev, |
| 719 | struct drm_driver *driver, |
| 720 | struct device *parent); |
Noralf Trønnes | 9b1f1b6 | 2019-02-25 15:42:27 +0100 | [diff] [blame] | 721 | int devm_drm_dev_init(struct device *parent, |
| 722 | struct drm_device *dev, |
| 723 | struct drm_driver *driver); |
Chris Wilson | f30c925 | 2017-02-02 09:36:32 +0000 | [diff] [blame] | 724 | void drm_dev_fini(struct drm_device *dev); |
| 725 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 726 | struct drm_device *drm_dev_alloc(struct drm_driver *driver, |
| 727 | struct device *parent); |
| 728 | int drm_dev_register(struct drm_device *dev, unsigned long flags); |
| 729 | void drm_dev_unregister(struct drm_device *dev); |
| 730 | |
Aishwarya Pant | 9a96f55 | 2017-09-26 13:58:49 +0530 | [diff] [blame] | 731 | void drm_dev_get(struct drm_device *dev); |
| 732 | void drm_dev_put(struct drm_device *dev); |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 733 | void drm_put_dev(struct drm_device *dev); |
Noralf Trønnes | bee330f | 2018-03-28 10:38:35 +0300 | [diff] [blame] | 734 | bool drm_dev_enter(struct drm_device *dev, int *idx); |
| 735 | void drm_dev_exit(int idx); |
Daniel Vetter | c07dcd6 | 2017-08-02 13:56:02 +0200 | [diff] [blame] | 736 | void drm_dev_unplug(struct drm_device *dev); |
| 737 | |
| 738 | /** |
| 739 | * drm_dev_is_unplugged - is a DRM device unplugged |
| 740 | * @dev: DRM device |
| 741 | * |
| 742 | * This function can be called to check whether a hotpluggable is unplugged. |
| 743 | * Unplugging itself is singalled through drm_dev_unplug(). If a device is |
| 744 | * unplugged, these two functions guarantee that any store before calling |
| 745 | * drm_dev_unplug() is visible to callers of this function after it completes |
Daniel Vetter | 168982d | 2019-01-29 09:56:43 +0100 | [diff] [blame] | 746 | * |
| 747 | * WARNING: This function fundamentally races against drm_dev_unplug(). It is |
| 748 | * recommended that drivers instead use the underlying drm_dev_enter() and |
| 749 | * drm_dev_exit() function pairs. |
Daniel Vetter | c07dcd6 | 2017-08-02 13:56:02 +0200 | [diff] [blame] | 750 | */ |
Noralf Trønnes | bee330f | 2018-03-28 10:38:35 +0300 | [diff] [blame] | 751 | static inline bool drm_dev_is_unplugged(struct drm_device *dev) |
Daniel Vetter | c07dcd6 | 2017-08-02 13:56:02 +0200 | [diff] [blame] | 752 | { |
Noralf Trønnes | bee330f | 2018-03-28 10:38:35 +0300 | [diff] [blame] | 753 | int idx; |
| 754 | |
| 755 | if (drm_dev_enter(dev, &idx)) { |
| 756 | drm_dev_exit(idx); |
| 757 | return false; |
| 758 | } |
| 759 | |
| 760 | return true; |
Daniel Vetter | c07dcd6 | 2017-08-02 13:56:02 +0200 | [diff] [blame] | 761 | } |
| 762 | |
Daniel Vetter | 3479fc2 | 2018-07-09 10:40:02 +0200 | [diff] [blame] | 763 | /** |
| 764 | * drm_core_check_feature - check driver feature flags |
| 765 | * @dev: DRM device to check |
| 766 | * @feature: feature flag |
| 767 | * |
Ville Syrjälä | 18ace11 | 2018-09-13 16:16:21 +0300 | [diff] [blame] | 768 | * This checks @dev for driver features, see &drm_driver.driver_features, |
Daniel Vetter | 0e2a933 | 2019-01-29 11:42:47 +0100 | [diff] [blame] | 769 | * &drm_device.driver_features, and the various &enum drm_driver_feature flags. |
Daniel Vetter | 3479fc2 | 2018-07-09 10:40:02 +0200 | [diff] [blame] | 770 | * |
| 771 | * Returns true if the @feature is supported, false otherwise. |
| 772 | */ |
Emil Velikov | f16bb4d | 2019-01-14 08:54:07 +0000 | [diff] [blame] | 773 | static inline bool drm_core_check_feature(const struct drm_device *dev, u32 feature) |
Daniel Vetter | 3479fc2 | 2018-07-09 10:40:02 +0200 | [diff] [blame] | 774 | { |
Ville Syrjälä | 18ace11 | 2018-09-13 16:16:21 +0300 | [diff] [blame] | 775 | return dev->driver->driver_features & dev->driver_features & feature; |
Daniel Vetter | 3479fc2 | 2018-07-09 10:40:02 +0200 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | /** |
| 779 | * drm_drv_uses_atomic_modeset - check if the driver implements |
| 780 | * atomic_commit() |
| 781 | * @dev: DRM device |
| 782 | * |
| 783 | * This check is useful if drivers do not have DRIVER_ATOMIC set but |
| 784 | * have atomic modesetting internally implemented. |
| 785 | */ |
| 786 | static inline bool drm_drv_uses_atomic_modeset(struct drm_device *dev) |
| 787 | { |
| 788 | return drm_core_check_feature(dev, DRIVER_ATOMIC) || |
Dave Airlie | 5707833 | 2018-09-18 16:20:18 +1000 | [diff] [blame] | 789 | (dev->mode_config.funcs && dev->mode_config.funcs->atomic_commit != NULL); |
Daniel Vetter | 3479fc2 | 2018-07-09 10:40:02 +0200 | [diff] [blame] | 790 | } |
| 791 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 792 | |
Dave Airlie | 6320745 | 2016-11-30 14:18:51 +1000 | [diff] [blame] | 793 | int drm_dev_set_unique(struct drm_device *dev, const char *name); |
| 794 | |
| 795 | |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 796 | #endif |