drm: Replace the i915 driver by i915kms
[dragonfly.git] / sys / dev / drm / i915 / i915_drv.h
1 /* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2  */
3 /*
4  *
5  * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6  * All Rights Reserved.
7  *
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:
15  *
16  * The above copyright notice and this permission notice (including the
17  * next paragraph) shall be included in all copies or substantial portions
18  * of the Software.
19  *
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.
27  *
28  * $FreeBSD: src/sys/dev/drm2/i915/i915_drv.h,v 1.1 2012/05/22 11:07:44 kib Exp $
29  */
30
31 #ifndef _I915_DRV_H_
32 #define _I915_DRV_H_
33
34 #include <sys/eventhandler.h>
35
36 #include <dev/agp/agp_i810.h>
37 #include <dev/drm/drm_mm.h>
38 #include "i915_reg.h"
39 #include "intel_ringbuffer.h"
40 #include "intel_bios.h"
41
42 /* General customization:
43  */
44
45 #define DRIVER_AUTHOR           "Tungsten Graphics, Inc."
46
47 #define DRIVER_NAME             "i915"
48 #define DRIVER_DESC             "Intel Graphics"
49 #define DRIVER_DATE             "20080730"
50
51 MALLOC_DECLARE(DRM_I915_GEM);
52
53 enum i915_pipe {
54         PIPE_A = 0,
55         PIPE_B,
56         PIPE_C,
57         I915_MAX_PIPES
58 };
59 #define pipe_name(p) ((p) + 'A')
60 #define I915_NUM_PIPE   2
61
62 enum plane {
63         PLANE_A = 0,
64         PLANE_B,
65         PLANE_C,
66 };
67 #define plane_name(p) ((p) + 'A')
68
69 #define I915_GEM_GPU_DOMAINS    (~(I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT))
70
71 #define for_each_pipe(p) for ((p) = 0; (p) < dev_priv->num_pipe; (p)++)
72
73 /* Interface history:
74  *
75  * 1.1: Original.
76  * 1.2: Add Power Management
77  * 1.3: Add vblank support
78  * 1.4: Fix cmdbuffer path, add heap destroy
79  * 1.5: Add vblank pipe configuration
80  * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
81  *      - Support vertical blank on secondary display pipe
82  */
83 #define DRIVER_MAJOR            1
84 #define DRIVER_MINOR            6
85 #define DRIVER_PATCHLEVEL       0
86
87 #define WATCH_COHERENCY 0
88 #define WATCH_BUF       0
89 #define WATCH_EXEC      0
90 #define WATCH_LRU       0
91 #define WATCH_RELOC     0
92 #define WATCH_INACTIVE  0
93 #define WATCH_PWRITE    0
94
95 #define I915_GEM_PHYS_CURSOR_0 1
96 #define I915_GEM_PHYS_CURSOR_1 2
97 #define I915_GEM_PHYS_OVERLAY_REGS 3
98 #define I915_MAX_PHYS_OBJECT (I915_GEM_PHYS_OVERLAY_REGS)
99
100 struct drm_i915_gem_phys_object {
101         int id;
102         drm_dma_handle_t *handle;
103         struct drm_i915_gem_object *cur_obj;
104 };
105
106 struct drm_i915_private;
107
108 struct drm_i915_display_funcs {
109         void (*dpms)(struct drm_crtc *crtc, int mode);
110         bool (*fbc_enabled)(struct drm_device *dev);
111         void (*enable_fbc)(struct drm_crtc *crtc, unsigned long interval);
112         void (*disable_fbc)(struct drm_device *dev);
113         int (*get_display_clock_speed)(struct drm_device *dev);
114         int (*get_fifo_size)(struct drm_device *dev, int plane);
115         void (*update_wm)(struct drm_device *dev);
116         void (*update_sprite_wm)(struct drm_device *dev, int pipe,
117                                  uint32_t sprite_width, int pixel_size);
118         int (*crtc_mode_set)(struct drm_crtc *crtc,
119                              struct drm_display_mode *mode,
120                              struct drm_display_mode *adjusted_mode,
121                              int x, int y,
122                              struct drm_framebuffer *old_fb);
123         void (*write_eld)(struct drm_connector *connector,
124                           struct drm_crtc *crtc);
125         void (*fdi_link_train)(struct drm_crtc *crtc);
126         void (*init_clock_gating)(struct drm_device *dev);
127         void (*init_pch_clock_gating)(struct drm_device *dev);
128         int (*queue_flip)(struct drm_device *dev, struct drm_crtc *crtc,
129                           struct drm_framebuffer *fb,
130                           struct drm_i915_gem_object *obj);
131         void (*force_wake_get)(struct drm_i915_private *dev_priv);
132         void (*force_wake_put)(struct drm_i915_private *dev_priv);
133         int (*update_plane)(struct drm_crtc *crtc, struct drm_framebuffer *fb,
134                             int x, int y);
135         /* clock updates for mode set */
136         /* cursor updates */
137         /* render clock increase/decrease */
138         /* display clock increase/decrease */
139         /* pll clock increase/decrease */
140 };
141
142 struct intel_device_info {
143         u8 gen;
144         u8 is_mobile:1;
145         u8 is_i85x:1;
146         u8 is_i915g:1;
147         u8 is_i945gm:1;
148         u8 is_g33:1;
149         u8 need_gfx_hws:1;
150         u8 is_g4x:1;
151         u8 is_pineview:1;
152         u8 is_broadwater:1;
153         u8 is_crestline:1;
154         u8 is_ivybridge:1;
155         u8 has_fbc:1;
156         u8 has_pipe_cxsr:1;
157         u8 has_hotplug:1;
158         u8 cursor_needs_physical:1;
159         u8 has_overlay:1;
160         u8 overlay_needs_physical:1;
161         u8 supports_tv:1;
162         u8 has_bsd_ring:1;
163         u8 has_blt_ring:1;
164         u8 has_llc:1;
165 };
166
167 #define I915_PPGTT_PD_ENTRIES 512
168 #define I915_PPGTT_PT_ENTRIES 1024
169 struct i915_hw_ppgtt {
170         unsigned num_pd_entries;
171         vm_page_t *pt_pages;
172         uint32_t pd_offset;
173         vm_paddr_t *pt_dma_addr;
174         vm_paddr_t scratch_page_dma_addr;
175 };
176
177 enum no_fbc_reason {
178         FBC_NO_OUTPUT, /* no outputs enabled to compress */
179         FBC_STOLEN_TOO_SMALL, /* not enough space to hold compressed buffers */
180         FBC_UNSUPPORTED_MODE, /* interlace or doublescanned mode */
181         FBC_MODE_TOO_LARGE, /* mode too large for compression */
182         FBC_BAD_PLANE, /* fbc not supported on plane */
183         FBC_NOT_TILED, /* buffer not tiled */
184         FBC_MULTIPLE_PIPES, /* more than one pipe active */
185         FBC_MODULE_PARAM,
186 };
187
188 struct mem_block {
189         struct mem_block *next;
190         struct mem_block *prev;
191         int start;
192         int size;
193         struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
194 };
195
196 struct opregion_header;
197 struct opregion_acpi;
198 struct opregion_swsci;
199 struct opregion_asle;
200
201 struct intel_opregion {
202         struct opregion_header *header;
203         struct opregion_acpi *acpi;
204         struct opregion_swsci *swsci;
205         struct opregion_asle *asle;
206         void *vbt;
207         u32 *lid_state;
208 };
209 #define OPREGION_SIZE            (8*1024)
210
211 #define I915_FENCE_REG_NONE -1
212 #define I915_MAX_NUM_FENCES 16
213 /* 16 fences + sign bit for FENCE_REG_NONE */
214 #define I915_MAX_NUM_FENCE_BITS 5
215
216 struct drm_i915_fence_reg {
217         struct list_head lru_list;
218         struct drm_i915_gem_object *obj;
219         uint32_t setup_seqno;
220         int pin_count;
221 };
222
223 struct sdvo_device_mapping {
224         u8 initialized;
225         u8 dvo_port;
226         u8 slave_addr;
227         u8 dvo_wiring;
228         u8 i2c_pin;
229         u8 ddc_pin;
230 };
231
232 enum intel_pch {
233         PCH_IBX,        /* Ibexpeak PCH */
234         PCH_CPT,        /* Cougarpoint PCH */
235 };
236
237 #define QUIRK_PIPEA_FORCE (1<<0)
238 #define QUIRK_LVDS_SSC_DISABLE (1<<1)
239
240 struct intel_fbdev;
241 struct intel_fbc_work;
242
243 typedef struct drm_i915_private {
244         struct drm_device *dev;
245
246         device_t *gmbus_bridge;
247         device_t *bbbus_bridge;
248         device_t *gmbus;
249         device_t *bbbus;
250         /** gmbus_sx protects against concurrent usage of the single hw gmbus
251          * controller on different i2c buses. */
252         struct lock gmbus_lock;
253
254         int has_gem;
255         int relative_constants_mode;
256
257         drm_local_map_t *sarea;
258         drm_local_map_t *mmio_map;
259
260         /** gt_fifo_count and the subsequent register write are synchronized
261          * with dev->struct_mutex. */
262         unsigned gt_fifo_count;
263         /** forcewake_count is protected by gt_lock */
264         unsigned forcewake_count;
265         /** gt_lock is also taken in irq contexts. */
266         struct lock gt_lock;
267
268         drm_i915_sarea_t *sarea_priv;
269         /* drm_i915_ring_buffer_t ring; */
270         struct intel_ring_buffer rings[I915_NUM_RINGS];
271         uint32_t next_seqno;
272
273         drm_dma_handle_t *status_page_dmah;
274         void *hw_status_page;
275         dma_addr_t dma_status_page;
276         uint32_t counter;
277         unsigned int status_gfx_addr;
278         drm_local_map_t hws_map;
279         struct drm_gem_object *hws_obj;
280
281         struct drm_i915_gem_object *pwrctx;
282         struct drm_i915_gem_object *renderctx;
283
284         unsigned int cpp;
285         int back_offset;
286         int front_offset;
287         int current_page;
288         int page_flipping;
289
290         atomic_t irq_received;
291         u32 trace_irq_seqno;
292
293         /** Cached value of IER to avoid reads in updating the bitfield */
294         u32 pipestat[2];
295         u32 irq_mask;
296         u32 gt_irq_mask;
297         u32 pch_irq_mask;
298         struct lock irq_lock;
299
300         u32 hotplug_supported_mask;
301
302         int tex_lru_log_granularity;
303         int allow_batchbuffer;
304         unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
305         int vblank_pipe;
306         int num_pipe;
307
308         /* For hangcheck timer */
309 #define DRM_I915_HANGCHECK_PERIOD ((1500 /* in ms */ * hz) / 1000)
310         int hangcheck_count;
311         uint32_t last_acthd;
312         uint32_t last_acthd_bsd;
313         uint32_t last_acthd_blt;
314         uint32_t last_instdone;
315         uint32_t last_instdone1;
316
317         struct intel_opregion opregion;
318
319
320         /* overlay */
321         struct intel_overlay *overlay;
322         bool sprite_scaling_enabled;
323
324         /* LVDS info */
325         int backlight_level;  /* restore backlight to this value */
326         bool backlight_enabled;
327         struct drm_display_mode *lfp_lvds_vbt_mode; /* if any */
328         struct drm_display_mode *sdvo_lvds_vbt_mode; /* if any */
329
330         /* Feature bits from the VBIOS */
331         unsigned int int_tv_support:1;
332         unsigned int lvds_dither:1;
333         unsigned int lvds_vbt:1;
334         unsigned int int_crt_support:1;
335         unsigned int lvds_use_ssc:1;
336         unsigned int display_clock_mode:1;
337         int lvds_ssc_freq;
338         struct {
339                 int rate;
340                 int lanes;
341                 int preemphasis;
342                 int vswing;
343
344                 bool initialized;
345                 bool support;
346                 int bpp;
347                 struct edp_power_seq pps;
348         } edp;
349         bool no_aux_handshake;
350
351         int crt_ddc_pin;
352         struct drm_i915_fence_reg fence_regs[I915_MAX_NUM_FENCES]; /* assume 965 */
353         int fence_reg_start; /* 4 if userland hasn't ioctl'd us yet */
354         int num_fence_regs; /* 8 on pre-965, 16 otherwise */
355
356         /* PCH chipset type */
357         enum intel_pch pch_type;
358
359         /* Display functions */
360         struct drm_i915_display_funcs display;
361
362         unsigned long quirks;
363
364         /* Register state */
365         bool modeset_on_lid;
366         u8 saveLBB;
367         u32 saveDSPACNTR;
368         u32 saveDSPBCNTR;
369         u32 saveDSPARB;
370         u32 saveHWS;
371         u32 savePIPEACONF;
372         u32 savePIPEBCONF;
373         u32 savePIPEASRC;
374         u32 savePIPEBSRC;
375         u32 saveFPA0;
376         u32 saveFPA1;
377         u32 saveDPLL_A;
378         u32 saveDPLL_A_MD;
379         u32 saveHTOTAL_A;
380         u32 saveHBLANK_A;
381         u32 saveHSYNC_A;
382         u32 saveVTOTAL_A;
383         u32 saveVBLANK_A;
384         u32 saveVSYNC_A;
385         u32 saveBCLRPAT_A;
386         u32 saveTRANSACONF;
387         u32 saveTRANS_HTOTAL_A;
388         u32 saveTRANS_HBLANK_A;
389         u32 saveTRANS_HSYNC_A;
390         u32 saveTRANS_VTOTAL_A;
391         u32 saveTRANS_VBLANK_A;
392         u32 saveTRANS_VSYNC_A;
393         u32 savePIPEASTAT;
394         u32 saveDSPASTRIDE;
395         u32 saveDSPASIZE;
396         u32 saveDSPAPOS;
397         u32 saveDSPAADDR;
398         u32 saveDSPASURF;
399         u32 saveDSPATILEOFF;
400         u32 savePFIT_PGM_RATIOS;
401         u32 saveBLC_HIST_CTL;
402         u32 saveBLC_PWM_CTL;
403         u32 saveBLC_PWM_CTL2;
404         u32 saveBLC_CPU_PWM_CTL;
405         u32 saveBLC_CPU_PWM_CTL2;
406         u32 saveFPB0;
407         u32 saveFPB1;
408         u32 saveDPLL_B;
409         u32 saveDPLL_B_MD;
410         u32 saveHTOTAL_B;
411         u32 saveHBLANK_B;
412         u32 saveHSYNC_B;
413         u32 saveVTOTAL_B;
414         u32 saveVBLANK_B;
415         u32 saveVSYNC_B;
416         u32 saveBCLRPAT_B;
417         u32 saveTRANSBCONF;
418         u32 saveTRANS_HTOTAL_B;
419         u32 saveTRANS_HBLANK_B;
420         u32 saveTRANS_HSYNC_B;
421         u32 saveTRANS_VTOTAL_B;
422         u32 saveTRANS_VBLANK_B;
423         u32 saveTRANS_VSYNC_B;
424         u32 savePIPEBSTAT;
425         u32 saveDSPBSTRIDE;
426         u32 saveDSPBSIZE;
427         u32 saveDSPBPOS;
428         u32 saveDSPBADDR;
429         u32 saveDSPBSURF;
430         u32 saveDSPBTILEOFF;
431         u32 saveVGA0;
432         u32 saveVGA1;
433         u32 saveVGA_PD;
434         u32 saveVGACNTRL;
435         u32 saveADPA;
436         u32 saveLVDS;
437         u32 savePP_ON_DELAYS;
438         u32 savePP_OFF_DELAYS;
439         u32 saveDVOA;
440         u32 saveDVOB;
441         u32 saveDVOC;
442         u32 savePP_ON;
443         u32 savePP_OFF;
444         u32 savePP_CONTROL;
445         u32 savePP_DIVISOR;
446         u32 savePFIT_CONTROL;
447         u32 save_palette_a[256];
448         u32 save_palette_b[256];
449         u32 saveDPFC_CB_BASE;
450         u32 saveFBC_CFB_BASE;
451         u32 saveFBC_LL_BASE;
452         u32 saveFBC_CONTROL;
453         u32 saveFBC_CONTROL2;
454         u32 saveIER;
455         u32 saveIIR;
456         u32 saveIMR;
457         u32 saveDEIER;
458         u32 saveDEIMR;
459         u32 saveGTIER;
460         u32 saveGTIMR;
461         u32 saveFDI_RXA_IMR;
462         u32 saveFDI_RXB_IMR;
463         u32 saveCACHE_MODE_0;
464         u32 saveMI_ARB_STATE;
465         u32 saveSWF0[16];
466         u32 saveSWF1[16];
467         u32 saveSWF2[3];
468         u8 saveMSR;
469         u8 saveSR[8];
470         u8 saveGR[25];
471         u8 saveAR_INDEX;
472         u8 saveAR[21];
473         u8 saveDACMASK;
474         u8 saveCR[37];
475         uint64_t saveFENCE[I915_MAX_NUM_FENCES];
476         u32 saveCURACNTR;
477         u32 saveCURAPOS;
478         u32 saveCURABASE;
479         u32 saveCURBCNTR;
480         u32 saveCURBPOS;
481         u32 saveCURBBASE;
482         u32 saveCURSIZE;
483         u32 saveDP_B;
484         u32 saveDP_C;
485         u32 saveDP_D;
486         u32 savePIPEA_GMCH_DATA_M;
487         u32 savePIPEB_GMCH_DATA_M;
488         u32 savePIPEA_GMCH_DATA_N;
489         u32 savePIPEB_GMCH_DATA_N;
490         u32 savePIPEA_DP_LINK_M;
491         u32 savePIPEB_DP_LINK_M;
492         u32 savePIPEA_DP_LINK_N;
493         u32 savePIPEB_DP_LINK_N;
494         u32 saveFDI_RXA_CTL;
495         u32 saveFDI_TXA_CTL;
496         u32 saveFDI_RXB_CTL;
497         u32 saveFDI_TXB_CTL;
498         u32 savePFA_CTL_1;
499         u32 savePFB_CTL_1;
500         u32 savePFA_WIN_SZ;
501         u32 savePFB_WIN_SZ;
502         u32 savePFA_WIN_POS;
503         u32 savePFB_WIN_POS;
504         u32 savePCH_DREF_CONTROL;
505         u32 saveDISP_ARB_CTL;
506         u32 savePIPEA_DATA_M1;
507         u32 savePIPEA_DATA_N1;
508         u32 savePIPEA_LINK_M1;
509         u32 savePIPEA_LINK_N1;
510         u32 savePIPEB_DATA_M1;
511         u32 savePIPEB_DATA_N1;
512         u32 savePIPEB_LINK_M1;
513         u32 savePIPEB_LINK_N1;
514         u32 saveMCHBAR_RENDER_STANDBY;
515         u32 savePCH_PORT_HOTPLUG;
516
517         struct {
518                 /** Memory allocator for GTT stolen memory */
519                 struct drm_mm stolen;
520                 /** Memory allocator for GTT */
521                 struct drm_mm gtt_space;
522                 /** List of all objects in gtt_space. Used to restore gtt
523                  * mappings on resume */
524                 struct list_head gtt_list;
525
526                 /** Usable portion of the GTT for GEM */
527                 unsigned long gtt_start;
528                 unsigned long gtt_mappable_end;
529                 unsigned long gtt_end;
530
531                 /** PPGTT used for aliasing the PPGTT with the GTT */
532                 struct i915_hw_ppgtt *aliasing_ppgtt;
533
534                 /**
535                  * List of objects currently involved in rendering from the
536                  * ringbuffer.
537                  *
538                  * Includes buffers having the contents of their GPU caches
539                  * flushed, not necessarily primitives.  last_rendering_seqno
540                  * represents when the rendering involved will be completed.
541                  *
542                  * A reference is held on the buffer while on this list.
543                  */
544                 struct list_head active_list;
545
546                 /**
547                  * List of objects which are not in the ringbuffer but which
548                  * still have a write_domain which needs to be flushed before
549                  * unbinding.
550                  *
551                  * A reference is held on the buffer while on this list.
552                  */
553                 struct list_head flushing_list;
554
555                 /**
556                  * LRU list of objects which are not in the ringbuffer and
557                  * are ready to unbind, but are still in the GTT.
558                  *
559                  * last_rendering_seqno is 0 while an object is in this list.
560                  *
561                  * A reference is not held on the buffer while on this list,
562                  * as merely being GTT-bound shouldn't prevent its being
563                  * freed, and we'll pull it off the list in the free path.
564                  */
565                 struct list_head inactive_list;
566
567                 /**
568                  * LRU list of objects which are not in the ringbuffer but
569                  * are still pinned in the GTT.
570                  */
571                 struct list_head pinned_list;
572
573                 /** LRU list of objects with fence regs on them. */
574                 struct list_head fence_list;
575
576                 /**
577                  * List of objects currently pending being freed.
578                  *
579                  * These objects are no longer in use, but due to a signal
580                  * we were prevented from freeing them at the appointed time.
581                  */
582                 struct list_head deferred_free_list;
583
584                 /**
585                  * We leave the user IRQ off as much as possible,
586                  * but this means that requests will finish and never
587                  * be retired once the system goes idle. Set a timer to
588                  * fire periodically while the ring is running. When it
589                  * fires, go retire requests.
590                  */
591                 struct timeout_task retire_task;
592
593                 /**
594                  * Are we in a non-interruptible section of code like
595                  * modesetting?
596                  */
597                 bool interruptible;
598
599                 uint32_t next_gem_seqno;
600
601                 /**
602                  * Waiting sequence number, if any
603                  */
604                 uint32_t waiting_gem_seqno;
605
606                 /**
607                  * Last seq seen at irq time
608                  */
609                 uint32_t irq_gem_seqno;
610
611                 /**
612                  * Flag if the X Server, and thus DRM, is not currently in
613                  * control of the device.
614                  *
615                  * This is set between LeaveVT and EnterVT.  It needs to be
616                  * replaced with a semaphore.  It also needs to be
617                  * transitioned away from for kernel modesetting.
618                  */
619                 int suspended;
620
621                 /**
622                  * Flag if the hardware appears to be wedged.
623                  *
624                  * This is set when attempts to idle the device timeout.
625                  * It prevents command submission from occuring and makes
626                  * every pending request fail
627                  */
628                 int wedged;
629
630                 /** Bit 6 swizzling required for X tiling */
631                 uint32_t bit_6_swizzle_x;
632                 /** Bit 6 swizzling required for Y tiling */
633                 uint32_t bit_6_swizzle_y;
634
635                 /* storage for physical objects */
636                 struct drm_i915_gem_phys_object *phys_objs[I915_MAX_PHYS_OBJECT];
637
638                 /* accounting, useful for userland debugging */
639                 size_t gtt_total;
640                 size_t mappable_gtt_total;
641                 size_t object_memory;
642                 u32 object_count;
643
644                 struct intel_gtt gtt;
645                 eventhandler_tag i915_lowmem;
646         } mm;
647
648         const struct intel_device_info *info;
649
650         struct sdvo_device_mapping sdvo_mappings[2];
651         /* indicate whether the LVDS_BORDER should be enabled or not */
652         unsigned int lvds_border_bits;
653         /* Panel fitter placement and size for Ironlake+ */
654         u32 pch_pf_pos, pch_pf_size;
655
656         struct drm_crtc *plane_to_crtc_mapping[3];
657         struct drm_crtc *pipe_to_crtc_mapping[3];
658         /* wait_queue_head_t pending_flip_queue; XXXKIB */
659         bool flip_pending_is_done;
660
661         /* Reclocking support */
662         bool render_reclock_avail;
663         bool lvds_downclock_avail;
664         /* indicates the reduced downclock for LVDS*/
665         int lvds_downclock;
666         struct task idle_task;
667         struct callout idle_callout;
668         bool busy;
669         u16 orig_clock;
670         int child_dev_num;
671         struct child_device_config *child_dev;
672         struct drm_connector *int_lvds_connector;
673         struct drm_connector *int_edp_connector;
674
675         device_t bridge_dev;
676         bool mchbar_need_disable;
677         int mch_res_rid;
678         struct resource *mch_res;
679
680         struct lock rps_lock;
681         u32 pm_iir;
682         struct task rps_task;
683
684         u8 cur_delay;
685         u8 min_delay;
686         u8 max_delay;
687         u8 fmax;
688         u8 fstart;
689
690         u64 last_count1;
691         unsigned long last_time1;
692         unsigned long chipset_power;
693         u64 last_count2;
694         struct timespec last_time2;
695         unsigned long gfx_power;
696         int c_m;
697         int r_t;
698         u8 corr;
699         struct lock *mchdev_lock;
700
701         enum no_fbc_reason no_fbc_reason;
702
703         unsigned long cfb_size;
704         unsigned int cfb_fb;
705         int cfb_plane;
706         int cfb_y;
707         struct intel_fbc_work *fbc_work;
708
709         unsigned int fsb_freq, mem_freq, is_ddr3;
710
711         struct taskqueue *tq;
712         struct task error_task;
713         struct task hotplug_task;
714         int error_completion;
715         struct lock error_completion_lock;
716         struct drm_i915_error_state *first_error;
717         struct lock error_lock;
718         struct callout hangcheck_timer;
719
720         unsigned long last_gpu_reset;
721
722         struct intel_fbdev *fbdev;
723
724         struct drm_property *broadcast_rgb_property;
725         struct drm_property *force_audio_property;
726 } drm_i915_private_t;
727
728 enum hdmi_force_audio {
729         HDMI_AUDIO_OFF_DVI = -2,        /* no aux data for HDMI-DVI converter */
730         HDMI_AUDIO_OFF,                 /* force turn off HDMI audio */
731         HDMI_AUDIO_AUTO,                /* trust EDID */
732         HDMI_AUDIO_ON,                  /* force turn on HDMI audio */
733 };
734
735 enum i915_cache_level {
736         I915_CACHE_NONE,
737         I915_CACHE_LLC,
738         I915_CACHE_LLC_MLC, /* gen6+ */
739 };
740
741 enum intel_chip_family {
742         CHIP_I8XX = 0x01,
743         CHIP_I9XX = 0x02,
744         CHIP_I915 = 0x04,
745         CHIP_I965 = 0x08,
746 };
747
748 /** driver private structure attached to each drm_gem_object */
749 struct drm_i915_gem_object {
750         struct drm_gem_object base;
751
752         /** Current space allocated to this object in the GTT, if any. */
753         struct drm_mm_node *gtt_space;
754         struct list_head gtt_list;
755         /** This object's place on the active/flushing/inactive lists */
756         struct list_head ring_list;
757         struct list_head mm_list;
758         /** This object's place on GPU write list */
759         struct list_head gpu_write_list;
760         /** This object's place in the batchbuffer or on the eviction list */
761         struct list_head exec_list;
762
763         /**
764          * This is set if the object is on the active or flushing lists
765          * (has pending rendering), and is not set if it's on inactive (ready
766          * to be unbound).
767          */
768         unsigned int active:1;
769
770         /**
771          * This is set if the object has been written to since last bound
772          * to the GTT
773          */
774         unsigned int dirty:1;
775
776         /**
777          * This is set if the object has been written to since the last
778          * GPU flush.
779          */
780         unsigned int pending_gpu_write:1;
781
782         /**
783          * Fence register bits (if any) for this object.  Will be set
784          * as needed when mapped into the GTT.
785          * Protected by dev->struct_mutex.
786          */
787         signed int fence_reg:I915_MAX_NUM_FENCE_BITS;
788
789         /**
790          * Advice: are the backing pages purgeable?
791          */
792         unsigned int madv:2;
793
794         /**
795          * Current tiling mode for the object.
796          */
797         unsigned int tiling_mode:2;
798         unsigned int tiling_changed:1;
799
800         /** How many users have pinned this object in GTT space. The following
801          * users can each hold at most one reference: pwrite/pread, pin_ioctl
802          * (via user_pin_count), execbuffer (objects are not allowed multiple
803          * times for the same batchbuffer), and the framebuffer code. When
804          * switching/pageflipping, the framebuffer code has at most two buffers
805          * pinned per crtc.
806          *
807          * In the worst case this is 1 + 1 + 1 + 2*2 = 7. That would fit into 3
808          * bits with absolutely no headroom. So use 4 bits. */
809         unsigned int pin_count:4;
810 #define DRM_I915_GEM_OBJECT_MAX_PIN_COUNT 0xf
811
812         /**
813          * Is the object at the current location in the gtt mappable and
814          * fenceable? Used to avoid costly recalculations.
815          */
816         unsigned int map_and_fenceable:1;
817
818         /**
819          * Whether the current gtt mapping needs to be mappable (and isn't just
820          * mappable by accident). Track pin and fault separate for a more
821          * accurate mappable working set.
822          */
823         unsigned int fault_mappable:1;
824         unsigned int pin_mappable:1;
825
826         /*
827          * Is the GPU currently using a fence to access this buffer,
828          */
829         unsigned int pending_fenced_gpu_access:1;
830         unsigned int fenced_gpu_access:1;
831
832         unsigned int cache_level:2;
833
834         unsigned int has_aliasing_ppgtt_mapping:1;
835
836         vm_page_t *pages;
837
838         /**
839          * DMAR support
840          */
841         struct sglist *sg_list;
842
843         /**
844          * Used for performing relocations during execbuffer insertion.
845          */
846         LIST_ENTRY(drm_i915_gem_object) exec_node;
847         unsigned long exec_handle;
848         struct drm_i915_gem_exec_object2 *exec_entry;
849
850         /**
851          * Current offset of the object in GTT space.
852          *
853          * This is the same as gtt_space->start
854          */
855         uint32_t gtt_offset;
856
857         /** Breadcrumb of last rendering to the buffer. */
858         uint32_t last_rendering_seqno;
859         struct intel_ring_buffer *ring;
860
861         /** Breadcrumb of last fenced GPU access to the buffer. */
862         uint32_t last_fenced_seqno;
863         struct intel_ring_buffer *last_fenced_ring;
864
865         /** Current tiling stride for the object, if it's tiled. */
866         uint32_t stride;
867
868         /** Record of address bit 17 of each page at last unbind. */
869         unsigned long *bit_17;
870
871         /**
872          * If present, while GEM_DOMAIN_CPU is in the read domain this array
873          * flags which individual pages are valid.
874          */
875         uint8_t *page_cpu_valid;
876
877         /** User space pin count and filp owning the pin */
878         uint32_t user_pin_count;
879         struct drm_file *pin_filp;
880
881         /** for phy allocated objects */
882         struct drm_i915_gem_phys_object *phys_obj;
883
884         /**
885          * Number of crtcs where this object is currently the fb, but
886          * will be page flipped away on the next vblank.  When it
887          * reaches 0, dev_priv->pending_flip_queue will be woken up.
888          */
889         int pending_flip;
890 };
891
892 #define to_intel_bo(x) container_of(x, struct drm_i915_gem_object, base)
893
894 /**
895  * Request queue structure.
896  *
897  * The request queue allows us to note sequence numbers that have been emitted
898  * and may be associated with active buffers to be retired.
899  *
900  * By keeping this list, we can avoid having to do questionable
901  * sequence-number comparisons on buffer last_rendering_seqnos, and associate
902  * an emission time with seqnos for tracking how far ahead of the GPU we are.
903  */
904 struct drm_i915_gem_request {
905         /** On Which ring this request was generated */
906         struct intel_ring_buffer *ring;
907
908         /** GEM sequence number associated with this request. */
909         uint32_t seqno;
910
911         /** Postion in the ringbuffer of the end of the request */
912         u32 tail;
913
914         /** Time at which this request was emitted, in jiffies. */
915         unsigned long emitted_jiffies;
916
917         /** global list entry for this request */
918         struct list_head list;
919
920         struct drm_i915_file_private *file_priv;
921         /** file_priv list entry for this request */
922         struct list_head client_list;
923 };
924
925 struct drm_i915_file_private {
926         struct {
927                 struct spinlock lock;
928                 struct list_head request_list;
929         } mm;
930 };
931
932 struct drm_i915_error_state {
933         u32 eir;
934         u32 pgtbl_er;
935         u32 pipestat[I915_MAX_PIPES];
936         u32 tail[I915_NUM_RINGS];
937         u32 head[I915_NUM_RINGS];
938         u32 ipeir[I915_NUM_RINGS];
939         u32 ipehr[I915_NUM_RINGS];
940         u32 instdone[I915_NUM_RINGS];
941         u32 acthd[I915_NUM_RINGS];
942         u32 semaphore_mboxes[I915_NUM_RINGS][I915_NUM_RINGS - 1];
943         /* our own tracking of ring head and tail */
944         u32 cpu_ring_head[I915_NUM_RINGS];
945         u32 cpu_ring_tail[I915_NUM_RINGS];
946         u32 error; /* gen6+ */
947         u32 instpm[I915_NUM_RINGS];
948         u32 instps[I915_NUM_RINGS];
949         u32 instdone1;
950         u32 seqno[I915_NUM_RINGS];
951         u64 bbaddr;
952         u32 fault_reg[I915_NUM_RINGS];
953         u32 done_reg;
954         u32 faddr[I915_NUM_RINGS];
955         u64 fence[I915_MAX_NUM_FENCES];
956         struct timeval time;
957         struct drm_i915_error_ring {
958                 struct drm_i915_error_object {
959                         int page_count;
960                         u32 gtt_offset;
961                         u32 *pages[0];
962                 } *ringbuffer, *batchbuffer;
963                 struct drm_i915_error_request {
964                         long jiffies;
965                         u32 seqno;
966                         u32 tail;
967                 } *requests;
968                 int num_requests;
969         } ring[I915_NUM_RINGS];
970         struct drm_i915_error_buffer {
971                 u32 size;
972                 u32 name;
973                 u32 seqno;
974                 u32 gtt_offset;
975                 u32 read_domains;
976                 u32 write_domain;
977                 s32 fence_reg:I915_MAX_NUM_FENCE_BITS;
978                 s32 pinned:2;
979                 u32 tiling:2;
980                 u32 dirty:1;
981                 u32 purgeable:1;
982                 s32 ring:4;
983                 u32 cache_level:2;
984         } *active_bo, *pinned_bo;
985         u32 active_bo_count, pinned_bo_count;
986         struct intel_overlay_error_state *overlay;
987         struct intel_display_error_state *display;
988 };
989
990 /**
991  * RC6 is a special power stage which allows the GPU to enter an very
992  * low-voltage mode when idle, using down to 0V while at this stage.  This
993  * stage is entered automatically when the GPU is idle when RC6 support is
994  * enabled, and as soon as new workload arises GPU wakes up automatically as well.
995  *
996  * There are different RC6 modes available in Intel GPU, which differentiate
997  * among each other with the latency required to enter and leave RC6 and
998  * voltage consumed by the GPU in different states.
999  *
1000  * The combination of the following flags define which states GPU is allowed
1001  * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
1002  * RC6pp is deepest RC6. Their support by hardware varies according to the
1003  * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
1004  * which brings the most power savings; deeper states save more power, but
1005  * require higher latency to switch to and wake up.
1006  */
1007 #define INTEL_RC6_ENABLE                        (1<<0)
1008 #define INTEL_RC6p_ENABLE                       (1<<1)
1009 #define INTEL_RC6pp_ENABLE                      (1<<2)
1010
1011 extern int intel_iommu_enabled;
1012 extern struct drm_ioctl_desc i915_ioctls[];
1013 extern struct drm_driver_info i915_driver_info;
1014 extern struct cdev_pager_ops i915_gem_pager_ops;
1015 extern int i915_panel_ignore_lid;
1016 extern unsigned int i915_powersave;
1017 extern int i915_semaphores;
1018 extern unsigned int i915_lvds_downclock;
1019 extern int i915_panel_use_ssc;
1020 extern int i915_vbt_sdvo_panel_type;
1021 extern int i915_enable_rc6;
1022 extern int i915_enable_fbc;
1023 extern int i915_enable_ppgtt;
1024 extern int i915_enable_hangcheck;
1025
1026 const struct intel_device_info *i915_get_device_id(int device);
1027
1028 int i915_reset(struct drm_device *dev, u8 flags);
1029
1030 /* i915_debug.c */
1031 int i915_sysctl_init(struct drm_device *dev, struct sysctl_ctx_list *ctx,
1032     struct sysctl_oid *top);
1033 void i915_sysctl_cleanup(struct drm_device *dev);
1034
1035                                 /* i915_dma.c */
1036 extern void i915_kernel_lost_context(struct drm_device * dev);
1037 extern int i915_driver_load(struct drm_device *, unsigned long flags);
1038 extern int i915_driver_unload(struct drm_device *);
1039 extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
1040 extern void i915_driver_lastclose(struct drm_device * dev);
1041 extern void i915_driver_preclose(struct drm_device *dev,
1042                                  struct drm_file *file_priv);
1043 extern void i915_driver_postclose(struct drm_device *dev,
1044                                   struct drm_file *file_priv);
1045 extern int i915_driver_device_is_agp(struct drm_device * dev);
1046 extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
1047                               unsigned long arg);
1048 extern int i915_emit_box(struct drm_device *dev,
1049                          struct drm_clip_rect __user *boxes,
1050                          int i, int DR1, int DR4);
1051 int i915_emit_box_p(struct drm_device *dev, struct drm_clip_rect *box,
1052     int DR1, int DR4);
1053
1054 unsigned long i915_chipset_val(struct drm_i915_private *dev_priv);
1055 unsigned long i915_mch_val(struct drm_i915_private *dev_priv);
1056 void i915_update_gfx_val(struct drm_i915_private *dev_priv);
1057 unsigned long i915_gfx_val(struct drm_i915_private *dev_priv);
1058 unsigned long i915_read_mch_val(void);
1059 bool i915_gpu_raise(void);
1060 bool i915_gpu_lower(void);
1061 bool i915_gpu_busy(void);
1062 bool i915_gpu_turbo_disable(void);
1063
1064 /* i915_irq.c */
1065 extern int i915_irq_emit(struct drm_device *dev, void *data,
1066                          struct drm_file *file_priv);
1067 extern int i915_irq_wait(struct drm_device *dev, void *data,
1068                          struct drm_file *file_priv);
1069
1070 extern void intel_irq_init(struct drm_device *dev);
1071
1072 extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
1073                                 struct drm_file *file_priv);
1074 extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
1075                                 struct drm_file *file_priv);
1076 extern int i915_vblank_swap(struct drm_device *dev, void *data,
1077                             struct drm_file *file_priv);
1078 void intel_enable_asle(struct drm_device *dev);
1079 void i915_hangcheck_elapsed(void *context);
1080 void i915_handle_error(struct drm_device *dev, bool wedged);
1081
1082 void i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
1083 void i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
1084
1085 void i915_destroy_error_state(struct drm_device *dev);
1086
1087 /* i915_gem.c */
1088 int i915_gem_create(struct drm_file *file, struct drm_device *dev, uint64_t size,
1089                         uint32_t *handle_p);
1090 int i915_gem_init_ioctl(struct drm_device *dev, void *data,
1091                         struct drm_file *file_priv);
1092 int i915_gem_create_ioctl(struct drm_device *dev, void *data,
1093                           struct drm_file *file_priv);
1094 int i915_gem_pread_ioctl(struct drm_device *dev, void *data,
1095                          struct drm_file *file_priv);
1096 int i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
1097                           struct drm_file *file_priv);
1098 int i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
1099                         struct drm_file *file_priv);
1100 int i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1101                         struct drm_file *file_priv);
1102 int i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
1103                               struct drm_file *file_priv);
1104 int i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
1105                              struct drm_file *file_priv);
1106 int i915_gem_execbuffer(struct drm_device *dev, void *data,
1107                         struct drm_file *file_priv);
1108 int i915_gem_execbuffer2(struct drm_device *dev, void *data,
1109                         struct drm_file *file_priv);
1110 int i915_gem_pin_ioctl(struct drm_device *dev, void *data,
1111                        struct drm_file *file_priv);
1112 int i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
1113                          struct drm_file *file_priv);
1114 int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
1115                         struct drm_file *file_priv);
1116 int i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
1117                             struct drm_file *file_priv);
1118 int i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
1119                            struct drm_file *file_priv);
1120 int i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
1121                            struct drm_file *file_priv);
1122 int i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
1123                            struct drm_file *file_priv);
1124 int i915_gem_set_tiling(struct drm_device *dev, void *data,
1125                         struct drm_file *file_priv);
1126 int i915_gem_get_tiling(struct drm_device *dev, void *data,
1127                         struct drm_file *file_priv);
1128 int i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
1129                                 struct drm_file *file_priv);
1130 void i915_gem_load(struct drm_device *dev);
1131 void i915_gem_unload(struct drm_device *dev);
1132 int i915_gem_init_object(struct drm_gem_object *obj);
1133 void i915_gem_free_object(struct drm_gem_object *obj);
1134 int i915_gem_object_pin(struct drm_i915_gem_object *obj, uint32_t alignment,
1135     bool map_and_fenceable);
1136 void i915_gem_object_unpin(struct drm_i915_gem_object *obj);
1137 int i915_gem_object_unbind(struct drm_i915_gem_object *obj);
1138 void i915_gem_lastclose(struct drm_device *dev);
1139 uint32_t i915_get_gem_seqno(struct drm_device *dev);
1140
1141 static inline void
1142 i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
1143 {
1144         if (obj->fence_reg != I915_FENCE_REG_NONE) {
1145                 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1146                 dev_priv->fence_regs[obj->fence_reg].pin_count++;
1147         }
1148 }
1149
1150 static inline void
1151 i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
1152 {
1153         if (obj->fence_reg != I915_FENCE_REG_NONE) {
1154                 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1155                 dev_priv->fence_regs[obj->fence_reg].pin_count--;
1156         }
1157 }
1158
1159 void i915_gem_retire_requests(struct drm_device *dev);
1160 void i915_gem_retire_requests_ring(struct intel_ring_buffer *ring);
1161 void i915_gem_clflush_object(struct drm_i915_gem_object *obj);
1162 struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
1163     size_t size);
1164 int i915_gem_do_init(struct drm_device *dev, unsigned long start,
1165     unsigned long mappable_end, unsigned long end);
1166 uint32_t i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1167     uint32_t size, int tiling_mode);
1168 int i915_mutex_lock_interruptible(struct drm_device *dev);
1169 int i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj,
1170     bool write);
1171 int i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
1172     u32 alignment, struct intel_ring_buffer *pipelined);
1173 int i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj);
1174 int i915_gem_flush_ring(struct intel_ring_buffer *ring,
1175     uint32_t invalidate_domains, uint32_t flush_domains);
1176 void i915_gem_release_mmap(struct drm_i915_gem_object *obj);
1177 int i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj);
1178 int i915_gem_object_put_fence(struct drm_i915_gem_object *obj);
1179 int i915_gem_idle(struct drm_device *dev);
1180 int i915_gem_init_hw(struct drm_device *dev);
1181 void i915_gem_init_swizzling(struct drm_device *dev);
1182 void i915_gem_init_ppgtt(struct drm_device *dev);
1183 void i915_gem_cleanup_ringbuffer(struct drm_device *dev);
1184 int i915_gpu_idle(struct drm_device *dev, bool do_retire);
1185 void i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
1186     struct intel_ring_buffer *ring, uint32_t seqno);
1187 int i915_add_request(struct intel_ring_buffer *ring, struct drm_file *file,
1188     struct drm_i915_gem_request *request);
1189 int i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
1190     struct intel_ring_buffer *pipelined);
1191 void i915_gem_reset(struct drm_device *dev);
1192 int i915_wait_request(struct intel_ring_buffer *ring, uint32_t seqno,
1193     bool do_retire);
1194 int i915_gem_mmap(struct drm_device *dev, uint64_t offset, int prot);
1195 int i915_gem_fault(struct drm_device *dev, uint64_t offset, int prot,
1196     uint64_t *phys);
1197 void i915_gem_release(struct drm_device *dev, struct drm_file *file);
1198 int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
1199     enum i915_cache_level cache_level);
1200
1201 void i915_gem_free_all_phys_object(struct drm_device *dev);
1202 void i915_gem_detach_phys_object(struct drm_device *dev,
1203     struct drm_i915_gem_object *obj);
1204 int i915_gem_attach_phys_object(struct drm_device *dev,
1205     struct drm_i915_gem_object *obj, int id, int align);
1206
1207 int i915_gem_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
1208     struct drm_mode_create_dumb *args);
1209 int i915_gem_mmap_gtt(struct drm_file *file_priv, struct drm_device *dev,
1210      uint32_t handle, uint64_t *offset);
1211 int i915_gem_dumb_destroy(struct drm_file *file_priv, struct drm_device *dev,
1212      uint32_t handle);
1213
1214 /* i915_gem_tiling.c */
1215 void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
1216 void i915_gem_object_do_bit_17_swizzle(struct drm_i915_gem_object *obj);
1217 void i915_gem_object_save_bit_17_swizzle(struct drm_i915_gem_object *obj);
1218
1219 /* i915_gem_evict.c */
1220 int i915_gem_evict_something(struct drm_device *dev, int min_size,
1221     unsigned alignment, bool mappable);
1222 int i915_gem_evict_everything(struct drm_device *dev, bool purgeable_only);
1223 int i915_gem_evict_inactive(struct drm_device *dev, bool purgeable_only);
1224
1225 /* i915_suspend.c */
1226 extern int i915_save_state(struct drm_device *dev);
1227 extern int i915_restore_state(struct drm_device *dev);
1228
1229 /* intel_iic.c */
1230 extern int intel_setup_gmbus(struct drm_device *dev);
1231 extern void intel_teardown_gmbus(struct drm_device *dev);
1232 extern void intel_gmbus_set_speed(device_t idev, int speed);
1233 extern void intel_gmbus_force_bit(device_t idev, bool force_bit);
1234 extern void intel_iic_reset(struct drm_device *dev);
1235
1236 /* intel_opregion.c */
1237 int intel_opregion_setup(struct drm_device *dev);
1238 extern int intel_opregion_init(struct drm_device *dev);
1239 extern void intel_opregion_fini(struct drm_device *dev);
1240 extern void opregion_asle_intr(struct drm_device *dev);
1241 extern void opregion_enable_asle(struct drm_device *dev);
1242
1243 /* i915_gem_gtt.c */
1244 int i915_gem_init_aliasing_ppgtt(struct drm_device *dev);
1245 void i915_gem_cleanup_aliasing_ppgtt(struct drm_device *dev);
1246 void i915_ppgtt_bind_object(struct i915_hw_ppgtt *ppgtt,
1247     struct drm_i915_gem_object *obj, enum i915_cache_level cache_level);
1248 void i915_ppgtt_unbind_object(struct i915_hw_ppgtt *ppgtt,
1249     struct drm_i915_gem_object *obj);
1250
1251 void i915_gem_restore_gtt_mappings(struct drm_device *dev);
1252 int i915_gem_gtt_bind_object(struct drm_i915_gem_object *obj);
1253 void i915_gem_gtt_unbind_object(struct drm_i915_gem_object *obj);
1254 void i915_gem_gtt_rebind_object(struct drm_i915_gem_object *obj,
1255     enum i915_cache_level cache_level);
1256
1257 /* modesetting */
1258 extern void intel_modeset_init(struct drm_device *dev);
1259 extern void intel_modeset_gem_init(struct drm_device *dev);
1260 extern void intel_modeset_cleanup(struct drm_device *dev);
1261 extern int intel_modeset_vga_set_state(struct drm_device *dev, bool state);
1262 extern bool intel_fbc_enabled(struct drm_device *dev);
1263 extern void intel_disable_fbc(struct drm_device *dev);
1264 extern bool ironlake_set_drps(struct drm_device *dev, u8 val);
1265 extern void ironlake_init_pch_refclk(struct drm_device *dev);
1266 extern void ironlake_enable_rc6(struct drm_device *dev);
1267 extern void gen6_set_rps(struct drm_device *dev, u8 val);
1268 extern void intel_detect_pch(struct drm_device *dev);
1269 extern int intel_trans_dp_port_sel(struct drm_crtc *crtc);
1270
1271 extern void __gen6_gt_force_wake_get(struct drm_i915_private *dev_priv);
1272 extern void __gen6_gt_force_wake_mt_get(struct drm_i915_private *dev_priv);
1273 extern void __gen6_gt_force_wake_put(struct drm_i915_private *dev_priv);
1274 extern void __gen6_gt_force_wake_mt_put(struct drm_i915_private *dev_priv);
1275
1276 extern struct intel_overlay_error_state *intel_overlay_capture_error_state(
1277     struct drm_device *dev);
1278 extern void intel_overlay_print_error_state(struct sbuf *m,
1279     struct intel_overlay_error_state *error);
1280 extern struct intel_display_error_state *intel_display_capture_error_state(
1281     struct drm_device *dev);
1282 extern void intel_display_print_error_state(struct sbuf *m,
1283     struct drm_device *dev, struct intel_display_error_state *error);
1284
1285 static inline void
1286 trace_i915_reg_rw(boolean_t rw, int reg, uint64_t val, int sz)
1287 {
1288         return;
1289 }
1290
1291 /* On SNB platform, before reading ring registers forcewake bit
1292  * must be set to prevent GT core from power down and stale values being
1293  * returned.
1294  */
1295 void gen6_gt_force_wake_get(struct drm_i915_private *dev_priv);
1296 void gen6_gt_force_wake_put(struct drm_i915_private *dev_priv);
1297 int __gen6_gt_wait_for_fifo(struct drm_i915_private *dev_priv);
1298
1299 /* We give fast paths for the really cool registers */
1300 #define NEEDS_FORCE_WAKE(dev_priv, reg) \
1301         (((dev_priv)->info->gen >= 6) && \
1302          ((reg) < 0x40000) &&            \
1303          ((reg) != FORCEWAKE))
1304
1305 #define __i915_read(x, y) \
1306         u##x i915_read##x(struct drm_i915_private *dev_priv, u32 reg);
1307
1308 __i915_read(8, 8)
1309 __i915_read(16, 16)
1310 __i915_read(32, 32)
1311 __i915_read(64, 64)
1312 #undef __i915_read
1313
1314 #define __i915_write(x, y) \
1315         void i915_write##x(struct drm_i915_private *dev_priv, u32 reg, u##x val);
1316
1317 __i915_write(8, 8)
1318 __i915_write(16, 16)
1319 __i915_write(32, 32)
1320 __i915_write(64, 64)
1321 #undef __i915_write
1322
1323 #define I915_READ8(reg)         i915_read8(dev_priv, (reg))
1324 #define I915_WRITE8(reg, val)   i915_write8(dev_priv, (reg), (val))
1325
1326 #define I915_READ16(reg)        i915_read16(dev_priv, (reg))
1327 #define I915_WRITE16(reg, val)  i915_write16(dev_priv, (reg), (val))
1328 #define I915_READ16_NOTRACE(reg)        DRM_READ16(dev_priv->mmio_map, (reg))
1329 #define I915_WRITE16_NOTRACE(reg, val)  DRM_WRITE16(dev_priv->mmio_map, (reg), (val))
1330
1331 #define I915_READ(reg)          i915_read32(dev_priv, (reg))
1332 #define I915_WRITE(reg, val)    i915_write32(dev_priv, (reg), (val))
1333 #define I915_READ_NOTRACE(reg)          DRM_READ32(dev_priv->mmio_map, (reg))
1334 #define I915_WRITE_NOTRACE(reg, val)    DRM_WRITE32(dev_priv->mmio_map, (reg), (val))
1335
1336 #define I915_WRITE64(reg, val)  i915_write64(dev_priv, (reg), (val))
1337 #define I915_READ64(reg)        i915_read64(dev_priv, (reg))
1338
1339 #define POSTING_READ(reg)       (void)I915_READ_NOTRACE(reg)
1340 #define POSTING_READ16(reg)     (void)I915_READ16_NOTRACE(reg)
1341
1342 #define I915_VERBOSE 0
1343
1344 #define LP_RING(d) (&((struct drm_i915_private *)(d))->rings[RCS])
1345
1346 #define BEGIN_LP_RING(n) \
1347         intel_ring_begin(LP_RING(dev_priv), (n))
1348
1349 #define OUT_RING(x) \
1350         intel_ring_emit(LP_RING(dev_priv), x)
1351
1352 #define ADVANCE_LP_RING() \
1353         intel_ring_advance(LP_RING(dev_priv))
1354
1355 #define RING_LOCK_TEST_WITH_RETURN(dev, file) do {                      \
1356         if (LP_RING(dev->dev_private)->obj == NULL)                     \
1357                 LOCK_TEST_WITH_RETURN(dev, file);                       \
1358 } while (0)
1359
1360 /**
1361  * Reads a dword out of the status page, which is written to from the command
1362  * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
1363  * MI_STORE_DATA_IMM.
1364  *
1365  * The following dwords have a reserved meaning:
1366  * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
1367  * 0x04: ring 0 head pointer
1368  * 0x05: ring 1 head pointer (915-class)
1369  * 0x06: ring 2 head pointer (915-class)
1370  * 0x10-0x1b: Context status DWords (GM45)
1371  * 0x1f: Last written status offset. (GM45)
1372  *
1373  * The area from dword 0x20 to 0x3ff is available for driver usage.
1374  */
1375 #define READ_HWSP(dev_priv, reg)  (((volatile u32*)(dev_priv->hw_status_page))[reg])
1376 #define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
1377 #define I915_GEM_HWS_INDEX              0x20
1378 #define I915_BREADCRUMB_INDEX           0x21
1379
1380 #define INTEL_INFO(dev) (((struct drm_i915_private *) (dev)->dev_private)->info)
1381
1382 #define IS_I830(dev)            ((dev)->pci_device == 0x3577)
1383 #define IS_845G(dev)            ((dev)->pci_device == 0x2562)
1384 #define IS_I85X(dev)            (INTEL_INFO(dev)->is_i85x)
1385 #define IS_I865G(dev)           ((dev)->pci_device == 0x2572)
1386 #define IS_I915G(dev)           (INTEL_INFO(dev)->is_i915g)
1387 #define IS_I915GM(dev)          ((dev)->pci_device == 0x2592)
1388 #define IS_I945G(dev)           ((dev)->pci_device == 0x2772)
1389 #define IS_I945GM(dev)          (INTEL_INFO(dev)->is_i945gm)
1390 #define IS_BROADWATER(dev)      (INTEL_INFO(dev)->is_broadwater)
1391 #define IS_CRESTLINE(dev)       (INTEL_INFO(dev)->is_crestline)
1392 #define IS_GM45(dev)            ((dev)->pci_device == 0x2A42)
1393 #define IS_G4X(dev)             (INTEL_INFO(dev)->is_g4x)
1394 #define IS_PINEVIEW_G(dev)      ((dev)->pci_device == 0xa001)
1395 #define IS_PINEVIEW_M(dev)      ((dev)->pci_device == 0xa011)
1396 #define IS_PINEVIEW(dev)        (INTEL_INFO(dev)->is_pineview)
1397 #define IS_G33(dev)             (INTEL_INFO(dev)->is_g33)
1398 #define IS_IRONLAKE_D(dev)      ((dev)->pci_device == 0x0042)
1399 #define IS_IRONLAKE_M(dev)      ((dev)->pci_device == 0x0046)
1400 #define IS_IVYBRIDGE(dev)       (INTEL_INFO(dev)->is_ivybridge)
1401 #define IS_MOBILE(dev)          (INTEL_INFO(dev)->is_mobile)
1402
1403 /* XXXKIB LEGACY */
1404 #define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
1405                        (dev)->pci_device == 0x2982 || \
1406                        (dev)->pci_device == 0x2992 || \
1407                        (dev)->pci_device == 0x29A2 || \
1408                        (dev)->pci_device == 0x2A02 || \
1409                        (dev)->pci_device == 0x2A12 || \
1410                        (dev)->pci_device == 0x2A42 || \
1411                        (dev)->pci_device == 0x2E02 || \
1412                        (dev)->pci_device == 0x2E12 || \
1413                        (dev)->pci_device == 0x2E22 || \
1414                        (dev)->pci_device == 0x2E32)
1415
1416 #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
1417
1418 #define IS_IGDG(dev) ((dev)->pci_device == 0xa001)
1419 #define IS_IGDGM(dev) ((dev)->pci_device == 0xa011)
1420 #define IS_IGD(dev) (IS_IGDG(dev) || IS_IGDGM(dev))
1421
1422 #define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
1423                       IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
1424 /* XXXKIB LEGACY END */
1425
1426 #define IS_GEN2(dev)    (INTEL_INFO(dev)->gen == 2)
1427 #define IS_GEN3(dev)    (INTEL_INFO(dev)->gen == 3)
1428 #define IS_GEN4(dev)    (INTEL_INFO(dev)->gen == 4)
1429 #define IS_GEN5(dev)    (INTEL_INFO(dev)->gen == 5)
1430 #define IS_GEN6(dev)    (INTEL_INFO(dev)->gen == 6)
1431 #define IS_GEN7(dev)    (INTEL_INFO(dev)->gen == 7)
1432
1433 #define HAS_BSD(dev)            (INTEL_INFO(dev)->has_bsd_ring)
1434 #define HAS_BLT(dev)            (INTEL_INFO(dev)->has_blt_ring)
1435 #define HAS_LLC(dev)            (INTEL_INFO(dev)->has_llc)
1436 #define I915_NEED_GFX_HWS(dev)  (INTEL_INFO(dev)->need_gfx_hws)
1437
1438 #define HAS_ALIASING_PPGTT(dev) (INTEL_INFO(dev)->gen >=6)
1439
1440 #define HAS_OVERLAY(dev)                (INTEL_INFO(dev)->has_overlay)
1441 #define OVERLAY_NEEDS_PHYSICAL(dev)     (INTEL_INFO(dev)->overlay_needs_physical)
1442
1443 /* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte
1444  * rows, which changed the alignment requirements and fence programming.
1445  */
1446 #define HAS_128_BYTE_Y_TILING(dev) (!IS_GEN2(dev) && !(IS_I915G(dev) || \
1447                                                       IS_I915GM(dev)))
1448 #define SUPPORTS_DIGITAL_OUTPUTS(dev)   (!IS_GEN2(dev) && !IS_PINEVIEW(dev))
1449 #define SUPPORTS_INTEGRATED_HDMI(dev)   (IS_G4X(dev) || IS_GEN5(dev))
1450 #define SUPPORTS_INTEGRATED_DP(dev)     (IS_G4X(dev) || IS_GEN5(dev))
1451 #define SUPPORTS_EDP(dev)               (IS_IRONLAKE_M(dev))
1452 #define SUPPORTS_TV(dev)                (INTEL_INFO(dev)->supports_tv)
1453 #define I915_HAS_HOTPLUG(dev)            (INTEL_INFO(dev)->has_hotplug)
1454 /* dsparb controlled by hw only */
1455 #define DSPARB_HWCONTROL(dev) (IS_G4X(dev) || IS_IRONLAKE(dev))
1456
1457 #define HAS_FW_BLC(dev) (INTEL_INFO(dev)->gen > 2)
1458 #define HAS_PIPE_CXSR(dev) (INTEL_INFO(dev)->has_pipe_cxsr)
1459 #define I915_HAS_FBC(dev) (INTEL_INFO(dev)->has_fbc)
1460
1461 #define HAS_PCH_SPLIT(dev) (IS_GEN5(dev) || IS_GEN6(dev) || IS_IVYBRIDGE(dev))
1462 #define HAS_PIPE_CONTROL(dev) (INTEL_INFO(dev)->gen >= 5)
1463
1464 #define INTEL_PCH_TYPE(dev) (((struct drm_i915_private *)(dev)->dev_private)->pch_type)
1465 #define HAS_PCH_CPT(dev) (INTEL_PCH_TYPE(dev) == PCH_CPT)
1466 #define HAS_PCH_IBX(dev) (INTEL_PCH_TYPE(dev) == PCH_IBX)
1467
1468 #define PRIMARY_RINGBUFFER_SIZE         (128*1024)
1469
1470 static inline bool
1471 i915_seqno_passed(uint32_t seq1, uint32_t seq2)
1472 {
1473
1474         return ((int32_t)(seq1 - seq2) >= 0);
1475 }
1476
1477 u32 i915_gem_next_request_seqno(struct intel_ring_buffer *ring);
1478
1479 #endif