blob: 6711e3a53f13228b7ddb6c01b02dfa0e89755e5c [file] [log] [blame]
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03001/*
2 * Copyright © 2014-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
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24#include "intel_drv.h"
25
Ander Conselvan de Oliveiraf38861b2016-10-06 19:22:18 +030026/**
27 * DOC: DPIO
28 *
29 * VLV, CHV and BXT have slightly peculiar display PHYs for driving DP/HDMI
30 * ports. DPIO is the name given to such a display PHY. These PHYs
31 * don't follow the standard programming model using direct MMIO
32 * registers, and instead their registers must be accessed trough IOSF
33 * sideband. VLV has one such PHY for driving ports B and C, and CHV
34 * adds another PHY for driving port D. Each PHY responds to specific
35 * IOSF-SB port.
36 *
37 * Each display PHY is made up of one or two channels. Each channel
38 * houses a common lane part which contains the PLL and other common
39 * logic. CH0 common lane also contains the IOSF-SB logic for the
40 * Common Register Interface (CRI) ie. the DPIO registers. CRI clock
41 * must be running when any DPIO registers are accessed.
42 *
43 * In addition to having their own registers, the PHYs are also
44 * controlled through some dedicated signals from the display
45 * controller. These include PLL reference clock enable, PLL enable,
46 * and CRI clock selection, for example.
47 *
48 * Eeach channel also has two splines (also called data lanes), and
49 * each spline is made up of one Physical Access Coding Sub-Layer
50 * (PCS) block and two TX lanes. So each channel has two PCS blocks
51 * and four TX lanes. The TX lanes are used as DP lanes or TMDS
52 * data/clock pairs depending on the output type.
53 *
54 * Additionally the PHY also contains an AUX lane with AUX blocks
55 * for each channel. This is used for DP AUX communication, but
56 * this fact isn't really relevant for the driver since AUX is
57 * controlled from the display controller side. No DPIO registers
58 * need to be accessed during AUX communication,
59 *
60 * Generally on VLV/CHV the common lane corresponds to the pipe and
61 * the spline (PCS/TX) corresponds to the port.
62 *
63 * For dual channel PHY (VLV/CHV):
64 *
65 * pipe A == CMN/PLL/REF CH0
66 *
67 * pipe B == CMN/PLL/REF CH1
68 *
69 * port B == PCS/TX CH0
70 *
71 * port C == PCS/TX CH1
72 *
73 * This is especially important when we cross the streams
74 * ie. drive port B with pipe B, or port C with pipe A.
75 *
76 * For single channel PHY (CHV):
77 *
78 * pipe C == CMN/PLL/REF CH0
79 *
80 * port D == PCS/TX CH0
81 *
82 * On BXT the entire PHY channel corresponds to the port. That means
83 * the PLL is also now associated with the port rather than the pipe,
84 * and so the clock needs to be routed to the appropriate transcoder.
85 * Port A PLL is directly connected to transcoder EDP and port B/C
86 * PLLs can be routed to any transcoder A/B/C.
87 *
88 * Note: DDI0 is digital port B, DD1 is digital port C, and DDI2 is
89 * digital port D (CHV) or port A (BXT). ::
90 *
91 *
92 * Dual channel PHY (VLV/CHV/BXT)
93 * ---------------------------------
94 * | CH0 | CH1 |
95 * | CMN/PLL/REF | CMN/PLL/REF |
96 * |---------------|---------------| Display PHY
97 * | PCS01 | PCS23 | PCS01 | PCS23 |
98 * |-------|-------|-------|-------|
99 * |TX0|TX1|TX2|TX3|TX0|TX1|TX2|TX3|
100 * ---------------------------------
101 * | DDI0 | DDI1 | DP/HDMI ports
102 * ---------------------------------
103 *
104 * Single channel PHY (CHV/BXT)
105 * -----------------
106 * | CH0 |
107 * | CMN/PLL/REF |
108 * |---------------| Display PHY
109 * | PCS01 | PCS23 |
110 * |-------|-------|
111 * |TX0|TX1|TX2|TX3|
112 * -----------------
113 * | DDI2 | DP/HDMI port
114 * -----------------
115 */
116
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300117/**
118 * struct bxt_ddi_phy_info - Hold info for a broxton DDI phy
119 */
120struct bxt_ddi_phy_info {
121 /**
122 * @dual_channel: true if this phy has a second channel.
123 */
124 bool dual_channel;
125
126 /**
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300127 * @rcomp_phy: If -1, indicates this phy has its own rcomp resistor.
128 * Otherwise the GRC value will be copied from the phy indicated by
129 * this field.
130 */
131 enum dpio_phy rcomp_phy;
132
133 /**
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300134 * @channel: struct containing per channel information.
135 */
136 struct {
137 /**
138 * @port: which port maps to this channel.
139 */
140 enum port port;
141 } channel[2];
142};
143
144static const struct bxt_ddi_phy_info bxt_ddi_phy_info[] = {
145 [DPIO_PHY0] = {
146 .dual_channel = true,
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300147 .rcomp_phy = DPIO_PHY1,
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300148
149 .channel = {
150 [DPIO_CH0] = { .port = PORT_B },
151 [DPIO_CH1] = { .port = PORT_C },
152 }
153 },
154 [DPIO_PHY1] = {
155 .dual_channel = false,
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300156 .rcomp_phy = -1,
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300157
158 .channel = {
159 [DPIO_CH0] = { .port = PORT_A },
160 }
161 },
162};
163
164static u32 bxt_phy_port_mask(const struct bxt_ddi_phy_info *phy_info)
165{
166 return (phy_info->dual_channel * BIT(phy_info->channel[DPIO_CH1].port)) |
167 BIT(phy_info->channel[DPIO_CH0].port);
168}
169
Ander Conselvan de Oliveirab6e08202016-10-06 19:22:19 +0300170void bxt_ddi_phy_set_signal_level(struct drm_i915_private *dev_priv,
171 enum port port, u32 margin, u32 scale,
172 u32 enable, u32 deemphasis)
173{
174 u32 val;
175
176 /*
177 * While we write to the group register to program all lanes at once we
178 * can read only lane registers and we pick lanes 0/1 for that.
179 */
180 val = I915_READ(BXT_PORT_PCS_DW10_LN01(port));
181 val &= ~(TX2_SWING_CALC_INIT | TX1_SWING_CALC_INIT);
182 I915_WRITE(BXT_PORT_PCS_DW10_GRP(port), val);
183
184 val = I915_READ(BXT_PORT_TX_DW2_LN0(port));
185 val &= ~(MARGIN_000 | UNIQ_TRANS_SCALE);
186 val |= margin << MARGIN_000_SHIFT | scale << UNIQ_TRANS_SCALE_SHIFT;
187 I915_WRITE(BXT_PORT_TX_DW2_GRP(port), val);
188
189 val = I915_READ(BXT_PORT_TX_DW3_LN0(port));
190 val &= ~SCALE_DCOMP_METHOD;
191 if (enable)
192 val |= SCALE_DCOMP_METHOD;
193
194 if ((val & UNIQUE_TRANGE_EN_METHOD) && !(val & SCALE_DCOMP_METHOD))
195 DRM_ERROR("Disabled scaling while ouniqetrangenmethod was set");
196
197 I915_WRITE(BXT_PORT_TX_DW3_GRP(port), val);
198
199 val = I915_READ(BXT_PORT_TX_DW4_LN0(port));
200 val &= ~DE_EMPHASIS;
201 val |= deemphasis << DEEMPH_SHIFT;
202 I915_WRITE(BXT_PORT_TX_DW4_GRP(port), val);
203
204 val = I915_READ(BXT_PORT_PCS_DW10_LN01(port));
205 val |= TX2_SWING_CALC_INIT | TX1_SWING_CALC_INIT;
206 I915_WRITE(BXT_PORT_PCS_DW10_GRP(port), val);
207}
208
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300209bool bxt_ddi_phy_is_enabled(struct drm_i915_private *dev_priv,
210 enum dpio_phy phy)
211{
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300212 const struct bxt_ddi_phy_info *phy_info = &bxt_ddi_phy_info[phy];
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300213 enum port port;
214
215 if (!(I915_READ(BXT_P_CR_GT_DISP_PWRON) & GT_DISPLAY_POWER_ON(phy)))
216 return false;
217
218 if ((I915_READ(BXT_PORT_CL1CM_DW0(phy)) &
219 (PHY_POWER_GOOD | PHY_RESERVED)) != PHY_POWER_GOOD) {
220 DRM_DEBUG_DRIVER("DDI PHY %d powered, but power hasn't settled\n",
221 phy);
222
223 return false;
224 }
225
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300226 if (phy_info->rcomp_phy == -1 &&
227 !(I915_READ(BXT_PORT_REF_DW3(phy)) & GRC_DONE)) {
228 DRM_DEBUG_DRIVER("DDI PHY %d powered, but GRC isn't done\n",
229 phy);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300230
231 return false;
232 }
233
234 if (!(I915_READ(BXT_PHY_CTL_FAMILY(phy)) & COMMON_RESET_DIS)) {
235 DRM_DEBUG_DRIVER("DDI PHY %d powered, but still in reset\n",
236 phy);
237
238 return false;
239 }
240
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300241 for_each_port_masked(port, bxt_phy_port_mask(phy_info)) {
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300242 u32 tmp = I915_READ(BXT_PHY_CTL(port));
243
244 if (tmp & BXT_PHY_CMNLANE_POWERDOWN_ACK) {
245 DRM_DEBUG_DRIVER("DDI PHY %d powered, but common lane "
246 "for port %c powered down "
247 "(PHY_CTL %08x)\n",
248 phy, port_name(port), tmp);
249
250 return false;
251 }
252 }
253
254 return true;
255}
256
257static u32 bxt_get_grc(struct drm_i915_private *dev_priv, enum dpio_phy phy)
258{
259 u32 val = I915_READ(BXT_PORT_REF_DW6(phy));
260
261 return (val & GRC_CODE_MASK) >> GRC_CODE_SHIFT;
262}
263
264static void bxt_phy_wait_grc_done(struct drm_i915_private *dev_priv,
265 enum dpio_phy phy)
266{
267 if (intel_wait_for_register(dev_priv,
268 BXT_PORT_REF_DW3(phy),
269 GRC_DONE, GRC_DONE,
270 10))
271 DRM_ERROR("timeout waiting for PHY%d GRC\n", phy);
272}
273
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300274static void _bxt_ddi_phy_init(struct drm_i915_private *dev_priv,
275 enum dpio_phy phy)
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300276{
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300277 const struct bxt_ddi_phy_info *phy_info = &bxt_ddi_phy_info[phy];
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300278 u32 val;
279
280 if (bxt_ddi_phy_is_enabled(dev_priv, phy)) {
281 /* Still read out the GRC value for state verification */
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300282 if (phy_info->rcomp_phy != -1)
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300283 dev_priv->bxt_phy_grc = bxt_get_grc(dev_priv, phy);
284
285 if (bxt_ddi_phy_verify_state(dev_priv, phy)) {
286 DRM_DEBUG_DRIVER("DDI PHY %d already enabled, "
287 "won't reprogram it\n", phy);
288
289 return;
290 }
291
292 DRM_DEBUG_DRIVER("DDI PHY %d enabled with invalid state, "
293 "force reprogramming it\n", phy);
294 }
295
296 val = I915_READ(BXT_P_CR_GT_DISP_PWRON);
297 val |= GT_DISPLAY_POWER_ON(phy);
298 I915_WRITE(BXT_P_CR_GT_DISP_PWRON, val);
299
300 /*
301 * The PHY registers start out inaccessible and respond to reads with
302 * all 1s. Eventually they become accessible as they power up, then
303 * the reserved bit will give the default 0. Poll on the reserved bit
304 * becoming 0 to find when the PHY is accessible.
305 * HW team confirmed that the time to reach phypowergood status is
306 * anywhere between 50 us and 100us.
307 */
308 if (wait_for_us(((I915_READ(BXT_PORT_CL1CM_DW0(phy)) &
309 (PHY_RESERVED | PHY_POWER_GOOD)) == PHY_POWER_GOOD), 100)) {
310 DRM_ERROR("timeout during PHY%d power on\n", phy);
311 }
312
313 /* Program PLL Rcomp code offset */
314 val = I915_READ(BXT_PORT_CL1CM_DW9(phy));
315 val &= ~IREF0RC_OFFSET_MASK;
316 val |= 0xE4 << IREF0RC_OFFSET_SHIFT;
317 I915_WRITE(BXT_PORT_CL1CM_DW9(phy), val);
318
319 val = I915_READ(BXT_PORT_CL1CM_DW10(phy));
320 val &= ~IREF1RC_OFFSET_MASK;
321 val |= 0xE4 << IREF1RC_OFFSET_SHIFT;
322 I915_WRITE(BXT_PORT_CL1CM_DW10(phy), val);
323
324 /* Program power gating */
325 val = I915_READ(BXT_PORT_CL1CM_DW28(phy));
326 val |= OCL1_POWER_DOWN_EN | DW28_OLDO_DYN_PWR_DOWN_EN |
327 SUS_CLK_CONFIG;
328 I915_WRITE(BXT_PORT_CL1CM_DW28(phy), val);
329
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300330 if (phy_info->dual_channel) {
331 val = I915_READ(BXT_PORT_CL2CM_DW6(phy));
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300332 val |= DW6_OLDO_DYN_PWR_DOWN_EN;
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300333 I915_WRITE(BXT_PORT_CL2CM_DW6(phy), val);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300334 }
335
336 val = I915_READ(BXT_PORT_CL1CM_DW30(phy));
337 val &= ~OCL2_LDOFUSE_PWR_DIS;
338 /*
339 * On PHY1 disable power on the second channel, since no port is
340 * connected there. On PHY0 both channels have a port, so leave it
341 * enabled.
342 * TODO: port C is only connected on BXT-P, so on BXT0/1 we should
343 * power down the second channel on PHY0 as well.
344 *
345 * FIXME: Clarify programming of the following, the register is
346 * read-only with bit 6 fixed at 0 at least in stepping A.
347 */
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300348 if (!phy_info->dual_channel)
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300349 val |= OCL2_LDOFUSE_PWR_DIS;
350 I915_WRITE(BXT_PORT_CL1CM_DW30(phy), val);
351
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300352 if (phy_info->rcomp_phy != -1) {
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300353 uint32_t grc_code;
354 /*
355 * PHY0 isn't connected to an RCOMP resistor so copy over
356 * the corresponding calibrated value from PHY1, and disable
357 * the automatic calibration on PHY0.
358 */
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300359 val = dev_priv->bxt_phy_grc = bxt_get_grc(dev_priv,
360 phy_info->rcomp_phy);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300361 grc_code = val << GRC_CODE_FAST_SHIFT |
362 val << GRC_CODE_SLOW_SHIFT |
363 val;
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300364 I915_WRITE(BXT_PORT_REF_DW6(phy), grc_code);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300365
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300366 val = I915_READ(BXT_PORT_REF_DW8(phy));
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300367 val |= GRC_DIS | GRC_RDY_OVRD;
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300368 I915_WRITE(BXT_PORT_REF_DW8(phy), val);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300369 }
370
371 val = I915_READ(BXT_PHY_CTL_FAMILY(phy));
372 val |= COMMON_RESET_DIS;
373 I915_WRITE(BXT_PHY_CTL_FAMILY(phy), val);
374
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300375 if (phy_info->rcomp_phy == -1)
376 bxt_phy_wait_grc_done(dev_priv, phy);
377
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300378}
379
380void bxt_ddi_phy_uninit(struct drm_i915_private *dev_priv, enum dpio_phy phy)
381{
382 uint32_t val;
383
384 val = I915_READ(BXT_PHY_CTL_FAMILY(phy));
385 val &= ~COMMON_RESET_DIS;
386 I915_WRITE(BXT_PHY_CTL_FAMILY(phy), val);
387
388 val = I915_READ(BXT_P_CR_GT_DISP_PWRON);
389 val &= ~GT_DISPLAY_POWER_ON(phy);
390 I915_WRITE(BXT_P_CR_GT_DISP_PWRON, val);
391}
392
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300393void bxt_ddi_phy_init(struct drm_i915_private *dev_priv, enum dpio_phy phy)
394{
395 const struct bxt_ddi_phy_info *phy_info = &bxt_ddi_phy_info[phy];
396 enum dpio_phy rcomp_phy = phy_info->rcomp_phy;
397 bool was_enabled;
398
399 lockdep_assert_held(&dev_priv->power_domains.lock);
400
401 if (rcomp_phy != -1) {
402 was_enabled = bxt_ddi_phy_is_enabled(dev_priv, rcomp_phy);
403
404 /*
405 * We need to copy the GRC calibration value from rcomp_phy,
406 * so make sure it's powered up.
407 */
408 if (!was_enabled)
409 _bxt_ddi_phy_init(dev_priv, rcomp_phy);
410 }
411
412 _bxt_ddi_phy_init(dev_priv, phy);
413
414 if (rcomp_phy != -1 && !was_enabled)
415 bxt_ddi_phy_uninit(dev_priv, phy_info->rcomp_phy);
416}
417
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300418static bool __printf(6, 7)
419__phy_reg_verify_state(struct drm_i915_private *dev_priv, enum dpio_phy phy,
420 i915_reg_t reg, u32 mask, u32 expected,
421 const char *reg_fmt, ...)
422{
423 struct va_format vaf;
424 va_list args;
425 u32 val;
426
427 val = I915_READ(reg);
428 if ((val & mask) == expected)
429 return true;
430
431 va_start(args, reg_fmt);
432 vaf.fmt = reg_fmt;
433 vaf.va = &args;
434
435 DRM_DEBUG_DRIVER("DDI PHY %d reg %pV [%08x] state mismatch: "
436 "current %08x, expected %08x (mask %08x)\n",
437 phy, &vaf, reg.reg, val, (val & ~mask) | expected,
438 mask);
439
440 va_end(args);
441
442 return false;
443}
444
445bool bxt_ddi_phy_verify_state(struct drm_i915_private *dev_priv,
446 enum dpio_phy phy)
447{
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300448 const struct bxt_ddi_phy_info *phy_info = &bxt_ddi_phy_info[phy];
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300449 uint32_t mask;
450 bool ok;
451
452#define _CHK(reg, mask, exp, fmt, ...) \
453 __phy_reg_verify_state(dev_priv, phy, reg, mask, exp, fmt, \
454 ## __VA_ARGS__)
455
456 if (!bxt_ddi_phy_is_enabled(dev_priv, phy))
457 return false;
458
459 ok = true;
460
461 /* PLL Rcomp code offset */
462 ok &= _CHK(BXT_PORT_CL1CM_DW9(phy),
463 IREF0RC_OFFSET_MASK, 0xe4 << IREF0RC_OFFSET_SHIFT,
464 "BXT_PORT_CL1CM_DW9(%d)", phy);
465 ok &= _CHK(BXT_PORT_CL1CM_DW10(phy),
466 IREF1RC_OFFSET_MASK, 0xe4 << IREF1RC_OFFSET_SHIFT,
467 "BXT_PORT_CL1CM_DW10(%d)", phy);
468
469 /* Power gating */
470 mask = OCL1_POWER_DOWN_EN | DW28_OLDO_DYN_PWR_DOWN_EN | SUS_CLK_CONFIG;
471 ok &= _CHK(BXT_PORT_CL1CM_DW28(phy), mask, mask,
472 "BXT_PORT_CL1CM_DW28(%d)", phy);
473
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300474 if (phy_info->dual_channel)
475 ok &= _CHK(BXT_PORT_CL2CM_DW6(phy),
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300476 DW6_OLDO_DYN_PWR_DOWN_EN, DW6_OLDO_DYN_PWR_DOWN_EN,
Ander Conselvan de Oliveira842d4162016-10-06 19:22:20 +0300477 "BXT_PORT_CL2CM_DW6(%d)", phy);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300478
479 /*
480 * TODO: Verify BXT_PORT_CL1CM_DW30 bit OCL2_LDOFUSE_PWR_DIS,
481 * at least on stepping A this bit is read-only and fixed at 0.
482 */
483
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300484 if (phy_info->rcomp_phy != -1) {
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300485 u32 grc_code = dev_priv->bxt_phy_grc;
486
487 grc_code = grc_code << GRC_CODE_FAST_SHIFT |
488 grc_code << GRC_CODE_SLOW_SHIFT |
489 grc_code;
490 mask = GRC_CODE_FAST_MASK | GRC_CODE_SLOW_MASK |
491 GRC_CODE_NOM_MASK;
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300492 ok &= _CHK(BXT_PORT_REF_DW6(phy), mask, grc_code,
493 "BXT_PORT_REF_DW6(%d)", phy);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300494
495 mask = GRC_DIS | GRC_RDY_OVRD;
Ander Conselvan de Oliveirae7583f72016-10-06 19:22:21 +0300496 ok &= _CHK(BXT_PORT_REF_DW8(phy), mask, mask,
497 "BXT_PORT_REF_DW8(%d)", phy);
Ander Conselvan de Oliveira47a6bc62016-10-06 19:22:17 +0300498 }
499
500 return ok;
501#undef _CHK
502}
503
504uint8_t
505bxt_ddi_phy_calc_lane_lat_optim_mask(struct intel_encoder *encoder,
506 uint8_t lane_count)
507{
508 switch (lane_count) {
509 case 1:
510 return 0;
511 case 2:
512 return BIT(2) | BIT(0);
513 case 4:
514 return BIT(3) | BIT(2) | BIT(0);
515 default:
516 MISSING_CASE(lane_count);
517
518 return 0;
519 }
520}
521
522void bxt_ddi_phy_set_lane_optim_mask(struct intel_encoder *encoder,
523 uint8_t lane_lat_optim_mask)
524{
525 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
526 struct drm_i915_private *dev_priv = to_i915(dport->base.base.dev);
527 enum port port = dport->port;
528 int lane;
529
530 for (lane = 0; lane < 4; lane++) {
531 u32 val = I915_READ(BXT_PORT_TX_DW14_LN(port, lane));
532
533 /*
534 * Note that on CHV this flag is called UPAR, but has
535 * the same function.
536 */
537 val &= ~LATENCY_OPTIM;
538 if (lane_lat_optim_mask & BIT(lane))
539 val |= LATENCY_OPTIM;
540
541 I915_WRITE(BXT_PORT_TX_DW14_LN(port, lane), val);
542 }
543}
544
545uint8_t
546bxt_ddi_phy_get_lane_lat_optim_mask(struct intel_encoder *encoder)
547{
548 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
549 struct drm_i915_private *dev_priv = to_i915(dport->base.base.dev);
550 enum port port = dport->port;
551 int lane;
552 uint8_t mask;
553
554 mask = 0;
555 for (lane = 0; lane < 4; lane++) {
556 u32 val = I915_READ(BXT_PORT_TX_DW14_LN(port, lane));
557
558 if (val & LATENCY_OPTIM)
559 mask |= BIT(lane);
560 }
561
562 return mask;
563}
564
565
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +0300566void chv_set_phy_signal_level(struct intel_encoder *encoder,
567 u32 deemph_reg_value, u32 margin_reg_value,
568 bool uniq_trans_scale)
569{
570 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
571 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
572 struct intel_crtc *intel_crtc = to_intel_crtc(dport->base.base.crtc);
573 enum dpio_channel ch = vlv_dport_to_channel(dport);
574 enum pipe pipe = intel_crtc->pipe;
575 u32 val;
576 int i;
577
578 mutex_lock(&dev_priv->sb_lock);
579
580 /* Clear calc init */
581 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
582 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
583 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
584 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
585 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
586
587 if (intel_crtc->config->lane_count > 2) {
588 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
589 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
590 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
591 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
592 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
593 }
594
595 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
596 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
597 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
598 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
599
600 if (intel_crtc->config->lane_count > 2) {
601 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
602 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
603 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
604 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
605 }
606
607 /* Program swing deemph */
608 for (i = 0; i < intel_crtc->config->lane_count; i++) {
609 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
610 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
611 val |= deemph_reg_value << DPIO_SWING_DEEMPH9P5_SHIFT;
612 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
613 }
614
615 /* Program swing margin */
616 for (i = 0; i < intel_crtc->config->lane_count; i++) {
617 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
618
619 val &= ~DPIO_SWING_MARGIN000_MASK;
620 val |= margin_reg_value << DPIO_SWING_MARGIN000_SHIFT;
621
622 /*
623 * Supposedly this value shouldn't matter when unique transition
624 * scale is disabled, but in fact it does matter. Let's just
625 * always program the same value and hope it's OK.
626 */
627 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
628 val |= 0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT;
629
630 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
631 }
632
633 /*
634 * The document said it needs to set bit 27 for ch0 and bit 26
635 * for ch1. Might be a typo in the doc.
636 * For now, for this unique transition scale selection, set bit
637 * 27 for ch0 and ch1.
638 */
639 for (i = 0; i < intel_crtc->config->lane_count; i++) {
640 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
641 if (uniq_trans_scale)
642 val |= DPIO_TX_UNIQ_TRANS_SCALE_EN;
643 else
644 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
645 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
646 }
647
648 /* Start swing calculation */
649 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
650 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
651 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
652
653 if (intel_crtc->config->lane_count > 2) {
654 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
655 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
656 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
657 }
658
659 mutex_unlock(&dev_priv->sb_lock);
660
661}
662
Ander Conselvan de Oliveira844b2f92016-04-27 15:44:18 +0300663void chv_data_lane_soft_reset(struct intel_encoder *encoder,
664 bool reset)
665{
666 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
667 enum dpio_channel ch = vlv_dport_to_channel(enc_to_dig_port(&encoder->base));
668 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
669 enum pipe pipe = crtc->pipe;
670 uint32_t val;
671
672 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
673 if (reset)
674 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
675 else
676 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
677 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
678
679 if (crtc->config->lane_count > 2) {
680 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
681 if (reset)
682 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
683 else
684 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
685 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
686 }
687
688 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
689 val |= CHV_PCS_REQ_SOFTRESET_EN;
690 if (reset)
691 val &= ~DPIO_PCS_CLK_SOFT_RESET;
692 else
693 val |= DPIO_PCS_CLK_SOFT_RESET;
694 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
695
696 if (crtc->config->lane_count > 2) {
697 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
698 val |= CHV_PCS_REQ_SOFTRESET_EN;
699 if (reset)
700 val &= ~DPIO_PCS_CLK_SOFT_RESET;
701 else
702 val |= DPIO_PCS_CLK_SOFT_RESET;
703 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
704 }
705}
Ander Conselvan de Oliveira419b1b72016-04-27 15:44:19 +0300706
707void chv_phy_pre_pll_enable(struct intel_encoder *encoder)
708{
709 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
710 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100711 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira419b1b72016-04-27 15:44:19 +0300712 struct intel_crtc *intel_crtc =
713 to_intel_crtc(encoder->base.crtc);
714 enum dpio_channel ch = vlv_dport_to_channel(dport);
715 enum pipe pipe = intel_crtc->pipe;
716 unsigned int lane_mask =
717 intel_dp_unused_lane_mask(intel_crtc->config->lane_count);
718 u32 val;
719
720 /*
721 * Must trick the second common lane into life.
722 * Otherwise we can't even access the PLL.
723 */
724 if (ch == DPIO_CH0 && pipe == PIPE_B)
725 dport->release_cl2_override =
726 !chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, true);
727
728 chv_phy_powergate_lanes(encoder, true, lane_mask);
729
730 mutex_lock(&dev_priv->sb_lock);
731
732 /* Assert data lane reset */
733 chv_data_lane_soft_reset(encoder, true);
734
735 /* program left/right clock distribution */
736 if (pipe != PIPE_B) {
737 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
738 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
739 if (ch == DPIO_CH0)
740 val |= CHV_BUFLEFTENA1_FORCE;
741 if (ch == DPIO_CH1)
742 val |= CHV_BUFRIGHTENA1_FORCE;
743 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
744 } else {
745 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
746 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
747 if (ch == DPIO_CH0)
748 val |= CHV_BUFLEFTENA2_FORCE;
749 if (ch == DPIO_CH1)
750 val |= CHV_BUFRIGHTENA2_FORCE;
751 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
752 }
753
754 /* program clock channel usage */
755 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
756 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
757 if (pipe != PIPE_B)
758 val &= ~CHV_PCS_USEDCLKCHANNEL;
759 else
760 val |= CHV_PCS_USEDCLKCHANNEL;
761 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
762
763 if (intel_crtc->config->lane_count > 2) {
764 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
765 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
766 if (pipe != PIPE_B)
767 val &= ~CHV_PCS_USEDCLKCHANNEL;
768 else
769 val |= CHV_PCS_USEDCLKCHANNEL;
770 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
771 }
772
773 /*
774 * This a a bit weird since generally CL
775 * matches the pipe, but here we need to
776 * pick the CL based on the port.
777 */
778 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
779 if (pipe != PIPE_B)
780 val &= ~CHV_CMN_USEDCLKCHANNEL;
781 else
782 val |= CHV_CMN_USEDCLKCHANNEL;
783 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
784
785 mutex_unlock(&dev_priv->sb_lock);
786}
Ander Conselvan de Oliveirae7d2a7172016-04-27 15:44:20 +0300787
788void chv_phy_pre_encoder_enable(struct intel_encoder *encoder)
789{
790 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
791 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
792 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100793 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveirae7d2a7172016-04-27 15:44:20 +0300794 struct intel_crtc *intel_crtc =
795 to_intel_crtc(encoder->base.crtc);
796 enum dpio_channel ch = vlv_dport_to_channel(dport);
797 int pipe = intel_crtc->pipe;
798 int data, i, stagger;
799 u32 val;
800
801 mutex_lock(&dev_priv->sb_lock);
802
803 /* allow hardware to manage TX FIFO reset source */
804 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
805 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
806 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
807
808 if (intel_crtc->config->lane_count > 2) {
809 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
810 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
811 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
812 }
813
814 /* Program Tx lane latency optimal setting*/
815 for (i = 0; i < intel_crtc->config->lane_count; i++) {
816 /* Set the upar bit */
817 if (intel_crtc->config->lane_count == 1)
818 data = 0x0;
819 else
820 data = (i == 1) ? 0x0 : 0x1;
821 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
822 data << DPIO_UPAR_SHIFT);
823 }
824
825 /* Data lane stagger programming */
826 if (intel_crtc->config->port_clock > 270000)
827 stagger = 0x18;
828 else if (intel_crtc->config->port_clock > 135000)
829 stagger = 0xd;
830 else if (intel_crtc->config->port_clock > 67500)
831 stagger = 0x7;
832 else if (intel_crtc->config->port_clock > 33750)
833 stagger = 0x4;
834 else
835 stagger = 0x2;
836
837 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
838 val |= DPIO_TX2_STAGGER_MASK(0x1f);
839 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
840
841 if (intel_crtc->config->lane_count > 2) {
842 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
843 val |= DPIO_TX2_STAGGER_MASK(0x1f);
844 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
845 }
846
847 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW12(ch),
848 DPIO_LANESTAGGER_STRAP(stagger) |
849 DPIO_LANESTAGGER_STRAP_OVRD |
850 DPIO_TX1_STAGGER_MASK(0x1f) |
851 DPIO_TX1_STAGGER_MULT(6) |
852 DPIO_TX2_STAGGER_MULT(0));
853
854 if (intel_crtc->config->lane_count > 2) {
855 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW12(ch),
856 DPIO_LANESTAGGER_STRAP(stagger) |
857 DPIO_LANESTAGGER_STRAP_OVRD |
858 DPIO_TX1_STAGGER_MASK(0x1f) |
859 DPIO_TX1_STAGGER_MULT(7) |
860 DPIO_TX2_STAGGER_MULT(5));
861 }
862
863 /* Deassert data lane reset */
864 chv_data_lane_soft_reset(encoder, false);
865
866 mutex_unlock(&dev_priv->sb_lock);
867}
868
869void chv_phy_release_cl2_override(struct intel_encoder *encoder)
870{
871 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
872 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
873
874 if (dport->release_cl2_override) {
875 chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, false);
876 dport->release_cl2_override = false;
877 }
878}
Ander Conselvan de Oliveira204970b2016-04-27 15:44:21 +0300879
880void chv_phy_post_pll_disable(struct intel_encoder *encoder)
881{
882 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
883 enum pipe pipe = to_intel_crtc(encoder->base.crtc)->pipe;
884 u32 val;
885
886 mutex_lock(&dev_priv->sb_lock);
887
888 /* disable left/right clock distribution */
889 if (pipe != PIPE_B) {
890 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
891 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
892 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
893 } else {
894 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
895 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
896 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
897 }
898
899 mutex_unlock(&dev_priv->sb_lock);
900
901 /*
902 * Leave the power down bit cleared for at least one
903 * lane so that chv_powergate_phy_ch() will power
904 * on something when the channel is otherwise unused.
905 * When the port is off and the override is removed
906 * the lanes power down anyway, so otherwise it doesn't
907 * really matter what the state of power down bits is
908 * after this.
909 */
910 chv_phy_powergate_lanes(encoder, false, 0x0);
911}
Ander Conselvan de Oliveira53d98722016-04-27 15:44:22 +0300912
913void vlv_set_phy_signal_level(struct intel_encoder *encoder,
914 u32 demph_reg_value, u32 preemph_reg_value,
915 u32 uniqtranscale_reg_value, u32 tx3_demph)
916{
917 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
918 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
919 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
920 enum dpio_channel port = vlv_dport_to_channel(dport);
921 int pipe = intel_crtc->pipe;
922
923 mutex_lock(&dev_priv->sb_lock);
924 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0x00000000);
925 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), demph_reg_value);
926 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port),
927 uniqtranscale_reg_value);
928 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0C782040);
929
930 if (tx3_demph)
931 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), tx3_demph);
932
933 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
934 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), preemph_reg_value);
935 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
936 mutex_unlock(&dev_priv->sb_lock);
937}
Ander Conselvan de Oliveira6da2e612016-04-27 15:44:23 +0300938
939void vlv_phy_pre_pll_enable(struct intel_encoder *encoder)
940{
941 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
942 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100943 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira6da2e612016-04-27 15:44:23 +0300944 struct intel_crtc *intel_crtc =
945 to_intel_crtc(encoder->base.crtc);
946 enum dpio_channel port = vlv_dport_to_channel(dport);
947 int pipe = intel_crtc->pipe;
948
949 /* Program Tx lane resets to default */
950 mutex_lock(&dev_priv->sb_lock);
951 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
952 DPIO_PCS_TX_LANE2_RESET |
953 DPIO_PCS_TX_LANE1_RESET);
954 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
955 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
956 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
957 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
958 DPIO_PCS_CLK_SOFT_RESET);
959
960 /* Fix up inter-pair skew failure */
961 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
962 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
963 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
964 mutex_unlock(&dev_priv->sb_lock);
965}
Ander Conselvan de Oliveira5f68c272016-04-27 15:44:24 +0300966
967void vlv_phy_pre_encoder_enable(struct intel_encoder *encoder)
968{
969 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
970 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
971 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100972 struct drm_i915_private *dev_priv = to_i915(dev);
Ander Conselvan de Oliveira5f68c272016-04-27 15:44:24 +0300973 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
974 enum dpio_channel port = vlv_dport_to_channel(dport);
975 int pipe = intel_crtc->pipe;
976 u32 val;
977
978 mutex_lock(&dev_priv->sb_lock);
979
980 /* Enable clock channels for this port */
981 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
982 val = 0;
983 if (pipe)
984 val |= (1<<21);
985 else
986 val &= ~(1<<21);
987 val |= 0x001000c4;
988 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
989
990 /* Program lane clock */
991 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
992 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
993
994 mutex_unlock(&dev_priv->sb_lock);
995}
Ander Conselvan de Oliveira0f572eb2016-04-27 15:44:25 +0300996
997void vlv_phy_reset_lanes(struct intel_encoder *encoder)
998{
999 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Chris Wilsonfac5e232016-07-04 11:34:36 +01001000 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ander Conselvan de Oliveira0f572eb2016-04-27 15:44:25 +03001001 struct intel_crtc *intel_crtc =
1002 to_intel_crtc(encoder->base.crtc);
1003 enum dpio_channel port = vlv_dport_to_channel(dport);
1004 int pipe = intel_crtc->pipe;
1005
1006 mutex_lock(&dev_priv->sb_lock);
1007 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1008 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
1009 mutex_unlock(&dev_priv->sb_lock);
1010}