drm/i915: Make intel_gtt_get() return type the same as on Linux 3.5
[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 "i915_reg.h"
38 #include "intel_bios.h"
39 #include "intel_ringbuffer.h"
40
41 /* General customization:
42  */
43
44 #define DRIVER_AUTHOR           "Tungsten Graphics, Inc."
45
46 #define DRIVER_NAME             "i915"
47 #define DRIVER_DESC             "Intel Graphics"
48 #define DRIVER_DATE             "20080730"
49
50 MALLOC_DECLARE(DRM_I915_GEM);
51
52 enum i915_pipe {
53         PIPE_A = 0,
54         PIPE_B,
55         PIPE_C,
56         I915_MAX_PIPES
57 };
58 #define pipe_name(p) ((p) + 'A')
59 #define I915_NUM_PIPE   2
60
61 enum plane {
62         PLANE_A = 0,
63         PLANE_B,
64         PLANE_C,
65 };
66 #define plane_name(p) ((p) + 'A')
67
68 #define I915_GEM_GPU_DOMAINS    (~(I915_GEM_DOMAIN_CPU | I915_GEM_DOMAIN_GTT))
69
70 #define for_each_pipe(p) for ((p) = 0; (p) < dev_priv->num_pipe; (p)++)
71
72 /* Interface history:
73  *
74  * 1.1: Original.
75  * 1.2: Add Power Management
76  * 1.3: Add vblank support
77  * 1.4: Fix cmdbuffer path, add heap destroy
78  * 1.5: Add vblank pipe configuration
79  * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
80  *      - Support vertical blank on secondary display pipe
81  */
82 #define DRIVER_MAJOR            1
83 #define DRIVER_MINOR            6
84 #define DRIVER_PATCHLEVEL       0
85
86 #define WATCH_COHERENCY 0
87 #define WATCH_BUF       0
88 #define WATCH_EXEC      0
89 #define WATCH_LRU       0
90 #define WATCH_RELOC     0
91 #define WATCH_INACTIVE  0
92 #define WATCH_PWRITE    0
93
94 #define I915_GEM_PHYS_CURSOR_0 1
95 #define I915_GEM_PHYS_CURSOR_1 2
96 #define I915_GEM_PHYS_OVERLAY_REGS 3
97 #define I915_MAX_PHYS_OBJECT (I915_GEM_PHYS_OVERLAY_REGS)
98
99 struct drm_i915_gem_phys_object {
100         int id;
101         drm_dma_handle_t *handle;
102         struct drm_i915_gem_object *cur_obj;
103 };
104
105 struct drm_i915_private;
106
107 struct drm_i915_display_funcs {
108         void (*dpms)(struct drm_crtc *crtc, int mode);
109         bool (*fbc_enabled)(struct drm_device *dev);
110         void (*enable_fbc)(struct drm_crtc *crtc, unsigned long interval);
111         void (*disable_fbc)(struct drm_device *dev);
112         int (*get_display_clock_speed)(struct drm_device *dev);
113         int (*get_fifo_size)(struct drm_device *dev, int plane);
114         void (*update_wm)(struct drm_device *dev);
115         void (*update_sprite_wm)(struct drm_device *dev, int pipe,
116                                  uint32_t sprite_width, int pixel_size);
117         int (*crtc_mode_set)(struct drm_crtc *crtc,
118                              struct drm_display_mode *mode,
119                              struct drm_display_mode *adjusted_mode,
120                              int x, int y,
121                              struct drm_framebuffer *old_fb);
122         void (*write_eld)(struct drm_connector *connector,
123                           struct drm_crtc *crtc);
124         void (*fdi_link_train)(struct drm_crtc *crtc);
125         void (*init_clock_gating)(struct drm_device *dev);
126         void (*init_pch_clock_gating)(struct drm_device *dev);
127         int (*queue_flip)(struct drm_device *dev, struct drm_crtc *crtc,
128                           struct drm_framebuffer *fb,
129                           struct drm_i915_gem_object *obj);
130         void (*force_wake_get)(struct drm_i915_private *dev_priv);
131         void (*force_wake_put)(struct drm_i915_private *dev_priv);
132         int (*update_plane)(struct drm_crtc *crtc, struct drm_framebuffer *fb,
133                             int x, int y);
134         /* clock updates for mode set */
135         /* cursor updates */
136         /* render clock increase/decrease */
137         /* display clock increase/decrease */
138         /* pll clock increase/decrease */
139 };
140
141 struct intel_device_info {
142         u8 gen;
143         u8 is_mobile:1;
144         u8 is_i85x:1;
145         u8 is_i915g:1;
146         u8 is_i945gm:1;
147         u8 is_g33:1;
148         u8 need_gfx_hws:1;
149         u8 is_g4x:1;
150         u8 is_pineview:1;
151         u8 is_broadwater:1;
152         u8 is_crestline:1;
153         u8 is_ivybridge:1;
154         u8 has_fbc:1;
155         u8 has_pipe_cxsr:1;
156         u8 has_hotplug:1;
157         u8 cursor_needs_physical:1;
158         u8 has_overlay:1;
159         u8 overlay_needs_physical:1;
160         u8 supports_tv:1;
161         u8 has_bsd_ring:1;
162         u8 has_blt_ring:1;
163         u8 has_llc:1;
164 };
165
166 #define I915_PPGTT_PD_ENTRIES 512
167 #define I915_PPGTT_PT_ENTRIES 1024
168 struct i915_hw_ppgtt {
169         unsigned num_pd_entries;
170         vm_page_t *pt_pages;
171         uint32_t pd_offset;
172         vm_paddr_t *pt_dma_addr;
173         vm_paddr_t scratch_page_dma_addr;
174 };
175
176 enum no_fbc_reason {
177         FBC_NO_OUTPUT, /* no outputs enabled to compress */
178         FBC_STOLEN_TOO_SMALL, /* not enough space to hold compressed buffers */
179         FBC_UNSUPPORTED_MODE, /* interlace or doublescanned mode */
180         FBC_MODE_TOO_LARGE, /* mode too large for compression */
181         FBC_BAD_PLANE, /* fbc not supported on plane */
182         FBC_NOT_TILED, /* buffer not tiled */
183         FBC_MULTIPLE_PIPES, /* more than one pipe active */
184         FBC_MODULE_PARAM,
185 };
186
187 struct mem_block {
188         struct mem_block *next;
189         struct mem_block *prev;
190         int start;
191         int size;
192         struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
193 };
194
195 struct opregion_header;
196 struct opregion_acpi;
197 struct opregion_swsci;
198 struct opregion_asle;
199
200 struct intel_opregion {
201         struct opregion_header *header;
202         struct opregion_acpi *acpi;
203         struct opregion_swsci *swsci;
204         struct opregion_asle *asle;
205         void *vbt;
206         u32 *lid_state;
207 };
208 #define OPREGION_SIZE            (8*1024)
209
210 #define I915_FENCE_REG_NONE -1
211 #define I915_MAX_NUM_FENCES 16
212 /* 16 fences + sign bit for FENCE_REG_NONE */
213 #define I915_MAX_NUM_FENCE_BITS 5
214
215 struct drm_i915_fence_reg {
216         struct list_head lru_list;
217         struct drm_i915_gem_object *obj;
218         uint32_t setup_seqno;
219         int pin_count;
220 };
221
222 struct sdvo_device_mapping {
223         u8 initialized;
224         u8 dvo_port;
225         u8 slave_addr;
226         u8 dvo_wiring;
227         u8 i2c_pin;
228         u8 ddc_pin;
229 };
230
231 enum intel_pch {
232         PCH_IBX,        /* Ibexpeak PCH */
233         PCH_CPT,        /* Cougarpoint PCH */
234 };
235
236 #define QUIRK_PIPEA_FORCE (1<<0)
237 #define QUIRK_LVDS_SSC_DISABLE (1<<1)
238
239 struct intel_fbdev;
240 struct intel_fbc_work;
241
242 typedef struct drm_i915_private {
243         struct drm_device *dev;
244
245         device_t *gmbus_bridge;
246         device_t *bbbus_bridge;
247         device_t *gmbus;
248         device_t *bbbus;
249         /** gmbus_sx protects against concurrent usage of the single hw gmbus
250          * controller on different i2c buses. */
251         struct lock gmbus_lock;
252
253         int has_gem;
254         int relative_constants_mode;
255
256         drm_local_map_t *sarea;
257         drm_local_map_t *mmio_map;
258
259         /** gt_fifo_count and the subsequent register write are synchronized
260          * with dev->struct_mutex. */
261         unsigned gt_fifo_count;
262         /** forcewake_count is protected by gt_lock */
263         unsigned forcewake_count;
264         /** gt_lock is also taken in irq contexts. */
265         struct lock gt_lock;
266
267         drm_i915_sarea_t *sarea_priv;
268         /* drm_i915_ring_buffer_t ring; */
269         struct intel_ring_buffer rings[I915_NUM_RINGS];
270         uint32_t next_seqno;
271
272         drm_dma_handle_t *status_page_dmah;
273         void *hw_status_page;
274         dma_addr_t dma_status_page;
275         uint32_t counter;
276         unsigned int status_gfx_addr;
277         drm_local_map_t hws_map;
278         struct drm_gem_object *hws_obj;
279
280         struct drm_i915_gem_object *pwrctx;
281         struct drm_i915_gem_object *renderctx;
282
283         unsigned int cpp;
284         int back_offset;
285         int front_offset;
286         int current_page;
287         int page_flipping;
288
289         atomic_t irq_received;
290         u32 trace_irq_seqno;
291
292         /** Cached value of IER to avoid reads in updating the bitfield */
293         u32 pipestat[2];
294         u32 irq_mask;
295         u32 gt_irq_mask;
296         u32 pch_irq_mask;
297         struct lock irq_lock;
298
299         u32 hotplug_supported_mask;
300
301         int tex_lru_log_granularity;
302         int allow_batchbuffer;
303         unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
304         int vblank_pipe;
305         int num_pipe;
306
307         /* For hangcheck timer */
308 #define DRM_I915_HANGCHECK_PERIOD ((1500 /* in ms */ * hz) / 1000)
309         int hangcheck_count;
310         uint32_t last_acthd;
311         uint32_t last_acthd_bsd;
312         uint32_t last_acthd_blt;
313         uint32_t last_instdone;
314         uint32_t last_instdone1;
315
316         struct intel_opregion opregion;
317
318
319         /* overlay */
320         struct intel_overlay *overlay;
321         bool sprite_scaling_enabled;
322
323         /* LVDS info */
324         int backlight_level;  /* restore backlight to this value */
325         bool backlight_enabled;
326         struct drm_display_mode *lfp_lvds_vbt_mode; /* if any */
327         struct drm_display_mode *sdvo_lvds_vbt_mode; /* if any */
328
329         /* Feature bits from the VBIOS */
330         unsigned int int_tv_support:1;
331         unsigned int lvds_dither:1;
332         unsigned int lvds_vbt:1;
333         unsigned int int_crt_support:1;
334         unsigned int lvds_use_ssc:1;
335         unsigned int display_clock_mode:1;
336         int lvds_ssc_freq;
337         struct {
338                 int rate;
339                 int lanes;
340                 int preemphasis;
341                 int vswing;
342
343                 bool initialized;
344                 bool support;
345                 int bpp;
346                 struct edp_power_seq pps;
347         } edp;
348         bool no_aux_handshake;
349
350         int crt_ddc_pin;
351         struct drm_i915_fence_reg fence_regs[I915_MAX_NUM_FENCES]; /* assume 965 */
352         int fence_reg_start; /* 4 if userland hasn't ioctl'd us yet */
353         int num_fence_regs; /* 8 on pre-965, 16 otherwise */
354
355         /* PCH chipset type */
356         enum intel_pch pch_type;
357
358         /* Display functions */
359         struct drm_i915_display_funcs display;
360
361         unsigned long quirks;
362
363         /* Register state */
364         bool modeset_on_lid;
365         u8 saveLBB;
366         u32 saveDSPACNTR;
367         u32 saveDSPBCNTR;
368         u32 saveDSPARB;
369         u32 saveHWS;
370         u32 savePIPEACONF;
371         u32 savePIPEBCONF;
372         u32 savePIPEASRC;
373         u32 savePIPEBSRC;
374         u32 saveFPA0;
375         u32 saveFPA1;
376         u32 saveDPLL_A;
377         u32 saveDPLL_A_MD;
378         u32 saveHTOTAL_A;
379         u32 saveHBLANK_A;
380         u32 saveHSYNC_A;
381         u32 saveVTOTAL_A;
382         u32 saveVBLANK_A;
383         u32 saveVSYNC_A;
384         u32 saveBCLRPAT_A;
385         u32 saveTRANSACONF;
386         u32 saveTRANS_HTOTAL_A;
387         u32 saveTRANS_HBLANK_A;
388         u32 saveTRANS_HSYNC_A;
389         u32 saveTRANS_VTOTAL_A;
390         u32 saveTRANS_VBLANK_A;
391         u32 saveTRANS_VSYNC_A;
392         u32 savePIPEASTAT;
393         u32 saveDSPASTRIDE;
394         u32 saveDSPASIZE;
395         u32 saveDSPAPOS;
396         u32 saveDSPAADDR;
397         u32 saveDSPASURF;
398         u32 saveDSPATILEOFF;
399         u32 savePFIT_PGM_RATIOS;
400         u32 saveBLC_HIST_CTL;
401         u32 saveBLC_PWM_CTL;
402         u32 saveBLC_PWM_CTL2;
403         u32 saveBLC_CPU_PWM_CTL;
404         u32 saveBLC_CPU_PWM_CTL2;
405         u32 saveFPB0;
406         u32 saveFPB1;
407         u32 saveDPLL_B;
408         u32 saveDPLL_B_MD;
409         u32 saveHTOTAL_B;
410         u32 saveHBLANK_B;
411         u32 saveHSYNC_B;
412         u32 saveVTOTAL_B;
413         u32 saveVBLANK_B;
414         u32 saveVSYNC_B;
415         u32 saveBCLRPAT_B;
416         u32 saveTRANSBCONF;
417         u32 saveTRANS_HTOTAL_B;
418         u32 saveTRANS_HBLANK_B;
419         u32 saveTRANS_HSYNC_B;
420         u32 saveTRANS_VTOTAL_B;
421         u32 saveTRANS_VBLANK_B;
422         u32 saveTRANS_VSYNC_B;
423         u32 savePIPEBSTAT;
424         u32 saveDSPBSTRIDE;
425         u32 saveDSPBSIZE;
426         u32 saveDSPBPOS;
427         u32 saveDSPBADDR;
428         u32 saveDSPBSURF;
429         u32 saveDSPBTILEOFF;
430         u32 saveVGA0;
431         u32 saveVGA1;
432         u32 saveVGA_PD;
433         u32 saveVGACNTRL;
434         u32 saveADPA;
435         u32 saveLVDS;
436         u32 savePP_ON_DELAYS;
437         u32 savePP_OFF_DELAYS;
438         u32 saveDVOA;
439         u32 saveDVOB;
440         u32 saveDVOC;
441         u32 savePP_ON;
442         u32 savePP_OFF;
443         u32 savePP_CONTROL;
444         u32 savePP_DIVISOR;
445         u32 savePFIT_CONTROL;
446         u32 save_palette_a[256];
447         u32 save_palette_b[256];
448         u32 saveDPFC_CB_BASE;
449         u32 saveFBC_CFB_BASE;
450         u32 saveFBC_LL_BASE;
451         u32 saveFBC_CONTROL;
452         u32 saveFBC_CONTROL2;
453         u32 saveIER;
454         u32 saveIIR;
455         u32 saveIMR;
456         u32 saveDEIER;
457         u32 saveDEIMR;
458         u32 saveGTIER;
459         u32 saveGTIMR;
460         u32 saveFDI_RXA_IMR;
461         u32 saveFDI_RXB_IMR;
462         u32 saveCACHE_MODE_0;
463         u32 saveMI_ARB_STATE;
464         u32 saveSWF0[16];
465         u32 saveSWF1[16];
466         u32 saveSWF2[3];
467         u8 saveMSR;
468         u8 saveSR[8];
469         u8 saveGR[25];
470         u8 saveAR_INDEX;
471         u8 saveAR[21];
472         u8 saveDACMASK;
473         u8 saveCR[37];
474         uint64_t saveFENCE[I915_MAX_NUM_FENCES];
475         u32 saveCURACNTR;
476         u32 saveCURAPOS;
477         u32 saveCURABASE;
478         u32 saveCURBCNTR;
479         u32 saveCURBPOS;
480         u32 saveCURBBASE;
481         u32 saveCURSIZE;
482         u32 saveDP_B;
483         u32 saveDP_C;
484         u32 saveDP_D;
485         u32 savePIPEA_GMCH_DATA_M;
486         u32 savePIPEB_GMCH_DATA_M;
487         u32 savePIPEA_GMCH_DATA_N;
488         u32 savePIPEB_GMCH_DATA_N;
489         u32 savePIPEA_DP_LINK_M;
490         u32 savePIPEB_DP_LINK_M;
491         u32 savePIPEA_DP_LINK_N;
492         u32 savePIPEB_DP_LINK_N;
493         u32 saveFDI_RXA_CTL;
494         u32 saveFDI_TXA_CTL;
495         u32 saveFDI_RXB_CTL;
496         u32 saveFDI_TXB_CTL;
497         u32 savePFA_CTL_1;
498         u32 savePFB_CTL_1;
499         u32 savePFA_WIN_SZ;
500         u32 savePFB_WIN_SZ;
501         u32 savePFA_WIN_POS;
502         u32 savePFB_WIN_POS;
503         u32 savePCH_DREF_CONTROL;
504         u32 saveDISP_ARB_CTL;
505         u32 savePIPEA_DATA_M1;
506         u32 savePIPEA_DATA_N1;
507         u32 savePIPEA_LINK_M1;
508         u32 savePIPEA_LINK_N1;
509         u32 savePIPEB_DATA_M1;
510         u32 savePIPEB_DATA_N1;
511         u32 savePIPEB_LINK_M1;
512         u32 savePIPEB_LINK_N1;
513         u32 saveMCHBAR_RENDER_STANDBY;
514         u32 savePCH_PORT_HOTPLUG;
515
516         struct {
517                 /** Bridge to intel-gtt-ko */
518                 const struct intel_gtt *gtt;
519                 /** Memory allocator for GTT stolen memory */
520                 struct drm_mm stolen;
521                 /** Memory allocator for GTT */
522                 struct drm_mm gtt_space;
523                 /** List of all objects in gtt_space. Used to restore gtt
524                  * mappings on resume */
525                 struct list_head gtt_list;
526
527                 /** Usable portion of the GTT for GEM */
528                 unsigned long gtt_start;
529                 unsigned long gtt_mappable_end;
530                 unsigned long gtt_end;
531
532                 /** PPGTT used for aliasing the PPGTT with the GTT */
533                 struct i915_hw_ppgtt *aliasing_ppgtt;
534
535                 /**
536                  * List of objects currently involved in rendering from the
537                  * ringbuffer.
538                  *
539                  * Includes buffers having the contents of their GPU caches
540                  * flushed, not necessarily primitives.  last_rendering_seqno
541                  * represents when the rendering involved will be completed.
542                  *
543                  * A reference is held on the buffer while on this list.
544                  */
545                 struct list_head active_list;
546
547                 /**
548                  * List of objects which are not in the ringbuffer but which
549                  * still have a write_domain which needs to be flushed before
550                  * unbinding.
551                  *
552                  * A reference is held on the buffer while on this list.
553                  */
554                 struct list_head flushing_list;
555
556                 /**
557                  * LRU list of objects which are not in the ringbuffer and
558                  * are ready to unbind, but are still in the GTT.
559                  *
560                  * last_rendering_seqno is 0 while an object is in this list.
561                  *
562                  * A reference is not held on the buffer while on this list,
563                  * as merely being GTT-bound shouldn't prevent its being
564                  * freed, and we'll pull it off the list in the free path.
565                  */
566                 struct list_head inactive_list;
567
568                 /**
569                  * LRU list of objects which are not in the ringbuffer but
570                  * are still pinned in the GTT.
571                  */
572                 struct list_head pinned_list;
573
574                 /** LRU list of objects with fence regs on them. */
575                 struct list_head fence_list;
576
577                 /**
578                  * List of objects currently pending being freed.
579                  *
580                  * These objects are no longer in use, but due to a signal
581                  * we were prevented from freeing them at the appointed time.
582                  */
583                 struct list_head deferred_free_list;
584
585                 /**
586                  * We leave the user IRQ off as much as possible,
587                  * but this means that requests will finish and never
588                  * be retired once the system goes idle. Set a timer to
589                  * fire periodically while the ring is running. When it
590                  * fires, go retire requests.
591                  */
592                 struct timeout_task retire_task;
593
594                 /**
595                  * Are we in a non-interruptible section of code like
596                  * modesetting?
597                  */
598                 bool interruptible;
599
600                 uint32_t next_gem_seqno;
601
602                 /**
603                  * Waiting sequence number, if any
604                  */
605                 uint32_t waiting_gem_seqno;
606
607                 /**
608                  * Last seq seen at irq time
609                  */
610                 uint32_t irq_gem_seqno;
611
612                 /**
613                  * Flag if the X Server, and thus DRM, is not currently in
614                  * control of the device.
615                  *
616                  * This is set between LeaveVT and EnterVT.  It needs to be
617                  * replaced with a semaphore.  It also needs to be
618                  * transitioned away from for kernel modesetting.
619                  */
620                 int suspended;
621
622                 /**
623                  * Flag if the hardware appears to be wedged.
624                  *
625                  * This is set when attempts to idle the device timeout.
626                  * It prevents command submission from occuring and makes
627                  * every pending request fail
628                  */
629                 int wedged;
630
631                 /** Bit 6 swizzling required for X tiling */
632                 uint32_t bit_6_swizzle_x;
633                 /** Bit 6 swizzling required for Y tiling */
634                 uint32_t bit_6_swizzle_y;
635
636                 /* storage for physical objects */
637                 struct drm_i915_gem_phys_object *phys_objs[I915_MAX_PHYS_OBJECT];
638
639                 /* accounting, useful for userland debugging */
640                 size_t gtt_total;
641                 size_t mappable_gtt_total;
642                 size_t object_memory;
643                 u32 object_count;
644
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