diff options
Diffstat (limited to 'drivers/char/drm/i915_drv.h')
-rw-r--r-- | drivers/char/drm/i915_drv.h | 790 |
1 files changed, 789 insertions, 1 deletions
diff --git a/drivers/char/drm/i915_drv.h b/drivers/char/drm/i915_drv.h index f8cc71915c8e..661e2f571195 100644 --- a/drivers/char/drm/i915_drv.h +++ b/drivers/char/drm/i915_drv.h | |||
@@ -114,6 +114,85 @@ typedef struct drm_i915_private { | |||
114 | spinlock_t swaps_lock; | 114 | spinlock_t swaps_lock; |
115 | drm_i915_vbl_swap_t vbl_swaps; | 115 | drm_i915_vbl_swap_t vbl_swaps; |
116 | unsigned int swaps_pending; | 116 | unsigned int swaps_pending; |
117 | |||
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]; | ||
117 | } drm_i915_private_t; | 196 | } drm_i915_private_t; |
118 | 197 | ||
119 | extern struct drm_ioctl_desc i915_ioctls[]; | 198 | extern struct drm_ioctl_desc i915_ioctls[]; |
@@ -122,6 +201,7 @@ extern int i915_max_ioctl; | |||
122 | /* i915_dma.c */ | 201 | /* i915_dma.c */ |
123 | extern void i915_kernel_lost_context(struct drm_device * dev); | 202 | extern void i915_kernel_lost_context(struct drm_device * dev); |
124 | extern int i915_driver_load(struct drm_device *, unsigned long flags); | 203 | extern int i915_driver_load(struct drm_device *, unsigned long flags); |
204 | extern int i915_driver_unload(struct drm_device *); | ||
125 | extern void i915_driver_lastclose(struct drm_device * dev); | 205 | extern void i915_driver_lastclose(struct drm_device * dev); |
126 | extern void i915_driver_preclose(struct drm_device *dev, | 206 | extern void i915_driver_preclose(struct drm_device *dev, |
127 | struct drm_file *file_priv); | 207 | struct drm_file *file_priv); |
@@ -200,6 +280,50 @@ extern void i915_mem_release(struct drm_device * dev, | |||
200 | 280 | ||
201 | extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | 281 | extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); |
202 | 282 | ||
283 | /* Extended config space */ | ||
284 | #define LBB 0xf4 | ||
285 | |||
286 | /* VGA stuff */ | ||
287 | |||
288 | #define VGA_ST01_MDA 0x3ba | ||
289 | #define VGA_ST01_CGA 0x3da | ||
290 | |||
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) | ||
295 | |||
296 | #define VGA_SR_INDEX 0x3c4 | ||
297 | #define VGA_SR_DATA 0x3c5 | ||
298 | |||
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 | ||
303 | |||
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 | ||
316 | |||
317 | #define VGA_DACMASK 0x3c6 | ||
318 | #define VGA_DACRX 0x3c7 | ||
319 | #define VGA_DACWX 0x3c8 | ||
320 | #define VGA_DACDATA 0x3c9 | ||
321 | |||
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 | ||
326 | |||
203 | #define GFX_OP_USER_INTERRUPT ((0<<29)|(2<<23)) | 327 | #define GFX_OP_USER_INTERRUPT ((0<<29)|(2<<23)) |
204 | #define GFX_OP_BREAKPOINT_INTERRUPT ((0<<29)|(1<<23)) | 328 | #define GFX_OP_BREAKPOINT_INTERRUPT ((0<<29)|(1<<23)) |
205 | #define CMD_REPORT_HEAD (7<<23) | 329 | #define CMD_REPORT_HEAD (7<<23) |
@@ -215,6 +339,44 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
215 | #define BB1_UNPROTECTED (0<<0) | 339 | #define BB1_UNPROTECTED (0<<0) |
216 | #define BB2_END_ADDR_MASK (~0x7) | 340 | #define BB2_END_ADDR_MASK (~0x7) |
217 | 341 | ||
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 | ||
369 | |||
370 | #define FBC_LL_SIZE (1536) | ||
371 | #define FBC_LL_PAD (32) | ||
372 | |||
373 | /* Interrupt bits: | ||
374 | */ | ||
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 */ | ||
379 | |||
218 | #define I915REG_HWSTAM 0x02098 | 380 | #define I915REG_HWSTAM 0x02098 |
219 | #define I915REG_INT_IDENTITY_R 0x020a4 | 381 | #define I915REG_INT_IDENTITY_R 0x020a4 |
220 | #define I915REG_INT_MASK_R 0x020a8 | 382 | #define I915REG_INT_MASK_R 0x020a8 |
@@ -251,6 +413,10 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
251 | #define NOPID 0x2094 | 413 | #define NOPID 0x2094 |
252 | #define LP_RING 0x2030 | 414 | #define LP_RING 0x2030 |
253 | #define HP_RING 0x2040 | 415 | #define HP_RING 0x2040 |
416 | /* The binner has its own ring buffer: | ||
417 | */ | ||
418 | #define HWB_RING 0x2400 | ||
419 | |||
254 | #define RING_TAIL 0x00 | 420 | #define RING_TAIL 0x00 |
255 | #define TAIL_ADDR 0x001FFFF8 | 421 | #define TAIL_ADDR 0x001FFFF8 |
256 | #define RING_HEAD 0x04 | 422 | #define RING_HEAD 0x04 |
@@ -269,11 +435,105 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
269 | #define RING_VALID 0x00000001 | 435 | #define RING_VALID 0x00000001 |
270 | #define RING_INVALID 0x00000000 | 436 | #define RING_INVALID 0x00000000 |
271 | 437 | ||
438 | /* Instruction parser error reg: | ||
439 | */ | ||
440 | #define IPEIR 0x2088 | ||
441 | |||
442 | /* Scratch pad debug 0 reg: | ||
443 | */ | ||
444 | #define SCPD0 0x209c | ||
445 | |||
446 | /* Error status reg: | ||
447 | */ | ||
448 | #define ESR 0x20b8 | ||
449 | |||
450 | /* Secondary DMA fetch address debug reg: | ||
451 | */ | ||
452 | #define DMA_FADD_S 0x20d4 | ||
453 | |||
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. | ||
459 | * | ||
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. | ||
462 | */ | ||
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) | ||
471 | |||
472 | |||
473 | /* Graphics flush control. A CPU write flushes the GWB of all writes. | ||
474 | * The data is discarded. | ||
475 | */ | ||
476 | #define GFX_FLSH_CNTL 0x2170 | ||
477 | |||
478 | /* Binner control. Defines the location of the bin pointer list: | ||
479 | */ | ||
480 | #define BINCTL 0x2420 | ||
481 | #define BC_MASK (1 << 9) | ||
482 | |||
483 | /* Binned scene info. | ||
484 | */ | ||
485 | #define BINSCENE 0x2428 | ||
486 | #define BS_OP_LOAD (1 << 8) | ||
487 | #define BS_MASK (1 << 22) | ||
488 | |||
489 | /* Bin command parser debug reg: | ||
490 | */ | ||
491 | #define BCPD 0x2480 | ||
492 | |||
493 | /* Bin memory control debug reg: | ||
494 | */ | ||
495 | #define BMCD 0x2484 | ||
496 | |||
497 | /* Bin data cache debug reg: | ||
498 | */ | ||
499 | #define BDCD 0x2488 | ||
500 | |||
501 | /* Binner pointer cache debug reg: | ||
502 | */ | ||
503 | #define BPCD 0x248c | ||
504 | |||
505 | /* Binner scratch pad debug reg: | ||
506 | */ | ||
507 | #define BINSKPD 0x24f0 | ||
508 | |||
509 | /* HWB scratch pad debug reg: | ||
510 | */ | ||
511 | #define HWBSKPD 0x24f4 | ||
512 | |||
513 | /* Binner memory pool reg: | ||
514 | */ | ||
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) | ||
519 | |||
520 | /* Get/put memory from the binner memory pool: | ||
521 | */ | ||
522 | #define BMP_GET 0x2438 | ||
523 | #define BMP_PUT 0x2440 | ||
524 | #define BMP_OFFSET_SHIFT 5 | ||
525 | |||
526 | /* 3D state packets: | ||
527 | */ | ||
528 | #define GFX_OP_RASTER_RULES ((0x3<<29)|(0x7<<24)) | ||
529 | |||
272 | #define GFX_OP_SCISSOR ((0x3<<29)|(0x1c<<24)|(0x10<<19)) | 530 | #define GFX_OP_SCISSOR ((0x3<<29)|(0x1c<<24)|(0x10<<19)) |
273 | #define SC_UPDATE_SCISSOR (0x1<<1) | 531 | #define SC_UPDATE_SCISSOR (0x1<<1) |
274 | #define SC_ENABLE_MASK (0x1<<0) | 532 | #define SC_ENABLE_MASK (0x1<<0) |
275 | #define SC_ENABLE (0x1<<0) | 533 | #define SC_ENABLE (0x1<<0) |
276 | 534 | ||
535 | #define GFX_OP_LOAD_INDIRECT ((0x3<<29)|(0x1d<<24)|(0x7<<16)) | ||
536 | |||
277 | #define GFX_OP_SCISSOR_INFO ((0x3<<29)|(0x1d<<24)|(0x81<<16)|(0x1)) | 537 | #define GFX_OP_SCISSOR_INFO ((0x3<<29)|(0x1d<<24)|(0x81<<16)|(0x1)) |
278 | #define SCI_YMIN_MASK (0xffff<<16) | 538 | #define SCI_YMIN_MASK (0xffff<<16) |
279 | #define SCI_XMIN_MASK (0xffff<<0) | 539 | #define SCI_XMIN_MASK (0xffff<<0) |
@@ -290,6 +550,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
290 | 550 | ||
291 | #define GFX_OP_DRAWRECT_INFO_I965 ((0x7900<<16)|0x2) | 551 | #define GFX_OP_DRAWRECT_INFO_I965 ((0x7900<<16)|0x2) |
292 | 552 | ||
553 | #define SRC_COPY_BLT_CMD ((2<<29)|(0x43<<22)|4) | ||
293 | #define XY_SRC_COPY_BLT_CMD ((2<<29)|(0x53<<22)|6) | 554 | #define XY_SRC_COPY_BLT_CMD ((2<<29)|(0x53<<22)|6) |
294 | #define XY_SRC_COPY_BLT_WRITE_ALPHA (1<<21) | 555 | #define XY_SRC_COPY_BLT_WRITE_ALPHA (1<<21) |
295 | #define XY_SRC_COPY_BLT_WRITE_RGB (1<<20) | 556 | #define XY_SRC_COPY_BLT_WRITE_RGB (1<<20) |
@@ -301,6 +562,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
301 | #define MI_BATCH_NON_SECURE_I965 (1<<8) | 562 | #define MI_BATCH_NON_SECURE_I965 (1<<8) |
302 | 563 | ||
303 | #define MI_WAIT_FOR_EVENT ((0x3<<23)) | 564 | #define MI_WAIT_FOR_EVENT ((0x3<<23)) |
565 | #define MI_WAIT_FOR_PLANE_B_FLIP (1<<6) | ||
304 | #define MI_WAIT_FOR_PLANE_A_FLIP (1<<2) | 566 | #define MI_WAIT_FOR_PLANE_A_FLIP (1<<2) |
305 | #define MI_WAIT_FOR_PLANE_A_SCANLINES (1<<1) | 567 | #define MI_WAIT_FOR_PLANE_A_SCANLINES (1<<1) |
306 | 568 | ||
@@ -308,9 +570,535 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
308 | 570 | ||
309 | #define CMD_OP_DISPLAYBUFFER_INFO ((0x0<<29)|(0x14<<23)|2) | 571 | #define CMD_OP_DISPLAYBUFFER_INFO ((0x0<<29)|(0x14<<23)|2) |
310 | #define ASYNC_FLIP (1<<22) | 572 | #define ASYNC_FLIP (1<<22) |
573 | #define DISPLAY_PLANE_A (0<<20) | ||
574 | #define DISPLAY_PLANE_B (1<<20) | ||
575 | |||
576 | /* Display regs */ | ||
577 | #define DSPACNTR 0x70180 | ||
578 | #define DSPBCNTR 0x71180 | ||
579 | #define DISPPLANE_SEL_PIPE_MASK (1<<24) | ||
580 | |||
581 | /* Define the region of interest for the binner: | ||
582 | */ | ||
583 | #define CMD_OP_BIN_CONTROL ((0x3<<29)|(0x1d<<24)|(0x84<<16)|4) | ||
311 | 584 | ||
312 | #define CMD_OP_DESTBUFFER_INFO ((0x3<<29)|(0x1d<<24)|(0x8e<<16)|1) | 585 | #define CMD_OP_DESTBUFFER_INFO ((0x3<<29)|(0x1d<<24)|(0x8e<<16)|1) |
313 | 586 | ||
314 | #define READ_BREADCRUMB(dev_priv) (((u32 *)(dev_priv->hw_status_page))[5]) | 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 */ | ||
593 | |||
594 | #define BREADCRUMB_BITS 31 | ||
595 | #define BREADCRUMB_MASK ((1U << BREADCRUMB_BITS) - 1) | ||
596 | |||
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]) | ||
599 | |||
600 | #define BLC_PWM_CTL 0x61254 | ||
601 | #define BACKLIGHT_MODULATION_FREQ_SHIFT (17) | ||
602 | |||
603 | #define BLC_PWM_CTL2 0x61250 | ||
604 | /** | ||
605 | * This is the most significant 15 bits of the number of backlight cycles in a | ||
606 | * complete cycle of the modulated backlight control. | ||
607 | * | ||
608 | * The actual value is this field multiplied by two. | ||
609 | */ | ||
610 | #define BACKLIGHT_MODULATION_FREQ_MASK (0x7fff << 17) | ||
611 | #define BLM_LEGACY_MODE (1 << 16) | ||
612 | /** | ||
613 | * This is the number of cycles out of the backlight modulation cycle for which | ||
614 | * the backlight is on. | ||
615 | * | ||
616 | * This field must be no greater than the number of cycles in the complete | ||
617 | * backlight modulation cycle. | ||
618 | */ | ||
619 | #define BACKLIGHT_DUTY_CYCLE_SHIFT (0) | ||
620 | #define BACKLIGHT_DUTY_CYCLE_MASK (0xffff) | ||
621 | |||
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) | ||
627 | |||
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) | ||
634 | |||
635 | /* p317, 319 | ||
636 | */ | ||
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 | ||
640 | |||
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) | ||
658 | |||
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 | ||
669 | |||
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 | ||
679 | |||
680 | #define PP_STATUS 0x61200 | ||
681 | # define PP_ON (1 << 31) | ||
682 | /** | ||
683 | * Indicates that all dependencies of the panel are on: | ||
684 | * | ||
685 | * - PLL enabled | ||
686 | * - pipe enabled | ||
687 | * - LVDS/DVOB/DVOC on | ||
688 | */ | ||
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) | ||
696 | |||
697 | #define LVDSPP_ON 0x61208 | ||
698 | #define LVDSPP_OFF 0x6120c | ||
699 | #define PP_CYCLE 0x61210 | ||
700 | |||
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) | ||
714 | |||
715 | #define PFIT_PGM_RATIOS 0x61234 | ||
716 | # define PFIT_VERT_SCALE_MASK 0xfff00000 | ||
717 | # define PFIT_HORIZ_SCALE_MASK 0x0000fff0 | ||
718 | |||
719 | #define PFIT_AUTO_RATIOS 0x61238 | ||
720 | |||
721 | |||
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 */ | ||
737 | /** | ||
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. | ||
740 | */ | ||
741 | # define DPLL_FPA01_P1_POST_DIV_MASK_I830 0x001f0000 | ||
742 | /** | ||
743 | * The i830 generation, in LVDS mode, defines P1 as the bit number set within | ||
744 | * this field (only one bit may be set). | ||
745 | */ | ||
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 | ||
756 | /* | ||
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 | ||
761 | */ | ||
762 | # define PLL_LOAD_PULSE_PHASE_MASK (0xf << PLL_LOAD_PULSE_PHASE_SHIFT) | ||
763 | # define DISPLAY_RATE_SELECT_FPA1 (1 << 8) | ||
764 | |||
765 | /** | ||
766 | * SDVO multiplier for 945G/GM. Not used on 965. | ||
767 | * | ||
768 | * \sa DPLL_MD_UDI_MULTIPLIER_MASK | ||
769 | */ | ||
770 | # define SDVO_MULTIPLIER_MASK 0x000000ff | ||
771 | # define SDVO_MULTIPLIER_SHIFT_HIRES 4 | ||
772 | # define SDVO_MULTIPLIER_SHIFT_VGA 0 | ||
773 | |||
774 | /** @defgroup DPLL_MD | ||
775 | * @{ | ||
776 | */ | ||
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 | ||
781 | /** | ||
782 | * UDI pixel divider, controlling how many pixels are stuffed into a packet. | ||
783 | * | ||
784 | * Value is pixels minus 1. Must be set to 1 pixel for SDVO. | ||
785 | */ | ||
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 | ||
791 | /** | ||
792 | * SDVO/UDI pixel multiplier. | ||
793 | * | ||
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. | ||
799 | * | ||
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. | ||
804 | * | ||
805 | * This register field has values of multiplication factor minus 1, with | ||
806 | * a maximum multiplier of 5 for SDVO. | ||
807 | */ | ||
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... | ||
813 | */ | ||
814 | # define DPLL_MD_VGA_UDI_MULTIPLIER_MASK 0x0000003f | ||
815 | # define DPLL_MD_VGA_UDI_MULTIPLIER_SHIFT 0 | ||
816 | /** @} */ | ||
817 | |||
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) | ||
829 | |||
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 | ||
846 | |||
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 | ||
857 | |||
858 | |||
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) | ||
865 | |||
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) | ||
875 | |||
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) | ||
882 | /** | ||
883 | * 915G/GM SDVO pixel multiplier. | ||
884 | * | ||
885 | * Programmed value is multiplier - 1, up to 5x. | ||
886 | * | ||
887 | * \sa DPLL_MD_UDI_MULTIPLIER_MASK | ||
888 | */ | ||
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) | ||
901 | |||
902 | /** @defgroup LVDS | ||
903 | * @{ | ||
904 | */ | ||
905 | /** | ||
906 | * This register controls the LVDS output enable, pipe selection, and data | ||
907 | * format selection. | ||
908 | * | ||
909 | * All of the clock/data pairs are force powered down by power sequencing. | ||
910 | */ | ||
911 | #define LVDS 0x61180 | ||
912 | /** | ||
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. | ||
915 | */ | ||
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) | ||
919 | |||
920 | /** | ||
921 | * Enables the A0-A2 data pairs and CLKA, containing 18 bits of color data per | ||
922 | * pixel. | ||
923 | */ | ||
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) | ||
927 | /** | ||
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. | ||
931 | */ | ||
932 | # define LVDS_A3_POWER_MASK (3 << 6) | ||
933 | # define LVDS_A3_POWER_DOWN (0 << 6) | ||
934 | # define LVDS_A3_POWER_UP (3 << 6) | ||
935 | /** | ||
936 | * Controls the CLKB pair. This should only be set when LVDS_B0B3_POWER_UP | ||
937 | * is set. | ||
938 | */ | ||
939 | # define LVDS_CLKB_POWER_MASK (3 << 4) | ||
940 | # define LVDS_CLKB_POWER_DOWN (0 << 4) | ||
941 | # define LVDS_CLKB_POWER_UP (3 << 4) | ||
942 | |||
943 | /** | ||
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. | ||
947 | */ | ||
948 | # define LVDS_B0B3_POWER_MASK (3 << 2) | ||
949 | # define LVDS_B0B3_POWER_DOWN (0 << 2) | ||
950 | # define LVDS_B0B3_POWER_UP (3 << 2) | ||
951 | |||
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) | ||
966 | |||
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 | ||
974 | |||
975 | #define PIPEBGCMAXRED 0x71010 | ||
976 | #define PIPEBGCMAXGREEN 0x71014 | ||
977 | #define PIPEBGCMAXBLUE 0x71018 | ||
978 | #define PIPEBSTAT 0x71024 | ||
979 | #define PIPEBFRAMEHIGH 0x71040 | ||
980 | #define PIPEBFRAMEPIXEL 0x71044 | ||
981 | |||
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) | ||
1010 | |||
1011 | #define DSPABASE 0x70184 | ||
1012 | #define DSPASTRIDE 0x70188 | ||
1013 | |||
1014 | #define DSPBBASE 0x71184 | ||
1015 | #define DSPBADDR DSPBBASE | ||
1016 | #define DSPBSTRIDE 0x71188 | ||
1017 | |||
1018 | #define DSPAKEYVAL 0x70194 | ||
1019 | #define DSPAKEYMASK 0x70198 | ||
1020 | |||
1021 | #define DSPAPOS 0x7018C /* reserved */ | ||
1022 | #define DSPASIZE 0x70190 | ||
1023 | #define DSPBPOS 0x7118C | ||
1024 | #define DSPBSIZE 0x71190 | ||
1025 | |||
1026 | #define DSPASURF 0x7019C | ||
1027 | #define DSPATILEOFF 0x701A4 | ||
1028 | |||
1029 | #define DSPBSURF 0x7119C | ||
1030 | #define DSPBTILEOFF 0x711A4 | ||
1031 | |||
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) | ||
1036 | |||
1037 | /* | ||
1038 | * Some BIOS scratch area registers. The 845 (and 830?) store the amount | ||
1039 | * of video memory available to the BIOS in SWF1. | ||
1040 | */ | ||
1041 | |||
1042 | #define SWF0 0x71410 | ||
1043 | |||
1044 | /* | ||
1045 | * 855 scratch registers. | ||
1046 | */ | ||
1047 | #define SWF10 0x70410 | ||
1048 | |||
1049 | #define SWF30 0x72414 | ||
1050 | |||
1051 | /* | ||
1052 | * Overlay registers. These are overlay registers accessed via MMIO. | ||
1053 | * Those loaded via the overlay register page are defined in i830_video.c. | ||
1054 | */ | ||
1055 | #define OVADD 0x30000 | ||
1056 | |||
1057 | #define DOVSTA 0x30008 | ||
1058 | #define OC_BUF (0x3<<20) | ||
1059 | |||
1060 | #define OGAMC5 0x30010 | ||
1061 | #define OGAMC4 0x30014 | ||
1062 | #define OGAMC3 0x30018 | ||
1063 | #define OGAMC2 0x3001c | ||
1064 | #define OGAMC1 0x30020 | ||
1065 | #define OGAMC0 0x30024 | ||
1066 | /* | ||
1067 | * Palette registers | ||
1068 | */ | ||
1069 | #define PALETTE_A 0x0a000 | ||
1070 | #define PALETTE_B 0x0a800 | ||
1071 | |||
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) | ||
1077 | |||
1078 | #define IS_I915G(dev) (dev->pci_device == 0x2582)/* || dev->pci_device == PCI_DEVICE_ID_INTELPCI_CHIP_E7221_G)*/ | ||
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) | ||
1082 | |||
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) | ||
1089 | |||
1090 | #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02) | ||
1091 | |||
1092 | #define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \ | ||
1093 | (dev)->pci_device == 0x29B2 || \ | ||
1094 | (dev)->pci_device == 0x29D2) | ||
1095 | |||
1096 | #define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \ | ||
1097 | IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev)) | ||
1098 | |||
1099 | #define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \ | ||
1100 | IS_I945GM(dev) || IS_I965GM(dev)) | ||
1101 | |||
1102 | #define PRIMARY_RINGBUFFER_SIZE (128*1024) | ||
315 | 1103 | ||
316 | #endif | 1104 | #endif |