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> |
| 73 | #include <drm/drm_mm.h> |
| 74 | #include <drm/drm_os_linux.h> |
David Howells | 19218e4 | 2012-10-02 18:01:03 +0100 | [diff] [blame] | 75 | #include <drm/drm_sarea.h> |
Daniel Vetter | 85e634b | 2016-11-14 12:58:19 +0100 | [diff] [blame] | 76 | #include <drm/drm_drv.h> |
Daniel Vetter | c6bb9ba | 2017-03-08 15:12:35 +0100 | [diff] [blame] | 77 | #include <drm/drm_prime.h> |
Daniel Vetter | 23ef59e | 2017-03-08 15:12:37 +0100 | [diff] [blame] | 78 | #include <drm/drm_pci.h> |
Daniel Vetter | a8f8b1d | 2017-03-08 15:12:42 +0100 | [diff] [blame] | 79 | #include <drm/drm_file.h> |
Daniel Vetter | 4834442 | 2017-03-22 21:53:36 +0100 | [diff] [blame] | 80 | #include <drm/drm_debugfs.h> |
Daniel Vetter | 7cfdf71 | 2017-03-22 21:54:47 +0100 | [diff] [blame] | 81 | #include <drm/drm_ioctl.h> |
Daniel Vetter | e227170 | 2017-04-04 11:52:55 +0200 | [diff] [blame] | 82 | #include <drm/drm_sysfs.h> |
Daniel Vetter | 3ed4351 | 2017-05-31 11:21:46 +0200 | [diff] [blame] | 83 | #include <drm/drm_vblank.h> |
| 84 | #include <drm/drm_irq.h> |
Daniel Vetter | e4672e5 | 2017-08-02 13:56:01 +0200 | [diff] [blame^] | 85 | #include <drm/drm_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 87 | struct module; |
| 88 | |
Steffen Trumtrar | edb37a9 | 2012-10-28 18:28:06 +0100 | [diff] [blame] | 89 | struct device_node; |
Steffen Trumtrar | ebc64e4 | 2012-11-14 11:22:52 +0100 | [diff] [blame] | 90 | struct videomode; |
Maarten Lankhorst | 3aac450 | 2014-07-01 12:57:26 +0200 | [diff] [blame] | 91 | struct reservation_object; |
Maarten Lankhorst | b5e9c1a | 2014-01-09 11:03:14 +0100 | [diff] [blame] | 92 | struct dma_buf_attachment; |
Steffen Trumtrar | ebc64e4 | 2012-11-14 11:22:52 +0100 | [diff] [blame] | 93 | |
Daniel Vetter | 23ef59e | 2017-03-08 15:12:37 +0100 | [diff] [blame] | 94 | struct pci_dev; |
| 95 | struct pci_controller; |
| 96 | |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 97 | /* |
Robert Foss | 346fea6 | 2016-04-14 10:34:16 -0400 | [diff] [blame] | 98 | * The following categories are defined: |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 99 | * |
| 100 | * CORE: Used in the generic drm code: drm_ioctl.c, drm_mm.c, drm_memory.c, ... |
| 101 | * This is the category used by the DRM_DEBUG() macro. |
| 102 | * |
| 103 | * DRIVER: Used in the vendor specific part of the driver: i915, radeon, ... |
| 104 | * This is the category used by the DRM_DEBUG_DRIVER() macro. |
| 105 | * |
| 106 | * KMS: used in the modesetting code. |
| 107 | * This is the category used by the DRM_DEBUG_KMS() macro. |
| 108 | * |
| 109 | * PRIME: used in the prime code. |
| 110 | * This is the category used by the DRM_DEBUG_PRIME() macro. |
| 111 | * |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 112 | * ATOMIC: used in the atomic code. |
| 113 | * This is the category used by the DRM_DEBUG_ATOMIC() macro. |
| 114 | * |
Ville Syrjälä | 235fabe | 2015-10-09 22:57:37 +0300 | [diff] [blame] | 115 | * VBL: used for verbose debug message in the vblank code |
| 116 | * This is the category used by the DRM_DEBUG_VBL() macro. |
| 117 | * |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 118 | * Enabling verbose debug messages is done through the drm.debug parameter, |
| 119 | * each category being enabled by a bit. |
| 120 | * |
| 121 | * drm.debug=0x1 will enable CORE messages |
| 122 | * drm.debug=0x2 will enable DRIVER messages |
| 123 | * drm.debug=0x3 will enable CORE and DRIVER messages |
| 124 | * ... |
Ville Syrjälä | 235fabe | 2015-10-09 22:57:37 +0300 | [diff] [blame] | 125 | * drm.debug=0x3f will enable all messages |
Lespiau, Damien | 1414b76 | 2014-03-24 15:53:08 +0000 | [diff] [blame] | 126 | * |
| 127 | * An interesting feature is that it's possible to enable verbose logging at |
| 128 | * run-time by echoing the debug value in its sysfs node: |
| 129 | * # echo 0xf > /sys/module/drm/parameters/debug |
| 130 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 131 | #define DRM_UT_NONE 0x00 |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 132 | #define DRM_UT_CORE 0x01 |
| 133 | #define DRM_UT_DRIVER 0x02 |
| 134 | #define DRM_UT_KMS 0x04 |
Dave Airlie | 3248877 | 2011-11-25 15:21:02 +0000 | [diff] [blame] | 135 | #define DRM_UT_PRIME 0x08 |
Daniel Vetter | 17a38d9 | 2015-02-22 12:24:16 +0100 | [diff] [blame] | 136 | #define DRM_UT_ATOMIC 0x10 |
Ville Syrjälä | 235fabe | 2015-10-09 22:57:37 +0300 | [diff] [blame] | 137 | #define DRM_UT_VBL 0x20 |
Rob Clark | fceffb32 | 2016-11-05 11:08:09 -0400 | [diff] [blame] | 138 | #define DRM_UT_STATE 0x40 |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /***********************************************************************/ |
| 141 | /** \name DRM template customization defaults */ |
| 142 | /*@{*/ |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /***********************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | /** \name Macros to make printk easier */ |
| 146 | /*@{*/ |
| 147 | |
Dave Gordon | 30b0da8 | 2016-08-18 18:17:22 +0100 | [diff] [blame] | 148 | #define _DRM_PRINTK(once, level, fmt, ...) \ |
| 149 | do { \ |
| 150 | printk##once(KERN_##level "[" DRM_NAME "] " fmt, \ |
| 151 | ##__VA_ARGS__); \ |
| 152 | } while (0) |
| 153 | |
| 154 | #define DRM_INFO(fmt, ...) \ |
| 155 | _DRM_PRINTK(, INFO, fmt, ##__VA_ARGS__) |
| 156 | #define DRM_NOTE(fmt, ...) \ |
| 157 | _DRM_PRINTK(, NOTICE, fmt, ##__VA_ARGS__) |
| 158 | #define DRM_WARN(fmt, ...) \ |
| 159 | _DRM_PRINTK(, WARNING, fmt, ##__VA_ARGS__) |
| 160 | |
| 161 | #define DRM_INFO_ONCE(fmt, ...) \ |
| 162 | _DRM_PRINTK(_once, INFO, fmt, ##__VA_ARGS__) |
| 163 | #define DRM_NOTE_ONCE(fmt, ...) \ |
| 164 | _DRM_PRINTK(_once, NOTICE, fmt, ##__VA_ARGS__) |
| 165 | #define DRM_WARN_ONCE(fmt, ...) \ |
| 166 | _DRM_PRINTK(_once, WARNING, fmt, ##__VA_ARGS__) |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | /** |
| 169 | * Error output. |
| 170 | * |
| 171 | * \param fmt printf() like format string. |
| 172 | * \param arg arguments |
| 173 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 174 | #define DRM_DEV_ERROR(dev, fmt, ...) \ |
| 175 | drm_dev_printk(dev, KERN_ERR, DRM_UT_NONE, __func__, " *ERROR*",\ |
| 176 | fmt, ##__VA_ARGS__) |
| 177 | #define DRM_ERROR(fmt, ...) \ |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 178 | drm_printk(KERN_ERR, DRM_UT_NONE, fmt, ##__VA_ARGS__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 180 | /** |
| 181 | * Rate limited error output. Like DRM_ERROR() but won't flood the log. |
| 182 | * |
| 183 | * \param fmt printf() like format string. |
| 184 | * \param arg arguments |
| 185 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 186 | #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \ |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 187 | ({ \ |
| 188 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 189 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 190 | DEFAULT_RATELIMIT_BURST); \ |
| 191 | \ |
| 192 | if (__ratelimit(&_rs)) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 193 | DRM_DEV_ERROR(dev, fmt, ##__VA_ARGS__); \ |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 194 | }) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 195 | #define DRM_ERROR_RATELIMITED(fmt, ...) \ |
| 196 | DRM_DEV_ERROR_RATELIMITED(NULL, fmt, ##__VA_ARGS__) |
Rob Clark | 5d13d42 | 2013-11-21 14:29:51 -0500 | [diff] [blame] | 197 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 198 | #define DRM_DEV_INFO(dev, fmt, ...) \ |
| 199 | drm_dev_printk(dev, KERN_INFO, DRM_UT_NONE, __func__, "", fmt, \ |
| 200 | ##__VA_ARGS__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 202 | #define DRM_DEV_INFO_ONCE(dev, fmt, ...) \ |
| 203 | ({ \ |
| 204 | static bool __print_once __read_mostly; \ |
| 205 | if (!__print_once) { \ |
| 206 | __print_once = true; \ |
| 207 | DRM_DEV_INFO(dev, fmt, ##__VA_ARGS__); \ |
| 208 | } \ |
| 209 | }) |
Jani Nikula | 48b8f63 | 2014-01-31 15:49:07 +0200 | [diff] [blame] | 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | /** |
| 212 | * Debug output. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 213 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | * \param fmt printf() like format string. |
| 215 | * \param arg arguments |
| 216 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 217 | #define DRM_DEV_DEBUG(dev, fmt, args...) \ |
| 218 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_CORE, __func__, "", fmt, \ |
| 219 | ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 220 | #define DRM_DEBUG(fmt, ...) \ |
| 221 | drm_printk(KERN_DEBUG, DRM_UT_CORE, fmt, ##__VA_ARGS__) |
yakui_zhao | 4fefcb2 | 2009-06-02 14:09:47 +0800 | [diff] [blame] | 222 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 223 | #define DRM_DEV_DEBUG_DRIVER(dev, fmt, args...) \ |
| 224 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_DRIVER, __func__, "", \ |
| 225 | fmt, ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 226 | #define DRM_DEBUG_DRIVER(fmt, ...) \ |
| 227 | drm_printk(KERN_DEBUG, DRM_UT_DRIVER, fmt, ##__VA_ARGS__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 229 | #define DRM_DEV_DEBUG_KMS(dev, fmt, args...) \ |
| 230 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_KMS, __func__, "", fmt, \ |
| 231 | ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 232 | #define DRM_DEBUG_KMS(fmt, ...) \ |
| 233 | drm_printk(KERN_DEBUG, DRM_UT_KMS, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 234 | |
| 235 | #define DRM_DEV_DEBUG_PRIME(dev, fmt, args...) \ |
| 236 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_PRIME, __func__, "", \ |
| 237 | fmt, ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 238 | #define DRM_DEBUG_PRIME(fmt, ...) \ |
| 239 | drm_printk(KERN_DEBUG, DRM_UT_PRIME, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 240 | |
| 241 | #define DRM_DEV_DEBUG_ATOMIC(dev, fmt, args...) \ |
| 242 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ATOMIC, __func__, "", \ |
| 243 | fmt, ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 244 | #define DRM_DEBUG_ATOMIC(fmt, ...) \ |
| 245 | drm_printk(KERN_DEBUG, DRM_UT_ATOMIC, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 246 | |
| 247 | #define DRM_DEV_DEBUG_VBL(dev, fmt, args...) \ |
| 248 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_VBL, __func__, "", fmt, \ |
| 249 | ##args) |
Joe Perches | 6bd488d | 2016-09-25 19:18:34 -0700 | [diff] [blame] | 250 | #define DRM_DEBUG_VBL(fmt, ...) \ |
| 251 | drm_printk(KERN_DEBUG, DRM_UT_VBL, fmt, ##__VA_ARGS__) |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 252 | |
| 253 | #define _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, level, fmt, args...) \ |
| 254 | ({ \ |
| 255 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 256 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 257 | DEFAULT_RATELIMIT_BURST); \ |
| 258 | if (__ratelimit(&_rs)) \ |
| 259 | drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ ## level, \ |
| 260 | __func__, "", fmt, ##args); \ |
| 261 | }) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 262 | |
| 263 | /** |
| 264 | * Rate limited debug output. Like DRM_DEBUG() but won't flood the log. |
| 265 | * |
| 266 | * \param fmt printf() like format string. |
| 267 | * \param arg arguments |
| 268 | */ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 269 | #define DRM_DEV_DEBUG_RATELIMITED(dev, fmt, args...) \ |
| 270 | DEV__DRM_DEFINE_DEBUG_RATELIMITED(dev, CORE, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 271 | #define DRM_DEBUG_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 272 | DRM_DEV_DEBUG_RATELIMITED(NULL, fmt, ##args) |
| 273 | #define DRM_DEV_DEBUG_DRIVER_RATELIMITED(dev, fmt, args...) \ |
| 274 | _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, DRIVER, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 275 | #define DRM_DEBUG_DRIVER_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 276 | DRM_DEV_DEBUG_DRIVER_RATELIMITED(NULL, fmt, ##args) |
| 277 | #define DRM_DEV_DEBUG_KMS_RATELIMITED(dev, fmt, args...) \ |
| 278 | _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, KMS, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 279 | #define DRM_DEBUG_KMS_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 280 | DRM_DEV_DEBUG_KMS_RATELIMITED(NULL, fmt, ##args) |
| 281 | #define DRM_DEV_DEBUG_PRIME_RATELIMITED(dev, fmt, args...) \ |
| 282 | _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, PRIME, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 283 | #define DRM_DEBUG_PRIME_RATELIMITED(fmt, args...) \ |
Sean Paul | c4e68a5 | 2016-08-15 16:18:04 -0700 | [diff] [blame] | 284 | DRM_DEV_DEBUG_PRIME_RATELIMITED(NULL, fmt, ##args) |
Lyude | 27528c6 | 2016-08-05 20:30:38 -0400 | [diff] [blame] | 285 | |
Rob Clark | 65c7dc1 | 2016-11-05 11:08:06 -0400 | [diff] [blame] | 286 | /* Format strings and argument splitters to simplify printing |
| 287 | * various "complex" objects |
| 288 | */ |
Rob Clark | 65c7dc1 | 2016-11-05 11:08:06 -0400 | [diff] [blame] | 289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | /*@}*/ |
| 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | /***********************************************************************/ |
| 293 | /** \name Internal types and structures */ |
| 294 | /*@{*/ |
| 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | #define DRM_IF_VERSION(maj, min) (maj << 16 | min) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Ben Gamari | 955b12d | 2009-02-17 20:08:49 -0500 | [diff] [blame] | 299 | /** |
Dhinakaran Pandiyan | a743d75 | 2016-12-22 00:50:42 -0800 | [diff] [blame] | 300 | * drm_drv_uses_atomic_modeset - check if the driver implements |
| 301 | * atomic_commit() |
| 302 | * @dev: DRM device |
| 303 | * |
| 304 | * This check is useful if drivers do not have DRIVER_ATOMIC set but |
| 305 | * have atomic modesetting internally implemented. |
| 306 | */ |
| 307 | static inline bool drm_drv_uses_atomic_modeset(struct drm_device *dev) |
| 308 | { |
| 309 | return dev->mode_config.funcs->atomic_commit != NULL; |
| 310 | } |
| 311 | |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 312 | #define DRM_SWITCH_POWER_ON 0 |
| 313 | #define DRM_SWITCH_POWER_OFF 1 |
| 314 | #define DRM_SWITCH_POWER_CHANGING 2 |
Dave Airlie | 13bb9cc | 2012-09-12 15:55:05 +1000 | [diff] [blame] | 315 | #define DRM_SWITCH_POWER_DYNAMIC_OFF 3 |
Dave Airlie | 5bcf719 | 2010-12-07 09:20:40 +1000 | [diff] [blame] | 316 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 317 | static __inline__ int drm_core_check_feature(struct drm_device *dev, |
| 318 | int feature) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | { |
| 320 | return ((dev->driver->driver_features & feature) ? 1 : 0); |
| 321 | } |
| 322 | |
Dave Airlie | 2c07a21 | 2012-02-20 14:18:07 +0000 | [diff] [blame] | 323 | static inline void drm_device_set_unplugged(struct drm_device *dev) |
| 324 | { |
| 325 | smp_wmb(); |
| 326 | atomic_set(&dev->unplugged, 1); |
| 327 | } |
| 328 | |
| 329 | static inline int drm_device_is_unplugged(struct drm_device *dev) |
| 330 | { |
| 331 | int ret = atomic_read(&dev->unplugged); |
| 332 | smp_rmb(); |
| 333 | return ret; |
| 334 | } |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | /******************************************************************/ |
| 337 | /** \name Internal function definitions */ |
| 338 | /*@{*/ |
| 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | /* Driver support (drm_drv.h) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Thomas Hellstrom | 040ac32 | 2007-03-23 13:28:33 +1100 | [diff] [blame] | 342 | /* |
| 343 | * These are exported to drivers so that they can implement fencing using |
| 344 | * DMA quiscent + idle. DMA quiescent usually requires the hardware lock. |
| 345 | */ |
| 346 | |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 347 | /*@}*/ |
| 348 | |
Dave Airlie | cc1f719 | 2012-01-05 09:55:22 +0000 | [diff] [blame] | 349 | /* returns true if currently okay to sleep */ |
| 350 | static __inline__ bool drm_can_sleep(void) |
| 351 | { |
| 352 | if (in_atomic() || in_dbg_master() || irqs_disabled()) |
| 353 | return false; |
| 354 | return true; |
| 355 | } |
| 356 | |
Jani Nikula | 373701b | 2015-11-24 21:21:55 +0200 | [diff] [blame] | 357 | /* helper for handling conditionals in various for_each macros */ |
| 358 | #define for_each_if(condition) if (!(condition)) {} else |
| 359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | #endif |