drm/i915: add support for E7221 chipset
[linux-2.6/linux-2.6-openrd.git] / drivers / char / drm / i915_drv.h
blob9c3f717986117043ad9cdd6140127d9d2c2b5958
1 /* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2 */
3 /*
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
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:
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.
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.
30 #ifndef _I915_DRV_H_
31 #define _I915_DRV_H_
33 /* General customization:
36 #define DRIVER_AUTHOR "Tungsten Graphics, Inc."
38 #define DRIVER_NAME "i915"
39 #define DRIVER_DESC "Intel Graphics"
40 #define DRIVER_DATE "20060119"
42 /* Interface history:
44 * 1.1: Original.
45 * 1.2: Add Power Management
46 * 1.3: Add vblank support
47 * 1.4: Fix cmdbuffer path, add heap destroy
48 * 1.5: Add vblank pipe configuration
49 * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
50 * - Support vertical blank on secondary display pipe
52 #define DRIVER_MAJOR 1
53 #define DRIVER_MINOR 6
54 #define DRIVER_PATCHLEVEL 0
56 typedef struct _drm_i915_ring_buffer {
57 int tail_mask;
58 unsigned long Start;
59 unsigned long End;
60 unsigned long Size;
61 u8 *virtual_start;
62 int head;
63 int tail;
64 int space;
65 drm_local_map_t map;
66 } drm_i915_ring_buffer_t;
68 struct mem_block {
69 struct mem_block *next;
70 struct mem_block *prev;
71 int start;
72 int size;
73 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
76 typedef struct _drm_i915_vbl_swap {
77 struct list_head head;
78 drm_drawable_t drw_id;
79 unsigned int pipe;
80 unsigned int sequence;
81 } drm_i915_vbl_swap_t;
83 typedef struct drm_i915_private {
84 drm_local_map_t *sarea;
85 drm_local_map_t *mmio_map;
87 drm_i915_sarea_t *sarea_priv;
88 drm_i915_ring_buffer_t ring;
90 drm_dma_handle_t *status_page_dmah;
91 void *hw_status_page;
92 dma_addr_t dma_status_page;
93 unsigned long counter;
94 unsigned int status_gfx_addr;
95 drm_local_map_t hws_map;
97 unsigned int cpp;
98 int back_offset;
99 int front_offset;
100 int current_page;
101 int page_flipping;
102 int use_mi_batchbuffer_start;
104 wait_queue_head_t irq_queue;
105 atomic_t irq_received;
106 atomic_t irq_emitted;
108 int tex_lru_log_granularity;
109 int allow_batchbuffer;
110 struct mem_block *agp_heap;
111 unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
112 int vblank_pipe;
114 spinlock_t swaps_lock;
115 drm_i915_vbl_swap_t vbl_swaps;
116 unsigned int swaps_pending;
118 /* Register state */
119 u8 saveLBB;
120 u32 saveDSPACNTR;
121 u32 saveDSPBCNTR;
122 u32 savePIPEACONF;
123 u32 savePIPEBCONF;
124 u32 savePIPEASRC;
125 u32 savePIPEBSRC;
126 u32 saveFPA0;
127 u32 saveFPA1;
128 u32 saveDPLL_A;
129 u32 saveDPLL_A_MD;
130 u32 saveHTOTAL_A;
131 u32 saveHBLANK_A;
132 u32 saveHSYNC_A;
133 u32 saveVTOTAL_A;
134 u32 saveVBLANK_A;
135 u32 saveVSYNC_A;
136 u32 saveBCLRPAT_A;
137 u32 saveDSPASTRIDE;
138 u32 saveDSPASIZE;
139 u32 saveDSPAPOS;
140 u32 saveDSPABASE;
141 u32 saveDSPASURF;
142 u32 saveDSPATILEOFF;
143 u32 savePFIT_PGM_RATIOS;
144 u32 saveBLC_PWM_CTL;
145 u32 saveBLC_PWM_CTL2;
146 u32 saveFPB0;
147 u32 saveFPB1;
148 u32 saveDPLL_B;
149 u32 saveDPLL_B_MD;
150 u32 saveHTOTAL_B;
151 u32 saveHBLANK_B;
152 u32 saveHSYNC_B;
153 u32 saveVTOTAL_B;
154 u32 saveVBLANK_B;
155 u32 saveVSYNC_B;
156 u32 saveBCLRPAT_B;
157 u32 saveDSPBSTRIDE;
158 u32 saveDSPBSIZE;
159 u32 saveDSPBPOS;
160 u32 saveDSPBBASE;
161 u32 saveDSPBSURF;
162 u32 saveDSPBTILEOFF;
163 u32 saveVCLK_DIVISOR_VGA0;
164 u32 saveVCLK_DIVISOR_VGA1;
165 u32 saveVCLK_POST_DIV;
166 u32 saveVGACNTRL;
167 u32 saveADPA;
168 u32 saveLVDS;
169 u32 saveLVDSPP_ON;
170 u32 saveLVDSPP_OFF;
171 u32 saveDVOA;
172 u32 saveDVOB;
173 u32 saveDVOC;
174 u32 savePP_ON;
175 u32 savePP_OFF;
176 u32 savePP_CONTROL;
177 u32 savePP_CYCLE;
178 u32 savePFIT_CONTROL;
179 u32 save_palette_a[256];
180 u32 save_palette_b[256];
181 u32 saveFBC_CFB_BASE;
182 u32 saveFBC_LL_BASE;
183 u32 saveFBC_CONTROL;
184 u32 saveFBC_CONTROL2;
185 u32 saveSWF0[16];
186 u32 saveSWF1[16];
187 u32 saveSWF2[3];
188 u8 saveMSR;
189 u8 saveSR[8];
190 u8 saveGR[24];
191 u8 saveAR_INDEX;
192 u8 saveAR[20];
193 u8 saveDACMASK;
194 u8 saveDACDATA[256*3]; /* 256 3-byte colors */
195 u8 saveCR[36];
196 } drm_i915_private_t;
198 extern struct drm_ioctl_desc i915_ioctls[];
199 extern int i915_max_ioctl;
201 /* i915_dma.c */
202 extern void i915_kernel_lost_context(struct drm_device * dev);
203 extern int i915_driver_load(struct drm_device *, unsigned long flags);
204 extern int i915_driver_unload(struct drm_device *);
205 extern void i915_driver_lastclose(struct drm_device * dev);
206 extern void i915_driver_preclose(struct drm_device *dev,
207 struct drm_file *file_priv);
208 extern int i915_driver_device_is_agp(struct drm_device * dev);
209 extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
210 unsigned long arg);
212 /* i915_irq.c */
213 extern int i915_irq_emit(struct drm_device *dev, void *data,
214 struct drm_file *file_priv);
215 extern int i915_irq_wait(struct drm_device *dev, void *data,
216 struct drm_file *file_priv);
218 extern int i915_driver_vblank_wait(struct drm_device *dev, unsigned int *sequence);
219 extern int i915_driver_vblank_wait2(struct drm_device *dev, unsigned int *sequence);
220 extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
221 extern void i915_driver_irq_preinstall(struct drm_device * dev);
222 extern void i915_driver_irq_postinstall(struct drm_device * dev);
223 extern void i915_driver_irq_uninstall(struct drm_device * dev);
224 extern int i915_vblank_pipe_set(struct drm_device *dev, void *data,
225 struct drm_file *file_priv);
226 extern int i915_vblank_pipe_get(struct drm_device *dev, void *data,
227 struct drm_file *file_priv);
228 extern int i915_vblank_swap(struct drm_device *dev, void *data,
229 struct drm_file *file_priv);
231 /* i915_mem.c */
232 extern int i915_mem_alloc(struct drm_device *dev, void *data,
233 struct drm_file *file_priv);
234 extern int i915_mem_free(struct drm_device *dev, void *data,
235 struct drm_file *file_priv);
236 extern int i915_mem_init_heap(struct drm_device *dev, void *data,
237 struct drm_file *file_priv);
238 extern int i915_mem_destroy_heap(struct drm_device *dev, void *data,
239 struct drm_file *file_priv);
240 extern void i915_mem_takedown(struct mem_block **heap);
241 extern void i915_mem_release(struct drm_device * dev,
242 struct drm_file *file_priv, struct mem_block *heap);
244 #define I915_READ(reg) DRM_READ32(dev_priv->mmio_map, (reg))
245 #define I915_WRITE(reg,val) DRM_WRITE32(dev_priv->mmio_map, (reg), (val))
246 #define I915_READ16(reg) DRM_READ16(dev_priv->mmio_map, (reg))
247 #define I915_WRITE16(reg,val) DRM_WRITE16(dev_priv->mmio_map, (reg), (val))
249 #define I915_VERBOSE 0
251 #define RING_LOCALS unsigned int outring, ringmask, outcount; \
252 volatile char *virt;
254 #define BEGIN_LP_RING(n) do { \
255 if (I915_VERBOSE) \
256 DRM_DEBUG("BEGIN_LP_RING(%d) in %s\n", \
257 (n), __FUNCTION__); \
258 if (dev_priv->ring.space < (n)*4) \
259 i915_wait_ring(dev, (n)*4, __FUNCTION__); \
260 outcount = 0; \
261 outring = dev_priv->ring.tail; \
262 ringmask = dev_priv->ring.tail_mask; \
263 virt = dev_priv->ring.virtual_start; \
264 } while (0)
266 #define OUT_RING(n) do { \
267 if (I915_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
268 *(volatile unsigned int *)(virt + outring) = (n); \
269 outcount++; \
270 outring += 4; \
271 outring &= ringmask; \
272 } while (0)
274 #define ADVANCE_LP_RING() do { \
275 if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring); \
276 dev_priv->ring.tail = outring; \
277 dev_priv->ring.space -= outcount * 4; \
278 I915_WRITE(LP_RING + RING_TAIL, outring); \
279 } while(0)
281 extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
283 /* Extended config space */
284 #define LBB 0xf4
286 /* VGA stuff */
288 #define VGA_ST01_MDA 0x3ba
289 #define VGA_ST01_CGA 0x3da
291 #define VGA_MSR_WRITE 0x3c2
292 #define VGA_MSR_READ 0x3cc
293 #define VGA_MSR_MEM_EN (1<<1)
294 #define VGA_MSR_CGA_MODE (1<<0)
296 #define VGA_SR_INDEX 0x3c4
297 #define VGA_SR_DATA 0x3c5
299 #define VGA_AR_INDEX 0x3c0
300 #define VGA_AR_VID_EN (1<<5)
301 #define VGA_AR_DATA_WRITE 0x3c0
302 #define VGA_AR_DATA_READ 0x3c1
304 #define VGA_GR_INDEX 0x3ce
305 #define VGA_GR_DATA 0x3cf
306 /* GR05 */
307 #define VGA_GR_MEM_READ_MODE_SHIFT 3
308 #define VGA_GR_MEM_READ_MODE_PLANE 1
309 /* GR06 */
310 #define VGA_GR_MEM_MODE_MASK 0xc
311 #define VGA_GR_MEM_MODE_SHIFT 2
312 #define VGA_GR_MEM_A0000_AFFFF 0
313 #define VGA_GR_MEM_A0000_BFFFF 1
314 #define VGA_GR_MEM_B0000_B7FFF 2
315 #define VGA_GR_MEM_B0000_BFFFF 3
317 #define VGA_DACMASK 0x3c6
318 #define VGA_DACRX 0x3c7
319 #define VGA_DACWX 0x3c8
320 #define VGA_DACDATA 0x3c9
322 #define VGA_CR_INDEX_MDA 0x3b4
323 #define VGA_CR_DATA_MDA 0x3b5
324 #define VGA_CR_INDEX_CGA 0x3d4
325 #define VGA_CR_DATA_CGA 0x3d5
327 #define GFX_OP_USER_INTERRUPT ((0<<29)|(2<<23))
328 #define GFX_OP_BREAKPOINT_INTERRUPT ((0<<29)|(1<<23))
329 #define CMD_REPORT_HEAD (7<<23)
330 #define CMD_STORE_DWORD_IDX ((0x21<<23) | 0x1)
331 #define CMD_OP_BATCH_BUFFER ((0x0<<29)|(0x30<<23)|0x1)
333 #define INST_PARSER_CLIENT 0x00000000
334 #define INST_OP_FLUSH 0x02000000
335 #define INST_FLUSH_MAP_CACHE 0x00000001
337 #define BB1_START_ADDR_MASK (~0x7)
338 #define BB1_PROTECTED (1<<0)
339 #define BB1_UNPROTECTED (0<<0)
340 #define BB2_END_ADDR_MASK (~0x7)
342 /* Framebuffer compression */
343 #define FBC_CFB_BASE 0x03200 /* 4k page aligned */
344 #define FBC_LL_BASE 0x03204 /* 4k page aligned */
345 #define FBC_CONTROL 0x03208
346 #define FBC_CTL_EN (1<<31)
347 #define FBC_CTL_PERIODIC (1<<30)
348 #define FBC_CTL_INTERVAL_SHIFT (16)
349 #define FBC_CTL_UNCOMPRESSIBLE (1<<14)
350 #define FBC_CTL_STRIDE_SHIFT (5)
351 #define FBC_CTL_FENCENO (1<<0)
352 #define FBC_COMMAND 0x0320c
353 #define FBC_CMD_COMPRESS (1<<0)
354 #define FBC_STATUS 0x03210
355 #define FBC_STAT_COMPRESSING (1<<31)
356 #define FBC_STAT_COMPRESSED (1<<30)
357 #define FBC_STAT_MODIFIED (1<<29)
358 #define FBC_STAT_CURRENT_LINE (1<<0)
359 #define FBC_CONTROL2 0x03214
360 #define FBC_CTL_FENCE_DBL (0<<4)
361 #define FBC_CTL_IDLE_IMM (0<<2)
362 #define FBC_CTL_IDLE_FULL (1<<2)
363 #define FBC_CTL_IDLE_LINE (2<<2)
364 #define FBC_CTL_IDLE_DEBUG (3<<2)
365 #define FBC_CTL_CPU_FENCE (1<<1)
366 #define FBC_CTL_PLANEA (0<<0)
367 #define FBC_CTL_PLANEB (1<<0)
368 #define FBC_FENCE_OFF 0x0321b
370 #define FBC_LL_SIZE (1536)
371 #define FBC_LL_PAD (32)
373 /* Interrupt bits:
375 #define USER_INT_FLAG (1<<1)
376 #define VSYNC_PIPEB_FLAG (1<<5)
377 #define VSYNC_PIPEA_FLAG (1<<7)
378 #define HWB_OOM_FLAG (1<<13) /* binner out of memory */
380 #define I915REG_HWSTAM 0x02098
381 #define I915REG_INT_IDENTITY_R 0x020a4
382 #define I915REG_INT_MASK_R 0x020a8
383 #define I915REG_INT_ENABLE_R 0x020a0
385 #define I915REG_PIPEASTAT 0x70024
386 #define I915REG_PIPEBSTAT 0x71024
388 #define I915_VBLANK_INTERRUPT_ENABLE (1UL<<17)
389 #define I915_VBLANK_CLEAR (1UL<<1)
391 #define SRX_INDEX 0x3c4
392 #define SRX_DATA 0x3c5
393 #define SR01 1
394 #define SR01_SCREEN_OFF (1<<5)
396 #define PPCR 0x61204
397 #define PPCR_ON (1<<0)
399 #define DVOB 0x61140
400 #define DVOB_ON (1<<31)
401 #define DVOC 0x61160
402 #define DVOC_ON (1<<31)
403 #define LVDS 0x61180
404 #define LVDS_ON (1<<31)
406 #define ADPA 0x61100
407 #define ADPA_DPMS_MASK (~(3<<10))
408 #define ADPA_DPMS_ON (0<<10)
409 #define ADPA_DPMS_SUSPEND (1<<10)
410 #define ADPA_DPMS_STANDBY (2<<10)
411 #define ADPA_DPMS_OFF (3<<10)
413 #define NOPID 0x2094
414 #define LP_RING 0x2030
415 #define HP_RING 0x2040
416 /* The binner has its own ring buffer:
418 #define HWB_RING 0x2400
420 #define RING_TAIL 0x00
421 #define TAIL_ADDR 0x001FFFF8
422 #define RING_HEAD 0x04
423 #define HEAD_WRAP_COUNT 0xFFE00000
424 #define HEAD_WRAP_ONE 0x00200000
425 #define HEAD_ADDR 0x001FFFFC
426 #define RING_START 0x08
427 #define START_ADDR 0x0xFFFFF000
428 #define RING_LEN 0x0C
429 #define RING_NR_PAGES 0x001FF000
430 #define RING_REPORT_MASK 0x00000006
431 #define RING_REPORT_64K 0x00000002
432 #define RING_REPORT_128K 0x00000004
433 #define RING_NO_REPORT 0x00000000
434 #define RING_VALID_MASK 0x00000001
435 #define RING_VALID 0x00000001
436 #define RING_INVALID 0x00000000
438 /* Instruction parser error reg:
440 #define IPEIR 0x2088
442 /* Scratch pad debug 0 reg:
444 #define SCPD0 0x209c
446 /* Error status reg:
448 #define ESR 0x20b8
450 /* Secondary DMA fetch address debug reg:
452 #define DMA_FADD_S 0x20d4
454 /* Cache mode 0 reg.
455 * - Manipulating render cache behaviour is central
456 * to the concept of zone rendering, tuning this reg can help avoid
457 * unnecessary render cache reads and even writes (for z/stencil)
458 * at beginning and end of scene.
460 * - To change a bit, write to this reg with a mask bit set and the
461 * bit of interest either set or cleared. EG: (BIT<<16) | BIT to set.
463 #define Cache_Mode_0 0x2120
464 #define CM0_MASK_SHIFT 16
465 #define CM0_IZ_OPT_DISABLE (1<<6)
466 #define CM0_ZR_OPT_DISABLE (1<<5)
467 #define CM0_DEPTH_EVICT_DISABLE (1<<4)
468 #define CM0_COLOR_EVICT_DISABLE (1<<3)
469 #define CM0_DEPTH_WRITE_DISABLE (1<<1)
470 #define CM0_RC_OP_FLUSH_DISABLE (1<<0)
473 /* Graphics flush control. A CPU write flushes the GWB of all writes.
474 * The data is discarded.
476 #define GFX_FLSH_CNTL 0x2170
478 /* Binner control. Defines the location of the bin pointer list:
480 #define BINCTL 0x2420
481 #define BC_MASK (1 << 9)
483 /* Binned scene info.
485 #define BINSCENE 0x2428
486 #define BS_OP_LOAD (1 << 8)
487 #define BS_MASK (1 << 22)
489 /* Bin command parser debug reg:
491 #define BCPD 0x2480
493 /* Bin memory control debug reg:
495 #define BMCD 0x2484
497 /* Bin data cache debug reg:
499 #define BDCD 0x2488
501 /* Binner pointer cache debug reg:
503 #define BPCD 0x248c
505 /* Binner scratch pad debug reg:
507 #define BINSKPD 0x24f0
509 /* HWB scratch pad debug reg:
511 #define HWBSKPD 0x24f4
513 /* Binner memory pool reg:
515 #define BMP_BUFFER 0x2430
516 #define BMP_PAGE_SIZE_4K (0 << 10)
517 #define BMP_BUFFER_SIZE_SHIFT 1
518 #define BMP_ENABLE (1 << 0)
520 /* Get/put memory from the binner memory pool:
522 #define BMP_GET 0x2438
523 #define BMP_PUT 0x2440
524 #define BMP_OFFSET_SHIFT 5
526 /* 3D state packets:
528 #define GFX_OP_RASTER_RULES ((0x3<<29)|(0x7<<24))
530 #define GFX_OP_SCISSOR ((0x3<<29)|(0x1c<<24)|(0x10<<19))
531 #define SC_UPDATE_SCISSOR (0x1<<1)
532 #define SC_ENABLE_MASK (0x1<<0)
533 #define SC_ENABLE (0x1<<0)
535 #define GFX_OP_LOAD_INDIRECT ((0x3<<29)|(0x1d<<24)|(0x7<<16))
537 #define GFX_OP_SCISSOR_INFO ((0x3<<29)|(0x1d<<24)|(0x81<<16)|(0x1))
538 #define SCI_YMIN_MASK (0xffff<<16)
539 #define SCI_XMIN_MASK (0xffff<<0)
540 #define SCI_YMAX_MASK (0xffff<<16)
541 #define SCI_XMAX_MASK (0xffff<<0)
543 #define GFX_OP_SCISSOR_ENABLE ((0x3<<29)|(0x1c<<24)|(0x10<<19))
544 #define GFX_OP_SCISSOR_RECT ((0x3<<29)|(0x1d<<24)|(0x81<<16)|1)
545 #define GFX_OP_COLOR_FACTOR ((0x3<<29)|(0x1d<<24)|(0x1<<16)|0x0)
546 #define GFX_OP_STIPPLE ((0x3<<29)|(0x1d<<24)|(0x83<<16))
547 #define GFX_OP_MAP_INFO ((0x3<<29)|(0x1d<<24)|0x4)
548 #define GFX_OP_DESTBUFFER_VARS ((0x3<<29)|(0x1d<<24)|(0x85<<16)|0x0)
549 #define GFX_OP_DRAWRECT_INFO ((0x3<<29)|(0x1d<<24)|(0x80<<16)|(0x3))
551 #define GFX_OP_DRAWRECT_INFO_I965 ((0x7900<<16)|0x2)
553 #define SRC_COPY_BLT_CMD ((2<<29)|(0x43<<22)|4)
554 #define XY_SRC_COPY_BLT_CMD ((2<<29)|(0x53<<22)|6)
555 #define XY_SRC_COPY_BLT_WRITE_ALPHA (1<<21)
556 #define XY_SRC_COPY_BLT_WRITE_RGB (1<<20)
558 #define MI_BATCH_BUFFER ((0x30<<23)|1)
559 #define MI_BATCH_BUFFER_START (0x31<<23)
560 #define MI_BATCH_BUFFER_END (0xA<<23)
561 #define MI_BATCH_NON_SECURE (1)
562 #define MI_BATCH_NON_SECURE_I965 (1<<8)
564 #define MI_WAIT_FOR_EVENT ((0x3<<23))
565 #define MI_WAIT_FOR_PLANE_B_FLIP (1<<6)
566 #define MI_WAIT_FOR_PLANE_A_FLIP (1<<2)
567 #define MI_WAIT_FOR_PLANE_A_SCANLINES (1<<1)
569 #define MI_LOAD_SCAN_LINES_INCL ((0x12<<23))
571 #define CMD_OP_DISPLAYBUFFER_INFO ((0x0<<29)|(0x14<<23)|2)
572 #define ASYNC_FLIP (1<<22)
573 #define DISPLAY_PLANE_A (0<<20)
574 #define DISPLAY_PLANE_B (1<<20)
576 /* Display regs */
577 #define DSPACNTR 0x70180
578 #define DSPBCNTR 0x71180
579 #define DISPPLANE_SEL_PIPE_MASK (1<<24)
581 /* Define the region of interest for the binner:
583 #define CMD_OP_BIN_CONTROL ((0x3<<29)|(0x1d<<24)|(0x84<<16)|4)
585 #define CMD_OP_DESTBUFFER_INFO ((0x3<<29)|(0x1d<<24)|(0x8e<<16)|1)
587 #define CMD_MI_FLUSH (0x04 << 23)
588 #define MI_NO_WRITE_FLUSH (1 << 2)
589 #define MI_READ_FLUSH (1 << 0)
590 #define MI_EXE_FLUSH (1 << 1)
591 #define MI_END_SCENE (1 << 4) /* flush binner and incr scene count */
592 #define MI_SCENE_COUNT (1 << 3) /* just increment scene count */
594 #define BREADCRUMB_BITS 31
595 #define BREADCRUMB_MASK ((1U << BREADCRUMB_BITS) - 1)
597 #define READ_BREADCRUMB(dev_priv) (((volatile u32*)(dev_priv->hw_status_page))[5])
598 #define READ_HWSP(dev_priv, reg) (((volatile u32*)(dev_priv->hw_status_page))[reg])
600 #define BLC_PWM_CTL 0x61254
601 #define BACKLIGHT_MODULATION_FREQ_SHIFT (17)
603 #define BLC_PWM_CTL2 0x61250
605 * This is the most significant 15 bits of the number of backlight cycles in a
606 * complete cycle of the modulated backlight control.
608 * The actual value is this field multiplied by two.
610 #define BACKLIGHT_MODULATION_FREQ_MASK (0x7fff << 17)
611 #define BLM_LEGACY_MODE (1 << 16)
613 * This is the number of cycles out of the backlight modulation cycle for which
614 * the backlight is on.
616 * This field must be no greater than the number of cycles in the complete
617 * backlight modulation cycle.
619 #define BACKLIGHT_DUTY_CYCLE_SHIFT (0)
620 #define BACKLIGHT_DUTY_CYCLE_MASK (0xffff)
622 #define I915_GCFGC 0xf0
623 #define I915_LOW_FREQUENCY_ENABLE (1 << 7)
624 #define I915_DISPLAY_CLOCK_190_200_MHZ (0 << 4)
625 #define I915_DISPLAY_CLOCK_333_MHZ (4 << 4)
626 #define I915_DISPLAY_CLOCK_MASK (7 << 4)
628 #define I855_HPLLCC 0xc0
629 #define I855_CLOCK_CONTROL_MASK (3 << 0)
630 #define I855_CLOCK_133_200 (0 << 0)
631 #define I855_CLOCK_100_200 (1 << 0)
632 #define I855_CLOCK_100_133 (2 << 0)
633 #define I855_CLOCK_166_250 (3 << 0)
635 /* p317, 319
637 #define VCLK2_VCO_M 0x6008 /* treat as 16 bit? (includes msbs) */
638 #define VCLK2_VCO_N 0x600a
639 #define VCLK2_VCO_DIV_SEL 0x6012
641 #define VCLK_DIVISOR_VGA0 0x6000
642 #define VCLK_DIVISOR_VGA1 0x6004
643 #define VCLK_POST_DIV 0x6010
644 /** Selects a post divisor of 4 instead of 2. */
645 # define VGA1_PD_P2_DIV_4 (1 << 15)
646 /** Overrides the p2 post divisor field */
647 # define VGA1_PD_P1_DIV_2 (1 << 13)
648 # define VGA1_PD_P1_SHIFT 8
649 /** P1 value is 2 greater than this field */
650 # define VGA1_PD_P1_MASK (0x1f << 8)
651 /** Selects a post divisor of 4 instead of 2. */
652 # define VGA0_PD_P2_DIV_4 (1 << 7)
653 /** Overrides the p2 post divisor field */
654 # define VGA0_PD_P1_DIV_2 (1 << 5)
655 # define VGA0_PD_P1_SHIFT 0
656 /** P1 value is 2 greater than this field */
657 # define VGA0_PD_P1_MASK (0x1f << 0)
659 /* I830 CRTC registers */
660 #define HTOTAL_A 0x60000
661 #define HBLANK_A 0x60004
662 #define HSYNC_A 0x60008
663 #define VTOTAL_A 0x6000c
664 #define VBLANK_A 0x60010
665 #define VSYNC_A 0x60014
666 #define PIPEASRC 0x6001c
667 #define BCLRPAT_A 0x60020
668 #define VSYNCSHIFT_A 0x60028
670 #define HTOTAL_B 0x61000
671 #define HBLANK_B 0x61004
672 #define HSYNC_B 0x61008
673 #define VTOTAL_B 0x6100c
674 #define VBLANK_B 0x61010
675 #define VSYNC_B 0x61014
676 #define PIPEBSRC 0x6101c
677 #define BCLRPAT_B 0x61020
678 #define VSYNCSHIFT_B 0x61028
680 #define PP_STATUS 0x61200
681 # define PP_ON (1 << 31)
683 * Indicates that all dependencies of the panel are on:
685 * - PLL enabled
686 * - pipe enabled
687 * - LVDS/DVOB/DVOC on
689 # define PP_READY (1 << 30)
690 # define PP_SEQUENCE_NONE (0 << 28)
691 # define PP_SEQUENCE_ON (1 << 28)
692 # define PP_SEQUENCE_OFF (2 << 28)
693 # define PP_SEQUENCE_MASK 0x30000000
694 #define PP_CONTROL 0x61204
695 # define POWER_TARGET_ON (1 << 0)
697 #define LVDSPP_ON 0x61208
698 #define LVDSPP_OFF 0x6120c
699 #define PP_CYCLE 0x61210
701 #define PFIT_CONTROL 0x61230
702 # define PFIT_ENABLE (1 << 31)
703 # define PFIT_PIPE_MASK (3 << 29)
704 # define PFIT_PIPE_SHIFT 29
705 # define VERT_INTERP_DISABLE (0 << 10)
706 # define VERT_INTERP_BILINEAR (1 << 10)
707 # define VERT_INTERP_MASK (3 << 10)
708 # define VERT_AUTO_SCALE (1 << 9)
709 # define HORIZ_INTERP_DISABLE (0 << 6)
710 # define HORIZ_INTERP_BILINEAR (1 << 6)
711 # define HORIZ_INTERP_MASK (3 << 6)
712 # define HORIZ_AUTO_SCALE (1 << 5)
713 # define PANEL_8TO6_DITHER_ENABLE (1 << 3)
715 #define PFIT_PGM_RATIOS 0x61234
716 # define PFIT_VERT_SCALE_MASK 0xfff00000
717 # define PFIT_HORIZ_SCALE_MASK 0x0000fff0
719 #define PFIT_AUTO_RATIOS 0x61238
722 #define DPLL_A 0x06014
723 #define DPLL_B 0x06018
724 # define DPLL_VCO_ENABLE (1 << 31)
725 # define DPLL_DVO_HIGH_SPEED (1 << 30)
726 # define DPLL_SYNCLOCK_ENABLE (1 << 29)
727 # define DPLL_VGA_MODE_DIS (1 << 28)
728 # define DPLLB_MODE_DAC_SERIAL (1 << 26) /* i915 */
729 # define DPLLB_MODE_LVDS (2 << 26) /* i915 */
730 # define DPLL_MODE_MASK (3 << 26)
731 # define DPLL_DAC_SERIAL_P2_CLOCK_DIV_10 (0 << 24) /* i915 */
732 # define DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 (1 << 24) /* i915 */
733 # define DPLLB_LVDS_P2_CLOCK_DIV_14 (0 << 24) /* i915 */
734 # define DPLLB_LVDS_P2_CLOCK_DIV_7 (1 << 24) /* i915 */
735 # define DPLL_P2_CLOCK_DIV_MASK 0x03000000 /* i915 */
736 # define DPLL_FPA01_P1_POST_DIV_MASK 0x00ff0000 /* i915 */
738 * The i830 generation, in DAC/serial mode, defines p1 as two plus this
739 * bitfield, or just 2 if PLL_P1_DIVIDE_BY_TWO is set.
741 # define DPLL_FPA01_P1_POST_DIV_MASK_I830 0x001f0000
743 * The i830 generation, in LVDS mode, defines P1 as the bit number set within
744 * this field (only one bit may be set).
746 # define DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS 0x003f0000
747 # define DPLL_FPA01_P1_POST_DIV_SHIFT 16
748 # define PLL_P2_DIVIDE_BY_4 (1 << 23) /* i830, required in DVO non-gang */
749 # define PLL_P1_DIVIDE_BY_TWO (1 << 21) /* i830 */
750 # define PLL_REF_INPUT_DREFCLK (0 << 13)
751 # define PLL_REF_INPUT_TVCLKINA (1 << 13) /* i830 */
752 # define PLL_REF_INPUT_TVCLKINBC (2 << 13) /* SDVO TVCLKIN */
753 # define PLLB_REF_INPUT_SPREADSPECTRUMIN (3 << 13)
754 # define PLL_REF_INPUT_MASK (3 << 13)
755 # define PLL_LOAD_PULSE_PHASE_SHIFT 9
757 * Parallel to Serial Load Pulse phase selection.
758 * Selects the phase for the 10X DPLL clock for the PCIe
759 * digital display port. The range is 4 to 13; 10 or more
760 * is just a flip delay. The default is 6
762 # define PLL_LOAD_PULSE_PHASE_MASK (0xf << PLL_LOAD_PULSE_PHASE_SHIFT)
763 # define DISPLAY_RATE_SELECT_FPA1 (1 << 8)
766 * SDVO multiplier for 945G/GM. Not used on 965.
768 * \sa DPLL_MD_UDI_MULTIPLIER_MASK
770 # define SDVO_MULTIPLIER_MASK 0x000000ff
771 # define SDVO_MULTIPLIER_SHIFT_HIRES 4
772 # define SDVO_MULTIPLIER_SHIFT_VGA 0
774 /** @defgroup DPLL_MD
775 * @{
777 /** Pipe A SDVO/UDI clock multiplier/divider register for G965. */
778 #define DPLL_A_MD 0x0601c
779 /** Pipe B SDVO/UDI clock multiplier/divider register for G965. */
780 #define DPLL_B_MD 0x06020
782 * UDI pixel divider, controlling how many pixels are stuffed into a packet.
784 * Value is pixels minus 1. Must be set to 1 pixel for SDVO.
786 # define DPLL_MD_UDI_DIVIDER_MASK 0x3f000000
787 # define DPLL_MD_UDI_DIVIDER_SHIFT 24
788 /** UDI pixel divider for VGA, same as DPLL_MD_UDI_DIVIDER_MASK. */
789 # define DPLL_MD_VGA_UDI_DIVIDER_MASK 0x003f0000
790 # define DPLL_MD_VGA_UDI_DIVIDER_SHIFT 16
792 * SDVO/UDI pixel multiplier.
794 * SDVO requires that the bus clock rate be between 1 and 2 Ghz, and the bus
795 * clock rate is 10 times the DPLL clock. At low resolution/refresh rate
796 * modes, the bus rate would be below the limits, so SDVO allows for stuffing
797 * dummy bytes in the datastream at an increased clock rate, with both sides of
798 * the link knowing how many bytes are fill.
800 * So, for a mode with a dotclock of 65Mhz, we would want to double the clock
801 * rate to 130Mhz to get a bus rate of 1.30Ghz. The DPLL clock rate would be
802 * set to 130Mhz, and the SDVO multiplier set to 2x in this register and
803 * through an SDVO command.
805 * This register field has values of multiplication factor minus 1, with
806 * a maximum multiplier of 5 for SDVO.
808 # define DPLL_MD_UDI_MULTIPLIER_MASK 0x00003f00
809 # define DPLL_MD_UDI_MULTIPLIER_SHIFT 8
810 /** SDVO/UDI pixel multiplier for VGA, same as DPLL_MD_UDI_MULTIPLIER_MASK.
811 * This best be set to the default value (3) or the CRT won't work. No,
812 * I don't entirely understand what this does...
814 # define DPLL_MD_VGA_UDI_MULTIPLIER_MASK 0x0000003f
815 # define DPLL_MD_VGA_UDI_MULTIPLIER_SHIFT 0
816 /** @} */
818 #define DPLL_TEST 0x606c
819 # define DPLLB_TEST_SDVO_DIV_1 (0 << 22)
820 # define DPLLB_TEST_SDVO_DIV_2 (1 << 22)
821 # define DPLLB_TEST_SDVO_DIV_4 (2 << 22)
822 # define DPLLB_TEST_SDVO_DIV_MASK (3 << 22)
823 # define DPLLB_TEST_N_BYPASS (1 << 19)
824 # define DPLLB_TEST_M_BYPASS (1 << 18)
825 # define DPLLB_INPUT_BUFFER_ENABLE (1 << 16)
826 # define DPLLA_TEST_N_BYPASS (1 << 3)
827 # define DPLLA_TEST_M_BYPASS (1 << 2)
828 # define DPLLA_INPUT_BUFFER_ENABLE (1 << 0)
830 #define ADPA 0x61100
831 #define ADPA_DAC_ENABLE (1<<31)
832 #define ADPA_DAC_DISABLE 0
833 #define ADPA_PIPE_SELECT_MASK (1<<30)
834 #define ADPA_PIPE_A_SELECT 0
835 #define ADPA_PIPE_B_SELECT (1<<30)
836 #define ADPA_USE_VGA_HVPOLARITY (1<<15)
837 #define ADPA_SETS_HVPOLARITY 0
838 #define ADPA_VSYNC_CNTL_DISABLE (1<<11)
839 #define ADPA_VSYNC_CNTL_ENABLE 0
840 #define ADPA_HSYNC_CNTL_DISABLE (1<<10)
841 #define ADPA_HSYNC_CNTL_ENABLE 0
842 #define ADPA_VSYNC_ACTIVE_HIGH (1<<4)
843 #define ADPA_VSYNC_ACTIVE_LOW 0
844 #define ADPA_HSYNC_ACTIVE_HIGH (1<<3)
845 #define ADPA_HSYNC_ACTIVE_LOW 0
847 #define FPA0 0x06040
848 #define FPA1 0x06044
849 #define FPB0 0x06048
850 #define FPB1 0x0604c
851 # define FP_N_DIV_MASK 0x003f0000
852 # define FP_N_DIV_SHIFT 16
853 # define FP_M1_DIV_MASK 0x00003f00
854 # define FP_M1_DIV_SHIFT 8
855 # define FP_M2_DIV_MASK 0x0000003f
856 # define FP_M2_DIV_SHIFT 0
859 #define PORT_HOTPLUG_EN 0x61110
860 # define SDVOB_HOTPLUG_INT_EN (1 << 26)
861 # define SDVOC_HOTPLUG_INT_EN (1 << 25)
862 # define TV_HOTPLUG_INT_EN (1 << 18)
863 # define CRT_HOTPLUG_INT_EN (1 << 9)
864 # define CRT_HOTPLUG_FORCE_DETECT (1 << 3)
866 #define PORT_HOTPLUG_STAT 0x61114
867 # define CRT_HOTPLUG_INT_STATUS (1 << 11)
868 # define TV_HOTPLUG_INT_STATUS (1 << 10)
869 # define CRT_HOTPLUG_MONITOR_MASK (3 << 8)
870 # define CRT_HOTPLUG_MONITOR_COLOR (3 << 8)
871 # define CRT_HOTPLUG_MONITOR_MONO (2 << 8)
872 # define CRT_HOTPLUG_MONITOR_NONE (0 << 8)
873 # define SDVOC_HOTPLUG_INT_STATUS (1 << 7)
874 # define SDVOB_HOTPLUG_INT_STATUS (1 << 6)
876 #define SDVOB 0x61140
877 #define SDVOC 0x61160
878 #define SDVO_ENABLE (1 << 31)
879 #define SDVO_PIPE_B_SELECT (1 << 30)
880 #define SDVO_STALL_SELECT (1 << 29)
881 #define SDVO_INTERRUPT_ENABLE (1 << 26)
883 * 915G/GM SDVO pixel multiplier.
885 * Programmed value is multiplier - 1, up to 5x.
887 * \sa DPLL_MD_UDI_MULTIPLIER_MASK
889 #define SDVO_PORT_MULTIPLY_MASK (7 << 23)
890 #define SDVO_PORT_MULTIPLY_SHIFT 23
891 #define SDVO_PHASE_SELECT_MASK (15 << 19)
892 #define SDVO_PHASE_SELECT_DEFAULT (6 << 19)
893 #define SDVO_CLOCK_OUTPUT_INVERT (1 << 18)
894 #define SDVOC_GANG_MODE (1 << 16)
895 #define SDVO_BORDER_ENABLE (1 << 7)
896 #define SDVOB_PCIE_CONCURRENCY (1 << 3)
897 #define SDVO_DETECTED (1 << 2)
898 /* Bits to be preserved when writing */
899 #define SDVOB_PRESERVE_MASK ((1 << 17) | (1 << 16) | (1 << 14))
900 #define SDVOC_PRESERVE_MASK (1 << 17)
902 /** @defgroup LVDS
903 * @{
906 * This register controls the LVDS output enable, pipe selection, and data
907 * format selection.
909 * All of the clock/data pairs are force powered down by power sequencing.
911 #define LVDS 0x61180
913 * Enables the LVDS port. This bit must be set before DPLLs are enabled, as
914 * the DPLL semantics change when the LVDS is assigned to that pipe.
916 # define LVDS_PORT_EN (1 << 31)
917 /** Selects pipe B for LVDS data. Must be set on pre-965. */
918 # define LVDS_PIPEB_SELECT (1 << 30)
921 * Enables the A0-A2 data pairs and CLKA, containing 18 bits of color data per
922 * pixel.
924 # define LVDS_A0A2_CLKA_POWER_MASK (3 << 8)
925 # define LVDS_A0A2_CLKA_POWER_DOWN (0 << 8)
926 # define LVDS_A0A2_CLKA_POWER_UP (3 << 8)
928 * Controls the A3 data pair, which contains the additional LSBs for 24 bit
929 * mode. Only enabled if LVDS_A0A2_CLKA_POWER_UP also indicates it should be
930 * on.
932 # define LVDS_A3_POWER_MASK (3 << 6)
933 # define LVDS_A3_POWER_DOWN (0 << 6)
934 # define LVDS_A3_POWER_UP (3 << 6)
936 * Controls the CLKB pair. This should only be set when LVDS_B0B3_POWER_UP
937 * is set.
939 # define LVDS_CLKB_POWER_MASK (3 << 4)
940 # define LVDS_CLKB_POWER_DOWN (0 << 4)
941 # define LVDS_CLKB_POWER_UP (3 << 4)
944 * Controls the B0-B3 data pairs. This must be set to match the DPLL p2
945 * setting for whether we are in dual-channel mode. The B3 pair will
946 * additionally only be powered up when LVDS_A3_POWER_UP is set.
948 # define LVDS_B0B3_POWER_MASK (3 << 2)
949 # define LVDS_B0B3_POWER_DOWN (0 << 2)
950 # define LVDS_B0B3_POWER_UP (3 << 2)
952 #define PIPEACONF 0x70008
953 #define PIPEACONF_ENABLE (1<<31)
954 #define PIPEACONF_DISABLE 0
955 #define PIPEACONF_DOUBLE_WIDE (1<<30)
956 #define I965_PIPECONF_ACTIVE (1<<30)
957 #define PIPEACONF_SINGLE_WIDE 0
958 #define PIPEACONF_PIPE_UNLOCKED 0
959 #define PIPEACONF_PIPE_LOCKED (1<<25)
960 #define PIPEACONF_PALETTE 0
961 #define PIPEACONF_GAMMA (1<<24)
962 #define PIPECONF_FORCE_BORDER (1<<25)
963 #define PIPECONF_PROGRESSIVE (0 << 21)
964 #define PIPECONF_INTERLACE_W_FIELD_INDICATION (6 << 21)
965 #define PIPECONF_INTERLACE_FIELD_0_ONLY (7 << 21)
967 #define PIPEBCONF 0x71008
968 #define PIPEBCONF_ENABLE (1<<31)
969 #define PIPEBCONF_DISABLE 0
970 #define PIPEBCONF_DOUBLE_WIDE (1<<30)
971 #define PIPEBCONF_DISABLE 0
972 #define PIPEBCONF_GAMMA (1<<24)
973 #define PIPEBCONF_PALETTE 0
975 #define PIPEBGCMAXRED 0x71010
976 #define PIPEBGCMAXGREEN 0x71014
977 #define PIPEBGCMAXBLUE 0x71018
978 #define PIPEBSTAT 0x71024
979 #define PIPEBFRAMEHIGH 0x71040
980 #define PIPEBFRAMEPIXEL 0x71044
982 #define DSPACNTR 0x70180
983 #define DSPBCNTR 0x71180
984 #define DISPLAY_PLANE_ENABLE (1<<31)
985 #define DISPLAY_PLANE_DISABLE 0
986 #define DISPPLANE_GAMMA_ENABLE (1<<30)
987 #define DISPPLANE_GAMMA_DISABLE 0
988 #define DISPPLANE_PIXFORMAT_MASK (0xf<<26)
989 #define DISPPLANE_8BPP (0x2<<26)
990 #define DISPPLANE_15_16BPP (0x4<<26)
991 #define DISPPLANE_16BPP (0x5<<26)
992 #define DISPPLANE_32BPP_NO_ALPHA (0x6<<26)
993 #define DISPPLANE_32BPP (0x7<<26)
994 #define DISPPLANE_STEREO_ENABLE (1<<25)
995 #define DISPPLANE_STEREO_DISABLE 0
996 #define DISPPLANE_SEL_PIPE_MASK (1<<24)
997 #define DISPPLANE_SEL_PIPE_A 0
998 #define DISPPLANE_SEL_PIPE_B (1<<24)
999 #define DISPPLANE_SRC_KEY_ENABLE (1<<22)
1000 #define DISPPLANE_SRC_KEY_DISABLE 0
1001 #define DISPPLANE_LINE_DOUBLE (1<<20)
1002 #define DISPPLANE_NO_LINE_DOUBLE 0
1003 #define DISPPLANE_STEREO_POLARITY_FIRST 0
1004 #define DISPPLANE_STEREO_POLARITY_SECOND (1<<18)
1005 /* plane B only */
1006 #define DISPPLANE_ALPHA_TRANS_ENABLE (1<<15)
1007 #define DISPPLANE_ALPHA_TRANS_DISABLE 0
1008 #define DISPPLANE_SPRITE_ABOVE_DISPLAYA 0
1009 #define DISPPLANE_SPRITE_ABOVE_OVERLAY (1)
1011 #define DSPABASE 0x70184
1012 #define DSPASTRIDE 0x70188
1014 #define DSPBBASE 0x71184
1015 #define DSPBADDR DSPBBASE
1016 #define DSPBSTRIDE 0x71188
1018 #define DSPAKEYVAL 0x70194
1019 #define DSPAKEYMASK 0x70198
1021 #define DSPAPOS 0x7018C /* reserved */
1022 #define DSPASIZE 0x70190
1023 #define DSPBPOS 0x7118C
1024 #define DSPBSIZE 0x71190
1026 #define DSPASURF 0x7019C
1027 #define DSPATILEOFF 0x701A4
1029 #define DSPBSURF 0x7119C
1030 #define DSPBTILEOFF 0x711A4
1032 #define VGACNTRL 0x71400
1033 # define VGA_DISP_DISABLE (1 << 31)
1034 # define VGA_2X_MODE (1 << 30)
1035 # define VGA_PIPE_B_SELECT (1 << 29)
1038 * Some BIOS scratch area registers. The 845 (and 830?) store the amount
1039 * of video memory available to the BIOS in SWF1.
1042 #define SWF0 0x71410
1045 * 855 scratch registers.
1047 #define SWF10 0x70410
1049 #define SWF30 0x72414
1052 * Overlay registers. These are overlay registers accessed via MMIO.
1053 * Those loaded via the overlay register page are defined in i830_video.c.
1055 #define OVADD 0x30000
1057 #define DOVSTA 0x30008
1058 #define OC_BUF (0x3<<20)
1060 #define OGAMC5 0x30010
1061 #define OGAMC4 0x30014
1062 #define OGAMC3 0x30018
1063 #define OGAMC2 0x3001c
1064 #define OGAMC1 0x30020
1065 #define OGAMC0 0x30024
1067 * Palette registers
1069 #define PALETTE_A 0x0a000
1070 #define PALETTE_B 0x0a800
1072 #define IS_I830(dev) ((dev)->pci_device == 0x3577)
1073 #define IS_845G(dev) ((dev)->pci_device == 0x2562)
1074 #define IS_I85X(dev) ((dev)->pci_device == 0x3582)
1075 #define IS_I855(dev) ((dev)->pci_device == 0x3582)
1076 #define IS_I865G(dev) ((dev)->pci_device == 0x2572)
1078 #define IS_I915G(dev) ((dev)->pci_device == 0x2582 || (dev)->pci_device == 0x258a)
1079 #define IS_I915GM(dev) ((dev)->pci_device == 0x2592)
1080 #define IS_I945G(dev) ((dev)->pci_device == 0x2772)
1081 #define IS_I945GM(dev) ((dev)->pci_device == 0x27A2)
1083 #define IS_I965G(dev) ((dev)->pci_device == 0x2972 || \
1084 (dev)->pci_device == 0x2982 || \
1085 (dev)->pci_device == 0x2992 || \
1086 (dev)->pci_device == 0x29A2 || \
1087 (dev)->pci_device == 0x2A02 || \
1088 (dev)->pci_device == 0x2A12)
1090 #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
1092 #define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
1093 (dev)->pci_device == 0x29B2 || \
1094 (dev)->pci_device == 0x29D2)
1096 #define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \
1097 IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev))
1099 #define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \
1100 IS_I945GM(dev) || IS_I965GM(dev))
1102 #define PRIMARY_RINGBUFFER_SIZE (128*1024)
1104 #endif