blob: 126b2f13258c04c86e8e7fce6527760da88106d9 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* Interface history:
51 *
52 * 1.1: Original.
Dave Airlie0d6aa602006-01-02 20:14:23 +110053 * 1.2: Add Power Management
54 * 1.3: Add vblank support
Dave Airliede227f52006-01-25 15:31:43 +110055 * 1.4: Fix cmdbuffer path, add heap destroy
Dave Airlie702880f2006-06-24 17:07:34 +100056 * 1.5: Add vblank pipe configuration
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +100057 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
58 * - Support vertical blank on secondary display pipe
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 */
60#define DRIVER_MAJOR 1
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +100061#define DRIVER_MINOR 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define DRIVER_PATCHLEVEL 0
63
Eric Anholt673a3942008-07-30 12:06:12 -070064#define WATCH_COHERENCY 0
65#define WATCH_BUF 0
66#define WATCH_EXEC 0
67#define WATCH_LRU 0
68#define WATCH_RELOC 0
69#define WATCH_INACTIVE 0
70#define WATCH_PWRITE 0
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072typedef struct _drm_i915_ring_buffer {
73 int tail_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 unsigned long Size;
75 u8 *virtual_start;
76 int head;
77 int tail;
78 int space;
79 drm_local_map_t map;
Eric Anholt673a3942008-07-30 12:06:12 -070080 struct drm_gem_object *ring_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081} drm_i915_ring_buffer_t;
82
83struct mem_block {
84 struct mem_block *next;
85 struct mem_block *prev;
86 int start;
87 int size;
Eric Anholt6c340ea2007-08-25 20:23:09 +100088 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100091typedef struct _drm_i915_vbl_swap {
92 struct list_head head;
93 drm_drawable_t drw_id;
Keith Packard9e44af72008-10-16 21:18:27 -070094 unsigned int pipe;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100095 unsigned int sequence;
96} drm_i915_vbl_swap_t;
97
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070098struct opregion_header;
99struct opregion_acpi;
100struct opregion_swsci;
101struct opregion_asle;
102
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100103struct intel_opregion {
104 struct opregion_header *header;
105 struct opregion_acpi *acpi;
106 struct opregion_swsci *swsci;
107 struct opregion_asle *asle;
108 int enabled;
109};
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111typedef struct drm_i915_private {
Eric Anholt673a3942008-07-30 12:06:12 -0700112 struct drm_device *dev;
113
Eric Anholt3043c602008-10-02 12:24:47 -0700114 void __iomem *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 drm_local_map_t *sarea;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 drm_i915_sarea_t *sarea_priv;
118 drm_i915_ring_buffer_t ring;
119
Dave Airlie9c8da5e2005-07-10 15:38:56 +1000120 drm_dma_handle_t *status_page_dmah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 void *hw_status_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 dma_addr_t dma_status_page;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700123 uint32_t counter;
Wang Zhenyudc7a9312007-06-10 15:58:19 +1000124 unsigned int status_gfx_addr;
125 drm_local_map_t hws_map;
Eric Anholt673a3942008-07-30 12:06:12 -0700126 struct drm_gem_object *hws_obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000128 unsigned int cpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int back_offset;
130 int front_offset;
131 int current_page;
132 int page_flipping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 wait_queue_head_t irq_queue;
135 atomic_t irq_received;
Eric Anholted4cb412008-07-29 12:10:39 -0700136 /** Protects user_irq_refcount and irq_mask_reg */
137 spinlock_t user_irq_lock;
138 /** Refcount for i915_user_irq_get() versus i915_user_irq_put(). */
139 int user_irq_refcount;
140 /** Cached value of IMR to avoid reads in updating the bitfield */
141 u32 irq_mask_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 int tex_lru_log_granularity;
144 int allow_batchbuffer;
145 struct mem_block *agp_heap;
Dave Airlie0d6aa602006-01-02 20:14:23 +1100146 unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
Dave Airlie702880f2006-06-24 17:07:34 +1000147 int vblank_pipe;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000148
149 spinlock_t swaps_lock;
150 drm_i915_vbl_swap_t vbl_swaps;
151 unsigned int swaps_pending;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000152
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100153 struct intel_opregion opregion;
154
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000155 /* Register state */
156 u8 saveLBB;
157 u32 saveDSPACNTR;
158 u32 saveDSPBCNTR;
Keith Packarde948e992008-05-07 12:27:53 +1000159 u32 saveDSPARB;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000160 u32 savePIPEACONF;
161 u32 savePIPEBCONF;
162 u32 savePIPEASRC;
163 u32 savePIPEBSRC;
164 u32 saveFPA0;
165 u32 saveFPA1;
166 u32 saveDPLL_A;
167 u32 saveDPLL_A_MD;
168 u32 saveHTOTAL_A;
169 u32 saveHBLANK_A;
170 u32 saveHSYNC_A;
171 u32 saveVTOTAL_A;
172 u32 saveVBLANK_A;
173 u32 saveVSYNC_A;
174 u32 saveBCLRPAT_A;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000175 u32 savePIPEASTAT;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000176 u32 saveDSPASTRIDE;
177 u32 saveDSPASIZE;
178 u32 saveDSPAPOS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700179 u32 saveDSPAADDR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000180 u32 saveDSPASURF;
181 u32 saveDSPATILEOFF;
182 u32 savePFIT_PGM_RATIOS;
183 u32 saveBLC_PWM_CTL;
184 u32 saveBLC_PWM_CTL2;
185 u32 saveFPB0;
186 u32 saveFPB1;
187 u32 saveDPLL_B;
188 u32 saveDPLL_B_MD;
189 u32 saveHTOTAL_B;
190 u32 saveHBLANK_B;
191 u32 saveHSYNC_B;
192 u32 saveVTOTAL_B;
193 u32 saveVBLANK_B;
194 u32 saveVSYNC_B;
195 u32 saveBCLRPAT_B;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000196 u32 savePIPEBSTAT;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000197 u32 saveDSPBSTRIDE;
198 u32 saveDSPBSIZE;
199 u32 saveDSPBPOS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700200 u32 saveDSPBADDR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000201 u32 saveDSPBSURF;
202 u32 saveDSPBTILEOFF;
Jesse Barnes585fb112008-07-29 11:54:06 -0700203 u32 saveVGA0;
204 u32 saveVGA1;
205 u32 saveVGA_PD;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000206 u32 saveVGACNTRL;
207 u32 saveADPA;
208 u32 saveLVDS;
Jesse Barnes585fb112008-07-29 11:54:06 -0700209 u32 savePP_ON_DELAYS;
210 u32 savePP_OFF_DELAYS;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000211 u32 saveDVOA;
212 u32 saveDVOB;
213 u32 saveDVOC;
214 u32 savePP_ON;
215 u32 savePP_OFF;
216 u32 savePP_CONTROL;
Jesse Barnes585fb112008-07-29 11:54:06 -0700217 u32 savePP_DIVISOR;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000218 u32 savePFIT_CONTROL;
219 u32 save_palette_a[256];
220 u32 save_palette_b[256];
221 u32 saveFBC_CFB_BASE;
222 u32 saveFBC_LL_BASE;
223 u32 saveFBC_CONTROL;
224 u32 saveFBC_CONTROL2;
Jesse Barnes0da3ea12008-02-20 09:39:58 +1000225 u32 saveIER;
226 u32 saveIIR;
227 u32 saveIMR;
Keith Packard1f84e552008-02-16 19:19:29 -0800228 u32 saveCACHE_MODE_0;
Keith Packarde948e992008-05-07 12:27:53 +1000229 u32 saveD_STATE;
Jesse Barnes585fb112008-07-29 11:54:06 -0700230 u32 saveCG_2D_DIS;
Keith Packard1f84e552008-02-16 19:19:29 -0800231 u32 saveMI_ARB_STATE;
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000232 u32 saveSWF0[16];
233 u32 saveSWF1[16];
234 u32 saveSWF2[3];
235 u8 saveMSR;
236 u8 saveSR[8];
Jesse Barnes123f7942008-02-07 11:15:20 -0800237 u8 saveGR[25];
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000238 u8 saveAR_INDEX;
Jesse Barnesa59e1222008-05-07 12:25:46 +1000239 u8 saveAR[21];
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000240 u8 saveDACMASK;
241 u8 saveDACDATA[256*3]; /* 256 3-byte colors */
Jesse Barnesa59e1222008-05-07 12:25:46 +1000242 u8 saveCR[37];
Eric Anholt673a3942008-07-30 12:06:12 -0700243
Keith Packard9e44af72008-10-16 21:18:27 -0700244 /** Work task for vblank-related ring access */
245 struct work_struct vblank_work;
246
Eric Anholt673a3942008-07-30 12:06:12 -0700247 struct {
248 struct drm_mm gtt_space;
249
Keith Packard0839ccb2008-10-30 19:38:48 -0700250 struct io_mapping *gtt_mapping;
251
Eric Anholt673a3942008-07-30 12:06:12 -0700252 /**
253 * List of objects currently involved in rendering from the
254 * ringbuffer.
255 *
256 * A reference is held on the buffer while on this list.
257 */
258 struct list_head active_list;
259
260 /**
261 * List of objects which are not in the ringbuffer but which
262 * still have a write_domain which needs to be flushed before
263 * unbinding.
264 *
265 * A reference is held on the buffer while on this list.
266 */
267 struct list_head flushing_list;
268
269 /**
270 * LRU list of objects which are not in the ringbuffer and
271 * are ready to unbind, but are still in the GTT.
272 *
273 * A reference is not held on the buffer while on this list,
274 * as merely being GTT-bound shouldn't prevent its being
275 * freed, and we'll pull it off the list in the free path.
276 */
277 struct list_head inactive_list;
278
279 /**
280 * List of breadcrumbs associated with GPU requests currently
281 * outstanding.
282 */
283 struct list_head request_list;
284
285 /**
286 * We leave the user IRQ off as much as possible,
287 * but this means that requests will finish and never
288 * be retired once the system goes idle. Set a timer to
289 * fire periodically while the ring is running. When it
290 * fires, go retire requests.
291 */
292 struct delayed_work retire_work;
293
294 uint32_t next_gem_seqno;
295
296 /**
297 * Waiting sequence number, if any
298 */
299 uint32_t waiting_gem_seqno;
300
301 /**
302 * Last seq seen at irq time
303 */
304 uint32_t irq_gem_seqno;
305
306 /**
307 * Flag if the X Server, and thus DRM, is not currently in
308 * control of the device.
309 *
310 * This is set between LeaveVT and EnterVT. It needs to be
311 * replaced with a semaphore. It also needs to be
312 * transitioned away from for kernel modesetting.
313 */
314 int suspended;
315
316 /**
317 * Flag if the hardware appears to be wedged.
318 *
319 * This is set when attempts to idle the device timeout.
320 * It prevents command submission from occuring and makes
321 * every pending request fail
322 */
323 int wedged;
324
325 /** Bit 6 swizzling required for X tiling */
326 uint32_t bit_6_swizzle_x;
327 /** Bit 6 swizzling required for Y tiling */
328 uint32_t bit_6_swizzle_y;
329 } mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330} drm_i915_private_t;
331
Eric Anholt673a3942008-07-30 12:06:12 -0700332/** driver private structure attached to each drm_gem_object */
333struct drm_i915_gem_object {
334 struct drm_gem_object *obj;
335
336 /** Current space allocated to this object in the GTT, if any. */
337 struct drm_mm_node *gtt_space;
338
339 /** This object's place on the active/flushing/inactive lists */
340 struct list_head list;
341
342 /**
343 * This is set if the object is on the active or flushing lists
344 * (has pending rendering), and is not set if it's on inactive (ready
345 * to be unbound).
346 */
347 int active;
348
349 /**
350 * This is set if the object has been written to since last bound
351 * to the GTT
352 */
353 int dirty;
354
355 /** AGP memory structure for our GTT binding. */
356 DRM_AGP_MEM *agp_mem;
357
358 struct page **page_list;
359
360 /**
361 * Current offset of the object in GTT space.
362 *
363 * This is the same as gtt_space->start
364 */
365 uint32_t gtt_offset;
366
367 /** Boolean whether this object has a valid gtt offset. */
368 int gtt_bound;
369
370 /** How many users have pinned this object in GTT space */
371 int pin_count;
372
373 /** Breadcrumb of last rendering to the buffer. */
374 uint32_t last_rendering_seqno;
375
376 /** Current tiling mode for the object. */
377 uint32_t tiling_mode;
378
Keith Packardba1eb1d2008-10-14 19:55:10 -0700379 /** AGP mapping type (AGP_USER_MEMORY or AGP_USER_CACHED_MEMORY */
380 uint32_t agp_type;
381
Eric Anholt673a3942008-07-30 12:06:12 -0700382 /**
383 * Flagging of which individual pages are valid in GEM_DOMAIN_CPU when
384 * GEM_DOMAIN_CPU is not in the object's read domain.
385 */
386 uint8_t *page_cpu_valid;
387};
388
389/**
390 * Request queue structure.
391 *
392 * The request queue allows us to note sequence numbers that have been emitted
393 * and may be associated with active buffers to be retired.
394 *
395 * By keeping this list, we can avoid having to do questionable
396 * sequence-number comparisons on buffer last_rendering_seqnos, and associate
397 * an emission time with seqnos for tracking how far ahead of the GPU we are.
398 */
399struct drm_i915_gem_request {
400 /** GEM sequence number associated with this request. */
401 uint32_t seqno;
402
403 /** Time at which this request was emitted, in jiffies. */
404 unsigned long emitted_jiffies;
405
406 /** Cache domains that were flushed at the start of the request. */
407 uint32_t flush_domains;
408
409 struct list_head list;
410};
411
412struct drm_i915_file_private {
413 struct {
414 uint32_t last_gem_seqno;
415 uint32_t last_gem_throttle_seqno;
416 } mm;
417};
418
Eric Anholtc153f452007-09-03 12:06:45 +1000419extern struct drm_ioctl_desc i915_ioctls[];
Dave Airlieb3a83632005-09-30 18:37:36 +1000420extern int i915_max_ioctl;
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /* i915_dma.c */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000423extern void i915_kernel_lost_context(struct drm_device * dev);
Dave Airlie22eae942005-11-10 22:16:34 +1100424extern int i915_driver_load(struct drm_device *, unsigned long flags);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000425extern int i915_driver_unload(struct drm_device *);
Eric Anholt673a3942008-07-30 12:06:12 -0700426extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000427extern void i915_driver_lastclose(struct drm_device * dev);
Eric Anholt6c340ea2007-08-25 20:23:09 +1000428extern void i915_driver_preclose(struct drm_device *dev,
429 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700430extern void i915_driver_postclose(struct drm_device *dev,
431 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000432extern int i915_driver_device_is_agp(struct drm_device * dev);
Dave Airlie0d6aa602006-01-02 20:14:23 +1100433extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
434 unsigned long arg);
Eric Anholt673a3942008-07-30 12:06:12 -0700435extern int i915_emit_box(struct drm_device *dev,
436 struct drm_clip_rect __user *boxes,
437 int i, int DR1, int DR4);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/* i915_irq.c */
Eric Anholtc153f452007-09-03 12:06:45 +1000440extern int i915_irq_emit(struct drm_device *dev, void *data,
441 struct drm_file *file_priv);
442extern int i915_irq_wait(struct drm_device *dev, void *data,
443 struct drm_file *file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700444void i915_user_irq_get(struct drm_device *dev);
445void i915_user_irq_put(struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Keith Packard9e44af72008-10-16 21:18:27 -0700447extern void i915_vblank_work_handler(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000449extern void i915_driver_irq_preinstall(struct drm_device * dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700450extern int i915_driver_irq_postinstall(struct drm_device *dev);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000451extern void i915_driver_irq_uninstall(struct drm_device * dev);
Eric Anholtc153f452007-09-03 12:06:45 +1000452extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
453 struct drm_file *file_priv);
454extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
455 struct drm_file *file_priv);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700456extern int i915_enable_vblank(struct drm_device *dev, int crtc);
457extern void i915_disable_vblank(struct drm_device *dev, int crtc);
458extern u32 i915_get_vblank_counter(struct drm_device *dev, int crtc);
Eric Anholtc153f452007-09-03 12:06:45 +1000459extern int i915_vblank_swap(struct drm_device *dev, void *data,
460 struct drm_file *file_priv);
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100461extern void i915_enable_irq(drm_i915_private_t *dev_priv, u32 mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463/* i915_mem.c */
Eric Anholtc153f452007-09-03 12:06:45 +1000464extern int i915_mem_alloc(struct drm_device *dev, void *data,
465 struct drm_file *file_priv);
466extern int i915_mem_free(struct drm_device *dev, void *data,
467 struct drm_file *file_priv);
468extern int i915_mem_init_heap(struct drm_device *dev, void *data,
469 struct drm_file *file_priv);
470extern int i915_mem_destroy_heap(struct drm_device *dev, void *data,
471 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472extern void i915_mem_takedown(struct mem_block **heap);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000473extern void i915_mem_release(struct drm_device * dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000474 struct drm_file *file_priv, struct mem_block *heap);
Eric Anholt673a3942008-07-30 12:06:12 -0700475/* i915_gem.c */
476int i915_gem_init_ioctl(struct drm_device *dev, void *data,
477 struct drm_file *file_priv);
478int i915_gem_create_ioctl(struct drm_device *dev, void *data,
479 struct drm_file *file_priv);
480int i915_gem_pread_ioctl(struct drm_device *dev, void *data,
481 struct drm_file *file_priv);
482int i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
483 struct drm_file *file_priv);
484int i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
485 struct drm_file *file_priv);
486int i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
487 struct drm_file *file_priv);
488int i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
489 struct drm_file *file_priv);
490int i915_gem_execbuffer(struct drm_device *dev, void *data,
491 struct drm_file *file_priv);
492int i915_gem_pin_ioctl(struct drm_device *dev, void *data,
493 struct drm_file *file_priv);
494int i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
495 struct drm_file *file_priv);
496int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
497 struct drm_file *file_priv);
498int i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
499 struct drm_file *file_priv);
500int i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
501 struct drm_file *file_priv);
502int i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
503 struct drm_file *file_priv);
504int i915_gem_set_tiling(struct drm_device *dev, void *data,
505 struct drm_file *file_priv);
506int i915_gem_get_tiling(struct drm_device *dev, void *data,
507 struct drm_file *file_priv);
508void i915_gem_load(struct drm_device *dev);
509int i915_gem_proc_init(struct drm_minor *minor);
510void i915_gem_proc_cleanup(struct drm_minor *minor);
511int i915_gem_init_object(struct drm_gem_object *obj);
512void i915_gem_free_object(struct drm_gem_object *obj);
513int i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment);
514void i915_gem_object_unpin(struct drm_gem_object *obj);
515void i915_gem_lastclose(struct drm_device *dev);
516uint32_t i915_get_gem_seqno(struct drm_device *dev);
517void i915_gem_retire_requests(struct drm_device *dev);
518void i915_gem_retire_work_handler(struct work_struct *work);
519void i915_gem_clflush_object(struct drm_gem_object *obj);
520
521/* i915_gem_tiling.c */
522void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
523
524/* i915_gem_debug.c */
525void i915_gem_dump_object(struct drm_gem_object *obj, int len,
526 const char *where, uint32_t mark);
527#if WATCH_INACTIVE
528void i915_verify_inactive(struct drm_device *dev, char *file, int line);
529#else
530#define i915_verify_inactive(dev, file, line)
531#endif
532void i915_gem_object_check_coherency(struct drm_gem_object *obj, int handle);
533void i915_gem_dump_object(struct drm_gem_object *obj, int len,
534 const char *where, uint32_t mark);
535void i915_dump_lru(struct drm_device *dev, const char *where);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Jesse Barnes317c35d2008-08-25 15:11:06 -0700537/* i915_suspend.c */
538extern int i915_save_state(struct drm_device *dev);
539extern int i915_restore_state(struct drm_device *dev);
540
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700541/* i915_suspend.c */
542extern int i915_save_state(struct drm_device *dev);
543extern int i915_restore_state(struct drm_device *dev);
544
Matthew Garrett8ee1c3d2008-08-05 19:37:25 +0100545/* i915_opregion.c */
546extern int intel_opregion_init(struct drm_device *dev);
547extern void intel_opregion_free(struct drm_device *dev);
548extern void opregion_asle_intr(struct drm_device *dev);
549extern void opregion_enable_asle(struct drm_device *dev);
550
Eric Anholt546b0972008-09-01 16:45:29 -0700551/**
552 * Lock test for when it's just for synchronization of ring access.
553 *
554 * In that case, we don't need to do it when GEM is initialized as nobody else
555 * has access to the ring.
556 */
557#define RING_LOCK_TEST_WITH_RETURN(dev, file_priv) do { \
558 if (((drm_i915_private_t *)dev->dev_private)->ring.ring_obj == NULL) \
559 LOCK_TEST_WITH_RETURN(dev, file_priv); \
560} while (0)
561
Eric Anholt3043c602008-10-02 12:24:47 -0700562#define I915_READ(reg) readl(dev_priv->regs + (reg))
563#define I915_WRITE(reg, val) writel(val, dev_priv->regs + (reg))
564#define I915_READ16(reg) readw(dev_priv->regs + (reg))
565#define I915_WRITE16(reg, val) writel(val, dev_priv->regs + (reg))
566#define I915_READ8(reg) readb(dev_priv->regs + (reg))
567#define I915_WRITE8(reg, val) writeb(val, dev_priv->regs + (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569#define I915_VERBOSE 0
570
571#define RING_LOCALS unsigned int outring, ringmask, outcount; \
572 volatile char *virt;
573
574#define BEGIN_LP_RING(n) do { \
575 if (I915_VERBOSE) \
Márton Németh3e684ea2008-01-24 15:58:57 +1000576 DRM_DEBUG("BEGIN_LP_RING(%d)\n", (n)); \
577 if (dev_priv->ring.space < (n)*4) \
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700578 i915_wait_ring(dev, (n)*4, __func__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 outcount = 0; \
580 outring = dev_priv->ring.tail; \
581 ringmask = dev_priv->ring.tail_mask; \
582 virt = dev_priv->ring.virtual_start; \
583} while (0)
584
585#define OUT_RING(n) do { \
586 if (I915_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
Alan Hourihanec29b6692006-08-12 16:29:24 +1000587 *(volatile unsigned int *)(virt + outring) = (n); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 outcount++; \
589 outring += 4; \
590 outring &= ringmask; \
591} while (0)
592
593#define ADVANCE_LP_RING() do { \
594 if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring); \
595 dev_priv->ring.tail = outring; \
596 dev_priv->ring.space -= outcount * 4; \
Jesse Barnes585fb112008-07-29 11:54:06 -0700597 I915_WRITE(PRB0_TAIL, outring); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598} while(0)
599
Jesse Barnes585fb112008-07-29 11:54:06 -0700600/**
601 * Reads a dword out of the status page, which is written to from the command
602 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
603 * MI_STORE_DATA_IMM.
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000604 *
Jesse Barnes585fb112008-07-29 11:54:06 -0700605 * The following dwords have a reserved meaning:
Keith Packard0cdad7e2008-10-14 17:19:38 -0700606 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
607 * 0x04: ring 0 head pointer
608 * 0x05: ring 1 head pointer (915-class)
609 * 0x06: ring 2 head pointer (915-class)
610 * 0x10-0x1b: Context status DWords (GM45)
611 * 0x1f: Last written status offset. (GM45)
Jesse Barnes585fb112008-07-29 11:54:06 -0700612 *
Keith Packard0cdad7e2008-10-14 17:19:38 -0700613 * The area from dword 0x20 to 0x3ff is available for driver usage.
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000614 */
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000615#define READ_HWSP(dev_priv, reg) (((volatile u32*)(dev_priv->hw_status_page))[reg])
Jesse Barnes585fb112008-07-29 11:54:06 -0700616#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, 5)
Keith Packard0cdad7e2008-10-14 17:19:38 -0700617#define I915_GEM_HWS_INDEX 0x20
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000618
Jesse Barnes585fb112008-07-29 11:54:06 -0700619extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000620
621#define IS_I830(dev) ((dev)->pci_device == 0x3577)
622#define IS_845G(dev) ((dev)->pci_device == 0x2562)
623#define IS_I85X(dev) ((dev)->pci_device == 0x3582)
624#define IS_I855(dev) ((dev)->pci_device == 0x3582)
625#define IS_I865G(dev) ((dev)->pci_device == 0x2572)
626
Carlos Martín4d1f7882008-01-23 16:41:17 +1000627#define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000628#define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
629#define IS_I945G(dev) ((dev)->pci_device == 0x2772)
Jesse Barnes3bf48462008-04-06 11:55:04 -0700630#define IS_I945GM(dev) ((dev)->pci_device == 0x27A2 ||\
631 (dev)->pci_device == 0x27AE)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000632#define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
633 (dev)->pci_device == 0x2982 || \
634 (dev)->pci_device == 0x2992 || \
635 (dev)->pci_device == 0x29A2 || \
636 (dev)->pci_device == 0x2A02 || \
Zhenyu Wang5f5f9d42008-01-24 16:46:36 +1000637 (dev)->pci_device == 0x2A12 || \
Zhenyu Wangd3adbc02008-06-20 12:12:56 +1000638 (dev)->pci_device == 0x2A42 || \
639 (dev)->pci_device == 0x2E02 || \
640 (dev)->pci_device == 0x2E12 || \
641 (dev)->pci_device == 0x2E22)
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000642
643#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
644
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700645#define IS_GM45(dev) ((dev)->pci_device == 0x2A42)
Zhenyu Wang5f5f9d42008-01-24 16:46:36 +1000646
Zhenyu Wangd3adbc02008-06-20 12:12:56 +1000647#define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \
648 (dev)->pci_device == 0x2E12 || \
649 (dev)->pci_device == 0x2E22)
650
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000651#define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
652 (dev)->pci_device == 0x29B2 || \
653 (dev)->pci_device == 0x29D2)
654
655#define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
656 IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
657
658#define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700659 IS_I945GM(dev) || IS_I965GM(dev) || IS_GM45(dev))
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000660
Jesse Barnesb9bfdfe2008-08-25 15:16:19 -0700661#define I915_NEED_GFX_HWS(dev) (IS_G33(dev) || IS_GM45(dev) || IS_G4X(dev))
Zhenyu Wangb39d50e2008-02-19 20:59:09 +1000662
Jesse Barnesba8bbcf2007-11-22 14:14:14 +1000663#define PRIMARY_RINGBUFFER_SIZE (128*1024)
Dave Airlie0d6aa602006-01-02 20:14:23 +1100664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#endif