Merge tag 'v3.14' into drm-intel-next-queued
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_ddi.c
1 /*
2 * Copyright © 2012 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 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 *
26 */
27
28 #include "i915_drv.h"
29 #include "intel_drv.h"
30
31 /* HDMI/DVI modes ignore everything but the last 2 items. So we share
32 * them for both DP and FDI transports, allowing those ports to
33 * automatically adapt to HDMI connections as well
34 */
35 static const u32 hsw_ddi_translations_dp[] = {
36 0x00FFFFFF, 0x0006000E, /* DP parameters */
37 0x00D75FFF, 0x0005000A,
38 0x00C30FFF, 0x00040006,
39 0x80AAAFFF, 0x000B0000,
40 0x00FFFFFF, 0x0005000A,
41 0x00D75FFF, 0x000C0004,
42 0x80C30FFF, 0x000B0000,
43 0x00FFFFFF, 0x00040006,
44 0x80D75FFF, 0x000B0000,
45 };
46
47 static const u32 hsw_ddi_translations_fdi[] = {
48 0x00FFFFFF, 0x0007000E, /* FDI parameters */
49 0x00D75FFF, 0x000F000A,
50 0x00C30FFF, 0x00060006,
51 0x00AAAFFF, 0x001E0000,
52 0x00FFFFFF, 0x000F000A,
53 0x00D75FFF, 0x00160004,
54 0x00C30FFF, 0x001E0000,
55 0x00FFFFFF, 0x00060006,
56 0x00D75FFF, 0x001E0000,
57 };
58
59 static const u32 hsw_ddi_translations_hdmi[] = {
60 /* Idx NT mV diff T mV diff db */
61 0x00FFFFFF, 0x0006000E, /* 0: 400 400 0 */
62 0x00E79FFF, 0x000E000C, /* 1: 400 500 2 */
63 0x00D75FFF, 0x0005000A, /* 2: 400 600 3.5 */
64 0x00FFFFFF, 0x0005000A, /* 3: 600 600 0 */
65 0x00E79FFF, 0x001D0007, /* 4: 600 750 2 */
66 0x00D75FFF, 0x000C0004, /* 5: 600 900 3.5 */
67 0x00FFFFFF, 0x00040006, /* 6: 800 800 0 */
68 0x80E79FFF, 0x00030002, /* 7: 800 1000 2 */
69 0x00FFFFFF, 0x00140005, /* 8: 850 850 0 */
70 0x00FFFFFF, 0x000C0004, /* 9: 900 900 0 */
71 0x00FFFFFF, 0x001C0003, /* 10: 950 950 0 */
72 0x80FFFFFF, 0x00030002, /* 11: 1000 1000 0 */
73 };
74
75 static const u32 bdw_ddi_translations_edp[] = {
76 0x00FFFFFF, 0x00000012, /* eDP parameters */
77 0x00EBAFFF, 0x00020011,
78 0x00C71FFF, 0x0006000F,
79 0x00FFFFFF, 0x00020011,
80 0x00DB6FFF, 0x0005000F,
81 0x00BEEFFF, 0x000A000C,
82 0x00FFFFFF, 0x0005000F,
83 0x00DB6FFF, 0x000A000C,
84 0x00FFFFFF, 0x000A000C,
85 0x00FFFFFF, 0x00140006 /* HDMI parameters 800mV 0dB*/
86 };
87
88 static const u32 bdw_ddi_translations_dp[] = {
89 0x00FFFFFF, 0x0007000E, /* DP parameters */
90 0x00D75FFF, 0x000E000A,
91 0x00BEFFFF, 0x00140006,
92 0x00FFFFFF, 0x000E000A,
93 0x00D75FFF, 0x00180004,
94 0x80CB2FFF, 0x001B0002,
95 0x00F7DFFF, 0x00180004,
96 0x80D75FFF, 0x001B0002,
97 0x80FFFFFF, 0x001B0002,
98 0x00FFFFFF, 0x00140006 /* HDMI parameters 800mV 0dB*/
99 };
100
101 static const u32 bdw_ddi_translations_fdi[] = {
102 0x00FFFFFF, 0x0001000E, /* FDI parameters */
103 0x00D75FFF, 0x0004000A,
104 0x00C30FFF, 0x00070006,
105 0x00AAAFFF, 0x000C0000,
106 0x00FFFFFF, 0x0004000A,
107 0x00D75FFF, 0x00090004,
108 0x00C30FFF, 0x000C0000,
109 0x00FFFFFF, 0x00070006,
110 0x00D75FFF, 0x000C0000,
111 0x00FFFFFF, 0x00140006 /* HDMI parameters 800mV 0dB*/
112 };
113
114 enum port intel_ddi_get_encoder_port(struct intel_encoder *intel_encoder)
115 {
116 struct drm_encoder *encoder = &intel_encoder->base;
117 int type = intel_encoder->type;
118
119 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP ||
120 type == INTEL_OUTPUT_HDMI || type == INTEL_OUTPUT_UNKNOWN) {
121 struct intel_digital_port *intel_dig_port =
122 enc_to_dig_port(encoder);
123 return intel_dig_port->port;
124
125 } else if (type == INTEL_OUTPUT_ANALOG) {
126 return PORT_E;
127
128 } else {
129 DRM_ERROR("Invalid DDI encoder type %d\n", type);
130 BUG();
131 }
132 }
133
134 /*
135 * Starting with Haswell, DDI port buffers must be programmed with correct
136 * values in advance. The buffer values are different for FDI and DP modes,
137 * but the HDMI/DVI fields are shared among those. So we program the DDI
138 * in either FDI or DP modes only, as HDMI connections will work with both
139 * of those
140 */
141 static void intel_prepare_ddi_buffers(struct drm_device *dev, enum port port)
142 {
143 struct drm_i915_private *dev_priv = dev->dev_private;
144 u32 reg;
145 int i;
146 int hdmi_level = dev_priv->vbt.ddi_port_info[port].hdmi_level_shift;
147 const u32 *ddi_translations_fdi;
148 const u32 *ddi_translations_dp;
149 const u32 *ddi_translations_edp;
150 const u32 *ddi_translations;
151
152 if (IS_BROADWELL(dev)) {
153 ddi_translations_fdi = bdw_ddi_translations_fdi;
154 ddi_translations_dp = bdw_ddi_translations_dp;
155 ddi_translations_edp = bdw_ddi_translations_edp;
156 } else if (IS_HASWELL(dev)) {
157 ddi_translations_fdi = hsw_ddi_translations_fdi;
158 ddi_translations_dp = hsw_ddi_translations_dp;
159 ddi_translations_edp = hsw_ddi_translations_dp;
160 } else {
161 WARN(1, "ddi translation table missing\n");
162 ddi_translations_edp = bdw_ddi_translations_dp;
163 ddi_translations_fdi = bdw_ddi_translations_fdi;
164 ddi_translations_dp = bdw_ddi_translations_dp;
165 }
166
167 switch (port) {
168 case PORT_A:
169 ddi_translations = ddi_translations_edp;
170 break;
171 case PORT_B:
172 case PORT_C:
173 ddi_translations = ddi_translations_dp;
174 break;
175 case PORT_D:
176 if (intel_dp_is_edp(dev, PORT_D))
177 ddi_translations = ddi_translations_edp;
178 else
179 ddi_translations = ddi_translations_dp;
180 break;
181 case PORT_E:
182 ddi_translations = ddi_translations_fdi;
183 break;
184 default:
185 BUG();
186 }
187
188 for (i = 0, reg = DDI_BUF_TRANS(port);
189 i < ARRAY_SIZE(hsw_ddi_translations_fdi); i++) {
190 I915_WRITE(reg, ddi_translations[i]);
191 reg += 4;
192 }
193 /* Entry 9 is for HDMI: */
194 for (i = 0; i < 2; i++) {
195 I915_WRITE(reg, hsw_ddi_translations_hdmi[hdmi_level * 2 + i]);
196 reg += 4;
197 }
198 }
199
200 /* Program DDI buffers translations for DP. By default, program ports A-D in DP
201 * mode and port E for FDI.
202 */
203 void intel_prepare_ddi(struct drm_device *dev)
204 {
205 int port;
206
207 if (!HAS_DDI(dev))
208 return;
209
210 for (port = PORT_A; port <= PORT_E; port++)
211 intel_prepare_ddi_buffers(dev, port);
212 }
213
214 static const long hsw_ddi_buf_ctl_values[] = {
215 DDI_BUF_EMP_400MV_0DB_HSW,
216 DDI_BUF_EMP_400MV_3_5DB_HSW,
217 DDI_BUF_EMP_400MV_6DB_HSW,
218 DDI_BUF_EMP_400MV_9_5DB_HSW,
219 DDI_BUF_EMP_600MV_0DB_HSW,
220 DDI_BUF_EMP_600MV_3_5DB_HSW,
221 DDI_BUF_EMP_600MV_6DB_HSW,
222 DDI_BUF_EMP_800MV_0DB_HSW,
223 DDI_BUF_EMP_800MV_3_5DB_HSW
224 };
225
226 static void intel_wait_ddi_buf_idle(struct drm_i915_private *dev_priv,
227 enum port port)
228 {
229 uint32_t reg = DDI_BUF_CTL(port);
230 int i;
231
232 for (i = 0; i < 8; i++) {
233 udelay(1);
234 if (I915_READ(reg) & DDI_BUF_IS_IDLE)
235 return;
236 }
237 DRM_ERROR("Timeout waiting for DDI BUF %c idle bit\n", port_name(port));
238 }
239
240 /* Starting with Haswell, different DDI ports can work in FDI mode for
241 * connection to the PCH-located connectors. For this, it is necessary to train
242 * both the DDI port and PCH receiver for the desired DDI buffer settings.
243 *
244 * The recommended port to work in FDI mode is DDI E, which we use here. Also,
245 * please note that when FDI mode is active on DDI E, it shares 2 lines with
246 * DDI A (which is used for eDP)
247 */
248
249 void hsw_fdi_link_train(struct drm_crtc *crtc)
250 {
251 struct drm_device *dev = crtc->dev;
252 struct drm_i915_private *dev_priv = dev->dev_private;
253 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
254 u32 temp, i, rx_ctl_val;
255
256 /* Set the FDI_RX_MISC pwrdn lanes and the 2 workarounds listed at the
257 * mode set "sequence for CRT port" document:
258 * - TP1 to TP2 time with the default value
259 * - FDI delay to 90h
260 *
261 * WaFDIAutoLinkSetTimingOverrride:hsw
262 */
263 I915_WRITE(_FDI_RXA_MISC, FDI_RX_PWRDN_LANE1_VAL(2) |
264 FDI_RX_PWRDN_LANE0_VAL(2) |
265 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
266
267 /* Enable the PCH Receiver FDI PLL */
268 rx_ctl_val = dev_priv->fdi_rx_config | FDI_RX_ENHANCE_FRAME_ENABLE |
269 FDI_RX_PLL_ENABLE |
270 FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
271 I915_WRITE(_FDI_RXA_CTL, rx_ctl_val);
272 POSTING_READ(_FDI_RXA_CTL);
273 udelay(220);
274
275 /* Switch from Rawclk to PCDclk */
276 rx_ctl_val |= FDI_PCDCLK;
277 I915_WRITE(_FDI_RXA_CTL, rx_ctl_val);
278
279 /* Configure Port Clock Select */
280 I915_WRITE(PORT_CLK_SEL(PORT_E), intel_crtc->ddi_pll_sel);
281
282 /* Start the training iterating through available voltages and emphasis,
283 * testing each value twice. */
284 for (i = 0; i < ARRAY_SIZE(hsw_ddi_buf_ctl_values) * 2; i++) {
285 /* Configure DP_TP_CTL with auto-training */
286 I915_WRITE(DP_TP_CTL(PORT_E),
287 DP_TP_CTL_FDI_AUTOTRAIN |
288 DP_TP_CTL_ENHANCED_FRAME_ENABLE |
289 DP_TP_CTL_LINK_TRAIN_PAT1 |
290 DP_TP_CTL_ENABLE);
291
292 /* Configure and enable DDI_BUF_CTL for DDI E with next voltage.
293 * DDI E does not support port reversal, the functionality is
294 * achieved on the PCH side in FDI_RX_CTL, so no need to set the
295 * port reversal bit */
296 I915_WRITE(DDI_BUF_CTL(PORT_E),
297 DDI_BUF_CTL_ENABLE |
298 ((intel_crtc->config.fdi_lanes - 1) << 1) |
299 hsw_ddi_buf_ctl_values[i / 2]);
300 POSTING_READ(DDI_BUF_CTL(PORT_E));
301
302 udelay(600);
303
304 /* Program PCH FDI Receiver TU */
305 I915_WRITE(_FDI_RXA_TUSIZE1, TU_SIZE(64));
306
307 /* Enable PCH FDI Receiver with auto-training */
308 rx_ctl_val |= FDI_RX_ENABLE | FDI_LINK_TRAIN_AUTO;
309 I915_WRITE(_FDI_RXA_CTL, rx_ctl_val);
310 POSTING_READ(_FDI_RXA_CTL);
311
312 /* Wait for FDI receiver lane calibration */
313 udelay(30);
314
315 /* Unset FDI_RX_MISC pwrdn lanes */
316 temp = I915_READ(_FDI_RXA_MISC);
317 temp &= ~(FDI_RX_PWRDN_LANE1_MASK | FDI_RX_PWRDN_LANE0_MASK);
318 I915_WRITE(_FDI_RXA_MISC, temp);
319 POSTING_READ(_FDI_RXA_MISC);
320
321 /* Wait for FDI auto training time */
322 udelay(5);
323
324 temp = I915_READ(DP_TP_STATUS(PORT_E));
325 if (temp & DP_TP_STATUS_AUTOTRAIN_DONE) {
326 DRM_DEBUG_KMS("FDI link training done on step %d\n", i);
327
328 /* Enable normal pixel sending for FDI */
329 I915_WRITE(DP_TP_CTL(PORT_E),
330 DP_TP_CTL_FDI_AUTOTRAIN |
331 DP_TP_CTL_LINK_TRAIN_NORMAL |
332 DP_TP_CTL_ENHANCED_FRAME_ENABLE |
333 DP_TP_CTL_ENABLE);
334
335 return;
336 }
337
338 temp = I915_READ(DDI_BUF_CTL(PORT_E));
339 temp &= ~DDI_BUF_CTL_ENABLE;
340 I915_WRITE(DDI_BUF_CTL(PORT_E), temp);
341 POSTING_READ(DDI_BUF_CTL(PORT_E));
342
343 /* Disable DP_TP_CTL and FDI_RX_CTL and retry */
344 temp = I915_READ(DP_TP_CTL(PORT_E));
345 temp &= ~(DP_TP_CTL_ENABLE | DP_TP_CTL_LINK_TRAIN_MASK);
346 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
347 I915_WRITE(DP_TP_CTL(PORT_E), temp);
348 POSTING_READ(DP_TP_CTL(PORT_E));
349
350 intel_wait_ddi_buf_idle(dev_priv, PORT_E);
351
352 rx_ctl_val &= ~FDI_RX_ENABLE;
353 I915_WRITE(_FDI_RXA_CTL, rx_ctl_val);
354 POSTING_READ(_FDI_RXA_CTL);
355
356 /* Reset FDI_RX_MISC pwrdn lanes */
357 temp = I915_READ(_FDI_RXA_MISC);
358 temp &= ~(FDI_RX_PWRDN_LANE1_MASK | FDI_RX_PWRDN_LANE0_MASK);
359 temp |= FDI_RX_PWRDN_LANE1_VAL(2) | FDI_RX_PWRDN_LANE0_VAL(2);
360 I915_WRITE(_FDI_RXA_MISC, temp);
361 POSTING_READ(_FDI_RXA_MISC);
362 }
363
364 DRM_ERROR("FDI link training failed!\n");
365 }
366
367 static void intel_ddi_mode_set(struct intel_encoder *encoder)
368 {
369 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
370 int port = intel_ddi_get_encoder_port(encoder);
371 int pipe = crtc->pipe;
372 int type = encoder->type;
373 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
374
375 DRM_DEBUG_KMS("Preparing DDI mode on port %c, pipe %c\n",
376 port_name(port), pipe_name(pipe));
377
378 crtc->eld_vld = false;
379 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP) {
380 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
381 struct intel_digital_port *intel_dig_port =
382 enc_to_dig_port(&encoder->base);
383
384 intel_dp->DP = intel_dig_port->saved_port_bits |
385 DDI_BUF_CTL_ENABLE | DDI_BUF_EMP_400MV_0DB_HSW;
386 intel_dp->DP |= DDI_PORT_WIDTH(intel_dp->lane_count);
387
388 if (intel_dp->has_audio) {
389 DRM_DEBUG_DRIVER("DP audio on pipe %c on DDI\n",
390 pipe_name(crtc->pipe));
391
392 /* write eld */
393 DRM_DEBUG_DRIVER("DP audio: write eld information\n");
394 intel_write_eld(&encoder->base, adjusted_mode);
395 }
396 } else if (type == INTEL_OUTPUT_HDMI) {
397 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
398
399 if (intel_hdmi->has_audio) {
400 /* Proper support for digital audio needs a new logic
401 * and a new set of registers, so we leave it for future
402 * patch bombing.
403 */
404 DRM_DEBUG_DRIVER("HDMI audio on pipe %c on DDI\n",
405 pipe_name(crtc->pipe));
406
407 /* write eld */
408 DRM_DEBUG_DRIVER("HDMI audio: write eld information\n");
409 intel_write_eld(&encoder->base, adjusted_mode);
410 }
411
412 intel_hdmi->set_infoframes(&encoder->base, adjusted_mode);
413 }
414 }
415
416 static struct intel_encoder *
417 intel_ddi_get_crtc_encoder(struct drm_crtc *crtc)
418 {
419 struct drm_device *dev = crtc->dev;
420 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
421 struct intel_encoder *intel_encoder, *ret = NULL;
422 int num_encoders = 0;
423
424 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
425 ret = intel_encoder;
426 num_encoders++;
427 }
428
429 if (num_encoders != 1)
430 WARN(1, "%d encoders on crtc for pipe %c\n", num_encoders,
431 pipe_name(intel_crtc->pipe));
432
433 BUG_ON(ret == NULL);
434 return ret;
435 }
436
437 void intel_ddi_put_crtc_pll(struct drm_crtc *crtc)
438 {
439 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
440 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
441 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
442 uint32_t val;
443
444 switch (intel_crtc->ddi_pll_sel) {
445 case PORT_CLK_SEL_SPLL:
446 plls->spll_refcount--;
447 if (plls->spll_refcount == 0) {
448 DRM_DEBUG_KMS("Disabling SPLL\n");
449 val = I915_READ(SPLL_CTL);
450 WARN_ON(!(val & SPLL_PLL_ENABLE));
451 I915_WRITE(SPLL_CTL, val & ~SPLL_PLL_ENABLE);
452 POSTING_READ(SPLL_CTL);
453 }
454 break;
455 case PORT_CLK_SEL_WRPLL1:
456 plls->wrpll1_refcount--;
457 if (plls->wrpll1_refcount == 0) {
458 DRM_DEBUG_KMS("Disabling WRPLL 1\n");
459 val = I915_READ(WRPLL_CTL1);
460 WARN_ON(!(val & WRPLL_PLL_ENABLE));
461 I915_WRITE(WRPLL_CTL1, val & ~WRPLL_PLL_ENABLE);
462 POSTING_READ(WRPLL_CTL1);
463 }
464 break;
465 case PORT_CLK_SEL_WRPLL2:
466 plls->wrpll2_refcount--;
467 if (plls->wrpll2_refcount == 0) {
468 DRM_DEBUG_KMS("Disabling WRPLL 2\n");
469 val = I915_READ(WRPLL_CTL2);
470 WARN_ON(!(val & WRPLL_PLL_ENABLE));
471 I915_WRITE(WRPLL_CTL2, val & ~WRPLL_PLL_ENABLE);
472 POSTING_READ(WRPLL_CTL2);
473 }
474 break;
475 }
476
477 WARN(plls->spll_refcount < 0, "Invalid SPLL refcount\n");
478 WARN(plls->wrpll1_refcount < 0, "Invalid WRPLL1 refcount\n");
479 WARN(plls->wrpll2_refcount < 0, "Invalid WRPLL2 refcount\n");
480
481 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_NONE;
482 }
483
484 #define LC_FREQ 2700
485 #define LC_FREQ_2K (LC_FREQ * 2000)
486
487 #define P_MIN 2
488 #define P_MAX 64
489 #define P_INC 2
490
491 /* Constraints for PLL good behavior */
492 #define REF_MIN 48
493 #define REF_MAX 400
494 #define VCO_MIN 2400
495 #define VCO_MAX 4800
496
497 #define ABS_DIFF(a, b) ((a > b) ? (a - b) : (b - a))
498
499 struct wrpll_rnp {
500 unsigned p, n2, r2;
501 };
502
503 static unsigned wrpll_get_budget_for_freq(int clock)
504 {
505 unsigned budget;
506
507 switch (clock) {
508 case 25175000:
509 case 25200000:
510 case 27000000:
511 case 27027000:
512 case 37762500:
513 case 37800000:
514 case 40500000:
515 case 40541000:
516 case 54000000:
517 case 54054000:
518 case 59341000:
519 case 59400000:
520 case 72000000:
521 case 74176000:
522 case 74250000:
523 case 81000000:
524 case 81081000:
525 case 89012000:
526 case 89100000:
527 case 108000000:
528 case 108108000:
529 case 111264000:
530 case 111375000:
531 case 148352000:
532 case 148500000:
533 case 162000000:
534 case 162162000:
535 case 222525000:
536 case 222750000:
537 case 296703000:
538 case 297000000:
539 budget = 0;
540 break;
541 case 233500000:
542 case 245250000:
543 case 247750000:
544 case 253250000:
545 case 298000000:
546 budget = 1500;
547 break;
548 case 169128000:
549 case 169500000:
550 case 179500000:
551 case 202000000:
552 budget = 2000;
553 break;
554 case 256250000:
555 case 262500000:
556 case 270000000:
557 case 272500000:
558 case 273750000:
559 case 280750000:
560 case 281250000:
561 case 286000000:
562 case 291750000:
563 budget = 4000;
564 break;
565 case 267250000:
566 case 268500000:
567 budget = 5000;
568 break;
569 default:
570 budget = 1000;
571 break;
572 }
573
574 return budget;
575 }
576
577 static void wrpll_update_rnp(uint64_t freq2k, unsigned budget,
578 unsigned r2, unsigned n2, unsigned p,
579 struct wrpll_rnp *best)
580 {
581 uint64_t a, b, c, d, diff, diff_best;
582
583 /* No best (r,n,p) yet */
584 if (best->p == 0) {
585 best->p = p;
586 best->n2 = n2;
587 best->r2 = r2;
588 return;
589 }
590
591 /*
592 * Output clock is (LC_FREQ_2K / 2000) * N / (P * R), which compares to
593 * freq2k.
594 *
595 * delta = 1e6 *
596 * abs(freq2k - (LC_FREQ_2K * n2/(p * r2))) /
597 * freq2k;
598 *
599 * and we would like delta <= budget.
600 *
601 * If the discrepancy is above the PPM-based budget, always prefer to
602 * improve upon the previous solution. However, if you're within the
603 * budget, try to maximize Ref * VCO, that is N / (P * R^2).
604 */
605 a = freq2k * budget * p * r2;
606 b = freq2k * budget * best->p * best->r2;
607 diff = ABS_DIFF((freq2k * p * r2), (LC_FREQ_2K * n2));
608 diff_best = ABS_DIFF((freq2k * best->p * best->r2),
609 (LC_FREQ_2K * best->n2));
610 c = 1000000 * diff;
611 d = 1000000 * diff_best;
612
613 if (a < c && b < d) {
614 /* If both are above the budget, pick the closer */
615 if (best->p * best->r2 * diff < p * r2 * diff_best) {
616 best->p = p;
617 best->n2 = n2;
618 best->r2 = r2;
619 }
620 } else if (a >= c && b < d) {
621 /* If A is below the threshold but B is above it? Update. */
622 best->p = p;
623 best->n2 = n2;
624 best->r2 = r2;
625 } else if (a >= c && b >= d) {
626 /* Both are below the limit, so pick the higher n2/(r2*r2) */
627 if (n2 * best->r2 * best->r2 > best->n2 * r2 * r2) {
628 best->p = p;
629 best->n2 = n2;
630 best->r2 = r2;
631 }
632 }
633 /* Otherwise a < c && b >= d, do nothing */
634 }
635
636 static int intel_ddi_calc_wrpll_link(struct drm_i915_private *dev_priv,
637 int reg)
638 {
639 int refclk = LC_FREQ;
640 int n, p, r;
641 u32 wrpll;
642
643 wrpll = I915_READ(reg);
644 switch (wrpll & SPLL_PLL_REF_MASK) {
645 case SPLL_PLL_SSC:
646 case SPLL_PLL_NON_SSC:
647 /*
648 * We could calculate spread here, but our checking
649 * code only cares about 5% accuracy, and spread is a max of
650 * 0.5% downspread.
651 */
652 refclk = 135;
653 break;
654 case SPLL_PLL_LCPLL:
655 refclk = LC_FREQ;
656 break;
657 default:
658 WARN(1, "bad wrpll refclk\n");
659 return 0;
660 }
661
662 r = wrpll & WRPLL_DIVIDER_REF_MASK;
663 p = (wrpll & WRPLL_DIVIDER_POST_MASK) >> WRPLL_DIVIDER_POST_SHIFT;
664 n = (wrpll & WRPLL_DIVIDER_FB_MASK) >> WRPLL_DIVIDER_FB_SHIFT;
665
666 /* Convert to KHz, p & r have a fixed point portion */
667 return (refclk * n * 100) / (p * r);
668 }
669
670 static void intel_ddi_clock_get(struct intel_encoder *encoder,
671 struct intel_crtc_config *pipe_config)
672 {
673 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
674 enum port port = intel_ddi_get_encoder_port(encoder);
675 int link_clock = 0;
676 u32 val, pll;
677
678 val = I915_READ(PORT_CLK_SEL(port));
679 switch (val & PORT_CLK_SEL_MASK) {
680 case PORT_CLK_SEL_LCPLL_810:
681 link_clock = 81000;
682 break;
683 case PORT_CLK_SEL_LCPLL_1350:
684 link_clock = 135000;
685 break;
686 case PORT_CLK_SEL_LCPLL_2700:
687 link_clock = 270000;
688 break;
689 case PORT_CLK_SEL_WRPLL1:
690 link_clock = intel_ddi_calc_wrpll_link(dev_priv, WRPLL_CTL1);
691 break;
692 case PORT_CLK_SEL_WRPLL2:
693 link_clock = intel_ddi_calc_wrpll_link(dev_priv, WRPLL_CTL2);
694 break;
695 case PORT_CLK_SEL_SPLL:
696 pll = I915_READ(SPLL_CTL) & SPLL_PLL_FREQ_MASK;
697 if (pll == SPLL_PLL_FREQ_810MHz)
698 link_clock = 81000;
699 else if (pll == SPLL_PLL_FREQ_1350MHz)
700 link_clock = 135000;
701 else if (pll == SPLL_PLL_FREQ_2700MHz)
702 link_clock = 270000;
703 else {
704 WARN(1, "bad spll freq\n");
705 return;
706 }
707 break;
708 default:
709 WARN(1, "bad port clock sel\n");
710 return;
711 }
712
713 pipe_config->port_clock = link_clock * 2;
714
715 if (pipe_config->has_pch_encoder)
716 pipe_config->adjusted_mode.crtc_clock =
717 intel_dotclock_calculate(pipe_config->port_clock,
718 &pipe_config->fdi_m_n);
719 else if (pipe_config->has_dp_encoder)
720 pipe_config->adjusted_mode.crtc_clock =
721 intel_dotclock_calculate(pipe_config->port_clock,
722 &pipe_config->dp_m_n);
723 else
724 pipe_config->adjusted_mode.crtc_clock = pipe_config->port_clock;
725 }
726
727 static void
728 intel_ddi_calculate_wrpll(int clock /* in Hz */,
729 unsigned *r2_out, unsigned *n2_out, unsigned *p_out)
730 {
731 uint64_t freq2k;
732 unsigned p, n2, r2;
733 struct wrpll_rnp best = { 0, 0, 0 };
734 unsigned budget;
735
736 freq2k = clock / 100;
737
738 budget = wrpll_get_budget_for_freq(clock);
739
740 /* Special case handling for 540 pixel clock: bypass WR PLL entirely
741 * and directly pass the LC PLL to it. */
742 if (freq2k == 5400000) {
743 *n2_out = 2;
744 *p_out = 1;
745 *r2_out = 2;
746 return;
747 }
748
749 /*
750 * Ref = LC_FREQ / R, where Ref is the actual reference input seen by
751 * the WR PLL.
752 *
753 * We want R so that REF_MIN <= Ref <= REF_MAX.
754 * Injecting R2 = 2 * R gives:
755 * REF_MAX * r2 > LC_FREQ * 2 and
756 * REF_MIN * r2 < LC_FREQ * 2
757 *
758 * Which means the desired boundaries for r2 are:
759 * LC_FREQ * 2 / REF_MAX < r2 < LC_FREQ * 2 / REF_MIN
760 *
761 */
762 for (r2 = LC_FREQ * 2 / REF_MAX + 1;
763 r2 <= LC_FREQ * 2 / REF_MIN;
764 r2++) {
765
766 /*
767 * VCO = N * Ref, that is: VCO = N * LC_FREQ / R
768 *
769 * Once again we want VCO_MIN <= VCO <= VCO_MAX.
770 * Injecting R2 = 2 * R and N2 = 2 * N, we get:
771 * VCO_MAX * r2 > n2 * LC_FREQ and
772 * VCO_MIN * r2 < n2 * LC_FREQ)
773 *
774 * Which means the desired boundaries for n2 are:
775 * VCO_MIN * r2 / LC_FREQ < n2 < VCO_MAX * r2 / LC_FREQ
776 */
777 for (n2 = VCO_MIN * r2 / LC_FREQ + 1;
778 n2 <= VCO_MAX * r2 / LC_FREQ;
779 n2++) {
780
781 for (p = P_MIN; p <= P_MAX; p += P_INC)
782 wrpll_update_rnp(freq2k, budget,
783 r2, n2, p, &best);
784 }
785 }
786
787 *n2_out = best.n2;
788 *p_out = best.p;
789 *r2_out = best.r2;
790 }
791
792 /*
793 * Tries to find a PLL for the CRTC. If it finds, it increases the refcount and
794 * stores it in intel_crtc->ddi_pll_sel, so other mode sets won't be able to
795 * steal the selected PLL. You need to call intel_ddi_pll_enable to actually
796 * enable the PLL.
797 */
798 bool intel_ddi_pll_select(struct intel_crtc *intel_crtc)
799 {
800 struct drm_crtc *crtc = &intel_crtc->base;
801 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
802 struct drm_encoder *encoder = &intel_encoder->base;
803 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
804 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
805 int type = intel_encoder->type;
806 enum pipe pipe = intel_crtc->pipe;
807 int clock = intel_crtc->config.port_clock;
808
809 intel_ddi_put_crtc_pll(crtc);
810
811 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP) {
812 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
813
814 switch (intel_dp->link_bw) {
815 case DP_LINK_BW_1_62:
816 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_LCPLL_810;
817 break;
818 case DP_LINK_BW_2_7:
819 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_LCPLL_1350;
820 break;
821 case DP_LINK_BW_5_4:
822 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_LCPLL_2700;
823 break;
824 default:
825 DRM_ERROR("Link bandwidth %d unsupported\n",
826 intel_dp->link_bw);
827 return false;
828 }
829
830 } else if (type == INTEL_OUTPUT_HDMI) {
831 uint32_t reg, val;
832 unsigned p, n2, r2;
833
834 intel_ddi_calculate_wrpll(clock * 1000, &r2, &n2, &p);
835
836 val = WRPLL_PLL_ENABLE | WRPLL_PLL_SELECT_LCPLL_2700 |
837 WRPLL_DIVIDER_REFERENCE(r2) | WRPLL_DIVIDER_FEEDBACK(n2) |
838 WRPLL_DIVIDER_POST(p);
839
840 if (val == I915_READ(WRPLL_CTL1)) {
841 DRM_DEBUG_KMS("Reusing WRPLL 1 on pipe %c\n",
842 pipe_name(pipe));
843 reg = WRPLL_CTL1;
844 } else if (val == I915_READ(WRPLL_CTL2)) {
845 DRM_DEBUG_KMS("Reusing WRPLL 2 on pipe %c\n",
846 pipe_name(pipe));
847 reg = WRPLL_CTL2;
848 } else if (plls->wrpll1_refcount == 0) {
849 DRM_DEBUG_KMS("Using WRPLL 1 on pipe %c\n",
850 pipe_name(pipe));
851 reg = WRPLL_CTL1;
852 } else if (plls->wrpll2_refcount == 0) {
853 DRM_DEBUG_KMS("Using WRPLL 2 on pipe %c\n",
854 pipe_name(pipe));
855 reg = WRPLL_CTL2;
856 } else {
857 DRM_ERROR("No WRPLLs available!\n");
858 return false;
859 }
860
861 DRM_DEBUG_KMS("WRPLL: %dKHz refresh rate with p=%d, n2=%d r2=%d\n",
862 clock, p, n2, r2);
863
864 if (reg == WRPLL_CTL1) {
865 plls->wrpll1_refcount++;
866 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_WRPLL1;
867 } else {
868 plls->wrpll2_refcount++;
869 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_WRPLL2;
870 }
871
872 } else if (type == INTEL_OUTPUT_ANALOG) {
873 if (plls->spll_refcount == 0) {
874 DRM_DEBUG_KMS("Using SPLL on pipe %c\n",
875 pipe_name(pipe));
876 plls->spll_refcount++;
877 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_SPLL;
878 } else {
879 DRM_ERROR("SPLL already in use\n");
880 return false;
881 }
882
883 } else {
884 WARN(1, "Invalid DDI encoder type %d\n", type);
885 return false;
886 }
887
888 return true;
889 }
890
891 /*
892 * To be called after intel_ddi_pll_select(). That one selects the PLL to be
893 * used, this one actually enables the PLL.
894 */
895 void intel_ddi_pll_enable(struct intel_crtc *crtc)
896 {
897 struct drm_device *dev = crtc->base.dev;
898 struct drm_i915_private *dev_priv = dev->dev_private;
899 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
900 int clock = crtc->config.port_clock;
901 uint32_t reg, cur_val, new_val;
902 int refcount;
903 const char *pll_name;
904 uint32_t enable_bit = (1 << 31);
905 unsigned int p, n2, r2;
906
907 BUILD_BUG_ON(enable_bit != SPLL_PLL_ENABLE);
908 BUILD_BUG_ON(enable_bit != WRPLL_PLL_ENABLE);
909
910 switch (crtc->ddi_pll_sel) {
911 case PORT_CLK_SEL_LCPLL_2700:
912 case PORT_CLK_SEL_LCPLL_1350:
913 case PORT_CLK_SEL_LCPLL_810:
914 /*
915 * LCPLL should always be enabled at this point of the mode set
916 * sequence, so nothing to do.
917 */
918 return;
919
920 case PORT_CLK_SEL_SPLL:
921 pll_name = "SPLL";
922 reg = SPLL_CTL;
923 refcount = plls->spll_refcount;
924 new_val = SPLL_PLL_ENABLE | SPLL_PLL_FREQ_1350MHz |
925 SPLL_PLL_SSC;
926 break;
927
928 case PORT_CLK_SEL_WRPLL1:
929 case PORT_CLK_SEL_WRPLL2:
930 if (crtc->ddi_pll_sel == PORT_CLK_SEL_WRPLL1) {
931 pll_name = "WRPLL1";
932 reg = WRPLL_CTL1;
933 refcount = plls->wrpll1_refcount;
934 } else {
935 pll_name = "WRPLL2";
936 reg = WRPLL_CTL2;
937 refcount = plls->wrpll2_refcount;
938 }
939
940 intel_ddi_calculate_wrpll(clock * 1000, &r2, &n2, &p);
941
942 new_val = WRPLL_PLL_ENABLE | WRPLL_PLL_SELECT_LCPLL_2700 |
943 WRPLL_DIVIDER_REFERENCE(r2) |
944 WRPLL_DIVIDER_FEEDBACK(n2) | WRPLL_DIVIDER_POST(p);
945
946 break;
947
948 case PORT_CLK_SEL_NONE:
949 WARN(1, "Bad selected pll: PORT_CLK_SEL_NONE\n");
950 return;
951 default:
952 WARN(1, "Bad selected pll: 0x%08x\n", crtc->ddi_pll_sel);
953 return;
954 }
955
956 cur_val = I915_READ(reg);
957
958 WARN(refcount < 1, "Bad %s refcount: %d\n", pll_name, refcount);
959 if (refcount == 1) {
960 WARN(cur_val & enable_bit, "%s already enabled\n", pll_name);
961 I915_WRITE(reg, new_val);
962 POSTING_READ(reg);
963 udelay(20);
964 } else {
965 WARN((cur_val & enable_bit) == 0, "%s disabled\n", pll_name);
966 }
967 }
968
969 void intel_ddi_set_pipe_settings(struct drm_crtc *crtc)
970 {
971 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
972 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
973 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
974 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
975 int type = intel_encoder->type;
976 uint32_t temp;
977
978 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP) {
979
980 temp = TRANS_MSA_SYNC_CLK;
981 switch (intel_crtc->config.pipe_bpp) {
982 case 18:
983 temp |= TRANS_MSA_6_BPC;
984 break;
985 case 24:
986 temp |= TRANS_MSA_8_BPC;
987 break;
988 case 30:
989 temp |= TRANS_MSA_10_BPC;
990 break;
991 case 36:
992 temp |= TRANS_MSA_12_BPC;
993 break;
994 default:
995 BUG();
996 }
997 I915_WRITE(TRANS_MSA_MISC(cpu_transcoder), temp);
998 }
999 }
1000
1001 void intel_ddi_enable_transcoder_func(struct drm_crtc *crtc)
1002 {
1003 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1004 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
1005 struct drm_encoder *encoder = &intel_encoder->base;
1006 struct drm_device *dev = crtc->dev;
1007 struct drm_i915_private *dev_priv = dev->dev_private;
1008 enum pipe pipe = intel_crtc->pipe;
1009 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1010 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1011 int type = intel_encoder->type;
1012 uint32_t temp;
1013
1014 /* Enable TRANS_DDI_FUNC_CTL for the pipe to work in HDMI mode */
1015 temp = TRANS_DDI_FUNC_ENABLE;
1016 temp |= TRANS_DDI_SELECT_PORT(port);
1017
1018 switch (intel_crtc->config.pipe_bpp) {
1019 case 18:
1020 temp |= TRANS_DDI_BPC_6;
1021 break;
1022 case 24:
1023 temp |= TRANS_DDI_BPC_8;
1024 break;
1025 case 30:
1026 temp |= TRANS_DDI_BPC_10;
1027 break;
1028 case 36:
1029 temp |= TRANS_DDI_BPC_12;
1030 break;
1031 default:
1032 BUG();
1033 }
1034
1035 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_PVSYNC)
1036 temp |= TRANS_DDI_PVSYNC;
1037 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_PHSYNC)
1038 temp |= TRANS_DDI_PHSYNC;
1039
1040 if (cpu_transcoder == TRANSCODER_EDP) {
1041 switch (pipe) {
1042 case PIPE_A:
1043 /* On Haswell, can only use the always-on power well for
1044 * eDP when not using the panel fitter, and when not
1045 * using motion blur mitigation (which we don't
1046 * support). */
1047 if (IS_HASWELL(dev) && intel_crtc->config.pch_pfit.enabled)
1048 temp |= TRANS_DDI_EDP_INPUT_A_ONOFF;
1049 else
1050 temp |= TRANS_DDI_EDP_INPUT_A_ON;
1051 break;
1052 case PIPE_B:
1053 temp |= TRANS_DDI_EDP_INPUT_B_ONOFF;
1054 break;
1055 case PIPE_C:
1056 temp |= TRANS_DDI_EDP_INPUT_C_ONOFF;
1057 break;
1058 default:
1059 BUG();
1060 break;
1061 }
1062 }
1063
1064 if (type == INTEL_OUTPUT_HDMI) {
1065 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
1066
1067 if (intel_hdmi->has_hdmi_sink)
1068 temp |= TRANS_DDI_MODE_SELECT_HDMI;
1069 else
1070 temp |= TRANS_DDI_MODE_SELECT_DVI;
1071
1072 } else if (type == INTEL_OUTPUT_ANALOG) {
1073 temp |= TRANS_DDI_MODE_SELECT_FDI;
1074 temp |= (intel_crtc->config.fdi_lanes - 1) << 1;
1075
1076 } else if (type == INTEL_OUTPUT_DISPLAYPORT ||
1077 type == INTEL_OUTPUT_EDP) {
1078 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1079
1080 temp |= TRANS_DDI_MODE_SELECT_DP_SST;
1081
1082 temp |= DDI_PORT_WIDTH(intel_dp->lane_count);
1083 } else {
1084 WARN(1, "Invalid encoder type %d for pipe %c\n",
1085 intel_encoder->type, pipe_name(pipe));
1086 }
1087
1088 I915_WRITE(TRANS_DDI_FUNC_CTL(cpu_transcoder), temp);
1089 }
1090
1091 void intel_ddi_disable_transcoder_func(struct drm_i915_private *dev_priv,
1092 enum transcoder cpu_transcoder)
1093 {
1094 uint32_t reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
1095 uint32_t val = I915_READ(reg);
1096
1097 val &= ~(TRANS_DDI_FUNC_ENABLE | TRANS_DDI_PORT_MASK);
1098 val |= TRANS_DDI_PORT_NONE;
1099 I915_WRITE(reg, val);
1100 }
1101
1102 bool intel_ddi_connector_get_hw_state(struct intel_connector *intel_connector)
1103 {
1104 struct drm_device *dev = intel_connector->base.dev;
1105 struct drm_i915_private *dev_priv = dev->dev_private;
1106 struct intel_encoder *intel_encoder = intel_connector->encoder;
1107 int type = intel_connector->base.connector_type;
1108 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1109 enum pipe pipe = 0;
1110 enum transcoder cpu_transcoder;
1111 uint32_t tmp;
1112
1113 if (!intel_encoder->get_hw_state(intel_encoder, &pipe))
1114 return false;
1115
1116 if (port == PORT_A)
1117 cpu_transcoder = TRANSCODER_EDP;
1118 else
1119 cpu_transcoder = (enum transcoder) pipe;
1120
1121 tmp = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
1122
1123 switch (tmp & TRANS_DDI_MODE_SELECT_MASK) {
1124 case TRANS_DDI_MODE_SELECT_HDMI:
1125 case TRANS_DDI_MODE_SELECT_DVI:
1126 return (type == DRM_MODE_CONNECTOR_HDMIA);
1127
1128 case TRANS_DDI_MODE_SELECT_DP_SST:
1129 if (type == DRM_MODE_CONNECTOR_eDP)
1130 return true;
1131 case TRANS_DDI_MODE_SELECT_DP_MST:
1132 return (type == DRM_MODE_CONNECTOR_DisplayPort);
1133
1134 case TRANS_DDI_MODE_SELECT_FDI:
1135 return (type == DRM_MODE_CONNECTOR_VGA);
1136
1137 default:
1138 return false;
1139 }
1140 }
1141
1142 bool intel_ddi_get_hw_state(struct intel_encoder *encoder,
1143 enum pipe *pipe)
1144 {
1145 struct drm_device *dev = encoder->base.dev;
1146 struct drm_i915_private *dev_priv = dev->dev_private;
1147 enum port port = intel_ddi_get_encoder_port(encoder);
1148 enum intel_display_power_domain power_domain;
1149 u32 tmp;
1150 int i;
1151
1152 power_domain = intel_display_port_power_domain(encoder);
1153 if (!intel_display_power_enabled(dev_priv, power_domain))
1154 return false;
1155
1156 tmp = I915_READ(DDI_BUF_CTL(port));
1157
1158 if (!(tmp & DDI_BUF_CTL_ENABLE))
1159 return false;
1160
1161 if (port == PORT_A) {
1162 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
1163
1164 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
1165 case TRANS_DDI_EDP_INPUT_A_ON:
1166 case TRANS_DDI_EDP_INPUT_A_ONOFF:
1167 *pipe = PIPE_A;
1168 break;
1169 case TRANS_DDI_EDP_INPUT_B_ONOFF:
1170 *pipe = PIPE_B;
1171 break;
1172 case TRANS_DDI_EDP_INPUT_C_ONOFF:
1173 *pipe = PIPE_C;
1174 break;
1175 }
1176
1177 return true;
1178 } else {
1179 for (i = TRANSCODER_A; i <= TRANSCODER_C; i++) {
1180 tmp = I915_READ(TRANS_DDI_FUNC_CTL(i));
1181
1182 if ((tmp & TRANS_DDI_PORT_MASK)
1183 == TRANS_DDI_SELECT_PORT(port)) {
1184 *pipe = i;
1185 return true;
1186 }
1187 }
1188 }
1189
1190 DRM_DEBUG_KMS("No pipe for ddi port %c found\n", port_name(port));
1191
1192 return false;
1193 }
1194
1195 static uint32_t intel_ddi_get_crtc_pll(struct drm_i915_private *dev_priv,
1196 enum pipe pipe)
1197 {
1198 uint32_t temp, ret;
1199 enum port port = I915_MAX_PORTS;
1200 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1201 pipe);
1202 int i;
1203
1204 if (cpu_transcoder == TRANSCODER_EDP) {
1205 port = PORT_A;
1206 } else {
1207 temp = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
1208 temp &= TRANS_DDI_PORT_MASK;
1209
1210 for (i = PORT_B; i <= PORT_E; i++)
1211 if (temp == TRANS_DDI_SELECT_PORT(i))
1212 port = i;
1213 }
1214
1215 if (port == I915_MAX_PORTS) {
1216 WARN(1, "Pipe %c enabled on an unknown port\n",
1217 pipe_name(pipe));
1218 ret = PORT_CLK_SEL_NONE;
1219 } else {
1220 ret = I915_READ(PORT_CLK_SEL(port));
1221 DRM_DEBUG_KMS("Pipe %c connected to port %c using clock "
1222 "0x%08x\n", pipe_name(pipe), port_name(port),
1223 ret);
1224 }
1225
1226 return ret;
1227 }
1228
1229 void intel_ddi_setup_hw_pll_state(struct drm_device *dev)
1230 {
1231 struct drm_i915_private *dev_priv = dev->dev_private;
1232 enum pipe pipe;
1233 struct intel_crtc *intel_crtc;
1234
1235 dev_priv->ddi_plls.spll_refcount = 0;
1236 dev_priv->ddi_plls.wrpll1_refcount = 0;
1237 dev_priv->ddi_plls.wrpll2_refcount = 0;
1238
1239 for_each_pipe(pipe) {
1240 intel_crtc =
1241 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
1242
1243 if (!intel_crtc->active) {
1244 intel_crtc->ddi_pll_sel = PORT_CLK_SEL_NONE;
1245 continue;
1246 }
1247
1248 intel_crtc->ddi_pll_sel = intel_ddi_get_crtc_pll(dev_priv,
1249 pipe);
1250
1251 switch (intel_crtc->ddi_pll_sel) {
1252 case PORT_CLK_SEL_SPLL:
1253 dev_priv->ddi_plls.spll_refcount++;
1254 break;
1255 case PORT_CLK_SEL_WRPLL1:
1256 dev_priv->ddi_plls.wrpll1_refcount++;
1257 break;
1258 case PORT_CLK_SEL_WRPLL2:
1259 dev_priv->ddi_plls.wrpll2_refcount++;
1260 break;
1261 }
1262 }
1263 }
1264
1265 void intel_ddi_enable_pipe_clock(struct intel_crtc *intel_crtc)
1266 {
1267 struct drm_crtc *crtc = &intel_crtc->base;
1268 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1269 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
1270 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1271 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1272
1273 if (cpu_transcoder != TRANSCODER_EDP)
1274 I915_WRITE(TRANS_CLK_SEL(cpu_transcoder),
1275 TRANS_CLK_SEL_PORT(port));
1276 }
1277
1278 void intel_ddi_disable_pipe_clock(struct intel_crtc *intel_crtc)
1279 {
1280 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1281 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1282
1283 if (cpu_transcoder != TRANSCODER_EDP)
1284 I915_WRITE(TRANS_CLK_SEL(cpu_transcoder),
1285 TRANS_CLK_SEL_DISABLED);
1286 }
1287
1288 static void intel_ddi_pre_enable(struct intel_encoder *intel_encoder)
1289 {
1290 struct drm_encoder *encoder = &intel_encoder->base;
1291 struct drm_crtc *crtc = encoder->crtc;
1292 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
1293 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1294 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1295 int type = intel_encoder->type;
1296
1297 if (type == INTEL_OUTPUT_EDP) {
1298 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1299 intel_edp_panel_on(intel_dp);
1300 }
1301
1302 WARN_ON(intel_crtc->ddi_pll_sel == PORT_CLK_SEL_NONE);
1303 I915_WRITE(PORT_CLK_SEL(port), intel_crtc->ddi_pll_sel);
1304
1305 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP) {
1306 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1307
1308 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1309 intel_dp_start_link_train(intel_dp);
1310 intel_dp_complete_link_train(intel_dp);
1311 if (port != PORT_A)
1312 intel_dp_stop_link_train(intel_dp);
1313 }
1314 }
1315
1316 static void intel_ddi_post_disable(struct intel_encoder *intel_encoder)
1317 {
1318 struct drm_encoder *encoder = &intel_encoder->base;
1319 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
1320 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1321 int type = intel_encoder->type;
1322 uint32_t val;
1323 bool wait = false;
1324
1325 val = I915_READ(DDI_BUF_CTL(port));
1326 if (val & DDI_BUF_CTL_ENABLE) {
1327 val &= ~DDI_BUF_CTL_ENABLE;
1328 I915_WRITE(DDI_BUF_CTL(port), val);
1329 wait = true;
1330 }
1331
1332 val = I915_READ(DP_TP_CTL(port));
1333 val &= ~(DP_TP_CTL_ENABLE | DP_TP_CTL_LINK_TRAIN_MASK);
1334 val |= DP_TP_CTL_LINK_TRAIN_PAT1;
1335 I915_WRITE(DP_TP_CTL(port), val);
1336
1337 if (wait)
1338 intel_wait_ddi_buf_idle(dev_priv, port);
1339
1340 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP) {
1341 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1342 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
1343 intel_edp_panel_vdd_on(intel_dp);
1344 intel_edp_panel_off(intel_dp);
1345 }
1346
1347 I915_WRITE(PORT_CLK_SEL(port), PORT_CLK_SEL_NONE);
1348 }
1349
1350 static void intel_enable_ddi(struct intel_encoder *intel_encoder)
1351 {
1352 struct drm_encoder *encoder = &intel_encoder->base;
1353 struct drm_crtc *crtc = encoder->crtc;
1354 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1355 int pipe = intel_crtc->pipe;
1356 struct drm_device *dev = encoder->dev;
1357 struct drm_i915_private *dev_priv = dev->dev_private;
1358 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1359 int type = intel_encoder->type;
1360 uint32_t tmp;
1361
1362 if (type == INTEL_OUTPUT_HDMI) {
1363 struct intel_digital_port *intel_dig_port =
1364 enc_to_dig_port(encoder);
1365
1366 /* In HDMI/DVI mode, the port width, and swing/emphasis values
1367 * are ignored so nothing special needs to be done besides
1368 * enabling the port.
1369 */
1370 I915_WRITE(DDI_BUF_CTL(port),
1371 intel_dig_port->saved_port_bits |
1372 DDI_BUF_CTL_ENABLE);
1373 } else if (type == INTEL_OUTPUT_EDP) {
1374 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1375
1376 if (port == PORT_A)
1377 intel_dp_stop_link_train(intel_dp);
1378
1379 intel_edp_backlight_on(intel_dp);
1380 intel_edp_psr_enable(intel_dp);
1381 }
1382
1383 if (intel_crtc->eld_vld && type != INTEL_OUTPUT_EDP) {
1384 tmp = I915_READ(HSW_AUD_PIN_ELD_CP_VLD);
1385 tmp |= ((AUDIO_OUTPUT_ENABLE_A | AUDIO_ELD_VALID_A) << (pipe * 4));
1386 I915_WRITE(HSW_AUD_PIN_ELD_CP_VLD, tmp);
1387 }
1388 }
1389
1390 static void intel_disable_ddi(struct intel_encoder *intel_encoder)
1391 {
1392 struct drm_encoder *encoder = &intel_encoder->base;
1393 struct drm_crtc *crtc = encoder->crtc;
1394 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1395 int pipe = intel_crtc->pipe;
1396 int type = intel_encoder->type;
1397 struct drm_device *dev = encoder->dev;
1398 struct drm_i915_private *dev_priv = dev->dev_private;
1399 uint32_t tmp;
1400
1401 if (intel_crtc->eld_vld && type != INTEL_OUTPUT_EDP) {
1402 tmp = I915_READ(HSW_AUD_PIN_ELD_CP_VLD);
1403 tmp &= ~((AUDIO_OUTPUT_ENABLE_A | AUDIO_ELD_VALID_A) <<
1404 (pipe * 4));
1405 I915_WRITE(HSW_AUD_PIN_ELD_CP_VLD, tmp);
1406 }
1407
1408 if (type == INTEL_OUTPUT_EDP) {
1409 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1410
1411 intel_edp_psr_disable(intel_dp);
1412 intel_edp_backlight_off(intel_dp);
1413 }
1414 }
1415
1416 int intel_ddi_get_cdclk_freq(struct drm_i915_private *dev_priv)
1417 {
1418 struct drm_device *dev = dev_priv->dev;
1419 uint32_t lcpll = I915_READ(LCPLL_CTL);
1420 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
1421
1422 if (lcpll & LCPLL_CD_SOURCE_FCLK) {
1423 return 800000;
1424 } else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT) {
1425 return 450000;
1426 } else if (freq == LCPLL_CLK_FREQ_450) {
1427 return 450000;
1428 } else if (IS_HASWELL(dev)) {
1429 if (IS_ULT(dev))
1430 return 337500;
1431 else
1432 return 540000;
1433 } else {
1434 if (freq == LCPLL_CLK_FREQ_54O_BDW)
1435 return 540000;
1436 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
1437 return 337500;
1438 else
1439 return 675000;
1440 }
1441 }
1442
1443 void intel_ddi_pll_init(struct drm_device *dev)
1444 {
1445 struct drm_i915_private *dev_priv = dev->dev_private;
1446 uint32_t val = I915_READ(LCPLL_CTL);
1447
1448 /* The LCPLL register should be turned on by the BIOS. For now let's
1449 * just check its state and print errors in case something is wrong.
1450 * Don't even try to turn it on.
1451 */
1452
1453 DRM_DEBUG_KMS("CDCLK running at %dKHz\n",
1454 intel_ddi_get_cdclk_freq(dev_priv));
1455
1456 if (val & LCPLL_CD_SOURCE_FCLK)
1457 DRM_ERROR("CDCLK source is not LCPLL\n");
1458
1459 if (val & LCPLL_PLL_DISABLE)
1460 DRM_ERROR("LCPLL is disabled\n");
1461 }
1462
1463 void intel_ddi_prepare_link_retrain(struct drm_encoder *encoder)
1464 {
1465 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
1466 struct intel_dp *intel_dp = &intel_dig_port->dp;
1467 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
1468 enum port port = intel_dig_port->port;
1469 uint32_t val;
1470 bool wait = false;
1471
1472 if (I915_READ(DP_TP_CTL(port)) & DP_TP_CTL_ENABLE) {
1473 val = I915_READ(DDI_BUF_CTL(port));
1474 if (val & DDI_BUF_CTL_ENABLE) {
1475 val &= ~DDI_BUF_CTL_ENABLE;
1476 I915_WRITE(DDI_BUF_CTL(port), val);
1477 wait = true;
1478 }
1479
1480 val = I915_READ(DP_TP_CTL(port));
1481 val &= ~(DP_TP_CTL_ENABLE | DP_TP_CTL_LINK_TRAIN_MASK);
1482 val |= DP_TP_CTL_LINK_TRAIN_PAT1;
1483 I915_WRITE(DP_TP_CTL(port), val);
1484 POSTING_READ(DP_TP_CTL(port));
1485
1486 if (wait)
1487 intel_wait_ddi_buf_idle(dev_priv, port);
1488 }
1489
1490 val = DP_TP_CTL_ENABLE | DP_TP_CTL_MODE_SST |
1491 DP_TP_CTL_LINK_TRAIN_PAT1 | DP_TP_CTL_SCRAMBLE_DISABLE;
1492 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
1493 val |= DP_TP_CTL_ENHANCED_FRAME_ENABLE;
1494 I915_WRITE(DP_TP_CTL(port), val);
1495 POSTING_READ(DP_TP_CTL(port));
1496
1497 intel_dp->DP |= DDI_BUF_CTL_ENABLE;
1498 I915_WRITE(DDI_BUF_CTL(port), intel_dp->DP);
1499 POSTING_READ(DDI_BUF_CTL(port));
1500
1501 udelay(600);
1502 }
1503
1504 void intel_ddi_fdi_disable(struct drm_crtc *crtc)
1505 {
1506 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
1507 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
1508 uint32_t val;
1509
1510 intel_ddi_post_disable(intel_encoder);
1511
1512 val = I915_READ(_FDI_RXA_CTL);
1513 val &= ~FDI_RX_ENABLE;
1514 I915_WRITE(_FDI_RXA_CTL, val);
1515
1516 val = I915_READ(_FDI_RXA_MISC);
1517 val &= ~(FDI_RX_PWRDN_LANE1_MASK | FDI_RX_PWRDN_LANE0_MASK);
1518 val |= FDI_RX_PWRDN_LANE1_VAL(2) | FDI_RX_PWRDN_LANE0_VAL(2);
1519 I915_WRITE(_FDI_RXA_MISC, val);
1520
1521 val = I915_READ(_FDI_RXA_CTL);
1522 val &= ~FDI_PCDCLK;
1523 I915_WRITE(_FDI_RXA_CTL, val);
1524
1525 val = I915_READ(_FDI_RXA_CTL);
1526 val &= ~FDI_RX_PLL_ENABLE;
1527 I915_WRITE(_FDI_RXA_CTL, val);
1528 }
1529
1530 static void intel_ddi_hot_plug(struct intel_encoder *intel_encoder)
1531 {
1532 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
1533 int type = intel_encoder->type;
1534
1535 if (type == INTEL_OUTPUT_DISPLAYPORT || type == INTEL_OUTPUT_EDP)
1536 intel_dp_check_link_status(intel_dp);
1537 }
1538
1539 void intel_ddi_get_config(struct intel_encoder *encoder,
1540 struct intel_crtc_config *pipe_config)
1541 {
1542 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
1543 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1544 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
1545 u32 temp, flags = 0;
1546
1547 temp = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
1548 if (temp & TRANS_DDI_PHSYNC)
1549 flags |= DRM_MODE_FLAG_PHSYNC;
1550 else
1551 flags |= DRM_MODE_FLAG_NHSYNC;
1552 if (temp & TRANS_DDI_PVSYNC)
1553 flags |= DRM_MODE_FLAG_PVSYNC;
1554 else
1555 flags |= DRM_MODE_FLAG_NVSYNC;
1556
1557 pipe_config->adjusted_mode.flags |= flags;
1558
1559 switch (temp & TRANS_DDI_BPC_MASK) {
1560 case TRANS_DDI_BPC_6:
1561 pipe_config->pipe_bpp = 18;
1562 break;
1563 case TRANS_DDI_BPC_8:
1564 pipe_config->pipe_bpp = 24;
1565 break;
1566 case TRANS_DDI_BPC_10:
1567 pipe_config->pipe_bpp = 30;
1568 break;
1569 case TRANS_DDI_BPC_12:
1570 pipe_config->pipe_bpp = 36;
1571 break;
1572 default:
1573 break;
1574 }
1575
1576 switch (temp & TRANS_DDI_MODE_SELECT_MASK) {
1577 case TRANS_DDI_MODE_SELECT_HDMI:
1578 case TRANS_DDI_MODE_SELECT_DVI:
1579 case TRANS_DDI_MODE_SELECT_FDI:
1580 break;
1581 case TRANS_DDI_MODE_SELECT_DP_SST:
1582 case TRANS_DDI_MODE_SELECT_DP_MST:
1583 pipe_config->has_dp_encoder = true;
1584 intel_dp_get_m_n(intel_crtc, pipe_config);
1585 break;
1586 default:
1587 break;
1588 }
1589
1590 if (encoder->type == INTEL_OUTPUT_EDP && dev_priv->vbt.edp_bpp &&
1591 pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
1592 /*
1593 * This is a big fat ugly hack.
1594 *
1595 * Some machines in UEFI boot mode provide us a VBT that has 18
1596 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
1597 * unknown we fail to light up. Yet the same BIOS boots up with
1598 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
1599 * max, not what it tells us to use.
1600 *
1601 * Note: This will still be broken if the eDP panel is not lit
1602 * up by the BIOS, and thus we can't get the mode at module
1603 * load.
1604 */
1605 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
1606 pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
1607 dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
1608 }
1609
1610 intel_ddi_clock_get(encoder, pipe_config);
1611 }
1612
1613 static void intel_ddi_destroy(struct drm_encoder *encoder)
1614 {
1615 /* HDMI has nothing special to destroy, so we can go with this. */
1616 intel_dp_encoder_destroy(encoder);
1617 }
1618
1619 static bool intel_ddi_compute_config(struct intel_encoder *encoder,
1620 struct intel_crtc_config *pipe_config)
1621 {
1622 int type = encoder->type;
1623 int port = intel_ddi_get_encoder_port(encoder);
1624
1625 WARN(type == INTEL_OUTPUT_UNKNOWN, "compute_config() on unknown output!\n");
1626
1627 if (port == PORT_A)
1628 pipe_config->cpu_transcoder = TRANSCODER_EDP;
1629
1630 if (type == INTEL_OUTPUT_HDMI)
1631 return intel_hdmi_compute_config(encoder, pipe_config);
1632 else
1633 return intel_dp_compute_config(encoder, pipe_config);
1634 }
1635
1636 static const struct drm_encoder_funcs intel_ddi_funcs = {
1637 .destroy = intel_ddi_destroy,
1638 };
1639
1640 static struct intel_connector *
1641 intel_ddi_init_dp_connector(struct intel_digital_port *intel_dig_port)
1642 {
1643 struct intel_connector *connector;
1644 enum port port = intel_dig_port->port;
1645
1646 connector = kzalloc(sizeof(*connector), GFP_KERNEL);
1647 if (!connector)
1648 return NULL;
1649
1650 intel_dig_port->dp.output_reg = DDI_BUF_CTL(port);
1651 if (!intel_dp_init_connector(intel_dig_port, connector)) {
1652 kfree(connector);
1653 return NULL;
1654 }
1655
1656 return connector;
1657 }
1658
1659 static struct intel_connector *
1660 intel_ddi_init_hdmi_connector(struct intel_digital_port *intel_dig_port)
1661 {
1662 struct intel_connector *connector;
1663 enum port port = intel_dig_port->port;
1664
1665 connector = kzalloc(sizeof(*connector), GFP_KERNEL);
1666 if (!connector)
1667 return NULL;
1668
1669 intel_dig_port->hdmi.hdmi_reg = DDI_BUF_CTL(port);
1670 intel_hdmi_init_connector(intel_dig_port, connector);
1671
1672 return connector;
1673 }
1674
1675 void intel_ddi_init(struct drm_device *dev, enum port port)
1676 {
1677 struct drm_i915_private *dev_priv = dev->dev_private;
1678 struct intel_digital_port *intel_dig_port;
1679 struct intel_encoder *intel_encoder;
1680 struct drm_encoder *encoder;
1681 struct intel_connector *hdmi_connector = NULL;
1682 struct intel_connector *dp_connector = NULL;
1683 bool init_hdmi, init_dp;
1684
1685 init_hdmi = (dev_priv->vbt.ddi_port_info[port].supports_dvi ||
1686 dev_priv->vbt.ddi_port_info[port].supports_hdmi);
1687 init_dp = dev_priv->vbt.ddi_port_info[port].supports_dp;
1688 if (!init_dp && !init_hdmi) {
1689 DRM_DEBUG_KMS("VBT says port %c is not DVI/HDMI/DP compatible\n",
1690 port_name(port));
1691 init_hdmi = true;
1692 init_dp = true;
1693 }
1694
1695 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
1696 if (!intel_dig_port)
1697 return;
1698
1699 intel_encoder = &intel_dig_port->base;
1700 encoder = &intel_encoder->base;
1701
1702 drm_encoder_init(dev, encoder, &intel_ddi_funcs,
1703 DRM_MODE_ENCODER_TMDS);
1704
1705 intel_encoder->compute_config = intel_ddi_compute_config;
1706 intel_encoder->mode_set = intel_ddi_mode_set;
1707 intel_encoder->enable = intel_enable_ddi;
1708 intel_encoder->pre_enable = intel_ddi_pre_enable;
1709 intel_encoder->disable = intel_disable_ddi;
1710 intel_encoder->post_disable = intel_ddi_post_disable;
1711 intel_encoder->get_hw_state = intel_ddi_get_hw_state;
1712 intel_encoder->get_config = intel_ddi_get_config;
1713
1714 intel_dig_port->port = port;
1715 intel_dig_port->saved_port_bits = I915_READ(DDI_BUF_CTL(port)) &
1716 (DDI_BUF_PORT_REVERSAL |
1717 DDI_A_4_LANES);
1718
1719 intel_encoder->type = INTEL_OUTPUT_UNKNOWN;
1720 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1721 intel_encoder->cloneable = 0;
1722 intel_encoder->hot_plug = intel_ddi_hot_plug;
1723
1724 if (init_dp)
1725 dp_connector = intel_ddi_init_dp_connector(intel_dig_port);
1726
1727 /* In theory we don't need the encoder->type check, but leave it just in
1728 * case we have some really bad VBTs... */
1729 if (intel_encoder->type != INTEL_OUTPUT_EDP && init_hdmi)
1730 hdmi_connector = intel_ddi_init_hdmi_connector(intel_dig_port);
1731
1732 if (!dp_connector && !hdmi_connector) {
1733 drm_encoder_cleanup(encoder);
1734 kfree(intel_dig_port);
1735 }
1736 }
This page took 0.091482 seconds and 5 git commands to generate.