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