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 #include "i915_reg_defs.h" 29 #include "display/intel_display_reg_defs.h" 30 31 /** 32 * DOC: The i915 register macro definition style guide 33 * 34 * Follow the style described here for new macros, and while changing existing 35 * macros. Do **not** mass change existing definitions just to update the style. 36 * 37 * File Layout 38 * ~~~~~~~~~~~ 39 * 40 * Keep helper macros near the top. For example, _PIPE() and friends. 41 * 42 * Prefix macros that generally should not be used outside of this file with 43 * underscore '_'. For example, _PIPE() and friends, single instances of 44 * registers that are defined solely for the use by function-like macros. 45 * 46 * Avoid using the underscore prefixed macros outside of this file. There are 47 * exceptions, but keep them to a minimum. 48 * 49 * There are two basic types of register definitions: Single registers and 50 * register groups. Register groups are registers which have two or more 51 * instances, for example one per pipe, port, transcoder, etc. Register groups 52 * should be defined using function-like macros. 53 * 54 * For single registers, define the register offset first, followed by register 55 * contents. 56 * 57 * For register groups, define the register instance offsets first, prefixed 58 * with underscore, followed by a function-like macro choosing the right 59 * instance based on the parameter, followed by register contents. 60 * 61 * Define the register contents (i.e. bit and bit field macros) from most 62 * significant to least significant bit. Indent the register content macros 63 * using two extra spaces between ``#define`` and the macro name. 64 * 65 * Define bit fields using ``REG_GENMASK(h, l)``. Define bit field contents 66 * using ``REG_FIELD_PREP(mask, value)``. This will define the values already 67 * shifted in place, so they can be directly OR'd together. For convenience, 68 * function-like macros may be used to define bit fields, but do note that the 69 * macros may be needed to read as well as write the register contents. 70 * 71 * Define bits using ``REG_BIT(N)``. Do **not** add ``_BIT`` suffix to the name. 72 * 73 * Group the register and its contents together without blank lines, separate 74 * from other registers and their contents with one blank line. 75 * 76 * Indent macro values from macro names using TABs. Align values vertically. Use 77 * braces in macro values as needed to avoid unintended precedence after macro 78 * substitution. Use spaces in macro values according to kernel coding 79 * style. Use lower case in hexadecimal values. 80 * 81 * Naming 82 * ~~~~~~ 83 * 84 * Try to name registers according to the specs. If the register name changes in 85 * the specs from platform to another, stick to the original name. 86 * 87 * Try to re-use existing register macro definitions. Only add new macros for 88 * new register offsets, or when the register contents have changed enough to 89 * warrant a full redefinition. 90 * 91 * When a register macro changes for a new platform, prefix the new macro using 92 * the platform acronym or generation. For example, ``SKL_`` or ``GEN8_``. The 93 * prefix signifies the start platform/generation using the register. 94 * 95 * When a bit (field) macro changes or gets added for a new platform, while 96 * retaining the existing register macro, add a platform acronym or generation 97 * suffix to the name. For example, ``_SKL`` or ``_GEN8``. 98 * 99 * Examples 100 * ~~~~~~~~ 101 * 102 * (Note that the values in the example are indented using spaces instead of 103 * TABs to avoid misalignment in generated documentation. Use TABs in the 104 * definitions.):: 105 * 106 * #define _FOO_A 0xf000 107 * #define _FOO_B 0xf001 108 * #define FOO(pipe) _MMIO_PIPE(pipe, _FOO_A, _FOO_B) 109 * #define FOO_ENABLE REG_BIT(31) 110 * #define FOO_MODE_MASK REG_GENMASK(19, 16) 111 * #define FOO_MODE_BAR REG_FIELD_PREP(FOO_MODE_MASK, 0) 112 * #define FOO_MODE_BAZ REG_FIELD_PREP(FOO_MODE_MASK, 1) 113 * #define FOO_MODE_QUX_SNB REG_FIELD_PREP(FOO_MODE_MASK, 2) 114 * 115 * #define BAR _MMIO(0xb000) 116 * #define GEN8_BAR _MMIO(0xb888) 117 */ 118 119 #define GU_CNTL_PROTECTED _MMIO(0x10100C) 120 #define DEPRESENT REG_BIT(9) 121 122 #define GU_CNTL _MMIO(0x101010) 123 #define LMEM_INIT REG_BIT(7) 124 #define DRIVERFLR REG_BIT(31) 125 #define GU_DEBUG _MMIO(0x101018) 126 #define DRIVERFLR_STATUS REG_BIT(31) 127 128 #define GEN6_STOLEN_RESERVED _MMIO(0x1082C0) 129 #define GEN6_STOLEN_RESERVED_ADDR_MASK (0xFFF << 20) 130 #define GEN7_STOLEN_RESERVED_ADDR_MASK (0x3FFF << 18) 131 #define GEN6_STOLEN_RESERVED_SIZE_MASK (3 << 4) 132 #define GEN6_STOLEN_RESERVED_1M (0 << 4) 133 #define GEN6_STOLEN_RESERVED_512K (1 << 4) 134 #define GEN6_STOLEN_RESERVED_256K (2 << 4) 135 #define GEN6_STOLEN_RESERVED_128K (3 << 4) 136 #define GEN7_STOLEN_RESERVED_SIZE_MASK (1 << 5) 137 #define GEN7_STOLEN_RESERVED_1M (0 << 5) 138 #define GEN7_STOLEN_RESERVED_256K (1 << 5) 139 #define GEN8_STOLEN_RESERVED_SIZE_MASK (3 << 7) 140 #define GEN8_STOLEN_RESERVED_1M (0 << 7) 141 #define GEN8_STOLEN_RESERVED_2M (1 << 7) 142 #define GEN8_STOLEN_RESERVED_4M (2 << 7) 143 #define GEN8_STOLEN_RESERVED_8M (3 << 7) 144 #define GEN6_STOLEN_RESERVED_ENABLE (1 << 0) 145 #define GEN11_STOLEN_RESERVED_ADDR_MASK (0xFFFFFFFFFFFULL << 20) 146 147 #define _GEN7_PIPEA_DE_LOAD_SL 0x70068 148 #define _GEN7_PIPEB_DE_LOAD_SL 0x71068 149 #define GEN7_PIPE_DE_LOAD_SL(pipe) _MMIO_PIPE(pipe, _GEN7_PIPEA_DE_LOAD_SL, _GEN7_PIPEB_DE_LOAD_SL) 150 151 /* 152 * Reset registers 153 */ 154 #define DEBUG_RESET_I830 _MMIO(0x6070) 155 #define DEBUG_RESET_FULL (1 << 7) 156 #define DEBUG_RESET_RENDER (1 << 8) 157 #define DEBUG_RESET_DISPLAY (1 << 9) 158 159 /* 160 * IOSF sideband 161 */ 162 #define VLV_IOSF_DOORBELL_REQ _MMIO(VLV_DISPLAY_BASE + 0x2100) 163 #define IOSF_DEVFN_SHIFT 24 164 #define IOSF_OPCODE_SHIFT 16 165 #define IOSF_PORT_SHIFT 8 166 #define IOSF_BYTE_ENABLES_SHIFT 4 167 #define IOSF_BAR_SHIFT 1 168 #define IOSF_SB_BUSY (1 << 0) 169 #define IOSF_PORT_BUNIT 0x03 170 #define IOSF_PORT_PUNIT 0x04 171 #define IOSF_PORT_NC 0x11 172 #define IOSF_PORT_DPIO 0x12 173 #define IOSF_PORT_GPIO_NC 0x13 174 #define IOSF_PORT_CCK 0x14 175 #define IOSF_PORT_DPIO_2 0x1a 176 #define IOSF_PORT_FLISDSI 0x1b 177 #define IOSF_PORT_GPIO_SC 0x48 178 #define IOSF_PORT_GPIO_SUS 0xa8 179 #define IOSF_PORT_CCU 0xa9 180 #define CHV_IOSF_PORT_GPIO_N 0x13 181 #define CHV_IOSF_PORT_GPIO_SE 0x48 182 #define CHV_IOSF_PORT_GPIO_E 0xa8 183 #define CHV_IOSF_PORT_GPIO_SW 0xb2 184 #define VLV_IOSF_DATA _MMIO(VLV_DISPLAY_BASE + 0x2104) 185 #define VLV_IOSF_ADDR _MMIO(VLV_DISPLAY_BASE + 0x2108) 186 187 /* DPIO registers */ 188 #define DPIO_DEVFN 0 189 190 #define DPIO_CTL _MMIO(VLV_DISPLAY_BASE + 0x2110) 191 #define DPIO_MODSEL1 (1 << 3) /* if ref clk b == 27 */ 192 #define DPIO_MODSEL0 (1 << 2) /* if ref clk a == 27 */ 193 #define DPIO_SFR_BYPASS (1 << 1) 194 #define DPIO_CMNRST (1 << 0) 195 196 #define BXT_P_CR_GT_DISP_PWRON _MMIO(0x138090) 197 #define MIPIO_RST_CTRL (1 << 2) 198 199 #define _BXT_PHY_CTL_DDI_A 0x64C00 200 #define _BXT_PHY_CTL_DDI_B 0x64C10 201 #define _BXT_PHY_CTL_DDI_C 0x64C20 202 #define BXT_PHY_CMNLANE_POWERDOWN_ACK (1 << 10) 203 #define BXT_PHY_LANE_POWERDOWN_ACK (1 << 9) 204 #define BXT_PHY_LANE_ENABLED (1 << 8) 205 #define BXT_PHY_CTL(port) _MMIO_PORT(port, _BXT_PHY_CTL_DDI_A, \ 206 _BXT_PHY_CTL_DDI_B) 207 208 #define _PHY_CTL_FAMILY_DDI 0x64C90 209 #define _PHY_CTL_FAMILY_EDP 0x64C80 210 #define _PHY_CTL_FAMILY_DDI_C 0x64CA0 211 #define COMMON_RESET_DIS (1 << 31) 212 #define BXT_PHY_CTL_FAMILY(phy) \ 213 _MMIO(_PICK_EVEN_2RANGES(phy, 1, \ 214 _PHY_CTL_FAMILY_DDI, _PHY_CTL_FAMILY_DDI, \ 215 _PHY_CTL_FAMILY_EDP, _PHY_CTL_FAMILY_DDI_C)) 216 217 /* UAIMI scratch pad register 1 */ 218 #define UAIMI_SPR1 _MMIO(0x4F074) 219 /* SKL VccIO mask */ 220 #define SKL_VCCIO_MASK 0x1 221 /* SKL balance leg register */ 222 #define DISPIO_CR_TX_BMU_CR0 _MMIO(0x6C00C) 223 /* I_boost values */ 224 #define BALANCE_LEG_SHIFT(port) (8 + 3 * (port)) 225 #define BALANCE_LEG_MASK(port) (7 << (8 + 3 * (port))) 226 /* Balance leg disable bits */ 227 #define BALANCE_LEG_DISABLE_SHIFT 23 228 #define BALANCE_LEG_DISABLE(port) (1 << (23 + (port))) 229 230 /* 231 * Fence registers 232 * [0-7] @ 0x2000 gen2,gen3 233 * [8-15] @ 0x3000 945,g33,pnv 234 * 235 * [0-15] @ 0x3000 gen4,gen5 236 * 237 * [0-15] @ 0x100000 gen6,vlv,chv 238 * [0-31] @ 0x100000 gen7+ 239 */ 240 #define FENCE_REG(i) _MMIO(0x2000 + (((i) & 8) << 9) + ((i) & 7) * 4) 241 #define I830_FENCE_START_MASK 0x07f80000 242 #define I830_FENCE_TILING_Y_SHIFT 12 243 #define I830_FENCE_SIZE_BITS(size) ((ffs((size) >> 19) - 1) << 8) 244 #define I830_FENCE_PITCH_SHIFT 4 245 #define I830_FENCE_REG_VALID (1 << 0) 246 #define I915_FENCE_MAX_PITCH_VAL 4 247 #define I830_FENCE_MAX_PITCH_VAL 6 248 #define I830_FENCE_MAX_SIZE_VAL (1 << 8) 249 250 #define I915_FENCE_START_MASK 0x0ff00000 251 #define I915_FENCE_SIZE_BITS(size) ((ffs((size) >> 20) - 1) << 8) 252 253 #define FENCE_REG_965_LO(i) _MMIO(0x03000 + (i) * 8) 254 #define FENCE_REG_965_HI(i) _MMIO(0x03000 + (i) * 8 + 4) 255 #define I965_FENCE_PITCH_SHIFT 2 256 #define I965_FENCE_TILING_Y_SHIFT 1 257 #define I965_FENCE_REG_VALID (1 << 0) 258 #define I965_FENCE_MAX_PITCH_VAL 0x0400 259 260 #define FENCE_REG_GEN6_LO(i) _MMIO(0x100000 + (i) * 8) 261 #define FENCE_REG_GEN6_HI(i) _MMIO(0x100000 + (i) * 8 + 4) 262 #define GEN6_FENCE_PITCH_SHIFT 32 263 #define GEN7_FENCE_MAX_PITCH_VAL 0x0800 264 265 266 /* control register for cpu gtt access */ 267 #define TILECTL _MMIO(0x101000) 268 #define TILECTL_SWZCTL (1 << 0) 269 #define TILECTL_TLBPF (1 << 1) 270 #define TILECTL_TLB_PREFETCH_DIS (1 << 2) 271 #define TILECTL_BACKSNOOP_DIS (1 << 3) 272 273 /* 274 * Instruction and interrupt control regs 275 */ 276 #define PGTBL_CTL _MMIO(0x02020) 277 #define PGTBL_ADDRESS_LO_MASK 0xfffff000 /* bits [31:12] */ 278 #define PGTBL_ADDRESS_HI_MASK 0x000000f0 /* bits [35:32] (gen4) */ 279 #define PGTBL_ER _MMIO(0x02024) 280 #define PRB0_BASE (0x2030 - 0x30) 281 #define PRB1_BASE (0x2040 - 0x30) /* 830,gen3 */ 282 #define PRB2_BASE (0x2050 - 0x30) /* gen3 */ 283 #define SRB0_BASE (0x2100 - 0x30) /* gen2 */ 284 #define SRB1_BASE (0x2110 - 0x30) /* gen2 */ 285 #define SRB2_BASE (0x2120 - 0x30) /* 830 */ 286 #define SRB3_BASE (0x2130 - 0x30) /* 830 */ 287 #define RENDER_RING_BASE 0x02000 288 #define BSD_RING_BASE 0x04000 289 #define GEN6_BSD_RING_BASE 0x12000 290 #define GEN8_BSD2_RING_BASE 0x1c000 291 #define GEN11_BSD_RING_BASE 0x1c0000 292 #define GEN11_BSD2_RING_BASE 0x1c4000 293 #define GEN11_BSD3_RING_BASE 0x1d0000 294 #define GEN11_BSD4_RING_BASE 0x1d4000 295 #define XEHP_BSD5_RING_BASE 0x1e0000 296 #define XEHP_BSD6_RING_BASE 0x1e4000 297 #define XEHP_BSD7_RING_BASE 0x1f0000 298 #define XEHP_BSD8_RING_BASE 0x1f4000 299 #define VEBOX_RING_BASE 0x1a000 300 #define GEN11_VEBOX_RING_BASE 0x1c8000 301 #define GEN11_VEBOX2_RING_BASE 0x1d8000 302 #define XEHP_VEBOX3_RING_BASE 0x1e8000 303 #define XEHP_VEBOX4_RING_BASE 0x1f8000 304 #define MTL_GSC_RING_BASE 0x11a000 305 #define GEN12_COMPUTE0_RING_BASE 0x1a000 306 #define GEN12_COMPUTE1_RING_BASE 0x1c000 307 #define GEN12_COMPUTE2_RING_BASE 0x1e000 308 #define GEN12_COMPUTE3_RING_BASE 0x26000 309 #define BLT_RING_BASE 0x22000 310 #define XEHPC_BCS1_RING_BASE 0x3e0000 311 #define XEHPC_BCS2_RING_BASE 0x3e2000 312 #define XEHPC_BCS3_RING_BASE 0x3e4000 313 #define XEHPC_BCS4_RING_BASE 0x3e6000 314 #define XEHPC_BCS5_RING_BASE 0x3e8000 315 #define XEHPC_BCS6_RING_BASE 0x3ea000 316 #define XEHPC_BCS7_RING_BASE 0x3ec000 317 #define XEHPC_BCS8_RING_BASE 0x3ee000 318 #define DG1_GSC_HECI1_BASE 0x00258000 319 #define DG1_GSC_HECI2_BASE 0x00259000 320 #define DG2_GSC_HECI1_BASE 0x00373000 321 #define DG2_GSC_HECI2_BASE 0x00374000 322 #define MTL_GSC_HECI1_BASE 0x00116000 323 #define MTL_GSC_HECI2_BASE 0x00117000 324 325 #define HECI_H_CSR(base) _MMIO((base) + 0x4) 326 #define HECI_H_CSR_IE REG_BIT(0) 327 #define HECI_H_CSR_IS REG_BIT(1) 328 #define HECI_H_CSR_IG REG_BIT(2) 329 #define HECI_H_CSR_RDY REG_BIT(3) 330 #define HECI_H_CSR_RST REG_BIT(4) 331 332 #define HECI_H_GS1(base) _MMIO((base) + 0xc4c) 333 #define HECI_H_GS1_ER_PREP REG_BIT(0) 334 335 /* 336 * The FWSTS register values are FW defined and can be different between 337 * HECI1 and HECI2 338 */ 339 #define HECI_FWSTS1 0xc40 340 #define HECI1_FWSTS1_CURRENT_STATE REG_GENMASK(3, 0) 341 #define HECI1_FWSTS1_CURRENT_STATE_RESET 0 342 #define HECI1_FWSTS1_PROXY_STATE_NORMAL 5 343 #define HECI1_FWSTS1_INIT_COMPLETE REG_BIT(9) 344 #define HECI_FWSTS2 0xc48 345 #define HECI_FWSTS3 0xc60 346 #define HECI_FWSTS4 0xc64 347 #define HECI_FWSTS5 0xc68 348 #define HECI1_FWSTS5_HUC_AUTH_DONE (1 << 19) 349 #define HECI_FWSTS6 0xc6c 350 351 /* the FWSTS regs are 1-based, so we use -base for index 0 to get an invalid reg */ 352 #define HECI_FWSTS(base, x) _MMIO((base) + _PICK(x, -(base), \ 353 HECI_FWSTS1, \ 354 HECI_FWSTS2, \ 355 HECI_FWSTS3, \ 356 HECI_FWSTS4, \ 357 HECI_FWSTS5, \ 358 HECI_FWSTS6)) 359 360 #define HSW_GTT_CACHE_EN _MMIO(0x4024) 361 #define GTT_CACHE_EN_ALL 0xF0007FFF 362 #define GEN7_WR_WATERMARK _MMIO(0x4028) 363 #define GEN7_GFX_PRIO_CTRL _MMIO(0x402C) 364 #define ARB_MODE _MMIO(0x4030) 365 #define ARB_MODE_SWIZZLE_SNB (1 << 4) 366 #define ARB_MODE_SWIZZLE_IVB (1 << 5) 367 #define GEN7_GFX_PEND_TLB0 _MMIO(0x4034) 368 #define GEN7_GFX_PEND_TLB1 _MMIO(0x4038) 369 /* L3, CVS, ZTLB, RCC, CASC LRA min, max values */ 370 #define GEN7_LRA_LIMITS(i) _MMIO(0x403C + (i) * 4) 371 #define GEN7_LRA_LIMITS_REG_NUM 13 372 #define GEN7_MEDIA_MAX_REQ_COUNT _MMIO(0x4070) 373 #define GEN7_GFX_MAX_REQ_COUNT _MMIO(0x4074) 374 375 #define GEN7_ERR_INT _MMIO(0x44040) 376 #define ERR_INT_POISON (1 << 31) 377 #define ERR_INT_MMIO_UNCLAIMED (1 << 13) 378 #define ERR_INT_PIPE_CRC_DONE_C (1 << 8) 379 #define ERR_INT_FIFO_UNDERRUN_C (1 << 6) 380 #define ERR_INT_PIPE_CRC_DONE_B (1 << 5) 381 #define ERR_INT_FIFO_UNDERRUN_B (1 << 3) 382 #define ERR_INT_PIPE_CRC_DONE_A (1 << 2) 383 #define ERR_INT_PIPE_CRC_DONE(pipe) (1 << (2 + (pipe) * 3)) 384 #define ERR_INT_FIFO_UNDERRUN_A (1 << 0) 385 #define ERR_INT_FIFO_UNDERRUN(pipe) (1 << ((pipe) * 3)) 386 387 #define FPGA_DBG _MMIO(0x42300) 388 #define FPGA_DBG_RM_NOCLAIM REG_BIT(31) 389 390 #define CLAIM_ER _MMIO(VLV_DISPLAY_BASE + 0x2028) 391 #define CLAIM_ER_CLR REG_BIT(31) 392 #define CLAIM_ER_OVERFLOW REG_BIT(16) 393 #define CLAIM_ER_CTR_MASK REG_GENMASK(15, 0) 394 395 #define DERRMR _MMIO(0x44050) 396 /* Note that HBLANK events are reserved on bdw+ */ 397 #define DERRMR_PIPEA_SCANLINE (1 << 0) 398 #define DERRMR_PIPEA_PRI_FLIP_DONE (1 << 1) 399 #define DERRMR_PIPEA_SPR_FLIP_DONE (1 << 2) 400 #define DERRMR_PIPEA_VBLANK (1 << 3) 401 #define DERRMR_PIPEA_HBLANK (1 << 5) 402 #define DERRMR_PIPEB_SCANLINE (1 << 8) 403 #define DERRMR_PIPEB_PRI_FLIP_DONE (1 << 9) 404 #define DERRMR_PIPEB_SPR_FLIP_DONE (1 << 10) 405 #define DERRMR_PIPEB_VBLANK (1 << 11) 406 #define DERRMR_PIPEB_HBLANK (1 << 13) 407 /* Note that PIPEC is not a simple translation of PIPEA/PIPEB */ 408 #define DERRMR_PIPEC_SCANLINE (1 << 14) 409 #define DERRMR_PIPEC_PRI_FLIP_DONE (1 << 15) 410 #define DERRMR_PIPEC_SPR_FLIP_DONE (1 << 20) 411 #define DERRMR_PIPEC_VBLANK (1 << 21) 412 #define DERRMR_PIPEC_HBLANK (1 << 22) 413 414 #define VLV_GU_CTL0 _MMIO(VLV_DISPLAY_BASE + 0x2030) 415 #define VLV_GU_CTL1 _MMIO(VLV_DISPLAY_BASE + 0x2034) 416 #define SCPD0 _MMIO(0x209c) /* 915+ only */ 417 #define SCPD_FBC_IGNORE_3D (1 << 6) 418 #define CSTATE_RENDER_CLOCK_GATE_DISABLE (1 << 5) 419 #define GEN2_IER _MMIO(0x20a0) 420 #define GEN2_IIR _MMIO(0x20a4) 421 #define GEN2_IMR _MMIO(0x20a8) 422 #define GEN2_ISR _MMIO(0x20ac) 423 424 #define GEN2_IRQ_REGS I915_IRQ_REGS(GEN2_IMR, \ 425 GEN2_IER, \ 426 GEN2_IIR) 427 428 #define VLV_GUNIT_CLOCK_GATE _MMIO(VLV_DISPLAY_BASE + 0x2060) 429 #define GINT_DIS (1 << 22) 430 #define GCFG_DIS (1 << 8) 431 #define VLV_GUNIT_CLOCK_GATE2 _MMIO(VLV_DISPLAY_BASE + 0x2064) 432 #define VLV_IIR_RW _MMIO(VLV_DISPLAY_BASE + 0x2084) 433 #define VLV_IER _MMIO(VLV_DISPLAY_BASE + 0x20a0) 434 #define VLV_IIR _MMIO(VLV_DISPLAY_BASE + 0x20a4) 435 #define VLV_IMR _MMIO(VLV_DISPLAY_BASE + 0x20a8) 436 #define VLV_ISR _MMIO(VLV_DISPLAY_BASE + 0x20ac) 437 #define VLV_PCBR _MMIO(VLV_DISPLAY_BASE + 0x2120) 438 #define VLV_PCBR_ADDR_SHIFT 12 439 440 #define VLV_IRQ_REGS I915_IRQ_REGS(VLV_IMR, \ 441 VLV_IER, \ 442 VLV_IIR) 443 444 #define DISPLAY_PLANE_FLIP_PENDING(plane) (1 << (11 - (plane))) /* A and B only */ 445 #define EIR _MMIO(0x20b0) 446 #define EMR _MMIO(0x20b4) 447 #define ESR _MMIO(0x20b8) 448 #define GM45_ERROR_PAGE_TABLE (1 << 5) 449 #define GM45_ERROR_MEM_PRIV (1 << 4) 450 #define I915_ERROR_PAGE_TABLE (1 << 4) 451 #define GM45_ERROR_CP_PRIV (1 << 3) 452 #define I915_ERROR_MEMORY_REFRESH (1 << 1) 453 #define I915_ERROR_INSTRUCTION (1 << 0) 454 #define INSTPM _MMIO(0x20c0) 455 #define INSTPM_SELF_EN (1 << 12) /* 915GM only */ 456 #define INSTPM_AGPBUSY_INT_EN (1 << 11) /* gen3: when disabled, pending interrupts 457 will not assert AGPBUSY# and will only 458 be delivered when out of C3. */ 459 #define INSTPM_FORCE_ORDERING (1 << 7) /* GEN6+ */ 460 #define INSTPM_TLB_INVALIDATE (1 << 9) 461 #define INSTPM_SYNC_FLUSH (1 << 5) 462 #define MEM_MODE _MMIO(0x20cc) 463 #define MEM_DISPLAY_B_TRICKLE_FEED_DISABLE (1 << 3) /* 830 only */ 464 #define MEM_DISPLAY_A_TRICKLE_FEED_DISABLE (1 << 2) /* 830/845 only */ 465 #define MEM_DISPLAY_TRICKLE_FEED_DISABLE (1 << 2) /* 85x only */ 466 #define FW_BLC _MMIO(0x20d8) 467 #define FW_BLC2 _MMIO(0x20dc) 468 #define FW_BLC_SELF _MMIO(0x20e0) /* 915+ only */ 469 #define FW_BLC_SELF_EN_MASK (1 << 31) 470 #define FW_BLC_SELF_FIFO_MASK (1 << 16) /* 945 only */ 471 #define FW_BLC_SELF_EN (1 << 15) /* 945 only */ 472 #define MM_BURST_LENGTH 0x00700000 473 #define MM_FIFO_WATERMARK 0x0001F000 474 #define LM_BURST_LENGTH 0x00000700 475 #define LM_FIFO_WATERMARK 0x0000001F 476 #define MI_ARB_STATE _MMIO(0x20e4) /* 915+ only */ 477 478 #define _MBUS_ABOX0_CTL 0x45038 479 #define _MBUS_ABOX1_CTL 0x45048 480 #define _MBUS_ABOX2_CTL 0x4504C 481 #define MBUS_ABOX_CTL(x) \ 482 _MMIO(_PICK_EVEN_2RANGES(x, 2, \ 483 _MBUS_ABOX0_CTL, _MBUS_ABOX1_CTL, \ 484 _MBUS_ABOX2_CTL, _MBUS_ABOX2_CTL)) 485 486 #define MBUS_ABOX_BW_CREDIT_MASK (3 << 20) 487 #define MBUS_ABOX_BW_CREDIT(x) ((x) << 20) 488 #define MBUS_ABOX_B_CREDIT_MASK (0xF << 16) 489 #define MBUS_ABOX_B_CREDIT(x) ((x) << 16) 490 #define MBUS_ABOX_BT_CREDIT_POOL2_MASK (0x1F << 8) 491 #define MBUS_ABOX_BT_CREDIT_POOL2(x) ((x) << 8) 492 #define MBUS_ABOX_BT_CREDIT_POOL1_MASK (0x1F << 0) 493 #define MBUS_ABOX_BT_CREDIT_POOL1(x) ((x) << 0) 494 495 /* Make render/texture TLB fetches lower priorty than associated data 496 * fetches. This is not turned on by default 497 */ 498 #define MI_ARB_RENDER_TLB_LOW_PRIORITY (1 << 15) 499 500 /* Isoch request wait on GTT enable (Display A/B/C streams). 501 * Make isoch requests stall on the TLB update. May cause 502 * display underruns (test mode only) 503 */ 504 #define MI_ARB_ISOCH_WAIT_GTT (1 << 14) 505 506 /* Block grant count for isoch requests when block count is 507 * set to a finite value. 508 */ 509 #define MI_ARB_BLOCK_GRANT_MASK (3 << 12) 510 #define MI_ARB_BLOCK_GRANT_8 (0 << 12) /* for 3 display planes */ 511 #define MI_ARB_BLOCK_GRANT_4 (1 << 12) /* for 2 display planes */ 512 #define MI_ARB_BLOCK_GRANT_2 (2 << 12) /* for 1 display plane */ 513 #define MI_ARB_BLOCK_GRANT_0 (3 << 12) /* don't use */ 514 515 /* Enable render writes to complete in C2/C3/C4 power states. 516 * If this isn't enabled, render writes are prevented in low 517 * power states. That seems bad to me. 518 */ 519 #define MI_ARB_C3_LP_WRITE_ENABLE (1 << 11) 520 521 /* This acknowledges an async flip immediately instead 522 * of waiting for 2TLB fetches. 523 */ 524 #define MI_ARB_ASYNC_FLIP_ACK_IMMEDIATE (1 << 10) 525 526 /* Enables non-sequential data reads through arbiter 527 */ 528 #define MI_ARB_DUAL_DATA_PHASE_DISABLE (1 << 9) 529 530 /* Disable FSB snooping of cacheable write cycles from binner/render 531 * command stream 532 */ 533 #define MI_ARB_CACHE_SNOOP_DISABLE (1 << 8) 534 535 /* Arbiter time slice for non-isoch streams */ 536 #define MI_ARB_TIME_SLICE_MASK (7 << 5) 537 #define MI_ARB_TIME_SLICE_1 (0 << 5) 538 #define MI_ARB_TIME_SLICE_2 (1 << 5) 539 #define MI_ARB_TIME_SLICE_4 (2 << 5) 540 #define MI_ARB_TIME_SLICE_6 (3 << 5) 541 #define MI_ARB_TIME_SLICE_8 (4 << 5) 542 #define MI_ARB_TIME_SLICE_10 (5 << 5) 543 #define MI_ARB_TIME_SLICE_14 (6 << 5) 544 #define MI_ARB_TIME_SLICE_16 (7 << 5) 545 546 /* Low priority grace period page size */ 547 #define MI_ARB_LOW_PRIORITY_GRACE_4KB (0 << 4) /* default */ 548 #define MI_ARB_LOW_PRIORITY_GRACE_8KB (1 << 4) 549 550 /* Disable display A/B trickle feed */ 551 #define MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE (1 << 2) 552 553 /* Set display plane priority */ 554 #define MI_ARB_DISPLAY_PRIORITY_A_B (0 << 0) /* display A > display B */ 555 #define MI_ARB_DISPLAY_PRIORITY_B_A (1 << 0) /* display B > display A */ 556 557 #define MI_STATE _MMIO(0x20e4) /* gen2 only */ 558 #define MI_AGPBUSY_INT_EN (1 << 1) /* 85x only */ 559 #define MI_AGPBUSY_830_MODE (1 << 0) /* 85x only */ 560 561 /* On modern GEN architectures interrupt control consists of two sets 562 * of registers. The first set pertains to the ring generating the 563 * interrupt. The second control is for the functional block generating the 564 * interrupt. These are PM, GT, DE, etc. 565 * 566 * Luckily *knocks on wood* all the ring interrupt bits match up with the 567 * GT interrupt bits, so we don't need to duplicate the defines. 568 * 569 * These defines should cover us well from SNB->HSW with minor exceptions 570 * it can also work on ILK. 571 */ 572 #define GT_BLT_FLUSHDW_NOTIFY_INTERRUPT (1 << 26) 573 #define GT_BLT_CS_ERROR_INTERRUPT (1 << 25) 574 #define GT_BLT_USER_INTERRUPT (1 << 22) 575 #define GT_BSD_CS_ERROR_INTERRUPT (1 << 15) 576 #define GT_BSD_USER_INTERRUPT (1 << 12) 577 #define GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1 (1 << 11) /* hsw+; rsvd on snb, ivb, vlv */ 578 #define GT_WAIT_SEMAPHORE_INTERRUPT REG_BIT(11) /* bdw+ */ 579 #define GT_CONTEXT_SWITCH_INTERRUPT (1 << 8) 580 #define GT_RENDER_L3_PARITY_ERROR_INTERRUPT (1 << 5) /* !snb */ 581 #define GT_RENDER_PIPECTL_NOTIFY_INTERRUPT (1 << 4) 582 #define GT_CS_MASTER_ERROR_INTERRUPT REG_BIT(3) 583 #define GT_RENDER_SYNC_STATUS_INTERRUPT (1 << 2) 584 #define GT_RENDER_DEBUG_INTERRUPT (1 << 1) 585 #define GT_RENDER_USER_INTERRUPT (1 << 0) 586 587 #define PM_VEBOX_CS_ERROR_INTERRUPT (1 << 12) /* hsw+ */ 588 #define PM_VEBOX_USER_INTERRUPT (1 << 10) /* hsw+ */ 589 590 #define GT_PARITY_ERROR(dev_priv) \ 591 (GT_RENDER_L3_PARITY_ERROR_INTERRUPT | \ 592 (IS_HASWELL(dev_priv) ? GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1 : 0)) 593 594 /* These are all the "old" interrupts */ 595 #define ILK_BSD_USER_INTERRUPT (1 << 5) 596 597 #define I915_PM_INTERRUPT (1 << 31) 598 #define I915_ISP_INTERRUPT (1 << 22) 599 #define I915_LPE_PIPE_B_INTERRUPT (1 << 21) 600 #define I915_LPE_PIPE_A_INTERRUPT (1 << 20) 601 #define I915_MIPIC_INTERRUPT (1 << 19) 602 #define I915_MIPIA_INTERRUPT (1 << 18) 603 #define I915_PIPE_CONTROL_NOTIFY_INTERRUPT (1 << 18) 604 #define I915_DISPLAY_PORT_INTERRUPT (1 << 17) 605 #define I915_DISPLAY_PIPE_C_HBLANK_INTERRUPT (1 << 16) 606 #define I915_MASTER_ERROR_INTERRUPT (1 << 15) 607 #define I915_DISPLAY_PIPE_B_HBLANK_INTERRUPT (1 << 14) 608 #define I915_GMCH_THERMAL_SENSOR_EVENT_INTERRUPT (1 << 14) /* p-state */ 609 #define I915_DISPLAY_PIPE_A_HBLANK_INTERRUPT (1 << 13) 610 #define I915_HWB_OOM_INTERRUPT (1 << 13) 611 #define I915_LPE_PIPE_C_INTERRUPT (1 << 12) 612 #define I915_SYNC_STATUS_INTERRUPT (1 << 12) 613 #define I915_MISC_INTERRUPT (1 << 11) 614 #define I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT (1 << 11) 615 #define I915_DISPLAY_PIPE_C_VBLANK_INTERRUPT (1 << 10) 616 #define I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT (1 << 10) 617 #define I915_DISPLAY_PIPE_C_EVENT_INTERRUPT (1 << 9) 618 #define I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT (1 << 9) 619 #define I915_DISPLAY_PIPE_C_DPBM_INTERRUPT (1 << 8) 620 #define I915_DISPLAY_PLANE_C_FLIP_PENDING_INTERRUPT (1 << 8) 621 #define I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT (1 << 7) 622 #define I915_DISPLAY_PIPE_A_EVENT_INTERRUPT (1 << 6) 623 #define I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT (1 << 5) 624 #define I915_DISPLAY_PIPE_B_EVENT_INTERRUPT (1 << 4) 625 #define I915_DISPLAY_PIPE_A_DPBM_INTERRUPT (1 << 3) 626 #define I915_DISPLAY_PIPE_B_DPBM_INTERRUPT (1 << 2) 627 #define I915_DEBUG_INTERRUPT (1 << 2) 628 #define I915_WINVALID_INTERRUPT (1 << 1) 629 #define I915_USER_INTERRUPT (1 << 1) 630 #define I915_ASLE_INTERRUPT (1 << 0) 631 #define I915_BSD_USER_INTERRUPT (1 << 25) 632 633 #define GEN6_BSD_RNCID _MMIO(0x12198) 634 635 #define GEN7_FF_THREAD_MODE _MMIO(0x20a0) 636 #define GEN7_FF_SCHED_MASK 0x0077070 637 #define GEN8_FF_DS_REF_CNT_FFME (1 << 19) 638 #define GEN12_FF_TESSELATION_DOP_GATE_DISABLE BIT(19) 639 #define GEN7_FF_TS_SCHED_HS1 (0x5 << 16) 640 #define GEN7_FF_TS_SCHED_HS0 (0x3 << 16) 641 #define GEN7_FF_TS_SCHED_LOAD_BALANCE (0x1 << 16) 642 #define GEN7_FF_TS_SCHED_HW (0x0 << 16) /* Default */ 643 #define GEN7_FF_VS_REF_CNT_FFME (1 << 15) 644 #define GEN7_FF_VS_SCHED_HS1 (0x5 << 12) 645 #define GEN7_FF_VS_SCHED_HS0 (0x3 << 12) 646 #define GEN7_FF_VS_SCHED_LOAD_BALANCE (0x1 << 12) /* Default */ 647 #define GEN7_FF_VS_SCHED_HW (0x0 << 12) 648 #define GEN7_FF_DS_SCHED_HS1 (0x5 << 4) 649 #define GEN7_FF_DS_SCHED_HS0 (0x3 << 4) 650 #define GEN7_FF_DS_SCHED_LOAD_BALANCE (0x1 << 4) /* Default */ 651 #define GEN7_FF_DS_SCHED_HW (0x0 << 4) 652 653 #define ILK_DISPLAY_CHICKEN1 _MMIO(0x42000) 654 #define ILK_FBCQ_DIS REG_BIT(22) 655 #define ILK_PABSTRETCH_DIS REG_BIT(21) 656 #define ILK_SABSTRETCH_DIS REG_BIT(20) 657 #define IVB_PRI_STRETCH_MAX_MASK REG_GENMASK(21, 20) 658 #define IVB_PRI_STRETCH_MAX_X8 REG_FIELD_PREP(IVB_PRI_STRETCH_MAX_MASK, 0) 659 #define IVB_PRI_STRETCH_MAX_X4 REG_FIELD_PREP(IVB_PRI_STRETCH_MAX_MASK, 1) 660 #define IVB_PRI_STRETCH_MAX_X2 REG_FIELD_PREP(IVB_PRI_STRETCH_MAX_MASK, 2) 661 #define IVB_PRI_STRETCH_MAX_X1 REG_FIELD_PREP(IVB_PRI_STRETCH_MAX_MASK, 3) 662 #define IVB_SPR_STRETCH_MAX_MASK REG_GENMASK(19, 18) 663 #define IVB_SPR_STRETCH_MAX_X8 REG_FIELD_PREP(IVB_SPR_STRETCH_MAX_MASK, 0) 664 #define IVB_SPR_STRETCH_MAX_X4 REG_FIELD_PREP(IVB_SPR_STRETCH_MAX_MASK, 1) 665 #define IVB_SPR_STRETCH_MAX_X2 REG_FIELD_PREP(IVB_SPR_STRETCH_MAX_MASK, 2) 666 #define IVB_SPR_STRETCH_MAX_X1 REG_FIELD_PREP(IVB_SPR_STRETCH_MAX_MASK, 3) 667 668 #define IPS_CTL _MMIO(0x43408) 669 #define IPS_ENABLE REG_BIT(31) 670 #define IPS_FALSE_COLOR REG_BIT(4) 671 672 /* 673 * Clock control & power management 674 */ 675 #define _DPLL_A 0x6014 676 #define _DPLL_B 0x6018 677 #define _CHV_DPLL_C 0x6030 678 #define DPLL(dev_priv, pipe) _MMIO_BASE_PIPE3(DISPLAY_MMIO_BASE(dev_priv), \ 679 (pipe), _DPLL_A, _DPLL_B, _CHV_DPLL_C) 680 681 #define VGA0 _MMIO(0x6000) 682 #define VGA1 _MMIO(0x6004) 683 #define VGA_PD _MMIO(0x6010) 684 #define VGA0_PD_P2_DIV_4 (1 << 7) 685 #define VGA0_PD_P1_DIV_2 (1 << 5) 686 #define VGA0_PD_P1_SHIFT 0 687 #define VGA0_PD_P1_MASK (0x1f << 0) 688 #define VGA1_PD_P2_DIV_4 (1 << 15) 689 #define VGA1_PD_P1_DIV_2 (1 << 13) 690 #define VGA1_PD_P1_SHIFT 8 691 #define VGA1_PD_P1_MASK (0x1f << 8) 692 #define DPLL_VCO_ENABLE (1 << 31) 693 #define DPLL_SDVO_HIGH_SPEED (1 << 30) 694 #define DPLL_DVO_2X_MODE (1 << 30) 695 #define DPLL_EXT_BUFFER_ENABLE_VLV (1 << 30) 696 #define DPLL_SYNCLOCK_ENABLE (1 << 29) 697 #define DPLL_REF_CLK_ENABLE_VLV (1 << 29) 698 #define DPLL_VGA_MODE_DIS (1 << 28) 699 #define DPLLB_MODE_DAC_SERIAL (1 << 26) /* i915 */ 700 #define DPLLB_MODE_LVDS (2 << 26) /* i915 */ 701 #define DPLL_MODE_MASK (3 << 26) 702 #define DPLL_DAC_SERIAL_P2_CLOCK_DIV_10 (0 << 24) /* i915 */ 703 #define DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 (1 << 24) /* i915 */ 704 #define DPLLB_LVDS_P2_CLOCK_DIV_14 (0 << 24) /* i915 */ 705 #define DPLLB_LVDS_P2_CLOCK_DIV_7 (1 << 24) /* i915 */ 706 #define DPLL_P2_CLOCK_DIV_MASK 0x03000000 /* i915 */ 707 #define DPLL_FPA01_P1_POST_DIV_MASK 0x00ff0000 /* i915 */ 708 #define DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW 0x00ff8000 /* Pineview */ 709 #define DPLL_LOCK_VLV (1 << 15) 710 #define DPLL_INTEGRATED_CRI_CLK_VLV (1 << 14) 711 #define DPLL_INTEGRATED_REF_CLK_VLV (1 << 13) 712 #define DPLL_SSC_REF_CLK_CHV (1 << 13) 713 #define DPLL_PORTC_READY_MASK (0xf << 4) 714 #define DPLL_PORTB_READY_MASK (0xf) 715 716 #define DPLL_FPA01_P1_POST_DIV_MASK_I830 0x001f0000 717 718 /* Additional CHV pll/phy registers */ 719 #define DPIO_PHY_STATUS _MMIO(VLV_DISPLAY_BASE + 0x6240) 720 #define DPLL_PORTD_READY_MASK (0xf) 721 #define DISPLAY_PHY_CONTROL _MMIO(VLV_DISPLAY_BASE + 0x60100) 722 #define PHY_CH_POWER_DOWN_OVRD_EN(phy, ch) (1 << (2 * (phy) + (ch) + 27)) 723 #define PHY_LDO_DELAY_0NS 0x0 724 #define PHY_LDO_DELAY_200NS 0x1 725 #define PHY_LDO_DELAY_600NS 0x2 726 #define PHY_LDO_SEQ_DELAY(delay, phy) ((delay) << (2 * (phy) + 23)) 727 #define PHY_CH_POWER_DOWN_OVRD(mask, phy, ch) ((mask) << (8 * (phy) + 4 * (ch) + 11)) 728 #define PHY_CH_SU_PSR 0x1 729 #define PHY_CH_DEEP_PSR 0x7 730 #define PHY_CH_POWER_MODE(mode, phy, ch) ((mode) << (6 * (phy) + 3 * (ch) + 2)) 731 #define PHY_COM_LANE_RESET_DEASSERT(phy) (1 << (phy)) 732 #define DISPLAY_PHY_STATUS _MMIO(VLV_DISPLAY_BASE + 0x60104) 733 #define PHY_POWERGOOD(phy) (((phy) == DPIO_PHY0) ? (1 << 31) : (1 << 30)) 734 #define PHY_STATUS_CMN_LDO(phy, ch) (1 << (6 - (6 * (phy) + 3 * (ch)))) 735 #define PHY_STATUS_SPLINE_LDO(phy, ch, spline) (1 << (8 - (6 * (phy) + 3 * (ch) + (spline)))) 736 737 /* 738 * The i830 generation, in LVDS mode, defines P1 as the bit number set within 739 * this field (only one bit may be set). 740 */ 741 #define DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS 0x003f0000 742 #define DPLL_FPA01_P1_POST_DIV_SHIFT 16 743 #define DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW 15 744 /* i830, required in DVO non-gang */ 745 #define PLL_P2_DIVIDE_BY_4 (1 << 23) 746 #define PLL_P1_DIVIDE_BY_TWO (1 << 21) /* i830 */ 747 #define PLL_REF_INPUT_DREFCLK (0 << 13) 748 #define PLL_REF_INPUT_TVCLKINA (1 << 13) /* i830 */ 749 #define PLL_REF_INPUT_TVCLKINBC (2 << 13) /* SDVO TVCLKIN */ 750 #define PLLB_REF_INPUT_SPREADSPECTRUMIN (3 << 13) 751 #define PLL_REF_INPUT_MASK (3 << 13) 752 #define PLL_LOAD_PULSE_PHASE_SHIFT 9 753 /* Ironlake */ 754 # define PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT 9 755 # define PLL_REF_SDVO_HDMI_MULTIPLIER_MASK (7 << 9) 756 # define PLL_REF_SDVO_HDMI_MULTIPLIER(x) (((x) - 1) << 9) 757 # define DPLL_FPA1_P1_POST_DIV_SHIFT 0 758 # define DPLL_FPA1_P1_POST_DIV_MASK 0xff 759 760 /* 761 * Parallel to Serial Load Pulse phase selection. 762 * Selects the phase for the 10X DPLL clock for the PCIe 763 * digital display port. The range is 4 to 13; 10 or more 764 * is just a flip delay. The default is 6 765 */ 766 #define PLL_LOAD_PULSE_PHASE_MASK (0xf << PLL_LOAD_PULSE_PHASE_SHIFT) 767 #define DISPLAY_RATE_SELECT_FPA1 (1 << 8) 768 /* 769 * SDVO multiplier for 945G/GM. Not used on 965. 770 */ 771 #define SDVO_MULTIPLIER_MASK 0x000000ff 772 #define SDVO_MULTIPLIER_SHIFT_HIRES 4 773 #define SDVO_MULTIPLIER_SHIFT_VGA 0 774 775 #define _DPLL_A_MD 0x601c 776 #define _DPLL_B_MD 0x6020 777 #define _CHV_DPLL_C_MD 0x603c 778 #define DPLL_MD(dev_priv, pipe) _MMIO_BASE_PIPE3(DISPLAY_MMIO_BASE(dev_priv), \ 779 (pipe), _DPLL_A_MD, _DPLL_B_MD, _CHV_DPLL_C_MD) 780 781 /* 782 * UDI pixel divider, controlling how many pixels are stuffed into a packet. 783 * 784 * Value is pixels minus 1. Must be set to 1 pixel for SDVO. 785 */ 786 #define DPLL_MD_UDI_DIVIDER_MASK 0x3f000000 787 #define DPLL_MD_UDI_DIVIDER_SHIFT 24 788 /* UDI pixel divider for VGA, same as DPLL_MD_UDI_DIVIDER_MASK. */ 789 #define DPLL_MD_VGA_UDI_DIVIDER_MASK 0x003f0000 790 #define DPLL_MD_VGA_UDI_DIVIDER_SHIFT 16 791 /* 792 * SDVO/UDI pixel multiplier. 793 * 794 * SDVO requires that the bus clock rate be between 1 and 2 Ghz, and the bus 795 * clock rate is 10 times the DPLL clock. At low resolution/refresh rate 796 * modes, the bus rate would be below the limits, so SDVO allows for stuffing 797 * dummy bytes in the datastream at an increased clock rate, with both sides of 798 * the link knowing how many bytes are fill. 799 * 800 * So, for a mode with a dotclock of 65Mhz, we would want to double the clock 801 * rate to 130Mhz to get a bus rate of 1.30Ghz. The DPLL clock rate would be 802 * set to 130Mhz, and the SDVO multiplier set to 2x in this register and 803 * through an SDVO command. 804 * 805 * This register field has values of multiplication factor minus 1, with 806 * a maximum multiplier of 5 for SDVO. 807 */ 808 #define DPLL_MD_UDI_MULTIPLIER_MASK 0x00003f00 809 #define DPLL_MD_UDI_MULTIPLIER_SHIFT 8 810 /* 811 * SDVO/UDI pixel multiplier for VGA, same as DPLL_MD_UDI_MULTIPLIER_MASK. 812 * This best be set to the default value (3) or the CRT won't work. No, 813 * I don't entirely understand what this does... 814 */ 815 #define DPLL_MD_VGA_UDI_MULTIPLIER_MASK 0x0000003f 816 #define DPLL_MD_VGA_UDI_MULTIPLIER_SHIFT 0 817 818 #define RAWCLK_FREQ_VLV _MMIO(VLV_DISPLAY_BASE + 0x6024) 819 820 #define _FPA0 0x6040 821 #define _FPA1 0x6044 822 #define _FPB0 0x6048 823 #define _FPB1 0x604c 824 #define FP0(pipe) _MMIO_PIPE(pipe, _FPA0, _FPB0) 825 #define FP1(pipe) _MMIO_PIPE(pipe, _FPA1, _FPB1) 826 #define FP_N_DIV_MASK 0x003f0000 827 #define FP_N_PINEVIEW_DIV_MASK 0x00ff0000 828 #define FP_N_DIV_SHIFT 16 829 #define FP_M1_DIV_MASK 0x00003f00 830 #define FP_M1_DIV_SHIFT 8 831 #define FP_M2_DIV_MASK 0x0000003f 832 #define FP_M2_PINEVIEW_DIV_MASK 0x000000ff 833 #define FP_M2_DIV_SHIFT 0 834 #define DPLL_TEST _MMIO(0x606c) 835 #define DPLLB_TEST_SDVO_DIV_1 (0 << 22) 836 #define DPLLB_TEST_SDVO_DIV_2 (1 << 22) 837 #define DPLLB_TEST_SDVO_DIV_4 (2 << 22) 838 #define DPLLB_TEST_SDVO_DIV_MASK (3 << 22) 839 #define DPLLB_TEST_N_BYPASS (1 << 19) 840 #define DPLLB_TEST_M_BYPASS (1 << 18) 841 #define DPLLB_INPUT_BUFFER_ENABLE (1 << 16) 842 #define DPLLA_TEST_N_BYPASS (1 << 3) 843 #define DPLLA_TEST_M_BYPASS (1 << 2) 844 #define DPLLA_INPUT_BUFFER_ENABLE (1 << 0) 845 #define D_STATE _MMIO(0x6104) 846 #define DSTATE_GFX_RESET_I830 (1 << 6) 847 #define DSTATE_PLL_D3_OFF (1 << 3) 848 #define DSTATE_GFX_CLOCK_GATING (1 << 1) 849 #define DSTATE_DOT_CLOCK_GATING (1 << 0) 850 #define DSPCLK_GATE_D(__i915) _MMIO(DISPLAY_MMIO_BASE(__i915) + 0x6200) 851 # define DPUNIT_B_CLOCK_GATE_DISABLE (1 << 30) /* 965 */ 852 # define VSUNIT_CLOCK_GATE_DISABLE (1 << 29) /* 965 */ 853 # define VRHUNIT_CLOCK_GATE_DISABLE (1 << 28) /* 965 */ 854 # define VRDUNIT_CLOCK_GATE_DISABLE (1 << 27) /* 965 */ 855 # define AUDUNIT_CLOCK_GATE_DISABLE (1 << 26) /* 965 */ 856 # define DPUNIT_A_CLOCK_GATE_DISABLE (1 << 25) /* 965 */ 857 # define DPCUNIT_CLOCK_GATE_DISABLE (1 << 24) /* 965 */ 858 # define PNV_GMBUSUNIT_CLOCK_GATE_DISABLE (1 << 24) /* pnv */ 859 # define TVRUNIT_CLOCK_GATE_DISABLE (1 << 23) /* 915-945 */ 860 # define TVCUNIT_CLOCK_GATE_DISABLE (1 << 22) /* 915-945 */ 861 # define TVFUNIT_CLOCK_GATE_DISABLE (1 << 21) /* 915-945 */ 862 # define TVEUNIT_CLOCK_GATE_DISABLE (1 << 20) /* 915-945 */ 863 # define DVSUNIT_CLOCK_GATE_DISABLE (1 << 19) /* 915-945 */ 864 # define DSSUNIT_CLOCK_GATE_DISABLE (1 << 18) /* 915-945 */ 865 # define DDBUNIT_CLOCK_GATE_DISABLE (1 << 17) /* 915-945 */ 866 # define DPRUNIT_CLOCK_GATE_DISABLE (1 << 16) /* 915-945 */ 867 # define DPFUNIT_CLOCK_GATE_DISABLE (1 << 15) /* 915-945 */ 868 # define DPBMUNIT_CLOCK_GATE_DISABLE (1 << 14) /* 915-945 */ 869 # define DPLSUNIT_CLOCK_GATE_DISABLE (1 << 13) /* 915-945 */ 870 # define DPLUNIT_CLOCK_GATE_DISABLE (1 << 12) /* 915-945 */ 871 # define DPOUNIT_CLOCK_GATE_DISABLE (1 << 11) 872 # define DPBUNIT_CLOCK_GATE_DISABLE (1 << 10) 873 # define DCUNIT_CLOCK_GATE_DISABLE (1 << 9) 874 # define DPUNIT_CLOCK_GATE_DISABLE (1 << 8) 875 # define VRUNIT_CLOCK_GATE_DISABLE (1 << 7) /* 915+: reserved */ 876 # define OVHUNIT_CLOCK_GATE_DISABLE (1 << 6) /* 830-865 */ 877 # define DPIOUNIT_CLOCK_GATE_DISABLE (1 << 6) /* 915-945 */ 878 # define OVFUNIT_CLOCK_GATE_DISABLE (1 << 5) 879 # define OVBUNIT_CLOCK_GATE_DISABLE (1 << 4) 880 /* 881 * This bit must be set on the 830 to prevent hangs when turning off the 882 * overlay scaler. 883 */ 884 # define OVRUNIT_CLOCK_GATE_DISABLE (1 << 3) 885 # define OVCUNIT_CLOCK_GATE_DISABLE (1 << 2) 886 # define OVUUNIT_CLOCK_GATE_DISABLE (1 << 1) 887 # define ZVUNIT_CLOCK_GATE_DISABLE (1 << 0) /* 830 */ 888 # define OVLUNIT_CLOCK_GATE_DISABLE (1 << 0) /* 845,865 */ 889 890 #define RENCLK_GATE_D1 _MMIO(0x6204) 891 # define BLITTER_CLOCK_GATE_DISABLE (1 << 13) /* 945GM only */ 892 # define MPEG_CLOCK_GATE_DISABLE (1 << 12) /* 945GM only */ 893 # define PC_FE_CLOCK_GATE_DISABLE (1 << 11) 894 # define PC_BE_CLOCK_GATE_DISABLE (1 << 10) 895 # define WINDOWER_CLOCK_GATE_DISABLE (1 << 9) 896 # define INTERPOLATOR_CLOCK_GATE_DISABLE (1 << 8) 897 # define COLOR_CALCULATOR_CLOCK_GATE_DISABLE (1 << 7) 898 # define MOTION_COMP_CLOCK_GATE_DISABLE (1 << 6) 899 # define MAG_CLOCK_GATE_DISABLE (1 << 5) 900 /* This bit must be unset on 855,865 */ 901 # define MECI_CLOCK_GATE_DISABLE (1 << 4) 902 # define DCMP_CLOCK_GATE_DISABLE (1 << 3) 903 # define MEC_CLOCK_GATE_DISABLE (1 << 2) 904 # define MECO_CLOCK_GATE_DISABLE (1 << 1) 905 /* This bit must be set on 855,865. */ 906 # define SV_CLOCK_GATE_DISABLE (1 << 0) 907 # define I915_MPEG_CLOCK_GATE_DISABLE (1 << 16) 908 # define I915_VLD_IP_PR_CLOCK_GATE_DISABLE (1 << 15) 909 # define I915_MOTION_COMP_CLOCK_GATE_DISABLE (1 << 14) 910 # define I915_BD_BF_CLOCK_GATE_DISABLE (1 << 13) 911 # define I915_SF_SE_CLOCK_GATE_DISABLE (1 << 12) 912 # define I915_WM_CLOCK_GATE_DISABLE (1 << 11) 913 # define I915_IZ_CLOCK_GATE_DISABLE (1 << 10) 914 # define I915_PI_CLOCK_GATE_DISABLE (1 << 9) 915 # define I915_DI_CLOCK_GATE_DISABLE (1 << 8) 916 # define I915_SH_SV_CLOCK_GATE_DISABLE (1 << 7) 917 # define I915_PL_DG_QC_FT_CLOCK_GATE_DISABLE (1 << 6) 918 # define I915_SC_CLOCK_GATE_DISABLE (1 << 5) 919 # define I915_FL_CLOCK_GATE_DISABLE (1 << 4) 920 # define I915_DM_CLOCK_GATE_DISABLE (1 << 3) 921 # define I915_PS_CLOCK_GATE_DISABLE (1 << 2) 922 # define I915_CC_CLOCK_GATE_DISABLE (1 << 1) 923 # define I915_BY_CLOCK_GATE_DISABLE (1 << 0) 924 925 # define I965_RCZ_CLOCK_GATE_DISABLE (1 << 30) 926 /* This bit must always be set on 965G/965GM */ 927 # define I965_RCC_CLOCK_GATE_DISABLE (1 << 29) 928 # define I965_RCPB_CLOCK_GATE_DISABLE (1 << 28) 929 # define I965_DAP_CLOCK_GATE_DISABLE (1 << 27) 930 # define I965_ROC_CLOCK_GATE_DISABLE (1 << 26) 931 # define I965_GW_CLOCK_GATE_DISABLE (1 << 25) 932 # define I965_TD_CLOCK_GATE_DISABLE (1 << 24) 933 /* This bit must always be set on 965G */ 934 # define I965_ISC_CLOCK_GATE_DISABLE (1 << 23) 935 # define I965_IC_CLOCK_GATE_DISABLE (1 << 22) 936 # define I965_EU_CLOCK_GATE_DISABLE (1 << 21) 937 # define I965_IF_CLOCK_GATE_DISABLE (1 << 20) 938 # define I965_TC_CLOCK_GATE_DISABLE (1 << 19) 939 # define I965_SO_CLOCK_GATE_DISABLE (1 << 17) 940 # define I965_FBC_CLOCK_GATE_DISABLE (1 << 16) 941 # define I965_MARI_CLOCK_GATE_DISABLE (1 << 15) 942 # define I965_MASF_CLOCK_GATE_DISABLE (1 << 14) 943 # define I965_MAWB_CLOCK_GATE_DISABLE (1 << 13) 944 # define I965_EM_CLOCK_GATE_DISABLE (1 << 12) 945 # define I965_UC_CLOCK_GATE_DISABLE (1 << 11) 946 # define I965_SI_CLOCK_GATE_DISABLE (1 << 6) 947 # define I965_MT_CLOCK_GATE_DISABLE (1 << 5) 948 # define I965_PL_CLOCK_GATE_DISABLE (1 << 4) 949 # define I965_DG_CLOCK_GATE_DISABLE (1 << 3) 950 # define I965_QC_CLOCK_GATE_DISABLE (1 << 2) 951 # define I965_FT_CLOCK_GATE_DISABLE (1 << 1) 952 # define I965_DM_CLOCK_GATE_DISABLE (1 << 0) 953 954 #define RENCLK_GATE_D2 _MMIO(0x6208) 955 #define VF_UNIT_CLOCK_GATE_DISABLE (1 << 9) 956 #define GS_UNIT_CLOCK_GATE_DISABLE (1 << 7) 957 #define CL_UNIT_CLOCK_GATE_DISABLE (1 << 6) 958 959 #define VDECCLK_GATE_D _MMIO(0x620C) /* g4x only */ 960 #define VCP_UNIT_CLOCK_GATE_DISABLE (1 << 4) 961 962 #define RAMCLK_GATE_D _MMIO(0x6210) /* CRL only */ 963 #define DEUC _MMIO(0x6214) /* CRL only */ 964 965 #define FW_BLC_SELF_VLV _MMIO(VLV_DISPLAY_BASE + 0x6500) 966 #define FW_CSPWRDWNEN (1 << 15) 967 968 #define MI_ARB_VLV _MMIO(VLV_DISPLAY_BASE + 0x6504) 969 970 #define CZCLK_CDCLK_FREQ_RATIO _MMIO(VLV_DISPLAY_BASE + 0x6508) 971 #define CDCLK_FREQ_SHIFT 4 972 #define CDCLK_FREQ_MASK (0x1f << CDCLK_FREQ_SHIFT) 973 #define CZCLK_FREQ_MASK 0xf 974 975 #define GCI_CONTROL _MMIO(VLV_DISPLAY_BASE + 0x650C) 976 #define PFI_CREDIT_63 (9 << 28) /* chv only */ 977 #define PFI_CREDIT_31 (8 << 28) /* chv only */ 978 #define PFI_CREDIT(x) (((x) - 8) << 28) /* 8-15 */ 979 #define PFI_CREDIT_RESEND (1 << 27) 980 #define VGA_FAST_MODE_DISABLE (1 << 14) 981 982 #define GMBUSFREQ_VLV _MMIO(VLV_DISPLAY_BASE + 0x6510) 983 984 #define PEG_BAND_GAP_DATA _MMIO(0x14d68) 985 986 #define BXT_RP_STATE_CAP _MMIO(0x138170) 987 #define GEN9_RP_STATE_LIMITS _MMIO(0x138148) 988 989 #define MTL_RP_STATE_CAP _MMIO(0x138000) 990 #define MTL_MEDIAP_STATE_CAP _MMIO(0x138020) 991 #define MTL_RP0_CAP_MASK REG_GENMASK(8, 0) 992 #define MTL_RPN_CAP_MASK REG_GENMASK(24, 16) 993 994 #define MTL_GT_RPE_FREQUENCY _MMIO(0x13800c) 995 #define MTL_MPE_FREQUENCY _MMIO(0x13802c) 996 #define MTL_RPE_MASK REG_GENMASK(8, 0) 997 998 #define GT0_PERF_LIMIT_REASONS _MMIO(0x1381a8) 999 #define GT0_PERF_LIMIT_REASONS_MASK 0xde3 1000 #define PROCHOT_MASK REG_BIT(0) 1001 #define THERMAL_LIMIT_MASK REG_BIT(1) 1002 #define RATL_MASK REG_BIT(5) 1003 #define VR_THERMALERT_MASK REG_BIT(6) 1004 #define VR_TDC_MASK REG_BIT(7) 1005 #define POWER_LIMIT_4_MASK REG_BIT(8) 1006 #define POWER_LIMIT_1_MASK REG_BIT(10) 1007 #define POWER_LIMIT_2_MASK REG_BIT(11) 1008 #define GT0_PERF_LIMIT_REASONS_LOG_MASK REG_GENMASK(31, 16) 1009 #define MTL_MEDIA_PERF_LIMIT_REASONS _MMIO(0x138030) 1010 1011 #define CHV_CLK_CTL1 _MMIO(0x101100) 1012 #define VLV_CLK_CTL2 _MMIO(0x101104) 1013 #define CLK_CTL2_CZCOUNT_30NS_SHIFT 28 1014 1015 /* 1016 * Overlay regs 1017 */ 1018 1019 #define OVADD _MMIO(0x30000) 1020 #define DOVSTA _MMIO(0x30008) 1021 #define OC_BUF (0x3 << 20) 1022 #define OGAMC5 _MMIO(0x30010) 1023 #define OGAMC4 _MMIO(0x30014) 1024 #define OGAMC3 _MMIO(0x30018) 1025 #define OGAMC2 _MMIO(0x3001c) 1026 #define OGAMC1 _MMIO(0x30020) 1027 #define OGAMC0 _MMIO(0x30024) 1028 1029 /* 1030 * GEN9 clock gating regs 1031 */ 1032 #define GEN9_CLKGATE_DIS_0 _MMIO(0x46530) 1033 #define DARBF_GATING_DIS REG_BIT(27) 1034 #define MTL_PIPEDMC_GATING_DIS_A REG_BIT(15) 1035 #define MTL_PIPEDMC_GATING_DIS_B REG_BIT(14) 1036 #define PWM2_GATING_DIS REG_BIT(14) 1037 #define PWM1_GATING_DIS REG_BIT(13) 1038 1039 #define GEN9_CLKGATE_DIS_3 _MMIO(0x46538) 1040 #define TGL_VRH_GATING_DIS REG_BIT(31) 1041 #define DPT_GATING_DIS REG_BIT(22) 1042 1043 #define GEN9_CLKGATE_DIS_4 _MMIO(0x4653C) 1044 #define BXT_GMBUS_GATING_DIS (1 << 14) 1045 1046 #define GEN9_CLKGATE_DIS_5 _MMIO(0x46540) 1047 #define DPCE_GATING_DIS REG_BIT(17) 1048 1049 #define _CLKGATE_DIS_PSL_A 0x46520 1050 #define _CLKGATE_DIS_PSL_B 0x46524 1051 #define _CLKGATE_DIS_PSL_C 0x46528 1052 #define DUPS1_GATING_DIS (1 << 15) 1053 #define DUPS2_GATING_DIS (1 << 19) 1054 #define DUPS3_GATING_DIS (1 << 23) 1055 #define CURSOR_GATING_DIS REG_BIT(28) 1056 #define DPF_GATING_DIS (1 << 10) 1057 #define DPF_RAM_GATING_DIS (1 << 9) 1058 #define DPFR_GATING_DIS (1 << 8) 1059 1060 #define CLKGATE_DIS_PSL(pipe) \ 1061 _MMIO_PIPE(pipe, _CLKGATE_DIS_PSL_A, _CLKGATE_DIS_PSL_B) 1062 1063 #define _CLKGATE_DIS_PSL_EXT_A 0x4654C 1064 #define _CLKGATE_DIS_PSL_EXT_B 0x46550 1065 #define PIPEDMC_GATING_DIS REG_BIT(12) 1066 1067 #define CLKGATE_DIS_PSL_EXT(pipe) \ 1068 _MMIO_PIPE(pipe, _CLKGATE_DIS_PSL_EXT_A, _CLKGATE_DIS_PSL_EXT_B) 1069 1070 /* 1071 * Display engine regs 1072 */ 1073 1074 /* Pipe/transcoder A timing regs */ 1075 #define _TRANS_HTOTAL_A 0x60000 1076 #define _TRANS_HTOTAL_B 0x61000 1077 #define TRANS_HTOTAL(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_HTOTAL_A) 1078 #define HTOTAL_MASK REG_GENMASK(31, 16) 1079 #define HTOTAL(htotal) REG_FIELD_PREP(HTOTAL_MASK, (htotal)) 1080 #define HACTIVE_MASK REG_GENMASK(15, 0) 1081 #define HACTIVE(hdisplay) REG_FIELD_PREP(HACTIVE_MASK, (hdisplay)) 1082 1083 #define _TRANS_HBLANK_A 0x60004 1084 #define _TRANS_HBLANK_B 0x61004 1085 #define TRANS_HBLANK(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_HBLANK_A) 1086 #define HBLANK_END_MASK REG_GENMASK(31, 16) 1087 #define HBLANK_END(hblank_end) REG_FIELD_PREP(HBLANK_END_MASK, (hblank_end)) 1088 #define HBLANK_START_MASK REG_GENMASK(15, 0) 1089 #define HBLANK_START(hblank_start) REG_FIELD_PREP(HBLANK_START_MASK, (hblank_start)) 1090 1091 #define _TRANS_HSYNC_A 0x60008 1092 #define _TRANS_HSYNC_B 0x61008 1093 #define TRANS_HSYNC(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_HSYNC_A) 1094 #define HSYNC_END_MASK REG_GENMASK(31, 16) 1095 #define HSYNC_END(hsync_end) REG_FIELD_PREP(HSYNC_END_MASK, (hsync_end)) 1096 #define HSYNC_START_MASK REG_GENMASK(15, 0) 1097 #define HSYNC_START(hsync_start) REG_FIELD_PREP(HSYNC_START_MASK, (hsync_start)) 1098 1099 #define _TRANS_VTOTAL_A 0x6000c 1100 #define _TRANS_VTOTAL_B 0x6100c 1101 #define TRANS_VTOTAL(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_VTOTAL_A) 1102 #define VTOTAL_MASK REG_GENMASK(31, 16) 1103 #define VTOTAL(vtotal) REG_FIELD_PREP(VTOTAL_MASK, (vtotal)) 1104 #define VACTIVE_MASK REG_GENMASK(15, 0) 1105 #define VACTIVE(vdisplay) REG_FIELD_PREP(VACTIVE_MASK, (vdisplay)) 1106 1107 #define _TRANS_VBLANK_A 0x60010 1108 #define _TRANS_VBLANK_B 0x61010 1109 #define TRANS_VBLANK(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_VBLANK_A) 1110 #define VBLANK_END_MASK REG_GENMASK(31, 16) 1111 #define VBLANK_END(vblank_end) REG_FIELD_PREP(VBLANK_END_MASK, (vblank_end)) 1112 #define VBLANK_START_MASK REG_GENMASK(15, 0) 1113 #define VBLANK_START(vblank_start) REG_FIELD_PREP(VBLANK_START_MASK, (vblank_start)) 1114 1115 #define _TRANS_VSYNC_A 0x60014 1116 #define _TRANS_VSYNC_B 0x61014 1117 #define TRANS_VSYNC(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_VSYNC_A) 1118 #define VSYNC_END_MASK REG_GENMASK(31, 16) 1119 #define VSYNC_END(vsync_end) REG_FIELD_PREP(VSYNC_END_MASK, (vsync_end)) 1120 #define VSYNC_START_MASK REG_GENMASK(15, 0) 1121 #define VSYNC_START(vsync_start) REG_FIELD_PREP(VSYNC_START_MASK, (vsync_start)) 1122 1123 #define _PIPEASRC 0x6001c 1124 #define _PIPEBSRC 0x6101c 1125 #define PIPESRC(dev_priv, pipe) _MMIO_TRANS2(dev_priv, (pipe), _PIPEASRC) 1126 #define PIPESRC_WIDTH_MASK REG_GENMASK(31, 16) 1127 #define PIPESRC_WIDTH(w) REG_FIELD_PREP(PIPESRC_WIDTH_MASK, (w)) 1128 #define PIPESRC_HEIGHT_MASK REG_GENMASK(15, 0) 1129 #define PIPESRC_HEIGHT(h) REG_FIELD_PREP(PIPESRC_HEIGHT_MASK, (h)) 1130 1131 #define _BCLRPAT_A 0x60020 1132 #define _BCLRPAT_B 0x61020 1133 #define BCLRPAT(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _BCLRPAT_A) 1134 1135 #define _TRANS_VSYNCSHIFT_A 0x60028 1136 #define _TRANS_VSYNCSHIFT_B 0x61028 1137 #define TRANS_VSYNCSHIFT(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_VSYNCSHIFT_A) 1138 1139 #define _TRANS_MULT_A 0x6002c 1140 #define _TRANS_MULT_B 0x6102c 1141 #define TRANS_MULT(dev_priv, trans) _MMIO_TRANS2(dev_priv, (trans), _TRANS_MULT_A) 1142 1143 /* Hotplug control (945+ only) */ 1144 #define PORT_HOTPLUG_EN(dev_priv) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61110) 1145 #define PORTB_HOTPLUG_INT_EN (1 << 29) 1146 #define PORTC_HOTPLUG_INT_EN (1 << 28) 1147 #define PORTD_HOTPLUG_INT_EN (1 << 27) 1148 #define SDVOB_HOTPLUG_INT_EN (1 << 26) 1149 #define SDVOC_HOTPLUG_INT_EN (1 << 25) 1150 #define TV_HOTPLUG_INT_EN (1 << 18) 1151 #define CRT_HOTPLUG_INT_EN (1 << 9) 1152 #define HOTPLUG_INT_EN_MASK (PORTB_HOTPLUG_INT_EN | \ 1153 PORTC_HOTPLUG_INT_EN | \ 1154 PORTD_HOTPLUG_INT_EN | \ 1155 SDVOC_HOTPLUG_INT_EN | \ 1156 SDVOB_HOTPLUG_INT_EN | \ 1157 CRT_HOTPLUG_INT_EN) 1158 #define CRT_HOTPLUG_FORCE_DETECT (1 << 3) 1159 #define CRT_HOTPLUG_ACTIVATION_PERIOD_32 (0 << 8) 1160 /* must use period 64 on GM45 according to docs */ 1161 #define CRT_HOTPLUG_ACTIVATION_PERIOD_64 (1 << 8) 1162 #define CRT_HOTPLUG_DAC_ON_TIME_2M (0 << 7) 1163 #define CRT_HOTPLUG_DAC_ON_TIME_4M (1 << 7) 1164 #define CRT_HOTPLUG_VOLTAGE_COMPARE_40 (0 << 5) 1165 #define CRT_HOTPLUG_VOLTAGE_COMPARE_50 (1 << 5) 1166 #define CRT_HOTPLUG_VOLTAGE_COMPARE_60 (2 << 5) 1167 #define CRT_HOTPLUG_VOLTAGE_COMPARE_70 (3 << 5) 1168 #define CRT_HOTPLUG_VOLTAGE_COMPARE_MASK (3 << 5) 1169 #define CRT_HOTPLUG_DETECT_DELAY_1G (0 << 4) 1170 #define CRT_HOTPLUG_DETECT_DELAY_2G (1 << 4) 1171 #define CRT_HOTPLUG_DETECT_VOLTAGE_325MV (0 << 2) 1172 #define CRT_HOTPLUG_DETECT_VOLTAGE_475MV (1 << 2) 1173 1174 #define PORT_HOTPLUG_STAT(dev_priv) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61114) 1175 /* HDMI/DP bits are g4x+ */ 1176 #define PORTD_HOTPLUG_LIVE_STATUS_G4X (1 << 27) 1177 #define PORTC_HOTPLUG_LIVE_STATUS_G4X (1 << 28) 1178 #define PORTB_HOTPLUG_LIVE_STATUS_G4X (1 << 29) 1179 #define PORTD_HOTPLUG_INT_STATUS (3 << 21) 1180 #define PORTD_HOTPLUG_INT_LONG_PULSE (2 << 21) 1181 #define PORTD_HOTPLUG_INT_SHORT_PULSE (1 << 21) 1182 #define PORTC_HOTPLUG_INT_STATUS (3 << 19) 1183 #define PORTC_HOTPLUG_INT_LONG_PULSE (2 << 19) 1184 #define PORTC_HOTPLUG_INT_SHORT_PULSE (1 << 19) 1185 #define PORTB_HOTPLUG_INT_STATUS (3 << 17) 1186 #define PORTB_HOTPLUG_INT_LONG_PULSE (2 << 17) 1187 #define PORTB_HOTPLUG_INT_SHORT_PLUSE (1 << 17) 1188 /* CRT/TV common between gen3+ */ 1189 #define CRT_HOTPLUG_INT_STATUS (1 << 11) 1190 #define TV_HOTPLUG_INT_STATUS (1 << 10) 1191 #define CRT_HOTPLUG_MONITOR_MASK (3 << 8) 1192 #define CRT_HOTPLUG_MONITOR_COLOR (3 << 8) 1193 #define CRT_HOTPLUG_MONITOR_MONO (2 << 8) 1194 #define CRT_HOTPLUG_MONITOR_NONE (0 << 8) 1195 #define DP_AUX_CHANNEL_D_INT_STATUS_G4X (1 << 6) 1196 #define DP_AUX_CHANNEL_C_INT_STATUS_G4X (1 << 5) 1197 #define DP_AUX_CHANNEL_B_INT_STATUS_G4X (1 << 4) 1198 #define DP_AUX_CHANNEL_MASK_INT_STATUS_G4X (7 << 4) 1199 1200 /* SDVO is different across gen3/4 */ 1201 #define SDVOC_HOTPLUG_INT_STATUS_G4X (1 << 3) 1202 #define SDVOB_HOTPLUG_INT_STATUS_G4X (1 << 2) 1203 /* 1204 * Bspec seems to be seriously misleaded about the SDVO hpd bits on i965g/gm, 1205 * since reality corrobates that they're the same as on gen3. But keep these 1206 * bits here (and the comment!) to help any other lost wanderers back onto the 1207 * right tracks. 1208 */ 1209 #define SDVOC_HOTPLUG_INT_STATUS_I965 (3 << 4) 1210 #define SDVOB_HOTPLUG_INT_STATUS_I965 (3 << 2) 1211 #define SDVOC_HOTPLUG_INT_STATUS_I915 (1 << 7) 1212 #define SDVOB_HOTPLUG_INT_STATUS_I915 (1 << 6) 1213 #define HOTPLUG_INT_STATUS_G4X (CRT_HOTPLUG_INT_STATUS | \ 1214 SDVOB_HOTPLUG_INT_STATUS_G4X | \ 1215 SDVOC_HOTPLUG_INT_STATUS_G4X | \ 1216 PORTB_HOTPLUG_INT_STATUS | \ 1217 PORTC_HOTPLUG_INT_STATUS | \ 1218 PORTD_HOTPLUG_INT_STATUS) 1219 1220 #define HOTPLUG_INT_STATUS_I915 (CRT_HOTPLUG_INT_STATUS | \ 1221 SDVOB_HOTPLUG_INT_STATUS_I915 | \ 1222 SDVOC_HOTPLUG_INT_STATUS_I915 | \ 1223 PORTB_HOTPLUG_INT_STATUS | \ 1224 PORTC_HOTPLUG_INT_STATUS | \ 1225 PORTD_HOTPLUG_INT_STATUS) 1226 1227 /* SDVO and HDMI port control. 1228 * The same register may be used for SDVO or HDMI */ 1229 #define _GEN3_SDVOB 0x61140 1230 #define _GEN3_SDVOC 0x61160 1231 #define GEN3_SDVOB _MMIO(_GEN3_SDVOB) 1232 #define GEN3_SDVOC _MMIO(_GEN3_SDVOC) 1233 #define GEN4_HDMIB GEN3_SDVOB 1234 #define GEN4_HDMIC GEN3_SDVOC 1235 #define VLV_HDMIB _MMIO(VLV_DISPLAY_BASE + 0x61140) 1236 #define VLV_HDMIC _MMIO(VLV_DISPLAY_BASE + 0x61160) 1237 #define CHV_HDMID _MMIO(VLV_DISPLAY_BASE + 0x6116C) 1238 #define PCH_SDVOB _MMIO(0xe1140) 1239 #define PCH_HDMIB PCH_SDVOB 1240 #define PCH_HDMIC _MMIO(0xe1150) 1241 #define PCH_HDMID _MMIO(0xe1160) 1242 1243 #define PORT_DFT_I9XX _MMIO(0x61150) 1244 #define DC_BALANCE_RESET (1 << 25) 1245 #define PORT_DFT2_G4X(dev_priv) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61154) 1246 #define DC_BALANCE_RESET_VLV (1 << 31) 1247 #define PIPE_SCRAMBLE_RESET_MASK ((1 << 14) | (0x3 << 0)) 1248 #define PIPE_C_SCRAMBLE_RESET REG_BIT(14) /* chv */ 1249 #define PIPE_B_SCRAMBLE_RESET REG_BIT(1) 1250 #define PIPE_A_SCRAMBLE_RESET REG_BIT(0) 1251 1252 /* Gen 3 SDVO bits: */ 1253 #define SDVO_ENABLE (1 << 31) 1254 #define SDVO_PIPE_SEL_SHIFT 30 1255 #define SDVO_PIPE_SEL_MASK (1 << 30) 1256 #define SDVO_PIPE_SEL(pipe) ((pipe) << 30) 1257 #define SDVO_STALL_SELECT (1 << 29) 1258 #define SDVO_INTERRUPT_ENABLE (1 << 26) 1259 /* 1260 * 915G/GM SDVO pixel multiplier. 1261 * Programmed value is multiplier - 1, up to 5x. 1262 * \sa DPLL_MD_UDI_MULTIPLIER_MASK 1263 */ 1264 #define SDVO_PORT_MULTIPLY_MASK (7 << 23) 1265 #define SDVO_PORT_MULTIPLY_SHIFT 23 1266 #define SDVO_PHASE_SELECT_MASK (15 << 19) 1267 #define SDVO_PHASE_SELECT_DEFAULT (6 << 19) 1268 #define SDVO_CLOCK_OUTPUT_INVERT (1 << 18) 1269 #define SDVOC_GANG_MODE (1 << 16) /* Port C only */ 1270 #define SDVO_BORDER_ENABLE (1 << 7) /* SDVO only */ 1271 #define SDVOB_PCIE_CONCURRENCY (1 << 3) /* Port B only */ 1272 #define SDVO_DETECTED (1 << 2) 1273 /* Bits to be preserved when writing */ 1274 #define SDVOB_PRESERVE_MASK ((1 << 17) | (1 << 16) | (1 << 14) | \ 1275 SDVO_INTERRUPT_ENABLE) 1276 #define SDVOC_PRESERVE_MASK ((1 << 17) | SDVO_INTERRUPT_ENABLE) 1277 1278 /* Gen 4 SDVO/HDMI bits: */ 1279 #define SDVO_COLOR_FORMAT_8bpc (0 << 26) 1280 #define SDVO_COLOR_FORMAT_MASK (7 << 26) 1281 #define SDVO_ENCODING_SDVO (0 << 10) 1282 #define SDVO_ENCODING_HDMI (2 << 10) 1283 #define HDMI_MODE_SELECT_HDMI (1 << 9) /* HDMI only */ 1284 #define HDMI_MODE_SELECT_DVI (0 << 9) /* HDMI only */ 1285 #define HDMI_COLOR_RANGE_16_235 (1 << 8) /* HDMI only */ 1286 #define HDMI_AUDIO_ENABLE (1 << 6) /* HDMI only */ 1287 /* VSYNC/HSYNC bits new with 965, default is to be set */ 1288 #define SDVO_VSYNC_ACTIVE_HIGH (1 << 4) 1289 #define SDVO_HSYNC_ACTIVE_HIGH (1 << 3) 1290 1291 /* Gen 5 (IBX) SDVO/HDMI bits: */ 1292 #define HDMI_COLOR_FORMAT_12bpc (3 << 26) /* HDMI only */ 1293 #define SDVOB_HOTPLUG_ENABLE (1 << 23) /* SDVO only */ 1294 1295 /* Gen 6 (CPT) SDVO/HDMI bits: */ 1296 #define SDVO_PIPE_SEL_SHIFT_CPT 29 1297 #define SDVO_PIPE_SEL_MASK_CPT (3 << 29) 1298 #define SDVO_PIPE_SEL_CPT(pipe) ((pipe) << 29) 1299 1300 /* CHV SDVO/HDMI bits: */ 1301 #define SDVO_PIPE_SEL_SHIFT_CHV 24 1302 #define SDVO_PIPE_SEL_MASK_CHV (3 << 24) 1303 #define SDVO_PIPE_SEL_CHV(pipe) ((pipe) << 24) 1304 1305 /* Video Data Island Packet control */ 1306 #define VIDEO_DIP_DATA _MMIO(0x61178) 1307 /* Read the description of VIDEO_DIP_DATA (before Haswell) or VIDEO_DIP_ECC 1308 * (Haswell and newer) to see which VIDEO_DIP_DATA byte corresponds to each byte 1309 * of the infoframe structure specified by CEA-861. */ 1310 #define VIDEO_DIP_DATA_SIZE 32 1311 #define VIDEO_DIP_ASYNC_DATA_SIZE 36 1312 #define VIDEO_DIP_GMP_DATA_SIZE 36 1313 #define VIDEO_DIP_VSC_DATA_SIZE 36 1314 #define VIDEO_DIP_PPS_DATA_SIZE 132 1315 #define VIDEO_DIP_CTL _MMIO(0x61170) 1316 /* Pre HSW: */ 1317 #define VIDEO_DIP_ENABLE (1 << 31) 1318 #define VIDEO_DIP_PORT(port) ((port) << 29) 1319 #define VIDEO_DIP_PORT_MASK (3 << 29) 1320 #define VIDEO_DIP_ENABLE_GCP (1 << 25) /* ilk+ */ 1321 #define VIDEO_DIP_ENABLE_AVI (1 << 21) 1322 #define VIDEO_DIP_ENABLE_VENDOR (2 << 21) 1323 #define VIDEO_DIP_ENABLE_GAMUT (4 << 21) /* ilk+ */ 1324 #define VIDEO_DIP_ENABLE_SPD (8 << 21) 1325 #define VIDEO_DIP_SELECT_AVI (0 << 19) 1326 #define VIDEO_DIP_SELECT_VENDOR (1 << 19) 1327 #define VIDEO_DIP_SELECT_GAMUT (2 << 19) 1328 #define VIDEO_DIP_SELECT_SPD (3 << 19) 1329 #define VIDEO_DIP_SELECT_MASK (3 << 19) 1330 #define VIDEO_DIP_FREQ_ONCE (0 << 16) 1331 #define VIDEO_DIP_FREQ_VSYNC (1 << 16) 1332 #define VIDEO_DIP_FREQ_2VSYNC (2 << 16) 1333 #define VIDEO_DIP_FREQ_MASK (3 << 16) 1334 /* HSW and later: */ 1335 #define VIDEO_DIP_ENABLE_DRM_GLK (1 << 28) 1336 #define PSR_VSC_BIT_7_SET (1 << 27) 1337 #define VSC_SELECT_MASK (0x3 << 25) 1338 #define VSC_SELECT_SHIFT 25 1339 #define VSC_DIP_HW_HEA_DATA (0 << 25) 1340 #define VSC_DIP_HW_HEA_SW_DATA (1 << 25) 1341 #define VSC_DIP_HW_DATA_SW_HEA (2 << 25) 1342 #define VSC_DIP_SW_HEA_DATA (3 << 25) 1343 #define VDIP_ENABLE_PPS (1 << 24) 1344 #define VIDEO_DIP_ENABLE_VSC_HSW (1 << 20) 1345 #define VIDEO_DIP_ENABLE_GCP_HSW (1 << 16) 1346 #define VIDEO_DIP_ENABLE_AVI_HSW (1 << 12) 1347 #define VIDEO_DIP_ENABLE_VS_HSW (1 << 8) 1348 #define VIDEO_DIP_ENABLE_GMP_HSW (1 << 4) 1349 #define VIDEO_DIP_ENABLE_SPD_HSW (1 << 0) 1350 /* ADL and later: */ 1351 #define VIDEO_DIP_ENABLE_AS_ADL REG_BIT(23) 1352 1353 /* Panel fitting */ 1354 #define PFIT_CONTROL(dev_priv) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61230) 1355 #define PFIT_ENABLE REG_BIT(31) 1356 #define PFIT_PIPE_MASK REG_GENMASK(30, 29) /* 965+ */ 1357 #define PFIT_PIPE(pipe) REG_FIELD_PREP(PFIT_PIPE_MASK, (pipe)) 1358 #define PFIT_SCALING_MASK REG_GENMASK(28, 26) /* 965+ */ 1359 #define PFIT_SCALING_AUTO REG_FIELD_PREP(PFIT_SCALING_MASK, 0) 1360 #define PFIT_SCALING_PROGRAMMED REG_FIELD_PREP(PFIT_SCALING_MASK, 1) 1361 #define PFIT_SCALING_PILLAR REG_FIELD_PREP(PFIT_SCALING_MASK, 2) 1362 #define PFIT_SCALING_LETTER REG_FIELD_PREP(PFIT_SCALING_MASK, 3) 1363 #define PFIT_FILTER_MASK REG_GENMASK(25, 24) /* 965+ */ 1364 #define PFIT_FILTER_FUZZY REG_FIELD_PREP(PFIT_FILTER_MASK, 0) 1365 #define PFIT_FILTER_CRISP REG_FIELD_PREP(PFIT_FILTER_MASK, 1) 1366 #define PFIT_FILTER_MEDIAN REG_FIELD_PREP(PFIT_FILTER_MASK, 2) 1367 #define PFIT_VERT_INTERP_MASK REG_GENMASK(11, 10) /* pre-965 */ 1368 #define PFIT_VERT_INTERP_BILINEAR REG_FIELD_PREP(PFIT_VERT_INTERP_MASK, 1) 1369 #define PFIT_VERT_AUTO_SCALE REG_BIT(9) /* pre-965 */ 1370 #define PFIT_HORIZ_INTERP_MASK REG_GENMASK(7, 6) /* pre-965 */ 1371 #define PFIT_HORIZ_INTERP_BILINEAR REG_FIELD_PREP(PFIT_HORIZ_INTERP_MASK, 1) 1372 #define PFIT_HORIZ_AUTO_SCALE REG_BIT(5) /* pre-965 */ 1373 #define PFIT_PANEL_8TO6_DITHER_ENABLE REG_BIT(3) /* pre-965 */ 1374 1375 #define PFIT_PGM_RATIOS(dev_priv) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61234) 1376 #define PFIT_VERT_SCALE_MASK REG_GENMASK(31, 20) /* pre-965 */ 1377 #define PFIT_VERT_SCALE(x) REG_FIELD_PREP(PFIT_VERT_SCALE_MASK, (x)) 1378 #define PFIT_HORIZ_SCALE_MASK REG_GENMASK(15, 4) /* pre-965 */ 1379 #define PFIT_HORIZ_SCALE(x) REG_FIELD_PREP(PFIT_HORIZ_SCALE_MASK, (x)) 1380 #define PFIT_VERT_SCALE_MASK_965 REG_GENMASK(28, 16) /* 965+ */ 1381 #define PFIT_HORIZ_SCALE_MASK_965 REG_GENMASK(12, 0) /* 965+ */ 1382 1383 #define PFIT_AUTO_RATIOS(dev_priv) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61238) 1384 1385 #define PCH_GTC_CTL _MMIO(0xe7000) 1386 #define PCH_GTC_ENABLE (1 << 31) 1387 1388 /* Display Port */ 1389 #define DP_A _MMIO(0x64000) /* eDP */ 1390 #define DP_B _MMIO(0x64100) 1391 #define DP_C _MMIO(0x64200) 1392 #define DP_D _MMIO(0x64300) 1393 #define VLV_DP_B _MMIO(VLV_DISPLAY_BASE + 0x64100) 1394 #define VLV_DP_C _MMIO(VLV_DISPLAY_BASE + 0x64200) 1395 #define CHV_DP_D _MMIO(VLV_DISPLAY_BASE + 0x64300) 1396 #define DP_PORT_EN (1 << 31) 1397 #define DP_PIPE_SEL_SHIFT 30 1398 #define DP_PIPE_SEL_MASK (1 << 30) 1399 #define DP_PIPE_SEL(pipe) ((pipe) << 30) 1400 #define DP_PIPE_SEL_SHIFT_IVB 29 1401 #define DP_PIPE_SEL_MASK_IVB (3 << 29) 1402 #define DP_PIPE_SEL_IVB(pipe) ((pipe) << 29) 1403 #define DP_PIPE_SEL_SHIFT_CHV 16 1404 #define DP_PIPE_SEL_MASK_CHV (3 << 16) 1405 #define DP_PIPE_SEL_CHV(pipe) ((pipe) << 16) 1406 1407 /* Link training mode - select a suitable mode for each stage */ 1408 #define DP_LINK_TRAIN_PAT_1 (0 << 28) 1409 #define DP_LINK_TRAIN_PAT_2 (1 << 28) 1410 #define DP_LINK_TRAIN_PAT_IDLE (2 << 28) 1411 #define DP_LINK_TRAIN_OFF (3 << 28) 1412 #define DP_LINK_TRAIN_MASK (3 << 28) 1413 #define DP_LINK_TRAIN_SHIFT 28 1414 1415 /* CPT Link training mode */ 1416 #define DP_LINK_TRAIN_PAT_1_CPT (0 << 8) 1417 #define DP_LINK_TRAIN_PAT_2_CPT (1 << 8) 1418 #define DP_LINK_TRAIN_PAT_IDLE_CPT (2 << 8) 1419 #define DP_LINK_TRAIN_OFF_CPT (3 << 8) 1420 #define DP_LINK_TRAIN_MASK_CPT (7 << 8) 1421 #define DP_LINK_TRAIN_SHIFT_CPT 8 1422 1423 /* Signal voltages. These are mostly controlled by the other end */ 1424 #define DP_VOLTAGE_0_4 (0 << 25) 1425 #define DP_VOLTAGE_0_6 (1 << 25) 1426 #define DP_VOLTAGE_0_8 (2 << 25) 1427 #define DP_VOLTAGE_1_2 (3 << 25) 1428 #define DP_VOLTAGE_MASK (7 << 25) 1429 #define DP_VOLTAGE_SHIFT 25 1430 1431 /* Signal pre-emphasis levels, like voltages, the other end tells us what 1432 * they want 1433 */ 1434 #define DP_PRE_EMPHASIS_0 (0 << 22) 1435 #define DP_PRE_EMPHASIS_3_5 (1 << 22) 1436 #define DP_PRE_EMPHASIS_6 (2 << 22) 1437 #define DP_PRE_EMPHASIS_9_5 (3 << 22) 1438 #define DP_PRE_EMPHASIS_MASK (7 << 22) 1439 #define DP_PRE_EMPHASIS_SHIFT 22 1440 1441 /* How many wires to use. I guess 3 was too hard */ 1442 #define DP_PORT_WIDTH(width) (((width) - 1) << 19) 1443 #define DP_PORT_WIDTH_MASK (7 << 19) 1444 #define DP_PORT_WIDTH_SHIFT 19 1445 1446 /* Mystic DPCD version 1.1 special mode */ 1447 #define DP_ENHANCED_FRAMING (1 << 18) 1448 1449 /* eDP */ 1450 #define DP_PLL_FREQ_270MHZ (0 << 16) 1451 #define DP_PLL_FREQ_162MHZ (1 << 16) 1452 #define DP_PLL_FREQ_MASK (3 << 16) 1453 1454 /* locked once port is enabled */ 1455 #define DP_PORT_REVERSAL (1 << 15) 1456 1457 /* eDP */ 1458 #define DP_PLL_ENABLE (1 << 14) 1459 1460 /* sends the clock on lane 15 of the PEG for debug */ 1461 #define DP_CLOCK_OUTPUT_ENABLE (1 << 13) 1462 1463 #define DP_SCRAMBLING_DISABLE (1 << 12) 1464 #define DP_SCRAMBLING_DISABLE_IRONLAKE (1 << 7) 1465 1466 /* limit RGB values to avoid confusing TVs */ 1467 #define DP_COLOR_RANGE_16_235 (1 << 8) 1468 1469 /* Turn on the audio link */ 1470 #define DP_AUDIO_OUTPUT_ENABLE (1 << 6) 1471 1472 /* vs and hs sync polarity */ 1473 #define DP_SYNC_VS_HIGH (1 << 4) 1474 #define DP_SYNC_HS_HIGH (1 << 3) 1475 1476 /* A fantasy */ 1477 #define DP_DETECTED (1 << 2) 1478 1479 /* 1480 * Computing GMCH M and N values for the Display Port link 1481 * 1482 * GMCH M/N = dot clock * bytes per pixel / ls_clk * # of lanes 1483 * 1484 * ls_clk (we assume) is the DP link clock (1.62 or 2.7 GHz) 1485 * 1486 * The GMCH value is used internally 1487 * 1488 * bytes_per_pixel is the number of bytes coming out of the plane, 1489 * which is after the LUTs, so we want the bytes for our color format. 1490 * For our current usage, this is always 3, one byte for R, G and B. 1491 */ 1492 #define _PIPEA_DATA_M_G4X 0x70050 1493 #define _PIPEB_DATA_M_G4X 0x71050 1494 #define PIPE_DATA_M_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_DATA_M_G4X, _PIPEB_DATA_M_G4X) 1495 /* Transfer unit size for display port - 1, default is 0x3f (for TU size 64) */ 1496 #define TU_SIZE_MASK REG_GENMASK(30, 25) 1497 #define TU_SIZE(x) REG_FIELD_PREP(TU_SIZE_MASK, (x) - 1) /* default size 64 */ 1498 #define DATA_LINK_M_N_MASK REG_GENMASK(23, 0) 1499 #define DATA_LINK_N_MAX (0x800000) 1500 1501 #define _PIPEA_DATA_N_G4X 0x70054 1502 #define _PIPEB_DATA_N_G4X 0x71054 1503 #define PIPE_DATA_N_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_DATA_N_G4X, _PIPEB_DATA_N_G4X) 1504 1505 /* 1506 * Computing Link M and N values for the Display Port link 1507 * 1508 * Link M / N = pixel_clock / ls_clk 1509 * 1510 * (the DP spec calls pixel_clock the 'strm_clk') 1511 * 1512 * The Link value is transmitted in the Main Stream 1513 * Attributes and VB-ID. 1514 */ 1515 #define _PIPEA_LINK_M_G4X 0x70060 1516 #define _PIPEB_LINK_M_G4X 0x71060 1517 #define PIPE_LINK_M_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_LINK_M_G4X, _PIPEB_LINK_M_G4X) 1518 1519 #define _PIPEA_LINK_N_G4X 0x70064 1520 #define _PIPEB_LINK_N_G4X 0x71064 1521 #define PIPE_LINK_N_G4X(pipe) _MMIO_PIPE(pipe, _PIPEA_LINK_N_G4X, _PIPEB_LINK_N_G4X) 1522 1523 /* Pipe A */ 1524 #define _PIPEADSL 0x70000 1525 #define PIPEDSL(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _PIPEADSL) 1526 #define PIPEDSL_CURR_FIELD REG_BIT(31) /* ctg+ */ 1527 #define PIPEDSL_LINE_MASK REG_GENMASK(19, 0) 1528 1529 #define _TRANSACONF 0x70008 1530 #define TRANSCONF(dev_priv, trans) _MMIO_PIPE2(dev_priv, (trans), _TRANSACONF) 1531 #define TRANSCONF_ENABLE REG_BIT(31) 1532 #define TRANSCONF_DOUBLE_WIDE REG_BIT(30) /* pre-i965 */ 1533 #define TRANSCONF_STATE_ENABLE REG_BIT(30) /* i965+ */ 1534 #define TRANSCONF_DSI_PLL_LOCKED REG_BIT(29) /* vlv & pipe A only */ 1535 #define TRANSCONF_FRAME_START_DELAY_MASK REG_GENMASK(28, 27) /* pre-hsw */ 1536 #define TRANSCONF_FRAME_START_DELAY(x) REG_FIELD_PREP(TRANSCONF_FRAME_START_DELAY_MASK, (x)) /* pre-hsw: 0-3 */ 1537 #define TRANSCONF_PIPE_LOCKED REG_BIT(25) 1538 #define TRANSCONF_FORCE_BORDER REG_BIT(25) 1539 #define TRANSCONF_GAMMA_MODE_MASK_I9XX REG_BIT(24) /* gmch */ 1540 #define TRANSCONF_GAMMA_MODE_MASK_ILK REG_GENMASK(25, 24) /* ilk-ivb */ 1541 #define TRANSCONF_GAMMA_MODE_8BIT REG_FIELD_PREP(TRANSCONF_GAMMA_MODE_MASK, 0) 1542 #define TRANSCONF_GAMMA_MODE_10BIT REG_FIELD_PREP(TRANSCONF_GAMMA_MODE_MASK, 1) 1543 #define TRANSCONF_GAMMA_MODE_12BIT REG_FIELD_PREP(TRANSCONF_GAMMA_MODE_MASK_ILK, 2) /* ilk-ivb */ 1544 #define TRANSCONF_GAMMA_MODE_SPLIT REG_FIELD_PREP(TRANSCONF_GAMMA_MODE_MASK_ILK, 3) /* ivb */ 1545 #define TRANSCONF_GAMMA_MODE(x) REG_FIELD_PREP(TRANSCONF_GAMMA_MODE_MASK_ILK, (x)) /* pass in GAMMA_MODE_MODE_* */ 1546 #define TRANSCONF_INTERLACE_MASK REG_GENMASK(23, 21) /* gen3+ */ 1547 #define TRANSCONF_INTERLACE_PROGRESSIVE REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK, 0) 1548 #define TRANSCONF_INTERLACE_W_SYNC_SHIFT_PANEL REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK, 4) /* gen4 only */ 1549 #define TRANSCONF_INTERLACE_W_SYNC_SHIFT REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK, 5) /* gen4 only */ 1550 #define TRANSCONF_INTERLACE_W_FIELD_INDICATION REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK, 6) 1551 #define TRANSCONF_INTERLACE_FIELD_0_ONLY REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK, 7) /* gen3 only */ 1552 /* 1553 * ilk+: PF/D=progressive fetch/display, IF/D=interlaced fetch/display, 1554 * DBL=power saving pixel doubling, PF-ID* requires panel fitter 1555 */ 1556 #define TRANSCONF_INTERLACE_MASK_ILK REG_GENMASK(23, 21) /* ilk+ */ 1557 #define TRANSCONF_INTERLACE_MASK_HSW REG_GENMASK(22, 21) /* hsw+ */ 1558 #define TRANSCONF_INTERLACE_PF_PD_ILK REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK_ILK, 0) 1559 #define TRANSCONF_INTERLACE_PF_ID_ILK REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK_ILK, 1) 1560 #define TRANSCONF_INTERLACE_IF_ID_ILK REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK_ILK, 3) 1561 #define TRANSCONF_INTERLACE_IF_ID_DBL_ILK REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK_ILK, 4) /* ilk/snb only */ 1562 #define TRANSCONF_INTERLACE_PF_ID_DBL_ILK REG_FIELD_PREP(TRANSCONF_INTERLACE_MASK_ILK, 5) /* ilk/snb only */ 1563 #define TRANSCONF_REFRESH_RATE_ALT_ILK REG_BIT(20) 1564 #define TRANSCONF_MSA_TIMING_DELAY_MASK REG_GENMASK(19, 18) /* ilk/snb/ivb */ 1565 #define TRANSCONF_MSA_TIMING_DELAY(x) REG_FIELD_PREP(TRANSCONF_MSA_TIMING_DELAY_MASK, (x)) 1566 #define TRANSCONF_CXSR_DOWNCLOCK REG_BIT(16) 1567 #define TRANSCONF_WGC_ENABLE REG_BIT(15) /* vlv/chv only */ 1568 #define TRANSCONF_REFRESH_RATE_ALT_VLV REG_BIT(14) 1569 #define TRANSCONF_COLOR_RANGE_SELECT REG_BIT(13) 1570 #define TRANSCONF_OUTPUT_COLORSPACE_MASK REG_GENMASK(12, 11) /* ilk-ivb */ 1571 #define TRANSCONF_OUTPUT_COLORSPACE_RGB REG_FIELD_PREP(TRANSCONF_OUTPUT_COLORSPACE_MASK, 0) /* ilk-ivb */ 1572 #define TRANSCONF_OUTPUT_COLORSPACE_YUV601 REG_FIELD_PREP(TRANSCONF_OUTPUT_COLORSPACE_MASK, 1) /* ilk-ivb */ 1573 #define TRANSCONF_OUTPUT_COLORSPACE_YUV709 REG_FIELD_PREP(TRANSCONF_OUTPUT_COLORSPACE_MASK, 2) /* ilk-ivb */ 1574 #define TRANSCONF_OUTPUT_COLORSPACE_YUV_HSW REG_BIT(11) /* hsw only */ 1575 #define TRANSCONF_BPC_MASK REG_GENMASK(7, 5) /* ctg-ivb */ 1576 #define TRANSCONF_BPC_8 REG_FIELD_PREP(TRANSCONF_BPC_MASK, 0) 1577 #define TRANSCONF_BPC_10 REG_FIELD_PREP(TRANSCONF_BPC_MASK, 1) 1578 #define TRANSCONF_BPC_6 REG_FIELD_PREP(TRANSCONF_BPC_MASK, 2) 1579 #define TRANSCONF_BPC_12 REG_FIELD_PREP(TRANSCONF_BPC_MASK, 3) 1580 #define TRANSCONF_DITHER_EN REG_BIT(4) 1581 #define TRANSCONF_DITHER_TYPE_MASK REG_GENMASK(3, 2) 1582 #define TRANSCONF_DITHER_TYPE_SP REG_FIELD_PREP(TRANSCONF_DITHER_TYPE_MASK, 0) 1583 #define TRANSCONF_DITHER_TYPE_ST1 REG_FIELD_PREP(TRANSCONF_DITHER_TYPE_MASK, 1) 1584 #define TRANSCONF_DITHER_TYPE_ST2 REG_FIELD_PREP(TRANSCONF_DITHER_TYPE_MASK, 2) 1585 #define TRANSCONF_DITHER_TYPE_TEMP REG_FIELD_PREP(TRANSCONF_DITHER_TYPE_MASK, 3) 1586 #define TRANSCONF_PIXEL_COUNT_SCALING_MASK REG_GENMASK(1, 0) 1587 #define TRANSCONF_PIXEL_COUNT_SCALING_X4 1 1588 1589 #define _PIPEASTAT 0x70024 1590 #define PIPESTAT(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _PIPEASTAT) 1591 #define PIPE_FIFO_UNDERRUN_STATUS (1UL << 31) 1592 #define SPRITE1_FLIP_DONE_INT_EN_VLV (1UL << 30) 1593 #define PIPE_CRC_ERROR_ENABLE (1UL << 29) 1594 #define PIPE_CRC_DONE_ENABLE (1UL << 28) 1595 #define PERF_COUNTER2_INTERRUPT_EN (1UL << 27) 1596 #define PIPE_GMBUS_EVENT_ENABLE (1UL << 27) 1597 #define PLANE_FLIP_DONE_INT_EN_VLV (1UL << 26) 1598 #define PIPE_HOTPLUG_INTERRUPT_ENABLE (1UL << 26) 1599 #define PIPE_VSYNC_INTERRUPT_ENABLE (1UL << 25) 1600 #define PIPE_DISPLAY_LINE_COMPARE_ENABLE (1UL << 24) 1601 #define PIPE_DPST_EVENT_ENABLE (1UL << 23) 1602 #define SPRITE0_FLIP_DONE_INT_EN_VLV (1UL << 22) 1603 #define PIPE_LEGACY_BLC_EVENT_ENABLE (1UL << 22) 1604 #define PIPE_ODD_FIELD_INTERRUPT_ENABLE (1UL << 21) 1605 #define PIPE_EVEN_FIELD_INTERRUPT_ENABLE (1UL << 20) 1606 #define PIPE_B_PSR_INTERRUPT_ENABLE_VLV (1UL << 19) 1607 #define PERF_COUNTER_INTERRUPT_EN (1UL << 19) 1608 #define PIPE_HOTPLUG_TV_INTERRUPT_ENABLE (1UL << 18) /* pre-965 */ 1609 #define PIPE_START_VBLANK_INTERRUPT_ENABLE (1UL << 18) /* 965 or later */ 1610 #define PIPE_FRAMESTART_INTERRUPT_ENABLE (1UL << 17) 1611 #define PIPE_VBLANK_INTERRUPT_ENABLE (1UL << 17) 1612 #define PIPEA_HBLANK_INT_EN_VLV (1UL << 16) 1613 #define PIPE_OVERLAY_UPDATED_ENABLE (1UL << 16) 1614 #define SPRITE1_FLIP_DONE_INT_STATUS_VLV (1UL << 15) 1615 #define SPRITE0_FLIP_DONE_INT_STATUS_VLV (1UL << 14) 1616 #define PIPE_CRC_ERROR_INTERRUPT_STATUS (1UL << 13) 1617 #define PIPE_CRC_DONE_INTERRUPT_STATUS (1UL << 12) 1618 #define PERF_COUNTER2_INTERRUPT_STATUS (1UL << 11) 1619 #define PIPE_GMBUS_INTERRUPT_STATUS (1UL << 11) 1620 #define PLANE_FLIP_DONE_INT_STATUS_VLV (1UL << 10) 1621 #define PIPE_HOTPLUG_INTERRUPT_STATUS (1UL << 10) 1622 #define PIPE_VSYNC_INTERRUPT_STATUS (1UL << 9) 1623 #define PIPE_DISPLAY_LINE_COMPARE_STATUS (1UL << 8) 1624 #define PIPE_DPST_EVENT_STATUS (1UL << 7) 1625 #define PIPE_A_PSR_STATUS_VLV (1UL << 6) 1626 #define PIPE_LEGACY_BLC_EVENT_STATUS (1UL << 6) 1627 #define PIPE_ODD_FIELD_INTERRUPT_STATUS (1UL << 5) 1628 #define PIPE_EVEN_FIELD_INTERRUPT_STATUS (1UL << 4) 1629 #define PIPE_B_PSR_STATUS_VLV (1UL << 3) 1630 #define PERF_COUNTER_INTERRUPT_STATUS (1UL << 3) 1631 #define PIPE_HOTPLUG_TV_INTERRUPT_STATUS (1UL << 2) /* pre-965 */ 1632 #define PIPE_START_VBLANK_INTERRUPT_STATUS (1UL << 2) /* 965 or later */ 1633 #define PIPE_FRAMESTART_INTERRUPT_STATUS (1UL << 1) 1634 #define PIPE_VBLANK_INTERRUPT_STATUS (1UL << 1) 1635 #define PIPE_HBLANK_INT_STATUS (1UL << 0) 1636 #define PIPE_OVERLAY_UPDATED_STATUS (1UL << 0) 1637 #define PIPESTAT_INT_ENABLE_MASK 0x7fff0000 1638 #define PIPESTAT_INT_STATUS_MASK 0x0000ffff 1639 1640 #define _PIPE_ARB_CTL_A 0x70028 /* icl+ */ 1641 #define PIPE_ARB_CTL(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _PIPE_ARB_CTL_A) 1642 #define PIPE_ARB_USE_PROG_SLOTS REG_BIT(13) 1643 1644 #define _PIPE_MISC_A 0x70030 1645 #define _PIPE_MISC_B 0x71030 1646 #define PIPE_MISC(pipe) _MMIO_PIPE(pipe, _PIPE_MISC_A, _PIPE_MISC_B) 1647 #define PIPE_MISC_YUV420_ENABLE REG_BIT(27) /* glk+ */ 1648 #define PIPE_MISC_YUV420_MODE_FULL_BLEND REG_BIT(26) /* glk+ */ 1649 #define PIPE_MISC_HDR_MODE_PRECISION REG_BIT(23) /* icl+ */ 1650 #define PIPE_MISC_PSR_MASK_PRIMARY_FLIP REG_BIT(23) /* bdw */ 1651 #define PIPE_MISC_PSR_MASK_SPRITE_ENABLE REG_BIT(22) /* bdw */ 1652 #define PIPE_MISC_PSR_MASK_PIPE_REG_WRITE REG_BIT(21) /* skl+ */ 1653 #define PIPE_MISC_PSR_MASK_CURSOR_MOVE REG_BIT(21) /* bdw */ 1654 #define PIPE_MISC_PSR_MASK_VBLANK_VSYNC_INT REG_BIT(20) 1655 #define PIPE_MISC_OUTPUT_COLORSPACE_YUV REG_BIT(11) 1656 #define PIPE_MISC_PIXEL_ROUNDING_TRUNC REG_BIT(8) /* tgl+ */ 1657 /* 1658 * For Display < 13, Bits 5-7 of PIPE MISC represent DITHER BPC with 1659 * valid values of: 6, 8, 10 BPC. 1660 * ADLP+, the bits 5-7 represent PORT OUTPUT BPC with valid values of: 1661 * 6, 8, 10, 12 BPC. 1662 */ 1663 #define PIPE_MISC_BPC_MASK REG_GENMASK(7, 5) 1664 #define PIPE_MISC_BPC_8 REG_FIELD_PREP(PIPE_MISC_BPC_MASK, 0) 1665 #define PIPE_MISC_BPC_10 REG_FIELD_PREP(PIPE_MISC_BPC_MASK, 1) 1666 #define PIPE_MISC_BPC_6 REG_FIELD_PREP(PIPE_MISC_BPC_MASK, 2) 1667 #define PIPE_MISC_BPC_12_ADLP REG_FIELD_PREP(PIPE_MISC_BPC_MASK, 4) /* adlp+ */ 1668 #define PIPE_MISC_DITHER_ENABLE REG_BIT(4) 1669 #define PIPE_MISC_DITHER_TYPE_MASK REG_GENMASK(3, 2) 1670 #define PIPE_MISC_DITHER_TYPE_SP REG_FIELD_PREP(PIPE_MISC_DITHER_TYPE_MASK, 0) 1671 #define PIPE_MISC_DITHER_TYPE_ST1 REG_FIELD_PREP(PIPE_MISC_DITHER_TYPE_MASK, 1) 1672 #define PIPE_MISC_DITHER_TYPE_ST2 REG_FIELD_PREP(PIPE_MISC_DITHER_TYPE_MASK, 2) 1673 #define PIPE_MISC_DITHER_TYPE_TEMP REG_FIELD_PREP(PIPE_MISC_DITHER_TYPE_MASK, 3) 1674 1675 #define _PIPE_MISC2_A 0x7002C 1676 #define _PIPE_MISC2_B 0x7102C 1677 #define PIPE_MISC2(pipe) _MMIO_PIPE(pipe, _PIPE_MISC2_A, _PIPE_MISC2_B) 1678 #define PIPE_MISC2_BUBBLE_COUNTER_MASK REG_GENMASK(31, 24) 1679 #define PIPE_MISC2_BUBBLE_COUNTER_SCALER_EN REG_FIELD_PREP(PIPE_MISC2_BUBBLE_COUNTER_MASK, 80) 1680 #define PIPE_MISC2_BUBBLE_COUNTER_SCALER_DIS REG_FIELD_PREP(PIPE_MISC2_BUBBLE_COUNTER_MASK, 20) 1681 #define PIPE_MISC2_FLIP_INFO_PLANE_SEL_MASK REG_GENMASK(2, 0) /* tgl+ */ 1682 #define PIPE_MISC2_FLIP_INFO_PLANE_SEL(plane_id) REG_FIELD_PREP(PIPE_MISC2_FLIP_INFO_PLANE_SEL_MASK, (plane_id)) 1683 1684 #define VLV_DPFLIPSTAT _MMIO(VLV_DISPLAY_BASE + 0x70028) 1685 #define PIPEB_LINE_COMPARE_INT_EN REG_BIT(29) 1686 #define PIPEB_HLINE_INT_EN REG_BIT(28) 1687 #define PIPEB_VBLANK_INT_EN REG_BIT(27) 1688 #define SPRITED_FLIP_DONE_INT_EN REG_BIT(26) 1689 #define SPRITEC_FLIP_DONE_INT_EN REG_BIT(25) 1690 #define PLANEB_FLIP_DONE_INT_EN REG_BIT(24) 1691 #define PIPE_PSR_INT_EN REG_BIT(22) 1692 #define PIPEA_LINE_COMPARE_INT_EN REG_BIT(21) 1693 #define PIPEA_HLINE_INT_EN REG_BIT(20) 1694 #define PIPEA_VBLANK_INT_EN REG_BIT(19) 1695 #define SPRITEB_FLIP_DONE_INT_EN REG_BIT(18) 1696 #define SPRITEA_FLIP_DONE_INT_EN REG_BIT(17) 1697 #define PLANEA_FLIPDONE_INT_EN REG_BIT(16) 1698 #define PIPEC_LINE_COMPARE_INT_EN REG_BIT(13) 1699 #define PIPEC_HLINE_INT_EN REG_BIT(12) 1700 #define PIPEC_VBLANK_INT_EN REG_BIT(11) 1701 #define SPRITEF_FLIPDONE_INT_EN REG_BIT(10) 1702 #define SPRITEE_FLIPDONE_INT_EN REG_BIT(9) 1703 #define PLANEC_FLIPDONE_INT_EN REG_BIT(8) 1704 1705 #define DPINVGTT _MMIO(VLV_DISPLAY_BASE + 0x7002c) /* VLV/CHV only */ 1706 #define DPINVGTT_EN_MASK_CHV REG_GENMASK(27, 16) 1707 #define DPINVGTT_EN_MASK_VLV REG_GENMASK(23, 16) 1708 #define SPRITEF_INVALID_GTT_INT_EN REG_BIT(27) 1709 #define SPRITEE_INVALID_GTT_INT_EN REG_BIT(26) 1710 #define PLANEC_INVALID_GTT_INT_EN REG_BIT(25) 1711 #define CURSORC_INVALID_GTT_INT_EN REG_BIT(24) 1712 #define CURSORB_INVALID_GTT_INT_EN REG_BIT(23) 1713 #define CURSORA_INVALID_GTT_INT_EN REG_BIT(22) 1714 #define SPRITED_INVALID_GTT_INT_EN REG_BIT(21) 1715 #define SPRITEC_INVALID_GTT_INT_EN REG_BIT(20) 1716 #define PLANEB_INVALID_GTT_INT_EN REG_BIT(19) 1717 #define SPRITEB_INVALID_GTT_INT_EN REG_BIT(18) 1718 #define SPRITEA_INVALID_GTT_INT_EN REG_BIT(17) 1719 #define PLANEA_INVALID_GTT_INT_EN REG_BIT(16) 1720 #define DPINVGTT_STATUS_MASK_CHV REG_GENMASK(11, 0) 1721 #define DPINVGTT_STATUS_MASK_VLV REG_GENMASK(7, 0) 1722 #define SPRITEF_INVALID_GTT_STATUS REG_BIT(11) 1723 #define SPRITEE_INVALID_GTT_STATUS REG_BIT(10) 1724 #define PLANEC_INVALID_GTT_STATUS REG_BIT(9) 1725 #define CURSORC_INVALID_GTT_STATUS REG_BIT(8) 1726 #define CURSORB_INVALID_GTT_STATUS REG_BIT(7) 1727 #define CURSORA_INVALID_GTT_STATUS REG_BIT(6) 1728 #define SPRITED_INVALID_GTT_STATUS REG_BIT(5) 1729 #define SPRITEC_INVALID_GTT_STATUS REG_BIT(4) 1730 #define PLANEB_INVALID_GTT_STATUS REG_BIT(3) 1731 #define SPRITEB_INVALID_GTT_STATUS REG_BIT(2) 1732 #define SPRITEA_INVALID_GTT_STATUS REG_BIT(1) 1733 #define PLANEA_INVALID_GTT_STATUS REG_BIT(0) 1734 1735 #define CBR1_VLV _MMIO(VLV_DISPLAY_BASE + 0x70400) 1736 #define CBR_PND_DEADLINE_DISABLE (1 << 31) 1737 #define CBR_PWM_CLOCK_MUX_SELECT (1 << 30) 1738 1739 #define CBR4_VLV _MMIO(VLV_DISPLAY_BASE + 0x70450) 1740 #define CBR_DPLLBMD_PIPE(pipe) (1 << (7 + (pipe) * 11)) /* pipes B and C */ 1741 1742 /* 1743 * The two pipe frame counter registers are not synchronized, so 1744 * reading a stable value is somewhat tricky. The following code 1745 * should work: 1746 * 1747 * do { 1748 * high1 = ((INREG(PIPEAFRAMEHIGH) & PIPE_FRAME_HIGH_MASK) >> 1749 * PIPE_FRAME_HIGH_SHIFT; 1750 * low1 = ((INREG(PIPEAFRAMEPIXEL) & PIPE_FRAME_LOW_MASK) >> 1751 * PIPE_FRAME_LOW_SHIFT); 1752 * high2 = ((INREG(PIPEAFRAMEHIGH) & PIPE_FRAME_HIGH_MASK) >> 1753 * PIPE_FRAME_HIGH_SHIFT); 1754 * } while (high1 != high2); 1755 * frame = (high1 << 8) | low1; 1756 */ 1757 #define _PIPEAFRAMEHIGH 0x70040 1758 #define PIPEFRAME(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _PIPEAFRAMEHIGH) 1759 #define PIPE_FRAME_HIGH_MASK 0x0000ffff 1760 #define PIPE_FRAME_HIGH_SHIFT 0 1761 1762 #define _PIPEAFRAMEPIXEL 0x70044 1763 #define PIPEFRAMEPIXEL(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _PIPEAFRAMEPIXEL) 1764 #define PIPE_FRAME_LOW_MASK 0xff000000 1765 #define PIPE_FRAME_LOW_SHIFT 24 1766 #define PIPE_PIXEL_MASK 0x00ffffff 1767 #define PIPE_PIXEL_SHIFT 0 1768 1769 /* GM45+ just has to be different */ 1770 #define _PIPEA_FRMCOUNT_G4X 0x70040 1771 #define PIPE_FRMCOUNT_G4X(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _PIPEA_FRMCOUNT_G4X) 1772 1773 #define _PIPEA_FLIPCOUNT_G4X 0x70044 1774 #define PIPE_FLIPCOUNT_G4X(dev_priv, pipe) _MMIO_PIPE2(dev_priv, pipe, _PIPEA_FLIPCOUNT_G4X) 1775 1776 /* CHV pipe B blender */ 1777 #define _CHV_BLEND_A 0x60a00 1778 #define CHV_BLEND(dev_priv, pipe) _MMIO_TRANS2(dev_priv, pipe, _CHV_BLEND_A) 1779 #define CHV_BLEND_MASK REG_GENMASK(31, 30) 1780 #define CHV_BLEND_LEGACY REG_FIELD_PREP(CHV_BLEND_MASK, 0) 1781 #define CHV_BLEND_ANDROID REG_FIELD_PREP(CHV_BLEND_MASK, 1) 1782 #define CHV_BLEND_MPO REG_FIELD_PREP(CHV_BLEND_MASK, 2) 1783 1784 #define _CHV_CANVAS_A 0x60a04 1785 #define CHV_CANVAS(dev_priv, pipe) _MMIO_TRANS2(dev_priv, pipe, _CHV_CANVAS_A) 1786 #define CHV_CANVAS_RED_MASK REG_GENMASK(29, 20) 1787 #define CHV_CANVAS_GREEN_MASK REG_GENMASK(19, 10) 1788 #define CHV_CANVAS_BLUE_MASK REG_GENMASK(9, 0) 1789 1790 /* Display/Sprite base address macros */ 1791 #define DISP_BASEADDR_MASK (0xfffff000) 1792 #define I915_LO_DISPBASE(val) ((val) & ~DISP_BASEADDR_MASK) 1793 #define I915_HI_DISPBASE(val) ((val) & DISP_BASEADDR_MASK) 1794 1795 /* 1796 * VBIOS flags 1797 * gen2: 1798 * [00:06] alm,mgm 1799 * [10:16] all 1800 * [30:32] alm,mgm 1801 * gen3+: 1802 * [00:0f] all 1803 * [10:1f] all 1804 * [30:32] all 1805 */ 1806 #define SWF0(dev_priv, i) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x70410 + (i) * 4) 1807 #define SWF1(dev_priv, i) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x71410 + (i) * 4) 1808 #define SWF3(dev_priv, i) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x72414 + (i) * 4) 1809 #define SWF_ILK(i) _MMIO(0x4F000 + (i) * 4) 1810 1811 /* VBIOS regs */ 1812 #define VGACNTRL _MMIO(0x71400) 1813 # define VGA_DISP_DISABLE (1 << 31) 1814 # define VGA_2X_MODE (1 << 30) 1815 # define VGA_PIPE_B_SELECT (1 << 29) 1816 1817 #define VLV_VGACNTRL _MMIO(VLV_DISPLAY_BASE + 0x71400) 1818 1819 /* Ironlake */ 1820 1821 #define CPU_VGACNTRL _MMIO(0x41000) 1822 1823 #define DIGITAL_PORT_HOTPLUG_CNTRL _MMIO(0x44030) 1824 #define DIGITAL_PORTA_HOTPLUG_ENABLE (1 << 4) 1825 #define DIGITAL_PORTA_PULSE_DURATION_2ms (0 << 2) /* pre-HSW */ 1826 #define DIGITAL_PORTA_PULSE_DURATION_4_5ms (1 << 2) /* pre-HSW */ 1827 #define DIGITAL_PORTA_PULSE_DURATION_6ms (2 << 2) /* pre-HSW */ 1828 #define DIGITAL_PORTA_PULSE_DURATION_100ms (3 << 2) /* pre-HSW */ 1829 #define DIGITAL_PORTA_PULSE_DURATION_MASK (3 << 2) /* pre-HSW */ 1830 #define DIGITAL_PORTA_HOTPLUG_STATUS_MASK (3 << 0) 1831 #define DIGITAL_PORTA_HOTPLUG_NO_DETECT (0 << 0) 1832 #define DIGITAL_PORTA_HOTPLUG_SHORT_DETECT (1 << 0) 1833 #define DIGITAL_PORTA_HOTPLUG_LONG_DETECT (2 << 0) 1834 1835 /* refresh rate hardware control */ 1836 #define RR_HW_CTL _MMIO(0x45300) 1837 #define RR_HW_LOW_POWER_FRAMES_MASK 0xff 1838 #define RR_HW_HIGH_POWER_FRAMES_MASK 0xff00 1839 1840 #define PCH_3DCGDIS0 _MMIO(0x46020) 1841 # define MARIUNIT_CLOCK_GATE_DISABLE (1 << 18) 1842 # define SVSMUNIT_CLOCK_GATE_DISABLE (1 << 1) 1843 1844 #define PCH_3DCGDIS1 _MMIO(0x46024) 1845 # define VFMUNIT_CLOCK_GATE_DISABLE (1 << 11) 1846 1847 #define _PIPEA_DATA_M1 0x60030 1848 #define _PIPEB_DATA_M1 0x61030 1849 #define PIPE_DATA_M1(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_DATA_M1) 1850 1851 #define _PIPEA_DATA_N1 0x60034 1852 #define _PIPEB_DATA_N1 0x61034 1853 #define PIPE_DATA_N1(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_DATA_N1) 1854 1855 #define _PIPEA_DATA_M2 0x60038 1856 #define _PIPEB_DATA_M2 0x61038 1857 #define PIPE_DATA_M2(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_DATA_M2) 1858 1859 #define _PIPEA_DATA_N2 0x6003c 1860 #define _PIPEB_DATA_N2 0x6103c 1861 #define PIPE_DATA_N2(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_DATA_N2) 1862 1863 #define _PIPEA_LINK_M1 0x60040 1864 #define _PIPEB_LINK_M1 0x61040 1865 #define PIPE_LINK_M1(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_LINK_M1) 1866 1867 #define _PIPEA_LINK_N1 0x60044 1868 #define _PIPEB_LINK_N1 0x61044 1869 #define PIPE_LINK_N1(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_LINK_N1) 1870 1871 #define _PIPEA_LINK_M2 0x60048 1872 #define _PIPEB_LINK_M2 0x61048 1873 #define PIPE_LINK_M2(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_LINK_M2) 1874 1875 #define _PIPEA_LINK_N2 0x6004c 1876 #define _PIPEB_LINK_N2 0x6104c 1877 #define PIPE_LINK_N2(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _PIPEA_LINK_N2) 1878 1879 /* CPU panel fitter */ 1880 /* IVB+ has 3 fitters, 0 is 7x5 capable, the other two only 3x3 */ 1881 #define _PFA_CTL_1 0x68080 1882 #define _PFB_CTL_1 0x68880 1883 #define PF_CTL(pipe) _MMIO_PIPE(pipe, _PFA_CTL_1, _PFB_CTL_1) 1884 #define PF_ENABLE REG_BIT(31) 1885 #define PF_PIPE_SEL_MASK_IVB REG_GENMASK(30, 29) /* ivb/hsw */ 1886 #define PF_PIPE_SEL_IVB(pipe) REG_FIELD_PREP(PF_PIPE_SEL_MASK_IVB, (pipe)) 1887 #define PF_FILTER_MASK REG_GENMASK(24, 23) 1888 #define PF_FILTER_PROGRAMMED REG_FIELD_PREP(PF_FILTER_MASK, 0) 1889 #define PF_FILTER_MED_3x3 REG_FIELD_PREP(PF_FILTER_MASK, 1) 1890 #define PF_FILTER_EDGE_ENHANCE REG_FIELD_PREP(PF_FILTER_EDGE_MASK, 2) 1891 #define PF_FILTER_EDGE_SOFTEN REG_FIELD_PREP(PF_FILTER_EDGE_MASK, 3) 1892 1893 #define _PFA_WIN_SZ 0x68074 1894 #define _PFB_WIN_SZ 0x68874 1895 #define PF_WIN_SZ(pipe) _MMIO_PIPE(pipe, _PFA_WIN_SZ, _PFB_WIN_SZ) 1896 #define PF_WIN_XSIZE_MASK REG_GENMASK(31, 16) 1897 #define PF_WIN_XSIZE(w) REG_FIELD_PREP(PF_WIN_XSIZE_MASK, (w)) 1898 #define PF_WIN_YSIZE_MASK REG_GENMASK(15, 0) 1899 #define PF_WIN_YSIZE(h) REG_FIELD_PREP(PF_WIN_YSIZE_MASK, (h)) 1900 1901 #define _PFA_WIN_POS 0x68070 1902 #define _PFB_WIN_POS 0x68870 1903 #define PF_WIN_POS(pipe) _MMIO_PIPE(pipe, _PFA_WIN_POS, _PFB_WIN_POS) 1904 #define PF_WIN_XPOS_MASK REG_GENMASK(31, 16) 1905 #define PF_WIN_XPOS(x) REG_FIELD_PREP(PF_WIN_XPOS_MASK, (x)) 1906 #define PF_WIN_YPOS_MASK REG_GENMASK(15, 0) 1907 #define PF_WIN_YPOS(y) REG_FIELD_PREP(PF_WIN_YPOS_MASK, (y)) 1908 1909 #define _PFA_VSCALE 0x68084 1910 #define _PFB_VSCALE 0x68884 1911 #define PF_VSCALE(pipe) _MMIO_PIPE(pipe, _PFA_VSCALE, _PFB_VSCALE) 1912 1913 #define _PFA_HSCALE 0x68090 1914 #define _PFB_HSCALE 0x68890 1915 #define PF_HSCALE(pipe) _MMIO_PIPE(pipe, _PFA_HSCALE, _PFB_HSCALE) 1916 1917 /* 1918 * Skylake scalers 1919 */ 1920 #define _ID(id, a, b) _PICK_EVEN(id, a, b) 1921 #define _PS_1A_CTRL 0x68180 1922 #define _PS_2A_CTRL 0x68280 1923 #define _PS_1B_CTRL 0x68980 1924 #define _PS_2B_CTRL 0x68A80 1925 #define _PS_1C_CTRL 0x69180 1926 #define SKL_PS_CTRL(pipe, id) _MMIO_PIPE(pipe, \ 1927 _ID(id, _PS_1A_CTRL, _PS_2A_CTRL), \ 1928 _ID(id, _PS_1B_CTRL, _PS_2B_CTRL)) 1929 #define PS_SCALER_EN REG_BIT(31) 1930 #define PS_SCALER_TYPE_MASK REG_BIT(30) /* icl+ */ 1931 #define PS_SCALER_TYPE_NON_LINEAR REG_FIELD_PREP(PS_SCALER_TYPE_MASK, 0) 1932 #define PS_SCALER_TYPE_LINEAR REG_FIELD_PREP(PS_SCALER_TYPE_MASK, 1) 1933 #define SKL_PS_SCALER_MODE_MASK REG_GENMASK(29, 28) /* skl/bxt */ 1934 #define SKL_PS_SCALER_MODE_DYN REG_FIELD_PREP(SKL_PS_SCALER_MODE_MASK, 0) 1935 #define SKL_PS_SCALER_MODE_HQ REG_FIELD_PREP(SKL_PS_SCALER_MODE_MASK, 1) 1936 #define SKL_PS_SCALER_MODE_NV12 REG_FIELD_PREP(SKL_PS_SCALER_MODE_MASK, 2) 1937 #define PS_SCALER_MODE_MASK REG_BIT(29) /* glk-tgl */ 1938 #define PS_SCALER_MODE_NORMAL REG_FIELD_PREP(PS_SCALER_MODE_MASK, 0) 1939 #define PS_SCALER_MODE_PLANAR REG_FIELD_PREP(PS_SCALER_MODE_MASK, 1) 1940 #define PS_ADAPTIVE_FILTERING_EN REG_BIT(28) /* icl+ */ 1941 #define PS_BINDING_MASK REG_GENMASK(27, 25) 1942 #define PS_BINDING_PIPE REG_FIELD_PREP(PS_BINDING_MASK, 0) 1943 #define PS_BINDING_PLANE(plane_id) REG_FIELD_PREP(PS_BINDING_MASK, (plane_id) + 1) 1944 #define PS_FILTER_MASK REG_GENMASK(24, 23) 1945 #define PS_FILTER_MEDIUM REG_FIELD_PREP(PS_FILTER_MASK, 0) 1946 #define PS_FILTER_PROGRAMMED REG_FIELD_PREP(PS_FILTER_MASK, 1) 1947 #define PS_FILTER_EDGE_ENHANCE REG_FIELD_PREP(PS_FILTER_MASK, 2) 1948 #define PS_FILTER_BILINEAR REG_FIELD_PREP(PS_FILTER_MASK, 3) 1949 #define PS_ADAPTIVE_FILTER_MASK REG_BIT(22) /* icl+ */ 1950 #define PS_ADAPTIVE_FILTER_MEDIUM REG_FIELD_PREP(PS_ADAPTIVE_FILTER_MASK, 0) 1951 #define PS_ADAPTIVE_FILTER_EDGE_ENHANCE REG_FIELD_PREP(PS_ADAPTIVE_FILTER_MASK, 1) 1952 #define PS_PIPE_SCALER_LOC_MASK REG_BIT(21) /* icl+ */ 1953 #define PS_PIPE_SCALER_LOC_AFTER_OUTPUT_CSC REG_FIELD_PREP(PS_SCALER_LOCATION_MASK, 0) /* non-linear */ 1954 #define PS_PIPE_SCALER_LOC_AFTER_CSC REG_FIELD_PREP(PS_SCALER_LOCATION_MASK, 1) /* linear */ 1955 #define PS_VERT3TAP REG_BIT(21) /* skl/bxt */ 1956 #define PS_VERT_INT_INVERT_FIELD REG_BIT(20) 1957 #define PS_PROG_SCALE_FACTOR REG_BIT(19) /* tgl+ */ 1958 #define PS_PWRUP_PROGRESS REG_BIT(17) 1959 #define PS_V_FILTER_BYPASS REG_BIT(8) 1960 #define PS_VADAPT_EN REG_BIT(7) /* skl/bxt */ 1961 #define PS_VADAPT_MODE_MASK REG_GENMASK(6, 5) /* skl/bxt */ 1962 #define PS_VADAPT_MODE_LEAST_ADAPT REG_FIELD_PREP(PS_VADAPT_MODE_MASK, 0) 1963 #define PS_VADAPT_MODE_MOD_ADAPT REG_FIELD_PREP(PS_VADAPT_MODE_MASK, 1) 1964 #define PS_VADAPT_MODE_MOST_ADAPT REG_FIELD_PREP(PS_VADAPT_MODE_MASK, 3) 1965 #define PS_BINDING_Y_MASK REG_GENMASK(7, 5) /* icl-tgl */ 1966 #define PS_BINDING_Y_PLANE(plane_id) REG_FIELD_PREP(PS_BINDING_Y_MASK, (plane_id) + 1) 1967 #define PS_Y_VERT_FILTER_SELECT_MASK REG_BIT(4) /* glk+ */ 1968 #define PS_Y_VERT_FILTER_SELECT(set) REG_FIELD_PREP(PS_Y_VERT_FILTER_SELECT_MASK, (set)) 1969 #define PS_Y_HORZ_FILTER_SELECT_MASK REG_BIT(3) /* glk+ */ 1970 #define PS_Y_HORZ_FILTER_SELECT(set) REG_FIELD_PREP(PS_Y_HORZ_FILTER_SELECT_MASK, (set)) 1971 #define PS_UV_VERT_FILTER_SELECT_MASK REG_BIT(2) /* glk+ */ 1972 #define PS_UV_VERT_FILTER_SELECT(set) REG_FIELD_PREP(PS_UV_VERT_FILTER_SELECT_MASK, (set)) 1973 #define PS_UV_HORZ_FILTER_SELECT_MASK REG_BIT(1) /* glk+ */ 1974 #define PS_UV_HORZ_FILTER_SELECT(set) REG_FIELD_PREP(PS_UV_HORZ_FILTER_SELECT_MASK, (set)) 1975 1976 #define _PS_PWR_GATE_1A 0x68160 1977 #define _PS_PWR_GATE_2A 0x68260 1978 #define _PS_PWR_GATE_1B 0x68960 1979 #define _PS_PWR_GATE_2B 0x68A60 1980 #define _PS_PWR_GATE_1C 0x69160 1981 #define SKL_PS_PWR_GATE(pipe, id) _MMIO_PIPE(pipe, \ 1982 _ID(id, _PS_PWR_GATE_1A, _PS_PWR_GATE_2A), \ 1983 _ID(id, _PS_PWR_GATE_1B, _PS_PWR_GATE_2B)) 1984 #define PS_PWR_GATE_DIS_OVERRIDE REG_BIT(31) 1985 #define PS_PWR_GATE_SETTLING_TIME_MASK REG_GENMASK(4, 3) 1986 #define PS_PWR_GATE_SETTLING_TIME_32 REG_FIELD_PREP(PS_PWR_GATE_SETTLING_TIME_MASK, 0) 1987 #define PS_PWR_GATE_SETTLING_TIME_64 REG_FIELD_PREP(PS_PWR_GATE_SETTLING_TIME_MASK, 1) 1988 #define PS_PWR_GATE_SETTLING_TIME_96 REG_FIELD_PREP(PS_PWR_GATE_SETTLING_TIME_MASK, 2) 1989 #define PS_PWR_GATE_SETTLING_TIME_128 REG_FIELD_PREP(PS_PWR_GATE_SETTLING_TIME_MASK, 3) 1990 #define PS_PWR_GATE_SLPEN_MASK REG_GENMASK(1, 0) 1991 #define PS_PWR_GATE_SLPEN_8 REG_FIELD_PREP(PS_PWR_GATE_SLPEN_MASK, 0) 1992 #define PS_PWR_GATE_SLPEN_16 REG_FIELD_PREP(PS_PWR_GATE_SLPEN_MASK, 1) 1993 #define PS_PWR_GATE_SLPEN_24 REG_FIELD_PREP(PS_PWR_GATE_SLPEN_MASK, 2) 1994 #define PS_PWR_GATE_SLPEN_32 REG_FIELD_PREP(PS_PWR_GATE_SLPEN_MASK, 3) 1995 1996 #define _PS_WIN_POS_1A 0x68170 1997 #define _PS_WIN_POS_2A 0x68270 1998 #define _PS_WIN_POS_1B 0x68970 1999 #define _PS_WIN_POS_2B 0x68A70 2000 #define _PS_WIN_POS_1C 0x69170 2001 #define SKL_PS_WIN_POS(pipe, id) _MMIO_PIPE(pipe, \ 2002 _ID(id, _PS_WIN_POS_1A, _PS_WIN_POS_2A), \ 2003 _ID(id, _PS_WIN_POS_1B, _PS_WIN_POS_2B)) 2004 #define PS_WIN_XPOS_MASK REG_GENMASK(31, 16) 2005 #define PS_WIN_XPOS(x) REG_FIELD_PREP(PS_WIN_XPOS_MASK, (x)) 2006 #define PS_WIN_YPOS_MASK REG_GENMASK(15, 0) 2007 #define PS_WIN_YPOS(y) REG_FIELD_PREP(PS_WIN_YPOS_MASK, (y)) 2008 2009 #define _PS_WIN_SZ_1A 0x68174 2010 #define _PS_WIN_SZ_2A 0x68274 2011 #define _PS_WIN_SZ_1B 0x68974 2012 #define _PS_WIN_SZ_2B 0x68A74 2013 #define _PS_WIN_SZ_1C 0x69174 2014 #define SKL_PS_WIN_SZ(pipe, id) _MMIO_PIPE(pipe, \ 2015 _ID(id, _PS_WIN_SZ_1A, _PS_WIN_SZ_2A), \ 2016 _ID(id, _PS_WIN_SZ_1B, _PS_WIN_SZ_2B)) 2017 #define PS_WIN_XSIZE_MASK REG_GENMASK(31, 16) 2018 #define PS_WIN_XSIZE(w) REG_FIELD_PREP(PS_WIN_XSIZE_MASK, (w)) 2019 #define PS_WIN_YSIZE_MASK REG_GENMASK(15, 0) 2020 #define PS_WIN_YSIZE(h) REG_FIELD_PREP(PS_WIN_YSIZE_MASK, (h)) 2021 2022 #define _PS_VSCALE_1A 0x68184 2023 #define _PS_VSCALE_2A 0x68284 2024 #define _PS_VSCALE_1B 0x68984 2025 #define _PS_VSCALE_2B 0x68A84 2026 #define _PS_VSCALE_1C 0x69184 2027 #define SKL_PS_VSCALE(pipe, id) _MMIO_PIPE(pipe, \ 2028 _ID(id, _PS_VSCALE_1A, _PS_VSCALE_2A), \ 2029 _ID(id, _PS_VSCALE_1B, _PS_VSCALE_2B)) 2030 2031 #define _PS_HSCALE_1A 0x68190 2032 #define _PS_HSCALE_2A 0x68290 2033 #define _PS_HSCALE_1B 0x68990 2034 #define _PS_HSCALE_2B 0x68A90 2035 #define _PS_HSCALE_1C 0x69190 2036 #define SKL_PS_HSCALE(pipe, id) _MMIO_PIPE(pipe, \ 2037 _ID(id, _PS_HSCALE_1A, _PS_HSCALE_2A), \ 2038 _ID(id, _PS_HSCALE_1B, _PS_HSCALE_2B)) 2039 2040 #define _PS_VPHASE_1A 0x68188 2041 #define _PS_VPHASE_2A 0x68288 2042 #define _PS_VPHASE_1B 0x68988 2043 #define _PS_VPHASE_2B 0x68A88 2044 #define _PS_VPHASE_1C 0x69188 2045 #define SKL_PS_VPHASE(pipe, id) _MMIO_PIPE(pipe, \ 2046 _ID(id, _PS_VPHASE_1A, _PS_VPHASE_2A), \ 2047 _ID(id, _PS_VPHASE_1B, _PS_VPHASE_2B)) 2048 #define PS_Y_PHASE_MASK REG_GENMASK(31, 16) 2049 #define PS_Y_PHASE(x) REG_FIELD_PREP(PS_Y_PHASE_MASK, (x)) 2050 #define PS_UV_RGB_PHASE_MASK REG_GENMASK(15, 0) 2051 #define PS_UV_RGB_PHASE(x) REG_FIELD_PREP(PS_UV_RGB_PHASE_MASK, (x)) 2052 #define PS_PHASE_MASK (0x7fff << 1) /* u2.13 */ 2053 #define PS_PHASE_TRIP (1 << 0) 2054 2055 #define _PS_HPHASE_1A 0x68194 2056 #define _PS_HPHASE_2A 0x68294 2057 #define _PS_HPHASE_1B 0x68994 2058 #define _PS_HPHASE_2B 0x68A94 2059 #define _PS_HPHASE_1C 0x69194 2060 #define SKL_PS_HPHASE(pipe, id) _MMIO_PIPE(pipe, \ 2061 _ID(id, _PS_HPHASE_1A, _PS_HPHASE_2A), \ 2062 _ID(id, _PS_HPHASE_1B, _PS_HPHASE_2B)) 2063 2064 #define _PS_ECC_STAT_1A 0x681D0 2065 #define _PS_ECC_STAT_2A 0x682D0 2066 #define _PS_ECC_STAT_1B 0x689D0 2067 #define _PS_ECC_STAT_2B 0x68AD0 2068 #define _PS_ECC_STAT_1C 0x691D0 2069 #define SKL_PS_ECC_STAT(pipe, id) _MMIO_PIPE(pipe, \ 2070 _ID(id, _PS_ECC_STAT_1A, _PS_ECC_STAT_2A), \ 2071 _ID(id, _PS_ECC_STAT_1B, _PS_ECC_STAT_2B)) 2072 2073 #define _PS_COEF_SET0_INDEX_1A 0x68198 2074 #define _PS_COEF_SET0_INDEX_2A 0x68298 2075 #define _PS_COEF_SET0_INDEX_1B 0x68998 2076 #define _PS_COEF_SET0_INDEX_2B 0x68A98 2077 #define GLK_PS_COEF_INDEX_SET(pipe, id, set) _MMIO_PIPE(pipe, \ 2078 _ID(id, _PS_COEF_SET0_INDEX_1A, _PS_COEF_SET0_INDEX_2A) + (set) * 8, \ 2079 _ID(id, _PS_COEF_SET0_INDEX_1B, _PS_COEF_SET0_INDEX_2B) + (set) * 8) 2080 #define PS_COEF_INDEX_AUTO_INC REG_BIT(10) 2081 2082 #define _PS_COEF_SET0_DATA_1A 0x6819C 2083 #define _PS_COEF_SET0_DATA_2A 0x6829C 2084 #define _PS_COEF_SET0_DATA_1B 0x6899C 2085 #define _PS_COEF_SET0_DATA_2B 0x68A9C 2086 #define GLK_PS_COEF_DATA_SET(pipe, id, set) _MMIO_PIPE(pipe, \ 2087 _ID(id, _PS_COEF_SET0_DATA_1A, _PS_COEF_SET0_DATA_2A) + (set) * 8, \ 2088 _ID(id, _PS_COEF_SET0_DATA_1B, _PS_COEF_SET0_DATA_2B) + (set) * 8) 2089 2090 /* Display Internal Timeout Register */ 2091 #define RM_TIMEOUT _MMIO(0x42060) 2092 #define RM_TIMEOUT_REG_CAPTURE _MMIO(0x420E0) 2093 #define MMIO_TIMEOUT_US(us) ((us) << 0) 2094 2095 /* interrupts */ 2096 #define DE_MASTER_IRQ_CONTROL (1 << 31) 2097 #define DE_SPRITEB_FLIP_DONE (1 << 29) 2098 #define DE_SPRITEA_FLIP_DONE (1 << 28) 2099 #define DE_PLANEB_FLIP_DONE (1 << 27) 2100 #define DE_PLANEA_FLIP_DONE (1 << 26) 2101 #define DE_PLANE_FLIP_DONE(plane) (1 << (26 + (plane))) 2102 #define DE_PCU_EVENT (1 << 25) 2103 #define DE_GTT_FAULT (1 << 24) 2104 #define DE_POISON (1 << 23) 2105 #define DE_PERFORM_COUNTER (1 << 22) 2106 #define DE_PCH_EVENT (1 << 21) 2107 #define DE_AUX_CHANNEL_A (1 << 20) 2108 #define DE_DP_A_HOTPLUG (1 << 19) 2109 #define DE_GSE (1 << 18) 2110 #define DE_PIPEB_VBLANK (1 << 15) 2111 #define DE_PIPEB_EVEN_FIELD (1 << 14) 2112 #define DE_PIPEB_ODD_FIELD (1 << 13) 2113 #define DE_PIPEB_LINE_COMPARE (1 << 12) 2114 #define DE_PIPEB_VSYNC (1 << 11) 2115 #define DE_PIPEB_CRC_DONE (1 << 10) 2116 #define DE_PIPEB_FIFO_UNDERRUN (1 << 8) 2117 #define DE_PIPEA_VBLANK (1 << 7) 2118 #define DE_PIPE_VBLANK(pipe) (1 << (7 + 8 * (pipe))) 2119 #define DE_PIPEA_EVEN_FIELD (1 << 6) 2120 #define DE_PIPEA_ODD_FIELD (1 << 5) 2121 #define DE_PIPEA_LINE_COMPARE (1 << 4) 2122 #define DE_PIPEA_VSYNC (1 << 3) 2123 #define DE_PIPEA_CRC_DONE (1 << 2) 2124 #define DE_PIPE_CRC_DONE(pipe) (1 << (2 + 8 * (pipe))) 2125 #define DE_PIPEA_FIFO_UNDERRUN (1 << 0) 2126 #define DE_PIPE_FIFO_UNDERRUN(pipe) (1 << (8 * (pipe))) 2127 2128 /* More Ivybridge lolz */ 2129 #define DE_ERR_INT_IVB (1 << 30) 2130 #define DE_GSE_IVB (1 << 29) 2131 #define DE_PCH_EVENT_IVB (1 << 28) 2132 #define DE_DP_A_HOTPLUG_IVB (1 << 27) 2133 #define DE_AUX_CHANNEL_A_IVB (1 << 26) 2134 #define DE_EDP_PSR_INT_HSW (1 << 19) 2135 #define DE_SPRITEC_FLIP_DONE_IVB (1 << 14) 2136 #define DE_PLANEC_FLIP_DONE_IVB (1 << 13) 2137 #define DE_PIPEC_VBLANK_IVB (1 << 10) 2138 #define DE_SPRITEB_FLIP_DONE_IVB (1 << 9) 2139 #define DE_PLANEB_FLIP_DONE_IVB (1 << 8) 2140 #define DE_PIPEB_VBLANK_IVB (1 << 5) 2141 #define DE_SPRITEA_FLIP_DONE_IVB (1 << 4) 2142 #define DE_PLANEA_FLIP_DONE_IVB (1 << 3) 2143 #define DE_PLANE_FLIP_DONE_IVB(plane) (1 << (3 + 5 * (plane))) 2144 #define DE_PIPEA_VBLANK_IVB (1 << 0) 2145 #define DE_PIPE_VBLANK_IVB(pipe) (1 << ((pipe) * 5)) 2146 2147 #define VLV_MASTER_IER _MMIO(0x4400c) /* Gunit master IER */ 2148 #define MASTER_INTERRUPT_ENABLE (1 << 31) 2149 2150 #define DEISR _MMIO(0x44000) 2151 #define DEIMR _MMIO(0x44004) 2152 #define DEIIR _MMIO(0x44008) 2153 #define DEIER _MMIO(0x4400c) 2154 2155 #define DE_IRQ_REGS I915_IRQ_REGS(DEIMR, \ 2156 DEIER, \ 2157 DEIIR) 2158 2159 #define GTISR _MMIO(0x44010) 2160 #define GTIMR _MMIO(0x44014) 2161 #define GTIIR _MMIO(0x44018) 2162 #define GTIER _MMIO(0x4401c) 2163 2164 #define GT_IRQ_REGS I915_IRQ_REGS(GTIMR, \ 2165 GTIER, \ 2166 GTIIR) 2167 2168 #define GEN8_MASTER_IRQ _MMIO(0x44200) 2169 #define GEN8_MASTER_IRQ_CONTROL (1 << 31) 2170 #define GEN8_PCU_IRQ (1 << 30) 2171 #define GEN8_DE_PCH_IRQ (1 << 23) 2172 #define GEN8_DE_MISC_IRQ (1 << 22) 2173 #define GEN8_DE_PORT_IRQ (1 << 20) 2174 #define GEN8_DE_PIPE_C_IRQ (1 << 18) 2175 #define GEN8_DE_PIPE_B_IRQ (1 << 17) 2176 #define GEN8_DE_PIPE_A_IRQ (1 << 16) 2177 #define GEN8_DE_PIPE_IRQ(pipe) (1 << (16 + (pipe))) 2178 #define GEN8_GT_VECS_IRQ (1 << 6) 2179 #define GEN8_GT_GUC_IRQ (1 << 5) 2180 #define GEN8_GT_PM_IRQ (1 << 4) 2181 #define GEN8_GT_VCS1_IRQ (1 << 3) /* NB: VCS2 in bspec! */ 2182 #define GEN8_GT_VCS0_IRQ (1 << 2) /* NB: VCS1 in bpsec! */ 2183 #define GEN8_GT_BCS_IRQ (1 << 1) 2184 #define GEN8_GT_RCS_IRQ (1 << 0) 2185 2186 #define XELPD_DISPLAY_ERR_FATAL_MASK _MMIO(0x4421c) 2187 2188 #define GEN8_GT_ISR(which) _MMIO(0x44300 + (0x10 * (which))) 2189 #define GEN8_GT_IMR(which) _MMIO(0x44304 + (0x10 * (which))) 2190 #define GEN8_GT_IIR(which) _MMIO(0x44308 + (0x10 * (which))) 2191 #define GEN8_GT_IER(which) _MMIO(0x4430c + (0x10 * (which))) 2192 2193 #define GEN8_GT_IRQ_REGS(which) I915_IRQ_REGS(GEN8_GT_IMR(which), \ 2194 GEN8_GT_IER(which), \ 2195 GEN8_GT_IIR(which)) 2196 2197 #define GEN8_RCS_IRQ_SHIFT 0 2198 #define GEN8_BCS_IRQ_SHIFT 16 2199 #define GEN8_VCS0_IRQ_SHIFT 0 /* NB: VCS1 in bspec! */ 2200 #define GEN8_VCS1_IRQ_SHIFT 16 /* NB: VCS2 in bpsec! */ 2201 #define GEN8_VECS_IRQ_SHIFT 0 2202 #define GEN8_WD_IRQ_SHIFT 16 2203 2204 #define GEN8_DE_PIPE_ISR(pipe) _MMIO(0x44400 + (0x10 * (pipe))) 2205 #define GEN8_DE_PIPE_IMR(pipe) _MMIO(0x44404 + (0x10 * (pipe))) 2206 #define GEN8_DE_PIPE_IIR(pipe) _MMIO(0x44408 + (0x10 * (pipe))) 2207 #define GEN8_DE_PIPE_IER(pipe) _MMIO(0x4440c + (0x10 * (pipe))) 2208 #define GEN8_PIPE_FIFO_UNDERRUN REG_BIT(31) 2209 #define GEN8_PIPE_CDCLK_CRC_ERROR REG_BIT(29) 2210 #define GEN8_PIPE_CDCLK_CRC_DONE REG_BIT(28) 2211 #define GEN12_PIPEDMC_INTERRUPT REG_BIT(26) /* tgl+ */ 2212 #define GEN12_PIPEDMC_FAULT REG_BIT(25) /* tgl+ */ 2213 #define MTL_PIPEDMC_ATS_FAULT REG_BIT(24) /* mtl+ */ 2214 #define GEN11_PIPE_PLANE7_FAULT REG_BIT(22) /* icl/tgl */ 2215 #define GEN11_PIPE_PLANE6_FAULT REG_BIT(21) /* icl/tgl */ 2216 #define GEN11_PIPE_PLANE5_FAULT REG_BIT(20) /* icl+ */ 2217 #define GEN12_PIPE_VBLANK_UNMOD REG_BIT(19) /* tgl+ */ 2218 #define MTL_PLANE_ATS_FAULT REG_BIT(18) /* mtl+ */ 2219 #define GEN11_PIPE_PLANE7_FLIP_DONE REG_BIT(18) /* icl/tgl */ 2220 #define GEN11_PIPE_PLANE6_FLIP_DONE REG_BIT(17) /* icl/tgl */ 2221 #define GEN11_PIPE_PLANE5_FLIP_DONE REG_BIT(16) /* icl+ */ 2222 #define GEN12_DSB_2_INT REG_BIT(15) /* tgl+ */ 2223 #define GEN12_DSB_1_INT REG_BIT(14) /* tgl+ */ 2224 #define GEN12_DSB_0_INT REG_BIT(13) /* tgl+ */ 2225 #define GEN12_DSB_INT(dsb_id) REG_BIT(13 + (dsb_id)) 2226 #define GEN9_PIPE_CURSOR_FAULT REG_BIT(11) /* skl+ */ 2227 #define GEN9_PIPE_PLANE4_FAULT REG_BIT(10) /* skl+ */ 2228 #define GEN8_PIPE_CURSOR_FAULT REG_BIT(10) /* bdw */ 2229 #define GEN9_PIPE_PLANE3_FAULT REG_BIT(9) /* skl+ */ 2230 #define GEN8_PIPE_SPRITE_FAULT REG_BIT(9) /* bdw */ 2231 #define GEN9_PIPE_PLANE2_FAULT REG_BIT(8) /* skl+ */ 2232 #define GEN8_PIPE_PRIMARY_FAULT REG_BIT(8) /* bdw */ 2233 #define GEN9_PIPE_PLANE1_FAULT REG_BIT(7) /* skl+ */ 2234 #define GEN9_PIPE_PLANE4_FLIP_DONE REG_BIT(6) /* skl+ */ 2235 #define GEN9_PIPE_PLANE3_FLIP_DONE REG_BIT(5) /* skl+ */ 2236 #define GEN8_PIPE_SPRITE_FLIP_DONE REG_BIT(5) /* bdw */ 2237 #define GEN9_PIPE_PLANE2_FLIP_DONE REG_BIT(4) /* skl+ */ 2238 #define GEN8_PIPE_PRIMARY_FLIP_DONE REG_BIT(4) /* bdw */ 2239 #define GEN9_PIPE_PLANE1_FLIP_DONE REG_BIT(3) /* skl+ */ 2240 #define GEN9_PIPE_PLANE_FLIP_DONE(plane_id) \ 2241 REG_BIT(((plane_id) >= PLANE_5 ? 16 - PLANE_5 : 3 - PLANE_1) + (plane_id)) /* skl+ */ 2242 #define GEN8_PIPE_SCAN_LINE_EVENT REG_BIT(2) 2243 #define GEN8_PIPE_VSYNC REG_BIT(1) 2244 #define GEN8_PIPE_VBLANK REG_BIT(0) 2245 2246 #define GEN8_DE_PIPE_IRQ_REGS(pipe) I915_IRQ_REGS(GEN8_DE_PIPE_IMR(pipe), \ 2247 GEN8_DE_PIPE_IER(pipe), \ 2248 GEN8_DE_PIPE_IIR(pipe)) 2249 2250 #define _HPD_PIN_DDI(hpd_pin) ((hpd_pin) - HPD_PORT_A) 2251 #define _HPD_PIN_TC(hpd_pin) ((hpd_pin) - HPD_PORT_TC1) 2252 2253 #define GEN8_DE_PORT_ISR _MMIO(0x44440) 2254 #define GEN8_DE_PORT_IMR _MMIO(0x44444) 2255 #define GEN8_DE_PORT_IIR _MMIO(0x44448) 2256 #define GEN8_DE_PORT_IER _MMIO(0x4444c) 2257 #define DSI1_NON_TE (1 << 31) 2258 #define DSI0_NON_TE (1 << 30) 2259 #define ICL_AUX_CHANNEL_E (1 << 29) 2260 #define ICL_AUX_CHANNEL_F (1 << 28) 2261 #define GEN9_AUX_CHANNEL_D (1 << 27) 2262 #define GEN9_AUX_CHANNEL_C (1 << 26) 2263 #define GEN9_AUX_CHANNEL_B (1 << 25) 2264 #define DSI1_TE (1 << 24) 2265 #define DSI0_TE (1 << 23) 2266 #define GEN8_DE_PORT_HOTPLUG(hpd_pin) REG_BIT(3 + _HPD_PIN_DDI(hpd_pin)) 2267 #define BXT_DE_PORT_HOTPLUG_MASK (GEN8_DE_PORT_HOTPLUG(HPD_PORT_A) | \ 2268 GEN8_DE_PORT_HOTPLUG(HPD_PORT_B) | \ 2269 GEN8_DE_PORT_HOTPLUG(HPD_PORT_C)) 2270 #define BDW_DE_PORT_HOTPLUG_MASK GEN8_DE_PORT_HOTPLUG(HPD_PORT_A) 2271 #define BXT_DE_PORT_GMBUS (1 << 1) 2272 #define GEN8_AUX_CHANNEL_A (1 << 0) 2273 #define TGL_DE_PORT_AUX_USBC6 REG_BIT(13) 2274 #define XELPD_DE_PORT_AUX_DDIE REG_BIT(13) 2275 #define TGL_DE_PORT_AUX_USBC5 REG_BIT(12) 2276 #define XELPD_DE_PORT_AUX_DDID REG_BIT(12) 2277 #define TGL_DE_PORT_AUX_USBC4 REG_BIT(11) 2278 #define TGL_DE_PORT_AUX_USBC3 REG_BIT(10) 2279 #define TGL_DE_PORT_AUX_USBC2 REG_BIT(9) 2280 #define TGL_DE_PORT_AUX_USBC1 REG_BIT(8) 2281 #define TGL_DE_PORT_AUX_DDIC REG_BIT(2) 2282 #define TGL_DE_PORT_AUX_DDIB REG_BIT(1) 2283 #define TGL_DE_PORT_AUX_DDIA REG_BIT(0) 2284 2285 #define GEN8_DE_PORT_IRQ_REGS I915_IRQ_REGS(GEN8_DE_PORT_IMR, \ 2286 GEN8_DE_PORT_IER, \ 2287 GEN8_DE_PORT_IIR) 2288 2289 #define GEN8_DE_MISC_ISR _MMIO(0x44460) 2290 #define GEN8_DE_MISC_IMR _MMIO(0x44464) 2291 #define GEN8_DE_MISC_IIR _MMIO(0x44468) 2292 #define GEN8_DE_MISC_IER _MMIO(0x4446c) 2293 #define XELPDP_RM_TIMEOUT REG_BIT(29) 2294 #define XELPDP_PMDEMAND_RSPTOUT_ERR REG_BIT(27) 2295 #define GEN8_DE_MISC_GSE REG_BIT(27) 2296 #define GEN8_DE_EDP_PSR REG_BIT(19) 2297 #define XELPDP_PMDEMAND_RSP REG_BIT(3) 2298 #define XE2LPD_DBUF_OVERLAP_DETECTED REG_BIT(1) 2299 2300 #define GEN8_DE_MISC_IRQ_REGS I915_IRQ_REGS(GEN8_DE_MISC_IMR, \ 2301 GEN8_DE_MISC_IER, \ 2302 GEN8_DE_MISC_IIR) 2303 2304 #define GEN8_PCU_ISR _MMIO(0x444e0) 2305 #define GEN8_PCU_IMR _MMIO(0x444e4) 2306 #define GEN8_PCU_IIR _MMIO(0x444e8) 2307 #define GEN8_PCU_IER _MMIO(0x444ec) 2308 2309 #define GEN8_PCU_IRQ_REGS I915_IRQ_REGS(GEN8_PCU_IMR, \ 2310 GEN8_PCU_IER, \ 2311 GEN8_PCU_IIR) 2312 2313 #define GEN11_GU_MISC_ISR _MMIO(0x444f0) 2314 #define GEN11_GU_MISC_IMR _MMIO(0x444f4) 2315 #define GEN11_GU_MISC_IIR _MMIO(0x444f8) 2316 #define GEN11_GU_MISC_IER _MMIO(0x444fc) 2317 #define GEN11_GU_MISC_GSE (1 << 27) 2318 2319 #define GEN11_GU_MISC_IRQ_REGS I915_IRQ_REGS(GEN11_GU_MISC_IMR, \ 2320 GEN11_GU_MISC_IER, \ 2321 GEN11_GU_MISC_IIR) 2322 2323 #define GEN11_GFX_MSTR_IRQ _MMIO(0x190010) 2324 #define GEN11_MASTER_IRQ (1 << 31) 2325 #define GEN11_PCU_IRQ (1 << 30) 2326 #define GEN11_GU_MISC_IRQ (1 << 29) 2327 #define GEN11_DISPLAY_IRQ (1 << 16) 2328 #define GEN11_GT_DW_IRQ(x) (1 << (x)) 2329 #define GEN11_GT_DW1_IRQ (1 << 1) 2330 #define GEN11_GT_DW0_IRQ (1 << 0) 2331 2332 #define DG1_MSTR_TILE_INTR _MMIO(0x190008) 2333 #define DG1_MSTR_IRQ REG_BIT(31) 2334 #define DG1_MSTR_TILE(t) REG_BIT(t) 2335 2336 #define GEN11_DISPLAY_INT_CTL _MMIO(0x44200) 2337 #define GEN11_DISPLAY_IRQ_ENABLE (1 << 31) 2338 #define GEN11_AUDIO_CODEC_IRQ (1 << 24) 2339 #define GEN11_DE_PCH_IRQ (1 << 23) 2340 #define GEN11_DE_MISC_IRQ (1 << 22) 2341 #define GEN11_DE_HPD_IRQ (1 << 21) 2342 #define GEN11_DE_PORT_IRQ (1 << 20) 2343 #define GEN11_DE_PIPE_C (1 << 18) 2344 #define GEN11_DE_PIPE_B (1 << 17) 2345 #define GEN11_DE_PIPE_A (1 << 16) 2346 2347 #define GEN11_DE_HPD_ISR _MMIO(0x44470) 2348 #define GEN11_DE_HPD_IMR _MMIO(0x44474) 2349 #define GEN11_DE_HPD_IIR _MMIO(0x44478) 2350 #define GEN11_DE_HPD_IER _MMIO(0x4447c) 2351 #define GEN11_TC_HOTPLUG(hpd_pin) REG_BIT(16 + _HPD_PIN_TC(hpd_pin)) 2352 #define GEN11_DE_TC_HOTPLUG_MASK (GEN11_TC_HOTPLUG(HPD_PORT_TC6) | \ 2353 GEN11_TC_HOTPLUG(HPD_PORT_TC5) | \ 2354 GEN11_TC_HOTPLUG(HPD_PORT_TC4) | \ 2355 GEN11_TC_HOTPLUG(HPD_PORT_TC3) | \ 2356 GEN11_TC_HOTPLUG(HPD_PORT_TC2) | \ 2357 GEN11_TC_HOTPLUG(HPD_PORT_TC1)) 2358 #define GEN11_TBT_HOTPLUG(hpd_pin) REG_BIT(_HPD_PIN_TC(hpd_pin)) 2359 #define GEN11_DE_TBT_HOTPLUG_MASK (GEN11_TBT_HOTPLUG(HPD_PORT_TC6) | \ 2360 GEN11_TBT_HOTPLUG(HPD_PORT_TC5) | \ 2361 GEN11_TBT_HOTPLUG(HPD_PORT_TC4) | \ 2362 GEN11_TBT_HOTPLUG(HPD_PORT_TC3) | \ 2363 GEN11_TBT_HOTPLUG(HPD_PORT_TC2) | \ 2364 GEN11_TBT_HOTPLUG(HPD_PORT_TC1)) 2365 2366 #define GEN11_DE_HPD_IRQ_REGS I915_IRQ_REGS(GEN11_DE_HPD_IMR, \ 2367 GEN11_DE_HPD_IER, \ 2368 GEN11_DE_HPD_IIR) 2369 2370 #define GEN11_TBT_HOTPLUG_CTL _MMIO(0x44030) 2371 #define GEN11_TC_HOTPLUG_CTL _MMIO(0x44038) 2372 #define GEN11_HOTPLUG_CTL_ENABLE(hpd_pin) (8 << (_HPD_PIN_TC(hpd_pin) * 4)) 2373 #define GEN11_HOTPLUG_CTL_LONG_DETECT(hpd_pin) (2 << (_HPD_PIN_TC(hpd_pin) * 4)) 2374 #define GEN11_HOTPLUG_CTL_SHORT_DETECT(hpd_pin) (1 << (_HPD_PIN_TC(hpd_pin) * 4)) 2375 #define GEN11_HOTPLUG_CTL_NO_DETECT(hpd_pin) (0 << (_HPD_PIN_TC(hpd_pin) * 4)) 2376 2377 #define PICAINTERRUPT_ISR _MMIO(0x16FE50) 2378 #define PICAINTERRUPT_IMR _MMIO(0x16FE54) 2379 #define PICAINTERRUPT_IIR _MMIO(0x16FE58) 2380 #define PICAINTERRUPT_IER _MMIO(0x16FE5C) 2381 #define XELPDP_DP_ALT_HOTPLUG(hpd_pin) REG_BIT(16 + _HPD_PIN_TC(hpd_pin)) 2382 #define XELPDP_DP_ALT_HOTPLUG_MASK REG_GENMASK(19, 16) 2383 #define XELPDP_AUX_TC(hpd_pin) REG_BIT(8 + _HPD_PIN_TC(hpd_pin)) 2384 #define XELPDP_AUX_TC_MASK REG_GENMASK(11, 8) 2385 #define XE2LPD_AUX_DDI(hpd_pin) REG_BIT(6 + _HPD_PIN_DDI(hpd_pin)) 2386 #define XE2LPD_AUX_DDI_MASK REG_GENMASK(7, 6) 2387 #define XELPDP_TBT_HOTPLUG(hpd_pin) REG_BIT(_HPD_PIN_TC(hpd_pin)) 2388 #define XELPDP_TBT_HOTPLUG_MASK REG_GENMASK(3, 0) 2389 2390 #define PICAINTERRUPT_IRQ_REGS I915_IRQ_REGS(PICAINTERRUPT_IMR, \ 2391 PICAINTERRUPT_IER, \ 2392 PICAINTERRUPT_IIR) 2393 2394 #define XELPDP_PORT_HOTPLUG_CTL(hpd_pin) _MMIO(0x16F270 + (_HPD_PIN_TC(hpd_pin) * 0x200)) 2395 #define XELPDP_TBT_HOTPLUG_ENABLE REG_BIT(6) 2396 #define XELPDP_TBT_HPD_LONG_DETECT REG_BIT(5) 2397 #define XELPDP_TBT_HPD_SHORT_DETECT REG_BIT(4) 2398 #define XELPDP_DP_ALT_HOTPLUG_ENABLE REG_BIT(2) 2399 #define XELPDP_DP_ALT_HPD_LONG_DETECT REG_BIT(1) 2400 #define XELPDP_DP_ALT_HPD_SHORT_DETECT REG_BIT(0) 2401 2402 #define XELPDP_INITIATE_PMDEMAND_REQUEST(dword) _MMIO(0x45230 + 4 * (dword)) 2403 #define XELPDP_PMDEMAND_QCLK_GV_BW_MASK REG_GENMASK(31, 16) 2404 #define XELPDP_PMDEMAND_VOLTAGE_INDEX_MASK REG_GENMASK(14, 12) 2405 #define XELPDP_PMDEMAND_QCLK_GV_INDEX_MASK REG_GENMASK(11, 8) 2406 #define XE3_PMDEMAND_PIPES_MASK REG_GENMASK(7, 4) 2407 #define XELPDP_PMDEMAND_PIPES_MASK REG_GENMASK(7, 6) 2408 #define XELPDP_PMDEMAND_DBUFS_MASK REG_GENMASK(5, 4) 2409 #define XELPDP_PMDEMAND_PHYS_MASK REG_GENMASK(2, 0) 2410 2411 #define XELPDP_PMDEMAND_REQ_ENABLE REG_BIT(31) 2412 #define XELPDP_PMDEMAND_CDCLK_FREQ_MASK REG_GENMASK(30, 20) 2413 #define XELPDP_PMDEMAND_DDICLK_FREQ_MASK REG_GENMASK(18, 8) 2414 #define XELPDP_PMDEMAND_SCALERS_MASK REG_GENMASK(6, 4) 2415 #define XELPDP_PMDEMAND_PLLS_MASK REG_GENMASK(2, 0) 2416 2417 #define GEN12_DCPR_STATUS_1 _MMIO(0x46440) 2418 #define XELPDP_PMDEMAND_INFLIGHT_STATUS REG_BIT(26) 2419 2420 #define ILK_DISPLAY_CHICKEN2 _MMIO(0x42004) 2421 /* Required on all Ironlake and Sandybridge according to the B-Spec. */ 2422 #define ILK_ELPIN_409_SELECT REG_BIT(25) 2423 #define ILK_DPARB_GATE REG_BIT(22) 2424 #define ILK_VSDPFD_FULL REG_BIT(21) 2425 2426 #define FUSE_STRAP _MMIO(0x42014) 2427 #define ILK_INTERNAL_GRAPHICS_DISABLE REG_BIT(31) 2428 #define ILK_INTERNAL_DISPLAY_DISABLE REG_BIT(30) 2429 #define ILK_DISPLAY_DEBUG_DISABLE REG_BIT(29) 2430 #define IVB_PIPE_C_DISABLE REG_BIT(28) 2431 #define ILK_HDCP_DISABLE REG_BIT(25) 2432 #define ILK_eDP_A_DISABLE REG_BIT(24) 2433 #define HSW_CDCLK_LIMIT REG_BIT(24) 2434 #define ILK_DESKTOP REG_BIT(23) 2435 #define HSW_CPU_SSC_ENABLE REG_BIT(21) 2436 2437 #define FUSE_STRAP3 _MMIO(0x42020) 2438 #define HSW_REF_CLK_SELECT REG_BIT(1) 2439 2440 #define ILK_DSPCLK_GATE_D _MMIO(0x42020) 2441 #define ILK_VRHUNIT_CLOCK_GATE_DISABLE REG_BIT(28) 2442 #define ILK_DPFCUNIT_CLOCK_GATE_DISABLE REG_BIT(9) 2443 #define ILK_DPFCRUNIT_CLOCK_GATE_DISABLE REG_BIT(8) 2444 #define ILK_DPFDUNIT_CLOCK_GATE_ENABLE REG_BIT(7) 2445 #define ILK_DPARBUNIT_CLOCK_GATE_ENABLE REG_BIT(5) 2446 2447 #define IVB_CHICKEN3 _MMIO(0x4200c) 2448 #define CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE REG_BIT(5) 2449 #define CHICKEN3_DGMG_DONE_FIX_DISABLE REG_BIT(2) 2450 2451 #define CHICKEN_PAR1_1 _MMIO(0x42080) 2452 #define IGNORE_KVMR_PIPE_A REG_BIT(23) 2453 #define KBL_ARB_FILL_SPARE_22 REG_BIT(22) 2454 #define DIS_RAM_BYPASS_PSR2_MAN_TRACK REG_BIT(16) 2455 #define SKL_DE_COMPRESSED_HASH_MODE REG_BIT(15) 2456 #define HSW_MASK_VBL_TO_PIPE_IN_SRD REG_BIT(15) /* hsw/bdw */ 2457 #define FORCE_ARB_IDLE_PLANES REG_BIT(14) 2458 #define SKL_EDP_PSR_FIX_RDWRAP REG_BIT(3) 2459 #define IGNORE_PSR2_HW_TRACKING REG_BIT(1) 2460 2461 #define CHICKEN_PAR2_1 _MMIO(0x42090) 2462 #define KVM_CONFIG_CHANGE_NOTIFICATION_SELECT REG_BIT(14) 2463 2464 #define CHICKEN_MISC_2 _MMIO(0x42084) 2465 #define CHICKEN_MISC_DISABLE_DPT REG_BIT(30) /* adl,dg2 */ 2466 #define BMG_DARB_HALF_BLK_END_BURST REG_BIT(27) 2467 #define KBL_ARB_FILL_SPARE_14 REG_BIT(14) 2468 #define KBL_ARB_FILL_SPARE_13 REG_BIT(13) 2469 #define GLK_CL2_PWR_DOWN REG_BIT(12) 2470 #define GLK_CL1_PWR_DOWN REG_BIT(11) 2471 #define GLK_CL0_PWR_DOWN REG_BIT(10) 2472 2473 #define CHICKEN_MISC_3 _MMIO(0x42088) 2474 #define DP_MST_DPT_DPTP_ALIGN_WA(trans) REG_BIT(9 + (trans) - TRANSCODER_A) 2475 #define DP_MST_SHORT_HBLANK_WA(trans) REG_BIT(5 + (trans) - TRANSCODER_A) 2476 #define DP_MST_FEC_BS_JITTER_WA(trans) REG_BIT(0 + (trans) - TRANSCODER_A) 2477 2478 #define CHICKEN_MISC_4 _MMIO(0x4208c) 2479 #define CHICKEN_FBC_STRIDE_OVERRIDE REG_BIT(13) 2480 #define CHICKEN_FBC_STRIDE_MASK REG_GENMASK(12, 0) 2481 #define CHICKEN_FBC_STRIDE(x) REG_FIELD_PREP(CHICKEN_FBC_STRIDE_MASK, (x)) 2482 2483 #define _CHICKEN_PIPESL_1_A 0x420b0 2484 #define _CHICKEN_PIPESL_1_B 0x420b4 2485 #define CHICKEN_PIPESL_1(pipe) _MMIO_PIPE(pipe, _CHICKEN_PIPESL_1_A, _CHICKEN_PIPESL_1_B) 2486 #define HSW_PRI_STRETCH_MAX_MASK REG_GENMASK(28, 27) 2487 #define HSW_PRI_STRETCH_MAX_X8 REG_FIELD_PREP(HSW_PRI_STRETCH_MAX_MASK, 0) 2488 #define HSW_PRI_STRETCH_MAX_X4 REG_FIELD_PREP(HSW_PRI_STRETCH_MAX_MASK, 1) 2489 #define HSW_PRI_STRETCH_MAX_X2 REG_FIELD_PREP(HSW_PRI_STRETCH_MAX_MASK, 2) 2490 #define HSW_PRI_STRETCH_MAX_X1 REG_FIELD_PREP(HSW_PRI_STRETCH_MAX_MASK, 3) 2491 #define HSW_SPR_STRETCH_MAX_MASK REG_GENMASK(26, 25) 2492 #define HSW_SPR_STRETCH_MAX_X8 REG_FIELD_PREP(HSW_SPR_STRETCH_MAX_MASK, 0) 2493 #define HSW_SPR_STRETCH_MAX_X4 REG_FIELD_PREP(HSW_SPR_STRETCH_MAX_MASK, 1) 2494 #define HSW_SPR_STRETCH_MAX_X2 REG_FIELD_PREP(HSW_SPR_STRETCH_MAX_MASK, 2) 2495 #define HSW_SPR_STRETCH_MAX_X1 REG_FIELD_PREP(HSW_SPR_STRETCH_MAX_MASK, 3) 2496 #define HSW_FBCQ_DIS REG_BIT(22) 2497 #define HSW_UNMASK_VBL_TO_REGS_IN_SRD REG_BIT(15) /* hsw */ 2498 #define SKL_PSR_MASK_PLANE_FLIP REG_BIT(11) /* skl+ */ 2499 #define SKL_PLANE1_STRETCH_MAX_MASK REG_GENMASK(1, 0) 2500 #define SKL_PLANE1_STRETCH_MAX_X8 REG_FIELD_PREP(SKL_PLANE1_STRETCH_MAX_MASK, 0) 2501 #define SKL_PLANE1_STRETCH_MAX_X4 REG_FIELD_PREP(SKL_PLANE1_STRETCH_MAX_MASK, 1) 2502 #define SKL_PLANE1_STRETCH_MAX_X2 REG_FIELD_PREP(SKL_PLANE1_STRETCH_MAX_MASK, 2) 2503 #define SKL_PLANE1_STRETCH_MAX_X1 REG_FIELD_PREP(SKL_PLANE1_STRETCH_MAX_MASK, 3) 2504 #define BDW_UNMASK_VBL_TO_REGS_IN_SRD REG_BIT(0) /* bdw */ 2505 2506 #define _CHICKEN_TRANS_A 0x420c0 2507 #define _CHICKEN_TRANS_B 0x420c4 2508 #define _CHICKEN_TRANS_C 0x420c8 2509 #define _CHICKEN_TRANS_EDP 0x420cc 2510 #define _CHICKEN_TRANS_D 0x420d8 2511 #define _CHICKEN_TRANS(trans) _MMIO(_PICK((trans), \ 2512 [TRANSCODER_EDP] = _CHICKEN_TRANS_EDP, \ 2513 [TRANSCODER_A] = _CHICKEN_TRANS_A, \ 2514 [TRANSCODER_B] = _CHICKEN_TRANS_B, \ 2515 [TRANSCODER_C] = _CHICKEN_TRANS_C, \ 2516 [TRANSCODER_D] = _CHICKEN_TRANS_D)) 2517 #define _MTL_CHICKEN_TRANS_A 0x604e0 2518 #define _MTL_CHICKEN_TRANS_B 0x614e0 2519 #define _MTL_CHICKEN_TRANS(trans) _MMIO_TRANS((trans), \ 2520 _MTL_CHICKEN_TRANS_A, \ 2521 _MTL_CHICKEN_TRANS_B) 2522 #define CHICKEN_TRANS(display, trans) (DISPLAY_VER(display) >= 14 ? _MTL_CHICKEN_TRANS(trans) : _CHICKEN_TRANS(trans)) 2523 #define PIPE_VBLANK_WITH_DELAY REG_BIT(31) /* tgl+ */ 2524 #define SKL_UNMASK_VBL_TO_PIPE_IN_SRD REG_BIT(30) /* skl+ */ 2525 #define HSW_FRAME_START_DELAY_MASK REG_GENMASK(28, 27) 2526 #define HSW_FRAME_START_DELAY(x) REG_FIELD_PREP(HSW_FRAME_START_DELAY_MASK, x) 2527 #define VSC_DATA_SEL_SOFTWARE_CONTROL REG_BIT(25) /* GLK */ 2528 #define FECSTALL_DIS_DPTSTREAM_DPTTG REG_BIT(23) 2529 #define DDI_TRAINING_OVERRIDE_ENABLE REG_BIT(19) 2530 #define ADLP_1_BASED_X_GRANULARITY REG_BIT(18) 2531 #define DDI_TRAINING_OVERRIDE_VALUE REG_BIT(18) 2532 #define DDIE_TRAINING_OVERRIDE_ENABLE REG_BIT(17) /* CHICKEN_TRANS_A only */ 2533 #define DDIE_TRAINING_OVERRIDE_VALUE REG_BIT(16) /* CHICKEN_TRANS_A only */ 2534 #define PSR2_ADD_VERTICAL_LINE_COUNT REG_BIT(15) 2535 #define DP_FEC_BS_JITTER_WA REG_BIT(15) 2536 #define PSR2_VSC_ENABLE_PROG_HEADER REG_BIT(12) 2537 #define DP_DSC_INSERT_SF_AT_EOL_WA REG_BIT(4) 2538 #define HDCP_LINE_REKEY_DISABLE REG_BIT(0) 2539 2540 #define DISP_ARB_CTL _MMIO(0x45000) 2541 #define DISP_FBC_MEMORY_WAKE REG_BIT(31) 2542 #define DISP_TILE_SURFACE_SWIZZLING REG_BIT(13) 2543 #define DISP_FBC_WM_DIS REG_BIT(15) 2544 2545 #define DISP_ARB_CTL2 _MMIO(0x45004) 2546 #define DISP_DATA_PARTITION_5_6 REG_BIT(6) 2547 #define DISP_IPC_ENABLE REG_BIT(3) 2548 2549 #define GEN7_MSG_CTL _MMIO(0x45010) 2550 #define WAIT_FOR_PCH_RESET_ACK (1 << 1) 2551 #define WAIT_FOR_PCH_FLR_ACK (1 << 0) 2552 2553 #define _BW_BUDDY0_CTL 0x45130 2554 #define _BW_BUDDY1_CTL 0x45140 2555 #define BW_BUDDY_CTL(x) _MMIO(_PICK_EVEN(x, \ 2556 _BW_BUDDY0_CTL, \ 2557 _BW_BUDDY1_CTL)) 2558 #define BW_BUDDY_DISABLE REG_BIT(31) 2559 #define BW_BUDDY_TLB_REQ_TIMER_MASK REG_GENMASK(21, 16) 2560 #define BW_BUDDY_TLB_REQ_TIMER(x) REG_FIELD_PREP(BW_BUDDY_TLB_REQ_TIMER_MASK, x) 2561 2562 #define _BW_BUDDY0_PAGE_MASK 0x45134 2563 #define _BW_BUDDY1_PAGE_MASK 0x45144 2564 #define BW_BUDDY_PAGE_MASK(x) _MMIO(_PICK_EVEN(x, \ 2565 _BW_BUDDY0_PAGE_MASK, \ 2566 _BW_BUDDY1_PAGE_MASK)) 2567 2568 #define HSW_NDE_RSTWRN_OPT _MMIO(0x46408) 2569 #define MTL_RESET_PICA_HANDSHAKE_EN REG_BIT(6) 2570 #define RESET_PCH_HANDSHAKE_ENABLE REG_BIT(4) 2571 2572 #define GEN8_CHICKEN_DCPR_1 _MMIO(0x46430) 2573 #define _LATENCY_REPORTING_REMOVED_PIPE_D REG_BIT(31) 2574 #define SKL_SELECT_ALTERNATE_DC_EXIT REG_BIT(30) 2575 #define _LATENCY_REPORTING_REMOVED_PIPE_C REG_BIT(25) 2576 #define _LATENCY_REPORTING_REMOVED_PIPE_B REG_BIT(24) 2577 #define _LATENCY_REPORTING_REMOVED_PIPE_A REG_BIT(23) 2578 #define LATENCY_REPORTING_REMOVED(pipe) _PICK((pipe), \ 2579 _LATENCY_REPORTING_REMOVED_PIPE_A, \ 2580 _LATENCY_REPORTING_REMOVED_PIPE_B, \ 2581 _LATENCY_REPORTING_REMOVED_PIPE_C, \ 2582 _LATENCY_REPORTING_REMOVED_PIPE_D) 2583 #define ICL_DELAY_PMRSP REG_BIT(22) 2584 #define DISABLE_FLR_SRC REG_BIT(15) 2585 #define MASK_WAKEMEM REG_BIT(13) 2586 #define DDI_CLOCK_REG_ACCESS REG_BIT(7) 2587 2588 #define GEN11_CHICKEN_DCPR_2 _MMIO(0x46434) 2589 #define DCPR_MASK_MAXLATENCY_MEMUP_CLR REG_BIT(27) 2590 #define DCPR_MASK_LPMODE REG_BIT(26) 2591 #define DCPR_SEND_RESP_IMM REG_BIT(25) 2592 #define DCPR_CLEAR_MEMSTAT_DIS REG_BIT(24) 2593 2594 #define XELPD_CHICKEN_DCPR_3 _MMIO(0x46438) 2595 #define DMD_RSP_TIMEOUT_DISABLE REG_BIT(19) 2596 2597 #define SKL_DFSM _MMIO(0x51000) 2598 #define SKL_DFSM_DISPLAY_PM_DISABLE (1 << 27) 2599 #define SKL_DFSM_DISPLAY_HDCP_DISABLE (1 << 25) 2600 #define SKL_DFSM_CDCLK_LIMIT_MASK (3 << 23) 2601 #define SKL_DFSM_CDCLK_LIMIT_675 (0 << 23) 2602 #define SKL_DFSM_CDCLK_LIMIT_540 (1 << 23) 2603 #define SKL_DFSM_CDCLK_LIMIT_450 (2 << 23) 2604 #define SKL_DFSM_CDCLK_LIMIT_337_5 (3 << 23) 2605 #define ICL_DFSM_DMC_DISABLE (1 << 23) 2606 #define SKL_DFSM_PIPE_A_DISABLE (1 << 30) 2607 #define SKL_DFSM_PIPE_B_DISABLE (1 << 21) 2608 #define SKL_DFSM_PIPE_C_DISABLE (1 << 28) 2609 #define TGL_DFSM_PIPE_D_DISABLE (1 << 22) 2610 #define GLK_DFSM_DISPLAY_DSC_DISABLE (1 << 7) 2611 #define XE2LPD_DFSM_DBUF_OVERLAP_DISABLE (1 << 3) 2612 2613 #define XE2LPD_DE_CAP _MMIO(0x41100) 2614 #define XE2LPD_DE_CAP_3DLUT_MASK REG_GENMASK(31, 30) 2615 #define XE2LPD_DE_CAP_DSC_MASK REG_GENMASK(29, 28) 2616 #define XE2LPD_DE_CAP_DSC_REMOVED 1 2617 #define XE2LPD_DE_CAP_SCALER_MASK REG_GENMASK(27, 26) 2618 #define XE2LPD_DE_CAP_SCALER_SINGLE 1 2619 2620 #define SKL_DSSM _MMIO(0x51004) 2621 #define ICL_DSSM_CDCLK_PLL_REFCLK_MASK (7 << 29) 2622 #define ICL_DSSM_CDCLK_PLL_REFCLK_24MHz (0 << 29) 2623 #define ICL_DSSM_CDCLK_PLL_REFCLK_19_2MHz (1 << 29) 2624 #define ICL_DSSM_CDCLK_PLL_REFCLK_38_4MHz (2 << 29) 2625 2626 #define GMD_ID_DISPLAY _MMIO(0x510a0) 2627 #define GMD_ID_ARCH_MASK REG_GENMASK(31, 22) 2628 #define GMD_ID_RELEASE_MASK REG_GENMASK(21, 14) 2629 #define GMD_ID_STEP REG_GENMASK(5, 0) 2630 2631 /*GEN11 chicken */ 2632 #define _PIPEA_CHICKEN 0x70038 2633 #define _PIPEB_CHICKEN 0x71038 2634 #define _PIPEC_CHICKEN 0x72038 2635 #define PIPE_CHICKEN(pipe) _MMIO_PIPE(pipe, _PIPEA_CHICKEN,\ 2636 _PIPEB_CHICKEN) 2637 #define UNDERRUN_RECOVERY_DISABLE_ADLP REG_BIT(30) 2638 #define UNDERRUN_RECOVERY_ENABLE_DG2 REG_BIT(30) 2639 #define PIXEL_ROUNDING_TRUNC_FB_PASSTHRU REG_BIT(15) 2640 #define DG2_RENDER_CCSTAG_4_3_EN REG_BIT(12) 2641 #define PER_PIXEL_ALPHA_BYPASS_EN REG_BIT(7) 2642 2643 /* PCH */ 2644 2645 #define PCH_DISPLAY_BASE 0xc0000u 2646 2647 /* south display engine interrupt: IBX */ 2648 #define SDE_AUDIO_POWER_D (1 << 27) 2649 #define SDE_AUDIO_POWER_C (1 << 26) 2650 #define SDE_AUDIO_POWER_B (1 << 25) 2651 #define SDE_AUDIO_POWER_SHIFT (25) 2652 #define SDE_AUDIO_POWER_MASK (7 << SDE_AUDIO_POWER_SHIFT) 2653 #define SDE_GMBUS (1 << 24) 2654 #define SDE_AUDIO_HDCP_TRANSB (1 << 23) 2655 #define SDE_AUDIO_HDCP_TRANSA (1 << 22) 2656 #define SDE_AUDIO_HDCP_MASK (3 << 22) 2657 #define SDE_AUDIO_TRANSB (1 << 21) 2658 #define SDE_AUDIO_TRANSA (1 << 20) 2659 #define SDE_AUDIO_TRANS_MASK (3 << 20) 2660 #define SDE_POISON (1 << 19) 2661 /* 18 reserved */ 2662 #define SDE_FDI_RXB (1 << 17) 2663 #define SDE_FDI_RXA (1 << 16) 2664 #define SDE_FDI_MASK (3 << 16) 2665 #define SDE_AUXD (1 << 15) 2666 #define SDE_AUXC (1 << 14) 2667 #define SDE_AUXB (1 << 13) 2668 #define SDE_AUX_MASK (7 << 13) 2669 /* 12 reserved */ 2670 #define SDE_CRT_HOTPLUG (1 << 11) 2671 #define SDE_PORTD_HOTPLUG (1 << 10) 2672 #define SDE_PORTC_HOTPLUG (1 << 9) 2673 #define SDE_PORTB_HOTPLUG (1 << 8) 2674 #define SDE_SDVOB_HOTPLUG (1 << 6) 2675 #define SDE_HOTPLUG_MASK (SDE_CRT_HOTPLUG | \ 2676 SDE_SDVOB_HOTPLUG | \ 2677 SDE_PORTB_HOTPLUG | \ 2678 SDE_PORTC_HOTPLUG | \ 2679 SDE_PORTD_HOTPLUG) 2680 #define SDE_TRANSB_CRC_DONE (1 << 5) 2681 #define SDE_TRANSB_CRC_ERR (1 << 4) 2682 #define SDE_TRANSB_FIFO_UNDER (1 << 3) 2683 #define SDE_TRANSA_CRC_DONE (1 << 2) 2684 #define SDE_TRANSA_CRC_ERR (1 << 1) 2685 #define SDE_TRANSA_FIFO_UNDER (1 << 0) 2686 #define SDE_TRANS_MASK (0x3f) 2687 2688 /* south display engine interrupt: CPT - CNP */ 2689 #define SDE_AUDIO_POWER_D_CPT (1 << 31) 2690 #define SDE_AUDIO_POWER_C_CPT (1 << 30) 2691 #define SDE_AUDIO_POWER_B_CPT (1 << 29) 2692 #define SDE_AUDIO_POWER_SHIFT_CPT 29 2693 #define SDE_AUDIO_POWER_MASK_CPT (7 << 29) 2694 #define SDE_AUXD_CPT (1 << 27) 2695 #define SDE_AUXC_CPT (1 << 26) 2696 #define SDE_AUXB_CPT (1 << 25) 2697 #define SDE_AUX_MASK_CPT (7 << 25) 2698 #define SDE_PORTE_HOTPLUG_SPT (1 << 25) 2699 #define SDE_PORTA_HOTPLUG_SPT (1 << 24) 2700 #define SDE_PORTD_HOTPLUG_CPT (1 << 23) 2701 #define SDE_PORTC_HOTPLUG_CPT (1 << 22) 2702 #define SDE_PORTB_HOTPLUG_CPT (1 << 21) 2703 #define SDE_CRT_HOTPLUG_CPT (1 << 19) 2704 #define SDE_SDVOB_HOTPLUG_CPT (1 << 18) 2705 #define SDE_HOTPLUG_MASK_CPT (SDE_CRT_HOTPLUG_CPT | \ 2706 SDE_SDVOB_HOTPLUG_CPT | \ 2707 SDE_PORTD_HOTPLUG_CPT | \ 2708 SDE_PORTC_HOTPLUG_CPT | \ 2709 SDE_PORTB_HOTPLUG_CPT) 2710 #define SDE_HOTPLUG_MASK_SPT (SDE_PORTE_HOTPLUG_SPT | \ 2711 SDE_PORTD_HOTPLUG_CPT | \ 2712 SDE_PORTC_HOTPLUG_CPT | \ 2713 SDE_PORTB_HOTPLUG_CPT | \ 2714 SDE_PORTA_HOTPLUG_SPT) 2715 #define SDE_GMBUS_CPT (1 << 17) 2716 #define SDE_ERROR_CPT (1 << 16) 2717 #define SDE_AUDIO_CP_REQ_C_CPT (1 << 10) 2718 #define SDE_AUDIO_CP_CHG_C_CPT (1 << 9) 2719 #define SDE_FDI_RXC_CPT (1 << 8) 2720 #define SDE_AUDIO_CP_REQ_B_CPT (1 << 6) 2721 #define SDE_AUDIO_CP_CHG_B_CPT (1 << 5) 2722 #define SDE_FDI_RXB_CPT (1 << 4) 2723 #define SDE_AUDIO_CP_REQ_A_CPT (1 << 2) 2724 #define SDE_AUDIO_CP_CHG_A_CPT (1 << 1) 2725 #define SDE_FDI_RXA_CPT (1 << 0) 2726 #define SDE_AUDIO_CP_REQ_CPT (SDE_AUDIO_CP_REQ_C_CPT | \ 2727 SDE_AUDIO_CP_REQ_B_CPT | \ 2728 SDE_AUDIO_CP_REQ_A_CPT) 2729 #define SDE_AUDIO_CP_CHG_CPT (SDE_AUDIO_CP_CHG_C_CPT | \ 2730 SDE_AUDIO_CP_CHG_B_CPT | \ 2731 SDE_AUDIO_CP_CHG_A_CPT) 2732 #define SDE_FDI_MASK_CPT (SDE_FDI_RXC_CPT | \ 2733 SDE_FDI_RXB_CPT | \ 2734 SDE_FDI_RXA_CPT) 2735 2736 /* south display engine interrupt: ICP/TGP/MTP */ 2737 #define SDE_PICAINTERRUPT REG_BIT(31) 2738 #define SDE_GMBUS_ICP (1 << 23) 2739 #define SDE_TC_HOTPLUG_ICP(hpd_pin) REG_BIT(24 + _HPD_PIN_TC(hpd_pin)) 2740 #define SDE_TC_HOTPLUG_DG2(hpd_pin) REG_BIT(25 + _HPD_PIN_TC(hpd_pin)) /* sigh */ 2741 #define SDE_DDI_HOTPLUG_ICP(hpd_pin) REG_BIT(16 + _HPD_PIN_DDI(hpd_pin)) 2742 #define SDE_DDI_HOTPLUG_MASK_ICP (SDE_DDI_HOTPLUG_ICP(HPD_PORT_D) | \ 2743 SDE_DDI_HOTPLUG_ICP(HPD_PORT_C) | \ 2744 SDE_DDI_HOTPLUG_ICP(HPD_PORT_B) | \ 2745 SDE_DDI_HOTPLUG_ICP(HPD_PORT_A)) 2746 #define SDE_TC_HOTPLUG_MASK_ICP (SDE_TC_HOTPLUG_ICP(HPD_PORT_TC6) | \ 2747 SDE_TC_HOTPLUG_ICP(HPD_PORT_TC5) | \ 2748 SDE_TC_HOTPLUG_ICP(HPD_PORT_TC4) | \ 2749 SDE_TC_HOTPLUG_ICP(HPD_PORT_TC3) | \ 2750 SDE_TC_HOTPLUG_ICP(HPD_PORT_TC2) | \ 2751 SDE_TC_HOTPLUG_ICP(HPD_PORT_TC1)) 2752 2753 #define SDEISR _MMIO(0xc4000) 2754 #define SDEIMR _MMIO(0xc4004) 2755 #define SDEIIR _MMIO(0xc4008) 2756 #define SDEIER _MMIO(0xc400c) 2757 2758 #define SDE_IRQ_REGS I915_IRQ_REGS(SDEIMR, \ 2759 SDEIER, \ 2760 SDEIIR) 2761 2762 #define SERR_INT _MMIO(0xc4040) 2763 #define SERR_INT_POISON (1 << 31) 2764 #define SERR_INT_TRANS_FIFO_UNDERRUN(pipe) (1 << ((pipe) * 3)) 2765 2766 /* digital port hotplug */ 2767 #define PCH_PORT_HOTPLUG _MMIO(0xc4030) /* SHOTPLUG_CTL */ 2768 #define PORTA_HOTPLUG_ENABLE (1 << 28) /* LPT:LP+ & BXT */ 2769 #define BXT_DDIA_HPD_INVERT (1 << 27) 2770 #define PORTA_HOTPLUG_STATUS_MASK (3 << 24) /* SPT+ & BXT */ 2771 #define PORTA_HOTPLUG_NO_DETECT (0 << 24) /* SPT+ & BXT */ 2772 #define PORTA_HOTPLUG_SHORT_DETECT (1 << 24) /* SPT+ & BXT */ 2773 #define PORTA_HOTPLUG_LONG_DETECT (2 << 24) /* SPT+ & BXT */ 2774 #define PORTD_HOTPLUG_ENABLE (1 << 20) 2775 #define PORTD_PULSE_DURATION_2ms (0 << 18) /* pre-LPT */ 2776 #define PORTD_PULSE_DURATION_4_5ms (1 << 18) /* pre-LPT */ 2777 #define PORTD_PULSE_DURATION_6ms (2 << 18) /* pre-LPT */ 2778 #define PORTD_PULSE_DURATION_100ms (3 << 18) /* pre-LPT */ 2779 #define PORTD_PULSE_DURATION_MASK (3 << 18) /* pre-LPT */ 2780 #define PORTD_HOTPLUG_STATUS_MASK (3 << 16) 2781 #define PORTD_HOTPLUG_NO_DETECT (0 << 16) 2782 #define PORTD_HOTPLUG_SHORT_DETECT (1 << 16) 2783 #define PORTD_HOTPLUG_LONG_DETECT (2 << 16) 2784 #define PORTC_HOTPLUG_ENABLE (1 << 12) 2785 #define BXT_DDIC_HPD_INVERT (1 << 11) 2786 #define PORTC_PULSE_DURATION_2ms (0 << 10) /* pre-LPT */ 2787 #define PORTC_PULSE_DURATION_4_5ms (1 << 10) /* pre-LPT */ 2788 #define PORTC_PULSE_DURATION_6ms (2 << 10) /* pre-LPT */ 2789 #define PORTC_PULSE_DURATION_100ms (3 << 10) /* pre-LPT */ 2790 #define PORTC_PULSE_DURATION_MASK (3 << 10) /* pre-LPT */ 2791 #define PORTC_HOTPLUG_STATUS_MASK (3 << 8) 2792 #define PORTC_HOTPLUG_NO_DETECT (0 << 8) 2793 #define PORTC_HOTPLUG_SHORT_DETECT (1 << 8) 2794 #define PORTC_HOTPLUG_LONG_DETECT (2 << 8) 2795 #define PORTB_HOTPLUG_ENABLE (1 << 4) 2796 #define BXT_DDIB_HPD_INVERT (1 << 3) 2797 #define PORTB_PULSE_DURATION_2ms (0 << 2) /* pre-LPT */ 2798 #define PORTB_PULSE_DURATION_4_5ms (1 << 2) /* pre-LPT */ 2799 #define PORTB_PULSE_DURATION_6ms (2 << 2) /* pre-LPT */ 2800 #define PORTB_PULSE_DURATION_100ms (3 << 2) /* pre-LPT */ 2801 #define PORTB_PULSE_DURATION_MASK (3 << 2) /* pre-LPT */ 2802 #define PORTB_HOTPLUG_STATUS_MASK (3 << 0) 2803 #define PORTB_HOTPLUG_NO_DETECT (0 << 0) 2804 #define PORTB_HOTPLUG_SHORT_DETECT (1 << 0) 2805 #define PORTB_HOTPLUG_LONG_DETECT (2 << 0) 2806 #define BXT_DDI_HPD_INVERT_MASK (BXT_DDIA_HPD_INVERT | \ 2807 BXT_DDIB_HPD_INVERT | \ 2808 BXT_DDIC_HPD_INVERT) 2809 2810 #define PCH_PORT_HOTPLUG2 _MMIO(0xc403C) /* SHOTPLUG_CTL2 SPT+ */ 2811 #define PORTE_HOTPLUG_ENABLE (1 << 4) 2812 #define PORTE_HOTPLUG_STATUS_MASK (3 << 0) 2813 #define PORTE_HOTPLUG_NO_DETECT (0 << 0) 2814 #define PORTE_HOTPLUG_SHORT_DETECT (1 << 0) 2815 #define PORTE_HOTPLUG_LONG_DETECT (2 << 0) 2816 2817 /* This register is a reuse of PCH_PORT_HOTPLUG register. The 2818 * functionality covered in PCH_PORT_HOTPLUG is split into 2819 * SHOTPLUG_CTL_DDI and SHOTPLUG_CTL_TC. 2820 */ 2821 2822 #define SHOTPLUG_CTL_DDI _MMIO(0xc4030) 2823 #define SHOTPLUG_CTL_DDI_HPD_ENABLE(hpd_pin) (0x8 << (_HPD_PIN_DDI(hpd_pin) * 4)) 2824 #define SHOTPLUG_CTL_DDI_HPD_OUTPUT_DATA(hpd_pin) (0x4 << (_HPD_PIN_DDI(hpd_pin) * 4)) 2825 #define SHOTPLUG_CTL_DDI_HPD_STATUS_MASK(hpd_pin) (0x3 << (_HPD_PIN_DDI(hpd_pin) * 4)) 2826 #define SHOTPLUG_CTL_DDI_HPD_NO_DETECT(hpd_pin) (0x0 << (_HPD_PIN_DDI(hpd_pin) * 4)) 2827 #define SHOTPLUG_CTL_DDI_HPD_SHORT_DETECT(hpd_pin) (0x1 << (_HPD_PIN_DDI(hpd_pin) * 4)) 2828 #define SHOTPLUG_CTL_DDI_HPD_LONG_DETECT(hpd_pin) (0x2 << (_HPD_PIN_DDI(hpd_pin) * 4)) 2829 #define SHOTPLUG_CTL_DDI_HPD_SHORT_LONG_DETECT(hpd_pin) (0x3 << (_HPD_PIN_DDI(hpd_pin) * 4)) 2830 2831 #define SHOTPLUG_CTL_TC _MMIO(0xc4034) 2832 #define ICP_TC_HPD_ENABLE(hpd_pin) (8 << (_HPD_PIN_TC(hpd_pin) * 4)) 2833 #define ICP_TC_HPD_LONG_DETECT(hpd_pin) (2 << (_HPD_PIN_TC(hpd_pin) * 4)) 2834 #define ICP_TC_HPD_SHORT_DETECT(hpd_pin) (1 << (_HPD_PIN_TC(hpd_pin) * 4)) 2835 2836 #define SHPD_FILTER_CNT _MMIO(0xc4038) 2837 #define SHPD_FILTER_CNT_500_ADJ 0x001D9 2838 #define SHPD_FILTER_CNT_250 0x000F8 2839 2840 #define _PCH_DPLL_A 0xc6014 2841 #define _PCH_DPLL_B 0xc6018 2842 #define PCH_DPLL(pll) _MMIO((pll) == 0 ? _PCH_DPLL_A : _PCH_DPLL_B) 2843 2844 #define _PCH_FPA0 0xc6040 2845 #define _PCH_FPB0 0xc6048 2846 #define PCH_FP0(pll) _MMIO((pll) == 0 ? _PCH_FPA0 : _PCH_FPB0) 2847 #define FP_CB_TUNE (0x3 << 22) 2848 2849 #define _PCH_FPA1 0xc6044 2850 #define _PCH_FPB1 0xc604c 2851 #define PCH_FP1(pll) _MMIO((pll) == 0 ? _PCH_FPA1 : _PCH_FPB1) 2852 2853 #define PCH_DPLL_TEST _MMIO(0xc606c) 2854 2855 #define PCH_DREF_CONTROL _MMIO(0xC6200) 2856 #define DREF_CONTROL_MASK 0x7fc3 2857 #define DREF_CPU_SOURCE_OUTPUT_DISABLE (0 << 13) 2858 #define DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD (2 << 13) 2859 #define DREF_CPU_SOURCE_OUTPUT_NONSPREAD (3 << 13) 2860 #define DREF_CPU_SOURCE_OUTPUT_MASK (3 << 13) 2861 #define DREF_SSC_SOURCE_DISABLE (0 << 11) 2862 #define DREF_SSC_SOURCE_ENABLE (2 << 11) 2863 #define DREF_SSC_SOURCE_MASK (3 << 11) 2864 #define DREF_NONSPREAD_SOURCE_DISABLE (0 << 9) 2865 #define DREF_NONSPREAD_CK505_ENABLE (1 << 9) 2866 #define DREF_NONSPREAD_SOURCE_ENABLE (2 << 9) 2867 #define DREF_NONSPREAD_SOURCE_MASK (3 << 9) 2868 #define DREF_SUPERSPREAD_SOURCE_DISABLE (0 << 7) 2869 #define DREF_SUPERSPREAD_SOURCE_ENABLE (2 << 7) 2870 #define DREF_SUPERSPREAD_SOURCE_MASK (3 << 7) 2871 #define DREF_SSC4_DOWNSPREAD (0 << 6) 2872 #define DREF_SSC4_CENTERSPREAD (1 << 6) 2873 #define DREF_SSC1_DISABLE (0 << 1) 2874 #define DREF_SSC1_ENABLE (1 << 1) 2875 #define DREF_SSC4_DISABLE (0) 2876 #define DREF_SSC4_ENABLE (1) 2877 2878 #define PCH_RAWCLK_FREQ _MMIO(0xc6204) 2879 #define FDL_TP1_TIMER_SHIFT 12 2880 #define FDL_TP1_TIMER_MASK (3 << 12) 2881 #define FDL_TP2_TIMER_SHIFT 10 2882 #define FDL_TP2_TIMER_MASK (3 << 10) 2883 #define RAWCLK_FREQ_MASK 0x3ff 2884 #define CNP_RAWCLK_DIV_MASK (0x3ff << 16) 2885 #define CNP_RAWCLK_DIV(div) ((div) << 16) 2886 #define CNP_RAWCLK_FRAC_MASK (0xf << 26) 2887 #define CNP_RAWCLK_DEN(den) ((den) << 26) 2888 #define ICP_RAWCLK_NUM(num) ((num) << 11) 2889 2890 #define PCH_DPLL_TMR_CFG _MMIO(0xc6208) 2891 2892 #define PCH_SSC4_PARMS _MMIO(0xc6210) 2893 #define PCH_SSC4_AUX_PARMS _MMIO(0xc6214) 2894 2895 #define PCH_DPLL_SEL _MMIO(0xc7000) 2896 #define TRANS_DPLLB_SEL(pipe) (1 << ((pipe) * 4)) 2897 #define TRANS_DPLLA_SEL(pipe) 0 2898 #define TRANS_DPLL_ENABLE(pipe) (1 << ((pipe) * 4 + 3)) 2899 2900 /* transcoder */ 2901 2902 #define _PCH_TRANS_HTOTAL_A 0xe0000 2903 #define _PCH_TRANS_HTOTAL_B 0xe1000 2904 #define PCH_TRANS_HTOTAL(pipe) _MMIO_PIPE(pipe, _PCH_TRANS_HTOTAL_A, _PCH_TRANS_HTOTAL_B) 2905 #define TRANS_HTOTAL_SHIFT 16 2906 #define TRANS_HACTIVE_SHIFT 0 2907 2908 #define _PCH_TRANS_HBLANK_A 0xe0004 2909 #define _PCH_TRANS_HBLANK_B 0xe1004 2910 #define PCH_TRANS_HBLANK(pipe) _MMIO_PIPE(pipe, _PCH_TRANS_HBLANK_A, _PCH_TRANS_HBLANK_B) 2911 #define TRANS_HBLANK_END_SHIFT 16 2912 #define TRANS_HBLANK_START_SHIFT 0 2913 2914 #define _PCH_TRANS_HSYNC_A 0xe0008 2915 #define _PCH_TRANS_HSYNC_B 0xe1008 2916 #define PCH_TRANS_HSYNC(pipe) _MMIO_PIPE(pipe, _PCH_TRANS_HSYNC_A, _PCH_TRANS_HSYNC_B) 2917 #define TRANS_HSYNC_END_SHIFT 16 2918 #define TRANS_HSYNC_START_SHIFT 0 2919 2920 #define _PCH_TRANS_VTOTAL_A 0xe000c 2921 #define _PCH_TRANS_VTOTAL_B 0xe100c 2922 #define PCH_TRANS_VTOTAL(pipe) _MMIO_PIPE(pipe, _PCH_TRANS_VTOTAL_A, _PCH_TRANS_VTOTAL_B) 2923 #define TRANS_VTOTAL_SHIFT 16 2924 #define TRANS_VACTIVE_SHIFT 0 2925 2926 #define _PCH_TRANS_VBLANK_A 0xe0010 2927 #define _PCH_TRANS_VBLANK_B 0xe1010 2928 #define PCH_TRANS_VBLANK(pipe) _MMIO_PIPE(pipe, _PCH_TRANS_VBLANK_A, _PCH_TRANS_VBLANK_B) 2929 #define TRANS_VBLANK_END_SHIFT 16 2930 #define TRANS_VBLANK_START_SHIFT 0 2931 2932 #define _PCH_TRANS_VSYNC_A 0xe0014 2933 #define _PCH_TRANS_VSYNC_B 0xe1014 2934 #define PCH_TRANS_VSYNC(pipe) _MMIO_PIPE(pipe, _PCH_TRANS_VSYNC_A, _PCH_TRANS_VSYNC_B) 2935 #define TRANS_VSYNC_END_SHIFT 16 2936 #define TRANS_VSYNC_START_SHIFT 0 2937 2938 #define _PCH_TRANS_VSYNCSHIFT_A 0xe0028 2939 #define _PCH_TRANS_VSYNCSHIFT_B 0xe1028 2940 #define PCH_TRANS_VSYNCSHIFT(pipe) _MMIO_PIPE(pipe, _PCH_TRANS_VSYNCSHIFT_A, _PCH_TRANS_VSYNCSHIFT_B) 2941 2942 #define _PCH_TRANSA_DATA_M1 0xe0030 2943 #define _PCH_TRANSB_DATA_M1 0xe1030 2944 #define PCH_TRANS_DATA_M1(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_DATA_M1, _PCH_TRANSB_DATA_M1) 2945 2946 #define _PCH_TRANSA_DATA_N1 0xe0034 2947 #define _PCH_TRANSB_DATA_N1 0xe1034 2948 #define PCH_TRANS_DATA_N1(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_DATA_N1, _PCH_TRANSB_DATA_N1) 2949 2950 #define _PCH_TRANSA_DATA_M2 0xe0038 2951 #define _PCH_TRANSB_DATA_M2 0xe1038 2952 #define PCH_TRANS_DATA_M2(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_DATA_M2, _PCH_TRANSB_DATA_M2) 2953 2954 #define _PCH_TRANSA_DATA_N2 0xe003c 2955 #define _PCH_TRANSB_DATA_N2 0xe103c 2956 #define PCH_TRANS_DATA_N2(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_DATA_N2, _PCH_TRANSB_DATA_N2) 2957 2958 #define _PCH_TRANSA_LINK_M1 0xe0040 2959 #define _PCH_TRANSB_LINK_M1 0xe1040 2960 #define PCH_TRANS_LINK_M1(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_LINK_M1, _PCH_TRANSB_LINK_M1) 2961 2962 #define _PCH_TRANSA_LINK_N1 0xe0044 2963 #define _PCH_TRANSB_LINK_N1 0xe1044 2964 #define PCH_TRANS_LINK_N1(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_LINK_N1, _PCH_TRANSB_LINK_N1) 2965 2966 #define _PCH_TRANSA_LINK_M2 0xe0048 2967 #define _PCH_TRANSB_LINK_M2 0xe1048 2968 #define PCH_TRANS_LINK_M2(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_LINK_M2, _PCH_TRANSB_LINK_M2) 2969 2970 #define _PCH_TRANSA_LINK_N2 0xe004c 2971 #define _PCH_TRANSB_LINK_N2 0xe104c 2972 #define PCH_TRANS_LINK_N2(pipe) _MMIO_PIPE(pipe, _PCH_TRANSA_LINK_N2, _PCH_TRANSB_LINK_N2) 2973 2974 /* Per-transcoder DIP controls (PCH) */ 2975 #define _VIDEO_DIP_CTL_A 0xe0200 2976 #define _VIDEO_DIP_CTL_B 0xe1200 2977 #define TVIDEO_DIP_CTL(pipe) _MMIO_PIPE(pipe, _VIDEO_DIP_CTL_A, _VIDEO_DIP_CTL_B) 2978 2979 #define _VIDEO_DIP_DATA_A 0xe0208 2980 #define _VIDEO_DIP_DATA_B 0xe1208 2981 #define TVIDEO_DIP_DATA(pipe) _MMIO_PIPE(pipe, _VIDEO_DIP_DATA_A, _VIDEO_DIP_DATA_B) 2982 2983 #define _VIDEO_DIP_GCP_A 0xe0210 2984 #define _VIDEO_DIP_GCP_B 0xe1210 2985 #define TVIDEO_DIP_GCP(pipe) _MMIO_PIPE(pipe, _VIDEO_DIP_GCP_A, _VIDEO_DIP_GCP_B) 2986 #define GCP_COLOR_INDICATION (1 << 2) 2987 #define GCP_DEFAULT_PHASE_ENABLE (1 << 1) 2988 #define GCP_AV_MUTE (1 << 0) 2989 2990 /* Per-transcoder DIP controls (VLV) */ 2991 #define _VLV_VIDEO_DIP_CTL_A 0x60200 2992 #define _VLV_VIDEO_DIP_CTL_B 0x61170 2993 #define _CHV_VIDEO_DIP_CTL_C 0x611f0 2994 #define VLV_TVIDEO_DIP_CTL(pipe) _MMIO_BASE_PIPE3(VLV_DISPLAY_BASE, (pipe), \ 2995 _VLV_VIDEO_DIP_CTL_A, \ 2996 _VLV_VIDEO_DIP_CTL_B, \ 2997 _CHV_VIDEO_DIP_CTL_C) 2998 2999 #define _VLV_VIDEO_DIP_DATA_A 0x60208 3000 #define _VLV_VIDEO_DIP_DATA_B 0x61174 3001 #define _CHV_VIDEO_DIP_DATA_C 0x611f4 3002 #define VLV_TVIDEO_DIP_DATA(pipe) _MMIO_BASE_PIPE3(VLV_DISPLAY_BASE, (pipe), \ 3003 _VLV_VIDEO_DIP_DATA_A, \ 3004 _VLV_VIDEO_DIP_DATA_B, \ 3005 _CHV_VIDEO_DIP_DATA_C) 3006 3007 #define _VLV_VIDEO_DIP_GDCP_PAYLOAD_A 0x60210 3008 #define _VLV_VIDEO_DIP_GDCP_PAYLOAD_B 0x61178 3009 #define _CHV_VIDEO_DIP_GDCP_PAYLOAD_C 0x611f8 3010 #define VLV_TVIDEO_DIP_GCP(pipe) _MMIO_BASE_PIPE3(VLV_DISPLAY_BASE, (pipe), \ 3011 _VLV_VIDEO_DIP_GDCP_PAYLOAD_A, \ 3012 _VLV_VIDEO_DIP_GDCP_PAYLOAD_B, \ 3013 _CHV_VIDEO_DIP_GDCP_PAYLOAD_C) 3014 3015 /* Haswell DIP controls */ 3016 #define _HSW_VIDEO_DIP_CTL_A 0x60200 3017 #define _HSW_VIDEO_DIP_CTL_B 0x61200 3018 #define HSW_TVIDEO_DIP_CTL(dev_priv, trans) _MMIO_TRANS2(dev_priv, trans, _HSW_VIDEO_DIP_CTL_A) 3019 3020 #define _HSW_VIDEO_DIP_AVI_DATA_A 0x60220 3021 #define _HSW_VIDEO_DIP_AVI_DATA_B 0x61220 3022 #define HSW_TVIDEO_DIP_AVI_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _HSW_VIDEO_DIP_AVI_DATA_A + (i) * 4) 3023 3024 #define _HSW_VIDEO_DIP_VS_DATA_A 0x60260 3025 #define _HSW_VIDEO_DIP_VS_DATA_B 0x61260 3026 #define HSW_TVIDEO_DIP_VS_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _HSW_VIDEO_DIP_VS_DATA_A + (i) * 4) 3027 3028 #define _HSW_VIDEO_DIP_SPD_DATA_A 0x602A0 3029 #define _HSW_VIDEO_DIP_SPD_DATA_B 0x612A0 3030 #define HSW_TVIDEO_DIP_SPD_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _HSW_VIDEO_DIP_SPD_DATA_A + (i) * 4) 3031 3032 #define _HSW_VIDEO_DIP_GMP_DATA_A 0x602E0 3033 #define _HSW_VIDEO_DIP_GMP_DATA_B 0x612E0 3034 #define HSW_TVIDEO_DIP_GMP_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _HSW_VIDEO_DIP_GMP_DATA_A + (i) * 4) 3035 3036 #define _HSW_VIDEO_DIP_VSC_DATA_A 0x60320 3037 #define _HSW_VIDEO_DIP_VSC_DATA_B 0x61320 3038 #define HSW_TVIDEO_DIP_VSC_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _HSW_VIDEO_DIP_VSC_DATA_A + (i) * 4) 3039 3040 /*ADLP and later: */ 3041 #define _ADL_VIDEO_DIP_AS_DATA_A 0x60484 3042 #define _ADL_VIDEO_DIP_AS_DATA_B 0x61484 3043 #define ADL_TVIDEO_DIP_AS_SDP_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans,\ 3044 _ADL_VIDEO_DIP_AS_DATA_A + (i) * 4) 3045 3046 #define _GLK_VIDEO_DIP_DRM_DATA_A 0x60440 3047 #define _GLK_VIDEO_DIP_DRM_DATA_B 0x61440 3048 #define GLK_TVIDEO_DIP_DRM_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _GLK_VIDEO_DIP_DRM_DATA_A + (i) * 4) 3049 3050 #define _HSW_VIDEO_DIP_AVI_ECC_A 0x60240 3051 #define _HSW_VIDEO_DIP_BVI_ECC_B 0x61240 3052 #define _HSW_VIDEO_DIP_VS_ECC_A 0x60280 3053 #define _HSW_VIDEO_DIP_VS_ECC_B 0x61280 3054 #define _HSW_VIDEO_DIP_SPD_ECC_A 0x602C0 3055 #define _HSW_VIDEO_DIP_SPD_ECC_B 0x612C0 3056 #define _HSW_VIDEO_DIP_GMP_ECC_A 0x60300 3057 #define _HSW_VIDEO_DIP_GMP_ECC_B 0x61300 3058 #define _HSW_VIDEO_DIP_VSC_ECC_A 0x60344 3059 #define _HSW_VIDEO_DIP_VSC_ECC_B 0x61344 3060 3061 #define _HSW_VIDEO_DIP_GCP_A 0x60210 3062 #define _HSW_VIDEO_DIP_GCP_B 0x61210 3063 #define HSW_TVIDEO_DIP_GCP(dev_priv, trans) _MMIO_TRANS2(dev_priv, trans, _HSW_VIDEO_DIP_GCP_A) 3064 3065 /* Icelake PPS_DATA and _ECC DIP Registers. 3066 * These are available for transcoders B,C and eDP. 3067 * Adding the _A so as to reuse the _MMIO_TRANS2 3068 * definition, with which it offsets to the right location. 3069 */ 3070 3071 #define _ICL_VIDEO_DIP_PPS_DATA_A 0x60350 3072 #define _ICL_VIDEO_DIP_PPS_DATA_B 0x61350 3073 #define ICL_VIDEO_DIP_PPS_DATA(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _ICL_VIDEO_DIP_PPS_DATA_A + (i) * 4) 3074 3075 #define _ICL_VIDEO_DIP_PPS_ECC_A 0x603D4 3076 #define _ICL_VIDEO_DIP_PPS_ECC_B 0x613D4 3077 #define ICL_VIDEO_DIP_PPS_ECC(dev_priv, trans, i) _MMIO_TRANS2(dev_priv, trans, _ICL_VIDEO_DIP_PPS_ECC_A + (i) * 4) 3078 3079 #define _HSW_STEREO_3D_CTL_A 0x70020 3080 #define _HSW_STEREO_3D_CTL_B 0x71020 3081 #define HSW_STEREO_3D_CTL(dev_priv, trans) _MMIO_PIPE2(dev_priv, trans, _HSW_STEREO_3D_CTL_A) 3082 #define S3D_ENABLE (1 << 31) 3083 3084 #define _PCH_TRANSACONF 0xf0008 3085 #define _PCH_TRANSBCONF 0xf1008 3086 #define PCH_TRANSCONF(pipe) _MMIO_PIPE(pipe, _PCH_TRANSACONF, _PCH_TRANSBCONF) 3087 #define LPT_TRANSCONF PCH_TRANSCONF(PIPE_A) /* lpt has only one transcoder */ 3088 #define TRANS_ENABLE REG_BIT(31) 3089 #define TRANS_STATE_ENABLE REG_BIT(30) 3090 #define TRANS_FRAME_START_DELAY_MASK REG_GENMASK(28, 27) /* ibx */ 3091 #define TRANS_FRAME_START_DELAY(x) REG_FIELD_PREP(TRANS_FRAME_START_DELAY_MASK, (x)) /* ibx: 0-3 */ 3092 #define TRANS_INTERLACE_MASK REG_GENMASK(23, 21) 3093 #define TRANS_INTERLACE_PROGRESSIVE REG_FIELD_PREP(TRANS_INTERLACE_MASK, 0) 3094 #define TRANS_INTERLACE_LEGACY_VSYNC_IBX REG_FIELD_PREP(TRANS_INTERLACE_MASK, 2) /* ibx */ 3095 #define TRANS_INTERLACE_INTERLACED REG_FIELD_PREP(TRANS_INTERLACE_MASK, 3) 3096 #define TRANS_BPC_MASK REG_GENMASK(7, 5) /* ibx */ 3097 #define TRANS_BPC_8 REG_FIELD_PREP(TRANS_BPC_MASK, 0) 3098 #define TRANS_BPC_10 REG_FIELD_PREP(TRANS_BPC_MASK, 1) 3099 #define TRANS_BPC_6 REG_FIELD_PREP(TRANS_BPC_MASK, 2) 3100 #define TRANS_BPC_12 REG_FIELD_PREP(TRANS_BPC_MASK, 3) 3101 3102 #define _TRANSA_CHICKEN1 0xf0060 3103 #define _TRANSB_CHICKEN1 0xf1060 3104 #define TRANS_CHICKEN1(pipe) _MMIO_PIPE(pipe, _TRANSA_CHICKEN1, _TRANSB_CHICKEN1) 3105 #define TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE REG_BIT(10) 3106 #define TRANS_CHICKEN1_DP0UNIT_GC_DISABLE REG_BIT(4) 3107 3108 #define _TRANSA_CHICKEN2 0xf0064 3109 #define _TRANSB_CHICKEN2 0xf1064 3110 #define TRANS_CHICKEN2(pipe) _MMIO_PIPE(pipe, _TRANSA_CHICKEN2, _TRANSB_CHICKEN2) 3111 #define TRANS_CHICKEN2_TIMING_OVERRIDE REG_BIT(31) 3112 #define TRANS_CHICKEN2_FDI_POLARITY_REVERSED REG_BIT(29) 3113 #define TRANS_CHICKEN2_FRAME_START_DELAY_MASK REG_GENMASK(28, 27) 3114 #define TRANS_CHICKEN2_FRAME_START_DELAY(x) REG_FIELD_PREP(TRANS_CHICKEN2_FRAME_START_DELAY_MASK, (x)) /* 0-3 */ 3115 #define TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER REG_BIT(26) 3116 #define TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH REG_BIT(25) 3117 3118 #define SOUTH_CHICKEN1 _MMIO(0xc2000) 3119 #define FDIA_PHASE_SYNC_SHIFT_OVR 19 3120 #define FDIA_PHASE_SYNC_SHIFT_EN 18 3121 #define INVERT_DDIE_HPD REG_BIT(28) 3122 #define INVERT_DDID_HPD_MTP REG_BIT(27) 3123 #define INVERT_TC4_HPD REG_BIT(26) 3124 #define INVERT_TC3_HPD REG_BIT(25) 3125 #define INVERT_TC2_HPD REG_BIT(24) 3126 #define INVERT_TC1_HPD REG_BIT(23) 3127 #define INVERT_DDID_HPD (1 << 18) 3128 #define INVERT_DDIC_HPD (1 << 17) 3129 #define INVERT_DDIB_HPD (1 << 16) 3130 #define INVERT_DDIA_HPD (1 << 15) 3131 #define FDI_PHASE_SYNC_OVR(pipe) (1 << (FDIA_PHASE_SYNC_SHIFT_OVR - ((pipe) * 2))) 3132 #define FDI_PHASE_SYNC_EN(pipe) (1 << (FDIA_PHASE_SYNC_SHIFT_EN - ((pipe) * 2))) 3133 #define FDI_BC_BIFURCATION_SELECT (1 << 12) 3134 #define CHASSIS_CLK_REQ_DURATION_MASK (0xf << 8) 3135 #define CHASSIS_CLK_REQ_DURATION(x) ((x) << 8) 3136 #define SBCLK_RUN_REFCLK_DIS (1 << 7) 3137 #define ICP_SECOND_PPS_IO_SELECT REG_BIT(2) 3138 #define SPT_PWM_GRANULARITY (1 << 0) 3139 #define SOUTH_CHICKEN2 _MMIO(0xc2004) 3140 #define FDI_MPHY_IOSFSB_RESET_STATUS (1 << 13) 3141 #define FDI_MPHY_IOSFSB_RESET_CTL (1 << 12) 3142 #define LPT_PWM_GRANULARITY (1 << 5) 3143 #define DPLS_EDP_PPS_FIX_DIS (1 << 0) 3144 3145 #define SOUTH_DSPCLK_GATE_D _MMIO(0xc2020) 3146 #define PCH_GMBUSUNIT_CLOCK_GATE_DISABLE (1 << 31) 3147 #define PCH_DPLUNIT_CLOCK_GATE_DISABLE (1 << 30) 3148 #define PCH_DPLSUNIT_CLOCK_GATE_DISABLE (1 << 29) 3149 #define PCH_DPMGUNIT_CLOCK_GATE_DISABLE (1 << 15) 3150 #define PCH_CPUNIT_CLOCK_GATE_DISABLE (1 << 14) 3151 #define CNP_PWM_CGE_GATING_DISABLE (1 << 13) 3152 #define PCH_LP_PARTITION_LEVEL_DISABLE (1 << 12) 3153 3154 #define PCH_DP_B _MMIO(0xe4100) 3155 #define PCH_DP_C _MMIO(0xe4200) 3156 #define PCH_DP_D _MMIO(0xe4300) 3157 3158 /* CPT */ 3159 #define _TRANS_DP_CTL_A 0xe0300 3160 #define _TRANS_DP_CTL_B 0xe1300 3161 #define _TRANS_DP_CTL_C 0xe2300 3162 #define TRANS_DP_CTL(pipe) _MMIO_PIPE(pipe, _TRANS_DP_CTL_A, _TRANS_DP_CTL_B) 3163 #define TRANS_DP_OUTPUT_ENABLE REG_BIT(31) 3164 #define TRANS_DP_PORT_SEL_MASK REG_GENMASK(30, 29) 3165 #define TRANS_DP_PORT_SEL_NONE REG_FIELD_PREP(TRANS_DP_PORT_SEL_MASK, 3) 3166 #define TRANS_DP_PORT_SEL(port) REG_FIELD_PREP(TRANS_DP_PORT_SEL_MASK, (port) - PORT_B) 3167 #define TRANS_DP_AUDIO_ONLY REG_BIT(26) 3168 #define TRANS_DP_ENH_FRAMING REG_BIT(18) 3169 #define TRANS_DP_BPC_MASK REG_GENMASK(10, 9) 3170 #define TRANS_DP_BPC_8 REG_FIELD_PREP(TRANS_DP_BPC_MASK, 0) 3171 #define TRANS_DP_BPC_10 REG_FIELD_PREP(TRANS_DP_BPC_MASK, 1) 3172 #define TRANS_DP_BPC_6 REG_FIELD_PREP(TRANS_DP_BPC_MASK, 2) 3173 #define TRANS_DP_BPC_12 REG_FIELD_PREP(TRANS_DP_BPC_MASK, 3) 3174 #define TRANS_DP_VSYNC_ACTIVE_HIGH REG_BIT(4) 3175 #define TRANS_DP_HSYNC_ACTIVE_HIGH REG_BIT(3) 3176 3177 #define _TRANS_DP2_CTL_A 0x600a0 3178 #define _TRANS_DP2_CTL_B 0x610a0 3179 #define _TRANS_DP2_CTL_C 0x620a0 3180 #define _TRANS_DP2_CTL_D 0x630a0 3181 #define TRANS_DP2_CTL(trans) _MMIO_TRANS(trans, _TRANS_DP2_CTL_A, _TRANS_DP2_CTL_B) 3182 #define TRANS_DP2_128B132B_CHANNEL_CODING REG_BIT(31) 3183 #define TRANS_DP2_PANEL_REPLAY_ENABLE REG_BIT(30) 3184 #define TRANS_DP2_DEBUG_ENABLE REG_BIT(23) 3185 3186 #define _TRANS_DP2_VFREQHIGH_A 0x600a4 3187 #define _TRANS_DP2_VFREQHIGH_B 0x610a4 3188 #define _TRANS_DP2_VFREQHIGH_C 0x620a4 3189 #define _TRANS_DP2_VFREQHIGH_D 0x630a4 3190 #define TRANS_DP2_VFREQHIGH(trans) _MMIO_TRANS(trans, _TRANS_DP2_VFREQHIGH_A, _TRANS_DP2_VFREQHIGH_B) 3191 #define TRANS_DP2_VFREQ_PIXEL_CLOCK_MASK REG_GENMASK(31, 8) 3192 #define TRANS_DP2_VFREQ_PIXEL_CLOCK(clk_hz) REG_FIELD_PREP(TRANS_DP2_VFREQ_PIXEL_CLOCK_MASK, (clk_hz)) 3193 3194 #define _TRANS_DP2_VFREQLOW_A 0x600a8 3195 #define _TRANS_DP2_VFREQLOW_B 0x610a8 3196 #define _TRANS_DP2_VFREQLOW_C 0x620a8 3197 #define _TRANS_DP2_VFREQLOW_D 0x630a8 3198 #define TRANS_DP2_VFREQLOW(trans) _MMIO_TRANS(trans, _TRANS_DP2_VFREQLOW_A, _TRANS_DP2_VFREQLOW_B) 3199 3200 /* SNB eDP training params */ 3201 /* SNB A-stepping */ 3202 #define EDP_LINK_TRAIN_400MV_0DB_SNB_A (0x38 << 22) 3203 #define EDP_LINK_TRAIN_400MV_6DB_SNB_A (0x02 << 22) 3204 #define EDP_LINK_TRAIN_600MV_3_5DB_SNB_A (0x01 << 22) 3205 #define EDP_LINK_TRAIN_800MV_0DB_SNB_A (0x0 << 22) 3206 /* SNB B-stepping */ 3207 #define EDP_LINK_TRAIN_400_600MV_0DB_SNB_B (0x0 << 22) 3208 #define EDP_LINK_TRAIN_400MV_3_5DB_SNB_B (0x1 << 22) 3209 #define EDP_LINK_TRAIN_400_600MV_6DB_SNB_B (0x3a << 22) 3210 #define EDP_LINK_TRAIN_600_800MV_3_5DB_SNB_B (0x39 << 22) 3211 #define EDP_LINK_TRAIN_800_1200MV_0DB_SNB_B (0x38 << 22) 3212 #define EDP_LINK_TRAIN_VOL_EMP_MASK_SNB (0x3f << 22) 3213 3214 /* IVB */ 3215 #define EDP_LINK_TRAIN_400MV_0DB_IVB (0x24 << 22) 3216 #define EDP_LINK_TRAIN_400MV_3_5DB_IVB (0x2a << 22) 3217 #define EDP_LINK_TRAIN_400MV_6DB_IVB (0x2f << 22) 3218 #define EDP_LINK_TRAIN_600MV_0DB_IVB (0x30 << 22) 3219 #define EDP_LINK_TRAIN_600MV_3_5DB_IVB (0x36 << 22) 3220 #define EDP_LINK_TRAIN_800MV_0DB_IVB (0x38 << 22) 3221 #define EDP_LINK_TRAIN_800MV_3_5DB_IVB (0x3e << 22) 3222 3223 /* legacy values */ 3224 #define EDP_LINK_TRAIN_500MV_0DB_IVB (0x00 << 22) 3225 #define EDP_LINK_TRAIN_1000MV_0DB_IVB (0x20 << 22) 3226 #define EDP_LINK_TRAIN_500MV_3_5DB_IVB (0x02 << 22) 3227 #define EDP_LINK_TRAIN_1000MV_3_5DB_IVB (0x22 << 22) 3228 #define EDP_LINK_TRAIN_1000MV_6DB_IVB (0x23 << 22) 3229 3230 #define EDP_LINK_TRAIN_VOL_EMP_MASK_IVB (0x3f << 22) 3231 3232 #define VLV_PMWGICZ _MMIO(0x1300a4) 3233 3234 #define HSW_EDRAM_CAP _MMIO(0x120010) 3235 #define EDRAM_ENABLED 0x1 3236 #define EDRAM_NUM_BANKS(cap) (((cap) >> 1) & 0xf) 3237 #define EDRAM_WAYS_IDX(cap) (((cap) >> 5) & 0x7) 3238 #define EDRAM_SETS_IDX(cap) (((cap) >> 8) & 0x3) 3239 3240 #define VLV_CHICKEN_3 _MMIO(VLV_DISPLAY_BASE + 0x7040C) 3241 #define PIXEL_OVERLAP_CNT_MASK (3 << 30) 3242 #define PIXEL_OVERLAP_CNT_SHIFT 30 3243 3244 #define GEN6_PCODE_MAILBOX _MMIO(0x138124) 3245 #define GEN6_PCODE_READY (1 << 31) 3246 #define GEN6_PCODE_MB_PARAM2 REG_GENMASK(23, 16) 3247 #define GEN6_PCODE_MB_PARAM1 REG_GENMASK(15, 8) 3248 #define GEN6_PCODE_MB_COMMAND REG_GENMASK(7, 0) 3249 #define GEN6_PCODE_ERROR_MASK 0xFF 3250 #define GEN6_PCODE_SUCCESS 0x0 3251 #define GEN6_PCODE_ILLEGAL_CMD 0x1 3252 #define GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE 0x2 3253 #define GEN6_PCODE_TIMEOUT 0x3 3254 #define GEN6_PCODE_UNIMPLEMENTED_CMD 0xFF 3255 #define GEN7_PCODE_TIMEOUT 0x2 3256 #define GEN7_PCODE_ILLEGAL_DATA 0x3 3257 #define GEN11_PCODE_ILLEGAL_SUBCOMMAND 0x4 3258 #define GEN11_PCODE_LOCKED 0x6 3259 #define GEN11_PCODE_REJECTED 0x11 3260 #define GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE 0x10 3261 #define GEN6_PCODE_WRITE_RC6VIDS 0x4 3262 #define GEN6_PCODE_READ_RC6VIDS 0x5 3263 #define GEN6_ENCODE_RC6_VID(mv) (((mv) - 245) / 5) 3264 #define GEN6_DECODE_RC6_VID(vids) (((vids) * 5) + 245) 3265 #define BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ 0x18 3266 #define GEN9_PCODE_READ_MEM_LATENCY 0x6 3267 #define GEN9_MEM_LATENCY_LEVEL_3_7_MASK REG_GENMASK(31, 24) 3268 #define GEN9_MEM_LATENCY_LEVEL_2_6_MASK REG_GENMASK(23, 16) 3269 #define GEN9_MEM_LATENCY_LEVEL_1_5_MASK REG_GENMASK(15, 8) 3270 #define GEN9_MEM_LATENCY_LEVEL_0_4_MASK REG_GENMASK(7, 0) 3271 #define SKL_PCODE_LOAD_HDCP_KEYS 0x5 3272 #define SKL_PCODE_CDCLK_CONTROL 0x7 3273 #define SKL_CDCLK_PREPARE_FOR_CHANGE 0x3 3274 #define SKL_CDCLK_READY_FOR_CHANGE 0x1 3275 #define GEN6_PCODE_WRITE_MIN_FREQ_TABLE 0x8 3276 #define GEN6_PCODE_READ_MIN_FREQ_TABLE 0x9 3277 #define GEN6_READ_OC_PARAMS 0xc 3278 #define ICL_PCODE_MEM_SUBSYSYSTEM_INFO 0xd 3279 #define ICL_PCODE_MEM_SS_READ_GLOBAL_INFO (0x0 << 8) 3280 #define ICL_PCODE_MEM_SS_READ_QGV_POINT_INFO(point) (((point) << 16) | (0x1 << 8)) 3281 #define ADL_PCODE_MEM_SS_READ_PSF_GV_INFO ((0) | (0x2 << 8)) 3282 #define DISPLAY_TO_PCODE_CDCLK_MAX 0x28D 3283 #define DISPLAY_TO_PCODE_VOLTAGE_MASK REG_GENMASK(1, 0) 3284 #define DISPLAY_TO_PCODE_VOLTAGE_MAX DISPLAY_TO_PCODE_VOLTAGE_MASK 3285 #define DISPLAY_TO_PCODE_CDCLK_VALID REG_BIT(27) 3286 #define DISPLAY_TO_PCODE_PIPE_COUNT_VALID REG_BIT(31) 3287 #define DISPLAY_TO_PCODE_CDCLK_MASK REG_GENMASK(25, 16) 3288 #define DISPLAY_TO_PCODE_PIPE_COUNT_MASK REG_GENMASK(30, 28) 3289 #define DISPLAY_TO_PCODE_CDCLK(x) REG_FIELD_PREP(DISPLAY_TO_PCODE_CDCLK_MASK, (x)) 3290 #define DISPLAY_TO_PCODE_PIPE_COUNT(x) REG_FIELD_PREP(DISPLAY_TO_PCODE_PIPE_COUNT_MASK, (x)) 3291 #define DISPLAY_TO_PCODE_VOLTAGE(x) REG_FIELD_PREP(DISPLAY_TO_PCODE_VOLTAGE_MASK, (x)) 3292 #define DISPLAY_TO_PCODE_UPDATE_MASK(cdclk, num_pipes, voltage_level) \ 3293 ((DISPLAY_TO_PCODE_CDCLK(cdclk)) | \ 3294 (DISPLAY_TO_PCODE_PIPE_COUNT(num_pipes)) | \ 3295 (DISPLAY_TO_PCODE_VOLTAGE(voltage_level))) 3296 #define ICL_PCODE_SAGV_DE_MEM_SS_CONFIG 0xe 3297 #define ICL_PCODE_REP_QGV_MASK REG_GENMASK(1, 0) 3298 #define ICL_PCODE_REP_QGV_SAFE REG_FIELD_PREP(ICL_PCODE_REP_QGV_MASK, 0) 3299 #define ICL_PCODE_REP_QGV_POLL REG_FIELD_PREP(ICL_PCODE_REP_QGV_MASK, 1) 3300 #define ICL_PCODE_REP_QGV_REJECTED REG_FIELD_PREP(ICL_PCODE_REP_QGV_MASK, 2) 3301 #define ADLS_PCODE_REP_PSF_MASK REG_GENMASK(3, 2) 3302 #define ADLS_PCODE_REP_PSF_SAFE REG_FIELD_PREP(ADLS_PCODE_REP_PSF_MASK, 0) 3303 #define ADLS_PCODE_REP_PSF_POLL REG_FIELD_PREP(ADLS_PCODE_REP_PSF_MASK, 1) 3304 #define ADLS_PCODE_REP_PSF_REJECTED REG_FIELD_PREP(ADLS_PCODE_REP_PSF_MASK, 2) 3305 #define ICL_PCODE_REQ_QGV_PT_MASK REG_GENMASK(7, 0) 3306 #define ICL_PCODE_REQ_QGV_PT(x) REG_FIELD_PREP(ICL_PCODE_REQ_QGV_PT_MASK, (x)) 3307 #define ADLS_PCODE_REQ_PSF_PT_MASK REG_GENMASK(10, 8) 3308 #define ADLS_PCODE_REQ_PSF_PT(x) REG_FIELD_PREP(ADLS_PCODE_REQ_PSF_PT_MASK, (x)) 3309 #define GEN6_PCODE_READ_D_COMP 0x10 3310 #define GEN6_PCODE_WRITE_D_COMP 0x11 3311 #define ICL_PCODE_EXIT_TCCOLD 0x12 3312 #define HSW_PCODE_DE_WRITE_FREQ_REQ 0x17 3313 #define DISPLAY_IPS_CONTROL 0x19 3314 #define TGL_PCODE_TCCOLD 0x26 3315 #define TGL_PCODE_EXIT_TCCOLD_DATA_L_EXIT_FAILED REG_BIT(0) 3316 #define TGL_PCODE_EXIT_TCCOLD_DATA_L_BLOCK_REQ 0 3317 #define TGL_PCODE_EXIT_TCCOLD_DATA_L_UNBLOCK_REQ REG_BIT(0) 3318 /* See also IPS_CTL */ 3319 #define IPS_PCODE_CONTROL (1 << 30) 3320 #define HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL 0x1A 3321 #define GEN9_PCODE_SAGV_CONTROL 0x21 3322 #define GEN9_SAGV_DISABLE 0x0 3323 #define GEN9_SAGV_IS_DISABLED 0x1 3324 #define GEN9_SAGV_ENABLE 0x3 3325 #define DG1_PCODE_STATUS 0x7E 3326 #define DG1_UNCORE_GET_INIT_STATUS 0x0 3327 #define DG1_UNCORE_INIT_STATUS_COMPLETE 0x1 3328 #define PCODE_POWER_SETUP 0x7C 3329 #define POWER_SETUP_SUBCOMMAND_READ_I1 0x4 3330 #define POWER_SETUP_SUBCOMMAND_WRITE_I1 0x5 3331 #define POWER_SETUP_I1_WATTS REG_BIT(31) 3332 #define POWER_SETUP_I1_SHIFT 6 /* 10.6 fixed point format */ 3333 #define POWER_SETUP_I1_DATA_MASK REG_GENMASK(15, 0) 3334 #define POWER_SETUP_SUBCOMMAND_G8_ENABLE 0x6 3335 #define GEN12_PCODE_READ_SAGV_BLOCK_TIME_US 0x23 3336 #define XEHP_PCODE_FREQUENCY_CONFIG 0x6e /* pvc */ 3337 /* XEHP_PCODE_FREQUENCY_CONFIG sub-commands (param1) */ 3338 #define PCODE_MBOX_FC_SC_READ_FUSED_P0 0x0 3339 #define PCODE_MBOX_FC_SC_READ_FUSED_PN 0x1 3340 /* PCODE_MBOX_DOMAIN_* - mailbox domain IDs */ 3341 /* XEHP_PCODE_FREQUENCY_CONFIG param2 */ 3342 #define PCODE_MBOX_DOMAIN_NONE 0x0 3343 #define PCODE_MBOX_DOMAIN_MEDIAFF 0x3 3344 #define GEN6_PCODE_DATA _MMIO(0x138128) 3345 #define GEN6_PCODE_FREQ_IA_RATIO_SHIFT 8 3346 #define GEN6_PCODE_FREQ_RING_RATIO_SHIFT 16 3347 #define GEN6_PCODE_DATA1 _MMIO(0x13812C) 3348 3349 #define MTL_PCODE_STOLEN_ACCESS _MMIO(0x138914) 3350 #define STOLEN_ACCESS_ALLOWED 0x1 3351 3352 /* IVYBRIDGE DPF */ 3353 #define GEN7_L3CDERRST1(slice) _MMIO(0xB008 + (slice) * 0x200) /* L3CD Error Status 1 */ 3354 #define GEN7_L3CDERRST1_ROW_MASK (0x7ff << 14) 3355 #define GEN7_PARITY_ERROR_VALID (1 << 13) 3356 #define GEN7_L3CDERRST1_BANK_MASK (3 << 11) 3357 #define GEN7_L3CDERRST1_SUBBANK_MASK (7 << 8) 3358 #define GEN7_PARITY_ERROR_ROW(reg) \ 3359 (((reg) & GEN7_L3CDERRST1_ROW_MASK) >> 14) 3360 #define GEN7_PARITY_ERROR_BANK(reg) \ 3361 (((reg) & GEN7_L3CDERRST1_BANK_MASK) >> 11) 3362 #define GEN7_PARITY_ERROR_SUBBANK(reg) \ 3363 (((reg) & GEN7_L3CDERRST1_SUBBANK_MASK) >> 8) 3364 #define GEN7_L3CDERRST1_ENABLE (1 << 7) 3365 3366 /* These are the 4 32-bit write offset registers for each stream 3367 * output buffer. It determines the offset from the 3368 * 3DSTATE_SO_BUFFERs that the next streamed vertex output goes to. 3369 */ 3370 #define GEN7_SO_WRITE_OFFSET(n) _MMIO(0x5280 + (n) * 4) 3371 3372 /* 3373 * HSW - ICL power wells 3374 * 3375 * Platforms have up to 3 power well control register sets, each set 3376 * controlling up to 16 power wells via a request/status HW flag tuple: 3377 * - main (HSW_PWR_WELL_CTL[1-4]) 3378 * - AUX (ICL_PWR_WELL_CTL_AUX[1-4]) 3379 * - DDI (ICL_PWR_WELL_CTL_DDI[1-4]) 3380 * Each control register set consists of up to 4 registers used by different 3381 * sources that can request a power well to be enabled: 3382 * - BIOS (HSW_PWR_WELL_CTL1/ICL_PWR_WELL_CTL_AUX1/ICL_PWR_WELL_CTL_DDI1) 3383 * - DRIVER (HSW_PWR_WELL_CTL2/ICL_PWR_WELL_CTL_AUX2/ICL_PWR_WELL_CTL_DDI2) 3384 * - KVMR (HSW_PWR_WELL_CTL3) (only in the main register set) 3385 * - DEBUG (HSW_PWR_WELL_CTL4/ICL_PWR_WELL_CTL_AUX4/ICL_PWR_WELL_CTL_DDI4) 3386 */ 3387 #define HSW_PWR_WELL_CTL1 _MMIO(0x45400) 3388 #define HSW_PWR_WELL_CTL2 _MMIO(0x45404) 3389 #define HSW_PWR_WELL_CTL3 _MMIO(0x45408) 3390 #define HSW_PWR_WELL_CTL4 _MMIO(0x4540C) 3391 #define HSW_PWR_WELL_CTL_REQ(pw_idx) (0x2 << ((pw_idx) * 2)) 3392 #define HSW_PWR_WELL_CTL_STATE(pw_idx) (0x1 << ((pw_idx) * 2)) 3393 3394 /* HSW/BDW power well */ 3395 #define HSW_PW_CTL_IDX_GLOBAL 15 3396 3397 /* SKL/BXT/GLK power wells */ 3398 #define SKL_PW_CTL_IDX_PW_2 15 3399 #define SKL_PW_CTL_IDX_PW_1 14 3400 #define GLK_PW_CTL_IDX_AUX_C 10 3401 #define GLK_PW_CTL_IDX_AUX_B 9 3402 #define GLK_PW_CTL_IDX_AUX_A 8 3403 #define SKL_PW_CTL_IDX_DDI_D 4 3404 #define SKL_PW_CTL_IDX_DDI_C 3 3405 #define SKL_PW_CTL_IDX_DDI_B 2 3406 #define SKL_PW_CTL_IDX_DDI_A_E 1 3407 #define GLK_PW_CTL_IDX_DDI_A 1 3408 #define SKL_PW_CTL_IDX_MISC_IO 0 3409 3410 /* ICL/TGL - power wells */ 3411 #define TGL_PW_CTL_IDX_PW_5 4 3412 #define ICL_PW_CTL_IDX_PW_4 3 3413 #define ICL_PW_CTL_IDX_PW_3 2 3414 #define ICL_PW_CTL_IDX_PW_2 1 3415 #define ICL_PW_CTL_IDX_PW_1 0 3416 3417 /* XE_LPD - power wells */ 3418 #define XELPD_PW_CTL_IDX_PW_D 8 3419 #define XELPD_PW_CTL_IDX_PW_C 7 3420 #define XELPD_PW_CTL_IDX_PW_B 6 3421 #define XELPD_PW_CTL_IDX_PW_A 5 3422 3423 #define ICL_PWR_WELL_CTL_AUX1 _MMIO(0x45440) 3424 #define ICL_PWR_WELL_CTL_AUX2 _MMIO(0x45444) 3425 #define ICL_PWR_WELL_CTL_AUX4 _MMIO(0x4544C) 3426 #define TGL_PW_CTL_IDX_AUX_TBT6 14 3427 #define TGL_PW_CTL_IDX_AUX_TBT5 13 3428 #define TGL_PW_CTL_IDX_AUX_TBT4 12 3429 #define ICL_PW_CTL_IDX_AUX_TBT4 11 3430 #define TGL_PW_CTL_IDX_AUX_TBT3 11 3431 #define ICL_PW_CTL_IDX_AUX_TBT3 10 3432 #define TGL_PW_CTL_IDX_AUX_TBT2 10 3433 #define ICL_PW_CTL_IDX_AUX_TBT2 9 3434 #define TGL_PW_CTL_IDX_AUX_TBT1 9 3435 #define ICL_PW_CTL_IDX_AUX_TBT1 8 3436 #define TGL_PW_CTL_IDX_AUX_TC6 8 3437 #define XELPD_PW_CTL_IDX_AUX_E 8 3438 #define TGL_PW_CTL_IDX_AUX_TC5 7 3439 #define XELPD_PW_CTL_IDX_AUX_D 7 3440 #define TGL_PW_CTL_IDX_AUX_TC4 6 3441 #define ICL_PW_CTL_IDX_AUX_F 5 3442 #define TGL_PW_CTL_IDX_AUX_TC3 5 3443 #define ICL_PW_CTL_IDX_AUX_E 4 3444 #define TGL_PW_CTL_IDX_AUX_TC2 4 3445 #define ICL_PW_CTL_IDX_AUX_D 3 3446 #define TGL_PW_CTL_IDX_AUX_TC1 3 3447 #define ICL_PW_CTL_IDX_AUX_C 2 3448 #define ICL_PW_CTL_IDX_AUX_B 1 3449 #define ICL_PW_CTL_IDX_AUX_A 0 3450 3451 #define ICL_PWR_WELL_CTL_DDI1 _MMIO(0x45450) 3452 #define ICL_PWR_WELL_CTL_DDI2 _MMIO(0x45454) 3453 #define ICL_PWR_WELL_CTL_DDI4 _MMIO(0x4545C) 3454 #define XELPD_PW_CTL_IDX_DDI_E 8 3455 #define TGL_PW_CTL_IDX_DDI_TC6 8 3456 #define XELPD_PW_CTL_IDX_DDI_D 7 3457 #define TGL_PW_CTL_IDX_DDI_TC5 7 3458 #define TGL_PW_CTL_IDX_DDI_TC4 6 3459 #define ICL_PW_CTL_IDX_DDI_F 5 3460 #define TGL_PW_CTL_IDX_DDI_TC3 5 3461 #define ICL_PW_CTL_IDX_DDI_E 4 3462 #define TGL_PW_CTL_IDX_DDI_TC2 4 3463 #define ICL_PW_CTL_IDX_DDI_D 3 3464 #define TGL_PW_CTL_IDX_DDI_TC1 3 3465 #define ICL_PW_CTL_IDX_DDI_C 2 3466 #define ICL_PW_CTL_IDX_DDI_B 1 3467 #define ICL_PW_CTL_IDX_DDI_A 0 3468 3469 /* HSW - power well misc debug registers */ 3470 #define HSW_PWR_WELL_CTL5 _MMIO(0x45410) 3471 #define HSW_PWR_WELL_ENABLE_SINGLE_STEP (1 << 31) 3472 #define HSW_PWR_WELL_PWR_GATE_OVERRIDE (1 << 20) 3473 #define HSW_PWR_WELL_FORCE_ON (1 << 19) 3474 #define HSW_PWR_WELL_CTL6 _MMIO(0x45414) 3475 3476 /* SKL Fuse Status */ 3477 enum skl_power_gate { 3478 SKL_PG0, 3479 SKL_PG1, 3480 SKL_PG2, 3481 ICL_PG3, 3482 ICL_PG4, 3483 }; 3484 3485 #define SKL_FUSE_STATUS _MMIO(0x42000) 3486 #define SKL_FUSE_DOWNLOAD_STATUS (1 << 31) 3487 /* 3488 * PG0 is HW controlled, so doesn't have a corresponding power well control knob 3489 * SKL_DISP_PW1_IDX..SKL_DISP_PW2_IDX -> PG1..PG2 3490 */ 3491 #define SKL_PW_CTL_IDX_TO_PG(pw_idx) \ 3492 ((pw_idx) - SKL_PW_CTL_IDX_PW_1 + SKL_PG1) 3493 /* 3494 * PG0 is HW controlled, so doesn't have a corresponding power well control knob 3495 * ICL_DISP_PW1_IDX..ICL_DISP_PW4_IDX -> PG1..PG4 3496 */ 3497 #define ICL_PW_CTL_IDX_TO_PG(pw_idx) \ 3498 ((pw_idx) - ICL_PW_CTL_IDX_PW_1 + SKL_PG1) 3499 #define SKL_FUSE_PG_DIST_STATUS(pg) (1 << (27 - (pg))) 3500 3501 /* Per-pipe DDI Function Control */ 3502 #define _TRANS_DDI_FUNC_CTL_A 0x60400 3503 #define _TRANS_DDI_FUNC_CTL_B 0x61400 3504 #define _TRANS_DDI_FUNC_CTL_C 0x62400 3505 #define _TRANS_DDI_FUNC_CTL_D 0x63400 3506 #define _TRANS_DDI_FUNC_CTL_EDP 0x6F400 3507 #define _TRANS_DDI_FUNC_CTL_DSI0 0x6b400 3508 #define _TRANS_DDI_FUNC_CTL_DSI1 0x6bc00 3509 #define TRANS_DDI_FUNC_CTL(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _TRANS_DDI_FUNC_CTL_A) 3510 3511 #define TRANS_DDI_FUNC_ENABLE (1 << 31) 3512 /* Those bits are ignored by pipe EDP since it can only connect to DDI A */ 3513 #define TRANS_DDI_PORT_SHIFT 28 3514 #define TGL_TRANS_DDI_PORT_SHIFT 27 3515 #define TRANS_DDI_PORT_MASK (7 << TRANS_DDI_PORT_SHIFT) 3516 #define TGL_TRANS_DDI_PORT_MASK (0xf << TGL_TRANS_DDI_PORT_SHIFT) 3517 #define TRANS_DDI_SELECT_PORT(x) ((x) << TRANS_DDI_PORT_SHIFT) 3518 #define TGL_TRANS_DDI_SELECT_PORT(x) (((x) + 1) << TGL_TRANS_DDI_PORT_SHIFT) 3519 #define TRANS_DDI_MODE_SELECT_MASK (7 << 24) 3520 #define TRANS_DDI_MODE_SELECT_HDMI (0 << 24) 3521 #define TRANS_DDI_MODE_SELECT_DVI (1 << 24) 3522 #define TRANS_DDI_MODE_SELECT_DP_SST (2 << 24) 3523 #define TRANS_DDI_MODE_SELECT_DP_MST (3 << 24) 3524 #define TRANS_DDI_MODE_SELECT_FDI_OR_128B132B (4 << 24) 3525 #define TRANS_DDI_BPC_MASK (7 << 20) 3526 #define TRANS_DDI_BPC_8 (0 << 20) 3527 #define TRANS_DDI_BPC_10 (1 << 20) 3528 #define TRANS_DDI_BPC_6 (2 << 20) 3529 #define TRANS_DDI_BPC_12 (3 << 20) 3530 #define TRANS_DDI_PORT_SYNC_MASTER_SELECT_MASK REG_GENMASK(19, 18) 3531 #define TRANS_DDI_PORT_SYNC_MASTER_SELECT(x) REG_FIELD_PREP(TRANS_DDI_PORT_SYNC_MASTER_SELECT_MASK, (x)) 3532 #define TRANS_DDI_PVSYNC (1 << 17) 3533 #define TRANS_DDI_PHSYNC (1 << 16) 3534 #define TRANS_DDI_PORT_SYNC_ENABLE REG_BIT(15) 3535 #define XE3_TRANS_DDI_HDCP_LINE_REKEY_DISABLE REG_BIT(15) 3536 #define TRANS_DDI_EDP_INPUT_MASK (7 << 12) 3537 #define TRANS_DDI_EDP_INPUT_A_ON (0 << 12) 3538 #define TRANS_DDI_EDP_INPUT_A_ONOFF (4 << 12) 3539 #define TRANS_DDI_EDP_INPUT_B_ONOFF (5 << 12) 3540 #define TRANS_DDI_EDP_INPUT_C_ONOFF (6 << 12) 3541 #define TRANS_DDI_EDP_INPUT_D_ONOFF (7 << 12) 3542 #define TRANS_DDI_HDCP_LINE_REKEY_DISABLE REG_BIT(12) 3543 #define TRANS_DDI_MST_TRANSPORT_SELECT_MASK REG_GENMASK(11, 10) 3544 #define TRANS_DDI_MST_TRANSPORT_SELECT(trans) \ 3545 REG_FIELD_PREP(TRANS_DDI_MST_TRANSPORT_SELECT_MASK, trans) 3546 #define TRANS_DDI_HDCP_SIGNALLING (1 << 9) 3547 #define TRANS_DDI_DP_VC_PAYLOAD_ALLOC (1 << 8) 3548 #define TRANS_DDI_HDMI_SCRAMBLER_CTS_ENABLE (1 << 7) 3549 #define TRANS_DDI_HDMI_SCRAMBLER_RESET_FREQ (1 << 6) 3550 #define TRANS_DDI_HDCP_SELECT REG_BIT(5) 3551 #define TRANS_DDI_BFI_ENABLE (1 << 4) 3552 #define TRANS_DDI_HIGH_TMDS_CHAR_RATE (1 << 4) 3553 #define TRANS_DDI_PORT_WIDTH_MASK REG_GENMASK(3, 1) 3554 #define TRANS_DDI_PORT_WIDTH(width) REG_FIELD_PREP(TRANS_DDI_PORT_WIDTH_MASK, (width) - 1) 3555 #define TRANS_DDI_HDMI_SCRAMBLING (1 << 0) 3556 #define TRANS_DDI_HDMI_SCRAMBLING_MASK (TRANS_DDI_HDMI_SCRAMBLER_CTS_ENABLE \ 3557 | TRANS_DDI_HDMI_SCRAMBLER_RESET_FREQ \ 3558 | TRANS_DDI_HDMI_SCRAMBLING) 3559 3560 #define _TRANS_DDI_FUNC_CTL2_A 0x60404 3561 #define _TRANS_DDI_FUNC_CTL2_B 0x61404 3562 #define _TRANS_DDI_FUNC_CTL2_C 0x62404 3563 #define _TRANS_DDI_FUNC_CTL2_EDP 0x6f404 3564 #define _TRANS_DDI_FUNC_CTL2_DSI0 0x6b404 3565 #define _TRANS_DDI_FUNC_CTL2_DSI1 0x6bc04 3566 #define TRANS_DDI_FUNC_CTL2(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _TRANS_DDI_FUNC_CTL2_A) 3567 #define PORT_SYNC_MODE_ENABLE REG_BIT(4) 3568 #define PORT_SYNC_MODE_MASTER_SELECT_MASK REG_GENMASK(2, 0) 3569 #define PORT_SYNC_MODE_MASTER_SELECT(x) REG_FIELD_PREP(PORT_SYNC_MODE_MASTER_SELECT_MASK, (x)) 3570 3571 #define TRANS_CMTG_CHICKEN _MMIO(0x6fa90) 3572 #define DISABLE_DPT_CLK_GATING REG_BIT(1) 3573 3574 /* DisplayPort Transport Control */ 3575 #define _DP_TP_CTL_A 0x64040 3576 #define _DP_TP_CTL_B 0x64140 3577 #define _TGL_DP_TP_CTL_A 0x60540 3578 #define DP_TP_CTL(port) _MMIO_PORT(port, _DP_TP_CTL_A, _DP_TP_CTL_B) 3579 #define TGL_DP_TP_CTL(dev_priv, tran) _MMIO_TRANS2(dev_priv, (tran), _TGL_DP_TP_CTL_A) 3580 #define DP_TP_CTL_ENABLE REG_BIT(31) 3581 #define DP_TP_CTL_FEC_ENABLE REG_BIT(30) 3582 #define DP_TP_CTL_MODE_MASK REG_BIT(27) 3583 #define DP_TP_CTL_MODE_SST REG_FIELD_PREP(DP_TP_CTL_MODE_MASK, 0) 3584 #define DP_TP_CTL_MODE_MST REG_FIELD_PREP(DP_TP_CTL_MODE_MASK, 1) 3585 #define DP_TP_CTL_FORCE_ACT REG_BIT(25) 3586 #define DP_TP_CTL_TRAIN_PAT4_SEL_MASK REG_GENMASK(20, 19) 3587 #define DP_TP_CTL_TRAIN_PAT4_SEL_TP4A REG_FIELD_PREP(DP_TP_CTL_TRAIN_PAT4_SEL_MASK, 0) 3588 #define DP_TP_CTL_TRAIN_PAT4_SEL_TP4B REG_FIELD_PREP(DP_TP_CTL_TRAIN_PAT4_SEL_MASK, 1) 3589 #define DP_TP_CTL_TRAIN_PAT4_SEL_TP4C REG_FIELD_PREP(DP_TP_CTL_TRAIN_PAT4_SEL_MASK, 2) 3590 #define DP_TP_CTL_ENHANCED_FRAME_ENABLE REG_BIT(18) 3591 #define DP_TP_CTL_FDI_AUTOTRAIN REG_BIT(15) 3592 #define DP_TP_CTL_LINK_TRAIN_MASK REG_GENMASK(10, 8) 3593 #define DP_TP_CTL_LINK_TRAIN_PAT1 REG_FIELD_PREP(DP_TP_CTL_LINK_TRAIN_MASK, 0) 3594 #define DP_TP_CTL_LINK_TRAIN_PAT2 REG_FIELD_PREP(DP_TP_CTL_LINK_TRAIN_MASK, 1) 3595 #define DP_TP_CTL_LINK_TRAIN_PAT3 REG_FIELD_PREP(DP_TP_CTL_LINK_TRAIN_MASK, 4) 3596 #define DP_TP_CTL_LINK_TRAIN_PAT4 REG_FIELD_PREP(DP_TP_CTL_LINK_TRAIN_MASK, 5) 3597 #define DP_TP_CTL_LINK_TRAIN_IDLE REG_FIELD_PREP(DP_TP_CTL_LINK_TRAIN_MASK, 2) 3598 #define DP_TP_CTL_LINK_TRAIN_NORMAL REG_FIELD_PREP(DP_TP_CTL_LINK_TRAIN_MASK, 3) 3599 #define DP_TP_CTL_SCRAMBLE_DISABLE REG_BIT(7) 3600 3601 /* DisplayPort Transport Status */ 3602 #define _DP_TP_STATUS_A 0x64044 3603 #define _DP_TP_STATUS_B 0x64144 3604 #define _TGL_DP_TP_STATUS_A 0x60544 3605 #define DP_TP_STATUS(port) _MMIO_PORT(port, _DP_TP_STATUS_A, _DP_TP_STATUS_B) 3606 #define TGL_DP_TP_STATUS(dev_priv, tran) _MMIO_TRANS2(dev_priv, (tran), _TGL_DP_TP_STATUS_A) 3607 #define DP_TP_STATUS_FEC_ENABLE_LIVE REG_BIT(28) 3608 #define DP_TP_STATUS_IDLE_DONE REG_BIT(25) 3609 #define DP_TP_STATUS_ACT_SENT REG_BIT(24) 3610 #define DP_TP_STATUS_MODE_STATUS_MST REG_BIT(23) 3611 #define DP_TP_STATUS_STREAMS_ENABLED_MASK REG_GENMASK(18, 16) /* 17:16 on hsw but bit 18 mbz */ 3612 #define DP_TP_STATUS_AUTOTRAIN_DONE REG_BIT(12) 3613 #define DP_TP_STATUS_PAYLOAD_MAPPING_VC2_MASK REG_GENMASK(9, 8) 3614 #define DP_TP_STATUS_PAYLOAD_MAPPING_VC1_MASK REG_GENMASK(5, 4) 3615 #define DP_TP_STATUS_PAYLOAD_MAPPING_VC0_MASK REG_GENMASK(1, 0) 3616 3617 /* DDI Buffer Control */ 3618 #define _DDI_BUF_CTL_A 0x64000 3619 #define _DDI_BUF_CTL_B 0x64100 3620 /* Known as DDI_CTL_DE in MTL+ */ 3621 #define DDI_BUF_CTL(port) _MMIO_PORT(port, _DDI_BUF_CTL_A, _DDI_BUF_CTL_B) 3622 #define DDI_BUF_CTL_ENABLE (1 << 31) 3623 #define XE2LPD_DDI_BUF_D2D_LINK_ENABLE REG_BIT(29) 3624 #define XE2LPD_DDI_BUF_D2D_LINK_STATE REG_BIT(28) 3625 #define DDI_BUF_TRANS_SELECT(n) ((n) << 24) 3626 #define DDI_BUF_EMP_MASK (0xf << 24) 3627 #define DDI_BUF_PHY_LINK_RATE(r) ((r) << 20) 3628 #define DDI_BUF_PORT_DATA_MASK REG_GENMASK(19, 18) 3629 #define DDI_BUF_PORT_DATA_10BIT REG_FIELD_PREP(DDI_BUF_PORT_DATA_MASK, 0) 3630 #define DDI_BUF_PORT_DATA_20BIT REG_FIELD_PREP(DDI_BUF_PORT_DATA_MASK, 1) 3631 #define DDI_BUF_PORT_DATA_40BIT REG_FIELD_PREP(DDI_BUF_PORT_DATA_MASK, 2) 3632 #define DDI_BUF_PORT_REVERSAL (1 << 16) 3633 #define DDI_BUF_IS_IDLE (1 << 7) 3634 #define DDI_BUF_CTL_TC_PHY_OWNERSHIP REG_BIT(6) 3635 #define DDI_A_4_LANES (1 << 4) 3636 #define DDI_PORT_WIDTH(width) (((width) == 3 ? 4 : ((width) - 1)) << 1) 3637 #define DDI_PORT_WIDTH_MASK (7 << 1) 3638 #define DDI_PORT_WIDTH_SHIFT 1 3639 #define DDI_INIT_DISPLAY_DETECTED (1 << 0) 3640 3641 /* DDI Buffer Translations */ 3642 #define _DDI_BUF_TRANS_A 0x64E00 3643 #define _DDI_BUF_TRANS_B 0x64E60 3644 #define DDI_BUF_TRANS_LO(port, i) _MMIO(_PORT(port, _DDI_BUF_TRANS_A, _DDI_BUF_TRANS_B) + (i) * 8) 3645 #define DDI_BUF_BALANCE_LEG_ENABLE (1 << 31) 3646 #define DDI_BUF_TRANS_HI(port, i) _MMIO(_PORT(port, _DDI_BUF_TRANS_A, _DDI_BUF_TRANS_B) + (i) * 8 + 4) 3647 3648 /* DDI DP Compliance Control */ 3649 #define _DDI_DP_COMP_CTL_A 0x605F0 3650 #define _DDI_DP_COMP_CTL_B 0x615F0 3651 #define DDI_DP_COMP_CTL(pipe) _MMIO_PIPE(pipe, _DDI_DP_COMP_CTL_A, _DDI_DP_COMP_CTL_B) 3652 #define DDI_DP_COMP_CTL_ENABLE (1 << 31) 3653 #define DDI_DP_COMP_CTL_D10_2 (0 << 28) 3654 #define DDI_DP_COMP_CTL_SCRAMBLED_0 (1 << 28) 3655 #define DDI_DP_COMP_CTL_PRBS7 (2 << 28) 3656 #define DDI_DP_COMP_CTL_CUSTOM80 (3 << 28) 3657 #define DDI_DP_COMP_CTL_HBR2 (4 << 28) 3658 #define DDI_DP_COMP_CTL_SCRAMBLED_1 (5 << 28) 3659 #define DDI_DP_COMP_CTL_HBR2_RESET (0xFC << 0) 3660 3661 /* DDI DP Compliance Pattern */ 3662 #define _DDI_DP_COMP_PAT_A 0x605F4 3663 #define _DDI_DP_COMP_PAT_B 0x615F4 3664 #define DDI_DP_COMP_PAT(pipe, i) _MMIO(_PIPE(pipe, _DDI_DP_COMP_PAT_A, _DDI_DP_COMP_PAT_B) + (i) * 4) 3665 3666 /* Sideband Interface (SBI) is programmed indirectly, via 3667 * SBI_ADDR, which contains the register offset; and SBI_DATA, 3668 * which contains the payload */ 3669 #define SBI_ADDR _MMIO(0xC6000) 3670 #define SBI_DATA _MMIO(0xC6004) 3671 #define SBI_CTL_STAT _MMIO(0xC6008) 3672 #define SBI_CTL_DEST_ICLK (0x0 << 16) 3673 #define SBI_CTL_DEST_MPHY (0x1 << 16) 3674 #define SBI_CTL_OP_IORD (0x2 << 8) 3675 #define SBI_CTL_OP_IOWR (0x3 << 8) 3676 #define SBI_CTL_OP_CRRD (0x6 << 8) 3677 #define SBI_CTL_OP_CRWR (0x7 << 8) 3678 #define SBI_RESPONSE_FAIL (0x1 << 1) 3679 #define SBI_RESPONSE_SUCCESS (0x0 << 1) 3680 #define SBI_BUSY (0x1 << 0) 3681 #define SBI_READY (0x0 << 0) 3682 3683 /* SBI offsets */ 3684 #define SBI_SSCDIVINTPHASE 0x0200 3685 #define SBI_SSCDIVINTPHASE6 0x0600 3686 #define SBI_SSCDIVINTPHASE_DIVSEL_SHIFT 1 3687 #define SBI_SSCDIVINTPHASE_DIVSEL_MASK (0x7f << 1) 3688 #define SBI_SSCDIVINTPHASE_DIVSEL(x) ((x) << 1) 3689 #define SBI_SSCDIVINTPHASE_INCVAL_SHIFT 8 3690 #define SBI_SSCDIVINTPHASE_INCVAL_MASK (0x7f << 8) 3691 #define SBI_SSCDIVINTPHASE_INCVAL(x) ((x) << 8) 3692 #define SBI_SSCDIVINTPHASE_DIR(x) ((x) << 15) 3693 #define SBI_SSCDIVINTPHASE_PROPAGATE (1 << 0) 3694 #define SBI_SSCDITHPHASE 0x0204 3695 #define SBI_SSCCTL 0x020c 3696 #define SBI_SSCCTL6 0x060C 3697 #define SBI_SSCCTL_PATHALT (1 << 3) 3698 #define SBI_SSCCTL_DISABLE (1 << 0) 3699 #define SBI_SSCAUXDIV6 0x0610 3700 #define SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT 4 3701 #define SBI_SSCAUXDIV_FINALDIV2SEL_MASK (1 << 4) 3702 #define SBI_SSCAUXDIV_FINALDIV2SEL(x) ((x) << 4) 3703 #define SBI_DBUFF0 0x2a00 3704 #define SBI_GEN0 0x1f00 3705 #define SBI_GEN0_CFG_BUFFENABLE_DISABLE (1 << 0) 3706 3707 /* LPT PIXCLK_GATE */ 3708 #define PIXCLK_GATE _MMIO(0xC6020) 3709 #define PIXCLK_GATE_UNGATE (1 << 0) 3710 #define PIXCLK_GATE_GATE (0 << 0) 3711 3712 /* SPLL */ 3713 #define SPLL_CTL _MMIO(0x46020) 3714 #define SPLL_PLL_ENABLE (1 << 31) 3715 #define SPLL_REF_BCLK (0 << 28) 3716 #define SPLL_REF_MUXED_SSC (1 << 28) /* CPU SSC if fused enabled, PCH SSC otherwise */ 3717 #define SPLL_REF_NON_SSC_HSW (2 << 28) 3718 #define SPLL_REF_PCH_SSC_BDW (2 << 28) 3719 #define SPLL_REF_LCPLL (3 << 28) 3720 #define SPLL_REF_MASK (3 << 28) 3721 #define SPLL_FREQ_810MHz (0 << 26) 3722 #define SPLL_FREQ_1350MHz (1 << 26) 3723 #define SPLL_FREQ_2700MHz (2 << 26) 3724 #define SPLL_FREQ_MASK (3 << 26) 3725 3726 /* WRPLL */ 3727 #define _WRPLL_CTL1 0x46040 3728 #define _WRPLL_CTL2 0x46060 3729 #define WRPLL_CTL(pll) _MMIO_PIPE(pll, _WRPLL_CTL1, _WRPLL_CTL2) 3730 #define WRPLL_PLL_ENABLE (1 << 31) 3731 #define WRPLL_REF_BCLK (0 << 28) 3732 #define WRPLL_REF_PCH_SSC (1 << 28) 3733 #define WRPLL_REF_MUXED_SSC_BDW (2 << 28) /* CPU SSC if fused enabled, PCH SSC otherwise */ 3734 #define WRPLL_REF_SPECIAL_HSW (2 << 28) /* muxed SSC (ULT), non-SSC (non-ULT) */ 3735 #define WRPLL_REF_LCPLL (3 << 28) 3736 #define WRPLL_REF_MASK (3 << 28) 3737 /* WRPLL divider programming */ 3738 #define WRPLL_DIVIDER_REFERENCE(x) ((x) << 0) 3739 #define WRPLL_DIVIDER_REF_MASK (0xff) 3740 #define WRPLL_DIVIDER_POST(x) ((x) << 8) 3741 #define WRPLL_DIVIDER_POST_MASK (0x3f << 8) 3742 #define WRPLL_DIVIDER_POST_SHIFT 8 3743 #define WRPLL_DIVIDER_FEEDBACK(x) ((x) << 16) 3744 #define WRPLL_DIVIDER_FB_SHIFT 16 3745 #define WRPLL_DIVIDER_FB_MASK (0xff << 16) 3746 3747 /* Port clock selection */ 3748 #define _PORT_CLK_SEL_A 0x46100 3749 #define _PORT_CLK_SEL_B 0x46104 3750 #define PORT_CLK_SEL(port) _MMIO_PORT(port, _PORT_CLK_SEL_A, _PORT_CLK_SEL_B) 3751 #define PORT_CLK_SEL_MASK REG_GENMASK(31, 29) 3752 #define PORT_CLK_SEL_LCPLL_2700 REG_FIELD_PREP(PORT_CLK_SEL_MASK, 0) 3753 #define PORT_CLK_SEL_LCPLL_1350 REG_FIELD_PREP(PORT_CLK_SEL_MASK, 1) 3754 #define PORT_CLK_SEL_LCPLL_810 REG_FIELD_PREP(PORT_CLK_SEL_MASK, 2) 3755 #define PORT_CLK_SEL_SPLL REG_FIELD_PREP(PORT_CLK_SEL_MASK, 3) 3756 #define PORT_CLK_SEL_WRPLL(pll) REG_FIELD_PREP(PORT_CLK_SEL_MASK, 4 + (pll)) 3757 #define PORT_CLK_SEL_WRPLL1 REG_FIELD_PREP(PORT_CLK_SEL_MASK, 4) 3758 #define PORT_CLK_SEL_WRPLL2 REG_FIELD_PREP(PORT_CLK_SEL_MASK, 5) 3759 #define PORT_CLK_SEL_NONE REG_FIELD_PREP(PORT_CLK_SEL_MASK, 7) 3760 3761 /* On ICL+ this is the same as PORT_CLK_SEL, but all bits change. */ 3762 #define DDI_CLK_SEL(port) PORT_CLK_SEL(port) 3763 #define DDI_CLK_SEL_MASK REG_GENMASK(31, 28) 3764 #define DDI_CLK_SEL_NONE REG_FIELD_PREP(DDI_CLK_SEL_MASK, 0x0) 3765 #define DDI_CLK_SEL_MG REG_FIELD_PREP(DDI_CLK_SEL_MASK, 0x8) 3766 #define DDI_CLK_SEL_TBT_162 REG_FIELD_PREP(DDI_CLK_SEL_MASK, 0xC) 3767 #define DDI_CLK_SEL_TBT_270 REG_FIELD_PREP(DDI_CLK_SEL_MASK, 0xD) 3768 #define DDI_CLK_SEL_TBT_540 REG_FIELD_PREP(DDI_CLK_SEL_MASK, 0xE) 3769 #define DDI_CLK_SEL_TBT_810 REG_FIELD_PREP(DDI_CLK_SEL_MASK, 0xF) 3770 3771 /* Transcoder clock selection */ 3772 #define _TRANS_CLK_SEL_A 0x46140 3773 #define _TRANS_CLK_SEL_B 0x46144 3774 #define TRANS_CLK_SEL(tran) _MMIO_TRANS(tran, _TRANS_CLK_SEL_A, _TRANS_CLK_SEL_B) 3775 /* For each transcoder, we need to select the corresponding port clock */ 3776 #define TRANS_CLK_SEL_DISABLED (0x0 << 29) 3777 #define TRANS_CLK_SEL_PORT(x) (((x) + 1) << 29) 3778 #define TGL_TRANS_CLK_SEL_DISABLED (0x0 << 28) 3779 #define TGL_TRANS_CLK_SEL_PORT(x) (((x) + 1) << 28) 3780 3781 3782 #define CDCLK_FREQ _MMIO(0x46200) 3783 3784 #define _TRANSA_MSA_MISC 0x60410 3785 #define _TRANSB_MSA_MISC 0x61410 3786 #define _TRANSC_MSA_MISC 0x62410 3787 #define _TRANS_EDP_MSA_MISC 0x6f410 3788 #define TRANS_MSA_MISC(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _TRANSA_MSA_MISC) 3789 /* See DP_MSA_MISC_* for the bit definitions */ 3790 3791 #define _TRANS_A_SET_CONTEXT_LATENCY 0x6007C 3792 #define _TRANS_B_SET_CONTEXT_LATENCY 0x6107C 3793 #define _TRANS_C_SET_CONTEXT_LATENCY 0x6207C 3794 #define _TRANS_D_SET_CONTEXT_LATENCY 0x6307C 3795 #define TRANS_SET_CONTEXT_LATENCY(dev_priv, tran) _MMIO_TRANS2(dev_priv, tran, _TRANS_A_SET_CONTEXT_LATENCY) 3796 #define TRANS_SET_CONTEXT_LATENCY_MASK REG_GENMASK(15, 0) 3797 #define TRANS_SET_CONTEXT_LATENCY_VALUE(x) REG_FIELD_PREP(TRANS_SET_CONTEXT_LATENCY_MASK, (x)) 3798 3799 /* LCPLL Control */ 3800 #define LCPLL_CTL _MMIO(0x130040) 3801 #define LCPLL_PLL_DISABLE (1 << 31) 3802 #define LCPLL_PLL_LOCK (1 << 30) 3803 #define LCPLL_REF_NON_SSC (0 << 28) 3804 #define LCPLL_REF_BCLK (2 << 28) 3805 #define LCPLL_REF_PCH_SSC (3 << 28) 3806 #define LCPLL_REF_MASK (3 << 28) 3807 #define LCPLL_CLK_FREQ_MASK (3 << 26) 3808 #define LCPLL_CLK_FREQ_450 (0 << 26) 3809 #define LCPLL_CLK_FREQ_54O_BDW (1 << 26) 3810 #define LCPLL_CLK_FREQ_337_5_BDW (2 << 26) 3811 #define LCPLL_CLK_FREQ_675_BDW (3 << 26) 3812 #define LCPLL_CD_CLOCK_DISABLE (1 << 25) 3813 #define LCPLL_ROOT_CD_CLOCK_DISABLE (1 << 24) 3814 #define LCPLL_CD2X_CLOCK_DISABLE (1 << 23) 3815 #define LCPLL_POWER_DOWN_ALLOW (1 << 22) 3816 #define LCPLL_CD_SOURCE_FCLK (1 << 21) 3817 #define LCPLL_CD_SOURCE_FCLK_DONE (1 << 19) 3818 3819 /* 3820 * SKL Clocks 3821 */ 3822 3823 /* CDCLK_CTL */ 3824 #define CDCLK_CTL _MMIO(0x46000) 3825 #define CDCLK_FREQ_SEL_MASK REG_GENMASK(27, 26) 3826 #define CDCLK_FREQ_450_432 REG_FIELD_PREP(CDCLK_FREQ_SEL_MASK, 0) 3827 #define CDCLK_FREQ_540 REG_FIELD_PREP(CDCLK_FREQ_SEL_MASK, 1) 3828 #define CDCLK_FREQ_337_308 REG_FIELD_PREP(CDCLK_FREQ_SEL_MASK, 2) 3829 #define CDCLK_FREQ_675_617 REG_FIELD_PREP(CDCLK_FREQ_SEL_MASK, 3) 3830 #define MDCLK_SOURCE_SEL_MASK REG_GENMASK(25, 25) 3831 #define MDCLK_SOURCE_SEL_CD2XCLK REG_FIELD_PREP(MDCLK_SOURCE_SEL_MASK, 0) 3832 #define MDCLK_SOURCE_SEL_CDCLK_PLL REG_FIELD_PREP(MDCLK_SOURCE_SEL_MASK, 1) 3833 #define BXT_CDCLK_CD2X_DIV_SEL_MASK REG_GENMASK(23, 22) 3834 #define BXT_CDCLK_CD2X_DIV_SEL_1 REG_FIELD_PREP(BXT_CDCLK_CD2X_DIV_SEL_MASK, 0) 3835 #define BXT_CDCLK_CD2X_DIV_SEL_1_5 REG_FIELD_PREP(BXT_CDCLK_CD2X_DIV_SEL_MASK, 1) 3836 #define BXT_CDCLK_CD2X_DIV_SEL_2 REG_FIELD_PREP(BXT_CDCLK_CD2X_DIV_SEL_MASK, 2) 3837 #define BXT_CDCLK_CD2X_DIV_SEL_4 REG_FIELD_PREP(BXT_CDCLK_CD2X_DIV_SEL_MASK, 3) 3838 #define BXT_CDCLK_CD2X_PIPE(pipe) ((pipe) << 20) 3839 #define CDCLK_DIVMUX_CD_OVERRIDE (1 << 19) 3840 #define BXT_CDCLK_CD2X_PIPE_NONE BXT_CDCLK_CD2X_PIPE(3) 3841 #define ICL_CDCLK_CD2X_PIPE(pipe) (_PICK(pipe, 0, 2, 6) << 19) 3842 #define ICL_CDCLK_CD2X_PIPE_NONE (7 << 19) 3843 #define TGL_CDCLK_CD2X_PIPE(pipe) BXT_CDCLK_CD2X_PIPE(pipe) 3844 #define TGL_CDCLK_CD2X_PIPE_NONE ICL_CDCLK_CD2X_PIPE_NONE 3845 #define BXT_CDCLK_SSA_PRECHARGE_ENABLE (1 << 16) 3846 #define CDCLK_FREQ_DECIMAL_MASK (0x7ff) 3847 3848 /* CDCLK_SQUASH_CTL */ 3849 #define CDCLK_SQUASH_CTL _MMIO(0x46008) 3850 #define CDCLK_SQUASH_ENABLE REG_BIT(31) 3851 #define CDCLK_SQUASH_WINDOW_SIZE_MASK REG_GENMASK(27, 24) 3852 #define CDCLK_SQUASH_WINDOW_SIZE(x) REG_FIELD_PREP(CDCLK_SQUASH_WINDOW_SIZE_MASK, (x)) 3853 #define CDCLK_SQUASH_WAVEFORM_MASK REG_GENMASK(15, 0) 3854 #define CDCLK_SQUASH_WAVEFORM(x) REG_FIELD_PREP(CDCLK_SQUASH_WAVEFORM_MASK, (x)) 3855 3856 /* LCPLL_CTL */ 3857 #define LCPLL1_CTL _MMIO(0x46010) 3858 #define LCPLL2_CTL _MMIO(0x46014) 3859 #define LCPLL_PLL_ENABLE (1 << 31) 3860 3861 /* DPLL control1 */ 3862 #define DPLL_CTRL1 _MMIO(0x6C058) 3863 #define DPLL_CTRL1_HDMI_MODE(id) (1 << ((id) * 6 + 5)) 3864 #define DPLL_CTRL1_SSC(id) (1 << ((id) * 6 + 4)) 3865 #define DPLL_CTRL1_LINK_RATE_MASK(id) (7 << ((id) * 6 + 1)) 3866 #define DPLL_CTRL1_LINK_RATE_SHIFT(id) ((id) * 6 + 1) 3867 #define DPLL_CTRL1_LINK_RATE(linkrate, id) ((linkrate) << ((id) * 6 + 1)) 3868 #define DPLL_CTRL1_OVERRIDE(id) (1 << ((id) * 6)) 3869 #define DPLL_CTRL1_LINK_RATE_2700 0 3870 #define DPLL_CTRL1_LINK_RATE_1350 1 3871 #define DPLL_CTRL1_LINK_RATE_810 2 3872 #define DPLL_CTRL1_LINK_RATE_1620 3 3873 #define DPLL_CTRL1_LINK_RATE_1080 4 3874 #define DPLL_CTRL1_LINK_RATE_2160 5 3875 3876 /* DPLL control2 */ 3877 #define DPLL_CTRL2 _MMIO(0x6C05C) 3878 #define DPLL_CTRL2_DDI_CLK_OFF(port) (1 << ((port) + 15)) 3879 #define DPLL_CTRL2_DDI_CLK_SEL_MASK(port) (3 << ((port) * 3 + 1)) 3880 #define DPLL_CTRL2_DDI_CLK_SEL_SHIFT(port) ((port) * 3 + 1) 3881 #define DPLL_CTRL2_DDI_CLK_SEL(clk, port) ((clk) << ((port) * 3 + 1)) 3882 #define DPLL_CTRL2_DDI_SEL_OVERRIDE(port) (1 << ((port) * 3)) 3883 3884 /* DPLL Status */ 3885 #define DPLL_STATUS _MMIO(0x6C060) 3886 #define DPLL_LOCK(id) (1 << ((id) * 8)) 3887 3888 /* DPLL cfg */ 3889 #define _DPLL1_CFGCR1 0x6C040 3890 #define _DPLL2_CFGCR1 0x6C048 3891 #define _DPLL3_CFGCR1 0x6C050 3892 #define DPLL_CFGCR1(id) _MMIO_PIPE((id) - SKL_DPLL1, _DPLL1_CFGCR1, _DPLL2_CFGCR1) 3893 #define DPLL_CFGCR1_FREQ_ENABLE (1 << 31) 3894 #define DPLL_CFGCR1_DCO_FRACTION_MASK (0x7fff << 9) 3895 #define DPLL_CFGCR1_DCO_FRACTION(x) ((x) << 9) 3896 #define DPLL_CFGCR1_DCO_INTEGER_MASK (0x1ff) 3897 3898 #define _DPLL1_CFGCR2 0x6C044 3899 #define _DPLL2_CFGCR2 0x6C04C 3900 #define _DPLL3_CFGCR2 0x6C054 3901 #define DPLL_CFGCR2(id) _MMIO_PIPE((id) - SKL_DPLL1, _DPLL1_CFGCR2, _DPLL2_CFGCR2) 3902 #define DPLL_CFGCR2_QDIV_RATIO_MASK (0xff << 8) 3903 #define DPLL_CFGCR2_QDIV_RATIO(x) ((x) << 8) 3904 #define DPLL_CFGCR2_QDIV_MODE(x) ((x) << 7) 3905 #define DPLL_CFGCR2_KDIV_MASK (3 << 5) 3906 #define DPLL_CFGCR2_KDIV(x) ((x) << 5) 3907 #define DPLL_CFGCR2_KDIV_5 (0 << 5) 3908 #define DPLL_CFGCR2_KDIV_2 (1 << 5) 3909 #define DPLL_CFGCR2_KDIV_3 (2 << 5) 3910 #define DPLL_CFGCR2_KDIV_1 (3 << 5) 3911 #define DPLL_CFGCR2_PDIV_MASK (7 << 2) 3912 #define DPLL_CFGCR2_PDIV(x) ((x) << 2) 3913 #define DPLL_CFGCR2_PDIV_1 (0 << 2) 3914 #define DPLL_CFGCR2_PDIV_2 (1 << 2) 3915 #define DPLL_CFGCR2_PDIV_3 (2 << 2) 3916 #define DPLL_CFGCR2_PDIV_7 (4 << 2) 3917 #define DPLL_CFGCR2_PDIV_7_INVALID (5 << 2) 3918 #define DPLL_CFGCR2_CENTRAL_FREQ_MASK (3) 3919 3920 /* ICL Clocks */ 3921 #define ICL_DPCLKA_CFGCR0 _MMIO(0x164280) 3922 #define ICL_DPCLKA_CFGCR0_DDI_CLK_OFF(phy) (1 << _PICK(phy, 10, 11, 24, 4, 5)) 3923 #define RKL_DPCLKA_CFGCR0_DDI_CLK_OFF(phy) REG_BIT((phy) + 10) 3924 #define ICL_DPCLKA_CFGCR0_TC_CLK_OFF(tc_port) (1 << ((tc_port) < TC_PORT_4 ? \ 3925 (tc_port) + 12 : \ 3926 (tc_port) - TC_PORT_4 + 21)) 3927 #define ICL_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy) ((phy) * 2) 3928 #define ICL_DPCLKA_CFGCR0_DDI_CLK_SEL_MASK(phy) (3 << ICL_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy)) 3929 #define ICL_DPCLKA_CFGCR0_DDI_CLK_SEL(pll, phy) ((pll) << ICL_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy)) 3930 #define RKL_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy) _PICK(phy, 0, 2, 4, 27) 3931 #define RKL_DPCLKA_CFGCR0_DDI_CLK_SEL_MASK(phy) \ 3932 (3 << RKL_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy)) 3933 #define RKL_DPCLKA_CFGCR0_DDI_CLK_SEL(pll, phy) \ 3934 ((pll) << RKL_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy)) 3935 3936 /* 3937 * DG1 Clocks 3938 * First registers controls the first A and B, while the second register 3939 * controls the phy C and D. The bits on these registers are the 3940 * same, but refer to different phys 3941 */ 3942 #define _DG1_DPCLKA_CFGCR0 0x164280 3943 #define _DG1_DPCLKA1_CFGCR0 0x16C280 3944 #define _DG1_DPCLKA_PHY_IDX(phy) ((phy) % 2) 3945 #define _DG1_DPCLKA_PLL_IDX(pll) ((pll) % 2) 3946 #define DG1_DPCLKA_CFGCR0(phy) _MMIO_PHY((phy) / 2, \ 3947 _DG1_DPCLKA_CFGCR0, \ 3948 _DG1_DPCLKA1_CFGCR0) 3949 #define DG1_DPCLKA_CFGCR0_DDI_CLK_OFF(phy) REG_BIT(_DG1_DPCLKA_PHY_IDX(phy) + 10) 3950 #define DG1_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy) (_DG1_DPCLKA_PHY_IDX(phy) * 2) 3951 #define DG1_DPCLKA_CFGCR0_DDI_CLK_SEL(pll, phy) (_DG1_DPCLKA_PLL_IDX(pll) << DG1_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy)) 3952 #define DG1_DPCLKA_CFGCR0_DDI_CLK_SEL_MASK(phy) (0x3 << DG1_DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(phy)) 3953 3954 /* ADLS Clocks */ 3955 #define _ADLS_DPCLKA_CFGCR0 0x164280 3956 #define _ADLS_DPCLKA_CFGCR1 0x1642BC 3957 #define ADLS_DPCLKA_CFGCR(phy) _MMIO_PHY((phy) / 3, \ 3958 _ADLS_DPCLKA_CFGCR0, \ 3959 _ADLS_DPCLKA_CFGCR1) 3960 #define ADLS_DPCLKA_CFGCR_DDI_SHIFT(phy) (((phy) % 3) * 2) 3961 /* ADLS DPCLKA_CFGCR0 DDI mask */ 3962 #define ADLS_DPCLKA_DDII_SEL_MASK REG_GENMASK(5, 4) 3963 #define ADLS_DPCLKA_DDIB_SEL_MASK REG_GENMASK(3, 2) 3964 #define ADLS_DPCLKA_DDIA_SEL_MASK REG_GENMASK(1, 0) 3965 /* ADLS DPCLKA_CFGCR1 DDI mask */ 3966 #define ADLS_DPCLKA_DDIK_SEL_MASK REG_GENMASK(3, 2) 3967 #define ADLS_DPCLKA_DDIJ_SEL_MASK REG_GENMASK(1, 0) 3968 #define ADLS_DPCLKA_CFGCR_DDI_CLK_SEL_MASK(phy) _PICK((phy), \ 3969 ADLS_DPCLKA_DDIA_SEL_MASK, \ 3970 ADLS_DPCLKA_DDIB_SEL_MASK, \ 3971 ADLS_DPCLKA_DDII_SEL_MASK, \ 3972 ADLS_DPCLKA_DDIJ_SEL_MASK, \ 3973 ADLS_DPCLKA_DDIK_SEL_MASK) 3974 3975 /* ICL PLL */ 3976 #define _DPLL0_ENABLE 0x46010 3977 #define _DPLL1_ENABLE 0x46014 3978 #define _ADLS_DPLL2_ENABLE 0x46018 3979 #define _ADLS_DPLL3_ENABLE 0x46030 3980 #define PLL_ENABLE REG_BIT(31) 3981 #define PLL_LOCK REG_BIT(30) 3982 #define PLL_POWER_ENABLE REG_BIT(27) 3983 #define PLL_POWER_STATE REG_BIT(26) 3984 #define ICL_DPLL_ENABLE(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 3, \ 3985 _DPLL0_ENABLE, _DPLL1_ENABLE, \ 3986 _ADLS_DPLL3_ENABLE, _ADLS_DPLL3_ENABLE)) 3987 3988 #define _DG2_PLL3_ENABLE 0x4601C 3989 3990 #define DG2_PLL_ENABLE(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 3, \ 3991 _DPLL0_ENABLE, _DPLL1_ENABLE, \ 3992 _DG2_PLL3_ENABLE, _DG2_PLL3_ENABLE)) 3993 3994 #define TBT_PLL_ENABLE _MMIO(0x46020) 3995 3996 #define _MG_PLL1_ENABLE 0x46030 3997 #define _MG_PLL2_ENABLE 0x46034 3998 #define _MG_PLL3_ENABLE 0x46038 3999 #define _MG_PLL4_ENABLE 0x4603C 4000 /* Bits are the same as _DPLL0_ENABLE */ 4001 #define MG_PLL_ENABLE(tc_port) _MMIO_PORT((tc_port), _MG_PLL1_ENABLE, \ 4002 _MG_PLL2_ENABLE) 4003 4004 /* DG1 PLL */ 4005 #define DG1_DPLL_ENABLE(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 2, \ 4006 _DPLL0_ENABLE, _DPLL1_ENABLE, \ 4007 _MG_PLL1_ENABLE, _MG_PLL2_ENABLE)) 4008 4009 /* ADL-P Type C PLL */ 4010 #define PORTTC1_PLL_ENABLE 0x46038 4011 #define PORTTC2_PLL_ENABLE 0x46040 4012 #define ADLP_PORTTC_PLL_ENABLE(tc_port) _MMIO_PORT((tc_port), \ 4013 PORTTC1_PLL_ENABLE, \ 4014 PORTTC2_PLL_ENABLE) 4015 4016 #define _ICL_DPLL0_CFGCR0 0x164000 4017 #define _ICL_DPLL1_CFGCR0 0x164080 4018 #define ICL_DPLL_CFGCR0(pll) _MMIO_PLL(pll, _ICL_DPLL0_CFGCR0, \ 4019 _ICL_DPLL1_CFGCR0) 4020 #define DPLL_CFGCR0_HDMI_MODE (1 << 30) 4021 #define DPLL_CFGCR0_SSC_ENABLE (1 << 29) 4022 #define DPLL_CFGCR0_SSC_ENABLE_ICL (1 << 25) 4023 #define DPLL_CFGCR0_LINK_RATE_MASK (0xf << 25) 4024 #define DPLL_CFGCR0_LINK_RATE_2700 (0 << 25) 4025 #define DPLL_CFGCR0_LINK_RATE_1350 (1 << 25) 4026 #define DPLL_CFGCR0_LINK_RATE_810 (2 << 25) 4027 #define DPLL_CFGCR0_LINK_RATE_1620 (3 << 25) 4028 #define DPLL_CFGCR0_LINK_RATE_1080 (4 << 25) 4029 #define DPLL_CFGCR0_LINK_RATE_2160 (5 << 25) 4030 #define DPLL_CFGCR0_LINK_RATE_3240 (6 << 25) 4031 #define DPLL_CFGCR0_LINK_RATE_4050 (7 << 25) 4032 #define DPLL_CFGCR0_DCO_FRACTION_MASK (0x7fff << 10) 4033 #define DPLL_CFGCR0_DCO_FRACTION_SHIFT (10) 4034 #define DPLL_CFGCR0_DCO_FRACTION(x) ((x) << 10) 4035 #define DPLL_CFGCR0_DCO_INTEGER_MASK (0x3ff) 4036 4037 #define _ICL_DPLL0_CFGCR1 0x164004 4038 #define _ICL_DPLL1_CFGCR1 0x164084 4039 #define ICL_DPLL_CFGCR1(pll) _MMIO_PLL(pll, _ICL_DPLL0_CFGCR1, \ 4040 _ICL_DPLL1_CFGCR1) 4041 #define DPLL_CFGCR1_QDIV_RATIO_MASK (0xff << 10) 4042 #define DPLL_CFGCR1_QDIV_RATIO_SHIFT (10) 4043 #define DPLL_CFGCR1_QDIV_RATIO(x) ((x) << 10) 4044 #define DPLL_CFGCR1_QDIV_MODE_SHIFT (9) 4045 #define DPLL_CFGCR1_QDIV_MODE(x) ((x) << 9) 4046 #define DPLL_CFGCR1_KDIV_MASK (7 << 6) 4047 #define DPLL_CFGCR1_KDIV_SHIFT (6) 4048 #define DPLL_CFGCR1_KDIV(x) ((x) << 6) 4049 #define DPLL_CFGCR1_KDIV_1 (1 << 6) 4050 #define DPLL_CFGCR1_KDIV_2 (2 << 6) 4051 #define DPLL_CFGCR1_KDIV_3 (4 << 6) 4052 #define DPLL_CFGCR1_PDIV_MASK (0xf << 2) 4053 #define DPLL_CFGCR1_PDIV_SHIFT (2) 4054 #define DPLL_CFGCR1_PDIV(x) ((x) << 2) 4055 #define DPLL_CFGCR1_PDIV_2 (1 << 2) 4056 #define DPLL_CFGCR1_PDIV_3 (2 << 2) 4057 #define DPLL_CFGCR1_PDIV_5 (4 << 2) 4058 #define DPLL_CFGCR1_PDIV_7 (8 << 2) 4059 #define DPLL_CFGCR1_CENTRAL_FREQ (3 << 0) 4060 #define DPLL_CFGCR1_CENTRAL_FREQ_8400 (3 << 0) 4061 #define TGL_DPLL_CFGCR1_CFSELOVRD_NORMAL_XTAL (0 << 0) 4062 4063 #define _TGL_DPLL0_CFGCR0 0x164284 4064 #define _TGL_DPLL1_CFGCR0 0x16428C 4065 #define _TGL_TBTPLL_CFGCR0 0x16429C 4066 #define TGL_DPLL_CFGCR0(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 2, \ 4067 _TGL_DPLL0_CFGCR0, _TGL_DPLL1_CFGCR0, \ 4068 _TGL_TBTPLL_CFGCR0, _TGL_TBTPLL_CFGCR0)) 4069 #define RKL_DPLL_CFGCR0(pll) _MMIO_PLL(pll, _TGL_DPLL0_CFGCR0, \ 4070 _TGL_DPLL1_CFGCR0) 4071 4072 #define _TGL_DPLL0_DIV0 0x164B00 4073 #define _TGL_DPLL1_DIV0 0x164C00 4074 #define TGL_DPLL0_DIV0(pll) _MMIO_PLL(pll, _TGL_DPLL0_DIV0, _TGL_DPLL1_DIV0) 4075 #define TGL_DPLL0_DIV0_AFC_STARTUP_MASK REG_GENMASK(27, 25) 4076 #define TGL_DPLL0_DIV0_AFC_STARTUP(val) REG_FIELD_PREP(TGL_DPLL0_DIV0_AFC_STARTUP_MASK, (val)) 4077 4078 #define _TGL_DPLL0_CFGCR1 0x164288 4079 #define _TGL_DPLL1_CFGCR1 0x164290 4080 #define _TGL_TBTPLL_CFGCR1 0x1642A0 4081 #define TGL_DPLL_CFGCR1(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 2, \ 4082 _TGL_DPLL0_CFGCR1, _TGL_DPLL1_CFGCR1, \ 4083 _TGL_TBTPLL_CFGCR1, _TGL_TBTPLL_CFGCR1)) 4084 #define RKL_DPLL_CFGCR1(pll) _MMIO_PLL(pll, _TGL_DPLL0_CFGCR1, \ 4085 _TGL_DPLL1_CFGCR1) 4086 4087 #define _DG1_DPLL2_CFGCR0 0x16C284 4088 #define _DG1_DPLL3_CFGCR0 0x16C28C 4089 #define DG1_DPLL_CFGCR0(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 2, \ 4090 _TGL_DPLL0_CFGCR0, _TGL_DPLL1_CFGCR0, \ 4091 _DG1_DPLL2_CFGCR0, _DG1_DPLL3_CFGCR0)) 4092 4093 #define _DG1_DPLL2_CFGCR1 0x16C288 4094 #define _DG1_DPLL3_CFGCR1 0x16C290 4095 #define DG1_DPLL_CFGCR1(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 2, \ 4096 _TGL_DPLL0_CFGCR1, _TGL_DPLL1_CFGCR1, \ 4097 _DG1_DPLL2_CFGCR1, _DG1_DPLL3_CFGCR1)) 4098 4099 /* For ADL-S DPLL4_CFGCR0/1 are used to control DPLL2 */ 4100 #define _ADLS_DPLL4_CFGCR0 0x164294 4101 #define _ADLS_DPLL3_CFGCR0 0x1642C0 4102 #define ADLS_DPLL_CFGCR0(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 2, \ 4103 _TGL_DPLL0_CFGCR0, _TGL_DPLL1_CFGCR0, \ 4104 _ADLS_DPLL4_CFGCR0, _ADLS_DPLL3_CFGCR0)) 4105 4106 #define _ADLS_DPLL4_CFGCR1 0x164298 4107 #define _ADLS_DPLL3_CFGCR1 0x1642C4 4108 #define ADLS_DPLL_CFGCR1(pll) _MMIO(_PICK_EVEN_2RANGES(pll, 2, \ 4109 _TGL_DPLL0_CFGCR1, _TGL_DPLL1_CFGCR1, \ 4110 _ADLS_DPLL4_CFGCR1, _ADLS_DPLL3_CFGCR1)) 4111 4112 /* BXT display engine PLL */ 4113 #define BXT_DE_PLL_CTL _MMIO(0x6d000) 4114 #define BXT_DE_PLL_RATIO(x) (x) /* {60,65,100} * 19.2MHz */ 4115 #define BXT_DE_PLL_RATIO_MASK 0xff 4116 4117 #define BXT_DE_PLL_ENABLE _MMIO(0x46070) 4118 #define BXT_DE_PLL_PLL_ENABLE (1 << 31) 4119 #define BXT_DE_PLL_LOCK (1 << 30) 4120 #define BXT_DE_PLL_FREQ_REQ (1 << 23) 4121 #define BXT_DE_PLL_FREQ_REQ_ACK (1 << 22) 4122 #define ICL_CDCLK_PLL_RATIO(x) (x) 4123 #define ICL_CDCLK_PLL_RATIO_MASK 0xff 4124 4125 /* GEN9 DC */ 4126 #define DC_STATE_EN _MMIO(0x45504) 4127 #define DC_STATE_DISABLE 0 4128 #define DC_STATE_EN_DC3CO REG_BIT(30) 4129 #define DC_STATE_DC3CO_STATUS REG_BIT(29) 4130 #define HOLD_PHY_CLKREQ_PG1_LATCH REG_BIT(21) 4131 #define HOLD_PHY_PG1_LATCH REG_BIT(20) 4132 #define DC_STATE_EN_UPTO_DC5 (1 << 0) 4133 #define DC_STATE_EN_DC9 (1 << 3) 4134 #define DC_STATE_EN_UPTO_DC6 (2 << 0) 4135 #define DC_STATE_EN_UPTO_DC5_DC6_MASK 0x3 4136 4137 #define DC_STATE_DEBUG _MMIO(0x45520) 4138 #define DC_STATE_DEBUG_MASK_CORES (1 << 0) 4139 #define DC_STATE_DEBUG_MASK_MEMORY_UP (1 << 1) 4140 4141 #define D_COMP_BDW _MMIO(0x138144) 4142 4143 /* Pipe WM_LINETIME - watermark line time */ 4144 #define _WM_LINETIME_A 0x45270 4145 #define _WM_LINETIME_B 0x45274 4146 #define WM_LINETIME(pipe) _MMIO_PIPE(pipe, _WM_LINETIME_A, _WM_LINETIME_B) 4147 #define HSW_LINETIME_MASK REG_GENMASK(8, 0) 4148 #define HSW_LINETIME(x) REG_FIELD_PREP(HSW_LINETIME_MASK, (x)) 4149 #define HSW_IPS_LINETIME_MASK REG_GENMASK(24, 16) 4150 #define HSW_IPS_LINETIME(x) REG_FIELD_PREP(HSW_IPS_LINETIME_MASK, (x)) 4151 4152 /* SFUSE_STRAP */ 4153 #define SFUSE_STRAP _MMIO(0xc2014) 4154 #define SFUSE_STRAP_FUSE_LOCK (1 << 13) 4155 #define SFUSE_STRAP_RAW_FREQUENCY (1 << 8) 4156 #define SFUSE_STRAP_DISPLAY_DISABLED (1 << 7) 4157 #define SFUSE_STRAP_CRT_DISABLED (1 << 6) 4158 #define SFUSE_STRAP_DDIF_DETECTED (1 << 3) 4159 #define SFUSE_STRAP_DDIB_DETECTED (1 << 2) 4160 #define SFUSE_STRAP_DDIC_DETECTED (1 << 1) 4161 #define SFUSE_STRAP_DDID_DETECTED (1 << 0) 4162 4163 /* Gen4+ Timestamp and Pipe Frame time stamp registers */ 4164 #define GEN4_TIMESTAMP _MMIO(0x2358) 4165 #define ILK_TIMESTAMP_HI _MMIO(0x70070) 4166 #define IVB_TIMESTAMP_CTR _MMIO(0x44070) 4167 4168 #define GEN9_TIMESTAMP_OVERRIDE _MMIO(0x44074) 4169 #define GEN9_TIMESTAMP_OVERRIDE_US_COUNTER_DIVIDER_SHIFT 0 4170 #define GEN9_TIMESTAMP_OVERRIDE_US_COUNTER_DIVIDER_MASK 0x3ff 4171 #define GEN9_TIMESTAMP_OVERRIDE_US_COUNTER_DENOMINATOR_SHIFT 12 4172 #define GEN9_TIMESTAMP_OVERRIDE_US_COUNTER_DENOMINATOR_MASK (0xf << 12) 4173 4174 /* g4x+, except vlv/chv! */ 4175 #define _PIPE_FRMTMSTMP_A 0x70048 4176 #define _PIPE_FRMTMSTMP_B 0x71048 4177 #define PIPE_FRMTMSTMP(pipe) \ 4178 _MMIO_PIPE(pipe, _PIPE_FRMTMSTMP_A, _PIPE_FRMTMSTMP_B) 4179 4180 /* g4x+, except vlv/chv! */ 4181 #define _PIPE_FLIPTMSTMP_A 0x7004C 4182 #define _PIPE_FLIPTMSTMP_B 0x7104C 4183 #define PIPE_FLIPTMSTMP(pipe) \ 4184 _MMIO_PIPE(pipe, _PIPE_FLIPTMSTMP_A, _PIPE_FLIPTMSTMP_B) 4185 4186 /* tgl+ */ 4187 #define _PIPE_FLIPDONETMSTMP_A 0x70054 4188 #define _PIPE_FLIPDONETMSTMP_B 0x71054 4189 #define PIPE_FLIPDONETIMSTMP(pipe) \ 4190 _MMIO_PIPE(pipe, _PIPE_FLIPDONETMSTMP_A, _PIPE_FLIPDONETMSTMP_B) 4191 4192 #define _VLV_PIPE_MSA_MISC_A 0x70048 4193 #define VLV_PIPE_MSA_MISC(pipe) \ 4194 _MMIO_PIPE2(dev_priv, pipe, _VLV_PIPE_MSA_MISC_A) 4195 #define VLV_MSA_MISC1_HW_ENABLE REG_BIT(31) 4196 #define VLV_MSA_MISC1_SW_S3D_MASK REG_GENMASK(2, 0) /* MSA MISC1 3:1 */ 4197 4198 #define GGC _MMIO(0x108040) 4199 #define GMS_MASK REG_GENMASK(15, 8) 4200 #define GGMS_MASK REG_GENMASK(7, 6) 4201 4202 #define GEN6_GSMBASE _MMIO(0x108100) 4203 #define GEN6_DSMBASE _MMIO(0x1080C0) 4204 #define GEN6_BDSM_MASK REG_GENMASK64(31, 20) 4205 #define GEN11_BDSM_MASK REG_GENMASK64(63, 20) 4206 4207 #define XEHP_CLOCK_GATE_DIS _MMIO(0x101014) 4208 #define SGSI_SIDECLK_DIS REG_BIT(17) 4209 #define SGGI_DIS REG_BIT(15) 4210 #define SGR_DIS REG_BIT(13) 4211 4212 #define _ICL_PHY_MISC_A 0x64C00 4213 #define _ICL_PHY_MISC_B 0x64C04 4214 #define _DG2_PHY_MISC_TC1 0x64C14 /* TC1="PHY E" but offset as if "PHY F" */ 4215 #define ICL_PHY_MISC(port) _MMIO_PORT(port, _ICL_PHY_MISC_A, _ICL_PHY_MISC_B) 4216 #define DG2_PHY_MISC(port) ((port) == PHY_E ? _MMIO(_DG2_PHY_MISC_TC1) : \ 4217 ICL_PHY_MISC(port)) 4218 #define ICL_PHY_MISC_MUX_DDID (1 << 28) 4219 #define ICL_PHY_MISC_DE_IO_COMP_PWR_DOWN (1 << 23) 4220 #define DG2_PHY_DP_TX_ACK_MASK REG_GENMASK(23, 20) 4221 4222 #define PORT_TX_DFLEXDPSP(fia) _MMIO_FIA((fia), 0x008A0) 4223 #define MODULAR_FIA_MASK (1 << 4) 4224 #define TC_LIVE_STATE_TBT(idx) (1 << ((idx) * 8 + 6)) 4225 #define TC_LIVE_STATE_TC(idx) (1 << ((idx) * 8 + 5)) 4226 #define DP_LANE_ASSIGNMENT_SHIFT(idx) ((idx) * 8) 4227 #define DP_LANE_ASSIGNMENT_MASK(idx) (0xf << ((idx) * 8)) 4228 #define DP_LANE_ASSIGNMENT(idx, x) ((x) << ((idx) * 8)) 4229 4230 #define PORT_TX_DFLEXDPPMS(fia) _MMIO_FIA((fia), 0x00890) 4231 #define DP_PHY_MODE_STATUS_COMPLETED(idx) (1 << (idx)) 4232 4233 #define PORT_TX_DFLEXDPCSSS(fia) _MMIO_FIA((fia), 0x00894) 4234 #define DP_PHY_MODE_STATUS_NOT_SAFE(idx) (1 << (idx)) 4235 4236 #define PORT_TX_DFLEXPA1(fia) _MMIO_FIA((fia), 0x00880) 4237 #define DP_PIN_ASSIGNMENT_SHIFT(idx) ((idx) * 4) 4238 #define DP_PIN_ASSIGNMENT_MASK(idx) (0xf << ((idx) * 4)) 4239 #define DP_PIN_ASSIGNMENT(idx, x) ((x) << ((idx) * 4)) 4240 4241 #define _TCSS_DDI_STATUS_1 0x161500 4242 #define _TCSS_DDI_STATUS_2 0x161504 4243 #define TCSS_DDI_STATUS(tc) _MMIO(_PICK_EVEN(tc, \ 4244 _TCSS_DDI_STATUS_1, \ 4245 _TCSS_DDI_STATUS_2)) 4246 #define TCSS_DDI_STATUS_PIN_ASSIGNMENT_MASK REG_GENMASK(28, 25) 4247 #define TCSS_DDI_STATUS_READY REG_BIT(2) 4248 #define TCSS_DDI_STATUS_HPD_LIVE_STATUS_TBT REG_BIT(1) 4249 #define TCSS_DDI_STATUS_HPD_LIVE_STATUS_ALT REG_BIT(0) 4250 4251 #define PRIMARY_SPI_TRIGGER _MMIO(0x102040) 4252 #define PRIMARY_SPI_ADDRESS _MMIO(0x102080) 4253 #define PRIMARY_SPI_REGIONID _MMIO(0x102084) 4254 #define SPI_STATIC_REGIONS _MMIO(0x102090) 4255 #define OPTIONROM_SPI_REGIONID_MASK REG_GENMASK(7, 0) 4256 #define OROM_OFFSET _MMIO(0x1020c0) 4257 #define OROM_OFFSET_MASK REG_GENMASK(20, 16) 4258 4259 #define CLKREQ_POLICY _MMIO(0x101038) 4260 #define CLKREQ_POLICY_MEM_UP_OVRD REG_BIT(1) 4261 4262 #define CLKGATE_DIS_MISC _MMIO(0x46534) 4263 #define CLKGATE_DIS_MISC_DMASC_GATING_DIS REG_BIT(21) 4264 4265 #define _MTL_CLKGATE_DIS_TRANS_A 0x604E8 4266 #define _MTL_CLKGATE_DIS_TRANS_B 0x614E8 4267 #define MTL_CLKGATE_DIS_TRANS(dev_priv, trans) _MMIO_TRANS2(dev_priv, trans, _MTL_CLKGATE_DIS_TRANS_A) 4268 #define MTL_CLKGATE_DIS_TRANS_DMASC_GATING_DIS REG_BIT(7) 4269 4270 #define MTL_MEM_SS_INFO_GLOBAL _MMIO(0x45700) 4271 #define MTL_N_OF_ENABLED_QGV_POINTS_MASK REG_GENMASK(11, 8) 4272 #define MTL_N_OF_POPULATED_CH_MASK REG_GENMASK(7, 4) 4273 #define MTL_DDR_TYPE_MASK REG_GENMASK(3, 0) 4274 4275 #define MTL_MEM_SS_INFO_QGV_POINT_OFFSET 0x45710 4276 #define MTL_MEM_SS_INFO_QGV_POINT_LOW(point) _MMIO(MTL_MEM_SS_INFO_QGV_POINT_OFFSET + (point) * 8) 4277 #define MTL_TRCD_MASK REG_GENMASK(31, 24) 4278 #define MTL_TRP_MASK REG_GENMASK(23, 16) 4279 #define MTL_DCLK_MASK REG_GENMASK(15, 0) 4280 4281 #define MTL_MEM_SS_INFO_QGV_POINT_HIGH(point) _MMIO(MTL_MEM_SS_INFO_QGV_POINT_OFFSET + (point) * 8 + 4) 4282 #define MTL_TRAS_MASK REG_GENMASK(16, 8) 4283 #define MTL_TRDPRE_MASK REG_GENMASK(7, 0) 4284 4285 #define MTL_MEDIA_GSI_BASE 0x380000 4286 4287 #endif /* _I915_REG_H_ */ 4288