drmP.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. /*
  2. * Internal Header for the Direct Rendering Manager
  3. *
  4. * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  5. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  6. * Copyright (c) 2009-2010, Code Aurora Forum.
  7. * All rights reserved.
  8. *
  9. * Author: Rickard E. (Rik) Faith <faith@valinux.com>
  10. * Author: Gareth Hughes <gareth@valinux.com>
  11. *
  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. #ifndef _DRM_P_H_
  32. #define _DRM_P_H_
  33. #include <linux/agp_backend.h>
  34. #include <linux/cdev.h>
  35. #include <linux/dma-mapping.h>
  36. #include <linux/file.h>
  37. #include <linux/fs.h>
  38. #include <linux/highmem.h>
  39. #include <linux/idr.h>
  40. #include <linux/init.h>
  41. #include <linux/io.h>
  42. #include <linux/jiffies.h>
  43. #include <linux/kernel.h>
  44. #include <linux/kref.h>
  45. #include <linux/miscdevice.h>
  46. #include <linux/mm.h>
  47. #include <linux/mutex.h>
  48. #include <linux/platform_device.h>
  49. #include <linux/poll.h>
  50. #include <linux/ratelimit.h>
  51. #include <linux/sched.h>
  52. #include <linux/slab.h>
  53. #include <linux/types.h>
  54. #include <linux/vmalloc.h>
  55. #include <linux/workqueue.h>
  56. #include <linux/dma-fence.h>
  57. #include <linux/module.h>
  58. #include <asm/mman.h>
  59. #include <asm/pgalloc.h>
  60. #include <linux/uaccess.h>
  61. #include <uapi/drm/drm.h>
  62. #include <uapi/drm/drm_mode.h>
  63. #include <drm/drm_agpsupport.h>
  64. #include <drm/drm_crtc.h>
  65. #include <drm/drm_fourcc.h>
  66. #include <drm/drm_global.h>
  67. #include <drm/drm_hashtab.h>
  68. #include <drm/drm_mm.h>
  69. #include <drm/drm_os_linux.h>
  70. #include <drm/drm_sarea.h>
  71. #include <drm/drm_drv.h>
  72. #include <drm/drm_prime.h>
  73. #include <drm/drm_pci.h>
  74. #include <drm/drm_file.h>
  75. #include <drm/drm_debugfs.h>
  76. #include <drm/drm_ioctl.h>
  77. #include <drm/drm_sysfs.h>
  78. #include <drm/drm_vblank.h>
  79. #include <drm/drm_irq.h>
  80. #include <drm/drm_device.h>
  81. struct module;
  82. struct device_node;
  83. struct videomode;
  84. struct reservation_object;
  85. struct dma_buf_attachment;
  86. struct pci_dev;
  87. struct pci_controller;
  88. /*
  89. * The following categories are defined:
  90. *
  91. * CORE: Used in the generic drm code: drm_ioctl.c, drm_mm.c, drm_memory.c, ...
  92. * This is the category used by the DRM_DEBUG() macro.
  93. *
  94. * DRIVER: Used in the vendor specific part of the driver: i915, radeon, ...
  95. * This is the category used by the DRM_DEBUG_DRIVER() macro.
  96. *
  97. * KMS: used in the modesetting code.
  98. * This is the category used by the DRM_DEBUG_KMS() macro.
  99. *
  100. * PRIME: used in the prime code.
  101. * This is the category used by the DRM_DEBUG_PRIME() macro.
  102. *
  103. * ATOMIC: used in the atomic code.
  104. * This is the category used by the DRM_DEBUG_ATOMIC() macro.
  105. *
  106. * VBL: used for verbose debug message in the vblank code
  107. * This is the category used by the DRM_DEBUG_VBL() macro.
  108. *
  109. * Enabling verbose debug messages is done through the drm.debug parameter,
  110. * each category being enabled by a bit.
  111. *
  112. * drm.debug=0x1 will enable CORE messages
  113. * drm.debug=0x2 will enable DRIVER messages
  114. * drm.debug=0x3 will enable CORE and DRIVER messages
  115. * ...
  116. * drm.debug=0x3f will enable all messages
  117. *
  118. * An interesting feature is that it's possible to enable verbose logging at
  119. * run-time by echoing the debug value in its sysfs node:
  120. * # echo 0xf > /sys/module/drm/parameters/debug
  121. */
  122. #define DRM_UT_NONE 0x00
  123. #define DRM_UT_CORE 0x01
  124. #define DRM_UT_DRIVER 0x02
  125. #define DRM_UT_KMS 0x04
  126. #define DRM_UT_PRIME 0x08
  127. #define DRM_UT_ATOMIC 0x10
  128. #define DRM_UT_VBL 0x20
  129. #define DRM_UT_STATE 0x40
  130. /***********************************************************************/
  131. /** \name DRM template customization defaults */
  132. /*@{*/
  133. /***********************************************************************/
  134. /** \name Macros to make printk easier */
  135. /*@{*/
  136. #define _DRM_PRINTK(once, level, fmt, ...) \
  137. do { \
  138. printk##once(KERN_##level "[" DRM_NAME "] " fmt, \
  139. ##__VA_ARGS__); \
  140. } while (0)
  141. #define DRM_INFO(fmt, ...) \
  142. _DRM_PRINTK(, INFO, fmt, ##__VA_ARGS__)
  143. #define DRM_NOTE(fmt, ...) \
  144. _DRM_PRINTK(, NOTICE, fmt, ##__VA_ARGS__)
  145. #define DRM_WARN(fmt, ...) \
  146. _DRM_PRINTK(, WARNING, fmt, ##__VA_ARGS__)
  147. #define DRM_INFO_ONCE(fmt, ...) \
  148. _DRM_PRINTK(_once, INFO, fmt, ##__VA_ARGS__)
  149. #define DRM_NOTE_ONCE(fmt, ...) \
  150. _DRM_PRINTK(_once, NOTICE, fmt, ##__VA_ARGS__)
  151. #define DRM_WARN_ONCE(fmt, ...) \
  152. _DRM_PRINTK(_once, WARNING, fmt, ##__VA_ARGS__)
  153. /**
  154. * Error output.
  155. *
  156. * \param fmt printf() like format string.
  157. * \param arg arguments
  158. */
  159. #define DRM_DEV_ERROR(dev, fmt, ...) \
  160. drm_dev_printk(dev, KERN_ERR, DRM_UT_NONE, __func__, " *ERROR*",\
  161. fmt, ##__VA_ARGS__)
  162. #define DRM_ERROR(fmt, ...) \
  163. drm_printk(KERN_ERR, DRM_UT_NONE, fmt, ##__VA_ARGS__)
  164. /**
  165. * Rate limited error output. Like DRM_ERROR() but won't flood the log.
  166. *
  167. * \param fmt printf() like format string.
  168. * \param arg arguments
  169. */
  170. #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \
  171. ({ \
  172. static DEFINE_RATELIMIT_STATE(_rs, \
  173. DEFAULT_RATELIMIT_INTERVAL, \
  174. DEFAULT_RATELIMIT_BURST); \
  175. \
  176. if (__ratelimit(&_rs)) \
  177. DRM_DEV_ERROR(dev, fmt, ##__VA_ARGS__); \
  178. })
  179. #define DRM_ERROR_RATELIMITED(fmt, ...) \
  180. DRM_DEV_ERROR_RATELIMITED(NULL, fmt, ##__VA_ARGS__)
  181. #define DRM_DEV_INFO(dev, fmt, ...) \
  182. drm_dev_printk(dev, KERN_INFO, DRM_UT_NONE, __func__, "", fmt, \
  183. ##__VA_ARGS__)
  184. #define DRM_DEV_INFO_ONCE(dev, fmt, ...) \
  185. ({ \
  186. static bool __print_once __read_mostly; \
  187. if (!__print_once) { \
  188. __print_once = true; \
  189. DRM_DEV_INFO(dev, fmt, ##__VA_ARGS__); \
  190. } \
  191. })
  192. /**
  193. * Debug output.
  194. *
  195. * \param fmt printf() like format string.
  196. * \param arg arguments
  197. */
  198. #define DRM_DEV_DEBUG(dev, fmt, args...) \
  199. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_CORE, __func__, "", fmt, \
  200. ##args)
  201. #define DRM_DEBUG(fmt, ...) \
  202. drm_printk(KERN_DEBUG, DRM_UT_CORE, fmt, ##__VA_ARGS__)
  203. #define DRM_DEV_DEBUG_DRIVER(dev, fmt, args...) \
  204. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_DRIVER, __func__, "", \
  205. fmt, ##args)
  206. #define DRM_DEBUG_DRIVER(fmt, ...) \
  207. drm_printk(KERN_DEBUG, DRM_UT_DRIVER, fmt, ##__VA_ARGS__)
  208. #define DRM_DEV_DEBUG_KMS(dev, fmt, args...) \
  209. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_KMS, __func__, "", fmt, \
  210. ##args)
  211. #define DRM_DEBUG_KMS(fmt, ...) \
  212. drm_printk(KERN_DEBUG, DRM_UT_KMS, fmt, ##__VA_ARGS__)
  213. #define DRM_DEV_DEBUG_PRIME(dev, fmt, args...) \
  214. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_PRIME, __func__, "", \
  215. fmt, ##args)
  216. #define DRM_DEBUG_PRIME(fmt, ...) \
  217. drm_printk(KERN_DEBUG, DRM_UT_PRIME, fmt, ##__VA_ARGS__)
  218. #define DRM_DEV_DEBUG_ATOMIC(dev, fmt, args...) \
  219. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ATOMIC, __func__, "", \
  220. fmt, ##args)
  221. #define DRM_DEBUG_ATOMIC(fmt, ...) \
  222. drm_printk(KERN_DEBUG, DRM_UT_ATOMIC, fmt, ##__VA_ARGS__)
  223. #define DRM_DEV_DEBUG_VBL(dev, fmt, args...) \
  224. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_VBL, __func__, "", fmt, \
  225. ##args)
  226. #define DRM_DEBUG_VBL(fmt, ...) \
  227. drm_printk(KERN_DEBUG, DRM_UT_VBL, fmt, ##__VA_ARGS__)
  228. #define _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, level, fmt, args...) \
  229. ({ \
  230. static DEFINE_RATELIMIT_STATE(_rs, \
  231. DEFAULT_RATELIMIT_INTERVAL, \
  232. DEFAULT_RATELIMIT_BURST); \
  233. if (__ratelimit(&_rs)) \
  234. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ ## level, \
  235. __func__, "", fmt, ##args); \
  236. })
  237. /**
  238. * Rate limited debug output. Like DRM_DEBUG() but won't flood the log.
  239. *
  240. * \param fmt printf() like format string.
  241. * \param arg arguments
  242. */
  243. #define DRM_DEV_DEBUG_RATELIMITED(dev, fmt, args...) \
  244. DEV__DRM_DEFINE_DEBUG_RATELIMITED(dev, CORE, fmt, ##args)
  245. #define DRM_DEBUG_RATELIMITED(fmt, args...) \
  246. DRM_DEV_DEBUG_RATELIMITED(NULL, fmt, ##args)
  247. #define DRM_DEV_DEBUG_DRIVER_RATELIMITED(dev, fmt, args...) \
  248. _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, DRIVER, fmt, ##args)
  249. #define DRM_DEBUG_DRIVER_RATELIMITED(fmt, args...) \
  250. DRM_DEV_DEBUG_DRIVER_RATELIMITED(NULL, fmt, ##args)
  251. #define DRM_DEV_DEBUG_KMS_RATELIMITED(dev, fmt, args...) \
  252. _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, KMS, fmt, ##args)
  253. #define DRM_DEBUG_KMS_RATELIMITED(fmt, args...) \
  254. DRM_DEV_DEBUG_KMS_RATELIMITED(NULL, fmt, ##args)
  255. #define DRM_DEV_DEBUG_PRIME_RATELIMITED(dev, fmt, args...) \
  256. _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, PRIME, fmt, ##args)
  257. #define DRM_DEBUG_PRIME_RATELIMITED(fmt, args...) \
  258. DRM_DEV_DEBUG_PRIME_RATELIMITED(NULL, fmt, ##args)
  259. /* Format strings and argument splitters to simplify printing
  260. * various "complex" objects
  261. */
  262. /*@}*/
  263. /***********************************************************************/
  264. /** \name Internal types and structures */
  265. /*@{*/
  266. #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
  267. /**
  268. * drm_drv_uses_atomic_modeset - check if the driver implements
  269. * atomic_commit()
  270. * @dev: DRM device
  271. *
  272. * This check is useful if drivers do not have DRIVER_ATOMIC set but
  273. * have atomic modesetting internally implemented.
  274. */
  275. static inline bool drm_drv_uses_atomic_modeset(struct drm_device *dev)
  276. {
  277. return dev->mode_config.funcs->atomic_commit != NULL;
  278. }
  279. #define DRM_SWITCH_POWER_ON 0
  280. #define DRM_SWITCH_POWER_OFF 1
  281. #define DRM_SWITCH_POWER_CHANGING 2
  282. #define DRM_SWITCH_POWER_DYNAMIC_OFF 3
  283. static __inline__ int drm_core_check_feature(struct drm_device *dev,
  284. int feature)
  285. {
  286. return ((dev->driver->driver_features & feature) ? 1 : 0);
  287. }
  288. /******************************************************************/
  289. /** \name Internal function definitions */
  290. /*@{*/
  291. /* Driver support (drm_drv.h) */
  292. /*
  293. * These are exported to drivers so that they can implement fencing using
  294. * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
  295. */
  296. /*@}*/
  297. /* returns true if currently okay to sleep */
  298. static __inline__ bool drm_can_sleep(void)
  299. {
  300. if (in_atomic() || in_dbg_master() || irqs_disabled())
  301. return false;
  302. return true;
  303. }
  304. /* helper for handling conditionals in various for_each macros */
  305. #define for_each_if(condition) if (!(condition)) {} else
  306. #endif