drm/i915: Add LVDS support for IGDNG
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_reg.h
CommitLineData
585fb111
JB
1/* Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
2 * All Rights Reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
14 * of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
20 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25#ifndef _I915_REG_H_
26#define _I915_REG_H_
27
585fb111
JB
28/*
29 * The Bridge device's PCI config space has information about the
30 * fb aperture size and the amount of pre-reserved memory.
31 */
32#define INTEL_GMCH_CTRL 0x52
33#define INTEL_GMCH_ENABLED 0x4
34#define INTEL_GMCH_MEM_MASK 0x1
35#define INTEL_GMCH_MEM_64M 0x1
36#define INTEL_GMCH_MEM_128M 0
37
241fa85b 38#define INTEL_GMCH_GMS_MASK (0xf << 4)
585fb111
JB
39#define INTEL_855_GMCH_GMS_DISABLED (0x0 << 4)
40#define INTEL_855_GMCH_GMS_STOLEN_1M (0x1 << 4)
41#define INTEL_855_GMCH_GMS_STOLEN_4M (0x2 << 4)
42#define INTEL_855_GMCH_GMS_STOLEN_8M (0x3 << 4)
43#define INTEL_855_GMCH_GMS_STOLEN_16M (0x4 << 4)
44#define INTEL_855_GMCH_GMS_STOLEN_32M (0x5 << 4)
45
46#define INTEL_915G_GMCH_GMS_STOLEN_48M (0x6 << 4)
47#define INTEL_915G_GMCH_GMS_STOLEN_64M (0x7 << 4)
241fa85b
EA
48#define INTEL_GMCH_GMS_STOLEN_128M (0x8 << 4)
49#define INTEL_GMCH_GMS_STOLEN_256M (0x9 << 4)
50#define INTEL_GMCH_GMS_STOLEN_96M (0xa << 4)
51#define INTEL_GMCH_GMS_STOLEN_160M (0xb << 4)
52#define INTEL_GMCH_GMS_STOLEN_224M (0xc << 4)
53#define INTEL_GMCH_GMS_STOLEN_352M (0xd << 4)
585fb111
JB
54
55/* PCI config space */
56
57#define HPLLCC 0xc0 /* 855 only */
58#define GC_CLOCK_CONTROL_MASK (3 << 0)
59#define GC_CLOCK_133_200 (0 << 0)
60#define GC_CLOCK_100_200 (1 << 0)
61#define GC_CLOCK_100_133 (2 << 0)
62#define GC_CLOCK_166_250 (3 << 0)
63#define GCFGC 0xf0 /* 915+ only */
64#define GC_LOW_FREQUENCY_ENABLE (1 << 7)
65#define GC_DISPLAY_CLOCK_190_200_MHZ (0 << 4)
66#define GC_DISPLAY_CLOCK_333_MHZ (4 << 4)
67#define GC_DISPLAY_CLOCK_MASK (7 << 4)
68#define LBB 0xf4
69
70/* VGA stuff */
71
72#define VGA_ST01_MDA 0x3ba
73#define VGA_ST01_CGA 0x3da
74
75#define VGA_MSR_WRITE 0x3c2
76#define VGA_MSR_READ 0x3cc
77#define VGA_MSR_MEM_EN (1<<1)
78#define VGA_MSR_CGA_MODE (1<<0)
79
80#define VGA_SR_INDEX 0x3c4
81#define VGA_SR_DATA 0x3c5
82
83#define VGA_AR_INDEX 0x3c0
84#define VGA_AR_VID_EN (1<<5)
85#define VGA_AR_DATA_WRITE 0x3c0
86#define VGA_AR_DATA_READ 0x3c1
87
88#define VGA_GR_INDEX 0x3ce
89#define VGA_GR_DATA 0x3cf
90/* GR05 */
91#define VGA_GR_MEM_READ_MODE_SHIFT 3
92#define VGA_GR_MEM_READ_MODE_PLANE 1
93/* GR06 */
94#define VGA_GR_MEM_MODE_MASK 0xc
95#define VGA_GR_MEM_MODE_SHIFT 2
96#define VGA_GR_MEM_A0000_AFFFF 0
97#define VGA_GR_MEM_A0000_BFFFF 1
98#define VGA_GR_MEM_B0000_B7FFF 2
99#define VGA_GR_MEM_B0000_BFFFF 3
100
101#define VGA_DACMASK 0x3c6
102#define VGA_DACRX 0x3c7
103#define VGA_DACWX 0x3c8
104#define VGA_DACDATA 0x3c9
105
106#define VGA_CR_INDEX_MDA 0x3b4
107#define VGA_CR_DATA_MDA 0x3b5
108#define VGA_CR_INDEX_CGA 0x3d4
109#define VGA_CR_DATA_CGA 0x3d5
110
111/*
112 * Memory interface instructions used by the kernel
113 */
114#define MI_INSTR(opcode, flags) (((opcode) << 23) | (flags))
115
116#define MI_NOOP MI_INSTR(0, 0)
117#define MI_USER_INTERRUPT MI_INSTR(0x02, 0)
118#define MI_WAIT_FOR_EVENT MI_INSTR(0x03, 0)
119#define MI_WAIT_FOR_PLANE_B_FLIP (1<<6)
120#define MI_WAIT_FOR_PLANE_A_FLIP (1<<2)
121#define MI_WAIT_FOR_PLANE_A_SCANLINES (1<<1)
122#define MI_FLUSH MI_INSTR(0x04, 0)
123#define MI_READ_FLUSH (1 << 0)
124#define MI_EXE_FLUSH (1 << 1)
125#define MI_NO_WRITE_FLUSH (1 << 2)
126#define MI_SCENE_COUNT (1 << 3) /* just increment scene count */
127#define MI_END_SCENE (1 << 4) /* flush binner and incr scene count */
128#define MI_BATCH_BUFFER_END MI_INSTR(0x0a, 0)
129#define MI_REPORT_HEAD MI_INSTR(0x07, 0)
130#define MI_LOAD_SCAN_LINES_INCL MI_INSTR(0x12, 0)
131#define MI_STORE_DWORD_IMM MI_INSTR(0x20, 1)
132#define MI_MEM_VIRTUAL (1 << 22) /* 965+ only */
133#define MI_STORE_DWORD_INDEX MI_INSTR(0x21, 1)
134#define MI_STORE_DWORD_INDEX_SHIFT 2
135#define MI_LOAD_REGISTER_IMM MI_INSTR(0x22, 1)
136#define MI_BATCH_BUFFER MI_INSTR(0x30, 1)
137#define MI_BATCH_NON_SECURE (1)
138#define MI_BATCH_NON_SECURE_I965 (1<<8)
139#define MI_BATCH_BUFFER_START MI_INSTR(0x31, 0)
140
141/*
142 * 3D instructions used by the kernel
143 */
144#define GFX_INSTR(opcode, flags) ((0x3 << 29) | ((opcode) << 24) | (flags))
145
146#define GFX_OP_RASTER_RULES ((0x3<<29)|(0x7<<24))
147#define GFX_OP_SCISSOR ((0x3<<29)|(0x1c<<24)|(0x10<<19))
148#define SC_UPDATE_SCISSOR (0x1<<1)
149#define SC_ENABLE_MASK (0x1<<0)
150#define SC_ENABLE (0x1<<0)
151#define GFX_OP_LOAD_INDIRECT ((0x3<<29)|(0x1d<<24)|(0x7<<16))
152#define GFX_OP_SCISSOR_INFO ((0x3<<29)|(0x1d<<24)|(0x81<<16)|(0x1))
153#define SCI_YMIN_MASK (0xffff<<16)
154#define SCI_XMIN_MASK (0xffff<<0)
155#define SCI_YMAX_MASK (0xffff<<16)
156#define SCI_XMAX_MASK (0xffff<<0)
157#define GFX_OP_SCISSOR_ENABLE ((0x3<<29)|(0x1c<<24)|(0x10<<19))
158#define GFX_OP_SCISSOR_RECT ((0x3<<29)|(0x1d<<24)|(0x81<<16)|1)
159#define GFX_OP_COLOR_FACTOR ((0x3<<29)|(0x1d<<24)|(0x1<<16)|0x0)
160#define GFX_OP_STIPPLE ((0x3<<29)|(0x1d<<24)|(0x83<<16))
161#define GFX_OP_MAP_INFO ((0x3<<29)|(0x1d<<24)|0x4)
162#define GFX_OP_DESTBUFFER_VARS ((0x3<<29)|(0x1d<<24)|(0x85<<16)|0x0)
163#define GFX_OP_DESTBUFFER_INFO ((0x3<<29)|(0x1d<<24)|(0x8e<<16)|1)
164#define GFX_OP_DRAWRECT_INFO ((0x3<<29)|(0x1d<<24)|(0x80<<16)|(0x3))
165#define GFX_OP_DRAWRECT_INFO_I965 ((0x7900<<16)|0x2)
166#define SRC_COPY_BLT_CMD ((2<<29)|(0x43<<22)|4)
167#define XY_SRC_COPY_BLT_CMD ((2<<29)|(0x53<<22)|6)
168#define XY_MONO_SRC_COPY_IMM_BLT ((2<<29)|(0x71<<22)|5)
169#define XY_SRC_COPY_BLT_WRITE_ALPHA (1<<21)
170#define XY_SRC_COPY_BLT_WRITE_RGB (1<<20)
171#define BLT_DEPTH_8 (0<<24)
172#define BLT_DEPTH_16_565 (1<<24)
173#define BLT_DEPTH_16_1555 (2<<24)
174#define BLT_DEPTH_32 (3<<24)
175#define BLT_ROP_GXCOPY (0xcc<<16)
176#define XY_SRC_COPY_BLT_SRC_TILED (1<<15) /* 965+ only */
177#define XY_SRC_COPY_BLT_DST_TILED (1<<11) /* 965+ only */
178#define CMD_OP_DISPLAYBUFFER_INFO ((0x0<<29)|(0x14<<23)|2)
179#define ASYNC_FLIP (1<<22)
180#define DISPLAY_PLANE_A (0<<20)
181#define DISPLAY_PLANE_B (1<<20)
182
183/*
de151cf6 184 * Fence registers
585fb111 185 */
de151cf6 186#define FENCE_REG_830_0 0x2000
dc529a4f 187#define FENCE_REG_945_8 0x3000
de151cf6
JB
188#define I830_FENCE_START_MASK 0x07f80000
189#define I830_FENCE_TILING_Y_SHIFT 12
0f973f27 190#define I830_FENCE_SIZE_BITS(size) ((ffs((size) >> 19) - 1) << 8)
de151cf6
JB
191#define I830_FENCE_PITCH_SHIFT 4
192#define I830_FENCE_REG_VALID (1<<0)
e76a16de
EA
193#define I915_FENCE_MAX_PITCH_VAL 0x10
194#define I830_FENCE_MAX_PITCH_VAL 6
8d7773a3 195#define I830_FENCE_MAX_SIZE_VAL (1<<8)
de151cf6
JB
196
197#define I915_FENCE_START_MASK 0x0ff00000
0f973f27 198#define I915_FENCE_SIZE_BITS(size) ((ffs((size) >> 20) - 1) << 8)
585fb111 199
de151cf6
JB
200#define FENCE_REG_965_0 0x03000
201#define I965_FENCE_PITCH_SHIFT 2
202#define I965_FENCE_TILING_Y_SHIFT 1
203#define I965_FENCE_REG_VALID (1<<0)
8d7773a3 204#define I965_FENCE_MAX_PITCH_VAL 0x0400
de151cf6
JB
205
206/*
207 * Instruction and interrupt control regs
208 */
585fb111
JB
209#define PRB0_TAIL 0x02030
210#define PRB0_HEAD 0x02034
211#define PRB0_START 0x02038
212#define PRB0_CTL 0x0203c
213#define TAIL_ADDR 0x001FFFF8
214#define HEAD_WRAP_COUNT 0xFFE00000
215#define HEAD_WRAP_ONE 0x00200000
216#define HEAD_ADDR 0x001FFFFC
217#define RING_NR_PAGES 0x001FF000
218#define RING_REPORT_MASK 0x00000006
219#define RING_REPORT_64K 0x00000002
220#define RING_REPORT_128K 0x00000004
221#define RING_NO_REPORT 0x00000000
222#define RING_VALID_MASK 0x00000001
223#define RING_VALID 0x00000001
224#define RING_INVALID 0x00000000
225#define PRB1_TAIL 0x02040 /* 915+ only */
226#define PRB1_HEAD 0x02044 /* 915+ only */
227#define PRB1_START 0x02048 /* 915+ only */
228#define PRB1_CTL 0x0204c /* 915+ only */
229#define ACTHD_I965 0x02074
230#define HWS_PGA 0x02080
231#define HWS_ADDRESS_MASK 0xfffff000
232#define HWS_START_ADDRESS_SHIFT 4
233#define IPEIR 0x02088
234#define NOPID 0x02094
235#define HWSTAM 0x02098
236#define SCPD0 0x0209c /* 915+ only */
237#define IER 0x020a0
238#define IIR 0x020a4
239#define IMR 0x020a8
240#define ISR 0x020ac
241#define I915_PIPE_CONTROL_NOTIFY_INTERRUPT (1<<18)
242#define I915_DISPLAY_PORT_INTERRUPT (1<<17)
243#define I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT (1<<15)
244#define I915_GMCH_THERMAL_SENSOR_EVENT_INTERRUPT (1<<14)
245#define I915_HWB_OOM_INTERRUPT (1<<13)
246#define I915_SYNC_STATUS_INTERRUPT (1<<12)
247#define I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT (1<<11)
248#define I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT (1<<10)
249#define I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT (1<<9)
250#define I915_DISPLAY_PLANE_C_FLIP_PENDING_INTERRUPT (1<<8)
251#define I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT (1<<7)
252#define I915_DISPLAY_PIPE_A_EVENT_INTERRUPT (1<<6)
253#define I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT (1<<5)
254#define I915_DISPLAY_PIPE_B_EVENT_INTERRUPT (1<<4)
255#define I915_DEBUG_INTERRUPT (1<<2)
256#define I915_USER_INTERRUPT (1<<1)
257#define I915_ASLE_INTERRUPT (1<<0)
258#define EIR 0x020b0
259#define EMR 0x020b4
260#define ESR 0x020b8
261#define INSTPM 0x020c0
262#define ACTHD 0x020c8
263#define FW_BLC 0x020d8
264#define FW_BLC_SELF 0x020e0 /* 915+ only */
265#define MI_ARB_STATE 0x020e4 /* 915+ only */
266#define CACHE_MODE_0 0x02120 /* 915+ only */
267#define CM0_MASK_SHIFT 16
268#define CM0_IZ_OPT_DISABLE (1<<6)
269#define CM0_ZR_OPT_DISABLE (1<<5)
270#define CM0_DEPTH_EVICT_DISABLE (1<<4)
271#define CM0_COLOR_EVICT_DISABLE (1<<3)
272#define CM0_DEPTH_WRITE_DISABLE (1<<1)
273#define CM0_RC_OP_FLUSH_DISABLE (1<<0)
274#define GFX_FLSH_CNTL 0x02170 /* 915+ only */
275
de151cf6 276
585fb111
JB
277/*
278 * Framebuffer compression (915+ only)
279 */
280
281#define FBC_CFB_BASE 0x03200 /* 4k page aligned */
282#define FBC_LL_BASE 0x03204 /* 4k page aligned */
283#define FBC_CONTROL 0x03208
284#define FBC_CTL_EN (1<<31)
285#define FBC_CTL_PERIODIC (1<<30)
286#define FBC_CTL_INTERVAL_SHIFT (16)
287#define FBC_CTL_UNCOMPRESSIBLE (1<<14)
288#define FBC_CTL_STRIDE_SHIFT (5)
289#define FBC_CTL_FENCENO (1<<0)
290#define FBC_COMMAND 0x0320c
291#define FBC_CMD_COMPRESS (1<<0)
292#define FBC_STATUS 0x03210
293#define FBC_STAT_COMPRESSING (1<<31)
294#define FBC_STAT_COMPRESSED (1<<30)
295#define FBC_STAT_MODIFIED (1<<29)
296#define FBC_STAT_CURRENT_LINE (1<<0)
297#define FBC_CONTROL2 0x03214
298#define FBC_CTL_FENCE_DBL (0<<4)
299#define FBC_CTL_IDLE_IMM (0<<2)
300#define FBC_CTL_IDLE_FULL (1<<2)
301#define FBC_CTL_IDLE_LINE (2<<2)
302#define FBC_CTL_IDLE_DEBUG (3<<2)
303#define FBC_CTL_CPU_FENCE (1<<1)
304#define FBC_CTL_PLANEA (0<<0)
305#define FBC_CTL_PLANEB (1<<0)
306#define FBC_FENCE_OFF 0x0321b
307
308#define FBC_LL_SIZE (1536)
309
310/*
311 * GPIO regs
312 */
313#define GPIOA 0x5010
314#define GPIOB 0x5014
315#define GPIOC 0x5018
316#define GPIOD 0x501c
317#define GPIOE 0x5020
318#define GPIOF 0x5024
319#define GPIOG 0x5028
320#define GPIOH 0x502c
321# define GPIO_CLOCK_DIR_MASK (1 << 0)
322# define GPIO_CLOCK_DIR_IN (0 << 1)
323# define GPIO_CLOCK_DIR_OUT (1 << 1)
324# define GPIO_CLOCK_VAL_MASK (1 << 2)
325# define GPIO_CLOCK_VAL_OUT (1 << 3)
326# define GPIO_CLOCK_VAL_IN (1 << 4)
327# define GPIO_CLOCK_PULLUP_DISABLE (1 << 5)
328# define GPIO_DATA_DIR_MASK (1 << 8)
329# define GPIO_DATA_DIR_IN (0 << 9)
330# define GPIO_DATA_DIR_OUT (1 << 9)
331# define GPIO_DATA_VAL_MASK (1 << 10)
332# define GPIO_DATA_VAL_OUT (1 << 11)
333# define GPIO_DATA_VAL_IN (1 << 12)
334# define GPIO_DATA_PULLUP_DISABLE (1 << 13)
335
336/*
337 * Clock control & power management
338 */
339
340#define VGA0 0x6000
341#define VGA1 0x6004
342#define VGA_PD 0x6010
343#define VGA0_PD_P2_DIV_4 (1 << 7)
344#define VGA0_PD_P1_DIV_2 (1 << 5)
345#define VGA0_PD_P1_SHIFT 0
346#define VGA0_PD_P1_MASK (0x1f << 0)
347#define VGA1_PD_P2_DIV_4 (1 << 15)
348#define VGA1_PD_P1_DIV_2 (1 << 13)
349#define VGA1_PD_P1_SHIFT 8
350#define VGA1_PD_P1_MASK (0x1f << 8)
351#define DPLL_A 0x06014
352#define DPLL_B 0x06018
353#define DPLL_VCO_ENABLE (1 << 31)
354#define DPLL_DVO_HIGH_SPEED (1 << 30)
355#define DPLL_SYNCLOCK_ENABLE (1 << 29)
356#define DPLL_VGA_MODE_DIS (1 << 28)
357#define DPLLB_MODE_DAC_SERIAL (1 << 26) /* i915 */
358#define DPLLB_MODE_LVDS (2 << 26) /* i915 */
359#define DPLL_MODE_MASK (3 << 26)
360#define DPLL_DAC_SERIAL_P2_CLOCK_DIV_10 (0 << 24) /* i915 */
361#define DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 (1 << 24) /* i915 */
362#define DPLLB_LVDS_P2_CLOCK_DIV_14 (0 << 24) /* i915 */
363#define DPLLB_LVDS_P2_CLOCK_DIV_7 (1 << 24) /* i915 */
364#define DPLL_P2_CLOCK_DIV_MASK 0x03000000 /* i915 */
365#define DPLL_FPA01_P1_POST_DIV_MASK 0x00ff0000 /* i915 */
2177832f 366#define DPLL_FPA01_P1_POST_DIV_MASK_IGD 0x00ff8000 /* IGD */
585fb111
JB
367
368#define I915_FIFO_UNDERRUN_STATUS (1UL<<31)
369#define I915_CRC_ERROR_ENABLE (1UL<<29)
370#define I915_CRC_DONE_ENABLE (1UL<<28)
371#define I915_GMBUS_EVENT_ENABLE (1UL<<27)
372#define I915_VSYNC_INTERRUPT_ENABLE (1UL<<25)
373#define I915_DISPLAY_LINE_COMPARE_ENABLE (1UL<<24)
374#define I915_DPST_EVENT_ENABLE (1UL<<23)
375#define I915_LEGACY_BLC_EVENT_ENABLE (1UL<<22)
376#define I915_ODD_FIELD_INTERRUPT_ENABLE (1UL<<21)
377#define I915_EVEN_FIELD_INTERRUPT_ENABLE (1UL<<20)
378#define I915_START_VBLANK_INTERRUPT_ENABLE (1UL<<18) /* 965 or later */
379#define I915_VBLANK_INTERRUPT_ENABLE (1UL<<17)
380#define I915_OVERLAY_UPDATED_ENABLE (1UL<<16)
381#define I915_CRC_ERROR_INTERRUPT_STATUS (1UL<<13)
382#define I915_CRC_DONE_INTERRUPT_STATUS (1UL<<12)
383#define I915_GMBUS_INTERRUPT_STATUS (1UL<<11)
384#define I915_VSYNC_INTERRUPT_STATUS (1UL<<9)
385#define I915_DISPLAY_LINE_COMPARE_STATUS (1UL<<8)
386#define I915_DPST_EVENT_STATUS (1UL<<7)
387#define I915_LEGACY_BLC_EVENT_STATUS (1UL<<6)
388#define I915_ODD_FIELD_INTERRUPT_STATUS (1UL<<5)
389#define I915_EVEN_FIELD_INTERRUPT_STATUS (1UL<<4)
390#define I915_START_VBLANK_INTERRUPT_STATUS (1UL<<2) /* 965 or later */
391#define I915_VBLANK_INTERRUPT_STATUS (1UL<<1)
392#define I915_OVERLAY_UPDATED_STATUS (1UL<<0)
393
394#define SRX_INDEX 0x3c4
395#define SRX_DATA 0x3c5
396#define SR01 1
397#define SR01_SCREEN_OFF (1<<5)
398
399#define PPCR 0x61204
400#define PPCR_ON (1<<0)
401
402#define DVOB 0x61140
403#define DVOB_ON (1<<31)
404#define DVOC 0x61160
405#define DVOC_ON (1<<31)
406#define LVDS 0x61180
407#define LVDS_ON (1<<31)
408
409#define ADPA 0x61100
410#define ADPA_DPMS_MASK (~(3<<10))
411#define ADPA_DPMS_ON (0<<10)
412#define ADPA_DPMS_SUSPEND (1<<10)
413#define ADPA_DPMS_STANDBY (2<<10)
414#define ADPA_DPMS_OFF (3<<10)
415
416#define RING_TAIL 0x00
417#define TAIL_ADDR 0x001FFFF8
418#define RING_HEAD 0x04
419#define HEAD_WRAP_COUNT 0xFFE00000
420#define HEAD_WRAP_ONE 0x00200000
421#define HEAD_ADDR 0x001FFFFC
422#define RING_START 0x08
423#define START_ADDR 0xFFFFF000
424#define RING_LEN 0x0C
425#define RING_NR_PAGES 0x001FF000
426#define RING_REPORT_MASK 0x00000006
427#define RING_REPORT_64K 0x00000002
428#define RING_REPORT_128K 0x00000004
429#define RING_NO_REPORT 0x00000000
430#define RING_VALID_MASK 0x00000001
431#define RING_VALID 0x00000001
432#define RING_INVALID 0x00000000
433
434/* Scratch pad debug 0 reg:
435 */
436#define DPLL_FPA01_P1_POST_DIV_MASK_I830 0x001f0000
437/*
438 * The i830 generation, in LVDS mode, defines P1 as the bit number set within
439 * this field (only one bit may be set).
440 */
441#define DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS 0x003f0000
442#define DPLL_FPA01_P1_POST_DIV_SHIFT 16
2177832f 443#define DPLL_FPA01_P1_POST_DIV_SHIFT_IGD 15
585fb111
JB
444/* i830, required in DVO non-gang */
445#define PLL_P2_DIVIDE_BY_4 (1 << 23)
446#define PLL_P1_DIVIDE_BY_TWO (1 << 21) /* i830 */
447#define PLL_REF_INPUT_DREFCLK (0 << 13)
448#define PLL_REF_INPUT_TVCLKINA (1 << 13) /* i830 */
449#define PLL_REF_INPUT_TVCLKINBC (2 << 13) /* SDVO TVCLKIN */
450#define PLLB_REF_INPUT_SPREADSPECTRUMIN (3 << 13)
451#define PLL_REF_INPUT_MASK (3 << 13)
452#define PLL_LOAD_PULSE_PHASE_SHIFT 9
b9055052
ZW
453/* IGDNG */
454# define PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT 9
455# define PLL_REF_SDVO_HDMI_MULTIPLIER_MASK (7 << 9)
456# define PLL_REF_SDVO_HDMI_MULTIPLIER(x) (((x)-1) << 9)
457# define DPLL_FPA1_P1_POST_DIV_SHIFT 0
458# define DPLL_FPA1_P1_POST_DIV_MASK 0xff
459
585fb111
JB
460/*
461 * Parallel to Serial Load Pulse phase selection.
462 * Selects the phase for the 10X DPLL clock for the PCIe
463 * digital display port. The range is 4 to 13; 10 or more
464 * is just a flip delay. The default is 6
465 */
466#define PLL_LOAD_PULSE_PHASE_MASK (0xf << PLL_LOAD_PULSE_PHASE_SHIFT)
467#define DISPLAY_RATE_SELECT_FPA1 (1 << 8)
468/*
469 * SDVO multiplier for 945G/GM. Not used on 965.
470 */
471#define SDVO_MULTIPLIER_MASK 0x000000ff
472#define SDVO_MULTIPLIER_SHIFT_HIRES 4
473#define SDVO_MULTIPLIER_SHIFT_VGA 0
474#define DPLL_A_MD 0x0601c /* 965+ only */
475/*
476 * UDI pixel divider, controlling how many pixels are stuffed into a packet.
477 *
478 * Value is pixels minus 1. Must be set to 1 pixel for SDVO.
479 */
480#define DPLL_MD_UDI_DIVIDER_MASK 0x3f000000
481#define DPLL_MD_UDI_DIVIDER_SHIFT 24
482/* UDI pixel divider for VGA, same as DPLL_MD_UDI_DIVIDER_MASK. */
483#define DPLL_MD_VGA_UDI_DIVIDER_MASK 0x003f0000
484#define DPLL_MD_VGA_UDI_DIVIDER_SHIFT 16
485/*
486 * SDVO/UDI pixel multiplier.
487 *
488 * SDVO requires that the bus clock rate be between 1 and 2 Ghz, and the bus
489 * clock rate is 10 times the DPLL clock. At low resolution/refresh rate
490 * modes, the bus rate would be below the limits, so SDVO allows for stuffing
491 * dummy bytes in the datastream at an increased clock rate, with both sides of
492 * the link knowing how many bytes are fill.
493 *
494 * So, for a mode with a dotclock of 65Mhz, we would want to double the clock
495 * rate to 130Mhz to get a bus rate of 1.30Ghz. The DPLL clock rate would be
496 * set to 130Mhz, and the SDVO multiplier set to 2x in this register and
497 * through an SDVO command.
498 *
499 * This register field has values of multiplication factor minus 1, with
500 * a maximum multiplier of 5 for SDVO.
501 */
502#define DPLL_MD_UDI_MULTIPLIER_MASK 0x00003f00
503#define DPLL_MD_UDI_MULTIPLIER_SHIFT 8
504/*
505 * SDVO/UDI pixel multiplier for VGA, same as DPLL_MD_UDI_MULTIPLIER_MASK.
506 * This best be set to the default value (3) or the CRT won't work. No,
507 * I don't entirely understand what this does...
508 */
509#define DPLL_MD_VGA_UDI_MULTIPLIER_MASK 0x0000003f
510#define DPLL_MD_VGA_UDI_MULTIPLIER_SHIFT 0
511#define DPLL_B_MD 0x06020 /* 965+ only */
512#define FPA0 0x06040
513#define FPA1 0x06044
514#define FPB0 0x06048
515#define FPB1 0x0604c
516#define FP_N_DIV_MASK 0x003f0000
2177832f 517#define FP_N_IGD_DIV_MASK 0x00ff0000
585fb111
JB
518#define FP_N_DIV_SHIFT 16
519#define FP_M1_DIV_MASK 0x00003f00
520#define FP_M1_DIV_SHIFT 8
521#define FP_M2_DIV_MASK 0x0000003f
2177832f 522#define FP_M2_IGD_DIV_MASK 0x000000ff
585fb111
JB
523#define FP_M2_DIV_SHIFT 0
524#define DPLL_TEST 0x606c
525#define DPLLB_TEST_SDVO_DIV_1 (0 << 22)
526#define DPLLB_TEST_SDVO_DIV_2 (1 << 22)
527#define DPLLB_TEST_SDVO_DIV_4 (2 << 22)
528#define DPLLB_TEST_SDVO_DIV_MASK (3 << 22)
529#define DPLLB_TEST_N_BYPASS (1 << 19)
530#define DPLLB_TEST_M_BYPASS (1 << 18)
531#define DPLLB_INPUT_BUFFER_ENABLE (1 << 16)
532#define DPLLA_TEST_N_BYPASS (1 << 3)
533#define DPLLA_TEST_M_BYPASS (1 << 2)
534#define DPLLA_INPUT_BUFFER_ENABLE (1 << 0)
535#define D_STATE 0x6104
536#define CG_2D_DIS 0x6200
0ba0e9e1 537#define DPCUNIT_CLOCK_GATE_DISABLE (1 << 24)
585fb111
JB
538#define CG_3D_DIS 0x6204
539
540/*
541 * Palette regs
542 */
543
544#define PALETTE_A 0x0a000
545#define PALETTE_B 0x0a800
546
673a394b
EA
547/* MCH MMIO space */
548
549/*
550 * MCHBAR mirror.
551 *
552 * This mirrors the MCHBAR MMIO space whose location is determined by
553 * device 0 function 0's pci config register 0x44 or 0x48 and matches it in
554 * every way. It is not accessible from the CP register read instructions.
555 *
556 */
557#define MCHBAR_MIRROR_BASE 0x10000
558
559/** 915-945 and GM965 MCH register controlling DRAM channel access */
560#define DCC 0x10200
561#define DCC_ADDRESSING_MODE_SINGLE_CHANNEL (0 << 0)
562#define DCC_ADDRESSING_MODE_DUAL_CHANNEL_ASYMMETRIC (1 << 0)
563#define DCC_ADDRESSING_MODE_DUAL_CHANNEL_INTERLEAVED (2 << 0)
564#define DCC_ADDRESSING_MODE_MASK (3 << 0)
565#define DCC_CHANNEL_XOR_DISABLE (1 << 10)
a7f014f2 566#define DCC_CHANNEL_XOR_BIT_17 (1 << 9)
673a394b
EA
567
568/** 965 MCH register controlling DRAM channel configuration */
569#define C0DRB3 0x10206
570#define C1DRB3 0x10606
571
881ee988
KP
572/** GM965 GM45 render standby register */
573#define MCHBAR_RENDER_STANDBY 0x111B8
574
7d57382e
EA
575#define PEG_BAND_GAP_DATA 0x14d68
576
585fb111
JB
577/*
578 * Overlay regs
579 */
580
581#define OVADD 0x30000
582#define DOVSTA 0x30008
583#define OC_BUF (0x3<<20)
584#define OGAMC5 0x30010
585#define OGAMC4 0x30014
586#define OGAMC3 0x30018
587#define OGAMC2 0x3001c
588#define OGAMC1 0x30020
589#define OGAMC0 0x30024
590
591/*
592 * Display engine regs
593 */
594
595/* Pipe A timing regs */
596#define HTOTAL_A 0x60000
597#define HBLANK_A 0x60004
598#define HSYNC_A 0x60008
599#define VTOTAL_A 0x6000c
600#define VBLANK_A 0x60010
601#define VSYNC_A 0x60014
602#define PIPEASRC 0x6001c
603#define BCLRPAT_A 0x60020
604
605/* Pipe B timing regs */
606#define HTOTAL_B 0x61000
607#define HBLANK_B 0x61004
608#define HSYNC_B 0x61008
609#define VTOTAL_B 0x6100c
610#define VBLANK_B 0x61010
611#define VSYNC_B 0x61014
612#define PIPEBSRC 0x6101c
613#define BCLRPAT_B 0x61020
614
615/* VGA port control */
616#define ADPA 0x61100
617#define ADPA_DAC_ENABLE (1<<31)
618#define ADPA_DAC_DISABLE 0
619#define ADPA_PIPE_SELECT_MASK (1<<30)
620#define ADPA_PIPE_A_SELECT 0
621#define ADPA_PIPE_B_SELECT (1<<30)
622#define ADPA_USE_VGA_HVPOLARITY (1<<15)
623#define ADPA_SETS_HVPOLARITY 0
624#define ADPA_VSYNC_CNTL_DISABLE (1<<11)
625#define ADPA_VSYNC_CNTL_ENABLE 0
626#define ADPA_HSYNC_CNTL_DISABLE (1<<10)
627#define ADPA_HSYNC_CNTL_ENABLE 0
628#define ADPA_VSYNC_ACTIVE_HIGH (1<<4)
629#define ADPA_VSYNC_ACTIVE_LOW 0
630#define ADPA_HSYNC_ACTIVE_HIGH (1<<3)
631#define ADPA_HSYNC_ACTIVE_LOW 0
632#define ADPA_DPMS_MASK (~(3<<10))
633#define ADPA_DPMS_ON (0<<10)
634#define ADPA_DPMS_SUSPEND (1<<10)
635#define ADPA_DPMS_STANDBY (2<<10)
636#define ADPA_DPMS_OFF (3<<10)
637
638/* Hotplug control (945+ only) */
639#define PORT_HOTPLUG_EN 0x61110
7d57382e
EA
640#define HDMIB_HOTPLUG_INT_EN (1 << 29)
641#define HDMIC_HOTPLUG_INT_EN (1 << 28)
642#define HDMID_HOTPLUG_INT_EN (1 << 27)
585fb111
JB
643#define SDVOB_HOTPLUG_INT_EN (1 << 26)
644#define SDVOC_HOTPLUG_INT_EN (1 << 25)
645#define TV_HOTPLUG_INT_EN (1 << 18)
646#define CRT_HOTPLUG_INT_EN (1 << 9)
647#define CRT_HOTPLUG_FORCE_DETECT (1 << 3)
771cb081
ZY
648#define CRT_HOTPLUG_ACTIVATION_PERIOD_32 (0 << 8)
649/* must use period 64 on GM45 according to docs */
650#define CRT_HOTPLUG_ACTIVATION_PERIOD_64 (1 << 8)
651#define CRT_HOTPLUG_DAC_ON_TIME_2M (0 << 7)
652#define CRT_HOTPLUG_DAC_ON_TIME_4M (1 << 7)
653#define CRT_HOTPLUG_VOLTAGE_COMPARE_40 (0 << 5)
654#define CRT_HOTPLUG_VOLTAGE_COMPARE_50 (1 << 5)
655#define CRT_HOTPLUG_VOLTAGE_COMPARE_60 (2 << 5)
656#define CRT_HOTPLUG_VOLTAGE_COMPARE_70 (3 << 5)
657#define CRT_HOTPLUG_VOLTAGE_COMPARE_MASK (3 << 5)
658#define CRT_HOTPLUG_DETECT_DELAY_1G (0 << 4)
659#define CRT_HOTPLUG_DETECT_DELAY_2G (1 << 4)
660#define CRT_HOTPLUG_DETECT_VOLTAGE_325MV (0 << 2)
661#define CRT_HOTPLUG_DETECT_VOLTAGE_475MV (1 << 2)
662#define CRT_HOTPLUG_MASK (0x3fc) /* Bits 9-2 */
5ca58282
JB
663#define CRT_FORCE_HOTPLUG_MASK 0xfffffe1f
664#define HOTPLUG_EN_MASK (HDMIB_HOTPLUG_INT_EN | \
665 HDMIC_HOTPLUG_INT_EN | \
666 HDMID_HOTPLUG_INT_EN | \
667 SDVOB_HOTPLUG_INT_EN | \
668 SDVOC_HOTPLUG_INT_EN | \
669 TV_HOTPLUG_INT_EN | \
670 CRT_HOTPLUG_INT_EN)
771cb081 671
585fb111
JB
672
673#define PORT_HOTPLUG_STAT 0x61114
7d57382e
EA
674#define HDMIB_HOTPLUG_INT_STATUS (1 << 29)
675#define HDMIC_HOTPLUG_INT_STATUS (1 << 28)
676#define HDMID_HOTPLUG_INT_STATUS (1 << 27)
585fb111
JB
677#define CRT_HOTPLUG_INT_STATUS (1 << 11)
678#define TV_HOTPLUG_INT_STATUS (1 << 10)
679#define CRT_HOTPLUG_MONITOR_MASK (3 << 8)
680#define CRT_HOTPLUG_MONITOR_COLOR (3 << 8)
681#define CRT_HOTPLUG_MONITOR_MONO (2 << 8)
682#define CRT_HOTPLUG_MONITOR_NONE (0 << 8)
683#define SDVOC_HOTPLUG_INT_STATUS (1 << 7)
684#define SDVOB_HOTPLUG_INT_STATUS (1 << 6)
685
686/* SDVO port control */
687#define SDVOB 0x61140
688#define SDVOC 0x61160
689#define SDVO_ENABLE (1 << 31)
690#define SDVO_PIPE_B_SELECT (1 << 30)
691#define SDVO_STALL_SELECT (1 << 29)
692#define SDVO_INTERRUPT_ENABLE (1 << 26)
693/**
694 * 915G/GM SDVO pixel multiplier.
695 *
696 * Programmed value is multiplier - 1, up to 5x.
697 *
698 * \sa DPLL_MD_UDI_MULTIPLIER_MASK
699 */
700#define SDVO_PORT_MULTIPLY_MASK (7 << 23)
701#define SDVO_PORT_MULTIPLY_SHIFT 23
702#define SDVO_PHASE_SELECT_MASK (15 << 19)
703#define SDVO_PHASE_SELECT_DEFAULT (6 << 19)
704#define SDVO_CLOCK_OUTPUT_INVERT (1 << 18)
705#define SDVOC_GANG_MODE (1 << 16)
7d57382e
EA
706#define SDVO_ENCODING_SDVO (0x0 << 10)
707#define SDVO_ENCODING_HDMI (0x2 << 10)
708/** Requird for HDMI operation */
709#define SDVO_NULL_PACKETS_DURING_VSYNC (1 << 9)
585fb111 710#define SDVO_BORDER_ENABLE (1 << 7)
7d57382e
EA
711#define SDVO_AUDIO_ENABLE (1 << 6)
712/** New with 965, default is to be set */
713#define SDVO_VSYNC_ACTIVE_HIGH (1 << 4)
714/** New with 965, default is to be set */
715#define SDVO_HSYNC_ACTIVE_HIGH (1 << 3)
585fb111
JB
716#define SDVOB_PCIE_CONCURRENCY (1 << 3)
717#define SDVO_DETECTED (1 << 2)
718/* Bits to be preserved when writing */
719#define SDVOB_PRESERVE_MASK ((1 << 17) | (1 << 16) | (1 << 14) | (1 << 26))
720#define SDVOC_PRESERVE_MASK ((1 << 17) | (1 << 26))
721
722/* DVO port control */
723#define DVOA 0x61120
724#define DVOB 0x61140
725#define DVOC 0x61160
726#define DVO_ENABLE (1 << 31)
727#define DVO_PIPE_B_SELECT (1 << 30)
728#define DVO_PIPE_STALL_UNUSED (0 << 28)
729#define DVO_PIPE_STALL (1 << 28)
730#define DVO_PIPE_STALL_TV (2 << 28)
731#define DVO_PIPE_STALL_MASK (3 << 28)
732#define DVO_USE_VGA_SYNC (1 << 15)
733#define DVO_DATA_ORDER_I740 (0 << 14)
734#define DVO_DATA_ORDER_FP (1 << 14)
735#define DVO_VSYNC_DISABLE (1 << 11)
736#define DVO_HSYNC_DISABLE (1 << 10)
737#define DVO_VSYNC_TRISTATE (1 << 9)
738#define DVO_HSYNC_TRISTATE (1 << 8)
739#define DVO_BORDER_ENABLE (1 << 7)
740#define DVO_DATA_ORDER_GBRG (1 << 6)
741#define DVO_DATA_ORDER_RGGB (0 << 6)
742#define DVO_DATA_ORDER_GBRG_ERRATA (0 << 6)
743#define DVO_DATA_ORDER_RGGB_ERRATA (1 << 6)
744#define DVO_VSYNC_ACTIVE_HIGH (1 << 4)
745#define DVO_HSYNC_ACTIVE_HIGH (1 << 3)
746#define DVO_BLANK_ACTIVE_HIGH (1 << 2)
747#define DVO_OUTPUT_CSTATE_PIXELS (1 << 1) /* SDG only */
748#define DVO_OUTPUT_SOURCE_SIZE_PIXELS (1 << 0) /* SDG only */
749#define DVO_PRESERVE_MASK (0x7<<24)
750#define DVOA_SRCDIM 0x61124
751#define DVOB_SRCDIM 0x61144
752#define DVOC_SRCDIM 0x61164
753#define DVO_SRCDIM_HORIZONTAL_SHIFT 12
754#define DVO_SRCDIM_VERTICAL_SHIFT 0
755
756/* LVDS port control */
757#define LVDS 0x61180
758/*
759 * Enables the LVDS port. This bit must be set before DPLLs are enabled, as
760 * the DPLL semantics change when the LVDS is assigned to that pipe.
761 */
762#define LVDS_PORT_EN (1 << 31)
763/* Selects pipe B for LVDS data. Must be set on pre-965. */
764#define LVDS_PIPEB_SELECT (1 << 30)
765/*
766 * Enables the A0-A2 data pairs and CLKA, containing 18 bits of color data per
767 * pixel.
768 */
769#define LVDS_A0A2_CLKA_POWER_MASK (3 << 8)
770#define LVDS_A0A2_CLKA_POWER_DOWN (0 << 8)
771#define LVDS_A0A2_CLKA_POWER_UP (3 << 8)
772/*
773 * Controls the A3 data pair, which contains the additional LSBs for 24 bit
774 * mode. Only enabled if LVDS_A0A2_CLKA_POWER_UP also indicates it should be
775 * on.
776 */
777#define LVDS_A3_POWER_MASK (3 << 6)
778#define LVDS_A3_POWER_DOWN (0 << 6)
779#define LVDS_A3_POWER_UP (3 << 6)
780/*
781 * Controls the CLKB pair. This should only be set when LVDS_B0B3_POWER_UP
782 * is set.
783 */
784#define LVDS_CLKB_POWER_MASK (3 << 4)
785#define LVDS_CLKB_POWER_DOWN (0 << 4)
786#define LVDS_CLKB_POWER_UP (3 << 4)
787/*
788 * Controls the B0-B3 data pairs. This must be set to match the DPLL p2
789 * setting for whether we are in dual-channel mode. The B3 pair will
790 * additionally only be powered up when LVDS_A3_POWER_UP is set.
791 */
792#define LVDS_B0B3_POWER_MASK (3 << 2)
793#define LVDS_B0B3_POWER_DOWN (0 << 2)
794#define LVDS_B0B3_POWER_UP (3 << 2)
795
796/* Panel power sequencing */
797#define PP_STATUS 0x61200
798#define PP_ON (1 << 31)
799/*
800 * Indicates that all dependencies of the panel are on:
801 *
802 * - PLL enabled
803 * - pipe enabled
804 * - LVDS/DVOB/DVOC on
805 */
806#define PP_READY (1 << 30)
807#define PP_SEQUENCE_NONE (0 << 28)
808#define PP_SEQUENCE_ON (1 << 28)
809#define PP_SEQUENCE_OFF (2 << 28)
810#define PP_SEQUENCE_MASK 0x30000000
811#define PP_CONTROL 0x61204
812#define POWER_TARGET_ON (1 << 0)
813#define PP_ON_DELAYS 0x61208
814#define PP_OFF_DELAYS 0x6120c
815#define PP_DIVISOR 0x61210
816
817/* Panel fitting */
818#define PFIT_CONTROL 0x61230
819#define PFIT_ENABLE (1 << 31)
820#define PFIT_PIPE_MASK (3 << 29)
821#define PFIT_PIPE_SHIFT 29
822#define VERT_INTERP_DISABLE (0 << 10)
823#define VERT_INTERP_BILINEAR (1 << 10)
824#define VERT_INTERP_MASK (3 << 10)
825#define VERT_AUTO_SCALE (1 << 9)
826#define HORIZ_INTERP_DISABLE (0 << 6)
827#define HORIZ_INTERP_BILINEAR (1 << 6)
828#define HORIZ_INTERP_MASK (3 << 6)
829#define HORIZ_AUTO_SCALE (1 << 5)
830#define PANEL_8TO6_DITHER_ENABLE (1 << 3)
831#define PFIT_PGM_RATIOS 0x61234
832#define PFIT_VERT_SCALE_MASK 0xfff00000
833#define PFIT_HORIZ_SCALE_MASK 0x0000fff0
834#define PFIT_AUTO_RATIOS 0x61238
835
836/* Backlight control */
837#define BLC_PWM_CTL 0x61254
838#define BACKLIGHT_MODULATION_FREQ_SHIFT (17)
839#define BLC_PWM_CTL2 0x61250 /* 965+ only */
8ee1c3db 840#define BLM_COMBINATION_MODE (1 << 30)
585fb111
JB
841/*
842 * This is the most significant 15 bits of the number of backlight cycles in a
843 * complete cycle of the modulated backlight control.
844 *
845 * The actual value is this field multiplied by two.
846 */
847#define BACKLIGHT_MODULATION_FREQ_MASK (0x7fff << 17)
848#define BLM_LEGACY_MODE (1 << 16)
849/*
850 * This is the number of cycles out of the backlight modulation cycle for which
851 * the backlight is on.
852 *
853 * This field must be no greater than the number of cycles in the complete
854 * backlight modulation cycle.
855 */
856#define BACKLIGHT_DUTY_CYCLE_SHIFT (0)
857#define BACKLIGHT_DUTY_CYCLE_MASK (0xffff)
858
859/* TV port control */
860#define TV_CTL 0x68000
861/** Enables the TV encoder */
862# define TV_ENC_ENABLE (1 << 31)
863/** Sources the TV encoder input from pipe B instead of A. */
864# define TV_ENC_PIPEB_SELECT (1 << 30)
865/** Outputs composite video (DAC A only) */
866# define TV_ENC_OUTPUT_COMPOSITE (0 << 28)
867/** Outputs SVideo video (DAC B/C) */
868# define TV_ENC_OUTPUT_SVIDEO (1 << 28)
869/** Outputs Component video (DAC A/B/C) */
870# define TV_ENC_OUTPUT_COMPONENT (2 << 28)
871/** Outputs Composite and SVideo (DAC A/B/C) */
872# define TV_ENC_OUTPUT_SVIDEO_COMPOSITE (3 << 28)
873# define TV_TRILEVEL_SYNC (1 << 21)
874/** Enables slow sync generation (945GM only) */
875# define TV_SLOW_SYNC (1 << 20)
876/** Selects 4x oversampling for 480i and 576p */
877# define TV_OVERSAMPLE_4X (0 << 18)
878/** Selects 2x oversampling for 720p and 1080i */
879# define TV_OVERSAMPLE_2X (1 << 18)
880/** Selects no oversampling for 1080p */
881# define TV_OVERSAMPLE_NONE (2 << 18)
882/** Selects 8x oversampling */
883# define TV_OVERSAMPLE_8X (3 << 18)
884/** Selects progressive mode rather than interlaced */
885# define TV_PROGRESSIVE (1 << 17)
886/** Sets the colorburst to PAL mode. Required for non-M PAL modes. */
887# define TV_PAL_BURST (1 << 16)
888/** Field for setting delay of Y compared to C */
889# define TV_YC_SKEW_MASK (7 << 12)
890/** Enables a fix for 480p/576p standard definition modes on the 915GM only */
891# define TV_ENC_SDP_FIX (1 << 11)
892/**
893 * Enables a fix for the 915GM only.
894 *
895 * Not sure what it does.
896 */
897# define TV_ENC_C0_FIX (1 << 10)
898/** Bits that must be preserved by software */
d2d9f232 899# define TV_CTL_SAVE ((1 << 11) | (3 << 9) | (7 << 6) | 0xf)
585fb111
JB
900# define TV_FUSE_STATE_MASK (3 << 4)
901/** Read-only state that reports all features enabled */
902# define TV_FUSE_STATE_ENABLED (0 << 4)
903/** Read-only state that reports that Macrovision is disabled in hardware*/
904# define TV_FUSE_STATE_NO_MACROVISION (1 << 4)
905/** Read-only state that reports that TV-out is disabled in hardware. */
906# define TV_FUSE_STATE_DISABLED (2 << 4)
907/** Normal operation */
908# define TV_TEST_MODE_NORMAL (0 << 0)
909/** Encoder test pattern 1 - combo pattern */
910# define TV_TEST_MODE_PATTERN_1 (1 << 0)
911/** Encoder test pattern 2 - full screen vertical 75% color bars */
912# define TV_TEST_MODE_PATTERN_2 (2 << 0)
913/** Encoder test pattern 3 - full screen horizontal 75% color bars */
914# define TV_TEST_MODE_PATTERN_3 (3 << 0)
915/** Encoder test pattern 4 - random noise */
916# define TV_TEST_MODE_PATTERN_4 (4 << 0)
917/** Encoder test pattern 5 - linear color ramps */
918# define TV_TEST_MODE_PATTERN_5 (5 << 0)
919/**
920 * This test mode forces the DACs to 50% of full output.
921 *
922 * This is used for load detection in combination with TVDAC_SENSE_MASK
923 */
924# define TV_TEST_MODE_MONITOR_DETECT (7 << 0)
925# define TV_TEST_MODE_MASK (7 << 0)
926
927#define TV_DAC 0x68004
928/**
929 * Reports that DAC state change logic has reported change (RO).
930 *
931 * This gets cleared when TV_DAC_STATE_EN is cleared
932*/
933# define TVDAC_STATE_CHG (1 << 31)
934# define TVDAC_SENSE_MASK (7 << 28)
935/** Reports that DAC A voltage is above the detect threshold */
936# define TVDAC_A_SENSE (1 << 30)
937/** Reports that DAC B voltage is above the detect threshold */
938# define TVDAC_B_SENSE (1 << 29)
939/** Reports that DAC C voltage is above the detect threshold */
940# define TVDAC_C_SENSE (1 << 28)
941/**
942 * Enables DAC state detection logic, for load-based TV detection.
943 *
944 * The PLL of the chosen pipe (in TV_CTL) must be running, and the encoder set
945 * to off, for load detection to work.
946 */
947# define TVDAC_STATE_CHG_EN (1 << 27)
948/** Sets the DAC A sense value to high */
949# define TVDAC_A_SENSE_CTL (1 << 26)
950/** Sets the DAC B sense value to high */
951# define TVDAC_B_SENSE_CTL (1 << 25)
952/** Sets the DAC C sense value to high */
953# define TVDAC_C_SENSE_CTL (1 << 24)
954/** Overrides the ENC_ENABLE and DAC voltage levels */
955# define DAC_CTL_OVERRIDE (1 << 7)
956/** Sets the slew rate. Must be preserved in software */
957# define ENC_TVDAC_SLEW_FAST (1 << 6)
958# define DAC_A_1_3_V (0 << 4)
959# define DAC_A_1_1_V (1 << 4)
960# define DAC_A_0_7_V (2 << 4)
961# define DAC_A_OFF (3 << 4)
962# define DAC_B_1_3_V (0 << 2)
963# define DAC_B_1_1_V (1 << 2)
964# define DAC_B_0_7_V (2 << 2)
965# define DAC_B_OFF (3 << 2)
966# define DAC_C_1_3_V (0 << 0)
967# define DAC_C_1_1_V (1 << 0)
968# define DAC_C_0_7_V (2 << 0)
969# define DAC_C_OFF (3 << 0)
970
971/**
972 * CSC coefficients are stored in a floating point format with 9 bits of
973 * mantissa and 2 or 3 bits of exponent. The exponent is represented as 2**-n,
974 * where 2-bit exponents are unsigned n, and 3-bit exponents are signed n with
975 * -1 (0x3) being the only legal negative value.
976 */
977#define TV_CSC_Y 0x68010
978# define TV_RY_MASK 0x07ff0000
979# define TV_RY_SHIFT 16
980# define TV_GY_MASK 0x00000fff
981# define TV_GY_SHIFT 0
982
983#define TV_CSC_Y2 0x68014
984# define TV_BY_MASK 0x07ff0000
985# define TV_BY_SHIFT 16
986/**
987 * Y attenuation for component video.
988 *
989 * Stored in 1.9 fixed point.
990 */
991# define TV_AY_MASK 0x000003ff
992# define TV_AY_SHIFT 0
993
994#define TV_CSC_U 0x68018
995# define TV_RU_MASK 0x07ff0000
996# define TV_RU_SHIFT 16
997# define TV_GU_MASK 0x000007ff
998# define TV_GU_SHIFT 0
999
1000#define TV_CSC_U2 0x6801c
1001# define TV_BU_MASK 0x07ff0000
1002# define TV_BU_SHIFT 16
1003/**
1004 * U attenuation for component video.
1005 *
1006 * Stored in 1.9 fixed point.
1007 */
1008# define TV_AU_MASK 0x000003ff
1009# define TV_AU_SHIFT 0
1010
1011#define TV_CSC_V 0x68020
1012# define TV_RV_MASK 0x0fff0000
1013# define TV_RV_SHIFT 16
1014# define TV_GV_MASK 0x000007ff
1015# define TV_GV_SHIFT 0
1016
1017#define TV_CSC_V2 0x68024
1018# define TV_BV_MASK 0x07ff0000
1019# define TV_BV_SHIFT 16
1020/**
1021 * V attenuation for component video.
1022 *
1023 * Stored in 1.9 fixed point.
1024 */
1025# define TV_AV_MASK 0x000007ff
1026# define TV_AV_SHIFT 0
1027
1028#define TV_CLR_KNOBS 0x68028
1029/** 2s-complement brightness adjustment */
1030# define TV_BRIGHTNESS_MASK 0xff000000
1031# define TV_BRIGHTNESS_SHIFT 24
1032/** Contrast adjustment, as a 2.6 unsigned floating point number */
1033# define TV_CONTRAST_MASK 0x00ff0000
1034# define TV_CONTRAST_SHIFT 16
1035/** Saturation adjustment, as a 2.6 unsigned floating point number */
1036# define TV_SATURATION_MASK 0x0000ff00
1037# define TV_SATURATION_SHIFT 8
1038/** Hue adjustment, as an integer phase angle in degrees */
1039# define TV_HUE_MASK 0x000000ff
1040# define TV_HUE_SHIFT 0
1041
1042#define TV_CLR_LEVEL 0x6802c
1043/** Controls the DAC level for black */
1044# define TV_BLACK_LEVEL_MASK 0x01ff0000
1045# define TV_BLACK_LEVEL_SHIFT 16
1046/** Controls the DAC level for blanking */
1047# define TV_BLANK_LEVEL_MASK 0x000001ff
1048# define TV_BLANK_LEVEL_SHIFT 0
1049
1050#define TV_H_CTL_1 0x68030
1051/** Number of pixels in the hsync. */
1052# define TV_HSYNC_END_MASK 0x1fff0000
1053# define TV_HSYNC_END_SHIFT 16
1054/** Total number of pixels minus one in the line (display and blanking). */
1055# define TV_HTOTAL_MASK 0x00001fff
1056# define TV_HTOTAL_SHIFT 0
1057
1058#define TV_H_CTL_2 0x68034
1059/** Enables the colorburst (needed for non-component color) */
1060# define TV_BURST_ENA (1 << 31)
1061/** Offset of the colorburst from the start of hsync, in pixels minus one. */
1062# define TV_HBURST_START_SHIFT 16
1063# define TV_HBURST_START_MASK 0x1fff0000
1064/** Length of the colorburst */
1065# define TV_HBURST_LEN_SHIFT 0
1066# define TV_HBURST_LEN_MASK 0x0001fff
1067
1068#define TV_H_CTL_3 0x68038
1069/** End of hblank, measured in pixels minus one from start of hsync */
1070# define TV_HBLANK_END_SHIFT 16
1071# define TV_HBLANK_END_MASK 0x1fff0000
1072/** Start of hblank, measured in pixels minus one from start of hsync */
1073# define TV_HBLANK_START_SHIFT 0
1074# define TV_HBLANK_START_MASK 0x0001fff
1075
1076#define TV_V_CTL_1 0x6803c
1077/** XXX */
1078# define TV_NBR_END_SHIFT 16
1079# define TV_NBR_END_MASK 0x07ff0000
1080/** XXX */
1081# define TV_VI_END_F1_SHIFT 8
1082# define TV_VI_END_F1_MASK 0x00003f00
1083/** XXX */
1084# define TV_VI_END_F2_SHIFT 0
1085# define TV_VI_END_F2_MASK 0x0000003f
1086
1087#define TV_V_CTL_2 0x68040
1088/** Length of vsync, in half lines */
1089# define TV_VSYNC_LEN_MASK 0x07ff0000
1090# define TV_VSYNC_LEN_SHIFT 16
1091/** Offset of the start of vsync in field 1, measured in one less than the
1092 * number of half lines.
1093 */
1094# define TV_VSYNC_START_F1_MASK 0x00007f00
1095# define TV_VSYNC_START_F1_SHIFT 8
1096/**
1097 * Offset of the start of vsync in field 2, measured in one less than the
1098 * number of half lines.
1099 */
1100# define TV_VSYNC_START_F2_MASK 0x0000007f
1101# define TV_VSYNC_START_F2_SHIFT 0
1102
1103#define TV_V_CTL_3 0x68044
1104/** Enables generation of the equalization signal */
1105# define TV_EQUAL_ENA (1 << 31)
1106/** Length of vsync, in half lines */
1107# define TV_VEQ_LEN_MASK 0x007f0000
1108# define TV_VEQ_LEN_SHIFT 16
1109/** Offset of the start of equalization in field 1, measured in one less than
1110 * the number of half lines.
1111 */
1112# define TV_VEQ_START_F1_MASK 0x0007f00
1113# define TV_VEQ_START_F1_SHIFT 8
1114/**
1115 * Offset of the start of equalization in field 2, measured in one less than
1116 * the number of half lines.
1117 */
1118# define TV_VEQ_START_F2_MASK 0x000007f
1119# define TV_VEQ_START_F2_SHIFT 0
1120
1121#define TV_V_CTL_4 0x68048
1122/**
1123 * Offset to start of vertical colorburst, measured in one less than the
1124 * number of lines from vertical start.
1125 */
1126# define TV_VBURST_START_F1_MASK 0x003f0000
1127# define TV_VBURST_START_F1_SHIFT 16
1128/**
1129 * Offset to the end of vertical colorburst, measured in one less than the
1130 * number of lines from the start of NBR.
1131 */
1132# define TV_VBURST_END_F1_MASK 0x000000ff
1133# define TV_VBURST_END_F1_SHIFT 0
1134
1135#define TV_V_CTL_5 0x6804c
1136/**
1137 * Offset to start of vertical colorburst, measured in one less than the
1138 * number of lines from vertical start.
1139 */
1140# define TV_VBURST_START_F2_MASK 0x003f0000
1141# define TV_VBURST_START_F2_SHIFT 16
1142/**
1143 * Offset to the end of vertical colorburst, measured in one less than the
1144 * number of lines from the start of NBR.
1145 */
1146# define TV_VBURST_END_F2_MASK 0x000000ff
1147# define TV_VBURST_END_F2_SHIFT 0
1148
1149#define TV_V_CTL_6 0x68050
1150/**
1151 * Offset to start of vertical colorburst, measured in one less than the
1152 * number of lines from vertical start.
1153 */
1154# define TV_VBURST_START_F3_MASK 0x003f0000
1155# define TV_VBURST_START_F3_SHIFT 16
1156/**
1157 * Offset to the end of vertical colorburst, measured in one less than the
1158 * number of lines from the start of NBR.
1159 */
1160# define TV_VBURST_END_F3_MASK 0x000000ff
1161# define TV_VBURST_END_F3_SHIFT 0
1162
1163#define TV_V_CTL_7 0x68054
1164/**
1165 * Offset to start of vertical colorburst, measured in one less than the
1166 * number of lines from vertical start.
1167 */
1168# define TV_VBURST_START_F4_MASK 0x003f0000
1169# define TV_VBURST_START_F4_SHIFT 16
1170/**
1171 * Offset to the end of vertical colorburst, measured in one less than the
1172 * number of lines from the start of NBR.
1173 */
1174# define TV_VBURST_END_F4_MASK 0x000000ff
1175# define TV_VBURST_END_F4_SHIFT 0
1176
1177#define TV_SC_CTL_1 0x68060
1178/** Turns on the first subcarrier phase generation DDA */
1179# define TV_SC_DDA1_EN (1 << 31)
1180/** Turns on the first subcarrier phase generation DDA */
1181# define TV_SC_DDA2_EN (1 << 30)
1182/** Turns on the first subcarrier phase generation DDA */
1183# define TV_SC_DDA3_EN (1 << 29)
1184/** Sets the subcarrier DDA to reset frequency every other field */
1185# define TV_SC_RESET_EVERY_2 (0 << 24)
1186/** Sets the subcarrier DDA to reset frequency every fourth field */
1187# define TV_SC_RESET_EVERY_4 (1 << 24)
1188/** Sets the subcarrier DDA to reset frequency every eighth field */
1189# define TV_SC_RESET_EVERY_8 (2 << 24)
1190/** Sets the subcarrier DDA to never reset the frequency */
1191# define TV_SC_RESET_NEVER (3 << 24)
1192/** Sets the peak amplitude of the colorburst.*/
1193# define TV_BURST_LEVEL_MASK 0x00ff0000
1194# define TV_BURST_LEVEL_SHIFT 16
1195/** Sets the increment of the first subcarrier phase generation DDA */
1196# define TV_SCDDA1_INC_MASK 0x00000fff
1197# define TV_SCDDA1_INC_SHIFT 0
1198
1199#define TV_SC_CTL_2 0x68064
1200/** Sets the rollover for the second subcarrier phase generation DDA */
1201# define TV_SCDDA2_SIZE_MASK 0x7fff0000
1202# define TV_SCDDA2_SIZE_SHIFT 16
1203/** Sets the increent of the second subcarrier phase generation DDA */
1204# define TV_SCDDA2_INC_MASK 0x00007fff
1205# define TV_SCDDA2_INC_SHIFT 0
1206
1207#define TV_SC_CTL_3 0x68068
1208/** Sets the rollover for the third subcarrier phase generation DDA */
1209# define TV_SCDDA3_SIZE_MASK 0x7fff0000
1210# define TV_SCDDA3_SIZE_SHIFT 16
1211/** Sets the increent of the third subcarrier phase generation DDA */
1212# define TV_SCDDA3_INC_MASK 0x00007fff
1213# define TV_SCDDA3_INC_SHIFT 0
1214
1215#define TV_WIN_POS 0x68070
1216/** X coordinate of the display from the start of horizontal active */
1217# define TV_XPOS_MASK 0x1fff0000
1218# define TV_XPOS_SHIFT 16
1219/** Y coordinate of the display from the start of vertical active (NBR) */
1220# define TV_YPOS_MASK 0x00000fff
1221# define TV_YPOS_SHIFT 0
1222
1223#define TV_WIN_SIZE 0x68074
1224/** Horizontal size of the display window, measured in pixels*/
1225# define TV_XSIZE_MASK 0x1fff0000
1226# define TV_XSIZE_SHIFT 16
1227/**
1228 * Vertical size of the display window, measured in pixels.
1229 *
1230 * Must be even for interlaced modes.
1231 */
1232# define TV_YSIZE_MASK 0x00000fff
1233# define TV_YSIZE_SHIFT 0
1234
1235#define TV_FILTER_CTL_1 0x68080
1236/**
1237 * Enables automatic scaling calculation.
1238 *
1239 * If set, the rest of the registers are ignored, and the calculated values can
1240 * be read back from the register.
1241 */
1242# define TV_AUTO_SCALE (1 << 31)
1243/**
1244 * Disables the vertical filter.
1245 *
1246 * This is required on modes more than 1024 pixels wide */
1247# define TV_V_FILTER_BYPASS (1 << 29)
1248/** Enables adaptive vertical filtering */
1249# define TV_VADAPT (1 << 28)
1250# define TV_VADAPT_MODE_MASK (3 << 26)
1251/** Selects the least adaptive vertical filtering mode */
1252# define TV_VADAPT_MODE_LEAST (0 << 26)
1253/** Selects the moderately adaptive vertical filtering mode */
1254# define TV_VADAPT_MODE_MODERATE (1 << 26)
1255/** Selects the most adaptive vertical filtering mode */
1256# define TV_VADAPT_MODE_MOST (3 << 26)
1257/**
1258 * Sets the horizontal scaling factor.
1259 *
1260 * This should be the fractional part of the horizontal scaling factor divided
1261 * by the oversampling rate. TV_HSCALE should be less than 1, and set to:
1262 *
1263 * (src width - 1) / ((oversample * dest width) - 1)
1264 */
1265# define TV_HSCALE_FRAC_MASK 0x00003fff
1266# define TV_HSCALE_FRAC_SHIFT 0
1267
1268#define TV_FILTER_CTL_2 0x68084
1269/**
1270 * Sets the integer part of the 3.15 fixed-point vertical scaling factor.
1271 *
1272 * TV_VSCALE should be (src height - 1) / ((interlace * dest height) - 1)
1273 */
1274# define TV_VSCALE_INT_MASK 0x00038000
1275# define TV_VSCALE_INT_SHIFT 15
1276/**
1277 * Sets the fractional part of the 3.15 fixed-point vertical scaling factor.
1278 *
1279 * \sa TV_VSCALE_INT_MASK
1280 */
1281# define TV_VSCALE_FRAC_MASK 0x00007fff
1282# define TV_VSCALE_FRAC_SHIFT 0
1283
1284#define TV_FILTER_CTL_3 0x68088
1285/**
1286 * Sets the integer part of the 3.15 fixed-point vertical scaling factor.
1287 *
1288 * TV_VSCALE should be (src height - 1) / (1/4 * (dest height - 1))
1289 *
1290 * For progressive modes, TV_VSCALE_IP_INT should be set to zeroes.
1291 */
1292# define TV_VSCALE_IP_INT_MASK 0x00038000
1293# define TV_VSCALE_IP_INT_SHIFT 15
1294/**
1295 * Sets the fractional part of the 3.15 fixed-point vertical scaling factor.
1296 *
1297 * For progressive modes, TV_VSCALE_IP_INT should be set to zeroes.
1298 *
1299 * \sa TV_VSCALE_IP_INT_MASK
1300 */
1301# define TV_VSCALE_IP_FRAC_MASK 0x00007fff
1302# define TV_VSCALE_IP_FRAC_SHIFT 0
1303
1304#define TV_CC_CONTROL 0x68090
1305# define TV_CC_ENABLE (1 << 31)
1306/**
1307 * Specifies which field to send the CC data in.
1308 *
1309 * CC data is usually sent in field 0.
1310 */
1311# define TV_CC_FID_MASK (1 << 27)
1312# define TV_CC_FID_SHIFT 27
1313/** Sets the horizontal position of the CC data. Usually 135. */
1314# define TV_CC_HOFF_MASK 0x03ff0000
1315# define TV_CC_HOFF_SHIFT 16
1316/** Sets the vertical position of the CC data. Usually 21 */
1317# define TV_CC_LINE_MASK 0x0000003f
1318# define TV_CC_LINE_SHIFT 0
1319
1320#define TV_CC_DATA 0x68094
1321# define TV_CC_RDY (1 << 31)
1322/** Second word of CC data to be transmitted. */
1323# define TV_CC_DATA_2_MASK 0x007f0000
1324# define TV_CC_DATA_2_SHIFT 16
1325/** First word of CC data to be transmitted. */
1326# define TV_CC_DATA_1_MASK 0x0000007f
1327# define TV_CC_DATA_1_SHIFT 0
1328
1329#define TV_H_LUMA_0 0x68100
1330#define TV_H_LUMA_59 0x681ec
1331#define TV_H_CHROMA_0 0x68200
1332#define TV_H_CHROMA_59 0x682ec
1333#define TV_V_LUMA_0 0x68300
1334#define TV_V_LUMA_42 0x683a8
1335#define TV_V_CHROMA_0 0x68400
1336#define TV_V_CHROMA_42 0x684a8
1337
1338/* Display & cursor control */
1339
1340/* Pipe A */
1341#define PIPEADSL 0x70000
1342#define PIPEACONF 0x70008
1343#define PIPEACONF_ENABLE (1<<31)
1344#define PIPEACONF_DISABLE 0
1345#define PIPEACONF_DOUBLE_WIDE (1<<30)
1346#define I965_PIPECONF_ACTIVE (1<<30)
1347#define PIPEACONF_SINGLE_WIDE 0
1348#define PIPEACONF_PIPE_UNLOCKED 0
1349#define PIPEACONF_PIPE_LOCKED (1<<25)
1350#define PIPEACONF_PALETTE 0
1351#define PIPEACONF_GAMMA (1<<24)
1352#define PIPECONF_FORCE_BORDER (1<<25)
1353#define PIPECONF_PROGRESSIVE (0 << 21)
1354#define PIPECONF_INTERLACE_W_FIELD_INDICATION (6 << 21)
1355#define PIPECONF_INTERLACE_FIELD_0_ONLY (7 << 21)
1356#define PIPEASTAT 0x70024
1357#define PIPE_FIFO_UNDERRUN_STATUS (1UL<<31)
1358#define PIPE_CRC_ERROR_ENABLE (1UL<<29)
1359#define PIPE_CRC_DONE_ENABLE (1UL<<28)
1360#define PIPE_GMBUS_EVENT_ENABLE (1UL<<27)
1361#define PIPE_HOTPLUG_INTERRUPT_ENABLE (1UL<<26)
1362#define PIPE_VSYNC_INTERRUPT_ENABLE (1UL<<25)
1363#define PIPE_DISPLAY_LINE_COMPARE_ENABLE (1UL<<24)
1364#define PIPE_DPST_EVENT_ENABLE (1UL<<23)
1365#define PIPE_LEGACY_BLC_EVENT_ENABLE (1UL<<22)
1366#define PIPE_ODD_FIELD_INTERRUPT_ENABLE (1UL<<21)
1367#define PIPE_EVEN_FIELD_INTERRUPT_ENABLE (1UL<<20)
1368#define PIPE_HOTPLUG_TV_INTERRUPT_ENABLE (1UL<<18) /* pre-965 */
1369#define PIPE_START_VBLANK_INTERRUPT_ENABLE (1UL<<18) /* 965 or later */
1370#define PIPE_VBLANK_INTERRUPT_ENABLE (1UL<<17)
1371#define PIPE_OVERLAY_UPDATED_ENABLE (1UL<<16)
1372#define PIPE_CRC_ERROR_INTERRUPT_STATUS (1UL<<13)
1373#define PIPE_CRC_DONE_INTERRUPT_STATUS (1UL<<12)
1374#define PIPE_GMBUS_INTERRUPT_STATUS (1UL<<11)
1375#define PIPE_HOTPLUG_INTERRUPT_STATUS (1UL<<10)
1376#define PIPE_VSYNC_INTERRUPT_STATUS (1UL<<9)
1377#define PIPE_DISPLAY_LINE_COMPARE_STATUS (1UL<<8)
1378#define PIPE_DPST_EVENT_STATUS (1UL<<7)
1379#define PIPE_LEGACY_BLC_EVENT_STATUS (1UL<<6)
1380#define PIPE_ODD_FIELD_INTERRUPT_STATUS (1UL<<5)
1381#define PIPE_EVEN_FIELD_INTERRUPT_STATUS (1UL<<4)
1382#define PIPE_HOTPLUG_TV_INTERRUPT_STATUS (1UL<<2) /* pre-965 */
1383#define PIPE_START_VBLANK_INTERRUPT_STATUS (1UL<<2) /* 965 or later */
1384#define PIPE_VBLANK_INTERRUPT_STATUS (1UL<<1)
1385#define PIPE_OVERLAY_UPDATED_STATUS (1UL<<0)
1386
1387#define DSPARB 0x70030
1388#define DSPARB_CSTART_MASK (0x7f << 7)
1389#define DSPARB_CSTART_SHIFT 7
1390#define DSPARB_BSTART_MASK (0x7f)
1391#define DSPARB_BSTART_SHIFT 0
1392/*
1393 * The two pipe frame counter registers are not synchronized, so
1394 * reading a stable value is somewhat tricky. The following code
1395 * should work:
1396 *
1397 * do {
1398 * high1 = ((INREG(PIPEAFRAMEHIGH) & PIPE_FRAME_HIGH_MASK) >>
1399 * PIPE_FRAME_HIGH_SHIFT;
1400 * low1 = ((INREG(PIPEAFRAMEPIXEL) & PIPE_FRAME_LOW_MASK) >>
1401 * PIPE_FRAME_LOW_SHIFT);
1402 * high2 = ((INREG(PIPEAFRAMEHIGH) & PIPE_FRAME_HIGH_MASK) >>
1403 * PIPE_FRAME_HIGH_SHIFT);
1404 * } while (high1 != high2);
1405 * frame = (high1 << 8) | low1;
1406 */
1407#define PIPEAFRAMEHIGH 0x70040
1408#define PIPE_FRAME_HIGH_MASK 0x0000ffff
1409#define PIPE_FRAME_HIGH_SHIFT 0
1410#define PIPEAFRAMEPIXEL 0x70044
1411#define PIPE_FRAME_LOW_MASK 0xff000000
1412#define PIPE_FRAME_LOW_SHIFT 24
1413#define PIPE_PIXEL_MASK 0x00ffffff
1414#define PIPE_PIXEL_SHIFT 0
9880b7a5
JB
1415/* GM45+ just has to be different */
1416#define PIPEA_FRMCOUNT_GM45 0x70040
1417#define PIPEA_FLIPCOUNT_GM45 0x70044
585fb111
JB
1418
1419/* Cursor A & B regs */
1420#define CURACNTR 0x70080
14b60391
JB
1421/* Old style CUR*CNTR flags (desktop 8xx) */
1422#define CURSOR_ENABLE 0x80000000
1423#define CURSOR_GAMMA_ENABLE 0x40000000
1424#define CURSOR_STRIDE_MASK 0x30000000
1425#define CURSOR_FORMAT_SHIFT 24
1426#define CURSOR_FORMAT_MASK (0x07 << CURSOR_FORMAT_SHIFT)
1427#define CURSOR_FORMAT_2C (0x00 << CURSOR_FORMAT_SHIFT)
1428#define CURSOR_FORMAT_3C (0x01 << CURSOR_FORMAT_SHIFT)
1429#define CURSOR_FORMAT_4C (0x02 << CURSOR_FORMAT_SHIFT)
1430#define CURSOR_FORMAT_ARGB (0x04 << CURSOR_FORMAT_SHIFT)
1431#define CURSOR_FORMAT_XRGB (0x05 << CURSOR_FORMAT_SHIFT)
1432/* New style CUR*CNTR flags */
1433#define CURSOR_MODE 0x27
585fb111
JB
1434#define CURSOR_MODE_DISABLE 0x00
1435#define CURSOR_MODE_64_32B_AX 0x07
1436#define CURSOR_MODE_64_ARGB_AX ((1 << 5) | CURSOR_MODE_64_32B_AX)
14b60391
JB
1437#define MCURSOR_PIPE_SELECT (1 << 28)
1438#define MCURSOR_PIPE_A 0x00
1439#define MCURSOR_PIPE_B (1 << 28)
585fb111
JB
1440#define MCURSOR_GAMMA_ENABLE (1 << 26)
1441#define CURABASE 0x70084
1442#define CURAPOS 0x70088
1443#define CURSOR_POS_MASK 0x007FF
1444#define CURSOR_POS_SIGN 0x8000
1445#define CURSOR_X_SHIFT 0
1446#define CURSOR_Y_SHIFT 16
14b60391 1447#define CURSIZE 0x700a0
585fb111
JB
1448#define CURBCNTR 0x700c0
1449#define CURBBASE 0x700c4
1450#define CURBPOS 0x700c8
1451
1452/* Display A control */
1453#define DSPACNTR 0x70180
1454#define DISPLAY_PLANE_ENABLE (1<<31)
1455#define DISPLAY_PLANE_DISABLE 0
1456#define DISPPLANE_GAMMA_ENABLE (1<<30)
1457#define DISPPLANE_GAMMA_DISABLE 0
1458#define DISPPLANE_PIXFORMAT_MASK (0xf<<26)
1459#define DISPPLANE_8BPP (0x2<<26)
1460#define DISPPLANE_15_16BPP (0x4<<26)
1461#define DISPPLANE_16BPP (0x5<<26)
1462#define DISPPLANE_32BPP_NO_ALPHA (0x6<<26)
1463#define DISPPLANE_32BPP (0x7<<26)
1464#define DISPPLANE_STEREO_ENABLE (1<<25)
1465#define DISPPLANE_STEREO_DISABLE 0
1466#define DISPPLANE_SEL_PIPE_MASK (1<<24)
1467#define DISPPLANE_SEL_PIPE_A 0
1468#define DISPPLANE_SEL_PIPE_B (1<<24)
1469#define DISPPLANE_SRC_KEY_ENABLE (1<<22)
1470#define DISPPLANE_SRC_KEY_DISABLE 0
1471#define DISPPLANE_LINE_DOUBLE (1<<20)
1472#define DISPPLANE_NO_LINE_DOUBLE 0
1473#define DISPPLANE_STEREO_POLARITY_FIRST 0
1474#define DISPPLANE_STEREO_POLARITY_SECOND (1<<18)
f544847f 1475#define DISPPLANE_TILED (1<<10)
585fb111
JB
1476#define DSPAADDR 0x70184
1477#define DSPASTRIDE 0x70188
1478#define DSPAPOS 0x7018C /* reserved */
1479#define DSPASIZE 0x70190
1480#define DSPASURF 0x7019C /* 965+ only */
1481#define DSPATILEOFF 0x701A4 /* 965+ only */
1482
1483/* VBIOS flags */
1484#define SWF00 0x71410
1485#define SWF01 0x71414
1486#define SWF02 0x71418
1487#define SWF03 0x7141c
1488#define SWF04 0x71420
1489#define SWF05 0x71424
1490#define SWF06 0x71428
1491#define SWF10 0x70410
1492#define SWF11 0x70414
1493#define SWF14 0x71420
1494#define SWF30 0x72414
1495#define SWF31 0x72418
1496#define SWF32 0x7241c
1497
1498/* Pipe B */
1499#define PIPEBDSL 0x71000
1500#define PIPEBCONF 0x71008
1501#define PIPEBSTAT 0x71024
1502#define PIPEBFRAMEHIGH 0x71040
1503#define PIPEBFRAMEPIXEL 0x71044
9880b7a5
JB
1504#define PIPEB_FRMCOUNT_GM45 0x71040
1505#define PIPEB_FLIPCOUNT_GM45 0x71044
1506
585fb111
JB
1507
1508/* Display B control */
1509#define DSPBCNTR 0x71180
1510#define DISPPLANE_ALPHA_TRANS_ENABLE (1<<15)
1511#define DISPPLANE_ALPHA_TRANS_DISABLE 0
1512#define DISPPLANE_SPRITE_ABOVE_DISPLAY 0
1513#define DISPPLANE_SPRITE_ABOVE_OVERLAY (1)
1514#define DSPBADDR 0x71184
1515#define DSPBSTRIDE 0x71188
1516#define DSPBPOS 0x7118C
1517#define DSPBSIZE 0x71190
1518#define DSPBSURF 0x7119C
1519#define DSPBTILEOFF 0x711A4
1520
1521/* VBIOS regs */
1522#define VGACNTRL 0x71400
1523# define VGA_DISP_DISABLE (1 << 31)
1524# define VGA_2X_MODE (1 << 30)
1525# define VGA_PIPE_B_SELECT (1 << 29)
1526
b9055052
ZW
1527/* IGDNG */
1528
1529#define CPU_VGACNTRL 0x41000
1530
1531#define DIGITAL_PORT_HOTPLUG_CNTRL 0x44030
1532#define DIGITAL_PORTA_HOTPLUG_ENABLE (1 << 4)
1533#define DIGITAL_PORTA_SHORT_PULSE_2MS (0 << 2)
1534#define DIGITAL_PORTA_SHORT_PULSE_4_5MS (1 << 2)
1535#define DIGITAL_PORTA_SHORT_PULSE_6MS (2 << 2)
1536#define DIGITAL_PORTA_SHORT_PULSE_100MS (3 << 2)
1537#define DIGITAL_PORTA_NO_DETECT (0 << 0)
1538#define DIGITAL_PORTA_LONG_PULSE_DETECT_MASK (1 << 1)
1539#define DIGITAL_PORTA_SHORT_PULSE_DETECT_MASK (1 << 0)
1540
1541/* refresh rate hardware control */
1542#define RR_HW_CTL 0x45300
1543#define RR_HW_LOW_POWER_FRAMES_MASK 0xff
1544#define RR_HW_HIGH_POWER_FRAMES_MASK 0xff00
1545
1546#define FDI_PLL_BIOS_0 0x46000
1547#define FDI_PLL_BIOS_1 0x46004
1548#define FDI_PLL_BIOS_2 0x46008
1549#define DISPLAY_PORT_PLL_BIOS_0 0x4600c
1550#define DISPLAY_PORT_PLL_BIOS_1 0x46010
1551#define DISPLAY_PORT_PLL_BIOS_2 0x46014
1552
1553#define FDI_PLL_FREQ_CTL 0x46030
1554#define FDI_PLL_FREQ_CHANGE_REQUEST (1<<24)
1555#define FDI_PLL_FREQ_LOCK_LIMIT_MASK 0xfff00
1556#define FDI_PLL_FREQ_DISABLE_COUNT_LIMIT_MASK 0xff
1557
1558
1559#define PIPEA_DATA_M1 0x60030
1560#define TU_SIZE(x) (((x)-1) << 25) /* default size 64 */
1561#define TU_SIZE_MASK 0x7e000000
1562#define PIPEA_DATA_M1_OFFSET 0
1563#define PIPEA_DATA_N1 0x60034
1564#define PIPEA_DATA_N1_OFFSET 0
1565
1566#define PIPEA_DATA_M2 0x60038
1567#define PIPEA_DATA_M2_OFFSET 0
1568#define PIPEA_DATA_N2 0x6003c
1569#define PIPEA_DATA_N2_OFFSET 0
1570
1571#define PIPEA_LINK_M1 0x60040
1572#define PIPEA_LINK_M1_OFFSET 0
1573#define PIPEA_LINK_N1 0x60044
1574#define PIPEA_LINK_N1_OFFSET 0
1575
1576#define PIPEA_LINK_M2 0x60048
1577#define PIPEA_LINK_M2_OFFSET 0
1578#define PIPEA_LINK_N2 0x6004c
1579#define PIPEA_LINK_N2_OFFSET 0
1580
1581/* PIPEB timing regs are same start from 0x61000 */
1582
1583#define PIPEB_DATA_M1 0x61030
1584#define PIPEB_DATA_M1_OFFSET 0
1585#define PIPEB_DATA_N1 0x61034
1586#define PIPEB_DATA_N1_OFFSET 0
1587
1588#define PIPEB_DATA_M2 0x61038
1589#define PIPEB_DATA_M2_OFFSET 0
1590#define PIPEB_DATA_N2 0x6103c
1591#define PIPEB_DATA_N2_OFFSET 0
1592
1593#define PIPEB_LINK_M1 0x61040
1594#define PIPEB_LINK_M1_OFFSET 0
1595#define PIPEB_LINK_N1 0x61044
1596#define PIPEB_LINK_N1_OFFSET 0
1597
1598#define PIPEB_LINK_M2 0x61048
1599#define PIPEB_LINK_M2_OFFSET 0
1600#define PIPEB_LINK_N2 0x6104c
1601#define PIPEB_LINK_N2_OFFSET 0
1602
1603/* CPU panel fitter */
1604#define PFA_CTL_1 0x68080
1605#define PFB_CTL_1 0x68880
1606#define PF_ENABLE (1<<31)
1607
1608/* legacy palette */
1609#define LGC_PALETTE_A 0x4a000
1610#define LGC_PALETTE_B 0x4a800
1611
1612/* interrupts */
1613#define DE_MASTER_IRQ_CONTROL (1 << 31)
1614#define DE_SPRITEB_FLIP_DONE (1 << 29)
1615#define DE_SPRITEA_FLIP_DONE (1 << 28)
1616#define DE_PLANEB_FLIP_DONE (1 << 27)
1617#define DE_PLANEA_FLIP_DONE (1 << 26)
1618#define DE_PCU_EVENT (1 << 25)
1619#define DE_GTT_FAULT (1 << 24)
1620#define DE_POISON (1 << 23)
1621#define DE_PERFORM_COUNTER (1 << 22)
1622#define DE_PCH_EVENT (1 << 21)
1623#define DE_AUX_CHANNEL_A (1 << 20)
1624#define DE_DP_A_HOTPLUG (1 << 19)
1625#define DE_GSE (1 << 18)
1626#define DE_PIPEB_VBLANK (1 << 15)
1627#define DE_PIPEB_EVEN_FIELD (1 << 14)
1628#define DE_PIPEB_ODD_FIELD (1 << 13)
1629#define DE_PIPEB_LINE_COMPARE (1 << 12)
1630#define DE_PIPEB_VSYNC (1 << 11)
1631#define DE_PIPEB_FIFO_UNDERRUN (1 << 8)
1632#define DE_PIPEA_VBLANK (1 << 7)
1633#define DE_PIPEA_EVEN_FIELD (1 << 6)
1634#define DE_PIPEA_ODD_FIELD (1 << 5)
1635#define DE_PIPEA_LINE_COMPARE (1 << 4)
1636#define DE_PIPEA_VSYNC (1 << 3)
1637#define DE_PIPEA_FIFO_UNDERRUN (1 << 0)
1638
1639#define DEISR 0x44000
1640#define DEIMR 0x44004
1641#define DEIIR 0x44008
1642#define DEIER 0x4400c
1643
1644/* GT interrupt */
1645#define GT_SYNC_STATUS (1 << 2)
1646#define GT_USER_INTERRUPT (1 << 0)
1647
1648#define GTISR 0x44010
1649#define GTIMR 0x44014
1650#define GTIIR 0x44018
1651#define GTIER 0x4401c
1652
1653/* PCH */
1654
1655/* south display engine interrupt */
1656#define SDE_CRT_HOTPLUG (1 << 11)
1657#define SDE_PORTD_HOTPLUG (1 << 10)
1658#define SDE_PORTC_HOTPLUG (1 << 9)
1659#define SDE_PORTB_HOTPLUG (1 << 8)
1660#define SDE_SDVOB_HOTPLUG (1 << 6)
1661
1662#define SDEISR 0xc4000
1663#define SDEIMR 0xc4004
1664#define SDEIIR 0xc4008
1665#define SDEIER 0xc400c
1666
1667/* digital port hotplug */
1668#define PCH_PORT_HOTPLUG 0xc4030
1669#define PORTD_HOTPLUG_ENABLE (1 << 20)
1670#define PORTD_PULSE_DURATION_2ms (0)
1671#define PORTD_PULSE_DURATION_4_5ms (1 << 18)
1672#define PORTD_PULSE_DURATION_6ms (2 << 18)
1673#define PORTD_PULSE_DURATION_100ms (3 << 18)
1674#define PORTD_HOTPLUG_NO_DETECT (0)
1675#define PORTD_HOTPLUG_SHORT_DETECT (1 << 16)
1676#define PORTD_HOTPLUG_LONG_DETECT (1 << 17)
1677#define PORTC_HOTPLUG_ENABLE (1 << 12)
1678#define PORTC_PULSE_DURATION_2ms (0)
1679#define PORTC_PULSE_DURATION_4_5ms (1 << 10)
1680#define PORTC_PULSE_DURATION_6ms (2 << 10)
1681#define PORTC_PULSE_DURATION_100ms (3 << 10)
1682#define PORTC_HOTPLUG_NO_DETECT (0)
1683#define PORTC_HOTPLUG_SHORT_DETECT (1 << 8)
1684#define PORTC_HOTPLUG_LONG_DETECT (1 << 9)
1685#define PORTB_HOTPLUG_ENABLE (1 << 4)
1686#define PORTB_PULSE_DURATION_2ms (0)
1687#define PORTB_PULSE_DURATION_4_5ms (1 << 2)
1688#define PORTB_PULSE_DURATION_6ms (2 << 2)
1689#define PORTB_PULSE_DURATION_100ms (3 << 2)
1690#define PORTB_HOTPLUG_NO_DETECT (0)
1691#define PORTB_HOTPLUG_SHORT_DETECT (1 << 0)
1692#define PORTB_HOTPLUG_LONG_DETECT (1 << 1)
1693
1694#define PCH_GPIOA 0xc5010
1695#define PCH_GPIOB 0xc5014
1696#define PCH_GPIOC 0xc5018
1697#define PCH_GPIOD 0xc501c
1698#define PCH_GPIOE 0xc5020
1699#define PCH_GPIOF 0xc5024
1700
1701#define PCH_DPLL_A 0xc6014
1702#define PCH_DPLL_B 0xc6018
1703
1704#define PCH_FPA0 0xc6040
1705#define PCH_FPA1 0xc6044
1706#define PCH_FPB0 0xc6048
1707#define PCH_FPB1 0xc604c
1708
1709#define PCH_DPLL_TEST 0xc606c
1710
1711#define PCH_DREF_CONTROL 0xC6200
1712#define DREF_CONTROL_MASK 0x7fc3
1713#define DREF_CPU_SOURCE_OUTPUT_DISABLE (0<<13)
1714#define DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD (2<<13)
1715#define DREF_CPU_SOURCE_OUTPUT_NONSPREAD (3<<13)
1716#define DREF_CPU_SOURCE_OUTPUT_MASK (3<<13)
1717#define DREF_SSC_SOURCE_DISABLE (0<<11)
1718#define DREF_SSC_SOURCE_ENABLE (2<<11)
1719#define DREF_SSC_SOURCE_MASK (2<<11)
1720#define DREF_NONSPREAD_SOURCE_DISABLE (0<<9)
1721#define DREF_NONSPREAD_CK505_ENABLE (1<<9)
1722#define DREF_NONSPREAD_SOURCE_ENABLE (2<<9)
1723#define DREF_NONSPREAD_SOURCE_MASK (2<<9)
1724#define DREF_SUPERSPREAD_SOURCE_DISABLE (0<<7)
1725#define DREF_SUPERSPREAD_SOURCE_ENABLE (2<<7)
1726#define DREF_SSC4_DOWNSPREAD (0<<6)
1727#define DREF_SSC4_CENTERSPREAD (1<<6)
1728#define DREF_SSC1_DISABLE (0<<1)
1729#define DREF_SSC1_ENABLE (1<<1)
1730#define DREF_SSC4_DISABLE (0)
1731#define DREF_SSC4_ENABLE (1)
1732
1733#define PCH_RAWCLK_FREQ 0xc6204
1734#define FDL_TP1_TIMER_SHIFT 12
1735#define FDL_TP1_TIMER_MASK (3<<12)
1736#define FDL_TP2_TIMER_SHIFT 10
1737#define FDL_TP2_TIMER_MASK (3<<10)
1738#define RAWCLK_FREQ_MASK 0x3ff
1739
1740#define PCH_DPLL_TMR_CFG 0xc6208
1741
1742#define PCH_SSC4_PARMS 0xc6210
1743#define PCH_SSC4_AUX_PARMS 0xc6214
1744
1745/* transcoder */
1746
1747#define TRANS_HTOTAL_A 0xe0000
1748#define TRANS_HTOTAL_SHIFT 16
1749#define TRANS_HACTIVE_SHIFT 0
1750#define TRANS_HBLANK_A 0xe0004
1751#define TRANS_HBLANK_END_SHIFT 16
1752#define TRANS_HBLANK_START_SHIFT 0
1753#define TRANS_HSYNC_A 0xe0008
1754#define TRANS_HSYNC_END_SHIFT 16
1755#define TRANS_HSYNC_START_SHIFT 0
1756#define TRANS_VTOTAL_A 0xe000c
1757#define TRANS_VTOTAL_SHIFT 16
1758#define TRANS_VACTIVE_SHIFT 0
1759#define TRANS_VBLANK_A 0xe0010
1760#define TRANS_VBLANK_END_SHIFT 16
1761#define TRANS_VBLANK_START_SHIFT 0
1762#define TRANS_VSYNC_A 0xe0014
1763#define TRANS_VSYNC_END_SHIFT 16
1764#define TRANS_VSYNC_START_SHIFT 0
1765
1766#define TRANSA_DATA_M1 0xe0030
1767#define TRANSA_DATA_N1 0xe0034
1768#define TRANSA_DATA_M2 0xe0038
1769#define TRANSA_DATA_N2 0xe003c
1770#define TRANSA_DP_LINK_M1 0xe0040
1771#define TRANSA_DP_LINK_N1 0xe0044
1772#define TRANSA_DP_LINK_M2 0xe0048
1773#define TRANSA_DP_LINK_N2 0xe004c
1774
1775#define TRANS_HTOTAL_B 0xe1000
1776#define TRANS_HBLANK_B 0xe1004
1777#define TRANS_HSYNC_B 0xe1008
1778#define TRANS_VTOTAL_B 0xe100c
1779#define TRANS_VBLANK_B 0xe1010
1780#define TRANS_VSYNC_B 0xe1014
1781
1782#define TRANSB_DATA_M1 0xe1030
1783#define TRANSB_DATA_N1 0xe1034
1784#define TRANSB_DATA_M2 0xe1038
1785#define TRANSB_DATA_N2 0xe103c
1786#define TRANSB_DP_LINK_M1 0xe1040
1787#define TRANSB_DP_LINK_N1 0xe1044
1788#define TRANSB_DP_LINK_M2 0xe1048
1789#define TRANSB_DP_LINK_N2 0xe104c
1790
1791#define TRANSACONF 0xf0008
1792#define TRANSBCONF 0xf1008
1793#define TRANS_DISABLE (0<<31)
1794#define TRANS_ENABLE (1<<31)
1795#define TRANS_STATE_MASK (1<<30)
1796#define TRANS_STATE_DISABLE (0<<30)
1797#define TRANS_STATE_ENABLE (1<<30)
1798#define TRANS_FSYNC_DELAY_HB1 (0<<27)
1799#define TRANS_FSYNC_DELAY_HB2 (1<<27)
1800#define TRANS_FSYNC_DELAY_HB3 (2<<27)
1801#define TRANS_FSYNC_DELAY_HB4 (3<<27)
1802#define TRANS_DP_AUDIO_ONLY (1<<26)
1803#define TRANS_DP_VIDEO_AUDIO (0<<26)
1804#define TRANS_PROGRESSIVE (0<<21)
1805#define TRANS_8BPC (0<<5)
1806#define TRANS_10BPC (1<<5)
1807#define TRANS_6BPC (2<<5)
1808#define TRANS_12BPC (3<<5)
1809
1810#define FDI_RXA_CHICKEN 0xc200c
1811#define FDI_RXB_CHICKEN 0xc2010
1812#define FDI_RX_PHASE_SYNC_POINTER_ENABLE (1)
1813
1814/* CPU: FDI_TX */
1815#define FDI_TXA_CTL 0x60100
1816#define FDI_TXB_CTL 0x61100
1817#define FDI_TX_DISABLE (0<<31)
1818#define FDI_TX_ENABLE (1<<31)
1819#define FDI_LINK_TRAIN_PATTERN_1 (0<<28)
1820#define FDI_LINK_TRAIN_PATTERN_2 (1<<28)
1821#define FDI_LINK_TRAIN_PATTERN_IDLE (2<<28)
1822#define FDI_LINK_TRAIN_NONE (3<<28)
1823#define FDI_LINK_TRAIN_VOLTAGE_0_4V (0<<25)
1824#define FDI_LINK_TRAIN_VOLTAGE_0_6V (1<<25)
1825#define FDI_LINK_TRAIN_VOLTAGE_0_8V (2<<25)
1826#define FDI_LINK_TRAIN_VOLTAGE_1_2V (3<<25)
1827#define FDI_LINK_TRAIN_PRE_EMPHASIS_NONE (0<<22)
1828#define FDI_LINK_TRAIN_PRE_EMPHASIS_1_5X (1<<22)
1829#define FDI_LINK_TRAIN_PRE_EMPHASIS_2X (2<<22)
1830#define FDI_LINK_TRAIN_PRE_EMPHASIS_3X (3<<22)
1831#define FDI_DP_PORT_WIDTH_X1 (0<<19)
1832#define FDI_DP_PORT_WIDTH_X2 (1<<19)
1833#define FDI_DP_PORT_WIDTH_X3 (2<<19)
1834#define FDI_DP_PORT_WIDTH_X4 (3<<19)
1835#define FDI_TX_ENHANCE_FRAME_ENABLE (1<<18)
1836/* IGDNG: hardwired to 1 */
1837#define FDI_TX_PLL_ENABLE (1<<14)
1838/* both Tx and Rx */
1839#define FDI_SCRAMBLING_ENABLE (0<<7)
1840#define FDI_SCRAMBLING_DISABLE (1<<7)
1841
1842/* FDI_RX, FDI_X is hard-wired to Transcoder_X */
1843#define FDI_RXA_CTL 0xf000c
1844#define FDI_RXB_CTL 0xf100c
1845#define FDI_RX_ENABLE (1<<31)
1846#define FDI_RX_DISABLE (0<<31)
1847/* train, dp width same as FDI_TX */
1848#define FDI_DP_PORT_WIDTH_X8 (7<<19)
1849#define FDI_8BPC (0<<16)
1850#define FDI_10BPC (1<<16)
1851#define FDI_6BPC (2<<16)
1852#define FDI_12BPC (3<<16)
1853#define FDI_LINK_REVERSE_OVERWRITE (1<<15)
1854#define FDI_DMI_LINK_REVERSE_MASK (1<<14)
1855#define FDI_RX_PLL_ENABLE (1<<13)
1856#define FDI_FS_ERR_CORRECT_ENABLE (1<<11)
1857#define FDI_FE_ERR_CORRECT_ENABLE (1<<10)
1858#define FDI_FS_ERR_REPORT_ENABLE (1<<9)
1859#define FDI_FE_ERR_REPORT_ENABLE (1<<8)
1860#define FDI_RX_ENHANCE_FRAME_ENABLE (1<<6)
1861#define FDI_SEL_RAWCLK (0<<4)
1862#define FDI_SEL_PCDCLK (1<<4)
1863
1864#define FDI_RXA_MISC 0xf0010
1865#define FDI_RXB_MISC 0xf1010
1866#define FDI_RXA_TUSIZE1 0xf0030
1867#define FDI_RXA_TUSIZE2 0xf0038
1868#define FDI_RXB_TUSIZE1 0xf1030
1869#define FDI_RXB_TUSIZE2 0xf1038
1870
1871/* FDI_RX interrupt register format */
1872#define FDI_RX_INTER_LANE_ALIGN (1<<10)
1873#define FDI_RX_SYMBOL_LOCK (1<<9) /* train 2 */
1874#define FDI_RX_BIT_LOCK (1<<8) /* train 1 */
1875#define FDI_RX_TRAIN_PATTERN_2_FAIL (1<<7)
1876#define FDI_RX_FS_CODE_ERR (1<<6)
1877#define FDI_RX_FE_CODE_ERR (1<<5)
1878#define FDI_RX_SYMBOL_ERR_RATE_ABOVE (1<<4)
1879#define FDI_RX_HDCP_LINK_FAIL (1<<3)
1880#define FDI_RX_PIXEL_FIFO_OVERFLOW (1<<2)
1881#define FDI_RX_CROSS_CLOCK_OVERFLOW (1<<1)
1882#define FDI_RX_SYMBOL_QUEUE_OVERFLOW (1<<0)
1883
1884#define FDI_RXA_IIR 0xf0014
1885#define FDI_RXA_IMR 0xf0018
1886#define FDI_RXB_IIR 0xf1014
1887#define FDI_RXB_IMR 0xf1018
1888
1889#define FDI_PLL_CTL_1 0xfe000
1890#define FDI_PLL_CTL_2 0xfe004
1891
1892/* CRT */
1893#define PCH_ADPA 0xe1100
1894#define ADPA_TRANS_SELECT_MASK (1<<30)
1895#define ADPA_TRANS_A_SELECT 0
1896#define ADPA_TRANS_B_SELECT (1<<30)
1897#define ADPA_CRT_HOTPLUG_MASK 0x03ff0000 /* bit 25-16 */
1898#define ADPA_CRT_HOTPLUG_MONITOR_NONE (0<<24)
1899#define ADPA_CRT_HOTPLUG_MONITOR_MASK (3<<24)
1900#define ADPA_CRT_HOTPLUG_MONITOR_COLOR (3<<24)
1901#define ADPA_CRT_HOTPLUG_MONITOR_MONO (2<<24)
1902#define ADPA_CRT_HOTPLUG_ENABLE (1<<23)
1903#define ADPA_CRT_HOTPLUG_PERIOD_64 (0<<22)
1904#define ADPA_CRT_HOTPLUG_PERIOD_128 (1<<22)
1905#define ADPA_CRT_HOTPLUG_WARMUP_5MS (0<<21)
1906#define ADPA_CRT_HOTPLUG_WARMUP_10MS (1<<21)
1907#define ADPA_CRT_HOTPLUG_SAMPLE_2S (0<<20)
1908#define ADPA_CRT_HOTPLUG_SAMPLE_4S (1<<20)
1909#define ADPA_CRT_HOTPLUG_VOLTAGE_40 (0<<18)
1910#define ADPA_CRT_HOTPLUG_VOLTAGE_50 (1<<18)
1911#define ADPA_CRT_HOTPLUG_VOLTAGE_60 (2<<18)
1912#define ADPA_CRT_HOTPLUG_VOLTAGE_70 (3<<18)
1913#define ADPA_CRT_HOTPLUG_VOLREF_325MV (0<<17)
1914#define ADPA_CRT_HOTPLUG_VOLREF_475MV (1<<17)
1915#define ADPA_CRT_HOTPLUG_FORCE_TRIGGER (1<<16)
1916
1917/* or SDVOB */
1918#define HDMIB 0xe1140
1919#define PORT_ENABLE (1 << 31)
1920#define TRANSCODER_A (0)
1921#define TRANSCODER_B (1 << 30)
1922#define COLOR_FORMAT_8bpc (0)
1923#define COLOR_FORMAT_12bpc (3 << 26)
1924#define SDVOB_HOTPLUG_ENABLE (1 << 23)
1925#define SDVO_ENCODING (0)
1926#define TMDS_ENCODING (2 << 10)
1927#define NULL_PACKET_VSYNC_ENABLE (1 << 9)
1928#define SDVOB_BORDER_ENABLE (1 << 7)
1929#define AUDIO_ENABLE (1 << 6)
1930#define VSYNC_ACTIVE_HIGH (1 << 4)
1931#define HSYNC_ACTIVE_HIGH (1 << 3)
1932#define PORT_DETECTED (1 << 2)
1933
1934#define HDMIC 0xe1150
1935#define HDMID 0xe1160
1936
1937#define PCH_LVDS 0xe1180
1938#define LVDS_DETECTED (1 << 1)
1939
1940#define BLC_PWM_CPU_CTL2 0x48250
1941#define PWM_ENABLE (1 << 31)
1942#define PWM_PIPE_A (0 << 29)
1943#define PWM_PIPE_B (1 << 29)
1944#define BLC_PWM_CPU_CTL 0x48254
1945
1946#define BLC_PWM_PCH_CTL1 0xc8250
1947#define PWM_PCH_ENABLE (1 << 31)
1948#define PWM_POLARITY_ACTIVE_LOW (1 << 29)
1949#define PWM_POLARITY_ACTIVE_HIGH (0 << 29)
1950#define PWM_POLARITY_ACTIVE_LOW2 (1 << 28)
1951#define PWM_POLARITY_ACTIVE_HIGH2 (0 << 28)
1952
1953#define BLC_PWM_PCH_CTL2 0xc8254
1954
1955#define PCH_PP_STATUS 0xc7200
1956#define PCH_PP_CONTROL 0xc7204
1957#define EDP_FORCE_VDD (1 << 3)
1958#define EDP_BLC_ENABLE (1 << 2)
1959#define PANEL_POWER_RESET (1 << 1)
1960#define PANEL_POWER_OFF (0 << 0)
1961#define PANEL_POWER_ON (1 << 0)
1962#define PCH_PP_ON_DELAYS 0xc7208
1963#define EDP_PANEL (1 << 30)
1964#define PCH_PP_OFF_DELAYS 0xc720c
1965#define PCH_PP_DIVISOR 0xc7210
1966
585fb111 1967#endif /* _I915_REG_H_ */
This page took 0.154505 seconds and 5 git commands to generate.