Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
David Herrmann | d7d2c48 | 2014-08-29 12:12:40 +0200 | [diff] [blame] | 2 | * Internal Header for the Direct Rendering Manager |
| 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. |
| 5 | * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 6 | * Copyright (c) 2009-2010, Code Aurora Forum. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * All rights reserved. |
| 8 | * |
David Herrmann | d7d2c48 | 2014-08-29 12:12:40 +0200 | [diff] [blame] | 9 | * Author: Rickard E. (Rik) Faith <faith@valinux.com> |
| 10 | * Author: Gareth Hughes <gareth@valinux.com> |
| 11 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 13 | * copy of this software and associated documentation files (the "Software"), |
| 14 | * to deal in the Software without restriction, including without limitation |
| 15 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 16 | * and/or sell copies of the Software, and to permit persons to whom the |
| 17 | * Software is furnished to do so, subject to the following conditions: |
| 18 | * |
| 19 | * The above copyright notice and this permission notice (including the next |
| 20 | * paragraph) shall be included in all copies or substantial portions of the |
| 21 | * Software. |
| 22 | * |
| 23 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 24 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 25 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 26 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 27 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 28 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 29 | * OTHER DEALINGS IN THE SOFTWARE. |
| 30 | */ |
| 31 | |
| 32 | #ifndef _DRM_P_H_ |
| 33 | #define _DRM_P_H_ |
| 34 | |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 35 | #include <linux/agp_backend.h> |
| 36 | #include <linux/cdev.h> |
| 37 | #include <linux/dma-mapping.h> |
| 38 | #include <linux/file.h> |
| 39 | #include <linux/fs.h> |
| 40 | #include <linux/highmem.h> |
| 41 | #include <linux/idr.h> |
| 42 | #include <linux/init.h> |
| 43 | #include <linux/io.h> |
| 44 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <linux/kernel.h> |
David Herrmann | 099d1c2 | 2014-01-29 10:21:36 +0100 | [diff] [blame] | 46 | #include <linux/kref.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/miscdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/mm.h> |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 49 | #include <linux/mutex.h> |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 50 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/poll.h> |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 52 | #include <linux/ratelimit.h> |
| 53 | #include <linux/sched.h> |
| 54 | #include <linux/slab.h> |
| 55 | #include <linux/types.h> |
David Herrmann | d6db656 | 2014-08-29 12:12:35 +0200 | [diff] [blame] | 56 | #include <linux/vmalloc.h> |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 57 | #include <linux/workqueue.h> |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 58 | #include <linux/dma-fence.h> |
Daniel Vetter | c6bb9ba | 2017-03-08 15:12:35 +0100 | [diff] [blame] | 59 | #include <linux/module.h> |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 60 | |
| 61 | #include <asm/mman.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #include <asm/pgalloc.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 63 | #include <linux/uaccess.h> |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 64 | |
David Herrmann | d7d2c48 | 2014-08-29 12:12:40 +0200 | [diff] [blame] | 65 | #include <uapi/drm/drm.h> |
| 66 | #include <uapi/drm/drm_mode.h> |
| 67 | |
| 68 | #include <drm/drm_agpsupport.h> |
| 69 | #include <drm/drm_crtc.h> |
Laurent Pinchart | ae4df11 | 2016-06-09 12:54:08 +0300 | [diff] [blame] | 70 | #include <drm/drm_fourcc.h> |
David Herrmann | d7d2c48 | 2014-08-29 12:12:40 +0200 | [diff] [blame] | 71 | #include <drm/drm_global.h> |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 72 | #include <drm/drm_hashtab.h> |
David Herrmann | d7d2c48 | 2014-08-29 12:12:40 +0200 | [diff] [blame] | 73 | #include <drm/drm_mem_util.h> |
David Herrmann | 9699390 | 2014-08-29 12:12:37 +0200 | [diff] [blame] | 74 | #include <drm/drm_mm.h> |
| 75 | #include <drm/drm_os_linux.h> |
David Howells | 19218e4 | 2012-10-02 18:01:03 +0100 | [diff] [blame] | 76 | #include <drm/drm_sarea.h> |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 77 | #include <drm/drm_drv.h> |
Daniel Vetter | c6bb9ba | 2017-03-08 15:12:35 +0100 | [diff] [blame] | 78 | #include <drm/drm_prime.h> |
Daniel Vetter | 23ef59e | 2017-03-08 15:12:37 +0100 | [diff] [blame] | 79 | #include <drm/drm_pci.h> |
Daniel Vetter | a8f8b1d | 2017-03-08 15:12:42 +0100 | [diff] [blame] | 80 | #include <drm/drm_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 82 | struct module; |
| 83 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 84 | struct drm_device; |
David Herrmann | cc5ea59 | 2014-08-29 12:12:32 +0200 | [diff] [blame] | 85 | struct drm_agp_head; |
Daniel Vetter | ba8286f | 2014-09-11 07:43:25 +0200 | [diff] [blame] | 86 | struct drm_local_map; |
| 87 | struct drm_device_dma; |
Daniel Vetter | d9fc941 | 2014-09-23 15:46:53 +0200 | [diff] [blame] | 88 | struct drm_gem_object; |
Daniel Vetter | 3b96a0b | 2016-06-21 10:54:22 +0200 | [diff] [blame] | 89 | struct drm_master; |
Daniel Vetter | 34a67dd | 2016-07-15 21:48:01 +0200 | [diff] [blame] | 90 | struct drm_vblank_crtc; |
Daniel Vetter | c6bb9ba | 2017-03-08 15:12:35 +0100 | [diff] [blame] | 91 | struct drm_vma_offset_manager; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 92 | |
Steffen Trumtrar | edb37a9 | 2012-10-28 18:28:06 +0100 | [diff] [blame] | 93 | struct device_node; |
Steffen Trumtrar | ebc64e4 | 2012-11-14 11:22:52 +0100 | [diff] [blame] | 94 | struct videomode; |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 95 | struct reservation_object; |
Maarten Lankhorst | b5e9c1a | 2014-01-09 11:03:14 +0100 | [diff] [blame] | 96 | struct dma_buf_attachment; |
Steffen Trumtrar | ebc64e4 | 2012-11-14 11:22:52 +0100 | [diff] [blame] | 97 | |
Daniel Vetter | 23ef59e | 2017-03-08 15:12:37 +0100 | [diff] [blame] | 98 | struct pci_dev; |
| 99 | struct pci_controller; |
| 100 | |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 101 | /* |
Robert Foss | 346fea6 | 2016-04-14 10:34:16 -0400 | [diff] [blame] | 102 | * The following categories are defined: |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 103 | * |
| 104 | * CORE: Used in the generic drm code: drm_ioctl.c, drm_mm.c, drm_memory.c, ... |
| 105 | * This is the category used by the DRM_DEBUG() macro. |
| 106 | * |
| 107 | * DRIVER: Used in the vendor specific part of the driver: i915, radeon, ... |
| 108 | * This is the category used by the DRM_DEBUG_DRIVER() macro. |
| 109 | * |
| 110 | * KMS: used in the modesetting code. |
| 111 | * This is the category used by the DRM_DEBUG_KMS() macro. |
| 112 | * |
| 113 | * PRIME: used in the prime code. |
| 114 | * This is the category used by the DRM_DEBUG_PRIME() macro. |
| 115 | * |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 116 | * ATOMIC: used in the atomic code. |
| 117 | * This is the category used by the DRM_DEBUG_ATOMIC() macro. |
| 118 | * |
Ville Syrjälä | 235fabe | 2015-10-09 22:57:37 +0300 | [diff] [blame] | 119 | * VBL: used for verbose debug message in the vblank code |
| 120 | * This is the category used by the DRM_DEBUG_VBL() macro. |
| 121 | * |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 122 | * Enabling verbose debug messages is done through the drm.debug parameter, |
| 123 | * each category being enabled by a bit. |
| 124 | * |
| 125 | * drm.debug=0x1 will enable CORE messages |
| 126 | * drm.debug=0x2 will enable DRIVER messages |
| 127 | * drm.debug=0x3 will enable CORE and DRIVER messages |
| 128 | * ... |
Ville Syrjälä | 235fabe | 2015-10-09 22:57:37 +0300 | [diff] [blame] | 129 | * drm.debug=0x3f will enable all messages |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 130 | * |
| 131 | * An interesting feature is that it's possible to enable verbose logging at |
| 132 | * run-time by echoing the debug value in its sysfs node: |
| 133 | * # echo 0xf > /sys/module/drm/parameters/debug |
| 134 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 135 | #define DRM_UT_NONE 0x00 |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 136 | #define DRM_UT_CORE 0x01 |
| 137 | #define DRM_UT_DRIVER 0x02 |
| 138 | #define DRM_UT_KMS 0x04 |
Dave Airlie | 3248877 | 2011-11-25 15:21:02 +0000 | [diff] [blame] | 139 | #define DRM_UT_PRIME 0x08 |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 140 | #define DRM_UT_ATOMIC 0x10 |
Ville Syrjälä | 235fabe | 2015-10-09 22:57:37 +0300 | [diff] [blame] | 141 | #define DRM_UT_VBL 0x20 |
Rob Clark | fceffb32 | 2016-11-05 11:08:09 -0400 | [diff] [blame] | 142 | #define DRM_UT_STATE 0x40 |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /***********************************************************************/ |
| 145 | /** \name DRM template customization defaults */ |
| 146 | /*@{*/ |
| 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /***********************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | /** \name Macros to make printk easier */ |
| 150 | /*@{*/ |
| 151 | |
Dave Gordon | 30b0da8 | 2016-08-18 18:17:22 +0100 | [diff] [blame] | 152 | #define _DRM_PRINTK(once, level, fmt, ...) \ |
| 153 | do { \ |
| 154 | printk##once(KERN_##level "[" DRM_NAME "] " fmt, \ |
| 155 | ##__VA_ARGS__); \ |
| 156 | } while (0) |
| 157 | |
| 158 | #define DRM_INFO(fmt, ...) \ |
| 159 | _DRM_PRINTK(, INFO, fmt, ##__VA_ARGS__) |
| 160 | #define DRM_NOTE(fmt, ...) \ |
| 161 | _DRM_PRINTK(, NOTICE, fmt, ##__VA_ARGS__) |
| 162 | #define DRM_WARN(fmt, ...) \ |
| 163 | _DRM_PRINTK(, WARNING, fmt, ##__VA_ARGS__) |
| 164 | |
| 165 | #define DRM_INFO_ONCE(fmt, ...) \ |
| 166 | _DRM_PRINTK(_once, INFO, fmt, ##__VA_ARGS__) |
| 167 | #define DRM_NOTE_ONCE(fmt, ...) \ |
| 168 | _DRM_PRINTK(_once, NOTICE, fmt, ##__VA_ARGS__) |
| 169 | #define DRM_WARN_ONCE(fmt, ...) \ |
| 170 | _DRM_PRINTK(_once, WARNING, fmt, ##__VA_ARGS__) |
| 171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | /** |
| 173 | * Error output. |
| 174 | * |
| 175 | * \param fmt printf() like format string. |
| 176 | * \param arg arguments |
| 177 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 178 | #define DRM_DEV_ERROR(dev, fmt, ...) \ |
| 179 | drm_dev_printk(dev, KERN_ERR, DRM_UT_NONE, __func__, " *ERROR*",\ |
| 180 | fmt, ##__VA_ARGS__) |
| 181 | #define DRM_ERROR(fmt, ...) \ |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 182 | drm_printk(KERN_ERR, DRM_UT_NONE, fmt, ##__VA_ARGS__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 184 | /** |
| 185 | * Rate limited error output. Like DRM_ERROR() but won't flood the log. |
| 186 | * |
| 187 | * \param fmt printf() like format string. |
| 188 | * \param arg arguments |
| 189 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 190 | #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \ |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 191 | ({ \ |
| 192 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 193 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 194 | DEFAULT_RATELIMIT_BURST); \ |
| 195 | \ |
| 196 | if (__ratelimit(&_rs)) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 197 | DRM_DEV_ERROR(dev, fmt, ##__VA_ARGS__); \ |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 198 | }) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 199 | #define DRM_ERROR_RATELIMITED(fmt, ...) \ |
| 200 | DRM_DEV_ERROR_RATELIMITED(NULL, fmt, ##__VA_ARGS__) |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 201 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 202 | #define DRM_DEV_INFO(dev, fmt, ...) \ |
| 203 | drm_dev_printk(dev, KERN_INFO, DRM_UT_NONE, __func__, "", fmt, \ |
| 204 | ##__VA_ARGS__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 206 | #define DRM_DEV_INFO_ONCE(dev, fmt, ...) \ |
| 207 | ({ \ |
| 208 | static bool __print_once __read_mostly; \ |
| 209 | if (!__print_once) { \ |
| 210 | __print_once = true; \ |
| 211 | DRM_DEV_INFO(dev, fmt, ##__VA_ARGS__); \ |
| 212 | } \ |
| 213 | }) |
Jani Nikula | 48b8f63 | 2014-01-31 15:49:07 +0200 | [diff] [blame] | 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | /** |
| 216 | * Debug output. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 217 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | * \param fmt printf() like format string. |
| 219 | * \param arg arguments |
| 220 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 221 | #define DRM_DEV_DEBUG(dev, fmt, args...) \ |
| 222 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_CORE, __func__, "", fmt, \ |
| 223 | ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 224 | #define DRM_DEBUG(fmt, ...) \ |
| 225 | drm_printk(KERN_DEBUG, DRM_UT_CORE, fmt, ##__VA_ARGS__) |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 226 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 227 | #define DRM_DEV_DEBUG_DRIVER(dev, fmt, args...) \ |
| 228 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_DRIVER, __func__, "", \ |
| 229 | fmt, ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 230 | #define DRM_DEBUG_DRIVER(fmt, ...) \ |
| 231 | drm_printk(KERN_DEBUG, DRM_UT_DRIVER, fmt, ##__VA_ARGS__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 233 | #define DRM_DEV_DEBUG_KMS(dev, fmt, args...) \ |
| 234 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_KMS, __func__, "", fmt, \ |
| 235 | ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 236 | #define DRM_DEBUG_KMS(fmt, ...) \ |
| 237 | drm_printk(KERN_DEBUG, DRM_UT_KMS, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 238 | |
| 239 | #define DRM_DEV_DEBUG_PRIME(dev, fmt, args...) \ |
| 240 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_PRIME, __func__, "", \ |
| 241 | fmt, ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 242 | #define DRM_DEBUG_PRIME(fmt, ...) \ |
| 243 | drm_printk(KERN_DEBUG, DRM_UT_PRIME, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 244 | |
| 245 | #define DRM_DEV_DEBUG_ATOMIC(dev, fmt, args...) \ |
| 246 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ATOMIC, __func__, "", \ |
| 247 | fmt, ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 248 | #define DRM_DEBUG_ATOMIC(fmt, ...) \ |
| 249 | drm_printk(KERN_DEBUG, DRM_UT_ATOMIC, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 250 | |
| 251 | #define DRM_DEV_DEBUG_VBL(dev, fmt, args...) \ |
| 252 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_VBL, __func__, "", fmt, \ |
| 253 | ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 254 | #define DRM_DEBUG_VBL(fmt, ...) \ |
| 255 | drm_printk(KERN_DEBUG, DRM_UT_VBL, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 256 | |
| 257 | #define _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, level, fmt, args...) \ |
| 258 | ({ \ |
| 259 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 260 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 261 | DEFAULT_RATELIMIT_BURST); \ |
| 262 | if (__ratelimit(&_rs)) \ |
| 263 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ ## level, \ |
| 264 | __func__, "", fmt, ##args); \ |
| 265 | }) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 266 | |
| 267 | /** |
| 268 | * Rate limited debug output. Like DRM_DEBUG() but won't flood the log. |
| 269 | * |
| 270 | * \param fmt printf() like format string. |
| 271 | * \param arg arguments |
| 272 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 273 | #define DRM_DEV_DEBUG_RATELIMITED(dev, fmt, args...) \ |
| 274 | DEV__DRM_DEFINE_DEBUG_RATELIMITED(dev, CORE, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 275 | #define DRM_DEBUG_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 276 | DRM_DEV_DEBUG_RATELIMITED(NULL, fmt, ##args) |
| 277 | #define DRM_DEV_DEBUG_DRIVER_RATELIMITED(dev, fmt, args...) \ |
| 278 | _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, DRIVER, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 279 | #define DRM_DEBUG_DRIVER_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 280 | DRM_DEV_DEBUG_DRIVER_RATELIMITED(NULL, fmt, ##args) |
| 281 | #define DRM_DEV_DEBUG_KMS_RATELIMITED(dev, fmt, args...) \ |
| 282 | _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, KMS, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 283 | #define DRM_DEBUG_KMS_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 284 | DRM_DEV_DEBUG_KMS_RATELIMITED(NULL, fmt, ##args) |
| 285 | #define DRM_DEV_DEBUG_PRIME_RATELIMITED(dev, fmt, args...) \ |
| 286 | _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, PRIME, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 287 | #define DRM_DEBUG_PRIME_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 288 | DRM_DEV_DEBUG_PRIME_RATELIMITED(NULL, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 289 | |
Rob Clark | 65c7dc1 | 2016-11-05 11:08:06 -0400 | [diff] [blame] | 290 | /* Format strings and argument splitters to simplify printing |
| 291 | * various "complex" objects |
| 292 | */ |
| 293 | #define DRM_MODE_FMT "%d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x" |
| 294 | #define DRM_MODE_ARG(m) \ |
| 295 | (m)->base.id, (m)->name, (m)->vrefresh, (m)->clock, \ |
| 296 | (m)->hdisplay, (m)->hsync_start, (m)->hsync_end, (m)->htotal, \ |
| 297 | (m)->vdisplay, (m)->vsync_start, (m)->vsync_end, (m)->vtotal, \ |
| 298 | (m)->type, (m)->flags |
| 299 | |
| 300 | #define DRM_RECT_FMT "%dx%d%+d%+d" |
| 301 | #define DRM_RECT_ARG(r) drm_rect_width(r), drm_rect_height(r), (r)->x1, (r)->y1 |
| 302 | |
| 303 | /* for rect's in fixed-point format: */ |
| 304 | #define DRM_RECT_FP_FMT "%d.%06ux%d.%06u%+d.%06u%+d.%06u" |
| 305 | #define DRM_RECT_FP_ARG(r) \ |
| 306 | drm_rect_width(r) >> 16, ((drm_rect_width(r) & 0xffff) * 15625) >> 10, \ |
| 307 | drm_rect_height(r) >> 16, ((drm_rect_height(r) & 0xffff) * 15625) >> 10, \ |
| 308 | (r)->x1 >> 16, (((r)->x1 & 0xffff) * 15625) >> 10, \ |
| 309 | (r)->y1 >> 16, (((r)->y1 & 0xffff) * 15625) >> 10 |
| 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | /*@}*/ |
| 312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | /***********************************************************************/ |
| 314 | /** \name Internal types and structures */ |
| 315 | /*@{*/ |
| 316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | #define DRM_IF_VERSION(maj, min) (maj << 16 | min) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
| 319 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | * Ioctl function type. |
| 321 | * |
| 322 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 323 | * \param file_priv DRM file private pointer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | * \param cmd command. |
| 325 | * \param arg argument. |
| 326 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 327 | typedef int drm_ioctl_t(struct drm_device *dev, void *data, |
| 328 | struct drm_file *file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
Dave Airlie | 9a18664 | 2005-06-23 21:29:18 +1000 | [diff] [blame] | 330 | typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd, |
| 331 | unsigned long arg); |
| 332 | |
Kristian Høgsberg | 1a95916 | 2009-12-02 12:13:48 -0500 | [diff] [blame] | 333 | #define DRM_IOCTL_NR(n) _IOC_NR(n) |
| 334 | #define DRM_MAJOR 226 |
| 335 | |
Dave Airlie | a7a2cc3 | 2006-01-02 13:54:04 +1100 | [diff] [blame] | 336 | #define DRM_AUTH 0x1 |
| 337 | #define DRM_MASTER 0x2 |
| 338 | #define DRM_ROOT_ONLY 0x4 |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 339 | #define DRM_CONTROL_ALLOW 0x8 |
Arnd Bergmann | ed8b670 | 2009-12-16 22:17:09 +0000 | [diff] [blame] | 340 | #define DRM_UNLOCKED 0x10 |
David Herrmann | 1793126 | 2013-08-25 18:29:00 +0200 | [diff] [blame] | 341 | #define DRM_RENDER_ALLOW 0x20 |
Dave Airlie | a7a2cc3 | 2006-01-02 13:54:04 +1100 | [diff] [blame] | 342 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 343 | struct drm_ioctl_desc { |
| 344 | unsigned int cmd; |
Dave Airlie | a7a2cc3 | 2006-01-02 13:54:04 +1100 | [diff] [blame] | 345 | int flags; |
Richard Kennedy | c972d75 | 2009-03-18 17:26:44 +0000 | [diff] [blame] | 346 | drm_ioctl_t *func; |
Chris Cummins | b9434d0 | 2013-05-09 14:20:40 +0100 | [diff] [blame] | 347 | const char *name; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 348 | }; |
| 349 | |
| 350 | /** |
| 351 | * Creates a driver or general drm_ioctl_desc array entry for the given |
| 352 | * ioctl, for use by drm_ioctl(). |
| 353 | */ |
Dave Airlie | 1b2f148 | 2010-08-14 20:20:34 +1000 | [diff] [blame] | 354 | |
Emil Velikov | 066626d | 2015-03-30 17:10:36 +0000 | [diff] [blame] | 355 | #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \ |
| 356 | [DRM_IOCTL_NR(DRM_IOCTL_##ioctl) - DRM_COMMAND_BASE] = { \ |
| 357 | .cmd = DRM_IOCTL_##ioctl, \ |
| 358 | .func = _func, \ |
| 359 | .flags = _flags, \ |
| 360 | .name = #ioctl \ |
| 361 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 363 | /* Flags and return codes for get_vblank_timestamp() driver function. */ |
| 364 | #define DRM_CALLED_FROM_VBLIRQ 1 |
| 365 | #define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0) |
Daniel Vetter | 3d3cbd8 | 2014-09-10 17:36:11 +0200 | [diff] [blame] | 366 | #define DRM_VBLANKTIME_IN_VBLANK (1 << 1) |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 367 | |
| 368 | /* get_scanout_position() return flags */ |
| 369 | #define DRM_SCANOUTPOS_VALID (1 << 0) |
Daniel Vetter | 3d3cbd8 | 2014-09-10 17:36:11 +0200 | [diff] [blame] | 370 | #define DRM_SCANOUTPOS_IN_VBLANK (1 << 1) |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 371 | #define DRM_SCANOUTPOS_ACCURATE (1 << 2) |
| 372 | |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 373 | /** |
| 374 | * Info file list entry. This structure represents a debugfs or proc file to |
| 375 | * be created by the drm core |
| 376 | */ |
| 377 | struct drm_info_list { |
| 378 | const char *name; /** file name */ |
| 379 | int (*show)(struct seq_file*, void*); /** show callback */ |
| 380 | u32 driver_features; /**< Required driver features for this entry */ |
| 381 | void *data; |
| 382 | }; |
| 383 | |
| 384 | /** |
| 385 | * debugfs node structure. This structure represents a debugfs file. |
| 386 | */ |
| 387 | struct drm_info_node { |
| 388 | struct list_head list; |
| 389 | struct drm_minor *minor; |
David Howells | ce089b5 | 2013-04-12 15:23:25 +0100 | [diff] [blame] | 390 | const struct drm_info_list *info_ent; |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 391 | struct dentry *dent; |
| 392 | }; |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | * DRM device structure. This structure represent a complete card that |
| 396 | * may contain multiple heads. |
| 397 | */ |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 398 | struct drm_device { |
Daniel Vetter | b3f2333 | 2013-12-11 11:34:31 +0100 | [diff] [blame] | 399 | struct list_head legacy_dev_list;/**< list of devices per driver for stealth attach cleanup */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 400 | int if_version; /**< Highest interface version set */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
David Herrmann | 45e212d | 2014-01-28 16:00:35 +0100 | [diff] [blame] | 402 | /** \name Lifetime Management */ |
| 403 | /*@{ */ |
David Herrmann | 099d1c2 | 2014-01-29 10:21:36 +0100 | [diff] [blame] | 404 | struct kref ref; /**< Object ref-count */ |
David Herrmann | 45e212d | 2014-01-28 16:00:35 +0100 | [diff] [blame] | 405 | struct device *dev; /**< Device structure of bus-device */ |
| 406 | struct drm_driver *driver; /**< DRM driver managing the device */ |
| 407 | void *dev_private; /**< DRM driver private data */ |
David Herrmann | 45e212d | 2014-01-28 16:00:35 +0100 | [diff] [blame] | 408 | struct drm_minor *control; /**< Control node */ |
| 409 | struct drm_minor *primary; /**< Primary node */ |
| 410 | struct drm_minor *render; /**< Render node */ |
Daniel Vetter | e6e7b48 | 2017-01-12 17:15:56 +0100 | [diff] [blame] | 411 | bool registered; |
Daniel Vetter | 95c081c | 2016-06-21 10:54:12 +0200 | [diff] [blame] | 412 | |
| 413 | /* currently active master for this device. Protected by master_mutex */ |
| 414 | struct drm_master *master; |
| 415 | |
David Herrmann | 45e212d | 2014-01-28 16:00:35 +0100 | [diff] [blame] | 416 | atomic_t unplugged; /**< Flag whether dev is dead */ |
David Herrmann | 07b48c3 | 2014-03-16 13:13:51 +0100 | [diff] [blame] | 417 | struct inode *anon_inode; /**< inode for private address-space */ |
Thierry Reding | ca8e2ad | 2014-04-11 15:23:00 +0200 | [diff] [blame] | 418 | char *unique; /**< unique name of the device */ |
David Herrmann | 45e212d | 2014-01-28 16:00:35 +0100 | [diff] [blame] | 419 | /*@} */ |
| 420 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | /** \name Locks */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 422 | /*@{ */ |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 423 | struct mutex struct_mutex; /**< For others */ |
Thomas Hellstrom | c996fd0 | 2014-02-25 19:57:44 +0100 | [diff] [blame] | 424 | struct mutex master_mutex; /**< For drm_minor::master and drm_file::is_master */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 425 | /*@} */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
| 427 | /** \name Usage Counters */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 428 | /*@{ */ |
Daniel Vetter | fc8fd40 | 2013-11-03 20:46:34 +0100 | [diff] [blame] | 429 | int open_count; /**< Outstanding files open, protected by drm_global_mutex. */ |
Daniel Vetter | 2177a21 | 2013-12-16 11:21:06 +0100 | [diff] [blame] | 430 | spinlock_t buf_lock; /**< For drm_device::buf_use and a few other things. */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 431 | int buf_use; /**< Buffers in use -- cannot alloc */ |
| 432 | atomic_t buf_alloc; /**< Buffer allocation in progress */ |
| 433 | /*@} */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 435 | struct mutex filelist_mutex; |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 436 | struct list_head filelist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | /** \name Memory management */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 439 | /*@{ */ |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 440 | struct list_head maplist; /**< Linked list of regions */ |
Dave Airlie | e0be428 | 2007-07-12 10:26:44 +1000 | [diff] [blame] | 441 | struct drm_open_hash map_hash; /**< User token hash table for maps */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | /** \name Context handle management */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 444 | /*@{ */ |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 445 | struct list_head ctxlist; /**< Linked list of context handles */ |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 446 | struct mutex ctxlist_mutex; /**< For ctxlist */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Dave Airlie | 6296814 | 2007-07-17 10:46:52 +1000 | [diff] [blame] | 448 | struct idr ctx_idr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 450 | struct list_head vmalist; /**< List of vmas (for debugging) */ |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 451 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 452 | /*@} */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Daniel Vetter | a344a7e | 2011-10-26 00:54:41 +0200 | [diff] [blame] | 454 | /** \name DMA support */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 455 | /*@{ */ |
Dave Airlie | cdd55a2 | 2007-07-11 16:32:08 +1000 | [diff] [blame] | 456 | struct drm_device_dma *dma; /**< Optional pointer for DMA support */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 457 | /*@} */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
| 459 | /** \name Context support */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 460 | /*@{ */ |
Daniel Vetter | 7c1a38e3 | 2013-12-16 11:21:15 +0100 | [diff] [blame] | 461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | __volatile__ long context_flag; /**< Context swapping flag */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 463 | int last_context; /**< Last current context */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 464 | /*@} */ |
| 465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | /** \name VBLANK IRQ support */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 467 | /*@{ */ |
Thierry Reding | b46004b | 2014-12-17 16:41:41 +0100 | [diff] [blame] | 468 | bool irq_enabled; |
| 469 | int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 471 | /* |
Ville Syrjälä | 00185e6 | 2014-08-06 14:49:54 +0300 | [diff] [blame] | 472 | * If true, vblank interrupt will be disabled immediately when the |
| 473 | * refcount drops to zero, as opposed to via the vblank disable |
| 474 | * timer. |
| 475 | * This can be set to true it the hardware has a working vblank |
| 476 | * counter and the driver uses drm_vblank_on() and drm_vblank_off() |
| 477 | * appropriately. |
| 478 | */ |
| 479 | bool vblank_disable_immediate; |
| 480 | |
Ville Syrjälä | 5380e92 | 2013-10-04 14:53:36 +0300 | [diff] [blame] | 481 | /* array of size num_crtcs */ |
| 482 | struct drm_vblank_crtc *vblank; |
| 483 | |
Mario Kleiner | 27641c3 | 2010-10-23 04:20:23 +0200 | [diff] [blame] | 484 | spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 485 | spinlock_t vbl_lock; |
Jesse Barnes | 0a3e67a | 2008-09-30 12:14:26 -0700 | [diff] [blame] | 486 | |
| 487 | u32 max_vblank_count; /**< size of vblank counter register */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Kristian Høgsberg | c9a9c5e | 2009-09-12 04:33:34 +1000 | [diff] [blame] | 489 | /** |
| 490 | * List of events |
| 491 | */ |
| 492 | struct list_head vblank_event_list; |
| 493 | spinlock_t event_lock; |
| 494 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 495 | /*@} */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Dave Airlie | 5591051 | 2007-07-11 16:53:40 +1000 | [diff] [blame] | 497 | struct drm_agp_head *agp; /**< AGP data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 499 | struct pci_dev *pdev; /**< PCI device structure */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | #ifdef __alpha__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | struct pci_controller *hose; |
| 502 | #endif |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 503 | |
Dave Airlie | dc5698e | 2013-09-09 10:02:56 +1000 | [diff] [blame] | 504 | struct virtio_device *virtdev; |
Jordan Crouse | dcdb167 | 2010-05-27 13:40:25 -0600 | [diff] [blame] | 505 | |
Dave Airlie | 5591051 | 2007-07-11 16:53:40 +1000 | [diff] [blame] | 506 | struct drm_sg_mem *sg; /**< Scatter gather memory */ |
Dave Airlie | 1922756 | 2011-02-24 08:35:06 +1000 | [diff] [blame] | 507 | unsigned int num_crtcs; /**< Number of CRTCs on this device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
David Herrmann | 69d516c | 2014-08-29 12:12:39 +0200 | [diff] [blame] | 509 | struct { |
| 510 | int context; |
| 511 | struct drm_hw_lock *lock; |
| 512 | } sigdata; |
| 513 | |
Benjamin Herrenschmidt | f77d390 | 2009-02-02 16:55:46 +1100 | [diff] [blame] | 514 | struct drm_local_map *agp_buffer_map; |
Dave Airlie | d1f2b55 | 2005-08-05 22:11:22 +1000 | [diff] [blame] | 515 | unsigned int agp_buffer_token; |
=?utf-8?q?Michel_D=C3=A4nzer?= | bea5679 | 2006-10-24 23:04:19 +1000 | [diff] [blame] | 516 | |
Rob Clark | 417009fb | 2014-11-25 20:33:10 -0500 | [diff] [blame] | 517 | struct drm_mode_config mode_config; /**< Current mode config */ |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 518 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 519 | /** \name GEM information */ |
| 520 | /*@{ */ |
Daniel Vetter | cd4f013 | 2013-08-15 00:02:44 +0200 | [diff] [blame] | 521 | struct mutex object_name_lock; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 522 | struct idr object_name_idr; |
Daniel Vetter | b04a590 | 2013-12-11 14:24:46 +0100 | [diff] [blame] | 523 | struct drm_vma_offset_manager *vma_offset_manager; |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 524 | /*@} */ |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 525 | int switch_power_state; |
Dave Airlie | 84b1fd1 | 2007-07-11 15:53:27 +1000 | [diff] [blame] | 526 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Dhinakaran Pandiyan | a743d75 | 2016-12-22 00:50:42 -0800 | [diff] [blame] | 528 | /** |
| 529 | * drm_drv_uses_atomic_modeset - check if the driver implements |
| 530 | * atomic_commit() |
| 531 | * @dev: DRM device |
| 532 | * |
| 533 | * This check is useful if drivers do not have DRIVER_ATOMIC set but |
| 534 | * have atomic modesetting internally implemented. |
| 535 | */ |
| 536 | static inline bool drm_drv_uses_atomic_modeset(struct drm_device *dev) |
| 537 | { |
| 538 | return dev->mode_config.funcs->atomic_commit != NULL; |
| 539 | } |
| 540 | |
Daniel Vetter | 34a67dd | 2016-07-15 21:48:01 +0200 | [diff] [blame] | 541 | #include <drm/drm_irq.h> |
| 542 | |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 543 | #define DRM_SWITCH_POWER_ON 0 |
| 544 | #define DRM_SWITCH_POWER_OFF 1 |
| 545 | #define DRM_SWITCH_POWER_CHANGING 2 |
Dave Airlie | 13bb9cc | 2012-09-12 15:55:05 +1000 | [diff] [blame] | 546 | #define DRM_SWITCH_POWER_DYNAMIC_OFF 3 |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 547 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 548 | static __inline__ int drm_core_check_feature(struct drm_device *dev, |
| 549 | int feature) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | { |
| 551 | return ((dev->driver->driver_features & feature) ? 1 : 0); |
| 552 | } |
| 553 | |
Dave Airlie | 2c07a21 | 2012-02-20 14:18:07 +0000 | [diff] [blame] | 554 | static inline void drm_device_set_unplugged(struct drm_device *dev) |
| 555 | { |
| 556 | smp_wmb(); |
| 557 | atomic_set(&dev->unplugged, 1); |
| 558 | } |
| 559 | |
| 560 | static inline int drm_device_is_unplugged(struct drm_device *dev) |
| 561 | { |
| 562 | int ret = atomic_read(&dev->unplugged); |
| 563 | smp_rmb(); |
| 564 | return ret; |
| 565 | } |
| 566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | /******************************************************************/ |
| 568 | /** \name Internal function definitions */ |
| 569 | /*@{*/ |
| 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | /* Driver support (drm_drv.h) */ |
Thomas Hellstrom | 5101020 | 2015-07-10 22:31:08 -0700 | [diff] [blame] | 572 | extern int drm_ioctl_permit(u32 flags, struct drm_file *file_priv); |
Arnd Bergmann | ed8b670 | 2009-12-16 22:17:09 +0000 | [diff] [blame] | 573 | extern long drm_ioctl(struct file *filp, |
| 574 | unsigned int cmd, unsigned long arg); |
Jani Nikula | 55edf41 | 2016-11-01 17:40:44 +0200 | [diff] [blame] | 575 | #ifdef CONFIG_COMPAT |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 576 | extern long drm_compat_ioctl(struct file *filp, |
| 577 | unsigned int cmd, unsigned long arg); |
Jani Nikula | 55edf41 | 2016-11-01 17:40:44 +0200 | [diff] [blame] | 578 | #else |
| 579 | /* Let drm_compat_ioctl be assigned to .compat_ioctl unconditionally */ |
| 580 | #define drm_compat_ioctl NULL |
| 581 | #endif |
Thomas Hellstrom | 4beb6d9 | 2014-02-26 15:51:57 +0100 | [diff] [blame] | 582 | extern bool drm_ioctl_flags(unsigned int nr, unsigned int *flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
Daniel Vetter | 7823875 | 2014-09-10 12:43:55 +0200 | [diff] [blame] | 584 | /* Misc. IOCTL support (drm_ioctl.c) */ |
| 585 | int drm_noop(struct drm_device *dev, void *data, |
| 586 | struct drm_file *file_priv); |
Daniel Vetter | 4b63539 | 2015-09-08 13:56:26 +0200 | [diff] [blame] | 587 | int drm_invalid_op(struct drm_device *dev, void *data, |
| 588 | struct drm_file *file_priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Thomas Hellstrom | 040ac32 | 2007-03-23 13:28:33 +1100 | [diff] [blame] | 590 | /* |
| 591 | * These are exported to drivers so that they can implement fencing using |
| 592 | * DMA quiscent + idle. DMA quiescent usually requires the hardware lock. |
| 593 | */ |
| 594 | |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 595 | /* Debugfs support */ |
| 596 | #if defined(CONFIG_DEBUG_FS) |
Lespiau, Damien | 7d74795 | 2013-10-17 19:09:53 +0100 | [diff] [blame] | 597 | extern int drm_debugfs_create_files(const struct drm_info_list *files, |
| 598 | int count, struct dentry *root, |
| 599 | struct drm_minor *minor); |
| 600 | extern int drm_debugfs_remove_files(const struct drm_info_list *files, |
| 601 | int count, struct drm_minor *minor); |
Thierry Reding | 66ee52e | 2013-12-12 15:44:04 +0100 | [diff] [blame] | 602 | #else |
Thierry Reding | 66ee52e | 2013-12-12 15:44:04 +0100 | [diff] [blame] | 603 | static inline int drm_debugfs_create_files(const struct drm_info_list *files, |
| 604 | int count, struct dentry *root, |
| 605 | struct drm_minor *minor) |
| 606 | { |
| 607 | return 0; |
| 608 | } |
| 609 | |
| 610 | static inline int drm_debugfs_remove_files(const struct drm_info_list *files, |
| 611 | int count, struct drm_minor *minor) |
| 612 | { |
| 613 | return 0; |
| 614 | } |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 615 | #endif |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* sysfs support (drm_sysfs.c) */ |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 618 | extern void drm_sysfs_hotplug_event(struct drm_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | |
Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 620 | |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 621 | /*@}*/ |
| 622 | |
Dave Airlie | cc1f719 | 2012-01-05 09:55:22 +0000 | [diff] [blame] | 623 | /* returns true if currently okay to sleep */ |
| 624 | static __inline__ bool drm_can_sleep(void) |
| 625 | { |
| 626 | if (in_atomic() || in_dbg_master() || irqs_disabled()) |
| 627 | return false; |
| 628 | return true; |
| 629 | } |
| 630 | |
Jani Nikula | 373701b | 2015-11-24 21:21:55 +0200 | [diff] [blame] | 631 | /* helper for handling conditionals in various for_each macros */ |
| 632 | #define for_each_if(condition) if (!(condition)) {} else |
| 633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | #endif |