]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/i915/intel_ddi.c
drm/i915: Rename intel_shared_dpll_commit() to _swap_state()
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / i915 / intel_ddi.c
CommitLineData
45244b87
ED
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
10122051
JN
31struct ddi_buf_trans {
32 u32 trans1; /* balance leg enable, de-emph level */
33 u32 trans2; /* vref sel, vswing */
f8896f5d 34 u8 i_boost; /* SKL: I_boost; valid: 0x0, 0x1, 0x3, 0x7 */
10122051
JN
35};
36
45244b87
ED
37/* HDMI/DVI modes ignore everything but the last 2 items. So we share
38 * them for both DP and FDI transports, allowing those ports to
39 * automatically adapt to HDMI connections as well
40 */
10122051 41static const struct ddi_buf_trans hsw_ddi_translations_dp[] = {
f8896f5d
DW
42 { 0x00FFFFFF, 0x0006000E, 0x0 },
43 { 0x00D75FFF, 0x0005000A, 0x0 },
44 { 0x00C30FFF, 0x00040006, 0x0 },
45 { 0x80AAAFFF, 0x000B0000, 0x0 },
46 { 0x00FFFFFF, 0x0005000A, 0x0 },
47 { 0x00D75FFF, 0x000C0004, 0x0 },
48 { 0x80C30FFF, 0x000B0000, 0x0 },
49 { 0x00FFFFFF, 0x00040006, 0x0 },
50 { 0x80D75FFF, 0x000B0000, 0x0 },
45244b87
ED
51};
52
10122051 53static const struct ddi_buf_trans hsw_ddi_translations_fdi[] = {
f8896f5d
DW
54 { 0x00FFFFFF, 0x0007000E, 0x0 },
55 { 0x00D75FFF, 0x000F000A, 0x0 },
56 { 0x00C30FFF, 0x00060006, 0x0 },
57 { 0x00AAAFFF, 0x001E0000, 0x0 },
58 { 0x00FFFFFF, 0x000F000A, 0x0 },
59 { 0x00D75FFF, 0x00160004, 0x0 },
60 { 0x00C30FFF, 0x001E0000, 0x0 },
61 { 0x00FFFFFF, 0x00060006, 0x0 },
62 { 0x00D75FFF, 0x001E0000, 0x0 },
6acab15a
PZ
63};
64
10122051
JN
65static const struct ddi_buf_trans hsw_ddi_translations_hdmi[] = {
66 /* Idx NT mV d T mV d db */
f8896f5d
DW
67 { 0x00FFFFFF, 0x0006000E, 0x0 },/* 0: 400 400 0 */
68 { 0x00E79FFF, 0x000E000C, 0x0 },/* 1: 400 500 2 */
69 { 0x00D75FFF, 0x0005000A, 0x0 },/* 2: 400 600 3.5 */
70 { 0x00FFFFFF, 0x0005000A, 0x0 },/* 3: 600 600 0 */
71 { 0x00E79FFF, 0x001D0007, 0x0 },/* 4: 600 750 2 */
72 { 0x00D75FFF, 0x000C0004, 0x0 },/* 5: 600 900 3.5 */
73 { 0x00FFFFFF, 0x00040006, 0x0 },/* 6: 800 800 0 */
74 { 0x80E79FFF, 0x00030002, 0x0 },/* 7: 800 1000 2 */
75 { 0x00FFFFFF, 0x00140005, 0x0 },/* 8: 850 850 0 */
76 { 0x00FFFFFF, 0x000C0004, 0x0 },/* 9: 900 900 0 */
77 { 0x00FFFFFF, 0x001C0003, 0x0 },/* 10: 950 950 0 */
78 { 0x80FFFFFF, 0x00030002, 0x0 },/* 11: 1000 1000 0 */
45244b87
ED
79};
80
10122051 81static const struct ddi_buf_trans bdw_ddi_translations_edp[] = {
f8896f5d
DW
82 { 0x00FFFFFF, 0x00000012, 0x0 },
83 { 0x00EBAFFF, 0x00020011, 0x0 },
84 { 0x00C71FFF, 0x0006000F, 0x0 },
85 { 0x00AAAFFF, 0x000E000A, 0x0 },
86 { 0x00FFFFFF, 0x00020011, 0x0 },
87 { 0x00DB6FFF, 0x0005000F, 0x0 },
88 { 0x00BEEFFF, 0x000A000C, 0x0 },
89 { 0x00FFFFFF, 0x0005000F, 0x0 },
90 { 0x00DB6FFF, 0x000A000C, 0x0 },
300644c7
PZ
91};
92
10122051 93static const struct ddi_buf_trans bdw_ddi_translations_dp[] = {
f8896f5d
DW
94 { 0x00FFFFFF, 0x0007000E, 0x0 },
95 { 0x00D75FFF, 0x000E000A, 0x0 },
96 { 0x00BEFFFF, 0x00140006, 0x0 },
97 { 0x80B2CFFF, 0x001B0002, 0x0 },
98 { 0x00FFFFFF, 0x000E000A, 0x0 },
99 { 0x00DB6FFF, 0x00160005, 0x0 },
100 { 0x80C71FFF, 0x001A0002, 0x0 },
101 { 0x00F7DFFF, 0x00180004, 0x0 },
102 { 0x80D75FFF, 0x001B0002, 0x0 },
e58623cb
AR
103};
104
10122051 105static const struct ddi_buf_trans bdw_ddi_translations_fdi[] = {
f8896f5d
DW
106 { 0x00FFFFFF, 0x0001000E, 0x0 },
107 { 0x00D75FFF, 0x0004000A, 0x0 },
108 { 0x00C30FFF, 0x00070006, 0x0 },
109 { 0x00AAAFFF, 0x000C0000, 0x0 },
110 { 0x00FFFFFF, 0x0004000A, 0x0 },
111 { 0x00D75FFF, 0x00090004, 0x0 },
112 { 0x00C30FFF, 0x000C0000, 0x0 },
113 { 0x00FFFFFF, 0x00070006, 0x0 },
114 { 0x00D75FFF, 0x000C0000, 0x0 },
e58623cb
AR
115};
116
10122051
JN
117static const struct ddi_buf_trans bdw_ddi_translations_hdmi[] = {
118 /* Idx NT mV d T mV df db */
f8896f5d
DW
119 { 0x00FFFFFF, 0x0007000E, 0x0 },/* 0: 400 400 0 */
120 { 0x00D75FFF, 0x000E000A, 0x0 },/* 1: 400 600 3.5 */
121 { 0x00BEFFFF, 0x00140006, 0x0 },/* 2: 400 800 6 */
122 { 0x00FFFFFF, 0x0009000D, 0x0 },/* 3: 450 450 0 */
123 { 0x00FFFFFF, 0x000E000A, 0x0 },/* 4: 600 600 0 */
124 { 0x00D7FFFF, 0x00140006, 0x0 },/* 5: 600 800 2.5 */
125 { 0x80CB2FFF, 0x001B0002, 0x0 },/* 6: 600 1000 4.5 */
126 { 0x00FFFFFF, 0x00140006, 0x0 },/* 7: 800 800 0 */
127 { 0x80E79FFF, 0x001B0002, 0x0 },/* 8: 800 1000 2 */
128 { 0x80FFFFFF, 0x001B0002, 0x0 },/* 9: 1000 1000 0 */
a26aa8ba
DL
129};
130
5f8b2531 131/* Skylake H and S */
7f88e3af 132static const struct ddi_buf_trans skl_ddi_translations_dp[] = {
f8896f5d
DW
133 { 0x00002016, 0x000000A0, 0x0 },
134 { 0x00005012, 0x0000009B, 0x0 },
135 { 0x00007011, 0x00000088, 0x0 },
d7097cff 136 { 0x80009010, 0x000000C0, 0x1 },
f8896f5d
DW
137 { 0x00002016, 0x0000009B, 0x0 },
138 { 0x00005012, 0x00000088, 0x0 },
d7097cff 139 { 0x80007011, 0x000000C0, 0x1 },
f8896f5d 140 { 0x00002016, 0x000000DF, 0x0 },
d7097cff 141 { 0x80005012, 0x000000C0, 0x1 },
7f88e3af
DL
142};
143
f8896f5d
DW
144/* Skylake U */
145static const struct ddi_buf_trans skl_u_ddi_translations_dp[] = {
5f8b2531 146 { 0x0000201B, 0x000000A2, 0x0 },
f8896f5d 147 { 0x00005012, 0x00000088, 0x0 },
5ac90567 148 { 0x80007011, 0x000000CD, 0x1 },
d7097cff 149 { 0x80009010, 0x000000C0, 0x1 },
5f8b2531 150 { 0x0000201B, 0x0000009D, 0x0 },
d7097cff
RV
151 { 0x80005012, 0x000000C0, 0x1 },
152 { 0x80007011, 0x000000C0, 0x1 },
f8896f5d 153 { 0x00002016, 0x00000088, 0x0 },
d7097cff 154 { 0x80005012, 0x000000C0, 0x1 },
f8896f5d
DW
155};
156
5f8b2531
RV
157/* Skylake Y */
158static const struct ddi_buf_trans skl_y_ddi_translations_dp[] = {
f8896f5d
DW
159 { 0x00000018, 0x000000A2, 0x0 },
160 { 0x00005012, 0x00000088, 0x0 },
5ac90567 161 { 0x80007011, 0x000000CD, 0x3 },
d7097cff 162 { 0x80009010, 0x000000C0, 0x3 },
f8896f5d 163 { 0x00000018, 0x0000009D, 0x0 },
d7097cff
RV
164 { 0x80005012, 0x000000C0, 0x3 },
165 { 0x80007011, 0x000000C0, 0x3 },
f8896f5d 166 { 0x00000018, 0x00000088, 0x0 },
d7097cff 167 { 0x80005012, 0x000000C0, 0x3 },
f8896f5d
DW
168};
169
0fdd4918
RV
170/* Kabylake H and S */
171static const struct ddi_buf_trans kbl_ddi_translations_dp[] = {
172 { 0x00002016, 0x000000A0, 0x0 },
173 { 0x00005012, 0x0000009B, 0x0 },
174 { 0x00007011, 0x00000088, 0x0 },
175 { 0x80009010, 0x000000C0, 0x1 },
176 { 0x00002016, 0x0000009B, 0x0 },
177 { 0x00005012, 0x00000088, 0x0 },
178 { 0x80007011, 0x000000C0, 0x1 },
179 { 0x00002016, 0x00000097, 0x0 },
180 { 0x80005012, 0x000000C0, 0x1 },
181};
182
183/* Kabylake U */
184static const struct ddi_buf_trans kbl_u_ddi_translations_dp[] = {
185 { 0x0000201B, 0x000000A1, 0x0 },
186 { 0x00005012, 0x00000088, 0x0 },
187 { 0x80007011, 0x000000CD, 0x3 },
188 { 0x80009010, 0x000000C0, 0x3 },
189 { 0x0000201B, 0x0000009D, 0x0 },
190 { 0x80005012, 0x000000C0, 0x3 },
191 { 0x80007011, 0x000000C0, 0x3 },
192 { 0x00002016, 0x0000004F, 0x0 },
193 { 0x80005012, 0x000000C0, 0x3 },
194};
195
196/* Kabylake Y */
197static const struct ddi_buf_trans kbl_y_ddi_translations_dp[] = {
198 { 0x00001017, 0x000000A1, 0x0 },
199 { 0x00005012, 0x00000088, 0x0 },
200 { 0x80007011, 0x000000CD, 0x3 },
201 { 0x8000800F, 0x000000C0, 0x3 },
202 { 0x00001017, 0x0000009D, 0x0 },
203 { 0x80005012, 0x000000C0, 0x3 },
204 { 0x80007011, 0x000000C0, 0x3 },
205 { 0x00001017, 0x0000004C, 0x0 },
206 { 0x80005012, 0x000000C0, 0x3 },
207};
208
f8896f5d 209/*
0fdd4918 210 * Skylake/Kabylake H and S
f8896f5d
DW
211 * eDP 1.4 low vswing translation parameters
212 */
7ad14a29 213static const struct ddi_buf_trans skl_ddi_translations_edp[] = {
f8896f5d
DW
214 { 0x00000018, 0x000000A8, 0x0 },
215 { 0x00004013, 0x000000A9, 0x0 },
216 { 0x00007011, 0x000000A2, 0x0 },
217 { 0x00009010, 0x0000009C, 0x0 },
218 { 0x00000018, 0x000000A9, 0x0 },
219 { 0x00006013, 0x000000A2, 0x0 },
220 { 0x00007011, 0x000000A6, 0x0 },
221 { 0x00000018, 0x000000AB, 0x0 },
222 { 0x00007013, 0x0000009F, 0x0 },
223 { 0x00000018, 0x000000DF, 0x0 },
224};
225
226/*
0fdd4918 227 * Skylake/Kabylake U
f8896f5d
DW
228 * eDP 1.4 low vswing translation parameters
229 */
230static const struct ddi_buf_trans skl_u_ddi_translations_edp[] = {
231 { 0x00000018, 0x000000A8, 0x0 },
232 { 0x00004013, 0x000000A9, 0x0 },
233 { 0x00007011, 0x000000A2, 0x0 },
234 { 0x00009010, 0x0000009C, 0x0 },
235 { 0x00000018, 0x000000A9, 0x0 },
236 { 0x00006013, 0x000000A2, 0x0 },
237 { 0x00007011, 0x000000A6, 0x0 },
238 { 0x00002016, 0x000000AB, 0x0 },
239 { 0x00005013, 0x0000009F, 0x0 },
240 { 0x00000018, 0x000000DF, 0x0 },
7ad14a29
SJ
241};
242
f8896f5d 243/*
0fdd4918 244 * Skylake/Kabylake Y
f8896f5d
DW
245 * eDP 1.4 low vswing translation parameters
246 */
5f8b2531 247static const struct ddi_buf_trans skl_y_ddi_translations_edp[] = {
f8896f5d
DW
248 { 0x00000018, 0x000000A8, 0x0 },
249 { 0x00004013, 0x000000AB, 0x0 },
250 { 0x00007011, 0x000000A4, 0x0 },
251 { 0x00009010, 0x000000DF, 0x0 },
252 { 0x00000018, 0x000000AA, 0x0 },
253 { 0x00006013, 0x000000A4, 0x0 },
254 { 0x00007011, 0x0000009D, 0x0 },
255 { 0x00000018, 0x000000A0, 0x0 },
256 { 0x00006012, 0x000000DF, 0x0 },
257 { 0x00000018, 0x0000008A, 0x0 },
258};
7ad14a29 259
0fdd4918 260/* Skylake/Kabylake U, H and S */
7f88e3af 261static const struct ddi_buf_trans skl_ddi_translations_hdmi[] = {
f8896f5d
DW
262 { 0x00000018, 0x000000AC, 0x0 },
263 { 0x00005012, 0x0000009D, 0x0 },
264 { 0x00007011, 0x00000088, 0x0 },
265 { 0x00000018, 0x000000A1, 0x0 },
266 { 0x00000018, 0x00000098, 0x0 },
267 { 0x00004013, 0x00000088, 0x0 },
2e78416e 268 { 0x80006012, 0x000000CD, 0x1 },
f8896f5d 269 { 0x00000018, 0x000000DF, 0x0 },
2e78416e
RV
270 { 0x80003015, 0x000000CD, 0x1 }, /* Default */
271 { 0x80003015, 0x000000C0, 0x1 },
272 { 0x80000018, 0x000000C0, 0x1 },
f8896f5d
DW
273};
274
0fdd4918 275/* Skylake/Kabylake Y */
5f8b2531 276static const struct ddi_buf_trans skl_y_ddi_translations_hdmi[] = {
f8896f5d
DW
277 { 0x00000018, 0x000000A1, 0x0 },
278 { 0x00005012, 0x000000DF, 0x0 },
2e78416e 279 { 0x80007011, 0x000000CB, 0x3 },
f8896f5d
DW
280 { 0x00000018, 0x000000A4, 0x0 },
281 { 0x00000018, 0x0000009D, 0x0 },
282 { 0x00004013, 0x00000080, 0x0 },
2e78416e 283 { 0x80006013, 0x000000C0, 0x3 },
f8896f5d 284 { 0x00000018, 0x0000008A, 0x0 },
2e78416e
RV
285 { 0x80003015, 0x000000C0, 0x3 }, /* Default */
286 { 0x80003015, 0x000000C0, 0x3 },
287 { 0x80000018, 0x000000C0, 0x3 },
7f88e3af
DL
288};
289
96fb9f9b
VK
290struct bxt_ddi_buf_trans {
291 u32 margin; /* swing value */
292 u32 scale; /* scale value */
293 u32 enable; /* scale enable */
294 u32 deemphasis;
295 bool default_index; /* true if the entry represents default value */
296};
297
96fb9f9b
VK
298static const struct bxt_ddi_buf_trans bxt_ddi_translations_dp[] = {
299 /* Idx NT mV diff db */
fe4c63c8
ID
300 { 52, 0x9A, 0, 128, true }, /* 0: 400 0 */
301 { 78, 0x9A, 0, 85, false }, /* 1: 400 3.5 */
302 { 104, 0x9A, 0, 64, false }, /* 2: 400 6 */
303 { 154, 0x9A, 0, 43, false }, /* 3: 400 9.5 */
304 { 77, 0x9A, 0, 128, false }, /* 4: 600 0 */
305 { 116, 0x9A, 0, 85, false }, /* 5: 600 3.5 */
306 { 154, 0x9A, 0, 64, false }, /* 6: 600 6 */
307 { 102, 0x9A, 0, 128, false }, /* 7: 800 0 */
308 { 154, 0x9A, 0, 85, false }, /* 8: 800 3.5 */
f8896f5d 309 { 154, 0x9A, 1, 128, false }, /* 9: 1200 0 */
96fb9f9b
VK
310};
311
d9d7000d
SJ
312static const struct bxt_ddi_buf_trans bxt_ddi_translations_edp[] = {
313 /* Idx NT mV diff db */
314 { 26, 0, 0, 128, false }, /* 0: 200 0 */
315 { 38, 0, 0, 112, false }, /* 1: 200 1.5 */
316 { 48, 0, 0, 96, false }, /* 2: 200 4 */
317 { 54, 0, 0, 69, false }, /* 3: 200 6 */
318 { 32, 0, 0, 128, false }, /* 4: 250 0 */
319 { 48, 0, 0, 104, false }, /* 5: 250 1.5 */
320 { 54, 0, 0, 85, false }, /* 6: 250 4 */
321 { 43, 0, 0, 128, false }, /* 7: 300 0 */
322 { 54, 0, 0, 101, false }, /* 8: 300 1.5 */
323 { 48, 0, 0, 128, false }, /* 9: 300 0 */
324};
325
96fb9f9b
VK
326/* BSpec has 2 recommended values - entries 0 and 8.
327 * Using the entry with higher vswing.
328 */
329static const struct bxt_ddi_buf_trans bxt_ddi_translations_hdmi[] = {
330 /* Idx NT mV diff db */
fe4c63c8
ID
331 { 52, 0x9A, 0, 128, false }, /* 0: 400 0 */
332 { 52, 0x9A, 0, 85, false }, /* 1: 400 3.5 */
333 { 52, 0x9A, 0, 64, false }, /* 2: 400 6 */
334 { 42, 0x9A, 0, 43, false }, /* 3: 400 9.5 */
335 { 77, 0x9A, 0, 128, false }, /* 4: 600 0 */
336 { 77, 0x9A, 0, 85, false }, /* 5: 600 3.5 */
337 { 77, 0x9A, 0, 64, false }, /* 6: 600 6 */
338 { 102, 0x9A, 0, 128, false }, /* 7: 800 0 */
339 { 102, 0x9A, 0, 85, false }, /* 8: 800 3.5 */
96fb9f9b
VK
340 { 154, 0x9A, 1, 128, true }, /* 9: 1200 0 */
341};
342
5a5d24dc 343enum port intel_ddi_get_encoder_port(struct intel_encoder *encoder)
fc914639 344{
5a5d24dc 345 switch (encoder->type) {
8cd21b7f 346 case INTEL_OUTPUT_DP_MST:
5a5d24dc 347 return enc_to_mst(&encoder->base)->primary->port;
cca0502b 348 case INTEL_OUTPUT_DP:
8cd21b7f
JN
349 case INTEL_OUTPUT_EDP:
350 case INTEL_OUTPUT_HDMI:
351 case INTEL_OUTPUT_UNKNOWN:
5a5d24dc 352 return enc_to_dig_port(&encoder->base)->port;
8cd21b7f 353 case INTEL_OUTPUT_ANALOG:
5a5d24dc
VS
354 return PORT_E;
355 default:
356 MISSING_CASE(encoder->type);
357 return PORT_A;
fc914639
PZ
358 }
359}
360
a930acd9
VS
361static const struct ddi_buf_trans *
362bdw_get_buf_trans_edp(struct drm_i915_private *dev_priv, int *n_entries)
363{
364 if (dev_priv->vbt.edp.low_vswing) {
365 *n_entries = ARRAY_SIZE(bdw_ddi_translations_edp);
366 return bdw_ddi_translations_edp;
367 } else {
368 *n_entries = ARRAY_SIZE(bdw_ddi_translations_dp);
369 return bdw_ddi_translations_dp;
370 }
371}
372
acee2998 373static const struct ddi_buf_trans *
78ab0bae 374skl_get_buf_trans_dp(struct drm_i915_private *dev_priv, int *n_entries)
f8896f5d 375{
0fdd4918 376 if (IS_SKL_ULX(dev_priv)) {
5f8b2531 377 *n_entries = ARRAY_SIZE(skl_y_ddi_translations_dp);
acee2998 378 return skl_y_ddi_translations_dp;
0fdd4918 379 } else if (IS_SKL_ULT(dev_priv)) {
f8896f5d 380 *n_entries = ARRAY_SIZE(skl_u_ddi_translations_dp);
acee2998 381 return skl_u_ddi_translations_dp;
f8896f5d 382 } else {
f8896f5d 383 *n_entries = ARRAY_SIZE(skl_ddi_translations_dp);
acee2998 384 return skl_ddi_translations_dp;
f8896f5d 385 }
f8896f5d
DW
386}
387
0fdd4918
RV
388static const struct ddi_buf_trans *
389kbl_get_buf_trans_dp(struct drm_i915_private *dev_priv, int *n_entries)
390{
391 if (IS_KBL_ULX(dev_priv)) {
392 *n_entries = ARRAY_SIZE(kbl_y_ddi_translations_dp);
393 return kbl_y_ddi_translations_dp;
394 } else if (IS_KBL_ULT(dev_priv)) {
395 *n_entries = ARRAY_SIZE(kbl_u_ddi_translations_dp);
396 return kbl_u_ddi_translations_dp;
397 } else {
398 *n_entries = ARRAY_SIZE(kbl_ddi_translations_dp);
399 return kbl_ddi_translations_dp;
400 }
401}
402
acee2998 403static const struct ddi_buf_trans *
78ab0bae 404skl_get_buf_trans_edp(struct drm_i915_private *dev_priv, int *n_entries)
f8896f5d 405{
06411f08 406 if (dev_priv->vbt.edp.low_vswing) {
78ab0bae 407 if (IS_SKL_ULX(dev_priv) || IS_KBL_ULX(dev_priv)) {
5f8b2531 408 *n_entries = ARRAY_SIZE(skl_y_ddi_translations_edp);
acee2998 409 return skl_y_ddi_translations_edp;
78ab0bae 410 } else if (IS_SKL_ULT(dev_priv) || IS_KBL_ULT(dev_priv)) {
f8896f5d 411 *n_entries = ARRAY_SIZE(skl_u_ddi_translations_edp);
acee2998 412 return skl_u_ddi_translations_edp;
f8896f5d 413 } else {
f8896f5d 414 *n_entries = ARRAY_SIZE(skl_ddi_translations_edp);
acee2998 415 return skl_ddi_translations_edp;
f8896f5d
DW
416 }
417 }
cd1101cb 418
0fdd4918
RV
419 if (IS_KABYLAKE(dev_priv))
420 return kbl_get_buf_trans_dp(dev_priv, n_entries);
421 else
422 return skl_get_buf_trans_dp(dev_priv, n_entries);
f8896f5d
DW
423}
424
425static const struct ddi_buf_trans *
78ab0bae 426skl_get_buf_trans_hdmi(struct drm_i915_private *dev_priv, int *n_entries)
f8896f5d 427{
78ab0bae 428 if (IS_SKL_ULX(dev_priv) || IS_KBL_ULX(dev_priv)) {
5f8b2531 429 *n_entries = ARRAY_SIZE(skl_y_ddi_translations_hdmi);
acee2998 430 return skl_y_ddi_translations_hdmi;
f8896f5d 431 } else {
f8896f5d 432 *n_entries = ARRAY_SIZE(skl_ddi_translations_hdmi);
acee2998 433 return skl_ddi_translations_hdmi;
f8896f5d 434 }
f8896f5d
DW
435}
436
8d8bb85e
VS
437static int intel_ddi_hdmi_level(struct drm_i915_private *dev_priv, enum port port)
438{
439 int n_hdmi_entries;
440 int hdmi_level;
441 int hdmi_default_entry;
442
443 hdmi_level = dev_priv->vbt.ddi_port_info[port].hdmi_level_shift;
444
cc3f90f0 445 if (IS_GEN9_LP(dev_priv))
8d8bb85e
VS
446 return hdmi_level;
447
448 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
449 skl_get_buf_trans_hdmi(dev_priv, &n_hdmi_entries);
450 hdmi_default_entry = 8;
451 } else if (IS_BROADWELL(dev_priv)) {
452 n_hdmi_entries = ARRAY_SIZE(bdw_ddi_translations_hdmi);
453 hdmi_default_entry = 7;
454 } else if (IS_HASWELL(dev_priv)) {
455 n_hdmi_entries = ARRAY_SIZE(hsw_ddi_translations_hdmi);
456 hdmi_default_entry = 6;
457 } else {
458 WARN(1, "ddi translation table missing\n");
459 n_hdmi_entries = ARRAY_SIZE(bdw_ddi_translations_hdmi);
460 hdmi_default_entry = 7;
461 }
462
463 /* Choose a good default if VBT is badly populated */
464 if (hdmi_level == HDMI_LEVEL_SHIFT_UNKNOWN ||
465 hdmi_level >= n_hdmi_entries)
466 hdmi_level = hdmi_default_entry;
467
468 return hdmi_level;
469}
470
e58623cb
AR
471/*
472 * Starting with Haswell, DDI port buffers must be programmed with correct
32bdc400
VS
473 * values in advance. This function programs the correct values for
474 * DP/eDP/FDI use cases.
45244b87 475 */
32bdc400 476void intel_prepare_dp_ddi_buffers(struct intel_encoder *encoder)
45244b87 477{
6a7e4f99 478 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
75067dde 479 u32 iboost_bit = 0;
32bdc400
VS
480 int i, n_dp_entries, n_edp_entries, size;
481 enum port port = intel_ddi_get_encoder_port(encoder);
10122051
JN
482 const struct ddi_buf_trans *ddi_translations_fdi;
483 const struct ddi_buf_trans *ddi_translations_dp;
484 const struct ddi_buf_trans *ddi_translations_edp;
10122051 485 const struct ddi_buf_trans *ddi_translations;
e58623cb 486
cc3f90f0 487 if (IS_GEN9_LP(dev_priv))
96fb9f9b 488 return;
6a7e4f99 489
0fdd4918
RV
490 if (IS_KABYLAKE(dev_priv)) {
491 ddi_translations_fdi = NULL;
492 ddi_translations_dp =
493 kbl_get_buf_trans_dp(dev_priv, &n_dp_entries);
494 ddi_translations_edp =
495 skl_get_buf_trans_edp(dev_priv, &n_edp_entries);
496 } else if (IS_SKYLAKE(dev_priv)) {
c30400fc 497 ddi_translations_fdi = NULL;
f8896f5d 498 ddi_translations_dp =
78ab0bae 499 skl_get_buf_trans_dp(dev_priv, &n_dp_entries);
f8896f5d 500 ddi_translations_edp =
78ab0bae 501 skl_get_buf_trans_edp(dev_priv, &n_edp_entries);
78ab0bae 502 } else if (IS_BROADWELL(dev_priv)) {
e58623cb
AR
503 ddi_translations_fdi = bdw_ddi_translations_fdi;
504 ddi_translations_dp = bdw_ddi_translations_dp;
a930acd9 505 ddi_translations_edp = bdw_get_buf_trans_edp(dev_priv, &n_edp_entries);
7ad14a29 506 n_dp_entries = ARRAY_SIZE(bdw_ddi_translations_dp);
78ab0bae 507 } else if (IS_HASWELL(dev_priv)) {
e58623cb
AR
508 ddi_translations_fdi = hsw_ddi_translations_fdi;
509 ddi_translations_dp = hsw_ddi_translations_dp;
300644c7 510 ddi_translations_edp = hsw_ddi_translations_dp;
7ad14a29 511 n_dp_entries = n_edp_entries = ARRAY_SIZE(hsw_ddi_translations_dp);
e58623cb
AR
512 } else {
513 WARN(1, "ddi translation table missing\n");
300644c7 514 ddi_translations_edp = bdw_ddi_translations_dp;
e58623cb
AR
515 ddi_translations_fdi = bdw_ddi_translations_fdi;
516 ddi_translations_dp = bdw_ddi_translations_dp;
7ad14a29
SJ
517 n_edp_entries = ARRAY_SIZE(bdw_ddi_translations_edp);
518 n_dp_entries = ARRAY_SIZE(bdw_ddi_translations_dp);
e58623cb
AR
519 }
520
0a91877c
RV
521 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
522 /* If we're boosting the current, set bit 31 of trans1 */
523 if (dev_priv->vbt.ddi_port_info[port].dp_boost_level)
524 iboost_bit = DDI_BUF_BALANCE_LEG_ENABLE;
525
526 if (WARN_ON(encoder->type == INTEL_OUTPUT_EDP &&
527 port != PORT_A && port != PORT_E &&
528 n_edp_entries > 9))
529 n_edp_entries = 9;
530 }
531
6a7e4f99
VS
532 switch (encoder->type) {
533 case INTEL_OUTPUT_EDP:
300644c7 534 ddi_translations = ddi_translations_edp;
7ad14a29 535 size = n_edp_entries;
300644c7 536 break;
cca0502b 537 case INTEL_OUTPUT_DP:
300644c7 538 ddi_translations = ddi_translations_dp;
7ad14a29 539 size = n_dp_entries;
300644c7 540 break;
6a7e4f99
VS
541 case INTEL_OUTPUT_ANALOG:
542 ddi_translations = ddi_translations_fdi;
7ad14a29 543 size = n_dp_entries;
300644c7
PZ
544 break;
545 default:
546 BUG();
547 }
45244b87 548
9712e688
VS
549 for (i = 0; i < size; i++) {
550 I915_WRITE(DDI_BUF_TRANS_LO(port, i),
551 ddi_translations[i].trans1 | iboost_bit);
552 I915_WRITE(DDI_BUF_TRANS_HI(port, i),
553 ddi_translations[i].trans2);
45244b87 554 }
32bdc400
VS
555}
556
557/*
558 * Starting with Haswell, DDI port buffers must be programmed with correct
559 * values in advance. This function programs the correct values for
560 * HDMI/DVI use cases.
561 */
562static void intel_prepare_hdmi_ddi_buffers(struct intel_encoder *encoder)
563{
564 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
565 u32 iboost_bit = 0;
566 int n_hdmi_entries, hdmi_level;
567 enum port port = intel_ddi_get_encoder_port(encoder);
568 const struct ddi_buf_trans *ddi_translations_hdmi;
ce4dd49e 569
cc3f90f0 570 if (IS_GEN9_LP(dev_priv))
ce3b7e9b
DL
571 return;
572
32bdc400
VS
573 hdmi_level = intel_ddi_hdmi_level(dev_priv, port);
574
575 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
576 ddi_translations_hdmi = skl_get_buf_trans_hdmi(dev_priv, &n_hdmi_entries);
1edaaa2f 577
32bdc400 578 /* If we're boosting the current, set bit 31 of trans1 */
1edaaa2f 579 if (dev_priv->vbt.ddi_port_info[port].hdmi_boost_level)
32bdc400
VS
580 iboost_bit = DDI_BUF_BALANCE_LEG_ENABLE;
581 } else if (IS_BROADWELL(dev_priv)) {
582 ddi_translations_hdmi = bdw_ddi_translations_hdmi;
583 n_hdmi_entries = ARRAY_SIZE(bdw_ddi_translations_hdmi);
584 } else if (IS_HASWELL(dev_priv)) {
585 ddi_translations_hdmi = hsw_ddi_translations_hdmi;
586 n_hdmi_entries = ARRAY_SIZE(hsw_ddi_translations_hdmi);
587 } else {
588 WARN(1, "ddi translation table missing\n");
589 ddi_translations_hdmi = bdw_ddi_translations_hdmi;
590 n_hdmi_entries = ARRAY_SIZE(bdw_ddi_translations_hdmi);
591 }
592
6acab15a 593 /* Entry 9 is for HDMI: */
ed9c77d2 594 I915_WRITE(DDI_BUF_TRANS_LO(port, 9),
9712e688 595 ddi_translations_hdmi[hdmi_level].trans1 | iboost_bit);
ed9c77d2 596 I915_WRITE(DDI_BUF_TRANS_HI(port, 9),
9712e688 597 ddi_translations_hdmi[hdmi_level].trans2);
45244b87
ED
598}
599
248138b5
PZ
600static void intel_wait_ddi_buf_idle(struct drm_i915_private *dev_priv,
601 enum port port)
602{
f0f59a00 603 i915_reg_t reg = DDI_BUF_CTL(port);
248138b5
PZ
604 int i;
605
3449ca85 606 for (i = 0; i < 16; i++) {
248138b5
PZ
607 udelay(1);
608 if (I915_READ(reg) & DDI_BUF_IS_IDLE)
609 return;
610 }
611 DRM_ERROR("Timeout waiting for DDI BUF %c idle bit\n", port_name(port));
612}
c82e4d26 613
c856052a
ACO
614static uint32_t hsw_pll_to_ddi_pll_sel(struct intel_shared_dpll *pll)
615{
616 switch (pll->id) {
617 case DPLL_ID_WRPLL1:
618 return PORT_CLK_SEL_WRPLL1;
619 case DPLL_ID_WRPLL2:
620 return PORT_CLK_SEL_WRPLL2;
621 case DPLL_ID_SPLL:
622 return PORT_CLK_SEL_SPLL;
623 case DPLL_ID_LCPLL_810:
624 return PORT_CLK_SEL_LCPLL_810;
625 case DPLL_ID_LCPLL_1350:
626 return PORT_CLK_SEL_LCPLL_1350;
627 case DPLL_ID_LCPLL_2700:
628 return PORT_CLK_SEL_LCPLL_2700;
629 default:
630 MISSING_CASE(pll->id);
631 return PORT_CLK_SEL_NONE;
632 }
633}
634
c82e4d26
ED
635/* Starting with Haswell, different DDI ports can work in FDI mode for
636 * connection to the PCH-located connectors. For this, it is necessary to train
637 * both the DDI port and PCH receiver for the desired DDI buffer settings.
638 *
639 * The recommended port to work in FDI mode is DDI E, which we use here. Also,
640 * please note that when FDI mode is active on DDI E, it shares 2 lines with
641 * DDI A (which is used for eDP)
642 */
643
644void hsw_fdi_link_train(struct drm_crtc *crtc)
645{
646 struct drm_device *dev = crtc->dev;
fac5e23e 647 struct drm_i915_private *dev_priv = to_i915(dev);
c82e4d26 648 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6a7e4f99 649 struct intel_encoder *encoder;
c856052a 650 u32 temp, i, rx_ctl_val, ddi_pll_sel;
c82e4d26 651
6a7e4f99
VS
652 for_each_encoder_on_crtc(dev, crtc, encoder) {
653 WARN_ON(encoder->type != INTEL_OUTPUT_ANALOG);
32bdc400 654 intel_prepare_dp_ddi_buffers(encoder);
6a7e4f99
VS
655 }
656
04945641
PZ
657 /* Set the FDI_RX_MISC pwrdn lanes and the 2 workarounds listed at the
658 * mode set "sequence for CRT port" document:
659 * - TP1 to TP2 time with the default value
660 * - FDI delay to 90h
8693a824
DL
661 *
662 * WaFDIAutoLinkSetTimingOverrride:hsw
04945641 663 */
eede3b53 664 I915_WRITE(FDI_RX_MISC(PIPE_A), FDI_RX_PWRDN_LANE1_VAL(2) |
04945641
PZ
665 FDI_RX_PWRDN_LANE0_VAL(2) |
666 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
667
668 /* Enable the PCH Receiver FDI PLL */
3e68320e 669 rx_ctl_val = dev_priv->fdi_rx_config | FDI_RX_ENHANCE_FRAME_ENABLE |
33d29b14 670 FDI_RX_PLL_ENABLE |
6e3c9717 671 FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
eede3b53
VS
672 I915_WRITE(FDI_RX_CTL(PIPE_A), rx_ctl_val);
673 POSTING_READ(FDI_RX_CTL(PIPE_A));
04945641
PZ
674 udelay(220);
675
676 /* Switch from Rawclk to PCDclk */
677 rx_ctl_val |= FDI_PCDCLK;
eede3b53 678 I915_WRITE(FDI_RX_CTL(PIPE_A), rx_ctl_val);
04945641
PZ
679
680 /* Configure Port Clock Select */
c856052a
ACO
681 ddi_pll_sel = hsw_pll_to_ddi_pll_sel(intel_crtc->config->shared_dpll);
682 I915_WRITE(PORT_CLK_SEL(PORT_E), ddi_pll_sel);
683 WARN_ON(ddi_pll_sel != PORT_CLK_SEL_SPLL);
04945641
PZ
684
685 /* Start the training iterating through available voltages and emphasis,
686 * testing each value twice. */
10122051 687 for (i = 0; i < ARRAY_SIZE(hsw_ddi_translations_fdi) * 2; i++) {
c82e4d26
ED
688 /* Configure DP_TP_CTL with auto-training */
689 I915_WRITE(DP_TP_CTL(PORT_E),
690 DP_TP_CTL_FDI_AUTOTRAIN |
691 DP_TP_CTL_ENHANCED_FRAME_ENABLE |
692 DP_TP_CTL_LINK_TRAIN_PAT1 |
693 DP_TP_CTL_ENABLE);
694
876a8cdf
DL
695 /* Configure and enable DDI_BUF_CTL for DDI E with next voltage.
696 * DDI E does not support port reversal, the functionality is
697 * achieved on the PCH side in FDI_RX_CTL, so no need to set the
698 * port reversal bit */
c82e4d26 699 I915_WRITE(DDI_BUF_CTL(PORT_E),
04945641 700 DDI_BUF_CTL_ENABLE |
6e3c9717 701 ((intel_crtc->config->fdi_lanes - 1) << 1) |
c5fe6a06 702 DDI_BUF_TRANS_SELECT(i / 2));
04945641 703 POSTING_READ(DDI_BUF_CTL(PORT_E));
c82e4d26
ED
704
705 udelay(600);
706
04945641 707 /* Program PCH FDI Receiver TU */
eede3b53 708 I915_WRITE(FDI_RX_TUSIZE1(PIPE_A), TU_SIZE(64));
04945641
PZ
709
710 /* Enable PCH FDI Receiver with auto-training */
711 rx_ctl_val |= FDI_RX_ENABLE | FDI_LINK_TRAIN_AUTO;
eede3b53
VS
712 I915_WRITE(FDI_RX_CTL(PIPE_A), rx_ctl_val);
713 POSTING_READ(FDI_RX_CTL(PIPE_A));
04945641
PZ
714
715 /* Wait for FDI receiver lane calibration */
716 udelay(30);
717
718 /* Unset FDI_RX_MISC pwrdn lanes */
eede3b53 719 temp = I915_READ(FDI_RX_MISC(PIPE_A));
04945641 720 temp &= ~(FDI_RX_PWRDN_LANE1_MASK | FDI_RX_PWRDN_LANE0_MASK);
eede3b53
VS
721 I915_WRITE(FDI_RX_MISC(PIPE_A), temp);
722 POSTING_READ(FDI_RX_MISC(PIPE_A));
04945641
PZ
723
724 /* Wait for FDI auto training time */
725 udelay(5);
c82e4d26
ED
726
727 temp = I915_READ(DP_TP_STATUS(PORT_E));
728 if (temp & DP_TP_STATUS_AUTOTRAIN_DONE) {
04945641 729 DRM_DEBUG_KMS("FDI link training done on step %d\n", i);
a308ccb3
VS
730 break;
731 }
c82e4d26 732
a308ccb3
VS
733 /*
734 * Leave things enabled even if we failed to train FDI.
735 * Results in less fireworks from the state checker.
736 */
737 if (i == ARRAY_SIZE(hsw_ddi_translations_fdi) * 2 - 1) {
738 DRM_ERROR("FDI link training failed!\n");
739 break;
c82e4d26 740 }
04945641 741
5b421c57
VS
742 rx_ctl_val &= ~FDI_RX_ENABLE;
743 I915_WRITE(FDI_RX_CTL(PIPE_A), rx_ctl_val);
744 POSTING_READ(FDI_RX_CTL(PIPE_A));
745
248138b5
PZ
746 temp = I915_READ(DDI_BUF_CTL(PORT_E));
747 temp &= ~DDI_BUF_CTL_ENABLE;
748 I915_WRITE(DDI_BUF_CTL(PORT_E), temp);
749 POSTING_READ(DDI_BUF_CTL(PORT_E));
750
04945641 751 /* Disable DP_TP_CTL and FDI_RX_CTL and retry */
248138b5
PZ
752 temp = I915_READ(DP_TP_CTL(PORT_E));
753 temp &= ~(DP_TP_CTL_ENABLE | DP_TP_CTL_LINK_TRAIN_MASK);
754 temp |= DP_TP_CTL_LINK_TRAIN_PAT1;
755 I915_WRITE(DP_TP_CTL(PORT_E), temp);
756 POSTING_READ(DP_TP_CTL(PORT_E));
757
758 intel_wait_ddi_buf_idle(dev_priv, PORT_E);
04945641 759
04945641 760 /* Reset FDI_RX_MISC pwrdn lanes */
eede3b53 761 temp = I915_READ(FDI_RX_MISC(PIPE_A));
04945641
PZ
762 temp &= ~(FDI_RX_PWRDN_LANE1_MASK | FDI_RX_PWRDN_LANE0_MASK);
763 temp |= FDI_RX_PWRDN_LANE1_VAL(2) | FDI_RX_PWRDN_LANE0_VAL(2);
eede3b53
VS
764 I915_WRITE(FDI_RX_MISC(PIPE_A), temp);
765 POSTING_READ(FDI_RX_MISC(PIPE_A));
c82e4d26
ED
766 }
767
a308ccb3
VS
768 /* Enable normal pixel sending for FDI */
769 I915_WRITE(DP_TP_CTL(PORT_E),
770 DP_TP_CTL_FDI_AUTOTRAIN |
771 DP_TP_CTL_LINK_TRAIN_NORMAL |
772 DP_TP_CTL_ENHANCED_FRAME_ENABLE |
773 DP_TP_CTL_ENABLE);
c82e4d26 774}
0e72a5b5 775
44905a27
DA
776void intel_ddi_init_dp_buf_reg(struct intel_encoder *encoder)
777{
778 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
779 struct intel_digital_port *intel_dig_port =
780 enc_to_dig_port(&encoder->base);
781
782 intel_dp->DP = intel_dig_port->saved_port_bits |
c5fe6a06 783 DDI_BUF_CTL_ENABLE | DDI_BUF_TRANS_SELECT(0);
901c2daf 784 intel_dp->DP |= DDI_PORT_WIDTH(intel_dp->lane_count);
44905a27
DA
785}
786
8d9ddbcb
PZ
787static struct intel_encoder *
788intel_ddi_get_crtc_encoder(struct drm_crtc *crtc)
789{
790 struct drm_device *dev = crtc->dev;
791 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
792 struct intel_encoder *intel_encoder, *ret = NULL;
793 int num_encoders = 0;
794
795 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
796 ret = intel_encoder;
797 num_encoders++;
798 }
799
800 if (num_encoders != 1)
84f44ce7
VS
801 WARN(1, "%d encoders on crtc for pipe %c\n", num_encoders,
802 pipe_name(intel_crtc->pipe));
8d9ddbcb
PZ
803
804 BUG_ON(ret == NULL);
805 return ret;
806}
807
bcddf610 808struct intel_encoder *
3165c074 809intel_ddi_get_crtc_new_encoder(struct intel_crtc_state *crtc_state)
d0737e1d 810{
3165c074
ACO
811 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
812 struct intel_encoder *ret = NULL;
813 struct drm_atomic_state *state;
da3ced29
ACO
814 struct drm_connector *connector;
815 struct drm_connector_state *connector_state;
d0737e1d 816 int num_encoders = 0;
3165c074 817 int i;
d0737e1d 818
3165c074
ACO
819 state = crtc_state->base.state;
820
da3ced29
ACO
821 for_each_connector_in_state(state, connector, connector_state, i) {
822 if (connector_state->crtc != crtc_state->base.crtc)
3165c074
ACO
823 continue;
824
da3ced29 825 ret = to_intel_encoder(connector_state->best_encoder);
3165c074 826 num_encoders++;
d0737e1d
ACO
827 }
828
829 WARN(num_encoders != 1, "%d encoders on crtc for pipe %c\n", num_encoders,
830 pipe_name(crtc->pipe));
831
832 BUG_ON(ret == NULL);
833 return ret;
834}
835
1c0b85c5 836#define LC_FREQ 2700
1c0b85c5 837
f0f59a00
VS
838static int hsw_ddi_calc_wrpll_link(struct drm_i915_private *dev_priv,
839 i915_reg_t reg)
11578553
JB
840{
841 int refclk = LC_FREQ;
842 int n, p, r;
843 u32 wrpll;
844
845 wrpll = I915_READ(reg);
114fe488
DV
846 switch (wrpll & WRPLL_PLL_REF_MASK) {
847 case WRPLL_PLL_SSC:
848 case WRPLL_PLL_NON_SSC:
11578553
JB
849 /*
850 * We could calculate spread here, but our checking
851 * code only cares about 5% accuracy, and spread is a max of
852 * 0.5% downspread.
853 */
854 refclk = 135;
855 break;
114fe488 856 case WRPLL_PLL_LCPLL:
11578553
JB
857 refclk = LC_FREQ;
858 break;
859 default:
860 WARN(1, "bad wrpll refclk\n");
861 return 0;
862 }
863
864 r = wrpll & WRPLL_DIVIDER_REF_MASK;
865 p = (wrpll & WRPLL_DIVIDER_POST_MASK) >> WRPLL_DIVIDER_POST_SHIFT;
866 n = (wrpll & WRPLL_DIVIDER_FB_MASK) >> WRPLL_DIVIDER_FB_SHIFT;
867
20f0ec16
JB
868 /* Convert to KHz, p & r have a fixed point portion */
869 return (refclk * n * 100) / (p * r);
11578553
JB
870}
871
540e732c
S
872static int skl_calc_wrpll_link(struct drm_i915_private *dev_priv,
873 uint32_t dpll)
874{
f0f59a00 875 i915_reg_t cfgcr1_reg, cfgcr2_reg;
540e732c
S
876 uint32_t cfgcr1_val, cfgcr2_val;
877 uint32_t p0, p1, p2, dco_freq;
878
923c1241
VS
879 cfgcr1_reg = DPLL_CFGCR1(dpll);
880 cfgcr2_reg = DPLL_CFGCR2(dpll);
540e732c
S
881
882 cfgcr1_val = I915_READ(cfgcr1_reg);
883 cfgcr2_val = I915_READ(cfgcr2_reg);
884
885 p0 = cfgcr2_val & DPLL_CFGCR2_PDIV_MASK;
886 p2 = cfgcr2_val & DPLL_CFGCR2_KDIV_MASK;
887
888 if (cfgcr2_val & DPLL_CFGCR2_QDIV_MODE(1))
889 p1 = (cfgcr2_val & DPLL_CFGCR2_QDIV_RATIO_MASK) >> 8;
890 else
891 p1 = 1;
892
893
894 switch (p0) {
895 case DPLL_CFGCR2_PDIV_1:
896 p0 = 1;
897 break;
898 case DPLL_CFGCR2_PDIV_2:
899 p0 = 2;
900 break;
901 case DPLL_CFGCR2_PDIV_3:
902 p0 = 3;
903 break;
904 case DPLL_CFGCR2_PDIV_7:
905 p0 = 7;
906 break;
907 }
908
909 switch (p2) {
910 case DPLL_CFGCR2_KDIV_5:
911 p2 = 5;
912 break;
913 case DPLL_CFGCR2_KDIV_2:
914 p2 = 2;
915 break;
916 case DPLL_CFGCR2_KDIV_3:
917 p2 = 3;
918 break;
919 case DPLL_CFGCR2_KDIV_1:
920 p2 = 1;
921 break;
922 }
923
924 dco_freq = (cfgcr1_val & DPLL_CFGCR1_DCO_INTEGER_MASK) * 24 * 1000;
925
926 dco_freq += (((cfgcr1_val & DPLL_CFGCR1_DCO_FRACTION_MASK) >> 9) * 24 *
927 1000) / 0x8000;
928
929 return dco_freq / (p0 * p1 * p2 * 5);
930}
931
398a017e
VS
932static void ddi_dotclock_get(struct intel_crtc_state *pipe_config)
933{
934 int dotclock;
935
936 if (pipe_config->has_pch_encoder)
937 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
938 &pipe_config->fdi_m_n);
37a5650b 939 else if (intel_crtc_has_dp_encoder(pipe_config))
398a017e
VS
940 dotclock = intel_dotclock_calculate(pipe_config->port_clock,
941 &pipe_config->dp_m_n);
942 else if (pipe_config->has_hdmi_sink && pipe_config->pipe_bpp == 36)
943 dotclock = pipe_config->port_clock * 2 / 3;
944 else
945 dotclock = pipe_config->port_clock;
946
947 if (pipe_config->pixel_multiplier)
948 dotclock /= pipe_config->pixel_multiplier;
949
950 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
951}
540e732c
S
952
953static void skl_ddi_clock_get(struct intel_encoder *encoder,
5cec258b 954 struct intel_crtc_state *pipe_config)
540e732c 955{
fac5e23e 956 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
540e732c
S
957 int link_clock = 0;
958 uint32_t dpll_ctl1, dpll;
959
c856052a 960 dpll = intel_get_shared_dpll_id(dev_priv, pipe_config->shared_dpll);
540e732c
S
961
962 dpll_ctl1 = I915_READ(DPLL_CTRL1);
963
964 if (dpll_ctl1 & DPLL_CTRL1_HDMI_MODE(dpll)) {
965 link_clock = skl_calc_wrpll_link(dev_priv, dpll);
966 } else {
71cd8423
DL
967 link_clock = dpll_ctl1 & DPLL_CTRL1_LINK_RATE_MASK(dpll);
968 link_clock >>= DPLL_CTRL1_LINK_RATE_SHIFT(dpll);
540e732c
S
969
970 switch (link_clock) {
71cd8423 971 case DPLL_CTRL1_LINK_RATE_810:
540e732c
S
972 link_clock = 81000;
973 break;
71cd8423 974 case DPLL_CTRL1_LINK_RATE_1080:
a8f3ef61
SJ
975 link_clock = 108000;
976 break;
71cd8423 977 case DPLL_CTRL1_LINK_RATE_1350:
540e732c
S
978 link_clock = 135000;
979 break;
71cd8423 980 case DPLL_CTRL1_LINK_RATE_1620:
a8f3ef61
SJ
981 link_clock = 162000;
982 break;
71cd8423 983 case DPLL_CTRL1_LINK_RATE_2160:
a8f3ef61
SJ
984 link_clock = 216000;
985 break;
71cd8423 986 case DPLL_CTRL1_LINK_RATE_2700:
540e732c
S
987 link_clock = 270000;
988 break;
989 default:
990 WARN(1, "Unsupported link rate\n");
991 break;
992 }
993 link_clock *= 2;
994 }
995
996 pipe_config->port_clock = link_clock;
997
398a017e 998 ddi_dotclock_get(pipe_config);
540e732c
S
999}
1000
3d51278a 1001static void hsw_ddi_clock_get(struct intel_encoder *encoder,
5cec258b 1002 struct intel_crtc_state *pipe_config)
11578553 1003{
fac5e23e 1004 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
11578553
JB
1005 int link_clock = 0;
1006 u32 val, pll;
1007
c856052a 1008 val = hsw_pll_to_ddi_pll_sel(pipe_config->shared_dpll);
11578553
JB
1009 switch (val & PORT_CLK_SEL_MASK) {
1010 case PORT_CLK_SEL_LCPLL_810:
1011 link_clock = 81000;
1012 break;
1013 case PORT_CLK_SEL_LCPLL_1350:
1014 link_clock = 135000;
1015 break;
1016 case PORT_CLK_SEL_LCPLL_2700:
1017 link_clock = 270000;
1018 break;
1019 case PORT_CLK_SEL_WRPLL1:
01403de3 1020 link_clock = hsw_ddi_calc_wrpll_link(dev_priv, WRPLL_CTL(0));
11578553
JB
1021 break;
1022 case PORT_CLK_SEL_WRPLL2:
01403de3 1023 link_clock = hsw_ddi_calc_wrpll_link(dev_priv, WRPLL_CTL(1));
11578553
JB
1024 break;
1025 case PORT_CLK_SEL_SPLL:
1026 pll = I915_READ(SPLL_CTL) & SPLL_PLL_FREQ_MASK;
1027 if (pll == SPLL_PLL_FREQ_810MHz)
1028 link_clock = 81000;
1029 else if (pll == SPLL_PLL_FREQ_1350MHz)
1030 link_clock = 135000;
1031 else if (pll == SPLL_PLL_FREQ_2700MHz)
1032 link_clock = 270000;
1033 else {
1034 WARN(1, "bad spll freq\n");
1035 return;
1036 }
1037 break;
1038 default:
1039 WARN(1, "bad port clock sel\n");
1040 return;
1041 }
1042
1043 pipe_config->port_clock = link_clock * 2;
1044
398a017e 1045 ddi_dotclock_get(pipe_config);
11578553
JB
1046}
1047
977bb38d
S
1048static int bxt_calc_pll_link(struct drm_i915_private *dev_priv,
1049 enum intel_dpll_id dpll)
1050{
aa610dcb
ID
1051 struct intel_shared_dpll *pll;
1052 struct intel_dpll_hw_state *state;
9e2c8475 1053 struct dpll clock;
aa610dcb
ID
1054
1055 /* For DDI ports we always use a shared PLL. */
1056 if (WARN_ON(dpll == DPLL_ID_PRIVATE))
1057 return 0;
1058
1059 pll = &dev_priv->shared_dplls[dpll];
1060 state = &pll->config.hw_state;
1061
1062 clock.m1 = 2;
1063 clock.m2 = (state->pll0 & PORT_PLL_M2_MASK) << 22;
1064 if (state->pll3 & PORT_PLL_M2_FRAC_ENABLE)
1065 clock.m2 |= state->pll2 & PORT_PLL_M2_FRAC_MASK;
1066 clock.n = (state->pll1 & PORT_PLL_N_MASK) >> PORT_PLL_N_SHIFT;
1067 clock.p1 = (state->ebb0 & PORT_PLL_P1_MASK) >> PORT_PLL_P1_SHIFT;
1068 clock.p2 = (state->ebb0 & PORT_PLL_P2_MASK) >> PORT_PLL_P2_SHIFT;
1069
1070 return chv_calc_dpll_params(100000, &clock);
977bb38d
S
1071}
1072
1073static void bxt_ddi_clock_get(struct intel_encoder *encoder,
1074 struct intel_crtc_state *pipe_config)
1075{
fac5e23e 1076 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
977bb38d
S
1077 enum port port = intel_ddi_get_encoder_port(encoder);
1078 uint32_t dpll = port;
1079
398a017e 1080 pipe_config->port_clock = bxt_calc_pll_link(dev_priv, dpll);
977bb38d 1081
398a017e 1082 ddi_dotclock_get(pipe_config);
977bb38d
S
1083}
1084
3d51278a 1085void intel_ddi_clock_get(struct intel_encoder *encoder,
5cec258b 1086 struct intel_crtc_state *pipe_config)
3d51278a 1087{
0853723b 1088 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
22606a18 1089
0853723b 1090 if (INTEL_GEN(dev_priv) <= 8)
22606a18 1091 hsw_ddi_clock_get(encoder, pipe_config);
0853723b 1092 else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
22606a18 1093 skl_ddi_clock_get(encoder, pipe_config);
cc3f90f0 1094 else if (IS_GEN9_LP(dev_priv))
977bb38d 1095 bxt_ddi_clock_get(encoder, pipe_config);
3d51278a
DV
1096}
1097
0220ab6e 1098static bool
d664c0ce 1099hsw_ddi_pll_select(struct intel_crtc *intel_crtc,
190f68c5 1100 struct intel_crtc_state *crtc_state,
96f3f1f9 1101 struct intel_encoder *intel_encoder)
6441ab5f 1102{
daedf20a 1103 struct intel_shared_dpll *pll;
6441ab5f 1104
9d16da65
ACO
1105 pll = intel_get_shared_dpll(intel_crtc, crtc_state,
1106 intel_encoder);
1107 if (!pll)
1108 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
1109 pipe_name(intel_crtc->pipe));
1110
1111 return pll;
6441ab5f
PZ
1112}
1113
82d35437
S
1114static bool
1115skl_ddi_pll_select(struct intel_crtc *intel_crtc,
190f68c5 1116 struct intel_crtc_state *crtc_state,
96f3f1f9 1117 struct intel_encoder *intel_encoder)
82d35437
S
1118{
1119 struct intel_shared_dpll *pll;
82d35437 1120
daedf20a 1121 pll = intel_get_shared_dpll(intel_crtc, crtc_state, intel_encoder);
82d35437
S
1122 if (pll == NULL) {
1123 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
1124 pipe_name(intel_crtc->pipe));
1125 return false;
1126 }
1127
82d35437
S
1128 return true;
1129}
0220ab6e 1130
d683f3bc
S
1131static bool
1132bxt_ddi_pll_select(struct intel_crtc *intel_crtc,
1133 struct intel_crtc_state *crtc_state,
96f3f1f9 1134 struct intel_encoder *intel_encoder)
d683f3bc 1135{
34177c24 1136 return !!intel_get_shared_dpll(intel_crtc, crtc_state, intel_encoder);
d683f3bc
S
1137}
1138
0220ab6e
DL
1139/*
1140 * Tries to find a *shared* PLL for the CRTC and store it in
1141 * intel_crtc->ddi_pll_sel.
1142 *
1143 * For private DPLLs, compute_config() should do the selection for us. This
1144 * function should be folded into compute_config() eventually.
1145 */
190f68c5
ACO
1146bool intel_ddi_pll_select(struct intel_crtc *intel_crtc,
1147 struct intel_crtc_state *crtc_state)
0220ab6e 1148{
0853723b 1149 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
d0737e1d 1150 struct intel_encoder *intel_encoder =
3165c074 1151 intel_ddi_get_crtc_new_encoder(crtc_state);
0220ab6e 1152
0853723b 1153 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
190f68c5 1154 return skl_ddi_pll_select(intel_crtc, crtc_state,
96f3f1f9 1155 intel_encoder);
cc3f90f0 1156 else if (IS_GEN9_LP(dev_priv))
d683f3bc 1157 return bxt_ddi_pll_select(intel_crtc, crtc_state,
96f3f1f9 1158 intel_encoder);
82d35437 1159 else
190f68c5 1160 return hsw_ddi_pll_select(intel_crtc, crtc_state,
96f3f1f9 1161 intel_encoder);
0220ab6e
DL
1162}
1163
dae84799
PZ
1164void intel_ddi_set_pipe_settings(struct drm_crtc *crtc)
1165{
fac5e23e 1166 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
dae84799
PZ
1167 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1168 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
6e3c9717 1169 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
dae84799
PZ
1170 int type = intel_encoder->type;
1171 uint32_t temp;
1172
cca0502b 1173 if (type == INTEL_OUTPUT_DP || type == INTEL_OUTPUT_EDP || type == INTEL_OUTPUT_DP_MST) {
4d1de975
JN
1174 WARN_ON(transcoder_is_dsi(cpu_transcoder));
1175
c9809791 1176 temp = TRANS_MSA_SYNC_CLK;
6e3c9717 1177 switch (intel_crtc->config->pipe_bpp) {
dae84799 1178 case 18:
c9809791 1179 temp |= TRANS_MSA_6_BPC;
dae84799
PZ
1180 break;
1181 case 24:
c9809791 1182 temp |= TRANS_MSA_8_BPC;
dae84799
PZ
1183 break;
1184 case 30:
c9809791 1185 temp |= TRANS_MSA_10_BPC;
dae84799
PZ
1186 break;
1187 case 36:
c9809791 1188 temp |= TRANS_MSA_12_BPC;
dae84799
PZ
1189 break;
1190 default:
4e53c2e0 1191 BUG();
dae84799 1192 }
c9809791 1193 I915_WRITE(TRANS_MSA_MISC(cpu_transcoder), temp);
dae84799
PZ
1194 }
1195}
1196
0e32b39c
DA
1197void intel_ddi_set_vc_payload_alloc(struct drm_crtc *crtc, bool state)
1198{
1199 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1200 struct drm_device *dev = crtc->dev;
fac5e23e 1201 struct drm_i915_private *dev_priv = to_i915(dev);
6e3c9717 1202 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
0e32b39c
DA
1203 uint32_t temp;
1204 temp = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
1205 if (state == true)
1206 temp |= TRANS_DDI_DP_VC_PAYLOAD_ALLOC;
1207 else
1208 temp &= ~TRANS_DDI_DP_VC_PAYLOAD_ALLOC;
1209 I915_WRITE(TRANS_DDI_FUNC_CTL(cpu_transcoder), temp);
1210}
1211
8228c251 1212void intel_ddi_enable_transcoder_func(struct drm_crtc *crtc)
8d9ddbcb
PZ
1213{
1214 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1215 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
c7670b10 1216 struct drm_device *dev = crtc->dev;
fac5e23e 1217 struct drm_i915_private *dev_priv = to_i915(dev);
8d9ddbcb 1218 enum pipe pipe = intel_crtc->pipe;
6e3c9717 1219 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
174edf1f 1220 enum port port = intel_ddi_get_encoder_port(intel_encoder);
7739c33b 1221 int type = intel_encoder->type;
8d9ddbcb
PZ
1222 uint32_t temp;
1223
ad80a810
PZ
1224 /* Enable TRANS_DDI_FUNC_CTL for the pipe to work in HDMI mode */
1225 temp = TRANS_DDI_FUNC_ENABLE;
174edf1f 1226 temp |= TRANS_DDI_SELECT_PORT(port);
dfcef252 1227
6e3c9717 1228 switch (intel_crtc->config->pipe_bpp) {
dfcef252 1229 case 18:
ad80a810 1230 temp |= TRANS_DDI_BPC_6;
dfcef252
PZ
1231 break;
1232 case 24:
ad80a810 1233 temp |= TRANS_DDI_BPC_8;
dfcef252
PZ
1234 break;
1235 case 30:
ad80a810 1236 temp |= TRANS_DDI_BPC_10;
dfcef252
PZ
1237 break;
1238 case 36:
ad80a810 1239 temp |= TRANS_DDI_BPC_12;
dfcef252
PZ
1240 break;
1241 default:
4e53c2e0 1242 BUG();
dfcef252 1243 }
72662e10 1244
6e3c9717 1245 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_PVSYNC)
ad80a810 1246 temp |= TRANS_DDI_PVSYNC;
6e3c9717 1247 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_PHSYNC)
ad80a810 1248 temp |= TRANS_DDI_PHSYNC;
f63eb7c4 1249
e6f0bfc4
PZ
1250 if (cpu_transcoder == TRANSCODER_EDP) {
1251 switch (pipe) {
1252 case PIPE_A:
c7670b10
PZ
1253 /* On Haswell, can only use the always-on power well for
1254 * eDP when not using the panel fitter, and when not
1255 * using motion blur mitigation (which we don't
1256 * support). */
772c2a51 1257 if (IS_HASWELL(dev_priv) &&
6e3c9717
ACO
1258 (intel_crtc->config->pch_pfit.enabled ||
1259 intel_crtc->config->pch_pfit.force_thru))
d6dd9eb1
DV
1260 temp |= TRANS_DDI_EDP_INPUT_A_ONOFF;
1261 else
1262 temp |= TRANS_DDI_EDP_INPUT_A_ON;
e6f0bfc4
PZ
1263 break;
1264 case PIPE_B:
1265 temp |= TRANS_DDI_EDP_INPUT_B_ONOFF;
1266 break;
1267 case PIPE_C:
1268 temp |= TRANS_DDI_EDP_INPUT_C_ONOFF;
1269 break;
1270 default:
1271 BUG();
1272 break;
1273 }
1274 }
1275
7739c33b 1276 if (type == INTEL_OUTPUT_HDMI) {
6e3c9717 1277 if (intel_crtc->config->has_hdmi_sink)
ad80a810 1278 temp |= TRANS_DDI_MODE_SELECT_HDMI;
8d9ddbcb 1279 else
ad80a810 1280 temp |= TRANS_DDI_MODE_SELECT_DVI;
7739c33b 1281 } else if (type == INTEL_OUTPUT_ANALOG) {
ad80a810 1282 temp |= TRANS_DDI_MODE_SELECT_FDI;
6e3c9717 1283 temp |= (intel_crtc->config->fdi_lanes - 1) << 1;
cca0502b 1284 } else if (type == INTEL_OUTPUT_DP ||
7739c33b 1285 type == INTEL_OUTPUT_EDP) {
64ee2fd2 1286 temp |= TRANS_DDI_MODE_SELECT_DP_SST;
90a6b7b0 1287 temp |= DDI_PORT_WIDTH(intel_crtc->config->lane_count);
0e32b39c 1288 } else if (type == INTEL_OUTPUT_DP_MST) {
64ee2fd2 1289 temp |= TRANS_DDI_MODE_SELECT_DP_MST;
90a6b7b0 1290 temp |= DDI_PORT_WIDTH(intel_crtc->config->lane_count);
8d9ddbcb 1291 } else {
84f44ce7
VS
1292 WARN(1, "Invalid encoder type %d for pipe %c\n",
1293 intel_encoder->type, pipe_name(pipe));
8d9ddbcb
PZ
1294 }
1295
ad80a810 1296 I915_WRITE(TRANS_DDI_FUNC_CTL(cpu_transcoder), temp);
8d9ddbcb 1297}
72662e10 1298
ad80a810
PZ
1299void intel_ddi_disable_transcoder_func(struct drm_i915_private *dev_priv,
1300 enum transcoder cpu_transcoder)
8d9ddbcb 1301{
f0f59a00 1302 i915_reg_t reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
8d9ddbcb
PZ
1303 uint32_t val = I915_READ(reg);
1304
0e32b39c 1305 val &= ~(TRANS_DDI_FUNC_ENABLE | TRANS_DDI_PORT_MASK | TRANS_DDI_DP_VC_PAYLOAD_ALLOC);
ad80a810 1306 val |= TRANS_DDI_PORT_NONE;
8d9ddbcb 1307 I915_WRITE(reg, val);
72662e10
ED
1308}
1309
bcbc889b
PZ
1310bool intel_ddi_connector_get_hw_state(struct intel_connector *intel_connector)
1311{
1312 struct drm_device *dev = intel_connector->base.dev;
fac5e23e 1313 struct drm_i915_private *dev_priv = to_i915(dev);
bcbc889b
PZ
1314 struct intel_encoder *intel_encoder = intel_connector->encoder;
1315 int type = intel_connector->base.connector_type;
1316 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1317 enum pipe pipe = 0;
1318 enum transcoder cpu_transcoder;
882244a3 1319 enum intel_display_power_domain power_domain;
bcbc889b 1320 uint32_t tmp;
e27daab4 1321 bool ret;
bcbc889b 1322
882244a3 1323 power_domain = intel_display_port_power_domain(intel_encoder);
e27daab4 1324 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
882244a3
PZ
1325 return false;
1326
e27daab4
ID
1327 if (!intel_encoder->get_hw_state(intel_encoder, &pipe)) {
1328 ret = false;
1329 goto out;
1330 }
bcbc889b
PZ
1331
1332 if (port == PORT_A)
1333 cpu_transcoder = TRANSCODER_EDP;
1334 else
1a240d4d 1335 cpu_transcoder = (enum transcoder) pipe;
bcbc889b
PZ
1336
1337 tmp = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
1338
1339 switch (tmp & TRANS_DDI_MODE_SELECT_MASK) {
1340 case TRANS_DDI_MODE_SELECT_HDMI:
1341 case TRANS_DDI_MODE_SELECT_DVI:
e27daab4
ID
1342 ret = type == DRM_MODE_CONNECTOR_HDMIA;
1343 break;
bcbc889b
PZ
1344
1345 case TRANS_DDI_MODE_SELECT_DP_SST:
e27daab4
ID
1346 ret = type == DRM_MODE_CONNECTOR_eDP ||
1347 type == DRM_MODE_CONNECTOR_DisplayPort;
1348 break;
1349
0e32b39c
DA
1350 case TRANS_DDI_MODE_SELECT_DP_MST:
1351 /* if the transcoder is in MST state then
1352 * connector isn't connected */
e27daab4
ID
1353 ret = false;
1354 break;
bcbc889b
PZ
1355
1356 case TRANS_DDI_MODE_SELECT_FDI:
e27daab4
ID
1357 ret = type == DRM_MODE_CONNECTOR_VGA;
1358 break;
bcbc889b
PZ
1359
1360 default:
e27daab4
ID
1361 ret = false;
1362 break;
bcbc889b 1363 }
e27daab4
ID
1364
1365out:
1366 intel_display_power_put(dev_priv, power_domain);
1367
1368 return ret;
bcbc889b
PZ
1369}
1370
85234cdc
DV
1371bool intel_ddi_get_hw_state(struct intel_encoder *encoder,
1372 enum pipe *pipe)
1373{
1374 struct drm_device *dev = encoder->base.dev;
fac5e23e 1375 struct drm_i915_private *dev_priv = to_i915(dev);
fe43d3f5 1376 enum port port = intel_ddi_get_encoder_port(encoder);
6d129bea 1377 enum intel_display_power_domain power_domain;
85234cdc
DV
1378 u32 tmp;
1379 int i;
e27daab4 1380 bool ret;
85234cdc 1381
6d129bea 1382 power_domain = intel_display_port_power_domain(encoder);
e27daab4 1383 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
6d129bea
ID
1384 return false;
1385
e27daab4
ID
1386 ret = false;
1387
fe43d3f5 1388 tmp = I915_READ(DDI_BUF_CTL(port));
85234cdc
DV
1389
1390 if (!(tmp & DDI_BUF_CTL_ENABLE))
e27daab4 1391 goto out;
85234cdc 1392
ad80a810
PZ
1393 if (port == PORT_A) {
1394 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
85234cdc 1395
ad80a810
PZ
1396 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
1397 case TRANS_DDI_EDP_INPUT_A_ON:
1398 case TRANS_DDI_EDP_INPUT_A_ONOFF:
1399 *pipe = PIPE_A;
1400 break;
1401 case TRANS_DDI_EDP_INPUT_B_ONOFF:
1402 *pipe = PIPE_B;
1403 break;
1404 case TRANS_DDI_EDP_INPUT_C_ONOFF:
1405 *pipe = PIPE_C;
1406 break;
1407 }
1408
e27daab4 1409 ret = true;
ad80a810 1410
e27daab4
ID
1411 goto out;
1412 }
0e32b39c 1413
e27daab4
ID
1414 for (i = TRANSCODER_A; i <= TRANSCODER_C; i++) {
1415 tmp = I915_READ(TRANS_DDI_FUNC_CTL(i));
1416
1417 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(port)) {
1418 if ((tmp & TRANS_DDI_MODE_SELECT_MASK) ==
1419 TRANS_DDI_MODE_SELECT_DP_MST)
1420 goto out;
1421
1422 *pipe = i;
1423 ret = true;
1424
1425 goto out;
85234cdc
DV
1426 }
1427 }
1428
84f44ce7 1429 DRM_DEBUG_KMS("No pipe for ddi port %c found\n", port_name(port));
85234cdc 1430
e27daab4 1431out:
cc3f90f0 1432 if (ret && IS_GEN9_LP(dev_priv)) {
e93da0a0
ID
1433 tmp = I915_READ(BXT_PHY_CTL(port));
1434 if ((tmp & (BXT_PHY_LANE_POWERDOWN_ACK |
1435 BXT_PHY_LANE_ENABLED)) != BXT_PHY_LANE_ENABLED)
1436 DRM_ERROR("Port %c enabled but PHY powered down? "
1437 "(PHY_CTL %08x)\n", port_name(port), tmp);
1438 }
1439
e27daab4
ID
1440 intel_display_power_put(dev_priv, power_domain);
1441
1442 return ret;
85234cdc
DV
1443}
1444
fc914639
PZ
1445void intel_ddi_enable_pipe_clock(struct intel_crtc *intel_crtc)
1446{
1447 struct drm_crtc *crtc = &intel_crtc->base;
7d4aefd0 1448 struct drm_device *dev = crtc->dev;
fac5e23e 1449 struct drm_i915_private *dev_priv = to_i915(dev);
fc914639
PZ
1450 struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
1451 enum port port = intel_ddi_get_encoder_port(intel_encoder);
6e3c9717 1452 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
fc914639 1453
bb523fc0
PZ
1454 if (cpu_transcoder != TRANSCODER_EDP)
1455 I915_WRITE(TRANS_CLK_SEL(cpu_transcoder),
1456 TRANS_CLK_SEL_PORT(port));
fc914639
PZ
1457}
1458
1459void intel_ddi_disable_pipe_clock(struct intel_crtc *intel_crtc)
1460{
fac5e23e 1461 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
6e3c9717 1462 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
fc914639 1463
bb523fc0
PZ
1464 if (cpu_transcoder != TRANSCODER_EDP)
1465 I915_WRITE(TRANS_CLK_SEL(cpu_transcoder),
1466 TRANS_CLK_SEL_DISABLED);
fc914639
PZ
1467}
1468
a7d8dbc0
VS
1469static void _skl_ddi_set_iboost(struct drm_i915_private *dev_priv,
1470 enum port port, uint8_t iboost)
f8896f5d 1471{
a7d8dbc0
VS
1472 u32 tmp;
1473
1474 tmp = I915_READ(DISPIO_CR_TX_BMU_CR0);
1475 tmp &= ~(BALANCE_LEG_MASK(port) | BALANCE_LEG_DISABLE(port));
1476 if (iboost)
1477 tmp |= iboost << BALANCE_LEG_SHIFT(port);
1478 else
1479 tmp |= BALANCE_LEG_DISABLE(port);
1480 I915_WRITE(DISPIO_CR_TX_BMU_CR0, tmp);
1481}
1482
1483static void skl_ddi_set_iboost(struct intel_encoder *encoder, u32 level)
1484{
1485 struct intel_digital_port *intel_dig_port = enc_to_dig_port(&encoder->base);
1486 struct drm_i915_private *dev_priv = to_i915(intel_dig_port->base.base.dev);
1487 enum port port = intel_dig_port->port;
1488 int type = encoder->type;
f8896f5d
DW
1489 const struct ddi_buf_trans *ddi_translations;
1490 uint8_t iboost;
75067dde 1491 uint8_t dp_iboost, hdmi_iboost;
f8896f5d 1492 int n_entries;
f8896f5d 1493
75067dde
AK
1494 /* VBT may override standard boost values */
1495 dp_iboost = dev_priv->vbt.ddi_port_info[port].dp_boost_level;
1496 hdmi_iboost = dev_priv->vbt.ddi_port_info[port].hdmi_boost_level;
1497
cca0502b 1498 if (type == INTEL_OUTPUT_DP) {
75067dde
AK
1499 if (dp_iboost) {
1500 iboost = dp_iboost;
1501 } else {
0fdd4918
RV
1502 if (IS_KABYLAKE(dev_priv))
1503 ddi_translations = kbl_get_buf_trans_dp(dev_priv,
1504 &n_entries);
1505 else
1506 ddi_translations = skl_get_buf_trans_dp(dev_priv,
1507 &n_entries);
e4d4c05b 1508 iboost = ddi_translations[level].i_boost;
75067dde 1509 }
f8896f5d 1510 } else if (type == INTEL_OUTPUT_EDP) {
75067dde
AK
1511 if (dp_iboost) {
1512 iboost = dp_iboost;
1513 } else {
78ab0bae 1514 ddi_translations = skl_get_buf_trans_edp(dev_priv, &n_entries);
10afa0b6
VS
1515
1516 if (WARN_ON(port != PORT_A &&
1517 port != PORT_E && n_entries > 9))
1518 n_entries = 9;
1519
e4d4c05b 1520 iboost = ddi_translations[level].i_boost;
75067dde 1521 }
f8896f5d 1522 } else if (type == INTEL_OUTPUT_HDMI) {
75067dde
AK
1523 if (hdmi_iboost) {
1524 iboost = hdmi_iboost;
1525 } else {
78ab0bae 1526 ddi_translations = skl_get_buf_trans_hdmi(dev_priv, &n_entries);
e4d4c05b 1527 iboost = ddi_translations[level].i_boost;
75067dde 1528 }
f8896f5d
DW
1529 } else {
1530 return;
1531 }
1532
1533 /* Make sure that the requested I_boost is valid */
1534 if (iboost && iboost != 0x1 && iboost != 0x3 && iboost != 0x7) {
1535 DRM_ERROR("Invalid I_boost value %u\n", iboost);
1536 return;
1537 }
1538
a7d8dbc0 1539 _skl_ddi_set_iboost(dev_priv, port, iboost);
f8896f5d 1540
a7d8dbc0
VS
1541 if (port == PORT_A && intel_dig_port->max_lanes == 4)
1542 _skl_ddi_set_iboost(dev_priv, PORT_E, iboost);
f8896f5d
DW
1543}
1544
78ab0bae
VS
1545static void bxt_ddi_vswing_sequence(struct drm_i915_private *dev_priv,
1546 u32 level, enum port port, int type)
96fb9f9b 1547{
96fb9f9b
VK
1548 const struct bxt_ddi_buf_trans *ddi_translations;
1549 u32 n_entries, i;
96fb9f9b 1550
06411f08 1551 if (type == INTEL_OUTPUT_EDP && dev_priv->vbt.edp.low_vswing) {
d9d7000d
SJ
1552 n_entries = ARRAY_SIZE(bxt_ddi_translations_edp);
1553 ddi_translations = bxt_ddi_translations_edp;
cca0502b 1554 } else if (type == INTEL_OUTPUT_DP
d9d7000d 1555 || type == INTEL_OUTPUT_EDP) {
96fb9f9b
VK
1556 n_entries = ARRAY_SIZE(bxt_ddi_translations_dp);
1557 ddi_translations = bxt_ddi_translations_dp;
1558 } else if (type == INTEL_OUTPUT_HDMI) {
1559 n_entries = ARRAY_SIZE(bxt_ddi_translations_hdmi);
1560 ddi_translations = bxt_ddi_translations_hdmi;
1561 } else {
1562 DRM_DEBUG_KMS("Vswing programming not done for encoder %d\n",
1563 type);
1564 return;
1565 }
1566
1567 /* Check if default value has to be used */
1568 if (level >= n_entries ||
1569 (type == INTEL_OUTPUT_HDMI && level == HDMI_LEVEL_SHIFT_UNKNOWN)) {
1570 for (i = 0; i < n_entries; i++) {
1571 if (ddi_translations[i].default_index) {
1572 level = i;
1573 break;
1574 }
1575 }
1576 }
1577
b6e08203
ACO
1578 bxt_ddi_phy_set_signal_level(dev_priv, port,
1579 ddi_translations[level].margin,
1580 ddi_translations[level].scale,
1581 ddi_translations[level].enable,
1582 ddi_translations[level].deemphasis);
96fb9f9b
VK
1583}
1584
f8896f5d
DW
1585static uint32_t translate_signal_level(int signal_levels)
1586{
1587 uint32_t level;
1588
1589 switch (signal_levels) {
1590 default:
1591 DRM_DEBUG_KMS("Unsupported voltage swing/pre-emphasis level: 0x%x\n",
1592 signal_levels);
1593 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_0:
1594 level = 0;
1595 break;
1596 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_1:
1597 level = 1;
1598 break;
1599 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_2:
1600 level = 2;
1601 break;
1602 case DP_TRAIN_VOLTAGE_SWING_LEVEL_0 | DP_TRAIN_PRE_EMPH_LEVEL_3:
1603 level = 3;
1604 break;
1605
1606 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_0:
1607 level = 4;
1608 break;
1609 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_1:
1610 level = 5;
1611 break;
1612 case DP_TRAIN_VOLTAGE_SWING_LEVEL_1 | DP_TRAIN_PRE_EMPH_LEVEL_2:
1613 level = 6;
1614 break;
1615
1616 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_0:
1617 level = 7;
1618 break;
1619 case DP_TRAIN_VOLTAGE_SWING_LEVEL_2 | DP_TRAIN_PRE_EMPH_LEVEL_1:
1620 level = 8;
1621 break;
1622
1623 case DP_TRAIN_VOLTAGE_SWING_LEVEL_3 | DP_TRAIN_PRE_EMPH_LEVEL_0:
1624 level = 9;
1625 break;
1626 }
1627
1628 return level;
1629}
1630
1631uint32_t ddi_signal_levels(struct intel_dp *intel_dp)
1632{
1633 struct intel_digital_port *dport = dp_to_dig_port(intel_dp);
78ab0bae 1634 struct drm_i915_private *dev_priv = to_i915(dport->base.base.dev);
f8896f5d
DW
1635 struct intel_encoder *encoder = &dport->base;
1636 uint8_t train_set = intel_dp->train_set[0];
1637 int signal_levels = train_set & (DP_TRAIN_VOLTAGE_SWING_MASK |
1638 DP_TRAIN_PRE_EMPHASIS_MASK);
1639 enum port port = dport->port;
1640 uint32_t level;
1641
1642 level = translate_signal_level(signal_levels);
1643
78ab0bae 1644 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
a7d8dbc0 1645 skl_ddi_set_iboost(encoder, level);
cc3f90f0 1646 else if (IS_GEN9_LP(dev_priv))
78ab0bae 1647 bxt_ddi_vswing_sequence(dev_priv, level, port, encoder->type);
f8896f5d
DW
1648
1649 return DDI_BUF_TRANS_SELECT(level);
1650}
1651
e404ba8d 1652void intel_ddi_clk_select(struct intel_encoder *encoder,
c856052a 1653 struct intel_shared_dpll *pll)
6441ab5f 1654{
e404ba8d
VS
1655 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1656 enum port port = intel_ddi_get_encoder_port(encoder);
6441ab5f 1657
c856052a
ACO
1658 if (WARN_ON(!pll))
1659 return;
1660
e404ba8d 1661 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
efa80add
S
1662 uint32_t val;
1663
5416d871 1664 /* DDI -> PLL mapping */
efa80add
S
1665 val = I915_READ(DPLL_CTRL2);
1666
1667 val &= ~(DPLL_CTRL2_DDI_CLK_OFF(port) |
1668 DPLL_CTRL2_DDI_CLK_SEL_MASK(port));
c856052a 1669 val |= (DPLL_CTRL2_DDI_CLK_SEL(pll->id, port) |
efa80add
S
1670 DPLL_CTRL2_DDI_SEL_OVERRIDE(port));
1671
1672 I915_WRITE(DPLL_CTRL2, val);
5416d871 1673
e404ba8d 1674 } else if (INTEL_INFO(dev_priv)->gen < 9) {
c856052a 1675 I915_WRITE(PORT_CLK_SEL(port), hsw_pll_to_ddi_pll_sel(pll));
efa80add 1676 }
e404ba8d
VS
1677}
1678
ba88d153
MN
1679static void intel_ddi_pre_enable_dp(struct intel_encoder *encoder,
1680 int link_rate, uint32_t lane_count,
1681 struct intel_shared_dpll *pll,
1682 bool link_mst)
e404ba8d 1683{
ba88d153
MN
1684 struct intel_dp *intel_dp = enc_to_intel_dp(&encoder->base);
1685 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1686 enum port port = intel_ddi_get_encoder_port(encoder);
b2ccb822 1687
ba88d153
MN
1688 intel_dp_set_link_params(intel_dp, link_rate, lane_count,
1689 link_mst);
1690 if (encoder->type == INTEL_OUTPUT_EDP)
e404ba8d 1691 intel_edp_panel_on(intel_dp);
32bdc400 1692
ba88d153
MN
1693 intel_ddi_clk_select(encoder, pll);
1694 intel_prepare_dp_ddi_buffers(encoder);
1695 intel_ddi_init_dp_buf_reg(encoder);
1696 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_ON);
1697 intel_dp_start_link_train(intel_dp);
1698 if (port != PORT_A || INTEL_GEN(dev_priv) >= 9)
1699 intel_dp_stop_link_train(intel_dp);
1700}
901c2daf 1701
ba88d153
MN
1702static void intel_ddi_pre_enable_hdmi(struct intel_encoder *encoder,
1703 bool has_hdmi_sink,
ac240288
ML
1704 const struct intel_crtc_state *crtc_state,
1705 const struct drm_connector_state *conn_state,
ba88d153
MN
1706 struct intel_shared_dpll *pll)
1707{
1708 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1709 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1710 struct drm_encoder *drm_encoder = &encoder->base;
1711 enum port port = intel_ddi_get_encoder_port(encoder);
1712 int level = intel_ddi_hdmi_level(dev_priv, port);
c19b0669 1713
ba88d153
MN
1714 intel_dp_dual_mode_set_tmds_output(intel_hdmi, true);
1715 intel_ddi_clk_select(encoder, pll);
1716 intel_prepare_hdmi_ddi_buffers(encoder);
1717 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
1718 skl_ddi_set_iboost(encoder, level);
cc3f90f0 1719 else if (IS_GEN9_LP(dev_priv))
ba88d153
MN
1720 bxt_ddi_vswing_sequence(dev_priv, level, port,
1721 INTEL_OUTPUT_HDMI);
8d8bb85e 1722
ba88d153
MN
1723 intel_hdmi->set_infoframes(drm_encoder,
1724 has_hdmi_sink,
ac240288 1725 crtc_state, conn_state);
ba88d153 1726}
32bdc400 1727
ba88d153
MN
1728static void intel_ddi_pre_enable(struct intel_encoder *intel_encoder,
1729 struct intel_crtc_state *pipe_config,
1730 struct drm_connector_state *conn_state)
1731{
1732 struct drm_encoder *encoder = &intel_encoder->base;
1733 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
1734 int type = intel_encoder->type;
30cf6db8 1735
ba88d153
MN
1736 if (type == INTEL_OUTPUT_DP || type == INTEL_OUTPUT_EDP) {
1737 intel_ddi_pre_enable_dp(intel_encoder,
1738 crtc->config->port_clock,
1739 crtc->config->lane_count,
1740 crtc->config->shared_dpll,
1741 intel_crtc_has_type(crtc->config,
1742 INTEL_OUTPUT_DP_MST));
1743 }
1744 if (type == INTEL_OUTPUT_HDMI) {
1745 intel_ddi_pre_enable_hdmi(intel_encoder,
ac240288
ML
1746 pipe_config->has_hdmi_sink,
1747 pipe_config, conn_state,
ba88d153 1748 crtc->config->shared_dpll);
c19b0669 1749 }
6441ab5f
PZ
1750}
1751
fd6bbda9
ML
1752static void intel_ddi_post_disable(struct intel_encoder *intel_encoder,
1753 struct intel_crtc_state *old_crtc_state,
1754 struct drm_connector_state *old_conn_state)
6441ab5f
PZ
1755{
1756 struct drm_encoder *encoder = &intel_encoder->base;
66478475 1757 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
6441ab5f 1758 enum port port = intel_ddi_get_encoder_port(intel_encoder);
82a4d9c0 1759 int type = intel_encoder->type;
2886e93f 1760 uint32_t val;
a836bdf9 1761 bool wait = false;
2886e93f 1762
fd6bbda9
ML
1763 /* old_crtc_state and old_conn_state are NULL when called from DP_MST */
1764
2886e93f
PZ
1765 val = I915_READ(DDI_BUF_CTL(port));
1766 if (val & DDI_BUF_CTL_ENABLE) {
1767 val &= ~DDI_BUF_CTL_ENABLE;
1768 I915_WRITE(DDI_BUF_CTL(port), val);
a836bdf9 1769 wait = true;
2886e93f 1770 }
6441ab5f 1771
a836bdf9
PZ
1772 val = I915_READ(DP_TP_CTL(port));
1773 val &= ~(DP_TP_CTL_ENABLE | DP_TP_CTL_LINK_TRAIN_MASK);
1774 val |= DP_TP_CTL_LINK_TRAIN_PAT1;
1775 I915_WRITE(DP_TP_CTL(port), val);
1776
1777 if (wait)
1778 intel_wait_ddi_buf_idle(dev_priv, port);
1779
cca0502b 1780 if (type == INTEL_OUTPUT_DP || type == INTEL_OUTPUT_EDP) {
82a4d9c0 1781 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
76bb80ed 1782 intel_dp_sink_dpms(intel_dp, DRM_MODE_DPMS_OFF);
24f3e092 1783 intel_edp_panel_vdd_on(intel_dp);
4be73780 1784 intel_edp_panel_off(intel_dp);
82a4d9c0
PZ
1785 }
1786
0853723b 1787 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
efa80add
S
1788 I915_WRITE(DPLL_CTRL2, (I915_READ(DPLL_CTRL2) |
1789 DPLL_CTRL2_DDI_CLK_OFF(port)));
66478475 1790 else if (INTEL_GEN(dev_priv) < 9)
efa80add 1791 I915_WRITE(PORT_CLK_SEL(port), PORT_CLK_SEL_NONE);
b2ccb822
VS
1792
1793 if (type == INTEL_OUTPUT_HDMI) {
1794 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
1795
1796 intel_dp_dual_mode_set_tmds_output(intel_hdmi, false);
1797 }
6441ab5f
PZ
1798}
1799
b7076546
ML
1800void intel_ddi_fdi_post_disable(struct intel_encoder *intel_encoder,
1801 struct intel_crtc_state *old_crtc_state,
1802 struct drm_connector_state *old_conn_state)
1803{
1804 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
1805 uint32_t val;
1806
1807 /*
1808 * Bspec lists this as both step 13 (before DDI_BUF_CTL disable)
1809 * and step 18 (after clearing PORT_CLK_SEL). Based on a BUN,
1810 * step 13 is the correct place for it. Step 18 is where it was
1811 * originally before the BUN.
1812 */
1813 val = I915_READ(FDI_RX_CTL(PIPE_A));
1814 val &= ~FDI_RX_ENABLE;
1815 I915_WRITE(FDI_RX_CTL(PIPE_A), val);
1816
1817 intel_ddi_post_disable(intel_encoder, old_crtc_state, old_conn_state);
1818
1819 val = I915_READ(FDI_RX_MISC(PIPE_A));
1820 val &= ~(FDI_RX_PWRDN_LANE1_MASK | FDI_RX_PWRDN_LANE0_MASK);
1821 val |= FDI_RX_PWRDN_LANE1_VAL(2) | FDI_RX_PWRDN_LANE0_VAL(2);
1822 I915_WRITE(FDI_RX_MISC(PIPE_A), val);
1823
1824 val = I915_READ(FDI_RX_CTL(PIPE_A));
1825 val &= ~FDI_PCDCLK;
1826 I915_WRITE(FDI_RX_CTL(PIPE_A), val);
1827
1828 val = I915_READ(FDI_RX_CTL(PIPE_A));
1829 val &= ~FDI_RX_PLL_ENABLE;
1830 I915_WRITE(FDI_RX_CTL(PIPE_A), val);
1831}
1832
fd6bbda9
ML
1833static void intel_enable_ddi(struct intel_encoder *intel_encoder,
1834 struct intel_crtc_state *pipe_config,
1835 struct drm_connector_state *conn_state)
72662e10 1836{
6547fef8 1837 struct drm_encoder *encoder = &intel_encoder->base;
7b9f35a6
WX
1838 struct drm_crtc *crtc = encoder->crtc;
1839 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
66478475 1840 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
6547fef8
PZ
1841 enum port port = intel_ddi_get_encoder_port(intel_encoder);
1842 int type = intel_encoder->type;
72662e10 1843
6547fef8 1844 if (type == INTEL_OUTPUT_HDMI) {
876a8cdf
DL
1845 struct intel_digital_port *intel_dig_port =
1846 enc_to_dig_port(encoder);
1847
6547fef8
PZ
1848 /* In HDMI/DVI mode, the port width, and swing/emphasis values
1849 * are ignored so nothing special needs to be done besides
1850 * enabling the port.
1851 */
876a8cdf 1852 I915_WRITE(DDI_BUF_CTL(port),
bcf53de4
SM
1853 intel_dig_port->saved_port_bits |
1854 DDI_BUF_CTL_ENABLE);
d6c50ff8
PZ
1855 } else if (type == INTEL_OUTPUT_EDP) {
1856 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1857
66478475 1858 if (port == PORT_A && INTEL_GEN(dev_priv) < 9)
3ab9c637
ID
1859 intel_dp_stop_link_train(intel_dp);
1860
4be73780 1861 intel_edp_backlight_on(intel_dp);
0bc12bcb 1862 intel_psr_enable(intel_dp);
85cb48a1 1863 intel_edp_drrs_enable(intel_dp, pipe_config);
6547fef8 1864 }
7b9f35a6 1865
6e3c9717 1866 if (intel_crtc->config->has_audio) {
d45a0bf5 1867 intel_display_power_get(dev_priv, POWER_DOMAIN_AUDIO);
bbf35e9d 1868 intel_audio_codec_enable(intel_encoder, pipe_config, conn_state);
7b9f35a6 1869 }
5ab432ef
DV
1870}
1871
fd6bbda9
ML
1872static void intel_disable_ddi(struct intel_encoder *intel_encoder,
1873 struct intel_crtc_state *old_crtc_state,
1874 struct drm_connector_state *old_conn_state)
5ab432ef 1875{
d6c50ff8 1876 struct drm_encoder *encoder = &intel_encoder->base;
7b9f35a6
WX
1877 struct drm_crtc *crtc = encoder->crtc;
1878 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
d6c50ff8 1879 int type = intel_encoder->type;
7b9f35a6 1880 struct drm_device *dev = encoder->dev;
fac5e23e 1881 struct drm_i915_private *dev_priv = to_i915(dev);
d6c50ff8 1882
6e3c9717 1883 if (intel_crtc->config->has_audio) {
69bfe1a9 1884 intel_audio_codec_disable(intel_encoder);
d45a0bf5
PZ
1885 intel_display_power_put(dev_priv, POWER_DOMAIN_AUDIO);
1886 }
2831d842 1887
d6c50ff8
PZ
1888 if (type == INTEL_OUTPUT_EDP) {
1889 struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
1890
85cb48a1 1891 intel_edp_drrs_disable(intel_dp, old_crtc_state);
0bc12bcb 1892 intel_psr_disable(intel_dp);
4be73780 1893 intel_edp_backlight_off(intel_dp);
d6c50ff8 1894 }
72662e10 1895}
79f689aa 1896
fd6bbda9
ML
1897static void bxt_ddi_pre_pll_enable(struct intel_encoder *encoder,
1898 struct intel_crtc_state *pipe_config,
1899 struct drm_connector_state *conn_state)
95a7a2ae 1900{
95a7a2ae 1901 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
47a6bc61 1902 uint8_t mask = intel_crtc->config->lane_lat_optim_mask;
95a7a2ae 1903
47a6bc61 1904 bxt_ddi_phy_set_lane_optim_mask(encoder, mask);
95a7a2ae
ID
1905}
1906
ad64217b 1907void intel_ddi_prepare_link_retrain(struct intel_dp *intel_dp)
c19b0669 1908{
ad64217b
ACO
1909 struct intel_digital_port *intel_dig_port = dp_to_dig_port(intel_dp);
1910 struct drm_i915_private *dev_priv =
1911 to_i915(intel_dig_port->base.base.dev);
174edf1f 1912 enum port port = intel_dig_port->port;
c19b0669 1913 uint32_t val;
f3e227df 1914 bool wait = false;
c19b0669
PZ
1915
1916 if (I915_READ(DP_TP_CTL(port)) & DP_TP_CTL_ENABLE) {
1917 val = I915_READ(DDI_BUF_CTL(port));
1918 if (val & DDI_BUF_CTL_ENABLE) {
1919 val &= ~DDI_BUF_CTL_ENABLE;
1920 I915_WRITE(DDI_BUF_CTL(port), val);
1921 wait = true;
1922 }
1923
1924 val = I915_READ(DP_TP_CTL(port));
1925 val &= ~(DP_TP_CTL_ENABLE | DP_TP_CTL_LINK_TRAIN_MASK);
1926 val |= DP_TP_CTL_LINK_TRAIN_PAT1;
1927 I915_WRITE(DP_TP_CTL(port), val);
1928 POSTING_READ(DP_TP_CTL(port));
1929
1930 if (wait)
1931 intel_wait_ddi_buf_idle(dev_priv, port);
1932 }
1933
0e32b39c 1934 val = DP_TP_CTL_ENABLE |
c19b0669 1935 DP_TP_CTL_LINK_TRAIN_PAT1 | DP_TP_CTL_SCRAMBLE_DISABLE;
64ee2fd2 1936 if (intel_dp->link_mst)
0e32b39c
DA
1937 val |= DP_TP_CTL_MODE_MST;
1938 else {
1939 val |= DP_TP_CTL_MODE_SST;
1940 if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
1941 val |= DP_TP_CTL_ENHANCED_FRAME_ENABLE;
1942 }
c19b0669
PZ
1943 I915_WRITE(DP_TP_CTL(port), val);
1944 POSTING_READ(DP_TP_CTL(port));
1945
1946 intel_dp->DP |= DDI_BUF_CTL_ENABLE;
1947 I915_WRITE(DDI_BUF_CTL(port), intel_dp->DP);
1948 POSTING_READ(DDI_BUF_CTL(port));
1949
1950 udelay(600);
1951}
00c09d70 1952
9935f7fa
LY
1953bool intel_ddi_is_audio_enabled(struct drm_i915_private *dev_priv,
1954 struct intel_crtc *intel_crtc)
1955{
1956 u32 temp;
1957
1958 if (intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_AUDIO)) {
1959 temp = I915_READ(HSW_AUD_PIN_ELD_CP_VLD);
1960 if (temp & AUDIO_OUTPUT_ENABLE(intel_crtc->pipe))
1961 return true;
1962 }
1963 return false;
1964}
1965
6801c18c 1966void intel_ddi_get_config(struct intel_encoder *encoder,
5cec258b 1967 struct intel_crtc_state *pipe_config)
045ac3b5 1968{
fac5e23e 1969 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
045ac3b5 1970 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
0cb09a97 1971 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
bbd440fb 1972 struct intel_hdmi *intel_hdmi;
045ac3b5
JB
1973 u32 temp, flags = 0;
1974
4d1de975
JN
1975 /* XXX: DSI transcoder paranoia */
1976 if (WARN_ON(transcoder_is_dsi(cpu_transcoder)))
1977 return;
1978
045ac3b5
JB
1979 temp = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
1980 if (temp & TRANS_DDI_PHSYNC)
1981 flags |= DRM_MODE_FLAG_PHSYNC;
1982 else
1983 flags |= DRM_MODE_FLAG_NHSYNC;
1984 if (temp & TRANS_DDI_PVSYNC)
1985 flags |= DRM_MODE_FLAG_PVSYNC;
1986 else
1987 flags |= DRM_MODE_FLAG_NVSYNC;
1988
2d112de7 1989 pipe_config->base.adjusted_mode.flags |= flags;
42571aef
VS
1990
1991 switch (temp & TRANS_DDI_BPC_MASK) {
1992 case TRANS_DDI_BPC_6:
1993 pipe_config->pipe_bpp = 18;
1994 break;
1995 case TRANS_DDI_BPC_8:
1996 pipe_config->pipe_bpp = 24;
1997 break;
1998 case TRANS_DDI_BPC_10:
1999 pipe_config->pipe_bpp = 30;
2000 break;
2001 case TRANS_DDI_BPC_12:
2002 pipe_config->pipe_bpp = 36;
2003 break;
2004 default:
2005 break;
2006 }
eb14cb74
VS
2007
2008 switch (temp & TRANS_DDI_MODE_SELECT_MASK) {
2009 case TRANS_DDI_MODE_SELECT_HDMI:
6897b4b5 2010 pipe_config->has_hdmi_sink = true;
bbd440fb
DV
2011 intel_hdmi = enc_to_intel_hdmi(&encoder->base);
2012
cda0aaaf 2013 if (intel_hdmi->infoframe_enabled(&encoder->base, pipe_config))
bbd440fb 2014 pipe_config->has_infoframe = true;
d4d6279a 2015 /* fall through */
eb14cb74 2016 case TRANS_DDI_MODE_SELECT_DVI:
d4d6279a
ACO
2017 pipe_config->lane_count = 4;
2018 break;
eb14cb74
VS
2019 case TRANS_DDI_MODE_SELECT_FDI:
2020 break;
2021 case TRANS_DDI_MODE_SELECT_DP_SST:
2022 case TRANS_DDI_MODE_SELECT_DP_MST:
90a6b7b0
VS
2023 pipe_config->lane_count =
2024 ((temp & DDI_PORT_WIDTH_MASK) >> DDI_PORT_WIDTH_SHIFT) + 1;
eb14cb74
VS
2025 intel_dp_get_m_n(intel_crtc, pipe_config);
2026 break;
2027 default:
2028 break;
2029 }
10214420 2030
9935f7fa
LY
2031 pipe_config->has_audio =
2032 intel_ddi_is_audio_enabled(dev_priv, intel_crtc);
9ed109a7 2033
6aa23e65
JN
2034 if (encoder->type == INTEL_OUTPUT_EDP && dev_priv->vbt.edp.bpp &&
2035 pipe_config->pipe_bpp > dev_priv->vbt.edp.bpp) {
10214420
DV
2036 /*
2037 * This is a big fat ugly hack.
2038 *
2039 * Some machines in UEFI boot mode provide us a VBT that has 18
2040 * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
2041 * unknown we fail to light up. Yet the same BIOS boots up with
2042 * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
2043 * max, not what it tells us to use.
2044 *
2045 * Note: This will still be broken if the eDP panel is not lit
2046 * up by the BIOS, and thus we can't get the mode at module
2047 * load.
2048 */
2049 DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
6aa23e65
JN
2050 pipe_config->pipe_bpp, dev_priv->vbt.edp.bpp);
2051 dev_priv->vbt.edp.bpp = pipe_config->pipe_bpp;
10214420 2052 }
11578553 2053
22606a18 2054 intel_ddi_clock_get(encoder, pipe_config);
95a7a2ae 2055
cc3f90f0 2056 if (IS_GEN9_LP(dev_priv))
95a7a2ae
ID
2057 pipe_config->lane_lat_optim_mask =
2058 bxt_ddi_phy_get_lane_lat_optim_mask(encoder);
045ac3b5
JB
2059}
2060
5bfe2ac0 2061static bool intel_ddi_compute_config(struct intel_encoder *encoder,
0a478c27
ML
2062 struct intel_crtc_state *pipe_config,
2063 struct drm_connector_state *conn_state)
00c09d70 2064{
fac5e23e 2065 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
5bfe2ac0 2066 int type = encoder->type;
eccb140b 2067 int port = intel_ddi_get_encoder_port(encoder);
95a7a2ae 2068 int ret;
00c09d70 2069
5bfe2ac0 2070 WARN(type == INTEL_OUTPUT_UNKNOWN, "compute_config() on unknown output!\n");
00c09d70 2071
eccb140b
DV
2072 if (port == PORT_A)
2073 pipe_config->cpu_transcoder = TRANSCODER_EDP;
2074
00c09d70 2075 if (type == INTEL_OUTPUT_HDMI)
0a478c27 2076 ret = intel_hdmi_compute_config(encoder, pipe_config, conn_state);
00c09d70 2077 else
0a478c27 2078 ret = intel_dp_compute_config(encoder, pipe_config, conn_state);
95a7a2ae 2079
cc3f90f0 2080 if (IS_GEN9_LP(dev_priv) && ret)
95a7a2ae
ID
2081 pipe_config->lane_lat_optim_mask =
2082 bxt_ddi_phy_calc_lane_lat_optim_mask(encoder,
b284eeda 2083 pipe_config->lane_count);
95a7a2ae
ID
2084
2085 return ret;
2086
00c09d70
PZ
2087}
2088
2089static const struct drm_encoder_funcs intel_ddi_funcs = {
bf93ba67
ID
2090 .reset = intel_dp_encoder_reset,
2091 .destroy = intel_dp_encoder_destroy,
00c09d70
PZ
2092};
2093
4a28ae58
PZ
2094static struct intel_connector *
2095intel_ddi_init_dp_connector(struct intel_digital_port *intel_dig_port)
2096{
2097 struct intel_connector *connector;
2098 enum port port = intel_dig_port->port;
2099
9bdbd0b9 2100 connector = intel_connector_alloc();
4a28ae58
PZ
2101 if (!connector)
2102 return NULL;
2103
2104 intel_dig_port->dp.output_reg = DDI_BUF_CTL(port);
2105 if (!intel_dp_init_connector(intel_dig_port, connector)) {
2106 kfree(connector);
2107 return NULL;
2108 }
2109
2110 return connector;
2111}
2112
2113static struct intel_connector *
2114intel_ddi_init_hdmi_connector(struct intel_digital_port *intel_dig_port)
2115{
2116 struct intel_connector *connector;
2117 enum port port = intel_dig_port->port;
2118
9bdbd0b9 2119 connector = intel_connector_alloc();
4a28ae58
PZ
2120 if (!connector)
2121 return NULL;
2122
2123 intel_dig_port->hdmi.hdmi_reg = DDI_BUF_CTL(port);
2124 intel_hdmi_init_connector(intel_dig_port, connector);
2125
2126 return connector;
2127}
2128
f169660e
JB
2129struct intel_shared_dpll *
2130intel_ddi_get_link_dpll(struct intel_dp *intel_dp, int clock)
2131{
2132 struct intel_connector *connector = intel_dp->attached_connector;
2133 struct intel_encoder *encoder = connector->encoder;
2134 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
2135 struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
2136 struct intel_shared_dpll *pll = NULL;
2137 struct intel_shared_dpll_config tmp_pll_config;
2138 enum intel_dpll_id dpll_id;
2139
cc3f90f0 2140 if (IS_GEN9_LP(dev_priv)) {
f169660e
JB
2141 dpll_id = (enum intel_dpll_id)dig_port->port;
2142 /*
2143 * Select the required PLL. This works for platforms where
2144 * there is no shared DPLL.
2145 */
2146 pll = &dev_priv->shared_dplls[dpll_id];
2147 if (WARN_ON(pll->active_mask)) {
2148
2149 DRM_ERROR("Shared DPLL in use. active_mask:%x\n",
2150 pll->active_mask);
2151 return NULL;
2152 }
2153 tmp_pll_config = pll->config;
2154 if (!bxt_ddi_dp_set_dpll_hw_state(clock,
2155 &pll->config.hw_state)) {
2156 DRM_ERROR("Could not setup DPLL\n");
2157 pll->config = tmp_pll_config;
2158 return NULL;
2159 }
2686ebfd 2160 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
f169660e
JB
2161 pll = skl_find_link_pll(dev_priv, clock);
2162 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
2163 pll = hsw_ddi_dp_get_dpll(encoder, clock);
2164 }
2165 return pll;
2166}
2167
c39055b0 2168void intel_ddi_init(struct drm_i915_private *dev_priv, enum port port)
00c09d70
PZ
2169{
2170 struct intel_digital_port *intel_dig_port;
2171 struct intel_encoder *intel_encoder;
2172 struct drm_encoder *encoder;
ff662124 2173 bool init_hdmi, init_dp, init_lspcon = false;
10e7bec3
VS
2174 int max_lanes;
2175
2176 if (I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES) {
2177 switch (port) {
2178 case PORT_A:
2179 max_lanes = 4;
2180 break;
2181 case PORT_E:
2182 max_lanes = 0;
2183 break;
2184 default:
2185 max_lanes = 4;
2186 break;
2187 }
2188 } else {
2189 switch (port) {
2190 case PORT_A:
2191 max_lanes = 2;
2192 break;
2193 case PORT_E:
2194 max_lanes = 2;
2195 break;
2196 default:
2197 max_lanes = 4;
2198 break;
2199 }
2200 }
311a2094
PZ
2201
2202 init_hdmi = (dev_priv->vbt.ddi_port_info[port].supports_dvi ||
2203 dev_priv->vbt.ddi_port_info[port].supports_hdmi);
2204 init_dp = dev_priv->vbt.ddi_port_info[port].supports_dp;
ff662124
SS
2205
2206 if (intel_bios_is_lspcon_present(dev_priv, port)) {
2207 /*
2208 * Lspcon device needs to be driven with DP connector
2209 * with special detection sequence. So make sure DP
2210 * is initialized before lspcon.
2211 */
2212 init_dp = true;
2213 init_lspcon = true;
2214 init_hdmi = false;
2215 DRM_DEBUG_KMS("VBT says port %c has lspcon\n", port_name(port));
2216 }
2217
311a2094 2218 if (!init_dp && !init_hdmi) {
500ea70d 2219 DRM_DEBUG_KMS("VBT says port %c is not DVI/HDMI/DP compatible, respect it\n",
311a2094 2220 port_name(port));
500ea70d 2221 return;
311a2094 2222 }
00c09d70 2223
b14c5679 2224 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
00c09d70
PZ
2225 if (!intel_dig_port)
2226 return;
2227
00c09d70
PZ
2228 intel_encoder = &intel_dig_port->base;
2229 encoder = &intel_encoder->base;
2230
c39055b0 2231 drm_encoder_init(&dev_priv->drm, encoder, &intel_ddi_funcs,
580d8ed5 2232 DRM_MODE_ENCODER_TMDS, "DDI %c", port_name(port));
00c09d70 2233
5bfe2ac0 2234 intel_encoder->compute_config = intel_ddi_compute_config;
00c09d70 2235 intel_encoder->enable = intel_enable_ddi;
cc3f90f0 2236 if (IS_GEN9_LP(dev_priv))
95a7a2ae 2237 intel_encoder->pre_pll_enable = bxt_ddi_pre_pll_enable;
00c09d70
PZ
2238 intel_encoder->pre_enable = intel_ddi_pre_enable;
2239 intel_encoder->disable = intel_disable_ddi;
2240 intel_encoder->post_disable = intel_ddi_post_disable;
2241 intel_encoder->get_hw_state = intel_ddi_get_hw_state;
045ac3b5 2242 intel_encoder->get_config = intel_ddi_get_config;
bf93ba67 2243 intel_encoder->suspend = intel_dp_encoder_suspend;
00c09d70
PZ
2244
2245 intel_dig_port->port = port;
bcf53de4
SM
2246 intel_dig_port->saved_port_bits = I915_READ(DDI_BUF_CTL(port)) &
2247 (DDI_BUF_PORT_REVERSAL |
2248 DDI_A_4_LANES);
00c09d70 2249
6c566dc9
MR
2250 /*
2251 * Bspec says that DDI_A_4_LANES is the only supported configuration
2252 * for Broxton. Yet some BIOS fail to set this bit on port A if eDP
2253 * wasn't lit up at boot. Force this bit on in our internal
2254 * configuration so that we use the proper lane count for our
2255 * calculations.
2256 */
cc3f90f0 2257 if (IS_GEN9_LP(dev_priv) && port == PORT_A) {
6c566dc9
MR
2258 if (!(intel_dig_port->saved_port_bits & DDI_A_4_LANES)) {
2259 DRM_DEBUG_KMS("BXT BIOS forgot to set DDI_A_4_LANES for port A; fixing\n");
2260 intel_dig_port->saved_port_bits |= DDI_A_4_LANES;
ed8d60f4 2261 max_lanes = 4;
6c566dc9
MR
2262 }
2263 }
2264
ed8d60f4
MR
2265 intel_dig_port->max_lanes = max_lanes;
2266
00c09d70 2267 intel_encoder->type = INTEL_OUTPUT_UNKNOWN;
03cdc1d4 2268 intel_encoder->port = port;
f68d697e 2269 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
bc079e8b 2270 intel_encoder->cloneable = 0;
00c09d70 2271
f68d697e
CW
2272 if (init_dp) {
2273 if (!intel_ddi_init_dp_connector(intel_dig_port))
2274 goto err;
13cf5504 2275
f68d697e 2276 intel_dig_port->hpd_pulse = intel_dp_hpd_pulse;
cf1d5883
SJ
2277 /*
2278 * On BXT A0/A1, sw needs to activate DDIA HPD logic and
2279 * interrupts to check the external panel connection.
2280 */
e2d214ae 2281 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1) && port == PORT_B)
cf1d5883
SJ
2282 dev_priv->hotplug.irq_port[PORT_A] = intel_dig_port;
2283 else
2284 dev_priv->hotplug.irq_port[port] = intel_dig_port;
f68d697e 2285 }
21a8e6a4 2286
311a2094
PZ
2287 /* In theory we don't need the encoder->type check, but leave it just in
2288 * case we have some really bad VBTs... */
f68d697e
CW
2289 if (intel_encoder->type != INTEL_OUTPUT_EDP && init_hdmi) {
2290 if (!intel_ddi_init_hdmi_connector(intel_dig_port))
2291 goto err;
21a8e6a4 2292 }
f68d697e 2293
ff662124
SS
2294 if (init_lspcon) {
2295 if (lspcon_init(intel_dig_port))
2296 /* TODO: handle hdmi info frame part */
2297 DRM_DEBUG_KMS("LSPCON init success on port %c\n",
2298 port_name(port));
2299 else
2300 /*
2301 * LSPCON init faied, but DP init was success, so
2302 * lets try to drive as DP++ port.
2303 */
2304 DRM_ERROR("LSPCON init failed on port %c\n",
2305 port_name(port));
2306 }
2307
f68d697e
CW
2308 return;
2309
2310err:
2311 drm_encoder_cleanup(encoder);
2312 kfree(intel_dig_port);
00c09d70 2313}