PageRenderTime 52ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/include/drm/drmP.h

https://bitbucket.org/cyanogenmod/android_kernel_asus_tf300t
C Header | 1695 lines | 1043 code | 229 blank | 423 comment | 41 complexity | bd0cf43aad65e835ddaa5815ba3ea570 MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
  1. /**
  2. * \file drmP.h
  3. * Private header for Direct Rendering Manager
  4. *
  5. * \author Rickard E. (Rik) Faith <faith@valinux.com>
  6. * \author Gareth Hughes <gareth@valinux.com>
  7. */
  8. /*
  9. * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  10. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  11. * Copyright (c) 2009-2010, Code Aurora Forum.
  12. * All rights reserved.
  13. *
  14. * Permission is hereby granted, free of charge, to any person obtaining a
  15. * copy of this software and associated documentation files (the "Software"),
  16. * to deal in the Software without restriction, including without limitation
  17. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  18. * and/or sell copies of the Software, and to permit persons to whom the
  19. * Software is furnished to do so, subject to the following conditions:
  20. *
  21. * The above copyright notice and this permission notice (including the next
  22. * paragraph) shall be included in all copies or substantial portions of the
  23. * Software.
  24. *
  25. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  26. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  27. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  28. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  29. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  30. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  31. * OTHER DEALINGS IN THE SOFTWARE.
  32. */
  33. #ifndef _DRM_P_H_
  34. #define _DRM_P_H_
  35. #ifdef __KERNEL__
  36. #ifdef __alpha__
  37. /* add include of current.h so that "current" is defined
  38. * before static inline funcs in wait.h. Doing this so we
  39. * can build the DRM (part of PI DRI). 4/21/2000 S + B */
  40. #include <asm/current.h>
  41. #endif /* __alpha__ */
  42. #include <linux/module.h>
  43. #include <linux/kernel.h>
  44. #include <linux/miscdevice.h>
  45. #include <linux/fs.h>
  46. #include <linux/proc_fs.h>
  47. #include <linux/init.h>
  48. #include <linux/file.h>
  49. #include <linux/platform_device.h>
  50. #include <linux/pci.h>
  51. #include <linux/jiffies.h>
  52. #include <linux/dma-mapping.h>
  53. #include <linux/mm.h>
  54. #include <linux/cdev.h>
  55. #include <linux/mutex.h>
  56. #include <linux/slab.h>
  57. #if defined(__alpha__) || defined(__powerpc__)
  58. #include <asm/pgtable.h> /* For pte_wrprotect */
  59. #endif
  60. #include <asm/io.h>
  61. #include <asm/mman.h>
  62. #include <asm/uaccess.h>
  63. #ifdef CONFIG_MTRR
  64. #include <asm/mtrr.h>
  65. #endif
  66. #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
  67. #include <linux/types.h>
  68. #include <linux/agp_backend.h>
  69. #endif
  70. #include <linux/workqueue.h>
  71. #include <linux/poll.h>
  72. #include <asm/pgalloc.h>
  73. #include "drm.h"
  74. #include <linux/idr.h>
  75. #define __OS_HAS_AGP (defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE)))
  76. #define __OS_HAS_MTRR (defined(CONFIG_MTRR))
  77. struct drm_file;
  78. struct drm_device;
  79. #include "drm_os_linux.h"
  80. #include "drm_hashtab.h"
  81. #include "drm_mm.h"
  82. #define DRM_UT_CORE 0x01
  83. #define DRM_UT_DRIVER 0x02
  84. #define DRM_UT_KMS 0x04
  85. /*
  86. * Three debug levels are defined.
  87. * drm_core, drm_driver, drm_kms
  88. * drm_core level can be used in the generic drm code. For example:
  89. * drm_ioctl, drm_mm, drm_memory
  90. * The macro definition of DRM_DEBUG is used.
  91. * DRM_DEBUG(fmt, args...)
  92. * The debug info by using the DRM_DEBUG can be obtained by adding
  93. * the boot option of "drm.debug=1".
  94. *
  95. * drm_driver level can be used in the specific drm driver. It is used
  96. * to add the debug info related with the drm driver. For example:
  97. * i915_drv, i915_dma, i915_gem, radeon_drv,
  98. * The macro definition of DRM_DEBUG_DRIVER can be used.
  99. * DRM_DEBUG_DRIVER(fmt, args...)
  100. * The debug info by using the DRM_DEBUG_DRIVER can be obtained by
  101. * adding the boot option of "drm.debug=0x02"
  102. *
  103. * drm_kms level can be used in the KMS code related with specific drm driver.
  104. * It is used to add the debug info related with KMS mode. For example:
  105. * the connector/crtc ,
  106. * The macro definition of DRM_DEBUG_KMS can be used.
  107. * DRM_DEBUG_KMS(fmt, args...)
  108. * The debug info by using the DRM_DEBUG_KMS can be obtained by
  109. * adding the boot option of "drm.debug=0x04"
  110. *
  111. * If we add the boot option of "drm.debug=0x06", we can get the debug info by
  112. * using the DRM_DEBUG_KMS and DRM_DEBUG_DRIVER.
  113. * If we add the boot option of "drm.debug=0x05", we can get the debug info by
  114. * using the DRM_DEBUG_KMS and DRM_DEBUG.
  115. */
  116. extern __attribute__((format (printf, 4, 5)))
  117. void drm_ut_debug_printk(unsigned int request_level,
  118. const char *prefix,
  119. const char *function_name,
  120. const char *format, ...);
  121. extern __attribute__((format (printf, 2, 3)))
  122. int drm_err(const char *func, const char *format, ...);
  123. /***********************************************************************/
  124. /** \name DRM template customization defaults */
  125. /*@{*/
  126. /* driver capabilities and requirements mask */
  127. #define DRIVER_USE_AGP 0x1
  128. #define DRIVER_REQUIRE_AGP 0x2
  129. #define DRIVER_USE_MTRR 0x4
  130. #define DRIVER_PCI_DMA 0x8
  131. #define DRIVER_SG 0x10
  132. #define DRIVER_HAVE_DMA 0x20
  133. #define DRIVER_HAVE_IRQ 0x40
  134. #define DRIVER_IRQ_SHARED 0x80
  135. #define DRIVER_IRQ_VBL 0x100
  136. #define DRIVER_DMA_QUEUE 0x200
  137. #define DRIVER_FB_DMA 0x400
  138. #define DRIVER_IRQ_VBL2 0x800
  139. #define DRIVER_GEM 0x1000
  140. #define DRIVER_MODESET 0x2000
  141. #define DRIVER_BUS_PCI 0x1
  142. #define DRIVER_BUS_PLATFORM 0x2
  143. #define DRIVER_BUS_USB 0x3
  144. /***********************************************************************/
  145. /** \name Begin the DRM... */
  146. /*@{*/
  147. #define DRM_DEBUG_CODE 2 /**< Include debugging code if > 1, then
  148. also include looping detection. */
  149. #define DRM_MAGIC_HASH_ORDER 4 /**< Size of key hash table. Must be power of 2. */
  150. #define DRM_KERNEL_CONTEXT 0 /**< Change drm_resctx if changed */
  151. #define DRM_RESERVED_CONTEXTS 1 /**< Change drm_resctx if changed */
  152. #define DRM_LOOPING_LIMIT 5000000
  153. #define DRM_TIME_SLICE (HZ/20) /**< Time slice for GLXContexts */
  154. #define DRM_LOCK_SLICE 1 /**< Time slice for lock, in jiffies */
  155. #define DRM_FLAG_DEBUG 0x01
  156. #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
  157. #define DRM_MAP_HASH_OFFSET 0x10000000
  158. /*@}*/
  159. /***********************************************************************/
  160. /** \name Macros to make printk easier */
  161. /*@{*/
  162. /**
  163. * Error output.
  164. *
  165. * \param fmt printf() like format string.
  166. * \param arg arguments
  167. */
  168. #define DRM_ERROR(fmt, ...) \
  169. drm_err(__func__, fmt, ##__VA_ARGS__)
  170. #define DRM_INFO(fmt, ...) \
  171. printk(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
  172. /**
  173. * Debug output.
  174. *
  175. * \param fmt printf() like format string.
  176. * \param arg arguments
  177. */
  178. #if DRM_DEBUG_CODE
  179. #define DRM_DEBUG(fmt, args...) \
  180. do { \
  181. drm_ut_debug_printk(DRM_UT_CORE, DRM_NAME, \
  182. __func__, fmt, ##args); \
  183. } while (0)
  184. #define DRM_DEBUG_DRIVER(fmt, args...) \
  185. do { \
  186. drm_ut_debug_printk(DRM_UT_DRIVER, DRM_NAME, \
  187. __func__, fmt, ##args); \
  188. } while (0)
  189. #define DRM_DEBUG_KMS(fmt, args...) \
  190. do { \
  191. drm_ut_debug_printk(DRM_UT_KMS, DRM_NAME, \
  192. __func__, fmt, ##args); \
  193. } while (0)
  194. #define DRM_LOG(fmt, args...) \
  195. do { \
  196. drm_ut_debug_printk(DRM_UT_CORE, NULL, \
  197. NULL, fmt, ##args); \
  198. } while (0)
  199. #define DRM_LOG_KMS(fmt, args...) \
  200. do { \
  201. drm_ut_debug_printk(DRM_UT_KMS, NULL, \
  202. NULL, fmt, ##args); \
  203. } while (0)
  204. #define DRM_LOG_MODE(fmt, args...) \
  205. do { \
  206. drm_ut_debug_printk(DRM_UT_MODE, NULL, \
  207. NULL, fmt, ##args); \
  208. } while (0)
  209. #define DRM_LOG_DRIVER(fmt, args...) \
  210. do { \
  211. drm_ut_debug_printk(DRM_UT_DRIVER, NULL, \
  212. NULL, fmt, ##args); \
  213. } while (0)
  214. #else
  215. #define DRM_DEBUG_DRIVER(fmt, args...) do { } while (0)
  216. #define DRM_DEBUG_KMS(fmt, args...) do { } while (0)
  217. #define DRM_DEBUG(fmt, arg...) do { } while (0)
  218. #define DRM_LOG(fmt, arg...) do { } while (0)
  219. #define DRM_LOG_KMS(fmt, args...) do { } while (0)
  220. #define DRM_LOG_MODE(fmt, arg...) do { } while (0)
  221. #define DRM_LOG_DRIVER(fmt, arg...) do { } while (0)
  222. #endif
  223. /*@}*/
  224. /***********************************************************************/
  225. /** \name Internal types and structures */
  226. /*@{*/
  227. #define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x)
  228. #define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
  229. #define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
  230. #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
  231. /**
  232. * Test that the hardware lock is held by the caller, returning otherwise.
  233. *
  234. * \param dev DRM device.
  235. * \param filp file pointer of the caller.
  236. */
  237. #define LOCK_TEST_WITH_RETURN( dev, _file_priv ) \
  238. do { \
  239. if (!_DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock) || \
  240. _file_priv->master->lock.file_priv != _file_priv) { \
  241. DRM_ERROR( "%s called without lock held, held %d owner %p %p\n",\
  242. __func__, _DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock),\
  243. _file_priv->master->lock.file_priv, _file_priv); \
  244. return -EINVAL; \
  245. } \
  246. } while (0)
  247. /**
  248. * Ioctl function type.
  249. *
  250. * \param inode device inode.
  251. * \param file_priv DRM file private pointer.
  252. * \param cmd command.
  253. * \param arg argument.
  254. */
  255. typedef int drm_ioctl_t(struct drm_device *dev, void *data,
  256. struct drm_file *file_priv);
  257. typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd,
  258. unsigned long arg);
  259. #define DRM_IOCTL_NR(n) _IOC_NR(n)
  260. #define DRM_MAJOR 226
  261. #define DRM_AUTH 0x1
  262. #define DRM_MASTER 0x2
  263. #define DRM_ROOT_ONLY 0x4
  264. #define DRM_CONTROL_ALLOW 0x8
  265. #define DRM_UNLOCKED 0x10
  266. struct drm_ioctl_desc {
  267. unsigned int cmd;
  268. int flags;
  269. drm_ioctl_t *func;
  270. unsigned int cmd_drv;
  271. };
  272. /**
  273. * Creates a driver or general drm_ioctl_desc array entry for the given
  274. * ioctl, for use by drm_ioctl().
  275. */
  276. #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \
  277. [DRM_IOCTL_NR(DRM_##ioctl)] = {.cmd = DRM_##ioctl, .func = _func, .flags = _flags, .cmd_drv = DRM_IOCTL_##ioctl}
  278. struct drm_magic_entry {
  279. struct list_head head;
  280. struct drm_hash_item hash_item;
  281. struct drm_file *priv;
  282. };
  283. struct drm_vma_entry {
  284. struct list_head head;
  285. struct vm_area_struct *vma;
  286. pid_t pid;
  287. };
  288. /**
  289. * DMA buffer.
  290. */
  291. struct drm_buf {
  292. int idx; /**< Index into master buflist */
  293. int total; /**< Buffer size */
  294. int order; /**< log-base-2(total) */
  295. int used; /**< Amount of buffer in use (for DMA) */
  296. unsigned long offset; /**< Byte offset (used internally) */
  297. void *address; /**< Address of buffer */
  298. unsigned long bus_address; /**< Bus address of buffer */
  299. struct drm_buf *next; /**< Kernel-only: used for free list */
  300. __volatile__ int waiting; /**< On kernel DMA queue */
  301. __volatile__ int pending; /**< On hardware DMA queue */
  302. wait_queue_head_t dma_wait; /**< Processes waiting */
  303. struct drm_file *file_priv; /**< Private of holding file descr */
  304. int context; /**< Kernel queue for this buffer */
  305. int while_locked; /**< Dispatch this buffer while locked */
  306. enum {
  307. DRM_LIST_NONE = 0,
  308. DRM_LIST_FREE = 1,
  309. DRM_LIST_WAIT = 2,
  310. DRM_LIST_PEND = 3,
  311. DRM_LIST_PRIO = 4,
  312. DRM_LIST_RECLAIM = 5
  313. } list; /**< Which list we're on */
  314. int dev_priv_size; /**< Size of buffer private storage */
  315. void *dev_private; /**< Per-buffer private storage */
  316. };
  317. /** bufs is one longer than it has to be */
  318. struct drm_waitlist {
  319. int count; /**< Number of possible buffers */
  320. struct drm_buf **bufs; /**< List of pointers to buffers */
  321. struct drm_buf **rp; /**< Read pointer */
  322. struct drm_buf **wp; /**< Write pointer */
  323. struct drm_buf **end; /**< End pointer */
  324. spinlock_t read_lock;
  325. spinlock_t write_lock;
  326. };
  327. struct drm_freelist {
  328. int initialized; /**< Freelist in use */
  329. atomic_t count; /**< Number of free buffers */
  330. struct drm_buf *next; /**< End pointer */
  331. wait_queue_head_t waiting; /**< Processes waiting on free bufs */
  332. int low_mark; /**< Low water mark */
  333. int high_mark; /**< High water mark */
  334. atomic_t wfh; /**< If waiting for high mark */
  335. spinlock_t lock;
  336. };
  337. typedef struct drm_dma_handle {
  338. dma_addr_t busaddr;
  339. void *vaddr;
  340. size_t size;
  341. } drm_dma_handle_t;
  342. /**
  343. * Buffer entry. There is one of this for each buffer size order.
  344. */
  345. struct drm_buf_entry {
  346. int buf_size; /**< size */
  347. int buf_count; /**< number of buffers */
  348. struct drm_buf *buflist; /**< buffer list */
  349. int seg_count;
  350. int page_order;
  351. struct drm_dma_handle **seglist;
  352. struct drm_freelist freelist;
  353. };
  354. /* Event queued up for userspace to read */
  355. struct drm_pending_event {
  356. struct drm_event *event;
  357. struct list_head link;
  358. struct drm_file *file_priv;
  359. pid_t pid; /* pid of requester, no guarantee it's valid by the time
  360. we deliver the event, for tracing only */
  361. void (*destroy)(struct drm_pending_event *event);
  362. };
  363. /** File private data */
  364. struct drm_file {
  365. int authenticated;
  366. pid_t pid;
  367. uid_t uid;
  368. drm_magic_t magic;
  369. unsigned long ioctl_count;
  370. struct list_head lhead;
  371. struct drm_minor *minor;
  372. unsigned long lock_count;
  373. /** Mapping of mm object handles to object pointers. */
  374. struct idr object_idr;
  375. /** Lock for synchronization of access to object_idr. */
  376. spinlock_t table_lock;
  377. struct file *filp;
  378. void *driver_priv;
  379. int is_master; /* this file private is a master for a minor */
  380. struct drm_master *master; /* master this node is currently associated with
  381. N.B. not always minor->master */
  382. struct list_head fbs;
  383. wait_queue_head_t event_wait;
  384. struct list_head event_list;
  385. int event_space;
  386. };
  387. /** Wait queue */
  388. struct drm_queue {
  389. atomic_t use_count; /**< Outstanding uses (+1) */
  390. atomic_t finalization; /**< Finalization in progress */
  391. atomic_t block_count; /**< Count of processes waiting */
  392. atomic_t block_read; /**< Queue blocked for reads */
  393. wait_queue_head_t read_queue; /**< Processes waiting on block_read */
  394. atomic_t block_write; /**< Queue blocked for writes */
  395. wait_queue_head_t write_queue; /**< Processes waiting on block_write */
  396. atomic_t total_queued; /**< Total queued statistic */
  397. atomic_t total_flushed; /**< Total flushes statistic */
  398. atomic_t total_locks; /**< Total locks statistics */
  399. enum drm_ctx_flags flags; /**< Context preserving and 2D-only */
  400. struct drm_waitlist waitlist; /**< Pending buffers */
  401. wait_queue_head_t flush_queue; /**< Processes waiting until flush */
  402. };
  403. /**
  404. * Lock data.
  405. */
  406. struct drm_lock_data {
  407. struct drm_hw_lock *hw_lock; /**< Hardware lock */
  408. /** Private of lock holder's file (NULL=kernel) */
  409. struct drm_file *file_priv;
  410. wait_queue_head_t lock_queue; /**< Queue of blocked processes */
  411. unsigned long lock_time; /**< Time of last lock in jiffies */
  412. spinlock_t spinlock;
  413. uint32_t kernel_waiters;
  414. uint32_t user_waiters;
  415. int idle_has_lock;
  416. };
  417. /**
  418. * DMA data.
  419. */
  420. struct drm_device_dma {
  421. struct drm_buf_entry bufs[DRM_MAX_ORDER + 1]; /**< buffers, grouped by their size order */
  422. int buf_count; /**< total number of buffers */
  423. struct drm_buf **buflist; /**< Vector of pointers into drm_device_dma::bufs */
  424. int seg_count;
  425. int page_count; /**< number of pages */
  426. unsigned long *pagelist; /**< page list */
  427. unsigned long byte_count;
  428. enum {
  429. _DRM_DMA_USE_AGP = 0x01,
  430. _DRM_DMA_USE_SG = 0x02,
  431. _DRM_DMA_USE_FB = 0x04,
  432. _DRM_DMA_USE_PCI_RO = 0x08
  433. } flags;
  434. };
  435. /**
  436. * AGP memory entry. Stored as a doubly linked list.
  437. */
  438. struct drm_agp_mem {
  439. unsigned long handle; /**< handle */
  440. DRM_AGP_MEM *memory;
  441. unsigned long bound; /**< address */
  442. int pages;
  443. struct list_head head;
  444. };
  445. /**
  446. * AGP data.
  447. *
  448. * \sa drm_agp_init() and drm_device::agp.
  449. */
  450. struct drm_agp_head {
  451. DRM_AGP_KERN agp_info; /**< AGP device information */
  452. struct list_head memory;
  453. unsigned long mode; /**< AGP mode */
  454. struct agp_bridge_data *bridge;
  455. int enabled; /**< whether the AGP bus as been enabled */
  456. int acquired; /**< whether the AGP device has been acquired */
  457. unsigned long base;
  458. int agp_mtrr;
  459. int cant_use_aperture;
  460. unsigned long page_mask;
  461. };
  462. /**
  463. * Scatter-gather memory.
  464. */
  465. struct drm_sg_mem {
  466. unsigned long handle;
  467. void *virtual;
  468. int pages;
  469. struct page **pagelist;
  470. dma_addr_t *busaddr;
  471. };
  472. struct drm_sigdata {
  473. int context;
  474. struct drm_hw_lock *lock;
  475. };
  476. /**
  477. * Kernel side of a mapping
  478. */
  479. struct drm_local_map {
  480. resource_size_t offset; /**< Requested physical address (0 for SAREA)*/
  481. unsigned long size; /**< Requested physical size (bytes) */
  482. enum drm_map_type type; /**< Type of memory to map */
  483. enum drm_map_flags flags; /**< Flags */
  484. void *handle; /**< User-space: "Handle" to pass to mmap() */
  485. /**< Kernel-space: kernel-virtual address */
  486. int mtrr; /**< MTRR slot used */
  487. };
  488. typedef struct drm_local_map drm_local_map_t;
  489. /**
  490. * Mappings list
  491. */
  492. struct drm_map_list {
  493. struct list_head head; /**< list head */
  494. struct drm_hash_item hash;
  495. struct drm_local_map *map; /**< mapping */
  496. uint64_t user_token;
  497. struct drm_master *master;
  498. struct drm_mm_node *file_offset_node; /**< fake offset */
  499. };
  500. /**
  501. * Context handle list
  502. */
  503. struct drm_ctx_list {
  504. struct list_head head; /**< list head */
  505. drm_context_t handle; /**< context handle */
  506. struct drm_file *tag; /**< associated fd private data */
  507. };
  508. /* location of GART table */
  509. #define DRM_ATI_GART_MAIN 1
  510. #define DRM_ATI_GART_FB 2
  511. #define DRM_ATI_GART_PCI 1
  512. #define DRM_ATI_GART_PCIE 2
  513. #define DRM_ATI_GART_IGP 3
  514. struct drm_ati_pcigart_info {
  515. int gart_table_location;
  516. int gart_reg_if;
  517. void *addr;
  518. dma_addr_t bus_addr;
  519. dma_addr_t table_mask;
  520. struct drm_dma_handle *table_handle;
  521. struct drm_local_map mapping;
  522. int table_size;
  523. };
  524. /**
  525. * GEM specific mm private for tracking GEM objects
  526. */
  527. struct drm_gem_mm {
  528. struct drm_mm offset_manager; /**< Offset mgmt for buffer objects */
  529. struct drm_open_hash offset_hash; /**< User token hash table for maps */
  530. };
  531. /**
  532. * This structure defines the drm_mm memory object, which will be used by the
  533. * DRM for its buffer objects.
  534. */
  535. struct drm_gem_object {
  536. /** Reference count of this object */
  537. struct kref refcount;
  538. /** Handle count of this object. Each handle also holds a reference */
  539. atomic_t handle_count; /* number of handles on this object */
  540. /** Related drm device */
  541. struct drm_device *dev;
  542. /** File representing the shmem storage */
  543. struct file *filp;
  544. /* Mapping info for this object */
  545. struct drm_map_list map_list;
  546. /**
  547. * Size of the object, in bytes. Immutable over the object's
  548. * lifetime.
  549. */
  550. size_t size;
  551. /**
  552. * Global name for this object, starts at 1. 0 means unnamed.
  553. * Access is covered by the object_name_lock in the related drm_device
  554. */
  555. int name;
  556. /**
  557. * Memory domains. These monitor which caches contain read/write data
  558. * related to the object. When transitioning from one set of domains
  559. * to another, the driver is called to ensure that caches are suitably
  560. * flushed and invalidated
  561. */
  562. uint32_t read_domains;
  563. uint32_t write_domain;
  564. /**
  565. * While validating an exec operation, the
  566. * new read/write domain values are computed here.
  567. * They will be transferred to the above values
  568. * at the point that any cache flushing occurs
  569. */
  570. uint32_t pending_read_domains;
  571. uint32_t pending_write_domain;
  572. void *driver_private;
  573. };
  574. #include "drm_crtc.h"
  575. /* per-master structure */
  576. struct drm_master {
  577. struct kref refcount; /* refcount for this master */
  578. struct list_head head; /**< each minor contains a list of masters */
  579. struct drm_minor *minor; /**< link back to minor we are a master for */
  580. char *unique; /**< Unique identifier: e.g., busid */
  581. int unique_len; /**< Length of unique field */
  582. int unique_size; /**< amount allocated */
  583. int blocked; /**< Blocked due to VC switch? */
  584. /** \name Authentication */
  585. /*@{ */
  586. struct drm_open_hash magiclist;
  587. struct list_head magicfree;
  588. /*@} */
  589. struct drm_lock_data lock; /**< Information on hardware lock */
  590. void *driver_priv; /**< Private structure for driver to use */
  591. };
  592. /* Size of ringbuffer for vblank timestamps. Just double-buffer
  593. * in initial implementation.
  594. */
  595. #define DRM_VBLANKTIME_RBSIZE 2
  596. /* Flags and return codes for get_vblank_timestamp() driver function. */
  597. #define DRM_CALLED_FROM_VBLIRQ 1
  598. #define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0)
  599. #define DRM_VBLANKTIME_INVBL (1 << 1)
  600. /* get_scanout_position() return flags */
  601. #define DRM_SCANOUTPOS_VALID (1 << 0)
  602. #define DRM_SCANOUTPOS_INVBL (1 << 1)
  603. #define DRM_SCANOUTPOS_ACCURATE (1 << 2)
  604. struct drm_bus {
  605. int bus_type;
  606. int (*get_irq)(struct drm_device *dev);
  607. const char *(*get_name)(struct drm_device *dev);
  608. int (*set_busid)(struct drm_device *dev, struct drm_master *master);
  609. int (*set_unique)(struct drm_device *dev, struct drm_master *master,
  610. struct drm_unique *unique);
  611. int (*irq_by_busid)(struct drm_device *dev, struct drm_irq_busid *p);
  612. /* hooks that are for PCI */
  613. int (*agp_init)(struct drm_device *dev);
  614. };
  615. /**
  616. * DRM driver structure. This structure represent the common code for
  617. * a family of cards. There will one drm_device for each card present
  618. * in this family
  619. */
  620. struct drm_driver {
  621. int (*load) (struct drm_device *, unsigned long flags);
  622. int (*firstopen) (struct drm_device *);
  623. int (*open) (struct drm_device *, struct drm_file *);
  624. void (*preclose) (struct drm_device *, struct drm_file *file_priv);
  625. void (*postclose) (struct drm_device *, struct drm_file *);
  626. void (*lastclose) (struct drm_device *);
  627. int (*unload) (struct drm_device *);
  628. int (*suspend) (struct drm_device *, pm_message_t state);
  629. int (*resume) (struct drm_device *);
  630. int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv);
  631. int (*dma_quiescent) (struct drm_device *);
  632. int (*context_dtor) (struct drm_device *dev, int context);
  633. /**
  634. * get_vblank_counter - get raw hardware vblank counter
  635. * @dev: DRM device
  636. * @crtc: counter to fetch
  637. *
  638. * Driver callback for fetching a raw hardware vblank counter
  639. * for @crtc. If a device doesn't have a hardware counter, the
  640. * driver can simply return the value of drm_vblank_count and
  641. * make the enable_vblank() and disable_vblank() hooks into no-ops,
  642. * leaving interrupts enabled at all times.
  643. *
  644. * Wraparound handling and loss of events due to modesetting is dealt
  645. * with in the DRM core code.
  646. *
  647. * RETURNS
  648. * Raw vblank counter value.
  649. */
  650. u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);
  651. /**
  652. * enable_vblank - enable vblank interrupt events
  653. * @dev: DRM device
  654. * @crtc: which irq to enable
  655. *
  656. * Enable vblank interrupts for @crtc. If the device doesn't have
  657. * a hardware vblank counter, this routine should be a no-op, since
  658. * interrupts will have to stay on to keep the count accurate.
  659. *
  660. * RETURNS
  661. * Zero on success, appropriate errno if the given @crtc's vblank
  662. * interrupt cannot be enabled.
  663. */
  664. int (*enable_vblank) (struct drm_device *dev, int crtc);
  665. /**
  666. * disable_vblank - disable vblank interrupt events
  667. * @dev: DRM device
  668. * @crtc: which irq to enable
  669. *
  670. * Disable vblank interrupts for @crtc. If the device doesn't have
  671. * a hardware vblank counter, this routine should be a no-op, since
  672. * interrupts will have to stay on to keep the count accurate.
  673. */
  674. void (*disable_vblank) (struct drm_device *dev, int crtc);
  675. /**
  676. * Called by \c drm_device_is_agp. Typically used to determine if a
  677. * card is really attached to AGP or not.
  678. *
  679. * \param dev DRM device handle
  680. *
  681. * \returns
  682. * One of three values is returned depending on whether or not the
  683. * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
  684. * (return of 1), or may or may not be AGP (return of 2).
  685. */
  686. int (*device_is_agp) (struct drm_device *dev);
  687. /**
  688. * Called by vblank timestamping code.
  689. *
  690. * Return the current display scanout position from a crtc.
  691. *
  692. * \param dev DRM device.
  693. * \param crtc Id of the crtc to query.
  694. * \param *vpos Target location for current vertical scanout position.
  695. * \param *hpos Target location for current horizontal scanout position.
  696. *
  697. * Returns vpos as a positive number while in active scanout area.
  698. * Returns vpos as a negative number inside vblank, counting the number
  699. * of scanlines to go until end of vblank, e.g., -1 means "one scanline
  700. * until start of active scanout / end of vblank."
  701. *
  702. * \return Flags, or'ed together as follows:
  703. *
  704. * DRM_SCANOUTPOS_VALID = Query successful.
  705. * DRM_SCANOUTPOS_INVBL = Inside vblank.
  706. * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
  707. * this flag means that returned position may be offset by a constant
  708. * but unknown small number of scanlines wrt. real scanout position.
  709. *
  710. */
  711. int (*get_scanout_position) (struct drm_device *dev, int crtc,
  712. int *vpos, int *hpos);
  713. /**
  714. * Called by \c drm_get_last_vbltimestamp. Should return a precise
  715. * timestamp when the most recent VBLANK interval ended or will end.
  716. *
  717. * Specifically, the timestamp in @vblank_time should correspond as
  718. * closely as possible to the time when the first video scanline of
  719. * the video frame after the end of VBLANK will start scanning out,
  720. * the time immmediately after end of the VBLANK interval. If the
  721. * @crtc is currently inside VBLANK, this will be a time in the future.
  722. * If the @crtc is currently scanning out a frame, this will be the
  723. * past start time of the current scanout. This is meant to adhere
  724. * to the OpenML OML_sync_control extension specification.
  725. *
  726. * \param dev dev DRM device handle.
  727. * \param crtc crtc for which timestamp should be returned.
  728. * \param *max_error Maximum allowable timestamp error in nanoseconds.
  729. * Implementation should strive to provide timestamp
  730. * with an error of at most *max_error nanoseconds.
  731. * Returns true upper bound on error for timestamp.
  732. * \param *vblank_time Target location for returned vblank timestamp.
  733. * \param flags 0 = Defaults, no special treatment needed.
  734. * \param DRM_CALLED_FROM_VBLIRQ = Function is called from vblank
  735. * irq handler. Some drivers need to apply some workarounds
  736. * for gpu-specific vblank irq quirks if flag is set.
  737. *
  738. * \returns
  739. * Zero if timestamping isn't supported in current display mode or a
  740. * negative number on failure. A positive status code on success,
  741. * which describes how the vblank_time timestamp was computed.
  742. */
  743. int (*get_vblank_timestamp) (struct drm_device *dev, int crtc,
  744. int *max_error,
  745. struct timeval *vblank_time,
  746. unsigned flags);
  747. /* these have to be filled in */
  748. irqreturn_t(*irq_handler) (DRM_IRQ_ARGS);
  749. void (*irq_preinstall) (struct drm_device *dev);
  750. int (*irq_postinstall) (struct drm_device *dev);
  751. void (*irq_uninstall) (struct drm_device *dev);
  752. void (*reclaim_buffers) (struct drm_device *dev,
  753. struct drm_file * file_priv);
  754. void (*reclaim_buffers_locked) (struct drm_device *dev,
  755. struct drm_file *file_priv);
  756. void (*reclaim_buffers_idlelocked) (struct drm_device *dev,
  757. struct drm_file *file_priv);
  758. void (*set_version) (struct drm_device *dev,
  759. struct drm_set_version *sv);
  760. /* Master routines */
  761. int (*master_create)(struct drm_device *dev, struct drm_master *master);
  762. void (*master_destroy)(struct drm_device *dev, struct drm_master *master);
  763. /**
  764. * master_set is called whenever the minor master is set.
  765. * master_drop is called whenever the minor master is dropped.
  766. */
  767. int (*master_set)(struct drm_device *dev, struct drm_file *file_priv,
  768. bool from_open);
  769. void (*master_drop)(struct drm_device *dev, struct drm_file *file_priv,
  770. bool from_release);
  771. int (*debugfs_init)(struct drm_minor *minor);
  772. void (*debugfs_cleanup)(struct drm_minor *minor);
  773. /**
  774. * Driver-specific constructor for drm_gem_objects, to set up
  775. * obj->driver_private.
  776. *
  777. * Returns 0 on success.
  778. */
  779. int (*gem_init_object) (struct drm_gem_object *obj);
  780. void (*gem_free_object) (struct drm_gem_object *obj);
  781. int (*gem_open_object) (struct drm_gem_object *, struct drm_file *);
  782. void (*gem_close_object) (struct drm_gem_object *, struct drm_file *);
  783. /* vga arb irq handler */
  784. void (*vgaarb_irq)(struct drm_device *dev, bool state);
  785. /* dumb alloc support */
  786. int (*dumb_create)(struct drm_file *file_priv,
  787. struct drm_device *dev,
  788. struct drm_mode_create_dumb *args);
  789. int (*dumb_map_offset)(struct drm_file *file_priv,
  790. struct drm_device *dev, uint32_t handle,
  791. uint64_t *offset);
  792. int (*dumb_destroy)(struct drm_file *file_priv,
  793. struct drm_device *dev,
  794. uint32_t handle);
  795. /* Driver private ops for this object */
  796. struct vm_operations_struct *gem_vm_ops;
  797. int major;
  798. int minor;
  799. int patchlevel;
  800. char *name;
  801. char *desc;
  802. char *date;
  803. u32 driver_features;
  804. int dev_priv_size;
  805. struct drm_ioctl_desc *ioctls;
  806. int num_ioctls;
  807. struct file_operations fops;
  808. union {
  809. struct pci_driver *pci;
  810. struct platform_device *platform_device;
  811. struct usb_driver *usb;
  812. } kdriver;
  813. struct drm_bus *bus;
  814. /* List of devices hanging off this driver */
  815. struct list_head device_list;
  816. };
  817. #define DRM_MINOR_UNASSIGNED 0
  818. #define DRM_MINOR_LEGACY 1
  819. #define DRM_MINOR_CONTROL 2
  820. #define DRM_MINOR_RENDER 3
  821. /**
  822. * debugfs node list. This structure represents a debugfs file to
  823. * be created by the drm core
  824. */
  825. struct drm_debugfs_list {
  826. const char *name; /** file name */
  827. int (*show)(struct seq_file*, void*); /** show callback */
  828. u32 driver_features; /**< Required driver features for this entry */
  829. };
  830. /**
  831. * debugfs node structure. This structure represents a debugfs file.
  832. */
  833. struct drm_debugfs_node {
  834. struct list_head list;
  835. struct drm_minor *minor;
  836. struct drm_debugfs_list *debugfs_ent;
  837. struct dentry *dent;
  838. };
  839. /**
  840. * Info file list entry. This structure represents a debugfs or proc file to
  841. * be created by the drm core
  842. */
  843. struct drm_info_list {
  844. const char *name; /** file name */
  845. int (*show)(struct seq_file*, void*); /** show callback */
  846. u32 driver_features; /**< Required driver features for this entry */
  847. void *data;
  848. };
  849. /**
  850. * debugfs node structure. This structure represents a debugfs file.
  851. */
  852. struct drm_info_node {
  853. struct list_head list;
  854. struct drm_minor *minor;
  855. struct drm_info_list *info_ent;
  856. struct dentry *dent;
  857. };
  858. /**
  859. * DRM minor structure. This structure represents a drm minor number.
  860. */
  861. struct drm_minor {
  862. int index; /**< Minor device number */
  863. int type; /**< Control or render */
  864. dev_t device; /**< Device number for mknod */
  865. struct device kdev; /**< Linux device */
  866. struct drm_device *dev;
  867. struct proc_dir_entry *proc_root; /**< proc directory entry */
  868. struct drm_info_node proc_nodes;
  869. struct dentry *debugfs_root;
  870. struct drm_info_node debugfs_nodes;
  871. struct drm_master *master; /* currently active master for this node */
  872. struct list_head master_list;
  873. struct drm_mode_group mode_group;
  874. };
  875. /* mode specified on the command line */
  876. struct drm_cmdline_mode {
  877. bool specified;
  878. bool refresh_specified;
  879. bool bpp_specified;
  880. int xres, yres;
  881. int bpp;
  882. int refresh;
  883. bool rb;
  884. bool interlace;
  885. bool cvt;
  886. bool margins;
  887. enum drm_connector_force force;
  888. };
  889. struct drm_pending_vblank_event {
  890. struct drm_pending_event base;
  891. int pipe;
  892. struct drm_event_vblank event;
  893. };
  894. /**
  895. * DRM device structure. This structure represent a complete card that
  896. * may contain multiple heads.
  897. */
  898. struct drm_device {
  899. struct list_head driver_item; /**< list of devices per driver */
  900. char *devname; /**< For /proc/interrupts */
  901. int if_version; /**< Highest interface version set */
  902. /** \name Locks */
  903. /*@{ */
  904. spinlock_t count_lock; /**< For inuse, drm_device::open_count, drm_device::buf_use */
  905. struct mutex struct_mutex; /**< For others */
  906. /*@} */
  907. /** \name Usage Counters */
  908. /*@{ */
  909. int open_count; /**< Outstanding files open */
  910. atomic_t ioctl_count; /**< Outstanding IOCTLs pending */
  911. atomic_t vma_count; /**< Outstanding vma areas open */
  912. int buf_use; /**< Buffers in use -- cannot alloc */
  913. atomic_t buf_alloc; /**< Buffer allocation in progress */
  914. /*@} */
  915. /** \name Performance counters */
  916. /*@{ */
  917. unsigned long counters;
  918. enum drm_stat_type types[15];
  919. atomic_t counts[15];
  920. /*@} */
  921. struct list_head filelist;
  922. /** \name Memory management */
  923. /*@{ */
  924. struct list_head maplist; /**< Linked list of regions */
  925. int map_count; /**< Number of mappable regions */
  926. struct drm_open_hash map_hash; /**< User token hash table for maps */
  927. /** \name Context handle management */
  928. /*@{ */
  929. struct list_head ctxlist; /**< Linked list of context handles */
  930. int ctx_count; /**< Number of context handles */
  931. struct mutex ctxlist_mutex; /**< For ctxlist */
  932. struct idr ctx_idr;
  933. struct list_head vmalist; /**< List of vmas (for debugging) */
  934. /*@} */
  935. /** \name DMA queues (contexts) */
  936. /*@{ */
  937. int queue_count; /**< Number of active DMA queues */
  938. int queue_reserved; /**< Number of reserved DMA queues */
  939. int queue_slots; /**< Actual length of queuelist */
  940. struct drm_queue **queuelist; /**< Vector of pointers to DMA queues */
  941. struct drm_device_dma *dma; /**< Optional pointer for DMA support */
  942. /*@} */
  943. /** \name Context support */
  944. /*@{ */
  945. int irq_enabled; /**< True if irq handler is enabled */
  946. __volatile__ long context_flag; /**< Context swapping flag */
  947. __volatile__ long interrupt_flag; /**< Interruption handler flag */
  948. __volatile__ long dma_flag; /**< DMA dispatch flag */
  949. wait_queue_head_t context_wait; /**< Processes waiting on ctx switch */
  950. int last_checked; /**< Last context checked for DMA */
  951. int last_context; /**< Last current context */
  952. unsigned long last_switch; /**< jiffies at last context switch */
  953. /*@} */
  954. struct work_struct work;
  955. /** \name VBLANK IRQ support */
  956. /*@{ */
  957. /*
  958. * At load time, disabling the vblank interrupt won't be allowed since
  959. * old clients may not call the modeset ioctl and therefore misbehave.
  960. * Once the modeset ioctl *has* been called though, we can safely
  961. * disable them when unused.
  962. */
  963. int vblank_disable_allowed;
  964. wait_queue_head_t *vbl_queue; /**< VBLANK wait queue */
  965. atomic_t *_vblank_count; /**< number of VBLANK interrupts (driver must alloc the right number of counters) */
  966. struct timeval *_vblank_time; /**< timestamp of current vblank_count (drivers must alloc right number of fields) */
  967. spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */
  968. spinlock_t vbl_lock;
  969. atomic_t *vblank_refcount; /* number of users of vblank interruptsper crtc */
  970. u32 *last_vblank; /* protected by dev->vbl_lock, used */
  971. /* for wraparound handling */
  972. int *vblank_enabled; /* so we don't call enable more than
  973. once per disable */
  974. int *vblank_inmodeset; /* Display driver is setting mode */
  975. u32 *last_vblank_wait; /* Last vblank seqno waited per CRTC */
  976. struct timer_list vblank_disable_timer;
  977. u32 max_vblank_count; /**< size of vblank counter register */
  978. /**
  979. * List of events
  980. */
  981. struct list_head vblank_event_list;
  982. spinlock_t event_lock;
  983. /*@} */
  984. cycles_t ctx_start;
  985. cycles_t lck_start;
  986. struct fasync_struct *buf_async;/**< Processes waiting for SIGIO */
  987. wait_queue_head_t buf_readers; /**< Processes waiting to read */
  988. wait_queue_head_t buf_writers; /**< Processes waiting to ctx switch */
  989. struct drm_agp_head *agp; /**< AGP data */
  990. struct device *dev; /**< Device structure */
  991. struct pci_dev *pdev; /**< PCI device structure */
  992. int pci_vendor; /**< PCI vendor id */
  993. int pci_device; /**< PCI device id */
  994. #ifdef __alpha__
  995. struct pci_controller *hose;
  996. #endif
  997. struct platform_device *platformdev; /**< Platform device struture */
  998. struct usb_device *usbdev;
  999. struct drm_sg_mem *sg; /**< Scatter gather memory */
  1000. unsigned int num_crtcs; /**< Number of CRTCs on this device */
  1001. void *dev_private; /**< device private data */
  1002. void *mm_private;
  1003. struct address_space *dev_mapping;
  1004. struct drm_sigdata sigdata; /**< For block_all_signals */
  1005. sigset_t sigmask;
  1006. struct drm_driver *driver;
  1007. struct drm_local_map *agp_buffer_map;
  1008. unsigned int agp_buffer_token;
  1009. struct drm_minor *control; /**< Control node for card */
  1010. struct drm_minor *primary; /**< render type primary screen head */
  1011. struct drm_mode_config mode_config; /**< Current mode config */
  1012. /** \name GEM information */
  1013. /*@{ */
  1014. spinlock_t object_name_lock;
  1015. struct idr object_name_idr;
  1016. /*@} */
  1017. int switch_power_state;
  1018. };
  1019. #define DRM_SWITCH_POWER_ON 0
  1020. #define DRM_SWITCH_POWER_OFF 1
  1021. #define DRM_SWITCH_POWER_CHANGING 2
  1022. static __inline__ int drm_core_check_feature(struct drm_device *dev,
  1023. int feature)
  1024. {
  1025. return ((dev->driver->driver_features & feature) ? 1 : 0);
  1026. }
  1027. static inline int drm_dev_to_irq(struct drm_device *dev)
  1028. {
  1029. return dev->driver->bus->get_irq(dev);
  1030. }
  1031. #if __OS_HAS_AGP
  1032. static inline int drm_core_has_AGP(struct drm_device *dev)
  1033. {
  1034. return drm_core_check_feature(dev, DRIVER_USE_AGP);
  1035. }
  1036. #else
  1037. #define drm_core_has_AGP(dev) (0)
  1038. #endif
  1039. #if __OS_HAS_MTRR
  1040. static inline int drm_core_has_MTRR(struct drm_device *dev)
  1041. {
  1042. return drm_core_check_feature(dev, DRIVER_USE_MTRR);
  1043. }
  1044. #define DRM_MTRR_WC MTRR_TYPE_WRCOMB
  1045. static inline int drm_mtrr_add(unsigned long offset, unsigned long size,
  1046. unsigned int flags)
  1047. {
  1048. return mtrr_add(offset, size, flags, 1);
  1049. }
  1050. static inline int drm_mtrr_del(int handle, unsigned long offset,
  1051. unsigned long size, unsigned int flags)
  1052. {
  1053. return mtrr_del(handle, offset, size);
  1054. }
  1055. #else
  1056. #define drm_core_has_MTRR(dev) (0)
  1057. #define DRM_MTRR_WC 0
  1058. static inline int drm_mtrr_add(unsigned long offset, unsigned long size,
  1059. unsigned int flags)
  1060. {
  1061. return 0;
  1062. }
  1063. static inline int drm_mtrr_del(int handle, unsigned long offset,
  1064. unsigned long size, unsigned int flags)
  1065. {
  1066. return 0;
  1067. }
  1068. #endif
  1069. /******************************************************************/
  1070. /** \name Internal function definitions */
  1071. /*@{*/
  1072. /* Driver support (drm_drv.h) */
  1073. extern long drm_ioctl(struct file *filp,
  1074. unsigned int cmd, unsigned long arg);
  1075. extern long drm_compat_ioctl(struct file *filp,
  1076. unsigned int cmd, unsigned long arg);
  1077. extern int drm_lastclose(struct drm_device *dev);
  1078. /* Device support (drm_fops.h) */
  1079. extern struct mutex drm_global_mutex;
  1080. extern int drm_open(struct inode *inode, struct file *filp);
  1081. extern int drm_stub_open(struct inode *inode, struct file *filp);
  1082. extern int drm_fasync(int fd, struct file *filp, int on);
  1083. extern ssize_t drm_read(struct file *filp, char __user *buffer,
  1084. size_t count, loff_t *offset);
  1085. extern int drm_release(struct inode *inode, struct file *filp);
  1086. /* Mapping support (drm_vm.h) */
  1087. extern int drm_mmap(struct file *filp, struct vm_area_struct *vma);
  1088. extern int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma);
  1089. extern void drm_vm_open_locked(struct vm_area_struct *vma);
  1090. extern void drm_vm_close_locked(struct vm_area_struct *vma);
  1091. extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait);
  1092. /* Memory management support (drm_memory.h) */
  1093. #include "drm_memory.h"
  1094. extern void drm_mem_init(void);
  1095. extern int drm_mem_info(char *buf, char **start, off_t offset,
  1096. int request, int *eof, void *data);
  1097. extern void *drm_realloc(void *oldpt, size_t oldsize, size_t size, int area);
  1098. extern void drm_free_agp(DRM_AGP_MEM * handle, int pages);
  1099. extern int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start);
  1100. extern DRM_AGP_MEM *drm_agp_bind_pages(struct drm_device *dev,
  1101. struct page **pages,
  1102. unsigned long num_pages,
  1103. uint32_t gtt_offset,
  1104. uint32_t type);
  1105. extern int drm_unbind_agp(DRM_AGP_MEM * handle);
  1106. /* Misc. IOCTL support (drm_ioctl.h) */
  1107. extern int drm_irq_by_busid(struct drm_device *dev, void *data,
  1108. struct drm_file *file_priv);
  1109. extern int drm_getunique(struct drm_device *dev, void *data,
  1110. struct drm_file *file_priv);
  1111. extern int drm_setunique(struct drm_device *dev, void *data,
  1112. struct drm_file *file_priv);
  1113. extern int drm_getmap(struct drm_device *dev, void *data,
  1114. struct drm_file *file_priv);
  1115. extern int drm_getclient(struct drm_device *dev, void *data,
  1116. struct drm_file *file_priv);
  1117. extern int drm_getstats(struct drm_device *dev, void *data,
  1118. struct drm_file *file_priv);
  1119. extern int drm_getcap(struct drm_device *dev, void *data,
  1120. struct drm_file *file_priv);
  1121. extern int drm_setversion(struct drm_device *dev, void *data,
  1122. struct drm_file *file_priv);
  1123. extern int drm_noop(struct drm_device *dev, void *data,
  1124. struct drm_file *file_priv);
  1125. /* Context IOCTL support (drm_context.h) */
  1126. extern int drm_resctx(struct drm_device *dev, void *data,
  1127. struct drm_file *file_priv);
  1128. extern int drm_addctx(struct drm_device *dev, void *data,
  1129. struct drm_file *file_priv);
  1130. extern int drm_modctx(struct drm_device *dev, void *data,
  1131. struct drm_file *file_priv);
  1132. extern int drm_getctx(struct drm_device *dev, void *data,
  1133. struct drm_file *file_priv);
  1134. extern int drm_switchctx(struct drm_device *dev, void *data,
  1135. struct drm_file *file_priv);
  1136. extern int drm_newctx(struct drm_device *dev, void *data,
  1137. struct drm_file *file_priv);
  1138. extern int drm_rmctx(struct drm_device *dev, void *data,
  1139. struct drm_file *file_priv);
  1140. extern int drm_ctxbitmap_init(struct drm_device *dev);
  1141. extern void drm_ctxbitmap_cleanup(struct drm_device *dev);
  1142. extern void drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle);
  1143. extern int drm_setsareactx(struct drm_device *dev, void *data,
  1144. struct drm_file *file_priv);
  1145. extern int drm_getsareactx(struct drm_device *dev, void *data,
  1146. struct drm_file *file_priv);
  1147. /* Authentication IOCTL support (drm_auth.h) */
  1148. extern int drm_getmagic(struct drm_device *dev, void *data,
  1149. struct drm_file *file_priv);
  1150. extern int drm_authmagic(struct drm_device *dev, void *data,
  1151. struct drm_file *file_priv);
  1152. extern int drm_remove_magic(struct drm_master *master, drm_magic_t magic);
  1153. /* Cache management (drm_cache.c) */
  1154. void drm_clflush_pages(struct page *pages[], unsigned long num_pages);
  1155. /* Locking IOCTL support (drm_lock.h) */
  1156. extern int drm_lock(struct drm_device *dev, void *data,
  1157. struct drm_file *file_priv);
  1158. extern int drm_unlock(struct drm_device *dev, void *data,
  1159. struct drm_file *file_priv);
  1160. extern int drm_lock_free(struct drm_lock_data *lock_data, unsigned int context);
  1161. extern void drm_idlelock_take(struct drm_lock_data *lock_data);
  1162. extern void drm_idlelock_release(struct drm_lock_data *lock_data);
  1163. /*
  1164. * These are exported to drivers so that they can implement fencing using
  1165. * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
  1166. */
  1167. extern int drm_i_have_hw_lock(struct drm_device *dev, struct drm_file *file_priv);
  1168. /* Buffer management support (drm_bufs.h) */
  1169. extern int drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc * request);
  1170. extern int drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc * request);
  1171. extern int drm_addmap(struct drm_device *dev, resource_size_t offset,
  1172. unsigned int size, enum drm_map_type type,
  1173. enum drm_map_flags flags, struct drm_local_map **map_ptr);
  1174. extern int drm_addmap_ioctl(struct drm_device *dev, void *data,
  1175. struct drm_file *file_priv);
  1176. extern int drm_rmmap(struct drm_device *dev, struct drm_local_map *map);
  1177. extern int drm_rmmap_locked(struct drm_device *dev, struct drm_local_map *map);
  1178. extern int drm_rmmap_ioctl(struct drm_device *dev, void *data,
  1179. struct drm_file *file_priv);
  1180. extern int drm_addbufs(struct drm_device *dev, void *data,
  1181. struct drm_file *file_priv);
  1182. extern int drm_infobufs(struct drm_device *dev, void *data,
  1183. struct drm_file *file_priv);
  1184. extern int drm_markbufs(struct drm_device *dev, void *data,
  1185. struct drm_file *file_priv);
  1186. extern int drm_freebufs(struct drm_device *dev, void *data,
  1187. struct drm_file *file_priv);
  1188. extern int drm_mapbufs(struct drm_device *dev, void *data,
  1189. struct drm_file *file_priv);
  1190. extern int drm_order(unsigned long size);
  1191. /* DMA support (drm_dma.h) */
  1192. extern int drm_dma_setup(struct drm_device *dev);
  1193. extern void drm_dma_takedown(struct drm_device *dev);
  1194. extern void drm_free_buffer(struct drm_device *dev, struct drm_buf * buf);
  1195. extern void drm_core_reclaim_buffers(struct drm_device *dev,
  1196. struct drm_file *filp);
  1197. /* IRQ support (drm_irq.h) */
  1198. extern int drm_control(struct drm_device *dev, void *data,
  1199. struct drm_file *file_priv);
  1200. extern irqreturn_t drm_irq_handler(DRM_IRQ_ARGS);
  1201. extern int drm_irq_install(struct drm_device *dev);
  1202. extern int drm_irq_uninstall(struct drm_device *dev);
  1203. extern void drm_driver_irq_preinstall(struct drm_device *dev);
  1204. extern void drm_driver_irq_postinstall(struct drm_device *dev);
  1205. extern void drm_driver_irq_uninstall(struct drm_device *dev);
  1206. extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
  1207. extern int drm_wait_vblank(struct drm_device *dev, void *data,
  1208. struct drm_file *filp);
  1209. extern int drm_vblank_wait(struct drm_device *dev, unsigned int *vbl_seq);
  1210. extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
  1211. extern u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
  1212. struct timeval *vblanktime);
  1213. extern bool drm_handle_vblank(struct drm_device *dev, int crtc);
  1214. extern int drm_vblank_get(struct drm_device *dev, int crtc);
  1215. extern void drm_vblank_put(struct drm_device *dev, int crtc);
  1216. extern void drm_vblank_off(struct drm_device *dev, int crtc);
  1217. extern void drm_vblank_cleanup(struct drm_device *dev);
  1218. extern u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
  1219. struct timeval *tvblank, unsigned flags);
  1220. extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
  1221. int crtc, int *max_error,
  1222. struct timeval *vblank_time,
  1223. unsigned flags,
  1224. struct drm_crtc *refcrtc);
  1225. extern void drm_calc_timestamping_constants(struct drm_crtc *crtc);
  1226. extern bool
  1227. drm_mode_parse_command_line_for_connector(const char *mode_option,
  1228. struct drm_connector *connector,
  1229. struct drm_cmdline_mode *mode);
  1230. extern struct drm_display_mode *
  1231. drm_mode_create_from_cmdline_mode(struct drm_device *dev,
  1232. struct drm_cmdline_mode *cmd);
  1233. /* Modesetting support */
  1234. extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc);
  1235. extern void drm_vblank_post_modeset(struct drm_device *dev, int crtc);
  1236. extern int drm_modeset_ctl(struct drm_device *dev, void *data,
  1237. struct drm_file *file_priv);
  1238. /* AGP/GART support (drm_agpsupport.h) */
  1239. extern struct drm_agp_head *drm_agp_init(struct drm_device *dev);
  1240. extern int drm_agp_acquire(struct drm_device *dev);
  1241. extern int drm_agp_acquire_ioctl(struct drm_device *dev, void *data,
  1242. struct drm_file *file_priv);
  1243. extern int drm_agp_release(struct drm_device *dev);
  1244. extern int drm_agp_release_ioctl(struct drm_device *dev, void *data,
  1245. struct drm_file *file_priv);
  1246. extern int drm_agp_enable(struct drm_device *dev, struct drm_agp_mode mode);
  1247. extern int drm_agp_enable_ioctl(struct drm_device *dev, void *data,
  1248. struct drm_file *file_priv);
  1249. extern int drm_agp_info(struct drm_device *dev, struct drm_agp_info *info);
  1250. extern int drm_agp_info_ioctl(struct drm_device *dev, void *data,
  1251. struct drm_file *file_priv);
  1252. extern int drm_agp_alloc(struct drm_device *dev, struct drm_agp_buffer *request);
  1253. extern int drm_agp_alloc_ioctl(struct drm_device *dev, void *data,
  1254. struct drm_file *file_priv);
  1255. extern int drm_agp_free(struct drm_device *dev, struct drm_agp_buffer *request);
  1256. extern int drm_agp_free_ioctl(struct drm_device *dev, void *data,
  1257. struct drm_file *file_priv);
  1258. extern int drm_agp_unbind(struct drm_device *dev, struct drm_agp_binding *request);
  1259. extern int drm_agp_unbind_ioctl(struct drm_device *dev, void *data,
  1260. struct drm_file *file_priv);
  1261. extern int drm_agp_bind(struct drm_device *dev, struct drm_agp_binding *request);
  1262. extern int drm_agp_bind_ioctl(struct drm_device *dev, void *data,
  1263. struct drm_file *file_priv);
  1264. /* Stub support (drm_stub.h) */
  1265. extern int drm_setmaster_ioctl(struct drm_device *dev, void *data,
  1266. struct drm_file *file_priv);
  1267. extern int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
  1268. struct drm_file *file_priv);
  1269. struct drm_master *drm_master_create(struct drm_minor *minor);
  1270. extern struct drm_master *drm_master_get(struct drm_master *master);
  1271. extern void drm_master_put(struct drm_master **master);
  1272. extern void drm_put_dev(struct drm_device *dev);
  1273. extern int drm_put_minor(struct drm_minor **minor);
  1274. extern unsigned int drm_debug;
  1275. extern unsigned int drm_vblank_offdelay;
  1276. extern unsigned int drm_timestamp_precision;
  1277. extern struct class *drm_class;
  1278. extern struct proc_dir_entry *drm_proc_root;
  1279. extern struct dentry *drm_debugfs_root;
  1280. extern struct idr drm_minors_idr;
  1281. extern struct drm_local_map *drm_getsarea(struct drm_device *dev);
  1282. /* Proc support (drm_proc.h) */
  1283. extern int drm_proc_init(struct drm_minor *minor, int minor_id,
  1284. struct proc_dir_entry *root);
  1285. extern int drm_proc_cleanup(struct drm_minor *minor, struct proc_dir_entry *root);
  1286. /* Debugfs support */
  1287. #if defined(CONFIG_DEBUG_FS)
  1288. extern int drm_debugfs_init(struct drm_minor *minor, int minor_id,
  1289. struct dentry *root);
  1290. extern int drm_debugfs_create_files(struct drm_info_list *files, int count,
  1291. struct dentry *root, struct drm_minor *minor);
  1292. extern int drm_debugfs_remove_files(struct drm_info_list *files, int count,
  1293. struct drm_minor *minor);
  1294. extern int drm_debugfs_cleanup(struct drm_minor *minor);
  1295. #endif
  1296. /* Info file support */
  1297. extern int drm_name_info(struct seq_file *m, void *data);
  1298. extern int drm_vm_info(struct seq_file *m, void *data);
  1299. extern int drm_queues_info(struct seq_file *m, void *data);
  1300. extern int drm_bufs_info(struct seq_file *m, void *data);
  1301. extern int drm_vblank_info(struct seq_file *m, void *data);
  1302. extern int drm_clients_info(struct seq_file *m, void* data);
  1303. extern int drm_gem_name_info(struct seq_file *m, void *data);
  1304. #if DRM_DEBUG_CODE
  1305. extern int drm_vma_info(struct seq_file *m, void *data);
  1306. #endif
  1307. /* Scatter Gather Support (drm_scatter.h) */
  1308. extern void drm_sg_cleanup(struct drm_sg_mem * entry);
  1309. extern int drm_sg_alloc_ioctl(struct drm_device *dev, void *data,
  1310. struct drm_file *file_priv);
  1311. extern int drm_sg_alloc(struct drm_device *dev, struct drm_scatter_gather * request);
  1312. extern int drm_sg_free(struct drm_device *dev, void *data,
  1313. struct drm_file *file_priv);
  1314. /* ATI PCIGART support (ati_pcigart.h) */
  1315. extern int drm_ati_pcigart_init(struct drm_device *dev,
  1316. struct drm_ati_pcigart_info * gart_info);
  1317. extern int drm_ati_pcigart_cleanup(struct drm_device *dev,
  1318. struct drm_ati_pcigart_info * gart_info);
  1319. extern drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size,
  1320. size_t align);
  1321. extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
  1322. extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
  1323. /* sysfs support (drm_sysfs.c) */
  1324. struct drm_sysfs_class;
  1325. extern struct class *drm_sysfs_create(struct module *owner, char *name);
  1326. extern void drm_sysfs_destroy(void);
  1327. extern int drm_sysfs_device_add(struct drm_minor *minor);
  1328. extern void drm_sysfs_hotplug_event(struct drm_device *dev);
  1329. extern void drm_sysfs_device_remove(struct drm_minor *minor);
  1330. extern char *drm_get_connector_status_name(enum drm_connector_status status);
  1331. extern int drm_sysfs_connector_add(struct drm_connector *connector);
  1332. extern void drm_sysfs_connector_remove(struct drm_connector *connector);
  1333. /* Graphics Execution Manager library functions (drm_gem.c) */
  1334. int drm_gem_init(struct drm_device *dev);
  1335. void drm_gem_destroy(struct drm_device *dev);
  1336. void drm_gem_object_release(struct drm_gem_object *obj);
  1337. void drm_gem_object_free(struct kref *kref);
  1338. struct drm_gem_object *drm_gem_object_alloc(struct drm_device *dev,
  1339. size_t size);
  1340. int drm_gem_object_init(struct drm_device *dev,
  1341. struct drm_gem_object *obj, size_t size);
  1342. int drm_gem_private_object_init(struct drm_device *dev,
  1343. struct drm_gem_object *obj, size_t size);
  1344. void drm_gem_object_handle_free(struct drm_gem_object *obj);
  1345. void drm_gem_vm_open(struct vm_area_struct *vma);
  1346. void drm_gem_vm_close(struct vm_area_struct *vma);
  1347. int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
  1348. #include "drm_global.h"
  1349. static inline void
  1350. drm_gem_object_reference(struct drm_gem_object *obj)
  1351. {
  1352. kref_get(&obj->refcount);
  1353. }
  1354. static inline void
  1355. drm_gem_object_unreference(struct drm_gem_object *obj)
  1356. {
  1357. if (obj != NULL)
  1358. kref_put(&obj->refcount, drm_gem_object_free);
  1359. }
  1360. static inline void
  1361. drm_gem_object_unreference_unlocked(struct drm_gem_object *obj)
  1362. {
  1363. if (obj != NULL) {
  1364. struct drm_device *dev = obj->dev;
  1365. mutex_lock(&dev->struct_mutex);
  1366. kref_put(&obj->refcount, drm_gem_object_free);
  1367. mutex_unlock(&dev->struct_mutex);
  1368. }
  1369. }
  1370. int drm_gem_handle_create(struct drm_file *file_priv,
  1371. struct drm_gem_object *obj,
  1372. u32 *handlep);
  1373. int drm_gem_handle_delete(struct drm_file *filp, u32 handle);
  1374. static inline void
  1375. drm_gem_object_handle_reference(struct drm_gem_object *obj)
  1376. {
  1377. drm_gem_object_reference(obj);
  1378. atomic_inc(&obj->handle_count);
  1379. }
  1380. static inline void
  1381. drm_gem_object_handle_unreference(struct drm_gem_object *obj)
  1382. {
  1383. if (obj == NULL)
  1384. return;
  1385. if (atomic_read(&obj->handle_count) == 0)
  1386. return;
  1387. /*
  1388. * Must bump handle count first as this may be the last
  1389. * ref, in which case the object would disappear before we
  1390. * checked for a name
  1391. */
  1392. if (atomic_dec_and_test(&obj->handle_count))
  1393. drm_gem_object_handle_free(obj);
  1394. drm_gem_object_unreference(obj);
  1395. }
  1396. static inline void
  1397. drm_gem_object_handle_unreference_unlocked(struct drm_gem_object *obj)
  1398. {
  1399. if (obj == NULL)
  1400. return;
  1401. if (atomic_read(&obj->handle_count) == 0)
  1402. return;
  1403. /*
  1404. * Must bump handle count first as this may be the last
  1405. * ref, in which case the object would disappear before we
  1406. * checked for a name
  1407. */
  1408. if (atomic_dec_and_test(&obj->handle_count))
  1409. drm_gem_object_handle_free(obj);
  1410. drm_gem_object_unreference_unlocked(obj);
  1411. }
  1412. struct drm_gem_object *drm_gem_object_lookup(struct drm_device *dev,
  1413. struct drm_file *filp,
  1414. u32 handle);
  1415. int drm_gem_close_ioctl(struct drm_device *dev, void *data,
  1416. struct drm_file *file_priv);
  1417. int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
  1418. struct drm_file *file_priv);
  1419. int drm_gem_open_ioctl(struct drm_device *dev, void *data,
  1420. struct drm_file *file_priv);
  1421. void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
  1422. void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
  1423. extern void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev);
  1424. extern void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev);
  1425. extern void drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev);
  1426. static __inline__ struct drm_local_map *drm_core_findmap(struct drm_device *dev,
  1427. unsigned int token)
  1428. {
  1429. struct drm_map_list *_entry;
  1430. list_for_each_entry(_entry, &dev->maplist, head)
  1431. if (_entry->user_token == token)
  1432. return _entry->map;
  1433. return NULL;
  1434. }
  1435. static __inline__ void drm_core_dropmap(struct drm_local_map *map)
  1436. {
  1437. }
  1438. #include "drm_mem_util.h"
  1439. extern int drm_fill_in_dev(struct drm_device *dev,
  1440. const struct pci_device_id *ent,
  1441. struct drm_driver *driver);
  1442. int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type);
  1443. /*@}*/
  1444. /* PCI section */
  1445. static __inline__ int drm_pci_device_is_agp(struct drm_device *dev)
  1446. {
  1447. if (dev->driver->device_is_agp != NULL) {
  1448. int err = (*dev->driver->device_is_agp) (dev);
  1449. if (err != 2) {
  1450. return err;
  1451. }
  1452. }
  1453. return pci_find_capability(dev->pdev, PCI_CAP_ID_AGP);
  1454. }
  1455. extern int drm_pci_init(struct drm_driver *driver, struct pci_driver *pdriver);
  1456. extern void drm_pci_exit(struct drm_driver *driver, struct pci_driver *pdriver);
  1457. extern int drm_get_pci_dev(struct pci_dev *pdev,
  1458. const struct pci_device_id *ent,
  1459. struct drm_driver *driver);
  1460. /* platform section */
  1461. extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device);
  1462. extern void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device);
  1463. extern int drm_get_platform_dev(struct platform_device *pdev,
  1464. struct drm_driver *driver);
  1465. #endif /* __KERNEL__ */
  1466. #endif