1 // SPDX-License-Identifier: MIT
3 * Copyright © 2018 Intel Corporation
7 #include "intel_combo_phy.h"
8 #include "intel_combo_phy_regs.h"
10 #include "intel_display_types.h"
12 #define for_each_combo_phy(__dev_priv, __phy) \
13 for ((__phy) = PHY_A; (__phy) < I915_MAX_PHYS; (__phy)++) \
14 for_each_if(intel_phy_is_combo(__dev_priv, __phy))
16 #define for_each_combo_phy_reverse(__dev_priv, __phy) \
17 for ((__phy) = I915_MAX_PHYS; (__phy)-- > PHY_A;) \
18 for_each_if(intel_phy_is_combo(__dev_priv, __phy))
28 static const struct icl_procmon {
31 } icl_procmon_values[] = {
32 [PROCMON_0_85V_DOT_0] = {
33 .name = "0.85V dot0 (low-voltage)",
34 .dw1 = 0x00000000, .dw9 = 0x62AB67BB, .dw10 = 0x51914F96,
36 [PROCMON_0_95V_DOT_0] = {
38 .dw1 = 0x00000000, .dw9 = 0x86E172C7, .dw10 = 0x77CA5EAB,
40 [PROCMON_0_95V_DOT_1] = {
42 .dw1 = 0x00000000, .dw9 = 0x93F87FE1, .dw10 = 0x8AE871C5,
44 [PROCMON_1_05V_DOT_0] = {
46 .dw1 = 0x00000000, .dw9 = 0x98FA82DD, .dw10 = 0x89E46DC1,
48 [PROCMON_1_05V_DOT_1] = {
50 .dw1 = 0x00440000, .dw9 = 0x9A00AB25, .dw10 = 0x8AE38FF1,
54 static const struct icl_procmon *
55 icl_get_procmon_ref_values(struct drm_i915_private *dev_priv, enum phy phy)
59 val = intel_de_read(dev_priv, ICL_PORT_COMP_DW3(phy));
60 switch (val & (PROCESS_INFO_MASK | VOLTAGE_INFO_MASK)) {
64 case VOLTAGE_INFO_0_85V | PROCESS_INFO_DOT_0:
65 return &icl_procmon_values[PROCMON_0_85V_DOT_0];
66 case VOLTAGE_INFO_0_95V | PROCESS_INFO_DOT_0:
67 return &icl_procmon_values[PROCMON_0_95V_DOT_0];
68 case VOLTAGE_INFO_0_95V | PROCESS_INFO_DOT_1:
69 return &icl_procmon_values[PROCMON_0_95V_DOT_1];
70 case VOLTAGE_INFO_1_05V | PROCESS_INFO_DOT_0:
71 return &icl_procmon_values[PROCMON_1_05V_DOT_0];
72 case VOLTAGE_INFO_1_05V | PROCESS_INFO_DOT_1:
73 return &icl_procmon_values[PROCMON_1_05V_DOT_1];
77 static void icl_set_procmon_ref_values(struct drm_i915_private *dev_priv,
80 const struct icl_procmon *procmon;
82 procmon = icl_get_procmon_ref_values(dev_priv, phy);
84 intel_de_rmw(dev_priv, ICL_PORT_COMP_DW1(phy),
85 (0xff << 16) | 0xff, procmon->dw1);
87 intel_de_write(dev_priv, ICL_PORT_COMP_DW9(phy), procmon->dw9);
88 intel_de_write(dev_priv, ICL_PORT_COMP_DW10(phy), procmon->dw10);
91 static bool check_phy_reg(struct drm_i915_private *dev_priv,
92 enum phy phy, i915_reg_t reg, u32 mask,
95 u32 val = intel_de_read(dev_priv, reg);
97 if ((val & mask) != expected_val) {
98 drm_dbg(&dev_priv->drm,
99 "Combo PHY %c reg %08x state mismatch: "
100 "current %08x mask %08x expected %08x\n",
102 reg.reg, val, mask, expected_val);
109 static bool icl_verify_procmon_ref_values(struct drm_i915_private *dev_priv,
112 const struct icl_procmon *procmon;
115 procmon = icl_get_procmon_ref_values(dev_priv, phy);
117 ret = check_phy_reg(dev_priv, phy, ICL_PORT_COMP_DW1(phy),
118 (0xff << 16) | 0xff, procmon->dw1);
119 ret &= check_phy_reg(dev_priv, phy, ICL_PORT_COMP_DW9(phy),
121 ret &= check_phy_reg(dev_priv, phy, ICL_PORT_COMP_DW10(phy),
127 static bool has_phy_misc(struct drm_i915_private *i915, enum phy phy)
130 * Some platforms only expect PHY_MISC to be programmed for PHY-A and
131 * PHY-B and may not even have instances of the register for the
134 * ADL-S technically has three instances of PHY_MISC, but only requires
135 * that we program it for PHY A.
138 if (IS_ALDERLAKE_S(i915))
140 else if ((IS_JASPERLAKE(i915) || IS_ELKHARTLAKE(i915)) ||
141 IS_ROCKETLAKE(i915) ||
148 static bool icl_combo_phy_enabled(struct drm_i915_private *dev_priv,
151 /* The PHY C added by EHL has no PHY_MISC register */
152 if (!has_phy_misc(dev_priv, phy))
153 return intel_de_read(dev_priv, ICL_PORT_COMP_DW0(phy)) & COMP_INIT;
155 return !(intel_de_read(dev_priv, ICL_PHY_MISC(phy)) &
156 ICL_PHY_MISC_DE_IO_COMP_PWR_DOWN) &&
157 (intel_de_read(dev_priv, ICL_PORT_COMP_DW0(phy)) & COMP_INIT);
160 static bool ehl_vbt_ddi_d_present(struct drm_i915_private *i915)
162 struct intel_display *display = &i915->display;
164 bool ddi_a_present = intel_bios_is_port_present(display, PORT_A);
165 bool ddi_d_present = intel_bios_is_port_present(display, PORT_D);
166 bool dsi_present = intel_bios_is_dsi_present(display, NULL);
169 * VBT's 'dvo port' field for child devices references the DDI, not
170 * the PHY. So if combo PHY A is wired up to drive an external
171 * display, we should see a child device present on PORT_D and
172 * nothing on PORT_A and no DSI.
174 if (ddi_d_present && !ddi_a_present && !dsi_present)
178 * If we encounter a VBT that claims to have an external display on
179 * DDI-D _and_ an internal display on DDI-A/DSI leave an error message
180 * in the log and let the internal display win.
184 "VBT claims to have both internal and external displays on PHY A. Configuring for internal.\n");
189 static bool phy_is_master(struct drm_i915_private *dev_priv, enum phy phy)
192 * Certain PHYs are connected to compensation resistors and act
193 * as masters to other PHYs.
196 * A(master) -> B(slave), C(slave)
198 * A(master) -> B(slave)
199 * C(master) -> D(slave)
201 * A(master) -> B(slave), C(slave)
202 * D(master) -> E(slave)
204 * We must set the IREFGEN bit for any PHY acting as a master
209 else if (IS_ALDERLAKE_S(dev_priv))
211 else if (IS_DG1(dev_priv) || IS_ROCKETLAKE(dev_priv))
217 static bool icl_combo_phy_verify_state(struct drm_i915_private *dev_priv,
221 u32 expected_val = 0;
223 if (!icl_combo_phy_enabled(dev_priv, phy))
226 if (DISPLAY_VER(dev_priv) >= 12) {
227 ret &= check_phy_reg(dev_priv, phy, ICL_PORT_TX_DW8_LN(0, phy),
228 ICL_PORT_TX_DW8_ODCC_CLK_SEL |
229 ICL_PORT_TX_DW8_ODCC_CLK_DIV_SEL_MASK,
230 ICL_PORT_TX_DW8_ODCC_CLK_SEL |
231 ICL_PORT_TX_DW8_ODCC_CLK_DIV_SEL_DIV2);
233 ret &= check_phy_reg(dev_priv, phy, ICL_PORT_PCS_DW1_LN(0, phy),
234 DCC_MODE_SELECT_MASK, RUN_DCC_ONCE);
237 ret &= icl_verify_procmon_ref_values(dev_priv, phy);
239 if (phy_is_master(dev_priv, phy)) {
240 ret &= check_phy_reg(dev_priv, phy, ICL_PORT_COMP_DW8(phy),
243 if (IS_JASPERLAKE(dev_priv) || IS_ELKHARTLAKE(dev_priv)) {
244 if (ehl_vbt_ddi_d_present(dev_priv))
245 expected_val = ICL_PHY_MISC_MUX_DDID;
247 ret &= check_phy_reg(dev_priv, phy, ICL_PHY_MISC(phy),
248 ICL_PHY_MISC_MUX_DDID,
253 ret &= check_phy_reg(dev_priv, phy, ICL_PORT_CL_DW5(phy),
254 CL_POWER_DOWN_ENABLE, CL_POWER_DOWN_ENABLE);
259 void intel_combo_phy_power_up_lanes(struct drm_i915_private *dev_priv,
260 enum phy phy, bool is_dsi,
261 int lane_count, bool lane_reversal)
266 drm_WARN_ON(&dev_priv->drm, lane_reversal);
268 switch (lane_count) {
270 lane_mask = PWR_DOWN_LN_3_1_0;
273 lane_mask = PWR_DOWN_LN_3_1;
276 lane_mask = PWR_DOWN_LN_3;
279 MISSING_CASE(lane_count);
282 lane_mask = PWR_UP_ALL_LANES;
286 switch (lane_count) {
288 lane_mask = lane_reversal ? PWR_DOWN_LN_2_1_0 :
292 lane_mask = lane_reversal ? PWR_DOWN_LN_1_0 :
296 MISSING_CASE(lane_count);
299 lane_mask = PWR_UP_ALL_LANES;
304 intel_de_rmw(dev_priv, ICL_PORT_CL_DW10(phy),
305 PWR_DOWN_LN_MASK, lane_mask);
308 static void icl_combo_phys_init(struct drm_i915_private *dev_priv)
312 for_each_combo_phy(dev_priv, phy) {
313 const struct icl_procmon *procmon;
316 if (icl_combo_phy_verify_state(dev_priv, phy))
319 procmon = icl_get_procmon_ref_values(dev_priv, phy);
321 drm_dbg(&dev_priv->drm,
322 "Initializing combo PHY %c (Voltage/Process Info : %s)\n",
323 phy_name(phy), procmon->name);
325 if (!has_phy_misc(dev_priv, phy))
329 * EHL's combo PHY A can be hooked up to either an external
330 * display (via DDI-D) or an internal display (via DDI-A or
331 * the DSI DPHY). This is a motherboard design decision that
332 * can't be changed on the fly, so initialize the PHY's mux
333 * based on whether our VBT indicates the presence of any
334 * "internal" child devices.
336 val = intel_de_read(dev_priv, ICL_PHY_MISC(phy));
337 if ((IS_JASPERLAKE(dev_priv) || IS_ELKHARTLAKE(dev_priv)) &&
339 val &= ~ICL_PHY_MISC_MUX_DDID;
341 if (ehl_vbt_ddi_d_present(dev_priv))
342 val |= ICL_PHY_MISC_MUX_DDID;
345 val &= ~ICL_PHY_MISC_DE_IO_COMP_PWR_DOWN;
346 intel_de_write(dev_priv, ICL_PHY_MISC(phy), val);
349 if (DISPLAY_VER(dev_priv) >= 12) {
350 val = intel_de_read(dev_priv, ICL_PORT_TX_DW8_LN(0, phy));
351 val &= ~ICL_PORT_TX_DW8_ODCC_CLK_DIV_SEL_MASK;
352 val |= ICL_PORT_TX_DW8_ODCC_CLK_SEL;
353 val |= ICL_PORT_TX_DW8_ODCC_CLK_DIV_SEL_DIV2;
354 intel_de_write(dev_priv, ICL_PORT_TX_DW8_GRP(phy), val);
356 val = intel_de_read(dev_priv, ICL_PORT_PCS_DW1_LN(0, phy));
357 val &= ~DCC_MODE_SELECT_MASK;
359 intel_de_write(dev_priv, ICL_PORT_PCS_DW1_GRP(phy), val);
362 icl_set_procmon_ref_values(dev_priv, phy);
364 if (phy_is_master(dev_priv, phy))
365 intel_de_rmw(dev_priv, ICL_PORT_COMP_DW8(phy),
368 intel_de_rmw(dev_priv, ICL_PORT_COMP_DW0(phy), 0, COMP_INIT);
369 intel_de_rmw(dev_priv, ICL_PORT_CL_DW5(phy),
370 0, CL_POWER_DOWN_ENABLE);
374 static void icl_combo_phys_uninit(struct drm_i915_private *dev_priv)
378 for_each_combo_phy_reverse(dev_priv, phy) {
380 !icl_combo_phy_verify_state(dev_priv, phy)) {
381 if (IS_TIGERLAKE(dev_priv) || IS_DG1(dev_priv)) {
383 * A known problem with old ifwi:
384 * https://gitlab.freedesktop.org/drm/intel/-/issues/2411
385 * Suppress the warning for CI. Remove ASAP!
387 drm_dbg_kms(&dev_priv->drm,
388 "Combo PHY %c HW state changed unexpectedly\n",
391 drm_warn(&dev_priv->drm,
392 "Combo PHY %c HW state changed unexpectedly\n",
397 if (!has_phy_misc(dev_priv, phy))
400 intel_de_rmw(dev_priv, ICL_PHY_MISC(phy), 0,
401 ICL_PHY_MISC_DE_IO_COMP_PWR_DOWN);
404 intel_de_rmw(dev_priv, ICL_PORT_COMP_DW0(phy), COMP_INIT, 0);
408 void intel_combo_phy_init(struct drm_i915_private *i915)
410 icl_combo_phys_init(i915);
413 void intel_combo_phy_uninit(struct drm_i915_private *i915)
415 icl_combo_phys_uninit(i915);