1 /* 2 * Copyright © 2012-2016 Intel Corporation 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice (including the next 12 * paragraph) shall be included in all copies or substantial portions of the 13 * Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21 * IN THE SOFTWARE. 22 * 23 */ 24 25 #ifndef _INTEL_DPLL_MGR_H_ 26 #define _INTEL_DPLL_MGR_H_ 27 28 #include <linux/types.h> 29 30 #include "intel_display_power.h" 31 #include "intel_wakeref.h" 32 33 #define for_each_shared_dpll(__display, __pll, __i) \ 34 for ((__i) = 0; (__i) < (__display)->dpll.num_shared_dpll && \ 35 ((__pll) = &(__display)->dpll.shared_dplls[(__i)]) ; (__i)++) 36 37 enum tc_port; 38 struct drm_printer; 39 struct intel_atomic_state; 40 struct intel_crtc; 41 struct intel_crtc_state; 42 struct intel_encoder; 43 struct intel_shared_dpll; 44 struct intel_shared_dpll_funcs; 45 46 /** 47 * enum intel_dpll_id - possible DPLL ids 48 * 49 * Enumeration of possible IDs for a DPLL. Real shared dpll ids must be >= 0. 50 */ 51 enum intel_dpll_id { 52 /** 53 * @DPLL_ID_PRIVATE: non-shared dpll in use 54 */ 55 DPLL_ID_PRIVATE = -1, 56 57 /** 58 * @DPLL_ID_PCH_PLL_A: DPLL A in ILK, SNB and IVB 59 */ 60 DPLL_ID_PCH_PLL_A = 0, 61 /** 62 * @DPLL_ID_PCH_PLL_B: DPLL B in ILK, SNB and IVB 63 */ 64 DPLL_ID_PCH_PLL_B = 1, 65 66 67 /** 68 * @DPLL_ID_WRPLL1: HSW and BDW WRPLL1 69 */ 70 DPLL_ID_WRPLL1 = 0, 71 /** 72 * @DPLL_ID_WRPLL2: HSW and BDW WRPLL2 73 */ 74 DPLL_ID_WRPLL2 = 1, 75 /** 76 * @DPLL_ID_SPLL: HSW and BDW SPLL 77 */ 78 DPLL_ID_SPLL = 2, 79 /** 80 * @DPLL_ID_LCPLL_810: HSW and BDW 0.81 GHz LCPLL 81 */ 82 DPLL_ID_LCPLL_810 = 3, 83 /** 84 * @DPLL_ID_LCPLL_1350: HSW and BDW 1.35 GHz LCPLL 85 */ 86 DPLL_ID_LCPLL_1350 = 4, 87 /** 88 * @DPLL_ID_LCPLL_2700: HSW and BDW 2.7 GHz LCPLL 89 */ 90 DPLL_ID_LCPLL_2700 = 5, 91 92 93 /** 94 * @DPLL_ID_SKL_DPLL0: SKL and later DPLL0 95 */ 96 DPLL_ID_SKL_DPLL0 = 0, 97 /** 98 * @DPLL_ID_SKL_DPLL1: SKL and later DPLL1 99 */ 100 DPLL_ID_SKL_DPLL1 = 1, 101 /** 102 * @DPLL_ID_SKL_DPLL2: SKL and later DPLL2 103 */ 104 DPLL_ID_SKL_DPLL2 = 2, 105 /** 106 * @DPLL_ID_SKL_DPLL3: SKL and later DPLL3 107 */ 108 DPLL_ID_SKL_DPLL3 = 3, 109 110 111 /** 112 * @DPLL_ID_ICL_DPLL0: ICL/TGL combo PHY DPLL0 113 */ 114 DPLL_ID_ICL_DPLL0 = 0, 115 /** 116 * @DPLL_ID_ICL_DPLL1: ICL/TGL combo PHY DPLL1 117 */ 118 DPLL_ID_ICL_DPLL1 = 1, 119 /** 120 * @DPLL_ID_EHL_DPLL4: EHL combo PHY DPLL4 121 */ 122 DPLL_ID_EHL_DPLL4 = 2, 123 /** 124 * @DPLL_ID_ICL_TBTPLL: ICL/TGL TBT PLL 125 */ 126 DPLL_ID_ICL_TBTPLL = 2, 127 /** 128 * @DPLL_ID_ICL_MGPLL1: ICL MG PLL 1 port 1 (C), 129 * TGL TC PLL 1 port 1 (TC1) 130 */ 131 DPLL_ID_ICL_MGPLL1 = 3, 132 /** 133 * @DPLL_ID_ICL_MGPLL2: ICL MG PLL 1 port 2 (D) 134 * TGL TC PLL 1 port 2 (TC2) 135 */ 136 DPLL_ID_ICL_MGPLL2 = 4, 137 /** 138 * @DPLL_ID_ICL_MGPLL3: ICL MG PLL 1 port 3 (E) 139 * TGL TC PLL 1 port 3 (TC3) 140 */ 141 DPLL_ID_ICL_MGPLL3 = 5, 142 /** 143 * @DPLL_ID_ICL_MGPLL4: ICL MG PLL 1 port 4 (F) 144 * TGL TC PLL 1 port 4 (TC4) 145 */ 146 DPLL_ID_ICL_MGPLL4 = 6, 147 /** 148 * @DPLL_ID_TGL_MGPLL5: TGL TC PLL port 5 (TC5) 149 */ 150 DPLL_ID_TGL_MGPLL5 = 7, 151 /** 152 * @DPLL_ID_TGL_MGPLL6: TGL TC PLL port 6 (TC6) 153 */ 154 DPLL_ID_TGL_MGPLL6 = 8, 155 156 /** 157 * @DPLL_ID_DG1_DPLL0: DG1 combo PHY DPLL0 158 */ 159 DPLL_ID_DG1_DPLL0 = 0, 160 /** 161 * @DPLL_ID_DG1_DPLL1: DG1 combo PHY DPLL1 162 */ 163 DPLL_ID_DG1_DPLL1 = 1, 164 /** 165 * @DPLL_ID_DG1_DPLL2: DG1 combo PHY DPLL2 166 */ 167 DPLL_ID_DG1_DPLL2 = 2, 168 /** 169 * @DPLL_ID_DG1_DPLL3: DG1 combo PHY DPLL3 170 */ 171 DPLL_ID_DG1_DPLL3 = 3, 172 }; 173 174 #define I915_NUM_PLLS 9 175 176 enum icl_port_dpll_id { 177 ICL_PORT_DPLL_DEFAULT, 178 ICL_PORT_DPLL_MG_PHY, 179 180 ICL_PORT_DPLL_COUNT, 181 }; 182 183 struct i9xx_dpll_hw_state { 184 u32 dpll; 185 u32 dpll_md; 186 u32 fp0; 187 u32 fp1; 188 }; 189 190 struct hsw_dpll_hw_state { 191 u32 wrpll; 192 u32 spll; 193 }; 194 195 struct skl_dpll_hw_state { 196 /* 197 * DPLL_CTRL1 has 6 bits for each each this DPLL. We store those in 198 * lower part of ctrl1 and they get shifted into position when writing 199 * the register. This allows us to easily compare the state to share 200 * the DPLL. 201 */ 202 u32 ctrl1; 203 /* HDMI only, 0 when used for DP */ 204 u32 cfgcr1, cfgcr2; 205 }; 206 207 struct bxt_dpll_hw_state { 208 u32 ebb0, ebb4, pll0, pll1, pll2, pll3, pll6, pll8, pll9, pll10, pcsdw12; 209 }; 210 211 struct icl_dpll_hw_state { 212 u32 cfgcr0, cfgcr1; 213 214 /* tgl */ 215 u32 div0; 216 217 u32 mg_refclkin_ctl; 218 u32 mg_clktop2_coreclkctl1; 219 u32 mg_clktop2_hsclkctl; 220 u32 mg_pll_div0; 221 u32 mg_pll_div1; 222 u32 mg_pll_lf; 223 u32 mg_pll_frac_lock; 224 u32 mg_pll_ssc; 225 u32 mg_pll_bias; 226 u32 mg_pll_tdc_coldst_bias; 227 u32 mg_pll_bias_mask; 228 u32 mg_pll_tdc_coldst_bias_mask; 229 }; 230 231 struct intel_mpllb_state { 232 u32 clock; /* in KHz */ 233 u32 ref_control; 234 u32 mpllb_cp; 235 u32 mpllb_div; 236 u32 mpllb_div2; 237 u32 mpllb_fracn1; 238 u32 mpllb_fracn2; 239 u32 mpllb_sscen; 240 u32 mpllb_sscstep; 241 }; 242 243 struct intel_c10pll_state { 244 u32 clock; /* in KHz */ 245 u8 tx; 246 u8 cmn; 247 u8 pll[20]; 248 }; 249 250 struct intel_c20pll_state { 251 u32 clock; /* in kHz */ 252 u16 tx[3]; 253 u16 cmn[4]; 254 union { 255 u16 mplla[10]; 256 u16 mpllb[11]; 257 }; 258 }; 259 260 struct intel_cx0pll_state { 261 union { 262 struct intel_c10pll_state c10; 263 struct intel_c20pll_state c20; 264 }; 265 bool ssc_enabled; 266 bool use_c10; 267 bool tbt_mode; 268 }; 269 270 struct intel_dpll_hw_state { 271 union { 272 struct i9xx_dpll_hw_state i9xx; 273 struct hsw_dpll_hw_state hsw; 274 struct skl_dpll_hw_state skl; 275 struct bxt_dpll_hw_state bxt; 276 struct icl_dpll_hw_state icl; 277 struct intel_mpllb_state mpllb; 278 struct intel_cx0pll_state cx0pll; 279 }; 280 }; 281 282 /** 283 * struct intel_shared_dpll_state - hold the DPLL atomic state 284 * 285 * This structure holds an atomic state for the DPLL, that can represent 286 * either its current state (in struct &intel_shared_dpll) or a desired 287 * future state which would be applied by an atomic mode set (stored in 288 * a struct &intel_atomic_state). 289 * 290 * See also intel_reserve_shared_dplls() and intel_release_shared_dplls(). 291 */ 292 struct intel_shared_dpll_state { 293 /** 294 * @pipe_mask: mask of pipes using this DPLL, active or not 295 */ 296 u8 pipe_mask; 297 298 /** 299 * @hw_state: hardware configuration for the DPLL stored in 300 * struct &intel_dpll_hw_state. 301 */ 302 struct intel_dpll_hw_state hw_state; 303 }; 304 305 /** 306 * struct dpll_info - display PLL platform specific info 307 */ 308 struct dpll_info { 309 /** 310 * @name: DPLL name; used for logging 311 */ 312 const char *name; 313 314 /** 315 * @funcs: platform specific hooks 316 */ 317 const struct intel_shared_dpll_funcs *funcs; 318 319 /** 320 * @id: unique identifier for this DPLL 321 */ 322 enum intel_dpll_id id; 323 324 /** 325 * @power_domain: extra power domain required by the DPLL 326 */ 327 enum intel_display_power_domain power_domain; 328 329 /** 330 * @always_on: 331 * 332 * Inform the state checker that the DPLL is kept enabled even if 333 * not in use by any CRTC. 334 */ 335 bool always_on; 336 337 /** 338 * @is_alt_port_dpll: 339 * 340 * Inform the state checker that the DPLL can be used as a fallback 341 * (for TC->TBT fallback). 342 */ 343 bool is_alt_port_dpll; 344 }; 345 346 /** 347 * struct intel_shared_dpll - display PLL with tracked state and users 348 */ 349 struct intel_shared_dpll { 350 /** 351 * @state: 352 * 353 * Store the state for the pll, including its hw state 354 * and CRTCs using it. 355 */ 356 struct intel_shared_dpll_state state; 357 358 /** 359 * @index: index for atomic state 360 */ 361 u8 index; 362 363 /** 364 * @active_mask: mask of active pipes (i.e. DPMS on) using this DPLL 365 */ 366 u8 active_mask; 367 368 /** 369 * @on: is the PLL actually active? Disabled during modeset 370 */ 371 bool on; 372 373 /** 374 * @info: platform specific info 375 */ 376 const struct dpll_info *info; 377 378 /** 379 * @wakeref: In some platforms a device-level runtime pm reference may 380 * need to be grabbed to disable DC states while this DPLL is enabled 381 */ 382 intel_wakeref_t wakeref; 383 }; 384 385 #define SKL_DPLL0 0 386 #define SKL_DPLL1 1 387 #define SKL_DPLL2 2 388 #define SKL_DPLL3 3 389 390 /* shared dpll functions */ 391 struct intel_shared_dpll * 392 intel_get_shared_dpll_by_id(struct intel_display *display, 393 enum intel_dpll_id id); 394 void assert_shared_dpll(struct intel_display *display, 395 struct intel_shared_dpll *pll, 396 bool state); 397 #define assert_shared_dpll_enabled(d, p) assert_shared_dpll(d, p, true) 398 #define assert_shared_dpll_disabled(d, p) assert_shared_dpll(d, p, false) 399 int intel_compute_shared_dplls(struct intel_atomic_state *state, 400 struct intel_crtc *crtc, 401 struct intel_encoder *encoder); 402 int intel_reserve_shared_dplls(struct intel_atomic_state *state, 403 struct intel_crtc *crtc, 404 struct intel_encoder *encoder); 405 void intel_release_shared_dplls(struct intel_atomic_state *state, 406 struct intel_crtc *crtc); 407 void intel_unreference_shared_dpll_crtc(const struct intel_crtc *crtc, 408 const struct intel_shared_dpll *pll, 409 struct intel_shared_dpll_state *shared_dpll_state); 410 void icl_set_active_port_dpll(struct intel_crtc_state *crtc_state, 411 enum icl_port_dpll_id port_dpll_id); 412 void intel_update_active_dpll(struct intel_atomic_state *state, 413 struct intel_crtc *crtc, 414 struct intel_encoder *encoder); 415 int intel_dpll_get_freq(struct intel_display *display, 416 const struct intel_shared_dpll *pll, 417 const struct intel_dpll_hw_state *dpll_hw_state); 418 bool intel_dpll_get_hw_state(struct intel_display *display, 419 struct intel_shared_dpll *pll, 420 struct intel_dpll_hw_state *dpll_hw_state); 421 void intel_enable_shared_dpll(const struct intel_crtc_state *crtc_state); 422 void intel_disable_shared_dpll(const struct intel_crtc_state *crtc_state); 423 void intel_shared_dpll_swap_state(struct intel_atomic_state *state); 424 void intel_shared_dpll_init(struct intel_display *display); 425 void intel_dpll_update_ref_clks(struct intel_display *display); 426 void intel_dpll_readout_hw_state(struct intel_display *display); 427 void intel_dpll_sanitize_state(struct intel_display *display); 428 429 void intel_dpll_dump_hw_state(struct intel_display *display, 430 struct drm_printer *p, 431 const struct intel_dpll_hw_state *dpll_hw_state); 432 bool intel_dpll_compare_hw_state(struct intel_display *display, 433 const struct intel_dpll_hw_state *a, 434 const struct intel_dpll_hw_state *b); 435 enum intel_dpll_id icl_tc_port_to_pll_id(enum tc_port tc_port); 436 bool intel_dpll_is_combophy(enum intel_dpll_id id); 437 438 void intel_shared_dpll_state_verify(struct intel_atomic_state *state, 439 struct intel_crtc *crtc); 440 void intel_shared_dpll_verify_disabled(struct intel_atomic_state *state); 441 442 #endif /* _INTEL_DPLL_MGR_H_ */ 443