Deleted Added
full compact
i915_drv.h (197951) i915_drv.h (203287)
1/* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2 */
3/*
4 *
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
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 *
28 */
29
30#include <sys/cdefs.h>
1/* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2 */
3/*
4 *
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
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 *
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/dev/drm/i915_drv.h 197951 2009-10-11 01:54:00Z rnoland $");
31__FBSDID("$FreeBSD: head/sys/dev/drm/i915_drv.h 203287 2010-01-31 14:25:29Z rnoland $");
32
33#ifndef _I915_DRV_H_
34#define _I915_DRV_H_
35
32
33#ifndef _I915_DRV_H_
34#define _I915_DRV_H_
35
36#include "dev/drm/drm_mm.h"
36#include "dev/drm/i915_reg.h"
37
38/* General customization:
39 */
40
41#define DRIVER_AUTHOR "Tungsten Graphics, Inc."
42
43#define DRIVER_NAME "i915"
44#define DRIVER_DESC "Intel Graphics"
45#define DRIVER_DATE "20080730"
46
47enum pipe {
48 PIPE_A = 0,
49 PIPE_B,
50};
51
52#define I915_NUM_PIPE 2
53
54/* Interface history:
55 *
56 * 1.1: Original.
57 * 1.2: Add Power Management
58 * 1.3: Add vblank support
59 * 1.4: Fix cmdbuffer path, add heap destroy
60 * 1.5: Add vblank pipe configuration
61 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
62 * - Support vertical blank on secondary display pipe
63 */
64#define DRIVER_MAJOR 1
65#define DRIVER_MINOR 6
66#define DRIVER_PATCHLEVEL 0
67
68#define WATCH_COHERENCY 0
69#define WATCH_BUF 0
70#define WATCH_EXEC 0
71#define WATCH_LRU 0
72#define WATCH_RELOC 0
73#define WATCH_INACTIVE 0
74#define WATCH_PWRITE 0
75
76typedef struct _drm_i915_ring_buffer {
77 int tail_mask;
78 unsigned long Size;
79 u8 *virtual_start;
80 int head;
81 int tail;
82 int space;
83 drm_local_map_t map;
84 struct drm_gem_object *ring_obj;
85} drm_i915_ring_buffer_t;
86
87struct mem_block {
88 struct mem_block *next;
89 struct mem_block *prev;
90 int start;
91 int size;
92 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
93};
94
95struct opregion_header;
96struct opregion_acpi;
97struct opregion_swsci;
98struct opregion_asle;
99
100struct intel_opregion {
101 struct opregion_header *header;
102 struct opregion_acpi *acpi;
103 struct opregion_swsci *swsci;
104 struct opregion_asle *asle;
105 int enabled;
106};
107
108typedef struct drm_i915_private {
109 struct drm_device *dev;
110
111 drm_local_map_t *sarea;
112 drm_local_map_t *mmio_map;
113
114 drm_i915_sarea_t *sarea_priv;
115 drm_i915_ring_buffer_t ring;
116
117 drm_dma_handle_t *status_page_dmah;
118 void *hw_status_page;
119 dma_addr_t dma_status_page;
120 uint32_t counter;
121 unsigned int status_gfx_addr;
122 drm_local_map_t hws_map;
123 struct drm_gem_object *hws_obj;
124
125 unsigned int cpp;
126 int back_offset;
127 int front_offset;
128 int current_page;
129 int page_flipping;
130
131 wait_queue_head_t irq_queue;
132 /** Protects user_irq_refcount and irq_mask_reg */
133 DRM_SPINTYPE user_irq_lock;
134 /** Refcount for i915_user_irq_get() versus i915_user_irq_put(). */
135 int user_irq_refcount;
136 /** Cached value of IER to avoid reads in updating the bitfield */
137 u32 irq_mask_reg;
138 u32 pipestat[2];
139
140 int tex_lru_log_granularity;
141 int allow_batchbuffer;
142 struct mem_block *agp_heap;
143 unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
144 int vblank_pipe;
145
146 struct intel_opregion opregion;
147
148 /* Register state */
149 u8 saveLBB;
150 u32 saveDSPACNTR;
151 u32 saveDSPBCNTR;
152 u32 saveDSPARB;
153 u32 saveRENDERSTANDBY;
154 u32 saveHWS;
155 u32 savePIPEACONF;
156 u32 savePIPEBCONF;
157 u32 savePIPEASRC;
158 u32 savePIPEBSRC;
159 u32 saveFPA0;
160 u32 saveFPA1;
161 u32 saveDPLL_A;
162 u32 saveDPLL_A_MD;
163 u32 saveHTOTAL_A;
164 u32 saveHBLANK_A;
165 u32 saveHSYNC_A;
166 u32 saveVTOTAL_A;
167 u32 saveVBLANK_A;
168 u32 saveVSYNC_A;
169 u32 saveBCLRPAT_A;
170 u32 savePIPEASTAT;
171 u32 saveDSPASTRIDE;
172 u32 saveDSPASIZE;
173 u32 saveDSPAPOS;
174 u32 saveDSPAADDR;
175 u32 saveDSPASURF;
176 u32 saveDSPATILEOFF;
177 u32 savePFIT_PGM_RATIOS;
178 u32 saveBLC_PWM_CTL;
179 u32 saveBLC_PWM_CTL2;
180 u32 saveFPB0;
181 u32 saveFPB1;
182 u32 saveDPLL_B;
183 u32 saveDPLL_B_MD;
184 u32 saveHTOTAL_B;
185 u32 saveHBLANK_B;
186 u32 saveHSYNC_B;
187 u32 saveVTOTAL_B;
188 u32 saveVBLANK_B;
189 u32 saveVSYNC_B;
190 u32 saveBCLRPAT_B;
191 u32 savePIPEBSTAT;
192 u32 saveDSPBSTRIDE;
193 u32 saveDSPBSIZE;
194 u32 saveDSPBPOS;
195 u32 saveDSPBADDR;
196 u32 saveDSPBSURF;
197 u32 saveDSPBTILEOFF;
198 u32 saveVGA0;
199 u32 saveVGA1;
200 u32 saveVGA_PD;
201 u32 saveVGACNTRL;
202 u32 saveADPA;
203 u32 saveLVDS;
204 u32 savePP_ON_DELAYS;
205 u32 savePP_OFF_DELAYS;
206 u32 saveDVOA;
207 u32 saveDVOB;
208 u32 saveDVOC;
209 u32 savePP_ON;
210 u32 savePP_OFF;
211 u32 savePP_CONTROL;
212 u32 savePP_DIVISOR;
213 u32 savePFIT_CONTROL;
214 u32 save_palette_a[256];
215 u32 save_palette_b[256];
216 u32 saveFBC_CFB_BASE;
217 u32 saveFBC_LL_BASE;
218 u32 saveFBC_CONTROL;
219 u32 saveFBC_CONTROL2;
220 u32 saveIER;
221 u32 saveIIR;
222 u32 saveIMR;
223 u32 saveCACHE_MODE_0;
224 u32 saveD_STATE;
225 u32 saveCG_2D_DIS;
226 u32 saveMI_ARB_STATE;
227 u32 saveSWF0[16];
228 u32 saveSWF1[16];
229 u32 saveSWF2[3];
230 u8 saveMSR;
231 u8 saveSR[8];
232 u8 saveGR[25];
233 u8 saveAR_INDEX;
234 u8 saveAR[21];
235 u8 saveDACMASK;
236 u8 saveCR[37];
237
238 struct {
37#include "dev/drm/i915_reg.h"
38
39/* General customization:
40 */
41
42#define DRIVER_AUTHOR "Tungsten Graphics, Inc."
43
44#define DRIVER_NAME "i915"
45#define DRIVER_DESC "Intel Graphics"
46#define DRIVER_DATE "20080730"
47
48enum pipe {
49 PIPE_A = 0,
50 PIPE_B,
51};
52
53#define I915_NUM_PIPE 2
54
55/* Interface history:
56 *
57 * 1.1: Original.
58 * 1.2: Add Power Management
59 * 1.3: Add vblank support
60 * 1.4: Fix cmdbuffer path, add heap destroy
61 * 1.5: Add vblank pipe configuration
62 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
63 * - Support vertical blank on secondary display pipe
64 */
65#define DRIVER_MAJOR 1
66#define DRIVER_MINOR 6
67#define DRIVER_PATCHLEVEL 0
68
69#define WATCH_COHERENCY 0
70#define WATCH_BUF 0
71#define WATCH_EXEC 0
72#define WATCH_LRU 0
73#define WATCH_RELOC 0
74#define WATCH_INACTIVE 0
75#define WATCH_PWRITE 0
76
77typedef struct _drm_i915_ring_buffer {
78 int tail_mask;
79 unsigned long Size;
80 u8 *virtual_start;
81 int head;
82 int tail;
83 int space;
84 drm_local_map_t map;
85 struct drm_gem_object *ring_obj;
86} drm_i915_ring_buffer_t;
87
88struct mem_block {
89 struct mem_block *next;
90 struct mem_block *prev;
91 int start;
92 int size;
93 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
94};
95
96struct opregion_header;
97struct opregion_acpi;
98struct opregion_swsci;
99struct opregion_asle;
100
101struct intel_opregion {
102 struct opregion_header *header;
103 struct opregion_acpi *acpi;
104 struct opregion_swsci *swsci;
105 struct opregion_asle *asle;
106 int enabled;
107};
108
109typedef struct drm_i915_private {
110 struct drm_device *dev;
111
112 drm_local_map_t *sarea;
113 drm_local_map_t *mmio_map;
114
115 drm_i915_sarea_t *sarea_priv;
116 drm_i915_ring_buffer_t ring;
117
118 drm_dma_handle_t *status_page_dmah;
119 void *hw_status_page;
120 dma_addr_t dma_status_page;
121 uint32_t counter;
122 unsigned int status_gfx_addr;
123 drm_local_map_t hws_map;
124 struct drm_gem_object *hws_obj;
125
126 unsigned int cpp;
127 int back_offset;
128 int front_offset;
129 int current_page;
130 int page_flipping;
131
132 wait_queue_head_t irq_queue;
133 /** Protects user_irq_refcount and irq_mask_reg */
134 DRM_SPINTYPE user_irq_lock;
135 /** Refcount for i915_user_irq_get() versus i915_user_irq_put(). */
136 int user_irq_refcount;
137 /** Cached value of IER to avoid reads in updating the bitfield */
138 u32 irq_mask_reg;
139 u32 pipestat[2];
140
141 int tex_lru_log_granularity;
142 int allow_batchbuffer;
143 struct mem_block *agp_heap;
144 unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
145 int vblank_pipe;
146
147 struct intel_opregion opregion;
148
149 /* Register state */
150 u8 saveLBB;
151 u32 saveDSPACNTR;
152 u32 saveDSPBCNTR;
153 u32 saveDSPARB;
154 u32 saveRENDERSTANDBY;
155 u32 saveHWS;
156 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;
171 u32 savePIPEASTAT;
172 u32 saveDSPASTRIDE;
173 u32 saveDSPASIZE;
174 u32 saveDSPAPOS;
175 u32 saveDSPAADDR;
176 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;
192 u32 savePIPEBSTAT;
193 u32 saveDSPBSTRIDE;
194 u32 saveDSPBSIZE;
195 u32 saveDSPBPOS;
196 u32 saveDSPBADDR;
197 u32 saveDSPBSURF;
198 u32 saveDSPBTILEOFF;
199 u32 saveVGA0;
200 u32 saveVGA1;
201 u32 saveVGA_PD;
202 u32 saveVGACNTRL;
203 u32 saveADPA;
204 u32 saveLVDS;
205 u32 savePP_ON_DELAYS;
206 u32 savePP_OFF_DELAYS;
207 u32 saveDVOA;
208 u32 saveDVOB;
209 u32 saveDVOC;
210 u32 savePP_ON;
211 u32 savePP_OFF;
212 u32 savePP_CONTROL;
213 u32 savePP_DIVISOR;
214 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;
221 u32 saveIER;
222 u32 saveIIR;
223 u32 saveIMR;
224 u32 saveCACHE_MODE_0;
225 u32 saveD_STATE;
226 u32 saveCG_2D_DIS;
227 u32 saveMI_ARB_STATE;
228 u32 saveSWF0[16];
229 u32 saveSWF1[16];
230 u32 saveSWF2[3];
231 u8 saveMSR;
232 u8 saveSR[8];
233 u8 saveGR[25];
234 u8 saveAR_INDEX;
235 u8 saveAR[21];
236 u8 saveDACMASK;
237 u8 saveCR[37];
238
239 struct {
239#ifdef __linux__
240 struct drm_mm gtt_space;
240 struct drm_mm gtt_space;
241#endif
241
242 /**
243 * List of objects currently involved in rendering from the
244 * ringbuffer.
245 *
246 * A reference is held on the buffer while on this list.
247 */
248 struct list_head active_list;
249
250 /**
251 * List of objects which are not in the ringbuffer but which
252 * still have a write_domain which needs to be flushed before
253 * unbinding.
254 *
255 * A reference is held on the buffer while on this list.
256 */
257 struct list_head flushing_list;
258
259 /**
260 * LRU list of objects which are not in the ringbuffer and
261 * are ready to unbind, but are still in the GTT.
262 *
263 * A reference is not held on the buffer while on this list,
264 * as merely being GTT-bound shouldn't prevent its being
265 * freed, and we'll pull it off the list in the free path.
266 */
267 struct list_head inactive_list;
268
269 /**
270 * List of breadcrumbs associated with GPU requests currently
271 * outstanding.
272 */
273 struct list_head request_list;
274#ifdef __linux__
275 /**
276 * We leave the user IRQ off as much as possible,
277 * but this means that requests will finish and never
278 * be retired once the system goes idle. Set a timer to
279 * fire periodically while the ring is running. When it
280 * fires, go retire requests.
281 */
282 struct delayed_work retire_work;
283#endif
284 uint32_t next_gem_seqno;
285
286 /**
287 * Waiting sequence number, if any
288 */
289 uint32_t waiting_gem_seqno;
290
291 /**
292 * Last seq seen at irq time
293 */
294 uint32_t irq_gem_seqno;
295
296 /**
297 * Flag if the X Server, and thus DRM, is not currently in
298 * control of the device.
299 *
300 * This is set between LeaveVT and EnterVT. It needs to be
301 * replaced with a semaphore. It also needs to be
302 * transitioned away from for kernel modesetting.
303 */
304 int suspended;
305
306 /**
307 * Flag if the hardware appears to be wedged.
308 *
309 * This is set when attempts to idle the device timeout.
310 * It prevents command submission from occuring and makes
311 * every pending request fail
312 */
313 int wedged;
314
315 /** Bit 6 swizzling required for X tiling */
316 uint32_t bit_6_swizzle_x;
317 /** Bit 6 swizzling required for Y tiling */
318 uint32_t bit_6_swizzle_y;
319 } mm;
320} drm_i915_private_t;
321
322enum intel_chip_family {
323 CHIP_I8XX = 0x01,
324 CHIP_I9XX = 0x02,
325 CHIP_I915 = 0x04,
326 CHIP_I965 = 0x08,
327};
328
329/** driver private structure attached to each drm_gem_object */
330struct drm_i915_gem_object {
331 struct drm_gem_object *obj;
332
333 /** Current space allocated to this object in the GTT, if any. */
334 struct drm_mm_node *gtt_space;
335
336 /** This object's place on the active/flushing/inactive lists */
337 struct list_head list;
338
339 /**
340 * This is set if the object is on the active or flushing lists
341 * (has pending rendering), and is not set if it's on inactive (ready
342 * to be unbound).
343 */
344 int active;
345
346 /**
347 * This is set if the object has been written to since last bound
348 * to the GTT
349 */
350 int dirty;
351
352 /** AGP memory structure for our GTT binding. */
353 DRM_AGP_MEM *agp_mem;
354
355 struct page **page_list;
356
357 /**
358 * Current offset of the object in GTT space.
359 *
360 * This is the same as gtt_space->start
361 */
362 uint32_t gtt_offset;
363
364 /** Boolean whether this object has a valid gtt offset. */
365 int gtt_bound;
366
367 /** How many users have pinned this object in GTT space */
368 int pin_count;
369
370 /** Breadcrumb of last rendering to the buffer. */
371 uint32_t last_rendering_seqno;
372
373 /** Current tiling mode for the object. */
374 uint32_t tiling_mode;
375
376 /** AGP mapping type (AGP_USER_MEMORY or AGP_USER_CACHED_MEMORY */
377 uint32_t agp_type;
378
379 /**
380 * Flagging of which individual pages are valid in GEM_DOMAIN_CPU when
381 * GEM_DOMAIN_CPU is not in the object's read domain.
382 */
383 uint8_t *page_cpu_valid;
384};
385
386/**
387 * Request queue structure.
388 *
389 * The request queue allows us to note sequence numbers that have been emitted
390 * and may be associated with active buffers to be retired.
391 *
392 * By keeping this list, we can avoid having to do questionable
393 * sequence-number comparisons on buffer last_rendering_seqnos, and associate
394 * an emission time with seqnos for tracking how far ahead of the GPU we are.
395 */
396struct drm_i915_gem_request {
397 /** GEM sequence number associated with this request. */
398 uint32_t seqno;
399
400 /** Time at which this request was emitted, in jiffies. */
401 unsigned long emitted_jiffies;
402
403 /** Cache domains that were flushed at the start of the request. */
404 uint32_t flush_domains;
405
406 struct list_head list;
407};
408
409struct drm_i915_file_private {
410 struct {
411 uint32_t last_gem_seqno;
412 uint32_t last_gem_throttle_seqno;
413 } mm;
414};
415
416extern struct drm_ioctl_desc i915_ioctls[];
417extern int i915_max_ioctl;
418
419 /* i915_dma.c */
420extern void i915_kernel_lost_context(struct drm_device * dev);
421extern int i915_driver_load(struct drm_device *, unsigned long flags);
422extern int i915_driver_unload(struct drm_device *);
423extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
424extern void i915_driver_lastclose(struct drm_device * dev);
425extern void i915_driver_preclose(struct drm_device *dev,
426 struct drm_file *file_priv);
427extern void i915_driver_postclose(struct drm_device *dev,
428 struct drm_file *file_priv);
429extern int i915_driver_device_is_agp(struct drm_device * dev);
430extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
431 unsigned long arg);
432extern int i915_emit_box(struct drm_device *dev,
433 struct drm_clip_rect __user *boxes,
434 int i, int DR1, int DR4);
435
436/* i915_irq.c */
437extern int i915_irq_emit(struct drm_device *dev, void *data,
438 struct drm_file *file_priv);
439extern int i915_irq_wait(struct drm_device *dev, void *data,
440 struct drm_file *file_priv);
441void i915_user_irq_get(struct drm_device *dev);
442void i915_user_irq_put(struct drm_device *dev);
443
444extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
445extern void i915_driver_irq_preinstall(struct drm_device * dev);
446extern int i915_driver_irq_postinstall(struct drm_device *dev);
447extern void i915_driver_irq_uninstall(struct drm_device * dev);
448extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
449 struct drm_file *file_priv);
450extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
451 struct drm_file *file_priv);
452extern int i915_enable_vblank(struct drm_device *dev, int crtc);
453extern void i915_disable_vblank(struct drm_device *dev, int crtc);
454extern u32 i915_get_vblank_counter(struct drm_device *dev, int crtc);
455extern u32 g45_get_vblank_counter(struct drm_device *dev, int crtc);
456extern int i915_vblank_swap(struct drm_device *dev, void *data,
457 struct drm_file *file_priv);
458
459void
460i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
461
462void
463i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
464
465
466/* i915_mem.c */
467extern int i915_mem_alloc(struct drm_device *dev, void *data,
468 struct drm_file *file_priv);
469extern int i915_mem_free(struct drm_device *dev, void *data,
470 struct drm_file *file_priv);
471extern int i915_mem_init_heap(struct drm_device *dev, void *data,
472 struct drm_file *file_priv);
473extern int i915_mem_destroy_heap(struct drm_device *dev, void *data,
474 struct drm_file *file_priv);
475extern void i915_mem_takedown(struct mem_block **heap);
476extern void i915_mem_release(struct drm_device * dev,
477 struct drm_file *file_priv, struct mem_block *heap);
478#ifdef I915_HAVE_GEM
479/* 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);
512void i915_gem_load(struct drm_device *dev);
513int i915_gem_proc_init(struct drm_minor *minor);
514void i915_gem_proc_cleanup(struct drm_minor *minor);
515int i915_gem_init_object(struct drm_gem_object *obj);
516void i915_gem_free_object(struct drm_gem_object *obj);
517int i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment);
518void i915_gem_object_unpin(struct drm_gem_object *obj);
519void i915_gem_lastclose(struct drm_device *dev);
520uint32_t i915_get_gem_seqno(struct drm_device *dev);
521void i915_gem_retire_requests(struct drm_device *dev);
522void i915_gem_retire_work_handler(struct work_struct *work);
523void i915_gem_clflush_object(struct drm_gem_object *obj);
524
525/* i915_gem_tiling.c */
526void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
527
528/* i915_gem_debug.c */
529void i915_gem_dump_object(struct drm_gem_object *obj, int len,
530 const char *where, uint32_t mark);
531#if WATCH_INACTIVE
532void i915_verify_inactive(struct drm_device *dev, char *file, int line);
533#else
534#define i915_verify_inactive(dev, file, line)
535#endif
536void i915_gem_object_check_coherency(struct drm_gem_object *obj, int handle);
537void i915_gem_dump_object(struct drm_gem_object *obj, int len,
538 const char *where, uint32_t mark);
539void i915_dump_lru(struct drm_device *dev, const char *where);
540#endif /* I915_HAVE_GEM */
541
542/* i915_suspend.c */
543extern int i915_save_state(struct drm_device *dev);
544extern int i915_restore_state(struct drm_device *dev);
545
546/* i915_opregion.c */
547extern int intel_opregion_init(struct drm_device *dev);
548extern void intel_opregion_free(struct drm_device *dev);
549extern void opregion_asle_intr(struct drm_device *dev);
550extern void opregion_enable_asle(struct drm_device *dev);
551
552/**
553 * Lock test for when it's just for synchronization of ring access.
554 *
555 * In that case, we don't need to do it when GEM is initialized as nobody else
556 * has access to the ring.
557 */
558#define RING_LOCK_TEST_WITH_RETURN(dev, file_priv) do { \
559 if (((drm_i915_private_t *)dev->dev_private)->ring.ring_obj == NULL) \
560 LOCK_TEST_WITH_RETURN(dev, file_priv); \
561} while (0)
562
563#if defined(__FreeBSD__)
564typedef boolean_t bool;
565#endif
566
567#define I915_READ(reg) DRM_READ32(dev_priv->mmio_map, (reg))
568#define I915_WRITE(reg,val) DRM_WRITE32(dev_priv->mmio_map, (reg), (val))
569#define I915_READ16(reg) DRM_READ16(dev_priv->mmio_map, (reg))
570#define I915_WRITE16(reg,val) DRM_WRITE16(dev_priv->mmio_map, (reg), (val))
571#define I915_READ8(reg) DRM_READ8(dev_priv->mmio_map, (reg))
572#define I915_WRITE8(reg,val) DRM_WRITE8(dev_priv->mmio_map, (reg), (val))
573
574#define I915_VERBOSE 0
575
576#define RING_LOCALS unsigned int outring, ringmask, outcount; \
577 volatile char *virt;
578
579#define BEGIN_LP_RING(n) do { \
580 if (I915_VERBOSE) \
581 DRM_DEBUG("BEGIN_LP_RING(%d)\n", (n)); \
582 if (dev_priv->ring.space < (n)*4) \
583 i915_wait_ring(dev, (n)*4, __func__); \
584 outcount = 0; \
585 outring = dev_priv->ring.tail; \
586 ringmask = dev_priv->ring.tail_mask; \
587 virt = dev_priv->ring.virtual_start; \
588} while (0)
589
590#define OUT_RING(n) do { \
591 if (I915_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
592 *(volatile unsigned int *)(virt + outring) = (n); \
593 outcount++; \
594 outring += 4; \
595 outring &= ringmask; \
596} while (0)
597
598#define ADVANCE_LP_RING() do { \
599 if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring); \
600 dev_priv->ring.tail = outring; \
601 dev_priv->ring.space -= outcount * 4; \
602 I915_WRITE(PRB0_TAIL, outring); \
603} while(0)
604
605/**
606 * Reads a dword out of the status page, which is written to from the command
607 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
608 * MI_STORE_DATA_IMM.
609 *
610 * The following dwords have a reserved meaning:
611 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
612 * 0x04: ring 0 head pointer
613 * 0x05: ring 1 head pointer (915-class)
614 * 0x06: ring 2 head pointer (915-class)
615 * 0x10-0x1b: Context status DWords (GM45)
616 * 0x1f: Last written status offset. (GM45)
617 *
618 * The area from dword 0x20 to 0x3ff is available for driver usage.
619 */
620#define READ_HWSP(dev_priv, reg) (((volatile u32*)(dev_priv->hw_status_page))[reg])
621#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
622#define I915_GEM_HWS_INDEX 0x20
623#define I915_BREADCRUMB_INDEX 0x21
624
625extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
626
627#define IS_I830(dev) ((dev)->pci_device == 0x3577)
628#define IS_845G(dev) ((dev)->pci_device == 0x2562)
629#define IS_I85X(dev) ((dev)->pci_device == 0x3582)
630#define IS_I855(dev) ((dev)->pci_device == 0x3582)
631#define IS_I865G(dev) ((dev)->pci_device == 0x2572)
632
633#define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a)
634#define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
635#define IS_I945G(dev) ((dev)->pci_device == 0x2772)
636#define IS_I945GM(dev) ((dev)->pci_device == 0x27A2 ||\
637 (dev)->pci_device == 0x27AE)
638#define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
639 (dev)->pci_device == 0x2982 || \
640 (dev)->pci_device == 0x2992 || \
641 (dev)->pci_device == 0x29A2 || \
642 (dev)->pci_device == 0x2A02 || \
643 (dev)->pci_device == 0x2A12 || \
644 (dev)->pci_device == 0x2A42 || \
645 (dev)->pci_device == 0x2E02 || \
646 (dev)->pci_device == 0x2E12 || \
647 (dev)->pci_device == 0x2E22 || \
648 (dev)->pci_device == 0x2E32)
649
650#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
651
652#define IS_GM45(dev) ((dev)->pci_device == 0x2A42)
653
654#define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \
655 (dev)->pci_device == 0x2E12 || \
656 (dev)->pci_device == 0x2E22 || \
657 (dev)->pci_device == 0x2E32 || \
658 IS_GM45(dev))
659
660#define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
661 (dev)->pci_device == 0x29B2 || \
662 (dev)->pci_device == 0x29D2)
663
664#define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
665 IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
666
667#define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \
668 IS_I945GM(dev) || IS_I965GM(dev) || IS_GM45(dev))
669
670#define I915_NEED_GFX_HWS(dev) (IS_G33(dev) || IS_GM45(dev) || IS_G4X(dev))
671
672#define PRIMARY_RINGBUFFER_SIZE (128*1024)
673
674#endif
242 /**
243 * List of objects currently involved in rendering from the
244 * ringbuffer.
245 *
246 * A reference is held on the buffer while on this list.
247 */
248 struct list_head active_list;
249
250 /**
251 * List of objects which are not in the ringbuffer but which
252 * still have a write_domain which needs to be flushed before
253 * unbinding.
254 *
255 * A reference is held on the buffer while on this list.
256 */
257 struct list_head flushing_list;
258
259 /**
260 * LRU list of objects which are not in the ringbuffer and
261 * are ready to unbind, but are still in the GTT.
262 *
263 * A reference is not held on the buffer while on this list,
264 * as merely being GTT-bound shouldn't prevent its being
265 * freed, and we'll pull it off the list in the free path.
266 */
267 struct list_head inactive_list;
268
269 /**
270 * List of breadcrumbs associated with GPU requests currently
271 * outstanding.
272 */
273 struct list_head request_list;
274#ifdef __linux__
275 /**
276 * We leave the user IRQ off as much as possible,
277 * but this means that requests will finish and never
278 * be retired once the system goes idle. Set a timer to
279 * fire periodically while the ring is running. When it
280 * fires, go retire requests.
281 */
282 struct delayed_work retire_work;
283#endif
284 uint32_t next_gem_seqno;
285
286 /**
287 * Waiting sequence number, if any
288 */
289 uint32_t waiting_gem_seqno;
290
291 /**
292 * Last seq seen at irq time
293 */
294 uint32_t irq_gem_seqno;
295
296 /**
297 * Flag if the X Server, and thus DRM, is not currently in
298 * control of the device.
299 *
300 * This is set between LeaveVT and EnterVT. It needs to be
301 * replaced with a semaphore. It also needs to be
302 * transitioned away from for kernel modesetting.
303 */
304 int suspended;
305
306 /**
307 * Flag if the hardware appears to be wedged.
308 *
309 * This is set when attempts to idle the device timeout.
310 * It prevents command submission from occuring and makes
311 * every pending request fail
312 */
313 int wedged;
314
315 /** Bit 6 swizzling required for X tiling */
316 uint32_t bit_6_swizzle_x;
317 /** Bit 6 swizzling required for Y tiling */
318 uint32_t bit_6_swizzle_y;
319 } mm;
320} drm_i915_private_t;
321
322enum intel_chip_family {
323 CHIP_I8XX = 0x01,
324 CHIP_I9XX = 0x02,
325 CHIP_I915 = 0x04,
326 CHIP_I965 = 0x08,
327};
328
329/** driver private structure attached to each drm_gem_object */
330struct drm_i915_gem_object {
331 struct drm_gem_object *obj;
332
333 /** Current space allocated to this object in the GTT, if any. */
334 struct drm_mm_node *gtt_space;
335
336 /** This object's place on the active/flushing/inactive lists */
337 struct list_head list;
338
339 /**
340 * This is set if the object is on the active or flushing lists
341 * (has pending rendering), and is not set if it's on inactive (ready
342 * to be unbound).
343 */
344 int active;
345
346 /**
347 * This is set if the object has been written to since last bound
348 * to the GTT
349 */
350 int dirty;
351
352 /** AGP memory structure for our GTT binding. */
353 DRM_AGP_MEM *agp_mem;
354
355 struct page **page_list;
356
357 /**
358 * Current offset of the object in GTT space.
359 *
360 * This is the same as gtt_space->start
361 */
362 uint32_t gtt_offset;
363
364 /** Boolean whether this object has a valid gtt offset. */
365 int gtt_bound;
366
367 /** How many users have pinned this object in GTT space */
368 int pin_count;
369
370 /** Breadcrumb of last rendering to the buffer. */
371 uint32_t last_rendering_seqno;
372
373 /** Current tiling mode for the object. */
374 uint32_t tiling_mode;
375
376 /** AGP mapping type (AGP_USER_MEMORY or AGP_USER_CACHED_MEMORY */
377 uint32_t agp_type;
378
379 /**
380 * Flagging of which individual pages are valid in GEM_DOMAIN_CPU when
381 * GEM_DOMAIN_CPU is not in the object's read domain.
382 */
383 uint8_t *page_cpu_valid;
384};
385
386/**
387 * Request queue structure.
388 *
389 * The request queue allows us to note sequence numbers that have been emitted
390 * and may be associated with active buffers to be retired.
391 *
392 * By keeping this list, we can avoid having to do questionable
393 * sequence-number comparisons on buffer last_rendering_seqnos, and associate
394 * an emission time with seqnos for tracking how far ahead of the GPU we are.
395 */
396struct drm_i915_gem_request {
397 /** GEM sequence number associated with this request. */
398 uint32_t seqno;
399
400 /** Time at which this request was emitted, in jiffies. */
401 unsigned long emitted_jiffies;
402
403 /** Cache domains that were flushed at the start of the request. */
404 uint32_t flush_domains;
405
406 struct list_head list;
407};
408
409struct drm_i915_file_private {
410 struct {
411 uint32_t last_gem_seqno;
412 uint32_t last_gem_throttle_seqno;
413 } mm;
414};
415
416extern struct drm_ioctl_desc i915_ioctls[];
417extern int i915_max_ioctl;
418
419 /* i915_dma.c */
420extern void i915_kernel_lost_context(struct drm_device * dev);
421extern int i915_driver_load(struct drm_device *, unsigned long flags);
422extern int i915_driver_unload(struct drm_device *);
423extern int i915_driver_open(struct drm_device *dev, struct drm_file *file_priv);
424extern void i915_driver_lastclose(struct drm_device * dev);
425extern void i915_driver_preclose(struct drm_device *dev,
426 struct drm_file *file_priv);
427extern void i915_driver_postclose(struct drm_device *dev,
428 struct drm_file *file_priv);
429extern int i915_driver_device_is_agp(struct drm_device * dev);
430extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
431 unsigned long arg);
432extern int i915_emit_box(struct drm_device *dev,
433 struct drm_clip_rect __user *boxes,
434 int i, int DR1, int DR4);
435
436/* i915_irq.c */
437extern int i915_irq_emit(struct drm_device *dev, void *data,
438 struct drm_file *file_priv);
439extern int i915_irq_wait(struct drm_device *dev, void *data,
440 struct drm_file *file_priv);
441void i915_user_irq_get(struct drm_device *dev);
442void i915_user_irq_put(struct drm_device *dev);
443
444extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
445extern void i915_driver_irq_preinstall(struct drm_device * dev);
446extern int i915_driver_irq_postinstall(struct drm_device *dev);
447extern void i915_driver_irq_uninstall(struct drm_device * dev);
448extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
449 struct drm_file *file_priv);
450extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
451 struct drm_file *file_priv);
452extern int i915_enable_vblank(struct drm_device *dev, int crtc);
453extern void i915_disable_vblank(struct drm_device *dev, int crtc);
454extern u32 i915_get_vblank_counter(struct drm_device *dev, int crtc);
455extern u32 g45_get_vblank_counter(struct drm_device *dev, int crtc);
456extern int i915_vblank_swap(struct drm_device *dev, void *data,
457 struct drm_file *file_priv);
458
459void
460i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
461
462void
463i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask);
464
465
466/* i915_mem.c */
467extern int i915_mem_alloc(struct drm_device *dev, void *data,
468 struct drm_file *file_priv);
469extern int i915_mem_free(struct drm_device *dev, void *data,
470 struct drm_file *file_priv);
471extern int i915_mem_init_heap(struct drm_device *dev, void *data,
472 struct drm_file *file_priv);
473extern int i915_mem_destroy_heap(struct drm_device *dev, void *data,
474 struct drm_file *file_priv);
475extern void i915_mem_takedown(struct mem_block **heap);
476extern void i915_mem_release(struct drm_device * dev,
477 struct drm_file *file_priv, struct mem_block *heap);
478#ifdef I915_HAVE_GEM
479/* 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);
512void i915_gem_load(struct drm_device *dev);
513int i915_gem_proc_init(struct drm_minor *minor);
514void i915_gem_proc_cleanup(struct drm_minor *minor);
515int i915_gem_init_object(struct drm_gem_object *obj);
516void i915_gem_free_object(struct drm_gem_object *obj);
517int i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment);
518void i915_gem_object_unpin(struct drm_gem_object *obj);
519void i915_gem_lastclose(struct drm_device *dev);
520uint32_t i915_get_gem_seqno(struct drm_device *dev);
521void i915_gem_retire_requests(struct drm_device *dev);
522void i915_gem_retire_work_handler(struct work_struct *work);
523void i915_gem_clflush_object(struct drm_gem_object *obj);
524
525/* i915_gem_tiling.c */
526void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
527
528/* i915_gem_debug.c */
529void i915_gem_dump_object(struct drm_gem_object *obj, int len,
530 const char *where, uint32_t mark);
531#if WATCH_INACTIVE
532void i915_verify_inactive(struct drm_device *dev, char *file, int line);
533#else
534#define i915_verify_inactive(dev, file, line)
535#endif
536void i915_gem_object_check_coherency(struct drm_gem_object *obj, int handle);
537void i915_gem_dump_object(struct drm_gem_object *obj, int len,
538 const char *where, uint32_t mark);
539void i915_dump_lru(struct drm_device *dev, const char *where);
540#endif /* I915_HAVE_GEM */
541
542/* i915_suspend.c */
543extern int i915_save_state(struct drm_device *dev);
544extern int i915_restore_state(struct drm_device *dev);
545
546/* i915_opregion.c */
547extern int intel_opregion_init(struct drm_device *dev);
548extern void intel_opregion_free(struct drm_device *dev);
549extern void opregion_asle_intr(struct drm_device *dev);
550extern void opregion_enable_asle(struct drm_device *dev);
551
552/**
553 * Lock test for when it's just for synchronization of ring access.
554 *
555 * In that case, we don't need to do it when GEM is initialized as nobody else
556 * has access to the ring.
557 */
558#define RING_LOCK_TEST_WITH_RETURN(dev, file_priv) do { \
559 if (((drm_i915_private_t *)dev->dev_private)->ring.ring_obj == NULL) \
560 LOCK_TEST_WITH_RETURN(dev, file_priv); \
561} while (0)
562
563#if defined(__FreeBSD__)
564typedef boolean_t bool;
565#endif
566
567#define I915_READ(reg) DRM_READ32(dev_priv->mmio_map, (reg))
568#define I915_WRITE(reg,val) DRM_WRITE32(dev_priv->mmio_map, (reg), (val))
569#define I915_READ16(reg) DRM_READ16(dev_priv->mmio_map, (reg))
570#define I915_WRITE16(reg,val) DRM_WRITE16(dev_priv->mmio_map, (reg), (val))
571#define I915_READ8(reg) DRM_READ8(dev_priv->mmio_map, (reg))
572#define I915_WRITE8(reg,val) DRM_WRITE8(dev_priv->mmio_map, (reg), (val))
573
574#define I915_VERBOSE 0
575
576#define RING_LOCALS unsigned int outring, ringmask, outcount; \
577 volatile char *virt;
578
579#define BEGIN_LP_RING(n) do { \
580 if (I915_VERBOSE) \
581 DRM_DEBUG("BEGIN_LP_RING(%d)\n", (n)); \
582 if (dev_priv->ring.space < (n)*4) \
583 i915_wait_ring(dev, (n)*4, __func__); \
584 outcount = 0; \
585 outring = dev_priv->ring.tail; \
586 ringmask = dev_priv->ring.tail_mask; \
587 virt = dev_priv->ring.virtual_start; \
588} while (0)
589
590#define OUT_RING(n) do { \
591 if (I915_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
592 *(volatile unsigned int *)(virt + outring) = (n); \
593 outcount++; \
594 outring += 4; \
595 outring &= ringmask; \
596} while (0)
597
598#define ADVANCE_LP_RING() do { \
599 if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring); \
600 dev_priv->ring.tail = outring; \
601 dev_priv->ring.space -= outcount * 4; \
602 I915_WRITE(PRB0_TAIL, outring); \
603} while(0)
604
605/**
606 * Reads a dword out of the status page, which is written to from the command
607 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
608 * MI_STORE_DATA_IMM.
609 *
610 * The following dwords have a reserved meaning:
611 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
612 * 0x04: ring 0 head pointer
613 * 0x05: ring 1 head pointer (915-class)
614 * 0x06: ring 2 head pointer (915-class)
615 * 0x10-0x1b: Context status DWords (GM45)
616 * 0x1f: Last written status offset. (GM45)
617 *
618 * The area from dword 0x20 to 0x3ff is available for driver usage.
619 */
620#define READ_HWSP(dev_priv, reg) (((volatile u32*)(dev_priv->hw_status_page))[reg])
621#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
622#define I915_GEM_HWS_INDEX 0x20
623#define I915_BREADCRUMB_INDEX 0x21
624
625extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
626
627#define IS_I830(dev) ((dev)->pci_device == 0x3577)
628#define IS_845G(dev) ((dev)->pci_device == 0x2562)
629#define IS_I85X(dev) ((dev)->pci_device == 0x3582)
630#define IS_I855(dev) ((dev)->pci_device == 0x3582)
631#define IS_I865G(dev) ((dev)->pci_device == 0x2572)
632
633#define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a)
634#define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
635#define IS_I945G(dev) ((dev)->pci_device == 0x2772)
636#define IS_I945GM(dev) ((dev)->pci_device == 0x27A2 ||\
637 (dev)->pci_device == 0x27AE)
638#define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
639 (dev)->pci_device == 0x2982 || \
640 (dev)->pci_device == 0x2992 || \
641 (dev)->pci_device == 0x29A2 || \
642 (dev)->pci_device == 0x2A02 || \
643 (dev)->pci_device == 0x2A12 || \
644 (dev)->pci_device == 0x2A42 || \
645 (dev)->pci_device == 0x2E02 || \
646 (dev)->pci_device == 0x2E12 || \
647 (dev)->pci_device == 0x2E22 || \
648 (dev)->pci_device == 0x2E32)
649
650#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
651
652#define IS_GM45(dev) ((dev)->pci_device == 0x2A42)
653
654#define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \
655 (dev)->pci_device == 0x2E12 || \
656 (dev)->pci_device == 0x2E22 || \
657 (dev)->pci_device == 0x2E32 || \
658 IS_GM45(dev))
659
660#define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
661 (dev)->pci_device == 0x29B2 || \
662 (dev)->pci_device == 0x29D2)
663
664#define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
665 IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
666
667#define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \
668 IS_I945GM(dev) || IS_I965GM(dev) || IS_GM45(dev))
669
670#define I915_NEED_GFX_HWS(dev) (IS_G33(dev) || IS_GM45(dev) || IS_G4X(dev))
671
672#define PRIMARY_RINGBUFFER_SIZE (128*1024)
673
674#endif