drmP.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  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. struct module;
  81. struct drm_device;
  82. struct drm_agp_head;
  83. struct drm_local_map;
  84. struct drm_device_dma;
  85. struct drm_gem_object;
  86. struct drm_master;
  87. struct drm_vblank_crtc;
  88. struct drm_vma_offset_manager;
  89. struct device_node;
  90. struct videomode;
  91. struct reservation_object;
  92. struct dma_buf_attachment;
  93. struct pci_dev;
  94. struct pci_controller;
  95. /*
  96. * The following categories are defined:
  97. *
  98. * CORE: Used in the generic drm code: drm_ioctl.c, drm_mm.c, drm_memory.c, ...
  99. * This is the category used by the DRM_DEBUG() macro.
  100. *
  101. * DRIVER: Used in the vendor specific part of the driver: i915, radeon, ...
  102. * This is the category used by the DRM_DEBUG_DRIVER() macro.
  103. *
  104. * KMS: used in the modesetting code.
  105. * This is the category used by the DRM_DEBUG_KMS() macro.
  106. *
  107. * PRIME: used in the prime code.
  108. * This is the category used by the DRM_DEBUG_PRIME() macro.
  109. *
  110. * ATOMIC: used in the atomic code.
  111. * This is the category used by the DRM_DEBUG_ATOMIC() macro.
  112. *
  113. * VBL: used for verbose debug message in the vblank code
  114. * This is the category used by the DRM_DEBUG_VBL() macro.
  115. *
  116. * Enabling verbose debug messages is done through the drm.debug parameter,
  117. * each category being enabled by a bit.
  118. *
  119. * drm.debug=0x1 will enable CORE messages
  120. * drm.debug=0x2 will enable DRIVER messages
  121. * drm.debug=0x3 will enable CORE and DRIVER messages
  122. * ...
  123. * drm.debug=0x3f will enable all messages
  124. *
  125. * An interesting feature is that it's possible to enable verbose logging at
  126. * run-time by echoing the debug value in its sysfs node:
  127. * # echo 0xf > /sys/module/drm/parameters/debug
  128. */
  129. #define DRM_UT_NONE 0x00
  130. #define DRM_UT_CORE 0x01
  131. #define DRM_UT_DRIVER 0x02
  132. #define DRM_UT_KMS 0x04
  133. #define DRM_UT_PRIME 0x08
  134. #define DRM_UT_ATOMIC 0x10
  135. #define DRM_UT_VBL 0x20
  136. #define DRM_UT_STATE 0x40
  137. /***********************************************************************/
  138. /** \name DRM template customization defaults */
  139. /*@{*/
  140. /***********************************************************************/
  141. /** \name Macros to make printk easier */
  142. /*@{*/
  143. #define _DRM_PRINTK(once, level, fmt, ...) \
  144. do { \
  145. printk##once(KERN_##level "[" DRM_NAME "] " fmt, \
  146. ##__VA_ARGS__); \
  147. } while (0)
  148. #define DRM_INFO(fmt, ...) \
  149. _DRM_PRINTK(, INFO, fmt, ##__VA_ARGS__)
  150. #define DRM_NOTE(fmt, ...) \
  151. _DRM_PRINTK(, NOTICE, fmt, ##__VA_ARGS__)
  152. #define DRM_WARN(fmt, ...) \
  153. _DRM_PRINTK(, WARNING, fmt, ##__VA_ARGS__)
  154. #define DRM_INFO_ONCE(fmt, ...) \
  155. _DRM_PRINTK(_once, INFO, fmt, ##__VA_ARGS__)
  156. #define DRM_NOTE_ONCE(fmt, ...) \
  157. _DRM_PRINTK(_once, NOTICE, fmt, ##__VA_ARGS__)
  158. #define DRM_WARN_ONCE(fmt, ...) \
  159. _DRM_PRINTK(_once, WARNING, fmt, ##__VA_ARGS__)
  160. /**
  161. * Error output.
  162. *
  163. * \param fmt printf() like format string.
  164. * \param arg arguments
  165. */
  166. #define DRM_DEV_ERROR(dev, fmt, ...) \
  167. drm_dev_printk(dev, KERN_ERR, DRM_UT_NONE, __func__, " *ERROR*",\
  168. fmt, ##__VA_ARGS__)
  169. #define DRM_ERROR(fmt, ...) \
  170. drm_printk(KERN_ERR, DRM_UT_NONE, fmt, ##__VA_ARGS__)
  171. /**
  172. * Rate limited error output. Like DRM_ERROR() but won't flood the log.
  173. *
  174. * \param fmt printf() like format string.
  175. * \param arg arguments
  176. */
  177. #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \
  178. ({ \
  179. static DEFINE_RATELIMIT_STATE(_rs, \
  180. DEFAULT_RATELIMIT_INTERVAL, \
  181. DEFAULT_RATELIMIT_BURST); \
  182. \
  183. if (__ratelimit(&_rs)) \
  184. DRM_DEV_ERROR(dev, fmt, ##__VA_ARGS__); \
  185. })
  186. #define DRM_ERROR_RATELIMITED(fmt, ...) \
  187. DRM_DEV_ERROR_RATELIMITED(NULL, fmt, ##__VA_ARGS__)
  188. #define DRM_DEV_INFO(dev, fmt, ...) \
  189. drm_dev_printk(dev, KERN_INFO, DRM_UT_NONE, __func__, "", fmt, \
  190. ##__VA_ARGS__)
  191. #define DRM_DEV_INFO_ONCE(dev, fmt, ...) \
  192. ({ \
  193. static bool __print_once __read_mostly; \
  194. if (!__print_once) { \
  195. __print_once = true; \
  196. DRM_DEV_INFO(dev, fmt, ##__VA_ARGS__); \
  197. } \
  198. })
  199. /**
  200. * Debug output.
  201. *
  202. * \param fmt printf() like format string.
  203. * \param arg arguments
  204. */
  205. #define DRM_DEV_DEBUG(dev, fmt, args...) \
  206. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_CORE, __func__, "", fmt, \
  207. ##args)
  208. #define DRM_DEBUG(fmt, ...) \
  209. drm_printk(KERN_DEBUG, DRM_UT_CORE, fmt, ##__VA_ARGS__)
  210. #define DRM_DEV_DEBUG_DRIVER(dev, fmt, args...) \
  211. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_DRIVER, __func__, "", \
  212. fmt, ##args)
  213. #define DRM_DEBUG_DRIVER(fmt, ...) \
  214. drm_printk(KERN_DEBUG, DRM_UT_DRIVER, fmt, ##__VA_ARGS__)
  215. #define DRM_DEV_DEBUG_KMS(dev, fmt, args...) \
  216. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_KMS, __func__, "", fmt, \
  217. ##args)
  218. #define DRM_DEBUG_KMS(fmt, ...) \
  219. drm_printk(KERN_DEBUG, DRM_UT_KMS, fmt, ##__VA_ARGS__)
  220. #define DRM_DEV_DEBUG_PRIME(dev, fmt, args...) \
  221. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_PRIME, __func__, "", \
  222. fmt, ##args)
  223. #define DRM_DEBUG_PRIME(fmt, ...) \
  224. drm_printk(KERN_DEBUG, DRM_UT_PRIME, fmt, ##__VA_ARGS__)
  225. #define DRM_DEV_DEBUG_ATOMIC(dev, fmt, args...) \
  226. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ATOMIC, __func__, "", \
  227. fmt, ##args)
  228. #define DRM_DEBUG_ATOMIC(fmt, ...) \
  229. drm_printk(KERN_DEBUG, DRM_UT_ATOMIC, fmt, ##__VA_ARGS__)
  230. #define DRM_DEV_DEBUG_VBL(dev, fmt, args...) \
  231. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_VBL, __func__, "", fmt, \
  232. ##args)
  233. #define DRM_DEBUG_VBL(fmt, ...) \
  234. drm_printk(KERN_DEBUG, DRM_UT_VBL, fmt, ##__VA_ARGS__)
  235. #define _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, level, fmt, args...) \
  236. ({ \
  237. static DEFINE_RATELIMIT_STATE(_rs, \
  238. DEFAULT_RATELIMIT_INTERVAL, \
  239. DEFAULT_RATELIMIT_BURST); \
  240. if (__ratelimit(&_rs)) \
  241. drm_dev_printk(dev, KERN_DEBUG, DRM_UT_ ## level, \
  242. __func__, "", fmt, ##args); \
  243. })
  244. /**
  245. * Rate limited debug output. Like DRM_DEBUG() but won't flood the log.
  246. *
  247. * \param fmt printf() like format string.
  248. * \param arg arguments
  249. */
  250. #define DRM_DEV_DEBUG_RATELIMITED(dev, fmt, args...) \
  251. DEV__DRM_DEFINE_DEBUG_RATELIMITED(dev, CORE, fmt, ##args)
  252. #define DRM_DEBUG_RATELIMITED(fmt, args...) \
  253. DRM_DEV_DEBUG_RATELIMITED(NULL, fmt, ##args)
  254. #define DRM_DEV_DEBUG_DRIVER_RATELIMITED(dev, fmt, args...) \
  255. _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, DRIVER, fmt, ##args)
  256. #define DRM_DEBUG_DRIVER_RATELIMITED(fmt, args...) \
  257. DRM_DEV_DEBUG_DRIVER_RATELIMITED(NULL, fmt, ##args)
  258. #define DRM_DEV_DEBUG_KMS_RATELIMITED(dev, fmt, args...) \
  259. _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, KMS, fmt, ##args)
  260. #define DRM_DEBUG_KMS_RATELIMITED(fmt, args...) \
  261. DRM_DEV_DEBUG_KMS_RATELIMITED(NULL, fmt, ##args)
  262. #define DRM_DEV_DEBUG_PRIME_RATELIMITED(dev, fmt, args...) \
  263. _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, PRIME, fmt, ##args)
  264. #define DRM_DEBUG_PRIME_RATELIMITED(fmt, args...) \
  265. DRM_DEV_DEBUG_PRIME_RATELIMITED(NULL, fmt, ##args)
  266. /* Format strings and argument splitters to simplify printing
  267. * various "complex" objects
  268. */
  269. /*@}*/
  270. /***********************************************************************/
  271. /** \name Internal types and structures */
  272. /*@{*/
  273. #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
  274. /**
  275. * DRM device structure. This structure represent a complete card that
  276. * may contain multiple heads.
  277. */
  278. struct drm_device {
  279. struct list_head legacy_dev_list;/**< list of devices per driver for stealth attach cleanup */
  280. int if_version; /**< Highest interface version set */
  281. /** \name Lifetime Management */
  282. /*@{ */
  283. struct kref ref; /**< Object ref-count */
  284. struct device *dev; /**< Device structure of bus-device */
  285. struct drm_driver *driver; /**< DRM driver managing the device */
  286. void *dev_private; /**< DRM driver private data */
  287. struct drm_minor *control; /**< Control node */
  288. struct drm_minor *primary; /**< Primary node */
  289. struct drm_minor *render; /**< Render node */
  290. bool registered;
  291. /* currently active master for this device. Protected by master_mutex */
  292. struct drm_master *master;
  293. atomic_t unplugged; /**< Flag whether dev is dead */
  294. struct inode *anon_inode; /**< inode for private address-space */
  295. char *unique; /**< unique name of the device */
  296. /*@} */
  297. /** \name Locks */
  298. /*@{ */
  299. struct mutex struct_mutex; /**< For others */
  300. struct mutex master_mutex; /**< For drm_minor::master and drm_file::is_master */
  301. /*@} */
  302. /** \name Usage Counters */
  303. /*@{ */
  304. int open_count; /**< Outstanding files open, protected by drm_global_mutex. */
  305. spinlock_t buf_lock; /**< For drm_device::buf_use and a few other things. */
  306. int buf_use; /**< Buffers in use -- cannot alloc */
  307. atomic_t buf_alloc; /**< Buffer allocation in progress */
  308. /*@} */
  309. struct mutex filelist_mutex;
  310. struct list_head filelist;
  311. /** \name Memory management */
  312. /*@{ */
  313. struct list_head maplist; /**< Linked list of regions */
  314. struct drm_open_hash map_hash; /**< User token hash table for maps */
  315. /** \name Context handle management */
  316. /*@{ */
  317. struct list_head ctxlist; /**< Linked list of context handles */
  318. struct mutex ctxlist_mutex; /**< For ctxlist */
  319. struct idr ctx_idr;
  320. struct list_head vmalist; /**< List of vmas (for debugging) */
  321. /*@} */
  322. /** \name DMA support */
  323. /*@{ */
  324. struct drm_device_dma *dma; /**< Optional pointer for DMA support */
  325. /*@} */
  326. /** \name Context support */
  327. /*@{ */
  328. __volatile__ long context_flag; /**< Context swapping flag */
  329. int last_context; /**< Last current context */
  330. /*@} */
  331. /**
  332. * @irq_enabled:
  333. *
  334. * Indicates that interrupt handling is enabled, specifically vblank
  335. * handling. Drivers which don't use drm_irq_install() need to set this
  336. * to true manually.
  337. */
  338. bool irq_enabled;
  339. int irq;
  340. /*
  341. * If true, vblank interrupt will be disabled immediately when the
  342. * refcount drops to zero, as opposed to via the vblank disable
  343. * timer.
  344. * This can be set to true it the hardware has a working vblank
  345. * counter and the driver uses drm_vblank_on() and drm_vblank_off()
  346. * appropriately.
  347. */
  348. bool vblank_disable_immediate;
  349. /* array of size num_crtcs */
  350. struct drm_vblank_crtc *vblank;
  351. spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */
  352. spinlock_t vbl_lock;
  353. u32 max_vblank_count; /**< size of vblank counter register */
  354. /**
  355. * List of events
  356. */
  357. struct list_head vblank_event_list;
  358. spinlock_t event_lock;
  359. /*@} */
  360. struct drm_agp_head *agp; /**< AGP data */
  361. struct pci_dev *pdev; /**< PCI device structure */
  362. #ifdef __alpha__
  363. struct pci_controller *hose;
  364. #endif
  365. struct drm_sg_mem *sg; /**< Scatter gather memory */
  366. unsigned int num_crtcs; /**< Number of CRTCs on this device */
  367. struct {
  368. int context;
  369. struct drm_hw_lock *lock;
  370. } sigdata;
  371. struct drm_local_map *agp_buffer_map;
  372. unsigned int agp_buffer_token;
  373. struct drm_mode_config mode_config; /**< Current mode config */
  374. /** \name GEM information */
  375. /*@{ */
  376. struct mutex object_name_lock;
  377. struct idr object_name_idr;
  378. struct drm_vma_offset_manager *vma_offset_manager;
  379. /*@} */
  380. int switch_power_state;
  381. };
  382. /**
  383. * drm_drv_uses_atomic_modeset - check if the driver implements
  384. * atomic_commit()
  385. * @dev: DRM device
  386. *
  387. * This check is useful if drivers do not have DRIVER_ATOMIC set but
  388. * have atomic modesetting internally implemented.
  389. */
  390. static inline bool drm_drv_uses_atomic_modeset(struct drm_device *dev)
  391. {
  392. return dev->mode_config.funcs->atomic_commit != NULL;
  393. }
  394. #define DRM_SWITCH_POWER_ON 0
  395. #define DRM_SWITCH_POWER_OFF 1
  396. #define DRM_SWITCH_POWER_CHANGING 2
  397. #define DRM_SWITCH_POWER_DYNAMIC_OFF 3
  398. static __inline__ int drm_core_check_feature(struct drm_device *dev,
  399. int feature)
  400. {
  401. return ((dev->driver->driver_features & feature) ? 1 : 0);
  402. }
  403. static inline void drm_device_set_unplugged(struct drm_device *dev)
  404. {
  405. smp_wmb();
  406. atomic_set(&dev->unplugged, 1);
  407. }
  408. static inline int drm_device_is_unplugged(struct drm_device *dev)
  409. {
  410. int ret = atomic_read(&dev->unplugged);
  411. smp_rmb();
  412. return ret;
  413. }
  414. /******************************************************************/
  415. /** \name Internal function definitions */
  416. /*@{*/
  417. /* Driver support (drm_drv.h) */
  418. /*
  419. * These are exported to drivers so that they can implement fencing using
  420. * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
  421. */
  422. /*@}*/
  423. /* returns true if currently okay to sleep */
  424. static __inline__ bool drm_can_sleep(void)
  425. {
  426. if (in_atomic() || in_dbg_master() || irqs_disabled())
  427. return false;
  428. return true;
  429. }
  430. /* helper for handling conditionals in various for_each macros */
  431. #define for_each_if(condition) if (!(condition)) {} else
  432. #endif