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