Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.0-rc3 1077 lines 35 kB view raw
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 32#ifndef _DRM_P_H_ 33#define _DRM_P_H_ 34 35#include <linux/agp_backend.h> 36#include <linux/cdev.h> 37#include <linux/dma-mapping.h> 38#include <linux/file.h> 39#include <linux/fs.h> 40#include <linux/highmem.h> 41#include <linux/idr.h> 42#include <linux/init.h> 43#include <linux/io.h> 44#include <linux/jiffies.h> 45#include <linux/kernel.h> 46#include <linux/kref.h> 47#include <linux/miscdevice.h> 48#include <linux/mm.h> 49#include <linux/mutex.h> 50#include <linux/pci.h> 51#include <linux/platform_device.h> 52#include <linux/poll.h> 53#include <linux/ratelimit.h> 54#include <linux/sched.h> 55#include <linux/slab.h> 56#include <linux/types.h> 57#include <linux/vmalloc.h> 58#include <linux/workqueue.h> 59 60#include <asm/mman.h> 61#include <asm/pgalloc.h> 62#include <asm/uaccess.h> 63 64#include <uapi/drm/drm.h> 65#include <uapi/drm/drm_mode.h> 66 67#include <drm/drm_agpsupport.h> 68#include <drm/drm_crtc.h> 69#include <drm/drm_global.h> 70#include <drm/drm_hashtab.h> 71#include <drm/drm_mem_util.h> 72#include <drm/drm_mm.h> 73#include <drm/drm_os_linux.h> 74#include <drm/drm_sarea.h> 75#include <drm/drm_vma_manager.h> 76 77struct module; 78 79struct drm_file; 80struct drm_device; 81struct drm_agp_head; 82struct drm_local_map; 83struct drm_device_dma; 84struct drm_dma_handle; 85struct drm_gem_object; 86 87struct device_node; 88struct videomode; 89struct reservation_object; 90struct dma_buf_attachment; 91 92/* 93 * 4 debug categories are defined: 94 * 95 * CORE: Used in the generic drm code: drm_ioctl.c, drm_mm.c, drm_memory.c, ... 96 * This is the category used by the DRM_DEBUG() macro. 97 * 98 * DRIVER: Used in the vendor specific part of the driver: i915, radeon, ... 99 * This is the category used by the DRM_DEBUG_DRIVER() macro. 100 * 101 * KMS: used in the modesetting code. 102 * This is the category used by the DRM_DEBUG_KMS() macro. 103 * 104 * PRIME: used in the prime code. 105 * This is the category used by the DRM_DEBUG_PRIME() macro. 106 * 107 * Enabling verbose debug messages is done through the drm.debug parameter, 108 * each category being enabled by a bit. 109 * 110 * drm.debug=0x1 will enable CORE messages 111 * drm.debug=0x2 will enable DRIVER messages 112 * drm.debug=0x3 will enable CORE and DRIVER messages 113 * ... 114 * drm.debug=0xf will enable all messages 115 * 116 * An interesting feature is that it's possible to enable verbose logging at 117 * run-time by echoing the debug value in its sysfs node: 118 * # echo 0xf > /sys/module/drm/parameters/debug 119 */ 120#define DRM_UT_CORE 0x01 121#define DRM_UT_DRIVER 0x02 122#define DRM_UT_KMS 0x04 123#define DRM_UT_PRIME 0x08 124 125extern __printf(2, 3) 126void drm_ut_debug_printk(const char *function_name, 127 const char *format, ...); 128extern __printf(1, 2) 129void drm_err(const char *format, ...); 130 131/***********************************************************************/ 132/** \name DRM template customization defaults */ 133/*@{*/ 134 135/* driver capabilities and requirements mask */ 136#define DRIVER_USE_AGP 0x1 137#define DRIVER_PCI_DMA 0x8 138#define DRIVER_SG 0x10 139#define DRIVER_HAVE_DMA 0x20 140#define DRIVER_HAVE_IRQ 0x40 141#define DRIVER_IRQ_SHARED 0x80 142#define DRIVER_GEM 0x1000 143#define DRIVER_MODESET 0x2000 144#define DRIVER_PRIME 0x4000 145#define DRIVER_RENDER 0x8000 146#define DRIVER_ATOMIC 0x10000 147 148/***********************************************************************/ 149/** \name Macros to make printk easier */ 150/*@{*/ 151 152/** 153 * Error output. 154 * 155 * \param fmt printf() like format string. 156 * \param arg arguments 157 */ 158#define DRM_ERROR(fmt, ...) \ 159 drm_err(fmt, ##__VA_ARGS__) 160 161/** 162 * Rate limited error output. Like DRM_ERROR() but won't flood the log. 163 * 164 * \param fmt printf() like format string. 165 * \param arg arguments 166 */ 167#define DRM_ERROR_RATELIMITED(fmt, ...) \ 168({ \ 169 static DEFINE_RATELIMIT_STATE(_rs, \ 170 DEFAULT_RATELIMIT_INTERVAL, \ 171 DEFAULT_RATELIMIT_BURST); \ 172 \ 173 if (__ratelimit(&_rs)) \ 174 drm_err(fmt, ##__VA_ARGS__); \ 175}) 176 177#define DRM_INFO(fmt, ...) \ 178 printk(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__) 179 180#define DRM_INFO_ONCE(fmt, ...) \ 181 printk_once(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__) 182 183/** 184 * Debug output. 185 * 186 * \param fmt printf() like format string. 187 * \param arg arguments 188 */ 189#define DRM_DEBUG(fmt, args...) \ 190 do { \ 191 if (unlikely(drm_debug & DRM_UT_CORE)) \ 192 drm_ut_debug_printk(__func__, fmt, ##args); \ 193 } while (0) 194 195#define DRM_DEBUG_DRIVER(fmt, args...) \ 196 do { \ 197 if (unlikely(drm_debug & DRM_UT_DRIVER)) \ 198 drm_ut_debug_printk(__func__, fmt, ##args); \ 199 } while (0) 200#define DRM_DEBUG_KMS(fmt, args...) \ 201 do { \ 202 if (unlikely(drm_debug & DRM_UT_KMS)) \ 203 drm_ut_debug_printk(__func__, fmt, ##args); \ 204 } while (0) 205#define DRM_DEBUG_PRIME(fmt, args...) \ 206 do { \ 207 if (unlikely(drm_debug & DRM_UT_PRIME)) \ 208 drm_ut_debug_printk(__func__, fmt, ##args); \ 209 } while (0) 210 211/*@}*/ 212 213/***********************************************************************/ 214/** \name Internal types and structures */ 215/*@{*/ 216 217#define DRM_IF_VERSION(maj, min) (maj << 16 | min) 218 219/** 220 * Ioctl function type. 221 * 222 * \param inode device inode. 223 * \param file_priv DRM file private pointer. 224 * \param cmd command. 225 * \param arg argument. 226 */ 227typedef int drm_ioctl_t(struct drm_device *dev, void *data, 228 struct drm_file *file_priv); 229 230typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd, 231 unsigned long arg); 232 233#define DRM_IOCTL_NR(n) _IOC_NR(n) 234#define DRM_MAJOR 226 235 236#define DRM_AUTH 0x1 237#define DRM_MASTER 0x2 238#define DRM_ROOT_ONLY 0x4 239#define DRM_CONTROL_ALLOW 0x8 240#define DRM_UNLOCKED 0x10 241#define DRM_RENDER_ALLOW 0x20 242 243struct drm_ioctl_desc { 244 unsigned int cmd; 245 int flags; 246 drm_ioctl_t *func; 247 unsigned int cmd_drv; 248 const char *name; 249}; 250 251/** 252 * Creates a driver or general drm_ioctl_desc array entry for the given 253 * ioctl, for use by drm_ioctl(). 254 */ 255 256#define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \ 257 [DRM_IOCTL_NR(DRM_##ioctl)] = {.cmd = DRM_##ioctl, .func = _func, .flags = _flags, .cmd_drv = DRM_IOCTL_##ioctl, .name = #ioctl} 258 259/* Event queued up for userspace to read */ 260struct drm_pending_event { 261 struct drm_event *event; 262 struct list_head link; 263 struct drm_file *file_priv; 264 pid_t pid; /* pid of requester, no guarantee it's valid by the time 265 we deliver the event, for tracing only */ 266 void (*destroy)(struct drm_pending_event *event); 267}; 268 269/* initial implementaton using a linked list - todo hashtab */ 270struct drm_prime_file_private { 271 struct list_head head; 272 struct mutex lock; 273}; 274 275/** File private data */ 276struct drm_file { 277 unsigned authenticated :1; 278 /* Whether we're master for a minor. Protected by master_mutex */ 279 unsigned is_master :1; 280 /* true when the client has asked us to expose stereo 3D mode flags */ 281 unsigned stereo_allowed :1; 282 /* 283 * true if client understands CRTC primary planes and cursor planes 284 * in the plane list 285 */ 286 unsigned universal_planes:1; 287 /* true if client understands atomic properties */ 288 unsigned atomic:1; 289 290 struct pid *pid; 291 kuid_t uid; 292 drm_magic_t magic; 293 struct list_head lhead; 294 struct drm_minor *minor; 295 unsigned long lock_count; 296 297 /** Mapping of mm object handles to object pointers. */ 298 struct idr object_idr; 299 /** Lock for synchronization of access to object_idr. */ 300 spinlock_t table_lock; 301 302 struct file *filp; 303 void *driver_priv; 304 305 struct drm_master *master; /* master this node is currently associated with 306 N.B. not always minor->master */ 307 /** 308 * fbs - List of framebuffers associated with this file. 309 * 310 * Protected by fbs_lock. Note that the fbs list holds a reference on 311 * the fb object to prevent it from untimely disappearing. 312 */ 313 struct list_head fbs; 314 struct mutex fbs_lock; 315 316 wait_queue_head_t event_wait; 317 struct list_head event_list; 318 int event_space; 319 320 struct drm_prime_file_private prime; 321}; 322 323/** 324 * Lock data. 325 */ 326struct drm_lock_data { 327 struct drm_hw_lock *hw_lock; /**< Hardware lock */ 328 /** Private of lock holder's file (NULL=kernel) */ 329 struct drm_file *file_priv; 330 wait_queue_head_t lock_queue; /**< Queue of blocked processes */ 331 unsigned long lock_time; /**< Time of last lock in jiffies */ 332 spinlock_t spinlock; 333 uint32_t kernel_waiters; 334 uint32_t user_waiters; 335 int idle_has_lock; 336}; 337 338/** 339 * struct drm_master - drm master structure 340 * 341 * @refcount: Refcount for this master object. 342 * @minor: Link back to minor char device we are master for. Immutable. 343 * @unique: Unique identifier: e.g. busid. Protected by drm_global_mutex. 344 * @unique_len: Length of unique field. Protected by drm_global_mutex. 345 * @magiclist: Hash of used authentication tokens. Protected by struct_mutex. 346 * @magicfree: List of used authentication tokens. Protected by struct_mutex. 347 * @lock: DRI lock information. 348 * @driver_priv: Pointer to driver-private information. 349 */ 350struct drm_master { 351 struct kref refcount; 352 struct drm_minor *minor; 353 char *unique; 354 int unique_len; 355 struct drm_open_hash magiclist; 356 struct list_head magicfree; 357 struct drm_lock_data lock; 358 void *driver_priv; 359}; 360 361/* Size of ringbuffer for vblank timestamps. Just double-buffer 362 * in initial implementation. 363 */ 364#define DRM_VBLANKTIME_RBSIZE 2 365 366/* Flags and return codes for get_vblank_timestamp() driver function. */ 367#define DRM_CALLED_FROM_VBLIRQ 1 368#define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0) 369#define DRM_VBLANKTIME_IN_VBLANK (1 << 1) 370 371/* get_scanout_position() return flags */ 372#define DRM_SCANOUTPOS_VALID (1 << 0) 373#define DRM_SCANOUTPOS_IN_VBLANK (1 << 1) 374#define DRM_SCANOUTPOS_ACCURATE (1 << 2) 375 376/** 377 * DRM driver structure. This structure represent the common code for 378 * a family of cards. There will one drm_device for each card present 379 * in this family 380 */ 381struct drm_driver { 382 int (*load) (struct drm_device *, unsigned long flags); 383 int (*firstopen) (struct drm_device *); 384 int (*open) (struct drm_device *, struct drm_file *); 385 void (*preclose) (struct drm_device *, struct drm_file *file_priv); 386 void (*postclose) (struct drm_device *, struct drm_file *); 387 void (*lastclose) (struct drm_device *); 388 int (*unload) (struct drm_device *); 389 int (*suspend) (struct drm_device *, pm_message_t state); 390 int (*resume) (struct drm_device *); 391 int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv); 392 int (*dma_quiescent) (struct drm_device *); 393 int (*context_dtor) (struct drm_device *dev, int context); 394 int (*set_busid)(struct drm_device *dev, struct drm_master *master); 395 396 /** 397 * get_vblank_counter - get raw hardware vblank counter 398 * @dev: DRM device 399 * @crtc: counter to fetch 400 * 401 * Driver callback for fetching a raw hardware vblank counter for @crtc. 402 * If a device doesn't have a hardware counter, the driver can simply 403 * return the value of drm_vblank_count. The DRM core will account for 404 * missed vblank events while interrupts where disabled based on system 405 * timestamps. 406 * 407 * Wraparound handling and loss of events due to modesetting is dealt 408 * with in the DRM core code. 409 * 410 * RETURNS 411 * Raw vblank counter value. 412 */ 413 u32 (*get_vblank_counter) (struct drm_device *dev, int crtc); 414 415 /** 416 * enable_vblank - enable vblank interrupt events 417 * @dev: DRM device 418 * @crtc: which irq to enable 419 * 420 * Enable vblank interrupts for @crtc. If the device doesn't have 421 * a hardware vblank counter, this routine should be a no-op, since 422 * interrupts will have to stay on to keep the count accurate. 423 * 424 * RETURNS 425 * Zero on success, appropriate errno if the given @crtc's vblank 426 * interrupt cannot be enabled. 427 */ 428 int (*enable_vblank) (struct drm_device *dev, int crtc); 429 430 /** 431 * disable_vblank - disable vblank interrupt events 432 * @dev: DRM device 433 * @crtc: which irq to enable 434 * 435 * Disable vblank interrupts for @crtc. If the device doesn't have 436 * a hardware vblank counter, this routine should be a no-op, since 437 * interrupts will have to stay on to keep the count accurate. 438 */ 439 void (*disable_vblank) (struct drm_device *dev, int crtc); 440 441 /** 442 * Called by \c drm_device_is_agp. Typically used to determine if a 443 * card is really attached to AGP or not. 444 * 445 * \param dev DRM device handle 446 * 447 * \returns 448 * One of three values is returned depending on whether or not the 449 * card is absolutely \b not AGP (return of 0), absolutely \b is AGP 450 * (return of 1), or may or may not be AGP (return of 2). 451 */ 452 int (*device_is_agp) (struct drm_device *dev); 453 454 /** 455 * Called by vblank timestamping code. 456 * 457 * Return the current display scanout position from a crtc, and an 458 * optional accurate ktime_get timestamp of when position was measured. 459 * 460 * \param dev DRM device. 461 * \param crtc Id of the crtc to query. 462 * \param flags Flags from the caller (DRM_CALLED_FROM_VBLIRQ or 0). 463 * \param *vpos Target location for current vertical scanout position. 464 * \param *hpos Target location for current horizontal scanout position. 465 * \param *stime Target location for timestamp taken immediately before 466 * scanout position query. Can be NULL to skip timestamp. 467 * \param *etime Target location for timestamp taken immediately after 468 * scanout position query. Can be NULL to skip timestamp. 469 * 470 * Returns vpos as a positive number while in active scanout area. 471 * Returns vpos as a negative number inside vblank, counting the number 472 * of scanlines to go until end of vblank, e.g., -1 means "one scanline 473 * until start of active scanout / end of vblank." 474 * 475 * \return Flags, or'ed together as follows: 476 * 477 * DRM_SCANOUTPOS_VALID = Query successful. 478 * DRM_SCANOUTPOS_INVBL = Inside vblank. 479 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of 480 * this flag means that returned position may be offset by a constant 481 * but unknown small number of scanlines wrt. real scanout position. 482 * 483 */ 484 int (*get_scanout_position) (struct drm_device *dev, int crtc, 485 unsigned int flags, 486 int *vpos, int *hpos, ktime_t *stime, 487 ktime_t *etime); 488 489 /** 490 * Called by \c drm_get_last_vbltimestamp. Should return a precise 491 * timestamp when the most recent VBLANK interval ended or will end. 492 * 493 * Specifically, the timestamp in @vblank_time should correspond as 494 * closely as possible to the time when the first video scanline of 495 * the video frame after the end of VBLANK will start scanning out, 496 * the time immediately after end of the VBLANK interval. If the 497 * @crtc is currently inside VBLANK, this will be a time in the future. 498 * If the @crtc is currently scanning out a frame, this will be the 499 * past start time of the current scanout. This is meant to adhere 500 * to the OpenML OML_sync_control extension specification. 501 * 502 * \param dev dev DRM device handle. 503 * \param crtc crtc for which timestamp should be returned. 504 * \param *max_error Maximum allowable timestamp error in nanoseconds. 505 * Implementation should strive to provide timestamp 506 * with an error of at most *max_error nanoseconds. 507 * Returns true upper bound on error for timestamp. 508 * \param *vblank_time Target location for returned vblank timestamp. 509 * \param flags 0 = Defaults, no special treatment needed. 510 * \param DRM_CALLED_FROM_VBLIRQ = Function is called from vblank 511 * irq handler. Some drivers need to apply some workarounds 512 * for gpu-specific vblank irq quirks if flag is set. 513 * 514 * \returns 515 * Zero if timestamping isn't supported in current display mode or a 516 * negative number on failure. A positive status code on success, 517 * which describes how the vblank_time timestamp was computed. 518 */ 519 int (*get_vblank_timestamp) (struct drm_device *dev, int crtc, 520 int *max_error, 521 struct timeval *vblank_time, 522 unsigned flags); 523 524 /* these have to be filled in */ 525 526 irqreturn_t(*irq_handler) (int irq, void *arg); 527 void (*irq_preinstall) (struct drm_device *dev); 528 int (*irq_postinstall) (struct drm_device *dev); 529 void (*irq_uninstall) (struct drm_device *dev); 530 531 /* Master routines */ 532 int (*master_create)(struct drm_device *dev, struct drm_master *master); 533 void (*master_destroy)(struct drm_device *dev, struct drm_master *master); 534 /** 535 * master_set is called whenever the minor master is set. 536 * master_drop is called whenever the minor master is dropped. 537 */ 538 539 int (*master_set)(struct drm_device *dev, struct drm_file *file_priv, 540 bool from_open); 541 void (*master_drop)(struct drm_device *dev, struct drm_file *file_priv, 542 bool from_release); 543 544 int (*debugfs_init)(struct drm_minor *minor); 545 void (*debugfs_cleanup)(struct drm_minor *minor); 546 547 /** 548 * Driver-specific constructor for drm_gem_objects, to set up 549 * obj->driver_private. 550 * 551 * Returns 0 on success. 552 */ 553 void (*gem_free_object) (struct drm_gem_object *obj); 554 int (*gem_open_object) (struct drm_gem_object *, struct drm_file *); 555 void (*gem_close_object) (struct drm_gem_object *, struct drm_file *); 556 557 /* prime: */ 558 /* export handle -> fd (see drm_gem_prime_handle_to_fd() helper) */ 559 int (*prime_handle_to_fd)(struct drm_device *dev, struct drm_file *file_priv, 560 uint32_t handle, uint32_t flags, int *prime_fd); 561 /* import fd -> handle (see drm_gem_prime_fd_to_handle() helper) */ 562 int (*prime_fd_to_handle)(struct drm_device *dev, struct drm_file *file_priv, 563 int prime_fd, uint32_t *handle); 564 /* export GEM -> dmabuf */ 565 struct dma_buf * (*gem_prime_export)(struct drm_device *dev, 566 struct drm_gem_object *obj, int flags); 567 /* import dmabuf -> GEM */ 568 struct drm_gem_object * (*gem_prime_import)(struct drm_device *dev, 569 struct dma_buf *dma_buf); 570 /* low-level interface used by drm_gem_prime_{import,export} */ 571 int (*gem_prime_pin)(struct drm_gem_object *obj); 572 void (*gem_prime_unpin)(struct drm_gem_object *obj); 573 struct reservation_object * (*gem_prime_res_obj)( 574 struct drm_gem_object *obj); 575 struct sg_table *(*gem_prime_get_sg_table)(struct drm_gem_object *obj); 576 struct drm_gem_object *(*gem_prime_import_sg_table)( 577 struct drm_device *dev, 578 struct dma_buf_attachment *attach, 579 struct sg_table *sgt); 580 void *(*gem_prime_vmap)(struct drm_gem_object *obj); 581 void (*gem_prime_vunmap)(struct drm_gem_object *obj, void *vaddr); 582 int (*gem_prime_mmap)(struct drm_gem_object *obj, 583 struct vm_area_struct *vma); 584 585 /* vga arb irq handler */ 586 void (*vgaarb_irq)(struct drm_device *dev, bool state); 587 588 /* dumb alloc support */ 589 int (*dumb_create)(struct drm_file *file_priv, 590 struct drm_device *dev, 591 struct drm_mode_create_dumb *args); 592 int (*dumb_map_offset)(struct drm_file *file_priv, 593 struct drm_device *dev, uint32_t handle, 594 uint64_t *offset); 595 int (*dumb_destroy)(struct drm_file *file_priv, 596 struct drm_device *dev, 597 uint32_t handle); 598 599 /* Driver private ops for this object */ 600 const struct vm_operations_struct *gem_vm_ops; 601 602 int major; 603 int minor; 604 int patchlevel; 605 char *name; 606 char *desc; 607 char *date; 608 609 u32 driver_features; 610 int dev_priv_size; 611 const struct drm_ioctl_desc *ioctls; 612 int num_ioctls; 613 const struct file_operations *fops; 614 615 /* List of devices hanging off this driver with stealth attach. */ 616 struct list_head legacy_dev_list; 617}; 618 619enum drm_minor_type { 620 DRM_MINOR_LEGACY, 621 DRM_MINOR_CONTROL, 622 DRM_MINOR_RENDER, 623 DRM_MINOR_CNT, 624}; 625 626/** 627 * Info file list entry. This structure represents a debugfs or proc file to 628 * be created by the drm core 629 */ 630struct drm_info_list { 631 const char *name; /** file name */ 632 int (*show)(struct seq_file*, void*); /** show callback */ 633 u32 driver_features; /**< Required driver features for this entry */ 634 void *data; 635}; 636 637/** 638 * debugfs node structure. This structure represents a debugfs file. 639 */ 640struct drm_info_node { 641 struct list_head list; 642 struct drm_minor *minor; 643 const struct drm_info_list *info_ent; 644 struct dentry *dent; 645}; 646 647/** 648 * DRM minor structure. This structure represents a drm minor number. 649 */ 650struct drm_minor { 651 int index; /**< Minor device number */ 652 int type; /**< Control or render */ 653 struct device *kdev; /**< Linux device */ 654 struct drm_device *dev; 655 656 struct dentry *debugfs_root; 657 658 struct list_head debugfs_list; 659 struct mutex debugfs_lock; /* Protects debugfs_list. */ 660 661 /* currently active master for this node. Protected by master_mutex */ 662 struct drm_master *master; 663 struct drm_mode_group mode_group; 664}; 665 666 667struct drm_pending_vblank_event { 668 struct drm_pending_event base; 669 int pipe; 670 struct drm_event_vblank event; 671}; 672 673struct drm_vblank_crtc { 674 struct drm_device *dev; /* pointer to the drm_device */ 675 wait_queue_head_t queue; /**< VBLANK wait queue */ 676 struct timeval time[DRM_VBLANKTIME_RBSIZE]; /**< timestamp of current count */ 677 struct timer_list disable_timer; /* delayed disable timer */ 678 atomic_t count; /**< number of VBLANK interrupts */ 679 atomic_t refcount; /* number of users of vblank interruptsper crtc */ 680 u32 last; /* protected by dev->vbl_lock, used */ 681 /* for wraparound handling */ 682 u32 last_wait; /* Last vblank seqno waited per CRTC */ 683 unsigned int inmodeset; /* Display driver is setting mode */ 684 int crtc; /* crtc index */ 685 bool enabled; /* so we don't call enable more than 686 once per disable */ 687}; 688 689/** 690 * DRM device structure. This structure represent a complete card that 691 * may contain multiple heads. 692 */ 693struct drm_device { 694 struct list_head legacy_dev_list;/**< list of devices per driver for stealth attach cleanup */ 695 int if_version; /**< Highest interface version set */ 696 697 /** \name Lifetime Management */ 698 /*@{ */ 699 struct kref ref; /**< Object ref-count */ 700 struct device *dev; /**< Device structure of bus-device */ 701 struct drm_driver *driver; /**< DRM driver managing the device */ 702 void *dev_private; /**< DRM driver private data */ 703 struct drm_minor *control; /**< Control node */ 704 struct drm_minor *primary; /**< Primary node */ 705 struct drm_minor *render; /**< Render node */ 706 atomic_t unplugged; /**< Flag whether dev is dead */ 707 struct inode *anon_inode; /**< inode for private address-space */ 708 char *unique; /**< unique name of the device */ 709 /*@} */ 710 711 /** \name Locks */ 712 /*@{ */ 713 struct mutex struct_mutex; /**< For others */ 714 struct mutex master_mutex; /**< For drm_minor::master and drm_file::is_master */ 715 /*@} */ 716 717 /** \name Usage Counters */ 718 /*@{ */ 719 int open_count; /**< Outstanding files open, protected by drm_global_mutex. */ 720 spinlock_t buf_lock; /**< For drm_device::buf_use and a few other things. */ 721 int buf_use; /**< Buffers in use -- cannot alloc */ 722 atomic_t buf_alloc; /**< Buffer allocation in progress */ 723 /*@} */ 724 725 struct list_head filelist; 726 727 /** \name Memory management */ 728 /*@{ */ 729 struct list_head maplist; /**< Linked list of regions */ 730 struct drm_open_hash map_hash; /**< User token hash table for maps */ 731 732 /** \name Context handle management */ 733 /*@{ */ 734 struct list_head ctxlist; /**< Linked list of context handles */ 735 struct mutex ctxlist_mutex; /**< For ctxlist */ 736 737 struct idr ctx_idr; 738 739 struct list_head vmalist; /**< List of vmas (for debugging) */ 740 741 /*@} */ 742 743 /** \name DMA support */ 744 /*@{ */ 745 struct drm_device_dma *dma; /**< Optional pointer for DMA support */ 746 /*@} */ 747 748 /** \name Context support */ 749 /*@{ */ 750 751 __volatile__ long context_flag; /**< Context swapping flag */ 752 int last_context; /**< Last current context */ 753 /*@} */ 754 755 /** \name VBLANK IRQ support */ 756 /*@{ */ 757 bool irq_enabled; 758 int irq; 759 760 /* 761 * At load time, disabling the vblank interrupt won't be allowed since 762 * old clients may not call the modeset ioctl and therefore misbehave. 763 * Once the modeset ioctl *has* been called though, we can safely 764 * disable them when unused. 765 */ 766 bool vblank_disable_allowed; 767 768 /* 769 * If true, vblank interrupt will be disabled immediately when the 770 * refcount drops to zero, as opposed to via the vblank disable 771 * timer. 772 * This can be set to true it the hardware has a working vblank 773 * counter and the driver uses drm_vblank_on() and drm_vblank_off() 774 * appropriately. 775 */ 776 bool vblank_disable_immediate; 777 778 /* array of size num_crtcs */ 779 struct drm_vblank_crtc *vblank; 780 781 spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */ 782 spinlock_t vbl_lock; 783 784 u32 max_vblank_count; /**< size of vblank counter register */ 785 786 /** 787 * List of events 788 */ 789 struct list_head vblank_event_list; 790 spinlock_t event_lock; 791 792 /*@} */ 793 794 struct drm_agp_head *agp; /**< AGP data */ 795 796 struct pci_dev *pdev; /**< PCI device structure */ 797#ifdef __alpha__ 798 struct pci_controller *hose; 799#endif 800 801 struct platform_device *platformdev; /**< Platform device struture */ 802 803 struct drm_sg_mem *sg; /**< Scatter gather memory */ 804 unsigned int num_crtcs; /**< Number of CRTCs on this device */ 805 sigset_t sigmask; 806 807 struct { 808 int context; 809 struct drm_hw_lock *lock; 810 } sigdata; 811 812 struct drm_local_map *agp_buffer_map; 813 unsigned int agp_buffer_token; 814 815 struct drm_mode_config mode_config; /**< Current mode config */ 816 817 /** \name GEM information */ 818 /*@{ */ 819 struct mutex object_name_lock; 820 struct idr object_name_idr; 821 struct drm_vma_offset_manager *vma_offset_manager; 822 /*@} */ 823 int switch_power_state; 824}; 825 826#define DRM_SWITCH_POWER_ON 0 827#define DRM_SWITCH_POWER_OFF 1 828#define DRM_SWITCH_POWER_CHANGING 2 829#define DRM_SWITCH_POWER_DYNAMIC_OFF 3 830 831static __inline__ int drm_core_check_feature(struct drm_device *dev, 832 int feature) 833{ 834 return ((dev->driver->driver_features & feature) ? 1 : 0); 835} 836 837static inline void drm_device_set_unplugged(struct drm_device *dev) 838{ 839 smp_wmb(); 840 atomic_set(&dev->unplugged, 1); 841} 842 843static inline int drm_device_is_unplugged(struct drm_device *dev) 844{ 845 int ret = atomic_read(&dev->unplugged); 846 smp_rmb(); 847 return ret; 848} 849 850static inline bool drm_is_render_client(const struct drm_file *file_priv) 851{ 852 return file_priv->minor->type == DRM_MINOR_RENDER; 853} 854 855static inline bool drm_is_control_client(const struct drm_file *file_priv) 856{ 857 return file_priv->minor->type == DRM_MINOR_CONTROL; 858} 859 860static inline bool drm_is_primary_client(const struct drm_file *file_priv) 861{ 862 return file_priv->minor->type == DRM_MINOR_LEGACY; 863} 864 865/******************************************************************/ 866/** \name Internal function definitions */ 867/*@{*/ 868 869 /* Driver support (drm_drv.h) */ 870extern long drm_ioctl(struct file *filp, 871 unsigned int cmd, unsigned long arg); 872extern long drm_compat_ioctl(struct file *filp, 873 unsigned int cmd, unsigned long arg); 874extern bool drm_ioctl_flags(unsigned int nr, unsigned int *flags); 875 876 /* Device support (drm_fops.h) */ 877extern int drm_open(struct inode *inode, struct file *filp); 878extern ssize_t drm_read(struct file *filp, char __user *buffer, 879 size_t count, loff_t *offset); 880extern int drm_release(struct inode *inode, struct file *filp); 881 882 /* Mapping support (drm_vm.h) */ 883extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait); 884 885/* Misc. IOCTL support (drm_ioctl.c) */ 886int drm_noop(struct drm_device *dev, void *data, 887 struct drm_file *file_priv); 888 889/* Cache management (drm_cache.c) */ 890void drm_clflush_pages(struct page *pages[], unsigned long num_pages); 891void drm_clflush_sg(struct sg_table *st); 892void drm_clflush_virt_range(void *addr, unsigned long length); 893 894/* 895 * These are exported to drivers so that they can implement fencing using 896 * DMA quiscent + idle. DMA quiescent usually requires the hardware lock. 897 */ 898 899 /* IRQ support (drm_irq.h) */ 900extern int drm_irq_install(struct drm_device *dev, int irq); 901extern int drm_irq_uninstall(struct drm_device *dev); 902 903extern int drm_vblank_init(struct drm_device *dev, int num_crtcs); 904extern int drm_wait_vblank(struct drm_device *dev, void *data, 905 struct drm_file *filp); 906extern u32 drm_vblank_count(struct drm_device *dev, int crtc); 907extern u32 drm_crtc_vblank_count(struct drm_crtc *crtc); 908extern u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc, 909 struct timeval *vblanktime); 910extern void drm_send_vblank_event(struct drm_device *dev, int crtc, 911 struct drm_pending_vblank_event *e); 912extern void drm_crtc_send_vblank_event(struct drm_crtc *crtc, 913 struct drm_pending_vblank_event *e); 914extern bool drm_handle_vblank(struct drm_device *dev, int crtc); 915extern bool drm_crtc_handle_vblank(struct drm_crtc *crtc); 916extern int drm_vblank_get(struct drm_device *dev, int crtc); 917extern void drm_vblank_put(struct drm_device *dev, int crtc); 918extern int drm_crtc_vblank_get(struct drm_crtc *crtc); 919extern void drm_crtc_vblank_put(struct drm_crtc *crtc); 920extern void drm_wait_one_vblank(struct drm_device *dev, int crtc); 921extern void drm_crtc_wait_one_vblank(struct drm_crtc *crtc); 922extern void drm_vblank_off(struct drm_device *dev, int crtc); 923extern void drm_vblank_on(struct drm_device *dev, int crtc); 924extern void drm_crtc_vblank_off(struct drm_crtc *crtc); 925extern void drm_crtc_vblank_on(struct drm_crtc *crtc); 926extern void drm_vblank_cleanup(struct drm_device *dev); 927 928extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev, 929 int crtc, int *max_error, 930 struct timeval *vblank_time, 931 unsigned flags, 932 const struct drm_crtc *refcrtc, 933 const struct drm_display_mode *mode); 934extern void drm_calc_timestamping_constants(struct drm_crtc *crtc, 935 const struct drm_display_mode *mode); 936 937/** 938 * drm_crtc_vblank_waitqueue - get vblank waitqueue for the CRTC 939 * @crtc: which CRTC's vblank waitqueue to retrieve 940 * 941 * This function returns a pointer to the vblank waitqueue for the CRTC. 942 * Drivers can use this to implement vblank waits using wait_event() & co. 943 */ 944static inline wait_queue_head_t *drm_crtc_vblank_waitqueue(struct drm_crtc *crtc) 945{ 946 return &crtc->dev->vblank[drm_crtc_index(crtc)].queue; 947} 948 949/* Modesetting support */ 950extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc); 951extern void drm_vblank_post_modeset(struct drm_device *dev, int crtc); 952 953 /* Stub support (drm_stub.h) */ 954extern struct drm_master *drm_master_get(struct drm_master *master); 955extern void drm_master_put(struct drm_master **master); 956 957extern void drm_put_dev(struct drm_device *dev); 958extern void drm_unplug_dev(struct drm_device *dev); 959extern unsigned int drm_debug; 960extern bool drm_atomic; 961 962 /* Debugfs support */ 963#if defined(CONFIG_DEBUG_FS) 964extern int drm_debugfs_create_files(const struct drm_info_list *files, 965 int count, struct dentry *root, 966 struct drm_minor *minor); 967extern int drm_debugfs_remove_files(const struct drm_info_list *files, 968 int count, struct drm_minor *minor); 969#else 970static inline int drm_debugfs_create_files(const struct drm_info_list *files, 971 int count, struct dentry *root, 972 struct drm_minor *minor) 973{ 974 return 0; 975} 976 977static inline int drm_debugfs_remove_files(const struct drm_info_list *files, 978 int count, struct drm_minor *minor) 979{ 980 return 0; 981} 982#endif 983 984extern struct dma_buf *drm_gem_prime_export(struct drm_device *dev, 985 struct drm_gem_object *obj, int flags); 986extern int drm_gem_prime_handle_to_fd(struct drm_device *dev, 987 struct drm_file *file_priv, uint32_t handle, uint32_t flags, 988 int *prime_fd); 989extern struct drm_gem_object *drm_gem_prime_import(struct drm_device *dev, 990 struct dma_buf *dma_buf); 991extern int drm_gem_prime_fd_to_handle(struct drm_device *dev, 992 struct drm_file *file_priv, int prime_fd, uint32_t *handle); 993extern void drm_gem_dmabuf_release(struct dma_buf *dma_buf); 994 995extern int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, struct page **pages, 996 dma_addr_t *addrs, int max_pages); 997extern struct sg_table *drm_prime_pages_to_sg(struct page **pages, unsigned int nr_pages); 998extern void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg); 999 1000 1001extern struct drm_dma_handle *drm_pci_alloc(struct drm_device *dev, size_t size, 1002 size_t align); 1003extern void drm_pci_free(struct drm_device *dev, struct drm_dma_handle * dmah); 1004 1005 /* sysfs support (drm_sysfs.c) */ 1006extern void drm_sysfs_hotplug_event(struct drm_device *dev); 1007 1008 1009struct drm_device *drm_dev_alloc(struct drm_driver *driver, 1010 struct device *parent); 1011void drm_dev_ref(struct drm_device *dev); 1012void drm_dev_unref(struct drm_device *dev); 1013int drm_dev_register(struct drm_device *dev, unsigned long flags); 1014void drm_dev_unregister(struct drm_device *dev); 1015int drm_dev_set_unique(struct drm_device *dev, const char *fmt, ...); 1016 1017struct drm_minor *drm_minor_acquire(unsigned int minor_id); 1018void drm_minor_release(struct drm_minor *minor); 1019 1020/*@}*/ 1021 1022/* PCI section */ 1023static __inline__ int drm_pci_device_is_agp(struct drm_device *dev) 1024{ 1025 if (dev->driver->device_is_agp != NULL) { 1026 int err = (*dev->driver->device_is_agp) (dev); 1027 1028 if (err != 2) { 1029 return err; 1030 } 1031 } 1032 1033 return pci_find_capability(dev->pdev, PCI_CAP_ID_AGP); 1034} 1035void drm_pci_agp_destroy(struct drm_device *dev); 1036 1037extern int drm_pci_init(struct drm_driver *driver, struct pci_driver *pdriver); 1038extern void drm_pci_exit(struct drm_driver *driver, struct pci_driver *pdriver); 1039#ifdef CONFIG_PCI 1040extern int drm_get_pci_dev(struct pci_dev *pdev, 1041 const struct pci_device_id *ent, 1042 struct drm_driver *driver); 1043extern int drm_pci_set_busid(struct drm_device *dev, struct drm_master *master); 1044#else 1045static inline int drm_get_pci_dev(struct pci_dev *pdev, 1046 const struct pci_device_id *ent, 1047 struct drm_driver *driver) 1048{ 1049 return -ENOSYS; 1050} 1051 1052static inline int drm_pci_set_busid(struct drm_device *dev, 1053 struct drm_master *master) 1054{ 1055 return -ENOSYS; 1056} 1057#endif 1058 1059#define DRM_PCIE_SPEED_25 1 1060#define DRM_PCIE_SPEED_50 2 1061#define DRM_PCIE_SPEED_80 4 1062 1063extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask); 1064 1065/* platform section */ 1066extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device); 1067extern int drm_platform_set_busid(struct drm_device *d, struct drm_master *m); 1068 1069/* returns true if currently okay to sleep */ 1070static __inline__ bool drm_can_sleep(void) 1071{ 1072 if (in_atomic() || in_dbg_master() || irqs_disabled()) 1073 return false; 1074 return true; 1075} 1076 1077#endif