1 /* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34 #include <linux/io-mapping.h>
36 /* General customization:
39 #define DRIVER_AUTHOR "Tungsten Graphics, Inc."
41 #define DRIVER_NAME "i915"
42 #define DRIVER_DESC "Intel Graphics"
43 #define DRIVER_DATE "20080730"
50 #define I915_NUM_PIPE 2
55 * 1.2: Add Power Management
56 * 1.3: Add vblank support
57 * 1.4: Fix cmdbuffer path, add heap destroy
58 * 1.5: Add vblank pipe configuration
59 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
60 * - Support vertical blank on secondary display pipe
62 #define DRIVER_MAJOR 1
63 #define DRIVER_MINOR 6
64 #define DRIVER_PATCHLEVEL 0
66 #define WATCH_COHERENCY 0
71 #define WATCH_INACTIVE 0
72 #define WATCH_PWRITE 0
74 typedef struct _drm_i915_ring_buffer {
82 struct drm_gem_object *ring_obj;
83 } drm_i915_ring_buffer_t;
86 struct mem_block *next;
87 struct mem_block *prev;
90 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
93 struct opregion_header;
95 struct opregion_swsci;
98 struct intel_opregion {
99 struct opregion_header *header;
100 struct opregion_acpi *acpi;
101 struct opregion_swsci *swsci;
102 struct opregion_asle *asle;
106 typedef struct drm_i915_private {
107 struct drm_device *dev;
112 drm_local_map_t *sarea;
114 drm_i915_sarea_t *sarea_priv;
115 drm_i915_ring_buffer_t ring;
117 drm_dma_handle_t *status_page_dmah;
118 void *hw_status_page;
119 dma_addr_t dma_status_page;
121 unsigned int status_gfx_addr;
122 drm_local_map_t hws_map;
123 struct drm_gem_object *hws_obj;
131 wait_queue_head_t irq_queue;
132 atomic_t irq_received;
133 /** Protects user_irq_refcount and irq_mask_reg */
134 spinlock_t user_irq_lock;
135 /** Refcount for i915_user_irq_get() versus i915_user_irq_put(). */
136 int user_irq_refcount;
137 /** Cached value of IMR to avoid reads in updating the bitfield */
141 int tex_lru_log_granularity;
142 int allow_batchbuffer;
143 struct mem_block *agp_heap;
144 unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
147 struct intel_opregion opregion;
154 u32 saveRENDERSTANDBY;
178 u32 savePFIT_PGM_RATIOS;
180 u32 saveBLC_PWM_CTL2;
205 u32 savePP_ON_DELAYS;
206 u32 savePP_OFF_DELAYS;
214 u32 savePFIT_CONTROL;
215 u32 save_palette_a[256];
216 u32 save_palette_b[256];
217 u32 saveFBC_CFB_BASE;
220 u32 saveFBC_CONTROL2;
224 u32 saveCACHE_MODE_0;
227 u32 saveMI_ARB_STATE;
237 u8 saveDACDATA[256*3]; /* 256 3-byte colors */
241 struct drm_mm gtt_space;
243 struct io_mapping *gtt_mapping;
246 * List of objects currently involved in rendering from the
249 * Includes buffers having the contents of their GPU caches
250 * flushed, not necessarily primitives. last_rendering_seqno
251 * represents when the rendering involved will be completed.
253 * A reference is held on the buffer while on this list.
255 struct list_head active_list;
258 * List of objects which are not in the ringbuffer but which
259 * still have a write_domain which needs to be flushed before
262 * last_rendering_seqno is 0 while an object is in this list.
264 * A reference is held on the buffer while on this list.
266 struct list_head flushing_list;
269 * LRU list of objects which are not in the ringbuffer and
270 * are ready to unbind, but are still in the GTT.
272 * last_rendering_seqno is 0 while an object is in this list.
274 * A reference is not held on the buffer while on this list,
275 * as merely being GTT-bound shouldn't prevent its being
276 * freed, and we'll pull it off the list in the free path.
278 struct list_head inactive_list;
281 * List of breadcrumbs associated with GPU requests currently
284 struct list_head request_list;
287 * We leave the user IRQ off as much as possible,
288 * but this means that requests will finish and never
289 * be retired once the system goes idle. Set a timer to
290 * fire periodically while the ring is running. When it
291 * fires, go retire requests.
293 struct delayed_work retire_work;
295 uint32_t next_gem_seqno;
298 * Waiting sequence number, if any
300 uint32_t waiting_gem_seqno;
303 * Last seq seen at irq time
305 uint32_t irq_gem_seqno;
308 * Flag if the X Server, and thus DRM, is not currently in
309 * control of the device.
311 * This is set between LeaveVT and EnterVT. It needs to be
312 * replaced with a semaphore. It also needs to be
313 * transitioned away from for kernel modesetting.
318 * Flag if the hardware appears to be wedged.
320 * This is set when attempts to idle the device timeout.
321 * It prevents command submission from occuring and makes
322 * every pending request fail
326 /** Bit 6 swizzling required for X tiling */
327 uint32_t bit_6_swizzle_x;
328 /** Bit 6 swizzling required for Y tiling */
329 uint32_t bit_6_swizzle_y;
331 } drm_i915_private_t;
333 /** driver private structure attached to each drm_gem_object */
334 struct drm_i915_gem_object {
335 struct drm_gem_object *obj;
337 /** Current space allocated to this object in the GTT, if any. */
338 struct drm_mm_node *gtt_space;
340 /** This object's place on the active/flushing/inactive lists */
341 struct list_head list;
344 * This is set if the object is on the active or flushing lists
345 * (has pending rendering), and is not set if it's on inactive (ready
351 * This is set if the object has been written to since last bound
356 /** AGP memory structure for our GTT binding. */
357 DRM_AGP_MEM *agp_mem;
359 struct page **page_list;
362 * Current offset of the object in GTT space.
364 * This is the same as gtt_space->start
368 /** Boolean whether this object has a valid gtt offset. */
371 /** How many users have pinned this object in GTT space */
374 /** Breadcrumb of last rendering to the buffer. */
375 uint32_t last_rendering_seqno;
377 /** Current tiling mode for the object. */
378 uint32_t tiling_mode;
380 /** AGP mapping type (AGP_USER_MEMORY or AGP_USER_CACHED_MEMORY */
384 * If present, while GEM_DOMAIN_CPU is in the read domain this array
385 * flags which individual pages are valid.
387 uint8_t *page_cpu_valid;
391 * Request queue structure.
393 * The request queue allows us to note sequence numbers that have been emitted
394 * and may be associated with active buffers to be retired.
396 * By keeping this list, we can avoid having to do questionable
397 * sequence-number comparisons on buffer last_rendering_seqnos, and associate
398 * an emission time with seqnos for tracking how far ahead of the GPU we are.
400 struct drm_i915_gem_request {
401 /** GEM sequence number associated with this request. */
404 /** Time at which this request was emitted, in jiffies. */
405 unsigned long emitted_jiffies;
407 struct list_head list;
410 struct drm_i915_file_private {
412 uint32_t last_gem_seqno;
413 uint32_t last_gem_throttle_seqno;
417 extern struct drm_ioctl_desc i915_ioctls[];
418 extern int i915_max_ioctl;
421 extern void i915_kernel_lost_context(struct drm_device * dev);
422 extern int i915_driver_load(struct drm_device *, unsigned long flags);
423 extern int i915_driver_unload(struct drm_device *);
424 extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
425 extern void i915_driver_lastclose(struct drm_device * dev);
426 extern void i915_driver_preclose(struct drm_device *dev,
427 struct drm_file *file_priv);
428 extern void i915_driver_postclose(struct drm_device *dev,
429 struct drm_file *file_priv);
430 extern int i915_driver_device_is_agp(struct drm_device * dev);
431 extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
433 extern int i915_emit_box(struct drm_device *dev,
434 struct drm_clip_rect __user *boxes,
435 int i, int DR1, int DR4);
438 extern int i915_irq_emit(struct drm_device *dev, void *data,
439 struct drm_file *file_priv);
440 extern int i915_irq_wait(struct drm_device *dev, void *data,
441 struct drm_file *file_priv);
442 void i915_user_irq_get(struct drm_device *dev);
443 void i915_user_irq_put(struct drm_device *dev);
445 extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
446 extern void i915_driver_irq_preinstall(struct drm_device * dev);
447 extern int i915_driver_irq_postinstall(struct drm_device *dev);
448 extern void i915_driver_irq_uninstall(struct drm_device * dev);
449 extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
450 struct drm_file *file_priv);
451 extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
452 struct drm_file *file_priv);
453 extern int i915_enable_vblank(struct drm_device *dev, int crtc);
454 extern void i915_disable_vblank(struct drm_device *dev, int crtc);
455 extern u32 i915_get_vblank_counter(struct drm_device *dev, int crtc);
456 extern int i915_vblank_swap(struct drm_device *dev, void *data,
457 struct drm_file *file_priv);
458 extern void i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask);
461 i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
464 i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
468 extern int i915_mem_alloc(struct drm_device *dev, void *data,
469 struct drm_file *file_priv);
470 extern int i915_mem_free(struct drm_device *dev, void *data,
471 struct drm_file *file_priv);
472 extern int i915_mem_init_heap(struct drm_device *dev, void *data,
473 struct drm_file *file_priv);
474 extern int i915_mem_destroy_heap(struct drm_device *dev, void *data,
475 struct drm_file *file_priv);
476 extern void i915_mem_takedown(struct mem_block **heap);
477 extern void i915_mem_release(struct drm_device * dev,
478 struct drm_file *file_priv, struct mem_block *heap);
480 int i915_gem_init_ioctl(struct drm_device *dev, void *data,
481 struct drm_file *file_priv);
482 int i915_gem_create_ioctl(struct drm_device *dev, void *data,
483 struct drm_file *file_priv);
484 int i915_gem_pread_ioctl(struct drm_device *dev, void *data,
485 struct drm_file *file_priv);
486 int i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
487 struct drm_file *file_priv);
488 int i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
489 struct drm_file *file_priv);
490 int i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
491 struct drm_file *file_priv);
492 int i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
493 struct drm_file *file_priv);
494 int i915_gem_execbuffer(struct drm_device *dev, void *data,
495 struct drm_file *file_priv);
496 int i915_gem_pin_ioctl(struct drm_device *dev, void *data,
497 struct drm_file *file_priv);
498 int i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
499 struct drm_file *file_priv);
500 int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
501 struct drm_file *file_priv);
502 int i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
503 struct drm_file *file_priv);
504 int i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
505 struct drm_file *file_priv);
506 int i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
507 struct drm_file *file_priv);
508 int i915_gem_set_tiling(struct drm_device *dev, void *data,
509 struct drm_file *file_priv);
510 int i915_gem_get_tiling(struct drm_device *dev, void *data,
511 struct drm_file *file_priv);
512 int i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
513 struct drm_file *file_priv);
514 void i915_gem_load(struct drm_device *dev);
515 int i915_gem_proc_init(struct drm_minor *minor);
516 void i915_gem_proc_cleanup(struct drm_minor *minor);
517 int i915_gem_init_object(struct drm_gem_object *obj);
518 void i915_gem_free_object(struct drm_gem_object *obj);
519 int i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment);
520 void i915_gem_object_unpin(struct drm_gem_object *obj);
521 void i915_gem_lastclose(struct drm_device *dev);
522 uint32_t i915_get_gem_seqno(struct drm_device *dev);
523 void i915_gem_retire_requests(struct drm_device *dev);
524 void i915_gem_retire_work_handler(struct work_struct *work);
525 void i915_gem_clflush_object(struct drm_gem_object *obj);
527 /* i915_gem_tiling.c */
528 void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
530 /* i915_gem_debug.c */
531 void i915_gem_dump_object(struct drm_gem_object *obj, int len,
532 const char *where, uint32_t mark);
534 void i915_verify_inactive(struct drm_device *dev, char *file, int line);
536 #define i915_verify_inactive(dev, file, line)
538 void i915_gem_object_check_coherency(struct drm_gem_object *obj, int handle);
539 void i915_gem_dump_object(struct drm_gem_object *obj, int len,
540 const char *where, uint32_t mark);
541 void i915_dump_lru(struct drm_device *dev, const char *where);
544 extern int i915_save_state(struct drm_device *dev);
545 extern int i915_restore_state(struct drm_device *dev);
548 extern int i915_save_state(struct drm_device *dev);
549 extern int i915_restore_state(struct drm_device *dev);
552 /* i915_opregion.c */
553 extern int intel_opregion_init(struct drm_device *dev);
554 extern void intel_opregion_free(struct drm_device *dev);
555 extern void opregion_asle_intr(struct drm_device *dev);
556 extern void opregion_enable_asle(struct drm_device *dev);
558 static inline int intel_opregion_init(struct drm_device *dev) { return 0; }
559 static inline void intel_opregion_free(struct drm_device *dev) { return; }
560 static inline void opregion_asle_intr(struct drm_device *dev) { return; }
561 static inline void opregion_enable_asle(struct drm_device *dev) { return; }
565 * Lock test for when it's just for synchronization of ring access.
567 * In that case, we don't need to do it when GEM is initialized as nobody else
568 * has access to the ring.
570 #define RING_LOCK_TEST_WITH_RETURN(dev, file_priv) do { \
571 if (((drm_i915_private_t *)dev->dev_private)->ring.ring_obj == NULL) \
572 LOCK_TEST_WITH_RETURN(dev, file_priv); \
575 #define I915_READ(reg) readl(dev_priv->regs + (reg))
576 #define I915_WRITE(reg, val) writel(val, dev_priv->regs + (reg))
577 #define I915_READ16(reg) readw(dev_priv->regs + (reg))
578 #define I915_WRITE16(reg, val) writel(val, dev_priv->regs + (reg))
579 #define I915_READ8(reg) readb(dev_priv->regs + (reg))
580 #define I915_WRITE8(reg, val) writeb(val, dev_priv->regs + (reg))
582 #define I915_VERBOSE 0
584 #define RING_LOCALS unsigned int outring, ringmask, outcount; \
587 #define BEGIN_LP_RING(n) do { \
589 DRM_DEBUG("BEGIN_LP_RING(%d)\n", (n)); \
590 if (dev_priv->ring.space < (n)*4) \
591 i915_wait_ring(dev, (n)*4, __func__); \
593 outring = dev_priv->ring.tail; \
594 ringmask = dev_priv->ring.tail_mask; \
595 virt = dev_priv->ring.virtual_start; \
598 #define OUT_RING(n) do { \
599 if (I915_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
600 *(volatile unsigned int *)(virt + outring) = (n); \
603 outring &= ringmask; \
606 #define ADVANCE_LP_RING() do { \
607 if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring); \
608 dev_priv->ring.tail = outring; \
609 dev_priv->ring.space -= outcount * 4; \
610 I915_WRITE(PRB0_TAIL, outring); \
614 * Reads a dword out of the status page, which is written to from the command
615 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
618 * The following dwords have a reserved meaning:
619 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
620 * 0x04: ring 0 head pointer
621 * 0x05: ring 1 head pointer (915-class)
622 * 0x06: ring 2 head pointer (915-class)
623 * 0x10-0x1b: Context status DWords (GM45)
624 * 0x1f: Last written status offset. (GM45)
626 * The area from dword 0x20 to 0x3ff is available for driver usage.
628 #define READ_HWSP(dev_priv, reg) (((volatile u32*)(dev_priv->hw_status_page))[reg])
629 #define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
630 #define I915_GEM_HWS_INDEX 0x20
631 #define I915_BREADCRUMB_INDEX 0x21
633 extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
635 #define IS_I830(dev) ((dev)->pci_device == 0x3577)
636 #define IS_845G(dev) ((dev)->pci_device == 0x2562)
637 #define IS_I85X(dev) ((dev)->pci_device == 0x3582)
638 #define IS_I855(dev) ((dev)->pci_device == 0x3582)
639 #define IS_I865G(dev) ((dev)->pci_device == 0x2572)
641 #define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a)
642 #define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
643 #define IS_I945G(dev) ((dev)->pci_device == 0x2772)
644 #define IS_I945GM(dev) ((dev)->pci_device == 0x27A2 ||\
645 (dev)->pci_device == 0x27AE)
646 #define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
647 (dev)->pci_device == 0x2982 || \
648 (dev)->pci_device == 0x2992 || \
649 (dev)->pci_device == 0x29A2 || \
650 (dev)->pci_device == 0x2A02 || \
651 (dev)->pci_device == 0x2A12 || \
652 (dev)->pci_device == 0x2A42 || \
653 (dev)->pci_device == 0x2E02 || \
654 (dev)->pci_device == 0x2E12 || \
655 (dev)->pci_device == 0x2E22)
657 #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
659 #define IS_GM45(dev) ((dev)->pci_device == 0x2A42)
661 #define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \
662 (dev)->pci_device == 0x2E12 || \
663 (dev)->pci_device == 0x2E22)
665 #define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
666 (dev)->pci_device == 0x29B2 || \
667 (dev)->pci_device == 0x29D2)
669 #define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
670 IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
672 #define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \
673 IS_I945GM(dev) || IS_I965GM(dev) || IS_GM45(dev))
675 #define I915_NEED_GFX_HWS(dev) (IS_G33(dev) || IS_GM45(dev) || IS_G4X(dev))
677 #define PRIMARY_RINGBUFFER_SIZE (128*1024)