]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/gpu/drm/i915/intel_audio.c
drm/i915/kbl: Introduce Kabylake platform defition.
[mirror_ubuntu-zesty-kernel.git] / drivers / gpu / drm / i915 / intel_audio.c
CommitLineData
7c10a2b5
JN
1/*
2 * Copyright © 2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24#include <linux/kernel.h>
58fddc28
ID
25#include <linux/component.h>
26#include <drm/i915_component.h>
27#include "intel_drv.h"
7c10a2b5
JN
28
29#include <drm/drmP.h>
30#include <drm/drm_edid.h>
7c10a2b5
JN
31#include "i915_drv.h"
32
28855d2a
JN
33/**
34 * DOC: High Definition Audio over HDMI and Display Port
35 *
36 * The graphics and audio drivers together support High Definition Audio over
37 * HDMI and Display Port. The audio programming sequences are divided into audio
38 * codec and controller enable and disable sequences. The graphics driver
39 * handles the audio codec sequences, while the audio driver handles the audio
40 * controller sequences.
41 *
42 * The disable sequences must be performed before disabling the transcoder or
43 * port. The enable sequences may only be performed after enabling the
3e6da4a9
JN
44 * transcoder and port, and after completed link training. Therefore the audio
45 * enable/disable sequences are part of the modeset sequence.
28855d2a
JN
46 *
47 * The codec and controller sequences could be done either parallel or serial,
48 * but generally the ELDV/PD change in the codec sequence indicates to the audio
49 * driver that the controller sequence should start. Indeed, most of the
50 * co-operation between the graphics and audio drivers is handled via audio
51 * related registers. (The notable exception is the power management, not
52 * covered here.)
cb422619
LY
53 *
54 * The struct i915_audio_component is used to interact between the graphics
55 * and audio drivers. The struct i915_audio_component_ops *ops in it is
56 * defined in graphics driver and called in audio driver. The
57 * struct i915_audio_component_audio_ops *audio_ops is called from i915 driver.
28855d2a
JN
58 */
59
87fcb2ad 60static const struct {
7c10a2b5
JN
61 int clock;
62 u32 config;
63} hdmi_audio_clock[] = {
64 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
65 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
66 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
67 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
68 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
69 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
70 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
71 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
72 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
73 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
74};
75
4a21ef7d
LY
76/* HDMI N/CTS table */
77#define TMDS_297M 297000
78#define TMDS_296M DIV_ROUND_UP(297000 * 1000, 1001)
79static const struct {
80 int sample_rate;
81 int clock;
82 int n;
83 int cts;
84} aud_ncts[] = {
85 { 44100, TMDS_296M, 4459, 234375 },
86 { 44100, TMDS_297M, 4704, 247500 },
87 { 48000, TMDS_296M, 5824, 281250 },
88 { 48000, TMDS_297M, 5120, 247500 },
89 { 32000, TMDS_296M, 5824, 421875 },
90 { 32000, TMDS_297M, 3072, 222750 },
91 { 88200, TMDS_296M, 8918, 234375 },
92 { 88200, TMDS_297M, 9408, 247500 },
93 { 96000, TMDS_296M, 11648, 281250 },
94 { 96000, TMDS_297M, 10240, 247500 },
95 { 176400, TMDS_296M, 17836, 234375 },
96 { 176400, TMDS_297M, 18816, 247500 },
97 { 192000, TMDS_296M, 23296, 281250 },
98 { 192000, TMDS_297M, 20480, 247500 },
99};
100
7c10a2b5 101/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
5e7234c9 102static u32 audio_config_hdmi_pixel_clock(const struct drm_display_mode *adjusted_mode)
7c10a2b5
JN
103{
104 int i;
105
106 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
aad941d5 107 if (adjusted_mode->crtc_clock == hdmi_audio_clock[i].clock)
7c10a2b5
JN
108 break;
109 }
110
111 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
5e7234c9 112 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n",
aad941d5 113 adjusted_mode->crtc_clock);
7c10a2b5
JN
114 i = 1;
115 }
116
117 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
118 hdmi_audio_clock[i].clock,
119 hdmi_audio_clock[i].config);
120
121 return hdmi_audio_clock[i].config;
122}
123
4a21ef7d
LY
124static int audio_config_get_n(const struct drm_display_mode *mode, int rate)
125{
126 int i;
127
128 for (i = 0; i < ARRAY_SIZE(aud_ncts); i++) {
129 if ((rate == aud_ncts[i].sample_rate) &&
130 (mode->clock == aud_ncts[i].clock)) {
131 return aud_ncts[i].n;
132 }
133 }
134 return 0;
135}
136
7e8275c2
LY
137static uint32_t audio_config_setup_n_reg(int n, uint32_t val)
138{
139 int n_low, n_up;
140 uint32_t tmp = val;
141
142 n_low = n & 0xfff;
143 n_up = (n >> 12) & 0xff;
144 tmp &= ~(AUD_CONFIG_UPPER_N_MASK | AUD_CONFIG_LOWER_N_MASK);
145 tmp |= ((n_up << AUD_CONFIG_UPPER_N_SHIFT) |
146 (n_low << AUD_CONFIG_LOWER_N_SHIFT) |
147 AUD_CONFIG_N_PROG_ENABLE);
148 return tmp;
149}
150
4a21ef7d
LY
151/* check whether N/CTS/M need be set manually */
152static bool audio_rate_need_prog(struct intel_crtc *crtc,
87f77eff 153 const struct drm_display_mode *mode)
4a21ef7d
LY
154{
155 if (((mode->clock == TMDS_297M) ||
156 (mode->clock == TMDS_296M)) &&
157 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
158 return true;
159 else
160 return false;
161}
162
7c10a2b5
JN
163static bool intel_eld_uptodate(struct drm_connector *connector,
164 int reg_eldv, uint32_t bits_eldv,
165 int reg_elda, uint32_t bits_elda,
166 int reg_edid)
167{
168 struct drm_i915_private *dev_priv = connector->dev->dev_private;
169 uint8_t *eld = connector->eld;
f9f682ae
JN
170 uint32_t tmp;
171 int i;
7c10a2b5 172
f9f682ae
JN
173 tmp = I915_READ(reg_eldv);
174 tmp &= bits_eldv;
7c10a2b5 175
f9f682ae 176 if (!tmp)
7c10a2b5
JN
177 return false;
178
f9f682ae
JN
179 tmp = I915_READ(reg_elda);
180 tmp &= ~bits_elda;
181 I915_WRITE(reg_elda, tmp);
7c10a2b5 182
938fd8aa 183 for (i = 0; i < drm_eld_size(eld) / 4; i++)
7c10a2b5
JN
184 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
185 return false;
186
187 return true;
188}
189
76d8d3e5
JN
190static void g4x_audio_codec_disable(struct intel_encoder *encoder)
191{
192 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
193 uint32_t eldv, tmp;
194
195 DRM_DEBUG_KMS("Disable audio codec\n");
196
197 tmp = I915_READ(G4X_AUD_VID_DID);
198 if (tmp == INTEL_AUDIO_DEVBLC || tmp == INTEL_AUDIO_DEVCL)
199 eldv = G4X_ELDV_DEVCL_DEVBLC;
200 else
201 eldv = G4X_ELDV_DEVCTG;
202
203 /* Invalidate ELD */
204 tmp = I915_READ(G4X_AUD_CNTL_ST);
205 tmp &= ~eldv;
206 I915_WRITE(G4X_AUD_CNTL_ST, tmp);
207}
208
69bfe1a9
JN
209static void g4x_audio_codec_enable(struct drm_connector *connector,
210 struct intel_encoder *encoder,
5e7234c9 211 const struct drm_display_mode *adjusted_mode)
7c10a2b5
JN
212{
213 struct drm_i915_private *dev_priv = connector->dev->dev_private;
214 uint8_t *eld = connector->eld;
215 uint32_t eldv;
f9f682ae
JN
216 uint32_t tmp;
217 int len, i;
7c10a2b5 218
d5ee08de
JN
219 DRM_DEBUG_KMS("Enable audio codec, %u bytes ELD\n", eld[2]);
220
f9f682ae
JN
221 tmp = I915_READ(G4X_AUD_VID_DID);
222 if (tmp == INTEL_AUDIO_DEVBLC || tmp == INTEL_AUDIO_DEVCL)
7c10a2b5
JN
223 eldv = G4X_ELDV_DEVCL_DEVBLC;
224 else
225 eldv = G4X_ELDV_DEVCTG;
226
227 if (intel_eld_uptodate(connector,
228 G4X_AUD_CNTL_ST, eldv,
c46f111f 229 G4X_AUD_CNTL_ST, G4X_ELD_ADDR_MASK,
7c10a2b5
JN
230 G4X_HDMIW_HDMIEDID))
231 return;
232
f9f682ae 233 tmp = I915_READ(G4X_AUD_CNTL_ST);
c46f111f 234 tmp &= ~(eldv | G4X_ELD_ADDR_MASK);
f9f682ae
JN
235 len = (tmp >> 9) & 0x1f; /* ELD buffer size */
236 I915_WRITE(G4X_AUD_CNTL_ST, tmp);
7c10a2b5 237
938fd8aa 238 len = min(drm_eld_size(eld) / 4, len);
7c10a2b5
JN
239 DRM_DEBUG_DRIVER("ELD size %d\n", len);
240 for (i = 0; i < len; i++)
241 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
242
f9f682ae
JN
243 tmp = I915_READ(G4X_AUD_CNTL_ST);
244 tmp |= eldv;
245 I915_WRITE(G4X_AUD_CNTL_ST, tmp);
7c10a2b5
JN
246}
247
69bfe1a9
JN
248static void hsw_audio_codec_disable(struct intel_encoder *encoder)
249{
5fad84a7
JN
250 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
251 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
252 enum pipe pipe = intel_crtc->pipe;
69bfe1a9
JN
253 uint32_t tmp;
254
5fad84a7
JN
255 DRM_DEBUG_KMS("Disable audio codec on pipe %c\n", pipe_name(pipe));
256
4a21ef7d
LY
257 mutex_lock(&dev_priv->av_mutex);
258
5fad84a7
JN
259 /* Disable timestamps */
260 tmp = I915_READ(HSW_AUD_CFG(pipe));
261 tmp &= ~AUD_CONFIG_N_VALUE_INDEX;
262 tmp |= AUD_CONFIG_N_PROG_ENABLE;
263 tmp &= ~AUD_CONFIG_UPPER_N_MASK;
264 tmp &= ~AUD_CONFIG_LOWER_N_MASK;
265 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DISPLAYPORT))
266 tmp |= AUD_CONFIG_N_VALUE_INDEX;
267 I915_WRITE(HSW_AUD_CFG(pipe), tmp);
268
269 /* Invalidate ELD */
69bfe1a9 270 tmp = I915_READ(HSW_AUD_PIN_ELD_CP_VLD);
82910ac6 271 tmp &= ~AUDIO_ELD_VALID(pipe);
eb45fa0b 272 tmp &= ~AUDIO_OUTPUT_ENABLE(pipe);
69bfe1a9 273 I915_WRITE(HSW_AUD_PIN_ELD_CP_VLD, tmp);
4a21ef7d
LY
274
275 mutex_unlock(&dev_priv->av_mutex);
69bfe1a9
JN
276}
277
278static void hsw_audio_codec_enable(struct drm_connector *connector,
279 struct intel_encoder *encoder,
5e7234c9 280 const struct drm_display_mode *adjusted_mode)
7c10a2b5
JN
281{
282 struct drm_i915_private *dev_priv = connector->dev->dev_private;
820d2d77 283 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
5fad84a7 284 enum pipe pipe = intel_crtc->pipe;
7e8275c2 285 struct i915_audio_component *acomp = dev_priv->audio_component;
5fad84a7 286 const uint8_t *eld = connector->eld;
7e8275c2
LY
287 struct intel_digital_port *intel_dig_port =
288 enc_to_dig_port(&encoder->base);
289 enum port port = intel_dig_port->port;
f9f682ae
JN
290 uint32_t tmp;
291 int len, i;
7e8275c2 292 int n, rate;
7c10a2b5 293
5fad84a7 294 DRM_DEBUG_KMS("Enable audio codec on pipe %c, %u bytes ELD\n",
938fd8aa 295 pipe_name(pipe), drm_eld_size(eld));
7c10a2b5 296
4a21ef7d
LY
297 mutex_lock(&dev_priv->av_mutex);
298
5fad84a7
JN
299 /* Enable audio presence detect, invalidate ELD */
300 tmp = I915_READ(HSW_AUD_PIN_ELD_CP_VLD);
82910ac6
JN
301 tmp |= AUDIO_OUTPUT_ENABLE(pipe);
302 tmp &= ~AUDIO_ELD_VALID(pipe);
5fad84a7 303 I915_WRITE(HSW_AUD_PIN_ELD_CP_VLD, tmp);
7c10a2b5 304
5fad84a7
JN
305 /*
306 * FIXME: We're supposed to wait for vblank here, but we have vblanks
307 * disabled during the mode set. The proper fix would be to push the
308 * rest of the setup into a vblank work item, queued here, but the
309 * infrastructure is not there yet.
310 */
7c10a2b5 311
5fad84a7
JN
312 /* Reset ELD write address */
313 tmp = I915_READ(HSW_AUD_DIP_ELD_CTRL(pipe));
c46f111f 314 tmp &= ~IBX_ELD_ADDRESS_MASK;
5fad84a7 315 I915_WRITE(HSW_AUD_DIP_ELD_CTRL(pipe), tmp);
7c10a2b5 316
5fad84a7 317 /* Up to 84 bytes of hw ELD buffer */
938fd8aa
JN
318 len = min(drm_eld_size(eld), 84);
319 for (i = 0; i < len / 4; i++)
5fad84a7 320 I915_WRITE(HSW_AUD_EDID_DATA(pipe), *((uint32_t *)eld + i));
7c10a2b5 321
5fad84a7 322 /* ELD valid */
69bfe1a9 323 tmp = I915_READ(HSW_AUD_PIN_ELD_CP_VLD);
82910ac6 324 tmp |= AUDIO_ELD_VALID(pipe);
69bfe1a9 325 I915_WRITE(HSW_AUD_PIN_ELD_CP_VLD, tmp);
5fad84a7
JN
326
327 /* Enable timestamps */
328 tmp = I915_READ(HSW_AUD_CFG(pipe));
329 tmp &= ~AUD_CONFIG_N_VALUE_INDEX;
5fad84a7
JN
330 tmp &= ~AUD_CONFIG_PIXEL_CLOCK_HDMI_MASK;
331 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DISPLAYPORT))
332 tmp |= AUD_CONFIG_N_VALUE_INDEX;
333 else
5e7234c9 334 tmp |= audio_config_hdmi_pixel_clock(adjusted_mode);
7e8275c2
LY
335
336 tmp &= ~AUD_CONFIG_N_PROG_ENABLE;
28446598 337 if (audio_rate_need_prog(intel_crtc, adjusted_mode)) {
7e8275c2
LY
338 if (!acomp)
339 rate = 0;
340 else if (port >= PORT_A && port <= PORT_E)
341 rate = acomp->aud_sample_rate[port];
342 else {
343 DRM_ERROR("invalid port: %d\n", port);
344 rate = 0;
345 }
28446598 346 n = audio_config_get_n(adjusted_mode, rate);
7e8275c2
LY
347 if (n != 0)
348 tmp = audio_config_setup_n_reg(n, tmp);
349 else
350 DRM_DEBUG_KMS("no suitable N value is found\n");
351 }
352
5fad84a7 353 I915_WRITE(HSW_AUD_CFG(pipe), tmp);
4a21ef7d
LY
354
355 mutex_unlock(&dev_priv->av_mutex);
7c10a2b5
JN
356}
357
495a5bb8
JN
358static void ilk_audio_codec_disable(struct intel_encoder *encoder)
359{
360 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
361 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
362 struct intel_digital_port *intel_dig_port =
363 enc_to_dig_port(&encoder->base);
364 enum port port = intel_dig_port->port;
365 enum pipe pipe = intel_crtc->pipe;
366 uint32_t tmp, eldv;
367 int aud_config;
368 int aud_cntrl_st2;
369
370 DRM_DEBUG_KMS("Disable audio codec on port %c, pipe %c\n",
371 port_name(port), pipe_name(pipe));
372
d3902c3e
JN
373 if (WARN_ON(port == PORT_A))
374 return;
375
495a5bb8
JN
376 if (HAS_PCH_IBX(dev_priv->dev)) {
377 aud_config = IBX_AUD_CFG(pipe);
378 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
379 } else if (IS_VALLEYVIEW(dev_priv)) {
380 aud_config = VLV_AUD_CFG(pipe);
381 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
382 } else {
383 aud_config = CPT_AUD_CFG(pipe);
384 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
385 }
386
387 /* Disable timestamps */
388 tmp = I915_READ(aud_config);
389 tmp &= ~AUD_CONFIG_N_VALUE_INDEX;
390 tmp |= AUD_CONFIG_N_PROG_ENABLE;
391 tmp &= ~AUD_CONFIG_UPPER_N_MASK;
392 tmp &= ~AUD_CONFIG_LOWER_N_MASK;
393 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DISPLAYPORT))
394 tmp |= AUD_CONFIG_N_VALUE_INDEX;
395 I915_WRITE(aud_config, tmp);
396
d3902c3e 397 eldv = IBX_ELD_VALID(port);
495a5bb8
JN
398
399 /* Invalidate ELD */
400 tmp = I915_READ(aud_cntrl_st2);
401 tmp &= ~eldv;
402 I915_WRITE(aud_cntrl_st2, tmp);
403}
404
69bfe1a9
JN
405static void ilk_audio_codec_enable(struct drm_connector *connector,
406 struct intel_encoder *encoder,
5e7234c9 407 const struct drm_display_mode *adjusted_mode)
7c10a2b5
JN
408{
409 struct drm_i915_private *dev_priv = connector->dev->dev_private;
820d2d77 410 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
c6bde93b
JN
411 struct intel_digital_port *intel_dig_port =
412 enc_to_dig_port(&encoder->base);
413 enum port port = intel_dig_port->port;
414 enum pipe pipe = intel_crtc->pipe;
7c10a2b5
JN
415 uint8_t *eld = connector->eld;
416 uint32_t eldv;
f9f682ae
JN
417 uint32_t tmp;
418 int len, i;
7c10a2b5
JN
419 int hdmiw_hdmiedid;
420 int aud_config;
421 int aud_cntl_st;
422 int aud_cntrl_st2;
c6bde93b
JN
423
424 DRM_DEBUG_KMS("Enable audio codec on port %c, pipe %c, %u bytes ELD\n",
938fd8aa 425 port_name(port), pipe_name(pipe), drm_eld_size(eld));
c6bde93b 426
d3902c3e
JN
427 if (WARN_ON(port == PORT_A))
428 return;
429
c6bde93b
JN
430 /*
431 * FIXME: We're supposed to wait for vblank here, but we have vblanks
432 * disabled during the mode set. The proper fix would be to push the
433 * rest of the setup into a vblank work item, queued here, but the
434 * infrastructure is not there yet.
435 */
7c10a2b5
JN
436
437 if (HAS_PCH_IBX(connector->dev)) {
438 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
439 aud_config = IBX_AUD_CFG(pipe);
440 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
441 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
442 } else if (IS_VALLEYVIEW(connector->dev)) {
443 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
444 aud_config = VLV_AUD_CFG(pipe);
445 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
446 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
447 } else {
448 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
449 aud_config = CPT_AUD_CFG(pipe);
450 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
451 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
452 }
453
d3902c3e 454 eldv = IBX_ELD_VALID(port);
7c10a2b5 455
c6bde93b 456 /* Invalidate ELD */
f9f682ae
JN
457 tmp = I915_READ(aud_cntrl_st2);
458 tmp &= ~eldv;
459 I915_WRITE(aud_cntrl_st2, tmp);
7c10a2b5 460
c6bde93b 461 /* Reset ELD write address */
f9f682ae 462 tmp = I915_READ(aud_cntl_st);
c46f111f 463 tmp &= ~IBX_ELD_ADDRESS_MASK;
f9f682ae 464 I915_WRITE(aud_cntl_st, tmp);
7c10a2b5 465
c6bde93b 466 /* Up to 84 bytes of hw ELD buffer */
938fd8aa
JN
467 len = min(drm_eld_size(eld), 84);
468 for (i = 0; i < len / 4; i++)
7c10a2b5
JN
469 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
470
c6bde93b 471 /* ELD valid */
f9f682ae
JN
472 tmp = I915_READ(aud_cntrl_st2);
473 tmp |= eldv;
474 I915_WRITE(aud_cntrl_st2, tmp);
c6bde93b
JN
475
476 /* Enable timestamps */
477 tmp = I915_READ(aud_config);
478 tmp &= ~AUD_CONFIG_N_VALUE_INDEX;
479 tmp &= ~AUD_CONFIG_N_PROG_ENABLE;
480 tmp &= ~AUD_CONFIG_PIXEL_CLOCK_HDMI_MASK;
481 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DISPLAYPORT))
482 tmp |= AUD_CONFIG_N_VALUE_INDEX;
483 else
5e7234c9 484 tmp |= audio_config_hdmi_pixel_clock(adjusted_mode);
c6bde93b 485 I915_WRITE(aud_config, tmp);
7c10a2b5
JN
486}
487
69bfe1a9
JN
488/**
489 * intel_audio_codec_enable - Enable the audio codec for HD audio
490 * @intel_encoder: encoder on which to enable audio
491 *
492 * The enable sequences may only be performed after enabling the transcoder and
493 * port, and after completed link training.
494 */
495void intel_audio_codec_enable(struct intel_encoder *intel_encoder)
7c10a2b5 496{
33d1e7c6
JN
497 struct drm_encoder *encoder = &intel_encoder->base;
498 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
7c5f93b0 499 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
7c10a2b5
JN
500 struct drm_connector *connector;
501 struct drm_device *dev = encoder->dev;
502 struct drm_i915_private *dev_priv = dev->dev_private;
51e1d83c
DH
503 struct i915_audio_component *acomp = dev_priv->audio_component;
504 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
505 enum port port = intel_dig_port->port;
7c10a2b5 506
9e5a3b52 507 connector = drm_select_eld(encoder);
7c10a2b5
JN
508 if (!connector)
509 return;
510
511 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
512 connector->base.id,
513 connector->name,
514 connector->encoder->base.id,
515 connector->encoder->name);
516
6189b036
JN
517 /* ELD Conn_Type */
518 connector->eld[5] &= ~(3 << 2);
519 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
520 connector->eld[5] |= (1 << 2);
521
124abe07 522 connector->eld[6] = drm_av_sync_delay(connector, adjusted_mode) / 2;
7c10a2b5 523
69bfe1a9 524 if (dev_priv->display.audio_codec_enable)
124abe07
VS
525 dev_priv->display.audio_codec_enable(connector, intel_encoder,
526 adjusted_mode);
51e1d83c
DH
527
528 if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify)
f0675d4a 529 acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr, (int) port);
69bfe1a9
JN
530}
531
532/**
533 * intel_audio_codec_disable - Disable the audio codec for HD audio
95d0be61 534 * @intel_encoder: encoder on which to disable audio
69bfe1a9
JN
535 *
536 * The disable sequences must be performed before disabling the transcoder or
537 * port.
538 */
51e1d83c 539void intel_audio_codec_disable(struct intel_encoder *intel_encoder)
69bfe1a9 540{
51e1d83c
DH
541 struct drm_encoder *encoder = &intel_encoder->base;
542 struct drm_device *dev = encoder->dev;
69bfe1a9 543 struct drm_i915_private *dev_priv = dev->dev_private;
51e1d83c
DH
544 struct i915_audio_component *acomp = dev_priv->audio_component;
545 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
546 enum port port = intel_dig_port->port;
69bfe1a9
JN
547
548 if (dev_priv->display.audio_codec_disable)
51e1d83c
DH
549 dev_priv->display.audio_codec_disable(intel_encoder);
550
551 if (acomp && acomp->audio_ops && acomp->audio_ops->pin_eld_notify)
f0675d4a 552 acomp->audio_ops->pin_eld_notify(acomp->audio_ops->audio_ptr, (int) port);
7c10a2b5
JN
553}
554
555/**
556 * intel_init_audio - Set up chip specific audio functions
557 * @dev: drm device
558 */
559void intel_init_audio(struct drm_device *dev)
560{
561 struct drm_i915_private *dev_priv = dev->dev_private;
562
69bfe1a9
JN
563 if (IS_G4X(dev)) {
564 dev_priv->display.audio_codec_enable = g4x_audio_codec_enable;
76d8d3e5 565 dev_priv->display.audio_codec_disable = g4x_audio_codec_disable;
69bfe1a9
JN
566 } else if (IS_VALLEYVIEW(dev)) {
567 dev_priv->display.audio_codec_enable = ilk_audio_codec_enable;
495a5bb8 568 dev_priv->display.audio_codec_disable = ilk_audio_codec_disable;
69bfe1a9
JN
569 } else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8) {
570 dev_priv->display.audio_codec_enable = hsw_audio_codec_enable;
571 dev_priv->display.audio_codec_disable = hsw_audio_codec_disable;
572 } else if (HAS_PCH_SPLIT(dev)) {
573 dev_priv->display.audio_codec_enable = ilk_audio_codec_enable;
495a5bb8 574 dev_priv->display.audio_codec_disable = ilk_audio_codec_disable;
69bfe1a9 575 }
7c10a2b5 576}
58fddc28
ID
577
578static void i915_audio_component_get_power(struct device *dev)
579{
580 intel_display_power_get(dev_to_i915(dev), POWER_DOMAIN_AUDIO);
581}
582
583static void i915_audio_component_put_power(struct device *dev)
584{
585 intel_display_power_put(dev_to_i915(dev), POWER_DOMAIN_AUDIO);
586}
587
632f3ab9
LH
588static void i915_audio_component_codec_wake_override(struct device *dev,
589 bool enable)
590{
591 struct drm_i915_private *dev_priv = dev_to_i915(dev);
592 u32 tmp;
593
ef11bdb3 594 if (!IS_SKYLAKE(dev_priv) && !IS_KABYLAKE(dev_priv))
632f3ab9
LH
595 return;
596
597 /*
598 * Enable/disable generating the codec wake signal, overriding the
599 * internal logic to generate the codec wake to controller.
600 */
601 tmp = I915_READ(HSW_AUD_CHICKENBIT);
602 tmp &= ~SKL_AUD_CODEC_WAKE_SIGNAL;
603 I915_WRITE(HSW_AUD_CHICKENBIT, tmp);
604 usleep_range(1000, 1500);
605
606 if (enable) {
607 tmp = I915_READ(HSW_AUD_CHICKENBIT);
608 tmp |= SKL_AUD_CODEC_WAKE_SIGNAL;
609 I915_WRITE(HSW_AUD_CHICKENBIT, tmp);
610 usleep_range(1000, 1500);
611 }
612}
613
58fddc28
ID
614/* Get CDCLK in kHz */
615static int i915_audio_component_get_cdclk_freq(struct device *dev)
616{
617 struct drm_i915_private *dev_priv = dev_to_i915(dev);
618 int ret;
619
620 if (WARN_ON_ONCE(!HAS_DDI(dev_priv)))
621 return -ENODEV;
622
623 intel_display_power_get(dev_priv, POWER_DOMAIN_AUDIO);
1652d19e
VS
624 ret = dev_priv->display.get_display_clock_speed(dev_priv->dev);
625
58fddc28
ID
626 intel_display_power_put(dev_priv, POWER_DOMAIN_AUDIO);
627
628 return ret;
629}
630
4a21ef7d
LY
631static int i915_audio_component_sync_audio_rate(struct device *dev,
632 int port, int rate)
633{
634 struct drm_i915_private *dev_priv = dev_to_i915(dev);
635 struct drm_device *drm_dev = dev_priv->dev;
636 struct intel_encoder *intel_encoder;
637 struct intel_digital_port *intel_dig_port;
638 struct intel_crtc *crtc;
639 struct drm_display_mode *mode;
7e8275c2 640 struct i915_audio_component *acomp = dev_priv->audio_component;
4a21ef7d
LY
641 enum pipe pipe = -1;
642 u32 tmp;
7e8275c2 643 int n;
4a21ef7d 644
ef11bdb3 645 /* HSW, BDW, SKL, KBL need this fix */
4a21ef7d 646 if (!IS_SKYLAKE(dev_priv) &&
ef11bdb3
RV
647 !IS_KABYLAKE(dev_priv) &&
648 !IS_BROADWELL(dev_priv) &&
649 !IS_HASWELL(dev_priv))
4a21ef7d
LY
650 return 0;
651
652 mutex_lock(&dev_priv->av_mutex);
653 /* 1. get the pipe */
654 for_each_intel_encoder(drm_dev, intel_encoder) {
655 if (intel_encoder->type != INTEL_OUTPUT_HDMI)
656 continue;
657 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
658 if (port == intel_dig_port->port) {
659 crtc = to_intel_crtc(intel_encoder->base.crtc);
660 if (!crtc) {
661 DRM_DEBUG_KMS("%s: crtc is NULL\n", __func__);
662 continue;
663 }
664 pipe = crtc->pipe;
665 break;
666 }
667 }
668
669 if (pipe == INVALID_PIPE) {
670 DRM_DEBUG_KMS("no pipe for the port %c\n", port_name(port));
671 mutex_unlock(&dev_priv->av_mutex);
672 return -ENODEV;
673 }
674 DRM_DEBUG_KMS("pipe %c connects port %c\n",
675 pipe_name(pipe), port_name(port));
676 mode = &crtc->config->base.adjusted_mode;
677
7e8275c2
LY
678 /* port must be valid now, otherwise the pipe will be invalid */
679 acomp->aud_sample_rate[port] = rate;
680
4a21ef7d
LY
681 /* 2. check whether to set the N/CTS/M manually or not */
682 if (!audio_rate_need_prog(crtc, mode)) {
683 tmp = I915_READ(HSW_AUD_CFG(pipe));
684 tmp &= ~AUD_CONFIG_N_PROG_ENABLE;
685 I915_WRITE(HSW_AUD_CFG(pipe), tmp);
686 mutex_unlock(&dev_priv->av_mutex);
687 return 0;
688 }
689
690 n = audio_config_get_n(mode, rate);
691 if (n == 0) {
692 DRM_DEBUG_KMS("Using automatic mode for N value on port %c\n",
693 port_name(port));
694 tmp = I915_READ(HSW_AUD_CFG(pipe));
695 tmp &= ~AUD_CONFIG_N_PROG_ENABLE;
696 I915_WRITE(HSW_AUD_CFG(pipe), tmp);
697 mutex_unlock(&dev_priv->av_mutex);
698 return 0;
699 }
4a21ef7d 700
7e8275c2 701 /* 3. set the N/CTS/M */
4a21ef7d 702 tmp = I915_READ(HSW_AUD_CFG(pipe));
7e8275c2 703 tmp = audio_config_setup_n_reg(n, tmp);
4a21ef7d
LY
704 I915_WRITE(HSW_AUD_CFG(pipe), tmp);
705
706 mutex_unlock(&dev_priv->av_mutex);
707 return 0;
708}
709
58fddc28
ID
710static const struct i915_audio_component_ops i915_audio_component_ops = {
711 .owner = THIS_MODULE,
712 .get_power = i915_audio_component_get_power,
713 .put_power = i915_audio_component_put_power,
632f3ab9 714 .codec_wake_override = i915_audio_component_codec_wake_override,
58fddc28 715 .get_cdclk_freq = i915_audio_component_get_cdclk_freq,
4a21ef7d 716 .sync_audio_rate = i915_audio_component_sync_audio_rate,
58fddc28
ID
717};
718
719static int i915_audio_component_bind(struct device *i915_dev,
720 struct device *hda_dev, void *data)
721{
722 struct i915_audio_component *acomp = data;
51e1d83c 723 struct drm_i915_private *dev_priv = dev_to_i915(i915_dev);
7e8275c2 724 int i;
58fddc28
ID
725
726 if (WARN_ON(acomp->ops || acomp->dev))
727 return -EEXIST;
728
d5f362a7 729 drm_modeset_lock_all(dev_priv->dev);
58fddc28
ID
730 acomp->ops = &i915_audio_component_ops;
731 acomp->dev = i915_dev;
7e8275c2
LY
732 BUILD_BUG_ON(MAX_PORTS != I915_MAX_PORTS);
733 for (i = 0; i < ARRAY_SIZE(acomp->aud_sample_rate); i++)
734 acomp->aud_sample_rate[i] = 0;
51e1d83c 735 dev_priv->audio_component = acomp;
d5f362a7 736 drm_modeset_unlock_all(dev_priv->dev);
58fddc28
ID
737
738 return 0;
739}
740
741static void i915_audio_component_unbind(struct device *i915_dev,
742 struct device *hda_dev, void *data)
743{
744 struct i915_audio_component *acomp = data;
51e1d83c 745 struct drm_i915_private *dev_priv = dev_to_i915(i915_dev);
58fddc28 746
d5f362a7 747 drm_modeset_lock_all(dev_priv->dev);
58fddc28
ID
748 acomp->ops = NULL;
749 acomp->dev = NULL;
51e1d83c 750 dev_priv->audio_component = NULL;
d5f362a7 751 drm_modeset_unlock_all(dev_priv->dev);
58fddc28
ID
752}
753
754static const struct component_ops i915_audio_component_bind_ops = {
755 .bind = i915_audio_component_bind,
756 .unbind = i915_audio_component_unbind,
757};
758
759/**
760 * i915_audio_component_init - initialize and register the audio component
761 * @dev_priv: i915 device instance
762 *
763 * This will register with the component framework a child component which
764 * will bind dynamically to the snd_hda_intel driver's corresponding master
765 * component when the latter is registered. During binding the child
766 * initializes an instance of struct i915_audio_component which it receives
767 * from the master. The master can then start to use the interface defined by
768 * this struct. Each side can break the binding at any point by deregistering
769 * its own component after which each side's component unbind callback is
770 * called.
771 *
772 * We ignore any error during registration and continue with reduced
773 * functionality (i.e. without HDMI audio).
774 */
775void i915_audio_component_init(struct drm_i915_private *dev_priv)
776{
777 int ret;
778
779 ret = component_add(dev_priv->dev->dev, &i915_audio_component_bind_ops);
780 if (ret < 0) {
781 DRM_ERROR("failed to add audio component (%d)\n", ret);
782 /* continue with reduced functionality */
783 return;
784 }
785
786 dev_priv->audio_component_registered = true;
787}
788
789/**
790 * i915_audio_component_cleanup - deregister the audio component
791 * @dev_priv: i915 device instance
792 *
793 * Deregisters the audio component, breaking any existing binding to the
794 * corresponding snd_hda_intel driver's master component.
795 */
796void i915_audio_component_cleanup(struct drm_i915_private *dev_priv)
797{
798 if (!dev_priv->audio_component_registered)
799 return;
800
801 component_del(dev_priv->dev->dev, &i915_audio_component_bind_ops);
802 dev_priv->audio_component_registered = false;
803}