• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  
28  /**
29   * DOC: The i915 register macro definition style guide
30   *
31   * Follow the style described here for new macros, and while changing existing
32   * macros. Do **not** mass change existing definitions just to update the style.
33   *
34   * Layout
35   * ''''''
36   *
37   * Keep helper macros near the top. For example, _PIPE() and friends.
38   *
39   * Prefix macros that generally should not be used outside of this file with
40   * underscore '_'. For example, _PIPE() and friends, single instances of
41   * registers that are defined solely for the use by function-like macros.
42   *
43   * Avoid using the underscore prefixed macros outside of this file. There are
44   * exceptions, but keep them to a minimum.
45   *
46   * There are two basic types of register definitions: Single registers and
47   * register groups. Register groups are registers which have two or more
48   * instances, for example one per pipe, port, transcoder, etc. Register groups
49   * should be defined using function-like macros.
50   *
51   * For single registers, define the register offset first, followed by register
52   * contents.
53   *
54   * For register groups, define the register instance offsets first, prefixed
55   * with underscore, followed by a function-like macro choosing the right
56   * instance based on the parameter, followed by register contents.
57   *
58   * Define the register contents (i.e. bit and bit field macros) from most
59   * significant to least significant bit. Indent the register content macros
60   * using two extra spaces between ``#define`` and the macro name.
61   *
62   * For bit fields, define a ``_MASK`` and a ``_SHIFT`` macro. Define bit field
63   * contents so that they are already shifted in place, and can be directly
64   * OR'd. For convenience, function-like macros may be used to define bit fields,
65   * but do note that the macros may be needed to read as well as write the
66   * register contents.
67   *
68   * Define bits using ``(1 << N)`` instead of ``BIT(N)``. We may change this in
69   * the future, but this is the prevailing style. Do **not** add ``_BIT`` suffix
70   * to the name.
71   *
72   * Group the register and its contents together without blank lines, separate
73   * from other registers and their contents with one blank line.
74   *
75   * Indent macro values from macro names using TABs. Align values vertically. Use
76   * braces in macro values as needed to avoid unintended precedence after macro
77   * substitution. Use spaces in macro values according to kernel coding
78   * style. Use lower case in hexadecimal values.
79   *
80   * Naming
81   * ''''''
82   *
83   * Try to name registers according to the specs. If the register name changes in
84   * the specs from platform to another, stick to the original name.
85   *
86   * Try to re-use existing register macro definitions. Only add new macros for
87   * new register offsets, or when the register contents have changed enough to
88   * warrant a full redefinition.
89   *
90   * When a register macro changes for a new platform, prefix the new macro using
91   * the platform acronym or generation. For example, ``SKL_`` or ``GEN8_``. The
92   * prefix signifies the start platform/generation using the register.
93   *
94   * When a bit (field) macro changes or gets added for a new platform, while
95   * retaining the existing register macro, add a platform acronym or generation
96   * suffix to the name. For example, ``_SKL`` or ``_GEN8``.
97   *
98   * Examples
99   * ''''''''
100   *
101   * (Note that the values in the example are indented using spaces instead of
102   * TABs to avoid misalignment in generated documentation. Use TABs in the
103   * definitions.)::
104   *
105   *  #define _FOO_A                      0xf000
106   *  #define _FOO_B                      0xf001
107   *  #define FOO(pipe)                   _MMIO_PIPE(pipe, _FOO_A, _FOO_B)
108   *  #define   FOO_ENABLE                (1 << 31)
109   *  #define   FOO_MODE_MASK             (0xf << 16)
110   *  #define   FOO_MODE_SHIFT            16
111   *  #define   FOO_MODE_BAR              (0 << 16)
112   *  #define   FOO_MODE_BAZ              (1 << 16)
113   *  #define   FOO_MODE_QUX_SNB          (2 << 16)
114   *
115   *  #define BAR                         _MMIO(0xb000)
116   *  #define GEN8_BAR                    _MMIO(0xb888)
117   */
118  
119  typedef struct {
120  	uint32_t reg;
121  } i915_reg_t;
122  
123  #define _MMIO(r) ((const i915_reg_t){ .reg = (r) })
124  
125  #define INVALID_MMIO_REG _MMIO(0)
126  
i915_mmio_reg_offset(i915_reg_t reg)127  static inline uint32_t i915_mmio_reg_offset(i915_reg_t reg)
128  {
129  	return reg.reg;
130  }
131  
i915_mmio_reg_equal(i915_reg_t a,i915_reg_t b)132  static inline bool i915_mmio_reg_equal(i915_reg_t a, i915_reg_t b)
133  {
134  	return i915_mmio_reg_offset(a) == i915_mmio_reg_offset(b);
135  }
136  
i915_mmio_reg_valid(i915_reg_t reg)137  static inline bool i915_mmio_reg_valid(i915_reg_t reg)
138  {
139  	return !i915_mmio_reg_equal(reg, INVALID_MMIO_REG);
140  }
141  
142  #define _PICK(__index, ...) (((const u32 []){ __VA_ARGS__ })[__index])
143  
144  #define _PIPE(pipe, a, b) ((a) + (pipe)*((b)-(a)))
145  #define _MMIO_PIPE(pipe, a, b) _MMIO(_PIPE(pipe, a, b))
146  #define _PLANE(plane, a, b) _PIPE(plane, a, b)
147  #define _MMIO_PLANE(plane, a, b) _MMIO_PIPE(plane, a, b)
148  #define _TRANS(tran, a, b) ((a) + (tran)*((b)-(a)))
149  #define _MMIO_TRANS(tran, a, b) _MMIO(_TRANS(tran, a, b))
150  #define _PORT(port, a, b) ((a) + (port)*((b)-(a)))
151  #define _MMIO_PORT(port, a, b) _MMIO(_PORT(port, a, b))
152  #define _MMIO_PIPE3(pipe, a, b, c) _MMIO(_PICK(pipe, a, b, c))
153  #define _MMIO_PORT3(pipe, a, b, c) _MMIO(_PICK(pipe, a, b, c))
154  #define _PLL(pll, a, b) ((a) + (pll)*((b)-(a)))
155  #define _MMIO_PLL(pll, a, b) _MMIO(_PLL(pll, a, b))
156  #define _MMIO_PORT6(port, a, b, c, d, e, f) _MMIO(_PICK(port, a, b, c, d, e, f))
157  #define _MMIO_PORT6_LN(port, ln, a0, a1, b, c, d, e, f)			\
158  	_MMIO(_PICK(port, a0, b, c, d, e, f) + (ln * (a1 - a0)))
159  #define _PHY3(phy, ...) _PICK(phy, __VA_ARGS__)
160  #define _MMIO_PHY3(phy, a, b, c) _MMIO(_PHY3(phy, a, b, c))
161  
162  #define _MASKED_FIELD(mask, value) ({					   \
163  	if (__builtin_constant_p(mask))					   \
164  		BUILD_BUG_ON_MSG(((mask) & 0xffff0000), "Incorrect mask"); \
165  	if (__builtin_constant_p(value))				   \
166  		BUILD_BUG_ON_MSG((value) & 0xffff0000, "Incorrect value"); \
167  	if (__builtin_constant_p(mask) && __builtin_constant_p(value))	   \
168  		BUILD_BUG_ON_MSG((value) & ~(mask),			   \
169  				 "Incorrect value for mask");		   \
170  	(mask) << 16 | (value); })
171  #define _MASKED_BIT_ENABLE(a)	({ typeof(a) _a = (a); _MASKED_FIELD(_a, _a); })
172  #define _MASKED_BIT_DISABLE(a)	(_MASKED_FIELD((a), 0))
173  
174  /* Engine ID */
175  
176  #define RCS_HW		0
177  #define VCS_HW		1
178  #define BCS_HW		2
179  #define VECS_HW		3
180  #define VCS2_HW		4
181  
182  /* Engine class */
183  
184  #define RENDER_CLASS		0
185  #define VIDEO_DECODE_CLASS	1
186  #define VIDEO_ENHANCEMENT_CLASS	2
187  #define COPY_ENGINE_CLASS	3
188  #define OTHER_CLASS		4
189  
190  /* PCI config space */
191  
192  #define MCHBAR_I915 0x44
193  #define MCHBAR_I965 0x48
194  #define MCHBAR_SIZE (4 * 4096)
195  
196  #define DEVEN 0x54
197  #define   DEVEN_MCHBAR_EN (1 << 28)
198  
199  /* BSM in include/drm/i915_drm.h */
200  
201  #define HPLLCC	0xc0 /* 85x only */
202  #define   GC_CLOCK_CONTROL_MASK		(0x7 << 0)
203  #define   GC_CLOCK_133_200		(0 << 0)
204  #define   GC_CLOCK_100_200		(1 << 0)
205  #define   GC_CLOCK_100_133		(2 << 0)
206  #define   GC_CLOCK_133_266		(3 << 0)
207  #define   GC_CLOCK_133_200_2		(4 << 0)
208  #define   GC_CLOCK_133_266_2		(5 << 0)
209  #define   GC_CLOCK_166_266		(6 << 0)
210  #define   GC_CLOCK_166_250		(7 << 0)
211  
212  #define I915_GDRST 0xc0 /* PCI config register */
213  #define   GRDOM_FULL		(0 << 2)
214  #define   GRDOM_RENDER		(1 << 2)
215  #define   GRDOM_MEDIA		(3 << 2)
216  #define   GRDOM_MASK		(3 << 2)
217  #define   GRDOM_RESET_STATUS	(1 << 1)
218  #define   GRDOM_RESET_ENABLE	(1 << 0)
219  
220  /* BSpec only has register offset, PCI device and bit found empirically */
221  #define I830_CLOCK_GATE	0xc8 /* device 0 */
222  #define   I830_L2_CACHE_CLOCK_GATE_DISABLE	(1 << 2)
223  
224  #define GCDGMBUS 0xcc
225  
226  #define GCFGC2	0xda
227  #define GCFGC	0xf0 /* 915+ only */
228  #define   GC_LOW_FREQUENCY_ENABLE	(1 << 7)
229  #define   GC_DISPLAY_CLOCK_190_200_MHZ	(0 << 4)
230  #define   GC_DISPLAY_CLOCK_333_320_MHZ	(4 << 4)
231  #define   GC_DISPLAY_CLOCK_267_MHZ_PNV	(0 << 4)
232  #define   GC_DISPLAY_CLOCK_333_MHZ_PNV	(1 << 4)
233  #define   GC_DISPLAY_CLOCK_444_MHZ_PNV	(2 << 4)
234  #define   GC_DISPLAY_CLOCK_200_MHZ_PNV	(5 << 4)
235  #define   GC_DISPLAY_CLOCK_133_MHZ_PNV	(6 << 4)
236  #define   GC_DISPLAY_CLOCK_167_MHZ_PNV	(7 << 4)
237  #define   GC_DISPLAY_CLOCK_MASK		(7 << 4)
238  #define   GM45_GC_RENDER_CLOCK_MASK	(0xf << 0)
239  #define   GM45_GC_RENDER_CLOCK_266_MHZ	(8 << 0)
240  #define   GM45_GC_RENDER_CLOCK_320_MHZ	(9 << 0)
241  #define   GM45_GC_RENDER_CLOCK_400_MHZ	(0xb << 0)
242  #define   GM45_GC_RENDER_CLOCK_533_MHZ	(0xc << 0)
243  #define   I965_GC_RENDER_CLOCK_MASK	(0xf << 0)
244  #define   I965_GC_RENDER_CLOCK_267_MHZ	(2 << 0)
245  #define   I965_GC_RENDER_CLOCK_333_MHZ	(3 << 0)
246  #define   I965_GC_RENDER_CLOCK_444_MHZ	(4 << 0)
247  #define   I965_GC_RENDER_CLOCK_533_MHZ	(5 << 0)
248  #define   I945_GC_RENDER_CLOCK_MASK	(7 << 0)
249  #define   I945_GC_RENDER_CLOCK_166_MHZ	(0 << 0)
250  #define   I945_GC_RENDER_CLOCK_200_MHZ	(1 << 0)
251  #define   I945_GC_RENDER_CLOCK_250_MHZ	(3 << 0)
252  #define   I945_GC_RENDER_CLOCK_400_MHZ	(5 << 0)
253  #define   I915_GC_RENDER_CLOCK_MASK	(7 << 0)
254  #define   I915_GC_RENDER_CLOCK_166_MHZ	(0 << 0)
255  #define   I915_GC_RENDER_CLOCK_200_MHZ	(1 << 0)
256  #define   I915_GC_RENDER_CLOCK_333_MHZ	(4 << 0)
257  
258  #define ASLE	0xe4
259  #define ASLS	0xfc
260  
261  #define SWSCI	0xe8
262  #define   SWSCI_SCISEL	(1 << 15)
263  #define   SWSCI_GSSCIE	(1 << 0)
264  
265  #define LBPC 0xf4 /* legacy/combination backlight modes, also called LBB */
266  
267  
268  #define ILK_GDSR _MMIO(MCHBAR_MIRROR_BASE + 0x2ca4)
269  #define  ILK_GRDOM_FULL		(0<<1)
270  #define  ILK_GRDOM_RENDER	(1<<1)
271  #define  ILK_GRDOM_MEDIA	(3<<1)
272  #define  ILK_GRDOM_MASK		(3<<1)
273  #define  ILK_GRDOM_RESET_ENABLE (1<<0)
274  
275  #define GEN6_MBCUNIT_SNPCR	_MMIO(0x900c) /* for LLC config */
276  #define   GEN6_MBC_SNPCR_SHIFT	21
277  #define   GEN6_MBC_SNPCR_MASK	(3<<21)
278  #define   GEN6_MBC_SNPCR_MAX	(0<<21)
279  #define   GEN6_MBC_SNPCR_MED	(1<<21)
280  #define   GEN6_MBC_SNPCR_LOW	(2<<21)
281  #define   GEN6_MBC_SNPCR_MIN	(3<<21) /* only 1/16th of the cache is shared */
282  
283  #define VLV_G3DCTL		_MMIO(0x9024)
284  #define VLV_GSCKGCTL		_MMIO(0x9028)
285  
286  #define GEN6_MBCTL		_MMIO(0x0907c)
287  #define   GEN6_MBCTL_ENABLE_BOOT_FETCH	(1 << 4)
288  #define   GEN6_MBCTL_CTX_FETCH_NEEDED	(1 << 3)
289  #define   GEN6_MBCTL_BME_UPDATE_ENABLE	(1 << 2)
290  #define   GEN6_MBCTL_MAE_UPDATE_ENABLE	(1 << 1)
291  #define   GEN6_MBCTL_BOOT_FETCH_MECH	(1 << 0)
292  
293  #define GEN6_GDRST	_MMIO(0x941c)
294  #define  GEN6_GRDOM_FULL		(1 << 0)
295  #define  GEN6_GRDOM_RENDER		(1 << 1)
296  #define  GEN6_GRDOM_MEDIA		(1 << 2)
297  #define  GEN6_GRDOM_BLT			(1 << 3)
298  #define  GEN6_GRDOM_VECS		(1 << 4)
299  #define  GEN9_GRDOM_GUC			(1 << 5)
300  #define  GEN8_GRDOM_MEDIA2		(1 << 7)
301  
302  #define RING_PP_DIR_BASE(engine)	_MMIO((engine)->mmio_base+0x228)
303  #define RING_PP_DIR_BASE_READ(engine)	_MMIO((engine)->mmio_base+0x518)
304  #define RING_PP_DIR_DCLV(engine)	_MMIO((engine)->mmio_base+0x220)
305  #define   PP_DIR_DCLV_2G		0xffffffff
306  
307  #define GEN8_RING_PDP_UDW(engine, n)	_MMIO((engine)->mmio_base+0x270 + (n) * 8 + 4)
308  #define GEN8_RING_PDP_LDW(engine, n)	_MMIO((engine)->mmio_base+0x270 + (n) * 8)
309  
310  #define GEN8_R_PWR_CLK_STATE		_MMIO(0x20C8)
311  #define   GEN8_RPCS_ENABLE		(1 << 31)
312  #define   GEN8_RPCS_S_CNT_ENABLE	(1 << 18)
313  #define   GEN8_RPCS_S_CNT_SHIFT		15
314  #define   GEN8_RPCS_S_CNT_MASK		(0x7 << GEN8_RPCS_S_CNT_SHIFT)
315  #define   GEN8_RPCS_SS_CNT_ENABLE	(1 << 11)
316  #define   GEN8_RPCS_SS_CNT_SHIFT	8
317  #define   GEN8_RPCS_SS_CNT_MASK		(0x7 << GEN8_RPCS_SS_CNT_SHIFT)
318  #define   GEN8_RPCS_EU_MAX_SHIFT	4
319  #define   GEN8_RPCS_EU_MAX_MASK		(0xf << GEN8_RPCS_EU_MAX_SHIFT)
320  #define   GEN8_RPCS_EU_MIN_SHIFT	0
321  #define   GEN8_RPCS_EU_MIN_MASK		(0xf << GEN8_RPCS_EU_MIN_SHIFT)
322  
323  #define WAIT_FOR_RC6_EXIT		_MMIO(0x20CC)
324  /* HSW only */
325  #define   HSW_SELECTIVE_READ_ADDRESSING_SHIFT		2
326  #define   HSW_SELECTIVE_READ_ADDRESSING_MASK		(0x3 << HSW_SLECTIVE_READ_ADDRESSING_SHIFT)
327  #define   HSW_SELECTIVE_WRITE_ADDRESS_SHIFT		4
328  #define   HSW_SELECTIVE_WRITE_ADDRESS_MASK		(0x7 << HSW_SELECTIVE_WRITE_ADDRESS_SHIFT)
329  /* HSW+ */
330  #define   HSW_WAIT_FOR_RC6_EXIT_ENABLE			(1 << 0)
331  #define   HSW_RCS_CONTEXT_ENABLE			(1 << 7)
332  #define   HSW_RCS_INHIBIT				(1 << 8)
333  /* Gen8 */
334  #define   GEN8_SELECTIVE_WRITE_ADDRESS_SHIFT		4
335  #define   GEN8_SELECTIVE_WRITE_ADDRESS_MASK		(0x3 << GEN8_SELECTIVE_WRITE_ADDRESS_SHIFT)
336  #define   GEN8_SELECTIVE_WRITE_ADDRESS_SHIFT		4
337  #define   GEN8_SELECTIVE_WRITE_ADDRESS_MASK		(0x3 << GEN8_SELECTIVE_WRITE_ADDRESS_SHIFT)
338  #define   GEN8_SELECTIVE_WRITE_ADDRESSING_ENABLE	(1 << 6)
339  #define   GEN8_SELECTIVE_READ_SUBSLICE_SELECT_SHIFT	9
340  #define   GEN8_SELECTIVE_READ_SUBSLICE_SELECT_MASK	(0x3 << GEN8_SELECTIVE_READ_SUBSLICE_SELECT_SHIFT)
341  #define   GEN8_SELECTIVE_READ_SLICE_SELECT_SHIFT	11
342  #define   GEN8_SELECTIVE_READ_SLICE_SELECT_MASK		(0x3 << GEN8_SELECTIVE_READ_SLICE_SELECT_SHIFT)
343  #define   GEN8_SELECTIVE_READ_ADDRESSING_ENABLE         (1 << 13)
344  
345  #define GAM_ECOCHK			_MMIO(0x4090)
346  #define   BDW_DISABLE_HDC_INVALIDATION	(1<<25)
347  #define   ECOCHK_SNB_BIT		(1<<10)
348  #define   ECOCHK_DIS_TLB		(1<<8)
349  #define   HSW_ECOCHK_ARB_PRIO_SOL	(1<<6)
350  #define   ECOCHK_PPGTT_CACHE64B		(0x3<<3)
351  #define   ECOCHK_PPGTT_CACHE4B		(0x0<<3)
352  #define   ECOCHK_PPGTT_GFDT_IVB		(0x1<<4)
353  #define   ECOCHK_PPGTT_LLC_IVB		(0x1<<3)
354  #define   ECOCHK_PPGTT_UC_HSW		(0x1<<3)
355  #define   ECOCHK_PPGTT_WT_HSW		(0x2<<3)
356  #define   ECOCHK_PPGTT_WB_HSW		(0x3<<3)
357  
358  #define GEN8_CONFIG0			_MMIO(0xD00)
359  #define  GEN9_DEFAULT_FIXES		(1 << 3 | 1 << 2 | 1 << 1)
360  
361  #define GEN8_RC6_CTX_INFO		_MMIO(0x8504)
362  
363  #define GAC_ECO_BITS			_MMIO(0x14090)
364  #define   ECOBITS_SNB_BIT		(1<<13)
365  #define   ECOBITS_PPGTT_CACHE64B	(3<<8)
366  #define   ECOBITS_PPGTT_CACHE4B		(0<<8)
367  
368  #define GAB_CTL				_MMIO(0x24000)
369  #define   GAB_CTL_CONT_AFTER_PAGEFAULT	(1<<8)
370  
371  #define GEN6_STOLEN_RESERVED		_MMIO(0x1082C0)
372  #define GEN6_STOLEN_RESERVED_ADDR_MASK	(0xFFF << 20)
373  #define GEN7_STOLEN_RESERVED_ADDR_MASK	(0x3FFF << 18)
374  #define GEN6_STOLEN_RESERVED_SIZE_MASK	(3 << 4)
375  #define GEN6_STOLEN_RESERVED_1M		(0 << 4)
376  #define GEN6_STOLEN_RESERVED_512K	(1 << 4)
377  #define GEN6_STOLEN_RESERVED_256K	(2 << 4)
378  #define GEN6_STOLEN_RESERVED_128K	(3 << 4)
379  #define GEN7_STOLEN_RESERVED_SIZE_MASK	(1 << 5)
380  #define GEN7_STOLEN_RESERVED_1M		(0 << 5)
381  #define GEN7_STOLEN_RESERVED_256K	(1 << 5)
382  #define GEN8_STOLEN_RESERVED_SIZE_MASK	(3 << 7)
383  #define GEN8_STOLEN_RESERVED_1M		(0 << 7)
384  #define GEN8_STOLEN_RESERVED_2M		(1 << 7)
385  #define GEN8_STOLEN_RESERVED_4M		(2 << 7)
386  #define GEN8_STOLEN_RESERVED_8M		(3 << 7)
387  
388  /* VGA stuff */
389  
390  #define VGA_ST01_MDA 0x3ba
391  #define VGA_ST01_CGA 0x3da
392  
393  #define _VGA_MSR_WRITE _MMIO(0x3c2)
394  #define VGA_MSR_WRITE 0x3c2
395  #define VGA_MSR_READ 0x3cc
396  #define   VGA_MSR_MEM_EN (1<<1)
397  #define   VGA_MSR_CGA_MODE (1<<0)
398  
399  #define VGA_SR_INDEX 0x3c4
400  #define SR01			1
401  #define VGA_SR_DATA 0x3c5
402  
403  #define VGA_AR_INDEX 0x3c0
404  #define   VGA_AR_VID_EN (1<<5)
405  #define VGA_AR_DATA_WRITE 0x3c0
406  #define VGA_AR_DATA_READ 0x3c1
407  
408  #define VGA_GR_INDEX 0x3ce
409  #define VGA_GR_DATA 0x3cf
410  /* GR05 */
411  #define   VGA_GR_MEM_READ_MODE_SHIFT 3
412  #define     VGA_GR_MEM_READ_MODE_PLANE 1
413  /* GR06 */
414  #define   VGA_GR_MEM_MODE_MASK 0xc
415  #define   VGA_GR_MEM_MODE_SHIFT 2
416  #define   VGA_GR_MEM_A0000_AFFFF 0
417  #define   VGA_GR_MEM_A0000_BFFFF 1
418  #define   VGA_GR_MEM_B0000_B7FFF 2
419  #define   VGA_GR_MEM_B0000_BFFFF 3
420  
421  #define VGA_DACMASK 0x3c6
422  #define VGA_DACRX 0x3c7
423  #define VGA_DACWX 0x3c8
424  #define VGA_DACDATA 0x3c9
425  
426  #define VGA_CR_INDEX_MDA 0x3b4
427  #define VGA_CR_DATA_MDA 0x3b5
428  #define VGA_CR_INDEX_CGA 0x3d4
429  #define VGA_CR_DATA_CGA 0x3d5
430  
431  /*
432   * Instruction field definitions used by the command parser
433   */
434  #define INSTR_CLIENT_SHIFT      29
435  #define   INSTR_MI_CLIENT       0x0
436  #define   INSTR_BC_CLIENT       0x2
437  #define   INSTR_RC_CLIENT       0x3
438  #define INSTR_SUBCLIENT_SHIFT   27
439  #define INSTR_SUBCLIENT_MASK    0x18000000
440  #define   INSTR_MEDIA_SUBCLIENT 0x2
441  #define INSTR_26_TO_24_MASK	0x7000000
442  #define   INSTR_26_TO_24_SHIFT	24
443  
444  /*
445   * Memory interface instructions used by the kernel
446   */
447  #define MI_INSTR(opcode, flags) (((opcode) << 23) | (flags))
448  /* Many MI commands use bit 22 of the header dword for GGTT vs PPGTT */
449  #define  MI_GLOBAL_GTT    (1<<22)
450  
451  #define MI_NOOP			MI_INSTR(0, 0)
452  #define MI_USER_INTERRUPT	MI_INSTR(0x02, 0)
453  #define MI_WAIT_FOR_EVENT       MI_INSTR(0x03, 0)
454  #define   MI_WAIT_FOR_OVERLAY_FLIP	(1<<16)
455  #define   MI_WAIT_FOR_PLANE_B_FLIP      (1<<6)
456  #define   MI_WAIT_FOR_PLANE_A_FLIP      (1<<2)
457  #define   MI_WAIT_FOR_PLANE_A_SCANLINES (1<<1)
458  #define MI_FLUSH		MI_INSTR(0x04, 0)
459  #define   MI_READ_FLUSH		(1 << 0)
460  #define   MI_EXE_FLUSH		(1 << 1)
461  #define   MI_NO_WRITE_FLUSH	(1 << 2)
462  #define   MI_SCENE_COUNT	(1 << 3) /* just increment scene count */
463  #define   MI_END_SCENE		(1 << 4) /* flush binner and incr scene count */
464  #define   MI_INVALIDATE_ISP	(1 << 5) /* invalidate indirect state pointers */
465  #define MI_REPORT_HEAD		MI_INSTR(0x07, 0)
466  #define MI_ARB_ON_OFF		MI_INSTR(0x08, 0)
467  #define   MI_ARB_ENABLE			(1<<0)
468  #define   MI_ARB_DISABLE		(0<<0)
469  #define MI_BATCH_BUFFER_END	MI_INSTR(0x0a, 0)
470  #define MI_SUSPEND_FLUSH	MI_INSTR(0x0b, 0)
471  #define   MI_SUSPEND_FLUSH_EN	(1<<0)
472  #define MI_SET_APPID		MI_INSTR(0x0e, 0)
473  #define MI_OVERLAY_FLIP		MI_INSTR(0x11, 0)
474  #define   MI_OVERLAY_CONTINUE	(0x0<<21)
475  #define   MI_OVERLAY_ON		(0x1<<21)
476  #define   MI_OVERLAY_OFF	(0x2<<21)
477  #define MI_LOAD_SCAN_LINES_INCL MI_INSTR(0x12, 0)
478  #define MI_DISPLAY_FLIP		MI_INSTR(0x14, 2)
479  #define MI_DISPLAY_FLIP_I915	MI_INSTR(0x14, 1)
480  #define   MI_DISPLAY_FLIP_PLANE(n) ((n) << 20)
481  /* IVB has funny definitions for which plane to flip. */
482  #define   MI_DISPLAY_FLIP_IVB_PLANE_A  (0 << 19)
483  #define   MI_DISPLAY_FLIP_IVB_PLANE_B  (1 << 19)
484  #define   MI_DISPLAY_FLIP_IVB_SPRITE_A (2 << 19)
485  #define   MI_DISPLAY_FLIP_IVB_SPRITE_B (3 << 19)
486  #define   MI_DISPLAY_FLIP_IVB_PLANE_C  (4 << 19)
487  #define   MI_DISPLAY_FLIP_IVB_SPRITE_C (5 << 19)
488  /* SKL ones */
489  #define   MI_DISPLAY_FLIP_SKL_PLANE_1_A	(0 << 8)
490  #define   MI_DISPLAY_FLIP_SKL_PLANE_1_B	(1 << 8)
491  #define   MI_DISPLAY_FLIP_SKL_PLANE_1_C	(2 << 8)
492  #define   MI_DISPLAY_FLIP_SKL_PLANE_2_A	(4 << 8)
493  #define   MI_DISPLAY_FLIP_SKL_PLANE_2_B	(5 << 8)
494  #define   MI_DISPLAY_FLIP_SKL_PLANE_2_C	(6 << 8)
495  #define   MI_DISPLAY_FLIP_SKL_PLANE_3_A	(7 << 8)
496  #define   MI_DISPLAY_FLIP_SKL_PLANE_3_B	(8 << 8)
497  #define   MI_DISPLAY_FLIP_SKL_PLANE_3_C	(9 << 8)
498  #define MI_SEMAPHORE_MBOX	MI_INSTR(0x16, 1) /* gen6, gen7 */
499  #define   MI_SEMAPHORE_GLOBAL_GTT    (1<<22)
500  #define   MI_SEMAPHORE_UPDATE	    (1<<21)
501  #define   MI_SEMAPHORE_COMPARE	    (1<<20)
502  #define   MI_SEMAPHORE_REGISTER	    (1<<18)
503  #define   MI_SEMAPHORE_SYNC_VR	    (0<<16) /* RCS  wait for VCS  (RVSYNC) */
504  #define   MI_SEMAPHORE_SYNC_VER	    (1<<16) /* RCS  wait for VECS (RVESYNC) */
505  #define   MI_SEMAPHORE_SYNC_BR	    (2<<16) /* RCS  wait for BCS  (RBSYNC) */
506  #define   MI_SEMAPHORE_SYNC_BV	    (0<<16) /* VCS  wait for BCS  (VBSYNC) */
507  #define   MI_SEMAPHORE_SYNC_VEV	    (1<<16) /* VCS  wait for VECS (VVESYNC) */
508  #define   MI_SEMAPHORE_SYNC_RV	    (2<<16) /* VCS  wait for RCS  (VRSYNC) */
509  #define   MI_SEMAPHORE_SYNC_RB	    (0<<16) /* BCS  wait for RCS  (BRSYNC) */
510  #define   MI_SEMAPHORE_SYNC_VEB	    (1<<16) /* BCS  wait for VECS (BVESYNC) */
511  #define   MI_SEMAPHORE_SYNC_VB	    (2<<16) /* BCS  wait for VCS  (BVSYNC) */
512  #define   MI_SEMAPHORE_SYNC_BVE	    (0<<16) /* VECS wait for BCS  (VEBSYNC) */
513  #define   MI_SEMAPHORE_SYNC_VVE	    (1<<16) /* VECS wait for VCS  (VEVSYNC) */
514  #define   MI_SEMAPHORE_SYNC_RVE	    (2<<16) /* VECS wait for RCS  (VERSYNC) */
515  #define   MI_SEMAPHORE_SYNC_INVALID (3<<16)
516  #define   MI_SEMAPHORE_SYNC_MASK    (3<<16)
517  #define MI_SET_CONTEXT		MI_INSTR(0x18, 0)
518  #define   MI_MM_SPACE_GTT		(1<<8)
519  #define   MI_MM_SPACE_PHYSICAL		(0<<8)
520  #define   MI_SAVE_EXT_STATE_EN		(1<<3)
521  #define   MI_RESTORE_EXT_STATE_EN	(1<<2)
522  #define   MI_FORCE_RESTORE		(1<<1)
523  #define   MI_RESTORE_INHIBIT		(1<<0)
524  #define   HSW_MI_RS_SAVE_STATE_EN       (1<<3)
525  #define   HSW_MI_RS_RESTORE_STATE_EN    (1<<2)
526  #define MI_SEMAPHORE_SIGNAL	MI_INSTR(0x1b, 0) /* GEN8+ */
527  #define   MI_SEMAPHORE_TARGET(engine)	((engine)<<15)
528  #define MI_SEMAPHORE_WAIT	MI_INSTR(0x1c, 2) /* GEN8+ */
529  #define   MI_SEMAPHORE_POLL		(1<<15)
530  #define   MI_SEMAPHORE_SAD_GTE_SDD	(1<<12)
531  #define MI_STORE_DWORD_IMM	MI_INSTR(0x20, 1)
532  #define MI_STORE_DWORD_IMM_GEN4	MI_INSTR(0x20, 2)
533  #define   MI_MEM_VIRTUAL	(1 << 22) /* 945,g33,965 */
534  #define   MI_USE_GGTT		(1 << 22) /* g4x+ */
535  #define MI_STORE_DWORD_INDEX	MI_INSTR(0x21, 1)
536  #define   MI_STORE_DWORD_INDEX_SHIFT 2
537  /* Official intel docs are somewhat sloppy concerning MI_LOAD_REGISTER_IMM:
538   * - Always issue a MI_NOOP _before_ the MI_LOAD_REGISTER_IMM - otherwise hw
539   *   simply ignores the register load under certain conditions.
540   * - One can actually load arbitrary many arbitrary registers: Simply issue x
541   *   address/value pairs. Don't overdue it, though, x <= 2^4 must hold!
542   */
543  #define MI_LOAD_REGISTER_IMM(x)	MI_INSTR(0x22, 2*(x)-1)
544  #define   MI_LRI_FORCE_POSTED		(1<<12)
545  #define MI_STORE_REGISTER_MEM        MI_INSTR(0x24, 1)
546  #define MI_STORE_REGISTER_MEM_GEN8   MI_INSTR(0x24, 2)
547  #define   MI_SRM_LRM_GLOBAL_GTT		(1<<22)
548  #define MI_FLUSH_DW		MI_INSTR(0x26, 1) /* for GEN6 */
549  #define   MI_FLUSH_DW_STORE_INDEX	(1<<21)
550  #define   MI_INVALIDATE_TLB		(1<<18)
551  #define   MI_FLUSH_DW_OP_STOREDW	(1<<14)
552  #define   MI_FLUSH_DW_OP_MASK		(3<<14)
553  #define   MI_FLUSH_DW_NOTIFY		(1<<8)
554  #define   MI_INVALIDATE_BSD		(1<<7)
555  #define   MI_FLUSH_DW_USE_GTT		(1<<2)
556  #define   MI_FLUSH_DW_USE_PPGTT		(0<<2)
557  #define MI_LOAD_REGISTER_MEM	   MI_INSTR(0x29, 1)
558  #define MI_LOAD_REGISTER_MEM_GEN8  MI_INSTR(0x29, 2)
559  #define MI_BATCH_BUFFER		MI_INSTR(0x30, 1)
560  #define   MI_BATCH_NON_SECURE		(1)
561  /* for snb/ivb/vlv this also means "batch in ppgtt" when ppgtt is enabled. */
562  #define   MI_BATCH_NON_SECURE_I965	(1<<8)
563  #define   MI_BATCH_PPGTT_HSW		(1<<8)
564  #define   MI_BATCH_NON_SECURE_HSW	(1<<13)
565  #define MI_BATCH_BUFFER_START	MI_INSTR(0x31, 0)
566  #define   MI_BATCH_GTT		    (2<<6) /* aliased with (1<<7) on gen4 */
567  #define MI_BATCH_BUFFER_START_GEN8	MI_INSTR(0x31, 1)
568  #define   MI_BATCH_RESOURCE_STREAMER (1<<10)
569  
570  #define MI_PREDICATE_SRC0	_MMIO(0x2400)
571  #define MI_PREDICATE_SRC0_UDW	_MMIO(0x2400 + 4)
572  #define MI_PREDICATE_SRC1	_MMIO(0x2408)
573  #define MI_PREDICATE_SRC1_UDW	_MMIO(0x2408 + 4)
574  
575  #define MI_PREDICATE_RESULT_2	_MMIO(0x2214)
576  #define  LOWER_SLICE_ENABLED	(1<<0)
577  #define  LOWER_SLICE_DISABLED	(0<<0)
578  
579  /*
580   * 3D instructions used by the kernel
581   */
582  #define GFX_INSTR(opcode, flags) ((0x3 << 29) | ((opcode) << 24) | (flags))
583  
584  #define GEN9_MEDIA_POOL_STATE     ((0x3 << 29) | (0x2 << 27) | (0x5 << 16) | 4)
585  #define   GEN9_MEDIA_POOL_ENABLE  (1 << 31)
586  #define GFX_OP_RASTER_RULES    ((0x3<<29)|(0x7<<24))
587  #define GFX_OP_SCISSOR         ((0x3<<29)|(0x1c<<24)|(0x10<<19))
588  #define   SC_UPDATE_SCISSOR       (0x1<<1)
589  #define   SC_ENABLE_MASK          (0x1<<0)
590  #define   SC_ENABLE               (0x1<<0)
591  #define GFX_OP_LOAD_INDIRECT   ((0x3<<29)|(0x1d<<24)|(0x7<<16))
592  #define GFX_OP_SCISSOR_INFO    ((0x3<<29)|(0x1d<<24)|(0x81<<16)|(0x1))
593  #define   SCI_YMIN_MASK      (0xffff<<16)
594  #define   SCI_XMIN_MASK      (0xffff<<0)
595  #define   SCI_YMAX_MASK      (0xffff<<16)
596  #define   SCI_XMAX_MASK      (0xffff<<0)
597  #define GFX_OP_SCISSOR_ENABLE	 ((0x3<<29)|(0x1c<<24)|(0x10<<19))
598  #define GFX_OP_SCISSOR_RECT	 ((0x3<<29)|(0x1d<<24)|(0x81<<16)|1)
599  #define GFX_OP_COLOR_FACTOR      ((0x3<<29)|(0x1d<<24)|(0x1<<16)|0x0)
600  #define GFX_OP_STIPPLE           ((0x3<<29)|(0x1d<<24)|(0x83<<16))
601  #define GFX_OP_MAP_INFO          ((0x3<<29)|(0x1d<<24)|0x4)
602  #define GFX_OP_DESTBUFFER_VARS   ((0x3<<29)|(0x1d<<24)|(0x85<<16)|0x0)
603  #define GFX_OP_DESTBUFFER_INFO	 ((0x3<<29)|(0x1d<<24)|(0x8e<<16)|1)
604  #define GFX_OP_DRAWRECT_INFO     ((0x3<<29)|(0x1d<<24)|(0x80<<16)|(0x3))
605  #define GFX_OP_DRAWRECT_INFO_I965  ((0x7900<<16)|0x2)
606  
607  #define COLOR_BLT_CMD			(2<<29 | 0x40<<22 | (5-2))
608  #define SRC_COPY_BLT_CMD		((2<<29)|(0x43<<22)|4)
609  #define XY_SRC_COPY_BLT_CMD		((2<<29)|(0x53<<22)|6)
610  #define XY_MONO_SRC_COPY_IMM_BLT	((2<<29)|(0x71<<22)|5)
611  #define   BLT_WRITE_A			(2<<20)
612  #define   BLT_WRITE_RGB			(1<<20)
613  #define   BLT_WRITE_RGBA		(BLT_WRITE_RGB | BLT_WRITE_A)
614  #define   BLT_DEPTH_8			(0<<24)
615  #define   BLT_DEPTH_16_565		(1<<24)
616  #define   BLT_DEPTH_16_1555		(2<<24)
617  #define   BLT_DEPTH_32			(3<<24)
618  #define   BLT_ROP_SRC_COPY		(0xcc<<16)
619  #define   BLT_ROP_COLOR_COPY		(0xf0<<16)
620  #define XY_SRC_COPY_BLT_SRC_TILED	(1<<15) /* 965+ only */
621  #define XY_SRC_COPY_BLT_DST_TILED	(1<<11) /* 965+ only */
622  #define CMD_OP_DISPLAYBUFFER_INFO ((0x0<<29)|(0x14<<23)|2)
623  #define   ASYNC_FLIP                (1<<22)
624  #define   DISPLAY_PLANE_A           (0<<20)
625  #define   DISPLAY_PLANE_B           (1<<20)
626  #define GFX_OP_PIPE_CONTROL(len)	((0x3<<29)|(0x3<<27)|(0x2<<24)|((len)-2))
627  #define   PIPE_CONTROL_FLUSH_L3				(1<<27)
628  #define   PIPE_CONTROL_GLOBAL_GTT_IVB			(1<<24) /* gen7+ */
629  #define   PIPE_CONTROL_MMIO_WRITE			(1<<23)
630  #define   PIPE_CONTROL_STORE_DATA_INDEX			(1<<21)
631  #define   PIPE_CONTROL_CS_STALL				(1<<20)
632  #define   PIPE_CONTROL_TLB_INVALIDATE			(1<<18)
633  #define   PIPE_CONTROL_MEDIA_STATE_CLEAR		(1<<16)
634  #define   PIPE_CONTROL_QW_WRITE				(1<<14)
635  #define   PIPE_CONTROL_POST_SYNC_OP_MASK                (3<<14)
636  #define   PIPE_CONTROL_DEPTH_STALL			(1<<13)
637  #define   PIPE_CONTROL_WRITE_FLUSH			(1<<12)
638  #define   PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH	(1<<12) /* gen6+ */
639  #define   PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE	(1<<11) /* MBZ on Ironlake */
640  #define   PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE		(1<<10) /* GM45+ only */
641  #define   PIPE_CONTROL_INDIRECT_STATE_DISABLE		(1<<9)
642  #define   PIPE_CONTROL_NOTIFY				(1<<8)
643  #define   PIPE_CONTROL_FLUSH_ENABLE			(1<<7) /* gen7+ */
644  #define   PIPE_CONTROL_DC_FLUSH_ENABLE			(1<<5)
645  #define   PIPE_CONTROL_VF_CACHE_INVALIDATE		(1<<4)
646  #define   PIPE_CONTROL_CONST_CACHE_INVALIDATE		(1<<3)
647  #define   PIPE_CONTROL_STATE_CACHE_INVALIDATE		(1<<2)
648  #define   PIPE_CONTROL_STALL_AT_SCOREBOARD		(1<<1)
649  #define   PIPE_CONTROL_DEPTH_CACHE_FLUSH		(1<<0)
650  #define   PIPE_CONTROL_GLOBAL_GTT (1<<2) /* in addr dword */
651  
652  /*
653   * Commands used only by the command parser
654   */
655  #define MI_SET_PREDICATE        MI_INSTR(0x01, 0)
656  #define MI_ARB_CHECK            MI_INSTR(0x05, 0)
657  #define MI_RS_CONTROL           MI_INSTR(0x06, 0)
658  #define MI_URB_ATOMIC_ALLOC     MI_INSTR(0x09, 0)
659  #define MI_PREDICATE            MI_INSTR(0x0C, 0)
660  #define MI_RS_CONTEXT           MI_INSTR(0x0F, 0)
661  #define MI_TOPOLOGY_FILTER      MI_INSTR(0x0D, 0)
662  #define MI_LOAD_SCAN_LINES_EXCL MI_INSTR(0x13, 0)
663  #define MI_URB_CLEAR            MI_INSTR(0x19, 0)
664  #define MI_UPDATE_GTT           MI_INSTR(0x23, 0)
665  #define MI_CLFLUSH              MI_INSTR(0x27, 0)
666  #define MI_REPORT_PERF_COUNT    MI_INSTR(0x28, 0)
667  #define   MI_REPORT_PERF_COUNT_GGTT (1<<0)
668  #define MI_LOAD_REGISTER_REG    MI_INSTR(0x2A, 0)
669  #define MI_RS_STORE_DATA_IMM    MI_INSTR(0x2B, 0)
670  #define MI_LOAD_URB_MEM         MI_INSTR(0x2C, 0)
671  #define MI_STORE_URB_MEM        MI_INSTR(0x2D, 0)
672  #define MI_CONDITIONAL_BATCH_BUFFER_END MI_INSTR(0x36, 0)
673  
674  #define PIPELINE_SELECT                ((0x3<<29)|(0x1<<27)|(0x1<<24)|(0x4<<16))
675  #define GFX_OP_3DSTATE_VF_STATISTICS   ((0x3<<29)|(0x1<<27)|(0x0<<24)|(0xB<<16))
676  #define MEDIA_VFE_STATE                ((0x3<<29)|(0x2<<27)|(0x0<<24)|(0x0<<16))
677  #define  MEDIA_VFE_STATE_MMIO_ACCESS_MASK (0x18)
678  #define GPGPU_OBJECT                   ((0x3<<29)|(0x2<<27)|(0x1<<24)|(0x4<<16))
679  #define GPGPU_WALKER                   ((0x3<<29)|(0x2<<27)|(0x1<<24)|(0x5<<16))
680  #define GFX_OP_3DSTATE_DX9_CONSTANTF_VS \
681  	((0x3<<29)|(0x3<<27)|(0x0<<24)|(0x39<<16))
682  #define GFX_OP_3DSTATE_DX9_CONSTANTF_PS \
683  	((0x3<<29)|(0x3<<27)|(0x0<<24)|(0x3A<<16))
684  #define GFX_OP_3DSTATE_SO_DECL_LIST \
685  	((0x3<<29)|(0x3<<27)|(0x1<<24)|(0x17<<16))
686  
687  #define GFX_OP_3DSTATE_BINDING_TABLE_EDIT_VS \
688  	((0x3<<29)|(0x3<<27)|(0x0<<24)|(0x43<<16))
689  #define GFX_OP_3DSTATE_BINDING_TABLE_EDIT_GS \
690  	((0x3<<29)|(0x3<<27)|(0x0<<24)|(0x44<<16))
691  #define GFX_OP_3DSTATE_BINDING_TABLE_EDIT_HS \
692  	((0x3<<29)|(0x3<<27)|(0x0<<24)|(0x45<<16))
693  #define GFX_OP_3DSTATE_BINDING_TABLE_EDIT_DS \
694  	((0x3<<29)|(0x3<<27)|(0x0<<24)|(0x46<<16))
695  #define GFX_OP_3DSTATE_BINDING_TABLE_EDIT_PS \
696  	((0x3<<29)|(0x3<<27)|(0x0<<24)|(0x47<<16))
697  
698  #define MFX_WAIT  ((0x3<<29)|(0x1<<27)|(0x0<<16))
699  
700  #define COLOR_BLT     ((0x2<<29)|(0x40<<22))
701  #define SRC_COPY_BLT  ((0x2<<29)|(0x43<<22))
702  
703  /*
704   * Registers used only by the command parser
705   */
706  #define BCS_SWCTRL _MMIO(0x22200)
707  
708  /* There are 16 GPR registers */
709  #define BCS_GPR(n)	_MMIO(0x22600 + (n) * 8)
710  #define BCS_GPR_UDW(n)	_MMIO(0x22600 + (n) * 8 + 4)
711  
712  #define GPGPU_THREADS_DISPATCHED        _MMIO(0x2290)
713  #define GPGPU_THREADS_DISPATCHED_UDW	_MMIO(0x2290 + 4)
714  #define HS_INVOCATION_COUNT             _MMIO(0x2300)
715  #define HS_INVOCATION_COUNT_UDW		_MMIO(0x2300 + 4)
716  #define DS_INVOCATION_COUNT             _MMIO(0x2308)
717  #define DS_INVOCATION_COUNT_UDW		_MMIO(0x2308 + 4)
718  #define IA_VERTICES_COUNT               _MMIO(0x2310)
719  #define IA_VERTICES_COUNT_UDW		_MMIO(0x2310 + 4)
720  #define IA_PRIMITIVES_COUNT             _MMIO(0x2318)
721  #define IA_PRIMITIVES_COUNT_UDW		_MMIO(0x2318 + 4)
722  #define VS_INVOCATION_COUNT             _MMIO(0x2320)
723  #define VS_INVOCATION_COUNT_UDW		_MMIO(0x2320 + 4)
724  #define GS_INVOCATION_COUNT             _MMIO(0x2328)
725  #define GS_INVOCATION_COUNT_UDW		_MMIO(0x2328 + 4)
726  #define GS_PRIMITIVES_COUNT             _MMIO(0x2330)
727  #define GS_PRIMITIVES_COUNT_UDW		_MMIO(0x2330 + 4)
728  #define CL_INVOCATION_COUNT             _MMIO(0x2338)
729  #define CL_INVOCATION_COUNT_UDW		_MMIO(0x2338 + 4)
730  #define CL_PRIMITIVES_COUNT             _MMIO(0x2340)
731  #define CL_PRIMITIVES_COUNT_UDW		_MMIO(0x2340 + 4)
732  #define PS_INVOCATION_COUNT             _MMIO(0x2348)
733  #define PS_INVOCATION_COUNT_UDW		_MMIO(0x2348 + 4)
734  #define PS_DEPTH_COUNT                  _MMIO(0x2350)
735  #define PS_DEPTH_COUNT_UDW		_MMIO(0x2350 + 4)
736  
737  /* There are the 4 64-bit counter registers, one for each stream output */
738  #define GEN7_SO_NUM_PRIMS_WRITTEN(n)		_MMIO(0x5200 + (n) * 8)
739  #define GEN7_SO_NUM_PRIMS_WRITTEN_UDW(n)	_MMIO(0x5200 + (n) * 8 + 4)
740  
741  #define GEN7_SO_PRIM_STORAGE_NEEDED(n)		_MMIO(0x5240 + (n) * 8)
742  #define GEN7_SO_PRIM_STORAGE_NEEDED_UDW(n)	_MMIO(0x5240 + (n) * 8 + 4)
743  
744  #define GEN7_3DPRIM_END_OFFSET          _MMIO(0x2420)
745  #define GEN7_3DPRIM_START_VERTEX        _MMIO(0x2430)
746  #define GEN7_3DPRIM_VERTEX_COUNT        _MMIO(0x2434)
747  #define GEN7_3DPRIM_INSTANCE_COUNT      _MMIO(0x2438)
748  #define GEN7_3DPRIM_START_INSTANCE      _MMIO(0x243C)
749  #define GEN7_3DPRIM_BASE_VERTEX         _MMIO(0x2440)
750  
751  #define GEN7_GPGPU_DISPATCHDIMX         _MMIO(0x2500)
752  #define GEN7_GPGPU_DISPATCHDIMY         _MMIO(0x2504)
753  #define GEN7_GPGPU_DISPATCHDIMZ         _MMIO(0x2508)
754  
755  /* There are the 16 64-bit CS General Purpose Registers */
756  #define HSW_CS_GPR(n)                   _MMIO(0x2600 + (n) * 8)
757  #define HSW_CS_GPR_UDW(n)               _MMIO(0x2600 + (n) * 8 + 4)
758  
759  #define GEN7_OACONTROL _MMIO(0x2360)
760  #define  GEN7_OACONTROL_CTX_MASK	    0xFFFFF000
761  #define  GEN7_OACONTROL_TIMER_PERIOD_MASK   0x3F
762  #define  GEN7_OACONTROL_TIMER_PERIOD_SHIFT  6
763  #define  GEN7_OACONTROL_TIMER_ENABLE	    (1<<5)
764  #define  GEN7_OACONTROL_FORMAT_A13	    (0<<2)
765  #define  GEN7_OACONTROL_FORMAT_A29	    (1<<2)
766  #define  GEN7_OACONTROL_FORMAT_A13_B8_C8    (2<<2)
767  #define  GEN7_OACONTROL_FORMAT_A29_B8_C8    (3<<2)
768  #define  GEN7_OACONTROL_FORMAT_B4_C8	    (4<<2)
769  #define  GEN7_OACONTROL_FORMAT_A45_B8_C8    (5<<2)
770  #define  GEN7_OACONTROL_FORMAT_B4_C8_A16    (6<<2)
771  #define  GEN7_OACONTROL_FORMAT_C4_B8	    (7<<2)
772  #define  GEN7_OACONTROL_FORMAT_SHIFT	    2
773  #define  GEN7_OACONTROL_PER_CTX_ENABLE	    (1<<1)
774  #define  GEN7_OACONTROL_ENABLE		    (1<<0)
775  
776  #define GEN8_OACTXID _MMIO(0x2364)
777  
778  #define GEN8_OA_DEBUG _MMIO(0x2B04)
779  #define  GEN9_OA_DEBUG_DISABLE_CLK_RATIO_REPORTS    (1<<5)
780  #define  GEN9_OA_DEBUG_INCLUDE_CLK_RATIO	    (1<<6)
781  #define  GEN9_OA_DEBUG_DISABLE_GO_1_0_REPORTS	    (1<<2)
782  #define  GEN9_OA_DEBUG_DISABLE_CTX_SWITCH_REPORTS   (1<<1)
783  
784  #define GEN8_OACONTROL _MMIO(0x2B00)
785  #define  GEN8_OA_REPORT_FORMAT_A12	    (0<<2)
786  #define  GEN8_OA_REPORT_FORMAT_A12_B8_C8    (2<<2)
787  #define  GEN8_OA_REPORT_FORMAT_A36_B8_C8    (5<<2)
788  #define  GEN8_OA_REPORT_FORMAT_C4_B8	    (7<<2)
789  #define  GEN8_OA_REPORT_FORMAT_SHIFT	    2
790  #define  GEN8_OA_SPECIFIC_CONTEXT_ENABLE    (1<<1)
791  #define  GEN8_OA_COUNTER_ENABLE             (1<<0)
792  
793  #define GEN8_OACTXCONTROL _MMIO(0x2360)
794  #define  GEN8_OA_TIMER_PERIOD_MASK	    0x3F
795  #define  GEN8_OA_TIMER_PERIOD_SHIFT	    2
796  #define  GEN8_OA_TIMER_ENABLE		    (1<<1)
797  #define  GEN8_OA_COUNTER_RESUME		    (1<<0)
798  
799  #define GEN7_OABUFFER _MMIO(0x23B0) /* R/W */
800  #define  GEN7_OABUFFER_OVERRUN_DISABLE	    (1<<3)
801  #define  GEN7_OABUFFER_EDGE_TRIGGER	    (1<<2)
802  #define  GEN7_OABUFFER_STOP_RESUME_ENABLE   (1<<1)
803  #define  GEN7_OABUFFER_RESUME		    (1<<0)
804  
805  #define GEN8_OABUFFER_UDW _MMIO(0x23b4)
806  #define GEN8_OABUFFER _MMIO(0x2b14)
807  
808  #define GEN7_OASTATUS1 _MMIO(0x2364)
809  #define  GEN7_OASTATUS1_TAIL_MASK	    0xffffffc0
810  #define  GEN7_OASTATUS1_COUNTER_OVERFLOW    (1<<2)
811  #define  GEN7_OASTATUS1_OABUFFER_OVERFLOW   (1<<1)
812  #define  GEN7_OASTATUS1_REPORT_LOST	    (1<<0)
813  
814  #define GEN7_OASTATUS2 _MMIO(0x2368)
815  #define GEN7_OASTATUS2_HEAD_MASK    0xffffffc0
816  
817  #define GEN8_OASTATUS _MMIO(0x2b08)
818  #define  GEN8_OASTATUS_OVERRUN_STATUS	    (1<<3)
819  #define  GEN8_OASTATUS_COUNTER_OVERFLOW     (1<<2)
820  #define  GEN8_OASTATUS_OABUFFER_OVERFLOW    (1<<1)
821  #define  GEN8_OASTATUS_REPORT_LOST	    (1<<0)
822  
823  #define GEN8_OAHEADPTR _MMIO(0x2B0C)
824  #define GEN8_OAHEADPTR_MASK    0xffffffc0
825  #define GEN8_OATAILPTR _MMIO(0x2B10)
826  #define GEN8_OATAILPTR_MASK    0xffffffc0
827  
828  #define OABUFFER_SIZE_128K  (0<<3)
829  #define OABUFFER_SIZE_256K  (1<<3)
830  #define OABUFFER_SIZE_512K  (2<<3)
831  #define OABUFFER_SIZE_1M    (3<<3)
832  #define OABUFFER_SIZE_2M    (4<<3)
833  #define OABUFFER_SIZE_4M    (5<<3)
834  #define OABUFFER_SIZE_8M    (6<<3)
835  #define OABUFFER_SIZE_16M   (7<<3)
836  
837  #define OA_MEM_SELECT_GGTT  (1<<0)
838  
839  /*
840   * Flexible, Aggregate EU Counter Registers.
841   * Note: these aren't contiguous
842   */
843  #define EU_PERF_CNTL0	    _MMIO(0xe458)
844  #define EU_PERF_CNTL1	    _MMIO(0xe558)
845  #define EU_PERF_CNTL2	    _MMIO(0xe658)
846  #define EU_PERF_CNTL3	    _MMIO(0xe758)
847  #define EU_PERF_CNTL4	    _MMIO(0xe45c)
848  #define EU_PERF_CNTL5	    _MMIO(0xe55c)
849  #define EU_PERF_CNTL6	    _MMIO(0xe65c)
850  
851  /*
852   * OA Boolean state
853   */
854  
855  #define OASTARTTRIG1 _MMIO(0x2710)
856  #define OASTARTTRIG1_THRESHOLD_COUNT_MASK_MBZ 0xffff0000
857  #define OASTARTTRIG1_THRESHOLD_MASK	      0xffff
858  
859  #define OASTARTTRIG2 _MMIO(0x2714)
860  #define OASTARTTRIG2_INVERT_A_0 (1<<0)
861  #define OASTARTTRIG2_INVERT_A_1 (1<<1)
862  #define OASTARTTRIG2_INVERT_A_2 (1<<2)
863  #define OASTARTTRIG2_INVERT_A_3 (1<<3)
864  #define OASTARTTRIG2_INVERT_A_4 (1<<4)
865  #define OASTARTTRIG2_INVERT_A_5 (1<<5)
866  #define OASTARTTRIG2_INVERT_A_6 (1<<6)
867  #define OASTARTTRIG2_INVERT_A_7 (1<<7)
868  #define OASTARTTRIG2_INVERT_A_8 (1<<8)
869  #define OASTARTTRIG2_INVERT_A_9 (1<<9)
870  #define OASTARTTRIG2_INVERT_A_10 (1<<10)
871  #define OASTARTTRIG2_INVERT_A_11 (1<<11)
872  #define OASTARTTRIG2_INVERT_A_12 (1<<12)
873  #define OASTARTTRIG2_INVERT_A_13 (1<<13)
874  #define OASTARTTRIG2_INVERT_A_14 (1<<14)
875  #define OASTARTTRIG2_INVERT_A_15 (1<<15)
876  #define OASTARTTRIG2_INVERT_B_0 (1<<16)
877  #define OASTARTTRIG2_INVERT_B_1 (1<<17)
878  #define OASTARTTRIG2_INVERT_B_2 (1<<18)
879  #define OASTARTTRIG2_INVERT_B_3 (1<<19)
880  #define OASTARTTRIG2_INVERT_C_0 (1<<20)
881  #define OASTARTTRIG2_INVERT_C_1 (1<<21)
882  #define OASTARTTRIG2_INVERT_D_0 (1<<22)
883  #define OASTARTTRIG2_THRESHOLD_ENABLE	    (1<<23)
884  #define OASTARTTRIG2_START_TRIG_FLAG_MBZ    (1<<24)
885  #define OASTARTTRIG2_EVENT_SELECT_0  (1<<28)
886  #define OASTARTTRIG2_EVENT_SELECT_1  (1<<29)
887  #define OASTARTTRIG2_EVENT_SELECT_2  (1<<30)
888  #define OASTARTTRIG2_EVENT_SELECT_3  (1<<31)
889  
890  #define OASTARTTRIG3 _MMIO(0x2718)
891  #define OASTARTTRIG3_NOA_SELECT_MASK	   0xf
892  #define OASTARTTRIG3_NOA_SELECT_8_SHIFT    0
893  #define OASTARTTRIG3_NOA_SELECT_9_SHIFT    4
894  #define OASTARTTRIG3_NOA_SELECT_10_SHIFT   8
895  #define OASTARTTRIG3_NOA_SELECT_11_SHIFT   12
896  #define OASTARTTRIG3_NOA_SELECT_12_SHIFT   16
897  #define OASTARTTRIG3_NOA_SELECT_13_SHIFT   20
898  #define OASTARTTRIG3_NOA_SELECT_14_SHIFT   24
899  #define OASTARTTRIG3_NOA_SELECT_15_SHIFT   28
900  
901  #define OASTARTTRIG4 _MMIO(0x271c)
902  #define OASTARTTRIG4_NOA_SELECT_MASK	    0xf
903  #define OASTARTTRIG4_NOA_SELECT_0_SHIFT    0
904  #define OASTARTTRIG4_NOA_SELECT_1_SHIFT    4
905  #define OASTARTTRIG4_NOA_SELECT_2_SHIFT    8
906  #define OASTARTTRIG4_NOA_SELECT_3_SHIFT    12
907  #define OASTARTTRIG4_NOA_SELECT_4_SHIFT    16
908  #define OASTARTTRIG4_NOA_SELECT_5_SHIFT    20
909  #define OASTARTTRIG4_NOA_SELECT_6_SHIFT    24
910  #define OASTARTTRIG4_NOA_SELECT_7_SHIFT    28
911  
912  #define OASTARTTRIG5 _MMIO(0x2720)
913  #define OASTARTTRIG5_THRESHOLD_COUNT_MASK_MBZ 0xffff0000
914  #define OASTARTTRIG5_THRESHOLD_MASK	      0xffff
915  
916  #define OASTARTTRIG6 _MMIO(0x2724)
917  #define OASTARTTRIG6_INVERT_A_0 (1<<0)
918  #define OASTARTTRIG6_INVERT_A_1 (1<<1)
919  #define OASTARTTRIG6_INVERT_A_2 (1<<2)
920  #define OASTARTTRIG6_INVERT_A_3 (1<<3)
921  #define OASTARTTRIG6_INVERT_A_4 (1<<4)
922  #define OASTARTTRIG6_INVERT_A_5 (1<<5)
923  #define OASTARTTRIG6_INVERT_A_6 (1<<6)
924  #define OASTARTTRIG6_INVERT_A_7 (1<<7)
925  #define OASTARTTRIG6_INVERT_A_8 (1<<8)
926  #define OASTARTTRIG6_INVERT_A_9 (1<<9)
927  #define OASTARTTRIG6_INVERT_A_10 (1<<10)
928  #define OASTARTTRIG6_INVERT_A_11 (1<<11)
929  #define OASTARTTRIG6_INVERT_A_12 (1<<12)
930  #define OASTARTTRIG6_INVERT_A_13 (1<<13)
931  #define OASTARTTRIG6_INVERT_A_14 (1<<14)
932  #define OASTARTTRIG6_INVERT_A_15 (1<<15)
933  #define OASTARTTRIG6_INVERT_B_0 (1<<16)
934  #define OASTARTTRIG6_INVERT_B_1 (1<<17)
935  #define OASTARTTRIG6_INVERT_B_2 (1<<18)
936  #define OASTARTTRIG6_INVERT_B_3 (1<<19)
937  #define OASTARTTRIG6_INVERT_C_0 (1<<20)
938  #define OASTARTTRIG6_INVERT_C_1 (1<<21)
939  #define OASTARTTRIG6_INVERT_D_0 (1<<22)
940  #define OASTARTTRIG6_THRESHOLD_ENABLE	    (1<<23)
941  #define OASTARTTRIG6_START_TRIG_FLAG_MBZ    (1<<24)
942  #define OASTARTTRIG6_EVENT_SELECT_4  (1<<28)
943  #define OASTARTTRIG6_EVENT_SELECT_5  (1<<29)
944  #define OASTARTTRIG6_EVENT_SELECT_6  (1<<30)
945  #define OASTARTTRIG6_EVENT_SELECT_7  (1<<31)
946  
947  #define OASTARTTRIG7 _MMIO(0x2728)
948  #define OASTARTTRIG7_NOA_SELECT_MASK	   0xf
949  #define OASTARTTRIG7_NOA_SELECT_8_SHIFT    0
950  #define OASTARTTRIG7_NOA_SELECT_9_SHIFT    4
951  #define OASTARTTRIG7_NOA_SELECT_10_SHIFT   8
952  #define OASTARTTRIG7_NOA_SELECT_11_SHIFT   12
953  #define OASTARTTRIG7_NOA_SELECT_12_SHIFT   16
954  #define OASTARTTRIG7_NOA_SELECT_13_SHIFT   20
955  #define OASTARTTRIG7_NOA_SELECT_14_SHIFT   24
956  #define OASTARTTRIG7_NOA_SELECT_15_SHIFT   28
957  
958  #define OASTARTTRIG8 _MMIO(0x272c)
959  #define OASTARTTRIG8_NOA_SELECT_MASK	   0xf
960  #define OASTARTTRIG8_NOA_SELECT_0_SHIFT    0
961  #define OASTARTTRIG8_NOA_SELECT_1_SHIFT    4
962  #define OASTARTTRIG8_NOA_SELECT_2_SHIFT    8
963  #define OASTARTTRIG8_NOA_SELECT_3_SHIFT    12
964  #define OASTARTTRIG8_NOA_SELECT_4_SHIFT    16
965  #define OASTARTTRIG8_NOA_SELECT_5_SHIFT    20
966  #define OASTARTTRIG8_NOA_SELECT_6_SHIFT    24
967  #define OASTARTTRIG8_NOA_SELECT_7_SHIFT    28
968  
969  #define OAREPORTTRIG1 _MMIO(0x2740)
970  #define OAREPORTTRIG1_THRESHOLD_MASK 0xffff
971  #define OAREPORTTRIG1_EDGE_LEVEL_TRIGER_SELECT_MASK 0xffff0000 /* 0=level */
972  
973  #define OAREPORTTRIG2 _MMIO(0x2744)
974  #define OAREPORTTRIG2_INVERT_A_0  (1<<0)
975  #define OAREPORTTRIG2_INVERT_A_1  (1<<1)
976  #define OAREPORTTRIG2_INVERT_A_2  (1<<2)
977  #define OAREPORTTRIG2_INVERT_A_3  (1<<3)
978  #define OAREPORTTRIG2_INVERT_A_4  (1<<4)
979  #define OAREPORTTRIG2_INVERT_A_5  (1<<5)
980  #define OAREPORTTRIG2_INVERT_A_6  (1<<6)
981  #define OAREPORTTRIG2_INVERT_A_7  (1<<7)
982  #define OAREPORTTRIG2_INVERT_A_8  (1<<8)
983  #define OAREPORTTRIG2_INVERT_A_9  (1<<9)
984  #define OAREPORTTRIG2_INVERT_A_10 (1<<10)
985  #define OAREPORTTRIG2_INVERT_A_11 (1<<11)
986  #define OAREPORTTRIG2_INVERT_A_12 (1<<12)
987  #define OAREPORTTRIG2_INVERT_A_13 (1<<13)
988  #define OAREPORTTRIG2_INVERT_A_14 (1<<14)
989  #define OAREPORTTRIG2_INVERT_A_15 (1<<15)
990  #define OAREPORTTRIG2_INVERT_B_0  (1<<16)
991  #define OAREPORTTRIG2_INVERT_B_1  (1<<17)
992  #define OAREPORTTRIG2_INVERT_B_2  (1<<18)
993  #define OAREPORTTRIG2_INVERT_B_3  (1<<19)
994  #define OAREPORTTRIG2_INVERT_C_0  (1<<20)
995  #define OAREPORTTRIG2_INVERT_C_1  (1<<21)
996  #define OAREPORTTRIG2_INVERT_D_0  (1<<22)
997  #define OAREPORTTRIG2_THRESHOLD_ENABLE	    (1<<23)
998  #define OAREPORTTRIG2_REPORT_TRIGGER_ENABLE (1<<31)
999  
1000  #define OAREPORTTRIG3 _MMIO(0x2748)
1001  #define OAREPORTTRIG3_NOA_SELECT_MASK	    0xf
1002  #define OAREPORTTRIG3_NOA_SELECT_8_SHIFT    0
1003  #define OAREPORTTRIG3_NOA_SELECT_9_SHIFT    4
1004  #define OAREPORTTRIG3_NOA_SELECT_10_SHIFT   8
1005  #define OAREPORTTRIG3_NOA_SELECT_11_SHIFT   12
1006  #define OAREPORTTRIG3_NOA_SELECT_12_SHIFT   16
1007  #define OAREPORTTRIG3_NOA_SELECT_13_SHIFT   20
1008  #define OAREPORTTRIG3_NOA_SELECT_14_SHIFT   24
1009  #define OAREPORTTRIG3_NOA_SELECT_15_SHIFT   28
1010  
1011  #define OAREPORTTRIG4 _MMIO(0x274c)
1012  #define OAREPORTTRIG4_NOA_SELECT_MASK	    0xf
1013  #define OAREPORTTRIG4_NOA_SELECT_0_SHIFT    0
1014  #define OAREPORTTRIG4_NOA_SELECT_1_SHIFT    4
1015  #define OAREPORTTRIG4_NOA_SELECT_2_SHIFT    8
1016  #define OAREPORTTRIG4_NOA_SELECT_3_SHIFT    12
1017  #define OAREPORTTRIG4_NOA_SELECT_4_SHIFT    16
1018  #define OAREPORTTRIG4_NOA_SELECT_5_SHIFT    20
1019  #define OAREPORTTRIG4_NOA_SELECT_6_SHIFT    24
1020  #define OAREPORTTRIG4_NOA_SELECT_7_SHIFT    28
1021  
1022  #define OAREPORTTRIG5 _MMIO(0x2750)
1023  #define OAREPORTTRIG5_THRESHOLD_MASK 0xffff
1024  #define OAREPORTTRIG5_EDGE_LEVEL_TRIGER_SELECT_MASK 0xffff0000 /* 0=level */
1025  
1026  #define OAREPORTTRIG6 _MMIO(0x2754)
1027  #define OAREPORTTRIG6_INVERT_A_0  (1<<0)
1028  #define OAREPORTTRIG6_INVERT_A_1  (1<<1)
1029  #define OAREPORTTRIG6_INVERT_A_2  (1<<2)
1030  #define OAREPORTTRIG6_INVERT_A_3  (1<<3)
1031  #define OAREPORTTRIG6_INVERT_A_4  (1<<4)
1032  #define OAREPORTTRIG6_INVERT_A_5  (1<<5)
1033  #define OAREPORTTRIG6_INVERT_A_6  (1<<6)
1034  #define OAREPORTTRIG6_INVERT_A_7  (1<<7)
1035  #define OAREPORTTRIG6_INVERT_A_8  (1<<8)
1036  #define OAREPORTTRIG6_INVERT_A_9  (1<<9)
1037  #define OAREPORTTRIG6_INVERT_A_10 (1<<10)
1038  #define OAREPORTTRIG6_INVERT_A_11 (1<<11)
1039  #define OAREPORTTRIG6_INVERT_A_12 (1<<12)
1040  #define OAREPORTTRIG6_INVERT_A_13 (1<<13)
1041  #define OAREPORTTRIG6_INVERT_A_14 (1<<14)
1042  #define OAREPORTTRIG6_INVERT_A_15 (1<<15)
1043  #define OAREPORTTRIG6_INVERT_B_0  (1<<16)
1044  #define OAREPORTTRIG6_INVERT_B_1  (1<<17)
1045  #define OAREPORTTRIG6_INVERT_B_2  (1<<18)
1046  #define OAREPORTTRIG6_INVERT_B_3  (1<<19)
1047  #define OAREPORTTRIG6_INVERT_C_0  (1<<20)
1048  #define OAREPORTTRIG6_INVERT_C_1  (1<<21)
1049  #define OAREPORTTRIG6_INVERT_D_0  (1<<22)
1050  #define OAREPORTTRIG6_THRESHOLD_ENABLE	    (1<<23)
1051  #define OAREPORTTRIG6_REPORT_TRIGGER_ENABLE (1<<31)
1052  
1053  #define OAREPORTTRIG7 _MMIO(0x2758)
1054  #define OAREPORTTRIG7_NOA_SELECT_MASK	    0xf
1055  #define OAREPORTTRIG7_NOA_SELECT_8_SHIFT    0
1056  #define OAREPORTTRIG7_NOA_SELECT_9_SHIFT    4
1057  #define OAREPORTTRIG7_NOA_SELECT_10_SHIFT   8
1058  #define OAREPORTTRIG7_NOA_SELECT_11_SHIFT   12
1059  #define OAREPORTTRIG7_NOA_SELECT_12_SHIFT   16
1060  #define OAREPORTTRIG7_NOA_SELECT_13_SHIFT   20
1061  #define OAREPORTTRIG7_NOA_SELECT_14_SHIFT   24
1062  #define OAREPORTTRIG7_NOA_SELECT_15_SHIFT   28
1063  
1064  #define OAREPORTTRIG8 _MMIO(0x275c)
1065  #define OAREPORTTRIG8_NOA_SELECT_MASK	    0xf
1066  #define OAREPORTTRIG8_NOA_SELECT_0_SHIFT    0
1067  #define OAREPORTTRIG8_NOA_SELECT_1_SHIFT    4
1068  #define OAREPORTTRIG8_NOA_SELECT_2_SHIFT    8
1069  #define OAREPORTTRIG8_NOA_SELECT_3_SHIFT    12
1070  #define OAREPORTTRIG8_NOA_SELECT_4_SHIFT    16
1071  #define OAREPORTTRIG8_NOA_SELECT_5_SHIFT    20
1072  #define OAREPORTTRIG8_NOA_SELECT_6_SHIFT    24
1073  #define OAREPORTTRIG8_NOA_SELECT_7_SHIFT    28
1074  
1075  /* CECX_0 */
1076  #define OACEC_COMPARE_LESS_OR_EQUAL	6
1077  #define OACEC_COMPARE_NOT_EQUAL		5
1078  #define OACEC_COMPARE_LESS_THAN		4
1079  #define OACEC_COMPARE_GREATER_OR_EQUAL	3
1080  #define OACEC_COMPARE_EQUAL		2
1081  #define OACEC_COMPARE_GREATER_THAN	1
1082  #define OACEC_COMPARE_ANY_EQUAL		0
1083  
1084  #define OACEC_COMPARE_VALUE_MASK    0xffff
1085  #define OACEC_COMPARE_VALUE_SHIFT   3
1086  
1087  #define OACEC_SELECT_NOA	(0<<19)
1088  #define OACEC_SELECT_PREV	(1<<19)
1089  #define OACEC_SELECT_BOOLEAN	(2<<19)
1090  
1091  /* CECX_1 */
1092  #define OACEC_MASK_MASK		    0xffff
1093  #define OACEC_CONSIDERATIONS_MASK   0xffff
1094  #define OACEC_CONSIDERATIONS_SHIFT  16
1095  
1096  #define OACEC0_0 _MMIO(0x2770)
1097  #define OACEC0_1 _MMIO(0x2774)
1098  #define OACEC1_0 _MMIO(0x2778)
1099  #define OACEC1_1 _MMIO(0x277c)
1100  #define OACEC2_0 _MMIO(0x2780)
1101  #define OACEC2_1 _MMIO(0x2784)
1102  #define OACEC3_0 _MMIO(0x2788)
1103  #define OACEC3_1 _MMIO(0x278c)
1104  #define OACEC4_0 _MMIO(0x2790)
1105  #define OACEC4_1 _MMIO(0x2794)
1106  #define OACEC5_0 _MMIO(0x2798)
1107  #define OACEC5_1 _MMIO(0x279c)
1108  #define OACEC6_0 _MMIO(0x27a0)
1109  #define OACEC6_1 _MMIO(0x27a4)
1110  #define OACEC7_0 _MMIO(0x27a8)
1111  #define OACEC7_1 _MMIO(0x27ac)
1112  
1113  /* OA perf counters */
1114  #define OA_PERFCNT1_LO      _MMIO(0x91B8)
1115  #define OA_PERFCNT1_HI      _MMIO(0x91BC)
1116  #define OA_PERFCNT2_LO      _MMIO(0x91C0)
1117  #define OA_PERFCNT2_HI      _MMIO(0x91C4)
1118  
1119  #define OA_PERFMATRIX_LO    _MMIO(0x91C8)
1120  #define OA_PERFMATRIX_HI    _MMIO(0x91CC)
1121  
1122  /* RPM unit config (Gen8+) */
1123  #define RPM_CONFIG0	    _MMIO(0x0D00)
1124  #define RPM_CONFIG1	    _MMIO(0x0D04)
1125  
1126  /* RPC unit config (Gen8+) */
1127  #define RPM_CONFIG	    _MMIO(0x0D08)
1128  
1129  /* NOA (Gen8+) */
1130  #define NOA_CONFIG(i)	    _MMIO(0x0D0C + (i) * 4)
1131  
1132  #define MICRO_BP0_0	    _MMIO(0x9800)
1133  #define MICRO_BP0_2	    _MMIO(0x9804)
1134  #define MICRO_BP0_1	    _MMIO(0x9808)
1135  
1136  #define MICRO_BP1_0	    _MMIO(0x980C)
1137  #define MICRO_BP1_2	    _MMIO(0x9810)
1138  #define MICRO_BP1_1	    _MMIO(0x9814)
1139  
1140  #define MICRO_BP2_0	    _MMIO(0x9818)
1141  #define MICRO_BP2_2	    _MMIO(0x981C)
1142  #define MICRO_BP2_1	    _MMIO(0x9820)
1143  
1144  #define MICRO_BP3_0	    _MMIO(0x9824)
1145  #define MICRO_BP3_2	    _MMIO(0x9828)
1146  #define MICRO_BP3_1	    _MMIO(0x982C)
1147  
1148  #define MICRO_BP_TRIGGER		_MMIO(0x9830)
1149  #define MICRO_BP3_COUNT_STATUS01	_MMIO(0x9834)
1150  #define MICRO_BP3_COUNT_STATUS23	_MMIO(0x9838)
1151  #define MICRO_BP_FIRED_ARMED		_MMIO(0x983C)
1152  
1153  #define GDT_CHICKEN_BITS    _MMIO(0x9840)
1154  #define   GT_NOA_ENABLE	    0x00000080
1155  
1156  #define NOA_DATA	    _MMIO(0x986C)
1157  #define NOA_WRITE	    _MMIO(0x9888)
1158  
1159  #define _GEN7_PIPEA_DE_LOAD_SL	0x70068
1160  #define _GEN7_PIPEB_DE_LOAD_SL	0x71068
1161  #define GEN7_PIPE_DE_LOAD_SL(pipe) _MMIO_PIPE(pipe, _GEN7_PIPEA_DE_LOAD_SL, _GEN7_PIPEB_DE_LOAD_SL)
1162  
1163  /*
1164   * Reset registers
1165   */
1166  #define DEBUG_RESET_I830		_MMIO(0x6070)
1167  #define  DEBUG_RESET_FULL		(1<<7)
1168  #define  DEBUG_RESET_RENDER		(1<<8)
1169  #define  DEBUG_RESET_DISPLAY		(1<<9)
1170  
1171  /*
1172   * IOSF sideband
1173   */
1174  #define VLV_IOSF_DOORBELL_REQ			_MMIO(VLV_DISPLAY_BASE + 0x2100)
1175  #define   IOSF_DEVFN_SHIFT			24
1176  #define   IOSF_OPCODE_SHIFT			16
1177  #define   IOSF_PORT_SHIFT			8
1178  #define   IOSF_BYTE_ENABLES_SHIFT		4
1179  #define   IOSF_BAR_SHIFT			1
1180  #define   IOSF_SB_BUSY				(1<<0)
1181  #define   IOSF_PORT_BUNIT			0x03
1182  #define   IOSF_PORT_PUNIT			0x04
1183  #define   IOSF_PORT_NC				0x11
1184  #define   IOSF_PORT_DPIO			0x12
1185  #define   IOSF_PORT_GPIO_NC			0x13
1186  #define   IOSF_PORT_CCK				0x14
1187  #define   IOSF_PORT_DPIO_2			0x1a
1188  #define   IOSF_PORT_FLISDSI			0x1b
1189  #define   IOSF_PORT_GPIO_SC			0x48
1190  #define   IOSF_PORT_GPIO_SUS			0xa8
1191  #define   IOSF_PORT_CCU				0xa9
1192  #define   CHV_IOSF_PORT_GPIO_N			0x13
1193  #define   CHV_IOSF_PORT_GPIO_SE			0x48
1194  #define   CHV_IOSF_PORT_GPIO_E			0xa8
1195  #define   CHV_IOSF_PORT_GPIO_SW			0xb2
1196  #define VLV_IOSF_DATA				_MMIO(VLV_DISPLAY_BASE + 0x2104)
1197  #define VLV_IOSF_ADDR				_MMIO(VLV_DISPLAY_BASE + 0x2108)
1198  
1199  /* See configdb bunit SB addr map */
1200  #define BUNIT_REG_BISOC				0x11
1201  
1202  #define PUNIT_REG_DSPFREQ			0x36
1203  #define   DSPFREQSTAT_SHIFT_CHV			24
1204  #define   DSPFREQSTAT_MASK_CHV			(0x1f << DSPFREQSTAT_SHIFT_CHV)
1205  #define   DSPFREQGUAR_SHIFT_CHV			8
1206  #define   DSPFREQGUAR_MASK_CHV			(0x1f << DSPFREQGUAR_SHIFT_CHV)
1207  #define   DSPFREQSTAT_SHIFT			30
1208  #define   DSPFREQSTAT_MASK			(0x3 << DSPFREQSTAT_SHIFT)
1209  #define   DSPFREQGUAR_SHIFT			14
1210  #define   DSPFREQGUAR_MASK			(0x3 << DSPFREQGUAR_SHIFT)
1211  #define   DSP_MAXFIFO_PM5_STATUS		(1 << 22) /* chv */
1212  #define   DSP_AUTO_CDCLK_GATE_DISABLE		(1 << 7) /* chv */
1213  #define   DSP_MAXFIFO_PM5_ENABLE		(1 << 6) /* chv */
1214  #define   _DP_SSC(val, pipe)			((val) << (2 * (pipe)))
1215  #define   DP_SSC_MASK(pipe)			_DP_SSC(0x3, (pipe))
1216  #define   DP_SSC_PWR_ON(pipe)			_DP_SSC(0x0, (pipe))
1217  #define   DP_SSC_CLK_GATE(pipe)			_DP_SSC(0x1, (pipe))
1218  #define   DP_SSC_RESET(pipe)			_DP_SSC(0x2, (pipe))
1219  #define   DP_SSC_PWR_GATE(pipe)			_DP_SSC(0x3, (pipe))
1220  #define   _DP_SSS(val, pipe)			((val) << (2 * (pipe) + 16))
1221  #define   DP_SSS_MASK(pipe)			_DP_SSS(0x3, (pipe))
1222  #define   DP_SSS_PWR_ON(pipe)			_DP_SSS(0x0, (pipe))
1223  #define   DP_SSS_CLK_GATE(pipe)			_DP_SSS(0x1, (pipe))
1224  #define   DP_SSS_RESET(pipe)			_DP_SSS(0x2, (pipe))
1225  #define   DP_SSS_PWR_GATE(pipe)			_DP_SSS(0x3, (pipe))
1226  
1227  /*
1228   * i915_power_well_id:
1229   *
1230   * Platform specific IDs used to look up power wells and - except for custom
1231   * power wells - to define request/status register flag bit positions. As such
1232   * the set of IDs on a given platform must be unique and except for custom
1233   * power wells their value must stay fixed.
1234   */
1235  enum i915_power_well_id {
1236  	/*
1237  	 * I830
1238  	 *  - custom power well
1239  	 */
1240  	I830_DISP_PW_PIPES = 0,
1241  
1242  	/*
1243  	 * VLV/CHV
1244  	 *  - PUNIT_REG_PWRGT_CTRL (bit: id*2),
1245  	 *    PUNIT_REG_PWRGT_STATUS (bit: id*2) (PUNIT HAS v0.8)
1246  	 */
1247  	PUNIT_POWER_WELL_RENDER			= 0,
1248  	PUNIT_POWER_WELL_MEDIA			= 1,
1249  	PUNIT_POWER_WELL_DISP2D			= 3,
1250  	PUNIT_POWER_WELL_DPIO_CMN_BC		= 5,
1251  	PUNIT_POWER_WELL_DPIO_TX_B_LANES_01	= 6,
1252  	PUNIT_POWER_WELL_DPIO_TX_B_LANES_23	= 7,
1253  	PUNIT_POWER_WELL_DPIO_TX_C_LANES_01	= 8,
1254  	PUNIT_POWER_WELL_DPIO_TX_C_LANES_23	= 9,
1255  	PUNIT_POWER_WELL_DPIO_RX0		= 10,
1256  	PUNIT_POWER_WELL_DPIO_RX1		= 11,
1257  	PUNIT_POWER_WELL_DPIO_CMN_D		= 12,
1258  	/*  - custom power well */
1259  	CHV_DISP_PW_PIPE_A,			/* 13 */
1260  
1261  	/*
1262  	 * HSW/BDW
1263  	 *  - HSW_PWR_WELL_CTL_DRIVER(0) (status bit: id*2, req bit: id*2+1)
1264  	 */
1265  	HSW_DISP_PW_GLOBAL = 15,
1266  
1267  	/*
1268  	 * GEN9+
1269  	 *  - HSW_PWR_WELL_CTL_DRIVER(0) (status bit: id*2, req bit: id*2+1)
1270  	 */
1271  	SKL_DISP_PW_MISC_IO = 0,
1272  	SKL_DISP_PW_DDI_A_E,
1273  	GLK_DISP_PW_DDI_A = SKL_DISP_PW_DDI_A_E,
1274  	CNL_DISP_PW_DDI_A = SKL_DISP_PW_DDI_A_E,
1275  	SKL_DISP_PW_DDI_B,
1276  	SKL_DISP_PW_DDI_C,
1277  	SKL_DISP_PW_DDI_D,
1278  
1279  	GLK_DISP_PW_AUX_A = 8,
1280  	GLK_DISP_PW_AUX_B,
1281  	GLK_DISP_PW_AUX_C,
1282  	CNL_DISP_PW_AUX_A = GLK_DISP_PW_AUX_A,
1283  	CNL_DISP_PW_AUX_B = GLK_DISP_PW_AUX_B,
1284  	CNL_DISP_PW_AUX_C = GLK_DISP_PW_AUX_C,
1285  	CNL_DISP_PW_AUX_D,
1286  
1287  	SKL_DISP_PW_1 = 14,
1288  	SKL_DISP_PW_2,
1289  
1290  	/* - custom power wells */
1291  	SKL_DISP_PW_DC_OFF,
1292  	BXT_DPIO_CMN_A,
1293  	BXT_DPIO_CMN_BC,
1294  	GLK_DPIO_CMN_C,			/* 19 */
1295  
1296  	/*
1297  	 * Multiple platforms.
1298  	 * Must start following the highest ID of any platform.
1299  	 * - custom power wells
1300  	 */
1301  	I915_DISP_PW_ALWAYS_ON = 20,
1302  };
1303  
1304  #define PUNIT_REG_PWRGT_CTRL			0x60
1305  #define PUNIT_REG_PWRGT_STATUS			0x61
1306  #define   PUNIT_PWRGT_MASK(power_well)		(3 << ((power_well) * 2))
1307  #define   PUNIT_PWRGT_PWR_ON(power_well)	(0 << ((power_well) * 2))
1308  #define   PUNIT_PWRGT_CLK_GATE(power_well)	(1 << ((power_well) * 2))
1309  #define   PUNIT_PWRGT_RESET(power_well)		(2 << ((power_well) * 2))
1310  #define   PUNIT_PWRGT_PWR_GATE(power_well)	(3 << ((power_well) * 2))
1311  
1312  #define PUNIT_REG_GPU_LFM			0xd3
1313  #define PUNIT_REG_GPU_FREQ_REQ			0xd4
1314  #define PUNIT_REG_GPU_FREQ_STS			0xd8
1315  #define   GPLLENABLE				(1<<4)
1316  #define   GENFREQSTATUS				(1<<0)
1317  #define PUNIT_REG_MEDIA_TURBO_FREQ_REQ		0xdc
1318  #define PUNIT_REG_CZ_TIMESTAMP			0xce
1319  
1320  #define PUNIT_FUSE_BUS2				0xf6 /* bits 47:40 */
1321  #define PUNIT_FUSE_BUS1				0xf5 /* bits 55:48 */
1322  
1323  #define FB_GFX_FMAX_AT_VMAX_FUSE		0x136
1324  #define FB_GFX_FREQ_FUSE_MASK			0xff
1325  #define FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT	24
1326  #define FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT	16
1327  #define FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT	8
1328  
1329  #define FB_GFX_FMIN_AT_VMIN_FUSE		0x137
1330  #define FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT		8
1331  
1332  #define PUNIT_REG_DDR_SETUP2			0x139
1333  #define   FORCE_DDR_FREQ_REQ_ACK		(1 << 8)
1334  #define   FORCE_DDR_LOW_FREQ			(1 << 1)
1335  #define   FORCE_DDR_HIGH_FREQ			(1 << 0)
1336  
1337  #define PUNIT_GPU_STATUS_REG			0xdb
1338  #define PUNIT_GPU_STATUS_MAX_FREQ_SHIFT	16
1339  #define PUNIT_GPU_STATUS_MAX_FREQ_MASK		0xff
1340  #define PUNIT_GPU_STATIS_GFX_MIN_FREQ_SHIFT	8
1341  #define PUNIT_GPU_STATUS_GFX_MIN_FREQ_MASK	0xff
1342  
1343  #define PUNIT_GPU_DUTYCYCLE_REG		0xdf
1344  #define PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT	8
1345  #define PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK	0xff
1346  
1347  #define IOSF_NC_FB_GFX_FREQ_FUSE		0x1c
1348  #define   FB_GFX_MAX_FREQ_FUSE_SHIFT		3
1349  #define   FB_GFX_MAX_FREQ_FUSE_MASK		0x000007f8
1350  #define   FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT	11
1351  #define   FB_GFX_FGUARANTEED_FREQ_FUSE_MASK	0x0007f800
1352  #define IOSF_NC_FB_GFX_FMAX_FUSE_HI		0x34
1353  #define   FB_FMAX_VMIN_FREQ_HI_MASK		0x00000007
1354  #define IOSF_NC_FB_GFX_FMAX_FUSE_LO		0x30
1355  #define   FB_FMAX_VMIN_FREQ_LO_SHIFT		27
1356  #define   FB_FMAX_VMIN_FREQ_LO_MASK		0xf8000000
1357  
1358  #define VLV_TURBO_SOC_OVERRIDE	0x04
1359  #define 	VLV_OVERRIDE_EN	1
1360  #define 	VLV_SOC_TDP_EN	(1 << 1)
1361  #define 	VLV_BIAS_CPU_125_SOC_875 (6 << 2)
1362  #define 	CHV_BIAS_CPU_50_SOC_50 (3 << 2)
1363  
1364  /* vlv2 north clock has */
1365  #define CCK_FUSE_REG				0x8
1366  #define  CCK_FUSE_HPLL_FREQ_MASK		0x3
1367  #define CCK_REG_DSI_PLL_FUSE			0x44
1368  #define CCK_REG_DSI_PLL_CONTROL			0x48
1369  #define  DSI_PLL_VCO_EN				(1 << 31)
1370  #define  DSI_PLL_LDO_GATE			(1 << 30)
1371  #define  DSI_PLL_P1_POST_DIV_SHIFT		17
1372  #define  DSI_PLL_P1_POST_DIV_MASK		(0x1ff << 17)
1373  #define  DSI_PLL_P2_MUX_DSI0_DIV2		(1 << 13)
1374  #define  DSI_PLL_P3_MUX_DSI1_DIV2		(1 << 12)
1375  #define  DSI_PLL_MUX_MASK			(3 << 9)
1376  #define  DSI_PLL_MUX_DSI0_DSIPLL		(0 << 10)
1377  #define  DSI_PLL_MUX_DSI0_CCK			(1 << 10)
1378  #define  DSI_PLL_MUX_DSI1_DSIPLL		(0 << 9)
1379  #define  DSI_PLL_MUX_DSI1_CCK			(1 << 9)
1380  #define  DSI_PLL_CLK_GATE_MASK			(0xf << 5)
1381  #define  DSI_PLL_CLK_GATE_DSI0_DSIPLL		(1 << 8)
1382  #define  DSI_PLL_CLK_GATE_DSI1_DSIPLL		(1 << 7)
1383  #define  DSI_PLL_CLK_GATE_DSI0_CCK		(1 << 6)
1384  #define  DSI_PLL_CLK_GATE_DSI1_CCK		(1 << 5)
1385  #define  DSI_PLL_LOCK				(1 << 0)
1386  #define CCK_REG_DSI_PLL_DIVIDER			0x4c
1387  #define  DSI_PLL_LFSR				(1 << 31)
1388  #define  DSI_PLL_FRACTION_EN			(1 << 30)
1389  #define  DSI_PLL_FRAC_COUNTER_SHIFT		27
1390  #define  DSI_PLL_FRAC_COUNTER_MASK		(7 << 27)
1391  #define  DSI_PLL_USYNC_CNT_SHIFT		18
1392  #define  DSI_PLL_USYNC_CNT_MASK			(0x1ff << 18)
1393  #define  DSI_PLL_N1_DIV_SHIFT			16
1394  #define  DSI_PLL_N1_DIV_MASK			(3 << 16)
1395  #define  DSI_PLL_M1_DIV_SHIFT			0
1396  #define  DSI_PLL_M1_DIV_MASK			(0x1ff << 0)
1397  #define CCK_CZ_CLOCK_CONTROL			0x62
1398  #define CCK_GPLL_CLOCK_CONTROL			0x67
1399  #define CCK_DISPLAY_CLOCK_CONTROL		0x6b
1400  #define CCK_DISPLAY_REF_CLOCK_CONTROL		0x6c
1401  #define  CCK_TRUNK_FORCE_ON			(1 << 17)
1402  #define  CCK_TRUNK_FORCE_OFF			(1 << 16)
1403  #define  CCK_FREQUENCY_STATUS			(0x1f << 8)
1404  #define  CCK_FREQUENCY_STATUS_SHIFT		8
1405  #define  CCK_FREQUENCY_VALUES			(0x1f << 0)
1406  
1407  /* DPIO registers */
1408  #define DPIO_DEVFN			0
1409  
1410  #define DPIO_CTL			_MMIO(VLV_DISPLAY_BASE + 0x2110)
1411  #define  DPIO_MODSEL1			(1<<3) /* if ref clk b == 27 */
1412  #define  DPIO_MODSEL0			(1<<2) /* if ref clk a == 27 */
1413  #define  DPIO_SFR_BYPASS		(1<<1)
1414  #define  DPIO_CMNRST			(1<<0)
1415  
1416  #define DPIO_PHY(pipe)			((pipe) >> 1)
1417  #define DPIO_PHY_IOSF_PORT(phy)		(dev_priv->dpio_phy_iosf_port[phy])
1418  
1419  /*
1420   * Per pipe/PLL DPIO regs
1421   */
1422  #define _VLV_PLL_DW3_CH0		0x800c
1423  #define   DPIO_POST_DIV_SHIFT		(28) /* 3 bits */
1424  #define   DPIO_POST_DIV_DAC		0
1425  #define   DPIO_POST_DIV_HDMIDP		1 /* DAC 225-400M rate */
1426  #define   DPIO_POST_DIV_LVDS1		2
1427  #define   DPIO_POST_DIV_LVDS2		3
1428  #define   DPIO_K_SHIFT			(24) /* 4 bits */
1429  #define   DPIO_P1_SHIFT			(21) /* 3 bits */
1430  #define   DPIO_P2_SHIFT			(16) /* 5 bits */
1431  #define   DPIO_N_SHIFT			(12) /* 4 bits */
1432  #define   DPIO_ENABLE_CALIBRATION	(1<<11)
1433  #define   DPIO_M1DIV_SHIFT		(8) /* 3 bits */
1434  #define   DPIO_M2DIV_MASK		0xff
1435  #define _VLV_PLL_DW3_CH1		0x802c
1436  #define VLV_PLL_DW3(ch) _PIPE(ch, _VLV_PLL_DW3_CH0, _VLV_PLL_DW3_CH1)
1437  
1438  #define _VLV_PLL_DW5_CH0		0x8014
1439  #define   DPIO_REFSEL_OVERRIDE		27
1440  #define   DPIO_PLL_MODESEL_SHIFT	24 /* 3 bits */
1441  #define   DPIO_BIAS_CURRENT_CTL_SHIFT	21 /* 3 bits, always 0x7 */
1442  #define   DPIO_PLL_REFCLK_SEL_SHIFT	16 /* 2 bits */
1443  #define   DPIO_PLL_REFCLK_SEL_MASK	3
1444  #define   DPIO_DRIVER_CTL_SHIFT		12 /* always set to 0x8 */
1445  #define   DPIO_CLK_BIAS_CTL_SHIFT	8 /* always set to 0x5 */
1446  #define _VLV_PLL_DW5_CH1		0x8034
1447  #define VLV_PLL_DW5(ch) _PIPE(ch, _VLV_PLL_DW5_CH0, _VLV_PLL_DW5_CH1)
1448  
1449  #define _VLV_PLL_DW7_CH0		0x801c
1450  #define _VLV_PLL_DW7_CH1		0x803c
1451  #define VLV_PLL_DW7(ch) _PIPE(ch, _VLV_PLL_DW7_CH0, _VLV_PLL_DW7_CH1)
1452  
1453  #define _VLV_PLL_DW8_CH0		0x8040
1454  #define _VLV_PLL_DW8_CH1		0x8060
1455  #define VLV_PLL_DW8(ch) _PIPE(ch, _VLV_PLL_DW8_CH0, _VLV_PLL_DW8_CH1)
1456  
1457  #define VLV_PLL_DW9_BCAST		0xc044
1458  #define _VLV_PLL_DW9_CH0		0x8044
1459  #define _VLV_PLL_DW9_CH1		0x8064
1460  #define VLV_PLL_DW9(ch) _PIPE(ch, _VLV_PLL_DW9_CH0, _VLV_PLL_DW9_CH1)
1461  
1462  #define _VLV_PLL_DW10_CH0		0x8048
1463  #define _VLV_PLL_DW10_CH1		0x8068
1464  #define VLV_PLL_DW10(ch) _PIPE(ch, _VLV_PLL_DW10_CH0, _VLV_PLL_DW10_CH1)
1465  
1466  #define _VLV_PLL_DW11_CH0		0x804c
1467  #define _VLV_PLL_DW11_CH1		0x806c
1468  #define VLV_PLL_DW11(ch) _PIPE(ch, _VLV_PLL_DW11_CH0, _VLV_PLL_DW11_CH1)
1469  
1470  /* Spec for ref block start counts at DW10 */
1471  #define VLV_REF_DW13			0x80ac
1472  
1473  #define VLV_CMN_DW0			0x8100
1474  
1475  /*
1476   * Per DDI channel DPIO regs
1477   */
1478  
1479  #define _VLV_PCS_DW0_CH0		0x8200
1480  #define _VLV_PCS_DW0_CH1		0x8400
1481  #define   DPIO_PCS_TX_LANE2_RESET	(1<<16)
1482  #define   DPIO_PCS_TX_LANE1_RESET	(1<<7)
1483  #define   DPIO_LEFT_TXFIFO_RST_MASTER2	(1<<4)
1484  #define   DPIO_RIGHT_TXFIFO_RST_MASTER2	(1<<3)
1485  #define VLV_PCS_DW0(ch) _PORT(ch, _VLV_PCS_DW0_CH0, _VLV_PCS_DW0_CH1)
1486  
1487  #define _VLV_PCS01_DW0_CH0		0x200
1488  #define _VLV_PCS23_DW0_CH0		0x400
1489  #define _VLV_PCS01_DW0_CH1		0x2600
1490  #define _VLV_PCS23_DW0_CH1		0x2800
1491  #define VLV_PCS01_DW0(ch) _PORT(ch, _VLV_PCS01_DW0_CH0, _VLV_PCS01_DW0_CH1)
1492  #define VLV_PCS23_DW0(ch) _PORT(ch, _VLV_PCS23_DW0_CH0, _VLV_PCS23_DW0_CH1)
1493  
1494  #define _VLV_PCS_DW1_CH0		0x8204
1495  #define _VLV_PCS_DW1_CH1		0x8404
1496  #define   CHV_PCS_REQ_SOFTRESET_EN	(1<<23)
1497  #define   DPIO_PCS_CLK_CRI_RXEB_EIOS_EN	(1<<22)
1498  #define   DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN (1<<21)
1499  #define   DPIO_PCS_CLK_DATAWIDTH_SHIFT	(6)
1500  #define   DPIO_PCS_CLK_SOFT_RESET	(1<<5)
1501  #define VLV_PCS_DW1(ch) _PORT(ch, _VLV_PCS_DW1_CH0, _VLV_PCS_DW1_CH1)
1502  
1503  #define _VLV_PCS01_DW1_CH0		0x204
1504  #define _VLV_PCS23_DW1_CH0		0x404
1505  #define _VLV_PCS01_DW1_CH1		0x2604
1506  #define _VLV_PCS23_DW1_CH1		0x2804
1507  #define VLV_PCS01_DW1(ch) _PORT(ch, _VLV_PCS01_DW1_CH0, _VLV_PCS01_DW1_CH1)
1508  #define VLV_PCS23_DW1(ch) _PORT(ch, _VLV_PCS23_DW1_CH0, _VLV_PCS23_DW1_CH1)
1509  
1510  #define _VLV_PCS_DW8_CH0		0x8220
1511  #define _VLV_PCS_DW8_CH1		0x8420
1512  #define   CHV_PCS_USEDCLKCHANNEL_OVRRIDE	(1 << 20)
1513  #define   CHV_PCS_USEDCLKCHANNEL		(1 << 21)
1514  #define VLV_PCS_DW8(ch) _PORT(ch, _VLV_PCS_DW8_CH0, _VLV_PCS_DW8_CH1)
1515  
1516  #define _VLV_PCS01_DW8_CH0		0x0220
1517  #define _VLV_PCS23_DW8_CH0		0x0420
1518  #define _VLV_PCS01_DW8_CH1		0x2620
1519  #define _VLV_PCS23_DW8_CH1		0x2820
1520  #define VLV_PCS01_DW8(port) _PORT(port, _VLV_PCS01_DW8_CH0, _VLV_PCS01_DW8_CH1)
1521  #define VLV_PCS23_DW8(port) _PORT(port, _VLV_PCS23_DW8_CH0, _VLV_PCS23_DW8_CH1)
1522  
1523  #define _VLV_PCS_DW9_CH0		0x8224
1524  #define _VLV_PCS_DW9_CH1		0x8424
1525  #define   DPIO_PCS_TX2MARGIN_MASK	(0x7<<13)
1526  #define   DPIO_PCS_TX2MARGIN_000	(0<<13)
1527  #define   DPIO_PCS_TX2MARGIN_101	(1<<13)
1528  #define   DPIO_PCS_TX1MARGIN_MASK	(0x7<<10)
1529  #define   DPIO_PCS_TX1MARGIN_000	(0<<10)
1530  #define   DPIO_PCS_TX1MARGIN_101	(1<<10)
1531  #define	VLV_PCS_DW9(ch) _PORT(ch, _VLV_PCS_DW9_CH0, _VLV_PCS_DW9_CH1)
1532  
1533  #define _VLV_PCS01_DW9_CH0		0x224
1534  #define _VLV_PCS23_DW9_CH0		0x424
1535  #define _VLV_PCS01_DW9_CH1		0x2624
1536  #define _VLV_PCS23_DW9_CH1		0x2824
1537  #define VLV_PCS01_DW9(ch) _PORT(ch, _VLV_PCS01_DW9_CH0, _VLV_PCS01_DW9_CH1)
1538  #define VLV_PCS23_DW9(ch) _PORT(ch, _VLV_PCS23_DW9_CH0, _VLV_PCS23_DW9_CH1)
1539  
1540  #define _CHV_PCS_DW10_CH0		0x8228
1541  #define _CHV_PCS_DW10_CH1		0x8428
1542  #define   DPIO_PCS_SWING_CALC_TX0_TX2	(1<<30)
1543  #define   DPIO_PCS_SWING_CALC_TX1_TX3	(1<<31)
1544  #define   DPIO_PCS_TX2DEEMP_MASK	(0xf<<24)
1545  #define   DPIO_PCS_TX2DEEMP_9P5		(0<<24)
1546  #define   DPIO_PCS_TX2DEEMP_6P0		(2<<24)
1547  #define   DPIO_PCS_TX1DEEMP_MASK	(0xf<<16)
1548  #define   DPIO_PCS_TX1DEEMP_9P5		(0<<16)
1549  #define   DPIO_PCS_TX1DEEMP_6P0		(2<<16)
1550  #define CHV_PCS_DW10(ch) _PORT(ch, _CHV_PCS_DW10_CH0, _CHV_PCS_DW10_CH1)
1551  
1552  #define _VLV_PCS01_DW10_CH0		0x0228
1553  #define _VLV_PCS23_DW10_CH0		0x0428
1554  #define _VLV_PCS01_DW10_CH1		0x2628
1555  #define _VLV_PCS23_DW10_CH1		0x2828
1556  #define VLV_PCS01_DW10(port) _PORT(port, _VLV_PCS01_DW10_CH0, _VLV_PCS01_DW10_CH1)
1557  #define VLV_PCS23_DW10(port) _PORT(port, _VLV_PCS23_DW10_CH0, _VLV_PCS23_DW10_CH1)
1558  
1559  #define _VLV_PCS_DW11_CH0		0x822c
1560  #define _VLV_PCS_DW11_CH1		0x842c
1561  #define   DPIO_TX2_STAGGER_MASK(x)	((x)<<24)
1562  #define   DPIO_LANEDESKEW_STRAP_OVRD	(1<<3)
1563  #define   DPIO_LEFT_TXFIFO_RST_MASTER	(1<<1)
1564  #define   DPIO_RIGHT_TXFIFO_RST_MASTER	(1<<0)
1565  #define VLV_PCS_DW11(ch) _PORT(ch, _VLV_PCS_DW11_CH0, _VLV_PCS_DW11_CH1)
1566  
1567  #define _VLV_PCS01_DW11_CH0		0x022c
1568  #define _VLV_PCS23_DW11_CH0		0x042c
1569  #define _VLV_PCS01_DW11_CH1		0x262c
1570  #define _VLV_PCS23_DW11_CH1		0x282c
1571  #define VLV_PCS01_DW11(ch) _PORT(ch, _VLV_PCS01_DW11_CH0, _VLV_PCS01_DW11_CH1)
1572  #define VLV_PCS23_DW11(ch) _PORT(ch, _VLV_PCS23_DW11_CH0, _VLV_PCS23_DW11_CH1)
1573  
1574  #define _VLV_PCS01_DW12_CH0		0x0230
1575  #define _VLV_PCS23_DW12_CH0		0x0430
1576  #define _VLV_PCS01_DW12_CH1		0x2630
1577  #define _VLV_PCS23_DW12_CH1		0x2830
1578  #define VLV_PCS01_DW12(ch) _PORT(ch, _VLV_PCS01_DW12_CH0, _VLV_PCS01_DW12_CH1)
1579  #define VLV_PCS23_DW12(ch) _PORT(ch, _VLV_PCS23_DW12_CH0, _VLV_PCS23_DW12_CH1)
1580  
1581  #define _VLV_PCS_DW12_CH0		0x8230
1582  #define _VLV_PCS_DW12_CH1		0x8430
1583  #define   DPIO_TX2_STAGGER_MULT(x)	((x)<<20)
1584  #define   DPIO_TX1_STAGGER_MULT(x)	((x)<<16)
1585  #define   DPIO_TX1_STAGGER_MASK(x)	((x)<<8)
1586  #define   DPIO_LANESTAGGER_STRAP_OVRD	(1<<6)
1587  #define   DPIO_LANESTAGGER_STRAP(x)	((x)<<0)
1588  #define VLV_PCS_DW12(ch) _PORT(ch, _VLV_PCS_DW12_CH0, _VLV_PCS_DW12_CH1)
1589  
1590  #define _VLV_PCS_DW14_CH0		0x8238
1591  #define _VLV_PCS_DW14_CH1		0x8438
1592  #define	VLV_PCS_DW14(ch) _PORT(ch, _VLV_PCS_DW14_CH0, _VLV_PCS_DW14_CH1)
1593  
1594  #define _VLV_PCS_DW23_CH0		0x825c
1595  #define _VLV_PCS_DW23_CH1		0x845c
1596  #define VLV_PCS_DW23(ch) _PORT(ch, _VLV_PCS_DW23_CH0, _VLV_PCS_DW23_CH1)
1597  
1598  #define _VLV_TX_DW2_CH0			0x8288
1599  #define _VLV_TX_DW2_CH1			0x8488
1600  #define   DPIO_SWING_MARGIN000_SHIFT	16
1601  #define   DPIO_SWING_MARGIN000_MASK	(0xff << DPIO_SWING_MARGIN000_SHIFT)
1602  #define   DPIO_UNIQ_TRANS_SCALE_SHIFT	8
1603  #define VLV_TX_DW2(ch) _PORT(ch, _VLV_TX_DW2_CH0, _VLV_TX_DW2_CH1)
1604  
1605  #define _VLV_TX_DW3_CH0			0x828c
1606  #define _VLV_TX_DW3_CH1			0x848c
1607  /* The following bit for CHV phy */
1608  #define   DPIO_TX_UNIQ_TRANS_SCALE_EN	(1<<27)
1609  #define   DPIO_SWING_MARGIN101_SHIFT	16
1610  #define   DPIO_SWING_MARGIN101_MASK	(0xff << DPIO_SWING_MARGIN101_SHIFT)
1611  #define VLV_TX_DW3(ch) _PORT(ch, _VLV_TX_DW3_CH0, _VLV_TX_DW3_CH1)
1612  
1613  #define _VLV_TX_DW4_CH0			0x8290
1614  #define _VLV_TX_DW4_CH1			0x8490
1615  #define   DPIO_SWING_DEEMPH9P5_SHIFT	24
1616  #define   DPIO_SWING_DEEMPH9P5_MASK	(0xff << DPIO_SWING_DEEMPH9P5_SHIFT)
1617  #define   DPIO_SWING_DEEMPH6P0_SHIFT	16
1618  #define   DPIO_SWING_DEEMPH6P0_MASK	(0xff << DPIO_SWING_DEEMPH6P0_SHIFT)
1619  #define VLV_TX_DW4(ch) _PORT(ch, _VLV_TX_DW4_CH0, _VLV_TX_DW4_CH1)
1620  
1621  #define _VLV_TX3_DW4_CH0		0x690
1622  #define _VLV_TX3_DW4_CH1		0x2a90
1623  #define VLV_TX3_DW4(ch) _PORT(ch, _VLV_TX3_DW4_CH0, _VLV_TX3_DW4_CH1)
1624  
1625  #define _VLV_TX_DW5_CH0			0x8294
1626  #define _VLV_TX_DW5_CH1			0x8494
1627  #define   DPIO_TX_OCALINIT_EN		(1<<31)
1628  #define VLV_TX_DW5(ch) _PORT(ch, _VLV_TX_DW5_CH0, _VLV_TX_DW5_CH1)
1629  
1630  #define _VLV_TX_DW11_CH0		0x82ac
1631  #define _VLV_TX_DW11_CH1		0x84ac
1632  #define VLV_TX_DW11(ch) _PORT(ch, _VLV_TX_DW11_CH0, _VLV_TX_DW11_CH1)
1633  
1634  #define _VLV_TX_DW14_CH0		0x82b8
1635  #define _VLV_TX_DW14_CH1		0x84b8
1636  #define VLV_TX_DW14(ch) _PORT(ch, _VLV_TX_DW14_CH0, _VLV_TX_DW14_CH1)
1637  
1638  /* CHV dpPhy registers */
1639  #define _CHV_PLL_DW0_CH0		0x8000
1640  #define _CHV_PLL_DW0_CH1		0x8180
1641  #define CHV_PLL_DW0(ch) _PIPE(ch, _CHV_PLL_DW0_CH0, _CHV_PLL_DW0_CH1)
1642  
1643  #define _CHV_PLL_DW1_CH0		0x8004
1644  #define _CHV_PLL_DW1_CH1		0x8184
1645  #define   DPIO_CHV_N_DIV_SHIFT		8
1646  #define   DPIO_CHV_M1_DIV_BY_2		(0 << 0)
1647  #define CHV_PLL_DW1(ch) _PIPE(ch, _CHV_PLL_DW1_CH0, _CHV_PLL_DW1_CH1)
1648  
1649  #define _CHV_PLL_DW2_CH0		0x8008
1650  #define _CHV_PLL_DW2_CH1		0x8188
1651  #define CHV_PLL_DW2(ch) _PIPE(ch, _CHV_PLL_DW2_CH0, _CHV_PLL_DW2_CH1)
1652  
1653  #define _CHV_PLL_DW3_CH0		0x800c
1654  #define _CHV_PLL_DW3_CH1		0x818c
1655  #define  DPIO_CHV_FRAC_DIV_EN		(1 << 16)
1656  #define  DPIO_CHV_FIRST_MOD		(0 << 8)
1657  #define  DPIO_CHV_SECOND_MOD		(1 << 8)
1658  #define  DPIO_CHV_FEEDFWD_GAIN_SHIFT	0
1659  #define  DPIO_CHV_FEEDFWD_GAIN_MASK		(0xF << 0)
1660  #define CHV_PLL_DW3(ch) _PIPE(ch, _CHV_PLL_DW3_CH0, _CHV_PLL_DW3_CH1)
1661  
1662  #define _CHV_PLL_DW6_CH0		0x8018
1663  #define _CHV_PLL_DW6_CH1		0x8198
1664  #define   DPIO_CHV_GAIN_CTRL_SHIFT	16
1665  #define	  DPIO_CHV_INT_COEFF_SHIFT	8
1666  #define   DPIO_CHV_PROP_COEFF_SHIFT	0
1667  #define CHV_PLL_DW6(ch) _PIPE(ch, _CHV_PLL_DW6_CH0, _CHV_PLL_DW6_CH1)
1668  
1669  #define _CHV_PLL_DW8_CH0		0x8020
1670  #define _CHV_PLL_DW8_CH1		0x81A0
1671  #define   DPIO_CHV_TDC_TARGET_CNT_SHIFT 0
1672  #define   DPIO_CHV_TDC_TARGET_CNT_MASK  (0x3FF << 0)
1673  #define CHV_PLL_DW8(ch) _PIPE(ch, _CHV_PLL_DW8_CH0, _CHV_PLL_DW8_CH1)
1674  
1675  #define _CHV_PLL_DW9_CH0		0x8024
1676  #define _CHV_PLL_DW9_CH1		0x81A4
1677  #define  DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT		1 /* 3 bits */
1678  #define  DPIO_CHV_INT_LOCK_THRESHOLD_MASK		(7 << 1)
1679  #define  DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE	1 /* 1: coarse & 0 : fine  */
1680  #define CHV_PLL_DW9(ch) _PIPE(ch, _CHV_PLL_DW9_CH0, _CHV_PLL_DW9_CH1)
1681  
1682  #define _CHV_CMN_DW0_CH0               0x8100
1683  #define   DPIO_ALLDL_POWERDOWN_SHIFT_CH0	19
1684  #define   DPIO_ANYDL_POWERDOWN_SHIFT_CH0	18
1685  #define   DPIO_ALLDL_POWERDOWN			(1 << 1)
1686  #define   DPIO_ANYDL_POWERDOWN			(1 << 0)
1687  
1688  #define _CHV_CMN_DW5_CH0               0x8114
1689  #define   CHV_BUFRIGHTENA1_DISABLE	(0 << 20)
1690  #define   CHV_BUFRIGHTENA1_NORMAL	(1 << 20)
1691  #define   CHV_BUFRIGHTENA1_FORCE	(3 << 20)
1692  #define   CHV_BUFRIGHTENA1_MASK		(3 << 20)
1693  #define   CHV_BUFLEFTENA1_DISABLE	(0 << 22)
1694  #define   CHV_BUFLEFTENA1_NORMAL	(1 << 22)
1695  #define   CHV_BUFLEFTENA1_FORCE		(3 << 22)
1696  #define   CHV_BUFLEFTENA1_MASK		(3 << 22)
1697  
1698  #define _CHV_CMN_DW13_CH0		0x8134
1699  #define _CHV_CMN_DW0_CH1		0x8080
1700  #define   DPIO_CHV_S1_DIV_SHIFT		21
1701  #define   DPIO_CHV_P1_DIV_SHIFT		13 /* 3 bits */
1702  #define   DPIO_CHV_P2_DIV_SHIFT		8  /* 5 bits */
1703  #define   DPIO_CHV_K_DIV_SHIFT		4
1704  #define   DPIO_PLL_FREQLOCK		(1 << 1)
1705  #define   DPIO_PLL_LOCK			(1 << 0)
1706  #define CHV_CMN_DW13(ch) _PIPE(ch, _CHV_CMN_DW13_CH0, _CHV_CMN_DW0_CH1)
1707  
1708  #define _CHV_CMN_DW14_CH0		0x8138
1709  #define _CHV_CMN_DW1_CH1		0x8084
1710  #define   DPIO_AFC_RECAL		(1 << 14)
1711  #define   DPIO_DCLKP_EN			(1 << 13)
1712  #define   CHV_BUFLEFTENA2_DISABLE	(0 << 17) /* CL2 DW1 only */
1713  #define   CHV_BUFLEFTENA2_NORMAL	(1 << 17) /* CL2 DW1 only */
1714  #define   CHV_BUFLEFTENA2_FORCE		(3 << 17) /* CL2 DW1 only */
1715  #define   CHV_BUFLEFTENA2_MASK		(3 << 17) /* CL2 DW1 only */
1716  #define   CHV_BUFRIGHTENA2_DISABLE	(0 << 19) /* CL2 DW1 only */
1717  #define   CHV_BUFRIGHTENA2_NORMAL	(1 << 19) /* CL2 DW1 only */
1718  #define   CHV_BUFRIGHTENA2_FORCE	(3 << 19) /* CL2 DW1 only */
1719  #define   CHV_BUFRIGHTENA2_MASK		(3 << 19) /* CL2 DW1 only */
1720  #define CHV_CMN_DW14(ch) _PIPE(ch, _CHV_CMN_DW14_CH0, _CHV_CMN_DW1_CH1)
1721  
1722  #define _CHV_CMN_DW19_CH0		0x814c
1723  #define _CHV_CMN_DW6_CH1		0x8098
1724  #define   DPIO_ALLDL_POWERDOWN_SHIFT_CH1	30 /* CL2 DW6 only */
1725  #define   DPIO_ANYDL_POWERDOWN_SHIFT_CH1	29 /* CL2 DW6 only */
1726  #define   DPIO_DYNPWRDOWNEN_CH1		(1 << 28) /* CL2 DW6 only */
1727  #define   CHV_CMN_USEDCLKCHANNEL	(1 << 13)
1728  
1729  #define CHV_CMN_DW19(ch) _PIPE(ch, _CHV_CMN_DW19_CH0, _CHV_CMN_DW6_CH1)
1730  
1731  #define CHV_CMN_DW28			0x8170
1732  #define   DPIO_CL1POWERDOWNEN		(1 << 23)
1733  #define   DPIO_DYNPWRDOWNEN_CH0		(1 << 22)
1734  #define   DPIO_SUS_CLK_CONFIG_ON		(0 << 0)
1735  #define   DPIO_SUS_CLK_CONFIG_CLKREQ		(1 << 0)
1736  #define   DPIO_SUS_CLK_CONFIG_GATE		(2 << 0)
1737  #define   DPIO_SUS_CLK_CONFIG_GATE_CLKREQ	(3 << 0)
1738  
1739  #define CHV_CMN_DW30			0x8178
1740  #define   DPIO_CL2_LDOFUSE_PWRENB	(1 << 6)
1741  #define   DPIO_LRC_BYPASS		(1 << 3)
1742  
1743  #define _TXLANE(ch, lane, offset) ((ch ? 0x2400 : 0) + \
1744  					(lane) * 0x200 + (offset))
1745  
1746  #define CHV_TX_DW0(ch, lane) _TXLANE(ch, lane, 0x80)
1747  #define CHV_TX_DW1(ch, lane) _TXLANE(ch, lane, 0x84)
1748  #define CHV_TX_DW2(ch, lane) _TXLANE(ch, lane, 0x88)
1749  #define CHV_TX_DW3(ch, lane) _TXLANE(ch, lane, 0x8c)
1750  #define CHV_TX_DW4(ch, lane) _TXLANE(ch, lane, 0x90)
1751  #define CHV_TX_DW5(ch, lane) _TXLANE(ch, lane, 0x94)
1752  #define CHV_TX_DW6(ch, lane) _TXLANE(ch, lane, 0x98)
1753  #define CHV_TX_DW7(ch, lane) _TXLANE(ch, lane, 0x9c)
1754  #define CHV_TX_DW8(ch, lane) _TXLANE(ch, lane, 0xa0)
1755  #define CHV_TX_DW9(ch, lane) _TXLANE(ch, lane, 0xa4)
1756  #define CHV_TX_DW10(ch, lane) _TXLANE(ch, lane, 0xa8)
1757  #define CHV_TX_DW11(ch, lane) _TXLANE(ch, lane, 0xac)
1758  #define   DPIO_FRC_LATENCY_SHFIT	8
1759  #define CHV_TX_DW14(ch, lane) _TXLANE(ch, lane, 0xb8)
1760  #define   DPIO_UPAR_SHIFT		30
1761  
1762  /* BXT PHY registers */
1763  #define _BXT_PHY0_BASE			0x6C000
1764  #define _BXT_PHY1_BASE			0x162000
1765  #define _BXT_PHY2_BASE			0x163000
1766  #define BXT_PHY_BASE(phy)		_PHY3((phy), _BXT_PHY0_BASE, \
1767  						     _BXT_PHY1_BASE, \
1768  						     _BXT_PHY2_BASE)
1769  
1770  #define _BXT_PHY(phy, reg)						\
1771  	_MMIO(BXT_PHY_BASE(phy) - _BXT_PHY0_BASE + (reg))
1772  
1773  #define _BXT_PHY_CH(phy, ch, reg_ch0, reg_ch1)		\
1774  	(BXT_PHY_BASE(phy) + _PIPE((ch), (reg_ch0) - _BXT_PHY0_BASE,	\
1775  					 (reg_ch1) - _BXT_PHY0_BASE))
1776  #define _MMIO_BXT_PHY_CH(phy, ch, reg_ch0, reg_ch1)		\
1777  	_MMIO(_BXT_PHY_CH(phy, ch, reg_ch0, reg_ch1))
1778  
1779  #define BXT_P_CR_GT_DISP_PWRON		_MMIO(0x138090)
1780  #define  MIPIO_RST_CTRL				(1 << 2)
1781  
1782  #define _BXT_PHY_CTL_DDI_A		0x64C00
1783  #define _BXT_PHY_CTL_DDI_B		0x64C10
1784  #define _BXT_PHY_CTL_DDI_C		0x64C20
1785  #define   BXT_PHY_CMNLANE_POWERDOWN_ACK	(1 << 10)
1786  #define   BXT_PHY_LANE_POWERDOWN_ACK	(1 << 9)
1787  #define   BXT_PHY_LANE_ENABLED		(1 << 8)
1788  #define BXT_PHY_CTL(port)		_MMIO_PORT(port, _BXT_PHY_CTL_DDI_A, \
1789  							 _BXT_PHY_CTL_DDI_B)
1790  
1791  #define _PHY_CTL_FAMILY_EDP		0x64C80
1792  #define _PHY_CTL_FAMILY_DDI		0x64C90
1793  #define _PHY_CTL_FAMILY_DDI_C		0x64CA0
1794  #define   COMMON_RESET_DIS		(1 << 31)
1795  #define BXT_PHY_CTL_FAMILY(phy)		_MMIO_PHY3((phy), _PHY_CTL_FAMILY_DDI, \
1796  							  _PHY_CTL_FAMILY_EDP, \
1797  							  _PHY_CTL_FAMILY_DDI_C)
1798  
1799  /* BXT PHY PLL registers */
1800  #define _PORT_PLL_A			0x46074
1801  #define _PORT_PLL_B			0x46078
1802  #define _PORT_PLL_C			0x4607c
1803  #define   PORT_PLL_ENABLE		(1 << 31)
1804  #define   PORT_PLL_LOCK			(1 << 30)
1805  #define   PORT_PLL_REF_SEL		(1 << 27)
1806  #define   PORT_PLL_POWER_ENABLE		(1 << 26)
1807  #define   PORT_PLL_POWER_STATE		(1 << 25)
1808  #define BXT_PORT_PLL_ENABLE(port)	_MMIO_PORT(port, _PORT_PLL_A, _PORT_PLL_B)
1809  
1810  #define _PORT_PLL_EBB_0_A		0x162034
1811  #define _PORT_PLL_EBB_0_B		0x6C034
1812  #define _PORT_PLL_EBB_0_C		0x6C340
1813  #define   PORT_PLL_P1_SHIFT		13
1814  #define   PORT_PLL_P1_MASK		(0x07 << PORT_PLL_P1_SHIFT)
1815  #define   PORT_PLL_P1(x)		((x)  << PORT_PLL_P1_SHIFT)
1816  #define   PORT_PLL_P2_SHIFT		8
1817  #define   PORT_PLL_P2_MASK		(0x1f << PORT_PLL_P2_SHIFT)
1818  #define   PORT_PLL_P2(x)		((x)  << PORT_PLL_P2_SHIFT)
1819  #define BXT_PORT_PLL_EBB_0(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
1820  							 _PORT_PLL_EBB_0_B, \
1821  							 _PORT_PLL_EBB_0_C)
1822  
1823  #define _PORT_PLL_EBB_4_A		0x162038
1824  #define _PORT_PLL_EBB_4_B		0x6C038
1825  #define _PORT_PLL_EBB_4_C		0x6C344
1826  #define   PORT_PLL_10BIT_CLK_ENABLE	(1 << 13)
1827  #define   PORT_PLL_RECALIBRATE		(1 << 14)
1828  #define BXT_PORT_PLL_EBB_4(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
1829  							 _PORT_PLL_EBB_4_B, \
1830  							 _PORT_PLL_EBB_4_C)
1831  
1832  #define _PORT_PLL_0_A			0x162100
1833  #define _PORT_PLL_0_B			0x6C100
1834  #define _PORT_PLL_0_C			0x6C380
1835  /* PORT_PLL_0_A */
1836  #define   PORT_PLL_M2_MASK		0xFF
1837  /* PORT_PLL_1_A */
1838  #define   PORT_PLL_N_SHIFT		8
1839  #define   PORT_PLL_N_MASK		(0x0F << PORT_PLL_N_SHIFT)
1840  #define   PORT_PLL_N(x)			((x) << PORT_PLL_N_SHIFT)
1841  /* PORT_PLL_2_A */
1842  #define   PORT_PLL_M2_FRAC_MASK		0x3FFFFF
1843  /* PORT_PLL_3_A */
1844  #define   PORT_PLL_M2_FRAC_ENABLE	(1 << 16)
1845  /* PORT_PLL_6_A */
1846  #define   PORT_PLL_PROP_COEFF_MASK	0xF
1847  #define   PORT_PLL_INT_COEFF_MASK	(0x1F << 8)
1848  #define   PORT_PLL_INT_COEFF(x)		((x)  << 8)
1849  #define   PORT_PLL_GAIN_CTL_MASK	(0x07 << 16)
1850  #define   PORT_PLL_GAIN_CTL(x)		((x)  << 16)
1851  /* PORT_PLL_8_A */
1852  #define   PORT_PLL_TARGET_CNT_MASK	0x3FF
1853  /* PORT_PLL_9_A */
1854  #define  PORT_PLL_LOCK_THRESHOLD_SHIFT	1
1855  #define  PORT_PLL_LOCK_THRESHOLD_MASK	(0x7 << PORT_PLL_LOCK_THRESHOLD_SHIFT)
1856  /* PORT_PLL_10_A */
1857  #define  PORT_PLL_DCO_AMP_OVR_EN_H	(1<<27)
1858  #define  PORT_PLL_DCO_AMP_DEFAULT	15
1859  #define  PORT_PLL_DCO_AMP_MASK		0x3c00
1860  #define  PORT_PLL_DCO_AMP(x)		((x)<<10)
1861  #define _PORT_PLL_BASE(phy, ch)		_BXT_PHY_CH(phy, ch, \
1862  						    _PORT_PLL_0_B, \
1863  						    _PORT_PLL_0_C)
1864  #define BXT_PORT_PLL(phy, ch, idx)	_MMIO(_PORT_PLL_BASE(phy, ch) + \
1865  					      (idx) * 4)
1866  
1867  /* BXT PHY common lane registers */
1868  #define _PORT_CL1CM_DW0_A		0x162000
1869  #define _PORT_CL1CM_DW0_BC		0x6C000
1870  #define   PHY_POWER_GOOD		(1 << 16)
1871  #define   PHY_RESERVED			(1 << 7)
1872  #define BXT_PORT_CL1CM_DW0(phy)		_BXT_PHY((phy), _PORT_CL1CM_DW0_BC)
1873  
1874  #define CNL_PORT_CL1CM_DW5		_MMIO(0x162014)
1875  #define   CL_POWER_DOWN_ENABLE		(1 << 4)
1876  #define   SUS_CLOCK_CONFIG		(3 << 0)
1877  
1878  #define _PORT_CL1CM_DW9_A		0x162024
1879  #define _PORT_CL1CM_DW9_BC		0x6C024
1880  #define   IREF0RC_OFFSET_SHIFT		8
1881  #define   IREF0RC_OFFSET_MASK		(0xFF << IREF0RC_OFFSET_SHIFT)
1882  #define BXT_PORT_CL1CM_DW9(phy)		_BXT_PHY((phy), _PORT_CL1CM_DW9_BC)
1883  
1884  #define _PORT_CL1CM_DW10_A		0x162028
1885  #define _PORT_CL1CM_DW10_BC		0x6C028
1886  #define   IREF1RC_OFFSET_SHIFT		8
1887  #define   IREF1RC_OFFSET_MASK		(0xFF << IREF1RC_OFFSET_SHIFT)
1888  #define BXT_PORT_CL1CM_DW10(phy)	_BXT_PHY((phy), _PORT_CL1CM_DW10_BC)
1889  
1890  #define _PORT_CL1CM_DW28_A		0x162070
1891  #define _PORT_CL1CM_DW28_BC		0x6C070
1892  #define   OCL1_POWER_DOWN_EN		(1 << 23)
1893  #define   DW28_OLDO_DYN_PWR_DOWN_EN	(1 << 22)
1894  #define   SUS_CLK_CONFIG		0x3
1895  #define BXT_PORT_CL1CM_DW28(phy)	_BXT_PHY((phy), _PORT_CL1CM_DW28_BC)
1896  
1897  #define _PORT_CL1CM_DW30_A		0x162078
1898  #define _PORT_CL1CM_DW30_BC		0x6C078
1899  #define   OCL2_LDOFUSE_PWR_DIS		(1 << 6)
1900  #define BXT_PORT_CL1CM_DW30(phy)	_BXT_PHY((phy), _PORT_CL1CM_DW30_BC)
1901  
1902  #define _CNL_PORT_PCS_DW1_GRP_AE	0x162304
1903  #define _CNL_PORT_PCS_DW1_GRP_B		0x162384
1904  #define _CNL_PORT_PCS_DW1_GRP_C		0x162B04
1905  #define _CNL_PORT_PCS_DW1_GRP_D		0x162B84
1906  #define _CNL_PORT_PCS_DW1_GRP_F		0x162A04
1907  #define _CNL_PORT_PCS_DW1_LN0_AE	0x162404
1908  #define _CNL_PORT_PCS_DW1_LN0_B		0x162604
1909  #define _CNL_PORT_PCS_DW1_LN0_C		0x162C04
1910  #define _CNL_PORT_PCS_DW1_LN0_D		0x162E04
1911  #define _CNL_PORT_PCS_DW1_LN0_F		0x162804
1912  #define CNL_PORT_PCS_DW1_GRP(port)	_MMIO_PORT6(port, \
1913  						    _CNL_PORT_PCS_DW1_GRP_AE, \
1914  						    _CNL_PORT_PCS_DW1_GRP_B, \
1915  						    _CNL_PORT_PCS_DW1_GRP_C, \
1916  						    _CNL_PORT_PCS_DW1_GRP_D, \
1917  						    _CNL_PORT_PCS_DW1_GRP_AE, \
1918  						    _CNL_PORT_PCS_DW1_GRP_F)
1919  #define CNL_PORT_PCS_DW1_LN0(port)	_MMIO_PORT6(port, \
1920  						    _CNL_PORT_PCS_DW1_LN0_AE, \
1921  						    _CNL_PORT_PCS_DW1_LN0_B, \
1922  						    _CNL_PORT_PCS_DW1_LN0_C, \
1923  						    _CNL_PORT_PCS_DW1_LN0_D, \
1924  						    _CNL_PORT_PCS_DW1_LN0_AE, \
1925  						    _CNL_PORT_PCS_DW1_LN0_F)
1926  #define   COMMON_KEEPER_EN		(1 << 26)
1927  
1928  #define _CNL_PORT_TX_DW2_GRP_AE		0x162348
1929  #define _CNL_PORT_TX_DW2_GRP_B		0x1623C8
1930  #define _CNL_PORT_TX_DW2_GRP_C		0x162B48
1931  #define _CNL_PORT_TX_DW2_GRP_D		0x162BC8
1932  #define _CNL_PORT_TX_DW2_GRP_F		0x162A48
1933  #define _CNL_PORT_TX_DW2_LN0_AE		0x162448
1934  #define _CNL_PORT_TX_DW2_LN0_B		0x162648
1935  #define _CNL_PORT_TX_DW2_LN0_C		0x162C48
1936  #define _CNL_PORT_TX_DW2_LN0_D		0x162E48
1937  #define _CNL_PORT_TX_DW2_LN0_F		0x162A48
1938  #define CNL_PORT_TX_DW2_GRP(port)	_MMIO_PORT6(port, \
1939  						    _CNL_PORT_TX_DW2_GRP_AE, \
1940  						    _CNL_PORT_TX_DW2_GRP_B, \
1941  						    _CNL_PORT_TX_DW2_GRP_C, \
1942  						    _CNL_PORT_TX_DW2_GRP_D, \
1943  						    _CNL_PORT_TX_DW2_GRP_AE, \
1944  						    _CNL_PORT_TX_DW2_GRP_F)
1945  #define CNL_PORT_TX_DW2_LN0(port)	_MMIO_PORT6(port, \
1946  						    _CNL_PORT_TX_DW2_LN0_AE, \
1947  						    _CNL_PORT_TX_DW2_LN0_B, \
1948  						    _CNL_PORT_TX_DW2_LN0_C, \
1949  						    _CNL_PORT_TX_DW2_LN0_D, \
1950  						    _CNL_PORT_TX_DW2_LN0_AE, \
1951  						    _CNL_PORT_TX_DW2_LN0_F)
1952  #define   SWING_SEL_UPPER(x)		((x >> 3) << 15)
1953  #define   SWING_SEL_UPPER_MASK		(1 << 15)
1954  #define   SWING_SEL_LOWER(x)		((x & 0x7) << 11)
1955  #define   SWING_SEL_LOWER_MASK		(0x7 << 11)
1956  #define   RCOMP_SCALAR(x)		((x) << 0)
1957  #define   RCOMP_SCALAR_MASK		(0xFF << 0)
1958  
1959  #define _CNL_PORT_TX_DW4_GRP_AE		0x162350
1960  #define _CNL_PORT_TX_DW4_GRP_B		0x1623D0
1961  #define _CNL_PORT_TX_DW4_GRP_C		0x162B50
1962  #define _CNL_PORT_TX_DW4_GRP_D		0x162BD0
1963  #define _CNL_PORT_TX_DW4_GRP_F		0x162A50
1964  #define _CNL_PORT_TX_DW4_LN0_AE		0x162450
1965  #define _CNL_PORT_TX_DW4_LN1_AE		0x1624D0
1966  #define _CNL_PORT_TX_DW4_LN0_B		0x162650
1967  #define _CNL_PORT_TX_DW4_LN0_C		0x162C50
1968  #define _CNL_PORT_TX_DW4_LN0_D		0x162E50
1969  #define _CNL_PORT_TX_DW4_LN0_F		0x162850
1970  #define CNL_PORT_TX_DW4_GRP(port)       _MMIO_PORT6(port, \
1971  						    _CNL_PORT_TX_DW4_GRP_AE, \
1972  						    _CNL_PORT_TX_DW4_GRP_B, \
1973  						    _CNL_PORT_TX_DW4_GRP_C, \
1974  						    _CNL_PORT_TX_DW4_GRP_D, \
1975  						    _CNL_PORT_TX_DW4_GRP_AE, \
1976  						    _CNL_PORT_TX_DW4_GRP_F)
1977  #define CNL_PORT_TX_DW4_LN(port, ln)       _MMIO_PORT6_LN(port, ln,	\
1978  						    _CNL_PORT_TX_DW4_LN0_AE, \
1979  						    _CNL_PORT_TX_DW4_LN1_AE, \
1980  						    _CNL_PORT_TX_DW4_LN0_B, \
1981  						    _CNL_PORT_TX_DW4_LN0_C, \
1982  						    _CNL_PORT_TX_DW4_LN0_D, \
1983  						    _CNL_PORT_TX_DW4_LN0_AE, \
1984  						    _CNL_PORT_TX_DW4_LN0_F)
1985  #define   LOADGEN_SELECT		(1 << 31)
1986  #define   POST_CURSOR_1(x)		((x) << 12)
1987  #define   POST_CURSOR_1_MASK		(0x3F << 12)
1988  #define   POST_CURSOR_2(x)		((x) << 6)
1989  #define   POST_CURSOR_2_MASK		(0x3F << 6)
1990  #define   CURSOR_COEFF(x)		((x) << 0)
1991  #define   CURSOR_COEFF_MASK		(0x3F << 0)
1992  
1993  #define _CNL_PORT_TX_DW5_GRP_AE		0x162354
1994  #define _CNL_PORT_TX_DW5_GRP_B		0x1623D4
1995  #define _CNL_PORT_TX_DW5_GRP_C		0x162B54
1996  #define _CNL_PORT_TX_DW5_GRP_D		0x162BD4
1997  #define _CNL_PORT_TX_DW5_GRP_F		0x162A54
1998  #define _CNL_PORT_TX_DW5_LN0_AE		0x162454
1999  #define _CNL_PORT_TX_DW5_LN0_B		0x162654
2000  #define _CNL_PORT_TX_DW5_LN0_C		0x162C54
2001  #define _CNL_PORT_TX_DW5_LN0_D		0x162ED4
2002  #define _CNL_PORT_TX_DW5_LN0_F		0x162854
2003  #define CNL_PORT_TX_DW5_GRP(port)	_MMIO_PORT6(port, \
2004  						    _CNL_PORT_TX_DW5_GRP_AE, \
2005  						    _CNL_PORT_TX_DW5_GRP_B, \
2006  						    _CNL_PORT_TX_DW5_GRP_C, \
2007  						    _CNL_PORT_TX_DW5_GRP_D, \
2008  						    _CNL_PORT_TX_DW5_GRP_AE, \
2009  						    _CNL_PORT_TX_DW5_GRP_F)
2010  #define CNL_PORT_TX_DW5_LN0(port)	_MMIO_PORT6(port, \
2011  						    _CNL_PORT_TX_DW5_LN0_AE, \
2012  						    _CNL_PORT_TX_DW5_LN0_B, \
2013  						    _CNL_PORT_TX_DW5_LN0_C, \
2014  						    _CNL_PORT_TX_DW5_LN0_D, \
2015  						    _CNL_PORT_TX_DW5_LN0_AE, \
2016  						    _CNL_PORT_TX_DW5_LN0_F)
2017  #define   TX_TRAINING_EN		(1 << 31)
2018  #define   TAP3_DISABLE			(1 << 29)
2019  #define   SCALING_MODE_SEL(x)		((x) << 18)
2020  #define   SCALING_MODE_SEL_MASK		(0x7 << 18)
2021  #define   RTERM_SELECT(x)		((x) << 3)
2022  #define   RTERM_SELECT_MASK		(0x7 << 3)
2023  
2024  #define _CNL_PORT_TX_DW7_GRP_AE		0x16235C
2025  #define _CNL_PORT_TX_DW7_GRP_B		0x1623DC
2026  #define _CNL_PORT_TX_DW7_GRP_C		0x162B5C
2027  #define _CNL_PORT_TX_DW7_GRP_D		0x162BDC
2028  #define _CNL_PORT_TX_DW7_GRP_F		0x162A5C
2029  #define _CNL_PORT_TX_DW7_LN0_AE		0x16245C
2030  #define _CNL_PORT_TX_DW7_LN0_B		0x16265C
2031  #define _CNL_PORT_TX_DW7_LN0_C		0x162C5C
2032  #define _CNL_PORT_TX_DW7_LN0_D		0x162EDC
2033  #define _CNL_PORT_TX_DW7_LN0_F		0x16285C
2034  #define CNL_PORT_TX_DW7_GRP(port)	_MMIO_PORT6(port, \
2035  						    _CNL_PORT_TX_DW7_GRP_AE, \
2036  						    _CNL_PORT_TX_DW7_GRP_B, \
2037  						    _CNL_PORT_TX_DW7_GRP_C, \
2038  						    _CNL_PORT_TX_DW7_GRP_D, \
2039  						    _CNL_PORT_TX_DW7_GRP_AE, \
2040  						    _CNL_PORT_TX_DW7_GRP_F)
2041  #define CNL_PORT_TX_DW7_LN0(port)	_MMIO_PORT6(port, \
2042  						    _CNL_PORT_TX_DW7_LN0_AE, \
2043  						    _CNL_PORT_TX_DW7_LN0_B, \
2044  						    _CNL_PORT_TX_DW7_LN0_C, \
2045  						    _CNL_PORT_TX_DW7_LN0_D, \
2046  						    _CNL_PORT_TX_DW7_LN0_AE, \
2047  						    _CNL_PORT_TX_DW7_LN0_F)
2048  #define   N_SCALAR(x)			((x) << 24)
2049  #define   N_SCALAR_MASK			(0x7F << 24)
2050  
2051  /* The spec defines this only for BXT PHY0, but lets assume that this
2052   * would exist for PHY1 too if it had a second channel.
2053   */
2054  #define _PORT_CL2CM_DW6_A		0x162358
2055  #define _PORT_CL2CM_DW6_BC		0x6C358
2056  #define BXT_PORT_CL2CM_DW6(phy)		_BXT_PHY((phy), _PORT_CL2CM_DW6_BC)
2057  #define   DW6_OLDO_DYN_PWR_DOWN_EN	(1 << 28)
2058  
2059  #define CNL_PORT_COMP_DW0		_MMIO(0x162100)
2060  #define   COMP_INIT			(1 << 31)
2061  #define CNL_PORT_COMP_DW1		_MMIO(0x162104)
2062  #define CNL_PORT_COMP_DW3		_MMIO(0x16210c)
2063  #define   PROCESS_INFO_DOT_0		(0 << 26)
2064  #define   PROCESS_INFO_DOT_1		(1 << 26)
2065  #define   PROCESS_INFO_DOT_4		(2 << 26)
2066  #define   PROCESS_INFO_MASK		(7 << 26)
2067  #define   PROCESS_INFO_SHIFT		26
2068  #define   VOLTAGE_INFO_0_85V		(0 << 24)
2069  #define   VOLTAGE_INFO_0_95V		(1 << 24)
2070  #define   VOLTAGE_INFO_1_05V		(2 << 24)
2071  #define   VOLTAGE_INFO_MASK		(3 << 24)
2072  #define   VOLTAGE_INFO_SHIFT		24
2073  #define CNL_PORT_COMP_DW9		_MMIO(0x162124)
2074  #define CNL_PORT_COMP_DW10		_MMIO(0x162128)
2075  
2076  /* BXT PHY Ref registers */
2077  #define _PORT_REF_DW3_A			0x16218C
2078  #define _PORT_REF_DW3_BC		0x6C18C
2079  #define   GRC_DONE			(1 << 22)
2080  #define BXT_PORT_REF_DW3(phy)		_BXT_PHY((phy), _PORT_REF_DW3_BC)
2081  
2082  #define _PORT_REF_DW6_A			0x162198
2083  #define _PORT_REF_DW6_BC		0x6C198
2084  #define   GRC_CODE_SHIFT		24
2085  #define   GRC_CODE_MASK			(0xFF << GRC_CODE_SHIFT)
2086  #define   GRC_CODE_FAST_SHIFT		16
2087  #define   GRC_CODE_FAST_MASK		(0xFF << GRC_CODE_FAST_SHIFT)
2088  #define   GRC_CODE_SLOW_SHIFT		8
2089  #define   GRC_CODE_SLOW_MASK		(0xFF << GRC_CODE_SLOW_SHIFT)
2090  #define   GRC_CODE_NOM_MASK		0xFF
2091  #define BXT_PORT_REF_DW6(phy)		_BXT_PHY((phy), _PORT_REF_DW6_BC)
2092  
2093  #define _PORT_REF_DW8_A			0x1621A0
2094  #define _PORT_REF_DW8_BC		0x6C1A0
2095  #define   GRC_DIS			(1 << 15)
2096  #define   GRC_RDY_OVRD			(1 << 1)
2097  #define BXT_PORT_REF_DW8(phy)		_BXT_PHY((phy), _PORT_REF_DW8_BC)
2098  
2099  /* BXT PHY PCS registers */
2100  #define _PORT_PCS_DW10_LN01_A		0x162428
2101  #define _PORT_PCS_DW10_LN01_B		0x6C428
2102  #define _PORT_PCS_DW10_LN01_C		0x6C828
2103  #define _PORT_PCS_DW10_GRP_A		0x162C28
2104  #define _PORT_PCS_DW10_GRP_B		0x6CC28
2105  #define _PORT_PCS_DW10_GRP_C		0x6CE28
2106  #define BXT_PORT_PCS_DW10_LN01(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2107  							 _PORT_PCS_DW10_LN01_B, \
2108  							 _PORT_PCS_DW10_LN01_C)
2109  #define BXT_PORT_PCS_DW10_GRP(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2110  							 _PORT_PCS_DW10_GRP_B, \
2111  							 _PORT_PCS_DW10_GRP_C)
2112  
2113  #define   TX2_SWING_CALC_INIT		(1 << 31)
2114  #define   TX1_SWING_CALC_INIT		(1 << 30)
2115  
2116  #define _PORT_PCS_DW12_LN01_A		0x162430
2117  #define _PORT_PCS_DW12_LN01_B		0x6C430
2118  #define _PORT_PCS_DW12_LN01_C		0x6C830
2119  #define _PORT_PCS_DW12_LN23_A		0x162630
2120  #define _PORT_PCS_DW12_LN23_B		0x6C630
2121  #define _PORT_PCS_DW12_LN23_C		0x6CA30
2122  #define _PORT_PCS_DW12_GRP_A		0x162c30
2123  #define _PORT_PCS_DW12_GRP_B		0x6CC30
2124  #define _PORT_PCS_DW12_GRP_C		0x6CE30
2125  #define   LANESTAGGER_STRAP_OVRD	(1 << 6)
2126  #define   LANE_STAGGER_MASK		0x1F
2127  #define BXT_PORT_PCS_DW12_LN01(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2128  							 _PORT_PCS_DW12_LN01_B, \
2129  							 _PORT_PCS_DW12_LN01_C)
2130  #define BXT_PORT_PCS_DW12_LN23(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2131  							 _PORT_PCS_DW12_LN23_B, \
2132  							 _PORT_PCS_DW12_LN23_C)
2133  #define BXT_PORT_PCS_DW12_GRP(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2134  							 _PORT_PCS_DW12_GRP_B, \
2135  							 _PORT_PCS_DW12_GRP_C)
2136  
2137  /* BXT PHY TX registers */
2138  #define _BXT_LANE_OFFSET(lane)           (((lane) >> 1) * 0x200 +	\
2139  					  ((lane) & 1) * 0x80)
2140  
2141  #define _PORT_TX_DW2_LN0_A		0x162508
2142  #define _PORT_TX_DW2_LN0_B		0x6C508
2143  #define _PORT_TX_DW2_LN0_C		0x6C908
2144  #define _PORT_TX_DW2_GRP_A		0x162D08
2145  #define _PORT_TX_DW2_GRP_B		0x6CD08
2146  #define _PORT_TX_DW2_GRP_C		0x6CF08
2147  #define BXT_PORT_TX_DW2_LN0(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2148  							 _PORT_TX_DW2_LN0_B, \
2149  							 _PORT_TX_DW2_LN0_C)
2150  #define BXT_PORT_TX_DW2_GRP(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2151  							 _PORT_TX_DW2_GRP_B, \
2152  							 _PORT_TX_DW2_GRP_C)
2153  #define   MARGIN_000_SHIFT		16
2154  #define   MARGIN_000			(0xFF << MARGIN_000_SHIFT)
2155  #define   UNIQ_TRANS_SCALE_SHIFT	8
2156  #define   UNIQ_TRANS_SCALE		(0xFF << UNIQ_TRANS_SCALE_SHIFT)
2157  
2158  #define _PORT_TX_DW3_LN0_A		0x16250C
2159  #define _PORT_TX_DW3_LN0_B		0x6C50C
2160  #define _PORT_TX_DW3_LN0_C		0x6C90C
2161  #define _PORT_TX_DW3_GRP_A		0x162D0C
2162  #define _PORT_TX_DW3_GRP_B		0x6CD0C
2163  #define _PORT_TX_DW3_GRP_C		0x6CF0C
2164  #define BXT_PORT_TX_DW3_LN0(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2165  							 _PORT_TX_DW3_LN0_B, \
2166  							 _PORT_TX_DW3_LN0_C)
2167  #define BXT_PORT_TX_DW3_GRP(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2168  							 _PORT_TX_DW3_GRP_B, \
2169  							 _PORT_TX_DW3_GRP_C)
2170  #define   SCALE_DCOMP_METHOD		(1 << 26)
2171  #define   UNIQUE_TRANGE_EN_METHOD	(1 << 27)
2172  
2173  #define _PORT_TX_DW4_LN0_A		0x162510
2174  #define _PORT_TX_DW4_LN0_B		0x6C510
2175  #define _PORT_TX_DW4_LN0_C		0x6C910
2176  #define _PORT_TX_DW4_GRP_A		0x162D10
2177  #define _PORT_TX_DW4_GRP_B		0x6CD10
2178  #define _PORT_TX_DW4_GRP_C		0x6CF10
2179  #define BXT_PORT_TX_DW4_LN0(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2180  							 _PORT_TX_DW4_LN0_B, \
2181  							 _PORT_TX_DW4_LN0_C)
2182  #define BXT_PORT_TX_DW4_GRP(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2183  							 _PORT_TX_DW4_GRP_B, \
2184  							 _PORT_TX_DW4_GRP_C)
2185  #define   DEEMPH_SHIFT			24
2186  #define   DE_EMPHASIS			(0xFF << DEEMPH_SHIFT)
2187  
2188  #define _PORT_TX_DW5_LN0_A		0x162514
2189  #define _PORT_TX_DW5_LN0_B		0x6C514
2190  #define _PORT_TX_DW5_LN0_C		0x6C914
2191  #define _PORT_TX_DW5_GRP_A		0x162D14
2192  #define _PORT_TX_DW5_GRP_B		0x6CD14
2193  #define _PORT_TX_DW5_GRP_C		0x6CF14
2194  #define BXT_PORT_TX_DW5_LN0(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2195  							 _PORT_TX_DW5_LN0_B, \
2196  							 _PORT_TX_DW5_LN0_C)
2197  #define BXT_PORT_TX_DW5_GRP(phy, ch)	_MMIO_BXT_PHY_CH(phy, ch, \
2198  							 _PORT_TX_DW5_GRP_B, \
2199  							 _PORT_TX_DW5_GRP_C)
2200  #define   DCC_DELAY_RANGE_1		(1 << 9)
2201  #define   DCC_DELAY_RANGE_2		(1 << 8)
2202  
2203  #define _PORT_TX_DW14_LN0_A		0x162538
2204  #define _PORT_TX_DW14_LN0_B		0x6C538
2205  #define _PORT_TX_DW14_LN0_C		0x6C938
2206  #define   LATENCY_OPTIM_SHIFT		30
2207  #define   LATENCY_OPTIM			(1 << LATENCY_OPTIM_SHIFT)
2208  #define BXT_PORT_TX_DW14_LN(phy, ch, lane)				\
2209  	_MMIO(_BXT_PHY_CH(phy, ch, _PORT_TX_DW14_LN0_B,			\
2210  				   _PORT_TX_DW14_LN0_C) +		\
2211  	      _BXT_LANE_OFFSET(lane))
2212  
2213  /* UAIMI scratch pad register 1 */
2214  #define UAIMI_SPR1			_MMIO(0x4F074)
2215  /* SKL VccIO mask */
2216  #define SKL_VCCIO_MASK			0x1
2217  /* SKL balance leg register */
2218  #define DISPIO_CR_TX_BMU_CR0		_MMIO(0x6C00C)
2219  /* I_boost values */
2220  #define BALANCE_LEG_SHIFT(port)		(8+3*(port))
2221  #define BALANCE_LEG_MASK(port)		(7<<(8+3*(port)))
2222  /* Balance leg disable bits */
2223  #define BALANCE_LEG_DISABLE_SHIFT	23
2224  #define BALANCE_LEG_DISABLE(port)	(1 << (23 + (port)))
2225  
2226  /*
2227   * Fence registers
2228   * [0-7]  @ 0x2000 gen2,gen3
2229   * [8-15] @ 0x3000 945,g33,pnv
2230   *
2231   * [0-15] @ 0x3000 gen4,gen5
2232   *
2233   * [0-15] @ 0x100000 gen6,vlv,chv
2234   * [0-31] @ 0x100000 gen7+
2235   */
2236  #define FENCE_REG(i)			_MMIO(0x2000 + (((i) & 8) << 9) + ((i) & 7) * 4)
2237  #define   I830_FENCE_START_MASK		0x07f80000
2238  #define   I830_FENCE_TILING_Y_SHIFT	12
2239  #define   I830_FENCE_SIZE_BITS(size)	((ffs((size) >> 19) - 1) << 8)
2240  #define   I830_FENCE_PITCH_SHIFT	4
2241  #define   I830_FENCE_REG_VALID		(1<<0)
2242  #define   I915_FENCE_MAX_PITCH_VAL	4
2243  #define   I830_FENCE_MAX_PITCH_VAL	6
2244  #define   I830_FENCE_MAX_SIZE_VAL	(1<<8)
2245  
2246  #define   I915_FENCE_START_MASK		0x0ff00000
2247  #define   I915_FENCE_SIZE_BITS(size)	((ffs((size) >> 20) - 1) << 8)
2248  
2249  #define FENCE_REG_965_LO(i)		_MMIO(0x03000 + (i) * 8)
2250  #define FENCE_REG_965_HI(i)		_MMIO(0x03000 + (i) * 8 + 4)
2251  #define   I965_FENCE_PITCH_SHIFT	2
2252  #define   I965_FENCE_TILING_Y_SHIFT	1
2253  #define   I965_FENCE_REG_VALID		(1<<0)
2254  #define   I965_FENCE_MAX_PITCH_VAL	0x0400
2255  
2256  #define FENCE_REG_GEN6_LO(i)		_MMIO(0x100000 + (i) * 8)
2257  #define FENCE_REG_GEN6_HI(i)		_MMIO(0x100000 + (i) * 8 + 4)
2258  #define   GEN6_FENCE_PITCH_SHIFT	32
2259  #define   GEN7_FENCE_MAX_PITCH_VAL	0x0800
2260  
2261  
2262  /* control register for cpu gtt access */
2263  #define TILECTL				_MMIO(0x101000)
2264  #define   TILECTL_SWZCTL			(1 << 0)
2265  #define   TILECTL_TLBPF			(1 << 1)
2266  #define   TILECTL_TLB_PREFETCH_DIS	(1 << 2)
2267  #define   TILECTL_BACKSNOOP_DIS		(1 << 3)
2268  
2269  /*
2270   * Instruction and interrupt control regs
2271   */
2272  #define PGTBL_CTL	_MMIO(0x02020)
2273  #define   PGTBL_ADDRESS_LO_MASK	0xfffff000 /* bits [31:12] */
2274  #define   PGTBL_ADDRESS_HI_MASK	0x000000f0 /* bits [35:32] (gen4) */
2275  #define PGTBL_ER	_MMIO(0x02024)
2276  #define PRB0_BASE	(0x2030-0x30)
2277  #define PRB1_BASE	(0x2040-0x30) /* 830,gen3 */
2278  #define PRB2_BASE	(0x2050-0x30) /* gen3 */
2279  #define SRB0_BASE	(0x2100-0x30) /* gen2 */
2280  #define SRB1_BASE	(0x2110-0x30) /* gen2 */
2281  #define SRB2_BASE	(0x2120-0x30) /* 830 */
2282  #define SRB3_BASE	(0x2130-0x30) /* 830 */
2283  #define RENDER_RING_BASE	0x02000
2284  #define BSD_RING_BASE		0x04000
2285  #define GEN6_BSD_RING_BASE	0x12000
2286  #define GEN8_BSD2_RING_BASE	0x1c000
2287  #define VEBOX_RING_BASE		0x1a000
2288  #define BLT_RING_BASE		0x22000
2289  #define RING_TAIL(base)		_MMIO((base)+0x30)
2290  #define RING_HEAD(base)		_MMIO((base)+0x34)
2291  #define RING_START(base)	_MMIO((base)+0x38)
2292  #define RING_CTL(base)		_MMIO((base)+0x3c)
2293  #define   RING_CTL_SIZE(size)	((size) - PAGE_SIZE) /* in bytes -> pages */
2294  #define RING_SYNC_0(base)	_MMIO((base)+0x40)
2295  #define RING_SYNC_1(base)	_MMIO((base)+0x44)
2296  #define RING_SYNC_2(base)	_MMIO((base)+0x48)
2297  #define GEN6_RVSYNC	(RING_SYNC_0(RENDER_RING_BASE))
2298  #define GEN6_RBSYNC	(RING_SYNC_1(RENDER_RING_BASE))
2299  #define GEN6_RVESYNC	(RING_SYNC_2(RENDER_RING_BASE))
2300  #define GEN6_VBSYNC	(RING_SYNC_0(GEN6_BSD_RING_BASE))
2301  #define GEN6_VRSYNC	(RING_SYNC_1(GEN6_BSD_RING_BASE))
2302  #define GEN6_VVESYNC	(RING_SYNC_2(GEN6_BSD_RING_BASE))
2303  #define GEN6_BRSYNC	(RING_SYNC_0(BLT_RING_BASE))
2304  #define GEN6_BVSYNC	(RING_SYNC_1(BLT_RING_BASE))
2305  #define GEN6_BVESYNC	(RING_SYNC_2(BLT_RING_BASE))
2306  #define GEN6_VEBSYNC	(RING_SYNC_0(VEBOX_RING_BASE))
2307  #define GEN6_VERSYNC	(RING_SYNC_1(VEBOX_RING_BASE))
2308  #define GEN6_VEVSYNC	(RING_SYNC_2(VEBOX_RING_BASE))
2309  #define GEN6_NOSYNC	INVALID_MMIO_REG
2310  #define RING_PSMI_CTL(base)	_MMIO((base)+0x50)
2311  #define RING_MAX_IDLE(base)	_MMIO((base)+0x54)
2312  #define RING_HWS_PGA(base)	_MMIO((base)+0x80)
2313  #define RING_HWS_PGA_GEN6(base)	_MMIO((base)+0x2080)
2314  #define RING_RESET_CTL(base)	_MMIO((base)+0xd0)
2315  #define   RESET_CTL_REQUEST_RESET  (1 << 0)
2316  #define   RESET_CTL_READY_TO_RESET (1 << 1)
2317  
2318  #define HSW_GTT_CACHE_EN	_MMIO(0x4024)
2319  #define   GTT_CACHE_EN_ALL	0xF0007FFF
2320  #define GEN7_WR_WATERMARK	_MMIO(0x4028)
2321  #define GEN7_GFX_PRIO_CTRL	_MMIO(0x402C)
2322  #define ARB_MODE		_MMIO(0x4030)
2323  #define   ARB_MODE_SWIZZLE_SNB	(1<<4)
2324  #define   ARB_MODE_SWIZZLE_IVB	(1<<5)
2325  #define GEN7_GFX_PEND_TLB0	_MMIO(0x4034)
2326  #define GEN7_GFX_PEND_TLB1	_MMIO(0x4038)
2327  /* L3, CVS, ZTLB, RCC, CASC LRA min, max values */
2328  #define GEN7_LRA_LIMITS(i)	_MMIO(0x403C + (i) * 4)
2329  #define GEN7_LRA_LIMITS_REG_NUM	13
2330  #define GEN7_MEDIA_MAX_REQ_COUNT	_MMIO(0x4070)
2331  #define GEN7_GFX_MAX_REQ_COUNT		_MMIO(0x4074)
2332  
2333  #define GAMTARBMODE		_MMIO(0x04a08)
2334  #define   ARB_MODE_BWGTLB_DISABLE (1<<9)
2335  #define   ARB_MODE_SWIZZLE_BDW	(1<<1)
2336  #define RENDER_HWS_PGA_GEN7	_MMIO(0x04080)
2337  #define RING_FAULT_REG(engine)	_MMIO(0x4094 + 0x100*(engine)->hw_id)
2338  #define   RING_FAULT_GTTSEL_MASK (1<<11)
2339  #define   RING_FAULT_SRCID(x)	(((x) >> 3) & 0xff)
2340  #define   RING_FAULT_FAULT_TYPE(x) (((x) >> 1) & 0x3)
2341  #define   RING_FAULT_VALID	(1<<0)
2342  #define DONE_REG		_MMIO(0x40b0)
2343  #define GEN8_PRIVATE_PAT_LO	_MMIO(0x40e0)
2344  #define GEN8_PRIVATE_PAT_HI	_MMIO(0x40e0 + 4)
2345  #define GEN10_PAT_INDEX(index)	_MMIO(0x40e0 + index*4)
2346  #define BSD_HWS_PGA_GEN7	_MMIO(0x04180)
2347  #define BLT_HWS_PGA_GEN7	_MMIO(0x04280)
2348  #define VEBOX_HWS_PGA_GEN7	_MMIO(0x04380)
2349  #define RING_ACTHD(base)	_MMIO((base)+0x74)
2350  #define RING_ACTHD_UDW(base)	_MMIO((base)+0x5c)
2351  #define RING_NOPID(base)	_MMIO((base)+0x94)
2352  #define RING_IMR(base)		_MMIO((base)+0xa8)
2353  #define RING_HWSTAM(base)	_MMIO((base)+0x98)
2354  #define RING_TIMESTAMP(base)		_MMIO((base)+0x358)
2355  #define RING_TIMESTAMP_UDW(base)	_MMIO((base)+0x358 + 4)
2356  #define   TAIL_ADDR		0x001FFFF8
2357  #define   HEAD_WRAP_COUNT	0xFFE00000
2358  #define   HEAD_WRAP_ONE		0x00200000
2359  #define   HEAD_ADDR		0x001FFFFC
2360  #define   RING_NR_PAGES		0x001FF000
2361  #define   RING_REPORT_MASK	0x00000006
2362  #define   RING_REPORT_64K	0x00000002
2363  #define   RING_REPORT_128K	0x00000004
2364  #define   RING_NO_REPORT	0x00000000
2365  #define   RING_VALID_MASK	0x00000001
2366  #define   RING_VALID		0x00000001
2367  #define   RING_INVALID		0x00000000
2368  #define   RING_WAIT_I8XX	(1<<0) /* gen2, PRBx_HEAD */
2369  #define   RING_WAIT		(1<<11) /* gen3+, PRBx_CTL */
2370  #define   RING_WAIT_SEMAPHORE	(1<<10) /* gen6+ */
2371  
2372  #define RING_FORCE_TO_NONPRIV(base, i) _MMIO(((base)+0x4D0) + (i)*4)
2373  #define   RING_MAX_NONPRIV_SLOTS  12
2374  
2375  #define GEN7_TLB_RD_ADDR	_MMIO(0x4700)
2376  
2377  #define GEN9_GAMT_ECO_REG_RW_IA _MMIO(0x4ab0)
2378  #define   GAMT_ECO_ENABLE_IN_PLACE_DECOMPRESS	(1<<18)
2379  
2380  #define GAMT_CHKN_BIT_REG	_MMIO(0x4ab8)
2381  #define   GAMT_CHKN_DISABLE_DYNAMIC_CREDIT_SHARING	(1<<28)
2382  
2383  #if 0
2384  #define PRB0_TAIL	_MMIO(0x2030)
2385  #define PRB0_HEAD	_MMIO(0x2034)
2386  #define PRB0_START	_MMIO(0x2038)
2387  #define PRB0_CTL	_MMIO(0x203c)
2388  #define PRB1_TAIL	_MMIO(0x2040) /* 915+ only */
2389  #define PRB1_HEAD	_MMIO(0x2044) /* 915+ only */
2390  #define PRB1_START	_MMIO(0x2048) /* 915+ only */
2391  #define PRB1_CTL	_MMIO(0x204c) /* 915+ only */
2392  #endif
2393  #define IPEIR_I965	_MMIO(0x2064)
2394  #define IPEHR_I965	_MMIO(0x2068)
2395  #define GEN7_SC_INSTDONE	_MMIO(0x7100)
2396  #define GEN7_SAMPLER_INSTDONE	_MMIO(0xe160)
2397  #define GEN7_ROW_INSTDONE	_MMIO(0xe164)
2398  #define GEN8_MCR_SELECTOR		_MMIO(0xfdc)
2399  #define   GEN8_MCR_SLICE(slice)		(((slice) & 3) << 26)
2400  #define   GEN8_MCR_SLICE_MASK		GEN8_MCR_SLICE(3)
2401  #define   GEN8_MCR_SUBSLICE(subslice)	(((subslice) & 3) << 24)
2402  #define   GEN8_MCR_SUBSLICE_MASK	GEN8_MCR_SUBSLICE(3)
2403  #define RING_IPEIR(base)	_MMIO((base)+0x64)
2404  #define RING_IPEHR(base)	_MMIO((base)+0x68)
2405  /*
2406   * On GEN4, only the render ring INSTDONE exists and has a different
2407   * layout than the GEN7+ version.
2408   * The GEN2 counterpart of this register is GEN2_INSTDONE.
2409   */
2410  #define RING_INSTDONE(base)	_MMIO((base)+0x6c)
2411  #define RING_INSTPS(base)	_MMIO((base)+0x70)
2412  #define RING_DMA_FADD(base)	_MMIO((base)+0x78)
2413  #define RING_DMA_FADD_UDW(base)	_MMIO((base)+0x60) /* gen8+ */
2414  #define RING_INSTPM(base)	_MMIO((base)+0xc0)
2415  #define RING_MI_MODE(base)	_MMIO((base)+0x9c)
2416  #define INSTPS		_MMIO(0x2070) /* 965+ only */
2417  #define GEN4_INSTDONE1	_MMIO(0x207c) /* 965+ only, aka INSTDONE_2 on SNB */
2418  #define ACTHD_I965	_MMIO(0x2074)
2419  #define HWS_PGA		_MMIO(0x2080)
2420  #define HWS_ADDRESS_MASK	0xfffff000
2421  #define HWS_START_ADDRESS_SHIFT	4
2422  #define PWRCTXA		_MMIO(0x2088) /* 965GM+ only */
2423  #define   PWRCTX_EN	(1<<0)
2424  #define IPEIR		_MMIO(0x2088)
2425  #define IPEHR		_MMIO(0x208c)
2426  #define GEN2_INSTDONE	_MMIO(0x2090)
2427  #define NOPID		_MMIO(0x2094)
2428  #define HWSTAM		_MMIO(0x2098)
2429  #define DMA_FADD_I8XX	_MMIO(0x20d0)
2430  #define RING_BBSTATE(base)	_MMIO((base)+0x110)
2431  #define   RING_BB_PPGTT		(1 << 5)
2432  #define RING_SBBADDR(base)	_MMIO((base)+0x114) /* hsw+ */
2433  #define RING_SBBSTATE(base)	_MMIO((base)+0x118) /* hsw+ */
2434  #define RING_SBBADDR_UDW(base)	_MMIO((base)+0x11c) /* gen8+ */
2435  #define RING_BBADDR(base)	_MMIO((base)+0x140)
2436  #define RING_BBADDR_UDW(base)	_MMIO((base)+0x168) /* gen8+ */
2437  #define RING_BB_PER_CTX_PTR(base)	_MMIO((base)+0x1c0) /* gen8+ */
2438  #define RING_INDIRECT_CTX(base)		_MMIO((base)+0x1c4) /* gen8+ */
2439  #define RING_INDIRECT_CTX_OFFSET(base)	_MMIO((base)+0x1c8) /* gen8+ */
2440  #define RING_CTX_TIMESTAMP(base)	_MMIO((base)+0x3a8) /* gen8+ */
2441  
2442  #define ERROR_GEN6	_MMIO(0x40a0)
2443  #define GEN7_ERR_INT	_MMIO(0x44040)
2444  #define   ERR_INT_POISON		(1<<31)
2445  #define   ERR_INT_MMIO_UNCLAIMED	(1<<13)
2446  #define   ERR_INT_PIPE_CRC_DONE_C	(1<<8)
2447  #define   ERR_INT_FIFO_UNDERRUN_C	(1<<6)
2448  #define   ERR_INT_PIPE_CRC_DONE_B	(1<<5)
2449  #define   ERR_INT_FIFO_UNDERRUN_B	(1<<3)
2450  #define   ERR_INT_PIPE_CRC_DONE_A	(1<<2)
2451  #define   ERR_INT_PIPE_CRC_DONE(pipe)	(1<<(2 + (pipe)*3))
2452  #define   ERR_INT_FIFO_UNDERRUN_A	(1<<0)
2453  #define   ERR_INT_FIFO_UNDERRUN(pipe)	(1<<((pipe)*3))
2454  
2455  #define GEN8_FAULT_TLB_DATA0		_MMIO(0x4b10)
2456  #define GEN8_FAULT_TLB_DATA1		_MMIO(0x4b14)
2457  
2458  #define FPGA_DBG		_MMIO(0x42300)
2459  #define   FPGA_DBG_RM_NOCLAIM	(1<<31)
2460  
2461  #define CLAIM_ER		_MMIO(VLV_DISPLAY_BASE + 0x2028)
2462  #define   CLAIM_ER_CLR		(1 << 31)
2463  #define   CLAIM_ER_OVERFLOW	(1 << 16)
2464  #define   CLAIM_ER_CTR_MASK	0xffff
2465  
2466  #define DERRMR		_MMIO(0x44050)
2467  /* Note that HBLANK events are reserved on bdw+ */
2468  #define   DERRMR_PIPEA_SCANLINE		(1<<0)
2469  #define   DERRMR_PIPEA_PRI_FLIP_DONE	(1<<1)
2470  #define   DERRMR_PIPEA_SPR_FLIP_DONE	(1<<2)
2471  #define   DERRMR_PIPEA_VBLANK		(1<<3)
2472  #define   DERRMR_PIPEA_HBLANK		(1<<5)
2473  #define   DERRMR_PIPEB_SCANLINE 	(1<<8)
2474  #define   DERRMR_PIPEB_PRI_FLIP_DONE	(1<<9)
2475  #define   DERRMR_PIPEB_SPR_FLIP_DONE	(1<<10)
2476  #define   DERRMR_PIPEB_VBLANK		(1<<11)
2477  #define   DERRMR_PIPEB_HBLANK		(1<<13)
2478  /* Note that PIPEC is not a simple translation of PIPEA/PIPEB */
2479  #define   DERRMR_PIPEC_SCANLINE		(1<<14)
2480  #define   DERRMR_PIPEC_PRI_FLIP_DONE	(1<<15)
2481  #define   DERRMR_PIPEC_SPR_FLIP_DONE	(1<<20)
2482  #define   DERRMR_PIPEC_VBLANK		(1<<21)
2483  #define   DERRMR_PIPEC_HBLANK		(1<<22)
2484  
2485  
2486  /* GM45+ chicken bits -- debug workaround bits that may be required
2487   * for various sorts of correct behavior.  The top 16 bits of each are
2488   * the enables for writing to the corresponding low bit.
2489   */
2490  #define _3D_CHICKEN	_MMIO(0x2084)
2491  #define  _3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB	(1 << 10)
2492  #define _3D_CHICKEN2	_MMIO(0x208c)
2493  
2494  #define FF_SLICE_CHICKEN	_MMIO(0x2088)
2495  #define  FF_SLICE_CHICKEN_CL_PROVOKING_VERTEX_FIX	(1 << 1)
2496  
2497  /* Disables pipelining of read flushes past the SF-WIZ interface.
2498   * Required on all Ironlake steppings according to the B-Spec, but the
2499   * particular danger of not doing so is not specified.
2500   */
2501  # define _3D_CHICKEN2_WM_READ_PIPELINED			(1 << 14)
2502  #define _3D_CHICKEN3	_MMIO(0x2090)
2503  #define  _3D_CHICKEN_SF_PROVOKING_VERTEX_FIX		(1 << 12)
2504  #define  _3D_CHICKEN_SF_DISABLE_OBJEND_CULL		(1 << 10)
2505  #define  _3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL		(1 << 5)
2506  #define  _3D_CHICKEN_SDE_LIMIT_FIFO_POLY_DEPTH(x)	((x)<<1) /* gen8+ */
2507  #define  _3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH	(1 << 1) /* gen6 */
2508  
2509  #define MI_MODE		_MMIO(0x209c)
2510  # define VS_TIMER_DISPATCH				(1 << 6)
2511  # define MI_FLUSH_ENABLE				(1 << 12)
2512  # define ASYNC_FLIP_PERF_DISABLE			(1 << 14)
2513  # define MODE_IDLE					(1 << 9)
2514  # define STOP_RING					(1 << 8)
2515  
2516  #define GEN6_GT_MODE	_MMIO(0x20d0)
2517  #define GEN7_GT_MODE	_MMIO(0x7008)
2518  #define   GEN6_WIZ_HASHING(hi, lo)			(((hi) << 9) | ((lo) << 7))
2519  #define   GEN6_WIZ_HASHING_8x8				GEN6_WIZ_HASHING(0, 0)
2520  #define   GEN6_WIZ_HASHING_8x4				GEN6_WIZ_HASHING(0, 1)
2521  #define   GEN6_WIZ_HASHING_16x4				GEN6_WIZ_HASHING(1, 0)
2522  #define   GEN6_WIZ_HASHING_MASK				GEN6_WIZ_HASHING(1, 1)
2523  #define   GEN6_TD_FOUR_ROW_DISPATCH_DISABLE		(1 << 5)
2524  #define   GEN9_IZ_HASHING_MASK(slice)			(0x3 << ((slice) * 2))
2525  #define   GEN9_IZ_HASHING(slice, val)			((val) << ((slice) * 2))
2526  
2527  /* chicken reg for WaConextSwitchWithConcurrentTLBInvalidate */
2528  #define GEN9_CSFE_CHICKEN1_RCS _MMIO(0x20D4)
2529  #define   GEN9_PREEMPT_GPGPU_SYNC_SWITCH_DISABLE (1 << 2)
2530  
2531  /* WaClearTdlStateAckDirtyBits */
2532  #define GEN8_STATE_ACK		_MMIO(0x20F0)
2533  #define GEN9_STATE_ACK_SLICE1	_MMIO(0x20F8)
2534  #define GEN9_STATE_ACK_SLICE2	_MMIO(0x2100)
2535  #define   GEN9_STATE_ACK_TDL0 (1 << 12)
2536  #define   GEN9_STATE_ACK_TDL1 (1 << 13)
2537  #define   GEN9_STATE_ACK_TDL2 (1 << 14)
2538  #define   GEN9_STATE_ACK_TDL3 (1 << 15)
2539  #define   GEN9_SUBSLICE_TDL_ACK_BITS \
2540  	(GEN9_STATE_ACK_TDL3 | GEN9_STATE_ACK_TDL2 | \
2541  	 GEN9_STATE_ACK_TDL1 | GEN9_STATE_ACK_TDL0)
2542  
2543  #define GFX_MODE	_MMIO(0x2520)
2544  #define GFX_MODE_GEN7	_MMIO(0x229c)
2545  #define RING_MODE_GEN7(engine)	_MMIO((engine)->mmio_base+0x29c)
2546  #define   GFX_RUN_LIST_ENABLE		(1<<15)
2547  #define   GFX_INTERRUPT_STEERING	(1<<14)
2548  #define   GFX_TLB_INVALIDATE_EXPLICIT	(1<<13)
2549  #define   GFX_SURFACE_FAULT_ENABLE	(1<<12)
2550  #define   GFX_REPLAY_MODE		(1<<11)
2551  #define   GFX_PSMI_GRANULARITY		(1<<10)
2552  #define   GFX_PPGTT_ENABLE		(1<<9)
2553  #define   GEN8_GFX_PPGTT_48B		(1<<7)
2554  
2555  #define   GFX_FORWARD_VBLANK_MASK	(3<<5)
2556  #define   GFX_FORWARD_VBLANK_NEVER	(0<<5)
2557  #define   GFX_FORWARD_VBLANK_ALWAYS	(1<<5)
2558  #define   GFX_FORWARD_VBLANK_COND	(2<<5)
2559  
2560  #define VLV_DISPLAY_BASE 0x180000
2561  #define VLV_MIPI_BASE VLV_DISPLAY_BASE
2562  #define BXT_MIPI_BASE 0x60000
2563  
2564  #define VLV_GU_CTL0	_MMIO(VLV_DISPLAY_BASE + 0x2030)
2565  #define VLV_GU_CTL1	_MMIO(VLV_DISPLAY_BASE + 0x2034)
2566  #define SCPD0		_MMIO(0x209c) /* 915+ only */
2567  #define IER		_MMIO(0x20a0)
2568  #define IIR		_MMIO(0x20a4)
2569  #define IMR		_MMIO(0x20a8)
2570  #define ISR		_MMIO(0x20ac)
2571  #define VLV_GUNIT_CLOCK_GATE	_MMIO(VLV_DISPLAY_BASE + 0x2060)
2572  #define   GINT_DIS		(1<<22)
2573  #define   GCFG_DIS		(1<<8)
2574  #define VLV_GUNIT_CLOCK_GATE2	_MMIO(VLV_DISPLAY_BASE + 0x2064)
2575  #define VLV_IIR_RW	_MMIO(VLV_DISPLAY_BASE + 0x2084)
2576  #define VLV_IER		_MMIO(VLV_DISPLAY_BASE + 0x20a0)
2577  #define VLV_IIR		_MMIO(VLV_DISPLAY_BASE + 0x20a4)
2578  #define VLV_IMR		_MMIO(VLV_DISPLAY_BASE + 0x20a8)
2579  #define VLV_ISR		_MMIO(VLV_DISPLAY_BASE + 0x20ac)
2580  #define VLV_PCBR	_MMIO(VLV_DISPLAY_BASE + 0x2120)
2581  #define VLV_PCBR_ADDR_SHIFT	12
2582  
2583  #define   DISPLAY_PLANE_FLIP_PENDING(plane) (1<<(11-(plane))) /* A and B only */
2584  #define EIR		_MMIO(0x20b0)
2585  #define EMR		_MMIO(0x20b4)
2586  #define ESR		_MMIO(0x20b8)
2587  #define   GM45_ERROR_PAGE_TABLE				(1<<5)
2588  #define   GM45_ERROR_MEM_PRIV				(1<<4)
2589  #define   I915_ERROR_PAGE_TABLE				(1<<4)
2590  #define   GM45_ERROR_CP_PRIV				(1<<3)
2591  #define   I915_ERROR_MEMORY_REFRESH			(1<<1)
2592  #define   I915_ERROR_INSTRUCTION			(1<<0)
2593  #define INSTPM	        _MMIO(0x20c0)
2594  #define   INSTPM_SELF_EN (1<<12) /* 915GM only */
2595  #define   INSTPM_AGPBUSY_INT_EN (1<<11) /* gen3: when disabled, pending interrupts
2596  					will not assert AGPBUSY# and will only
2597  					be delivered when out of C3. */
2598  #define   INSTPM_FORCE_ORDERING				(1<<7) /* GEN6+ */
2599  #define   INSTPM_TLB_INVALIDATE	(1<<9)
2600  #define   INSTPM_SYNC_FLUSH	(1<<5)
2601  #define ACTHD	        _MMIO(0x20c8)
2602  #define MEM_MODE	_MMIO(0x20cc)
2603  #define   MEM_DISPLAY_B_TRICKLE_FEED_DISABLE (1<<3) /* 830 only */
2604  #define   MEM_DISPLAY_A_TRICKLE_FEED_DISABLE (1<<2) /* 830/845 only */
2605  #define   MEM_DISPLAY_TRICKLE_FEED_DISABLE (1<<2) /* 85x only */
2606  #define FW_BLC		_MMIO(0x20d8)
2607  #define FW_BLC2		_MMIO(0x20dc)
2608  #define FW_BLC_SELF	_MMIO(0x20e0) /* 915+ only */
2609  #define   FW_BLC_SELF_EN_MASK      (1<<31)
2610  #define   FW_BLC_SELF_FIFO_MASK    (1<<16) /* 945 only */
2611  #define   FW_BLC_SELF_EN           (1<<15) /* 945 only */
2612  #define MM_BURST_LENGTH     0x00700000
2613  #define MM_FIFO_WATERMARK   0x0001F000
2614  #define LM_BURST_LENGTH     0x00000700
2615  #define LM_FIFO_WATERMARK   0x0000001F
2616  #define MI_ARB_STATE	_MMIO(0x20e4) /* 915+ only */
2617  
2618  /* Make render/texture TLB fetches lower priorty than associated data
2619   *   fetches. This is not turned on by default
2620   */
2621  #define   MI_ARB_RENDER_TLB_LOW_PRIORITY	(1 << 15)
2622  
2623  /* Isoch request wait on GTT enable (Display A/B/C streams).
2624   * Make isoch requests stall on the TLB update. May cause
2625   * display underruns (test mode only)
2626   */
2627  #define   MI_ARB_ISOCH_WAIT_GTT			(1 << 14)
2628  
2629  /* Block grant count for isoch requests when block count is
2630   * set to a finite value.
2631   */
2632  #define   MI_ARB_BLOCK_GRANT_MASK		(3 << 12)
2633  #define   MI_ARB_BLOCK_GRANT_8			(0 << 12)	/* for 3 display planes */
2634  #define   MI_ARB_BLOCK_GRANT_4			(1 << 12)	/* for 2 display planes */
2635  #define   MI_ARB_BLOCK_GRANT_2			(2 << 12)	/* for 1 display plane */
2636  #define   MI_ARB_BLOCK_GRANT_0			(3 << 12)	/* don't use */
2637  
2638  /* Enable render writes to complete in C2/C3/C4 power states.
2639   * If this isn't enabled, render writes are prevented in low
2640   * power states. That seems bad to me.
2641   */
2642  #define   MI_ARB_C3_LP_WRITE_ENABLE		(1 << 11)
2643  
2644  /* This acknowledges an async flip immediately instead
2645   * of waiting for 2TLB fetches.
2646   */
2647  #define   MI_ARB_ASYNC_FLIP_ACK_IMMEDIATE	(1 << 10)
2648  
2649  /* Enables non-sequential data reads through arbiter
2650   */
2651  #define   MI_ARB_DUAL_DATA_PHASE_DISABLE	(1 << 9)
2652  
2653  /* Disable FSB snooping of cacheable write cycles from binner/render
2654   * command stream
2655   */
2656  #define   MI_ARB_CACHE_SNOOP_DISABLE		(1 << 8)
2657  
2658  /* Arbiter time slice for non-isoch streams */
2659  #define   MI_ARB_TIME_SLICE_MASK		(7 << 5)
2660  #define   MI_ARB_TIME_SLICE_1			(0 << 5)
2661  #define   MI_ARB_TIME_SLICE_2			(1 << 5)
2662  #define   MI_ARB_TIME_SLICE_4			(2 << 5)
2663  #define   MI_ARB_TIME_SLICE_6			(3 << 5)
2664  #define   MI_ARB_TIME_SLICE_8			(4 << 5)
2665  #define   MI_ARB_TIME_SLICE_10			(5 << 5)
2666  #define   MI_ARB_TIME_SLICE_14			(6 << 5)
2667  #define   MI_ARB_TIME_SLICE_16			(7 << 5)
2668  
2669  /* Low priority grace period page size */
2670  #define   MI_ARB_LOW_PRIORITY_GRACE_4KB		(0 << 4)	/* default */
2671  #define   MI_ARB_LOW_PRIORITY_GRACE_8KB		(1 << 4)
2672  
2673  /* Disable display A/B trickle feed */
2674  #define   MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE	(1 << 2)
2675  
2676  /* Set display plane priority */
2677  #define   MI_ARB_DISPLAY_PRIORITY_A_B		(0 << 0)	/* display A > display B */
2678  #define   MI_ARB_DISPLAY_PRIORITY_B_A		(1 << 0)	/* display B > display A */
2679  
2680  #define MI_STATE	_MMIO(0x20e4) /* gen2 only */
2681  #define   MI_AGPBUSY_INT_EN			(1 << 1) /* 85x only */
2682  #define   MI_AGPBUSY_830_MODE			(1 << 0) /* 85x only */
2683  
2684  #define CACHE_MODE_0	_MMIO(0x2120) /* 915+ only */
2685  #define   CM0_PIPELINED_RENDER_FLUSH_DISABLE (1<<8)
2686  #define   CM0_IZ_OPT_DISABLE      (1<<6)
2687  #define   CM0_ZR_OPT_DISABLE      (1<<5)
2688  #define	  CM0_STC_EVICT_DISABLE_LRA_SNB	(1<<5)
2689  #define   CM0_DEPTH_EVICT_DISABLE (1<<4)
2690  #define   CM0_COLOR_EVICT_DISABLE (1<<3)
2691  #define   CM0_DEPTH_WRITE_DISABLE (1<<1)
2692  #define   CM0_RC_OP_FLUSH_DISABLE (1<<0)
2693  #define GFX_FLSH_CNTL	_MMIO(0x2170) /* 915+ only */
2694  #define GFX_FLSH_CNTL_GEN6	_MMIO(0x101008)
2695  #define   GFX_FLSH_CNTL_EN	(1<<0)
2696  #define ECOSKPD		_MMIO(0x21d0)
2697  #define   ECO_GATING_CX_ONLY	(1<<3)
2698  #define   ECO_FLIP_DONE		(1<<0)
2699  
2700  #define CACHE_MODE_0_GEN7	_MMIO(0x7000) /* IVB+ */
2701  #define RC_OP_FLUSH_ENABLE (1<<0)
2702  #define   HIZ_RAW_STALL_OPT_DISABLE (1<<2)
2703  #define CACHE_MODE_1		_MMIO(0x7004) /* IVB+ */
2704  #define   PIXEL_SUBSPAN_COLLECT_OPT_DISABLE	(1<<6)
2705  #define   GEN8_4x4_STC_OPTIMIZATION_DISABLE	(1<<6)
2706  #define   GEN9_PARTIAL_RESOLVE_IN_VC_DISABLE	(1<<1)
2707  
2708  #define GEN6_BLITTER_ECOSKPD	_MMIO(0x221d0)
2709  #define   GEN6_BLITTER_LOCK_SHIFT			16
2710  #define   GEN6_BLITTER_FBC_NOTIFY			(1<<3)
2711  
2712  #define GEN6_RC_SLEEP_PSMI_CONTROL	_MMIO(0x2050)
2713  #define   GEN6_PSMI_SLEEP_MSG_DISABLE	(1 << 0)
2714  #define   GEN8_RC_SEMA_IDLE_MSG_DISABLE	(1 << 12)
2715  #define   GEN8_FF_DOP_CLOCK_GATE_DISABLE	(1<<10)
2716  
2717  #define GEN6_RCS_PWR_FSM _MMIO(0x22ac)
2718  #define GEN9_RCS_FE_FSM2 _MMIO(0x22a4)
2719  
2720  /* Fuse readout registers for GT */
2721  #define CHV_FUSE_GT			_MMIO(VLV_DISPLAY_BASE + 0x2168)
2722  #define   CHV_FGT_DISABLE_SS0		(1 << 10)
2723  #define   CHV_FGT_DISABLE_SS1		(1 << 11)
2724  #define   CHV_FGT_EU_DIS_SS0_R0_SHIFT	16
2725  #define   CHV_FGT_EU_DIS_SS0_R0_MASK	(0xf << CHV_FGT_EU_DIS_SS0_R0_SHIFT)
2726  #define   CHV_FGT_EU_DIS_SS0_R1_SHIFT	20
2727  #define   CHV_FGT_EU_DIS_SS0_R1_MASK	(0xf << CHV_FGT_EU_DIS_SS0_R1_SHIFT)
2728  #define   CHV_FGT_EU_DIS_SS1_R0_SHIFT	24
2729  #define   CHV_FGT_EU_DIS_SS1_R0_MASK	(0xf << CHV_FGT_EU_DIS_SS1_R0_SHIFT)
2730  #define   CHV_FGT_EU_DIS_SS1_R1_SHIFT	28
2731  #define   CHV_FGT_EU_DIS_SS1_R1_MASK	(0xf << CHV_FGT_EU_DIS_SS1_R1_SHIFT)
2732  
2733  #define GEN8_FUSE2			_MMIO(0x9120)
2734  #define   GEN8_F2_SS_DIS_SHIFT		21
2735  #define   GEN8_F2_SS_DIS_MASK		(0x7 << GEN8_F2_SS_DIS_SHIFT)
2736  #define   GEN8_F2_S_ENA_SHIFT		25
2737  #define   GEN8_F2_S_ENA_MASK		(0x7 << GEN8_F2_S_ENA_SHIFT)
2738  
2739  #define   GEN9_F2_SS_DIS_SHIFT		20
2740  #define   GEN9_F2_SS_DIS_MASK		(0xf << GEN9_F2_SS_DIS_SHIFT)
2741  
2742  #define GEN8_EU_DISABLE0		_MMIO(0x9134)
2743  #define   GEN8_EU_DIS0_S0_MASK		0xffffff
2744  #define   GEN8_EU_DIS0_S1_SHIFT		24
2745  #define   GEN8_EU_DIS0_S1_MASK		(0xff << GEN8_EU_DIS0_S1_SHIFT)
2746  
2747  #define GEN8_EU_DISABLE1		_MMIO(0x9138)
2748  #define   GEN8_EU_DIS1_S1_MASK		0xffff
2749  #define   GEN8_EU_DIS1_S2_SHIFT		16
2750  #define   GEN8_EU_DIS1_S2_MASK		(0xffff << GEN8_EU_DIS1_S2_SHIFT)
2751  
2752  #define GEN8_EU_DISABLE2		_MMIO(0x913c)
2753  #define   GEN8_EU_DIS2_S2_MASK		0xff
2754  
2755  #define GEN9_EU_DISABLE(slice)		_MMIO(0x9134 + (slice)*0x4)
2756  
2757  #define GEN6_BSD_SLEEP_PSMI_CONTROL	_MMIO(0x12050)
2758  #define   GEN6_BSD_SLEEP_MSG_DISABLE	(1 << 0)
2759  #define   GEN6_BSD_SLEEP_FLUSH_DISABLE	(1 << 2)
2760  #define   GEN6_BSD_SLEEP_INDICATOR	(1 << 3)
2761  #define   GEN6_BSD_GO_INDICATOR		(1 << 4)
2762  
2763  /* On modern GEN architectures interrupt control consists of two sets
2764   * of registers. The first set pertains to the ring generating the
2765   * interrupt. The second control is for the functional block generating the
2766   * interrupt. These are PM, GT, DE, etc.
2767   *
2768   * Luckily *knocks on wood* all the ring interrupt bits match up with the
2769   * GT interrupt bits, so we don't need to duplicate the defines.
2770   *
2771   * These defines should cover us well from SNB->HSW with minor exceptions
2772   * it can also work on ILK.
2773   */
2774  #define GT_BLT_FLUSHDW_NOTIFY_INTERRUPT		(1 << 26)
2775  #define GT_BLT_CS_ERROR_INTERRUPT		(1 << 25)
2776  #define GT_BLT_USER_INTERRUPT			(1 << 22)
2777  #define GT_BSD_CS_ERROR_INTERRUPT		(1 << 15)
2778  #define GT_BSD_USER_INTERRUPT			(1 << 12)
2779  #define GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1	(1 << 11) /* hsw+; rsvd on snb, ivb, vlv */
2780  #define GT_CONTEXT_SWITCH_INTERRUPT		(1 <<  8)
2781  #define GT_RENDER_L3_PARITY_ERROR_INTERRUPT	(1 <<  5) /* !snb */
2782  #define GT_RENDER_PIPECTL_NOTIFY_INTERRUPT	(1 <<  4)
2783  #define GT_RENDER_CS_MASTER_ERROR_INTERRUPT	(1 <<  3)
2784  #define GT_RENDER_SYNC_STATUS_INTERRUPT		(1 <<  2)
2785  #define GT_RENDER_DEBUG_INTERRUPT		(1 <<  1)
2786  #define GT_RENDER_USER_INTERRUPT		(1 <<  0)
2787  
2788  #define PM_VEBOX_CS_ERROR_INTERRUPT		(1 << 12) /* hsw+ */
2789  #define PM_VEBOX_USER_INTERRUPT			(1 << 10) /* hsw+ */
2790  
2791  #define GT_PARITY_ERROR(dev_priv) \
2792  	(GT_RENDER_L3_PARITY_ERROR_INTERRUPT | \
2793  	 (IS_HASWELL(dev_priv) ? GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1 : 0))
2794  
2795  /* These are all the "old" interrupts */
2796  #define ILK_BSD_USER_INTERRUPT				(1<<5)
2797  
2798  #define I915_PM_INTERRUPT				(1<<31)
2799  #define I915_ISP_INTERRUPT				(1<<22)
2800  #define I915_LPE_PIPE_B_INTERRUPT			(1<<21)
2801  #define I915_LPE_PIPE_A_INTERRUPT			(1<<20)
2802  #define I915_MIPIC_INTERRUPT				(1<<19)
2803  #define I915_MIPIA_INTERRUPT				(1<<18)
2804  #define I915_PIPE_CONTROL_NOTIFY_INTERRUPT		(1<<18)
2805  #define I915_DISPLAY_PORT_INTERRUPT			(1<<17)
2806  #define I915_DISPLAY_PIPE_C_HBLANK_INTERRUPT		(1<<16)
2807  #define I915_MASTER_ERROR_INTERRUPT			(1<<15)
2808  #define I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT	(1<<15)
2809  #define I915_DISPLAY_PIPE_B_HBLANK_INTERRUPT		(1<<14)
2810  #define I915_GMCH_THERMAL_SENSOR_EVENT_INTERRUPT	(1<<14) /* p-state */
2811  #define I915_DISPLAY_PIPE_A_HBLANK_INTERRUPT		(1<<13)
2812  #define I915_HWB_OOM_INTERRUPT				(1<<13)
2813  #define I915_LPE_PIPE_C_INTERRUPT			(1<<12)
2814  #define I915_SYNC_STATUS_INTERRUPT			(1<<12)
2815  #define I915_MISC_INTERRUPT				(1<<11)
2816  #define I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT	(1<<11)
2817  #define I915_DISPLAY_PIPE_C_VBLANK_INTERRUPT		(1<<10)
2818  #define I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT	(1<<10)
2819  #define I915_DISPLAY_PIPE_C_EVENT_INTERRUPT		(1<<9)
2820  #define I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT	(1<<9)
2821  #define I915_DISPLAY_PIPE_C_DPBM_INTERRUPT		(1<<8)
2822  #define I915_DISPLAY_PLANE_C_FLIP_PENDING_INTERRUPT	(1<<8)
2823  #define I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT		(1<<7)
2824  #define I915_DISPLAY_PIPE_A_EVENT_INTERRUPT		(1<<6)
2825  #define I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT		(1<<5)
2826  #define I915_DISPLAY_PIPE_B_EVENT_INTERRUPT		(1<<4)
2827  #define I915_DISPLAY_PIPE_A_DPBM_INTERRUPT		(1<<3)
2828  #define I915_DISPLAY_PIPE_B_DPBM_INTERRUPT		(1<<2)
2829  #define I915_DEBUG_INTERRUPT				(1<<2)
2830  #define I915_WINVALID_INTERRUPT				(1<<1)
2831  #define I915_USER_INTERRUPT				(1<<1)
2832  #define I915_ASLE_INTERRUPT				(1<<0)
2833  #define I915_BSD_USER_INTERRUPT				(1<<25)
2834  
2835  #define I915_HDMI_LPE_AUDIO_BASE	(VLV_DISPLAY_BASE + 0x65000)
2836  #define I915_HDMI_LPE_AUDIO_SIZE	0x1000
2837  
2838  /* DisplayPort Audio w/ LPE */
2839  #define VLV_AUD_CHICKEN_BIT_REG		_MMIO(VLV_DISPLAY_BASE + 0x62F38)
2840  #define VLV_CHICKEN_BIT_DBG_ENABLE	(1 << 0)
2841  
2842  #define _VLV_AUD_PORT_EN_B_DBG		(VLV_DISPLAY_BASE + 0x62F20)
2843  #define _VLV_AUD_PORT_EN_C_DBG		(VLV_DISPLAY_BASE + 0x62F30)
2844  #define _VLV_AUD_PORT_EN_D_DBG		(VLV_DISPLAY_BASE + 0x62F34)
2845  #define VLV_AUD_PORT_EN_DBG(port)	_MMIO_PORT3((port) - PORT_B,	   \
2846  						    _VLV_AUD_PORT_EN_B_DBG, \
2847  						    _VLV_AUD_PORT_EN_C_DBG, \
2848  						    _VLV_AUD_PORT_EN_D_DBG)
2849  #define VLV_AMP_MUTE		        (1 << 1)
2850  
2851  #define GEN6_BSD_RNCID			_MMIO(0x12198)
2852  
2853  #define GEN7_FF_THREAD_MODE		_MMIO(0x20a0)
2854  #define   GEN7_FF_SCHED_MASK		0x0077070
2855  #define   GEN8_FF_DS_REF_CNT_FFME	(1 << 19)
2856  #define   GEN7_FF_TS_SCHED_HS1		(0x5<<16)
2857  #define   GEN7_FF_TS_SCHED_HS0		(0x3<<16)
2858  #define   GEN7_FF_TS_SCHED_LOAD_BALANCE	(0x1<<16)
2859  #define   GEN7_FF_TS_SCHED_HW		(0x0<<16) /* Default */
2860  #define   GEN7_FF_VS_REF_CNT_FFME	(1 << 15)
2861  #define   GEN7_FF_VS_SCHED_HS1		(0x5<<12)
2862  #define   GEN7_FF_VS_SCHED_HS0		(0x3<<12)
2863  #define   GEN7_FF_VS_SCHED_LOAD_BALANCE	(0x1<<12) /* Default */
2864  #define   GEN7_FF_VS_SCHED_HW		(0x0<<12)
2865  #define   GEN7_FF_DS_SCHED_HS1		(0x5<<4)
2866  #define   GEN7_FF_DS_SCHED_HS0		(0x3<<4)
2867  #define   GEN7_FF_DS_SCHED_LOAD_BALANCE	(0x1<<4)  /* Default */
2868  #define   GEN7_FF_DS_SCHED_HW		(0x0<<4)
2869  
2870  /*
2871   * Framebuffer compression (915+ only)
2872   */
2873  
2874  #define FBC_CFB_BASE		_MMIO(0x3200) /* 4k page aligned */
2875  #define FBC_LL_BASE		_MMIO(0x3204) /* 4k page aligned */
2876  #define FBC_CONTROL		_MMIO(0x3208)
2877  #define   FBC_CTL_EN		(1<<31)
2878  #define   FBC_CTL_PERIODIC	(1<<30)
2879  #define   FBC_CTL_INTERVAL_SHIFT (16)
2880  #define   FBC_CTL_UNCOMPRESSIBLE (1<<14)
2881  #define   FBC_CTL_C3_IDLE	(1<<13)
2882  #define   FBC_CTL_STRIDE_SHIFT	(5)
2883  #define   FBC_CTL_FENCENO_SHIFT	(0)
2884  #define FBC_COMMAND		_MMIO(0x320c)
2885  #define   FBC_CMD_COMPRESS	(1<<0)
2886  #define FBC_STATUS		_MMIO(0x3210)
2887  #define   FBC_STAT_COMPRESSING	(1<<31)
2888  #define   FBC_STAT_COMPRESSED	(1<<30)
2889  #define   FBC_STAT_MODIFIED	(1<<29)
2890  #define   FBC_STAT_CURRENT_LINE_SHIFT	(0)
2891  #define FBC_CONTROL2		_MMIO(0x3214)
2892  #define   FBC_CTL_FENCE_DBL	(0<<4)
2893  #define   FBC_CTL_IDLE_IMM	(0<<2)
2894  #define   FBC_CTL_IDLE_FULL	(1<<2)
2895  #define   FBC_CTL_IDLE_LINE	(2<<2)
2896  #define   FBC_CTL_IDLE_DEBUG	(3<<2)
2897  #define   FBC_CTL_CPU_FENCE	(1<<1)
2898  #define   FBC_CTL_PLANE(plane)	((plane)<<0)
2899  #define FBC_FENCE_OFF		_MMIO(0x3218) /* BSpec typo has 321Bh */
2900  #define FBC_TAG(i)		_MMIO(0x3300 + (i) * 4)
2901  
2902  #define FBC_LL_SIZE		(1536)
2903  
2904  #define FBC_LLC_READ_CTRL	_MMIO(0x9044)
2905  #define   FBC_LLC_FULLY_OPEN	(1<<30)
2906  
2907  /* Framebuffer compression for GM45+ */
2908  #define DPFC_CB_BASE		_MMIO(0x3200)
2909  #define DPFC_CONTROL		_MMIO(0x3208)
2910  #define   DPFC_CTL_EN		(1<<31)
2911  #define   DPFC_CTL_PLANE(plane)	((plane)<<30)
2912  #define   IVB_DPFC_CTL_PLANE(plane)	((plane)<<29)
2913  #define   DPFC_CTL_FENCE_EN	(1<<29)
2914  #define   IVB_DPFC_CTL_FENCE_EN	(1<<28)
2915  #define   DPFC_CTL_PERSISTENT_MODE	(1<<25)
2916  #define   DPFC_SR_EN		(1<<10)
2917  #define   DPFC_CTL_LIMIT_1X	(0<<6)
2918  #define   DPFC_CTL_LIMIT_2X	(1<<6)
2919  #define   DPFC_CTL_LIMIT_4X	(2<<6)
2920  #define DPFC_RECOMP_CTL		_MMIO(0x320c)
2921  #define   DPFC_RECOMP_STALL_EN	(1<<27)
2922  #define   DPFC_RECOMP_STALL_WM_SHIFT (16)
2923  #define   DPFC_RECOMP_STALL_WM_MASK (0x07ff0000)
2924  #define   DPFC_RECOMP_TIMER_COUNT_SHIFT (0)
2925  #define   DPFC_RECOMP_TIMER_COUNT_MASK (0x0000003f)
2926  #define DPFC_STATUS		_MMIO(0x3210)
2927  #define   DPFC_INVAL_SEG_SHIFT  (16)
2928  #define   DPFC_INVAL_SEG_MASK	(0x07ff0000)
2929  #define   DPFC_COMP_SEG_SHIFT	(0)
2930  #define   DPFC_COMP_SEG_MASK	(0x000007ff)
2931  #define DPFC_STATUS2		_MMIO(0x3214)
2932  #define DPFC_FENCE_YOFF		_MMIO(0x3218)
2933  #define DPFC_CHICKEN		_MMIO(0x3224)
2934  #define   DPFC_HT_MODIFY	(1<<31)
2935  
2936  /* Framebuffer compression for Ironlake */
2937  #define ILK_DPFC_CB_BASE	_MMIO(0x43200)
2938  #define ILK_DPFC_CONTROL	_MMIO(0x43208)
2939  #define   FBC_CTL_FALSE_COLOR	(1<<10)
2940  /* The bit 28-8 is reserved */
2941  #define   DPFC_RESERVED		(0x1FFFFF00)
2942  #define ILK_DPFC_RECOMP_CTL	_MMIO(0x4320c)
2943  #define ILK_DPFC_STATUS		_MMIO(0x43210)
2944  #define  ILK_DPFC_COMP_SEG_MASK	0x7ff
2945  #define IVB_FBC_STATUS2		_MMIO(0x43214)
2946  #define  IVB_FBC_COMP_SEG_MASK	0x7ff
2947  #define  BDW_FBC_COMP_SEG_MASK	0xfff
2948  #define ILK_DPFC_FENCE_YOFF	_MMIO(0x43218)
2949  #define ILK_DPFC_CHICKEN	_MMIO(0x43224)
2950  #define   ILK_DPFC_DISABLE_DUMMY0 (1<<8)
2951  #define   ILK_DPFC_NUKE_ON_ANY_MODIFICATION	(1<<23)
2952  #define ILK_FBC_RT_BASE		_MMIO(0x2128)
2953  #define   ILK_FBC_RT_VALID	(1<<0)
2954  #define   SNB_FBC_FRONT_BUFFER	(1<<1)
2955  
2956  #define ILK_DISPLAY_CHICKEN1	_MMIO(0x42000)
2957  #define   ILK_FBCQ_DIS		(1<<22)
2958  #define	  ILK_PABSTRETCH_DIS	(1<<21)
2959  
2960  
2961  /*
2962   * Framebuffer compression for Sandybridge
2963   *
2964   * The following two registers are of type GTTMMADR
2965   */
2966  #define SNB_DPFC_CTL_SA		_MMIO(0x100100)
2967  #define   SNB_CPU_FENCE_ENABLE	(1<<29)
2968  #define DPFC_CPU_FENCE_OFFSET	_MMIO(0x100104)
2969  
2970  /* Framebuffer compression for Ivybridge */
2971  #define IVB_FBC_RT_BASE			_MMIO(0x7020)
2972  
2973  #define IPS_CTL		_MMIO(0x43408)
2974  #define   IPS_ENABLE	(1 << 31)
2975  
2976  #define MSG_FBC_REND_STATE	_MMIO(0x50380)
2977  #define   FBC_REND_NUKE		(1<<2)
2978  #define   FBC_REND_CACHE_CLEAN	(1<<1)
2979  
2980  /*
2981   * GPIO regs
2982   */
2983  #define GPIOA			_MMIO(0x5010)
2984  #define GPIOB			_MMIO(0x5014)
2985  #define GPIOC			_MMIO(0x5018)
2986  #define GPIOD			_MMIO(0x501c)
2987  #define GPIOE			_MMIO(0x5020)
2988  #define GPIOF			_MMIO(0x5024)
2989  #define GPIOG			_MMIO(0x5028)
2990  #define GPIOH			_MMIO(0x502c)
2991  # define GPIO_CLOCK_DIR_MASK		(1 << 0)
2992  # define GPIO_CLOCK_DIR_IN		(0 << 1)
2993  # define GPIO_CLOCK_DIR_OUT		(1 << 1)
2994  # define GPIO_CLOCK_VAL_MASK		(1 << 2)
2995  # define GPIO_CLOCK_VAL_OUT		(1 << 3)
2996  # define GPIO_CLOCK_VAL_IN		(1 << 4)
2997  # define GPIO_CLOCK_PULLUP_DISABLE	(1 << 5)
2998  # define GPIO_DATA_DIR_MASK		(1 << 8)
2999  # define GPIO_DATA_DIR_IN		(0 << 9)
3000  # define GPIO_DATA_DIR_OUT		(1 << 9)
3001  # define GPIO_DATA_VAL_MASK		(1 << 10)
3002  # define GPIO_DATA_VAL_OUT		(1 << 11)
3003  # define GPIO_DATA_VAL_IN		(1 << 12)
3004  # define GPIO_DATA_PULLUP_DISABLE	(1 << 13)
3005  
3006  #define GMBUS0			_MMIO(dev_priv->gpio_mmio_base + 0x5100) /* clock/port select */
3007  #define   GMBUS_RATE_100KHZ	(0<<8)
3008  #define   GMBUS_RATE_50KHZ	(1<<8)
3009  #define   GMBUS_RATE_400KHZ	(2<<8) /* reserved on Pineview */
3010  #define   GMBUS_RATE_1MHZ	(3<<8) /* reserved on Pineview */
3011  #define   GMBUS_HOLD_EXT	(1<<7) /* 300ns hold time, rsvd on Pineview */
3012  #define   GMBUS_PIN_DISABLED	0
3013  #define   GMBUS_PIN_SSC		1
3014  #define   GMBUS_PIN_VGADDC	2
3015  #define   GMBUS_PIN_PANEL	3
3016  #define   GMBUS_PIN_DPD_CHV	3 /* HDMID_CHV */
3017  #define   GMBUS_PIN_DPC		4 /* HDMIC */
3018  #define   GMBUS_PIN_DPB		5 /* SDVO, HDMIB */
3019  #define   GMBUS_PIN_DPD		6 /* HDMID */
3020  #define   GMBUS_PIN_RESERVED	7 /* 7 reserved */
3021  #define   GMBUS_PIN_1_BXT	1 /* BXT+ (atom) and CNP+ (big core) */
3022  #define   GMBUS_PIN_2_BXT	2
3023  #define   GMBUS_PIN_3_BXT	3
3024  #define   GMBUS_PIN_4_CNP	4
3025  #define   GMBUS_NUM_PINS	7 /* including 0 */
3026  #define GMBUS1			_MMIO(dev_priv->gpio_mmio_base + 0x5104) /* command/status */
3027  #define   GMBUS_SW_CLR_INT	(1<<31)
3028  #define   GMBUS_SW_RDY		(1<<30)
3029  #define   GMBUS_ENT		(1<<29) /* enable timeout */
3030  #define   GMBUS_CYCLE_NONE	(0<<25)
3031  #define   GMBUS_CYCLE_WAIT	(1<<25)
3032  #define   GMBUS_CYCLE_INDEX	(2<<25)
3033  #define   GMBUS_CYCLE_STOP	(4<<25)
3034  #define   GMBUS_BYTE_COUNT_SHIFT 16
3035  #define   GMBUS_BYTE_COUNT_MAX   256U
3036  #define   GMBUS_SLAVE_INDEX_SHIFT 8
3037  #define   GMBUS_SLAVE_ADDR_SHIFT 1
3038  #define   GMBUS_SLAVE_READ	(1<<0)
3039  #define   GMBUS_SLAVE_WRITE	(0<<0)
3040  #define GMBUS2			_MMIO(dev_priv->gpio_mmio_base + 0x5108) /* status */
3041  #define   GMBUS_INUSE		(1<<15)
3042  #define   GMBUS_HW_WAIT_PHASE	(1<<14)
3043  #define   GMBUS_STALL_TIMEOUT	(1<<13)
3044  #define   GMBUS_INT		(1<<12)
3045  #define   GMBUS_HW_RDY		(1<<11)
3046  #define   GMBUS_SATOER		(1<<10)
3047  #define   GMBUS_ACTIVE		(1<<9)
3048  #define GMBUS3			_MMIO(dev_priv->gpio_mmio_base + 0x510c) /* data buffer bytes 3-0 */
3049  #define GMBUS4			_MMIO(dev_priv->gpio_mmio_base + 0x5110) /* interrupt mask (Pineview+) */
3050  #define   GMBUS_SLAVE_TIMEOUT_EN (1<<4)
3051  #define   GMBUS_NAK_EN		(1<<3)
3052  #define   GMBUS_IDLE_EN		(1<<2)
3053  #define   GMBUS_HW_WAIT_EN	(1<<1)
3054  #define   GMBUS_HW_RDY_EN	(1<<0)
3055  #define GMBUS5			_MMIO(dev_priv->gpio_mmio_base + 0x5120) /* byte index */
3056  #define   GMBUS_2BYTE_INDEX_EN	(1<<31)
3057  
3058  /*
3059   * Clock control & power management
3060   */
3061  #define _DPLL_A (dev_priv->info.display_mmio_offset + 0x6014)
3062  #define _DPLL_B (dev_priv->info.display_mmio_offset + 0x6018)
3063  #define _CHV_DPLL_C (dev_priv->info.display_mmio_offset + 0x6030)
3064  #define DPLL(pipe) _MMIO_PIPE3((pipe), _DPLL_A, _DPLL_B, _CHV_DPLL_C)
3065  
3066  #define VGA0	_MMIO(0x6000)
3067  #define VGA1	_MMIO(0x6004)
3068  #define VGA_PD	_MMIO(0x6010)
3069  #define   VGA0_PD_P2_DIV_4	(1 << 7)
3070  #define   VGA0_PD_P1_DIV_2	(1 << 5)
3071  #define   VGA0_PD_P1_SHIFT	0
3072  #define   VGA0_PD_P1_MASK	(0x1f << 0)
3073  #define   VGA1_PD_P2_DIV_4	(1 << 15)
3074  #define   VGA1_PD_P1_DIV_2	(1 << 13)
3075  #define   VGA1_PD_P1_SHIFT	8
3076  #define   VGA1_PD_P1_MASK	(0x1f << 8)
3077  #define   DPLL_VCO_ENABLE		(1 << 31)
3078  #define   DPLL_SDVO_HIGH_SPEED		(1 << 30)
3079  #define   DPLL_DVO_2X_MODE		(1 << 30)
3080  #define   DPLL_EXT_BUFFER_ENABLE_VLV	(1 << 30)
3081  #define   DPLL_SYNCLOCK_ENABLE		(1 << 29)
3082  #define   DPLL_REF_CLK_ENABLE_VLV	(1 << 29)
3083  #define   DPLL_VGA_MODE_DIS		(1 << 28)
3084  #define   DPLLB_MODE_DAC_SERIAL		(1 << 26) /* i915 */
3085  #define   DPLLB_MODE_LVDS		(2 << 26) /* i915 */
3086  #define   DPLL_MODE_MASK		(3 << 26)
3087  #define   DPLL_DAC_SERIAL_P2_CLOCK_DIV_10 (0 << 24) /* i915 */
3088  #define   DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 (1 << 24) /* i915 */
3089  #define   DPLLB_LVDS_P2_CLOCK_DIV_14	(0 << 24) /* i915 */
3090  #define   DPLLB_LVDS_P2_CLOCK_DIV_7	(1 << 24) /* i915 */
3091  #define   DPLL_P2_CLOCK_DIV_MASK	0x03000000 /* i915 */
3092  #define   DPLL_FPA01_P1_POST_DIV_MASK	0x00ff0000 /* i915 */
3093  #define   DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW	0x00ff8000 /* Pineview */
3094  #define   DPLL_LOCK_VLV			(1<<15)
3095  #define   DPLL_INTEGRATED_CRI_CLK_VLV	(1<<14)
3096  #define   DPLL_INTEGRATED_REF_CLK_VLV	(1<<13)
3097  #define   DPLL_SSC_REF_CLK_CHV		(1<<13)
3098  #define   DPLL_PORTC_READY_MASK		(0xf << 4)
3099  #define   DPLL_PORTB_READY_MASK		(0xf)
3100  
3101  #define   DPLL_FPA01_P1_POST_DIV_MASK_I830	0x001f0000
3102  
3103  /* Additional CHV pll/phy registers */
3104  #define DPIO_PHY_STATUS			_MMIO(VLV_DISPLAY_BASE + 0x6240)
3105  #define   DPLL_PORTD_READY_MASK		(0xf)
3106  #define DISPLAY_PHY_CONTROL _MMIO(VLV_DISPLAY_BASE + 0x60100)
3107  #define   PHY_CH_POWER_DOWN_OVRD_EN(phy, ch)	(1 << (2*(phy)+(ch)+27))
3108  #define   PHY_LDO_DELAY_0NS			0x0
3109  #define   PHY_LDO_DELAY_200NS			0x1
3110  #define   PHY_LDO_DELAY_600NS			0x2
3111  #define   PHY_LDO_SEQ_DELAY(delay, phy)		((delay) << (2*(phy)+23))
3112  #define   PHY_CH_POWER_DOWN_OVRD(mask, phy, ch)	((mask) << (8*(phy)+4*(ch)+11))
3113  #define   PHY_CH_SU_PSR				0x1
3114  #define   PHY_CH_DEEP_PSR			0x7
3115  #define   PHY_CH_POWER_MODE(mode, phy, ch)	((mode) << (6*(phy)+3*(ch)+2))
3116  #define   PHY_COM_LANE_RESET_DEASSERT(phy)	(1 << (phy))
3117  #define DISPLAY_PHY_STATUS _MMIO(VLV_DISPLAY_BASE + 0x60104)
3118  #define   PHY_POWERGOOD(phy)	(((phy) == DPIO_PHY0) ? (1<<31) : (1<<30))
3119  #define   PHY_STATUS_CMN_LDO(phy, ch)                   (1 << (6-(6*(phy)+3*(ch))))
3120  #define   PHY_STATUS_SPLINE_LDO(phy, ch, spline)        (1 << (8-(6*(phy)+3*(ch)+(spline))))
3121  
3122  /*
3123   * The i830 generation, in LVDS mode, defines P1 as the bit number set within
3124   * this field (only one bit may be set).
3125   */
3126  #define   DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS	0x003f0000
3127  #define   DPLL_FPA01_P1_POST_DIV_SHIFT	16
3128  #define   DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW 15
3129  /* i830, required in DVO non-gang */
3130  #define   PLL_P2_DIVIDE_BY_4		(1 << 23)
3131  #define   PLL_P1_DIVIDE_BY_TWO		(1 << 21) /* i830 */
3132  #define   PLL_REF_INPUT_DREFCLK		(0 << 13)
3133  #define   PLL_REF_INPUT_TVCLKINA	(1 << 13) /* i830 */
3134  #define   PLL_REF_INPUT_TVCLKINBC	(2 << 13) /* SDVO TVCLKIN */
3135  #define   PLLB_REF_INPUT_SPREADSPECTRUMIN (3 << 13)
3136  #define   PLL_REF_INPUT_MASK		(3 << 13)
3137  #define   PLL_LOAD_PULSE_PHASE_SHIFT		9
3138  /* Ironlake */
3139  # define PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT     9
3140  # define PLL_REF_SDVO_HDMI_MULTIPLIER_MASK      (7 << 9)
3141  # define PLL_REF_SDVO_HDMI_MULTIPLIER(x)	(((x)-1) << 9)
3142  # define DPLL_FPA1_P1_POST_DIV_SHIFT            0
3143  # define DPLL_FPA1_P1_POST_DIV_MASK             0xff
3144  
3145  /*
3146   * Parallel to Serial Load Pulse phase selection.
3147   * Selects the phase for the 10X DPLL clock for the PCIe
3148   * digital display port. The range is 4 to 13; 10 or more
3149   * is just a flip delay. The default is 6
3150   */
3151  #define   PLL_LOAD_PULSE_PHASE_MASK		(0xf << PLL_LOAD_PULSE_PHASE_SHIFT)
3152  #define   DISPLAY_RATE_SELECT_FPA1		(1 << 8)
3153  /*
3154   * SDVO multiplier for 945G/GM. Not used on 965.
3155   */
3156  #define   SDVO_MULTIPLIER_MASK			0x000000ff
3157  #define   SDVO_MULTIPLIER_SHIFT_HIRES		4
3158  #define   SDVO_MULTIPLIER_SHIFT_VGA		0
3159  
3160  #define _DPLL_A_MD (dev_priv->info.display_mmio_offset + 0x601c)
3161  #define _DPLL_B_MD (dev_priv->info.display_mmio_offset + 0x6020)
3162  #define _CHV_DPLL_C_MD (dev_priv->info.display_mmio_offset + 0x603c)
3163  #define DPLL_MD(pipe) _MMIO_PIPE3((pipe), _DPLL_A_MD, _DPLL_B_MD, _CHV_DPLL_C_MD)
3164  
3165  /*
3166   * UDI pixel divider, controlling how many pixels are stuffed into a packet.
3167   *
3168   * Value is pixels minus 1.  Must be set to 1 pixel for SDVO.
3169   */
3170  #define   DPLL_MD_UDI_DIVIDER_MASK		0x3f000000
3171  #define   DPLL_MD_UDI_DIVIDER_SHIFT		24
3172  /* UDI pixel divider for VGA, same as DPLL_MD_UDI_DIVIDER_MASK. */
3173  #define   DPLL_MD_VGA_UDI_DIVIDER_MASK		0x003f0000
3174  #define   DPLL_MD_VGA_UDI_DIVIDER_SHIFT		16
3175  /*
3176   * SDVO/UDI pixel multiplier.
3177   *
3178   * SDVO requires that the bus clock rate be between 1 and 2 Ghz, and the bus
3179   * clock rate is 10 times the DPLL clock.  At low resolution/refresh rate
3180   * modes, the bus rate would be below the limits, so SDVO allows for stuffing
3181   * dummy bytes in the datastream at an increased clock rate, with both sides of
3182   * the link knowing how many bytes are fill.
3183   *
3184   * So, for a mode with a dotclock of 65Mhz, we would want to double the clock
3185   * rate to 130Mhz to get a bus rate of 1.30Ghz.  The DPLL clock rate would be
3186   * set to 130Mhz, and the SDVO multiplier set to 2x in this register and
3187   * through an SDVO command.
3188   *
3189   * This register field has values of multiplication factor minus 1, with
3190   * a maximum multiplier of 5 for SDVO.
3191   */
3192  #define   DPLL_MD_UDI_MULTIPLIER_MASK		0x00003f00
3193  #define   DPLL_MD_UDI_MULTIPLIER_SHIFT		8
3194  /*
3195   * SDVO/UDI pixel multiplier for VGA, same as DPLL_MD_UDI_MULTIPLIER_MASK.
3196   * This best be set to the default value (3) or the CRT won't work. No,
3197   * I don't entirely understand what this does...
3198   */
3199  #define   DPLL_MD_VGA_UDI_MULTIPLIER_MASK	0x0000003f
3200  #define   DPLL_MD_VGA_UDI_MULTIPLIER_SHIFT	0
3201  
3202  #define RAWCLK_FREQ_VLV		_MMIO(VLV_DISPLAY_BASE + 0x6024)
3203  
3204  #define _FPA0	0x6040
3205  #define _FPA1	0x6044
3206  #define _FPB0	0x6048
3207  #define _FPB1	0x604c
3208  #define FP0(pipe) _MMIO_PIPE(pipe, _FPA0, _FPB0)
3209  #define FP1(pipe) _MMIO_PIPE(pipe, _FPA1, _FPB1)
3210  #define   FP_N_DIV_MASK		0x003f0000
3211  #define   FP_N_PINEVIEW_DIV_MASK	0x00ff0000
3212  #define   FP_N_DIV_SHIFT		16
3213  #define   FP_M1_DIV_MASK	0x00003f00
3214  #define   FP_M1_DIV_SHIFT		 8
3215  #define   FP_M2_DIV_MASK	0x0000003f
3216  #define   FP_M2_PINEVIEW_DIV_MASK	0x000000ff
3217  #define   FP_M2_DIV_SHIFT		 0
3218  #define DPLL_TEST	_MMIO(0x606c)
3219  #define   DPLLB_TEST_SDVO_DIV_1		(0 << 22)
3220  #define   DPLLB_TEST_SDVO_DIV_2		(1 << 22)
3221  #define   DPLLB_TEST_SDVO_DIV_4		(2 << 22)
3222  #define   DPLLB_TEST_SDVO_DIV_MASK	(3 << 22)
3223  #define   DPLLB_TEST_N_BYPASS		(1 << 19)
3224  #define   DPLLB_TEST_M_BYPASS		(1 << 18)
3225  #define   DPLLB_INPUT_BUFFER_ENABLE	(1 << 16)
3226  #define   DPLLA_TEST_N_BYPASS		(1 << 3)
3227  #define   DPLLA_TEST_M_BYPASS		(1 << 2)
3228  #define   DPLLA_INPUT_BUFFER_ENABLE	(1 << 0)
3229  #define D_STATE		_MMIO(0x6104)
3230  #define  DSTATE_GFX_RESET_I830			(1<<6)
3231  #define  DSTATE_PLL_D3_OFF			(1<<3)
3232  #define  DSTATE_GFX_CLOCK_GATING		(1<<1)
3233  #define  DSTATE_DOT_CLOCK_GATING		(1<<0)
3234  #define DSPCLK_GATE_D	_MMIO(dev_priv->info.display_mmio_offset + 0x6200)
3235  # define DPUNIT_B_CLOCK_GATE_DISABLE		(1 << 30) /* 965 */
3236  # define VSUNIT_CLOCK_GATE_DISABLE		(1 << 29) /* 965 */
3237  # define VRHUNIT_CLOCK_GATE_DISABLE		(1 << 28) /* 965 */
3238  # define VRDUNIT_CLOCK_GATE_DISABLE		(1 << 27) /* 965 */
3239  # define AUDUNIT_CLOCK_GATE_DISABLE		(1 << 26) /* 965 */
3240  # define DPUNIT_A_CLOCK_GATE_DISABLE		(1 << 25) /* 965 */
3241  # define DPCUNIT_CLOCK_GATE_DISABLE		(1 << 24) /* 965 */
3242  # define TVRUNIT_CLOCK_GATE_DISABLE		(1 << 23) /* 915-945 */
3243  # define TVCUNIT_CLOCK_GATE_DISABLE		(1 << 22) /* 915-945 */
3244  # define TVFUNIT_CLOCK_GATE_DISABLE		(1 << 21) /* 915-945 */
3245  # define TVEUNIT_CLOCK_GATE_DISABLE		(1 << 20) /* 915-945 */
3246  # define DVSUNIT_CLOCK_GATE_DISABLE		(1 << 19) /* 915-945 */
3247  # define DSSUNIT_CLOCK_GATE_DISABLE		(1 << 18) /* 915-945 */
3248  # define DDBUNIT_CLOCK_GATE_DISABLE		(1 << 17) /* 915-945 */
3249  # define DPRUNIT_CLOCK_GATE_DISABLE		(1 << 16) /* 915-945 */
3250  # define DPFUNIT_CLOCK_GATE_DISABLE		(1 << 15) /* 915-945 */
3251  # define DPBMUNIT_CLOCK_GATE_DISABLE		(1 << 14) /* 915-945 */
3252  # define DPLSUNIT_CLOCK_GATE_DISABLE		(1 << 13) /* 915-945 */
3253  # define DPLUNIT_CLOCK_GATE_DISABLE		(1 << 12) /* 915-945 */
3254  # define DPOUNIT_CLOCK_GATE_DISABLE		(1 << 11)
3255  # define DPBUNIT_CLOCK_GATE_DISABLE		(1 << 10)
3256  # define DCUNIT_CLOCK_GATE_DISABLE		(1 << 9)
3257  # define DPUNIT_CLOCK_GATE_DISABLE		(1 << 8)
3258  # define VRUNIT_CLOCK_GATE_DISABLE		(1 << 7) /* 915+: reserved */
3259  # define OVHUNIT_CLOCK_GATE_DISABLE		(1 << 6) /* 830-865 */
3260  # define DPIOUNIT_CLOCK_GATE_DISABLE		(1 << 6) /* 915-945 */
3261  # define OVFUNIT_CLOCK_GATE_DISABLE		(1 << 5)
3262  # define OVBUNIT_CLOCK_GATE_DISABLE		(1 << 4)
3263  /*
3264   * This bit must be set on the 830 to prevent hangs when turning off the
3265   * overlay scaler.
3266   */
3267  # define OVRUNIT_CLOCK_GATE_DISABLE		(1 << 3)
3268  # define OVCUNIT_CLOCK_GATE_DISABLE		(1 << 2)
3269  # define OVUUNIT_CLOCK_GATE_DISABLE		(1 << 1)
3270  # define ZVUNIT_CLOCK_GATE_DISABLE		(1 << 0) /* 830 */
3271  # define OVLUNIT_CLOCK_GATE_DISABLE		(1 << 0) /* 845,865 */
3272  
3273  #define RENCLK_GATE_D1		_MMIO(0x6204)
3274  # define BLITTER_CLOCK_GATE_DISABLE		(1 << 13) /* 945GM only */
3275  # define MPEG_CLOCK_GATE_DISABLE		(1 << 12) /* 945GM only */
3276  # define PC_FE_CLOCK_GATE_DISABLE		(1 << 11)
3277  # define PC_BE_CLOCK_GATE_DISABLE		(1 << 10)
3278  # define WINDOWER_CLOCK_GATE_DISABLE		(1 << 9)
3279  # define INTERPOLATOR_CLOCK_GATE_DISABLE	(1 << 8)
3280  # define COLOR_CALCULATOR_CLOCK_GATE_DISABLE	(1 << 7)
3281  # define MOTION_COMP_CLOCK_GATE_DISABLE		(1 << 6)
3282  # define MAG_CLOCK_GATE_DISABLE			(1 << 5)
3283  /* This bit must be unset on 855,865 */
3284  # define MECI_CLOCK_GATE_DISABLE		(1 << 4)
3285  # define DCMP_CLOCK_GATE_DISABLE		(1 << 3)
3286  # define MEC_CLOCK_GATE_DISABLE			(1 << 2)
3287  # define MECO_CLOCK_GATE_DISABLE		(1 << 1)
3288  /* This bit must be set on 855,865. */
3289  # define SV_CLOCK_GATE_DISABLE			(1 << 0)
3290  # define I915_MPEG_CLOCK_GATE_DISABLE		(1 << 16)
3291  # define I915_VLD_IP_PR_CLOCK_GATE_DISABLE	(1 << 15)
3292  # define I915_MOTION_COMP_CLOCK_GATE_DISABLE	(1 << 14)
3293  # define I915_BD_BF_CLOCK_GATE_DISABLE		(1 << 13)
3294  # define I915_SF_SE_CLOCK_GATE_DISABLE		(1 << 12)
3295  # define I915_WM_CLOCK_GATE_DISABLE		(1 << 11)
3296  # define I915_IZ_CLOCK_GATE_DISABLE		(1 << 10)
3297  # define I915_PI_CLOCK_GATE_DISABLE		(1 << 9)
3298  # define I915_DI_CLOCK_GATE_DISABLE		(1 << 8)
3299  # define I915_SH_SV_CLOCK_GATE_DISABLE		(1 << 7)
3300  # define I915_PL_DG_QC_FT_CLOCK_GATE_DISABLE	(1 << 6)
3301  # define I915_SC_CLOCK_GATE_DISABLE		(1 << 5)
3302  # define I915_FL_CLOCK_GATE_DISABLE		(1 << 4)
3303  # define I915_DM_CLOCK_GATE_DISABLE		(1 << 3)
3304  # define I915_PS_CLOCK_GATE_DISABLE		(1 << 2)
3305  # define I915_CC_CLOCK_GATE_DISABLE		(1 << 1)
3306  # define I915_BY_CLOCK_GATE_DISABLE		(1 << 0)
3307  
3308  # define I965_RCZ_CLOCK_GATE_DISABLE		(1 << 30)
3309  /* This bit must always be set on 965G/965GM */
3310  # define I965_RCC_CLOCK_GATE_DISABLE		(1 << 29)
3311  # define I965_RCPB_CLOCK_GATE_DISABLE		(1 << 28)
3312  # define I965_DAP_CLOCK_GATE_DISABLE		(1 << 27)
3313  # define I965_ROC_CLOCK_GATE_DISABLE		(1 << 26)
3314  # define I965_GW_CLOCK_GATE_DISABLE		(1 << 25)
3315  # define I965_TD_CLOCK_GATE_DISABLE		(1 << 24)
3316  /* This bit must always be set on 965G */
3317  # define I965_ISC_CLOCK_GATE_DISABLE		(1 << 23)
3318  # define I965_IC_CLOCK_GATE_DISABLE		(1 << 22)
3319  # define I965_EU_CLOCK_GATE_DISABLE		(1 << 21)
3320  # define I965_IF_CLOCK_GATE_DISABLE		(1 << 20)
3321  # define I965_TC_CLOCK_GATE_DISABLE		(1 << 19)
3322  # define I965_SO_CLOCK_GATE_DISABLE		(1 << 17)
3323  # define I965_FBC_CLOCK_GATE_DISABLE		(1 << 16)
3324  # define I965_MARI_CLOCK_GATE_DISABLE		(1 << 15)
3325  # define I965_MASF_CLOCK_GATE_DISABLE		(1 << 14)
3326  # define I965_MAWB_CLOCK_GATE_DISABLE		(1 << 13)
3327  # define I965_EM_CLOCK_GATE_DISABLE		(1 << 12)
3328  # define I965_UC_CLOCK_GATE_DISABLE		(1 << 11)
3329  # define I965_SI_CLOCK_GATE_DISABLE		(1 << 6)
3330  # define I965_MT_CLOCK_GATE_DISABLE		(1 << 5)
3331  # define I965_PL_CLOCK_GATE_DISABLE		(1 << 4)
3332  # define I965_DG_CLOCK_GATE_DISABLE		(1 << 3)
3333  # define I965_QC_CLOCK_GATE_DISABLE		(1 << 2)
3334  # define I965_FT_CLOCK_GATE_DISABLE		(1 << 1)
3335  # define I965_DM_CLOCK_GATE_DISABLE		(1 << 0)
3336  
3337  #define RENCLK_GATE_D2		_MMIO(0x6208)
3338  #define VF_UNIT_CLOCK_GATE_DISABLE		(1 << 9)
3339  #define GS_UNIT_CLOCK_GATE_DISABLE		(1 << 7)
3340  #define CL_UNIT_CLOCK_GATE_DISABLE		(1 << 6)
3341  
3342  #define VDECCLK_GATE_D		_MMIO(0x620C)		/* g4x only */
3343  #define  VCP_UNIT_CLOCK_GATE_DISABLE		(1 << 4)
3344  
3345  #define RAMCLK_GATE_D		_MMIO(0x6210)		/* CRL only */
3346  #define DEUC			_MMIO(0x6214)          /* CRL only */
3347  
3348  #define FW_BLC_SELF_VLV		_MMIO(VLV_DISPLAY_BASE + 0x6500)
3349  #define  FW_CSPWRDWNEN		(1<<15)
3350  
3351  #define MI_ARB_VLV		_MMIO(VLV_DISPLAY_BASE + 0x6504)
3352  
3353  #define CZCLK_CDCLK_FREQ_RATIO	_MMIO(VLV_DISPLAY_BASE + 0x6508)
3354  #define   CDCLK_FREQ_SHIFT	4
3355  #define   CDCLK_FREQ_MASK	(0x1f << CDCLK_FREQ_SHIFT)
3356  #define   CZCLK_FREQ_MASK	0xf
3357  
3358  #define GCI_CONTROL		_MMIO(VLV_DISPLAY_BASE + 0x650C)
3359  #define   PFI_CREDIT_63		(9 << 28)		/* chv only */
3360  #define   PFI_CREDIT_31		(8 << 28)		/* chv only */
3361  #define   PFI_CREDIT(x)		(((x) - 8) << 28)	/* 8-15 */
3362  #define   PFI_CREDIT_RESEND	(1 << 27)
3363  #define   VGA_FAST_MODE_DISABLE	(1 << 14)
3364  
3365  #define GMBUSFREQ_VLV		_MMIO(VLV_DISPLAY_BASE + 0x6510)
3366  
3367  /*
3368   * Palette regs
3369   */
3370  #define PALETTE_A_OFFSET 0xa000
3371  #define PALETTE_B_OFFSET 0xa800
3372  #define CHV_PALETTE_C_OFFSET 0xc000
3373  #define PALETTE(pipe, i) _MMIO(dev_priv->info.palette_offsets[pipe] +	\
3374  			      dev_priv->info.display_mmio_offset + (i) * 4)
3375  
3376  /* MCH MMIO space */
3377  
3378  /*
3379   * MCHBAR mirror.
3380   *
3381   * This mirrors the MCHBAR MMIO space whose location is determined by
3382   * device 0 function 0's pci config register 0x44 or 0x48 and matches it in
3383   * every way.  It is not accessible from the CP register read instructions.
3384   *
3385   * Starting from Haswell, you can't write registers using the MCHBAR mirror,
3386   * just read.
3387   */
3388  #define MCHBAR_MIRROR_BASE	0x10000
3389  
3390  #define MCHBAR_MIRROR_BASE_SNB	0x140000
3391  
3392  #define CTG_STOLEN_RESERVED		_MMIO(MCHBAR_MIRROR_BASE + 0x34)
3393  #define ELK_STOLEN_RESERVED		_MMIO(MCHBAR_MIRROR_BASE + 0x48)
3394  #define G4X_STOLEN_RESERVED_ADDR1_MASK	(0xFFFF << 16)
3395  #define G4X_STOLEN_RESERVED_ADDR2_MASK	(0xFFF << 4)
3396  
3397  /* Memory controller frequency in MCHBAR for Haswell (possible SNB+) */
3398  #define DCLK _MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5e04)
3399  
3400  /* 915-945 and GM965 MCH register controlling DRAM channel access */
3401  #define DCC			_MMIO(MCHBAR_MIRROR_BASE + 0x200)
3402  #define DCC_ADDRESSING_MODE_SINGLE_CHANNEL		(0 << 0)
3403  #define DCC_ADDRESSING_MODE_DUAL_CHANNEL_ASYMMETRIC	(1 << 0)
3404  #define DCC_ADDRESSING_MODE_DUAL_CHANNEL_INTERLEAVED	(2 << 0)
3405  #define DCC_ADDRESSING_MODE_MASK			(3 << 0)
3406  #define DCC_CHANNEL_XOR_DISABLE				(1 << 10)
3407  #define DCC_CHANNEL_XOR_BIT_17				(1 << 9)
3408  #define DCC2			_MMIO(MCHBAR_MIRROR_BASE + 0x204)
3409  #define DCC2_MODIFIED_ENHANCED_DISABLE			(1 << 20)
3410  
3411  /* Pineview MCH register contains DDR3 setting */
3412  #define CSHRDDR3CTL            _MMIO(MCHBAR_MIRROR_BASE + 0x1a8)
3413  #define CSHRDDR3CTL_DDR3       (1 << 2)
3414  
3415  /* 965 MCH register controlling DRAM channel configuration */
3416  #define C0DRB3			_MMIO(MCHBAR_MIRROR_BASE + 0x206)
3417  #define C1DRB3			_MMIO(MCHBAR_MIRROR_BASE + 0x606)
3418  
3419  /* snb MCH registers for reading the DRAM channel configuration */
3420  #define MAD_DIMM_C0			_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5004)
3421  #define MAD_DIMM_C1			_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5008)
3422  #define MAD_DIMM_C2			_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x500C)
3423  #define   MAD_DIMM_ECC_MASK		(0x3 << 24)
3424  #define   MAD_DIMM_ECC_OFF		(0x0 << 24)
3425  #define   MAD_DIMM_ECC_IO_ON_LOGIC_OFF	(0x1 << 24)
3426  #define   MAD_DIMM_ECC_IO_OFF_LOGIC_ON	(0x2 << 24)
3427  #define   MAD_DIMM_ECC_ON		(0x3 << 24)
3428  #define   MAD_DIMM_ENH_INTERLEAVE	(0x1 << 22)
3429  #define   MAD_DIMM_RANK_INTERLEAVE	(0x1 << 21)
3430  #define   MAD_DIMM_B_WIDTH_X16		(0x1 << 20) /* X8 chips if unset */
3431  #define   MAD_DIMM_A_WIDTH_X16		(0x1 << 19) /* X8 chips if unset */
3432  #define   MAD_DIMM_B_DUAL_RANK		(0x1 << 18)
3433  #define   MAD_DIMM_A_DUAL_RANK		(0x1 << 17)
3434  #define   MAD_DIMM_A_SELECT		(0x1 << 16)
3435  /* DIMM sizes are in multiples of 256mb. */
3436  #define   MAD_DIMM_B_SIZE_SHIFT		8
3437  #define   MAD_DIMM_B_SIZE_MASK		(0xff << MAD_DIMM_B_SIZE_SHIFT)
3438  #define   MAD_DIMM_A_SIZE_SHIFT		0
3439  #define   MAD_DIMM_A_SIZE_MASK		(0xff << MAD_DIMM_A_SIZE_SHIFT)
3440  
3441  /* snb MCH registers for priority tuning */
3442  #define MCH_SSKPD			_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5d10)
3443  #define   MCH_SSKPD_WM0_MASK		0x3f
3444  #define   MCH_SSKPD_WM0_VAL		0xc
3445  
3446  #define MCH_SECP_NRG_STTS		_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x592c)
3447  
3448  /* Clocking configuration register */
3449  #define CLKCFG			_MMIO(MCHBAR_MIRROR_BASE + 0xc00)
3450  #define CLKCFG_FSB_400					(5 << 0)	/* hrawclk 100 */
3451  #define CLKCFG_FSB_533					(1 << 0)	/* hrawclk 133 */
3452  #define CLKCFG_FSB_667					(3 << 0)	/* hrawclk 166 */
3453  #define CLKCFG_FSB_800					(2 << 0)	/* hrawclk 200 */
3454  #define CLKCFG_FSB_1067					(6 << 0)	/* hrawclk 266 */
3455  #define CLKCFG_FSB_1067_ALT				(0 << 0)	/* hrawclk 266 */
3456  #define CLKCFG_FSB_1333					(7 << 0)	/* hrawclk 333 */
3457  /*
3458   * Note that on at least on ELK the below value is reported for both
3459   * 333 and 400 MHz BIOS FSB setting, but given that the gmch datasheet
3460   * lists only 200/266/333 MHz FSB as supported let's decode it as 333 MHz.
3461   */
3462  #define CLKCFG_FSB_1333_ALT				(4 << 0)	/* hrawclk 333 */
3463  #define CLKCFG_FSB_MASK					(7 << 0)
3464  #define CLKCFG_MEM_533					(1 << 4)
3465  #define CLKCFG_MEM_667					(2 << 4)
3466  #define CLKCFG_MEM_800					(3 << 4)
3467  #define CLKCFG_MEM_MASK					(7 << 4)
3468  
3469  #define HPLLVCO                 _MMIO(MCHBAR_MIRROR_BASE + 0xc38)
3470  #define HPLLVCO_MOBILE          _MMIO(MCHBAR_MIRROR_BASE + 0xc0f)
3471  
3472  #define TSC1			_MMIO(0x11001)
3473  #define   TSE			(1<<0)
3474  #define TR1			_MMIO(0x11006)
3475  #define TSFS			_MMIO(0x11020)
3476  #define   TSFS_SLOPE_MASK	0x0000ff00
3477  #define   TSFS_SLOPE_SHIFT	8
3478  #define   TSFS_INTR_MASK	0x000000ff
3479  
3480  #define CRSTANDVID		_MMIO(0x11100)
3481  #define PXVFREQ(fstart)		_MMIO(0x11110 + (fstart) * 4)  /* P[0-15]VIDFREQ (0x1114c) (Ironlake) */
3482  #define   PXVFREQ_PX_MASK	0x7f000000
3483  #define   PXVFREQ_PX_SHIFT	24
3484  #define VIDFREQ_BASE		_MMIO(0x11110)
3485  #define VIDFREQ1		_MMIO(0x11110) /* VIDFREQ1-4 (0x1111c) (Cantiga) */
3486  #define VIDFREQ2		_MMIO(0x11114)
3487  #define VIDFREQ3		_MMIO(0x11118)
3488  #define VIDFREQ4		_MMIO(0x1111c)
3489  #define   VIDFREQ_P0_MASK	0x1f000000
3490  #define   VIDFREQ_P0_SHIFT	24
3491  #define   VIDFREQ_P0_CSCLK_MASK	0x00f00000
3492  #define   VIDFREQ_P0_CSCLK_SHIFT 20
3493  #define   VIDFREQ_P0_CRCLK_MASK	0x000f0000
3494  #define   VIDFREQ_P0_CRCLK_SHIFT 16
3495  #define   VIDFREQ_P1_MASK	0x00001f00
3496  #define   VIDFREQ_P1_SHIFT	8
3497  #define   VIDFREQ_P1_CSCLK_MASK	0x000000f0
3498  #define   VIDFREQ_P1_CSCLK_SHIFT 4
3499  #define   VIDFREQ_P1_CRCLK_MASK	0x0000000f
3500  #define INTTOEXT_BASE_ILK	_MMIO(0x11300)
3501  #define INTTOEXT_BASE		_MMIO(0x11120) /* INTTOEXT1-8 (0x1113c) */
3502  #define   INTTOEXT_MAP3_SHIFT	24
3503  #define   INTTOEXT_MAP3_MASK	(0x1f << INTTOEXT_MAP3_SHIFT)
3504  #define   INTTOEXT_MAP2_SHIFT	16
3505  #define   INTTOEXT_MAP2_MASK	(0x1f << INTTOEXT_MAP2_SHIFT)
3506  #define   INTTOEXT_MAP1_SHIFT	8
3507  #define   INTTOEXT_MAP1_MASK	(0x1f << INTTOEXT_MAP1_SHIFT)
3508  #define   INTTOEXT_MAP0_SHIFT	0
3509  #define   INTTOEXT_MAP0_MASK	(0x1f << INTTOEXT_MAP0_SHIFT)
3510  #define MEMSWCTL		_MMIO(0x11170) /* Ironlake only */
3511  #define   MEMCTL_CMD_MASK	0xe000
3512  #define   MEMCTL_CMD_SHIFT	13
3513  #define   MEMCTL_CMD_RCLK_OFF	0
3514  #define   MEMCTL_CMD_RCLK_ON	1
3515  #define   MEMCTL_CMD_CHFREQ	2
3516  #define   MEMCTL_CMD_CHVID	3
3517  #define   MEMCTL_CMD_VMMOFF	4
3518  #define   MEMCTL_CMD_VMMON	5
3519  #define   MEMCTL_CMD_STS	(1<<12) /* write 1 triggers command, clears
3520  					   when command complete */
3521  #define   MEMCTL_FREQ_MASK	0x0f00 /* jitter, from 0-15 */
3522  #define   MEMCTL_FREQ_SHIFT	8
3523  #define   MEMCTL_SFCAVM		(1<<7)
3524  #define   MEMCTL_TGT_VID_MASK	0x007f
3525  #define MEMIHYST		_MMIO(0x1117c)
3526  #define MEMINTREN		_MMIO(0x11180) /* 16 bits */
3527  #define   MEMINT_RSEXIT_EN	(1<<8)
3528  #define   MEMINT_CX_SUPR_EN	(1<<7)
3529  #define   MEMINT_CONT_BUSY_EN	(1<<6)
3530  #define   MEMINT_AVG_BUSY_EN	(1<<5)
3531  #define   MEMINT_EVAL_CHG_EN	(1<<4)
3532  #define   MEMINT_MON_IDLE_EN	(1<<3)
3533  #define   MEMINT_UP_EVAL_EN	(1<<2)
3534  #define   MEMINT_DOWN_EVAL_EN	(1<<1)
3535  #define   MEMINT_SW_CMD_EN	(1<<0)
3536  #define MEMINTRSTR		_MMIO(0x11182) /* 16 bits */
3537  #define   MEM_RSEXIT_MASK	0xc000
3538  #define   MEM_RSEXIT_SHIFT	14
3539  #define   MEM_CONT_BUSY_MASK	0x3000
3540  #define   MEM_CONT_BUSY_SHIFT	12
3541  #define   MEM_AVG_BUSY_MASK	0x0c00
3542  #define   MEM_AVG_BUSY_SHIFT	10
3543  #define   MEM_EVAL_CHG_MASK	0x0300
3544  #define   MEM_EVAL_BUSY_SHIFT	8
3545  #define   MEM_MON_IDLE_MASK	0x00c0
3546  #define   MEM_MON_IDLE_SHIFT	6
3547  #define   MEM_UP_EVAL_MASK	0x0030
3548  #define   MEM_UP_EVAL_SHIFT	4
3549  #define   MEM_DOWN_EVAL_MASK	0x000c
3550  #define   MEM_DOWN_EVAL_SHIFT	2
3551  #define   MEM_SW_CMD_MASK	0x0003
3552  #define   MEM_INT_STEER_GFX	0
3553  #define   MEM_INT_STEER_CMR	1
3554  #define   MEM_INT_STEER_SMI	2
3555  #define   MEM_INT_STEER_SCI	3
3556  #define MEMINTRSTS		_MMIO(0x11184)
3557  #define   MEMINT_RSEXIT		(1<<7)
3558  #define   MEMINT_CONT_BUSY	(1<<6)
3559  #define   MEMINT_AVG_BUSY	(1<<5)
3560  #define   MEMINT_EVAL_CHG	(1<<4)
3561  #define   MEMINT_MON_IDLE	(1<<3)
3562  #define   MEMINT_UP_EVAL	(1<<2)
3563  #define   MEMINT_DOWN_EVAL	(1<<1)
3564  #define   MEMINT_SW_CMD		(1<<0)
3565  #define MEMMODECTL		_MMIO(0x11190)
3566  #define   MEMMODE_BOOST_EN	(1<<31)
3567  #define   MEMMODE_BOOST_FREQ_MASK 0x0f000000 /* jitter for boost, 0-15 */
3568  #define   MEMMODE_BOOST_FREQ_SHIFT 24
3569  #define   MEMMODE_IDLE_MODE_MASK 0x00030000
3570  #define   MEMMODE_IDLE_MODE_SHIFT 16
3571  #define   MEMMODE_IDLE_MODE_EVAL 0
3572  #define   MEMMODE_IDLE_MODE_CONT 1
3573  #define   MEMMODE_HWIDLE_EN	(1<<15)
3574  #define   MEMMODE_SWMODE_EN	(1<<14)
3575  #define   MEMMODE_RCLK_GATE	(1<<13)
3576  #define   MEMMODE_HW_UPDATE	(1<<12)
3577  #define   MEMMODE_FSTART_MASK	0x00000f00 /* starting jitter, 0-15 */
3578  #define   MEMMODE_FSTART_SHIFT	8
3579  #define   MEMMODE_FMAX_MASK	0x000000f0 /* max jitter, 0-15 */
3580  #define   MEMMODE_FMAX_SHIFT	4
3581  #define   MEMMODE_FMIN_MASK	0x0000000f /* min jitter, 0-15 */
3582  #define RCBMAXAVG		_MMIO(0x1119c)
3583  #define MEMSWCTL2		_MMIO(0x1119e) /* Cantiga only */
3584  #define   SWMEMCMD_RENDER_OFF	(0 << 13)
3585  #define   SWMEMCMD_RENDER_ON	(1 << 13)
3586  #define   SWMEMCMD_SWFREQ	(2 << 13)
3587  #define   SWMEMCMD_TARVID	(3 << 13)
3588  #define   SWMEMCMD_VRM_OFF	(4 << 13)
3589  #define   SWMEMCMD_VRM_ON	(5 << 13)
3590  #define   CMDSTS		(1<<12)
3591  #define   SFCAVM		(1<<11)
3592  #define   SWFREQ_MASK		0x0380 /* P0-7 */
3593  #define   SWFREQ_SHIFT		7
3594  #define   TARVID_MASK		0x001f
3595  #define MEMSTAT_CTG		_MMIO(0x111a0)
3596  #define RCBMINAVG		_MMIO(0x111a0)
3597  #define RCUPEI			_MMIO(0x111b0)
3598  #define RCDNEI			_MMIO(0x111b4)
3599  #define RSTDBYCTL		_MMIO(0x111b8)
3600  #define   RS1EN			(1<<31)
3601  #define   RS2EN			(1<<30)
3602  #define   RS3EN			(1<<29)
3603  #define   D3RS3EN		(1<<28) /* Display D3 imlies RS3 */
3604  #define   SWPROMORSX		(1<<27) /* RSx promotion timers ignored */
3605  #define   RCWAKERW		(1<<26) /* Resetwarn from PCH causes wakeup */
3606  #define   DPRSLPVREN		(1<<25) /* Fast voltage ramp enable */
3607  #define   GFXTGHYST		(1<<24) /* Hysteresis to allow trunk gating */
3608  #define   RCX_SW_EXIT		(1<<23) /* Leave RSx and prevent re-entry */
3609  #define   RSX_STATUS_MASK	(7<<20)
3610  #define   RSX_STATUS_ON		(0<<20)
3611  #define   RSX_STATUS_RC1	(1<<20)
3612  #define   RSX_STATUS_RC1E	(2<<20)
3613  #define   RSX_STATUS_RS1	(3<<20)
3614  #define   RSX_STATUS_RS2	(4<<20) /* aka rc6 */
3615  #define   RSX_STATUS_RSVD	(5<<20) /* deep rc6 unsupported on ilk */
3616  #define   RSX_STATUS_RS3	(6<<20) /* rs3 unsupported on ilk */
3617  #define   RSX_STATUS_RSVD2	(7<<20)
3618  #define   UWRCRSXE		(1<<19) /* wake counter limit prevents rsx */
3619  #define   RSCRP			(1<<18) /* rs requests control on rs1/2 reqs */
3620  #define   JRSC			(1<<17) /* rsx coupled to cpu c-state */
3621  #define   RS2INC0		(1<<16) /* allow rs2 in cpu c0 */
3622  #define   RS1CONTSAV_MASK	(3<<14)
3623  #define   RS1CONTSAV_NO_RS1	(0<<14) /* rs1 doesn't save/restore context */
3624  #define   RS1CONTSAV_RSVD	(1<<14)
3625  #define   RS1CONTSAV_SAVE_RS1	(2<<14) /* rs1 saves context */
3626  #define   RS1CONTSAV_FULL_RS1	(3<<14) /* rs1 saves and restores context */
3627  #define   NORMSLEXLAT_MASK	(3<<12)
3628  #define   SLOW_RS123		(0<<12)
3629  #define   SLOW_RS23		(1<<12)
3630  #define   SLOW_RS3		(2<<12)
3631  #define   NORMAL_RS123		(3<<12)
3632  #define   RCMODE_TIMEOUT	(1<<11) /* 0 is eval interval method */
3633  #define   IMPROMOEN		(1<<10) /* promo is immediate or delayed until next idle interval (only for timeout method above) */
3634  #define   RCENTSYNC		(1<<9) /* rs coupled to cpu c-state (3/6/7) */
3635  #define   STATELOCK		(1<<7) /* locked to rs_cstate if 0 */
3636  #define   RS_CSTATE_MASK	(3<<4)
3637  #define   RS_CSTATE_C367_RS1	(0<<4)
3638  #define   RS_CSTATE_C36_RS1_C7_RS2 (1<<4)
3639  #define   RS_CSTATE_RSVD	(2<<4)
3640  #define   RS_CSTATE_C367_RS2	(3<<4)
3641  #define   REDSAVES		(1<<3) /* no context save if was idle during rs0 */
3642  #define   REDRESTORES		(1<<2) /* no restore if was idle during rs0 */
3643  #define VIDCTL			_MMIO(0x111c0)
3644  #define VIDSTS			_MMIO(0x111c8)
3645  #define VIDSTART		_MMIO(0x111cc) /* 8 bits */
3646  #define MEMSTAT_ILK		_MMIO(0x111f8)
3647  #define   MEMSTAT_VID_MASK	0x7f00
3648  #define   MEMSTAT_VID_SHIFT	8
3649  #define   MEMSTAT_PSTATE_MASK	0x00f8
3650  #define   MEMSTAT_PSTATE_SHIFT  3
3651  #define   MEMSTAT_MON_ACTV	(1<<2)
3652  #define   MEMSTAT_SRC_CTL_MASK	0x0003
3653  #define   MEMSTAT_SRC_CTL_CORE	0
3654  #define   MEMSTAT_SRC_CTL_TRB	1
3655  #define   MEMSTAT_SRC_CTL_THM	2
3656  #define   MEMSTAT_SRC_CTL_STDBY 3
3657  #define RCPREVBSYTUPAVG		_MMIO(0x113b8)
3658  #define RCPREVBSYTDNAVG		_MMIO(0x113bc)
3659  #define PMMISC			_MMIO(0x11214)
3660  #define   MCPPCE_EN		(1<<0) /* enable PM_MSG from PCH->MPC */
3661  #define SDEW			_MMIO(0x1124c)
3662  #define CSIEW0			_MMIO(0x11250)
3663  #define CSIEW1			_MMIO(0x11254)
3664  #define CSIEW2			_MMIO(0x11258)
3665  #define PEW(i)			_MMIO(0x1125c + (i) * 4) /* 5 registers */
3666  #define DEW(i)			_MMIO(0x11270 + (i) * 4) /* 3 registers */
3667  #define MCHAFE			_MMIO(0x112c0)
3668  #define CSIEC			_MMIO(0x112e0)
3669  #define DMIEC			_MMIO(0x112e4)
3670  #define DDREC			_MMIO(0x112e8)
3671  #define PEG0EC			_MMIO(0x112ec)
3672  #define PEG1EC			_MMIO(0x112f0)
3673  #define GFXEC			_MMIO(0x112f4)
3674  #define RPPREVBSYTUPAVG		_MMIO(0x113b8)
3675  #define RPPREVBSYTDNAVG		_MMIO(0x113bc)
3676  #define ECR			_MMIO(0x11600)
3677  #define   ECR_GPFE		(1<<31)
3678  #define   ECR_IMONE		(1<<30)
3679  #define   ECR_CAP_MASK		0x0000001f /* Event range, 0-31 */
3680  #define OGW0			_MMIO(0x11608)
3681  #define OGW1			_MMIO(0x1160c)
3682  #define EG0			_MMIO(0x11610)
3683  #define EG1			_MMIO(0x11614)
3684  #define EG2			_MMIO(0x11618)
3685  #define EG3			_MMIO(0x1161c)
3686  #define EG4			_MMIO(0x11620)
3687  #define EG5			_MMIO(0x11624)
3688  #define EG6			_MMIO(0x11628)
3689  #define EG7			_MMIO(0x1162c)
3690  #define PXW(i)			_MMIO(0x11664 + (i) * 4) /* 4 registers */
3691  #define PXWL(i)			_MMIO(0x11680 + (i) * 8) /* 8 registers */
3692  #define LCFUSE02		_MMIO(0x116c0)
3693  #define   LCFUSE_HIV_MASK	0x000000ff
3694  #define CSIPLL0			_MMIO(0x12c10)
3695  #define DDRMPLL1		_MMIO(0X12c20)
3696  #define PEG_BAND_GAP_DATA	_MMIO(0x14d68)
3697  
3698  #define GEN6_GT_THREAD_STATUS_REG _MMIO(0x13805c)
3699  #define GEN6_GT_THREAD_STATUS_CORE_MASK 0x7
3700  
3701  #define GEN6_GT_PERF_STATUS	_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5948)
3702  #define BXT_GT_PERF_STATUS      _MMIO(MCHBAR_MIRROR_BASE_SNB + 0x7070)
3703  #define GEN6_RP_STATE_LIMITS	_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5994)
3704  #define GEN6_RP_STATE_CAP	_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5998)
3705  #define BXT_RP_STATE_CAP        _MMIO(0x138170)
3706  
3707  /*
3708   * Make these a multiple of magic 25 to avoid SNB (eg. Dell XPS
3709   * 8300) freezing up around GPU hangs. Looks as if even
3710   * scheduling/timer interrupts start misbehaving if the RPS
3711   * EI/thresholds are "bad", leading to a very sluggish or even
3712   * frozen machine.
3713   */
3714  #define INTERVAL_1_28_US(us)	roundup(((us) * 100) >> 7, 25)
3715  #define INTERVAL_1_33_US(us)	(((us) * 3)   >> 2)
3716  #define INTERVAL_0_833_US(us)	(((us) * 6) / 5)
3717  #define GT_INTERVAL_FROM_US(dev_priv, us) (INTEL_GEN(dev_priv) >= 9 ? \
3718  				(IS_GEN9_LP(dev_priv) ? \
3719  				INTERVAL_0_833_US(us) : \
3720  				INTERVAL_1_33_US(us)) : \
3721  				INTERVAL_1_28_US(us))
3722  
3723  #define INTERVAL_1_28_TO_US(interval)  (((interval) << 7) / 100)
3724  #define INTERVAL_1_33_TO_US(interval)  (((interval) << 2) / 3)
3725  #define INTERVAL_0_833_TO_US(interval) (((interval) * 5)  / 6)
3726  #define GT_PM_INTERVAL_TO_US(dev_priv, interval) (INTEL_GEN(dev_priv) >= 9 ? \
3727                             (IS_GEN9_LP(dev_priv) ? \
3728                             INTERVAL_0_833_TO_US(interval) : \
3729                             INTERVAL_1_33_TO_US(interval)) : \
3730                             INTERVAL_1_28_TO_US(interval))
3731  
3732  /*
3733   * Logical Context regs
3734   */
3735  #define CCID				_MMIO(0x2180)
3736  #define   CCID_EN			BIT(0)
3737  #define   CCID_EXTENDED_STATE_RESTORE	BIT(2)
3738  #define   CCID_EXTENDED_STATE_SAVE	BIT(3)
3739  /*
3740   * Notes on SNB/IVB/VLV context size:
3741   * - Power context is saved elsewhere (LLC or stolen)
3742   * - Ring/execlist context is saved on SNB, not on IVB
3743   * - Extended context size already includes render context size
3744   * - We always need to follow the extended context size.
3745   *   SNB BSpec has comments indicating that we should use the
3746   *   render context size instead if execlists are disabled, but
3747   *   based on empirical testing that's just nonsense.
3748   * - Pipelined/VF state is saved on SNB/IVB respectively
3749   * - GT1 size just indicates how much of render context
3750   *   doesn't need saving on GT1
3751   */
3752  #define CXT_SIZE		_MMIO(0x21a0)
3753  #define GEN6_CXT_POWER_SIZE(cxt_reg)	(((cxt_reg) >> 24) & 0x3f)
3754  #define GEN6_CXT_RING_SIZE(cxt_reg)	(((cxt_reg) >> 18) & 0x3f)
3755  #define GEN6_CXT_RENDER_SIZE(cxt_reg)	(((cxt_reg) >> 12) & 0x3f)
3756  #define GEN6_CXT_EXTENDED_SIZE(cxt_reg)	(((cxt_reg) >> 6) & 0x3f)
3757  #define GEN6_CXT_PIPELINE_SIZE(cxt_reg)	(((cxt_reg) >> 0) & 0x3f)
3758  #define GEN6_CXT_TOTAL_SIZE(cxt_reg)	(GEN6_CXT_RING_SIZE(cxt_reg) + \
3759  					GEN6_CXT_EXTENDED_SIZE(cxt_reg) + \
3760  					GEN6_CXT_PIPELINE_SIZE(cxt_reg))
3761  #define GEN7_CXT_SIZE		_MMIO(0x21a8)
3762  #define GEN7_CXT_POWER_SIZE(ctx_reg)	(((ctx_reg) >> 25) & 0x7f)
3763  #define GEN7_CXT_RING_SIZE(ctx_reg)	(((ctx_reg) >> 22) & 0x7)
3764  #define GEN7_CXT_RENDER_SIZE(ctx_reg)	(((ctx_reg) >> 16) & 0x3f)
3765  #define GEN7_CXT_EXTENDED_SIZE(ctx_reg)	(((ctx_reg) >> 9) & 0x7f)
3766  #define GEN7_CXT_GT1_SIZE(ctx_reg)	(((ctx_reg) >> 6) & 0x7)
3767  #define GEN7_CXT_VFSTATE_SIZE(ctx_reg)	(((ctx_reg) >> 0) & 0x3f)
3768  #define GEN7_CXT_TOTAL_SIZE(ctx_reg)	(GEN7_CXT_EXTENDED_SIZE(ctx_reg) + \
3769  					 GEN7_CXT_VFSTATE_SIZE(ctx_reg))
3770  
3771  enum {
3772  	INTEL_ADVANCED_CONTEXT = 0,
3773  	INTEL_LEGACY_32B_CONTEXT,
3774  	INTEL_ADVANCED_AD_CONTEXT,
3775  	INTEL_LEGACY_64B_CONTEXT
3776  };
3777  
3778  enum {
3779  	FAULT_AND_HANG = 0,
3780  	FAULT_AND_HALT, /* Debug only */
3781  	FAULT_AND_STREAM,
3782  	FAULT_AND_CONTINUE /* Unsupported */
3783  };
3784  
3785  #define GEN8_CTX_VALID (1<<0)
3786  #define GEN8_CTX_FORCE_PD_RESTORE (1<<1)
3787  #define GEN8_CTX_FORCE_RESTORE (1<<2)
3788  #define GEN8_CTX_L3LLC_COHERENT (1<<5)
3789  #define GEN8_CTX_PRIVILEGE (1<<8)
3790  #define GEN8_CTX_ADDRESSING_MODE_SHIFT 3
3791  
3792  #define GEN8_CTX_ID_SHIFT 32
3793  #define GEN8_CTX_ID_WIDTH 21
3794  
3795  #define CHV_CLK_CTL1			_MMIO(0x101100)
3796  #define VLV_CLK_CTL2			_MMIO(0x101104)
3797  #define   CLK_CTL2_CZCOUNT_30NS_SHIFT	28
3798  
3799  /*
3800   * Overlay regs
3801   */
3802  
3803  #define OVADD			_MMIO(0x30000)
3804  #define DOVSTA			_MMIO(0x30008)
3805  #define OC_BUF			(0x3<<20)
3806  #define OGAMC5			_MMIO(0x30010)
3807  #define OGAMC4			_MMIO(0x30014)
3808  #define OGAMC3			_MMIO(0x30018)
3809  #define OGAMC2			_MMIO(0x3001c)
3810  #define OGAMC1			_MMIO(0x30020)
3811  #define OGAMC0			_MMIO(0x30024)
3812  
3813  /*
3814   * GEN9 clock gating regs
3815   */
3816  #define GEN9_CLKGATE_DIS_0		_MMIO(0x46530)
3817  #define   PWM2_GATING_DIS		(1 << 14)
3818  #define   PWM1_GATING_DIS		(1 << 13)
3819  
3820  /*
3821   * Display engine regs
3822   */
3823  
3824  /* Pipe A CRC regs */
3825  #define _PIPE_CRC_CTL_A			0x60050
3826  #define   PIPE_CRC_ENABLE		(1 << 31)
3827  /* ivb+ source selection */
3828  #define   PIPE_CRC_SOURCE_PRIMARY_IVB	(0 << 29)
3829  #define   PIPE_CRC_SOURCE_SPRITE_IVB	(1 << 29)
3830  #define   PIPE_CRC_SOURCE_PF_IVB	(2 << 29)
3831  /* ilk+ source selection */
3832  #define   PIPE_CRC_SOURCE_PRIMARY_ILK	(0 << 28)
3833  #define   PIPE_CRC_SOURCE_SPRITE_ILK	(1 << 28)
3834  #define   PIPE_CRC_SOURCE_PIPE_ILK	(2 << 28)
3835  /* embedded DP port on the north display block, reserved on ivb */
3836  #define   PIPE_CRC_SOURCE_PORT_A_ILK	(4 << 28)
3837  #define   PIPE_CRC_SOURCE_FDI_ILK	(5 << 28) /* reserved on ivb */
3838  /* vlv source selection */
3839  #define   PIPE_CRC_SOURCE_PIPE_VLV	(0 << 27)
3840  #define   PIPE_CRC_SOURCE_HDMIB_VLV	(1 << 27)
3841  #define   PIPE_CRC_SOURCE_HDMIC_VLV	(2 << 27)
3842  /* with DP port the pipe source is invalid */
3843  #define   PIPE_CRC_SOURCE_DP_D_VLV	(3 << 27)
3844  #define   PIPE_CRC_SOURCE_DP_B_VLV	(6 << 27)
3845  #define   PIPE_CRC_SOURCE_DP_C_VLV	(7 << 27)
3846  /* gen3+ source selection */
3847  #define   PIPE_CRC_SOURCE_PIPE_I9XX	(0 << 28)
3848  #define   PIPE_CRC_SOURCE_SDVOB_I9XX	(1 << 28)
3849  #define   PIPE_CRC_SOURCE_SDVOC_I9XX	(2 << 28)
3850  /* with DP/TV port the pipe source is invalid */
3851  #define   PIPE_CRC_SOURCE_DP_D_G4X	(3 << 28)
3852  #define   PIPE_CRC_SOURCE_TV_PRE	(4 << 28)
3853  #define   PIPE_CRC_SOURCE_TV_POST	(5 << 28)
3854  #define   PIPE_CRC_SOURCE_DP_B_G4X	(6 << 28)
3855  #define   PIPE_CRC_SOURCE_DP_C_G4X	(7 << 28)
3856  /* gen2 doesn't have source selection bits */
3857  #define   PIPE_CRC_INCLUDE_BORDER_I8XX	(1 << 30)
3858  
3859  #define _PIPE_CRC_RES_1_A_IVB		0x60064
3860  #define _PIPE_CRC_RES_2_A_IVB		0x60068
3861  #define _PIPE_CRC_RES_3_A_IVB		0x6006c
3862  #define _PIPE_CRC_RES_4_A_IVB		0x60070
3863  #define _PIPE_CRC_RES_5_A_IVB		0x60074
3864  
3865  #define _PIPE_CRC_RES_RED_A		0x60060
3866  #define _PIPE_CRC_RES_GREEN_A		0x60064
3867  #define _PIPE_CRC_RES_BLUE_A		0x60068
3868  #define _PIPE_CRC_RES_RES1_A_I915	0x6006c
3869  #define _PIPE_CRC_RES_RES2_A_G4X	0x60080
3870  
3871  /* Pipe B CRC regs */
3872  #define _PIPE_CRC_RES_1_B_IVB		0x61064
3873  #define _PIPE_CRC_RES_2_B_IVB		0x61068
3874  #define _PIPE_CRC_RES_3_B_IVB		0x6106c
3875  #define _PIPE_CRC_RES_4_B_IVB		0x61070
3876  #define _PIPE_CRC_RES_5_B_IVB		0x61074
3877  
3878  #define PIPE_CRC_CTL(pipe)		_MMIO_TRANS2(pipe, _PIPE_CRC_CTL_A)
3879  #define PIPE_CRC_RES_1_IVB(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_1_A_IVB)
3880  #define PIPE_CRC_RES_2_IVB(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_2_A_IVB)
3881  #define PIPE_CRC_RES_3_IVB(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_3_A_IVB)
3882  #define PIPE_CRC_RES_4_IVB(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_4_A_IVB)
3883  #define PIPE_CRC_RES_5_IVB(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_5_A_IVB)
3884  
3885  #define PIPE_CRC_RES_RED(pipe)		_MMIO_TRANS2(pipe, _PIPE_CRC_RES_RED_A)
3886  #define PIPE_CRC_RES_GREEN(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_GREEN_A)
3887  #define PIPE_CRC_RES_BLUE(pipe)		_MMIO_TRANS2(pipe, _PIPE_CRC_RES_BLUE_A)
3888  #define PIPE_CRC_RES_RES1_I915(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_RES1_A_I915)
3889  #define PIPE_CRC_RES_RES2_G4X(pipe)	_MMIO_TRANS2(pipe, _PIPE_CRC_RES_RES2_A_G4X)
3890  
3891  /* Pipe A timing regs */
3892  #define _HTOTAL_A	0x60000
3893  #define _HBLANK_A	0x60004
3894  #define _HSYNC_A	0x60008
3895  #define _VTOTAL_A	0x6000c
3896  #define _VBLANK_A	0x60010
3897  #define _VSYNC_A	0x60014
3898  #define _PIPEASRC	0x6001c
3899  #define _BCLRPAT_A	0x60020
3900  #define _VSYNCSHIFT_A	0x60028
3901  #define _PIPE_MULT_A	0x6002c
3902  
3903  /* Pipe B timing regs */
3904  #define _HTOTAL_B	0x61000
3905  #define _HBLANK_B	0x61004
3906  #define _HSYNC_B	0x61008
3907  #define _VTOTAL_B	0x6100c
3908  #define _VBLANK_B	0x61010
3909  #define _VSYNC_B	0x61014
3910  #define _PIPEBSRC	0x6101c
3911  #define _BCLRPAT_B	0x61020
3912  #define _VSYNCSHIFT_B	0x61028
3913  #define _PIPE_MULT_B	0x6102c
3914  
3915  #define TRANSCODER_A_OFFSET 0x60000
3916  #define TRANSCODER_B_OFFSET 0x61000
3917  #define TRANSCODER_C_OFFSET 0x62000
3918  #define CHV_TRANSCODER_C_OFFSET 0x63000
3919  #define TRANSCODER_EDP_OFFSET 0x6f000
3920  
3921  #define _MMIO_TRANS2(pipe, reg) _MMIO(dev_priv->info.trans_offsets[(pipe)] - \
3922  	dev_priv->info.trans_offsets[TRANSCODER_A] + (reg) + \
3923  	dev_priv->info.display_mmio_offset)
3924  
3925  #define HTOTAL(trans)		_MMIO_TRANS2(trans, _HTOTAL_A)
3926  #define HBLANK(trans)		_MMIO_TRANS2(trans, _HBLANK_A)
3927  #define HSYNC(trans)		_MMIO_TRANS2(trans, _HSYNC_A)
3928  #define VTOTAL(trans)		_MMIO_TRANS2(trans, _VTOTAL_A)
3929  #define VBLANK(trans)		_MMIO_TRANS2(trans, _VBLANK_A)
3930  #define VSYNC(trans)		_MMIO_TRANS2(trans, _VSYNC_A)
3931  #define BCLRPAT(trans)		_MMIO_TRANS2(trans, _BCLRPAT_A)
3932  #define VSYNCSHIFT(trans)	_MMIO_TRANS2(trans, _VSYNCSHIFT_A)
3933  #define PIPESRC(trans)		_MMIO_TRANS2(trans, _PIPEASRC)
3934  #define PIPE_MULT(trans)	_MMIO_TRANS2(trans, _PIPE_MULT_A)
3935  
3936  /* VLV eDP PSR registers */
3937  #define _PSRCTLA				(VLV_DISPLAY_BASE + 0x60090)
3938  #define _PSRCTLB				(VLV_DISPLAY_BASE + 0x61090)
3939  #define  VLV_EDP_PSR_ENABLE			(1<<0)
3940  #define  VLV_EDP_PSR_RESET			(1<<1)
3941  #define  VLV_EDP_PSR_MODE_MASK			(7<<2)
3942  #define  VLV_EDP_PSR_MODE_HW_TIMER		(1<<3)
3943  #define  VLV_EDP_PSR_MODE_SW_TIMER		(1<<2)
3944  #define  VLV_EDP_PSR_SINGLE_FRAME_UPDATE	(1<<7)
3945  #define  VLV_EDP_PSR_ACTIVE_ENTRY		(1<<8)
3946  #define  VLV_EDP_PSR_SRC_TRANSMITTER_STATE	(1<<9)
3947  #define  VLV_EDP_PSR_DBL_FRAME			(1<<10)
3948  #define  VLV_EDP_PSR_FRAME_COUNT_MASK		(0xff<<16)
3949  #define  VLV_EDP_PSR_IDLE_FRAME_SHIFT		16
3950  #define VLV_PSRCTL(pipe)	_MMIO_PIPE(pipe, _PSRCTLA, _PSRCTLB)
3951  
3952  #define _VSCSDPA			(VLV_DISPLAY_BASE + 0x600a0)
3953  #define _VSCSDPB			(VLV_DISPLAY_BASE + 0x610a0)
3954  #define  VLV_EDP_PSR_SDP_FREQ_MASK	(3<<30)
3955  #define  VLV_EDP_PSR_SDP_FREQ_ONCE	(1<<31)
3956  #define  VLV_EDP_PSR_SDP_FREQ_EVFRAME	(1<<30)
3957  #define VLV_VSCSDP(pipe)	_MMIO_PIPE(pipe, _VSCSDPA, _VSCSDPB)
3958  
3959  #define _PSRSTATA			(VLV_DISPLAY_BASE + 0x60094)
3960  #define _PSRSTATB			(VLV_DISPLAY_BASE + 0x61094)
3961  #define  VLV_EDP_PSR_LAST_STATE_MASK	(7<<3)
3962  #define  VLV_EDP_PSR_CURR_STATE_MASK	7
3963  #define  VLV_EDP_PSR_DISABLED		(0<<0)
3964  #define  VLV_EDP_PSR_INACTIVE		(1<<0)
3965  #define  VLV_EDP_PSR_IN_TRANS_TO_ACTIVE	(2<<0)
3966  #define  VLV_EDP_PSR_ACTIVE_NORFB_UP	(3<<0)
3967  #define  VLV_EDP_PSR_ACTIVE_SF_UPDATE	(4<<0)
3968  #define  VLV_EDP_PSR_EXIT		(5<<0)
3969  #define  VLV_EDP_PSR_IN_TRANS		(1<<7)
3970  #define VLV_PSRSTAT(pipe)	_MMIO_PIPE(pipe, _PSRSTATA, _PSRSTATB)
3971  
3972  /* HSW+ eDP PSR registers */
3973  #define HSW_EDP_PSR_BASE	0x64800
3974  #define BDW_EDP_PSR_BASE	0x6f800
3975  #define EDP_PSR_CTL				_MMIO(dev_priv->psr_mmio_base + 0)
3976  #define   EDP_PSR_ENABLE			(1<<31)
3977  #define   BDW_PSR_SINGLE_FRAME			(1<<30)
3978  #define   EDP_PSR_RESTORE_PSR_ACTIVE_CTX_MASK	(1<<29) /* SW can't modify */
3979  #define   EDP_PSR_LINK_STANDBY			(1<<27)
3980  #define   EDP_PSR_MIN_LINK_ENTRY_TIME_MASK	(3<<25)
3981  #define   EDP_PSR_MIN_LINK_ENTRY_TIME_8_LINES	(0<<25)
3982  #define   EDP_PSR_MIN_LINK_ENTRY_TIME_4_LINES	(1<<25)
3983  #define   EDP_PSR_MIN_LINK_ENTRY_TIME_2_LINES	(2<<25)
3984  #define   EDP_PSR_MIN_LINK_ENTRY_TIME_0_LINES	(3<<25)
3985  #define   EDP_PSR_MAX_SLEEP_TIME_SHIFT		20
3986  #define   EDP_PSR_SKIP_AUX_EXIT			(1<<12)
3987  #define   EDP_PSR_TP1_TP2_SEL			(0<<11)
3988  #define   EDP_PSR_TP1_TP3_SEL			(1<<11)
3989  #define   EDP_PSR_TP2_TP3_TIME_500us		(0<<8)
3990  #define   EDP_PSR_TP2_TP3_TIME_100us		(1<<8)
3991  #define   EDP_PSR_TP2_TP3_TIME_2500us		(2<<8)
3992  #define   EDP_PSR_TP2_TP3_TIME_0us		(3<<8)
3993  #define   EDP_PSR_TP1_TIME_500us		(0<<4)
3994  #define   EDP_PSR_TP1_TIME_100us		(1<<4)
3995  #define   EDP_PSR_TP1_TIME_2500us		(2<<4)
3996  #define   EDP_PSR_TP1_TIME_0us			(3<<4)
3997  #define   EDP_PSR_IDLE_FRAME_SHIFT		0
3998  
3999  #define EDP_PSR_AUX_CTL				_MMIO(dev_priv->psr_mmio_base + 0x10)
4000  #define EDP_PSR_AUX_DATA(i)			_MMIO(dev_priv->psr_mmio_base + 0x14 + (i) * 4) /* 5 registers */
4001  
4002  #define EDP_PSR_STATUS_CTL			_MMIO(dev_priv->psr_mmio_base + 0x40)
4003  #define   EDP_PSR_STATUS_STATE_MASK		(7<<29)
4004  #define   EDP_PSR_STATUS_STATE_IDLE		(0<<29)
4005  #define   EDP_PSR_STATUS_STATE_SRDONACK		(1<<29)
4006  #define   EDP_PSR_STATUS_STATE_SRDENT		(2<<29)
4007  #define   EDP_PSR_STATUS_STATE_BUFOFF		(3<<29)
4008  #define   EDP_PSR_STATUS_STATE_BUFON		(4<<29)
4009  #define   EDP_PSR_STATUS_STATE_AUXACK		(5<<29)
4010  #define   EDP_PSR_STATUS_STATE_SRDOFFACK	(6<<29)
4011  #define   EDP_PSR_STATUS_LINK_MASK		(3<<26)
4012  #define   EDP_PSR_STATUS_LINK_FULL_OFF		(0<<26)
4013  #define   EDP_PSR_STATUS_LINK_FULL_ON		(1<<26)
4014  #define   EDP_PSR_STATUS_LINK_STANDBY		(2<<26)
4015  #define   EDP_PSR_STATUS_MAX_SLEEP_TIMER_SHIFT	20
4016  #define   EDP_PSR_STATUS_MAX_SLEEP_TIMER_MASK	0x1f
4017  #define   EDP_PSR_STATUS_COUNT_SHIFT		16
4018  #define   EDP_PSR_STATUS_COUNT_MASK		0xf
4019  #define   EDP_PSR_STATUS_AUX_ERROR		(1<<15)
4020  #define   EDP_PSR_STATUS_AUX_SENDING		(1<<12)
4021  #define   EDP_PSR_STATUS_SENDING_IDLE		(1<<9)
4022  #define   EDP_PSR_STATUS_SENDING_TP2_TP3	(1<<8)
4023  #define   EDP_PSR_STATUS_SENDING_TP1		(1<<4)
4024  #define   EDP_PSR_STATUS_IDLE_MASK		0xf
4025  
4026  #define EDP_PSR_PERF_CNT		_MMIO(dev_priv->psr_mmio_base + 0x44)
4027  #define   EDP_PSR_PERF_CNT_MASK		0xffffff
4028  
4029  #define EDP_PSR_DEBUG_CTL		_MMIO(dev_priv->psr_mmio_base + 0x60)
4030  #define   EDP_PSR_DEBUG_MASK_MAX_SLEEP         (1<<28)
4031  #define   EDP_PSR_DEBUG_MASK_LPSP              (1<<27)
4032  #define   EDP_PSR_DEBUG_MASK_MEMUP             (1<<26)
4033  #define   EDP_PSR_DEBUG_MASK_HPD               (1<<25)
4034  #define   EDP_PSR_DEBUG_MASK_DISP_REG_WRITE    (1<<16)
4035  #define   EDP_PSR_DEBUG_EXIT_ON_PIXEL_UNDERRUN (1<<15)
4036  
4037  #define EDP_PSR2_CTL			_MMIO(0x6f900)
4038  #define   EDP_PSR2_ENABLE		(1<<31)
4039  #define   EDP_SU_TRACK_ENABLE		(1<<30)
4040  #define   EDP_MAX_SU_DISABLE_TIME(t)	((t)<<20)
4041  #define   EDP_MAX_SU_DISABLE_TIME_MASK	(0x1f<<20)
4042  #define   EDP_PSR2_TP2_TIME_500		(0<<8)
4043  #define   EDP_PSR2_TP2_TIME_100		(1<<8)
4044  #define   EDP_PSR2_TP2_TIME_2500	(2<<8)
4045  #define   EDP_PSR2_TP2_TIME_50		(3<<8)
4046  #define   EDP_PSR2_TP2_TIME_MASK	(3<<8)
4047  #define   EDP_PSR2_FRAME_BEFORE_SU_SHIFT 4
4048  #define   EDP_PSR2_FRAME_BEFORE_SU_MASK	(0xf<<4)
4049  #define   EDP_PSR2_IDLE_MASK		0xf
4050  #define   EDP_FRAMES_BEFORE_SU_ENTRY   (1<<4)
4051  
4052  #define EDP_PSR2_STATUS_CTL            _MMIO(0x6f940)
4053  #define EDP_PSR2_STATUS_STATE_MASK     (0xf<<28)
4054  #define EDP_PSR2_STATUS_STATE_SHIFT    28
4055  
4056  /* VGA port control */
4057  #define ADPA			_MMIO(0x61100)
4058  #define PCH_ADPA                _MMIO(0xe1100)
4059  #define VLV_ADPA		_MMIO(VLV_DISPLAY_BASE + 0x61100)
4060  
4061  #define   ADPA_DAC_ENABLE	(1<<31)
4062  #define   ADPA_DAC_DISABLE	0
4063  #define   ADPA_PIPE_SELECT_MASK	(1<<30)
4064  #define   ADPA_PIPE_A_SELECT	0
4065  #define   ADPA_PIPE_B_SELECT	(1<<30)
4066  #define   ADPA_PIPE_SELECT(pipe) ((pipe) << 30)
4067  /* CPT uses bits 29:30 for pch transcoder select */
4068  #define   ADPA_CRT_HOTPLUG_MASK  0x03ff0000 /* bit 25-16 */
4069  #define   ADPA_CRT_HOTPLUG_MONITOR_NONE  (0<<24)
4070  #define   ADPA_CRT_HOTPLUG_MONITOR_MASK  (3<<24)
4071  #define   ADPA_CRT_HOTPLUG_MONITOR_COLOR (3<<24)
4072  #define   ADPA_CRT_HOTPLUG_MONITOR_MONO  (2<<24)
4073  #define   ADPA_CRT_HOTPLUG_ENABLE        (1<<23)
4074  #define   ADPA_CRT_HOTPLUG_PERIOD_64     (0<<22)
4075  #define   ADPA_CRT_HOTPLUG_PERIOD_128    (1<<22)
4076  #define   ADPA_CRT_HOTPLUG_WARMUP_5MS    (0<<21)
4077  #define   ADPA_CRT_HOTPLUG_WARMUP_10MS   (1<<21)
4078  #define   ADPA_CRT_HOTPLUG_SAMPLE_2S     (0<<20)
4079  #define   ADPA_CRT_HOTPLUG_SAMPLE_4S     (1<<20)
4080  #define   ADPA_CRT_HOTPLUG_VOLTAGE_40    (0<<18)
4081  #define   ADPA_CRT_HOTPLUG_VOLTAGE_50    (1<<18)
4082  #define   ADPA_CRT_HOTPLUG_VOLTAGE_60    (2<<18)
4083  #define   ADPA_CRT_HOTPLUG_VOLTAGE_70    (3<<18)
4084  #define   ADPA_CRT_HOTPLUG_VOLREF_325MV  (0<<17)
4085  #define   ADPA_CRT_HOTPLUG_VOLREF_475MV  (1<<17)
4086  #define   ADPA_CRT_HOTPLUG_FORCE_TRIGGER (1<<16)
4087  #define   ADPA_USE_VGA_HVPOLARITY (1<<15)
4088  #define   ADPA_SETS_HVPOLARITY	0
4089  #define   ADPA_VSYNC_CNTL_DISABLE (1<<10)
4090  #define   ADPA_VSYNC_CNTL_ENABLE 0
4091  #define   ADPA_HSYNC_CNTL_DISABLE (1<<11)
4092  #define   ADPA_HSYNC_CNTL_ENABLE 0
4093  #define   ADPA_VSYNC_ACTIVE_HIGH (1<<4)
4094  #define   ADPA_VSYNC_ACTIVE_LOW	0
4095  #define   ADPA_HSYNC_ACTIVE_HIGH (1<<3)
4096  #define   ADPA_HSYNC_ACTIVE_LOW	0
4097  #define   ADPA_DPMS_MASK	(~(3<<10))
4098  #define   ADPA_DPMS_ON		(0<<10)
4099  #define   ADPA_DPMS_SUSPEND	(1<<10)
4100  #define   ADPA_DPMS_STANDBY	(2<<10)
4101  #define   ADPA_DPMS_OFF		(3<<10)
4102  
4103  
4104  /* Hotplug control (945+ only) */
4105  #define PORT_HOTPLUG_EN		_MMIO(dev_priv->info.display_mmio_offset + 0x61110)
4106  #define   PORTB_HOTPLUG_INT_EN			(1 << 29)
4107  #define   PORTC_HOTPLUG_INT_EN			(1 << 28)
4108  #define   PORTD_HOTPLUG_INT_EN			(1 << 27)
4109  #define   SDVOB_HOTPLUG_INT_EN			(1 << 26)
4110  #define   SDVOC_HOTPLUG_INT_EN			(1 << 25)
4111  #define   TV_HOTPLUG_INT_EN			(1 << 18)
4112  #define   CRT_HOTPLUG_INT_EN			(1 << 9)
4113  #define HOTPLUG_INT_EN_MASK			(PORTB_HOTPLUG_INT_EN | \
4114  						 PORTC_HOTPLUG_INT_EN | \
4115  						 PORTD_HOTPLUG_INT_EN | \
4116  						 SDVOC_HOTPLUG_INT_EN | \
4117  						 SDVOB_HOTPLUG_INT_EN | \
4118  						 CRT_HOTPLUG_INT_EN)
4119  #define   CRT_HOTPLUG_FORCE_DETECT		(1 << 3)
4120  #define CRT_HOTPLUG_ACTIVATION_PERIOD_32	(0 << 8)
4121  /* must use period 64 on GM45 according to docs */
4122  #define CRT_HOTPLUG_ACTIVATION_PERIOD_64	(1 << 8)
4123  #define CRT_HOTPLUG_DAC_ON_TIME_2M		(0 << 7)
4124  #define CRT_HOTPLUG_DAC_ON_TIME_4M		(1 << 7)
4125  #define CRT_HOTPLUG_VOLTAGE_COMPARE_40		(0 << 5)
4126  #define CRT_HOTPLUG_VOLTAGE_COMPARE_50		(1 << 5)
4127  #define CRT_HOTPLUG_VOLTAGE_COMPARE_60		(2 << 5)
4128  #define CRT_HOTPLUG_VOLTAGE_COMPARE_70		(3 << 5)
4129  #define CRT_HOTPLUG_VOLTAGE_COMPARE_MASK	(3 << 5)
4130  #define CRT_HOTPLUG_DETECT_DELAY_1G		(0 << 4)
4131  #define CRT_HOTPLUG_DETECT_DELAY_2G		(1 << 4)
4132  #define CRT_HOTPLUG_DETECT_VOLTAGE_325MV	(0 << 2)
4133  #define CRT_HOTPLUG_DETECT_VOLTAGE_475MV	(1 << 2)
4134  
4135  #define PORT_HOTPLUG_STAT	_MMIO(dev_priv->info.display_mmio_offset + 0x61114)
4136  /*
4137   * HDMI/DP bits are g4x+
4138   *
4139   * WARNING: Bspec for hpd status bits on gen4 seems to be completely confused.
4140   * Please check the detailed lore in the commit message for for experimental
4141   * evidence.
4142   */
4143  /* Bspec says GM45 should match G4X/VLV/CHV, but reality disagrees */
4144  #define   PORTD_HOTPLUG_LIVE_STATUS_GM45	(1 << 29)
4145  #define   PORTC_HOTPLUG_LIVE_STATUS_GM45	(1 << 28)
4146  #define   PORTB_HOTPLUG_LIVE_STATUS_GM45	(1 << 27)
4147  /* G4X/VLV/CHV DP/HDMI bits again match Bspec */
4148  #define   PORTD_HOTPLUG_LIVE_STATUS_G4X		(1 << 27)
4149  #define   PORTC_HOTPLUG_LIVE_STATUS_G4X		(1 << 28)
4150  #define   PORTB_HOTPLUG_LIVE_STATUS_G4X		(1 << 29)
4151  #define   PORTD_HOTPLUG_INT_STATUS		(3 << 21)
4152  #define   PORTD_HOTPLUG_INT_LONG_PULSE		(2 << 21)
4153  #define   PORTD_HOTPLUG_INT_SHORT_PULSE		(1 << 21)
4154  #define   PORTC_HOTPLUG_INT_STATUS		(3 << 19)
4155  #define   PORTC_HOTPLUG_INT_LONG_PULSE		(2 << 19)
4156  #define   PORTC_HOTPLUG_INT_SHORT_PULSE		(1 << 19)
4157  #define   PORTB_HOTPLUG_INT_STATUS		(3 << 17)
4158  #define   PORTB_HOTPLUG_INT_LONG_PULSE		(2 << 17)
4159  #define   PORTB_HOTPLUG_INT_SHORT_PLUSE		(1 << 17)
4160  /* CRT/TV common between gen3+ */
4161  #define   CRT_HOTPLUG_INT_STATUS		(1 << 11)
4162  #define   TV_HOTPLUG_INT_STATUS			(1 << 10)
4163  #define   CRT_HOTPLUG_MONITOR_MASK		(3 << 8)
4164  #define   CRT_HOTPLUG_MONITOR_COLOR		(3 << 8)
4165  #define   CRT_HOTPLUG_MONITOR_MONO		(2 << 8)
4166  #define   CRT_HOTPLUG_MONITOR_NONE		(0 << 8)
4167  #define   DP_AUX_CHANNEL_D_INT_STATUS_G4X	(1 << 6)
4168  #define   DP_AUX_CHANNEL_C_INT_STATUS_G4X	(1 << 5)
4169  #define   DP_AUX_CHANNEL_B_INT_STATUS_G4X	(1 << 4)
4170  #define   DP_AUX_CHANNEL_MASK_INT_STATUS_G4X	(7 << 4)
4171  
4172  /* SDVO is different across gen3/4 */
4173  #define   SDVOC_HOTPLUG_INT_STATUS_G4X		(1 << 3)
4174  #define   SDVOB_HOTPLUG_INT_STATUS_G4X		(1 << 2)
4175  /*
4176   * Bspec seems to be seriously misleaded about the SDVO hpd bits on i965g/gm,
4177   * since reality corrobates that they're the same as on gen3. But keep these
4178   * bits here (and the comment!) to help any other lost wanderers back onto the
4179   * right tracks.
4180   */
4181  #define   SDVOC_HOTPLUG_INT_STATUS_I965		(3 << 4)
4182  #define   SDVOB_HOTPLUG_INT_STATUS_I965		(3 << 2)
4183  #define   SDVOC_HOTPLUG_INT_STATUS_I915		(1 << 7)
4184  #define   SDVOB_HOTPLUG_INT_STATUS_I915		(1 << 6)
4185  #define   HOTPLUG_INT_STATUS_G4X		(CRT_HOTPLUG_INT_STATUS | \
4186  						 SDVOB_HOTPLUG_INT_STATUS_G4X | \
4187  						 SDVOC_HOTPLUG_INT_STATUS_G4X | \
4188  						 PORTB_HOTPLUG_INT_STATUS | \
4189  						 PORTC_HOTPLUG_INT_STATUS | \
4190  						 PORTD_HOTPLUG_INT_STATUS)
4191  
4192  #define HOTPLUG_INT_STATUS_I915			(CRT_HOTPLUG_INT_STATUS | \
4193  						 SDVOB_HOTPLUG_INT_STATUS_I915 | \
4194  						 SDVOC_HOTPLUG_INT_STATUS_I915 | \
4195  						 PORTB_HOTPLUG_INT_STATUS | \
4196  						 PORTC_HOTPLUG_INT_STATUS | \
4197  						 PORTD_HOTPLUG_INT_STATUS)
4198  
4199  /* SDVO and HDMI port control.
4200   * The same register may be used for SDVO or HDMI */
4201  #define _GEN3_SDVOB	0x61140
4202  #define _GEN3_SDVOC	0x61160
4203  #define GEN3_SDVOB	_MMIO(_GEN3_SDVOB)
4204  #define GEN3_SDVOC	_MMIO(_GEN3_SDVOC)
4205  #define GEN4_HDMIB	GEN3_SDVOB
4206  #define GEN4_HDMIC	GEN3_SDVOC
4207  #define VLV_HDMIB	_MMIO(VLV_DISPLAY_BASE + 0x61140)
4208  #define VLV_HDMIC	_MMIO(VLV_DISPLAY_BASE + 0x61160)
4209  #define CHV_HDMID	_MMIO(VLV_DISPLAY_BASE + 0x6116C)
4210  #define PCH_SDVOB	_MMIO(0xe1140)
4211  #define PCH_HDMIB	PCH_SDVOB
4212  #define PCH_HDMIC	_MMIO(0xe1150)
4213  #define PCH_HDMID	_MMIO(0xe1160)
4214  
4215  #define PORT_DFT_I9XX				_MMIO(0x61150)
4216  #define   DC_BALANCE_RESET			(1 << 25)
4217  #define PORT_DFT2_G4X		_MMIO(dev_priv->info.display_mmio_offset + 0x61154)
4218  #define   DC_BALANCE_RESET_VLV			(1 << 31)
4219  #define   PIPE_SCRAMBLE_RESET_MASK		((1 << 14) | (0x3 << 0))
4220  #define   PIPE_C_SCRAMBLE_RESET			(1 << 14) /* chv */
4221  #define   PIPE_B_SCRAMBLE_RESET			(1 << 1)
4222  #define   PIPE_A_SCRAMBLE_RESET			(1 << 0)
4223  
4224  /* Gen 3 SDVO bits: */
4225  #define   SDVO_ENABLE				(1 << 31)
4226  #define   SDVO_PIPE_SEL(pipe)			((pipe) << 30)
4227  #define   SDVO_PIPE_SEL_MASK			(1 << 30)
4228  #define   SDVO_PIPE_B_SELECT			(1 << 30)
4229  #define   SDVO_STALL_SELECT			(1 << 29)
4230  #define   SDVO_INTERRUPT_ENABLE			(1 << 26)
4231  /*
4232   * 915G/GM SDVO pixel multiplier.
4233   * Programmed value is multiplier - 1, up to 5x.
4234   * \sa DPLL_MD_UDI_MULTIPLIER_MASK
4235   */
4236  #define   SDVO_PORT_MULTIPLY_MASK		(7 << 23)
4237  #define   SDVO_PORT_MULTIPLY_SHIFT		23
4238  #define   SDVO_PHASE_SELECT_MASK		(15 << 19)
4239  #define   SDVO_PHASE_SELECT_DEFAULT		(6 << 19)
4240  #define   SDVO_CLOCK_OUTPUT_INVERT		(1 << 18)
4241  #define   SDVOC_GANG_MODE			(1 << 16) /* Port C only */
4242  #define   SDVO_BORDER_ENABLE			(1 << 7) /* SDVO only */
4243  #define   SDVOB_PCIE_CONCURRENCY		(1 << 3) /* Port B only */
4244  #define   SDVO_DETECTED				(1 << 2)
4245  /* Bits to be preserved when writing */
4246  #define   SDVOB_PRESERVE_MASK ((1 << 17) | (1 << 16) | (1 << 14) | \
4247  			       SDVO_INTERRUPT_ENABLE)
4248  #define   SDVOC_PRESERVE_MASK ((1 << 17) | SDVO_INTERRUPT_ENABLE)
4249  
4250  /* Gen 4 SDVO/HDMI bits: */
4251  #define   SDVO_COLOR_FORMAT_8bpc		(0 << 26)
4252  #define   SDVO_COLOR_FORMAT_MASK		(7 << 26)
4253  #define   SDVO_ENCODING_SDVO			(0 << 10)
4254  #define   SDVO_ENCODING_HDMI			(2 << 10)
4255  #define   HDMI_MODE_SELECT_HDMI			(1 << 9) /* HDMI only */
4256  #define   HDMI_MODE_SELECT_DVI			(0 << 9) /* HDMI only */
4257  #define   HDMI_COLOR_RANGE_16_235		(1 << 8) /* HDMI only */
4258  #define   SDVO_AUDIO_ENABLE			(1 << 6)
4259  /* VSYNC/HSYNC bits new with 965, default is to be set */
4260  #define   SDVO_VSYNC_ACTIVE_HIGH		(1 << 4)
4261  #define   SDVO_HSYNC_ACTIVE_HIGH		(1 << 3)
4262  
4263  /* Gen 5 (IBX) SDVO/HDMI bits: */
4264  #define   HDMI_COLOR_FORMAT_12bpc		(3 << 26) /* HDMI only */
4265  #define   SDVOB_HOTPLUG_ENABLE			(1 << 23) /* SDVO only */
4266  
4267  /* Gen 6 (CPT) SDVO/HDMI bits: */
4268  #define   SDVO_PIPE_SEL_CPT(pipe)		((pipe) << 29)
4269  #define   SDVO_PIPE_SEL_MASK_CPT		(3 << 29)
4270  
4271  /* CHV SDVO/HDMI bits: */
4272  #define   SDVO_PIPE_SEL_CHV(pipe)		((pipe) << 24)
4273  #define   SDVO_PIPE_SEL_MASK_CHV		(3 << 24)
4274  
4275  
4276  /* DVO port control */
4277  #define _DVOA			0x61120
4278  #define DVOA			_MMIO(_DVOA)
4279  #define _DVOB			0x61140
4280  #define DVOB			_MMIO(_DVOB)
4281  #define _DVOC			0x61160
4282  #define DVOC			_MMIO(_DVOC)
4283  #define   DVO_ENABLE			(1 << 31)
4284  #define   DVO_PIPE_B_SELECT		(1 << 30)
4285  #define   DVO_PIPE_STALL_UNUSED		(0 << 28)
4286  #define   DVO_PIPE_STALL		(1 << 28)
4287  #define   DVO_PIPE_STALL_TV		(2 << 28)
4288  #define   DVO_PIPE_STALL_MASK		(3 << 28)
4289  #define   DVO_USE_VGA_SYNC		(1 << 15)
4290  #define   DVO_DATA_ORDER_I740		(0 << 14)
4291  #define   DVO_DATA_ORDER_FP		(1 << 14)
4292  #define   DVO_VSYNC_DISABLE		(1 << 11)
4293  #define   DVO_HSYNC_DISABLE		(1 << 10)
4294  #define   DVO_VSYNC_TRISTATE		(1 << 9)
4295  #define   DVO_HSYNC_TRISTATE		(1 << 8)
4296  #define   DVO_BORDER_ENABLE		(1 << 7)
4297  #define   DVO_DATA_ORDER_GBRG		(1 << 6)
4298  #define   DVO_DATA_ORDER_RGGB		(0 << 6)
4299  #define   DVO_DATA_ORDER_GBRG_ERRATA	(0 << 6)
4300  #define   DVO_DATA_ORDER_RGGB_ERRATA	(1 << 6)
4301  #define   DVO_VSYNC_ACTIVE_HIGH		(1 << 4)
4302  #define   DVO_HSYNC_ACTIVE_HIGH		(1 << 3)
4303  #define   DVO_BLANK_ACTIVE_HIGH		(1 << 2)
4304  #define   DVO_OUTPUT_CSTATE_PIXELS	(1 << 1)	/* SDG only */
4305  #define   DVO_OUTPUT_SOURCE_SIZE_PIXELS	(1 << 0)	/* SDG only */
4306  #define   DVO_PRESERVE_MASK		(0x7<<24)
4307  #define DVOA_SRCDIM		_MMIO(0x61124)
4308  #define DVOB_SRCDIM		_MMIO(0x61144)
4309  #define DVOC_SRCDIM		_MMIO(0x61164)
4310  #define   DVO_SRCDIM_HORIZONTAL_SHIFT	12
4311  #define   DVO_SRCDIM_VERTICAL_SHIFT	0
4312  
4313  /* LVDS port control */
4314  #define LVDS			_MMIO(0x61180)
4315  /*
4316   * Enables the LVDS port.  This bit must be set before DPLLs are enabled, as
4317   * the DPLL semantics change when the LVDS is assigned to that pipe.
4318   */
4319  #define   LVDS_PORT_EN			(1 << 31)
4320  /* Selects pipe B for LVDS data.  Must be set on pre-965. */
4321  #define   LVDS_PIPEB_SELECT		(1 << 30)
4322  #define   LVDS_PIPE_MASK		(1 << 30)
4323  #define   LVDS_PIPE(pipe)		((pipe) << 30)
4324  /* LVDS dithering flag on 965/g4x platform */
4325  #define   LVDS_ENABLE_DITHER		(1 << 25)
4326  /* LVDS sync polarity flags. Set to invert (i.e. negative) */
4327  #define   LVDS_VSYNC_POLARITY		(1 << 21)
4328  #define   LVDS_HSYNC_POLARITY		(1 << 20)
4329  
4330  /* Enable border for unscaled (or aspect-scaled) display */
4331  #define   LVDS_BORDER_ENABLE		(1 << 15)
4332  /*
4333   * Enables the A0-A2 data pairs and CLKA, containing 18 bits of color data per
4334   * pixel.
4335   */
4336  #define   LVDS_A0A2_CLKA_POWER_MASK	(3 << 8)
4337  #define   LVDS_A0A2_CLKA_POWER_DOWN	(0 << 8)
4338  #define   LVDS_A0A2_CLKA_POWER_UP	(3 << 8)
4339  /*
4340   * Controls the A3 data pair, which contains the additional LSBs for 24 bit
4341   * mode.  Only enabled if LVDS_A0A2_CLKA_POWER_UP also indicates it should be
4342   * on.
4343   */
4344  #define   LVDS_A3_POWER_MASK		(3 << 6)
4345  #define   LVDS_A3_POWER_DOWN		(0 << 6)
4346  #define   LVDS_A3_POWER_UP		(3 << 6)
4347  /*
4348   * Controls the CLKB pair.  This should only be set when LVDS_B0B3_POWER_UP
4349   * is set.
4350   */
4351  #define   LVDS_CLKB_POWER_MASK		(3 << 4)
4352  #define   LVDS_CLKB_POWER_DOWN		(0 << 4)
4353  #define   LVDS_CLKB_POWER_UP		(3 << 4)
4354  /*
4355   * Controls the B0-B3 data pairs.  This must be set to match the DPLL p2
4356   * setting for whether we are in dual-channel mode.  The B3 pair will
4357   * additionally only be powered up when LVDS_A3_POWER_UP is set.
4358   */
4359  #define   LVDS_B0B3_POWER_MASK		(3 << 2)
4360  #define   LVDS_B0B3_POWER_DOWN		(0 << 2)
4361  #define   LVDS_B0B3_POWER_UP		(3 << 2)
4362  
4363  /* Video Data Island Packet control */
4364  #define VIDEO_DIP_DATA		_MMIO(0x61178)
4365  /* Read the description of VIDEO_DIP_DATA (before Haswell) or VIDEO_DIP_ECC
4366   * (Haswell and newer) to see which VIDEO_DIP_DATA byte corresponds to each byte
4367   * of the infoframe structure specified by CEA-861. */
4368  #define   VIDEO_DIP_DATA_SIZE	32
4369  #define   VIDEO_DIP_VSC_DATA_SIZE	36
4370  #define VIDEO_DIP_CTL		_MMIO(0x61170)
4371  /* Pre HSW: */
4372  #define   VIDEO_DIP_ENABLE		(1 << 31)
4373  #define   VIDEO_DIP_PORT(port)		((port) << 29)
4374  #define   VIDEO_DIP_PORT_MASK		(3 << 29)
4375  #define   VIDEO_DIP_ENABLE_GCP		(1 << 25)
4376  #define   VIDEO_DIP_ENABLE_AVI		(1 << 21)
4377  #define   VIDEO_DIP_ENABLE_VENDOR	(2 << 21)
4378  #define   VIDEO_DIP_ENABLE_GAMUT	(4 << 21)
4379  #define   VIDEO_DIP_ENABLE_SPD		(8 << 21)
4380  #define   VIDEO_DIP_SELECT_AVI		(0 << 19)
4381  #define   VIDEO_DIP_SELECT_VENDOR	(1 << 19)
4382  #define   VIDEO_DIP_SELECT_SPD		(3 << 19)
4383  #define   VIDEO_DIP_SELECT_MASK		(3 << 19)
4384  #define   VIDEO_DIP_FREQ_ONCE		(0 << 16)
4385  #define   VIDEO_DIP_FREQ_VSYNC		(1 << 16)
4386  #define   VIDEO_DIP_FREQ_2VSYNC		(2 << 16)
4387  #define   VIDEO_DIP_FREQ_MASK		(3 << 16)
4388  /* HSW and later: */
4389  #define   VIDEO_DIP_ENABLE_VSC_HSW	(1 << 20)
4390  #define   VIDEO_DIP_ENABLE_GCP_HSW	(1 << 16)
4391  #define   VIDEO_DIP_ENABLE_AVI_HSW	(1 << 12)
4392  #define   VIDEO_DIP_ENABLE_VS_HSW	(1 << 8)
4393  #define   VIDEO_DIP_ENABLE_GMP_HSW	(1 << 4)
4394  #define   VIDEO_DIP_ENABLE_SPD_HSW	(1 << 0)
4395  
4396  /* Panel power sequencing */
4397  #define PPS_BASE			0x61200
4398  #define VLV_PPS_BASE			(VLV_DISPLAY_BASE + PPS_BASE)
4399  #define PCH_PPS_BASE			0xC7200
4400  
4401  #define _MMIO_PPS(pps_idx, reg)		_MMIO(dev_priv->pps_mmio_base -	\
4402  					      PPS_BASE + (reg) +	\
4403  					      (pps_idx) * 0x100)
4404  
4405  #define _PP_STATUS			0x61200
4406  #define PP_STATUS(pps_idx)		_MMIO_PPS(pps_idx, _PP_STATUS)
4407  #define   PP_ON				(1 << 31)
4408  /*
4409   * Indicates that all dependencies of the panel are on:
4410   *
4411   * - PLL enabled
4412   * - pipe enabled
4413   * - LVDS/DVOB/DVOC on
4414   */
4415  #define   PP_READY			(1 << 30)
4416  #define   PP_SEQUENCE_NONE		(0 << 28)
4417  #define   PP_SEQUENCE_POWER_UP		(1 << 28)
4418  #define   PP_SEQUENCE_POWER_DOWN	(2 << 28)
4419  #define   PP_SEQUENCE_MASK		(3 << 28)
4420  #define   PP_SEQUENCE_SHIFT		28
4421  #define   PP_CYCLE_DELAY_ACTIVE		(1 << 27)
4422  #define   PP_SEQUENCE_STATE_MASK	0x0000000f
4423  #define   PP_SEQUENCE_STATE_OFF_IDLE	(0x0 << 0)
4424  #define   PP_SEQUENCE_STATE_OFF_S0_1	(0x1 << 0)
4425  #define   PP_SEQUENCE_STATE_OFF_S0_2	(0x2 << 0)
4426  #define   PP_SEQUENCE_STATE_OFF_S0_3	(0x3 << 0)
4427  #define   PP_SEQUENCE_STATE_ON_IDLE	(0x8 << 0)
4428  #define   PP_SEQUENCE_STATE_ON_S1_0	(0x9 << 0)
4429  #define   PP_SEQUENCE_STATE_ON_S1_2	(0xa << 0)
4430  #define   PP_SEQUENCE_STATE_ON_S1_3	(0xb << 0)
4431  #define   PP_SEQUENCE_STATE_RESET	(0xf << 0)
4432  
4433  #define _PP_CONTROL			0x61204
4434  #define PP_CONTROL(pps_idx)		_MMIO_PPS(pps_idx, _PP_CONTROL)
4435  #define  PANEL_UNLOCK_REGS		(0xabcd << 16)
4436  #define  PANEL_UNLOCK_MASK		(0xffff << 16)
4437  #define  BXT_POWER_CYCLE_DELAY_MASK	0x1f0
4438  #define  BXT_POWER_CYCLE_DELAY_SHIFT	4
4439  #define  EDP_FORCE_VDD			(1 << 3)
4440  #define  EDP_BLC_ENABLE			(1 << 2)
4441  #define  PANEL_POWER_RESET		(1 << 1)
4442  #define  PANEL_POWER_OFF		(0 << 0)
4443  #define  PANEL_POWER_ON			(1 << 0)
4444  
4445  #define _PP_ON_DELAYS			0x61208
4446  #define PP_ON_DELAYS(pps_idx)		_MMIO_PPS(pps_idx, _PP_ON_DELAYS)
4447  #define  PANEL_PORT_SELECT_SHIFT	30
4448  #define  PANEL_PORT_SELECT_MASK		(3 << 30)
4449  #define  PANEL_PORT_SELECT_LVDS		(0 << 30)
4450  #define  PANEL_PORT_SELECT_DPA		(1 << 30)
4451  #define  PANEL_PORT_SELECT_DPC		(2 << 30)
4452  #define  PANEL_PORT_SELECT_DPD		(3 << 30)
4453  #define  PANEL_PORT_SELECT_VLV(port)	((port) << 30)
4454  #define  PANEL_POWER_UP_DELAY_MASK	0x1fff0000
4455  #define  PANEL_POWER_UP_DELAY_SHIFT	16
4456  #define  PANEL_LIGHT_ON_DELAY_MASK	0x1fff
4457  #define  PANEL_LIGHT_ON_DELAY_SHIFT	0
4458  
4459  #define _PP_OFF_DELAYS			0x6120C
4460  #define PP_OFF_DELAYS(pps_idx)		_MMIO_PPS(pps_idx, _PP_OFF_DELAYS)
4461  #define  PANEL_POWER_DOWN_DELAY_MASK	0x1fff0000
4462  #define  PANEL_POWER_DOWN_DELAY_SHIFT	16
4463  #define  PANEL_LIGHT_OFF_DELAY_MASK	0x1fff
4464  #define  PANEL_LIGHT_OFF_DELAY_SHIFT	0
4465  
4466  #define _PP_DIVISOR			0x61210
4467  #define PP_DIVISOR(pps_idx)		_MMIO_PPS(pps_idx, _PP_DIVISOR)
4468  #define  PP_REFERENCE_DIVIDER_MASK	0xffffff00
4469  #define  PP_REFERENCE_DIVIDER_SHIFT	8
4470  #define  PANEL_POWER_CYCLE_DELAY_MASK	0x1f
4471  #define  PANEL_POWER_CYCLE_DELAY_SHIFT	0
4472  
4473  /* Panel fitting */
4474  #define PFIT_CONTROL	_MMIO(dev_priv->info.display_mmio_offset + 0x61230)
4475  #define   PFIT_ENABLE		(1 << 31)
4476  #define   PFIT_PIPE_MASK	(3 << 29)
4477  #define   PFIT_PIPE_SHIFT	29
4478  #define   VERT_INTERP_DISABLE	(0 << 10)
4479  #define   VERT_INTERP_BILINEAR	(1 << 10)
4480  #define   VERT_INTERP_MASK	(3 << 10)
4481  #define   VERT_AUTO_SCALE	(1 << 9)
4482  #define   HORIZ_INTERP_DISABLE	(0 << 6)
4483  #define   HORIZ_INTERP_BILINEAR	(1 << 6)
4484  #define   HORIZ_INTERP_MASK	(3 << 6)
4485  #define   HORIZ_AUTO_SCALE	(1 << 5)
4486  #define   PANEL_8TO6_DITHER_ENABLE (1 << 3)
4487  #define   PFIT_FILTER_FUZZY	(0 << 24)
4488  #define   PFIT_SCALING_AUTO	(0 << 26)
4489  #define   PFIT_SCALING_PROGRAMMED (1 << 26)
4490  #define   PFIT_SCALING_PILLAR	(2 << 26)
4491  #define   PFIT_SCALING_LETTER	(3 << 26)
4492  #define PFIT_PGM_RATIOS _MMIO(dev_priv->info.display_mmio_offset + 0x61234)
4493  /* Pre-965 */
4494  #define		PFIT_VERT_SCALE_SHIFT		20
4495  #define		PFIT_VERT_SCALE_MASK		0xfff00000
4496  #define		PFIT_HORIZ_SCALE_SHIFT		4
4497  #define		PFIT_HORIZ_SCALE_MASK		0x0000fff0
4498  /* 965+ */
4499  #define		PFIT_VERT_SCALE_SHIFT_965	16
4500  #define		PFIT_VERT_SCALE_MASK_965	0x1fff0000
4501  #define		PFIT_HORIZ_SCALE_SHIFT_965	0
4502  #define		PFIT_HORIZ_SCALE_MASK_965	0x00001fff
4503  
4504  #define PFIT_AUTO_RATIOS _MMIO(dev_priv->info.display_mmio_offset + 0x61238)
4505  
4506  #define _VLV_BLC_PWM_CTL2_A (dev_priv->info.display_mmio_offset + 0x61250)
4507  #define _VLV_BLC_PWM_CTL2_B (dev_priv->info.display_mmio_offset + 0x61350)
4508  #define VLV_BLC_PWM_CTL2(pipe) _MMIO_PIPE(pipe, _VLV_BLC_PWM_CTL2_A, \
4509  					 _VLV_BLC_PWM_CTL2_B)
4510  
4511  #define _VLV_BLC_PWM_CTL_A (dev_priv->info.display_mmio_offset + 0x61254)
4512  #define _VLV_BLC_PWM_CTL_B (dev_priv->info.display_mmio_offset + 0x61354)
4513  #define VLV_BLC_PWM_CTL(pipe) _MMIO_PIPE(pipe, _VLV_BLC_PWM_CTL_A, \
4514  					_VLV_BLC_PWM_CTL_B)
4515  
4516  #define _VLV_BLC_HIST_CTL_A (dev_priv->info.display_mmio_offset + 0x61260)
4517  #define _VLV_BLC_HIST_CTL_B (dev_priv->info.display_mmio_offset + 0x61360)
4518  #define VLV_BLC_HIST_CTL(pipe) _MMIO_PIPE(pipe, _VLV_BLC_HIST_CTL_A, \
4519  					 _VLV_BLC_HIST_CTL_B)
4520  
4521  /* Backlight control */
4522  #define BLC_PWM_CTL2	_MMIO(dev_priv->info.display_mmio_offset + 0x61250) /* 965+ only */
4523  #define   BLM_PWM_ENABLE		(1 << 31)
4524  #define   BLM_COMBINATION_MODE		(1 << 30) /* gen4 only */
4525  #define   BLM_PIPE_SELECT		(1 << 29)
4526  #define   BLM_PIPE_SELECT_IVB		(3 << 29)
4527  #define   BLM_PIPE_A			(0 << 29)
4528  #define   BLM_PIPE_B			(1 << 29)
4529  #define   BLM_PIPE_C			(2 << 29) /* ivb + */
4530  #define   BLM_TRANSCODER_A		BLM_PIPE_A /* hsw */
4531  #define   BLM_TRANSCODER_B		BLM_PIPE_B
4532  #define   BLM_TRANSCODER_C		BLM_PIPE_C
4533  #define   BLM_TRANSCODER_EDP		(3 << 29)
4534  #define   BLM_PIPE(pipe)		((pipe) << 29)
4535  #define   BLM_POLARITY_I965		(1 << 28) /* gen4 only */
4536  #define   BLM_PHASE_IN_INTERUPT_STATUS	(1 << 26)
4537  #define   BLM_PHASE_IN_ENABLE		(1 << 25)
4538  #define   BLM_PHASE_IN_INTERUPT_ENABL	(1 << 24)
4539  #define   BLM_PHASE_IN_TIME_BASE_SHIFT	(16)
4540  #define   BLM_PHASE_IN_TIME_BASE_MASK	(0xff << 16)
4541  #define   BLM_PHASE_IN_COUNT_SHIFT	(8)
4542  #define   BLM_PHASE_IN_COUNT_MASK	(0xff << 8)
4543  #define   BLM_PHASE_IN_INCR_SHIFT	(0)
4544  #define   BLM_PHASE_IN_INCR_MASK	(0xff << 0)
4545  #define BLC_PWM_CTL	_MMIO(dev_priv->info.display_mmio_offset + 0x61254)
4546  /*
4547   * This is the most significant 15 bits of the number of backlight cycles in a
4548   * complete cycle of the modulated backlight control.
4549   *
4550   * The actual value is this field multiplied by two.
4551   */
4552  #define   BACKLIGHT_MODULATION_FREQ_SHIFT	(17)
4553  #define   BACKLIGHT_MODULATION_FREQ_MASK	(0x7fff << 17)
4554  #define   BLM_LEGACY_MODE			(1 << 16) /* gen2 only */
4555  /*
4556   * This is the number of cycles out of the backlight modulation cycle for which
4557   * the backlight is on.
4558   *
4559   * This field must be no greater than the number of cycles in the complete
4560   * backlight modulation cycle.
4561   */
4562  #define   BACKLIGHT_DUTY_CYCLE_SHIFT		(0)
4563  #define   BACKLIGHT_DUTY_CYCLE_MASK		(0xffff)
4564  #define   BACKLIGHT_DUTY_CYCLE_MASK_PNV		(0xfffe)
4565  #define   BLM_POLARITY_PNV			(1 << 0) /* pnv only */
4566  
4567  #define BLC_HIST_CTL	_MMIO(dev_priv->info.display_mmio_offset + 0x61260)
4568  #define  BLM_HISTOGRAM_ENABLE			(1 << 31)
4569  
4570  /* New registers for PCH-split platforms. Safe where new bits show up, the
4571   * register layout machtes with gen4 BLC_PWM_CTL[12]. */
4572  #define BLC_PWM_CPU_CTL2	_MMIO(0x48250)
4573  #define BLC_PWM_CPU_CTL		_MMIO(0x48254)
4574  
4575  #define HSW_BLC_PWM2_CTL	_MMIO(0x48350)
4576  
4577  /* PCH CTL1 is totally different, all but the below bits are reserved. CTL2 is
4578   * like the normal CTL from gen4 and earlier. Hooray for confusing naming. */
4579  #define BLC_PWM_PCH_CTL1	_MMIO(0xc8250)
4580  #define   BLM_PCH_PWM_ENABLE			(1 << 31)
4581  #define   BLM_PCH_OVERRIDE_ENABLE		(1 << 30)
4582  #define   BLM_PCH_POLARITY			(1 << 29)
4583  #define BLC_PWM_PCH_CTL2	_MMIO(0xc8254)
4584  
4585  #define UTIL_PIN_CTL		_MMIO(0x48400)
4586  #define   UTIL_PIN_ENABLE	(1 << 31)
4587  
4588  #define   UTIL_PIN_PIPE(x)     ((x) << 29)
4589  #define   UTIL_PIN_PIPE_MASK   (3 << 29)
4590  #define   UTIL_PIN_MODE_PWM    (1 << 24)
4591  #define   UTIL_PIN_MODE_MASK   (0xf << 24)
4592  #define   UTIL_PIN_POLARITY    (1 << 22)
4593  
4594  /* BXT backlight register definition. */
4595  #define _BXT_BLC_PWM_CTL1			0xC8250
4596  #define   BXT_BLC_PWM_ENABLE			(1 << 31)
4597  #define   BXT_BLC_PWM_POLARITY			(1 << 29)
4598  #define _BXT_BLC_PWM_FREQ1			0xC8254
4599  #define _BXT_BLC_PWM_DUTY1			0xC8258
4600  
4601  #define _BXT_BLC_PWM_CTL2			0xC8350
4602  #define _BXT_BLC_PWM_FREQ2			0xC8354
4603  #define _BXT_BLC_PWM_DUTY2			0xC8358
4604  
4605  #define BXT_BLC_PWM_CTL(controller)    _MMIO_PIPE(controller,		\
4606  					_BXT_BLC_PWM_CTL1, _BXT_BLC_PWM_CTL2)
4607  #define BXT_BLC_PWM_FREQ(controller)   _MMIO_PIPE(controller, \
4608  					_BXT_BLC_PWM_FREQ1, _BXT_BLC_PWM_FREQ2)
4609  #define BXT_BLC_PWM_DUTY(controller)   _MMIO_PIPE(controller, \
4610  					_BXT_BLC_PWM_DUTY1, _BXT_BLC_PWM_DUTY2)
4611  
4612  #define PCH_GTC_CTL		_MMIO(0xe7000)
4613  #define   PCH_GTC_ENABLE	(1 << 31)
4614  
4615  /* TV port control */
4616  #define TV_CTL			_MMIO(0x68000)
4617  /* Enables the TV encoder */
4618  # define TV_ENC_ENABLE			(1 << 31)
4619  /* Sources the TV encoder input from pipe B instead of A. */
4620  # define TV_ENC_PIPEB_SELECT		(1 << 30)
4621  /* Outputs composite video (DAC A only) */
4622  # define TV_ENC_OUTPUT_COMPOSITE	(0 << 28)
4623  /* Outputs SVideo video (DAC B/C) */
4624  # define TV_ENC_OUTPUT_SVIDEO		(1 << 28)
4625  /* Outputs Component video (DAC A/B/C) */
4626  # define TV_ENC_OUTPUT_COMPONENT	(2 << 28)
4627  /* Outputs Composite and SVideo (DAC A/B/C) */
4628  # define TV_ENC_OUTPUT_SVIDEO_COMPOSITE	(3 << 28)
4629  # define TV_TRILEVEL_SYNC		(1 << 21)
4630  /* Enables slow sync generation (945GM only) */
4631  # define TV_SLOW_SYNC			(1 << 20)
4632  /* Selects 4x oversampling for 480i and 576p */
4633  # define TV_OVERSAMPLE_4X		(0 << 18)
4634  /* Selects 2x oversampling for 720p and 1080i */
4635  # define TV_OVERSAMPLE_2X		(1 << 18)
4636  /* Selects no oversampling for 1080p */
4637  # define TV_OVERSAMPLE_NONE		(2 << 18)
4638  /* Selects 8x oversampling */
4639  # define TV_OVERSAMPLE_8X		(3 << 18)
4640  /* Selects progressive mode rather than interlaced */
4641  # define TV_PROGRESSIVE			(1 << 17)
4642  /* Sets the colorburst to PAL mode.  Required for non-M PAL modes. */
4643  # define TV_PAL_BURST			(1 << 16)
4644  /* Field for setting delay of Y compared to C */
4645  # define TV_YC_SKEW_MASK		(7 << 12)
4646  /* Enables a fix for 480p/576p standard definition modes on the 915GM only */
4647  # define TV_ENC_SDP_FIX			(1 << 11)
4648  /*
4649   * Enables a fix for the 915GM only.
4650   *
4651   * Not sure what it does.
4652   */
4653  # define TV_ENC_C0_FIX			(1 << 10)
4654  /* Bits that must be preserved by software */
4655  # define TV_CTL_SAVE			((1 << 11) | (3 << 9) | (7 << 6) | 0xf)
4656  # define TV_FUSE_STATE_MASK		(3 << 4)
4657  /* Read-only state that reports all features enabled */
4658  # define TV_FUSE_STATE_ENABLED		(0 << 4)
4659  /* Read-only state that reports that Macrovision is disabled in hardware*/
4660  # define TV_FUSE_STATE_NO_MACROVISION	(1 << 4)
4661  /* Read-only state that reports that TV-out is disabled in hardware. */
4662  # define TV_FUSE_STATE_DISABLED		(2 << 4)
4663  /* Normal operation */
4664  # define TV_TEST_MODE_NORMAL		(0 << 0)
4665  /* Encoder test pattern 1 - combo pattern */
4666  # define TV_TEST_MODE_PATTERN_1		(1 << 0)
4667  /* Encoder test pattern 2 - full screen vertical 75% color bars */
4668  # define TV_TEST_MODE_PATTERN_2		(2 << 0)
4669  /* Encoder test pattern 3 - full screen horizontal 75% color bars */
4670  # define TV_TEST_MODE_PATTERN_3		(3 << 0)
4671  /* Encoder test pattern 4 - random noise */
4672  # define TV_TEST_MODE_PATTERN_4		(4 << 0)
4673  /* Encoder test pattern 5 - linear color ramps */
4674  # define TV_TEST_MODE_PATTERN_5		(5 << 0)
4675  /*
4676   * This test mode forces the DACs to 50% of full output.
4677   *
4678   * This is used for load detection in combination with TVDAC_SENSE_MASK
4679   */
4680  # define TV_TEST_MODE_MONITOR_DETECT	(7 << 0)
4681  # define TV_TEST_MODE_MASK		(7 << 0)
4682  
4683  #define TV_DAC			_MMIO(0x68004)
4684  # define TV_DAC_SAVE		0x00ffff00
4685  /*
4686   * Reports that DAC state change logic has reported change (RO).
4687   *
4688   * This gets cleared when TV_DAC_STATE_EN is cleared
4689  */
4690  # define TVDAC_STATE_CHG		(1 << 31)
4691  # define TVDAC_SENSE_MASK		(7 << 28)
4692  /* Reports that DAC A voltage is above the detect threshold */
4693  # define TVDAC_A_SENSE			(1 << 30)
4694  /* Reports that DAC B voltage is above the detect threshold */
4695  # define TVDAC_B_SENSE			(1 << 29)
4696  /* Reports that DAC C voltage is above the detect threshold */
4697  # define TVDAC_C_SENSE			(1 << 28)
4698  /*
4699   * Enables DAC state detection logic, for load-based TV detection.
4700   *
4701   * The PLL of the chosen pipe (in TV_CTL) must be running, and the encoder set
4702   * to off, for load detection to work.
4703   */
4704  # define TVDAC_STATE_CHG_EN		(1 << 27)
4705  /* Sets the DAC A sense value to high */
4706  # define TVDAC_A_SENSE_CTL		(1 << 26)
4707  /* Sets the DAC B sense value to high */
4708  # define TVDAC_B_SENSE_CTL		(1 << 25)
4709  /* Sets the DAC C sense value to high */
4710  # define TVDAC_C_SENSE_CTL		(1 << 24)
4711  /* Overrides the ENC_ENABLE and DAC voltage levels */
4712  # define DAC_CTL_OVERRIDE		(1 << 7)
4713  /* Sets the slew rate.  Must be preserved in software */
4714  # define ENC_TVDAC_SLEW_FAST		(1 << 6)
4715  # define DAC_A_1_3_V			(0 << 4)
4716  # define DAC_A_1_1_V			(1 << 4)
4717  # define DAC_A_0_7_V			(2 << 4)
4718  # define DAC_A_MASK			(3 << 4)
4719  # define DAC_B_1_3_V			(0 << 2)
4720  # define DAC_B_1_1_V			(1 << 2)
4721  # define DAC_B_0_7_V			(2 << 2)
4722  # define DAC_B_MASK			(3 << 2)
4723  # define DAC_C_1_3_V			(0 << 0)
4724  # define DAC_C_1_1_V			(1 << 0)
4725  # define DAC_C_0_7_V			(2 << 0)
4726  # define DAC_C_MASK			(3 << 0)
4727  
4728  /*
4729   * CSC coefficients are stored in a floating point format with 9 bits of
4730   * mantissa and 2 or 3 bits of exponent.  The exponent is represented as 2**-n,
4731   * where 2-bit exponents are unsigned n, and 3-bit exponents are signed n with
4732   * -1 (0x3) being the only legal negative value.
4733   */
4734  #define TV_CSC_Y		_MMIO(0x68010)
4735  # define TV_RY_MASK			0x07ff0000
4736  # define TV_RY_SHIFT			16
4737  # define TV_GY_MASK			0x00000fff
4738  # define TV_GY_SHIFT			0
4739  
4740  #define TV_CSC_Y2		_MMIO(0x68014)
4741  # define TV_BY_MASK			0x07ff0000
4742  # define TV_BY_SHIFT			16
4743  /*
4744   * Y attenuation for component video.
4745   *
4746   * Stored in 1.9 fixed point.
4747   */
4748  # define TV_AY_MASK			0x000003ff
4749  # define TV_AY_SHIFT			0
4750  
4751  #define TV_CSC_U		_MMIO(0x68018)
4752  # define TV_RU_MASK			0x07ff0000
4753  # define TV_RU_SHIFT			16
4754  # define TV_GU_MASK			0x000007ff
4755  # define TV_GU_SHIFT			0
4756  
4757  #define TV_CSC_U2		_MMIO(0x6801c)
4758  # define TV_BU_MASK			0x07ff0000
4759  # define TV_BU_SHIFT			16
4760  /*
4761   * U attenuation for component video.
4762   *
4763   * Stored in 1.9 fixed point.
4764   */
4765  # define TV_AU_MASK			0x000003ff
4766  # define TV_AU_SHIFT			0
4767  
4768  #define TV_CSC_V		_MMIO(0x68020)
4769  # define TV_RV_MASK			0x0fff0000
4770  # define TV_RV_SHIFT			16
4771  # define TV_GV_MASK			0x000007ff
4772  # define TV_GV_SHIFT			0
4773  
4774  #define TV_CSC_V2		_MMIO(0x68024)
4775  # define TV_BV_MASK			0x07ff0000
4776  # define TV_BV_SHIFT			16
4777  /*
4778   * V attenuation for component video.
4779   *
4780   * Stored in 1.9 fixed point.
4781   */
4782  # define TV_AV_MASK			0x000007ff
4783  # define TV_AV_SHIFT			0
4784  
4785  #define TV_CLR_KNOBS		_MMIO(0x68028)
4786  /* 2s-complement brightness adjustment */
4787  # define TV_BRIGHTNESS_MASK		0xff000000
4788  # define TV_BRIGHTNESS_SHIFT		24
4789  /* Contrast adjustment, as a 2.6 unsigned floating point number */
4790  # define TV_CONTRAST_MASK		0x00ff0000
4791  # define TV_CONTRAST_SHIFT		16
4792  /* Saturation adjustment, as a 2.6 unsigned floating point number */
4793  # define TV_SATURATION_MASK		0x0000ff00
4794  # define TV_SATURATION_SHIFT		8
4795  /* Hue adjustment, as an integer phase angle in degrees */
4796  # define TV_HUE_MASK			0x000000ff
4797  # define TV_HUE_SHIFT			0
4798  
4799  #define TV_CLR_LEVEL		_MMIO(0x6802c)
4800  /* Controls the DAC level for black */
4801  # define TV_BLACK_LEVEL_MASK		0x01ff0000
4802  # define TV_BLACK_LEVEL_SHIFT		16
4803  /* Controls the DAC level for blanking */
4804  # define TV_BLANK_LEVEL_MASK		0x000001ff
4805  # define TV_BLANK_LEVEL_SHIFT		0
4806  
4807  #define TV_H_CTL_1		_MMIO(0x68030)
4808  /* Number of pixels in the hsync. */
4809  # define TV_HSYNC_END_MASK		0x1fff0000
4810  # define TV_HSYNC_END_SHIFT		16
4811  /* Total number of pixels minus one in the line (display and blanking). */
4812  # define TV_HTOTAL_MASK			0x00001fff
4813  # define TV_HTOTAL_SHIFT		0
4814  
4815  #define TV_H_CTL_2		_MMIO(0x68034)
4816  /* Enables the colorburst (needed for non-component color) */
4817  # define TV_BURST_ENA			(1 << 31)
4818  /* Offset of the colorburst from the start of hsync, in pixels minus one. */
4819  # define TV_HBURST_START_SHIFT		16
4820  # define TV_HBURST_START_MASK		0x1fff0000
4821  /* Length of the colorburst */
4822  # define TV_HBURST_LEN_SHIFT		0
4823  # define TV_HBURST_LEN_MASK		0x0001fff
4824  
4825  #define TV_H_CTL_3		_MMIO(0x68038)
4826  /* End of hblank, measured in pixels minus one from start of hsync */
4827  # define TV_HBLANK_END_SHIFT		16
4828  # define TV_HBLANK_END_MASK		0x1fff0000
4829  /* Start of hblank, measured in pixels minus one from start of hsync */
4830  # define TV_HBLANK_START_SHIFT		0
4831  # define TV_HBLANK_START_MASK		0x0001fff
4832  
4833  #define TV_V_CTL_1		_MMIO(0x6803c)
4834  /* XXX */
4835  # define TV_NBR_END_SHIFT		16
4836  # define TV_NBR_END_MASK		0x07ff0000
4837  /* XXX */
4838  # define TV_VI_END_F1_SHIFT		8
4839  # define TV_VI_END_F1_MASK		0x00003f00
4840  /* XXX */
4841  # define TV_VI_END_F2_SHIFT		0
4842  # define TV_VI_END_F2_MASK		0x0000003f
4843  
4844  #define TV_V_CTL_2		_MMIO(0x68040)
4845  /* Length of vsync, in half lines */
4846  # define TV_VSYNC_LEN_MASK		0x07ff0000
4847  # define TV_VSYNC_LEN_SHIFT		16
4848  /* Offset of the start of vsync in field 1, measured in one less than the
4849   * number of half lines.
4850   */
4851  # define TV_VSYNC_START_F1_MASK		0x00007f00
4852  # define TV_VSYNC_START_F1_SHIFT	8
4853  /*
4854   * Offset of the start of vsync in field 2, measured in one less than the
4855   * number of half lines.
4856   */
4857  # define TV_VSYNC_START_F2_MASK		0x0000007f
4858  # define TV_VSYNC_START_F2_SHIFT	0
4859  
4860  #define TV_V_CTL_3		_MMIO(0x68044)
4861  /* Enables generation of the equalization signal */
4862  # define TV_EQUAL_ENA			(1 << 31)
4863  /* Length of vsync, in half lines */
4864  # define TV_VEQ_LEN_MASK		0x007f0000
4865  # define TV_VEQ_LEN_SHIFT		16
4866  /* Offset of the start of equalization in field 1, measured in one less than
4867   * the number of half lines.
4868   */
4869  # define TV_VEQ_START_F1_MASK		0x0007f00
4870  # define TV_VEQ_START_F1_SHIFT		8
4871  /*
4872   * Offset of the start of equalization in field 2, measured in one less than
4873   * the number of half lines.
4874   */
4875  # define TV_VEQ_START_F2_MASK		0x000007f
4876  # define TV_VEQ_START_F2_SHIFT		0
4877  
4878  #define TV_V_CTL_4		_MMIO(0x68048)
4879  /*
4880   * Offset to start of vertical colorburst, measured in one less than the
4881   * number of lines from vertical start.
4882   */
4883  # define TV_VBURST_START_F1_MASK	0x003f0000
4884  # define TV_VBURST_START_F1_SHIFT	16
4885  /*
4886   * Offset to the end of vertical colorburst, measured in one less than the
4887   * number of lines from the start of NBR.
4888   */
4889  # define TV_VBURST_END_F1_MASK		0x000000ff
4890  # define TV_VBURST_END_F1_SHIFT		0
4891  
4892  #define TV_V_CTL_5		_MMIO(0x6804c)
4893  /*
4894   * Offset to start of vertical colorburst, measured in one less than the
4895   * number of lines from vertical start.
4896   */
4897  # define TV_VBURST_START_F2_MASK	0x003f0000
4898  # define TV_VBURST_START_F2_SHIFT	16
4899  /*
4900   * Offset to the end of vertical colorburst, measured in one less than the
4901   * number of lines from the start of NBR.
4902   */
4903  # define TV_VBURST_END_F2_MASK		0x000000ff
4904  # define TV_VBURST_END_F2_SHIFT		0
4905  
4906  #define TV_V_CTL_6		_MMIO(0x68050)
4907  /*
4908   * Offset to start of vertical colorburst, measured in one less than the
4909   * number of lines from vertical start.
4910   */
4911  # define TV_VBURST_START_F3_MASK	0x003f0000
4912  # define TV_VBURST_START_F3_SHIFT	16
4913  /*
4914   * Offset to the end of vertical colorburst, measured in one less than the
4915   * number of lines from the start of NBR.
4916   */
4917  # define TV_VBURST_END_F3_MASK		0x000000ff
4918  # define TV_VBURST_END_F3_SHIFT		0
4919  
4920  #define TV_V_CTL_7		_MMIO(0x68054)
4921  /*
4922   * Offset to start of vertical colorburst, measured in one less than the
4923   * number of lines from vertical start.
4924   */
4925  # define TV_VBURST_START_F4_MASK	0x003f0000
4926  # define TV_VBURST_START_F4_SHIFT	16
4927  /*
4928   * Offset to the end of vertical colorburst, measured in one less than the
4929   * number of lines from the start of NBR.
4930   */
4931  # define TV_VBURST_END_F4_MASK		0x000000ff
4932  # define TV_VBURST_END_F4_SHIFT		0
4933  
4934  #define TV_SC_CTL_1		_MMIO(0x68060)
4935  /* Turns on the first subcarrier phase generation DDA */
4936  # define TV_SC_DDA1_EN			(1 << 31)
4937  /* Turns on the first subcarrier phase generation DDA */
4938  # define TV_SC_DDA2_EN			(1 << 30)
4939  /* Turns on the first subcarrier phase generation DDA */
4940  # define TV_SC_DDA3_EN			(1 << 29)
4941  /* Sets the subcarrier DDA to reset frequency every other field */
4942  # define TV_SC_RESET_EVERY_2		(0 << 24)
4943  /* Sets the subcarrier DDA to reset frequency every fourth field */
4944  # define TV_SC_RESET_EVERY_4		(1 << 24)
4945  /* Sets the subcarrier DDA to reset frequency every eighth field */
4946  # define TV_SC_RESET_EVERY_8		(2 << 24)
4947  /* Sets the subcarrier DDA to never reset the frequency */
4948  # define TV_SC_RESET_NEVER		(3 << 24)
4949  /* Sets the peak amplitude of the colorburst.*/
4950  # define TV_BURST_LEVEL_MASK		0x00ff0000
4951  # define TV_BURST_LEVEL_SHIFT		16
4952  /* Sets the increment of the first subcarrier phase generation DDA */
4953  # define TV_SCDDA1_INC_MASK		0x00000fff
4954  # define TV_SCDDA1_INC_SHIFT		0
4955  
4956  #define TV_SC_CTL_2		_MMIO(0x68064)
4957  /* Sets the rollover for the second subcarrier phase generation DDA */
4958  # define TV_SCDDA2_SIZE_MASK		0x7fff0000
4959  # define TV_SCDDA2_SIZE_SHIFT		16
4960  /* Sets the increent of the second subcarrier phase generation DDA */
4961  # define TV_SCDDA2_INC_MASK		0x00007fff
4962  # define TV_SCDDA2_INC_SHIFT		0
4963  
4964  #define TV_SC_CTL_3		_MMIO(0x68068)
4965  /* Sets the rollover for the third subcarrier phase generation DDA */
4966  # define TV_SCDDA3_SIZE_MASK		0x7fff0000
4967  # define TV_SCDDA3_SIZE_SHIFT		16
4968  /* Sets the increent of the third subcarrier phase generation DDA */
4969  # define TV_SCDDA3_INC_MASK		0x00007fff
4970  # define TV_SCDDA3_INC_SHIFT		0
4971  
4972  #define TV_WIN_POS		_MMIO(0x68070)
4973  /* X coordinate of the display from the start of horizontal active */
4974  # define TV_XPOS_MASK			0x1fff0000
4975  # define TV_XPOS_SHIFT			16
4976  /* Y coordinate of the display from the start of vertical active (NBR) */
4977  # define TV_YPOS_MASK			0x00000fff
4978  # define TV_YPOS_SHIFT			0
4979  
4980  #define TV_WIN_SIZE		_MMIO(0x68074)
4981  /* Horizontal size of the display window, measured in pixels*/
4982  # define TV_XSIZE_MASK			0x1fff0000
4983  # define TV_XSIZE_SHIFT			16
4984  /*
4985   * Vertical size of the display window, measured in pixels.
4986   *
4987   * Must be even for interlaced modes.
4988   */
4989  # define TV_YSIZE_MASK			0x00000fff
4990  # define TV_YSIZE_SHIFT			0
4991  
4992  #define TV_FILTER_CTL_1		_MMIO(0x68080)
4993  /*
4994   * Enables automatic scaling calculation.
4995   *
4996   * If set, the rest of the registers are ignored, and the calculated values can
4997   * be read back from the register.
4998   */
4999  # define TV_AUTO_SCALE			(1 << 31)
5000  /*
5001   * Disables the vertical filter.
5002   *
5003   * This is required on modes more than 1024 pixels wide */
5004  # define TV_V_FILTER_BYPASS		(1 << 29)
5005  /* Enables adaptive vertical filtering */
5006  # define TV_VADAPT			(1 << 28)
5007  # define TV_VADAPT_MODE_MASK		(3 << 26)
5008  /* Selects the least adaptive vertical filtering mode */
5009  # define TV_VADAPT_MODE_LEAST		(0 << 26)
5010  /* Selects the moderately adaptive vertical filtering mode */
5011  # define TV_VADAPT_MODE_MODERATE	(1 << 26)
5012  /* Selects the most adaptive vertical filtering mode */
5013  # define TV_VADAPT_MODE_MOST		(3 << 26)
5014  /*
5015   * Sets the horizontal scaling factor.
5016   *
5017   * This should be the fractional part of the horizontal scaling factor divided
5018   * by the oversampling rate.  TV_HSCALE should be less than 1, and set to:
5019   *
5020   * (src width - 1) / ((oversample * dest width) - 1)
5021   */
5022  # define TV_HSCALE_FRAC_MASK		0x00003fff
5023  # define TV_HSCALE_FRAC_SHIFT		0
5024  
5025  #define TV_FILTER_CTL_2		_MMIO(0x68084)
5026  /*
5027   * Sets the integer part of the 3.15 fixed-point vertical scaling factor.
5028   *
5029   * TV_VSCALE should be (src height - 1) / ((interlace * dest height) - 1)
5030   */
5031  # define TV_VSCALE_INT_MASK		0x00038000
5032  # define TV_VSCALE_INT_SHIFT		15
5033  /*
5034   * Sets the fractional part of the 3.15 fixed-point vertical scaling factor.
5035   *
5036   * \sa TV_VSCALE_INT_MASK
5037   */
5038  # define TV_VSCALE_FRAC_MASK		0x00007fff
5039  # define TV_VSCALE_FRAC_SHIFT		0
5040  
5041  #define TV_FILTER_CTL_3		_MMIO(0x68088)
5042  /*
5043   * Sets the integer part of the 3.15 fixed-point vertical scaling factor.
5044   *
5045   * TV_VSCALE should be (src height - 1) / (1/4 * (dest height - 1))
5046   *
5047   * For progressive modes, TV_VSCALE_IP_INT should be set to zeroes.
5048   */
5049  # define TV_VSCALE_IP_INT_MASK		0x00038000
5050  # define TV_VSCALE_IP_INT_SHIFT		15
5051  /*
5052   * Sets the fractional part of the 3.15 fixed-point vertical scaling factor.
5053   *
5054   * For progressive modes, TV_VSCALE_IP_INT should be set to zeroes.
5055   *
5056   * \sa TV_VSCALE_IP_INT_MASK
5057   */
5058  # define TV_VSCALE_IP_FRAC_MASK		0x00007fff
5059  # define TV_VSCALE_IP_FRAC_SHIFT		0
5060  
5061  #define TV_CC_CONTROL		_MMIO(0x68090)
5062  # define TV_CC_ENABLE			(1 << 31)
5063  /*
5064   * Specifies which field to send the CC data in.
5065   *
5066   * CC data is usually sent in field 0.
5067   */
5068  # define TV_CC_FID_MASK			(1 << 27)
5069  # define TV_CC_FID_SHIFT		27
5070  /* Sets the horizontal position of the CC data.  Usually 135. */
5071  # define TV_CC_HOFF_MASK		0x03ff0000
5072  # define TV_CC_HOFF_SHIFT		16
5073  /* Sets the vertical position of the CC data.  Usually 21 */
5074  # define TV_CC_LINE_MASK		0x0000003f
5075  # define TV_CC_LINE_SHIFT		0
5076  
5077  #define TV_CC_DATA		_MMIO(0x68094)
5078  # define TV_CC_RDY			(1 << 31)
5079  /* Second word of CC data to be transmitted. */
5080  # define TV_CC_DATA_2_MASK		0x007f0000
5081  # define TV_CC_DATA_2_SHIFT		16
5082  /* First word of CC data to be transmitted. */
5083  # define TV_CC_DATA_1_MASK		0x0000007f
5084  # define TV_CC_DATA_1_SHIFT		0
5085  
5086  #define TV_H_LUMA(i)		_MMIO(0x68100 + (i) * 4) /* 60 registers */
5087  #define TV_H_CHROMA(i)		_MMIO(0x68200 + (i) * 4) /* 60 registers */
5088  #define TV_V_LUMA(i)		_MMIO(0x68300 + (i) * 4) /* 43 registers */
5089  #define TV_V_CHROMA(i)		_MMIO(0x68400 + (i) * 4) /* 43 registers */
5090  
5091  /* Display Port */
5092  #define DP_A			_MMIO(0x64000) /* eDP */
5093  #define DP_B			_MMIO(0x64100)
5094  #define DP_C			_MMIO(0x64200)
5095  #define DP_D			_MMIO(0x64300)
5096  
5097  #define VLV_DP_B		_MMIO(VLV_DISPLAY_BASE + 0x64100)
5098  #define VLV_DP_C		_MMIO(VLV_DISPLAY_BASE + 0x64200)
5099  #define CHV_DP_D		_MMIO(VLV_DISPLAY_BASE + 0x64300)
5100  
5101  #define   DP_PORT_EN			(1 << 31)
5102  #define   DP_PIPEB_SELECT		(1 << 30)
5103  #define   DP_PIPE_MASK			(1 << 30)
5104  #define   DP_PIPE_SELECT_CHV(pipe)	((pipe) << 16)
5105  #define   DP_PIPE_MASK_CHV		(3 << 16)
5106  
5107  /* Link training mode - select a suitable mode for each stage */
5108  #define   DP_LINK_TRAIN_PAT_1		(0 << 28)
5109  #define   DP_LINK_TRAIN_PAT_2		(1 << 28)
5110  #define   DP_LINK_TRAIN_PAT_IDLE	(2 << 28)
5111  #define   DP_LINK_TRAIN_OFF		(3 << 28)
5112  #define   DP_LINK_TRAIN_MASK		(3 << 28)
5113  #define   DP_LINK_TRAIN_SHIFT		28
5114  #define   DP_LINK_TRAIN_PAT_3_CHV	(1 << 14)
5115  #define   DP_LINK_TRAIN_MASK_CHV	((3 << 28)|(1<<14))
5116  
5117  /* CPT Link training mode */
5118  #define   DP_LINK_TRAIN_PAT_1_CPT	(0 << 8)
5119  #define   DP_LINK_TRAIN_PAT_2_CPT	(1 << 8)
5120  #define   DP_LINK_TRAIN_PAT_IDLE_CPT	(2 << 8)
5121  #define   DP_LINK_TRAIN_OFF_CPT		(3 << 8)
5122  #define   DP_LINK_TRAIN_MASK_CPT	(7 << 8)
5123  #define   DP_LINK_TRAIN_SHIFT_CPT	8
5124  
5125  /* Signal voltages. These are mostly controlled by the other end */
5126  #define   DP_VOLTAGE_0_4		(0 << 25)
5127  #define   DP_VOLTAGE_0_6		(1 << 25)
5128  #define   DP_VOLTAGE_0_8		(2 << 25)
5129  #define   DP_VOLTAGE_1_2		(3 << 25)
5130  #define   DP_VOLTAGE_MASK		(7 << 25)
5131  #define   DP_VOLTAGE_SHIFT		25
5132  
5133  /* Signal pre-emphasis levels, like voltages, the other end tells us what
5134   * they want
5135   */
5136  #define   DP_PRE_EMPHASIS_0		(0 << 22)
5137  #define   DP_PRE_EMPHASIS_3_5		(1 << 22)
5138  #define   DP_PRE_EMPHASIS_6		(2 << 22)
5139  #define   DP_PRE_EMPHASIS_9_5		(3 << 22)
5140  #define   DP_PRE_EMPHASIS_MASK		(7 << 22)
5141  #define   DP_PRE_EMPHASIS_SHIFT		22
5142  
5143  /* How many wires to use. I guess 3 was too hard */
5144  #define   DP_PORT_WIDTH(width)		(((width) - 1) << 19)
5145  #define   DP_PORT_WIDTH_MASK		(7 << 19)
5146  #define   DP_PORT_WIDTH_SHIFT		19
5147  
5148  /* Mystic DPCD version 1.1 special mode */
5149  #define   DP_ENHANCED_FRAMING		(1 << 18)
5150  
5151  /* eDP */
5152  #define   DP_PLL_FREQ_270MHZ		(0 << 16)
5153  #define   DP_PLL_FREQ_162MHZ		(1 << 16)
5154  #define   DP_PLL_FREQ_MASK		(3 << 16)
5155  
5156  /* locked once port is enabled */
5157  #define   DP_PORT_REVERSAL		(1 << 15)
5158  
5159  /* eDP */
5160  #define   DP_PLL_ENABLE			(1 << 14)
5161  
5162  /* sends the clock on lane 15 of the PEG for debug */
5163  #define   DP_CLOCK_OUTPUT_ENABLE	(1 << 13)
5164  
5165  #define   DP_SCRAMBLING_DISABLE		(1 << 12)
5166  #define   DP_SCRAMBLING_DISABLE_IRONLAKE	(1 << 7)
5167  
5168  /* limit RGB values to avoid confusing TVs */
5169  #define   DP_COLOR_RANGE_16_235		(1 << 8)
5170  
5171  /* Turn on the audio link */
5172  #define   DP_AUDIO_OUTPUT_ENABLE	(1 << 6)
5173  
5174  /* vs and hs sync polarity */
5175  #define   DP_SYNC_VS_HIGH		(1 << 4)
5176  #define   DP_SYNC_HS_HIGH		(1 << 3)
5177  
5178  /* A fantasy */
5179  #define   DP_DETECTED			(1 << 2)
5180  
5181  /* The aux channel provides a way to talk to the
5182   * signal sink for DDC etc. Max packet size supported
5183   * is 20 bytes in each direction, hence the 5 fixed
5184   * data registers
5185   */
5186  #define _DPA_AUX_CH_CTL		(dev_priv->info.display_mmio_offset + 0x64010)
5187  #define _DPA_AUX_CH_DATA1	(dev_priv->info.display_mmio_offset + 0x64014)
5188  #define _DPA_AUX_CH_DATA2	(dev_priv->info.display_mmio_offset + 0x64018)
5189  #define _DPA_AUX_CH_DATA3	(dev_priv->info.display_mmio_offset + 0x6401c)
5190  #define _DPA_AUX_CH_DATA4	(dev_priv->info.display_mmio_offset + 0x64020)
5191  #define _DPA_AUX_CH_DATA5	(dev_priv->info.display_mmio_offset + 0x64024)
5192  
5193  #define _DPB_AUX_CH_CTL		(dev_priv->info.display_mmio_offset + 0x64110)
5194  #define _DPB_AUX_CH_DATA1	(dev_priv->info.display_mmio_offset + 0x64114)
5195  #define _DPB_AUX_CH_DATA2	(dev_priv->info.display_mmio_offset + 0x64118)
5196  #define _DPB_AUX_CH_DATA3	(dev_priv->info.display_mmio_offset + 0x6411c)
5197  #define _DPB_AUX_CH_DATA4	(dev_priv->info.display_mmio_offset + 0x64120)
5198  #define _DPB_AUX_CH_DATA5	(dev_priv->info.display_mmio_offset + 0x64124)
5199  
5200  #define _DPC_AUX_CH_CTL		(dev_priv->info.display_mmio_offset + 0x64210)
5201  #define _DPC_AUX_CH_DATA1	(dev_priv->info.display_mmio_offset + 0x64214)
5202  #define _DPC_AUX_CH_DATA2	(dev_priv->info.display_mmio_offset + 0x64218)
5203  #define _DPC_AUX_CH_DATA3	(dev_priv->info.display_mmio_offset + 0x6421c)
5204  #define _DPC_AUX_CH_DATA4	(dev_priv->info.display_mmio_offset + 0x64220)
5205  #define _DPC_AUX_CH_DATA5	(dev_priv->info.display_mmio_offset + 0x64224)
5206  
5207  #define _DPD_AUX_CH_CTL		(dev_priv->info.display_mmio_offset + 0x64310)
5208  #define _DPD_AUX_CH_DATA1	(dev_priv->info.display_mmio_offset + 0x64314)
5209  #define _DPD_AUX_CH_DATA2	(dev_priv->info.display_mmio_offset + 0x64318)
5210  #define _DPD_AUX_CH_DATA3	(dev_priv->info.display_mmio_offset + 0x6431c)
5211  #define _DPD_AUX_CH_DATA4	(dev_priv->info.display_mmio_offset + 0x64320)
5212  #define _DPD_AUX_CH_DATA5	(dev_priv->info.display_mmio_offset + 0x64324)
5213  
5214  #define DP_AUX_CH_CTL(port)	_MMIO_PORT(port, _DPA_AUX_CH_CTL, _DPB_AUX_CH_CTL)
5215  #define DP_AUX_CH_DATA(port, i)	_MMIO(_PORT(port, _DPA_AUX_CH_DATA1, _DPB_AUX_CH_DATA1) + (i) * 4) /* 5 registers */
5216  
5217  #define   DP_AUX_CH_CTL_SEND_BUSY	    (1 << 31)
5218  #define   DP_AUX_CH_CTL_DONE		    (1 << 30)
5219  #define   DP_AUX_CH_CTL_INTERRUPT	    (1 << 29)
5220  #define   DP_AUX_CH_CTL_TIME_OUT_ERROR	    (1 << 28)
5221  #define   DP_AUX_CH_CTL_TIME_OUT_400us	    (0 << 26)
5222  #define   DP_AUX_CH_CTL_TIME_OUT_600us	    (1 << 26)
5223  #define   DP_AUX_CH_CTL_TIME_OUT_800us	    (2 << 26)
5224  #define   DP_AUX_CH_CTL_TIME_OUT_1600us	    (3 << 26)
5225  #define   DP_AUX_CH_CTL_TIME_OUT_MASK	    (3 << 26)
5226  #define   DP_AUX_CH_CTL_RECEIVE_ERROR	    (1 << 25)
5227  #define   DP_AUX_CH_CTL_MESSAGE_SIZE_MASK    (0x1f << 20)
5228  #define   DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT   20
5229  #define   DP_AUX_CH_CTL_PRECHARGE_2US_MASK   (0xf << 16)
5230  #define   DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT  16
5231  #define   DP_AUX_CH_CTL_AUX_AKSV_SELECT	    (1 << 15)
5232  #define   DP_AUX_CH_CTL_MANCHESTER_TEST	    (1 << 14)
5233  #define   DP_AUX_CH_CTL_SYNC_TEST	    (1 << 13)
5234  #define   DP_AUX_CH_CTL_DEGLITCH_TEST	    (1 << 12)
5235  #define   DP_AUX_CH_CTL_PRECHARGE_TEST	    (1 << 11)
5236  #define   DP_AUX_CH_CTL_BIT_CLOCK_2X_MASK    (0x7ff)
5237  #define   DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT   0
5238  #define   DP_AUX_CH_CTL_PSR_DATA_AUX_REG_SKL	(1 << 14)
5239  #define   DP_AUX_CH_CTL_FS_DATA_AUX_REG_SKL	(1 << 13)
5240  #define   DP_AUX_CH_CTL_GTC_DATA_AUX_REG_SKL	(1 << 12)
5241  #define   DP_AUX_CH_CTL_FW_SYNC_PULSE_SKL_MASK (0x1f << 5)
5242  #define   DP_AUX_CH_CTL_FW_SYNC_PULSE_SKL(c) (((c) - 1) << 5)
5243  #define   DP_AUX_CH_CTL_SYNC_PULSE_SKL(c)   ((c) - 1)
5244  
5245  /*
5246   * Computing GMCH M and N values for the Display Port link
5247   *
5248   * GMCH M/N = dot clock * bytes per pixel / ls_clk * # of lanes
5249   *
5250   * ls_clk (we assume) is the DP link clock (1.62 or 2.7 GHz)
5251   *
5252   * The GMCH value is used internally
5253   *
5254   * bytes_per_pixel is the number of bytes coming out of the plane,
5255   * which is after the LUTs, so we want the bytes for our color format.
5256   * For our current usage, this is always 3, one byte for R, G and B.
5257   */
5258  #define _PIPEA_DATA_M_G4X	0x70050
5259  #define _PIPEB_DATA_M_G4X	0x71050
5260  
5261  /* Transfer unit size for display port - 1, default is 0x3f (for TU size 64) */
5262  #define  TU_SIZE(x)             (((x)-1) << 25) /* default size 64 */
5263  #define  TU_SIZE_SHIFT		25
5264  #define  TU_SIZE_MASK           (0x3f << 25)
5265  
5266  #define  DATA_LINK_M_N_MASK	(0xffffff)
5267  #define  DATA_LINK_N_MAX	(0x800000)
5268  
5269  #define _PIPEA_DATA_N_G4X	0x70054
5270  #define _PIPEB_DATA_N_G4X	0x71054
5271  #define   PIPE_GMCH_DATA_N_MASK			(0xffffff)
5272  
5273  /*
5274   * Computing Link M and N values for the Display Port link
5275   *
5276   * Link M / N = pixel_clock / ls_clk
5277   *
5278   * (the DP spec calls pixel_clock the 'strm_clk')
5279   *
5280   * The Link value is transmitted in the Main Stream
5281   * Attributes and VB-ID.
5282   */
5283  
5284  #define _PIPEA_LINK_M_G4X	0x70060
5285  #define _PIPEB_LINK_M_G4X	0x71060
5286  #define   PIPEA_DP_LINK_M_MASK			(0xffffff)
5287  
5288  #define _PIPEA_LINK_N_G4X	0x70064
5289  #define _PIPEB_LINK_N_G4X	0x71064
5290  #define   PIPEA_DP_LINK_N_MASK			(0xffffff)
5291  
5292  #define PIPE_DATA_M_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_DATA_M_G4X, _PIPEB_DATA_M_G4X)
5293  #define PIPE_DATA_N_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_DATA_N_G4X, _PIPEB_DATA_N_G4X)
5294  #define PIPE_LINK_M_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_LINK_M_G4X, _PIPEB_LINK_M_G4X)
5295  #define PIPE_LINK_N_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_LINK_N_G4X, _PIPEB_LINK_N_G4X)
5296  
5297  /* Display & cursor control */
5298  
5299  /* Pipe A */
5300  #define _PIPEADSL		0x70000
5301  #define   DSL_LINEMASK_GEN2	0x00000fff
5302  #define   DSL_LINEMASK_GEN3	0x00001fff
5303  #define _PIPEACONF		0x70008
5304  #define   PIPECONF_ENABLE	(1<<31)
5305  #define   PIPECONF_DISABLE	0
5306  #define   PIPECONF_DOUBLE_WIDE	(1<<30)
5307  #define   I965_PIPECONF_ACTIVE	(1<<30)
5308  #define   PIPECONF_DSI_PLL_LOCKED	(1<<29) /* vlv & pipe A only */
5309  #define   PIPECONF_FRAME_START_DELAY_MASK (3<<27)
5310  #define   PIPECONF_SINGLE_WIDE	0
5311  #define   PIPECONF_PIPE_UNLOCKED 0
5312  #define   PIPECONF_PIPE_LOCKED	(1<<25)
5313  #define   PIPECONF_PALETTE	0
5314  #define   PIPECONF_GAMMA		(1<<24)
5315  #define   PIPECONF_FORCE_BORDER	(1<<25)
5316  #define   PIPECONF_INTERLACE_MASK	(7 << 21)
5317  #define   PIPECONF_INTERLACE_MASK_HSW	(3 << 21)
5318  /* Note that pre-gen3 does not support interlaced display directly. Panel
5319   * fitting must be disabled on pre-ilk for interlaced. */
5320  #define   PIPECONF_PROGRESSIVE			(0 << 21)
5321  #define   PIPECONF_INTERLACE_W_SYNC_SHIFT_PANEL	(4 << 21) /* gen4 only */
5322  #define   PIPECONF_INTERLACE_W_SYNC_SHIFT	(5 << 21) /* gen4 only */
5323  #define   PIPECONF_INTERLACE_W_FIELD_INDICATION	(6 << 21)
5324  #define   PIPECONF_INTERLACE_FIELD_0_ONLY	(7 << 21) /* gen3 only */
5325  /* Ironlake and later have a complete new set of values for interlaced. PFIT
5326   * means panel fitter required, PF means progressive fetch, DBL means power
5327   * saving pixel doubling. */
5328  #define   PIPECONF_PFIT_PF_INTERLACED_ILK	(1 << 21)
5329  #define   PIPECONF_INTERLACED_ILK		(3 << 21)
5330  #define   PIPECONF_INTERLACED_DBL_ILK		(4 << 21) /* ilk/snb only */
5331  #define   PIPECONF_PFIT_PF_INTERLACED_DBL_ILK	(5 << 21) /* ilk/snb only */
5332  #define   PIPECONF_INTERLACE_MODE_MASK		(7 << 21)
5333  #define   PIPECONF_EDP_RR_MODE_SWITCH		(1 << 20)
5334  #define   PIPECONF_CXSR_DOWNCLOCK	(1<<16)
5335  #define   PIPECONF_EDP_RR_MODE_SWITCH_VLV	(1 << 14)
5336  #define   PIPECONF_COLOR_RANGE_SELECT	(1 << 13)
5337  #define   PIPECONF_BPC_MASK	(0x7 << 5)
5338  #define   PIPECONF_8BPC		(0<<5)
5339  #define   PIPECONF_10BPC	(1<<5)
5340  #define   PIPECONF_6BPC		(2<<5)
5341  #define   PIPECONF_12BPC	(3<<5)
5342  #define   PIPECONF_DITHER_EN	(1<<4)
5343  #define   PIPECONF_DITHER_TYPE_MASK (0x0000000c)
5344  #define   PIPECONF_DITHER_TYPE_SP (0<<2)
5345  #define   PIPECONF_DITHER_TYPE_ST1 (1<<2)
5346  #define   PIPECONF_DITHER_TYPE_ST2 (2<<2)
5347  #define   PIPECONF_DITHER_TYPE_TEMP (3<<2)
5348  #define _PIPEASTAT		0x70024
5349  #define   PIPE_FIFO_UNDERRUN_STATUS		(1UL<<31)
5350  #define   SPRITE1_FLIP_DONE_INT_EN_VLV		(1UL<<30)
5351  #define   PIPE_CRC_ERROR_ENABLE			(1UL<<29)
5352  #define   PIPE_CRC_DONE_ENABLE			(1UL<<28)
5353  #define   PERF_COUNTER2_INTERRUPT_EN		(1UL<<27)
5354  #define   PIPE_GMBUS_EVENT_ENABLE		(1UL<<27)
5355  #define   PLANE_FLIP_DONE_INT_EN_VLV		(1UL<<26)
5356  #define   PIPE_HOTPLUG_INTERRUPT_ENABLE		(1UL<<26)
5357  #define   PIPE_VSYNC_INTERRUPT_ENABLE		(1UL<<25)
5358  #define   PIPE_DISPLAY_LINE_COMPARE_ENABLE	(1UL<<24)
5359  #define   PIPE_DPST_EVENT_ENABLE		(1UL<<23)
5360  #define   SPRITE0_FLIP_DONE_INT_EN_VLV		(1UL<<22)
5361  #define   PIPE_LEGACY_BLC_EVENT_ENABLE		(1UL<<22)
5362  #define   PIPE_ODD_FIELD_INTERRUPT_ENABLE	(1UL<<21)
5363  #define   PIPE_EVEN_FIELD_INTERRUPT_ENABLE	(1UL<<20)
5364  #define   PIPE_B_PSR_INTERRUPT_ENABLE_VLV	(1UL<<19)
5365  #define   PERF_COUNTER_INTERRUPT_EN		(1UL<<19)
5366  #define   PIPE_HOTPLUG_TV_INTERRUPT_ENABLE	(1UL<<18) /* pre-965 */
5367  #define   PIPE_START_VBLANK_INTERRUPT_ENABLE	(1UL<<18) /* 965 or later */
5368  #define   PIPE_FRAMESTART_INTERRUPT_ENABLE	(1UL<<17)
5369  #define   PIPE_VBLANK_INTERRUPT_ENABLE		(1UL<<17)
5370  #define   PIPEA_HBLANK_INT_EN_VLV		(1UL<<16)
5371  #define   PIPE_OVERLAY_UPDATED_ENABLE		(1UL<<16)
5372  #define   SPRITE1_FLIP_DONE_INT_STATUS_VLV	(1UL<<15)
5373  #define   SPRITE0_FLIP_DONE_INT_STATUS_VLV	(1UL<<14)
5374  #define   PIPE_CRC_ERROR_INTERRUPT_STATUS	(1UL<<13)
5375  #define   PIPE_CRC_DONE_INTERRUPT_STATUS	(1UL<<12)
5376  #define   PERF_COUNTER2_INTERRUPT_STATUS	(1UL<<11)
5377  #define   PIPE_GMBUS_INTERRUPT_STATUS		(1UL<<11)
5378  #define   PLANE_FLIP_DONE_INT_STATUS_VLV	(1UL<<10)
5379  #define   PIPE_HOTPLUG_INTERRUPT_STATUS		(1UL<<10)
5380  #define   PIPE_VSYNC_INTERRUPT_STATUS		(1UL<<9)
5381  #define   PIPE_DISPLAY_LINE_COMPARE_STATUS	(1UL<<8)
5382  #define   PIPE_DPST_EVENT_STATUS		(1UL<<7)
5383  #define   PIPE_A_PSR_STATUS_VLV			(1UL<<6)
5384  #define   PIPE_LEGACY_BLC_EVENT_STATUS		(1UL<<6)
5385  #define   PIPE_ODD_FIELD_INTERRUPT_STATUS	(1UL<<5)
5386  #define   PIPE_EVEN_FIELD_INTERRUPT_STATUS	(1UL<<4)
5387  #define   PIPE_B_PSR_STATUS_VLV			(1UL<<3)
5388  #define   PERF_COUNTER_INTERRUPT_STATUS		(1UL<<3)
5389  #define   PIPE_HOTPLUG_TV_INTERRUPT_STATUS	(1UL<<2) /* pre-965 */
5390  #define   PIPE_START_VBLANK_INTERRUPT_STATUS	(1UL<<2) /* 965 or later */
5391  #define   PIPE_FRAMESTART_INTERRUPT_STATUS	(1UL<<1)
5392  #define   PIPE_VBLANK_INTERRUPT_STATUS		(1UL<<1)
5393  #define   PIPE_HBLANK_INT_STATUS		(1UL<<0)
5394  #define   PIPE_OVERLAY_UPDATED_STATUS		(1UL<<0)
5395  
5396  #define PIPESTAT_INT_ENABLE_MASK		0x7fff0000
5397  #define PIPESTAT_INT_STATUS_MASK		0x0000ffff
5398  
5399  #define PIPE_A_OFFSET		0x70000
5400  #define PIPE_B_OFFSET		0x71000
5401  #define PIPE_C_OFFSET		0x72000
5402  #define CHV_PIPE_C_OFFSET	0x74000
5403  /*
5404   * There's actually no pipe EDP. Some pipe registers have
5405   * simply shifted from the pipe to the transcoder, while
5406   * keeping their original offset. Thus we need PIPE_EDP_OFFSET
5407   * to access such registers in transcoder EDP.
5408   */
5409  #define PIPE_EDP_OFFSET	0x7f000
5410  
5411  #define _MMIO_PIPE2(pipe, reg) _MMIO(dev_priv->info.pipe_offsets[pipe] - \
5412  	dev_priv->info.pipe_offsets[PIPE_A] + (reg) + \
5413  	dev_priv->info.display_mmio_offset)
5414  
5415  #define PIPECONF(pipe)		_MMIO_PIPE2(pipe, _PIPEACONF)
5416  #define PIPEDSL(pipe)		_MMIO_PIPE2(pipe, _PIPEADSL)
5417  #define PIPEFRAME(pipe)		_MMIO_PIPE2(pipe, _PIPEAFRAMEHIGH)
5418  #define PIPEFRAMEPIXEL(pipe)	_MMIO_PIPE2(pipe, _PIPEAFRAMEPIXEL)
5419  #define PIPESTAT(pipe)		_MMIO_PIPE2(pipe, _PIPEASTAT)
5420  
5421  #define _PIPE_MISC_A			0x70030
5422  #define _PIPE_MISC_B			0x71030
5423  #define   PIPEMISC_YUV420_ENABLE	(1<<27)
5424  #define   PIPEMISC_YUV420_MODE_FULL_BLEND (1<<26)
5425  #define   PIPEMISC_OUTPUT_COLORSPACE_YUV  (1<<11)
5426  #define   PIPEMISC_DITHER_BPC_MASK	(7<<5)
5427  #define   PIPEMISC_DITHER_8_BPC		(0<<5)
5428  #define   PIPEMISC_DITHER_10_BPC	(1<<5)
5429  #define   PIPEMISC_DITHER_6_BPC		(2<<5)
5430  #define   PIPEMISC_DITHER_12_BPC	(3<<5)
5431  #define   PIPEMISC_DITHER_ENABLE	(1<<4)
5432  #define   PIPEMISC_DITHER_TYPE_MASK	(3<<2)
5433  #define   PIPEMISC_DITHER_TYPE_SP	(0<<2)
5434  #define PIPEMISC(pipe)			_MMIO_PIPE2(pipe, _PIPE_MISC_A)
5435  
5436  #define VLV_DPFLIPSTAT				_MMIO(VLV_DISPLAY_BASE + 0x70028)
5437  #define   PIPEB_LINE_COMPARE_INT_EN		(1<<29)
5438  #define   PIPEB_HLINE_INT_EN			(1<<28)
5439  #define   PIPEB_VBLANK_INT_EN			(1<<27)
5440  #define   SPRITED_FLIP_DONE_INT_EN		(1<<26)
5441  #define   SPRITEC_FLIP_DONE_INT_EN		(1<<25)
5442  #define   PLANEB_FLIP_DONE_INT_EN		(1<<24)
5443  #define   PIPE_PSR_INT_EN			(1<<22)
5444  #define   PIPEA_LINE_COMPARE_INT_EN		(1<<21)
5445  #define   PIPEA_HLINE_INT_EN			(1<<20)
5446  #define   PIPEA_VBLANK_INT_EN			(1<<19)
5447  #define   SPRITEB_FLIP_DONE_INT_EN		(1<<18)
5448  #define   SPRITEA_FLIP_DONE_INT_EN		(1<<17)
5449  #define   PLANEA_FLIPDONE_INT_EN		(1<<16)
5450  #define   PIPEC_LINE_COMPARE_INT_EN		(1<<13)
5451  #define   PIPEC_HLINE_INT_EN			(1<<12)
5452  #define   PIPEC_VBLANK_INT_EN			(1<<11)
5453  #define   SPRITEF_FLIPDONE_INT_EN		(1<<10)
5454  #define   SPRITEE_FLIPDONE_INT_EN		(1<<9)
5455  #define   PLANEC_FLIPDONE_INT_EN		(1<<8)
5456  
5457  #define DPINVGTT				_MMIO(VLV_DISPLAY_BASE + 0x7002c) /* VLV/CHV only */
5458  #define   SPRITEF_INVALID_GTT_INT_EN		(1<<27)
5459  #define   SPRITEE_INVALID_GTT_INT_EN		(1<<26)
5460  #define   PLANEC_INVALID_GTT_INT_EN		(1<<25)
5461  #define   CURSORC_INVALID_GTT_INT_EN		(1<<24)
5462  #define   CURSORB_INVALID_GTT_INT_EN		(1<<23)
5463  #define   CURSORA_INVALID_GTT_INT_EN		(1<<22)
5464  #define   SPRITED_INVALID_GTT_INT_EN		(1<<21)
5465  #define   SPRITEC_INVALID_GTT_INT_EN		(1<<20)
5466  #define   PLANEB_INVALID_GTT_INT_EN		(1<<19)
5467  #define   SPRITEB_INVALID_GTT_INT_EN		(1<<18)
5468  #define   SPRITEA_INVALID_GTT_INT_EN		(1<<17)
5469  #define   PLANEA_INVALID_GTT_INT_EN		(1<<16)
5470  #define   DPINVGTT_EN_MASK			0xff0000
5471  #define   DPINVGTT_EN_MASK_CHV			0xfff0000
5472  #define   SPRITEF_INVALID_GTT_STATUS		(1<<11)
5473  #define   SPRITEE_INVALID_GTT_STATUS		(1<<10)
5474  #define   PLANEC_INVALID_GTT_STATUS		(1<<9)
5475  #define   CURSORC_INVALID_GTT_STATUS		(1<<8)
5476  #define   CURSORB_INVALID_GTT_STATUS		(1<<7)
5477  #define   CURSORA_INVALID_GTT_STATUS		(1<<6)
5478  #define   SPRITED_INVALID_GTT_STATUS		(1<<5)
5479  #define   SPRITEC_INVALID_GTT_STATUS		(1<<4)
5480  #define   PLANEB_INVALID_GTT_STATUS		(1<<3)
5481  #define   SPRITEB_INVALID_GTT_STATUS		(1<<2)
5482  #define   SPRITEA_INVALID_GTT_STATUS		(1<<1)
5483  #define   PLANEA_INVALID_GTT_STATUS		(1<<0)
5484  #define   DPINVGTT_STATUS_MASK			0xff
5485  #define   DPINVGTT_STATUS_MASK_CHV		0xfff
5486  
5487  #define DSPARB			_MMIO(dev_priv->info.display_mmio_offset + 0x70030)
5488  #define   DSPARB_CSTART_MASK	(0x7f << 7)
5489  #define   DSPARB_CSTART_SHIFT	7
5490  #define   DSPARB_BSTART_MASK	(0x7f)
5491  #define   DSPARB_BSTART_SHIFT	0
5492  #define   DSPARB_BEND_SHIFT	9 /* on 855 */
5493  #define   DSPARB_AEND_SHIFT	0
5494  #define   DSPARB_SPRITEA_SHIFT_VLV	0
5495  #define   DSPARB_SPRITEA_MASK_VLV	(0xff << 0)
5496  #define   DSPARB_SPRITEB_SHIFT_VLV	8
5497  #define   DSPARB_SPRITEB_MASK_VLV	(0xff << 8)
5498  #define   DSPARB_SPRITEC_SHIFT_VLV	16
5499  #define   DSPARB_SPRITEC_MASK_VLV	(0xff << 16)
5500  #define   DSPARB_SPRITED_SHIFT_VLV	24
5501  #define   DSPARB_SPRITED_MASK_VLV	(0xff << 24)
5502  #define DSPARB2				_MMIO(VLV_DISPLAY_BASE + 0x70060) /* vlv/chv */
5503  #define   DSPARB_SPRITEA_HI_SHIFT_VLV	0
5504  #define   DSPARB_SPRITEA_HI_MASK_VLV	(0x1 << 0)
5505  #define   DSPARB_SPRITEB_HI_SHIFT_VLV	4
5506  #define   DSPARB_SPRITEB_HI_MASK_VLV	(0x1 << 4)
5507  #define   DSPARB_SPRITEC_HI_SHIFT_VLV	8
5508  #define   DSPARB_SPRITEC_HI_MASK_VLV	(0x1 << 8)
5509  #define   DSPARB_SPRITED_HI_SHIFT_VLV	12
5510  #define   DSPARB_SPRITED_HI_MASK_VLV	(0x1 << 12)
5511  #define   DSPARB_SPRITEE_HI_SHIFT_VLV	16
5512  #define   DSPARB_SPRITEE_HI_MASK_VLV	(0x1 << 16)
5513  #define   DSPARB_SPRITEF_HI_SHIFT_VLV	20
5514  #define   DSPARB_SPRITEF_HI_MASK_VLV	(0x1 << 20)
5515  #define DSPARB3				_MMIO(VLV_DISPLAY_BASE + 0x7006c) /* chv */
5516  #define   DSPARB_SPRITEE_SHIFT_VLV	0
5517  #define   DSPARB_SPRITEE_MASK_VLV	(0xff << 0)
5518  #define   DSPARB_SPRITEF_SHIFT_VLV	8
5519  #define   DSPARB_SPRITEF_MASK_VLV	(0xff << 8)
5520  
5521  /* pnv/gen4/g4x/vlv/chv */
5522  #define DSPFW1		_MMIO(dev_priv->info.display_mmio_offset + 0x70034)
5523  #define   DSPFW_SR_SHIFT		23
5524  #define   DSPFW_SR_MASK			(0x1ff<<23)
5525  #define   DSPFW_CURSORB_SHIFT		16
5526  #define   DSPFW_CURSORB_MASK		(0x3f<<16)
5527  #define   DSPFW_PLANEB_SHIFT		8
5528  #define   DSPFW_PLANEB_MASK		(0x7f<<8)
5529  #define   DSPFW_PLANEB_MASK_VLV		(0xff<<8) /* vlv/chv */
5530  #define   DSPFW_PLANEA_SHIFT		0
5531  #define   DSPFW_PLANEA_MASK		(0x7f<<0)
5532  #define   DSPFW_PLANEA_MASK_VLV		(0xff<<0) /* vlv/chv */
5533  #define DSPFW2		_MMIO(dev_priv->info.display_mmio_offset + 0x70038)
5534  #define   DSPFW_FBC_SR_EN		(1<<31)	  /* g4x */
5535  #define   DSPFW_FBC_SR_SHIFT		28
5536  #define   DSPFW_FBC_SR_MASK		(0x7<<28) /* g4x */
5537  #define   DSPFW_FBC_HPLL_SR_SHIFT	24
5538  #define   DSPFW_FBC_HPLL_SR_MASK	(0xf<<24) /* g4x */
5539  #define   DSPFW_SPRITEB_SHIFT		(16)
5540  #define   DSPFW_SPRITEB_MASK		(0x7f<<16) /* g4x */
5541  #define   DSPFW_SPRITEB_MASK_VLV	(0xff<<16) /* vlv/chv */
5542  #define   DSPFW_CURSORA_SHIFT		8
5543  #define   DSPFW_CURSORA_MASK		(0x3f<<8)
5544  #define   DSPFW_PLANEC_OLD_SHIFT	0
5545  #define   DSPFW_PLANEC_OLD_MASK		(0x7f<<0) /* pre-gen4 sprite C */
5546  #define   DSPFW_SPRITEA_SHIFT		0
5547  #define   DSPFW_SPRITEA_MASK		(0x7f<<0) /* g4x */
5548  #define   DSPFW_SPRITEA_MASK_VLV	(0xff<<0) /* vlv/chv */
5549  #define DSPFW3		_MMIO(dev_priv->info.display_mmio_offset + 0x7003c)
5550  #define   DSPFW_HPLL_SR_EN		(1<<31)
5551  #define   PINEVIEW_SELF_REFRESH_EN	(1<<30)
5552  #define   DSPFW_CURSOR_SR_SHIFT		24
5553  #define   DSPFW_CURSOR_SR_MASK		(0x3f<<24)
5554  #define   DSPFW_HPLL_CURSOR_SHIFT	16
5555  #define   DSPFW_HPLL_CURSOR_MASK	(0x3f<<16)
5556  #define   DSPFW_HPLL_SR_SHIFT		0
5557  #define   DSPFW_HPLL_SR_MASK		(0x1ff<<0)
5558  
5559  /* vlv/chv */
5560  #define DSPFW4		_MMIO(VLV_DISPLAY_BASE + 0x70070)
5561  #define   DSPFW_SPRITEB_WM1_SHIFT	16
5562  #define   DSPFW_SPRITEB_WM1_MASK	(0xff<<16)
5563  #define   DSPFW_CURSORA_WM1_SHIFT	8
5564  #define   DSPFW_CURSORA_WM1_MASK	(0x3f<<8)
5565  #define   DSPFW_SPRITEA_WM1_SHIFT	0
5566  #define   DSPFW_SPRITEA_WM1_MASK	(0xff<<0)
5567  #define DSPFW5		_MMIO(VLV_DISPLAY_BASE + 0x70074)
5568  #define   DSPFW_PLANEB_WM1_SHIFT	24
5569  #define   DSPFW_PLANEB_WM1_MASK		(0xff<<24)
5570  #define   DSPFW_PLANEA_WM1_SHIFT	16
5571  #define   DSPFW_PLANEA_WM1_MASK		(0xff<<16)
5572  #define   DSPFW_CURSORB_WM1_SHIFT	8
5573  #define   DSPFW_CURSORB_WM1_MASK	(0x3f<<8)
5574  #define   DSPFW_CURSOR_SR_WM1_SHIFT	0
5575  #define   DSPFW_CURSOR_SR_WM1_MASK	(0x3f<<0)
5576  #define DSPFW6		_MMIO(VLV_DISPLAY_BASE + 0x70078)
5577  #define   DSPFW_SR_WM1_SHIFT		0
5578  #define   DSPFW_SR_WM1_MASK		(0x1ff<<0)
5579  #define DSPFW7		_MMIO(VLV_DISPLAY_BASE + 0x7007c)
5580  #define DSPFW7_CHV	_MMIO(VLV_DISPLAY_BASE + 0x700b4) /* wtf #1? */
5581  #define   DSPFW_SPRITED_WM1_SHIFT	24
5582  #define   DSPFW_SPRITED_WM1_MASK	(0xff<<24)
5583  #define   DSPFW_SPRITED_SHIFT		16
5584  #define   DSPFW_SPRITED_MASK_VLV	(0xff<<16)
5585  #define   DSPFW_SPRITEC_WM1_SHIFT	8
5586  #define   DSPFW_SPRITEC_WM1_MASK	(0xff<<8)
5587  #define   DSPFW_SPRITEC_SHIFT		0
5588  #define   DSPFW_SPRITEC_MASK_VLV	(0xff<<0)
5589  #define DSPFW8_CHV	_MMIO(VLV_DISPLAY_BASE + 0x700b8)
5590  #define   DSPFW_SPRITEF_WM1_SHIFT	24
5591  #define   DSPFW_SPRITEF_WM1_MASK	(0xff<<24)
5592  #define   DSPFW_SPRITEF_SHIFT		16
5593  #define   DSPFW_SPRITEF_MASK_VLV	(0xff<<16)
5594  #define   DSPFW_SPRITEE_WM1_SHIFT	8
5595  #define   DSPFW_SPRITEE_WM1_MASK	(0xff<<8)
5596  #define   DSPFW_SPRITEE_SHIFT		0
5597  #define   DSPFW_SPRITEE_MASK_VLV	(0xff<<0)
5598  #define DSPFW9_CHV	_MMIO(VLV_DISPLAY_BASE + 0x7007c) /* wtf #2? */
5599  #define   DSPFW_PLANEC_WM1_SHIFT	24
5600  #define   DSPFW_PLANEC_WM1_MASK		(0xff<<24)
5601  #define   DSPFW_PLANEC_SHIFT		16
5602  #define   DSPFW_PLANEC_MASK_VLV		(0xff<<16)
5603  #define   DSPFW_CURSORC_WM1_SHIFT	8
5604  #define   DSPFW_CURSORC_WM1_MASK	(0x3f<<16)
5605  #define   DSPFW_CURSORC_SHIFT		0
5606  #define   DSPFW_CURSORC_MASK		(0x3f<<0)
5607  
5608  /* vlv/chv high order bits */
5609  #define DSPHOWM		_MMIO(VLV_DISPLAY_BASE + 0x70064)
5610  #define   DSPFW_SR_HI_SHIFT		24
5611  #define   DSPFW_SR_HI_MASK		(3<<24) /* 2 bits for chv, 1 for vlv */
5612  #define   DSPFW_SPRITEF_HI_SHIFT	23
5613  #define   DSPFW_SPRITEF_HI_MASK		(1<<23)
5614  #define   DSPFW_SPRITEE_HI_SHIFT	22
5615  #define   DSPFW_SPRITEE_HI_MASK		(1<<22)
5616  #define   DSPFW_PLANEC_HI_SHIFT		21
5617  #define   DSPFW_PLANEC_HI_MASK		(1<<21)
5618  #define   DSPFW_SPRITED_HI_SHIFT	20
5619  #define   DSPFW_SPRITED_HI_MASK		(1<<20)
5620  #define   DSPFW_SPRITEC_HI_SHIFT	16
5621  #define   DSPFW_SPRITEC_HI_MASK		(1<<16)
5622  #define   DSPFW_PLANEB_HI_SHIFT		12
5623  #define   DSPFW_PLANEB_HI_MASK		(1<<12)
5624  #define   DSPFW_SPRITEB_HI_SHIFT	8
5625  #define   DSPFW_SPRITEB_HI_MASK		(1<<8)
5626  #define   DSPFW_SPRITEA_HI_SHIFT	4
5627  #define   DSPFW_SPRITEA_HI_MASK		(1<<4)
5628  #define   DSPFW_PLANEA_HI_SHIFT		0
5629  #define   DSPFW_PLANEA_HI_MASK		(1<<0)
5630  #define DSPHOWM1	_MMIO(VLV_DISPLAY_BASE + 0x70068)
5631  #define   DSPFW_SR_WM1_HI_SHIFT		24
5632  #define   DSPFW_SR_WM1_HI_MASK		(3<<24) /* 2 bits for chv, 1 for vlv */
5633  #define   DSPFW_SPRITEF_WM1_HI_SHIFT	23
5634  #define   DSPFW_SPRITEF_WM1_HI_MASK	(1<<23)
5635  #define   DSPFW_SPRITEE_WM1_HI_SHIFT	22
5636  #define   DSPFW_SPRITEE_WM1_HI_MASK	(1<<22)
5637  #define   DSPFW_PLANEC_WM1_HI_SHIFT	21
5638  #define   DSPFW_PLANEC_WM1_HI_MASK	(1<<21)
5639  #define   DSPFW_SPRITED_WM1_HI_SHIFT	20
5640  #define   DSPFW_SPRITED_WM1_HI_MASK	(1<<20)
5641  #define   DSPFW_SPRITEC_WM1_HI_SHIFT	16
5642  #define   DSPFW_SPRITEC_WM1_HI_MASK	(1<<16)
5643  #define   DSPFW_PLANEB_WM1_HI_SHIFT	12
5644  #define   DSPFW_PLANEB_WM1_HI_MASK	(1<<12)
5645  #define   DSPFW_SPRITEB_WM1_HI_SHIFT	8
5646  #define   DSPFW_SPRITEB_WM1_HI_MASK	(1<<8)
5647  #define   DSPFW_SPRITEA_WM1_HI_SHIFT	4
5648  #define   DSPFW_SPRITEA_WM1_HI_MASK	(1<<4)
5649  #define   DSPFW_PLANEA_WM1_HI_SHIFT	0
5650  #define   DSPFW_PLANEA_WM1_HI_MASK	(1<<0)
5651  
5652  /* drain latency register values*/
5653  #define VLV_DDL(pipe)			_MMIO(VLV_DISPLAY_BASE + 0x70050 + 4 * (pipe))
5654  #define DDL_CURSOR_SHIFT		24
5655  #define DDL_SPRITE_SHIFT(sprite)	(8+8*(sprite))
5656  #define DDL_PLANE_SHIFT			0
5657  #define DDL_PRECISION_HIGH		(1<<7)
5658  #define DDL_PRECISION_LOW		(0<<7)
5659  #define DRAIN_LATENCY_MASK		0x7f
5660  
5661  #define CBR1_VLV			_MMIO(VLV_DISPLAY_BASE + 0x70400)
5662  #define  CBR_PND_DEADLINE_DISABLE	(1<<31)
5663  #define  CBR_PWM_CLOCK_MUX_SELECT	(1<<30)
5664  
5665  #define CBR4_VLV			_MMIO(VLV_DISPLAY_BASE + 0x70450)
5666  #define  CBR_DPLLBMD_PIPE_C		(1<<29)
5667  #define  CBR_DPLLBMD_PIPE_B		(1<<18)
5668  
5669  /* FIFO watermark sizes etc */
5670  #define G4X_FIFO_LINE_SIZE	64
5671  #define I915_FIFO_LINE_SIZE	64
5672  #define I830_FIFO_LINE_SIZE	32
5673  
5674  #define VALLEYVIEW_FIFO_SIZE	255
5675  #define G4X_FIFO_SIZE		127
5676  #define I965_FIFO_SIZE		512
5677  #define I945_FIFO_SIZE		127
5678  #define I915_FIFO_SIZE		95
5679  #define I855GM_FIFO_SIZE	127 /* In cachelines */
5680  #define I830_FIFO_SIZE		95
5681  
5682  #define VALLEYVIEW_MAX_WM	0xff
5683  #define G4X_MAX_WM		0x3f
5684  #define I915_MAX_WM		0x3f
5685  
5686  #define PINEVIEW_DISPLAY_FIFO	512 /* in 64byte unit */
5687  #define PINEVIEW_FIFO_LINE_SIZE	64
5688  #define PINEVIEW_MAX_WM		0x1ff
5689  #define PINEVIEW_DFT_WM		0x3f
5690  #define PINEVIEW_DFT_HPLLOFF_WM	0
5691  #define PINEVIEW_GUARD_WM		10
5692  #define PINEVIEW_CURSOR_FIFO		64
5693  #define PINEVIEW_CURSOR_MAX_WM	0x3f
5694  #define PINEVIEW_CURSOR_DFT_WM	0
5695  #define PINEVIEW_CURSOR_GUARD_WM	5
5696  
5697  #define VALLEYVIEW_CURSOR_MAX_WM 64
5698  #define I965_CURSOR_FIFO	64
5699  #define I965_CURSOR_MAX_WM	32
5700  #define I965_CURSOR_DFT_WM	8
5701  
5702  /* Watermark register definitions for SKL */
5703  #define _CUR_WM_A_0		0x70140
5704  #define _CUR_WM_B_0		0x71140
5705  #define _PLANE_WM_1_A_0		0x70240
5706  #define _PLANE_WM_1_B_0		0x71240
5707  #define _PLANE_WM_2_A_0		0x70340
5708  #define _PLANE_WM_2_B_0		0x71340
5709  #define _PLANE_WM_TRANS_1_A_0	0x70268
5710  #define _PLANE_WM_TRANS_1_B_0	0x71268
5711  #define _PLANE_WM_TRANS_2_A_0	0x70368
5712  #define _PLANE_WM_TRANS_2_B_0	0x71368
5713  #define _CUR_WM_TRANS_A_0	0x70168
5714  #define _CUR_WM_TRANS_B_0	0x71168
5715  #define   PLANE_WM_EN		(1 << 31)
5716  #define   PLANE_WM_LINES_SHIFT	14
5717  #define   PLANE_WM_LINES_MASK	0x1f
5718  #define   PLANE_WM_BLOCKS_MASK	0x3ff
5719  
5720  #define _CUR_WM_0(pipe) _PIPE(pipe, _CUR_WM_A_0, _CUR_WM_B_0)
5721  #define CUR_WM(pipe, level) _MMIO(_CUR_WM_0(pipe) + ((4) * (level)))
5722  #define CUR_WM_TRANS(pipe) _MMIO_PIPE(pipe, _CUR_WM_TRANS_A_0, _CUR_WM_TRANS_B_0)
5723  
5724  #define _PLANE_WM_1(pipe) _PIPE(pipe, _PLANE_WM_1_A_0, _PLANE_WM_1_B_0)
5725  #define _PLANE_WM_2(pipe) _PIPE(pipe, _PLANE_WM_2_A_0, _PLANE_WM_2_B_0)
5726  #define _PLANE_WM_BASE(pipe, plane)	\
5727  			_PLANE(plane, _PLANE_WM_1(pipe), _PLANE_WM_2(pipe))
5728  #define PLANE_WM(pipe, plane, level)	\
5729  			_MMIO(_PLANE_WM_BASE(pipe, plane) + ((4) * (level)))
5730  #define _PLANE_WM_TRANS_1(pipe)	\
5731  			_PIPE(pipe, _PLANE_WM_TRANS_1_A_0, _PLANE_WM_TRANS_1_B_0)
5732  #define _PLANE_WM_TRANS_2(pipe)	\
5733  			_PIPE(pipe, _PLANE_WM_TRANS_2_A_0, _PLANE_WM_TRANS_2_B_0)
5734  #define PLANE_WM_TRANS(pipe, plane)	\
5735  	_MMIO(_PLANE(plane, _PLANE_WM_TRANS_1(pipe), _PLANE_WM_TRANS_2(pipe)))
5736  
5737  /* define the Watermark register on Ironlake */
5738  #define WM0_PIPEA_ILK		_MMIO(0x45100)
5739  #define  WM0_PIPE_PLANE_MASK	(0xffff<<16)
5740  #define  WM0_PIPE_PLANE_SHIFT	16
5741  #define  WM0_PIPE_SPRITE_MASK	(0xff<<8)
5742  #define  WM0_PIPE_SPRITE_SHIFT	8
5743  #define  WM0_PIPE_CURSOR_MASK	(0xff)
5744  
5745  #define WM0_PIPEB_ILK		_MMIO(0x45104)
5746  #define WM0_PIPEC_IVB		_MMIO(0x45200)
5747  #define WM1_LP_ILK		_MMIO(0x45108)
5748  #define  WM1_LP_SR_EN		(1<<31)
5749  #define  WM1_LP_LATENCY_SHIFT	24
5750  #define  WM1_LP_LATENCY_MASK	(0x7f<<24)
5751  #define  WM1_LP_FBC_MASK	(0xf<<20)
5752  #define  WM1_LP_FBC_SHIFT	20
5753  #define  WM1_LP_FBC_SHIFT_BDW	19
5754  #define  WM1_LP_SR_MASK		(0x7ff<<8)
5755  #define  WM1_LP_SR_SHIFT	8
5756  #define  WM1_LP_CURSOR_MASK	(0xff)
5757  #define WM2_LP_ILK		_MMIO(0x4510c)
5758  #define  WM2_LP_EN		(1<<31)
5759  #define WM3_LP_ILK		_MMIO(0x45110)
5760  #define  WM3_LP_EN		(1<<31)
5761  #define WM1S_LP_ILK		_MMIO(0x45120)
5762  #define WM2S_LP_IVB		_MMIO(0x45124)
5763  #define WM3S_LP_IVB		_MMIO(0x45128)
5764  #define  WM1S_LP_EN		(1<<31)
5765  
5766  #define HSW_WM_LP_VAL(lat, fbc, pri, cur) \
5767  	(WM3_LP_EN | ((lat) << WM1_LP_LATENCY_SHIFT) | \
5768  	 ((fbc) << WM1_LP_FBC_SHIFT) | ((pri) << WM1_LP_SR_SHIFT) | (cur))
5769  
5770  /* Memory latency timer register */
5771  #define MLTR_ILK		_MMIO(0x11222)
5772  #define  MLTR_WM1_SHIFT		0
5773  #define  MLTR_WM2_SHIFT		8
5774  /* the unit of memory self-refresh latency time is 0.5us */
5775  #define  ILK_SRLT_MASK		0x3f
5776  
5777  
5778  /* the address where we get all kinds of latency value */
5779  #define SSKPD			_MMIO(0x5d10)
5780  #define SSKPD_WM_MASK		0x3f
5781  #define SSKPD_WM0_SHIFT		0
5782  #define SSKPD_WM1_SHIFT		8
5783  #define SSKPD_WM2_SHIFT		16
5784  #define SSKPD_WM3_SHIFT		24
5785  
5786  /*
5787   * The two pipe frame counter registers are not synchronized, so
5788   * reading a stable value is somewhat tricky. The following code
5789   * should work:
5790   *
5791   *  do {
5792   *    high1 = ((INREG(PIPEAFRAMEHIGH) & PIPE_FRAME_HIGH_MASK) >>
5793   *             PIPE_FRAME_HIGH_SHIFT;
5794   *    low1 =  ((INREG(PIPEAFRAMEPIXEL) & PIPE_FRAME_LOW_MASK) >>
5795   *             PIPE_FRAME_LOW_SHIFT);
5796   *    high2 = ((INREG(PIPEAFRAMEHIGH) & PIPE_FRAME_HIGH_MASK) >>
5797   *             PIPE_FRAME_HIGH_SHIFT);
5798   *  } while (high1 != high2);
5799   *  frame = (high1 << 8) | low1;
5800   */
5801  #define _PIPEAFRAMEHIGH          0x70040
5802  #define   PIPE_FRAME_HIGH_MASK    0x0000ffff
5803  #define   PIPE_FRAME_HIGH_SHIFT   0
5804  #define _PIPEAFRAMEPIXEL         0x70044
5805  #define   PIPE_FRAME_LOW_MASK     0xff000000
5806  #define   PIPE_FRAME_LOW_SHIFT    24
5807  #define   PIPE_PIXEL_MASK         0x00ffffff
5808  #define   PIPE_PIXEL_SHIFT        0
5809  /* GM45+ just has to be different */
5810  #define _PIPEA_FRMCOUNT_G4X	0x70040
5811  #define _PIPEA_FLIPCOUNT_G4X	0x70044
5812  #define PIPE_FRMCOUNT_G4X(pipe) _MMIO_PIPE2(pipe, _PIPEA_FRMCOUNT_G4X)
5813  #define PIPE_FLIPCOUNT_G4X(pipe) _MMIO_PIPE2(pipe, _PIPEA_FLIPCOUNT_G4X)
5814  
5815  /* Cursor A & B regs */
5816  #define _CURACNTR		0x70080
5817  /* Old style CUR*CNTR flags (desktop 8xx) */
5818  #define   CURSOR_ENABLE		0x80000000
5819  #define   CURSOR_GAMMA_ENABLE	0x40000000
5820  #define   CURSOR_STRIDE_SHIFT	28
5821  #define   CURSOR_STRIDE(x)	((ffs(x)-9) << CURSOR_STRIDE_SHIFT) /* 256,512,1k,2k */
5822  #define   CURSOR_PIPE_CSC_ENABLE (1<<24)
5823  #define   CURSOR_FORMAT_SHIFT	24
5824  #define   CURSOR_FORMAT_MASK	(0x07 << CURSOR_FORMAT_SHIFT)
5825  #define   CURSOR_FORMAT_2C	(0x00 << CURSOR_FORMAT_SHIFT)
5826  #define   CURSOR_FORMAT_3C	(0x01 << CURSOR_FORMAT_SHIFT)
5827  #define   CURSOR_FORMAT_4C	(0x02 << CURSOR_FORMAT_SHIFT)
5828  #define   CURSOR_FORMAT_ARGB	(0x04 << CURSOR_FORMAT_SHIFT)
5829  #define   CURSOR_FORMAT_XRGB	(0x05 << CURSOR_FORMAT_SHIFT)
5830  /* New style CUR*CNTR flags */
5831  #define   CURSOR_MODE		0x27
5832  #define   CURSOR_MODE_DISABLE   0x00
5833  #define   CURSOR_MODE_128_32B_AX 0x02
5834  #define   CURSOR_MODE_256_32B_AX 0x03
5835  #define   CURSOR_MODE_64_32B_AX 0x07
5836  #define   CURSOR_MODE_128_ARGB_AX ((1 << 5) | CURSOR_MODE_128_32B_AX)
5837  #define   CURSOR_MODE_256_ARGB_AX ((1 << 5) | CURSOR_MODE_256_32B_AX)
5838  #define   CURSOR_MODE_64_ARGB_AX ((1 << 5) | CURSOR_MODE_64_32B_AX)
5839  #define   MCURSOR_PIPE_SELECT(pipe)	((pipe) << 28)
5840  #define   MCURSOR_GAMMA_ENABLE  (1 << 26)
5841  #define   CURSOR_ROTATE_180	(1<<15)
5842  #define   CURSOR_TRICKLE_FEED_DISABLE	(1 << 14)
5843  #define _CURABASE		0x70084
5844  #define _CURAPOS		0x70088
5845  #define   CURSOR_POS_MASK       0x007FF
5846  #define   CURSOR_POS_SIGN       0x8000
5847  #define   CURSOR_X_SHIFT        0
5848  #define   CURSOR_Y_SHIFT        16
5849  #define CURSIZE			_MMIO(0x700a0) /* 845/865 */
5850  #define _CUR_FBC_CTL_A		0x700a0 /* ivb+ */
5851  #define   CUR_FBC_CTL_EN	(1 << 31)
5852  #define _CURBCNTR		0x700c0
5853  #define _CURBBASE		0x700c4
5854  #define _CURBPOS		0x700c8
5855  
5856  #define _CURBCNTR_IVB		0x71080
5857  #define _CURBBASE_IVB		0x71084
5858  #define _CURBPOS_IVB		0x71088
5859  
5860  #define _CURSOR2(pipe, reg) _MMIO(dev_priv->info.cursor_offsets[(pipe)] - \
5861  	dev_priv->info.cursor_offsets[PIPE_A] + (reg) + \
5862  	dev_priv->info.display_mmio_offset)
5863  
5864  #define CURCNTR(pipe) _CURSOR2(pipe, _CURACNTR)
5865  #define CURBASE(pipe) _CURSOR2(pipe, _CURABASE)
5866  #define CURPOS(pipe) _CURSOR2(pipe, _CURAPOS)
5867  #define CUR_FBC_CTL(pipe) _CURSOR2(pipe, _CUR_FBC_CTL_A)
5868  
5869  #define CURSOR_A_OFFSET 0x70080
5870  #define CURSOR_B_OFFSET 0x700c0
5871  #define CHV_CURSOR_C_OFFSET 0x700e0
5872  #define IVB_CURSOR_B_OFFSET 0x71080
5873  #define IVB_CURSOR_C_OFFSET 0x72080
5874  
5875  /* Display A control */
5876  #define _DSPACNTR				0x70180
5877  #define   DISPLAY_PLANE_ENABLE			(1<<31)
5878  #define   DISPLAY_PLANE_DISABLE			0
5879  #define   DISPPLANE_GAMMA_ENABLE		(1<<30)
5880  #define   DISPPLANE_GAMMA_DISABLE		0
5881  #define   DISPPLANE_PIXFORMAT_MASK		(0xf<<26)
5882  #define   DISPPLANE_YUV422			(0x0<<26)
5883  #define   DISPPLANE_8BPP			(0x2<<26)
5884  #define   DISPPLANE_BGRA555			(0x3<<26)
5885  #define   DISPPLANE_BGRX555			(0x4<<26)
5886  #define   DISPPLANE_BGRX565			(0x5<<26)
5887  #define   DISPPLANE_BGRX888			(0x6<<26)
5888  #define   DISPPLANE_BGRA888			(0x7<<26)
5889  #define   DISPPLANE_RGBX101010			(0x8<<26)
5890  #define   DISPPLANE_RGBA101010			(0x9<<26)
5891  #define   DISPPLANE_BGRX101010			(0xa<<26)
5892  #define   DISPPLANE_RGBX161616			(0xc<<26)
5893  #define   DISPPLANE_RGBX888			(0xe<<26)
5894  #define   DISPPLANE_RGBA888			(0xf<<26)
5895  #define   DISPPLANE_STEREO_ENABLE		(1<<25)
5896  #define   DISPPLANE_STEREO_DISABLE		0
5897  #define   DISPPLANE_PIPE_CSC_ENABLE		(1<<24)
5898  #define   DISPPLANE_SEL_PIPE_SHIFT		24
5899  #define   DISPPLANE_SEL_PIPE_MASK		(3<<DISPPLANE_SEL_PIPE_SHIFT)
5900  #define   DISPPLANE_SEL_PIPE(pipe)		((pipe)<<DISPPLANE_SEL_PIPE_SHIFT)
5901  #define   DISPPLANE_SRC_KEY_ENABLE		(1<<22)
5902  #define   DISPPLANE_SRC_KEY_DISABLE		0
5903  #define   DISPPLANE_LINE_DOUBLE			(1<<20)
5904  #define   DISPPLANE_NO_LINE_DOUBLE		0
5905  #define   DISPPLANE_STEREO_POLARITY_FIRST	0
5906  #define   DISPPLANE_STEREO_POLARITY_SECOND	(1<<18)
5907  #define   DISPPLANE_ALPHA_PREMULTIPLY		(1<<16) /* CHV pipe B */
5908  #define   DISPPLANE_ROTATE_180			(1<<15)
5909  #define   DISPPLANE_TRICKLE_FEED_DISABLE	(1<<14) /* Ironlake */
5910  #define   DISPPLANE_TILED			(1<<10)
5911  #define   DISPPLANE_MIRROR			(1<<8) /* CHV pipe B */
5912  #define _DSPAADDR				0x70184
5913  #define _DSPASTRIDE				0x70188
5914  #define _DSPAPOS				0x7018C /* reserved */
5915  #define _DSPASIZE				0x70190
5916  #define _DSPASURF				0x7019C /* 965+ only */
5917  #define _DSPATILEOFF				0x701A4 /* 965+ only */
5918  #define _DSPAOFFSET				0x701A4 /* HSW */
5919  #define _DSPASURFLIVE				0x701AC
5920  
5921  #define DSPCNTR(plane)		_MMIO_PIPE2(plane, _DSPACNTR)
5922  #define DSPADDR(plane)		_MMIO_PIPE2(plane, _DSPAADDR)
5923  #define DSPSTRIDE(plane)	_MMIO_PIPE2(plane, _DSPASTRIDE)
5924  #define DSPPOS(plane)		_MMIO_PIPE2(plane, _DSPAPOS)
5925  #define DSPSIZE(plane)		_MMIO_PIPE2(plane, _DSPASIZE)
5926  #define DSPSURF(plane)		_MMIO_PIPE2(plane, _DSPASURF)
5927  #define DSPTILEOFF(plane)	_MMIO_PIPE2(plane, _DSPATILEOFF)
5928  #define DSPLINOFF(plane)	DSPADDR(plane)
5929  #define DSPOFFSET(plane)	_MMIO_PIPE2(plane, _DSPAOFFSET)
5930  #define DSPSURFLIVE(plane)	_MMIO_PIPE2(plane, _DSPASURFLIVE)
5931  
5932  /* CHV pipe B blender and primary plane */
5933  #define _CHV_BLEND_A		0x60a00
5934  #define   CHV_BLEND_LEGACY		(0<<30)
5935  #define   CHV_BLEND_ANDROID		(1<<30)
5936  #define   CHV_BLEND_MPO			(2<<30)
5937  #define   CHV_BLEND_MASK		(3<<30)
5938  #define _CHV_CANVAS_A		0x60a04
5939  #define _PRIMPOS_A		0x60a08
5940  #define _PRIMSIZE_A		0x60a0c
5941  #define _PRIMCNSTALPHA_A	0x60a10
5942  #define   PRIM_CONST_ALPHA_ENABLE	(1<<31)
5943  
5944  #define CHV_BLEND(pipe)		_MMIO_TRANS2(pipe, _CHV_BLEND_A)
5945  #define CHV_CANVAS(pipe)	_MMIO_TRANS2(pipe, _CHV_CANVAS_A)
5946  #define PRIMPOS(plane)		_MMIO_TRANS2(plane, _PRIMPOS_A)
5947  #define PRIMSIZE(plane)		_MMIO_TRANS2(plane, _PRIMSIZE_A)
5948  #define PRIMCNSTALPHA(plane)	_MMIO_TRANS2(plane, _PRIMCNSTALPHA_A)
5949  
5950  /* Display/Sprite base address macros */
5951  #define DISP_BASEADDR_MASK	(0xfffff000)
5952  #define I915_LO_DISPBASE(val)	(val & ~DISP_BASEADDR_MASK)
5953  #define I915_HI_DISPBASE(val)	(val & DISP_BASEADDR_MASK)
5954  
5955  /*
5956   * VBIOS flags
5957   * gen2:
5958   * [00:06] alm,mgm
5959   * [10:16] all
5960   * [30:32] alm,mgm
5961   * gen3+:
5962   * [00:0f] all
5963   * [10:1f] all
5964   * [30:32] all
5965   */
5966  #define SWF0(i)	_MMIO(dev_priv->info.display_mmio_offset + 0x70410 + (i) * 4)
5967  #define SWF1(i)	_MMIO(dev_priv->info.display_mmio_offset + 0x71410 + (i) * 4)
5968  #define SWF3(i)	_MMIO(dev_priv->info.display_mmio_offset + 0x72414 + (i) * 4)
5969  #define SWF_ILK(i)	_MMIO(0x4F000 + (i) * 4)
5970  
5971  /* Pipe B */
5972  #define _PIPEBDSL		(dev_priv->info.display_mmio_offset + 0x71000)
5973  #define _PIPEBCONF		(dev_priv->info.display_mmio_offset + 0x71008)
5974  #define _PIPEBSTAT		(dev_priv->info.display_mmio_offset + 0x71024)
5975  #define _PIPEBFRAMEHIGH		0x71040
5976  #define _PIPEBFRAMEPIXEL	0x71044
5977  #define _PIPEB_FRMCOUNT_G4X	(dev_priv->info.display_mmio_offset + 0x71040)
5978  #define _PIPEB_FLIPCOUNT_G4X	(dev_priv->info.display_mmio_offset + 0x71044)
5979  
5980  
5981  /* Display B control */
5982  #define _DSPBCNTR		(dev_priv->info.display_mmio_offset + 0x71180)
5983  #define   DISPPLANE_ALPHA_TRANS_ENABLE		(1<<15)
5984  #define   DISPPLANE_ALPHA_TRANS_DISABLE		0
5985  #define   DISPPLANE_SPRITE_ABOVE_DISPLAY	0
5986  #define   DISPPLANE_SPRITE_ABOVE_OVERLAY	(1)
5987  #define _DSPBADDR		(dev_priv->info.display_mmio_offset + 0x71184)
5988  #define _DSPBSTRIDE		(dev_priv->info.display_mmio_offset + 0x71188)
5989  #define _DSPBPOS		(dev_priv->info.display_mmio_offset + 0x7118C)
5990  #define _DSPBSIZE		(dev_priv->info.display_mmio_offset + 0x71190)
5991  #define _DSPBSURF		(dev_priv->info.display_mmio_offset + 0x7119C)
5992  #define _DSPBTILEOFF		(dev_priv->info.display_mmio_offset + 0x711A4)
5993  #define _DSPBOFFSET		(dev_priv->info.display_mmio_offset + 0x711A4)
5994  #define _DSPBSURFLIVE		(dev_priv->info.display_mmio_offset + 0x711AC)
5995  
5996  /* Sprite A control */
5997  #define _DVSACNTR		0x72180
5998  #define   DVS_ENABLE		(1<<31)
5999  #define   DVS_GAMMA_ENABLE	(1<<30)
6000  #define   DVS_PIXFORMAT_MASK	(3<<25)
6001  #define   DVS_FORMAT_YUV422	(0<<25)
6002  #define   DVS_FORMAT_RGBX101010	(1<<25)
6003  #define   DVS_FORMAT_RGBX888	(2<<25)
6004  #define   DVS_FORMAT_RGBX161616	(3<<25)
6005  #define   DVS_PIPE_CSC_ENABLE   (1<<24)
6006  #define   DVS_SOURCE_KEY	(1<<22)
6007  #define   DVS_RGB_ORDER_XBGR	(1<<20)
6008  #define   DVS_YUV_BYTE_ORDER_MASK (3<<16)
6009  #define   DVS_YUV_ORDER_YUYV	(0<<16)
6010  #define   DVS_YUV_ORDER_UYVY	(1<<16)
6011  #define   DVS_YUV_ORDER_YVYU	(2<<16)
6012  #define   DVS_YUV_ORDER_VYUY	(3<<16)
6013  #define   DVS_ROTATE_180	(1<<15)
6014  #define   DVS_DEST_KEY		(1<<2)
6015  #define   DVS_TRICKLE_FEED_DISABLE (1<<14)
6016  #define   DVS_TILED		(1<<10)
6017  #define _DVSALINOFF		0x72184
6018  #define _DVSASTRIDE		0x72188
6019  #define _DVSAPOS		0x7218c
6020  #define _DVSASIZE		0x72190
6021  #define _DVSAKEYVAL		0x72194
6022  #define _DVSAKEYMSK		0x72198
6023  #define _DVSASURF		0x7219c
6024  #define _DVSAKEYMAXVAL		0x721a0
6025  #define _DVSATILEOFF		0x721a4
6026  #define _DVSASURFLIVE		0x721ac
6027  #define _DVSASCALE		0x72204
6028  #define   DVS_SCALE_ENABLE	(1<<31)
6029  #define   DVS_FILTER_MASK	(3<<29)
6030  #define   DVS_FILTER_MEDIUM	(0<<29)
6031  #define   DVS_FILTER_ENHANCING	(1<<29)
6032  #define   DVS_FILTER_SOFTENING	(2<<29)
6033  #define   DVS_VERTICAL_OFFSET_HALF (1<<28) /* must be enabled below */
6034  #define   DVS_VERTICAL_OFFSET_ENABLE (1<<27)
6035  #define _DVSAGAMC		0x72300
6036  
6037  #define _DVSBCNTR		0x73180
6038  #define _DVSBLINOFF		0x73184
6039  #define _DVSBSTRIDE		0x73188
6040  #define _DVSBPOS		0x7318c
6041  #define _DVSBSIZE		0x73190
6042  #define _DVSBKEYVAL		0x73194
6043  #define _DVSBKEYMSK		0x73198
6044  #define _DVSBSURF		0x7319c
6045  #define _DVSBKEYMAXVAL		0x731a0
6046  #define _DVSBTILEOFF		0x731a4
6047  #define _DVSBSURFLIVE		0x731ac
6048  #define _DVSBSCALE		0x73204
6049  #define _DVSBGAMC		0x73300
6050  
6051  #define DVSCNTR(pipe) _MMIO_PIPE(pipe, _DVSACNTR, _DVSBCNTR)
6052  #define DVSLINOFF(pipe) _MMIO_PIPE(pipe, _DVSALINOFF, _DVSBLINOFF)
6053  #define DVSSTRIDE(pipe) _MMIO_PIPE(pipe, _DVSASTRIDE, _DVSBSTRIDE)
6054  #define DVSPOS(pipe) _MMIO_PIPE(pipe, _DVSAPOS, _DVSBPOS)
6055  #define DVSSURF(pipe) _MMIO_PIPE(pipe, _DVSASURF, _DVSBSURF)
6056  #define DVSKEYMAX(pipe) _MMIO_PIPE(pipe, _DVSAKEYMAXVAL, _DVSBKEYMAXVAL)
6057  #define DVSSIZE(pipe) _MMIO_PIPE(pipe, _DVSASIZE, _DVSBSIZE)
6058  #define DVSSCALE(pipe) _MMIO_PIPE(pipe, _DVSASCALE, _DVSBSCALE)
6059  #define DVSTILEOFF(pipe) _MMIO_PIPE(pipe, _DVSATILEOFF, _DVSBTILEOFF)
6060  #define DVSKEYVAL(pipe) _MMIO_PIPE(pipe, _DVSAKEYVAL, _DVSBKEYVAL)
6061  #define DVSKEYMSK(pipe) _MMIO_PIPE(pipe, _DVSAKEYMSK, _DVSBKEYMSK)
6062  #define DVSSURFLIVE(pipe) _MMIO_PIPE(pipe, _DVSASURFLIVE, _DVSBSURFLIVE)
6063  
6064  #define _SPRA_CTL		0x70280
6065  #define   SPRITE_ENABLE			(1<<31)
6066  #define   SPRITE_GAMMA_ENABLE		(1<<30)
6067  #define   SPRITE_PIXFORMAT_MASK		(7<<25)
6068  #define   SPRITE_FORMAT_YUV422		(0<<25)
6069  #define   SPRITE_FORMAT_RGBX101010	(1<<25)
6070  #define   SPRITE_FORMAT_RGBX888		(2<<25)
6071  #define   SPRITE_FORMAT_RGBX161616	(3<<25)
6072  #define   SPRITE_FORMAT_YUV444		(4<<25)
6073  #define   SPRITE_FORMAT_XR_BGR101010	(5<<25) /* Extended range */
6074  #define   SPRITE_PIPE_CSC_ENABLE	(1<<24)
6075  #define   SPRITE_SOURCE_KEY		(1<<22)
6076  #define   SPRITE_RGB_ORDER_RGBX		(1<<20) /* only for 888 and 161616 */
6077  #define   SPRITE_YUV_TO_RGB_CSC_DISABLE	(1<<19)
6078  #define   SPRITE_YUV_CSC_FORMAT_BT709	(1<<18) /* 0 is BT601 */
6079  #define   SPRITE_YUV_BYTE_ORDER_MASK	(3<<16)
6080  #define   SPRITE_YUV_ORDER_YUYV		(0<<16)
6081  #define   SPRITE_YUV_ORDER_UYVY		(1<<16)
6082  #define   SPRITE_YUV_ORDER_YVYU		(2<<16)
6083  #define   SPRITE_YUV_ORDER_VYUY		(3<<16)
6084  #define   SPRITE_ROTATE_180		(1<<15)
6085  #define   SPRITE_TRICKLE_FEED_DISABLE	(1<<14)
6086  #define   SPRITE_INT_GAMMA_ENABLE	(1<<13)
6087  #define   SPRITE_TILED			(1<<10)
6088  #define   SPRITE_DEST_KEY		(1<<2)
6089  #define _SPRA_LINOFF		0x70284
6090  #define _SPRA_STRIDE		0x70288
6091  #define _SPRA_POS		0x7028c
6092  #define _SPRA_SIZE		0x70290
6093  #define _SPRA_KEYVAL		0x70294
6094  #define _SPRA_KEYMSK		0x70298
6095  #define _SPRA_SURF		0x7029c
6096  #define _SPRA_KEYMAX		0x702a0
6097  #define _SPRA_TILEOFF		0x702a4
6098  #define _SPRA_OFFSET		0x702a4
6099  #define _SPRA_SURFLIVE		0x702ac
6100  #define _SPRA_SCALE		0x70304
6101  #define   SPRITE_SCALE_ENABLE	(1<<31)
6102  #define   SPRITE_FILTER_MASK	(3<<29)
6103  #define   SPRITE_FILTER_MEDIUM	(0<<29)
6104  #define   SPRITE_FILTER_ENHANCING	(1<<29)
6105  #define   SPRITE_FILTER_SOFTENING	(2<<29)
6106  #define   SPRITE_VERTICAL_OFFSET_HALF	(1<<28) /* must be enabled below */
6107  #define   SPRITE_VERTICAL_OFFSET_ENABLE	(1<<27)
6108  #define _SPRA_GAMC		0x70400
6109  
6110  #define _SPRB_CTL		0x71280
6111  #define _SPRB_LINOFF		0x71284
6112  #define _SPRB_STRIDE		0x71288
6113  #define _SPRB_POS		0x7128c
6114  #define _SPRB_SIZE		0x71290
6115  #define _SPRB_KEYVAL		0x71294
6116  #define _SPRB_KEYMSK		0x71298
6117  #define _SPRB_SURF		0x7129c
6118  #define _SPRB_KEYMAX		0x712a0
6119  #define _SPRB_TILEOFF		0x712a4
6120  #define _SPRB_OFFSET		0x712a4
6121  #define _SPRB_SURFLIVE		0x712ac
6122  #define _SPRB_SCALE		0x71304
6123  #define _SPRB_GAMC		0x71400
6124  
6125  #define SPRCTL(pipe) _MMIO_PIPE(pipe, _SPRA_CTL, _SPRB_CTL)
6126  #define SPRLINOFF(pipe) _MMIO_PIPE(pipe, _SPRA_LINOFF, _SPRB_LINOFF)
6127  #define SPRSTRIDE(pipe) _MMIO_PIPE(pipe, _SPRA_STRIDE, _SPRB_STRIDE)
6128  #define SPRPOS(pipe) _MMIO_PIPE(pipe, _SPRA_POS, _SPRB_POS)
6129  #define SPRSIZE(pipe) _MMIO_PIPE(pipe, _SPRA_SIZE, _SPRB_SIZE)
6130  #define SPRKEYVAL(pipe) _MMIO_PIPE(pipe, _SPRA_KEYVAL, _SPRB_KEYVAL)
6131  #define SPRKEYMSK(pipe) _MMIO_PIPE(pipe, _SPRA_KEYMSK, _SPRB_KEYMSK)
6132  #define SPRSURF(pipe) _MMIO_PIPE(pipe, _SPRA_SURF, _SPRB_SURF)
6133  #define SPRKEYMAX(pipe) _MMIO_PIPE(pipe, _SPRA_KEYMAX, _SPRB_KEYMAX)
6134  #define SPRTILEOFF(pipe) _MMIO_PIPE(pipe, _SPRA_TILEOFF, _SPRB_TILEOFF)
6135  #define SPROFFSET(pipe) _MMIO_PIPE(pipe, _SPRA_OFFSET, _SPRB_OFFSET)
6136  #define SPRSCALE(pipe) _MMIO_PIPE(pipe, _SPRA_SCALE, _SPRB_SCALE)
6137  #define SPRGAMC(pipe) _MMIO_PIPE(pipe, _SPRA_GAMC, _SPRB_GAMC)
6138  #define SPRSURFLIVE(pipe) _MMIO_PIPE(pipe, _SPRA_SURFLIVE, _SPRB_SURFLIVE)
6139  
6140  #define _SPACNTR		(VLV_DISPLAY_BASE + 0x72180)
6141  #define   SP_ENABLE			(1<<31)
6142  #define   SP_GAMMA_ENABLE		(1<<30)
6143  #define   SP_PIXFORMAT_MASK		(0xf<<26)
6144  #define   SP_FORMAT_YUV422		(0<<26)
6145  #define   SP_FORMAT_BGR565		(5<<26)
6146  #define   SP_FORMAT_BGRX8888		(6<<26)
6147  #define   SP_FORMAT_BGRA8888		(7<<26)
6148  #define   SP_FORMAT_RGBX1010102		(8<<26)
6149  #define   SP_FORMAT_RGBA1010102		(9<<26)
6150  #define   SP_FORMAT_RGBX8888		(0xe<<26)
6151  #define   SP_FORMAT_RGBA8888		(0xf<<26)
6152  #define   SP_ALPHA_PREMULTIPLY		(1<<23) /* CHV pipe B */
6153  #define   SP_SOURCE_KEY			(1<<22)
6154  #define   SP_YUV_BYTE_ORDER_MASK	(3<<16)
6155  #define   SP_YUV_ORDER_YUYV		(0<<16)
6156  #define   SP_YUV_ORDER_UYVY		(1<<16)
6157  #define   SP_YUV_ORDER_YVYU		(2<<16)
6158  #define   SP_YUV_ORDER_VYUY		(3<<16)
6159  #define   SP_ROTATE_180			(1<<15)
6160  #define   SP_TILED			(1<<10)
6161  #define   SP_MIRROR			(1<<8) /* CHV pipe B */
6162  #define _SPALINOFF		(VLV_DISPLAY_BASE + 0x72184)
6163  #define _SPASTRIDE		(VLV_DISPLAY_BASE + 0x72188)
6164  #define _SPAPOS			(VLV_DISPLAY_BASE + 0x7218c)
6165  #define _SPASIZE		(VLV_DISPLAY_BASE + 0x72190)
6166  #define _SPAKEYMINVAL		(VLV_DISPLAY_BASE + 0x72194)
6167  #define _SPAKEYMSK		(VLV_DISPLAY_BASE + 0x72198)
6168  #define _SPASURF		(VLV_DISPLAY_BASE + 0x7219c)
6169  #define _SPAKEYMAXVAL		(VLV_DISPLAY_BASE + 0x721a0)
6170  #define _SPATILEOFF		(VLV_DISPLAY_BASE + 0x721a4)
6171  #define _SPACONSTALPHA		(VLV_DISPLAY_BASE + 0x721a8)
6172  #define   SP_CONST_ALPHA_ENABLE		(1<<31)
6173  #define _SPACLRC0		(VLV_DISPLAY_BASE + 0x721d0)
6174  #define   SP_CONTRAST(x)		((x) << 18) /* u3.6 */
6175  #define   SP_BRIGHTNESS(x)		((x) & 0xff) /* s8 */
6176  #define _SPACLRC1		(VLV_DISPLAY_BASE + 0x721d4)
6177  #define   SP_SH_SIN(x)			(((x) & 0x7ff) << 16) /* s4.7 */
6178  #define   SP_SH_COS(x)			(x) /* u3.7 */
6179  #define _SPAGAMC		(VLV_DISPLAY_BASE + 0x721f4)
6180  
6181  #define _SPBCNTR		(VLV_DISPLAY_BASE + 0x72280)
6182  #define _SPBLINOFF		(VLV_DISPLAY_BASE + 0x72284)
6183  #define _SPBSTRIDE		(VLV_DISPLAY_BASE + 0x72288)
6184  #define _SPBPOS			(VLV_DISPLAY_BASE + 0x7228c)
6185  #define _SPBSIZE		(VLV_DISPLAY_BASE + 0x72290)
6186  #define _SPBKEYMINVAL		(VLV_DISPLAY_BASE + 0x72294)
6187  #define _SPBKEYMSK		(VLV_DISPLAY_BASE + 0x72298)
6188  #define _SPBSURF		(VLV_DISPLAY_BASE + 0x7229c)
6189  #define _SPBKEYMAXVAL		(VLV_DISPLAY_BASE + 0x722a0)
6190  #define _SPBTILEOFF		(VLV_DISPLAY_BASE + 0x722a4)
6191  #define _SPBCONSTALPHA		(VLV_DISPLAY_BASE + 0x722a8)
6192  #define _SPBCLRC0		(VLV_DISPLAY_BASE + 0x722d0)
6193  #define _SPBCLRC1		(VLV_DISPLAY_BASE + 0x722d4)
6194  #define _SPBGAMC		(VLV_DISPLAY_BASE + 0x722f4)
6195  
6196  #define _MMIO_VLV_SPR(pipe, plane_id, reg_a, reg_b) \
6197  	_MMIO_PIPE((pipe) * 2 + (plane_id) - PLANE_SPRITE0, (reg_a), (reg_b))
6198  
6199  #define SPCNTR(pipe, plane_id)		_MMIO_VLV_SPR((pipe), (plane_id), _SPACNTR, _SPBCNTR)
6200  #define SPLINOFF(pipe, plane_id)	_MMIO_VLV_SPR((pipe), (plane_id), _SPALINOFF, _SPBLINOFF)
6201  #define SPSTRIDE(pipe, plane_id)	_MMIO_VLV_SPR((pipe), (plane_id), _SPASTRIDE, _SPBSTRIDE)
6202  #define SPPOS(pipe, plane_id)		_MMIO_VLV_SPR((pipe), (plane_id), _SPAPOS, _SPBPOS)
6203  #define SPSIZE(pipe, plane_id)		_MMIO_VLV_SPR((pipe), (plane_id), _SPASIZE, _SPBSIZE)
6204  #define SPKEYMINVAL(pipe, plane_id)	_MMIO_VLV_SPR((pipe), (plane_id), _SPAKEYMINVAL, _SPBKEYMINVAL)
6205  #define SPKEYMSK(pipe, plane_id)	_MMIO_VLV_SPR((pipe), (plane_id), _SPAKEYMSK, _SPBKEYMSK)
6206  #define SPSURF(pipe, plane_id)		_MMIO_VLV_SPR((pipe), (plane_id), _SPASURF, _SPBSURF)
6207  #define SPKEYMAXVAL(pipe, plane_id)	_MMIO_VLV_SPR((pipe), (plane_id), _SPAKEYMAXVAL, _SPBKEYMAXVAL)
6208  #define SPTILEOFF(pipe, plane_id)	_MMIO_VLV_SPR((pipe), (plane_id), _SPATILEOFF, _SPBTILEOFF)
6209  #define SPCONSTALPHA(pipe, plane_id)	_MMIO_VLV_SPR((pipe), (plane_id), _SPACONSTALPHA, _SPBCONSTALPHA)
6210  #define SPCLRC0(pipe, plane_id)		_MMIO_VLV_SPR((pipe), (plane_id), _SPACLRC0, _SPBCLRC0)
6211  #define SPCLRC1(pipe, plane_id)		_MMIO_VLV_SPR((pipe), (plane_id), _SPACLRC1, _SPBCLRC1)
6212  #define SPGAMC(pipe, plane_id)		_MMIO_VLV_SPR((pipe), (plane_id), _SPAGAMC, _SPBGAMC)
6213  
6214  /*
6215   * CHV pipe B sprite CSC
6216   *
6217   * |cr|   |c0 c1 c2|   |cr + cr_ioff|   |cr_ooff|
6218   * |yg| = |c3 c4 c5| x |yg + yg_ioff| + |yg_ooff|
6219   * |cb|   |c6 c7 c8|   |cb + cr_ioff|   |cb_ooff|
6220   */
6221  #define _MMIO_CHV_SPCSC(plane_id, reg) \
6222  	_MMIO(VLV_DISPLAY_BASE + ((plane_id) - PLANE_SPRITE0) * 0x1000 + (reg))
6223  
6224  #define SPCSCYGOFF(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d900)
6225  #define SPCSCCBOFF(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d904)
6226  #define SPCSCCROFF(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d908)
6227  #define  SPCSC_OOFF(x)		(((x) & 0x7ff) << 16) /* s11 */
6228  #define  SPCSC_IOFF(x)		(((x) & 0x7ff) << 0) /* s11 */
6229  
6230  #define SPCSCC01(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d90c)
6231  #define SPCSCC23(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d910)
6232  #define SPCSCC45(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d914)
6233  #define SPCSCC67(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d918)
6234  #define SPCSCC8(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d91c)
6235  #define  SPCSC_C1(x)		(((x) & 0x7fff) << 16) /* s3.12 */
6236  #define  SPCSC_C0(x)		(((x) & 0x7fff) << 0) /* s3.12 */
6237  
6238  #define SPCSCYGICLAMP(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d920)
6239  #define SPCSCCBICLAMP(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d924)
6240  #define SPCSCCRICLAMP(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d928)
6241  #define  SPCSC_IMAX(x)		(((x) & 0x7ff) << 16) /* s11 */
6242  #define  SPCSC_IMIN(x)		(((x) & 0x7ff) << 0) /* s11 */
6243  
6244  #define SPCSCYGOCLAMP(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d92c)
6245  #define SPCSCCBOCLAMP(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d930)
6246  #define SPCSCCROCLAMP(plane_id)	_MMIO_CHV_SPCSC(plane_id, 0x6d934)
6247  #define  SPCSC_OMAX(x)		((x) << 16) /* u10 */
6248  #define  SPCSC_OMIN(x)		((x) << 0) /* u10 */
6249  
6250  /* Skylake plane registers */
6251  
6252  #define _PLANE_CTL_1_A				0x70180
6253  #define _PLANE_CTL_2_A				0x70280
6254  #define _PLANE_CTL_3_A				0x70380
6255  #define   PLANE_CTL_ENABLE			(1 << 31)
6256  #define   PLANE_CTL_PIPE_GAMMA_ENABLE		(1 << 30)
6257  #define   PLANE_CTL_FORMAT_MASK			(0xf << 24)
6258  #define   PLANE_CTL_FORMAT_YUV422		(  0 << 24)
6259  #define   PLANE_CTL_FORMAT_NV12			(  1 << 24)
6260  #define   PLANE_CTL_FORMAT_XRGB_2101010		(  2 << 24)
6261  #define   PLANE_CTL_FORMAT_XRGB_8888		(  4 << 24)
6262  #define   PLANE_CTL_FORMAT_XRGB_16161616F	(  6 << 24)
6263  #define   PLANE_CTL_FORMAT_AYUV			(  8 << 24)
6264  #define   PLANE_CTL_FORMAT_INDEXED		( 12 << 24)
6265  #define   PLANE_CTL_FORMAT_RGB_565		( 14 << 24)
6266  #define   PLANE_CTL_PIPE_CSC_ENABLE		(1 << 23)
6267  #define   PLANE_CTL_KEY_ENABLE_MASK		(0x3 << 21)
6268  #define   PLANE_CTL_KEY_ENABLE_SOURCE		(  1 << 21)
6269  #define   PLANE_CTL_KEY_ENABLE_DESTINATION	(  2 << 21)
6270  #define   PLANE_CTL_ORDER_BGRX			(0 << 20)
6271  #define   PLANE_CTL_ORDER_RGBX			(1 << 20)
6272  #define   PLANE_CTL_YUV422_ORDER_MASK		(0x3 << 16)
6273  #define   PLANE_CTL_YUV422_YUYV			(  0 << 16)
6274  #define   PLANE_CTL_YUV422_UYVY			(  1 << 16)
6275  #define   PLANE_CTL_YUV422_YVYU			(  2 << 16)
6276  #define   PLANE_CTL_YUV422_VYUY			(  3 << 16)
6277  #define   PLANE_CTL_DECOMPRESSION_ENABLE	(1 << 15)
6278  #define   PLANE_CTL_TRICKLE_FEED_DISABLE	(1 << 14)
6279  #define   PLANE_CTL_PLANE_GAMMA_DISABLE		(1 << 13)
6280  #define   PLANE_CTL_TILED_MASK			(0x7 << 10)
6281  #define   PLANE_CTL_TILED_LINEAR		(  0 << 10)
6282  #define   PLANE_CTL_TILED_X			(  1 << 10)
6283  #define   PLANE_CTL_TILED_Y			(  4 << 10)
6284  #define   PLANE_CTL_TILED_YF			(  5 << 10)
6285  #define   PLANE_CTL_ALPHA_MASK			(0x3 << 4)
6286  #define   PLANE_CTL_ALPHA_DISABLE		(  0 << 4)
6287  #define   PLANE_CTL_ALPHA_SW_PREMULTIPLY	(  2 << 4)
6288  #define   PLANE_CTL_ALPHA_HW_PREMULTIPLY	(  3 << 4)
6289  #define   PLANE_CTL_ROTATE_MASK			0x3
6290  #define   PLANE_CTL_ROTATE_0			0x0
6291  #define   PLANE_CTL_ROTATE_90			0x1
6292  #define   PLANE_CTL_ROTATE_180			0x2
6293  #define   PLANE_CTL_ROTATE_270			0x3
6294  #define _PLANE_STRIDE_1_A			0x70188
6295  #define _PLANE_STRIDE_2_A			0x70288
6296  #define _PLANE_STRIDE_3_A			0x70388
6297  #define _PLANE_POS_1_A				0x7018c
6298  #define _PLANE_POS_2_A				0x7028c
6299  #define _PLANE_POS_3_A				0x7038c
6300  #define _PLANE_SIZE_1_A				0x70190
6301  #define _PLANE_SIZE_2_A				0x70290
6302  #define _PLANE_SIZE_3_A				0x70390
6303  #define _PLANE_SURF_1_A				0x7019c
6304  #define _PLANE_SURF_2_A				0x7029c
6305  #define _PLANE_SURF_3_A				0x7039c
6306  #define _PLANE_OFFSET_1_A			0x701a4
6307  #define _PLANE_OFFSET_2_A			0x702a4
6308  #define _PLANE_OFFSET_3_A			0x703a4
6309  #define _PLANE_KEYVAL_1_A			0x70194
6310  #define _PLANE_KEYVAL_2_A			0x70294
6311  #define _PLANE_KEYMSK_1_A			0x70198
6312  #define _PLANE_KEYMSK_2_A			0x70298
6313  #define _PLANE_KEYMAX_1_A			0x701a0
6314  #define _PLANE_KEYMAX_2_A			0x702a0
6315  #define _PLANE_AUX_DIST_1_A			0x701c0
6316  #define _PLANE_AUX_DIST_2_A			0x702c0
6317  #define _PLANE_AUX_OFFSET_1_A			0x701c4
6318  #define _PLANE_AUX_OFFSET_2_A			0x702c4
6319  #define _PLANE_COLOR_CTL_1_A			0x701CC /* GLK+ */
6320  #define _PLANE_COLOR_CTL_2_A			0x702CC /* GLK+ */
6321  #define _PLANE_COLOR_CTL_3_A			0x703CC /* GLK+ */
6322  #define   PLANE_COLOR_PIPE_GAMMA_ENABLE		(1 << 30)
6323  #define   PLANE_COLOR_PIPE_CSC_ENABLE		(1 << 23)
6324  #define   PLANE_COLOR_PLANE_GAMMA_DISABLE	(1 << 13)
6325  #define _PLANE_BUF_CFG_1_A			0x7027c
6326  #define _PLANE_BUF_CFG_2_A			0x7037c
6327  #define _PLANE_NV12_BUF_CFG_1_A		0x70278
6328  #define _PLANE_NV12_BUF_CFG_2_A		0x70378
6329  
6330  
6331  #define _PLANE_CTL_1_B				0x71180
6332  #define _PLANE_CTL_2_B				0x71280
6333  #define _PLANE_CTL_3_B				0x71380
6334  #define _PLANE_CTL_1(pipe)	_PIPE(pipe, _PLANE_CTL_1_A, _PLANE_CTL_1_B)
6335  #define _PLANE_CTL_2(pipe)	_PIPE(pipe, _PLANE_CTL_2_A, _PLANE_CTL_2_B)
6336  #define _PLANE_CTL_3(pipe)	_PIPE(pipe, _PLANE_CTL_3_A, _PLANE_CTL_3_B)
6337  #define PLANE_CTL(pipe, plane)	\
6338  	_MMIO_PLANE(plane, _PLANE_CTL_1(pipe), _PLANE_CTL_2(pipe))
6339  
6340  #define _PLANE_STRIDE_1_B			0x71188
6341  #define _PLANE_STRIDE_2_B			0x71288
6342  #define _PLANE_STRIDE_3_B			0x71388
6343  #define _PLANE_STRIDE_1(pipe)	\
6344  	_PIPE(pipe, _PLANE_STRIDE_1_A, _PLANE_STRIDE_1_B)
6345  #define _PLANE_STRIDE_2(pipe)	\
6346  	_PIPE(pipe, _PLANE_STRIDE_2_A, _PLANE_STRIDE_2_B)
6347  #define _PLANE_STRIDE_3(pipe)	\
6348  	_PIPE(pipe, _PLANE_STRIDE_3_A, _PLANE_STRIDE_3_B)
6349  #define PLANE_STRIDE(pipe, plane)	\
6350  	_MMIO_PLANE(plane, _PLANE_STRIDE_1(pipe), _PLANE_STRIDE_2(pipe))
6351  
6352  #define _PLANE_POS_1_B				0x7118c
6353  #define _PLANE_POS_2_B				0x7128c
6354  #define _PLANE_POS_3_B				0x7138c
6355  #define _PLANE_POS_1(pipe)	_PIPE(pipe, _PLANE_POS_1_A, _PLANE_POS_1_B)
6356  #define _PLANE_POS_2(pipe)	_PIPE(pipe, _PLANE_POS_2_A, _PLANE_POS_2_B)
6357  #define _PLANE_POS_3(pipe)	_PIPE(pipe, _PLANE_POS_3_A, _PLANE_POS_3_B)
6358  #define PLANE_POS(pipe, plane)	\
6359  	_MMIO_PLANE(plane, _PLANE_POS_1(pipe), _PLANE_POS_2(pipe))
6360  
6361  #define _PLANE_SIZE_1_B				0x71190
6362  #define _PLANE_SIZE_2_B				0x71290
6363  #define _PLANE_SIZE_3_B				0x71390
6364  #define _PLANE_SIZE_1(pipe)	_PIPE(pipe, _PLANE_SIZE_1_A, _PLANE_SIZE_1_B)
6365  #define _PLANE_SIZE_2(pipe)	_PIPE(pipe, _PLANE_SIZE_2_A, _PLANE_SIZE_2_B)
6366  #define _PLANE_SIZE_3(pipe)	_PIPE(pipe, _PLANE_SIZE_3_A, _PLANE_SIZE_3_B)
6367  #define PLANE_SIZE(pipe, plane)	\
6368  	_MMIO_PLANE(plane, _PLANE_SIZE_1(pipe), _PLANE_SIZE_2(pipe))
6369  
6370  #define _PLANE_SURF_1_B				0x7119c
6371  #define _PLANE_SURF_2_B				0x7129c
6372  #define _PLANE_SURF_3_B				0x7139c
6373  #define _PLANE_SURF_1(pipe)	_PIPE(pipe, _PLANE_SURF_1_A, _PLANE_SURF_1_B)
6374  #define _PLANE_SURF_2(pipe)	_PIPE(pipe, _PLANE_SURF_2_A, _PLANE_SURF_2_B)
6375  #define _PLANE_SURF_3(pipe)	_PIPE(pipe, _PLANE_SURF_3_A, _PLANE_SURF_3_B)
6376  #define PLANE_SURF(pipe, plane)	\
6377  	_MMIO_PLANE(plane, _PLANE_SURF_1(pipe), _PLANE_SURF_2(pipe))
6378  
6379  #define _PLANE_OFFSET_1_B			0x711a4
6380  #define _PLANE_OFFSET_2_B			0x712a4
6381  #define _PLANE_OFFSET_1(pipe) _PIPE(pipe, _PLANE_OFFSET_1_A, _PLANE_OFFSET_1_B)
6382  #define _PLANE_OFFSET_2(pipe) _PIPE(pipe, _PLANE_OFFSET_2_A, _PLANE_OFFSET_2_B)
6383  #define PLANE_OFFSET(pipe, plane)	\
6384  	_MMIO_PLANE(plane, _PLANE_OFFSET_1(pipe), _PLANE_OFFSET_2(pipe))
6385  
6386  #define _PLANE_KEYVAL_1_B			0x71194
6387  #define _PLANE_KEYVAL_2_B			0x71294
6388  #define _PLANE_KEYVAL_1(pipe) _PIPE(pipe, _PLANE_KEYVAL_1_A, _PLANE_KEYVAL_1_B)
6389  #define _PLANE_KEYVAL_2(pipe) _PIPE(pipe, _PLANE_KEYVAL_2_A, _PLANE_KEYVAL_2_B)
6390  #define PLANE_KEYVAL(pipe, plane)	\
6391  	_MMIO_PLANE(plane, _PLANE_KEYVAL_1(pipe), _PLANE_KEYVAL_2(pipe))
6392  
6393  #define _PLANE_KEYMSK_1_B			0x71198
6394  #define _PLANE_KEYMSK_2_B			0x71298
6395  #define _PLANE_KEYMSK_1(pipe) _PIPE(pipe, _PLANE_KEYMSK_1_A, _PLANE_KEYMSK_1_B)
6396  #define _PLANE_KEYMSK_2(pipe) _PIPE(pipe, _PLANE_KEYMSK_2_A, _PLANE_KEYMSK_2_B)
6397  #define PLANE_KEYMSK(pipe, plane)	\
6398  	_MMIO_PLANE(plane, _PLANE_KEYMSK_1(pipe), _PLANE_KEYMSK_2(pipe))
6399  
6400  #define _PLANE_KEYMAX_1_B			0x711a0
6401  #define _PLANE_KEYMAX_2_B			0x712a0
6402  #define _PLANE_KEYMAX_1(pipe) _PIPE(pipe, _PLANE_KEYMAX_1_A, _PLANE_KEYMAX_1_B)
6403  #define _PLANE_KEYMAX_2(pipe) _PIPE(pipe, _PLANE_KEYMAX_2_A, _PLANE_KEYMAX_2_B)
6404  #define PLANE_KEYMAX(pipe, plane)	\
6405  	_MMIO_PLANE(plane, _PLANE_KEYMAX_1(pipe), _PLANE_KEYMAX_2(pipe))
6406  
6407  #define _PLANE_BUF_CFG_1_B			0x7127c
6408  #define _PLANE_BUF_CFG_2_B			0x7137c
6409  #define _PLANE_BUF_CFG_1(pipe)	\
6410  	_PIPE(pipe, _PLANE_BUF_CFG_1_A, _PLANE_BUF_CFG_1_B)
6411  #define _PLANE_BUF_CFG_2(pipe)	\
6412  	_PIPE(pipe, _PLANE_BUF_CFG_2_A, _PLANE_BUF_CFG_2_B)
6413  #define PLANE_BUF_CFG(pipe, plane)	\
6414  	_MMIO_PLANE(plane, _PLANE_BUF_CFG_1(pipe), _PLANE_BUF_CFG_2(pipe))
6415  
6416  #define _PLANE_NV12_BUF_CFG_1_B		0x71278
6417  #define _PLANE_NV12_BUF_CFG_2_B		0x71378
6418  #define _PLANE_NV12_BUF_CFG_1(pipe)	\
6419  	_PIPE(pipe, _PLANE_NV12_BUF_CFG_1_A, _PLANE_NV12_BUF_CFG_1_B)
6420  #define _PLANE_NV12_BUF_CFG_2(pipe)	\
6421  	_PIPE(pipe, _PLANE_NV12_BUF_CFG_2_A, _PLANE_NV12_BUF_CFG_2_B)
6422  #define PLANE_NV12_BUF_CFG(pipe, plane)	\
6423  	_MMIO_PLANE(plane, _PLANE_NV12_BUF_CFG_1(pipe), _PLANE_NV12_BUF_CFG_2(pipe))
6424  
6425  #define _PLANE_AUX_DIST_1_B		0x711c0
6426  #define _PLANE_AUX_DIST_2_B		0x712c0
6427  #define _PLANE_AUX_DIST_1(pipe) \
6428  			_PIPE(pipe, _PLANE_AUX_DIST_1_A, _PLANE_AUX_DIST_1_B)
6429  #define _PLANE_AUX_DIST_2(pipe) \
6430  			_PIPE(pipe, _PLANE_AUX_DIST_2_A, _PLANE_AUX_DIST_2_B)
6431  #define PLANE_AUX_DIST(pipe, plane)     \
6432  	_MMIO_PLANE(plane, _PLANE_AUX_DIST_1(pipe), _PLANE_AUX_DIST_2(pipe))
6433  
6434  #define _PLANE_AUX_OFFSET_1_B		0x711c4
6435  #define _PLANE_AUX_OFFSET_2_B		0x712c4
6436  #define _PLANE_AUX_OFFSET_1(pipe)       \
6437  		_PIPE(pipe, _PLANE_AUX_OFFSET_1_A, _PLANE_AUX_OFFSET_1_B)
6438  #define _PLANE_AUX_OFFSET_2(pipe)       \
6439  		_PIPE(pipe, _PLANE_AUX_OFFSET_2_A, _PLANE_AUX_OFFSET_2_B)
6440  #define PLANE_AUX_OFFSET(pipe, plane)   \
6441  	_MMIO_PLANE(plane, _PLANE_AUX_OFFSET_1(pipe), _PLANE_AUX_OFFSET_2(pipe))
6442  
6443  #define _PLANE_COLOR_CTL_1_B			0x711CC
6444  #define _PLANE_COLOR_CTL_2_B			0x712CC
6445  #define _PLANE_COLOR_CTL_3_B			0x713CC
6446  #define _PLANE_COLOR_CTL_1(pipe)	\
6447  	_PIPE(pipe, _PLANE_COLOR_CTL_1_A, _PLANE_COLOR_CTL_1_B)
6448  #define _PLANE_COLOR_CTL_2(pipe)	\
6449  	_PIPE(pipe, _PLANE_COLOR_CTL_2_A, _PLANE_COLOR_CTL_2_B)
6450  #define PLANE_COLOR_CTL(pipe, plane)	\
6451  	_MMIO_PLANE(plane, _PLANE_COLOR_CTL_1(pipe), _PLANE_COLOR_CTL_2(pipe))
6452  
6453  #/* SKL new cursor registers */
6454  #define _CUR_BUF_CFG_A				0x7017c
6455  #define _CUR_BUF_CFG_B				0x7117c
6456  #define CUR_BUF_CFG(pipe)	_MMIO_PIPE(pipe, _CUR_BUF_CFG_A, _CUR_BUF_CFG_B)
6457  
6458  /* VBIOS regs */
6459  #define VGACNTRL		_MMIO(0x71400)
6460  # define VGA_DISP_DISABLE			(1 << 31)
6461  # define VGA_2X_MODE				(1 << 30)
6462  # define VGA_PIPE_B_SELECT			(1 << 29)
6463  
6464  #define VLV_VGACNTRL		_MMIO(VLV_DISPLAY_BASE + 0x71400)
6465  
6466  /* Ironlake */
6467  
6468  #define CPU_VGACNTRL	_MMIO(0x41000)
6469  
6470  #define DIGITAL_PORT_HOTPLUG_CNTRL	_MMIO(0x44030)
6471  #define  DIGITAL_PORTA_HOTPLUG_ENABLE		(1 << 4)
6472  #define  DIGITAL_PORTA_PULSE_DURATION_2ms	(0 << 2) /* pre-HSW */
6473  #define  DIGITAL_PORTA_PULSE_DURATION_4_5ms	(1 << 2) /* pre-HSW */
6474  #define  DIGITAL_PORTA_PULSE_DURATION_6ms	(2 << 2) /* pre-HSW */
6475  #define  DIGITAL_PORTA_PULSE_DURATION_100ms	(3 << 2) /* pre-HSW */
6476  #define  DIGITAL_PORTA_PULSE_DURATION_MASK	(3 << 2) /* pre-HSW */
6477  #define  DIGITAL_PORTA_HOTPLUG_STATUS_MASK	(3 << 0)
6478  #define  DIGITAL_PORTA_HOTPLUG_NO_DETECT	(0 << 0)
6479  #define  DIGITAL_PORTA_HOTPLUG_SHORT_DETECT	(1 << 0)
6480  #define  DIGITAL_PORTA_HOTPLUG_LONG_DETECT	(2 << 0)
6481  
6482  /* refresh rate hardware control */
6483  #define RR_HW_CTL       _MMIO(0x45300)
6484  #define  RR_HW_LOW_POWER_FRAMES_MASK    0xff
6485  #define  RR_HW_HIGH_POWER_FRAMES_MASK   0xff00
6486  
6487  #define FDI_PLL_BIOS_0  _MMIO(0x46000)
6488  #define  FDI_PLL_FB_CLOCK_MASK  0xff
6489  #define FDI_PLL_BIOS_1  _MMIO(0x46004)
6490  #define FDI_PLL_BIOS_2  _MMIO(0x46008)
6491  #define DISPLAY_PORT_PLL_BIOS_0         _MMIO(0x4600c)
6492  #define DISPLAY_PORT_PLL_BIOS_1         _MMIO(0x46010)
6493  #define DISPLAY_PORT_PLL_BIOS_2         _MMIO(0x46014)
6494  
6495  #define PCH_3DCGDIS0		_MMIO(0x46020)
6496  # define MARIUNIT_CLOCK_GATE_DISABLE		(1 << 18)
6497  # define SVSMUNIT_CLOCK_GATE_DISABLE		(1 << 1)
6498  
6499  #define PCH_3DCGDIS1		_MMIO(0x46024)
6500  # define VFMUNIT_CLOCK_GATE_DISABLE		(1 << 11)
6501  
6502  #define FDI_PLL_FREQ_CTL        _MMIO(0x46030)
6503  #define  FDI_PLL_FREQ_CHANGE_REQUEST    (1<<24)
6504  #define  FDI_PLL_FREQ_LOCK_LIMIT_MASK   0xfff00
6505  #define  FDI_PLL_FREQ_DISABLE_COUNT_LIMIT_MASK  0xff
6506  
6507  
6508  #define _PIPEA_DATA_M1		0x60030
6509  #define  PIPE_DATA_M1_OFFSET    0
6510  #define _PIPEA_DATA_N1		0x60034
6511  #define  PIPE_DATA_N1_OFFSET    0
6512  
6513  #define _PIPEA_DATA_M2		0x60038
6514  #define  PIPE_DATA_M2_OFFSET    0
6515  #define _PIPEA_DATA_N2		0x6003c
6516  #define  PIPE_DATA_N2_OFFSET    0
6517  
6518  #define _PIPEA_LINK_M1		0x60040
6519  #define  PIPE_LINK_M1_OFFSET    0
6520  #define _PIPEA_LINK_N1		0x60044
6521  #define  PIPE_LINK_N1_OFFSET    0
6522  
6523  #define _PIPEA_LINK_M2		0x60048
6524  #define  PIPE_LINK_M2_OFFSET    0
6525  #define _PIPEA_LINK_N2		0x6004c
6526  #define  PIPE_LINK_N2_OFFSET    0
6527  
6528  /* PIPEB timing regs are same start from 0x61000 */
6529  
6530  #define _PIPEB_DATA_M1		0x61030
6531  #define _PIPEB_DATA_N1		0x61034
6532  #define _PIPEB_DATA_M2		0x61038
6533  #define _PIPEB_DATA_N2		0x6103c
6534  #define _PIPEB_LINK_M1		0x61040
6535  #define _PIPEB_LINK_N1		0x61044
6536  #define _PIPEB_LINK_M2		0x61048
6537  #define _PIPEB_LINK_N2		0x6104c
6538  
6539  #define PIPE_DATA_M1(tran) _MMIO_TRANS2(tran, _PIPEA_DATA_M1)
6540  #define PIPE_DATA_N1(tran) _MMIO_TRANS2(tran, _PIPEA_DATA_N1)
6541  #define PIPE_DATA_M2(tran) _MMIO_TRANS2(tran, _PIPEA_DATA_M2)
6542  #define PIPE_DATA_N2(tran) _MMIO_TRANS2(tran, _PIPEA_DATA_N2)
6543  #define PIPE_LINK_M1(tran) _MMIO_TRANS2(tran, _PIPEA_LINK_M1)
6544  #define PIPE_LINK_N1(tran) _MMIO_TRANS2(tran, _PIPEA_LINK_N1)
6545  #define PIPE_LINK_M2(tran) _MMIO_TRANS2(tran, _PIPEA_LINK_M2)
6546  #define PIPE_LINK_N2(tran) _MMIO_TRANS2(tran, _PIPEA_LINK_N2)
6547  
6548  /* CPU panel fitter */
6549  /* IVB+ has 3 fitters, 0 is 7x5 capable, the other two only 3x3 */
6550  #define _PFA_CTL_1               0x68080
6551  #define _PFB_CTL_1               0x68880
6552  #define  PF_ENABLE              (1<<31)
6553  #define  PF_PIPE_SEL_MASK_IVB	(3<<29)
6554  #define  PF_PIPE_SEL_IVB(pipe)	((pipe)<<29)
6555  #define  PF_FILTER_MASK		(3<<23)
6556  #define  PF_FILTER_PROGRAMMED	(0<<23)
6557  #define  PF_FILTER_MED_3x3	(1<<23)
6558  #define  PF_FILTER_EDGE_ENHANCE	(2<<23)
6559  #define  PF_FILTER_EDGE_SOFTEN	(3<<23)
6560  #define _PFA_WIN_SZ		0x68074
6561  #define _PFB_WIN_SZ		0x68874
6562  #define _PFA_WIN_POS		0x68070
6563  #define _PFB_WIN_POS		0x68870
6564  #define _PFA_VSCALE		0x68084
6565  #define _PFB_VSCALE		0x68884
6566  #define _PFA_HSCALE		0x68090
6567  #define _PFB_HSCALE		0x68890
6568  
6569  #define PF_CTL(pipe)		_MMIO_PIPE(pipe, _PFA_CTL_1, _PFB_CTL_1)
6570  #define PF_WIN_SZ(pipe)		_MMIO_PIPE(pipe, _PFA_WIN_SZ, _PFB_WIN_SZ)
6571  #define PF_WIN_POS(pipe)	_MMIO_PIPE(pipe, _PFA_WIN_POS, _PFB_WIN_POS)
6572  #define PF_VSCALE(pipe)		_MMIO_PIPE(pipe, _PFA_VSCALE, _PFB_VSCALE)
6573  #define PF_HSCALE(pipe)		_MMIO_PIPE(pipe, _PFA_HSCALE, _PFB_HSCALE)
6574  
6575  #define _PSA_CTL		0x68180
6576  #define _PSB_CTL		0x68980
6577  #define PS_ENABLE		(1<<31)
6578  #define _PSA_WIN_SZ		0x68174
6579  #define _PSB_WIN_SZ		0x68974
6580  #define _PSA_WIN_POS		0x68170
6581  #define _PSB_WIN_POS		0x68970
6582  
6583  #define PS_CTL(pipe)		_MMIO_PIPE(pipe, _PSA_CTL, _PSB_CTL)
6584  #define PS_WIN_SZ(pipe)		_MMIO_PIPE(pipe, _PSA_WIN_SZ, _PSB_WIN_SZ)
6585  #define PS_WIN_POS(pipe)	_MMIO_PIPE(pipe, _PSA_WIN_POS, _PSB_WIN_POS)
6586  
6587  /*
6588   * Skylake scalers
6589   */
6590  #define _PS_1A_CTRL      0x68180
6591  #define _PS_2A_CTRL      0x68280
6592  #define _PS_1B_CTRL      0x68980
6593  #define _PS_2B_CTRL      0x68A80
6594  #define _PS_1C_CTRL      0x69180
6595  #define PS_SCALER_EN        (1 << 31)
6596  #define PS_SCALER_MODE_MASK (3 << 28)
6597  #define PS_SCALER_MODE_DYN  (0 << 28)
6598  #define PS_SCALER_MODE_HQ  (1 << 28)
6599  #define PS_PLANE_SEL_MASK  (7 << 25)
6600  #define PS_PLANE_SEL(plane) (((plane) + 1) << 25)
6601  #define PS_FILTER_MASK         (3 << 23)
6602  #define PS_FILTER_MEDIUM       (0 << 23)
6603  #define PS_FILTER_EDGE_ENHANCE (2 << 23)
6604  #define PS_FILTER_BILINEAR     (3 << 23)
6605  #define PS_VERT3TAP            (1 << 21)
6606  #define PS_VERT_INT_INVERT_FIELD1 (0 << 20)
6607  #define PS_VERT_INT_INVERT_FIELD0 (1 << 20)
6608  #define PS_PWRUP_PROGRESS         (1 << 17)
6609  #define PS_V_FILTER_BYPASS        (1 << 8)
6610  #define PS_VADAPT_EN              (1 << 7)
6611  #define PS_VADAPT_MODE_MASK        (3 << 5)
6612  #define PS_VADAPT_MODE_LEAST_ADAPT (0 << 5)
6613  #define PS_VADAPT_MODE_MOD_ADAPT   (1 << 5)
6614  #define PS_VADAPT_MODE_MOST_ADAPT  (3 << 5)
6615  
6616  #define _PS_PWR_GATE_1A     0x68160
6617  #define _PS_PWR_GATE_2A     0x68260
6618  #define _PS_PWR_GATE_1B     0x68960
6619  #define _PS_PWR_GATE_2B     0x68A60
6620  #define _PS_PWR_GATE_1C     0x69160
6621  #define PS_PWR_GATE_DIS_OVERRIDE       (1 << 31)
6622  #define PS_PWR_GATE_SETTLING_TIME_32   (0 << 3)
6623  #define PS_PWR_GATE_SETTLING_TIME_64   (1 << 3)
6624  #define PS_PWR_GATE_SETTLING_TIME_96   (2 << 3)
6625  #define PS_PWR_GATE_SETTLING_TIME_128  (3 << 3)
6626  #define PS_PWR_GATE_SLPEN_8             0
6627  #define PS_PWR_GATE_SLPEN_16            1
6628  #define PS_PWR_GATE_SLPEN_24            2
6629  #define PS_PWR_GATE_SLPEN_32            3
6630  
6631  #define _PS_WIN_POS_1A      0x68170
6632  #define _PS_WIN_POS_2A      0x68270
6633  #define _PS_WIN_POS_1B      0x68970
6634  #define _PS_WIN_POS_2B      0x68A70
6635  #define _PS_WIN_POS_1C      0x69170
6636  
6637  #define _PS_WIN_SZ_1A       0x68174
6638  #define _PS_WIN_SZ_2A       0x68274
6639  #define _PS_WIN_SZ_1B       0x68974
6640  #define _PS_WIN_SZ_2B       0x68A74
6641  #define _PS_WIN_SZ_1C       0x69174
6642  
6643  #define _PS_VSCALE_1A       0x68184
6644  #define _PS_VSCALE_2A       0x68284
6645  #define _PS_VSCALE_1B       0x68984
6646  #define _PS_VSCALE_2B       0x68A84
6647  #define _PS_VSCALE_1C       0x69184
6648  
6649  #define _PS_HSCALE_1A       0x68190
6650  #define _PS_HSCALE_2A       0x68290
6651  #define _PS_HSCALE_1B       0x68990
6652  #define _PS_HSCALE_2B       0x68A90
6653  #define _PS_HSCALE_1C       0x69190
6654  
6655  #define _PS_VPHASE_1A       0x68188
6656  #define _PS_VPHASE_2A       0x68288
6657  #define _PS_VPHASE_1B       0x68988
6658  #define _PS_VPHASE_2B       0x68A88
6659  #define _PS_VPHASE_1C       0x69188
6660  
6661  #define _PS_HPHASE_1A       0x68194
6662  #define _PS_HPHASE_2A       0x68294
6663  #define _PS_HPHASE_1B       0x68994
6664  #define _PS_HPHASE_2B       0x68A94
6665  #define _PS_HPHASE_1C       0x69194
6666  
6667  #define _PS_ECC_STAT_1A     0x681D0
6668  #define _PS_ECC_STAT_2A     0x682D0
6669  #define _PS_ECC_STAT_1B     0x689D0
6670  #define _PS_ECC_STAT_2B     0x68AD0
6671  #define _PS_ECC_STAT_1C     0x691D0
6672  
6673  #define _ID(id, a, b) ((a) + (id)*((b)-(a)))
6674  #define SKL_PS_CTRL(pipe, id) _MMIO_PIPE(pipe,        \
6675  			_ID(id, _PS_1A_CTRL, _PS_2A_CTRL),       \
6676  			_ID(id, _PS_1B_CTRL, _PS_2B_CTRL))
6677  #define SKL_PS_PWR_GATE(pipe, id) _MMIO_PIPE(pipe,    \
6678  			_ID(id, _PS_PWR_GATE_1A, _PS_PWR_GATE_2A), \
6679  			_ID(id, _PS_PWR_GATE_1B, _PS_PWR_GATE_2B))
6680  #define SKL_PS_WIN_POS(pipe, id) _MMIO_PIPE(pipe,     \
6681  			_ID(id, _PS_WIN_POS_1A, _PS_WIN_POS_2A), \
6682  			_ID(id, _PS_WIN_POS_1B, _PS_WIN_POS_2B))
6683  #define SKL_PS_WIN_SZ(pipe, id)  _MMIO_PIPE(pipe,     \
6684  			_ID(id, _PS_WIN_SZ_1A, _PS_WIN_SZ_2A),   \
6685  			_ID(id, _PS_WIN_SZ_1B, _PS_WIN_SZ_2B))
6686  #define SKL_PS_VSCALE(pipe, id)  _MMIO_PIPE(pipe,     \
6687  			_ID(id, _PS_VSCALE_1A, _PS_VSCALE_2A),   \
6688  			_ID(id, _PS_VSCALE_1B, _PS_VSCALE_2B))
6689  #define SKL_PS_HSCALE(pipe, id)  _MMIO_PIPE(pipe,     \
6690  			_ID(id, _PS_HSCALE_1A, _PS_HSCALE_2A),   \
6691  			_ID(id, _PS_HSCALE_1B, _PS_HSCALE_2B))
6692  #define SKL_PS_VPHASE(pipe, id)  _MMIO_PIPE(pipe,     \
6693  			_ID(id, _PS_VPHASE_1A, _PS_VPHASE_2A),   \
6694  			_ID(id, _PS_VPHASE_1B, _PS_VPHASE_2B))
6695  #define SKL_PS_HPHASE(pipe, id)  _MMIO_PIPE(pipe,     \
6696  			_ID(id, _PS_HPHASE_1A, _PS_HPHASE_2A),   \
6697  			_ID(id, _PS_HPHASE_1B, _PS_HPHASE_2B))
6698  #define SKL_PS_ECC_STAT(pipe, id)  _MMIO_PIPE(pipe,     \
6699  			_ID(id, _PS_ECC_STAT_1A, _PS_ECC_STAT_2A),   \
6700  			_ID(id, _PS_ECC_STAT_1B, _PS_ECC_STAT_2B))
6701  
6702  /* legacy palette */
6703  #define _LGC_PALETTE_A           0x4a000
6704  #define _LGC_PALETTE_B           0x4a800
6705  #define LGC_PALETTE(pipe, i) _MMIO(_PIPE(pipe, _LGC_PALETTE_A, _LGC_PALETTE_B) + (i) * 4)
6706  
6707  #define _GAMMA_MODE_A		0x4a480
6708  #define _GAMMA_MODE_B		0x4ac80
6709  #define GAMMA_MODE(pipe) _MMIO_PIPE(pipe, _GAMMA_MODE_A, _GAMMA_MODE_B)
6710  #define GAMMA_MODE_MODE_MASK	(3 << 0)
6711  #define GAMMA_MODE_MODE_8BIT	(0 << 0)
6712  #define GAMMA_MODE_MODE_10BIT	(1 << 0)
6713  #define GAMMA_MODE_MODE_12BIT	(2 << 0)
6714  #define GAMMA_MODE_MODE_SPLIT	(3 << 0)
6715  
6716  /* DMC/CSR */
6717  #define CSR_PROGRAM(i)		_MMIO(0x80000 + (i) * 4)
6718  #define CSR_SSP_BASE_ADDR_GEN9	0x00002FC0
6719  #define CSR_HTP_ADDR_SKL	0x00500034
6720  #define CSR_SSP_BASE		_MMIO(0x8F074)
6721  #define CSR_HTP_SKL		_MMIO(0x8F004)
6722  #define CSR_LAST_WRITE		_MMIO(0x8F034)
6723  #define CSR_LAST_WRITE_VALUE	0xc003b400
6724  /* MMIO address range for CSR program (0x80000 - 0x82FFF) */
6725  #define CSR_MMIO_START_RANGE	0x80000
6726  #define CSR_MMIO_END_RANGE	0x8FFFF
6727  #define SKL_CSR_DC3_DC5_COUNT	_MMIO(0x80030)
6728  #define SKL_CSR_DC5_DC6_COUNT	_MMIO(0x8002C)
6729  #define BXT_CSR_DC3_DC5_COUNT	_MMIO(0x80038)
6730  
6731  /* Display Internal Timeout Register */
6732  #define RM_TIMEOUT		_MMIO(0x42060)
6733  #define  MMIO_TIMEOUT_US(us)	((us) << 0)
6734  
6735  /* interrupts */
6736  #define DE_MASTER_IRQ_CONTROL   (1 << 31)
6737  #define DE_SPRITEB_FLIP_DONE    (1 << 29)
6738  #define DE_SPRITEA_FLIP_DONE    (1 << 28)
6739  #define DE_PLANEB_FLIP_DONE     (1 << 27)
6740  #define DE_PLANEA_FLIP_DONE     (1 << 26)
6741  #define DE_PLANE_FLIP_DONE(plane) (1 << (26 + (plane)))
6742  #define DE_PCU_EVENT            (1 << 25)
6743  #define DE_GTT_FAULT            (1 << 24)
6744  #define DE_POISON               (1 << 23)
6745  #define DE_PERFORM_COUNTER      (1 << 22)
6746  #define DE_PCH_EVENT            (1 << 21)
6747  #define DE_AUX_CHANNEL_A        (1 << 20)
6748  #define DE_DP_A_HOTPLUG         (1 << 19)
6749  #define DE_GSE                  (1 << 18)
6750  #define DE_PIPEB_VBLANK         (1 << 15)
6751  #define DE_PIPEB_EVEN_FIELD     (1 << 14)
6752  #define DE_PIPEB_ODD_FIELD      (1 << 13)
6753  #define DE_PIPEB_LINE_COMPARE   (1 << 12)
6754  #define DE_PIPEB_VSYNC          (1 << 11)
6755  #define DE_PIPEB_CRC_DONE	(1 << 10)
6756  #define DE_PIPEB_FIFO_UNDERRUN  (1 << 8)
6757  #define DE_PIPEA_VBLANK         (1 << 7)
6758  #define DE_PIPE_VBLANK(pipe)    (1 << (7 + 8*(pipe)))
6759  #define DE_PIPEA_EVEN_FIELD     (1 << 6)
6760  #define DE_PIPEA_ODD_FIELD      (1 << 5)
6761  #define DE_PIPEA_LINE_COMPARE   (1 << 4)
6762  #define DE_PIPEA_VSYNC          (1 << 3)
6763  #define DE_PIPEA_CRC_DONE	(1 << 2)
6764  #define DE_PIPE_CRC_DONE(pipe)	(1 << (2 + 8*(pipe)))
6765  #define DE_PIPEA_FIFO_UNDERRUN  (1 << 0)
6766  #define DE_PIPE_FIFO_UNDERRUN(pipe)  (1 << (8*(pipe)))
6767  
6768  /* More Ivybridge lolz */
6769  #define DE_ERR_INT_IVB			(1<<30)
6770  #define DE_GSE_IVB			(1<<29)
6771  #define DE_PCH_EVENT_IVB		(1<<28)
6772  #define DE_DP_A_HOTPLUG_IVB		(1<<27)
6773  #define DE_AUX_CHANNEL_A_IVB		(1<<26)
6774  #define DE_SPRITEC_FLIP_DONE_IVB	(1<<14)
6775  #define DE_PLANEC_FLIP_DONE_IVB		(1<<13)
6776  #define DE_PIPEC_VBLANK_IVB		(1<<10)
6777  #define DE_SPRITEB_FLIP_DONE_IVB	(1<<9)
6778  #define DE_PLANEB_FLIP_DONE_IVB		(1<<8)
6779  #define DE_PIPEB_VBLANK_IVB		(1<<5)
6780  #define DE_SPRITEA_FLIP_DONE_IVB	(1<<4)
6781  #define DE_PLANEA_FLIP_DONE_IVB		(1<<3)
6782  #define DE_PLANE_FLIP_DONE_IVB(plane)	(1<< (3 + 5*(plane)))
6783  #define DE_PIPEA_VBLANK_IVB		(1<<0)
6784  #define DE_PIPE_VBLANK_IVB(pipe)	(1 << ((pipe) * 5))
6785  
6786  #define VLV_MASTER_IER			_MMIO(0x4400c) /* Gunit master IER */
6787  #define   MASTER_INTERRUPT_ENABLE	(1<<31)
6788  
6789  #define DEISR   _MMIO(0x44000)
6790  #define DEIMR   _MMIO(0x44004)
6791  #define DEIIR   _MMIO(0x44008)
6792  #define DEIER   _MMIO(0x4400c)
6793  
6794  #define GTISR   _MMIO(0x44010)
6795  #define GTIMR   _MMIO(0x44014)
6796  #define GTIIR   _MMIO(0x44018)
6797  #define GTIER   _MMIO(0x4401c)
6798  
6799  #define GEN8_MASTER_IRQ			_MMIO(0x44200)
6800  #define  GEN8_MASTER_IRQ_CONTROL	(1<<31)
6801  #define  GEN8_PCU_IRQ			(1<<30)
6802  #define  GEN8_DE_PCH_IRQ		(1<<23)
6803  #define  GEN8_DE_MISC_IRQ		(1<<22)
6804  #define  GEN8_DE_PORT_IRQ		(1<<20)
6805  #define  GEN8_DE_PIPE_C_IRQ		(1<<18)
6806  #define  GEN8_DE_PIPE_B_IRQ		(1<<17)
6807  #define  GEN8_DE_PIPE_A_IRQ		(1<<16)
6808  #define  GEN8_DE_PIPE_IRQ(pipe)		(1<<(16+(pipe)))
6809  #define  GEN8_GT_VECS_IRQ		(1<<6)
6810  #define  GEN8_GT_GUC_IRQ		(1<<5)
6811  #define  GEN8_GT_PM_IRQ			(1<<4)
6812  #define  GEN8_GT_VCS2_IRQ		(1<<3)
6813  #define  GEN8_GT_VCS1_IRQ		(1<<2)
6814  #define  GEN8_GT_BCS_IRQ		(1<<1)
6815  #define  GEN8_GT_RCS_IRQ		(1<<0)
6816  
6817  #define GEN8_GT_ISR(which) _MMIO(0x44300 + (0x10 * (which)))
6818  #define GEN8_GT_IMR(which) _MMIO(0x44304 + (0x10 * (which)))
6819  #define GEN8_GT_IIR(which) _MMIO(0x44308 + (0x10 * (which)))
6820  #define GEN8_GT_IER(which) _MMIO(0x4430c + (0x10 * (which)))
6821  
6822  #define GEN9_GUC_TO_HOST_INT_EVENT	(1<<31)
6823  #define GEN9_GUC_EXEC_ERROR_EVENT	(1<<30)
6824  #define GEN9_GUC_DISPLAY_EVENT		(1<<29)
6825  #define GEN9_GUC_SEMA_SIGNAL_EVENT	(1<<28)
6826  #define GEN9_GUC_IOMMU_MSG_EVENT	(1<<27)
6827  #define GEN9_GUC_DB_RING_EVENT		(1<<26)
6828  #define GEN9_GUC_DMA_DONE_EVENT		(1<<25)
6829  #define GEN9_GUC_FATAL_ERROR_EVENT	(1<<24)
6830  #define GEN9_GUC_NOTIFICATION_EVENT	(1<<23)
6831  
6832  #define GEN8_RCS_IRQ_SHIFT 0
6833  #define GEN8_BCS_IRQ_SHIFT 16
6834  #define GEN8_VCS1_IRQ_SHIFT 0
6835  #define GEN8_VCS2_IRQ_SHIFT 16
6836  #define GEN8_VECS_IRQ_SHIFT 0
6837  #define GEN8_WD_IRQ_SHIFT 16
6838  
6839  #define GEN8_DE_PIPE_ISR(pipe) _MMIO(0x44400 + (0x10 * (pipe)))
6840  #define GEN8_DE_PIPE_IMR(pipe) _MMIO(0x44404 + (0x10 * (pipe)))
6841  #define GEN8_DE_PIPE_IIR(pipe) _MMIO(0x44408 + (0x10 * (pipe)))
6842  #define GEN8_DE_PIPE_IER(pipe) _MMIO(0x4440c + (0x10 * (pipe)))
6843  #define  GEN8_PIPE_FIFO_UNDERRUN	(1 << 31)
6844  #define  GEN8_PIPE_CDCLK_CRC_ERROR	(1 << 29)
6845  #define  GEN8_PIPE_CDCLK_CRC_DONE	(1 << 28)
6846  #define  GEN8_PIPE_CURSOR_FAULT		(1 << 10)
6847  #define  GEN8_PIPE_SPRITE_FAULT		(1 << 9)
6848  #define  GEN8_PIPE_PRIMARY_FAULT	(1 << 8)
6849  #define  GEN8_PIPE_SPRITE_FLIP_DONE	(1 << 5)
6850  #define  GEN8_PIPE_PRIMARY_FLIP_DONE	(1 << 4)
6851  #define  GEN8_PIPE_SCAN_LINE_EVENT	(1 << 2)
6852  #define  GEN8_PIPE_VSYNC		(1 << 1)
6853  #define  GEN8_PIPE_VBLANK		(1 << 0)
6854  #define  GEN9_PIPE_CURSOR_FAULT		(1 << 11)
6855  #define  GEN9_PIPE_PLANE4_FAULT		(1 << 10)
6856  #define  GEN9_PIPE_PLANE3_FAULT		(1 << 9)
6857  #define  GEN9_PIPE_PLANE2_FAULT		(1 << 8)
6858  #define  GEN9_PIPE_PLANE1_FAULT		(1 << 7)
6859  #define  GEN9_PIPE_PLANE4_FLIP_DONE	(1 << 6)
6860  #define  GEN9_PIPE_PLANE3_FLIP_DONE	(1 << 5)
6861  #define  GEN9_PIPE_PLANE2_FLIP_DONE	(1 << 4)
6862  #define  GEN9_PIPE_PLANE1_FLIP_DONE	(1 << 3)
6863  #define  GEN9_PIPE_PLANE_FLIP_DONE(p)	(1 << (3 + (p)))
6864  #define GEN8_DE_PIPE_IRQ_FAULT_ERRORS \
6865  	(GEN8_PIPE_CURSOR_FAULT | \
6866  	 GEN8_PIPE_SPRITE_FAULT | \
6867  	 GEN8_PIPE_PRIMARY_FAULT)
6868  #define GEN9_DE_PIPE_IRQ_FAULT_ERRORS \
6869  	(GEN9_PIPE_CURSOR_FAULT | \
6870  	 GEN9_PIPE_PLANE4_FAULT | \
6871  	 GEN9_PIPE_PLANE3_FAULT | \
6872  	 GEN9_PIPE_PLANE2_FAULT | \
6873  	 GEN9_PIPE_PLANE1_FAULT)
6874  
6875  #define GEN8_DE_PORT_ISR _MMIO(0x44440)
6876  #define GEN8_DE_PORT_IMR _MMIO(0x44444)
6877  #define GEN8_DE_PORT_IIR _MMIO(0x44448)
6878  #define GEN8_DE_PORT_IER _MMIO(0x4444c)
6879  #define  GEN9_AUX_CHANNEL_D		(1 << 27)
6880  #define  GEN9_AUX_CHANNEL_C		(1 << 26)
6881  #define  GEN9_AUX_CHANNEL_B		(1 << 25)
6882  #define  BXT_DE_PORT_HP_DDIC		(1 << 5)
6883  #define  BXT_DE_PORT_HP_DDIB		(1 << 4)
6884  #define  BXT_DE_PORT_HP_DDIA		(1 << 3)
6885  #define  BXT_DE_PORT_HOTPLUG_MASK	(BXT_DE_PORT_HP_DDIA | \
6886  					 BXT_DE_PORT_HP_DDIB | \
6887  					 BXT_DE_PORT_HP_DDIC)
6888  #define  GEN8_PORT_DP_A_HOTPLUG		(1 << 3)
6889  #define  BXT_DE_PORT_GMBUS		(1 << 1)
6890  #define  GEN8_AUX_CHANNEL_A		(1 << 0)
6891  
6892  #define GEN8_DE_MISC_ISR _MMIO(0x44460)
6893  #define GEN8_DE_MISC_IMR _MMIO(0x44464)
6894  #define GEN8_DE_MISC_IIR _MMIO(0x44468)
6895  #define GEN8_DE_MISC_IER _MMIO(0x4446c)
6896  #define  GEN8_DE_MISC_GSE		(1 << 27)
6897  
6898  #define GEN8_PCU_ISR _MMIO(0x444e0)
6899  #define GEN8_PCU_IMR _MMIO(0x444e4)
6900  #define GEN8_PCU_IIR _MMIO(0x444e8)
6901  #define GEN8_PCU_IER _MMIO(0x444ec)
6902  
6903  #define ILK_DISPLAY_CHICKEN2	_MMIO(0x42004)
6904  /* Required on all Ironlake and Sandybridge according to the B-Spec. */
6905  #define  ILK_ELPIN_409_SELECT	(1 << 25)
6906  #define  ILK_DPARB_GATE	(1<<22)
6907  #define  ILK_VSDPFD_FULL	(1<<21)
6908  #define FUSE_STRAP			_MMIO(0x42014)
6909  #define  ILK_INTERNAL_GRAPHICS_DISABLE	(1 << 31)
6910  #define  ILK_INTERNAL_DISPLAY_DISABLE	(1 << 30)
6911  #define  ILK_DISPLAY_DEBUG_DISABLE	(1 << 29)
6912  #define  IVB_PIPE_C_DISABLE		(1 << 28)
6913  #define  ILK_HDCP_DISABLE		(1 << 25)
6914  #define  ILK_eDP_A_DISABLE		(1 << 24)
6915  #define  HSW_CDCLK_LIMIT		(1 << 24)
6916  #define  ILK_DESKTOP			(1 << 23)
6917  
6918  #define ILK_DSPCLK_GATE_D			_MMIO(0x42020)
6919  #define   ILK_VRHUNIT_CLOCK_GATE_DISABLE	(1 << 28)
6920  #define   ILK_DPFCUNIT_CLOCK_GATE_DISABLE	(1 << 9)
6921  #define   ILK_DPFCRUNIT_CLOCK_GATE_DISABLE	(1 << 8)
6922  #define   ILK_DPFDUNIT_CLOCK_GATE_ENABLE	(1 << 7)
6923  #define   ILK_DPARBUNIT_CLOCK_GATE_ENABLE	(1 << 5)
6924  
6925  #define IVB_CHICKEN3	_MMIO(0x4200c)
6926  # define CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE	(1 << 5)
6927  # define CHICKEN3_DGMG_DONE_FIX_DISABLE		(1 << 2)
6928  
6929  #define CHICKEN_PAR1_1		_MMIO(0x42080)
6930  #define  SKL_RC_HASH_OUTSIDE	(1 << 15)
6931  #define  DPA_MASK_VBLANK_SRD	(1 << 15)
6932  #define  FORCE_ARB_IDLE_PLANES	(1 << 14)
6933  #define  SKL_EDP_PSR_FIX_RDWRAP	(1 << 3)
6934  
6935  #define CHICKEN_PAR2_1		_MMIO(0x42090)
6936  #define  KVM_CONFIG_CHANGE_NOTIFICATION_SELECT	(1 << 14)
6937  
6938  #define CHICKEN_MISC_2		_MMIO(0x42084)
6939  #define  CNL_COMP_PWR_DOWN	(1 << 23)
6940  #define  GLK_CL2_PWR_DOWN	(1 << 12)
6941  #define  GLK_CL1_PWR_DOWN	(1 << 11)
6942  #define  GLK_CL0_PWR_DOWN	(1 << 10)
6943  
6944  #define _CHICKEN_PIPESL_1_A	0x420b0
6945  #define _CHICKEN_PIPESL_1_B	0x420b4
6946  #define  HSW_FBCQ_DIS			(1 << 22)
6947  #define  BDW_DPRS_MASK_VBLANK_SRD	(1 << 0)
6948  #define CHICKEN_PIPESL_1(pipe) _MMIO_PIPE(pipe, _CHICKEN_PIPESL_1_A, _CHICKEN_PIPESL_1_B)
6949  
6950  #define CHICKEN_TRANS_A         0x420c0
6951  #define CHICKEN_TRANS_B         0x420c4
6952  #define CHICKEN_TRANS(trans) _MMIO_TRANS(trans, CHICKEN_TRANS_A, CHICKEN_TRANS_B)
6953  #define PSR2_VSC_ENABLE_PROG_HEADER    (1<<12)
6954  #define PSR2_ADD_VERTICAL_LINE_COUNT   (1<<15)
6955  
6956  #define DISP_ARB_CTL	_MMIO(0x45000)
6957  #define  DISP_FBC_MEMORY_WAKE		(1<<31)
6958  #define  DISP_TILE_SURFACE_SWIZZLING	(1<<13)
6959  #define  DISP_FBC_WM_DIS		(1<<15)
6960  #define DISP_ARB_CTL2	_MMIO(0x45004)
6961  #define  DISP_DATA_PARTITION_5_6	(1<<6)
6962  #define DBUF_CTL	_MMIO(0x45008)
6963  #define  DBUF_POWER_REQUEST		(1<<31)
6964  #define  DBUF_POWER_STATE		(1<<30)
6965  #define GEN7_MSG_CTL	_MMIO(0x45010)
6966  #define  WAIT_FOR_PCH_RESET_ACK		(1<<1)
6967  #define  WAIT_FOR_PCH_FLR_ACK		(1<<0)
6968  #define HSW_NDE_RSTWRN_OPT	_MMIO(0x46408)
6969  #define  RESET_PCH_HANDSHAKE_ENABLE	(1<<4)
6970  
6971  #define GEN8_CHICKEN_DCPR_1		_MMIO(0x46430)
6972  #define   SKL_SELECT_ALTERNATE_DC_EXIT	(1<<30)
6973  #define   MASK_WAKEMEM			(1<<13)
6974  
6975  #define SKL_DFSM			_MMIO(0x51000)
6976  #define SKL_DFSM_CDCLK_LIMIT_MASK	(3 << 23)
6977  #define SKL_DFSM_CDCLK_LIMIT_675	(0 << 23)
6978  #define SKL_DFSM_CDCLK_LIMIT_540	(1 << 23)
6979  #define SKL_DFSM_CDCLK_LIMIT_450	(2 << 23)
6980  #define SKL_DFSM_CDCLK_LIMIT_337_5	(3 << 23)
6981  #define SKL_DFSM_PIPE_A_DISABLE		(1 << 30)
6982  #define SKL_DFSM_PIPE_B_DISABLE		(1 << 21)
6983  #define SKL_DFSM_PIPE_C_DISABLE		(1 << 28)
6984  
6985  #define SKL_DSSM			_MMIO(0x51004)
6986  #define CNL_DSSM_CDCLK_PLL_REFCLK_24MHz	(1 << 31)
6987  
6988  #define GEN7_FF_SLICE_CS_CHICKEN1	_MMIO(0x20e0)
6989  #define   GEN9_FFSC_PERCTX_PREEMPT_CTRL	(1<<14)
6990  
6991  #define FF_SLICE_CS_CHICKEN2			_MMIO(0x20e4)
6992  #define  GEN9_TSG_BARRIER_ACK_DISABLE		(1<<8)
6993  #define  GEN9_POOLED_EU_LOAD_BALANCING_FIX_DISABLE  (1<<10)
6994  
6995  #define GEN9_CS_DEBUG_MODE1		_MMIO(0x20ec)
6996  #define GEN9_CTX_PREEMPT_REG		_MMIO(0x2248)
6997  #define GEN8_CS_CHICKEN1		_MMIO(0x2580)
6998  
6999  /* GEN7 chicken */
7000  #define GEN7_COMMON_SLICE_CHICKEN1		_MMIO(0x7010)
7001  # define GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC	((1<<10) | (1<<26))
7002  # define GEN9_RHWO_OPTIMIZATION_DISABLE		(1<<14)
7003  #define COMMON_SLICE_CHICKEN2			_MMIO(0x7014)
7004  # define GEN9_DISABLE_GATHER_AT_SET_SHADER_COMMON_SLICE (1<<12)
7005  # define GEN8_SBE_DISABLE_REPLAY_BUF_OPTIMIZATION (1<<8)
7006  # define GEN8_CSC2_SBE_VUE_CACHE_CONSERVATIVE	(1<<0)
7007  
7008  #define HIZ_CHICKEN					_MMIO(0x7018)
7009  # define CHV_HZ_8X8_MODE_IN_1X				(1<<15)
7010  # define BDW_HIZ_POWER_COMPILER_CLOCK_GATING_DISABLE	(1<<3)
7011  
7012  #define GEN9_SLICE_COMMON_ECO_CHICKEN0		_MMIO(0x7308)
7013  #define  DISABLE_PIXEL_MASK_CAMMING		(1<<14)
7014  
7015  #define GEN9_SLICE_COMMON_ECO_CHICKEN1		_MMIO(0x731c)
7016  
7017  #define GEN7_L3SQCREG1				_MMIO(0xB010)
7018  #define  VLV_B0_WA_L3SQCREG1_VALUE		0x00D30000
7019  
7020  #define GEN8_L3SQCREG1				_MMIO(0xB100)
7021  /*
7022   * Note that on CHV the following has an off-by-one error wrt. to BSpec.
7023   * Using the formula in BSpec leads to a hang, while the formula here works
7024   * fine and matches the formulas for all other platforms. A BSpec change
7025   * request has been filed to clarify this.
7026   */
7027  #define  L3_GENERAL_PRIO_CREDITS(x)		(((x) >> 1) << 19)
7028  #define  L3_HIGH_PRIO_CREDITS(x)		(((x) >> 1) << 14)
7029  #define  L3_PRIO_CREDITS_MASK			((0x1f << 19) | (0x1f << 14))
7030  
7031  #define GEN7_L3CNTLREG1				_MMIO(0xB01C)
7032  #define  GEN7_WA_FOR_GEN7_L3_CONTROL			0x3C47FF8C
7033  #define  GEN7_L3AGDIS				(1<<19)
7034  #define GEN7_L3CNTLREG2				_MMIO(0xB020)
7035  #define GEN7_L3CNTLREG3				_MMIO(0xB024)
7036  
7037  #define GEN7_L3_CHICKEN_MODE_REGISTER		_MMIO(0xB030)
7038  #define  GEN7_WA_L3_CHICKEN_MODE				0x20000000
7039  
7040  #define GEN7_L3SQCREG4				_MMIO(0xb034)
7041  #define  L3SQ_URB_READ_CAM_MATCH_DISABLE	(1<<27)
7042  
7043  #define GEN8_L3SQCREG4				_MMIO(0xb118)
7044  #define  GEN8_LQSC_RO_PERF_DIS			(1<<27)
7045  #define  GEN8_LQSC_FLUSH_COHERENT_LINES		(1<<21)
7046  
7047  /* GEN8 chicken */
7048  #define HDC_CHICKEN0				_MMIO(0x7300)
7049  #define  HDC_FORCE_CSR_NON_COHERENT_OVR_DISABLE	(1<<15)
7050  #define  HDC_FENCE_DEST_SLM_DISABLE		(1<<14)
7051  #define  HDC_DONOT_FETCH_MEM_WHEN_MASKED	(1<<11)
7052  #define  HDC_FORCE_CONTEXT_SAVE_RESTORE_NON_COHERENT	(1<<5)
7053  #define  HDC_FORCE_NON_COHERENT			(1<<4)
7054  #define  HDC_BARRIER_PERFORMANCE_DISABLE	(1<<10)
7055  
7056  #define GEN8_HDC_CHICKEN1			_MMIO(0x7304)
7057  
7058  /* GEN9 chicken */
7059  #define SLICE_ECO_CHICKEN0			_MMIO(0x7308)
7060  #define   PIXEL_MASK_CAMMING_DISABLE		(1 << 14)
7061  
7062  #define GEN9_WM_CHICKEN3			_MMIO(0x5588)
7063  #define   GEN9_FACTOR_IN_CLR_VAL_HIZ		(1 << 9)
7064  
7065  /* WaCatErrorRejectionIssue */
7066  #define GEN7_SQ_CHICKEN_MBCUNIT_CONFIG		_MMIO(0x9030)
7067  #define  GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB	(1<<11)
7068  
7069  #define HSW_SCRATCH1				_MMIO(0xb038)
7070  #define  HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE	(1<<27)
7071  
7072  #define BDW_SCRATCH1					_MMIO(0xb11c)
7073  #define  GEN9_LBS_SLA_RETRY_TIMER_DECREMENT_ENABLE	(1<<2)
7074  
7075  /* PCH */
7076  
7077  /* south display engine interrupt: IBX */
7078  #define SDE_AUDIO_POWER_D	(1 << 27)
7079  #define SDE_AUDIO_POWER_C	(1 << 26)
7080  #define SDE_AUDIO_POWER_B	(1 << 25)
7081  #define SDE_AUDIO_POWER_SHIFT	(25)
7082  #define SDE_AUDIO_POWER_MASK	(7 << SDE_AUDIO_POWER_SHIFT)
7083  #define SDE_GMBUS		(1 << 24)
7084  #define SDE_AUDIO_HDCP_TRANSB	(1 << 23)
7085  #define SDE_AUDIO_HDCP_TRANSA	(1 << 22)
7086  #define SDE_AUDIO_HDCP_MASK	(3 << 22)
7087  #define SDE_AUDIO_TRANSB	(1 << 21)
7088  #define SDE_AUDIO_TRANSA	(1 << 20)
7089  #define SDE_AUDIO_TRANS_MASK	(3 << 20)
7090  #define SDE_POISON		(1 << 19)
7091  /* 18 reserved */
7092  #define SDE_FDI_RXB		(1 << 17)
7093  #define SDE_FDI_RXA		(1 << 16)
7094  #define SDE_FDI_MASK		(3 << 16)
7095  #define SDE_AUXD		(1 << 15)
7096  #define SDE_AUXC		(1 << 14)
7097  #define SDE_AUXB		(1 << 13)
7098  #define SDE_AUX_MASK		(7 << 13)
7099  /* 12 reserved */
7100  #define SDE_CRT_HOTPLUG         (1 << 11)
7101  #define SDE_PORTD_HOTPLUG       (1 << 10)
7102  #define SDE_PORTC_HOTPLUG       (1 << 9)
7103  #define SDE_PORTB_HOTPLUG       (1 << 8)
7104  #define SDE_SDVOB_HOTPLUG       (1 << 6)
7105  #define SDE_HOTPLUG_MASK        (SDE_CRT_HOTPLUG | \
7106  				 SDE_SDVOB_HOTPLUG |	\
7107  				 SDE_PORTB_HOTPLUG |	\
7108  				 SDE_PORTC_HOTPLUG |	\
7109  				 SDE_PORTD_HOTPLUG)
7110  #define SDE_TRANSB_CRC_DONE	(1 << 5)
7111  #define SDE_TRANSB_CRC_ERR	(1 << 4)
7112  #define SDE_TRANSB_FIFO_UNDER	(1 << 3)
7113  #define SDE_TRANSA_CRC_DONE	(1 << 2)
7114  #define SDE_TRANSA_CRC_ERR	(1 << 1)
7115  #define SDE_TRANSA_FIFO_UNDER	(1 << 0)
7116  #define SDE_TRANS_MASK		(0x3f)
7117  
7118  /* south display engine interrupt: CPT/PPT */
7119  #define SDE_AUDIO_POWER_D_CPT	(1 << 31)
7120  #define SDE_AUDIO_POWER_C_CPT	(1 << 30)
7121  #define SDE_AUDIO_POWER_B_CPT	(1 << 29)
7122  #define SDE_AUDIO_POWER_SHIFT_CPT   29
7123  #define SDE_AUDIO_POWER_MASK_CPT    (7 << 29)
7124  #define SDE_AUXD_CPT		(1 << 27)
7125  #define SDE_AUXC_CPT		(1 << 26)
7126  #define SDE_AUXB_CPT		(1 << 25)
7127  #define SDE_AUX_MASK_CPT	(7 << 25)
7128  #define SDE_PORTE_HOTPLUG_SPT	(1 << 25)
7129  #define SDE_PORTA_HOTPLUG_SPT	(1 << 24)
7130  #define SDE_PORTD_HOTPLUG_CPT	(1 << 23)
7131  #define SDE_PORTC_HOTPLUG_CPT	(1 << 22)
7132  #define SDE_PORTB_HOTPLUG_CPT	(1 << 21)
7133  #define SDE_CRT_HOTPLUG_CPT	(1 << 19)
7134  #define SDE_SDVOB_HOTPLUG_CPT	(1 << 18)
7135  #define SDE_HOTPLUG_MASK_CPT	(SDE_CRT_HOTPLUG_CPT |		\
7136  				 SDE_SDVOB_HOTPLUG_CPT |	\
7137  				 SDE_PORTD_HOTPLUG_CPT |	\
7138  				 SDE_PORTC_HOTPLUG_CPT |	\
7139  				 SDE_PORTB_HOTPLUG_CPT)
7140  #define SDE_HOTPLUG_MASK_SPT	(SDE_PORTE_HOTPLUG_SPT |	\
7141  				 SDE_PORTD_HOTPLUG_CPT |	\
7142  				 SDE_PORTC_HOTPLUG_CPT |	\
7143  				 SDE_PORTB_HOTPLUG_CPT |	\
7144  				 SDE_PORTA_HOTPLUG_SPT)
7145  #define SDE_GMBUS_CPT		(1 << 17)
7146  #define SDE_ERROR_CPT		(1 << 16)
7147  #define SDE_AUDIO_CP_REQ_C_CPT	(1 << 10)
7148  #define SDE_AUDIO_CP_CHG_C_CPT	(1 << 9)
7149  #define SDE_FDI_RXC_CPT		(1 << 8)
7150  #define SDE_AUDIO_CP_REQ_B_CPT	(1 << 6)
7151  #define SDE_AUDIO_CP_CHG_B_CPT	(1 << 5)
7152  #define SDE_FDI_RXB_CPT		(1 << 4)
7153  #define SDE_AUDIO_CP_REQ_A_CPT	(1 << 2)
7154  #define SDE_AUDIO_CP_CHG_A_CPT	(1 << 1)
7155  #define SDE_FDI_RXA_CPT		(1 << 0)
7156  #define SDE_AUDIO_CP_REQ_CPT	(SDE_AUDIO_CP_REQ_C_CPT | \
7157  				 SDE_AUDIO_CP_REQ_B_CPT | \
7158  				 SDE_AUDIO_CP_REQ_A_CPT)
7159  #define SDE_AUDIO_CP_CHG_CPT	(SDE_AUDIO_CP_CHG_C_CPT | \
7160  				 SDE_AUDIO_CP_CHG_B_CPT | \
7161  				 SDE_AUDIO_CP_CHG_A_CPT)
7162  #define SDE_FDI_MASK_CPT	(SDE_FDI_RXC_CPT | \
7163  				 SDE_FDI_RXB_CPT | \
7164  				 SDE_FDI_RXA_CPT)
7165  
7166  #define SDEISR  _MMIO(0xc4000)
7167  #define SDEIMR  _MMIO(0xc4004)
7168  #define SDEIIR  _MMIO(0xc4008)
7169  #define SDEIER  _MMIO(0xc400c)
7170  
7171  #define SERR_INT			_MMIO(0xc4040)
7172  #define  SERR_INT_POISON		(1<<31)
7173  #define  SERR_INT_TRANS_C_FIFO_UNDERRUN	(1<<6)
7174  #define  SERR_INT_TRANS_B_FIFO_UNDERRUN	(1<<3)
7175  #define  SERR_INT_TRANS_A_FIFO_UNDERRUN	(1<<0)
7176  #define  SERR_INT_TRANS_FIFO_UNDERRUN(pipe)	(1<<((pipe)*3))
7177  
7178  /* digital port hotplug */
7179  #define PCH_PORT_HOTPLUG		_MMIO(0xc4030)	/* SHOTPLUG_CTL */
7180  #define  PORTA_HOTPLUG_ENABLE		(1 << 28) /* LPT:LP+ & BXT */
7181  #define  BXT_DDIA_HPD_INVERT            (1 << 27)
7182  #define  PORTA_HOTPLUG_STATUS_MASK	(3 << 24) /* SPT+ & BXT */
7183  #define  PORTA_HOTPLUG_NO_DETECT	(0 << 24) /* SPT+ & BXT */
7184  #define  PORTA_HOTPLUG_SHORT_DETECT	(1 << 24) /* SPT+ & BXT */
7185  #define  PORTA_HOTPLUG_LONG_DETECT	(2 << 24) /* SPT+ & BXT */
7186  #define  PORTD_HOTPLUG_ENABLE		(1 << 20)
7187  #define  PORTD_PULSE_DURATION_2ms	(0 << 18) /* pre-LPT */
7188  #define  PORTD_PULSE_DURATION_4_5ms	(1 << 18) /* pre-LPT */
7189  #define  PORTD_PULSE_DURATION_6ms	(2 << 18) /* pre-LPT */
7190  #define  PORTD_PULSE_DURATION_100ms	(3 << 18) /* pre-LPT */
7191  #define  PORTD_PULSE_DURATION_MASK	(3 << 18) /* pre-LPT */
7192  #define  PORTD_HOTPLUG_STATUS_MASK	(3 << 16)
7193  #define  PORTD_HOTPLUG_NO_DETECT	(0 << 16)
7194  #define  PORTD_HOTPLUG_SHORT_DETECT	(1 << 16)
7195  #define  PORTD_HOTPLUG_LONG_DETECT	(2 << 16)
7196  #define  PORTC_HOTPLUG_ENABLE		(1 << 12)
7197  #define  BXT_DDIC_HPD_INVERT            (1 << 11)
7198  #define  PORTC_PULSE_DURATION_2ms	(0 << 10) /* pre-LPT */
7199  #define  PORTC_PULSE_DURATION_4_5ms	(1 << 10) /* pre-LPT */
7200  #define  PORTC_PULSE_DURATION_6ms	(2 << 10) /* pre-LPT */
7201  #define  PORTC_PULSE_DURATION_100ms	(3 << 10) /* pre-LPT */
7202  #define  PORTC_PULSE_DURATION_MASK	(3 << 10) /* pre-LPT */
7203  #define  PORTC_HOTPLUG_STATUS_MASK	(3 << 8)
7204  #define  PORTC_HOTPLUG_NO_DETECT	(0 << 8)
7205  #define  PORTC_HOTPLUG_SHORT_DETECT	(1 << 8)
7206  #define  PORTC_HOTPLUG_LONG_DETECT	(2 << 8)
7207  #define  PORTB_HOTPLUG_ENABLE		(1 << 4)
7208  #define  BXT_DDIB_HPD_INVERT            (1 << 3)
7209  #define  PORTB_PULSE_DURATION_2ms	(0 << 2) /* pre-LPT */
7210  #define  PORTB_PULSE_DURATION_4_5ms	(1 << 2) /* pre-LPT */
7211  #define  PORTB_PULSE_DURATION_6ms	(2 << 2) /* pre-LPT */
7212  #define  PORTB_PULSE_DURATION_100ms	(3 << 2) /* pre-LPT */
7213  #define  PORTB_PULSE_DURATION_MASK	(3 << 2) /* pre-LPT */
7214  #define  PORTB_HOTPLUG_STATUS_MASK	(3 << 0)
7215  #define  PORTB_HOTPLUG_NO_DETECT	(0 << 0)
7216  #define  PORTB_HOTPLUG_SHORT_DETECT	(1 << 0)
7217  #define  PORTB_HOTPLUG_LONG_DETECT	(2 << 0)
7218  #define  BXT_DDI_HPD_INVERT_MASK	(BXT_DDIA_HPD_INVERT | \
7219  					BXT_DDIB_HPD_INVERT | \
7220  					BXT_DDIC_HPD_INVERT)
7221  
7222  #define PCH_PORT_HOTPLUG2		_MMIO(0xc403C)	/* SHOTPLUG_CTL2 SPT+ */
7223  #define  PORTE_HOTPLUG_ENABLE		(1 << 4)
7224  #define  PORTE_HOTPLUG_STATUS_MASK	(3 << 0)
7225  #define  PORTE_HOTPLUG_NO_DETECT	(0 << 0)
7226  #define  PORTE_HOTPLUG_SHORT_DETECT	(1 << 0)
7227  #define  PORTE_HOTPLUG_LONG_DETECT	(2 << 0)
7228  
7229  #define PCH_GPIOA               _MMIO(0xc5010)
7230  #define PCH_GPIOB               _MMIO(0xc5014)
7231  #define PCH_GPIOC               _MMIO(0xc5018)
7232  #define PCH_GPIOD               _MMIO(0xc501c)
7233  #define PCH_GPIOE               _MMIO(0xc5020)
7234  #define PCH_GPIOF               _MMIO(0xc5024)
7235  
7236  #define PCH_GMBUS0		_MMIO(0xc5100)
7237  #define PCH_GMBUS1		_MMIO(0xc5104)
7238  #define PCH_GMBUS2		_MMIO(0xc5108)
7239  #define PCH_GMBUS3		_MMIO(0xc510c)
7240  #define PCH_GMBUS4		_MMIO(0xc5110)
7241  #define PCH_GMBUS5		_MMIO(0xc5120)
7242  
7243  #define _PCH_DPLL_A              0xc6014
7244  #define _PCH_DPLL_B              0xc6018
7245  #define PCH_DPLL(pll) _MMIO(pll == 0 ? _PCH_DPLL_A : _PCH_DPLL_B)
7246  
7247  #define _PCH_FPA0                0xc6040
7248  #define  FP_CB_TUNE		(0x3<<22)
7249  #define _PCH_FPA1                0xc6044
7250  #define _PCH_FPB0                0xc6048
7251  #define _PCH_FPB1                0xc604c
7252  #define PCH_FP0(pll) _MMIO(pll == 0 ? _PCH_FPA0 : _PCH_FPB0)
7253  #define PCH_FP1(pll) _MMIO(pll == 0 ? _PCH_FPA1 : _PCH_FPB1)
7254  
7255  #define PCH_DPLL_TEST           _MMIO(0xc606c)
7256  
7257  #define PCH_DREF_CONTROL        _MMIO(0xC6200)
7258  #define  DREF_CONTROL_MASK      0x7fc3
7259  #define  DREF_CPU_SOURCE_OUTPUT_DISABLE         (0<<13)
7260  #define  DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD      (2<<13)
7261  #define  DREF_CPU_SOURCE_OUTPUT_NONSPREAD       (3<<13)
7262  #define  DREF_CPU_SOURCE_OUTPUT_MASK		(3<<13)
7263  #define  DREF_SSC_SOURCE_DISABLE                (0<<11)
7264  #define  DREF_SSC_SOURCE_ENABLE                 (2<<11)
7265  #define  DREF_SSC_SOURCE_MASK			(3<<11)
7266  #define  DREF_NONSPREAD_SOURCE_DISABLE          (0<<9)
7267  #define  DREF_NONSPREAD_CK505_ENABLE		(1<<9)
7268  #define  DREF_NONSPREAD_SOURCE_ENABLE           (2<<9)
7269  #define  DREF_NONSPREAD_SOURCE_MASK		(3<<9)
7270  #define  DREF_SUPERSPREAD_SOURCE_DISABLE        (0<<7)
7271  #define  DREF_SUPERSPREAD_SOURCE_ENABLE         (2<<7)
7272  #define  DREF_SUPERSPREAD_SOURCE_MASK		(3<<7)
7273  #define  DREF_SSC4_DOWNSPREAD                   (0<<6)
7274  #define  DREF_SSC4_CENTERSPREAD                 (1<<6)
7275  #define  DREF_SSC1_DISABLE                      (0<<1)
7276  #define  DREF_SSC1_ENABLE                       (1<<1)
7277  #define  DREF_SSC4_DISABLE                      (0)
7278  #define  DREF_SSC4_ENABLE                       (1)
7279  
7280  #define PCH_RAWCLK_FREQ         _MMIO(0xc6204)
7281  #define  FDL_TP1_TIMER_SHIFT    12
7282  #define  FDL_TP1_TIMER_MASK     (3<<12)
7283  #define  FDL_TP2_TIMER_SHIFT    10
7284  #define  FDL_TP2_TIMER_MASK     (3<<10)
7285  #define  RAWCLK_FREQ_MASK       0x3ff
7286  #define  CNP_RAWCLK_DIV_MASK	(0x3ff << 16)
7287  #define  CNP_RAWCLK_DIV(div)	((div) << 16)
7288  #define  CNP_RAWCLK_FRAC_MASK	(0xf << 26)
7289  #define  CNP_RAWCLK_FRAC(frac)	((frac) << 26)
7290  
7291  #define PCH_DPLL_TMR_CFG        _MMIO(0xc6208)
7292  
7293  #define PCH_SSC4_PARMS          _MMIO(0xc6210)
7294  #define PCH_SSC4_AUX_PARMS      _MMIO(0xc6214)
7295  
7296  #define PCH_DPLL_SEL		_MMIO(0xc7000)
7297  #define	 TRANS_DPLLB_SEL(pipe)		(1 << ((pipe) * 4))
7298  #define	 TRANS_DPLLA_SEL(pipe)		0
7299  #define  TRANS_DPLL_ENABLE(pipe)	(1 << ((pipe) * 4 + 3))
7300  
7301  /* transcoder */
7302  
7303  #define _PCH_TRANS_HTOTAL_A		0xe0000
7304  #define  TRANS_HTOTAL_SHIFT		16
7305  #define  TRANS_HACTIVE_SHIFT		0
7306  #define _PCH_TRANS_HBLANK_A		0xe0004
7307  #define  TRANS_HBLANK_END_SHIFT		16
7308  #define  TRANS_HBLANK_START_SHIFT	0
7309  #define _PCH_TRANS_HSYNC_A		0xe0008
7310  #define  TRANS_HSYNC_END_SHIFT		16
7311  #define  TRANS_HSYNC_START_SHIFT	0
7312  #define _PCH_TRANS_VTOTAL_A		0xe000c
7313  #define  TRANS_VTOTAL_SHIFT		16
7314  #define  TRANS_VACTIVE_SHIFT		0
7315  #define _PCH_TRANS_VBLANK_A		0xe0010
7316  #define  TRANS_VBLANK_END_SHIFT		16
7317  #define  TRANS_VBLANK_START_SHIFT	0
7318  #define _PCH_TRANS_VSYNC_A		0xe0014
7319  #define  TRANS_VSYNC_END_SHIFT	 	16
7320  #define  TRANS_VSYNC_START_SHIFT	0
7321  #define _PCH_TRANS_VSYNCSHIFT_A		0xe0028
7322  
7323  #define _PCH_TRANSA_DATA_M1	0xe0030
7324  #define _PCH_TRANSA_DATA_N1	0xe0034
7325  #define _PCH_TRANSA_DATA_M2	0xe0038
7326  #define _PCH_TRANSA_DATA_N2	0xe003c
7327  #define _PCH_TRANSA_LINK_M1	0xe0040
7328  #define _PCH_TRANSA_LINK_N1	0xe0044
7329  #define _PCH_TRANSA_LINK_M2	0xe0048
7330  #define _PCH_TRANSA_LINK_N2	0xe004c
7331  
7332  /* Per-transcoder DIP controls (PCH) */
7333  #define _VIDEO_DIP_CTL_A         0xe0200
7334  #define _VIDEO_DIP_DATA_A        0xe0208
7335  #define _VIDEO_DIP_GCP_A         0xe0210
7336  #define  GCP_COLOR_INDICATION		(1 << 2)
7337  #define  GCP_DEFAULT_PHASE_ENABLE	(1 << 1)
7338  #define  GCP_AV_MUTE			(1 << 0)
7339  
7340  #define _VIDEO_DIP_CTL_B         0xe1200
7341  #define _VIDEO_DIP_DATA_B        0xe1208
7342  #define _VIDEO_DIP_GCP_B         0xe1210
7343  
7344  #define TVIDEO_DIP_CTL(pipe) _MMIO_PIPE(pipe, _VIDEO_DIP_CTL_A, _VIDEO_DIP_CTL_B)
7345  #define TVIDEO_DIP_DATA(pipe) _MMIO_PIPE(pipe, _VIDEO_DIP_DATA_A, _VIDEO_DIP_DATA_B)
7346  #define TVIDEO_DIP_GCP(pipe) _MMIO_PIPE(pipe, _VIDEO_DIP_GCP_A, _VIDEO_DIP_GCP_B)
7347  
7348  /* Per-transcoder DIP controls (VLV) */
7349  #define _VLV_VIDEO_DIP_CTL_A		(VLV_DISPLAY_BASE + 0x60200)
7350  #define _VLV_VIDEO_DIP_DATA_A		(VLV_DISPLAY_BASE + 0x60208)
7351  #define _VLV_VIDEO_DIP_GDCP_PAYLOAD_A	(VLV_DISPLAY_BASE + 0x60210)
7352  
7353  #define _VLV_VIDEO_DIP_CTL_B		(VLV_DISPLAY_BASE + 0x61170)
7354  #define _VLV_VIDEO_DIP_DATA_B		(VLV_DISPLAY_BASE + 0x61174)
7355  #define _VLV_VIDEO_DIP_GDCP_PAYLOAD_B	(VLV_DISPLAY_BASE + 0x61178)
7356  
7357  #define _CHV_VIDEO_DIP_CTL_C		(VLV_DISPLAY_BASE + 0x611f0)
7358  #define _CHV_VIDEO_DIP_DATA_C		(VLV_DISPLAY_BASE + 0x611f4)
7359  #define _CHV_VIDEO_DIP_GDCP_PAYLOAD_C	(VLV_DISPLAY_BASE + 0x611f8)
7360  
7361  #define VLV_TVIDEO_DIP_CTL(pipe) \
7362  	_MMIO_PIPE3((pipe), _VLV_VIDEO_DIP_CTL_A, \
7363  	       _VLV_VIDEO_DIP_CTL_B, _CHV_VIDEO_DIP_CTL_C)
7364  #define VLV_TVIDEO_DIP_DATA(pipe) \
7365  	_MMIO_PIPE3((pipe), _VLV_VIDEO_DIP_DATA_A, \
7366  	       _VLV_VIDEO_DIP_DATA_B, _CHV_VIDEO_DIP_DATA_C)
7367  #define VLV_TVIDEO_DIP_GCP(pipe) \
7368  	_MMIO_PIPE3((pipe), _VLV_VIDEO_DIP_GDCP_PAYLOAD_A, \
7369  		_VLV_VIDEO_DIP_GDCP_PAYLOAD_B, _CHV_VIDEO_DIP_GDCP_PAYLOAD_C)
7370  
7371  /* Haswell DIP controls */
7372  
7373  #define _HSW_VIDEO_DIP_CTL_A		0x60200
7374  #define _HSW_VIDEO_DIP_AVI_DATA_A	0x60220
7375  #define _HSW_VIDEO_DIP_VS_DATA_A	0x60260
7376  #define _HSW_VIDEO_DIP_SPD_DATA_A	0x602A0
7377  #define _HSW_VIDEO_DIP_GMP_DATA_A	0x602E0
7378  #define _HSW_VIDEO_DIP_VSC_DATA_A	0x60320
7379  #define _HSW_VIDEO_DIP_AVI_ECC_A	0x60240
7380  #define _HSW_VIDEO_DIP_VS_ECC_A		0x60280
7381  #define _HSW_VIDEO_DIP_SPD_ECC_A	0x602C0
7382  #define _HSW_VIDEO_DIP_GMP_ECC_A	0x60300
7383  #define _HSW_VIDEO_DIP_VSC_ECC_A	0x60344
7384  #define _HSW_VIDEO_DIP_GCP_A		0x60210
7385  
7386  #define _HSW_VIDEO_DIP_CTL_B		0x61200
7387  #define _HSW_VIDEO_DIP_AVI_DATA_B	0x61220
7388  #define _HSW_VIDEO_DIP_VS_DATA_B	0x61260
7389  #define _HSW_VIDEO_DIP_SPD_DATA_B	0x612A0
7390  #define _HSW_VIDEO_DIP_GMP_DATA_B	0x612E0
7391  #define _HSW_VIDEO_DIP_VSC_DATA_B	0x61320
7392  #define _HSW_VIDEO_DIP_BVI_ECC_B	0x61240
7393  #define _HSW_VIDEO_DIP_VS_ECC_B		0x61280
7394  #define _HSW_VIDEO_DIP_SPD_ECC_B	0x612C0
7395  #define _HSW_VIDEO_DIP_GMP_ECC_B	0x61300
7396  #define _HSW_VIDEO_DIP_VSC_ECC_B	0x61344
7397  #define _HSW_VIDEO_DIP_GCP_B		0x61210
7398  
7399  #define HSW_TVIDEO_DIP_CTL(trans)		_MMIO_TRANS2(trans, _HSW_VIDEO_DIP_CTL_A)
7400  #define HSW_TVIDEO_DIP_AVI_DATA(trans, i)	_MMIO_TRANS2(trans, _HSW_VIDEO_DIP_AVI_DATA_A + (i) * 4)
7401  #define HSW_TVIDEO_DIP_VS_DATA(trans, i)	_MMIO_TRANS2(trans, _HSW_VIDEO_DIP_VS_DATA_A + (i) * 4)
7402  #define HSW_TVIDEO_DIP_SPD_DATA(trans, i)	_MMIO_TRANS2(trans, _HSW_VIDEO_DIP_SPD_DATA_A + (i) * 4)
7403  #define HSW_TVIDEO_DIP_GCP(trans)		_MMIO_TRANS2(trans, _HSW_VIDEO_DIP_GCP_A)
7404  #define HSW_TVIDEO_DIP_VSC_DATA(trans, i)	_MMIO_TRANS2(trans, _HSW_VIDEO_DIP_VSC_DATA_A + (i) * 4)
7405  
7406  #define _HSW_STEREO_3D_CTL_A		0x70020
7407  #define   S3D_ENABLE			(1<<31)
7408  #define _HSW_STEREO_3D_CTL_B		0x71020
7409  
7410  #define HSW_STEREO_3D_CTL(trans)	_MMIO_PIPE2(trans, _HSW_STEREO_3D_CTL_A)
7411  
7412  #define _PCH_TRANS_HTOTAL_B          0xe1000
7413  #define _PCH_TRANS_HBLANK_B          0xe1004
7414  #define _PCH_TRANS_HSYNC_B           0xe1008
7415  #define _PCH_TRANS_VTOTAL_B          0xe100c
7416  #define _PCH_TRANS_VBLANK_B          0xe1010
7417  #define _PCH_TRANS_VSYNC_B           0xe1014
7418  #define _PCH_TRANS_VSYNCSHIFT_B 0xe1028
7419  
7420  #define PCH_TRANS_HTOTAL(pipe)		_MMIO_PIPE(pipe, _PCH_TRANS_HTOTAL_A, _PCH_TRANS_HTOTAL_B)
7421  #define PCH_TRANS_HBLANK(pipe)		_MMIO_PIPE(pipe, _PCH_TRANS_HBLANK_A, _PCH_TRANS_HBLANK_B)
7422  #define PCH_TRANS_HSYNC(pipe)		_MMIO_PIPE(pipe, _PCH_TRANS_HSYNC_A, _PCH_TRANS_HSYNC_B)
7423  #define PCH_TRANS_VTOTAL(pipe)		_MMIO_PIPE(pipe, _PCH_TRANS_VTOTAL_A, _PCH_TRANS_VTOTAL_B)
7424  #define PCH_TRANS_VBLANK(pipe)		_MMIO_PIPE(pipe, _PCH_TRANS_VBLANK_A, _PCH_TRANS_VBLANK_B)
7425  #define PCH_TRANS_VSYNC(pipe)		_MMIO_PIPE(pipe, _PCH_TRANS_VSYNC_A, _PCH_TRANS_VSYNC_B)
7426  #define PCH_TRANS_VSYNCSHIFT(pipe)	_MMIO_PIPE(pipe, _PCH_TRANS_VSYNCSHIFT_A, _PCH_TRANS_VSYNCSHIFT_B)
7427  
7428  #define _PCH_TRANSB_DATA_M1	0xe1030
7429  #define _PCH_TRANSB_DATA_N1	0xe1034
7430  #define _PCH_TRANSB_DATA_M2	0xe1038
7431  #define _PCH_TRANSB_DATA_N2	0xe103c
7432  #define _PCH_TRANSB_LINK_M1	0xe1040
7433  #define _PCH_TRANSB_LINK_N1	0xe1044
7434  #define _PCH_TRANSB_LINK_M2	0xe1048
7435  #define _PCH_TRANSB_LINK_N2	0xe104c
7436  
7437  #define PCH_TRANS_DATA_M1(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_DATA_M1, _PCH_TRANSB_DATA_M1)
7438  #define PCH_TRANS_DATA_N1(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_DATA_N1, _PCH_TRANSB_DATA_N1)
7439  #define PCH_TRANS_DATA_M2(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_DATA_M2, _PCH_TRANSB_DATA_M2)
7440  #define PCH_TRANS_DATA_N2(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_DATA_N2, _PCH_TRANSB_DATA_N2)
7441  #define PCH_TRANS_LINK_M1(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_LINK_M1, _PCH_TRANSB_LINK_M1)
7442  #define PCH_TRANS_LINK_N1(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_LINK_N1, _PCH_TRANSB_LINK_N1)
7443  #define PCH_TRANS_LINK_M2(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_LINK_M2, _PCH_TRANSB_LINK_M2)
7444  #define PCH_TRANS_LINK_N2(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSA_LINK_N2, _PCH_TRANSB_LINK_N2)
7445  
7446  #define _PCH_TRANSACONF              0xf0008
7447  #define _PCH_TRANSBCONF              0xf1008
7448  #define PCH_TRANSCONF(pipe)	_MMIO_PIPE(pipe, _PCH_TRANSACONF, _PCH_TRANSBCONF)
7449  #define LPT_TRANSCONF		PCH_TRANSCONF(PIPE_A) /* lpt has only one transcoder */
7450  #define  TRANS_DISABLE          (0<<31)
7451  #define  TRANS_ENABLE           (1<<31)
7452  #define  TRANS_STATE_MASK       (1<<30)
7453  #define  TRANS_STATE_DISABLE    (0<<30)
7454  #define  TRANS_STATE_ENABLE     (1<<30)
7455  #define  TRANS_FSYNC_DELAY_HB1  (0<<27)
7456  #define  TRANS_FSYNC_DELAY_HB2  (1<<27)
7457  #define  TRANS_FSYNC_DELAY_HB3  (2<<27)
7458  #define  TRANS_FSYNC_DELAY_HB4  (3<<27)
7459  #define  TRANS_INTERLACE_MASK   (7<<21)
7460  #define  TRANS_PROGRESSIVE      (0<<21)
7461  #define  TRANS_INTERLACED       (3<<21)
7462  #define  TRANS_LEGACY_INTERLACED_ILK (2<<21)
7463  #define  TRANS_8BPC             (0<<5)
7464  #define  TRANS_10BPC            (1<<5)
7465  #define  TRANS_6BPC             (2<<5)
7466  #define  TRANS_12BPC            (3<<5)
7467  
7468  #define _TRANSA_CHICKEN1	 0xf0060
7469  #define _TRANSB_CHICKEN1	 0xf1060
7470  #define TRANS_CHICKEN1(pipe)	_MMIO_PIPE(pipe, _TRANSA_CHICKEN1, _TRANSB_CHICKEN1)
7471  #define  TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE	(1<<10)
7472  #define  TRANS_CHICKEN1_DP0UNIT_GC_DISABLE	(1<<4)
7473  #define _TRANSA_CHICKEN2	 0xf0064
7474  #define _TRANSB_CHICKEN2	 0xf1064
7475  #define TRANS_CHICKEN2(pipe)	_MMIO_PIPE(pipe, _TRANSA_CHICKEN2, _TRANSB_CHICKEN2)
7476  #define  TRANS_CHICKEN2_TIMING_OVERRIDE			(1<<31)
7477  #define  TRANS_CHICKEN2_FDI_POLARITY_REVERSED		(1<<29)
7478  #define  TRANS_CHICKEN2_FRAME_START_DELAY_MASK		(3<<27)
7479  #define  TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER	(1<<26)
7480  #define  TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH	(1<<25)
7481  
7482  #define SOUTH_CHICKEN1		_MMIO(0xc2000)
7483  #define  FDIA_PHASE_SYNC_SHIFT_OVR	19
7484  #define  FDIA_PHASE_SYNC_SHIFT_EN	18
7485  #define  FDI_PHASE_SYNC_OVR(pipe) (1<<(FDIA_PHASE_SYNC_SHIFT_OVR - ((pipe) * 2)))
7486  #define  FDI_PHASE_SYNC_EN(pipe) (1<<(FDIA_PHASE_SYNC_SHIFT_EN - ((pipe) * 2)))
7487  #define  FDI_BC_BIFURCATION_SELECT	(1 << 12)
7488  #define  SPT_PWM_GRANULARITY		(1<<0)
7489  #define SOUTH_CHICKEN2		_MMIO(0xc2004)
7490  #define  FDI_MPHY_IOSFSB_RESET_STATUS	(1<<13)
7491  #define  FDI_MPHY_IOSFSB_RESET_CTL	(1<<12)
7492  #define  LPT_PWM_GRANULARITY		(1<<5)
7493  #define  DPLS_EDP_PPS_FIX_DIS		(1<<0)
7494  
7495  #define _FDI_RXA_CHICKEN        0xc200c
7496  #define _FDI_RXB_CHICKEN        0xc2010
7497  #define  FDI_RX_PHASE_SYNC_POINTER_OVR	(1<<1)
7498  #define  FDI_RX_PHASE_SYNC_POINTER_EN	(1<<0)
7499  #define FDI_RX_CHICKEN(pipe)	_MMIO_PIPE(pipe, _FDI_RXA_CHICKEN, _FDI_RXB_CHICKEN)
7500  
7501  #define SOUTH_DSPCLK_GATE_D	_MMIO(0xc2020)
7502  #define  PCH_DPLUNIT_CLOCK_GATE_DISABLE (1<<30)
7503  #define  PCH_DPLSUNIT_CLOCK_GATE_DISABLE (1<<29)
7504  #define  PCH_CPUNIT_CLOCK_GATE_DISABLE (1<<14)
7505  #define  PCH_LP_PARTITION_LEVEL_DISABLE  (1<<12)
7506  
7507  /* CPU: FDI_TX */
7508  #define _FDI_TXA_CTL            0x60100
7509  #define _FDI_TXB_CTL            0x61100
7510  #define FDI_TX_CTL(pipe)	_MMIO_PIPE(pipe, _FDI_TXA_CTL, _FDI_TXB_CTL)
7511  #define  FDI_TX_DISABLE         (0<<31)
7512  #define  FDI_TX_ENABLE          (1<<31)
7513  #define  FDI_LINK_TRAIN_PATTERN_1       (0<<28)
7514  #define  FDI_LINK_TRAIN_PATTERN_2       (1<<28)
7515  #define  FDI_LINK_TRAIN_PATTERN_IDLE    (2<<28)
7516  #define  FDI_LINK_TRAIN_NONE            (3<<28)
7517  #define  FDI_LINK_TRAIN_VOLTAGE_0_4V    (0<<25)
7518  #define  FDI_LINK_TRAIN_VOLTAGE_0_6V    (1<<25)
7519  #define  FDI_LINK_TRAIN_VOLTAGE_0_8V    (2<<25)
7520  #define  FDI_LINK_TRAIN_VOLTAGE_1_2V    (3<<25)
7521  #define  FDI_LINK_TRAIN_PRE_EMPHASIS_NONE (0<<22)
7522  #define  FDI_LINK_TRAIN_PRE_EMPHASIS_1_5X (1<<22)
7523  #define  FDI_LINK_TRAIN_PRE_EMPHASIS_2X   (2<<22)
7524  #define  FDI_LINK_TRAIN_PRE_EMPHASIS_3X   (3<<22)
7525  /* ILK always use 400mV 0dB for voltage swing and pre-emphasis level.
7526     SNB has different settings. */
7527  /* SNB A-stepping */
7528  #define  FDI_LINK_TRAIN_400MV_0DB_SNB_A		(0x38<<22)
7529  #define  FDI_LINK_TRAIN_400MV_6DB_SNB_A		(0x02<<22)
7530  #define  FDI_LINK_TRAIN_600MV_3_5DB_SNB_A	(0x01<<22)
7531  #define  FDI_LINK_TRAIN_800MV_0DB_SNB_A		(0x0<<22)
7532  /* SNB B-stepping */
7533  #define  FDI_LINK_TRAIN_400MV_0DB_SNB_B		(0x0<<22)
7534  #define  FDI_LINK_TRAIN_400MV_6DB_SNB_B		(0x3a<<22)
7535  #define  FDI_LINK_TRAIN_600MV_3_5DB_SNB_B	(0x39<<22)
7536  #define  FDI_LINK_TRAIN_800MV_0DB_SNB_B		(0x38<<22)
7537  #define  FDI_LINK_TRAIN_VOL_EMP_MASK		(0x3f<<22)
7538  #define  FDI_DP_PORT_WIDTH_SHIFT		19
7539  #define  FDI_DP_PORT_WIDTH_MASK			(7 << FDI_DP_PORT_WIDTH_SHIFT)
7540  #define  FDI_DP_PORT_WIDTH(width)           (((width) - 1) << FDI_DP_PORT_WIDTH_SHIFT)
7541  #define  FDI_TX_ENHANCE_FRAME_ENABLE    (1<<18)
7542  /* Ironlake: hardwired to 1 */
7543  #define  FDI_TX_PLL_ENABLE              (1<<14)
7544  
7545  /* Ivybridge has different bits for lolz */
7546  #define  FDI_LINK_TRAIN_PATTERN_1_IVB       (0<<8)
7547  #define  FDI_LINK_TRAIN_PATTERN_2_IVB       (1<<8)
7548  #define  FDI_LINK_TRAIN_PATTERN_IDLE_IVB    (2<<8)
7549  #define  FDI_LINK_TRAIN_NONE_IVB            (3<<8)
7550  
7551  /* both Tx and Rx */
7552  #define  FDI_COMPOSITE_SYNC		(1<<11)
7553  #define  FDI_LINK_TRAIN_AUTO		(1<<10)
7554  #define  FDI_SCRAMBLING_ENABLE          (0<<7)
7555  #define  FDI_SCRAMBLING_DISABLE         (1<<7)
7556  
7557  /* FDI_RX, FDI_X is hard-wired to Transcoder_X */
7558  #define _FDI_RXA_CTL             0xf000c
7559  #define _FDI_RXB_CTL             0xf100c
7560  #define FDI_RX_CTL(pipe)	_MMIO_PIPE(pipe, _FDI_RXA_CTL, _FDI_RXB_CTL)
7561  #define  FDI_RX_ENABLE          (1<<31)
7562  /* train, dp width same as FDI_TX */
7563  #define  FDI_FS_ERRC_ENABLE		(1<<27)
7564  #define  FDI_FE_ERRC_ENABLE		(1<<26)
7565  #define  FDI_RX_POLARITY_REVERSED_LPT	(1<<16)
7566  #define  FDI_8BPC                       (0<<16)
7567  #define  FDI_10BPC                      (1<<16)
7568  #define  FDI_6BPC                       (2<<16)
7569  #define  FDI_12BPC                      (3<<16)
7570  #define  FDI_RX_LINK_REVERSAL_OVERRIDE  (1<<15)
7571  #define  FDI_DMI_LINK_REVERSE_MASK      (1<<14)
7572  #define  FDI_RX_PLL_ENABLE              (1<<13)
7573  #define  FDI_FS_ERR_CORRECT_ENABLE      (1<<11)
7574  #define  FDI_FE_ERR_CORRECT_ENABLE      (1<<10)
7575  #define  FDI_FS_ERR_REPORT_ENABLE       (1<<9)
7576  #define  FDI_FE_ERR_REPORT_ENABLE       (1<<8)
7577  #define  FDI_RX_ENHANCE_FRAME_ENABLE    (1<<6)
7578  #define  FDI_PCDCLK	                (1<<4)
7579  /* CPT */
7580  #define  FDI_AUTO_TRAINING			(1<<10)
7581  #define  FDI_LINK_TRAIN_PATTERN_1_CPT		(0<<8)
7582  #define  FDI_LINK_TRAIN_PATTERN_2_CPT		(1<<8)
7583  #define  FDI_LINK_TRAIN_PATTERN_IDLE_CPT	(2<<8)
7584  #define  FDI_LINK_TRAIN_NORMAL_CPT		(3<<8)
7585  #define  FDI_LINK_TRAIN_PATTERN_MASK_CPT	(3<<8)
7586  
7587  #define _FDI_RXA_MISC			0xf0010
7588  #define _FDI_RXB_MISC			0xf1010
7589  #define  FDI_RX_PWRDN_LANE1_MASK	(3<<26)
7590  #define  FDI_RX_PWRDN_LANE1_VAL(x)	((x)<<26)
7591  #define  FDI_RX_PWRDN_LANE0_MASK	(3<<24)
7592  #define  FDI_RX_PWRDN_LANE0_VAL(x)	((x)<<24)
7593  #define  FDI_RX_TP1_TO_TP2_48		(2<<20)
7594  #define  FDI_RX_TP1_TO_TP2_64		(3<<20)
7595  #define  FDI_RX_FDI_DELAY_90		(0x90<<0)
7596  #define FDI_RX_MISC(pipe)	_MMIO_PIPE(pipe, _FDI_RXA_MISC, _FDI_RXB_MISC)
7597  
7598  #define _FDI_RXA_TUSIZE1        0xf0030
7599  #define _FDI_RXA_TUSIZE2        0xf0038
7600  #define _FDI_RXB_TUSIZE1        0xf1030
7601  #define _FDI_RXB_TUSIZE2        0xf1038
7602  #define FDI_RX_TUSIZE1(pipe)	_MMIO_PIPE(pipe, _FDI_RXA_TUSIZE1, _FDI_RXB_TUSIZE1)
7603  #define FDI_RX_TUSIZE2(pipe)	_MMIO_PIPE(pipe, _FDI_RXA_TUSIZE2, _FDI_RXB_TUSIZE2)
7604  
7605  /* FDI_RX interrupt register format */
7606  #define FDI_RX_INTER_LANE_ALIGN         (1<<10)
7607  #define FDI_RX_SYMBOL_LOCK              (1<<9) /* train 2 */
7608  #define FDI_RX_BIT_LOCK                 (1<<8) /* train 1 */
7609  #define FDI_RX_TRAIN_PATTERN_2_FAIL     (1<<7)
7610  #define FDI_RX_FS_CODE_ERR              (1<<6)
7611  #define FDI_RX_FE_CODE_ERR              (1<<5)
7612  #define FDI_RX_SYMBOL_ERR_RATE_ABOVE    (1<<4)
7613  #define FDI_RX_HDCP_LINK_FAIL           (1<<3)
7614  #define FDI_RX_PIXEL_FIFO_OVERFLOW      (1<<2)
7615  #define FDI_RX_CROSS_CLOCK_OVERFLOW     (1<<1)
7616  #define FDI_RX_SYMBOL_QUEUE_OVERFLOW    (1<<0)
7617  
7618  #define _FDI_RXA_IIR            0xf0014
7619  #define _FDI_RXA_IMR            0xf0018
7620  #define _FDI_RXB_IIR            0xf1014
7621  #define _FDI_RXB_IMR            0xf1018
7622  #define FDI_RX_IIR(pipe)	_MMIO_PIPE(pipe, _FDI_RXA_IIR, _FDI_RXB_IIR)
7623  #define FDI_RX_IMR(pipe)	_MMIO_PIPE(pipe, _FDI_RXA_IMR, _FDI_RXB_IMR)
7624  
7625  #define FDI_PLL_CTL_1           _MMIO(0xfe000)
7626  #define FDI_PLL_CTL_2           _MMIO(0xfe004)
7627  
7628  #define PCH_LVDS	_MMIO(0xe1180)
7629  #define  LVDS_DETECTED	(1 << 1)
7630  
7631  #define _PCH_DP_B		0xe4100
7632  #define PCH_DP_B		_MMIO(_PCH_DP_B)
7633  #define _PCH_DPB_AUX_CH_CTL	0xe4110
7634  #define _PCH_DPB_AUX_CH_DATA1	0xe4114
7635  #define _PCH_DPB_AUX_CH_DATA2	0xe4118
7636  #define _PCH_DPB_AUX_CH_DATA3	0xe411c
7637  #define _PCH_DPB_AUX_CH_DATA4	0xe4120
7638  #define _PCH_DPB_AUX_CH_DATA5	0xe4124
7639  
7640  #define _PCH_DP_C		0xe4200
7641  #define PCH_DP_C		_MMIO(_PCH_DP_C)
7642  #define _PCH_DPC_AUX_CH_CTL	0xe4210
7643  #define _PCH_DPC_AUX_CH_DATA1	0xe4214
7644  #define _PCH_DPC_AUX_CH_DATA2	0xe4218
7645  #define _PCH_DPC_AUX_CH_DATA3	0xe421c
7646  #define _PCH_DPC_AUX_CH_DATA4	0xe4220
7647  #define _PCH_DPC_AUX_CH_DATA5	0xe4224
7648  
7649  #define _PCH_DP_D		0xe4300
7650  #define PCH_DP_D		_MMIO(_PCH_DP_D)
7651  #define _PCH_DPD_AUX_CH_CTL	0xe4310
7652  #define _PCH_DPD_AUX_CH_DATA1	0xe4314
7653  #define _PCH_DPD_AUX_CH_DATA2	0xe4318
7654  #define _PCH_DPD_AUX_CH_DATA3	0xe431c
7655  #define _PCH_DPD_AUX_CH_DATA4	0xe4320
7656  #define _PCH_DPD_AUX_CH_DATA5	0xe4324
7657  
7658  #define PCH_DP_AUX_CH_CTL(port)		_MMIO_PORT((port) - PORT_B, _PCH_DPB_AUX_CH_CTL, _PCH_DPC_AUX_CH_CTL)
7659  #define PCH_DP_AUX_CH_DATA(port, i)	_MMIO(_PORT((port) - PORT_B, _PCH_DPB_AUX_CH_DATA1, _PCH_DPC_AUX_CH_DATA1) + (i) * 4) /* 5 registers */
7660  
7661  /* CPT */
7662  #define  PORT_TRANS_A_SEL_CPT	0
7663  #define  PORT_TRANS_B_SEL_CPT	(1<<29)
7664  #define  PORT_TRANS_C_SEL_CPT	(2<<29)
7665  #define  PORT_TRANS_SEL_MASK	(3<<29)
7666  #define  PORT_TRANS_SEL_CPT(pipe)	((pipe) << 29)
7667  #define  PORT_TO_PIPE(val)	(((val) & (1<<30)) >> 30)
7668  #define  PORT_TO_PIPE_CPT(val)	(((val) & PORT_TRANS_SEL_MASK) >> 29)
7669  #define  SDVO_PORT_TO_PIPE_CHV(val)	(((val) & (3<<24)) >> 24)
7670  #define  DP_PORT_TO_PIPE_CHV(val)	(((val) & (3<<16)) >> 16)
7671  
7672  #define _TRANS_DP_CTL_A		0xe0300
7673  #define _TRANS_DP_CTL_B		0xe1300
7674  #define _TRANS_DP_CTL_C		0xe2300
7675  #define TRANS_DP_CTL(pipe)	_MMIO_PIPE(pipe, _TRANS_DP_CTL_A, _TRANS_DP_CTL_B)
7676  #define  TRANS_DP_OUTPUT_ENABLE	(1<<31)
7677  #define  TRANS_DP_PORT_SEL_B	(0<<29)
7678  #define  TRANS_DP_PORT_SEL_C	(1<<29)
7679  #define  TRANS_DP_PORT_SEL_D	(2<<29)
7680  #define  TRANS_DP_PORT_SEL_NONE	(3<<29)
7681  #define  TRANS_DP_PORT_SEL_MASK	(3<<29)
7682  #define  TRANS_DP_PIPE_TO_PORT(val)	((((val) & TRANS_DP_PORT_SEL_MASK) >> 29) + PORT_B)
7683  #define  TRANS_DP_AUDIO_ONLY	(1<<26)
7684  #define  TRANS_DP_ENH_FRAMING	(1<<18)
7685  #define  TRANS_DP_8BPC		(0<<9)
7686  #define  TRANS_DP_10BPC		(1<<9)
7687  #define  TRANS_DP_6BPC		(2<<9)
7688  #define  TRANS_DP_12BPC		(3<<9)
7689  #define  TRANS_DP_BPC_MASK	(3<<9)
7690  #define  TRANS_DP_VSYNC_ACTIVE_HIGH	(1<<4)
7691  #define  TRANS_DP_VSYNC_ACTIVE_LOW	0
7692  #define  TRANS_DP_HSYNC_ACTIVE_HIGH	(1<<3)
7693  #define  TRANS_DP_HSYNC_ACTIVE_LOW	0
7694  #define  TRANS_DP_SYNC_MASK	(3<<3)
7695  
7696  /* SNB eDP training params */
7697  /* SNB A-stepping */
7698  #define  EDP_LINK_TRAIN_400MV_0DB_SNB_A		(0x38<<22)
7699  #define  EDP_LINK_TRAIN_400MV_6DB_SNB_A		(0x02<<22)
7700  #define  EDP_LINK_TRAIN_600MV_3_5DB_SNB_A	(0x01<<22)
7701  #define  EDP_LINK_TRAIN_800MV_0DB_SNB_A		(0x0<<22)
7702  /* SNB B-stepping */
7703  #define  EDP_LINK_TRAIN_400_600MV_0DB_SNB_B	(0x0<<22)
7704  #define  EDP_LINK_TRAIN_400MV_3_5DB_SNB_B	(0x1<<22)
7705  #define  EDP_LINK_TRAIN_400_600MV_6DB_SNB_B	(0x3a<<22)
7706  #define  EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B	(0x39<<22)
7707  #define  EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B	(0x38<<22)
7708  #define  EDP_LINK_TRAIN_VOL_EMP_MASK_SNB	(0x3f<<22)
7709  
7710  /* IVB */
7711  #define EDP_LINK_TRAIN_400MV_0DB_IVB		(0x24 <<22)
7712  #define EDP_LINK_TRAIN_400MV_3_5DB_IVB		(0x2a <<22)
7713  #define EDP_LINK_TRAIN_400MV_6DB_IVB		(0x2f <<22)
7714  #define EDP_LINK_TRAIN_600MV_0DB_IVB		(0x30 <<22)
7715  #define EDP_LINK_TRAIN_600MV_3_5DB_IVB		(0x36 <<22)
7716  #define EDP_LINK_TRAIN_800MV_0DB_IVB		(0x38 <<22)
7717  #define EDP_LINK_TRAIN_800MV_3_5DB_IVB		(0x3e <<22)
7718  
7719  /* legacy values */
7720  #define EDP_LINK_TRAIN_500MV_0DB_IVB		(0x00 <<22)
7721  #define EDP_LINK_TRAIN_1000MV_0DB_IVB		(0x20 <<22)
7722  #define EDP_LINK_TRAIN_500MV_3_5DB_IVB		(0x02 <<22)
7723  #define EDP_LINK_TRAIN_1000MV_3_5DB_IVB		(0x22 <<22)
7724  #define EDP_LINK_TRAIN_1000MV_6DB_IVB		(0x23 <<22)
7725  
7726  #define  EDP_LINK_TRAIN_VOL_EMP_MASK_IVB	(0x3f<<22)
7727  
7728  #define  VLV_PMWGICZ				_MMIO(0x1300a4)
7729  
7730  #define  RC6_LOCATION				_MMIO(0xD40)
7731  #define	   RC6_CTX_IN_DRAM			(1 << 0)
7732  #define  RC6_CTX_BASE				_MMIO(0xD48)
7733  #define    RC6_CTX_BASE_MASK			0xFFFFFFF0
7734  #define  PWRCTX_MAXCNT_RCSUNIT			_MMIO(0x2054)
7735  #define  PWRCTX_MAXCNT_VCSUNIT0			_MMIO(0x12054)
7736  #define  PWRCTX_MAXCNT_BCSUNIT			_MMIO(0x22054)
7737  #define  PWRCTX_MAXCNT_VECSUNIT			_MMIO(0x1A054)
7738  #define  PWRCTX_MAXCNT_VCSUNIT1			_MMIO(0x1C054)
7739  #define    IDLE_TIME_MASK			0xFFFFF
7740  #define  FORCEWAKE				_MMIO(0xA18C)
7741  #define  FORCEWAKE_VLV				_MMIO(0x1300b0)
7742  #define  FORCEWAKE_ACK_VLV			_MMIO(0x1300b4)
7743  #define  FORCEWAKE_MEDIA_VLV			_MMIO(0x1300b8)
7744  #define  FORCEWAKE_ACK_MEDIA_VLV		_MMIO(0x1300bc)
7745  #define  FORCEWAKE_ACK_HSW			_MMIO(0x130044)
7746  #define  FORCEWAKE_ACK				_MMIO(0x130090)
7747  #define  VLV_GTLC_WAKE_CTRL			_MMIO(0x130090)
7748  #define   VLV_GTLC_RENDER_CTX_EXISTS		(1 << 25)
7749  #define   VLV_GTLC_MEDIA_CTX_EXISTS		(1 << 24)
7750  #define   VLV_GTLC_ALLOWWAKEREQ			(1 << 0)
7751  
7752  #define  VLV_GTLC_PW_STATUS			_MMIO(0x130094)
7753  #define   VLV_GTLC_ALLOWWAKEACK			(1 << 0)
7754  #define   VLV_GTLC_ALLOWWAKEERR			(1 << 1)
7755  #define   VLV_GTLC_PW_MEDIA_STATUS_MASK		(1 << 5)
7756  #define   VLV_GTLC_PW_RENDER_STATUS_MASK	(1 << 7)
7757  #define  FORCEWAKE_MT				_MMIO(0xa188) /* multi-threaded */
7758  #define  FORCEWAKE_MEDIA_GEN9			_MMIO(0xa270)
7759  #define  FORCEWAKE_RENDER_GEN9			_MMIO(0xa278)
7760  #define  FORCEWAKE_BLITTER_GEN9			_MMIO(0xa188)
7761  #define  FORCEWAKE_ACK_MEDIA_GEN9		_MMIO(0x0D88)
7762  #define  FORCEWAKE_ACK_RENDER_GEN9		_MMIO(0x0D84)
7763  #define  FORCEWAKE_ACK_BLITTER_GEN9		_MMIO(0x130044)
7764  #define   FORCEWAKE_KERNEL			0x1
7765  #define   FORCEWAKE_USER			0x2
7766  #define  FORCEWAKE_MT_ACK			_MMIO(0x130040)
7767  #define  ECOBUS					_MMIO(0xa180)
7768  #define    FORCEWAKE_MT_ENABLE			(1<<5)
7769  #define  VLV_SPAREG2H				_MMIO(0xA194)
7770  #define  GEN9_PWRGT_DOMAIN_STATUS		_MMIO(0xA2A0)
7771  #define   GEN9_PWRGT_MEDIA_STATUS_MASK		(1 << 0)
7772  #define   GEN9_PWRGT_RENDER_STATUS_MASK		(1 << 1)
7773  
7774  #define  GTFIFODBG				_MMIO(0x120000)
7775  #define    GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV	(0x1f << 20)
7776  #define    GT_FIFO_FREE_ENTRIES_CHV		(0x7f << 13)
7777  #define    GT_FIFO_SBDROPERR			(1<<6)
7778  #define    GT_FIFO_BLOBDROPERR			(1<<5)
7779  #define    GT_FIFO_SB_READ_ABORTERR		(1<<4)
7780  #define    GT_FIFO_DROPERR			(1<<3)
7781  #define    GT_FIFO_OVFERR			(1<<2)
7782  #define    GT_FIFO_IAWRERR			(1<<1)
7783  #define    GT_FIFO_IARDERR			(1<<0)
7784  
7785  #define  GTFIFOCTL				_MMIO(0x120008)
7786  #define    GT_FIFO_FREE_ENTRIES_MASK		0x7f
7787  #define    GT_FIFO_NUM_RESERVED_ENTRIES		20
7788  #define    GT_FIFO_CTL_BLOCK_ALL_POLICY_STALL	(1 << 12)
7789  #define    GT_FIFO_CTL_RC6_POLICY_STALL		(1 << 11)
7790  
7791  #define  HSW_IDICR				_MMIO(0x9008)
7792  #define    IDIHASHMSK(x)			(((x) & 0x3f) << 16)
7793  #define  HSW_EDRAM_CAP				_MMIO(0x120010)
7794  #define    EDRAM_ENABLED			0x1
7795  #define    EDRAM_NUM_BANKS(cap)			(((cap) >> 1) & 0xf)
7796  #define    EDRAM_WAYS_IDX(cap)			(((cap) >> 5) & 0x7)
7797  #define    EDRAM_SETS_IDX(cap)			(((cap) >> 8) & 0x3)
7798  
7799  #define GEN6_UCGCTL1				_MMIO(0x9400)
7800  # define GEN6_GAMUNIT_CLOCK_GATE_DISABLE		(1 << 22)
7801  # define GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE		(1 << 16)
7802  # define GEN6_BLBUNIT_CLOCK_GATE_DISABLE		(1 << 5)
7803  # define GEN6_CSUNIT_CLOCK_GATE_DISABLE			(1 << 7)
7804  
7805  #define GEN6_UCGCTL2				_MMIO(0x9404)
7806  # define GEN6_VFUNIT_CLOCK_GATE_DISABLE			(1 << 31)
7807  # define GEN7_VDSUNIT_CLOCK_GATE_DISABLE		(1 << 30)
7808  # define GEN7_TDLUNIT_CLOCK_GATE_DISABLE		(1 << 22)
7809  # define GEN6_RCZUNIT_CLOCK_GATE_DISABLE		(1 << 13)
7810  # define GEN6_RCPBUNIT_CLOCK_GATE_DISABLE		(1 << 12)
7811  # define GEN6_RCCUNIT_CLOCK_GATE_DISABLE		(1 << 11)
7812  
7813  #define GEN6_UCGCTL3				_MMIO(0x9408)
7814  # define GEN6_OACSUNIT_CLOCK_GATE_DISABLE		(1 << 20)
7815  
7816  #define GEN7_UCGCTL4				_MMIO(0x940c)
7817  #define  GEN7_L3BANK2X_CLOCK_GATE_DISABLE	(1<<25)
7818  #define  GEN8_EU_GAUNIT_CLOCK_GATE_DISABLE	(1<<14)
7819  
7820  #define GEN6_RCGCTL1				_MMIO(0x9410)
7821  #define GEN6_RCGCTL2				_MMIO(0x9414)
7822  #define GEN6_RSTCTL				_MMIO(0x9420)
7823  
7824  #define GEN8_UCGCTL6				_MMIO(0x9430)
7825  #define   GEN8_GAPSUNIT_CLOCK_GATE_DISABLE	(1<<24)
7826  #define   GEN8_SDEUNIT_CLOCK_GATE_DISABLE	(1<<14)
7827  #define   GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ (1<<28)
7828  
7829  #define GEN6_GFXPAUSE				_MMIO(0xA000)
7830  #define GEN6_RPNSWREQ				_MMIO(0xA008)
7831  #define   GEN6_TURBO_DISABLE			(1<<31)
7832  #define   GEN6_FREQUENCY(x)			((x)<<25)
7833  #define   HSW_FREQUENCY(x)			((x)<<24)
7834  #define   GEN9_FREQUENCY(x)			((x)<<23)
7835  #define   GEN6_OFFSET(x)			((x)<<19)
7836  #define   GEN6_AGGRESSIVE_TURBO			(0<<15)
7837  #define GEN6_RC_VIDEO_FREQ			_MMIO(0xA00C)
7838  #define GEN6_RC_CONTROL				_MMIO(0xA090)
7839  #define   GEN6_RC_CTL_RC6pp_ENABLE		(1<<16)
7840  #define   GEN6_RC_CTL_RC6p_ENABLE		(1<<17)
7841  #define   GEN6_RC_CTL_RC6_ENABLE		(1<<18)
7842  #define   GEN6_RC_CTL_RC1e_ENABLE		(1<<20)
7843  #define   GEN6_RC_CTL_RC7_ENABLE		(1<<22)
7844  #define   VLV_RC_CTL_CTX_RST_PARALLEL		(1<<24)
7845  #define   GEN7_RC_CTL_TO_MODE			(1<<28)
7846  #define   GEN6_RC_CTL_EI_MODE(x)		((x)<<27)
7847  #define   GEN6_RC_CTL_HW_ENABLE			(1<<31)
7848  #define GEN6_RP_DOWN_TIMEOUT			_MMIO(0xA010)
7849  #define GEN6_RP_INTERRUPT_LIMITS		_MMIO(0xA014)
7850  #define GEN6_RPSTAT1				_MMIO(0xA01C)
7851  #define   GEN6_CAGF_SHIFT			8
7852  #define   HSW_CAGF_SHIFT			7
7853  #define   GEN9_CAGF_SHIFT			23
7854  #define   GEN6_CAGF_MASK			(0x7f << GEN6_CAGF_SHIFT)
7855  #define   HSW_CAGF_MASK				(0x7f << HSW_CAGF_SHIFT)
7856  #define   GEN9_CAGF_MASK			(0x1ff << GEN9_CAGF_SHIFT)
7857  #define GEN6_RP_CONTROL				_MMIO(0xA024)
7858  #define   GEN6_RP_MEDIA_TURBO			(1<<11)
7859  #define   GEN6_RP_MEDIA_MODE_MASK		(3<<9)
7860  #define   GEN6_RP_MEDIA_HW_TURBO_MODE		(3<<9)
7861  #define   GEN6_RP_MEDIA_HW_NORMAL_MODE		(2<<9)
7862  #define   GEN6_RP_MEDIA_HW_MODE			(1<<9)
7863  #define   GEN6_RP_MEDIA_SW_MODE			(0<<9)
7864  #define   GEN6_RP_MEDIA_IS_GFX			(1<<8)
7865  #define   GEN6_RP_ENABLE			(1<<7)
7866  #define   GEN6_RP_UP_IDLE_MIN			(0x1<<3)
7867  #define   GEN6_RP_UP_BUSY_AVG			(0x2<<3)
7868  #define   GEN6_RP_UP_BUSY_CONT			(0x4<<3)
7869  #define   GEN6_RP_DOWN_IDLE_AVG			(0x2<<0)
7870  #define   GEN6_RP_DOWN_IDLE_CONT		(0x1<<0)
7871  #define GEN6_RP_UP_THRESHOLD			_MMIO(0xA02C)
7872  #define GEN6_RP_DOWN_THRESHOLD			_MMIO(0xA030)
7873  #define GEN6_RP_CUR_UP_EI			_MMIO(0xA050)
7874  #define   GEN6_RP_EI_MASK			0xffffff
7875  #define   GEN6_CURICONT_MASK			GEN6_RP_EI_MASK
7876  #define GEN6_RP_CUR_UP				_MMIO(0xA054)
7877  #define   GEN6_CURBSYTAVG_MASK			GEN6_RP_EI_MASK
7878  #define GEN6_RP_PREV_UP				_MMIO(0xA058)
7879  #define GEN6_RP_CUR_DOWN_EI			_MMIO(0xA05C)
7880  #define   GEN6_CURIAVG_MASK			GEN6_RP_EI_MASK
7881  #define GEN6_RP_CUR_DOWN			_MMIO(0xA060)
7882  #define GEN6_RP_PREV_DOWN			_MMIO(0xA064)
7883  #define GEN6_RP_UP_EI				_MMIO(0xA068)
7884  #define GEN6_RP_DOWN_EI				_MMIO(0xA06C)
7885  #define GEN6_RP_IDLE_HYSTERSIS			_MMIO(0xA070)
7886  #define GEN6_RPDEUHWTC				_MMIO(0xA080)
7887  #define GEN6_RPDEUC				_MMIO(0xA084)
7888  #define GEN6_RPDEUCSW				_MMIO(0xA088)
7889  #define GEN6_RC_STATE				_MMIO(0xA094)
7890  #define   RC_SW_TARGET_STATE_SHIFT		16
7891  #define   RC_SW_TARGET_STATE_MASK		(7 << RC_SW_TARGET_STATE_SHIFT)
7892  #define GEN6_RC1_WAKE_RATE_LIMIT		_MMIO(0xA098)
7893  #define GEN6_RC6_WAKE_RATE_LIMIT		_MMIO(0xA09C)
7894  #define GEN6_RC6pp_WAKE_RATE_LIMIT		_MMIO(0xA0A0)
7895  #define GEN6_RC_EVALUATION_INTERVAL		_MMIO(0xA0A8)
7896  #define GEN6_RC_IDLE_HYSTERSIS			_MMIO(0xA0AC)
7897  #define GEN6_RC_SLEEP				_MMIO(0xA0B0)
7898  #define GEN6_RCUBMABDTMR			_MMIO(0xA0B0)
7899  #define GEN6_RC1e_THRESHOLD			_MMIO(0xA0B4)
7900  #define GEN6_RC6_THRESHOLD			_MMIO(0xA0B8)
7901  #define GEN6_RC6p_THRESHOLD			_MMIO(0xA0BC)
7902  #define VLV_RCEDATA				_MMIO(0xA0BC)
7903  #define GEN6_RC6pp_THRESHOLD			_MMIO(0xA0C0)
7904  #define GEN6_PMINTRMSK				_MMIO(0xA168)
7905  #define   GEN8_PMINTR_DISABLE_REDIRECT_TO_GUC	(1<<31)
7906  #define   ARAT_EXPIRED_INTRMSK			(1<<9)
7907  #define GEN8_MISC_CTRL0				_MMIO(0xA180)
7908  #define VLV_PWRDWNUPCTL				_MMIO(0xA294)
7909  #define GEN9_MEDIA_PG_IDLE_HYSTERESIS		_MMIO(0xA0C4)
7910  #define GEN9_RENDER_PG_IDLE_HYSTERESIS		_MMIO(0xA0C8)
7911  #define GEN9_PG_ENABLE				_MMIO(0xA210)
7912  #define GEN9_RENDER_PG_ENABLE			(1<<0)
7913  #define GEN9_MEDIA_PG_ENABLE			(1<<1)
7914  #define GEN8_PUSHBUS_CONTROL			_MMIO(0xA248)
7915  #define GEN8_PUSHBUS_ENABLE			_MMIO(0xA250)
7916  #define GEN8_PUSHBUS_SHIFT			_MMIO(0xA25C)
7917  
7918  #define VLV_CHICKEN_3				_MMIO(VLV_DISPLAY_BASE + 0x7040C)
7919  #define  PIXEL_OVERLAP_CNT_MASK			(3 << 30)
7920  #define  PIXEL_OVERLAP_CNT_SHIFT		30
7921  
7922  #define GEN6_PMISR				_MMIO(0x44020)
7923  #define GEN6_PMIMR				_MMIO(0x44024) /* rps_lock */
7924  #define GEN6_PMIIR				_MMIO(0x44028)
7925  #define GEN6_PMIER				_MMIO(0x4402C)
7926  #define  GEN6_PM_MBOX_EVENT			(1<<25)
7927  #define  GEN6_PM_THERMAL_EVENT			(1<<24)
7928  #define  GEN6_PM_RP_DOWN_TIMEOUT		(1<<6)
7929  #define  GEN6_PM_RP_UP_THRESHOLD		(1<<5)
7930  #define  GEN6_PM_RP_DOWN_THRESHOLD		(1<<4)
7931  #define  GEN6_PM_RP_UP_EI_EXPIRED		(1<<2)
7932  #define  GEN6_PM_RP_DOWN_EI_EXPIRED		(1<<1)
7933  #define  GEN6_PM_RPS_EVENTS			(GEN6_PM_RP_UP_THRESHOLD | \
7934  						 GEN6_PM_RP_DOWN_THRESHOLD | \
7935  						 GEN6_PM_RP_DOWN_TIMEOUT)
7936  
7937  #define GEN7_GT_SCRATCH(i)			_MMIO(0x4F100 + (i) * 4)
7938  #define GEN7_GT_SCRATCH_REG_NUM			8
7939  
7940  #define VLV_GTLC_SURVIVABILITY_REG              _MMIO(0x130098)
7941  #define VLV_GFX_CLK_STATUS_BIT			(1<<3)
7942  #define VLV_GFX_CLK_FORCE_ON_BIT		(1<<2)
7943  
7944  #define GEN6_GT_GFX_RC6_LOCKED			_MMIO(0x138104)
7945  #define VLV_COUNTER_CONTROL			_MMIO(0x138104)
7946  #define   VLV_COUNT_RANGE_HIGH			(1<<15)
7947  #define   VLV_MEDIA_RC0_COUNT_EN		(1<<5)
7948  #define   VLV_RENDER_RC0_COUNT_EN		(1<<4)
7949  #define   VLV_MEDIA_RC6_COUNT_EN		(1<<1)
7950  #define   VLV_RENDER_RC6_COUNT_EN		(1<<0)
7951  #define GEN6_GT_GFX_RC6				_MMIO(0x138108)
7952  #define VLV_GT_RENDER_RC6			_MMIO(0x138108)
7953  #define VLV_GT_MEDIA_RC6			_MMIO(0x13810C)
7954  
7955  #define GEN6_GT_GFX_RC6p			_MMIO(0x13810C)
7956  #define GEN6_GT_GFX_RC6pp			_MMIO(0x138110)
7957  #define VLV_RENDER_C0_COUNT			_MMIO(0x138118)
7958  #define VLV_MEDIA_C0_COUNT			_MMIO(0x13811C)
7959  
7960  #define GEN6_PCODE_MAILBOX			_MMIO(0x138124)
7961  #define   GEN6_PCODE_READY			(1<<31)
7962  #define   GEN6_PCODE_ERROR_MASK			0xFF
7963  #define     GEN6_PCODE_SUCCESS			0x0
7964  #define     GEN6_PCODE_ILLEGAL_CMD		0x1
7965  #define     GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE 0x2
7966  #define     GEN6_PCODE_TIMEOUT			0x3
7967  #define     GEN6_PCODE_UNIMPLEMENTED_CMD	0xFF
7968  #define     GEN7_PCODE_TIMEOUT			0x2
7969  #define     GEN7_PCODE_ILLEGAL_DATA		0x3
7970  #define     GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE 0x10
7971  #define	  GEN6_PCODE_WRITE_RC6VIDS		0x4
7972  #define	  GEN6_PCODE_READ_RC6VIDS		0x5
7973  #define     GEN6_ENCODE_RC6_VID(mv)		(((mv) - 245) / 5)
7974  #define     GEN6_DECODE_RC6_VID(vids)		(((vids) * 5) + 245)
7975  #define   BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ	0x18
7976  #define   GEN9_PCODE_READ_MEM_LATENCY		0x6
7977  #define     GEN9_MEM_LATENCY_LEVEL_MASK		0xFF
7978  #define     GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT	8
7979  #define     GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT	16
7980  #define     GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT	24
7981  #define   SKL_PCODE_CDCLK_CONTROL		0x7
7982  #define     SKL_CDCLK_PREPARE_FOR_CHANGE	0x3
7983  #define     SKL_CDCLK_READY_FOR_CHANGE		0x1
7984  #define   GEN6_PCODE_WRITE_MIN_FREQ_TABLE	0x8
7985  #define   GEN6_PCODE_READ_MIN_FREQ_TABLE	0x9
7986  #define   GEN6_READ_OC_PARAMS			0xc
7987  #define   GEN6_PCODE_READ_D_COMP		0x10
7988  #define   GEN6_PCODE_WRITE_D_COMP		0x11
7989  #define   HSW_PCODE_DE_WRITE_FREQ_REQ		0x17
7990  #define   DISPLAY_IPS_CONTROL			0x19
7991  #define	  HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL	0x1A
7992  #define   GEN9_PCODE_SAGV_CONTROL		0x21
7993  #define     GEN9_SAGV_DISABLE			0x0
7994  #define     GEN9_SAGV_IS_DISABLED		0x1
7995  #define     GEN9_SAGV_ENABLE			0x3
7996  #define GEN6_PCODE_DATA				_MMIO(0x138128)
7997  #define   GEN6_PCODE_FREQ_IA_RATIO_SHIFT	8
7998  #define   GEN6_PCODE_FREQ_RING_RATIO_SHIFT	16
7999  #define GEN6_PCODE_DATA1			_MMIO(0x13812C)
8000  
8001  #define GEN6_GT_CORE_STATUS		_MMIO(0x138060)
8002  #define   GEN6_CORE_CPD_STATE_MASK	(7<<4)
8003  #define   GEN6_RCn_MASK			7
8004  #define   GEN6_RC0			0
8005  #define   GEN6_RC3			2
8006  #define   GEN6_RC6			3
8007  #define   GEN6_RC7			4
8008  
8009  #define GEN8_GT_SLICE_INFO		_MMIO(0x138064)
8010  #define   GEN8_LSLICESTAT_MASK		0x7
8011  
8012  #define CHV_POWER_SS0_SIG1		_MMIO(0xa720)
8013  #define CHV_POWER_SS1_SIG1		_MMIO(0xa728)
8014  #define   CHV_SS_PG_ENABLE		(1<<1)
8015  #define   CHV_EU08_PG_ENABLE		(1<<9)
8016  #define   CHV_EU19_PG_ENABLE		(1<<17)
8017  #define   CHV_EU210_PG_ENABLE		(1<<25)
8018  
8019  #define CHV_POWER_SS0_SIG2		_MMIO(0xa724)
8020  #define CHV_POWER_SS1_SIG2		_MMIO(0xa72c)
8021  #define   CHV_EU311_PG_ENABLE		(1<<1)
8022  
8023  #define GEN9_SLICE_PGCTL_ACK(slice)	_MMIO(0x804c + (slice)*0x4)
8024  #define   GEN9_PGCTL_SLICE_ACK		(1 << 0)
8025  #define   GEN9_PGCTL_SS_ACK(subslice)	(1 << (2 + (subslice)*2))
8026  
8027  #define GEN9_SS01_EU_PGCTL_ACK(slice)	_MMIO(0x805c + (slice)*0x8)
8028  #define GEN9_SS23_EU_PGCTL_ACK(slice)	_MMIO(0x8060 + (slice)*0x8)
8029  #define   GEN9_PGCTL_SSA_EU08_ACK	(1 << 0)
8030  #define   GEN9_PGCTL_SSA_EU19_ACK	(1 << 2)
8031  #define   GEN9_PGCTL_SSA_EU210_ACK	(1 << 4)
8032  #define   GEN9_PGCTL_SSA_EU311_ACK	(1 << 6)
8033  #define   GEN9_PGCTL_SSB_EU08_ACK	(1 << 8)
8034  #define   GEN9_PGCTL_SSB_EU19_ACK	(1 << 10)
8035  #define   GEN9_PGCTL_SSB_EU210_ACK	(1 << 12)
8036  #define   GEN9_PGCTL_SSB_EU311_ACK	(1 << 14)
8037  
8038  #define GEN7_MISCCPCTL				_MMIO(0x9424)
8039  #define   GEN7_DOP_CLOCK_GATE_ENABLE		(1<<0)
8040  #define   GEN8_DOP_CLOCK_GATE_CFCLK_ENABLE	(1<<2)
8041  #define   GEN8_DOP_CLOCK_GATE_GUC_ENABLE	(1<<4)
8042  #define   GEN8_DOP_CLOCK_GATE_MEDIA_ENABLE     (1<<6)
8043  
8044  #define GEN8_GARBCNTL                   _MMIO(0xB004)
8045  #define   GEN9_GAPS_TSV_CREDIT_DISABLE  (1<<7)
8046  
8047  /* IVYBRIDGE DPF */
8048  #define GEN7_L3CDERRST1(slice)		_MMIO(0xB008 + (slice) * 0x200) /* L3CD Error Status 1 */
8049  #define   GEN7_L3CDERRST1_ROW_MASK	(0x7ff<<14)
8050  #define   GEN7_PARITY_ERROR_VALID	(1<<13)
8051  #define   GEN7_L3CDERRST1_BANK_MASK	(3<<11)
8052  #define   GEN7_L3CDERRST1_SUBBANK_MASK	(7<<8)
8053  #define GEN7_PARITY_ERROR_ROW(reg) \
8054  		((reg & GEN7_L3CDERRST1_ROW_MASK) >> 14)
8055  #define GEN7_PARITY_ERROR_BANK(reg) \
8056  		((reg & GEN7_L3CDERRST1_BANK_MASK) >> 11)
8057  #define GEN7_PARITY_ERROR_SUBBANK(reg) \
8058  		((reg & GEN7_L3CDERRST1_SUBBANK_MASK) >> 8)
8059  #define   GEN7_L3CDERRST1_ENABLE	(1<<7)
8060  
8061  #define GEN7_L3LOG(slice, i)		_MMIO(0xB070 + (slice) * 0x200 + (i) * 4)
8062  #define GEN7_L3LOG_SIZE			0x80
8063  
8064  #define GEN7_HALF_SLICE_CHICKEN1	_MMIO(0xe100) /* IVB GT1 + VLV */
8065  #define GEN7_HALF_SLICE_CHICKEN1_GT2	_MMIO(0xf100)
8066  #define   GEN7_MAX_PS_THREAD_DEP		(8<<12)
8067  #define   GEN7_SINGLE_SUBSCAN_DISPATCH_ENABLE	(1<<10)
8068  #define   GEN7_SBE_SS_CACHE_DISPATCH_PORT_SHARING_DISABLE	(1<<4)
8069  #define   GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE	(1<<3)
8070  
8071  #define GEN9_HALF_SLICE_CHICKEN5	_MMIO(0xe188)
8072  #define   GEN9_DG_MIRROR_FIX_ENABLE	(1<<5)
8073  #define   GEN9_CCS_TLB_PREFETCH_ENABLE	(1<<3)
8074  
8075  #define GEN8_ROW_CHICKEN		_MMIO(0xe4f0)
8076  #define   FLOW_CONTROL_ENABLE		(1<<15)
8077  #define   PARTIAL_INSTRUCTION_SHOOTDOWN_DISABLE	(1<<8)
8078  #define   STALL_DOP_GATING_DISABLE		(1<<5)
8079  
8080  #define GEN7_ROW_CHICKEN2		_MMIO(0xe4f4)
8081  #define GEN7_ROW_CHICKEN2_GT2		_MMIO(0xf4f4)
8082  #define   DOP_CLOCK_GATING_DISABLE	(1<<0)
8083  
8084  #define HSW_ROW_CHICKEN3		_MMIO(0xe49c)
8085  #define  HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE    (1 << 6)
8086  
8087  #define HALF_SLICE_CHICKEN2		_MMIO(0xe180)
8088  #define   GEN8_ST_PO_DISABLE		(1<<13)
8089  
8090  #define HALF_SLICE_CHICKEN3		_MMIO(0xe184)
8091  #define   HSW_SAMPLE_C_PERFORMANCE	(1<<9)
8092  #define   GEN8_CENTROID_PIXEL_OPT_DIS	(1<<8)
8093  #define   GEN9_DISABLE_OCL_OOB_SUPPRESS_LOGIC	(1<<5)
8094  #define   GEN8_SAMPLER_POWER_BYPASS_DIS	(1<<1)
8095  
8096  #define GEN9_HALF_SLICE_CHICKEN7	_MMIO(0xe194)
8097  #define   GEN9_ENABLE_YV12_BUGFIX	(1<<4)
8098  #define   GEN9_ENABLE_GPGPU_PREEMPTION	(1<<2)
8099  
8100  /* Audio */
8101  #define G4X_AUD_VID_DID			_MMIO(dev_priv->info.display_mmio_offset + 0x62020)
8102  #define   INTEL_AUDIO_DEVCL		0x808629FB
8103  #define   INTEL_AUDIO_DEVBLC		0x80862801
8104  #define   INTEL_AUDIO_DEVCTG		0x80862802
8105  
8106  #define G4X_AUD_CNTL_ST			_MMIO(0x620B4)
8107  #define   G4X_ELDV_DEVCL_DEVBLC		(1 << 13)
8108  #define   G4X_ELDV_DEVCTG		(1 << 14)
8109  #define   G4X_ELD_ADDR_MASK		(0xf << 5)
8110  #define   G4X_ELD_ACK			(1 << 4)
8111  #define G4X_HDMIW_HDMIEDID		_MMIO(0x6210C)
8112  
8113  #define _IBX_HDMIW_HDMIEDID_A		0xE2050
8114  #define _IBX_HDMIW_HDMIEDID_B		0xE2150
8115  #define IBX_HDMIW_HDMIEDID(pipe)	_MMIO_PIPE(pipe, _IBX_HDMIW_HDMIEDID_A, \
8116  						  _IBX_HDMIW_HDMIEDID_B)
8117  #define _IBX_AUD_CNTL_ST_A		0xE20B4
8118  #define _IBX_AUD_CNTL_ST_B		0xE21B4
8119  #define IBX_AUD_CNTL_ST(pipe)		_MMIO_PIPE(pipe, _IBX_AUD_CNTL_ST_A, \
8120  						  _IBX_AUD_CNTL_ST_B)
8121  #define   IBX_ELD_BUFFER_SIZE_MASK	(0x1f << 10)
8122  #define   IBX_ELD_ADDRESS_MASK		(0x1f << 5)
8123  #define   IBX_ELD_ACK			(1 << 4)
8124  #define IBX_AUD_CNTL_ST2		_MMIO(0xE20C0)
8125  #define   IBX_CP_READY(port)		((1 << 1) << (((port) - 1) * 4))
8126  #define   IBX_ELD_VALID(port)		((1 << 0) << (((port) - 1) * 4))
8127  
8128  #define _CPT_HDMIW_HDMIEDID_A		0xE5050
8129  #define _CPT_HDMIW_HDMIEDID_B		0xE5150
8130  #define CPT_HDMIW_HDMIEDID(pipe)	_MMIO_PIPE(pipe, _CPT_HDMIW_HDMIEDID_A, _CPT_HDMIW_HDMIEDID_B)
8131  #define _CPT_AUD_CNTL_ST_A		0xE50B4
8132  #define _CPT_AUD_CNTL_ST_B		0xE51B4
8133  #define CPT_AUD_CNTL_ST(pipe)		_MMIO_PIPE(pipe, _CPT_AUD_CNTL_ST_A, _CPT_AUD_CNTL_ST_B)
8134  #define CPT_AUD_CNTRL_ST2		_MMIO(0xE50C0)
8135  
8136  #define _VLV_HDMIW_HDMIEDID_A		(VLV_DISPLAY_BASE + 0x62050)
8137  #define _VLV_HDMIW_HDMIEDID_B		(VLV_DISPLAY_BASE + 0x62150)
8138  #define VLV_HDMIW_HDMIEDID(pipe)	_MMIO_PIPE(pipe, _VLV_HDMIW_HDMIEDID_A, _VLV_HDMIW_HDMIEDID_B)
8139  #define _VLV_AUD_CNTL_ST_A		(VLV_DISPLAY_BASE + 0x620B4)
8140  #define _VLV_AUD_CNTL_ST_B		(VLV_DISPLAY_BASE + 0x621B4)
8141  #define VLV_AUD_CNTL_ST(pipe)		_MMIO_PIPE(pipe, _VLV_AUD_CNTL_ST_A, _VLV_AUD_CNTL_ST_B)
8142  #define VLV_AUD_CNTL_ST2		_MMIO(VLV_DISPLAY_BASE + 0x620C0)
8143  
8144  /* These are the 4 32-bit write offset registers for each stream
8145   * output buffer.  It determines the offset from the
8146   * 3DSTATE_SO_BUFFERs that the next streamed vertex output goes to.
8147   */
8148  #define GEN7_SO_WRITE_OFFSET(n)		_MMIO(0x5280 + (n) * 4)
8149  
8150  #define _IBX_AUD_CONFIG_A		0xe2000
8151  #define _IBX_AUD_CONFIG_B		0xe2100
8152  #define IBX_AUD_CFG(pipe)		_MMIO_PIPE(pipe, _IBX_AUD_CONFIG_A, _IBX_AUD_CONFIG_B)
8153  #define _CPT_AUD_CONFIG_A		0xe5000
8154  #define _CPT_AUD_CONFIG_B		0xe5100
8155  #define CPT_AUD_CFG(pipe)		_MMIO_PIPE(pipe, _CPT_AUD_CONFIG_A, _CPT_AUD_CONFIG_B)
8156  #define _VLV_AUD_CONFIG_A		(VLV_DISPLAY_BASE + 0x62000)
8157  #define _VLV_AUD_CONFIG_B		(VLV_DISPLAY_BASE + 0x62100)
8158  #define VLV_AUD_CFG(pipe)		_MMIO_PIPE(pipe, _VLV_AUD_CONFIG_A, _VLV_AUD_CONFIG_B)
8159  
8160  #define   AUD_CONFIG_N_VALUE_INDEX		(1 << 29)
8161  #define   AUD_CONFIG_N_PROG_ENABLE		(1 << 28)
8162  #define   AUD_CONFIG_UPPER_N_SHIFT		20
8163  #define   AUD_CONFIG_UPPER_N_MASK		(0xff << 20)
8164  #define   AUD_CONFIG_LOWER_N_SHIFT		4
8165  #define   AUD_CONFIG_LOWER_N_MASK		(0xfff << 4)
8166  #define   AUD_CONFIG_N_MASK			(AUD_CONFIG_UPPER_N_MASK | AUD_CONFIG_LOWER_N_MASK)
8167  #define   AUD_CONFIG_N(n) \
8168  	(((((n) >> 12) & 0xff) << AUD_CONFIG_UPPER_N_SHIFT) |	\
8169  	 (((n) & 0xfff) << AUD_CONFIG_LOWER_N_SHIFT))
8170  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_SHIFT	16
8171  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_MASK	(0xf << 16)
8172  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_25175	(0 << 16)
8173  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_25200	(1 << 16)
8174  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_27000	(2 << 16)
8175  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_27027	(3 << 16)
8176  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_54000	(4 << 16)
8177  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_54054	(5 << 16)
8178  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_74176	(6 << 16)
8179  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_74250	(7 << 16)
8180  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_148352	(8 << 16)
8181  #define   AUD_CONFIG_PIXEL_CLOCK_HDMI_148500	(9 << 16)
8182  #define   AUD_CONFIG_DISABLE_NCTS		(1 << 3)
8183  
8184  /* HSW Audio */
8185  #define _HSW_AUD_CONFIG_A		0x65000
8186  #define _HSW_AUD_CONFIG_B		0x65100
8187  #define HSW_AUD_CFG(pipe)		_MMIO_PIPE(pipe, _HSW_AUD_CONFIG_A, _HSW_AUD_CONFIG_B)
8188  
8189  #define _HSW_AUD_MISC_CTRL_A		0x65010
8190  #define _HSW_AUD_MISC_CTRL_B		0x65110
8191  #define HSW_AUD_MISC_CTRL(pipe)		_MMIO_PIPE(pipe, _HSW_AUD_MISC_CTRL_A, _HSW_AUD_MISC_CTRL_B)
8192  
8193  #define _HSW_AUD_M_CTS_ENABLE_A		0x65028
8194  #define _HSW_AUD_M_CTS_ENABLE_B		0x65128
8195  #define HSW_AUD_M_CTS_ENABLE(pipe)	_MMIO_PIPE(pipe, _HSW_AUD_M_CTS_ENABLE_A, _HSW_AUD_M_CTS_ENABLE_B)
8196  #define   AUD_M_CTS_M_VALUE_INDEX	(1 << 21)
8197  #define   AUD_M_CTS_M_PROG_ENABLE	(1 << 20)
8198  #define   AUD_CONFIG_M_MASK		0xfffff
8199  
8200  #define _HSW_AUD_DIP_ELD_CTRL_ST_A	0x650b4
8201  #define _HSW_AUD_DIP_ELD_CTRL_ST_B	0x651b4
8202  #define HSW_AUD_DIP_ELD_CTRL(pipe)	_MMIO_PIPE(pipe, _HSW_AUD_DIP_ELD_CTRL_ST_A, _HSW_AUD_DIP_ELD_CTRL_ST_B)
8203  
8204  /* Audio Digital Converter */
8205  #define _HSW_AUD_DIG_CNVT_1		0x65080
8206  #define _HSW_AUD_DIG_CNVT_2		0x65180
8207  #define AUD_DIG_CNVT(pipe)		_MMIO_PIPE(pipe, _HSW_AUD_DIG_CNVT_1, _HSW_AUD_DIG_CNVT_2)
8208  #define DIP_PORT_SEL_MASK		0x3
8209  
8210  #define _HSW_AUD_EDID_DATA_A		0x65050
8211  #define _HSW_AUD_EDID_DATA_B		0x65150
8212  #define HSW_AUD_EDID_DATA(pipe)		_MMIO_PIPE(pipe, _HSW_AUD_EDID_DATA_A, _HSW_AUD_EDID_DATA_B)
8213  
8214  #define HSW_AUD_PIPE_CONV_CFG		_MMIO(0x6507c)
8215  #define HSW_AUD_PIN_ELD_CP_VLD		_MMIO(0x650c0)
8216  #define   AUDIO_INACTIVE(trans)		((1 << 3) << ((trans) * 4))
8217  #define   AUDIO_OUTPUT_ENABLE(trans)	((1 << 2) << ((trans) * 4))
8218  #define   AUDIO_CP_READY(trans)		((1 << 1) << ((trans) * 4))
8219  #define   AUDIO_ELD_VALID(trans)	((1 << 0) << ((trans) * 4))
8220  
8221  #define HSW_AUD_CHICKENBIT			_MMIO(0x65f10)
8222  #define   SKL_AUD_CODEC_WAKE_SIGNAL		(1 << 15)
8223  
8224  /* HSW Power Wells */
8225  #define _HSW_PWR_WELL_CTL1			0x45400
8226  #define _HSW_PWR_WELL_CTL2			0x45404
8227  #define _HSW_PWR_WELL_CTL3			0x45408
8228  #define _HSW_PWR_WELL_CTL4			0x4540C
8229  
8230  /*
8231   * Each power well control register contains up to 16 (request, status) HW
8232   * flag tuples. The register index and HW flag shift is determined by the
8233   * power well ID (see i915_power_well_id). There are 4 possible sources of
8234   * power well requests each source having its own set of control registers:
8235   * BIOS, DRIVER, KVMR, DEBUG.
8236   */
8237  #define _HSW_PW_REG_IDX(pw)			((pw) >> 4)
8238  #define _HSW_PW_SHIFT(pw)			(((pw) & 0xf) * 2)
8239  /* TODO: Add all PWR_WELL_CTL registers below for new platforms */
8240  #define HSW_PWR_WELL_CTL_BIOS(pw)	_MMIO(_PICK(_HSW_PW_REG_IDX(pw),       \
8241  						    _HSW_PWR_WELL_CTL1))
8242  #define HSW_PWR_WELL_CTL_DRIVER(pw)	_MMIO(_PICK(_HSW_PW_REG_IDX(pw),       \
8243  						    _HSW_PWR_WELL_CTL2))
8244  #define HSW_PWR_WELL_CTL_KVMR		_MMIO(_HSW_PWR_WELL_CTL3)
8245  #define HSW_PWR_WELL_CTL_DEBUG(pw)	_MMIO(_PICK(_HSW_PW_REG_IDX(pw),       \
8246  						    _HSW_PWR_WELL_CTL4))
8247  
8248  #define   HSW_PWR_WELL_CTL_REQ(pw)		(1 << (_HSW_PW_SHIFT(pw) + 1))
8249  #define   HSW_PWR_WELL_CTL_STATE(pw)		(1 << _HSW_PW_SHIFT(pw))
8250  #define HSW_PWR_WELL_CTL5			_MMIO(0x45410)
8251  #define   HSW_PWR_WELL_ENABLE_SINGLE_STEP	(1<<31)
8252  #define   HSW_PWR_WELL_PWR_GATE_OVERRIDE	(1<<20)
8253  #define   HSW_PWR_WELL_FORCE_ON			(1<<19)
8254  #define HSW_PWR_WELL_CTL6			_MMIO(0x45414)
8255  
8256  /* SKL Fuse Status */
8257  enum skl_power_gate {
8258  	SKL_PG0,
8259  	SKL_PG1,
8260  	SKL_PG2,
8261  };
8262  
8263  #define SKL_FUSE_STATUS				_MMIO(0x42000)
8264  #define  SKL_FUSE_DOWNLOAD_STATUS		(1<<31)
8265  /* PG0 (HW control->no power well ID), PG1..PG2 (SKL_DISP_PW1..SKL_DISP_PW2) */
8266  #define  SKL_PW_TO_PG(pw)			((pw) - SKL_DISP_PW_1 + SKL_PG1)
8267  #define  SKL_FUSE_PG_DIST_STATUS(pg)		(1 << (27 - (pg)))
8268  
8269  /* Per-pipe DDI Function Control */
8270  #define _TRANS_DDI_FUNC_CTL_A		0x60400
8271  #define _TRANS_DDI_FUNC_CTL_B		0x61400
8272  #define _TRANS_DDI_FUNC_CTL_C		0x62400
8273  #define _TRANS_DDI_FUNC_CTL_EDP		0x6F400
8274  #define TRANS_DDI_FUNC_CTL(tran) _MMIO_TRANS2(tran, _TRANS_DDI_FUNC_CTL_A)
8275  
8276  #define  TRANS_DDI_FUNC_ENABLE		(1<<31)
8277  /* Those bits are ignored by pipe EDP since it can only connect to DDI A */
8278  #define  TRANS_DDI_PORT_MASK		(7<<28)
8279  #define  TRANS_DDI_PORT_SHIFT		28
8280  #define  TRANS_DDI_SELECT_PORT(x)	((x)<<28)
8281  #define  TRANS_DDI_PORT_NONE		(0<<28)
8282  #define  TRANS_DDI_MODE_SELECT_MASK	(7<<24)
8283  #define  TRANS_DDI_MODE_SELECT_HDMI	(0<<24)
8284  #define  TRANS_DDI_MODE_SELECT_DVI	(1<<24)
8285  #define  TRANS_DDI_MODE_SELECT_DP_SST	(2<<24)
8286  #define  TRANS_DDI_MODE_SELECT_DP_MST	(3<<24)
8287  #define  TRANS_DDI_MODE_SELECT_FDI	(4<<24)
8288  #define  TRANS_DDI_BPC_MASK		(7<<20)
8289  #define  TRANS_DDI_BPC_8		(0<<20)
8290  #define  TRANS_DDI_BPC_10		(1<<20)
8291  #define  TRANS_DDI_BPC_6		(2<<20)
8292  #define  TRANS_DDI_BPC_12		(3<<20)
8293  #define  TRANS_DDI_PVSYNC		(1<<17)
8294  #define  TRANS_DDI_PHSYNC		(1<<16)
8295  #define  TRANS_DDI_EDP_INPUT_MASK	(7<<12)
8296  #define  TRANS_DDI_EDP_INPUT_A_ON	(0<<12)
8297  #define  TRANS_DDI_EDP_INPUT_A_ONOFF	(4<<12)
8298  #define  TRANS_DDI_EDP_INPUT_B_ONOFF	(5<<12)
8299  #define  TRANS_DDI_EDP_INPUT_C_ONOFF	(6<<12)
8300  #define  TRANS_DDI_DP_VC_PAYLOAD_ALLOC	(1<<8)
8301  #define  TRANS_DDI_HDMI_SCRAMBLER_CTS_ENABLE (1<<7)
8302  #define  TRANS_DDI_HDMI_SCRAMBLER_RESET_FREQ (1<<6)
8303  #define  TRANS_DDI_BFI_ENABLE		(1<<4)
8304  #define  TRANS_DDI_HIGH_TMDS_CHAR_RATE	(1<<4)
8305  #define  TRANS_DDI_HDMI_SCRAMBLING	(1<<0)
8306  #define  TRANS_DDI_HDMI_SCRAMBLING_MASK (TRANS_DDI_HDMI_SCRAMBLER_CTS_ENABLE \
8307  					| TRANS_DDI_HDMI_SCRAMBLER_RESET_FREQ \
8308  					| TRANS_DDI_HDMI_SCRAMBLING)
8309  
8310  /* DisplayPort Transport Control */
8311  #define _DP_TP_CTL_A			0x64040
8312  #define _DP_TP_CTL_B			0x64140
8313  #define DP_TP_CTL(port) _MMIO_PORT(port, _DP_TP_CTL_A, _DP_TP_CTL_B)
8314  #define  DP_TP_CTL_ENABLE			(1<<31)
8315  #define  DP_TP_CTL_MODE_SST			(0<<27)
8316  #define  DP_TP_CTL_MODE_MST			(1<<27)
8317  #define  DP_TP_CTL_FORCE_ACT			(1<<25)
8318  #define  DP_TP_CTL_ENHANCED_FRAME_ENABLE	(1<<18)
8319  #define  DP_TP_CTL_FDI_AUTOTRAIN		(1<<15)
8320  #define  DP_TP_CTL_LINK_TRAIN_MASK		(7<<8)
8321  #define  DP_TP_CTL_LINK_TRAIN_PAT1		(0<<8)
8322  #define  DP_TP_CTL_LINK_TRAIN_PAT2		(1<<8)
8323  #define  DP_TP_CTL_LINK_TRAIN_PAT3		(4<<8)
8324  #define  DP_TP_CTL_LINK_TRAIN_IDLE		(2<<8)
8325  #define  DP_TP_CTL_LINK_TRAIN_NORMAL		(3<<8)
8326  #define  DP_TP_CTL_SCRAMBLE_DISABLE		(1<<7)
8327  
8328  /* DisplayPort Transport Status */
8329  #define _DP_TP_STATUS_A			0x64044
8330  #define _DP_TP_STATUS_B			0x64144
8331  #define DP_TP_STATUS(port) _MMIO_PORT(port, _DP_TP_STATUS_A, _DP_TP_STATUS_B)
8332  #define  DP_TP_STATUS_IDLE_DONE			(1<<25)
8333  #define  DP_TP_STATUS_ACT_SENT			(1<<24)
8334  #define  DP_TP_STATUS_MODE_STATUS_MST		(1<<23)
8335  #define  DP_TP_STATUS_AUTOTRAIN_DONE		(1<<12)
8336  #define  DP_TP_STATUS_PAYLOAD_MAPPING_VC2	(3 << 8)
8337  #define  DP_TP_STATUS_PAYLOAD_MAPPING_VC1	(3 << 4)
8338  #define  DP_TP_STATUS_PAYLOAD_MAPPING_VC0	(3 << 0)
8339  
8340  /* DDI Buffer Control */
8341  #define _DDI_BUF_CTL_A				0x64000
8342  #define _DDI_BUF_CTL_B				0x64100
8343  #define DDI_BUF_CTL(port) _MMIO_PORT(port, _DDI_BUF_CTL_A, _DDI_BUF_CTL_B)
8344  #define  DDI_BUF_CTL_ENABLE			(1<<31)
8345  #define  DDI_BUF_TRANS_SELECT(n)	((n) << 24)
8346  #define  DDI_BUF_EMP_MASK			(0xf<<24)
8347  #define  DDI_BUF_PORT_REVERSAL			(1<<16)
8348  #define  DDI_BUF_IS_IDLE			(1<<7)
8349  #define  DDI_A_4_LANES				(1<<4)
8350  #define  DDI_PORT_WIDTH(width)			(((width) - 1) << 1)
8351  #define  DDI_PORT_WIDTH_MASK			(7 << 1)
8352  #define  DDI_PORT_WIDTH_SHIFT			1
8353  #define  DDI_INIT_DISPLAY_DETECTED		(1<<0)
8354  
8355  /* DDI Buffer Translations */
8356  #define _DDI_BUF_TRANS_A		0x64E00
8357  #define _DDI_BUF_TRANS_B		0x64E60
8358  #define DDI_BUF_TRANS_LO(port, i)	_MMIO(_PORT(port, _DDI_BUF_TRANS_A, _DDI_BUF_TRANS_B) + (i) * 8)
8359  #define  DDI_BUF_BALANCE_LEG_ENABLE	(1 << 31)
8360  #define DDI_BUF_TRANS_HI(port, i)	_MMIO(_PORT(port, _DDI_BUF_TRANS_A, _DDI_BUF_TRANS_B) + (i) * 8 + 4)
8361  
8362  /* Sideband Interface (SBI) is programmed indirectly, via
8363   * SBI_ADDR, which contains the register offset; and SBI_DATA,
8364   * which contains the payload */
8365  #define SBI_ADDR			_MMIO(0xC6000)
8366  #define SBI_DATA			_MMIO(0xC6004)
8367  #define SBI_CTL_STAT			_MMIO(0xC6008)
8368  #define  SBI_CTL_DEST_ICLK		(0x0<<16)
8369  #define  SBI_CTL_DEST_MPHY		(0x1<<16)
8370  #define  SBI_CTL_OP_IORD		(0x2<<8)
8371  #define  SBI_CTL_OP_IOWR		(0x3<<8)
8372  #define  SBI_CTL_OP_CRRD		(0x6<<8)
8373  #define  SBI_CTL_OP_CRWR		(0x7<<8)
8374  #define  SBI_RESPONSE_FAIL		(0x1<<1)
8375  #define  SBI_RESPONSE_SUCCESS		(0x0<<1)
8376  #define  SBI_BUSY			(0x1<<0)
8377  #define  SBI_READY			(0x0<<0)
8378  
8379  /* SBI offsets */
8380  #define  SBI_SSCDIVINTPHASE			0x0200
8381  #define  SBI_SSCDIVINTPHASE6			0x0600
8382  #define   SBI_SSCDIVINTPHASE_DIVSEL_SHIFT	1
8383  #define   SBI_SSCDIVINTPHASE_DIVSEL_MASK	(0x7f<<1)
8384  #define   SBI_SSCDIVINTPHASE_DIVSEL(x)		((x)<<1)
8385  #define   SBI_SSCDIVINTPHASE_INCVAL_SHIFT	8
8386  #define   SBI_SSCDIVINTPHASE_INCVAL_MASK	(0x7f<<8)
8387  #define   SBI_SSCDIVINTPHASE_INCVAL(x)		((x)<<8)
8388  #define   SBI_SSCDIVINTPHASE_DIR(x)		((x)<<15)
8389  #define   SBI_SSCDIVINTPHASE_PROPAGATE		(1<<0)
8390  #define  SBI_SSCDITHPHASE			0x0204
8391  #define  SBI_SSCCTL				0x020c
8392  #define  SBI_SSCCTL6				0x060C
8393  #define   SBI_SSCCTL_PATHALT			(1<<3)
8394  #define   SBI_SSCCTL_DISABLE			(1<<0)
8395  #define  SBI_SSCAUXDIV6				0x0610
8396  #define   SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT	4
8397  #define   SBI_SSCAUXDIV_FINALDIV2SEL_MASK	(1<<4)
8398  #define   SBI_SSCAUXDIV_FINALDIV2SEL(x)		((x)<<4)
8399  #define  SBI_DBUFF0				0x2a00
8400  #define  SBI_GEN0				0x1f00
8401  #define   SBI_GEN0_CFG_BUFFENABLE_DISABLE	(1<<0)
8402  
8403  /* LPT PIXCLK_GATE */
8404  #define PIXCLK_GATE			_MMIO(0xC6020)
8405  #define  PIXCLK_GATE_UNGATE		(1<<0)
8406  #define  PIXCLK_GATE_GATE		(0<<0)
8407  
8408  /* SPLL */
8409  #define SPLL_CTL			_MMIO(0x46020)
8410  #define  SPLL_PLL_ENABLE		(1<<31)
8411  #define  SPLL_PLL_SSC			(1<<28)
8412  #define  SPLL_PLL_NON_SSC		(2<<28)
8413  #define  SPLL_PLL_LCPLL			(3<<28)
8414  #define  SPLL_PLL_REF_MASK		(3<<28)
8415  #define  SPLL_PLL_FREQ_810MHz		(0<<26)
8416  #define  SPLL_PLL_FREQ_1350MHz		(1<<26)
8417  #define  SPLL_PLL_FREQ_2700MHz		(2<<26)
8418  #define  SPLL_PLL_FREQ_MASK		(3<<26)
8419  
8420  /* WRPLL */
8421  #define _WRPLL_CTL1			0x46040
8422  #define _WRPLL_CTL2			0x46060
8423  #define WRPLL_CTL(pll)			_MMIO_PIPE(pll, _WRPLL_CTL1, _WRPLL_CTL2)
8424  #define  WRPLL_PLL_ENABLE		(1<<31)
8425  #define  WRPLL_PLL_SSC			(1<<28)
8426  #define  WRPLL_PLL_NON_SSC		(2<<28)
8427  #define  WRPLL_PLL_LCPLL		(3<<28)
8428  #define  WRPLL_PLL_REF_MASK		(3<<28)
8429  /* WRPLL divider programming */
8430  #define  WRPLL_DIVIDER_REFERENCE(x)	((x)<<0)
8431  #define  WRPLL_DIVIDER_REF_MASK		(0xff)
8432  #define  WRPLL_DIVIDER_POST(x)		((x)<<8)
8433  #define  WRPLL_DIVIDER_POST_MASK	(0x3f<<8)
8434  #define  WRPLL_DIVIDER_POST_SHIFT	8
8435  #define  WRPLL_DIVIDER_FEEDBACK(x)	((x)<<16)
8436  #define  WRPLL_DIVIDER_FB_SHIFT		16
8437  #define  WRPLL_DIVIDER_FB_MASK		(0xff<<16)
8438  
8439  /* Port clock selection */
8440  #define _PORT_CLK_SEL_A			0x46100
8441  #define _PORT_CLK_SEL_B			0x46104
8442  #define PORT_CLK_SEL(port) _MMIO_PORT(port, _PORT_CLK_SEL_A, _PORT_CLK_SEL_B)
8443  #define  PORT_CLK_SEL_LCPLL_2700	(0<<29)
8444  #define  PORT_CLK_SEL_LCPLL_1350	(1<<29)
8445  #define  PORT_CLK_SEL_LCPLL_810		(2<<29)
8446  #define  PORT_CLK_SEL_SPLL		(3<<29)
8447  #define  PORT_CLK_SEL_WRPLL(pll)	(((pll)+4)<<29)
8448  #define  PORT_CLK_SEL_WRPLL1		(4<<29)
8449  #define  PORT_CLK_SEL_WRPLL2		(5<<29)
8450  #define  PORT_CLK_SEL_NONE		(7<<29)
8451  #define  PORT_CLK_SEL_MASK		(7<<29)
8452  
8453  /* Transcoder clock selection */
8454  #define _TRANS_CLK_SEL_A		0x46140
8455  #define _TRANS_CLK_SEL_B		0x46144
8456  #define TRANS_CLK_SEL(tran) _MMIO_TRANS(tran, _TRANS_CLK_SEL_A, _TRANS_CLK_SEL_B)
8457  /* For each transcoder, we need to select the corresponding port clock */
8458  #define  TRANS_CLK_SEL_DISABLED		(0x0<<29)
8459  #define  TRANS_CLK_SEL_PORT(x)		(((x)+1)<<29)
8460  
8461  #define CDCLK_FREQ			_MMIO(0x46200)
8462  
8463  #define _TRANSA_MSA_MISC		0x60410
8464  #define _TRANSB_MSA_MISC		0x61410
8465  #define _TRANSC_MSA_MISC		0x62410
8466  #define _TRANS_EDP_MSA_MISC		0x6f410
8467  #define TRANS_MSA_MISC(tran) _MMIO_TRANS2(tran, _TRANSA_MSA_MISC)
8468  
8469  #define  TRANS_MSA_SYNC_CLK		(1<<0)
8470  #define  TRANS_MSA_6_BPC		(0<<5)
8471  #define  TRANS_MSA_8_BPC		(1<<5)
8472  #define  TRANS_MSA_10_BPC		(2<<5)
8473  #define  TRANS_MSA_12_BPC		(3<<5)
8474  #define  TRANS_MSA_16_BPC		(4<<5)
8475  #define  TRANS_MSA_CEA_RANGE		(1<<3)
8476  
8477  /* LCPLL Control */
8478  #define LCPLL_CTL			_MMIO(0x130040)
8479  #define  LCPLL_PLL_DISABLE		(1<<31)
8480  #define  LCPLL_PLL_LOCK			(1<<30)
8481  #define  LCPLL_CLK_FREQ_MASK		(3<<26)
8482  #define  LCPLL_CLK_FREQ_450		(0<<26)
8483  #define  LCPLL_CLK_FREQ_54O_BDW		(1<<26)
8484  #define  LCPLL_CLK_FREQ_337_5_BDW	(2<<26)
8485  #define  LCPLL_CLK_FREQ_675_BDW		(3<<26)
8486  #define  LCPLL_CD_CLOCK_DISABLE		(1<<25)
8487  #define  LCPLL_ROOT_CD_CLOCK_DISABLE	(1<<24)
8488  #define  LCPLL_CD2X_CLOCK_DISABLE	(1<<23)
8489  #define  LCPLL_POWER_DOWN_ALLOW		(1<<22)
8490  #define  LCPLL_CD_SOURCE_FCLK		(1<<21)
8491  #define  LCPLL_CD_SOURCE_FCLK_DONE	(1<<19)
8492  
8493  /*
8494   * SKL Clocks
8495   */
8496  
8497  /* CDCLK_CTL */
8498  #define CDCLK_CTL			_MMIO(0x46000)
8499  #define  CDCLK_FREQ_SEL_MASK		(3<<26)
8500  #define  CDCLK_FREQ_450_432		(0<<26)
8501  #define  CDCLK_FREQ_540			(1<<26)
8502  #define  CDCLK_FREQ_337_308		(2<<26)
8503  #define  CDCLK_FREQ_675_617		(3<<26)
8504  #define  BXT_CDCLK_CD2X_DIV_SEL_MASK	(3<<22)
8505  #define  BXT_CDCLK_CD2X_DIV_SEL_1	(0<<22)
8506  #define  BXT_CDCLK_CD2X_DIV_SEL_1_5	(1<<22)
8507  #define  BXT_CDCLK_CD2X_DIV_SEL_2	(2<<22)
8508  #define  BXT_CDCLK_CD2X_DIV_SEL_4	(3<<22)
8509  #define  BXT_CDCLK_CD2X_PIPE(pipe)	((pipe)<<20)
8510  #define  CDCLK_DIVMUX_CD_OVERRIDE	(1<<19)
8511  #define  BXT_CDCLK_CD2X_PIPE_NONE	BXT_CDCLK_CD2X_PIPE(3)
8512  #define  BXT_CDCLK_SSA_PRECHARGE_ENABLE	(1<<16)
8513  #define  CDCLK_FREQ_DECIMAL_MASK	(0x7ff)
8514  
8515  /* LCPLL_CTL */
8516  #define LCPLL1_CTL		_MMIO(0x46010)
8517  #define LCPLL2_CTL		_MMIO(0x46014)
8518  #define  LCPLL_PLL_ENABLE	(1<<31)
8519  
8520  /* DPLL control1 */
8521  #define DPLL_CTRL1		_MMIO(0x6C058)
8522  #define  DPLL_CTRL1_HDMI_MODE(id)		(1<<((id)*6+5))
8523  #define  DPLL_CTRL1_SSC(id)			(1<<((id)*6+4))
8524  #define  DPLL_CTRL1_LINK_RATE_MASK(id)		(7<<((id)*6+1))
8525  #define  DPLL_CTRL1_LINK_RATE_SHIFT(id)		((id)*6+1)
8526  #define  DPLL_CTRL1_LINK_RATE(linkrate, id)	((linkrate)<<((id)*6+1))
8527  #define  DPLL_CTRL1_OVERRIDE(id)		(1<<((id)*6))
8528  #define  DPLL_CTRL1_LINK_RATE_2700		0
8529  #define  DPLL_CTRL1_LINK_RATE_1350		1
8530  #define  DPLL_CTRL1_LINK_RATE_810		2
8531  #define  DPLL_CTRL1_LINK_RATE_1620		3
8532  #define  DPLL_CTRL1_LINK_RATE_1080		4
8533  #define  DPLL_CTRL1_LINK_RATE_2160		5
8534  
8535  /* DPLL control2 */
8536  #define DPLL_CTRL2				_MMIO(0x6C05C)
8537  #define  DPLL_CTRL2_DDI_CLK_OFF(port)		(1<<((port)+15))
8538  #define  DPLL_CTRL2_DDI_CLK_SEL_MASK(port)	(3<<((port)*3+1))
8539  #define  DPLL_CTRL2_DDI_CLK_SEL_SHIFT(port)    ((port)*3+1)
8540  #define  DPLL_CTRL2_DDI_CLK_SEL(clk, port)	((clk)<<((port)*3+1))
8541  #define  DPLL_CTRL2_DDI_SEL_OVERRIDE(port)     (1<<((port)*3))
8542  
8543  /* DPLL Status */
8544  #define DPLL_STATUS	_MMIO(0x6C060)
8545  #define  DPLL_LOCK(id) (1<<((id)*8))
8546  
8547  /* DPLL cfg */
8548  #define _DPLL1_CFGCR1	0x6C040
8549  #define _DPLL2_CFGCR1	0x6C048
8550  #define _DPLL3_CFGCR1	0x6C050
8551  #define  DPLL_CFGCR1_FREQ_ENABLE	(1<<31)
8552  #define  DPLL_CFGCR1_DCO_FRACTION_MASK	(0x7fff<<9)
8553  #define  DPLL_CFGCR1_DCO_FRACTION(x)	((x)<<9)
8554  #define  DPLL_CFGCR1_DCO_INTEGER_MASK	(0x1ff)
8555  
8556  #define _DPLL1_CFGCR2	0x6C044
8557  #define _DPLL2_CFGCR2	0x6C04C
8558  #define _DPLL3_CFGCR2	0x6C054
8559  #define  DPLL_CFGCR2_QDIV_RATIO_MASK	(0xff<<8)
8560  #define  DPLL_CFGCR2_QDIV_RATIO(x)	((x)<<8)
8561  #define  DPLL_CFGCR2_QDIV_MODE(x)	((x)<<7)
8562  #define  DPLL_CFGCR2_KDIV_MASK		(3<<5)
8563  #define  DPLL_CFGCR2_KDIV(x)		((x)<<5)
8564  #define  DPLL_CFGCR2_KDIV_5 (0<<5)
8565  #define  DPLL_CFGCR2_KDIV_2 (1<<5)
8566  #define  DPLL_CFGCR2_KDIV_3 (2<<5)
8567  #define  DPLL_CFGCR2_KDIV_1 (3<<5)
8568  #define  DPLL_CFGCR2_PDIV_MASK		(7<<2)
8569  #define  DPLL_CFGCR2_PDIV(x)		((x)<<2)
8570  #define  DPLL_CFGCR2_PDIV_1 (0<<2)
8571  #define  DPLL_CFGCR2_PDIV_2 (1<<2)
8572  #define  DPLL_CFGCR2_PDIV_3 (2<<2)
8573  #define  DPLL_CFGCR2_PDIV_7 (4<<2)
8574  #define  DPLL_CFGCR2_CENTRAL_FREQ_MASK	(3)
8575  
8576  #define DPLL_CFGCR1(id)	_MMIO_PIPE((id) - SKL_DPLL1, _DPLL1_CFGCR1, _DPLL2_CFGCR1)
8577  #define DPLL_CFGCR2(id)	_MMIO_PIPE((id) - SKL_DPLL1, _DPLL1_CFGCR2, _DPLL2_CFGCR2)
8578  
8579  /*
8580   * CNL Clocks
8581   */
8582  #define DPCLKA_CFGCR0				_MMIO(0x6C200)
8583  #define  DPCLKA_CFGCR0_DDI_CLK_OFF(port)	(1 << ((port)+10))
8584  #define  DPCLKA_CFGCR0_DDI_CLK_SEL_MASK(port)	(3 << ((port)*2))
8585  #define  DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(port)	((port)*2)
8586  #define  DPCLKA_CFGCR0_DDI_CLK_SEL(pll, port)	((pll) << ((port)*2))
8587  
8588  /* CNL PLL */
8589  #define DPLL0_ENABLE		0x46010
8590  #define DPLL1_ENABLE		0x46014
8591  #define  PLL_ENABLE		(1 << 31)
8592  #define  PLL_LOCK		(1 << 30)
8593  #define  PLL_POWER_ENABLE	(1 << 27)
8594  #define  PLL_POWER_STATE	(1 << 26)
8595  #define CNL_DPLL_ENABLE(pll)	_MMIO_PLL(pll, DPLL0_ENABLE, DPLL1_ENABLE)
8596  
8597  #define _CNL_DPLL0_CFGCR0		0x6C000
8598  #define _CNL_DPLL1_CFGCR0		0x6C080
8599  #define  DPLL_CFGCR0_HDMI_MODE		(1 << 30)
8600  #define  DPLL_CFGCR0_SSC_ENABLE		(1 << 29)
8601  #define  DPLL_CFGCR0_LINK_RATE_MASK	(0xf << 25)
8602  #define  DPLL_CFGCR0_LINK_RATE_2700	(0 << 25)
8603  #define  DPLL_CFGCR0_LINK_RATE_1350	(1 << 25)
8604  #define  DPLL_CFGCR0_LINK_RATE_810	(2 << 25)
8605  #define  DPLL_CFGCR0_LINK_RATE_1620	(3 << 25)
8606  #define  DPLL_CFGCR0_LINK_RATE_1080	(4 << 25)
8607  #define  DPLL_CFGCR0_LINK_RATE_2160	(5 << 25)
8608  #define  DPLL_CFGCR0_LINK_RATE_3240	(6 << 25)
8609  #define  DPLL_CFGCR0_LINK_RATE_4050	(7 << 25)
8610  #define  DPLL_CFGCR0_DCO_FRACTION_MASK	(0x7fff << 10)
8611  #define  DPLL_CFGCR0_DCO_FRAC_SHIFT	(10)
8612  #define  DPLL_CFGCR0_DCO_FRACTION(x)	((x) << 10)
8613  #define  DPLL_CFGCR0_DCO_INTEGER_MASK	(0x3ff)
8614  #define CNL_DPLL_CFGCR0(pll)		_MMIO_PLL(pll, _CNL_DPLL0_CFGCR0, _CNL_DPLL1_CFGCR0)
8615  
8616  #define _CNL_DPLL0_CFGCR1		0x6C004
8617  #define _CNL_DPLL1_CFGCR1		0x6C084
8618  #define  DPLL_CFGCR1_QDIV_RATIO_MASK	(0xff << 10)
8619  #define  DPLL_CFGCR1_QDIV_RATIO_SHIFT	(10)
8620  #define  DPLL_CFGCR1_QDIV_RATIO(x)	((x) << 10)
8621  #define  DPLL_CFGCR1_QDIV_MODE(x)	((x) << 9)
8622  #define  DPLL_CFGCR1_KDIV_MASK		(7 << 6)
8623  #define  DPLL_CFGCR1_KDIV(x)		((x) << 6)
8624  #define  DPLL_CFGCR1_KDIV_1		(1 << 6)
8625  #define  DPLL_CFGCR1_KDIV_2		(2 << 6)
8626  #define  DPLL_CFGCR1_KDIV_4		(4 << 6)
8627  #define  DPLL_CFGCR1_PDIV_MASK		(0xf << 2)
8628  #define  DPLL_CFGCR1_PDIV(x)		((x) << 2)
8629  #define  DPLL_CFGCR1_PDIV_2		(1 << 2)
8630  #define  DPLL_CFGCR1_PDIV_3		(2 << 2)
8631  #define  DPLL_CFGCR1_PDIV_5		(4 << 2)
8632  #define  DPLL_CFGCR1_PDIV_7		(8 << 2)
8633  #define  DPLL_CFGCR1_CENTRAL_FREQ	(3 << 0)
8634  #define CNL_DPLL_CFGCR1(pll)		_MMIO_PLL(pll, _CNL_DPLL0_CFGCR1, _CNL_DPLL1_CFGCR1)
8635  
8636  /* BXT display engine PLL */
8637  #define BXT_DE_PLL_CTL			_MMIO(0x6d000)
8638  #define   BXT_DE_PLL_RATIO(x)		(x)	/* {60,65,100} * 19.2MHz */
8639  #define   BXT_DE_PLL_RATIO_MASK		0xff
8640  
8641  #define BXT_DE_PLL_ENABLE		_MMIO(0x46070)
8642  #define   BXT_DE_PLL_PLL_ENABLE		(1 << 31)
8643  #define   BXT_DE_PLL_LOCK		(1 << 30)
8644  #define   CNL_CDCLK_PLL_RATIO(x)	(x)
8645  #define   CNL_CDCLK_PLL_RATIO_MASK	0xff
8646  
8647  /* GEN9 DC */
8648  #define DC_STATE_EN			_MMIO(0x45504)
8649  #define  DC_STATE_DISABLE		0
8650  #define  DC_STATE_EN_UPTO_DC5		(1<<0)
8651  #define  DC_STATE_EN_DC9		(1<<3)
8652  #define  DC_STATE_EN_UPTO_DC6		(2<<0)
8653  #define  DC_STATE_EN_UPTO_DC5_DC6_MASK   0x3
8654  
8655  #define  DC_STATE_DEBUG                  _MMIO(0x45520)
8656  #define  DC_STATE_DEBUG_MASK_CORES	(1<<0)
8657  #define  DC_STATE_DEBUG_MASK_MEMORY_UP	(1<<1)
8658  
8659  /* Please see hsw_read_dcomp() and hsw_write_dcomp() before using this register,
8660   * since on HSW we can't write to it using I915_WRITE. */
8661  #define D_COMP_HSW			_MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5F0C)
8662  #define D_COMP_BDW			_MMIO(0x138144)
8663  #define  D_COMP_RCOMP_IN_PROGRESS	(1<<9)
8664  #define  D_COMP_COMP_FORCE		(1<<8)
8665  #define  D_COMP_COMP_DISABLE		(1<<0)
8666  
8667  /* Pipe WM_LINETIME - watermark line time */
8668  #define _PIPE_WM_LINETIME_A		0x45270
8669  #define _PIPE_WM_LINETIME_B		0x45274
8670  #define PIPE_WM_LINETIME(pipe) _MMIO_PIPE(pipe, _PIPE_WM_LINETIME_A, _PIPE_WM_LINETIME_B)
8671  #define   PIPE_WM_LINETIME_MASK			(0x1ff)
8672  #define   PIPE_WM_LINETIME_TIME(x)		((x))
8673  #define   PIPE_WM_LINETIME_IPS_LINETIME_MASK	(0x1ff<<16)
8674  #define   PIPE_WM_LINETIME_IPS_LINETIME(x)	((x)<<16)
8675  
8676  /* SFUSE_STRAP */
8677  #define SFUSE_STRAP			_MMIO(0xc2014)
8678  #define  SFUSE_STRAP_FUSE_LOCK		(1<<13)
8679  #define  SFUSE_STRAP_RAW_FREQUENCY	(1<<8)
8680  #define  SFUSE_STRAP_DISPLAY_DISABLED	(1<<7)
8681  #define  SFUSE_STRAP_CRT_DISABLED	(1<<6)
8682  #define  SFUSE_STRAP_DDIB_DETECTED	(1<<2)
8683  #define  SFUSE_STRAP_DDIC_DETECTED	(1<<1)
8684  #define  SFUSE_STRAP_DDID_DETECTED	(1<<0)
8685  
8686  #define WM_MISC				_MMIO(0x45260)
8687  #define  WM_MISC_DATA_PARTITION_5_6	(1 << 0)
8688  
8689  #define WM_DBG				_MMIO(0x45280)
8690  #define  WM_DBG_DISALLOW_MULTIPLE_LP	(1<<0)
8691  #define  WM_DBG_DISALLOW_MAXFIFO	(1<<1)
8692  #define  WM_DBG_DISALLOW_SPRITE		(1<<2)
8693  
8694  /* pipe CSC */
8695  #define _PIPE_A_CSC_COEFF_RY_GY	0x49010
8696  #define _PIPE_A_CSC_COEFF_BY	0x49014
8697  #define _PIPE_A_CSC_COEFF_RU_GU	0x49018
8698  #define _PIPE_A_CSC_COEFF_BU	0x4901c
8699  #define _PIPE_A_CSC_COEFF_RV_GV	0x49020
8700  #define _PIPE_A_CSC_COEFF_BV	0x49024
8701  #define _PIPE_A_CSC_MODE	0x49028
8702  #define   CSC_BLACK_SCREEN_OFFSET	(1 << 2)
8703  #define   CSC_POSITION_BEFORE_GAMMA	(1 << 1)
8704  #define   CSC_MODE_YUV_TO_RGB		(1 << 0)
8705  #define _PIPE_A_CSC_PREOFF_HI	0x49030
8706  #define _PIPE_A_CSC_PREOFF_ME	0x49034
8707  #define _PIPE_A_CSC_PREOFF_LO	0x49038
8708  #define _PIPE_A_CSC_POSTOFF_HI	0x49040
8709  #define _PIPE_A_CSC_POSTOFF_ME	0x49044
8710  #define _PIPE_A_CSC_POSTOFF_LO	0x49048
8711  
8712  #define _PIPE_B_CSC_COEFF_RY_GY	0x49110
8713  #define _PIPE_B_CSC_COEFF_BY	0x49114
8714  #define _PIPE_B_CSC_COEFF_RU_GU	0x49118
8715  #define _PIPE_B_CSC_COEFF_BU	0x4911c
8716  #define _PIPE_B_CSC_COEFF_RV_GV	0x49120
8717  #define _PIPE_B_CSC_COEFF_BV	0x49124
8718  #define _PIPE_B_CSC_MODE	0x49128
8719  #define _PIPE_B_CSC_PREOFF_HI	0x49130
8720  #define _PIPE_B_CSC_PREOFF_ME	0x49134
8721  #define _PIPE_B_CSC_PREOFF_LO	0x49138
8722  #define _PIPE_B_CSC_POSTOFF_HI	0x49140
8723  #define _PIPE_B_CSC_POSTOFF_ME	0x49144
8724  #define _PIPE_B_CSC_POSTOFF_LO	0x49148
8725  
8726  #define PIPE_CSC_COEFF_RY_GY(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_COEFF_RY_GY, _PIPE_B_CSC_COEFF_RY_GY)
8727  #define PIPE_CSC_COEFF_BY(pipe)		_MMIO_PIPE(pipe, _PIPE_A_CSC_COEFF_BY, _PIPE_B_CSC_COEFF_BY)
8728  #define PIPE_CSC_COEFF_RU_GU(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_COEFF_RU_GU, _PIPE_B_CSC_COEFF_RU_GU)
8729  #define PIPE_CSC_COEFF_BU(pipe)		_MMIO_PIPE(pipe, _PIPE_A_CSC_COEFF_BU, _PIPE_B_CSC_COEFF_BU)
8730  #define PIPE_CSC_COEFF_RV_GV(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_COEFF_RV_GV, _PIPE_B_CSC_COEFF_RV_GV)
8731  #define PIPE_CSC_COEFF_BV(pipe)		_MMIO_PIPE(pipe, _PIPE_A_CSC_COEFF_BV, _PIPE_B_CSC_COEFF_BV)
8732  #define PIPE_CSC_MODE(pipe)		_MMIO_PIPE(pipe, _PIPE_A_CSC_MODE, _PIPE_B_CSC_MODE)
8733  #define PIPE_CSC_PREOFF_HI(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_PREOFF_HI, _PIPE_B_CSC_PREOFF_HI)
8734  #define PIPE_CSC_PREOFF_ME(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_PREOFF_ME, _PIPE_B_CSC_PREOFF_ME)
8735  #define PIPE_CSC_PREOFF_LO(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_PREOFF_LO, _PIPE_B_CSC_PREOFF_LO)
8736  #define PIPE_CSC_POSTOFF_HI(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_POSTOFF_HI, _PIPE_B_CSC_POSTOFF_HI)
8737  #define PIPE_CSC_POSTOFF_ME(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_POSTOFF_ME, _PIPE_B_CSC_POSTOFF_ME)
8738  #define PIPE_CSC_POSTOFF_LO(pipe)	_MMIO_PIPE(pipe, _PIPE_A_CSC_POSTOFF_LO, _PIPE_B_CSC_POSTOFF_LO)
8739  
8740  /* pipe degamma/gamma LUTs on IVB+ */
8741  #define _PAL_PREC_INDEX_A	0x4A400
8742  #define _PAL_PREC_INDEX_B	0x4AC00
8743  #define _PAL_PREC_INDEX_C	0x4B400
8744  #define   PAL_PREC_10_12_BIT		(0 << 31)
8745  #define   PAL_PREC_SPLIT_MODE		(1 << 31)
8746  #define   PAL_PREC_AUTO_INCREMENT	(1 << 15)
8747  #define   PAL_PREC_INDEX_VALUE_MASK	(0x3ff << 0)
8748  #define _PAL_PREC_DATA_A	0x4A404
8749  #define _PAL_PREC_DATA_B	0x4AC04
8750  #define _PAL_PREC_DATA_C	0x4B404
8751  #define _PAL_PREC_GC_MAX_A	0x4A410
8752  #define _PAL_PREC_GC_MAX_B	0x4AC10
8753  #define _PAL_PREC_GC_MAX_C	0x4B410
8754  #define _PAL_PREC_EXT_GC_MAX_A	0x4A420
8755  #define _PAL_PREC_EXT_GC_MAX_B	0x4AC20
8756  #define _PAL_PREC_EXT_GC_MAX_C	0x4B420
8757  #define _PAL_PREC_EXT2_GC_MAX_A	0x4A430
8758  #define _PAL_PREC_EXT2_GC_MAX_B	0x4AC30
8759  #define _PAL_PREC_EXT2_GC_MAX_C	0x4B430
8760  
8761  #define PREC_PAL_INDEX(pipe)		_MMIO_PIPE(pipe, _PAL_PREC_INDEX_A, _PAL_PREC_INDEX_B)
8762  #define PREC_PAL_DATA(pipe)		_MMIO_PIPE(pipe, _PAL_PREC_DATA_A, _PAL_PREC_DATA_B)
8763  #define PREC_PAL_GC_MAX(pipe, i)	_MMIO(_PIPE(pipe, _PAL_PREC_GC_MAX_A, _PAL_PREC_GC_MAX_B) + (i) * 4)
8764  #define PREC_PAL_EXT_GC_MAX(pipe, i)	_MMIO(_PIPE(pipe, _PAL_PREC_EXT_GC_MAX_A, _PAL_PREC_EXT_GC_MAX_B) + (i) * 4)
8765  
8766  #define _PRE_CSC_GAMC_INDEX_A	0x4A484
8767  #define _PRE_CSC_GAMC_INDEX_B	0x4AC84
8768  #define _PRE_CSC_GAMC_INDEX_C	0x4B484
8769  #define   PRE_CSC_GAMC_AUTO_INCREMENT	(1 << 10)
8770  #define _PRE_CSC_GAMC_DATA_A	0x4A488
8771  #define _PRE_CSC_GAMC_DATA_B	0x4AC88
8772  #define _PRE_CSC_GAMC_DATA_C	0x4B488
8773  
8774  #define PRE_CSC_GAMC_INDEX(pipe)	_MMIO_PIPE(pipe, _PRE_CSC_GAMC_INDEX_A, _PRE_CSC_GAMC_INDEX_B)
8775  #define PRE_CSC_GAMC_DATA(pipe)		_MMIO_PIPE(pipe, _PRE_CSC_GAMC_DATA_A, _PRE_CSC_GAMC_DATA_B)
8776  
8777  /* pipe CSC & degamma/gamma LUTs on CHV */
8778  #define _CGM_PIPE_A_CSC_COEFF01	(VLV_DISPLAY_BASE + 0x67900)
8779  #define _CGM_PIPE_A_CSC_COEFF23	(VLV_DISPLAY_BASE + 0x67904)
8780  #define _CGM_PIPE_A_CSC_COEFF45	(VLV_DISPLAY_BASE + 0x67908)
8781  #define _CGM_PIPE_A_CSC_COEFF67	(VLV_DISPLAY_BASE + 0x6790C)
8782  #define _CGM_PIPE_A_CSC_COEFF8	(VLV_DISPLAY_BASE + 0x67910)
8783  #define _CGM_PIPE_A_DEGAMMA	(VLV_DISPLAY_BASE + 0x66000)
8784  #define _CGM_PIPE_A_GAMMA	(VLV_DISPLAY_BASE + 0x67000)
8785  #define _CGM_PIPE_A_MODE	(VLV_DISPLAY_BASE + 0x67A00)
8786  #define   CGM_PIPE_MODE_GAMMA	(1 << 2)
8787  #define   CGM_PIPE_MODE_CSC	(1 << 1)
8788  #define   CGM_PIPE_MODE_DEGAMMA	(1 << 0)
8789  
8790  #define _CGM_PIPE_B_CSC_COEFF01	(VLV_DISPLAY_BASE + 0x69900)
8791  #define _CGM_PIPE_B_CSC_COEFF23	(VLV_DISPLAY_BASE + 0x69904)
8792  #define _CGM_PIPE_B_CSC_COEFF45	(VLV_DISPLAY_BASE + 0x69908)
8793  #define _CGM_PIPE_B_CSC_COEFF67	(VLV_DISPLAY_BASE + 0x6990C)
8794  #define _CGM_PIPE_B_CSC_COEFF8	(VLV_DISPLAY_BASE + 0x69910)
8795  #define _CGM_PIPE_B_DEGAMMA	(VLV_DISPLAY_BASE + 0x68000)
8796  #define _CGM_PIPE_B_GAMMA	(VLV_DISPLAY_BASE + 0x69000)
8797  #define _CGM_PIPE_B_MODE	(VLV_DISPLAY_BASE + 0x69A00)
8798  
8799  #define CGM_PIPE_CSC_COEFF01(pipe)	_MMIO_PIPE(pipe, _CGM_PIPE_A_CSC_COEFF01, _CGM_PIPE_B_CSC_COEFF01)
8800  #define CGM_PIPE_CSC_COEFF23(pipe)	_MMIO_PIPE(pipe, _CGM_PIPE_A_CSC_COEFF23, _CGM_PIPE_B_CSC_COEFF23)
8801  #define CGM_PIPE_CSC_COEFF45(pipe)	_MMIO_PIPE(pipe, _CGM_PIPE_A_CSC_COEFF45, _CGM_PIPE_B_CSC_COEFF45)
8802  #define CGM_PIPE_CSC_COEFF67(pipe)	_MMIO_PIPE(pipe, _CGM_PIPE_A_CSC_COEFF67, _CGM_PIPE_B_CSC_COEFF67)
8803  #define CGM_PIPE_CSC_COEFF8(pipe)	_MMIO_PIPE(pipe, _CGM_PIPE_A_CSC_COEFF8, _CGM_PIPE_B_CSC_COEFF8)
8804  #define CGM_PIPE_DEGAMMA(pipe, i, w)	_MMIO(_PIPE(pipe, _CGM_PIPE_A_DEGAMMA, _CGM_PIPE_B_DEGAMMA) + (i) * 8 + (w) * 4)
8805  #define CGM_PIPE_GAMMA(pipe, i, w)	_MMIO(_PIPE(pipe, _CGM_PIPE_A_GAMMA, _CGM_PIPE_B_GAMMA) + (i) * 8 + (w) * 4)
8806  #define CGM_PIPE_MODE(pipe)		_MMIO_PIPE(pipe, _CGM_PIPE_A_MODE, _CGM_PIPE_B_MODE)
8807  
8808  /* MIPI DSI registers */
8809  
8810  #define _MIPI_PORT(port, a, c)	(((port) == PORT_A) ? a : c)	/* ports A and C only */
8811  #define _MMIO_MIPI(port, a, c)	_MMIO(_MIPI_PORT(port, a, c))
8812  
8813  #define MIPIO_TXESC_CLK_DIV1			_MMIO(0x160004)
8814  #define  GLK_TX_ESC_CLK_DIV1_MASK			0x3FF
8815  #define MIPIO_TXESC_CLK_DIV2			_MMIO(0x160008)
8816  #define  GLK_TX_ESC_CLK_DIV2_MASK			0x3FF
8817  
8818  /* BXT MIPI clock controls */
8819  #define BXT_MAX_VAR_OUTPUT_KHZ			39500
8820  
8821  #define BXT_MIPI_CLOCK_CTL			_MMIO(0x46090)
8822  #define  BXT_MIPI1_DIV_SHIFT			26
8823  #define  BXT_MIPI2_DIV_SHIFT			10
8824  #define  BXT_MIPI_DIV_SHIFT(port)		\
8825  			_MIPI_PORT(port, BXT_MIPI1_DIV_SHIFT, \
8826  					BXT_MIPI2_DIV_SHIFT)
8827  
8828  /* TX control divider to select actual TX clock output from (8x/var) */
8829  #define  BXT_MIPI1_TX_ESCLK_SHIFT		26
8830  #define  BXT_MIPI2_TX_ESCLK_SHIFT		10
8831  #define  BXT_MIPI_TX_ESCLK_SHIFT(port)		\
8832  			_MIPI_PORT(port, BXT_MIPI1_TX_ESCLK_SHIFT, \
8833  					BXT_MIPI2_TX_ESCLK_SHIFT)
8834  #define  BXT_MIPI1_TX_ESCLK_FIXDIV_MASK		(0x3F << 26)
8835  #define  BXT_MIPI2_TX_ESCLK_FIXDIV_MASK		(0x3F << 10)
8836  #define  BXT_MIPI_TX_ESCLK_FIXDIV_MASK(port)	\
8837  			_MIPI_PORT(port, BXT_MIPI1_TX_ESCLK_FIXDIV_MASK, \
8838  					BXT_MIPI2_TX_ESCLK_FIXDIV_MASK)
8839  #define  BXT_MIPI_TX_ESCLK_DIVIDER(port, val)	\
8840  		((val & 0x3F) << BXT_MIPI_TX_ESCLK_SHIFT(port))
8841  /* RX upper control divider to select actual RX clock output from 8x */
8842  #define  BXT_MIPI1_RX_ESCLK_UPPER_SHIFT		21
8843  #define  BXT_MIPI2_RX_ESCLK_UPPER_SHIFT		5
8844  #define  BXT_MIPI_RX_ESCLK_UPPER_SHIFT(port)		\
8845  			_MIPI_PORT(port, BXT_MIPI1_RX_ESCLK_UPPER_SHIFT, \
8846  					BXT_MIPI2_RX_ESCLK_UPPER_SHIFT)
8847  #define  BXT_MIPI1_RX_ESCLK_UPPER_FIXDIV_MASK		(3 << 21)
8848  #define  BXT_MIPI2_RX_ESCLK_UPPER_FIXDIV_MASK		(3 << 5)
8849  #define  BXT_MIPI_RX_ESCLK_UPPER_FIXDIV_MASK(port)	\
8850  			_MIPI_PORT(port, BXT_MIPI1_RX_ESCLK_UPPER_FIXDIV_MASK, \
8851  					BXT_MIPI2_RX_ESCLK_UPPER_FIXDIV_MASK)
8852  #define  BXT_MIPI_RX_ESCLK_UPPER_DIVIDER(port, val)	\
8853  		((val & 3) << BXT_MIPI_RX_ESCLK_UPPER_SHIFT(port))
8854  /* 8/3X divider to select the actual 8/3X clock output from 8x */
8855  #define  BXT_MIPI1_8X_BY3_SHIFT                19
8856  #define  BXT_MIPI2_8X_BY3_SHIFT                3
8857  #define  BXT_MIPI_8X_BY3_SHIFT(port)          \
8858  			_MIPI_PORT(port, BXT_MIPI1_8X_BY3_SHIFT, \
8859  					BXT_MIPI2_8X_BY3_SHIFT)
8860  #define  BXT_MIPI1_8X_BY3_DIVIDER_MASK         (3 << 19)
8861  #define  BXT_MIPI2_8X_BY3_DIVIDER_MASK         (3 << 3)
8862  #define  BXT_MIPI_8X_BY3_DIVIDER_MASK(port)    \
8863  			_MIPI_PORT(port, BXT_MIPI1_8X_BY3_DIVIDER_MASK, \
8864  						BXT_MIPI2_8X_BY3_DIVIDER_MASK)
8865  #define  BXT_MIPI_8X_BY3_DIVIDER(port, val)    \
8866  			((val & 3) << BXT_MIPI_8X_BY3_SHIFT(port))
8867  /* RX lower control divider to select actual RX clock output from 8x */
8868  #define  BXT_MIPI1_RX_ESCLK_LOWER_SHIFT		16
8869  #define  BXT_MIPI2_RX_ESCLK_LOWER_SHIFT		0
8870  #define  BXT_MIPI_RX_ESCLK_LOWER_SHIFT(port)		\
8871  			_MIPI_PORT(port, BXT_MIPI1_RX_ESCLK_LOWER_SHIFT, \
8872  					BXT_MIPI2_RX_ESCLK_LOWER_SHIFT)
8873  #define  BXT_MIPI1_RX_ESCLK_LOWER_FIXDIV_MASK		(3 << 16)
8874  #define  BXT_MIPI2_RX_ESCLK_LOWER_FIXDIV_MASK		(3 << 0)
8875  #define  BXT_MIPI_RX_ESCLK_LOWER_FIXDIV_MASK(port)	\
8876  			_MIPI_PORT(port, BXT_MIPI1_RX_ESCLK_LOWER_FIXDIV_MASK, \
8877  					BXT_MIPI2_RX_ESCLK_LOWER_FIXDIV_MASK)
8878  #define  BXT_MIPI_RX_ESCLK_LOWER_DIVIDER(port, val)	\
8879  		((val & 3) << BXT_MIPI_RX_ESCLK_LOWER_SHIFT(port))
8880  
8881  #define RX_DIVIDER_BIT_1_2                     0x3
8882  #define RX_DIVIDER_BIT_3_4                     0xC
8883  
8884  /* BXT MIPI mode configure */
8885  #define  _BXT_MIPIA_TRANS_HACTIVE			0x6B0F8
8886  #define  _BXT_MIPIC_TRANS_HACTIVE			0x6B8F8
8887  #define  BXT_MIPI_TRANS_HACTIVE(tc)	_MMIO_MIPI(tc, \
8888  		_BXT_MIPIA_TRANS_HACTIVE, _BXT_MIPIC_TRANS_HACTIVE)
8889  
8890  #define  _BXT_MIPIA_TRANS_VACTIVE			0x6B0FC
8891  #define  _BXT_MIPIC_TRANS_VACTIVE			0x6B8FC
8892  #define  BXT_MIPI_TRANS_VACTIVE(tc)	_MMIO_MIPI(tc, \
8893  		_BXT_MIPIA_TRANS_VACTIVE, _BXT_MIPIC_TRANS_VACTIVE)
8894  
8895  #define  _BXT_MIPIA_TRANS_VTOTAL			0x6B100
8896  #define  _BXT_MIPIC_TRANS_VTOTAL			0x6B900
8897  #define  BXT_MIPI_TRANS_VTOTAL(tc)	_MMIO_MIPI(tc, \
8898  		_BXT_MIPIA_TRANS_VTOTAL, _BXT_MIPIC_TRANS_VTOTAL)
8899  
8900  #define BXT_DSI_PLL_CTL			_MMIO(0x161000)
8901  #define  BXT_DSI_PLL_PVD_RATIO_SHIFT	16
8902  #define  BXT_DSI_PLL_PVD_RATIO_MASK	(3 << BXT_DSI_PLL_PVD_RATIO_SHIFT)
8903  #define  BXT_DSI_PLL_PVD_RATIO_1	(1 << BXT_DSI_PLL_PVD_RATIO_SHIFT)
8904  #define  BXT_DSIC_16X_BY1		(0 << 10)
8905  #define  BXT_DSIC_16X_BY2		(1 << 10)
8906  #define  BXT_DSIC_16X_BY3		(2 << 10)
8907  #define  BXT_DSIC_16X_BY4		(3 << 10)
8908  #define  BXT_DSIC_16X_MASK		(3 << 10)
8909  #define  BXT_DSIA_16X_BY1		(0 << 8)
8910  #define  BXT_DSIA_16X_BY2		(1 << 8)
8911  #define  BXT_DSIA_16X_BY3		(2 << 8)
8912  #define  BXT_DSIA_16X_BY4		(3 << 8)
8913  #define  BXT_DSIA_16X_MASK		(3 << 8)
8914  #define  BXT_DSI_FREQ_SEL_SHIFT		8
8915  #define  BXT_DSI_FREQ_SEL_MASK		(0xF << BXT_DSI_FREQ_SEL_SHIFT)
8916  
8917  #define BXT_DSI_PLL_RATIO_MAX		0x7D
8918  #define BXT_DSI_PLL_RATIO_MIN		0x22
8919  #define GLK_DSI_PLL_RATIO_MAX		0x6F
8920  #define GLK_DSI_PLL_RATIO_MIN		0x22
8921  #define BXT_DSI_PLL_RATIO_MASK		0xFF
8922  #define BXT_REF_CLOCK_KHZ		19200
8923  
8924  #define BXT_DSI_PLL_ENABLE		_MMIO(0x46080)
8925  #define  BXT_DSI_PLL_DO_ENABLE		(1 << 31)
8926  #define  BXT_DSI_PLL_LOCKED		(1 << 30)
8927  
8928  #define _MIPIA_PORT_CTRL			(VLV_DISPLAY_BASE + 0x61190)
8929  #define _MIPIC_PORT_CTRL			(VLV_DISPLAY_BASE + 0x61700)
8930  #define MIPI_PORT_CTRL(port)	_MMIO_MIPI(port, _MIPIA_PORT_CTRL, _MIPIC_PORT_CTRL)
8931  
8932   /* BXT port control */
8933  #define _BXT_MIPIA_PORT_CTRL				0x6B0C0
8934  #define _BXT_MIPIC_PORT_CTRL				0x6B8C0
8935  #define BXT_MIPI_PORT_CTRL(tc)	_MMIO_MIPI(tc, _BXT_MIPIA_PORT_CTRL, _BXT_MIPIC_PORT_CTRL)
8936  
8937  #define BXT_P_DSI_REGULATOR_CFG			_MMIO(0x160020)
8938  #define  STAP_SELECT					(1 << 0)
8939  
8940  #define BXT_P_DSI_REGULATOR_TX_CTRL		_MMIO(0x160054)
8941  #define  HS_IO_CTRL_SELECT				(1 << 0)
8942  
8943  #define  DPI_ENABLE					(1 << 31) /* A + C */
8944  #define  MIPIA_MIPI4DPHY_DELAY_COUNT_SHIFT		27
8945  #define  MIPIA_MIPI4DPHY_DELAY_COUNT_MASK		(0xf << 27)
8946  #define  DUAL_LINK_MODE_SHIFT				26
8947  #define  DUAL_LINK_MODE_MASK				(1 << 26)
8948  #define  DUAL_LINK_MODE_FRONT_BACK			(0 << 26)
8949  #define  DUAL_LINK_MODE_PIXEL_ALTERNATIVE		(1 << 26)
8950  #define  DITHERING_ENABLE				(1 << 25) /* A + C */
8951  #define  FLOPPED_HSTX					(1 << 23)
8952  #define  DE_INVERT					(1 << 19) /* XXX */
8953  #define  MIPIA_FLISDSI_DELAY_COUNT_SHIFT		18
8954  #define  MIPIA_FLISDSI_DELAY_COUNT_MASK			(0xf << 18)
8955  #define  AFE_LATCHOUT					(1 << 17)
8956  #define  LP_OUTPUT_HOLD					(1 << 16)
8957  #define  MIPIC_FLISDSI_DELAY_COUNT_HIGH_SHIFT		15
8958  #define  MIPIC_FLISDSI_DELAY_COUNT_HIGH_MASK		(1 << 15)
8959  #define  MIPIC_MIPI4DPHY_DELAY_COUNT_SHIFT		11
8960  #define  MIPIC_MIPI4DPHY_DELAY_COUNT_MASK		(0xf << 11)
8961  #define  CSB_SHIFT					9
8962  #define  CSB_MASK					(3 << 9)
8963  #define  CSB_20MHZ					(0 << 9)
8964  #define  CSB_10MHZ					(1 << 9)
8965  #define  CSB_40MHZ					(2 << 9)
8966  #define  BANDGAP_MASK					(1 << 8)
8967  #define  BANDGAP_PNW_CIRCUIT				(0 << 8)
8968  #define  BANDGAP_LNC_CIRCUIT				(1 << 8)
8969  #define  MIPIC_FLISDSI_DELAY_COUNT_LOW_SHIFT		5
8970  #define  MIPIC_FLISDSI_DELAY_COUNT_LOW_MASK		(7 << 5)
8971  #define  TEARING_EFFECT_DELAY				(1 << 4) /* A + C */
8972  #define  TEARING_EFFECT_SHIFT				2 /* A + C */
8973  #define  TEARING_EFFECT_MASK				(3 << 2)
8974  #define  TEARING_EFFECT_OFF				(0 << 2)
8975  #define  TEARING_EFFECT_DSI				(1 << 2)
8976  #define  TEARING_EFFECT_GPIO				(2 << 2)
8977  #define  LANE_CONFIGURATION_SHIFT			0
8978  #define  LANE_CONFIGURATION_MASK			(3 << 0)
8979  #define  LANE_CONFIGURATION_4LANE			(0 << 0)
8980  #define  LANE_CONFIGURATION_DUAL_LINK_A			(1 << 0)
8981  #define  LANE_CONFIGURATION_DUAL_LINK_B			(2 << 0)
8982  
8983  #define _MIPIA_TEARING_CTRL			(VLV_DISPLAY_BASE + 0x61194)
8984  #define _MIPIC_TEARING_CTRL			(VLV_DISPLAY_BASE + 0x61704)
8985  #define MIPI_TEARING_CTRL(port)			_MMIO_MIPI(port, _MIPIA_TEARING_CTRL, _MIPIC_TEARING_CTRL)
8986  #define  TEARING_EFFECT_DELAY_SHIFT			0
8987  #define  TEARING_EFFECT_DELAY_MASK			(0xffff << 0)
8988  
8989  /* XXX: all bits reserved */
8990  #define _MIPIA_AUTOPWG			(VLV_DISPLAY_BASE + 0x611a0)
8991  
8992  /* MIPI DSI Controller and D-PHY registers */
8993  
8994  #define _MIPIA_DEVICE_READY		(dev_priv->mipi_mmio_base + 0xb000)
8995  #define _MIPIC_DEVICE_READY		(dev_priv->mipi_mmio_base + 0xb800)
8996  #define MIPI_DEVICE_READY(port)		_MMIO_MIPI(port, _MIPIA_DEVICE_READY, _MIPIC_DEVICE_READY)
8997  #define  BUS_POSSESSION					(1 << 3) /* set to give bus to receiver */
8998  #define  ULPS_STATE_MASK				(3 << 1)
8999  #define  ULPS_STATE_ENTER				(2 << 1)
9000  #define  ULPS_STATE_EXIT				(1 << 1)
9001  #define  ULPS_STATE_NORMAL_OPERATION			(0 << 1)
9002  #define  DEVICE_READY					(1 << 0)
9003  
9004  #define _MIPIA_INTR_STAT		(dev_priv->mipi_mmio_base + 0xb004)
9005  #define _MIPIC_INTR_STAT		(dev_priv->mipi_mmio_base + 0xb804)
9006  #define MIPI_INTR_STAT(port)		_MMIO_MIPI(port, _MIPIA_INTR_STAT, _MIPIC_INTR_STAT)
9007  #define _MIPIA_INTR_EN			(dev_priv->mipi_mmio_base + 0xb008)
9008  #define _MIPIC_INTR_EN			(dev_priv->mipi_mmio_base + 0xb808)
9009  #define MIPI_INTR_EN(port)		_MMIO_MIPI(port, _MIPIA_INTR_EN, _MIPIC_INTR_EN)
9010  #define  TEARING_EFFECT					(1 << 31)
9011  #define  SPL_PKT_SENT_INTERRUPT				(1 << 30)
9012  #define  GEN_READ_DATA_AVAIL				(1 << 29)
9013  #define  LP_GENERIC_WR_FIFO_FULL			(1 << 28)
9014  #define  HS_GENERIC_WR_FIFO_FULL			(1 << 27)
9015  #define  RX_PROT_VIOLATION				(1 << 26)
9016  #define  RX_INVALID_TX_LENGTH				(1 << 25)
9017  #define  ACK_WITH_NO_ERROR				(1 << 24)
9018  #define  TURN_AROUND_ACK_TIMEOUT			(1 << 23)
9019  #define  LP_RX_TIMEOUT					(1 << 22)
9020  #define  HS_TX_TIMEOUT					(1 << 21)
9021  #define  DPI_FIFO_UNDERRUN				(1 << 20)
9022  #define  LOW_CONTENTION					(1 << 19)
9023  #define  HIGH_CONTENTION				(1 << 18)
9024  #define  TXDSI_VC_ID_INVALID				(1 << 17)
9025  #define  TXDSI_DATA_TYPE_NOT_RECOGNISED			(1 << 16)
9026  #define  TXCHECKSUM_ERROR				(1 << 15)
9027  #define  TXECC_MULTIBIT_ERROR				(1 << 14)
9028  #define  TXECC_SINGLE_BIT_ERROR				(1 << 13)
9029  #define  TXFALSE_CONTROL_ERROR				(1 << 12)
9030  #define  RXDSI_VC_ID_INVALID				(1 << 11)
9031  #define  RXDSI_DATA_TYPE_NOT_REGOGNISED			(1 << 10)
9032  #define  RXCHECKSUM_ERROR				(1 << 9)
9033  #define  RXECC_MULTIBIT_ERROR				(1 << 8)
9034  #define  RXECC_SINGLE_BIT_ERROR				(1 << 7)
9035  #define  RXFALSE_CONTROL_ERROR				(1 << 6)
9036  #define  RXHS_RECEIVE_TIMEOUT_ERROR			(1 << 5)
9037  #define  RX_LP_TX_SYNC_ERROR				(1 << 4)
9038  #define  RXEXCAPE_MODE_ENTRY_ERROR			(1 << 3)
9039  #define  RXEOT_SYNC_ERROR				(1 << 2)
9040  #define  RXSOT_SYNC_ERROR				(1 << 1)
9041  #define  RXSOT_ERROR					(1 << 0)
9042  
9043  #define _MIPIA_DSI_FUNC_PRG		(dev_priv->mipi_mmio_base + 0xb00c)
9044  #define _MIPIC_DSI_FUNC_PRG		(dev_priv->mipi_mmio_base + 0xb80c)
9045  #define MIPI_DSI_FUNC_PRG(port)		_MMIO_MIPI(port, _MIPIA_DSI_FUNC_PRG, _MIPIC_DSI_FUNC_PRG)
9046  #define  CMD_MODE_DATA_WIDTH_MASK			(7 << 13)
9047  #define  CMD_MODE_NOT_SUPPORTED				(0 << 13)
9048  #define  CMD_MODE_DATA_WIDTH_16_BIT			(1 << 13)
9049  #define  CMD_MODE_DATA_WIDTH_9_BIT			(2 << 13)
9050  #define  CMD_MODE_DATA_WIDTH_8_BIT			(3 << 13)
9051  #define  CMD_MODE_DATA_WIDTH_OPTION1			(4 << 13)
9052  #define  CMD_MODE_DATA_WIDTH_OPTION2			(5 << 13)
9053  #define  VID_MODE_FORMAT_MASK				(0xf << 7)
9054  #define  VID_MODE_NOT_SUPPORTED				(0 << 7)
9055  #define  VID_MODE_FORMAT_RGB565				(1 << 7)
9056  #define  VID_MODE_FORMAT_RGB666_PACKED			(2 << 7)
9057  #define  VID_MODE_FORMAT_RGB666				(3 << 7)
9058  #define  VID_MODE_FORMAT_RGB888				(4 << 7)
9059  #define  CMD_MODE_CHANNEL_NUMBER_SHIFT			5
9060  #define  CMD_MODE_CHANNEL_NUMBER_MASK			(3 << 5)
9061  #define  VID_MODE_CHANNEL_NUMBER_SHIFT			3
9062  #define  VID_MODE_CHANNEL_NUMBER_MASK			(3 << 3)
9063  #define  DATA_LANES_PRG_REG_SHIFT			0
9064  #define  DATA_LANES_PRG_REG_MASK			(7 << 0)
9065  
9066  #define _MIPIA_HS_TX_TIMEOUT		(dev_priv->mipi_mmio_base + 0xb010)
9067  #define _MIPIC_HS_TX_TIMEOUT		(dev_priv->mipi_mmio_base + 0xb810)
9068  #define MIPI_HS_TX_TIMEOUT(port)	_MMIO_MIPI(port, _MIPIA_HS_TX_TIMEOUT, _MIPIC_HS_TX_TIMEOUT)
9069  #define  HIGH_SPEED_TX_TIMEOUT_COUNTER_MASK		0xffffff
9070  
9071  #define _MIPIA_LP_RX_TIMEOUT		(dev_priv->mipi_mmio_base + 0xb014)
9072  #define _MIPIC_LP_RX_TIMEOUT		(dev_priv->mipi_mmio_base + 0xb814)
9073  #define MIPI_LP_RX_TIMEOUT(port)	_MMIO_MIPI(port, _MIPIA_LP_RX_TIMEOUT, _MIPIC_LP_RX_TIMEOUT)
9074  #define  LOW_POWER_RX_TIMEOUT_COUNTER_MASK		0xffffff
9075  
9076  #define _MIPIA_TURN_AROUND_TIMEOUT	(dev_priv->mipi_mmio_base + 0xb018)
9077  #define _MIPIC_TURN_AROUND_TIMEOUT	(dev_priv->mipi_mmio_base + 0xb818)
9078  #define MIPI_TURN_AROUND_TIMEOUT(port)	_MMIO_MIPI(port, _MIPIA_TURN_AROUND_TIMEOUT, _MIPIC_TURN_AROUND_TIMEOUT)
9079  #define  TURN_AROUND_TIMEOUT_MASK			0x3f
9080  
9081  #define _MIPIA_DEVICE_RESET_TIMER	(dev_priv->mipi_mmio_base + 0xb01c)
9082  #define _MIPIC_DEVICE_RESET_TIMER	(dev_priv->mipi_mmio_base + 0xb81c)
9083  #define MIPI_DEVICE_RESET_TIMER(port)	_MMIO_MIPI(port, _MIPIA_DEVICE_RESET_TIMER, _MIPIC_DEVICE_RESET_TIMER)
9084  #define  DEVICE_RESET_TIMER_MASK			0xffff
9085  
9086  #define _MIPIA_DPI_RESOLUTION		(dev_priv->mipi_mmio_base + 0xb020)
9087  #define _MIPIC_DPI_RESOLUTION		(dev_priv->mipi_mmio_base + 0xb820)
9088  #define MIPI_DPI_RESOLUTION(port)	_MMIO_MIPI(port, _MIPIA_DPI_RESOLUTION, _MIPIC_DPI_RESOLUTION)
9089  #define  VERTICAL_ADDRESS_SHIFT				16
9090  #define  VERTICAL_ADDRESS_MASK				(0xffff << 16)
9091  #define  HORIZONTAL_ADDRESS_SHIFT			0
9092  #define  HORIZONTAL_ADDRESS_MASK			0xffff
9093  
9094  #define _MIPIA_DBI_FIFO_THROTTLE	(dev_priv->mipi_mmio_base + 0xb024)
9095  #define _MIPIC_DBI_FIFO_THROTTLE	(dev_priv->mipi_mmio_base + 0xb824)
9096  #define MIPI_DBI_FIFO_THROTTLE(port)	_MMIO_MIPI(port, _MIPIA_DBI_FIFO_THROTTLE, _MIPIC_DBI_FIFO_THROTTLE)
9097  #define  DBI_FIFO_EMPTY_HALF				(0 << 0)
9098  #define  DBI_FIFO_EMPTY_QUARTER				(1 << 0)
9099  #define  DBI_FIFO_EMPTY_7_LOCATIONS			(2 << 0)
9100  
9101  /* regs below are bits 15:0 */
9102  #define _MIPIA_HSYNC_PADDING_COUNT	(dev_priv->mipi_mmio_base + 0xb028)
9103  #define _MIPIC_HSYNC_PADDING_COUNT	(dev_priv->mipi_mmio_base + 0xb828)
9104  #define MIPI_HSYNC_PADDING_COUNT(port)	_MMIO_MIPI(port, _MIPIA_HSYNC_PADDING_COUNT, _MIPIC_HSYNC_PADDING_COUNT)
9105  
9106  #define _MIPIA_HBP_COUNT		(dev_priv->mipi_mmio_base + 0xb02c)
9107  #define _MIPIC_HBP_COUNT		(dev_priv->mipi_mmio_base + 0xb82c)
9108  #define MIPI_HBP_COUNT(port)		_MMIO_MIPI(port, _MIPIA_HBP_COUNT, _MIPIC_HBP_COUNT)
9109  
9110  #define _MIPIA_HFP_COUNT		(dev_priv->mipi_mmio_base + 0xb030)
9111  #define _MIPIC_HFP_COUNT		(dev_priv->mipi_mmio_base + 0xb830)
9112  #define MIPI_HFP_COUNT(port)		_MMIO_MIPI(port, _MIPIA_HFP_COUNT, _MIPIC_HFP_COUNT)
9113  
9114  #define _MIPIA_HACTIVE_AREA_COUNT	(dev_priv->mipi_mmio_base + 0xb034)
9115  #define _MIPIC_HACTIVE_AREA_COUNT	(dev_priv->mipi_mmio_base + 0xb834)
9116  #define MIPI_HACTIVE_AREA_COUNT(port)	_MMIO_MIPI(port, _MIPIA_HACTIVE_AREA_COUNT, _MIPIC_HACTIVE_AREA_COUNT)
9117  
9118  #define _MIPIA_VSYNC_PADDING_COUNT	(dev_priv->mipi_mmio_base + 0xb038)
9119  #define _MIPIC_VSYNC_PADDING_COUNT	(dev_priv->mipi_mmio_base + 0xb838)
9120  #define MIPI_VSYNC_PADDING_COUNT(port)	_MMIO_MIPI(port, _MIPIA_VSYNC_PADDING_COUNT, _MIPIC_VSYNC_PADDING_COUNT)
9121  
9122  #define _MIPIA_VBP_COUNT		(dev_priv->mipi_mmio_base + 0xb03c)
9123  #define _MIPIC_VBP_COUNT		(dev_priv->mipi_mmio_base + 0xb83c)
9124  #define MIPI_VBP_COUNT(port)		_MMIO_MIPI(port, _MIPIA_VBP_COUNT, _MIPIC_VBP_COUNT)
9125  
9126  #define _MIPIA_VFP_COUNT		(dev_priv->mipi_mmio_base + 0xb040)
9127  #define _MIPIC_VFP_COUNT		(dev_priv->mipi_mmio_base + 0xb840)
9128  #define MIPI_VFP_COUNT(port)		_MMIO_MIPI(port, _MIPIA_VFP_COUNT, _MIPIC_VFP_COUNT)
9129  
9130  #define _MIPIA_HIGH_LOW_SWITCH_COUNT	(dev_priv->mipi_mmio_base + 0xb044)
9131  #define _MIPIC_HIGH_LOW_SWITCH_COUNT	(dev_priv->mipi_mmio_base + 0xb844)
9132  #define MIPI_HIGH_LOW_SWITCH_COUNT(port)	_MMIO_MIPI(port,	_MIPIA_HIGH_LOW_SWITCH_COUNT, _MIPIC_HIGH_LOW_SWITCH_COUNT)
9133  
9134  /* regs above are bits 15:0 */
9135  
9136  #define _MIPIA_DPI_CONTROL		(dev_priv->mipi_mmio_base + 0xb048)
9137  #define _MIPIC_DPI_CONTROL		(dev_priv->mipi_mmio_base + 0xb848)
9138  #define MIPI_DPI_CONTROL(port)		_MMIO_MIPI(port, _MIPIA_DPI_CONTROL, _MIPIC_DPI_CONTROL)
9139  #define  DPI_LP_MODE					(1 << 6)
9140  #define  BACKLIGHT_OFF					(1 << 5)
9141  #define  BACKLIGHT_ON					(1 << 4)
9142  #define  COLOR_MODE_OFF					(1 << 3)
9143  #define  COLOR_MODE_ON					(1 << 2)
9144  #define  TURN_ON					(1 << 1)
9145  #define  SHUTDOWN					(1 << 0)
9146  
9147  #define _MIPIA_DPI_DATA			(dev_priv->mipi_mmio_base + 0xb04c)
9148  #define _MIPIC_DPI_DATA			(dev_priv->mipi_mmio_base + 0xb84c)
9149  #define MIPI_DPI_DATA(port)		_MMIO_MIPI(port, _MIPIA_DPI_DATA, _MIPIC_DPI_DATA)
9150  #define  COMMAND_BYTE_SHIFT				0
9151  #define  COMMAND_BYTE_MASK				(0x3f << 0)
9152  
9153  #define _MIPIA_INIT_COUNT		(dev_priv->mipi_mmio_base + 0xb050)
9154  #define _MIPIC_INIT_COUNT		(dev_priv->mipi_mmio_base + 0xb850)
9155  #define MIPI_INIT_COUNT(port)		_MMIO_MIPI(port, _MIPIA_INIT_COUNT, _MIPIC_INIT_COUNT)
9156  #define  MASTER_INIT_TIMER_SHIFT			0
9157  #define  MASTER_INIT_TIMER_MASK				(0xffff << 0)
9158  
9159  #define _MIPIA_MAX_RETURN_PKT_SIZE	(dev_priv->mipi_mmio_base + 0xb054)
9160  #define _MIPIC_MAX_RETURN_PKT_SIZE	(dev_priv->mipi_mmio_base + 0xb854)
9161  #define MIPI_MAX_RETURN_PKT_SIZE(port)	_MMIO_MIPI(port, \
9162  			_MIPIA_MAX_RETURN_PKT_SIZE, _MIPIC_MAX_RETURN_PKT_SIZE)
9163  #define  MAX_RETURN_PKT_SIZE_SHIFT			0
9164  #define  MAX_RETURN_PKT_SIZE_MASK			(0x3ff << 0)
9165  
9166  #define _MIPIA_VIDEO_MODE_FORMAT	(dev_priv->mipi_mmio_base + 0xb058)
9167  #define _MIPIC_VIDEO_MODE_FORMAT	(dev_priv->mipi_mmio_base + 0xb858)
9168  #define MIPI_VIDEO_MODE_FORMAT(port)	_MMIO_MIPI(port, _MIPIA_VIDEO_MODE_FORMAT, _MIPIC_VIDEO_MODE_FORMAT)
9169  #define  RANDOM_DPI_DISPLAY_RESOLUTION			(1 << 4)
9170  #define  DISABLE_VIDEO_BTA				(1 << 3)
9171  #define  IP_TG_CONFIG					(1 << 2)
9172  #define  VIDEO_MODE_NON_BURST_WITH_SYNC_PULSE		(1 << 0)
9173  #define  VIDEO_MODE_NON_BURST_WITH_SYNC_EVENTS		(2 << 0)
9174  #define  VIDEO_MODE_BURST				(3 << 0)
9175  
9176  #define _MIPIA_EOT_DISABLE		(dev_priv->mipi_mmio_base + 0xb05c)
9177  #define _MIPIC_EOT_DISABLE		(dev_priv->mipi_mmio_base + 0xb85c)
9178  #define MIPI_EOT_DISABLE(port)		_MMIO_MIPI(port, _MIPIA_EOT_DISABLE, _MIPIC_EOT_DISABLE)
9179  #define  BXT_DEFEATURE_DPI_FIFO_CTR			(1 << 9)
9180  #define  BXT_DPHY_DEFEATURE_EN				(1 << 8)
9181  #define  LP_RX_TIMEOUT_ERROR_RECOVERY_DISABLE		(1 << 7)
9182  #define  HS_RX_TIMEOUT_ERROR_RECOVERY_DISABLE		(1 << 6)
9183  #define  LOW_CONTENTION_RECOVERY_DISABLE		(1 << 5)
9184  #define  HIGH_CONTENTION_RECOVERY_DISABLE		(1 << 4)
9185  #define  TXDSI_TYPE_NOT_RECOGNISED_ERROR_RECOVERY_DISABLE (1 << 3)
9186  #define  TXECC_MULTIBIT_ERROR_RECOVERY_DISABLE		(1 << 2)
9187  #define  CLOCKSTOP					(1 << 1)
9188  #define  EOT_DISABLE					(1 << 0)
9189  
9190  #define _MIPIA_LP_BYTECLK		(dev_priv->mipi_mmio_base + 0xb060)
9191  #define _MIPIC_LP_BYTECLK		(dev_priv->mipi_mmio_base + 0xb860)
9192  #define MIPI_LP_BYTECLK(port)		_MMIO_MIPI(port, _MIPIA_LP_BYTECLK, _MIPIC_LP_BYTECLK)
9193  #define  LP_BYTECLK_SHIFT				0
9194  #define  LP_BYTECLK_MASK				(0xffff << 0)
9195  
9196  #define _MIPIA_TLPX_TIME_COUNT		(dev_priv->mipi_mmio_base + 0xb0a4)
9197  #define _MIPIC_TLPX_TIME_COUNT		(dev_priv->mipi_mmio_base + 0xb8a4)
9198  #define MIPI_TLPX_TIME_COUNT(port)	 _MMIO_MIPI(port, _MIPIA_TLPX_TIME_COUNT, _MIPIC_TLPX_TIME_COUNT)
9199  
9200  #define _MIPIA_CLK_LANE_TIMING		(dev_priv->mipi_mmio_base + 0xb098)
9201  #define _MIPIC_CLK_LANE_TIMING		(dev_priv->mipi_mmio_base + 0xb898)
9202  #define MIPI_CLK_LANE_TIMING(port)	 _MMIO_MIPI(port, _MIPIA_CLK_LANE_TIMING, _MIPIC_CLK_LANE_TIMING)
9203  
9204  /* bits 31:0 */
9205  #define _MIPIA_LP_GEN_DATA		(dev_priv->mipi_mmio_base + 0xb064)
9206  #define _MIPIC_LP_GEN_DATA		(dev_priv->mipi_mmio_base + 0xb864)
9207  #define MIPI_LP_GEN_DATA(port)		_MMIO_MIPI(port, _MIPIA_LP_GEN_DATA, _MIPIC_LP_GEN_DATA)
9208  
9209  /* bits 31:0 */
9210  #define _MIPIA_HS_GEN_DATA		(dev_priv->mipi_mmio_base + 0xb068)
9211  #define _MIPIC_HS_GEN_DATA		(dev_priv->mipi_mmio_base + 0xb868)
9212  #define MIPI_HS_GEN_DATA(port)		_MMIO_MIPI(port, _MIPIA_HS_GEN_DATA, _MIPIC_HS_GEN_DATA)
9213  
9214  #define _MIPIA_LP_GEN_CTRL		(dev_priv->mipi_mmio_base + 0xb06c)
9215  #define _MIPIC_LP_GEN_CTRL		(dev_priv->mipi_mmio_base + 0xb86c)
9216  #define MIPI_LP_GEN_CTRL(port)		_MMIO_MIPI(port, _MIPIA_LP_GEN_CTRL, _MIPIC_LP_GEN_CTRL)
9217  #define _MIPIA_HS_GEN_CTRL		(dev_priv->mipi_mmio_base + 0xb070)
9218  #define _MIPIC_HS_GEN_CTRL		(dev_priv->mipi_mmio_base + 0xb870)
9219  #define MIPI_HS_GEN_CTRL(port)		_MMIO_MIPI(port, _MIPIA_HS_GEN_CTRL, _MIPIC_HS_GEN_CTRL)
9220  #define  LONG_PACKET_WORD_COUNT_SHIFT			8
9221  #define  LONG_PACKET_WORD_COUNT_MASK			(0xffff << 8)
9222  #define  SHORT_PACKET_PARAM_SHIFT			8
9223  #define  SHORT_PACKET_PARAM_MASK			(0xffff << 8)
9224  #define  VIRTUAL_CHANNEL_SHIFT				6
9225  #define  VIRTUAL_CHANNEL_MASK				(3 << 6)
9226  #define  DATA_TYPE_SHIFT				0
9227  #define  DATA_TYPE_MASK					(0x3f << 0)
9228  /* data type values, see include/video/mipi_display.h */
9229  
9230  #define _MIPIA_GEN_FIFO_STAT		(dev_priv->mipi_mmio_base + 0xb074)
9231  #define _MIPIC_GEN_FIFO_STAT		(dev_priv->mipi_mmio_base + 0xb874)
9232  #define MIPI_GEN_FIFO_STAT(port)	_MMIO_MIPI(port, _MIPIA_GEN_FIFO_STAT, _MIPIC_GEN_FIFO_STAT)
9233  #define  DPI_FIFO_EMPTY					(1 << 28)
9234  #define  DBI_FIFO_EMPTY					(1 << 27)
9235  #define  LP_CTRL_FIFO_EMPTY				(1 << 26)
9236  #define  LP_CTRL_FIFO_HALF_EMPTY			(1 << 25)
9237  #define  LP_CTRL_FIFO_FULL				(1 << 24)
9238  #define  HS_CTRL_FIFO_EMPTY				(1 << 18)
9239  #define  HS_CTRL_FIFO_HALF_EMPTY			(1 << 17)
9240  #define  HS_CTRL_FIFO_FULL				(1 << 16)
9241  #define  LP_DATA_FIFO_EMPTY				(1 << 10)
9242  #define  LP_DATA_FIFO_HALF_EMPTY			(1 << 9)
9243  #define  LP_DATA_FIFO_FULL				(1 << 8)
9244  #define  HS_DATA_FIFO_EMPTY				(1 << 2)
9245  #define  HS_DATA_FIFO_HALF_EMPTY			(1 << 1)
9246  #define  HS_DATA_FIFO_FULL				(1 << 0)
9247  
9248  #define _MIPIA_HS_LS_DBI_ENABLE		(dev_priv->mipi_mmio_base + 0xb078)
9249  #define _MIPIC_HS_LS_DBI_ENABLE		(dev_priv->mipi_mmio_base + 0xb878)
9250  #define MIPI_HS_LP_DBI_ENABLE(port)	_MMIO_MIPI(port, _MIPIA_HS_LS_DBI_ENABLE, _MIPIC_HS_LS_DBI_ENABLE)
9251  #define  DBI_HS_LP_MODE_MASK				(1 << 0)
9252  #define  DBI_LP_MODE					(1 << 0)
9253  #define  DBI_HS_MODE					(0 << 0)
9254  
9255  #define _MIPIA_DPHY_PARAM		(dev_priv->mipi_mmio_base + 0xb080)
9256  #define _MIPIC_DPHY_PARAM		(dev_priv->mipi_mmio_base + 0xb880)
9257  #define MIPI_DPHY_PARAM(port)		_MMIO_MIPI(port, _MIPIA_DPHY_PARAM, _MIPIC_DPHY_PARAM)
9258  #define  EXIT_ZERO_COUNT_SHIFT				24
9259  #define  EXIT_ZERO_COUNT_MASK				(0x3f << 24)
9260  #define  TRAIL_COUNT_SHIFT				16
9261  #define  TRAIL_COUNT_MASK				(0x1f << 16)
9262  #define  CLK_ZERO_COUNT_SHIFT				8
9263  #define  CLK_ZERO_COUNT_MASK				(0xff << 8)
9264  #define  PREPARE_COUNT_SHIFT				0
9265  #define  PREPARE_COUNT_MASK				(0x3f << 0)
9266  
9267  /* bits 31:0 */
9268  #define _MIPIA_DBI_BW_CTRL		(dev_priv->mipi_mmio_base + 0xb084)
9269  #define _MIPIC_DBI_BW_CTRL		(dev_priv->mipi_mmio_base + 0xb884)
9270  #define MIPI_DBI_BW_CTRL(port)		_MMIO_MIPI(port, _MIPIA_DBI_BW_CTRL, _MIPIC_DBI_BW_CTRL)
9271  
9272  #define _MIPIA_CLK_LANE_SWITCH_TIME_CNT		(dev_priv->mipi_mmio_base + 0xb088)
9273  #define _MIPIC_CLK_LANE_SWITCH_TIME_CNT		(dev_priv->mipi_mmio_base + 0xb888)
9274  #define MIPI_CLK_LANE_SWITCH_TIME_CNT(port)	_MMIO_MIPI(port, _MIPIA_CLK_LANE_SWITCH_TIME_CNT, _MIPIC_CLK_LANE_SWITCH_TIME_CNT)
9275  #define  LP_HS_SSW_CNT_SHIFT				16
9276  #define  LP_HS_SSW_CNT_MASK				(0xffff << 16)
9277  #define  HS_LP_PWR_SW_CNT_SHIFT				0
9278  #define  HS_LP_PWR_SW_CNT_MASK				(0xffff << 0)
9279  
9280  #define _MIPIA_STOP_STATE_STALL		(dev_priv->mipi_mmio_base + 0xb08c)
9281  #define _MIPIC_STOP_STATE_STALL		(dev_priv->mipi_mmio_base + 0xb88c)
9282  #define MIPI_STOP_STATE_STALL(port)	_MMIO_MIPI(port, _MIPIA_STOP_STATE_STALL, _MIPIC_STOP_STATE_STALL)
9283  #define  STOP_STATE_STALL_COUNTER_SHIFT			0
9284  #define  STOP_STATE_STALL_COUNTER_MASK			(0xff << 0)
9285  
9286  #define _MIPIA_INTR_STAT_REG_1		(dev_priv->mipi_mmio_base + 0xb090)
9287  #define _MIPIC_INTR_STAT_REG_1		(dev_priv->mipi_mmio_base + 0xb890)
9288  #define MIPI_INTR_STAT_REG_1(port)	_MMIO_MIPI(port, _MIPIA_INTR_STAT_REG_1, _MIPIC_INTR_STAT_REG_1)
9289  #define _MIPIA_INTR_EN_REG_1		(dev_priv->mipi_mmio_base + 0xb094)
9290  #define _MIPIC_INTR_EN_REG_1		(dev_priv->mipi_mmio_base + 0xb894)
9291  #define MIPI_INTR_EN_REG_1(port)	_MMIO_MIPI(port, _MIPIA_INTR_EN_REG_1, _MIPIC_INTR_EN_REG_1)
9292  #define  RX_CONTENTION_DETECTED				(1 << 0)
9293  
9294  /* XXX: only pipe A ?!? */
9295  #define MIPIA_DBI_TYPEC_CTRL		(dev_priv->mipi_mmio_base + 0xb100)
9296  #define  DBI_TYPEC_ENABLE				(1 << 31)
9297  #define  DBI_TYPEC_WIP					(1 << 30)
9298  #define  DBI_TYPEC_OPTION_SHIFT				28
9299  #define  DBI_TYPEC_OPTION_MASK				(3 << 28)
9300  #define  DBI_TYPEC_FREQ_SHIFT				24
9301  #define  DBI_TYPEC_FREQ_MASK				(0xf << 24)
9302  #define  DBI_TYPEC_OVERRIDE				(1 << 8)
9303  #define  DBI_TYPEC_OVERRIDE_COUNTER_SHIFT		0
9304  #define  DBI_TYPEC_OVERRIDE_COUNTER_MASK		(0xff << 0)
9305  
9306  
9307  /* MIPI adapter registers */
9308  
9309  #define _MIPIA_CTRL			(dev_priv->mipi_mmio_base + 0xb104)
9310  #define _MIPIC_CTRL			(dev_priv->mipi_mmio_base + 0xb904)
9311  #define MIPI_CTRL(port)			_MMIO_MIPI(port, _MIPIA_CTRL, _MIPIC_CTRL)
9312  #define  ESCAPE_CLOCK_DIVIDER_SHIFT			5 /* A only */
9313  #define  ESCAPE_CLOCK_DIVIDER_MASK			(3 << 5)
9314  #define  ESCAPE_CLOCK_DIVIDER_1				(0 << 5)
9315  #define  ESCAPE_CLOCK_DIVIDER_2				(1 << 5)
9316  #define  ESCAPE_CLOCK_DIVIDER_4				(2 << 5)
9317  #define  READ_REQUEST_PRIORITY_SHIFT			3
9318  #define  READ_REQUEST_PRIORITY_MASK			(3 << 3)
9319  #define  READ_REQUEST_PRIORITY_LOW			(0 << 3)
9320  #define  READ_REQUEST_PRIORITY_HIGH			(3 << 3)
9321  #define  RGB_FLIP_TO_BGR				(1 << 2)
9322  
9323  #define  BXT_PIPE_SELECT_SHIFT				7
9324  #define  BXT_PIPE_SELECT_MASK				(7 << 7)
9325  #define  BXT_PIPE_SELECT(pipe)				((pipe) << 7)
9326  #define  GLK_PHY_STATUS_PORT_READY			(1 << 31) /* RO */
9327  #define  GLK_ULPS_NOT_ACTIVE				(1 << 30) /* RO */
9328  #define  GLK_MIPIIO_RESET_RELEASED			(1 << 28)
9329  #define  GLK_CLOCK_LANE_STOP_STATE			(1 << 27) /* RO */
9330  #define  GLK_DATA_LANE_STOP_STATE			(1 << 26) /* RO */
9331  #define  GLK_LP_WAKE					(1 << 22)
9332  #define  GLK_LP11_LOW_PWR_MODE				(1 << 21)
9333  #define  GLK_LP00_LOW_PWR_MODE				(1 << 20)
9334  #define  GLK_FIREWALL_ENABLE				(1 << 16)
9335  #define  BXT_PIXEL_OVERLAP_CNT_MASK			(0xf << 10)
9336  #define  BXT_PIXEL_OVERLAP_CNT_SHIFT			10
9337  #define  BXT_DSC_ENABLE					(1 << 3)
9338  #define  BXT_RGB_FLIP					(1 << 2)
9339  #define  GLK_MIPIIO_PORT_POWERED			(1 << 1) /* RO */
9340  #define  GLK_MIPIIO_ENABLE				(1 << 0)
9341  
9342  #define _MIPIA_DATA_ADDRESS		(dev_priv->mipi_mmio_base + 0xb108)
9343  #define _MIPIC_DATA_ADDRESS		(dev_priv->mipi_mmio_base + 0xb908)
9344  #define MIPI_DATA_ADDRESS(port)		_MMIO_MIPI(port, _MIPIA_DATA_ADDRESS, _MIPIC_DATA_ADDRESS)
9345  #define  DATA_MEM_ADDRESS_SHIFT				5
9346  #define  DATA_MEM_ADDRESS_MASK				(0x7ffffff << 5)
9347  #define  DATA_VALID					(1 << 0)
9348  
9349  #define _MIPIA_DATA_LENGTH		(dev_priv->mipi_mmio_base + 0xb10c)
9350  #define _MIPIC_DATA_LENGTH		(dev_priv->mipi_mmio_base + 0xb90c)
9351  #define MIPI_DATA_LENGTH(port)		_MMIO_MIPI(port, _MIPIA_DATA_LENGTH, _MIPIC_DATA_LENGTH)
9352  #define  DATA_LENGTH_SHIFT				0
9353  #define  DATA_LENGTH_MASK				(0xfffff << 0)
9354  
9355  #define _MIPIA_COMMAND_ADDRESS		(dev_priv->mipi_mmio_base + 0xb110)
9356  #define _MIPIC_COMMAND_ADDRESS		(dev_priv->mipi_mmio_base + 0xb910)
9357  #define MIPI_COMMAND_ADDRESS(port)	_MMIO_MIPI(port, _MIPIA_COMMAND_ADDRESS, _MIPIC_COMMAND_ADDRESS)
9358  #define  COMMAND_MEM_ADDRESS_SHIFT			5
9359  #define  COMMAND_MEM_ADDRESS_MASK			(0x7ffffff << 5)
9360  #define  AUTO_PWG_ENABLE				(1 << 2)
9361  #define  MEMORY_WRITE_DATA_FROM_PIPE_RENDERING		(1 << 1)
9362  #define  COMMAND_VALID					(1 << 0)
9363  
9364  #define _MIPIA_COMMAND_LENGTH		(dev_priv->mipi_mmio_base + 0xb114)
9365  #define _MIPIC_COMMAND_LENGTH		(dev_priv->mipi_mmio_base + 0xb914)
9366  #define MIPI_COMMAND_LENGTH(port)	_MMIO_MIPI(port, _MIPIA_COMMAND_LENGTH, _MIPIC_COMMAND_LENGTH)
9367  #define  COMMAND_LENGTH_SHIFT(n)			(8 * (n)) /* n: 0...3 */
9368  #define  COMMAND_LENGTH_MASK(n)				(0xff << (8 * (n)))
9369  
9370  #define _MIPIA_READ_DATA_RETURN0	(dev_priv->mipi_mmio_base + 0xb118)
9371  #define _MIPIC_READ_DATA_RETURN0	(dev_priv->mipi_mmio_base + 0xb918)
9372  #define MIPI_READ_DATA_RETURN(port, n) _MMIO(_MIPI(port, _MIPIA_READ_DATA_RETURN0, _MIPIC_READ_DATA_RETURN0) + 4 * (n)) /* n: 0...7 */
9373  
9374  #define _MIPIA_READ_DATA_VALID		(dev_priv->mipi_mmio_base + 0xb138)
9375  #define _MIPIC_READ_DATA_VALID		(dev_priv->mipi_mmio_base + 0xb938)
9376  #define MIPI_READ_DATA_VALID(port)	_MMIO_MIPI(port, _MIPIA_READ_DATA_VALID, _MIPIC_READ_DATA_VALID)
9377  #define  READ_DATA_VALID(n)				(1 << (n))
9378  
9379  /* For UMS only (deprecated): */
9380  #define _PALETTE_A (dev_priv->info.display_mmio_offset + 0xa000)
9381  #define _PALETTE_B (dev_priv->info.display_mmio_offset + 0xa800)
9382  
9383  /* MOCS (Memory Object Control State) registers */
9384  #define GEN9_LNCFCMOCS(i)	_MMIO(0xb020 + (i) * 4)	/* L3 Cache Control */
9385  
9386  #define GEN9_GFX_MOCS(i)	_MMIO(0xc800 + (i) * 4)	/* Graphics MOCS registers */
9387  #define GEN9_MFX0_MOCS(i)	_MMIO(0xc900 + (i) * 4)	/* Media 0 MOCS registers */
9388  #define GEN9_MFX1_MOCS(i)	_MMIO(0xca00 + (i) * 4)	/* Media 1 MOCS registers */
9389  #define GEN9_VEBOX_MOCS(i)	_MMIO(0xcb00 + (i) * 4)	/* Video MOCS registers */
9390  #define GEN9_BLT_MOCS(i)	_MMIO(0xcc00 + (i) * 4)	/* Blitter MOCS registers */
9391  
9392  /* gamt regs */
9393  #define GEN8_L3_LRA_1_GPGPU _MMIO(0x4dd4)
9394  #define   GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_BDW  0x67F1427F /* max/min for LRA1/2 */
9395  #define   GEN8_L3_LRA_1_GPGPU_DEFAULT_VALUE_CHV  0x5FF101FF /* max/min for LRA1/2 */
9396  #define   GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_SKL  0x67F1427F /*    "        " */
9397  #define   GEN9_L3_LRA_1_GPGPU_DEFAULT_VALUE_BXT  0x5FF101FF /*    "        " */
9398  
9399  #endif /* _I915_REG_H_ */
9400