blob: 87b071ab8647a4dab84a0e964fca94b11299fb8e [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"
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/* General customization:
36 */
37
38#define DRIVER_AUTHOR "Tungsten Graphics, Inc."
39
40#define DRIVER_NAME "i915"
41#define DRIVER_DESC "Intel Graphics"
Eric Anholt673a3942008-07-30 12:06:12 -070042#define DRIVER_DATE "20080730"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Jesse Barnes317c35d2008-08-25 15:11:06 -070044enum pipe {
45 PIPE_A = 0,
46 PIPE_B,
47};
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Interface history:
50 *
51 * 1.1: Original.
Dave Airlie0d6aa602006-01-02 20:14:23 +110052 * 1.2: Add Power Management
53 * 1.3: Add vblank support
Dave Airliede227f52006-01-25 15:31:43 +110054 * 1.4: Fix cmdbuffer path, add heap destroy
Dave Airlie702880f2006-06-24 17:07:34 +100055 * 1.5: Add vblank pipe configuration
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +100056 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
57 * - Support vertical blank on secondary display pipe
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
59#define DRIVER_MAJOR 1
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +100060#define DRIVER_MINOR 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define DRIVER_PATCHLEVEL 0
62
Eric Anholt673a3942008-07-30 12:06:12 -070063#define WATCH_COHERENCY 0
64#define WATCH_BUF 0
65#define WATCH_EXEC 0
66#define WATCH_LRU 0
67#define WATCH_RELOC 0
68#define WATCH_INACTIVE 0
69#define WATCH_PWRITE 0
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071typedef struct _drm_i915_ring_buffer {
72 int tail_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned long Size;
74 u8 *virtual_start;
75 int head;
76 int tail;
77 int space;
78 drm_local_map_t map;
Eric Anholt673a3942008-07-30 12:06:12 -070079 struct drm_gem_object *ring_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080} drm_i915_ring_buffer_t;
81
82struct mem_block {
83 struct mem_block *next;
84 struct mem_block *prev;
85 int start;
86 int size;
Eric Anholt6c340ea2007-08-25 20:23:09 +100087 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100090typedef struct _drm_i915_vbl_swap {
91 struct list_head head;
92 drm_drawable_t drw_id;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070093 unsigned int plane;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100094 unsigned int sequence;
95} drm_i915_vbl_swap_t;
96
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070097struct opregion_header;
98struct opregion_acpi;
99struct opregion_swsci;
100struct opregion_asle;
101
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100102struct intel_opregion {
103 struct opregion_header *header;
104 struct opregion_acpi *acpi;
105 struct opregion_swsci *swsci;
106 struct opregion_asle *asle;
107 int enabled;
108};
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110typedef struct drm_i915_private {
Eric Anholt673a3942008-07-30 12:06:12 -0700111 struct drm_device *dev;
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 drm_local_map_t *sarea;
114 drm_local_map_t *mmio_map;
115
116 drm_i915_sarea_t *sarea_priv;
117 drm_i915_ring_buffer_t ring;
118
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000119 drm_dma_handle_t *status_page_dmah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 void *hw_status_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 dma_addr_t dma_status_page;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700122 uint32_t counter;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000123 unsigned int status_gfx_addr;
124 drm_local_map_t hws_map;
Eric Anholt673a3942008-07-30 12:06:12 -0700125 struct drm_gem_object *hws_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000127 unsigned int cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 int back_offset;
129 int front_offset;
130 int current_page;
131 int page_flipping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 wait_queue_head_t irq_queue;
134 atomic_t irq_received;
Eric Anholted4cb412008-07-29 12:10:39 -0700135 /** Protects user_irq_refcount and irq_mask_reg */
136 spinlock_t user_irq_lock;
137 /** Refcount for i915_user_irq_get() versus i915_user_irq_put(). */
138 int user_irq_refcount;
139 /** Cached value of IMR to avoid reads in updating the bitfield */
140 u32 irq_mask_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 int tex_lru_log_granularity;
143 int allow_batchbuffer;
144 struct mem_block *agp_heap;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100145 unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
Dave Airlie702880f2006-06-24 17:07:34 +1000146 int vblank_pipe;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000147
148 spinlock_t swaps_lock;
149 drm_i915_vbl_swap_t vbl_swaps;
150 unsigned int swaps_pending;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000151
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100152 struct intel_opregion opregion;
153
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000154 /* Register state */
155 u8 saveLBB;
156 u32 saveDSPACNTR;
157 u32 saveDSPBCNTR;
Keith Packarde948e992008-05-07 12:27:53 +1000158 u32 saveDSPARB;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000159 u32 savePIPEACONF;
160 u32 savePIPEBCONF;
161 u32 savePIPEASRC;
162 u32 savePIPEBSRC;
163 u32 saveFPA0;
164 u32 saveFPA1;
165 u32 saveDPLL_A;
166 u32 saveDPLL_A_MD;
167 u32 saveHTOTAL_A;
168 u32 saveHBLANK_A;
169 u32 saveHSYNC_A;
170 u32 saveVTOTAL_A;
171 u32 saveVBLANK_A;
172 u32 saveVSYNC_A;
173 u32 saveBCLRPAT_A;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000174 u32 savePIPEASTAT;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000175 u32 saveDSPASTRIDE;
176 u32 saveDSPASIZE;
177 u32 saveDSPAPOS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700178 u32 saveDSPAADDR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000179 u32 saveDSPASURF;
180 u32 saveDSPATILEOFF;
181 u32 savePFIT_PGM_RATIOS;
182 u32 saveBLC_PWM_CTL;
183 u32 saveBLC_PWM_CTL2;
184 u32 saveFPB0;
185 u32 saveFPB1;
186 u32 saveDPLL_B;
187 u32 saveDPLL_B_MD;
188 u32 saveHTOTAL_B;
189 u32 saveHBLANK_B;
190 u32 saveHSYNC_B;
191 u32 saveVTOTAL_B;
192 u32 saveVBLANK_B;
193 u32 saveVSYNC_B;
194 u32 saveBCLRPAT_B;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000195 u32 savePIPEBSTAT;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000196 u32 saveDSPBSTRIDE;
197 u32 saveDSPBSIZE;
198 u32 saveDSPBPOS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700199 u32 saveDSPBADDR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000200 u32 saveDSPBSURF;
201 u32 saveDSPBTILEOFF;
Jesse Barnes585fb112008-07-29 11:54:06 -0700202 u32 saveVGA0;
203 u32 saveVGA1;
204 u32 saveVGA_PD;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000205 u32 saveVGACNTRL;
206 u32 saveADPA;
207 u32 saveLVDS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700208 u32 savePP_ON_DELAYS;
209 u32 savePP_OFF_DELAYS;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000210 u32 saveDVOA;
211 u32 saveDVOB;
212 u32 saveDVOC;
213 u32 savePP_ON;
214 u32 savePP_OFF;
215 u32 savePP_CONTROL;
Jesse Barnes585fb112008-07-29 11:54:06 -0700216 u32 savePP_DIVISOR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000217 u32 savePFIT_CONTROL;
218 u32 save_palette_a[256];
219 u32 save_palette_b[256];
220 u32 saveFBC_CFB_BASE;
221 u32 saveFBC_LL_BASE;
222 u32 saveFBC_CONTROL;
223 u32 saveFBC_CONTROL2;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000224 u32 saveIER;
225 u32 saveIIR;
226 u32 saveIMR;
Keith Packard1f84e552008-02-16 19:19:29 -0800227 u32 saveCACHE_MODE_0;
Keith Packarde948e992008-05-07 12:27:53 +1000228 u32 saveD_STATE;
Jesse Barnes585fb112008-07-29 11:54:06 -0700229 u32 saveCG_2D_DIS;
Keith Packard1f84e552008-02-16 19:19:29 -0800230 u32 saveMI_ARB_STATE;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000231 u32 saveSWF0[16];
232 u32 saveSWF1[16];
233 u32 saveSWF2[3];
234 u8 saveMSR;
235 u8 saveSR[8];
Jesse Barnes123f7942008-02-07 11:15:20 -0800236 u8 saveGR[25];
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000237 u8 saveAR_INDEX;
Jesse Barnesa59e1222008-05-07 12:25:46 +1000238 u8 saveAR[21];
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000239 u8 saveDACMASK;
240 u8 saveDACDATA[256*3]; /* 256 3-byte colors */
Jesse Barnesa59e1222008-05-07 12:25:46 +1000241 u8 saveCR[37];
Eric Anholt673a3942008-07-30 12:06:12 -0700242
243 struct {
244 struct drm_mm gtt_space;
245
246 /**
247 * List of objects currently involved in rendering from the
248 * ringbuffer.
249 *
250 * A reference is held on the buffer while on this list.
251 */
252 struct list_head active_list;
253
254 /**
255 * List of objects which are not in the ringbuffer but which
256 * still have a write_domain which needs to be flushed before
257 * unbinding.
258 *
259 * A reference is held on the buffer while on this list.
260 */
261 struct list_head flushing_list;
262
263 /**
264 * LRU list of objects which are not in the ringbuffer and
265 * are ready to unbind, but are still in the GTT.
266 *
267 * A reference is not held on the buffer while on this list,
268 * as merely being GTT-bound shouldn't prevent its being
269 * freed, and we'll pull it off the list in the free path.
270 */
271 struct list_head inactive_list;
272
273 /**
274 * List of breadcrumbs associated with GPU requests currently
275 * outstanding.
276 */
277 struct list_head request_list;
278
279 /**
280 * We leave the user IRQ off as much as possible,
281 * but this means that requests will finish and never
282 * be retired once the system goes idle. Set a timer to
283 * fire periodically while the ring is running. When it
284 * fires, go retire requests.
285 */
286 struct delayed_work retire_work;
287
288 uint32_t next_gem_seqno;
289
290 /**
291 * Waiting sequence number, if any
292 */
293 uint32_t waiting_gem_seqno;
294
295 /**
296 * Last seq seen at irq time
297 */
298 uint32_t irq_gem_seqno;
299
300 /**
301 * Flag if the X Server, and thus DRM, is not currently in
302 * control of the device.
303 *
304 * This is set between LeaveVT and EnterVT. It needs to be
305 * replaced with a semaphore. It also needs to be
306 * transitioned away from for kernel modesetting.
307 */
308 int suspended;
309
310 /**
311 * Flag if the hardware appears to be wedged.
312 *
313 * This is set when attempts to idle the device timeout.
314 * It prevents command submission from occuring and makes
315 * every pending request fail
316 */
317 int wedged;
318
319 /** Bit 6 swizzling required for X tiling */
320 uint32_t bit_6_swizzle_x;
321 /** Bit 6 swizzling required for Y tiling */
322 uint32_t bit_6_swizzle_y;
323 } mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324} drm_i915_private_t;
325
Eric Anholt673a3942008-07-30 12:06:12 -0700326/** driver private structure attached to each drm_gem_object */
327struct drm_i915_gem_object {
328 struct drm_gem_object *obj;
329
330 /** Current space allocated to this object in the GTT, if any. */
331 struct drm_mm_node *gtt_space;
332
333 /** This object's place on the active/flushing/inactive lists */
334 struct list_head list;
335
336 /**
337 * This is set if the object is on the active or flushing lists
338 * (has pending rendering), and is not set if it's on inactive (ready
339 * to be unbound).
340 */
341 int active;
342
343 /**
344 * This is set if the object has been written to since last bound
345 * to the GTT
346 */
347 int dirty;
348
349 /** AGP memory structure for our GTT binding. */
350 DRM_AGP_MEM *agp_mem;
351
352 struct page **page_list;
353
354 /**
355 * Current offset of the object in GTT space.
356 *
357 * This is the same as gtt_space->start
358 */
359 uint32_t gtt_offset;
360
361 /** Boolean whether this object has a valid gtt offset. */
362 int gtt_bound;
363
364 /** How many users have pinned this object in GTT space */
365 int pin_count;
366
367 /** Breadcrumb of last rendering to the buffer. */
368 uint32_t last_rendering_seqno;
369
370 /** Current tiling mode for the object. */
371 uint32_t tiling_mode;
372
373 /**
374 * Flagging of which individual pages are valid in GEM_DOMAIN_CPU when
375 * GEM_DOMAIN_CPU is not in the object's read domain.
376 */
377 uint8_t *page_cpu_valid;
378};
379
380/**
381 * Request queue structure.
382 *
383 * The request queue allows us to note sequence numbers that have been emitted
384 * and may be associated with active buffers to be retired.
385 *
386 * By keeping this list, we can avoid having to do questionable
387 * sequence-number comparisons on buffer last_rendering_seqnos, and associate
388 * an emission time with seqnos for tracking how far ahead of the GPU we are.
389 */
390struct drm_i915_gem_request {
391 /** GEM sequence number associated with this request. */
392 uint32_t seqno;
393
394 /** Time at which this request was emitted, in jiffies. */
395 unsigned long emitted_jiffies;
396
397 /** Cache domains that were flushed at the start of the request. */
398 uint32_t flush_domains;
399
400 struct list_head list;
401};
402
403struct drm_i915_file_private {
404 struct {
405 uint32_t last_gem_seqno;
406 uint32_t last_gem_throttle_seqno;
407 } mm;
408};
409
Eric Anholtc153f452007-09-03 12:06:45 +1000410extern struct drm_ioctl_desc i915_ioctls[];
Dave Airlieb3a83632005-09-30 18:37:36 +1000411extern int i915_max_ioctl;
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* i915_dma.c */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000414extern void i915_kernel_lost_context(struct drm_device * dev);
Dave Airlie22eae942005-11-10 22:16:34 +1100415extern int i915_driver_load(struct drm_device *, unsigned long flags);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000416extern int i915_driver_unload(struct drm_device *);
Eric Anholt673a3942008-07-30 12:06:12 -0700417extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000418extern void i915_driver_lastclose(struct drm_device * dev);
Eric Anholt6c340ea2007-08-25 20:23:09 +1000419extern void i915_driver_preclose(struct drm_device *dev,
420 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700421extern void i915_driver_postclose(struct drm_device *dev,
422 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000423extern int i915_driver_device_is_agp(struct drm_device * dev);
Dave Airlie0d6aa602006-01-02 20:14:23 +1100424extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
425 unsigned long arg);
Eric Anholt673a3942008-07-30 12:06:12 -0700426extern int i915_emit_box(struct drm_device *dev,
427 struct drm_clip_rect __user *boxes,
428 int i, int DR1, int DR4);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/* i915_irq.c */
Eric Anholtc153f452007-09-03 12:06:45 +1000431extern int i915_irq_emit(struct drm_device *dev, void *data,
432 struct drm_file *file_priv);
433extern int i915_irq_wait(struct drm_device *dev, void *data,
434 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700435void i915_user_irq_get(struct drm_device *dev);
436void i915_user_irq_put(struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000439extern void i915_driver_irq_preinstall(struct drm_device * dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700440extern int i915_driver_irq_postinstall(struct drm_device *dev);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000441extern void i915_driver_irq_uninstall(struct drm_device * dev);
Eric Anholtc153f452007-09-03 12:06:45 +1000442extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
443 struct drm_file *file_priv);
444extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
445 struct drm_file *file_priv);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700446extern int i915_enable_vblank(struct drm_device *dev, int crtc);
447extern void i915_disable_vblank(struct drm_device *dev, int crtc);
448extern u32 i915_get_vblank_counter(struct drm_device *dev, int crtc);
Eric Anholtc153f452007-09-03 12:06:45 +1000449extern int i915_vblank_swap(struct drm_device *dev, void *data,
450 struct drm_file *file_priv);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100451extern void i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453/* i915_mem.c */
Eric Anholtc153f452007-09-03 12:06:45 +1000454extern int i915_mem_alloc(struct drm_device *dev, void *data,
455 struct drm_file *file_priv);
456extern int i915_mem_free(struct drm_device *dev, void *data,
457 struct drm_file *file_priv);
458extern int i915_mem_init_heap(struct drm_device *dev, void *data,
459 struct drm_file *file_priv);
460extern int i915_mem_destroy_heap(struct drm_device *dev, void *data,
461 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462extern void i915_mem_takedown(struct mem_block **heap);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000463extern void i915_mem_release(struct drm_device * dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000464 struct drm_file *file_priv, struct mem_block *heap);
Eric Anholt673a3942008-07-30 12:06:12 -0700465/* i915_gem.c */
466int i915_gem_init_ioctl(struct drm_device *dev, void *data,
467 struct drm_file *file_priv);
468int i915_gem_create_ioctl(struct drm_device *dev, void *data,
469 struct drm_file *file_priv);
470int i915_gem_pread_ioctl(struct drm_device *dev, void *data,
471 struct drm_file *file_priv);
472int i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
473 struct drm_file *file_priv);
474int i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
475 struct drm_file *file_priv);
476int i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
477 struct drm_file *file_priv);
478int i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
479 struct drm_file *file_priv);
480int i915_gem_execbuffer(struct drm_device *dev, void *data,
481 struct drm_file *file_priv);
482int i915_gem_pin_ioctl(struct drm_device *dev, void *data,
483 struct drm_file *file_priv);
484int i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
485 struct drm_file *file_priv);
486int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
487 struct drm_file *file_priv);
488int i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
489 struct drm_file *file_priv);
490int i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
491 struct drm_file *file_priv);
492int i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
493 struct drm_file *file_priv);
494int i915_gem_set_tiling(struct drm_device *dev, void *data,
495 struct drm_file *file_priv);
496int i915_gem_get_tiling(struct drm_device *dev, void *data,
497 struct drm_file *file_priv);
498void i915_gem_load(struct drm_device *dev);
499int i915_gem_proc_init(struct drm_minor *minor);
500void i915_gem_proc_cleanup(struct drm_minor *minor);
501int i915_gem_init_object(struct drm_gem_object *obj);
502void i915_gem_free_object(struct drm_gem_object *obj);
503int i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment);
504void i915_gem_object_unpin(struct drm_gem_object *obj);
505void i915_gem_lastclose(struct drm_device *dev);
506uint32_t i915_get_gem_seqno(struct drm_device *dev);
507void i915_gem_retire_requests(struct drm_device *dev);
508void i915_gem_retire_work_handler(struct work_struct *work);
509void i915_gem_clflush_object(struct drm_gem_object *obj);
510
511/* i915_gem_tiling.c */
512void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
513
514/* i915_gem_debug.c */
515void i915_gem_dump_object(struct drm_gem_object *obj, int len,
516 const char *where, uint32_t mark);
517#if WATCH_INACTIVE
518void i915_verify_inactive(struct drm_device *dev, char *file, int line);
519#else
520#define i915_verify_inactive(dev, file, line)
521#endif
522void i915_gem_object_check_coherency(struct drm_gem_object *obj, int handle);
523void i915_gem_dump_object(struct drm_gem_object *obj, int len,
524 const char *where, uint32_t mark);
525void i915_dump_lru(struct drm_device *dev, const char *where);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Jesse Barnes317c35d2008-08-25 15:11:06 -0700527/* i915_suspend.c */
528extern int i915_save_state(struct drm_device *dev);
529extern int i915_restore_state(struct drm_device *dev);
530
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700531/* i915_suspend.c */
532extern int i915_save_state(struct drm_device *dev);
533extern int i915_restore_state(struct drm_device *dev);
534
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100535/* i915_opregion.c */
536extern int intel_opregion_init(struct drm_device *dev);
537extern void intel_opregion_free(struct drm_device *dev);
538extern void opregion_asle_intr(struct drm_device *dev);
539extern void opregion_enable_asle(struct drm_device *dev);
540
Dave Airlie0d6aa602006-01-02 20:14:23 +1100541#define I915_READ(reg) DRM_READ32(dev_priv->mmio_map, (reg))
542#define I915_WRITE(reg,val) DRM_WRITE32(dev_priv->mmio_map, (reg), (val))
Dave Airliebc5f4522007-11-05 12:50:58 +1000543#define I915_READ16(reg) DRM_READ16(dev_priv->mmio_map, (reg))
Dave Airlie0d6aa602006-01-02 20:14:23 +1100544#define I915_WRITE16(reg,val) DRM_WRITE16(dev_priv->mmio_map, (reg), (val))
Jesse Barnes317c35d2008-08-25 15:11:06 -0700545#define I915_READ8(reg) DRM_READ8(dev_priv->mmio_map, (reg))
546#define I915_WRITE8(reg,val) DRM_WRITE8(dev_priv->mmio_map, (reg), (val))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548#define I915_VERBOSE 0
549
550#define RING_LOCALS unsigned int outring, ringmask, outcount; \
551 volatile char *virt;
552
553#define BEGIN_LP_RING(n) do { \
554 if (I915_VERBOSE) \
Márton Németh3e684ea2008-01-24 15:58:57 +1000555 DRM_DEBUG("BEGIN_LP_RING(%d)\n", (n)); \
556 if (dev_priv->ring.space < (n)*4) \
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700557 i915_wait_ring(dev, (n)*4, __func__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 outcount = 0; \
559 outring = dev_priv->ring.tail; \
560 ringmask = dev_priv->ring.tail_mask; \
561 virt = dev_priv->ring.virtual_start; \
562} while (0)
563
564#define OUT_RING(n) do { \
565 if (I915_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
Alan Hourihanec29b6692006-08-12 16:29:24 +1000566 *(volatile unsigned int *)(virt + outring) = (n); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 outcount++; \
568 outring += 4; \
569 outring &= ringmask; \
570} while (0)
571
572#define ADVANCE_LP_RING() do { \
573 if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring); \
574 dev_priv->ring.tail = outring; \
575 dev_priv->ring.space -= outcount * 4; \
Jesse Barnes585fb112008-07-29 11:54:06 -0700576 I915_WRITE(PRB0_TAIL, outring); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577} while(0)
578
Jesse Barnes585fb112008-07-29 11:54:06 -0700579/**
580 * Reads a dword out of the status page, which is written to from the command
581 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
582 * MI_STORE_DATA_IMM.
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000583 *
Jesse Barnes585fb112008-07-29 11:54:06 -0700584 * The following dwords have a reserved meaning:
585 * 0: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
586 * 4: ring 0 head pointer
587 * 5: ring 1 head pointer (915-class)
588 * 6: ring 2 head pointer (915-class)
589 *
590 * The area from dword 0x10 to 0x3ff is available for driver usage.
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000591 */
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000592#define READ_HWSP(dev_priv, reg) (((volatile u32*)(dev_priv->hw_status_page))[reg])
Jesse Barnes585fb112008-07-29 11:54:06 -0700593#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, 5)
Eric Anholt673a3942008-07-30 12:06:12 -0700594#define I915_GEM_HWS_INDEX 0x10
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000595
Jesse Barnes585fb112008-07-29 11:54:06 -0700596extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000597
598#define IS_I830(dev) ((dev)->pci_device == 0x3577)
599#define IS_845G(dev) ((dev)->pci_device == 0x2562)
600#define IS_I85X(dev) ((dev)->pci_device == 0x3582)
601#define IS_I855(dev) ((dev)->pci_device == 0x3582)
602#define IS_I865G(dev) ((dev)->pci_device == 0x2572)
603
Carlos Martín4d1f7882008-01-23 16:41:17 +1000604#define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000605#define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
606#define IS_I945G(dev) ((dev)->pci_device == 0x2772)
Jesse Barnes3bf48462008-04-06 11:55:04 -0700607#define IS_I945GM(dev) ((dev)->pci_device == 0x27A2 ||\
608 (dev)->pci_device == 0x27AE)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000609#define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
610 (dev)->pci_device == 0x2982 || \
611 (dev)->pci_device == 0x2992 || \
612 (dev)->pci_device == 0x29A2 || \
613 (dev)->pci_device == 0x2A02 || \
Zhenyu Wang5f5f9d42008-01-24 16:46:36 +1000614 (dev)->pci_device == 0x2A12 || \
Zhenyu Wangd3adbc02008-06-20 12:12:56 +1000615 (dev)->pci_device == 0x2A42 || \
616 (dev)->pci_device == 0x2E02 || \
617 (dev)->pci_device == 0x2E12 || \
618 (dev)->pci_device == 0x2E22)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000619
620#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
621
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700622#define IS_GM45(dev) ((dev)->pci_device == 0x2A42)
Zhenyu Wang5f5f9d42008-01-24 16:46:36 +1000623
Zhenyu Wangd3adbc02008-06-20 12:12:56 +1000624#define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \
625 (dev)->pci_device == 0x2E12 || \
626 (dev)->pci_device == 0x2E22)
627
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000628#define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
629 (dev)->pci_device == 0x29B2 || \
630 (dev)->pci_device == 0x29D2)
631
632#define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
633 IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
634
635#define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700636 IS_I945GM(dev) || IS_I965GM(dev) || IS_GM45(dev))
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000637
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700638#define I915_NEED_GFX_HWS(dev) (IS_G33(dev) || IS_GM45(dev) || IS_G4X(dev))
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000639
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000640#define PRIMARY_RINGBUFFER_SIZE (128*1024)
Dave Airlie0d6aa602006-01-02 20:14:23 +1100641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642#endif