blob: b3cc4731aa7c07b43d2d9825068f3e8a70ce34bd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Dave Airliebc54fd12005-06-23 22:46:46 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10007 *
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 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#ifndef _I915_DRV_H_
31#define _I915_DRV_H_
32
Jesse Barnes585fb112008-07-29 11:54:06 -070033#include "i915_reg.h"
Keith Packard0839ccb2008-10-30 19:38:48 -070034#include <linux/io-mapping.h>
Jesse Barnes585fb112008-07-29 11:54:06 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* General customization:
37 */
38
39#define DRIVER_AUTHOR "Tungsten Graphics, Inc."
40
41#define DRIVER_NAME "i915"
42#define DRIVER_DESC "Intel Graphics"
Eric Anholt673a3942008-07-30 12:06:12 -070043#define DRIVER_DATE "20080730"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Jesse Barnes317c35d2008-08-25 15:11:06 -070045enum pipe {
46 PIPE_A = 0,
47 PIPE_B,
48};
49
Keith Packard52440212008-11-18 09:30:25 -080050#define I915_NUM_PIPE 2
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/* Interface history:
53 *
54 * 1.1: Original.
Dave Airlie0d6aa602006-01-02 20:14:23 +110055 * 1.2: Add Power Management
56 * 1.3: Add vblank support
Dave Airliede227f52006-01-25 15:31:43 +110057 * 1.4: Fix cmdbuffer path, add heap destroy
Dave Airlie702880f2006-06-24 17:07:34 +100058 * 1.5: Add vblank pipe configuration
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +100059 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
60 * - Support vertical blank on secondary display pipe
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 */
62#define DRIVER_MAJOR 1
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +100063#define DRIVER_MINOR 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define DRIVER_PATCHLEVEL 0
65
Eric Anholt673a3942008-07-30 12:06:12 -070066#define WATCH_COHERENCY 0
67#define WATCH_BUF 0
68#define WATCH_EXEC 0
69#define WATCH_LRU 0
70#define WATCH_RELOC 0
71#define WATCH_INACTIVE 0
72#define WATCH_PWRITE 0
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074typedef struct _drm_i915_ring_buffer {
75 int tail_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned long Size;
77 u8 *virtual_start;
78 int head;
79 int tail;
80 int space;
81 drm_local_map_t map;
Eric Anholt673a3942008-07-30 12:06:12 -070082 struct drm_gem_object *ring_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083} drm_i915_ring_buffer_t;
84
85struct mem_block {
86 struct mem_block *next;
87 struct mem_block *prev;
88 int start;
89 int size;
Eric Anholt6c340ea2007-08-25 20:23:09 +100090 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070093struct opregion_header;
94struct opregion_acpi;
95struct opregion_swsci;
96struct opregion_asle;
97
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +010098struct intel_opregion {
99 struct opregion_header *header;
100 struct opregion_acpi *acpi;
101 struct opregion_swsci *swsci;
102 struct opregion_asle *asle;
103 int enabled;
104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106typedef struct drm_i915_private {
Eric Anholt673a3942008-07-30 12:06:12 -0700107 struct drm_device *dev;
108
Dave Airlieac5c4e72008-12-19 15:38:34 +1000109 int has_gem;
110
Eric Anholt3043c602008-10-02 12:24:47 -0700111 void __iomem *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 drm_local_map_t *sarea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 drm_i915_sarea_t *sarea_priv;
115 drm_i915_ring_buffer_t ring;
116
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000117 drm_dma_handle_t *status_page_dmah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 void *hw_status_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 dma_addr_t dma_status_page;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700120 uint32_t counter;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000121 unsigned int status_gfx_addr;
122 drm_local_map_t hws_map;
Eric Anholt673a3942008-07-30 12:06:12 -0700123 struct drm_gem_object *hws_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000125 unsigned int cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 int back_offset;
127 int front_offset;
128 int current_page;
129 int page_flipping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 wait_queue_head_t irq_queue;
132 atomic_t irq_received;
Eric Anholted4cb412008-07-29 12:10:39 -0700133 /** Protects user_irq_refcount and irq_mask_reg */
134 spinlock_t user_irq_lock;
135 /** Refcount for i915_user_irq_get() versus i915_user_irq_put(). */
136 int user_irq_refcount;
137 /** Cached value of IMR to avoid reads in updating the bitfield */
138 u32 irq_mask_reg;
Keith Packard7c463582008-11-04 02:03:27 -0800139 u32 pipestat[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 int tex_lru_log_granularity;
142 int allow_batchbuffer;
143 struct mem_block *agp_heap;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100144 unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
Dave Airlie702880f2006-06-24 17:07:34 +1000145 int vblank_pipe;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000146
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100147 struct intel_opregion opregion;
148
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000149 /* Register state */
150 u8 saveLBB;
151 u32 saveDSPACNTR;
152 u32 saveDSPBCNTR;
Keith Packarde948e992008-05-07 12:27:53 +1000153 u32 saveDSPARB;
Keith Packard881ee982008-11-02 23:08:44 -0800154 u32 saveRENDERSTANDBY;
Peng Li461cba22008-11-18 12:39:02 +0800155 u32 saveHWS;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000156 u32 savePIPEACONF;
157 u32 savePIPEBCONF;
158 u32 savePIPEASRC;
159 u32 savePIPEBSRC;
160 u32 saveFPA0;
161 u32 saveFPA1;
162 u32 saveDPLL_A;
163 u32 saveDPLL_A_MD;
164 u32 saveHTOTAL_A;
165 u32 saveHBLANK_A;
166 u32 saveHSYNC_A;
167 u32 saveVTOTAL_A;
168 u32 saveVBLANK_A;
169 u32 saveVSYNC_A;
170 u32 saveBCLRPAT_A;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000171 u32 savePIPEASTAT;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000172 u32 saveDSPASTRIDE;
173 u32 saveDSPASIZE;
174 u32 saveDSPAPOS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700175 u32 saveDSPAADDR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000176 u32 saveDSPASURF;
177 u32 saveDSPATILEOFF;
178 u32 savePFIT_PGM_RATIOS;
179 u32 saveBLC_PWM_CTL;
180 u32 saveBLC_PWM_CTL2;
181 u32 saveFPB0;
182 u32 saveFPB1;
183 u32 saveDPLL_B;
184 u32 saveDPLL_B_MD;
185 u32 saveHTOTAL_B;
186 u32 saveHBLANK_B;
187 u32 saveHSYNC_B;
188 u32 saveVTOTAL_B;
189 u32 saveVBLANK_B;
190 u32 saveVSYNC_B;
191 u32 saveBCLRPAT_B;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000192 u32 savePIPEBSTAT;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000193 u32 saveDSPBSTRIDE;
194 u32 saveDSPBSIZE;
195 u32 saveDSPBPOS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700196 u32 saveDSPBADDR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000197 u32 saveDSPBSURF;
198 u32 saveDSPBTILEOFF;
Jesse Barnes585fb112008-07-29 11:54:06 -0700199 u32 saveVGA0;
200 u32 saveVGA1;
201 u32 saveVGA_PD;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000202 u32 saveVGACNTRL;
203 u32 saveADPA;
204 u32 saveLVDS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700205 u32 savePP_ON_DELAYS;
206 u32 savePP_OFF_DELAYS;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000207 u32 saveDVOA;
208 u32 saveDVOB;
209 u32 saveDVOC;
210 u32 savePP_ON;
211 u32 savePP_OFF;
212 u32 savePP_CONTROL;
Jesse Barnes585fb112008-07-29 11:54:06 -0700213 u32 savePP_DIVISOR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000214 u32 savePFIT_CONTROL;
215 u32 save_palette_a[256];
216 u32 save_palette_b[256];
217 u32 saveFBC_CFB_BASE;
218 u32 saveFBC_LL_BASE;
219 u32 saveFBC_CONTROL;
220 u32 saveFBC_CONTROL2;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000221 u32 saveIER;
222 u32 saveIIR;
223 u32 saveIMR;
Keith Packard1f84e552008-02-16 19:19:29 -0800224 u32 saveCACHE_MODE_0;
Keith Packarde948e992008-05-07 12:27:53 +1000225 u32 saveD_STATE;
Jesse Barnes585fb112008-07-29 11:54:06 -0700226 u32 saveCG_2D_DIS;
Keith Packard1f84e552008-02-16 19:19:29 -0800227 u32 saveMI_ARB_STATE;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000228 u32 saveSWF0[16];
229 u32 saveSWF1[16];
230 u32 saveSWF2[3];
231 u8 saveMSR;
232 u8 saveSR[8];
Jesse Barnes123f7942008-02-07 11:15:20 -0800233 u8 saveGR[25];
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000234 u8 saveAR_INDEX;
Jesse Barnesa59e1222008-05-07 12:25:46 +1000235 u8 saveAR[21];
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000236 u8 saveDACMASK;
237 u8 saveDACDATA[256*3]; /* 256 3-byte colors */
Jesse Barnesa59e1222008-05-07 12:25:46 +1000238 u8 saveCR[37];
Eric Anholt673a3942008-07-30 12:06:12 -0700239
240 struct {
241 struct drm_mm gtt_space;
242
Keith Packard0839ccb2008-10-30 19:38:48 -0700243 struct io_mapping *gtt_mapping;
244
Eric Anholt673a3942008-07-30 12:06:12 -0700245 /**
246 * List of objects currently involved in rendering from the
247 * ringbuffer.
248 *
Eric Anholtce44b0e2008-11-06 16:00:31 -0800249 * Includes buffers having the contents of their GPU caches
250 * flushed, not necessarily primitives. last_rendering_seqno
251 * represents when the rendering involved will be completed.
252 *
Eric Anholt673a3942008-07-30 12:06:12 -0700253 * A reference is held on the buffer while on this list.
254 */
255 struct list_head active_list;
256
257 /**
258 * List of objects which are not in the ringbuffer but which
259 * still have a write_domain which needs to be flushed before
260 * unbinding.
261 *
Eric Anholtce44b0e2008-11-06 16:00:31 -0800262 * last_rendering_seqno is 0 while an object is in this list.
263 *
Eric Anholt673a3942008-07-30 12:06:12 -0700264 * A reference is held on the buffer while on this list.
265 */
266 struct list_head flushing_list;
267
268 /**
269 * LRU list of objects which are not in the ringbuffer and
270 * are ready to unbind, but are still in the GTT.
271 *
Eric Anholtce44b0e2008-11-06 16:00:31 -0800272 * last_rendering_seqno is 0 while an object is in this list.
273 *
Eric Anholt673a3942008-07-30 12:06:12 -0700274 * A reference is not held on the buffer while on this list,
275 * as merely being GTT-bound shouldn't prevent its being
276 * freed, and we'll pull it off the list in the free path.
277 */
278 struct list_head inactive_list;
279
280 /**
281 * List of breadcrumbs associated with GPU requests currently
282 * outstanding.
283 */
284 struct list_head request_list;
285
286 /**
287 * We leave the user IRQ off as much as possible,
288 * but this means that requests will finish and never
289 * be retired once the system goes idle. Set a timer to
290 * fire periodically while the ring is running. When it
291 * fires, go retire requests.
292 */
293 struct delayed_work retire_work;
294
295 uint32_t next_gem_seqno;
296
297 /**
298 * Waiting sequence number, if any
299 */
300 uint32_t waiting_gem_seqno;
301
302 /**
303 * Last seq seen at irq time
304 */
305 uint32_t irq_gem_seqno;
306
307 /**
308 * Flag if the X Server, and thus DRM, is not currently in
309 * control of the device.
310 *
311 * This is set between LeaveVT and EnterVT. It needs to be
312 * replaced with a semaphore. It also needs to be
313 * transitioned away from for kernel modesetting.
314 */
315 int suspended;
316
317 /**
318 * Flag if the hardware appears to be wedged.
319 *
320 * This is set when attempts to idle the device timeout.
321 * It prevents command submission from occuring and makes
322 * every pending request fail
323 */
324 int wedged;
325
326 /** Bit 6 swizzling required for X tiling */
327 uint32_t bit_6_swizzle_x;
328 /** Bit 6 swizzling required for Y tiling */
329 uint32_t bit_6_swizzle_y;
330 } mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331} drm_i915_private_t;
332
Eric Anholt673a3942008-07-30 12:06:12 -0700333/** driver private structure attached to each drm_gem_object */
334struct drm_i915_gem_object {
335 struct drm_gem_object *obj;
336
337 /** Current space allocated to this object in the GTT, if any. */
338 struct drm_mm_node *gtt_space;
339
340 /** This object's place on the active/flushing/inactive lists */
341 struct list_head list;
342
343 /**
344 * This is set if the object is on the active or flushing lists
345 * (has pending rendering), and is not set if it's on inactive (ready
346 * to be unbound).
347 */
348 int active;
349
350 /**
351 * This is set if the object has been written to since last bound
352 * to the GTT
353 */
354 int dirty;
355
356 /** AGP memory structure for our GTT binding. */
357 DRM_AGP_MEM *agp_mem;
358
359 struct page **page_list;
360
361 /**
362 * Current offset of the object in GTT space.
363 *
364 * This is the same as gtt_space->start
365 */
366 uint32_t gtt_offset;
367
368 /** Boolean whether this object has a valid gtt offset. */
369 int gtt_bound;
370
371 /** How many users have pinned this object in GTT space */
372 int pin_count;
373
374 /** Breadcrumb of last rendering to the buffer. */
375 uint32_t last_rendering_seqno;
376
377 /** Current tiling mode for the object. */
378 uint32_t tiling_mode;
379
Keith Packardba1eb1d2008-10-14 19:55:10 -0700380 /** AGP mapping type (AGP_USER_MEMORY or AGP_USER_CACHED_MEMORY */
381 uint32_t agp_type;
382
Eric Anholt673a3942008-07-30 12:06:12 -0700383 /**
Eric Anholte47c68e2008-11-14 13:35:19 -0800384 * If present, while GEM_DOMAIN_CPU is in the read domain this array
385 * flags which individual pages are valid.
Eric Anholt673a3942008-07-30 12:06:12 -0700386 */
387 uint8_t *page_cpu_valid;
388};
389
390/**
391 * Request queue structure.
392 *
393 * The request queue allows us to note sequence numbers that have been emitted
394 * and may be associated with active buffers to be retired.
395 *
396 * By keeping this list, we can avoid having to do questionable
397 * sequence-number comparisons on buffer last_rendering_seqnos, and associate
398 * an emission time with seqnos for tracking how far ahead of the GPU we are.
399 */
400struct drm_i915_gem_request {
401 /** GEM sequence number associated with this request. */
402 uint32_t seqno;
403
404 /** Time at which this request was emitted, in jiffies. */
405 unsigned long emitted_jiffies;
406
Eric Anholt673a3942008-07-30 12:06:12 -0700407 struct list_head list;
408};
409
410struct drm_i915_file_private {
411 struct {
412 uint32_t last_gem_seqno;
413 uint32_t last_gem_throttle_seqno;
414 } mm;
415};
416
Eric Anholtc153f452007-09-03 12:06:45 +1000417extern struct drm_ioctl_desc i915_ioctls[];
Dave Airlieb3a83632005-09-30 18:37:36 +1000418extern int i915_max_ioctl;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* i915_dma.c */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000421extern void i915_kernel_lost_context(struct drm_device * dev);
Dave Airlie22eae942005-11-10 22:16:34 +1100422extern int i915_driver_load(struct drm_device *, unsigned long flags);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000423extern int i915_driver_unload(struct drm_device *);
Eric Anholt673a3942008-07-30 12:06:12 -0700424extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000425extern void i915_driver_lastclose(struct drm_device * dev);
Eric Anholt6c340ea2007-08-25 20:23:09 +1000426extern void i915_driver_preclose(struct drm_device *dev,
427 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700428extern void i915_driver_postclose(struct drm_device *dev,
429 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000430extern int i915_driver_device_is_agp(struct drm_device * dev);
Dave Airlie0d6aa602006-01-02 20:14:23 +1100431extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
432 unsigned long arg);
Eric Anholt673a3942008-07-30 12:06:12 -0700433extern int i915_emit_box(struct drm_device *dev,
434 struct drm_clip_rect __user *boxes,
435 int i, int DR1, int DR4);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/* i915_irq.c */
Eric Anholtc153f452007-09-03 12:06:45 +1000438extern int i915_irq_emit(struct drm_device *dev, void *data,
439 struct drm_file *file_priv);
440extern int i915_irq_wait(struct drm_device *dev, void *data,
441 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700442void i915_user_irq_get(struct drm_device *dev);
443void i915_user_irq_put(struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000446extern void i915_driver_irq_preinstall(struct drm_device * dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700447extern int i915_driver_irq_postinstall(struct drm_device *dev);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000448extern void i915_driver_irq_uninstall(struct drm_device * dev);
Eric Anholtc153f452007-09-03 12:06:45 +1000449extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
450 struct drm_file *file_priv);
451extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
452 struct drm_file *file_priv);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700453extern int i915_enable_vblank(struct drm_device *dev, int crtc);
454extern void i915_disable_vblank(struct drm_device *dev, int crtc);
455extern u32 i915_get_vblank_counter(struct drm_device *dev, int crtc);
Eric Anholtc153f452007-09-03 12:06:45 +1000456extern int i915_vblank_swap(struct drm_device *dev, void *data,
457 struct drm_file *file_priv);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100458extern void i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Keith Packard7c463582008-11-04 02:03:27 -0800460void
461i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
462
463void
464i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
465
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/* i915_mem.c */
Eric Anholtc153f452007-09-03 12:06:45 +1000468extern int i915_mem_alloc(struct drm_device *dev, void *data,
469 struct drm_file *file_priv);
470extern int i915_mem_free(struct drm_device *dev, void *data,
471 struct drm_file *file_priv);
472extern int i915_mem_init_heap(struct drm_device *dev, void *data,
473 struct drm_file *file_priv);
474extern int i915_mem_destroy_heap(struct drm_device *dev, void *data,
475 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476extern void i915_mem_takedown(struct mem_block **heap);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000477extern void i915_mem_release(struct drm_device * dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000478 struct drm_file *file_priv, struct mem_block *heap);
Eric Anholt673a3942008-07-30 12:06:12 -0700479/* i915_gem.c */
480int i915_gem_init_ioctl(struct drm_device *dev, void *data,
481 struct drm_file *file_priv);
482int i915_gem_create_ioctl(struct drm_device *dev, void *data,
483 struct drm_file *file_priv);
484int i915_gem_pread_ioctl(struct drm_device *dev, void *data,
485 struct drm_file *file_priv);
486int i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
487 struct drm_file *file_priv);
488int i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
489 struct drm_file *file_priv);
490int i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
491 struct drm_file *file_priv);
492int i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
493 struct drm_file *file_priv);
494int i915_gem_execbuffer(struct drm_device *dev, void *data,
495 struct drm_file *file_priv);
496int i915_gem_pin_ioctl(struct drm_device *dev, void *data,
497 struct drm_file *file_priv);
498int i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
499 struct drm_file *file_priv);
500int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
501 struct drm_file *file_priv);
502int i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
503 struct drm_file *file_priv);
504int i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
505 struct drm_file *file_priv);
506int i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
507 struct drm_file *file_priv);
508int i915_gem_set_tiling(struct drm_device *dev, void *data,
509 struct drm_file *file_priv);
510int i915_gem_get_tiling(struct drm_device *dev, void *data,
511 struct drm_file *file_priv);
Eric Anholt5a125c32008-10-22 21:40:13 -0700512int i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
513 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700514void i915_gem_load(struct drm_device *dev);
515int i915_gem_proc_init(struct drm_minor *minor);
516void i915_gem_proc_cleanup(struct drm_minor *minor);
517int i915_gem_init_object(struct drm_gem_object *obj);
518void i915_gem_free_object(struct drm_gem_object *obj);
519int i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment);
520void i915_gem_object_unpin(struct drm_gem_object *obj);
521void i915_gem_lastclose(struct drm_device *dev);
522uint32_t i915_get_gem_seqno(struct drm_device *dev);
523void i915_gem_retire_requests(struct drm_device *dev);
524void i915_gem_retire_work_handler(struct work_struct *work);
525void i915_gem_clflush_object(struct drm_gem_object *obj);
526
527/* i915_gem_tiling.c */
528void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
529
530/* i915_gem_debug.c */
531void i915_gem_dump_object(struct drm_gem_object *obj, int len,
532 const char *where, uint32_t mark);
533#if WATCH_INACTIVE
534void i915_verify_inactive(struct drm_device *dev, char *file, int line);
535#else
536#define i915_verify_inactive(dev, file, line)
537#endif
538void i915_gem_object_check_coherency(struct drm_gem_object *obj, int handle);
539void i915_gem_dump_object(struct drm_gem_object *obj, int len,
540 const char *where, uint32_t mark);
541void i915_dump_lru(struct drm_device *dev, const char *where);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Jesse Barnes317c35d2008-08-25 15:11:06 -0700543/* i915_suspend.c */
544extern int i915_save_state(struct drm_device *dev);
545extern int i915_restore_state(struct drm_device *dev);
546
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700547/* i915_suspend.c */
548extern int i915_save_state(struct drm_device *dev);
549extern int i915_restore_state(struct drm_device *dev);
550
Len Brown65e082c2008-10-24 17:18:10 -0400551#ifdef CONFIG_ACPI
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100552/* i915_opregion.c */
553extern int intel_opregion_init(struct drm_device *dev);
554extern void intel_opregion_free(struct drm_device *dev);
555extern void opregion_asle_intr(struct drm_device *dev);
556extern void opregion_enable_asle(struct drm_device *dev);
Len Brown65e082c2008-10-24 17:18:10 -0400557#else
558static inline int intel_opregion_init(struct drm_device *dev) { return 0; }
559static inline void intel_opregion_free(struct drm_device *dev) { return; }
560static inline void opregion_asle_intr(struct drm_device *dev) { return; }
561static inline void opregion_enable_asle(struct drm_device *dev) { return; }
562#endif
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100563
Eric Anholt546b0972008-09-01 16:45:29 -0700564/**
565 * Lock test for when it's just for synchronization of ring access.
566 *
567 * In that case, we don't need to do it when GEM is initialized as nobody else
568 * has access to the ring.
569 */
570#define RING_LOCK_TEST_WITH_RETURN(dev, file_priv) do { \
571 if (((drm_i915_private_t *)dev->dev_private)->ring.ring_obj == NULL) \
572 LOCK_TEST_WITH_RETURN(dev, file_priv); \
573} while (0)
574
Eric Anholt3043c602008-10-02 12:24:47 -0700575#define I915_READ(reg) readl(dev_priv->regs + (reg))
576#define I915_WRITE(reg, val) writel(val, dev_priv->regs + (reg))
577#define I915_READ16(reg) readw(dev_priv->regs + (reg))
578#define I915_WRITE16(reg, val) writel(val, dev_priv->regs + (reg))
579#define I915_READ8(reg) readb(dev_priv->regs + (reg))
580#define I915_WRITE8(reg, val) writeb(val, dev_priv->regs + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582#define I915_VERBOSE 0
583
584#define RING_LOCALS unsigned int outring, ringmask, outcount; \
585 volatile char *virt;
586
587#define BEGIN_LP_RING(n) do { \
588 if (I915_VERBOSE) \
Márton Németh3e684ea2008-01-24 15:58:57 +1000589 DRM_DEBUG("BEGIN_LP_RING(%d)\n", (n)); \
590 if (dev_priv->ring.space < (n)*4) \
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700591 i915_wait_ring(dev, (n)*4, __func__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 outcount = 0; \
593 outring = dev_priv->ring.tail; \
594 ringmask = dev_priv->ring.tail_mask; \
595 virt = dev_priv->ring.virtual_start; \
596} while (0)
597
598#define OUT_RING(n) do { \
599 if (I915_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
Alan Hourihanec29b6692006-08-12 16:29:24 +1000600 *(volatile unsigned int *)(virt + outring) = (n); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 outcount++; \
602 outring += 4; \
603 outring &= ringmask; \
604} while (0)
605
606#define ADVANCE_LP_RING() do { \
607 if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring); \
608 dev_priv->ring.tail = outring; \
609 dev_priv->ring.space -= outcount * 4; \
Jesse Barnes585fb112008-07-29 11:54:06 -0700610 I915_WRITE(PRB0_TAIL, outring); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611} while(0)
612
Jesse Barnes585fb112008-07-29 11:54:06 -0700613/**
614 * Reads a dword out of the status page, which is written to from the command
615 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
616 * MI_STORE_DATA_IMM.
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000617 *
Jesse Barnes585fb112008-07-29 11:54:06 -0700618 * The following dwords have a reserved meaning:
Keith Packard0cdad7e2008-10-14 17:19:38 -0700619 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
620 * 0x04: ring 0 head pointer
621 * 0x05: ring 1 head pointer (915-class)
622 * 0x06: ring 2 head pointer (915-class)
623 * 0x10-0x1b: Context status DWords (GM45)
624 * 0x1f: Last written status offset. (GM45)
Jesse Barnes585fb112008-07-29 11:54:06 -0700625 *
Keith Packard0cdad7e2008-10-14 17:19:38 -0700626 * The area from dword 0x20 to 0x3ff is available for driver usage.
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000627 */
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000628#define READ_HWSP(dev_priv, reg) (((volatile u32*)(dev_priv->hw_status_page))[reg])
Keith Packard0baf8232008-11-08 11:44:14 +1000629#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
Keith Packard0cdad7e2008-10-14 17:19:38 -0700630#define I915_GEM_HWS_INDEX 0x20
Keith Packard0baf8232008-11-08 11:44:14 +1000631#define I915_BREADCRUMB_INDEX 0x21
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000632
Jesse Barnes585fb112008-07-29 11:54:06 -0700633extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000634
635#define IS_I830(dev) ((dev)->pci_device == 0x3577)
636#define IS_845G(dev) ((dev)->pci_device == 0x2562)
637#define IS_I85X(dev) ((dev)->pci_device == 0x3582)
638#define IS_I855(dev) ((dev)->pci_device == 0x3582)
639#define IS_I865G(dev) ((dev)->pci_device == 0x2572)
640
Carlos Martín4d1f7882008-01-23 16:41:17 +1000641#define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000642#define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
643#define IS_I945G(dev) ((dev)->pci_device == 0x2772)
Jesse Barnes3bf48462008-04-06 11:55:04 -0700644#define IS_I945GM(dev) ((dev)->pci_device == 0x27A2 ||\
645 (dev)->pci_device == 0x27AE)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000646#define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
647 (dev)->pci_device == 0x2982 || \
648 (dev)->pci_device == 0x2992 || \
649 (dev)->pci_device == 0x29A2 || \
650 (dev)->pci_device == 0x2A02 || \
Zhenyu Wang5f5f9d42008-01-24 16:46:36 +1000651 (dev)->pci_device == 0x2A12 || \
Zhenyu Wangd3adbc02008-06-20 12:12:56 +1000652 (dev)->pci_device == 0x2A42 || \
653 (dev)->pci_device == 0x2E02 || \
654 (dev)->pci_device == 0x2E12 || \
655 (dev)->pci_device == 0x2E22)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000656
657#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
658
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700659#define IS_GM45(dev) ((dev)->pci_device == 0x2A42)
Zhenyu Wang5f5f9d42008-01-24 16:46:36 +1000660
Zhenyu Wangd3adbc02008-06-20 12:12:56 +1000661#define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \
662 (dev)->pci_device == 0x2E12 || \
663 (dev)->pci_device == 0x2E22)
664
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000665#define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
666 (dev)->pci_device == 0x29B2 || \
667 (dev)->pci_device == 0x29D2)
668
669#define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
670 IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
671
672#define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700673 IS_I945GM(dev) || IS_I965GM(dev) || IS_GM45(dev))
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000674
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700675#define I915_NEED_GFX_HWS(dev) (IS_G33(dev) || IS_GM45(dev) || IS_G4X(dev))
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000676
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000677#define PRIMARY_RINGBUFFER_SIZE (128*1024)
Dave Airlie0d6aa602006-01-02 20:14:23 +1100678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679#endif