blob: b90e4f3967de6885170d022fc1fa87381450bbcd [file] [log] [blame]
Wu Fengguang079d88c2010-03-08 10:44:23 +08001/*
2 *
3 * patch_hdmi.c - routines for HDMI/DisplayPort codecs
4 *
5 * Copyright(c) 2008-2010 Intel Corporation. All rights reserved.
Takashi Iwai84eb01b2010-09-07 12:27:25 +02006 * Copyright (c) 2006 ATI Technologies Inc.
7 * Copyright (c) 2008 NVIDIA Corp. All rights reserved.
8 * Copyright (c) 2008 Wei Ni <wni@nvidia.com>
Anssi Hannula5a6135842013-10-24 21:10:35 +03009 * Copyright (c) 2013 Anssi Hannula <anssi.hannula@iki.fi>
Wu Fengguang079d88c2010-03-08 10:44:23 +080010 *
11 * Authors:
12 * Wu Fengguang <wfg@linux.intel.com>
13 *
14 * Maintained by:
15 * Wu Fengguang <wfg@linux.intel.com>
16 *
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the Free
19 * Software Foundation; either version 2 of the License, or (at your option)
20 * any later version.
21 *
22 * This program is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
24 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
25 * for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software Foundation,
29 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 */
31
Takashi Iwai84eb01b2010-09-07 12:27:25 +020032#include <linux/init.h>
33#include <linux/delay.h>
34#include <linux/slab.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040035#include <linux/module.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020036#include <sound/core.h>
David Henningsson07acecc2011-05-19 11:46:03 +020037#include <sound/jack.h>
Wang Xingchao433968d2012-09-06 10:02:37 +080038#include <sound/asoundef.h>
Takashi Iwaid45e6882012-07-31 11:36:00 +020039#include <sound/tlv.h>
David Henningsson25adc132015-08-19 10:48:58 +020040#include <sound/hdaudio.h>
41#include <sound/hda_i915.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020042#include "hda_codec.h"
43#include "hda_local.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020044#include "hda_jack.h"
Takashi Iwai84eb01b2010-09-07 12:27:25 +020045
Takashi Iwai0ebaa242011-01-11 18:11:04 +010046static bool static_hdmi_pcm;
47module_param(static_hdmi_pcm, bool, 0644);
48MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info");
49
Takashi Iwai7639a062015-03-03 10:07:24 +010050#define is_haswell(codec) ((codec)->core.vendor_id == 0x80862807)
51#define is_broadwell(codec) ((codec)->core.vendor_id == 0x80862808)
52#define is_skylake(codec) ((codec)->core.vendor_id == 0x80862809)
Lu, Hane2656412015-11-11 16:54:27 +080053#define is_broxton(codec) ((codec)->core.vendor_id == 0x8086280a)
Libin Yang91815d82016-01-14 14:09:00 +080054#define is_kabylake(codec) ((codec)->core.vendor_id == 0x8086280b)
Libin Yang432ac1a2014-12-16 13:17:34 +080055#define is_haswell_plus(codec) (is_haswell(codec) || is_broadwell(codec) \
Libin Yang91815d82016-01-14 14:09:00 +080056 || is_skylake(codec) || is_broxton(codec) \
57 || is_kabylake(codec))
Mengdong Lin75dcbe42014-01-08 15:55:32 -050058
Takashi Iwai7639a062015-03-03 10:07:24 +010059#define is_valleyview(codec) ((codec)->core.vendor_id == 0x80862882)
60#define is_cherryview(codec) ((codec)->core.vendor_id == 0x80862883)
Libin Yangca2e7222014-08-19 16:20:12 +080061#define is_valleyview_plus(codec) (is_valleyview(codec) || is_cherryview(codec))
Mengdong Linfb87fa32013-09-04 16:36:57 -040062
Stephen Warren384a48d2011-06-01 11:14:21 -060063struct hdmi_spec_per_cvt {
64 hda_nid_t cvt_nid;
65 int assigned;
66 unsigned int channels_min;
67 unsigned int channels_max;
68 u32 rates;
69 u64 formats;
70 unsigned int maxbps;
71};
72
Takashi Iwai4eea3092013-02-07 18:18:19 +010073/* max. connections to a widget */
74#define HDA_MAX_CONNECTIONS 32
75
Stephen Warren384a48d2011-06-01 11:14:21 -060076struct hdmi_spec_per_pin {
77 hda_nid_t pin_nid;
78 int num_mux_nids;
79 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Mengdong Lin2df67422014-03-20 13:01:06 +080080 int mux_idx;
Anssi Hannula1df5a062013-10-05 02:25:40 +030081 hda_nid_t cvt_nid;
Wu Fengguang744626d2011-11-16 16:29:47 +080082
83 struct hda_codec *codec;
Stephen Warren384a48d2011-06-01 11:14:21 -060084 struct hdmi_eld sink_eld;
Takashi Iwaia4e9a382013-10-17 18:21:12 +020085 struct mutex lock;
Wu Fengguang744626d2011-11-16 16:29:47 +080086 struct delayed_work work;
David Henningsson92c69e72013-02-19 16:11:26 +010087 struct snd_kcontrol *eld_ctl;
Takashi Iwai788d4412015-11-12 15:36:13 +010088 struct snd_jack *acomp_jack; /* jack via audio component */
Wu Fengguangc6e84532011-11-18 16:59:32 -060089 int repoll_count;
Takashi Iwaib0540872013-09-02 12:33:02 +020090 bool setup; /* the stream has been set up by prepare callback */
91 int channels; /* current number of channels */
Takashi Iwai1a6003b2012-09-06 17:42:08 +020092 bool non_pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +020093 bool chmap_set; /* channel-map override by ALSA API? */
94 unsigned char chmap[8]; /* ALSA API channel-map */
Jie Yangcd6a6502015-05-27 19:45:45 +080095#ifdef CONFIG_SND_PROC_FS
Takashi Iwaia4e9a382013-10-17 18:21:12 +020096 struct snd_info_entry *proc_entry;
97#endif
Stephen Warren384a48d2011-06-01 11:14:21 -060098};
99
Anssi Hannula307229d2013-10-24 21:10:34 +0300100struct cea_channel_speaker_allocation;
101
102/* operations used by generic code that can be overridden by patches */
103struct hdmi_ops {
104 int (*pin_get_eld)(struct hda_codec *codec, hda_nid_t pin_nid,
105 unsigned char *buf, int *eld_size);
106
107 /* get and set channel assigned to each HDMI ASP (audio sample packet) slot */
108 int (*pin_get_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
109 int asp_slot);
110 int (*pin_set_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
111 int asp_slot, int channel);
112
113 void (*pin_setup_infoframe)(struct hda_codec *codec, hda_nid_t pin_nid,
114 int ca, int active_channels, int conn_type);
115
116 /* enable/disable HBR (HD passthrough) */
117 int (*pin_hbr_setup)(struct hda_codec *codec, hda_nid_t pin_nid, bool hbr);
118
119 int (*setup_stream)(struct hda_codec *codec, hda_nid_t cvt_nid,
120 hda_nid_t pin_nid, u32 stream_tag, int format);
121
122 /* Helpers for producing the channel map TLVs. These can be overridden
123 * for devices that have non-standard mapping requirements. */
124 int (*chmap_cea_alloc_validate_get_type)(struct cea_channel_speaker_allocation *cap,
125 int channels);
126 void (*cea_alloc_to_tlv_chmap)(struct cea_channel_speaker_allocation *cap,
127 unsigned int *chmap, int channels);
128
129 /* check that the user-given chmap is supported */
130 int (*chmap_validate)(int ca, int channels, unsigned char *chmap);
131};
132
Wu Fengguang079d88c2010-03-08 10:44:23 +0800133struct hdmi_spec {
134 int num_cvts;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100135 struct snd_array cvts; /* struct hdmi_spec_per_cvt */
136 hda_nid_t cvt_nids[4]; /* only for haswell fix */
Stephen Warren384a48d2011-06-01 11:14:21 -0600137
Wu Fengguang079d88c2010-03-08 10:44:23 +0800138 int num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100139 struct snd_array pins; /* struct hdmi_spec_per_pin */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100140 struct hda_pcm *pcm_rec[16];
Takashi Iwaid45e6882012-07-31 11:36:00 +0200141 unsigned int channels_max; /* max over all cvts */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800142
David Henningsson4bd038f2013-02-19 16:11:25 +0100143 struct hdmi_eld temp_eld;
Anssi Hannula307229d2013-10-24 21:10:34 +0300144 struct hdmi_ops ops;
Stephen Warren75fae112014-01-30 11:52:16 -0700145
146 bool dyn_pin_out;
147
Wu Fengguang079d88c2010-03-08 10:44:23 +0800148 /*
Anssi Hannula5a6135842013-10-24 21:10:35 +0300149 * Non-generic VIA/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +0800150 */
151 struct hda_multi_out multiout;
Takashi Iwaid0b12522012-06-15 14:34:42 +0200152 struct hda_pcm_stream pcm_playback;
David Henningsson25adc132015-08-19 10:48:58 +0200153
154 /* i915/powerwell (Haswell+/Valleyview+) specific */
155 struct i915_audio_component_audio_ops i915_audio_ops;
Takashi Iwai55913112015-12-10 13:03:29 +0100156 bool i915_bound; /* was i915 bound in this driver? */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800157};
158
Takashi Iwaif4e30402015-12-10 13:01:28 +0100159#ifdef CONFIG_SND_HDA_I915
Takashi Iwai66032492015-12-01 16:49:35 +0100160#define codec_has_acomp(codec) \
161 ((codec)->bus->core.audio_component != NULL)
Takashi Iwaif4e30402015-12-10 13:01:28 +0100162#else
163#define codec_has_acomp(codec) false
164#endif
Wu Fengguang079d88c2010-03-08 10:44:23 +0800165
166struct hdmi_audio_infoframe {
167 u8 type; /* 0x84 */
168 u8 ver; /* 0x01 */
169 u8 len; /* 0x0a */
170
Wu Fengguang53d7d692010-09-21 14:25:49 +0800171 u8 checksum;
172
Wu Fengguang079d88c2010-03-08 10:44:23 +0800173 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
174 u8 SS01_SF24;
175 u8 CXT04;
176 u8 CA;
177 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800178};
179
180struct dp_audio_infoframe {
181 u8 type; /* 0x84 */
182 u8 len; /* 0x1b */
183 u8 ver; /* 0x11 << 2 */
184
185 u8 CC02_CT47; /* match with HDMI infoframe from this on */
186 u8 SS01_SF24;
187 u8 CXT04;
188 u8 CA;
189 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800190};
191
Takashi Iwai2b203dbb2011-02-11 12:17:30 +0100192union audio_infoframe {
193 struct hdmi_audio_infoframe hdmi;
194 struct dp_audio_infoframe dp;
195 u8 bytes[0];
196};
197
Wu Fengguang079d88c2010-03-08 10:44:23 +0800198/*
199 * CEA speaker placement:
200 *
201 * FLH FCH FRH
202 * FLW FL FLC FC FRC FR FRW
203 *
204 * LFE
205 * TC
206 *
207 * RL RLC RC RRC RR
208 *
209 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
210 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
211 */
212enum cea_speaker_placement {
213 FL = (1 << 0), /* Front Left */
214 FC = (1 << 1), /* Front Center */
215 FR = (1 << 2), /* Front Right */
216 FLC = (1 << 3), /* Front Left Center */
217 FRC = (1 << 4), /* Front Right Center */
218 RL = (1 << 5), /* Rear Left */
219 RC = (1 << 6), /* Rear Center */
220 RR = (1 << 7), /* Rear Right */
221 RLC = (1 << 8), /* Rear Left Center */
222 RRC = (1 << 9), /* Rear Right Center */
223 LFE = (1 << 10), /* Low Frequency Effect */
224 FLW = (1 << 11), /* Front Left Wide */
225 FRW = (1 << 12), /* Front Right Wide */
226 FLH = (1 << 13), /* Front Left High */
227 FCH = (1 << 14), /* Front Center High */
228 FRH = (1 << 15), /* Front Right High */
229 TC = (1 << 16), /* Top Center */
230};
231
232/*
233 * ELD SA bits in the CEA Speaker Allocation data block
234 */
235static int eld_speaker_allocation_bits[] = {
236 [0] = FL | FR,
237 [1] = LFE,
238 [2] = FC,
239 [3] = RL | RR,
240 [4] = RC,
241 [5] = FLC | FRC,
242 [6] = RLC | RRC,
243 /* the following are not defined in ELD yet */
244 [7] = FLW | FRW,
245 [8] = FLH | FRH,
246 [9] = TC,
247 [10] = FCH,
248};
249
250struct cea_channel_speaker_allocation {
251 int ca_index;
252 int speakers[8];
253
254 /* derived values, just for convenience */
255 int channels;
256 int spk_mask;
257};
258
259/*
260 * ALSA sequence is:
261 *
262 * surround40 surround41 surround50 surround51 surround71
263 * ch0 front left = = = =
264 * ch1 front right = = = =
265 * ch2 rear left = = = =
266 * ch3 rear right = = = =
267 * ch4 LFE center center center
268 * ch5 LFE LFE
269 * ch6 side left
270 * ch7 side right
271 *
272 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
273 */
274static int hdmi_channel_mapping[0x32][8] = {
275 /* stereo */
276 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
277 /* 2.1 */
278 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
279 /* Dolby Surround */
280 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
281 /* surround40 */
282 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
283 /* 4ch */
284 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
285 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800286 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800287 /* surround50 */
288 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
289 /* surround51 */
290 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
291 /* 7.1 */
292 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
293};
294
295/*
296 * This is an ordered list!
297 *
298 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800299 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800300 */
301static struct cea_channel_speaker_allocation channel_allocations[] = {
302/* channel: 7 6 5 4 3 2 1 0 */
303{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
304 /* 2.1 */
305{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
306 /* Dolby Surround */
307{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
308 /* surround40 */
309{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
310 /* surround41 */
311{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
312 /* surround50 */
313{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
314 /* surround51 */
315{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
316 /* 6.1 */
317{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
318 /* surround71 */
319{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
320
321{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
322{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
323{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
324{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
325{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
326{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
327{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
328{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
329{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
330{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
331{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
332{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
333{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
334{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
335{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
336{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
337{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
338{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
339{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
340{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
341{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
342{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
343{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
344{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
345{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
346{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
347{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
348{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
349{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
350{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
351{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
352{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
353{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
354{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
355{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
356{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
357{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
358{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
359{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
360{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
361{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
362};
363
364
365/*
366 * HDMI routines
367 */
368
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100369#define get_pin(spec, idx) \
370 ((struct hdmi_spec_per_pin *)snd_array_elem(&spec->pins, idx))
371#define get_cvt(spec, idx) \
372 ((struct hdmi_spec_per_cvt *)snd_array_elem(&spec->cvts, idx))
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100373#define get_pcm_rec(spec, idx) ((spec)->pcm_rec[idx])
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100374
Takashi Iwai4e76a882014-02-25 12:21:03 +0100375static int pin_nid_to_pin_index(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800376{
Takashi Iwai4e76a882014-02-25 12:21:03 +0100377 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600378 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800379
Stephen Warren384a48d2011-06-01 11:14:21 -0600380 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100381 if (get_pin(spec, pin_idx)->pin_nid == pin_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600382 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800383
Takashi Iwai4e76a882014-02-25 12:21:03 +0100384 codec_warn(codec, "HDMI: pin nid %d not registered\n", pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -0600385 return -EINVAL;
386}
387
Takashi Iwai4e76a882014-02-25 12:21:03 +0100388static int hinfo_to_pin_index(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600389 struct hda_pcm_stream *hinfo)
390{
Takashi Iwai4e76a882014-02-25 12:21:03 +0100391 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600392 int pin_idx;
393
394 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100395 if (get_pcm_rec(spec, pin_idx)->stream == hinfo)
Stephen Warren384a48d2011-06-01 11:14:21 -0600396 return pin_idx;
397
Takashi Iwai4e76a882014-02-25 12:21:03 +0100398 codec_warn(codec, "HDMI: hinfo %p not registered\n", hinfo);
Stephen Warren384a48d2011-06-01 11:14:21 -0600399 return -EINVAL;
400}
401
Takashi Iwai4e76a882014-02-25 12:21:03 +0100402static int cvt_nid_to_cvt_index(struct hda_codec *codec, hda_nid_t cvt_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600403{
Takashi Iwai4e76a882014-02-25 12:21:03 +0100404 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600405 int cvt_idx;
406
407 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100408 if (get_cvt(spec, cvt_idx)->cvt_nid == cvt_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600409 return cvt_idx;
410
Takashi Iwai4e76a882014-02-25 12:21:03 +0100411 codec_warn(codec, "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800412 return -EINVAL;
413}
414
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500415static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
416 struct snd_ctl_elem_info *uinfo)
417{
418 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100419 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200420 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100421 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500422 int pin_idx;
423
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500424 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
425
426 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200427 per_pin = get_pin(spec, pin_idx);
428 eld = &per_pin->sink_eld;
David Henningsson68e03de2013-02-19 16:11:23 +0100429
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200430 mutex_lock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100431 uinfo->count = eld->eld_valid ? eld->eld_size : 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200432 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500433
434 return 0;
435}
436
437static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
438 struct snd_ctl_elem_value *ucontrol)
439{
440 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100441 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200442 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100443 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500444 int pin_idx;
445
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500446 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200447 per_pin = get_pin(spec, pin_idx);
448 eld = &per_pin->sink_eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500449
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200450 mutex_lock(&per_pin->lock);
David Henningsson360a8242016-02-05 09:05:41 +0100451 if (eld->eld_size > ARRAY_SIZE(ucontrol->value.bytes.data) ||
452 eld->eld_size > ELD_MAX_SIZE) {
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200453 mutex_unlock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100454 snd_BUG();
455 return -EINVAL;
456 }
457
458 memset(ucontrol->value.bytes.data, 0,
459 ARRAY_SIZE(ucontrol->value.bytes.data));
460 if (eld->eld_valid)
461 memcpy(ucontrol->value.bytes.data, eld->eld_buffer,
462 eld->eld_size);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200463 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500464
465 return 0;
466}
467
468static struct snd_kcontrol_new eld_bytes_ctl = {
469 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
470 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
471 .name = "ELD",
472 .info = hdmi_eld_ctl_info,
473 .get = hdmi_eld_ctl_get,
474};
475
476static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
477 int device)
478{
479 struct snd_kcontrol *kctl;
480 struct hdmi_spec *spec = codec->spec;
481 int err;
482
483 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
484 if (!kctl)
485 return -ENOMEM;
486 kctl->private_value = pin_idx;
487 kctl->id.device = device;
488
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100489 err = snd_hda_ctl_add(codec, get_pin(spec, pin_idx)->pin_nid, kctl);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500490 if (err < 0)
491 return err;
492
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100493 get_pin(spec, pin_idx)->eld_ctl = kctl;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500494 return 0;
495}
496
Wu Fengguang079d88c2010-03-08 10:44:23 +0800497#ifdef BE_PARANOID
498static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
499 int *packet_index, int *byte_index)
500{
501 int val;
502
503 val = snd_hda_codec_read(codec, pin_nid, 0,
504 AC_VERB_GET_HDMI_DIP_INDEX, 0);
505
506 *packet_index = val >> 5;
507 *byte_index = val & 0x1f;
508}
509#endif
510
511static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
512 int packet_index, int byte_index)
513{
514 int val;
515
516 val = (packet_index << 5) | (byte_index & 0x1f);
517
518 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
519}
520
521static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
522 unsigned char val)
523{
524 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
525}
526
Stephen Warren384a48d2011-06-01 11:14:21 -0600527static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800528{
Stephen Warren75fae112014-01-30 11:52:16 -0700529 struct hdmi_spec *spec = codec->spec;
530 int pin_out;
531
Wu Fengguang079d88c2010-03-08 10:44:23 +0800532 /* Unmute */
533 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
534 snd_hda_codec_write(codec, pin_nid, 0,
535 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Stephen Warren75fae112014-01-30 11:52:16 -0700536
537 if (spec->dyn_pin_out)
538 /* Disable pin out until stream is active */
539 pin_out = 0;
540 else
541 /* Enable pin out: some machines with GM965 gets broken output
542 * when the pin is disabled or changed while using with HDMI
543 */
544 pin_out = PIN_OUT;
545
Wu Fengguang079d88c2010-03-08 10:44:23 +0800546 snd_hda_codec_write(codec, pin_nid, 0,
Stephen Warren75fae112014-01-30 11:52:16 -0700547 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_out);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800548}
549
Stephen Warren384a48d2011-06-01 11:14:21 -0600550static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800551{
Stephen Warren384a48d2011-06-01 11:14:21 -0600552 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800553 AC_VERB_GET_CVT_CHAN_COUNT, 0);
554}
555
556static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600557 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800558{
Stephen Warren384a48d2011-06-01 11:14:21 -0600559 if (chs != hdmi_get_channel_count(codec, cvt_nid))
560 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800561 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
562}
563
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200564/*
565 * ELD proc files
566 */
567
Jie Yangcd6a6502015-05-27 19:45:45 +0800568#ifdef CONFIG_SND_PROC_FS
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200569static void print_eld_info(struct snd_info_entry *entry,
570 struct snd_info_buffer *buffer)
571{
572 struct hdmi_spec_per_pin *per_pin = entry->private_data;
573
574 mutex_lock(&per_pin->lock);
575 snd_hdmi_print_eld_info(&per_pin->sink_eld, buffer);
576 mutex_unlock(&per_pin->lock);
577}
578
579static void write_eld_info(struct snd_info_entry *entry,
580 struct snd_info_buffer *buffer)
581{
582 struct hdmi_spec_per_pin *per_pin = entry->private_data;
583
584 mutex_lock(&per_pin->lock);
585 snd_hdmi_write_eld_info(&per_pin->sink_eld, buffer);
586 mutex_unlock(&per_pin->lock);
587}
588
589static int eld_proc_new(struct hdmi_spec_per_pin *per_pin, int index)
590{
591 char name[32];
592 struct hda_codec *codec = per_pin->codec;
593 struct snd_info_entry *entry;
594 int err;
595
596 snprintf(name, sizeof(name), "eld#%d.%d", codec->addr, index);
Takashi Iwai6efdd852015-02-27 16:09:22 +0100597 err = snd_card_proc_new(codec->card, name, &entry);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200598 if (err < 0)
599 return err;
600
601 snd_info_set_text_ops(entry, per_pin, print_eld_info);
602 entry->c.text.write = write_eld_info;
603 entry->mode |= S_IWUSR;
604 per_pin->proc_entry = entry;
605
606 return 0;
607}
608
609static void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
610{
Markus Elfring1947a112015-06-28 11:15:28 +0200611 if (!per_pin->codec->bus->shutdown) {
Takashi Iwaic560a672015-04-22 18:26:38 +0200612 snd_info_free_entry(per_pin->proc_entry);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200613 per_pin->proc_entry = NULL;
614 }
615}
616#else
Takashi Iwaib55447a2013-10-21 16:31:45 +0200617static inline int eld_proc_new(struct hdmi_spec_per_pin *per_pin,
618 int index)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200619{
620 return 0;
621}
Takashi Iwaib55447a2013-10-21 16:31:45 +0200622static inline void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200623{
624}
625#endif
Wu Fengguang079d88c2010-03-08 10:44:23 +0800626
627/*
628 * Channel mapping routines
629 */
630
631/*
632 * Compute derived values in channel_allocations[].
633 */
634static void init_channel_allocations(void)
635{
636 int i, j;
637 struct cea_channel_speaker_allocation *p;
638
639 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
640 p = channel_allocations + i;
641 p->channels = 0;
642 p->spk_mask = 0;
643 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
644 if (p->speakers[j]) {
645 p->channels++;
646 p->spk_mask |= p->speakers[j];
647 }
648 }
649}
650
Wang Xingchao72357c72012-09-06 10:02:36 +0800651static int get_channel_allocation_order(int ca)
652{
653 int i;
654
655 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
656 if (channel_allocations[i].ca_index == ca)
657 break;
658 }
659 return i;
660}
661
Wu Fengguang079d88c2010-03-08 10:44:23 +0800662/*
663 * The transformation takes two steps:
664 *
665 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
666 * spk_mask => (channel_allocations[]) => ai->CA
667 *
668 * TODO: it could select the wrong CA from multiple candidates.
669*/
Takashi Iwai79514d42014-06-06 18:04:34 +0200670static int hdmi_channel_allocation(struct hda_codec *codec,
671 struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800672{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800673 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800674 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800675 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800676 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
677
678 /*
679 * CA defaults to 0 for basic stereo audio
680 */
681 if (channels <= 2)
682 return 0;
683
Wu Fengguang079d88c2010-03-08 10:44:23 +0800684 /*
685 * expand ELD's speaker allocation mask
686 *
687 * ELD tells the speaker mask in a compact(paired) form,
688 * expand ELD's notions to match the ones used by Audio InfoFrame.
689 */
690 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
David Henningsson1613d6b2013-02-19 16:11:24 +0100691 if (eld->info.spk_alloc & (1 << i))
Wu Fengguang079d88c2010-03-08 10:44:23 +0800692 spk_mask |= eld_speaker_allocation_bits[i];
693 }
694
695 /* search for the first working match in the CA table */
696 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
697 if (channels == channel_allocations[i].channels &&
698 (spk_mask & channel_allocations[i].spk_mask) ==
699 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800700 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800701 break;
702 }
703 }
704
Anssi Hannula18e39182013-09-01 14:36:47 +0300705 if (!ca) {
706 /* if there was no match, select the regular ALSA channel
707 * allocation with the matching number of channels */
708 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
709 if (channels == channel_allocations[i].channels) {
710 ca = channel_allocations[i].ca_index;
711 break;
712 }
713 }
714 }
715
David Henningsson1613d6b2013-02-19 16:11:24 +0100716 snd_print_channel_allocation(eld->info.spk_alloc, buf, sizeof(buf));
Takashi Iwai79514d42014-06-06 18:04:34 +0200717 codec_dbg(codec, "HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800718 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800719
Wu Fengguang53d7d692010-09-21 14:25:49 +0800720 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800721}
722
723static void hdmi_debug_channel_mapping(struct hda_codec *codec,
724 hda_nid_t pin_nid)
725{
726#ifdef CONFIG_SND_DEBUG_VERBOSE
Anssi Hannula307229d2013-10-24 21:10:34 +0300727 struct hdmi_spec *spec = codec->spec;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800728 int i;
Anssi Hannula307229d2013-10-24 21:10:34 +0300729 int channel;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800730
731 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300732 channel = spec->ops.pin_get_slot_channel(codec, pin_nid, i);
Takashi Iwai4e76a882014-02-25 12:21:03 +0100733 codec_dbg(codec, "HDMI: ASP channel %d => slot %d\n",
Anssi Hannula307229d2013-10-24 21:10:34 +0300734 channel, i);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800735 }
736#endif
737}
738
Takashi Iwaid45e6882012-07-31 11:36:00 +0200739static void hdmi_std_setup_channel_mapping(struct hda_codec *codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800740 hda_nid_t pin_nid,
Wang Xingchao433968d2012-09-06 10:02:37 +0800741 bool non_pcm,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800742 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800743{
Anssi Hannula307229d2013-10-24 21:10:34 +0300744 struct hdmi_spec *spec = codec->spec;
Anssi Hannula90f28002013-10-05 02:25:39 +0300745 struct cea_channel_speaker_allocation *ch_alloc;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800746 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800747 int err;
Wang Xingchao72357c72012-09-06 10:02:36 +0800748 int order;
Wang Xingchao433968d2012-09-06 10:02:37 +0800749 int non_pcm_mapping[8];
Wu Fengguang079d88c2010-03-08 10:44:23 +0800750
Wang Xingchao72357c72012-09-06 10:02:36 +0800751 order = get_channel_allocation_order(ca);
Anssi Hannula90f28002013-10-05 02:25:39 +0300752 ch_alloc = &channel_allocations[order];
Wang Xingchao433968d2012-09-06 10:02:37 +0800753
Wu Fengguang079d88c2010-03-08 10:44:23 +0800754 if (hdmi_channel_mapping[ca][1] == 0) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300755 int hdmi_slot = 0;
756 /* fill actual channel mappings in ALSA channel (i) order */
757 for (i = 0; i < ch_alloc->channels; i++) {
758 while (!ch_alloc->speakers[7 - hdmi_slot] && !WARN_ON(hdmi_slot >= 8))
759 hdmi_slot++; /* skip zero slots */
760
761 hdmi_channel_mapping[ca][i] = (i << 4) | hdmi_slot++;
762 }
763 /* fill the rest of the slots with ALSA channel 0xf */
764 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++)
765 if (!ch_alloc->speakers[7 - hdmi_slot])
766 hdmi_channel_mapping[ca][i++] = (0xf << 4) | hdmi_slot;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800767 }
768
Wang Xingchao433968d2012-09-06 10:02:37 +0800769 if (non_pcm) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300770 for (i = 0; i < ch_alloc->channels; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300771 non_pcm_mapping[i] = (i << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800772 for (; i < 8; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300773 non_pcm_mapping[i] = (0xf << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800774 }
775
Wu Fengguang079d88c2010-03-08 10:44:23 +0800776 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300777 int slotsetup = non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i];
778 int hdmi_slot = slotsetup & 0x0f;
779 int channel = (slotsetup & 0xf0) >> 4;
780 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot, channel);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800781 if (err) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100782 codec_dbg(codec, "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800783 break;
784 }
785 }
Wu Fengguang079d88c2010-03-08 10:44:23 +0800786}
787
Takashi Iwaid45e6882012-07-31 11:36:00 +0200788struct channel_map_table {
789 unsigned char map; /* ALSA API channel map position */
Takashi Iwaid45e6882012-07-31 11:36:00 +0200790 int spk_mask; /* speaker position bit mask */
791};
792
793static struct channel_map_table map_tables[] = {
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300794 { SNDRV_CHMAP_FL, FL },
795 { SNDRV_CHMAP_FR, FR },
796 { SNDRV_CHMAP_RL, RL },
797 { SNDRV_CHMAP_RR, RR },
798 { SNDRV_CHMAP_LFE, LFE },
799 { SNDRV_CHMAP_FC, FC },
800 { SNDRV_CHMAP_RLC, RLC },
801 { SNDRV_CHMAP_RRC, RRC },
802 { SNDRV_CHMAP_RC, RC },
803 { SNDRV_CHMAP_FLC, FLC },
804 { SNDRV_CHMAP_FRC, FRC },
Anssi Hannula94908a32013-11-10 21:24:04 +0200805 { SNDRV_CHMAP_TFL, FLH },
806 { SNDRV_CHMAP_TFR, FRH },
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300807 { SNDRV_CHMAP_FLW, FLW },
808 { SNDRV_CHMAP_FRW, FRW },
809 { SNDRV_CHMAP_TC, TC },
Anssi Hannula94908a32013-11-10 21:24:04 +0200810 { SNDRV_CHMAP_TFC, FCH },
Takashi Iwaid45e6882012-07-31 11:36:00 +0200811 {} /* terminator */
812};
813
814/* from ALSA API channel position to speaker bit mask */
815static int to_spk_mask(unsigned char c)
816{
817 struct channel_map_table *t = map_tables;
818 for (; t->map; t++) {
819 if (t->map == c)
820 return t->spk_mask;
821 }
822 return 0;
823}
824
825/* from ALSA API channel position to CEA slot */
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300826static int to_cea_slot(int ordered_ca, unsigned char pos)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200827{
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300828 int mask = to_spk_mask(pos);
829 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200830
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300831 if (mask) {
832 for (i = 0; i < 8; i++) {
833 if (channel_allocations[ordered_ca].speakers[7 - i] == mask)
834 return i;
835 }
Takashi Iwaid45e6882012-07-31 11:36:00 +0200836 }
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300837
838 return -1;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200839}
840
841/* from speaker bit mask to ALSA API channel position */
842static int spk_to_chmap(int spk)
843{
844 struct channel_map_table *t = map_tables;
845 for (; t->map; t++) {
846 if (t->spk_mask == spk)
847 return t->map;
848 }
849 return 0;
850}
851
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300852/* from CEA slot to ALSA API channel position */
853static int from_cea_slot(int ordered_ca, unsigned char slot)
854{
855 int mask = channel_allocations[ordered_ca].speakers[7 - slot];
856
857 return spk_to_chmap(mask);
858}
859
Takashi Iwaid45e6882012-07-31 11:36:00 +0200860/* get the CA index corresponding to the given ALSA API channel map */
861static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
862{
863 int i, spks = 0, spk_mask = 0;
864
865 for (i = 0; i < chs; i++) {
866 int mask = to_spk_mask(map[i]);
867 if (mask) {
868 spk_mask |= mask;
869 spks++;
870 }
871 }
872
873 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
874 if ((chs == channel_allocations[i].channels ||
875 spks == channel_allocations[i].channels) &&
876 (spk_mask & channel_allocations[i].spk_mask) ==
877 channel_allocations[i].spk_mask)
878 return channel_allocations[i].ca_index;
879 }
880 return -1;
881}
882
883/* set up the channel slots for the given ALSA API channel map */
884static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
885 hda_nid_t pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300886 int chs, unsigned char *map,
887 int ca)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200888{
Anssi Hannula307229d2013-10-24 21:10:34 +0300889 struct hdmi_spec *spec = codec->spec;
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300890 int ordered_ca = get_channel_allocation_order(ca);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300891 int alsa_pos, hdmi_slot;
892 int assignments[8] = {[0 ... 7] = 0xf};
893
894 for (alsa_pos = 0; alsa_pos < chs; alsa_pos++) {
895
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300896 hdmi_slot = to_cea_slot(ordered_ca, map[alsa_pos]);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300897
898 if (hdmi_slot < 0)
899 continue; /* unassigned channel */
900
901 assignments[hdmi_slot] = alsa_pos;
902 }
903
904 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300905 int err;
Anssi Hannula11f7c522013-10-05 02:25:41 +0300906
Anssi Hannula307229d2013-10-24 21:10:34 +0300907 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot,
908 assignments[hdmi_slot]);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200909 if (err)
910 return -EINVAL;
911 }
912 return 0;
913}
914
915/* store ALSA API channel map from the current default map */
916static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
917{
918 int i;
Anssi Hannula56cac412013-10-05 02:25:38 +0300919 int ordered_ca = get_channel_allocation_order(ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200920 for (i = 0; i < 8; i++) {
Anssi Hannula56cac412013-10-05 02:25:38 +0300921 if (i < channel_allocations[ordered_ca].channels)
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300922 map[i] = from_cea_slot(ordered_ca, hdmi_channel_mapping[ca][i] & 0x0f);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200923 else
924 map[i] = 0;
925 }
926}
927
928static void hdmi_setup_channel_mapping(struct hda_codec *codec,
929 hda_nid_t pin_nid, bool non_pcm, int ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200930 int channels, unsigned char *map,
931 bool chmap_set)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200932{
Anssi Hannula20608732013-02-03 17:55:45 +0200933 if (!non_pcm && chmap_set) {
Takashi Iwaid45e6882012-07-31 11:36:00 +0200934 hdmi_manual_setup_channel_mapping(codec, pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300935 channels, map, ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200936 } else {
937 hdmi_std_setup_channel_mapping(codec, pin_nid, non_pcm, ca);
938 hdmi_setup_fake_chmap(map, ca);
939 }
Anssi Hannula980b2492013-10-05 02:25:44 +0300940
941 hdmi_debug_channel_mapping(codec, pin_nid);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200942}
Wu Fengguang079d88c2010-03-08 10:44:23 +0800943
Anssi Hannula307229d2013-10-24 21:10:34 +0300944static int hdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
945 int asp_slot, int channel)
946{
947 return snd_hda_codec_write(codec, pin_nid, 0,
948 AC_VERB_SET_HDMI_CHAN_SLOT,
949 (channel << 4) | asp_slot);
950}
951
952static int hdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
953 int asp_slot)
954{
955 return (snd_hda_codec_read(codec, pin_nid, 0,
956 AC_VERB_GET_HDMI_CHAN_SLOT,
957 asp_slot) & 0xf0) >> 4;
958}
959
Wu Fengguang079d88c2010-03-08 10:44:23 +0800960/*
961 * Audio InfoFrame routines
962 */
963
964/*
965 * Enable Audio InfoFrame Transmission
966 */
967static void hdmi_start_infoframe_trans(struct hda_codec *codec,
968 hda_nid_t pin_nid)
969{
970 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
971 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
972 AC_DIPXMIT_BEST);
973}
974
975/*
976 * Disable Audio InfoFrame Transmission
977 */
978static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
979 hda_nid_t pin_nid)
980{
981 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
982 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
983 AC_DIPXMIT_DISABLE);
984}
985
986static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
987{
988#ifdef CONFIG_SND_DEBUG_VERBOSE
989 int i;
990 int size;
991
992 size = snd_hdmi_get_eld_size(codec, pin_nid);
Takashi Iwai4e76a882014-02-25 12:21:03 +0100993 codec_dbg(codec, "HDMI: ELD buf size is %d\n", size);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800994
995 for (i = 0; i < 8; i++) {
996 size = snd_hda_codec_read(codec, pin_nid, 0,
997 AC_VERB_GET_HDMI_DIP_SIZE, i);
Takashi Iwai4e76a882014-02-25 12:21:03 +0100998 codec_dbg(codec, "HDMI: DIP GP[%d] buf size is %d\n", i, size);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800999 }
1000#endif
1001}
1002
1003static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
1004{
1005#ifdef BE_PARANOID
1006 int i, j;
1007 int size;
1008 int pi, bi;
1009 for (i = 0; i < 8; i++) {
1010 size = snd_hda_codec_read(codec, pin_nid, 0,
1011 AC_VERB_GET_HDMI_DIP_SIZE, i);
1012 if (size == 0)
1013 continue;
1014
1015 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
1016 for (j = 1; j < 1000; j++) {
1017 hdmi_write_dip_byte(codec, pin_nid, 0x0);
1018 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
1019 if (pi != i)
Takashi Iwai4e76a882014-02-25 12:21:03 +01001020 codec_dbg(codec, "dip index %d: %d != %d\n",
Wu Fengguang079d88c2010-03-08 10:44:23 +08001021 bi, pi, i);
1022 if (bi == 0) /* byte index wrapped around */
1023 break;
1024 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01001025 codec_dbg(codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +08001026 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
1027 i, size, j);
1028 }
1029#endif
1030}
1031
Wu Fengguang53d7d692010-09-21 14:25:49 +08001032static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001033{
Wu Fengguang53d7d692010-09-21 14:25:49 +08001034 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001035 u8 sum = 0;
1036 int i;
1037
Wu Fengguang53d7d692010-09-21 14:25:49 +08001038 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001039
Wu Fengguang53d7d692010-09-21 14:25:49 +08001040 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001041 sum += bytes[i];
1042
Wu Fengguang53d7d692010-09-21 14:25:49 +08001043 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001044}
1045
1046static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
1047 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001048 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001049{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001050 int i;
1051
1052 hdmi_debug_dip_size(codec, pin_nid);
1053 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
1054
Wu Fengguang079d88c2010-03-08 10:44:23 +08001055 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001056 for (i = 0; i < size; i++)
1057 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001058}
1059
1060static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001061 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001062{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001063 u8 val;
1064 int i;
1065
1066 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
1067 != AC_DIPXMIT_BEST)
1068 return false;
1069
1070 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001071 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001072 val = snd_hda_codec_read(codec, pin_nid, 0,
1073 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001074 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +08001075 return false;
1076 }
1077
1078 return true;
1079}
1080
Anssi Hannula307229d2013-10-24 21:10:34 +03001081static void hdmi_pin_setup_infoframe(struct hda_codec *codec,
1082 hda_nid_t pin_nid,
1083 int ca, int active_channels,
1084 int conn_type)
1085{
1086 union audio_infoframe ai;
1087
Mengdong Lincaaf5ef2014-03-11 17:12:52 -04001088 memset(&ai, 0, sizeof(ai));
Anssi Hannula307229d2013-10-24 21:10:34 +03001089 if (conn_type == 0) { /* HDMI */
1090 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
1091
1092 hdmi_ai->type = 0x84;
1093 hdmi_ai->ver = 0x01;
1094 hdmi_ai->len = 0x0a;
1095 hdmi_ai->CC02_CT47 = active_channels - 1;
1096 hdmi_ai->CA = ca;
1097 hdmi_checksum_audio_infoframe(hdmi_ai);
1098 } else if (conn_type == 1) { /* DisplayPort */
1099 struct dp_audio_infoframe *dp_ai = &ai.dp;
1100
1101 dp_ai->type = 0x84;
1102 dp_ai->len = 0x1b;
1103 dp_ai->ver = 0x11 << 2;
1104 dp_ai->CC02_CT47 = active_channels - 1;
1105 dp_ai->CA = ca;
1106 } else {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001107 codec_dbg(codec, "HDMI: unknown connection type at pin %d\n",
Anssi Hannula307229d2013-10-24 21:10:34 +03001108 pin_nid);
1109 return;
1110 }
1111
1112 /*
1113 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
1114 * sizeof(*dp_ai) to avoid partial match/update problems when
1115 * the user switches between HDMI/DP monitors.
1116 */
1117 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
1118 sizeof(ai))) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001119 codec_dbg(codec,
1120 "hdmi_pin_setup_infoframe: pin=%d channels=%d ca=0x%02x\n",
Anssi Hannula307229d2013-10-24 21:10:34 +03001121 pin_nid,
1122 active_channels, ca);
1123 hdmi_stop_infoframe_trans(codec, pin_nid);
1124 hdmi_fill_audio_infoframe(codec, pin_nid,
1125 ai.bytes, sizeof(ai));
1126 hdmi_start_infoframe_trans(codec, pin_nid);
1127 }
1128}
1129
Takashi Iwaib0540872013-09-02 12:33:02 +02001130static void hdmi_setup_audio_infoframe(struct hda_codec *codec,
1131 struct hdmi_spec_per_pin *per_pin,
1132 bool non_pcm)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001133{
Anssi Hannula307229d2013-10-24 21:10:34 +03001134 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001135 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwaib0540872013-09-02 12:33:02 +02001136 int channels = per_pin->channels;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001137 int active_channels;
Stephen Warren384a48d2011-06-01 11:14:21 -06001138 struct hdmi_eld *eld;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001139 int ca, ordered_ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001140
Takashi Iwaib0540872013-09-02 12:33:02 +02001141 if (!channels)
1142 return;
1143
Mengdong Lin75dcbe42014-01-08 15:55:32 -05001144 if (is_haswell_plus(codec))
Mengdong Lin58f7d282013-09-04 16:37:12 -04001145 snd_hda_codec_write(codec, pin_nid, 0,
1146 AC_VERB_SET_AMP_GAIN_MUTE,
1147 AMP_OUT_UNMUTE);
1148
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001149 eld = &per_pin->sink_eld;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001150
Takashi Iwaid45e6882012-07-31 11:36:00 +02001151 if (!non_pcm && per_pin->chmap_set)
1152 ca = hdmi_manual_channel_allocation(channels, per_pin->chmap);
1153 else
Takashi Iwai79514d42014-06-06 18:04:34 +02001154 ca = hdmi_channel_allocation(codec, eld, channels);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001155 if (ca < 0)
1156 ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001157
Anssi Hannula1df5a062013-10-05 02:25:40 +03001158 ordered_ca = get_channel_allocation_order(ca);
1159 active_channels = channel_allocations[ordered_ca].channels;
1160
1161 hdmi_set_channel_count(codec, per_pin->cvt_nid, active_channels);
1162
Stephen Warren384a48d2011-06-01 11:14:21 -06001163 /*
Anssi Hannula39edac72013-10-07 19:24:52 +03001164 * always configure channel mapping, it may have been changed by the
1165 * user in the meantime
1166 */
1167 hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
1168 channels, per_pin->chmap,
1169 per_pin->chmap_set);
1170
Anssi Hannula307229d2013-10-24 21:10:34 +03001171 spec->ops.pin_setup_infoframe(codec, pin_nid, ca, active_channels,
1172 eld->info.conn_type);
Wang Xingchao433968d2012-09-06 10:02:37 +08001173
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001174 per_pin->non_pcm = non_pcm;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001175}
1176
Wu Fengguang079d88c2010-03-08 10:44:23 +08001177/*
1178 * Unsolicited events
1179 */
1180
Takashi Iwaiefe47102013-11-07 13:38:23 +01001181static bool hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +02001182
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001183static void check_presence_and_report(struct hda_codec *codec, hda_nid_t nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001184{
1185 struct hdmi_spec *spec = codec->spec;
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001186 int pin_idx = pin_nid_to_pin_index(codec, nid);
1187
David Henningsson20ce9022013-12-04 10:19:41 +08001188 if (pin_idx < 0)
1189 return;
David Henningsson20ce9022013-12-04 10:19:41 +08001190 if (hdmi_present_sense(get_pin(spec, pin_idx), 1))
1191 snd_hda_jack_report_sync(codec);
1192}
1193
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001194static void jack_callback(struct hda_codec *codec,
1195 struct hda_jack_callback *jack)
1196{
Takashi Iwai2ebab402016-02-09 10:23:52 +01001197 check_presence_and_report(codec, jack->nid);
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001198}
1199
David Henningsson20ce9022013-12-04 10:19:41 +08001200static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
1201{
Takashi Iwai3a938972011-10-28 01:16:55 +02001202 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
Takashi Iwai3a938972011-10-28 01:16:55 +02001203 struct hda_jack_tbl *jack;
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001204 int dev_entry = (res & AC_UNSOL_RES_DE) >> AC_UNSOL_RES_DE_SHIFT;
Takashi Iwai3a938972011-10-28 01:16:55 +02001205
1206 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
1207 if (!jack)
1208 return;
Takashi Iwai3a938972011-10-28 01:16:55 +02001209 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001210
Takashi Iwai4e76a882014-02-25 12:21:03 +01001211 codec_dbg(codec,
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001212 "HDMI hot plug event: Codec=%d Pin=%d Device=%d Inactive=%d Presence_Detect=%d ELD_Valid=%d\n",
David Henningsson20ce9022013-12-04 10:19:41 +08001213 codec->addr, jack->nid, dev_entry, !!(res & AC_UNSOL_RES_IA),
Fengguang Wufae3d882012-04-10 17:00:35 +08001214 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +08001215
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001216 check_presence_and_report(codec, jack->nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001217}
1218
1219static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
1220{
1221 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1222 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1223 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
1224 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
1225
Takashi Iwai4e76a882014-02-25 12:21:03 +01001226 codec_info(codec,
Takashi Iwaie9ea8e82012-06-21 11:41:05 +02001227 "HDMI CP event: CODEC=%d TAG=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001228 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +08001229 tag,
1230 subtag,
1231 cp_state,
1232 cp_ready);
1233
1234 /* TODO */
1235 if (cp_state)
1236 ;
1237 if (cp_ready)
1238 ;
1239}
1240
1241
1242static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
1243{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001244 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1245 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1246
Takashi Iwai3a938972011-10-28 01:16:55 +02001247 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001248 codec_dbg(codec, "Unexpected HDMI event tag 0x%x\n", tag);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001249 return;
1250 }
1251
1252 if (subtag == 0)
1253 hdmi_intrinsic_event(codec, res);
1254 else
1255 hdmi_non_intrinsic_event(codec, res);
1256}
1257
Mengdong Lin58f7d282013-09-04 16:37:12 -04001258static void haswell_verify_D0(struct hda_codec *codec,
Wang Xingchao53b434f2013-06-18 10:41:53 +08001259 hda_nid_t cvt_nid, hda_nid_t nid)
David Henningsson83f26ad2013-04-10 12:26:07 +02001260{
Mengdong Lin58f7d282013-09-04 16:37:12 -04001261 int pwr;
David Henningsson83f26ad2013-04-10 12:26:07 +02001262
Wang Xingchao53b434f2013-06-18 10:41:53 +08001263 /* For Haswell, the converter 1/2 may keep in D3 state after bootup,
1264 * thus pins could only choose converter 0 for use. Make sure the
1265 * converters are in correct power state */
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001266 if (!snd_hda_check_power_state(codec, cvt_nid, AC_PWRST_D0))
Wang Xingchao53b434f2013-06-18 10:41:53 +08001267 snd_hda_codec_write(codec, cvt_nid, 0, AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1268
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001269 if (!snd_hda_check_power_state(codec, nid, AC_PWRST_D0)) {
David Henningsson83f26ad2013-04-10 12:26:07 +02001270 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
1271 AC_PWRST_D0);
1272 msleep(40);
1273 pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
1274 pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
Takashi Iwai4e76a882014-02-25 12:21:03 +01001275 codec_dbg(codec, "Haswell HDMI audio: Power for pin 0x%x is now D%d\n", nid, pwr);
David Henningsson83f26ad2013-04-10 12:26:07 +02001276 }
David Henningsson83f26ad2013-04-10 12:26:07 +02001277}
1278
Wu Fengguang079d88c2010-03-08 10:44:23 +08001279/*
1280 * Callbacks
1281 */
1282
Takashi Iwai92f10b32010-08-03 14:21:00 +02001283/* HBR should be Non-PCM, 8 channels */
1284#define is_hbr_format(format) \
1285 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
1286
Anssi Hannula307229d2013-10-24 21:10:34 +03001287static int hdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
1288 bool hbr)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001289{
Anssi Hannula307229d2013-10-24 21:10:34 +03001290 int pinctl, new_pinctl;
David Henningsson83f26ad2013-04-10 12:26:07 +02001291
Stephen Warren384a48d2011-06-01 11:14:21 -06001292 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
1293 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001294 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1295
Anssi Hannula13122e62013-11-10 20:56:10 +02001296 if (pinctl < 0)
1297 return hbr ? -EINVAL : 0;
1298
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001299 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Anssi Hannula307229d2013-10-24 21:10:34 +03001300 if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001301 new_pinctl |= AC_PINCTL_EPT_HBR;
1302 else
1303 new_pinctl |= AC_PINCTL_EPT_NATIVE;
1304
Takashi Iwai4e76a882014-02-25 12:21:03 +01001305 codec_dbg(codec,
1306 "hdmi_pin_hbr_setup: NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001307 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001308 pinctl == new_pinctl ? "" : "new-",
1309 new_pinctl);
1310
1311 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -06001312 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001313 AC_VERB_SET_PIN_WIDGET_CONTROL,
1314 new_pinctl);
Anssi Hannula307229d2013-10-24 21:10:34 +03001315 } else if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001316 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03001317
1318 return 0;
1319}
1320
1321static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
1322 hda_nid_t pin_nid, u32 stream_tag, int format)
1323{
1324 struct hdmi_spec *spec = codec->spec;
1325 int err;
1326
Mengdong Lin75dcbe42014-01-08 15:55:32 -05001327 if (is_haswell_plus(codec))
Anssi Hannula307229d2013-10-24 21:10:34 +03001328 haswell_verify_D0(codec, cvt_nid, pin_nid);
1329
1330 err = spec->ops.pin_hbr_setup(codec, pin_nid, is_hbr_format(format));
1331
1332 if (err) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001333 codec_dbg(codec, "hdmi_setup_stream: HBR is not supported\n");
Anssi Hannula307229d2013-10-24 21:10:34 +03001334 return err;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001335 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001336
Stephen Warren384a48d2011-06-01 11:14:21 -06001337 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001338 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001339}
1340
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001341static int hdmi_choose_cvt(struct hda_codec *codec,
1342 int pin_idx, int *cvt_id, int *mux_id)
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001343{
1344 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001345 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001346 struct hdmi_spec_per_cvt *per_cvt = NULL;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001347 int cvt_idx, mux_idx = 0;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001348
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001349 per_pin = get_pin(spec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001350
Stephen Warren384a48d2011-06-01 11:14:21 -06001351 /* Dynamically assign converter to stream */
1352 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001353 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001354
1355 /* Must not already be assigned */
1356 if (per_cvt->assigned)
1357 continue;
1358 /* Must be in pin's mux's list of converters */
1359 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
1360 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
1361 break;
1362 /* Not in mux list */
1363 if (mux_idx == per_pin->num_mux_nids)
1364 continue;
1365 break;
1366 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001367
Stephen Warren384a48d2011-06-01 11:14:21 -06001368 /* No free converters */
1369 if (cvt_idx == spec->num_cvts)
1370 return -ENODEV;
1371
Mengdong Lin2df67422014-03-20 13:01:06 +08001372 per_pin->mux_idx = mux_idx;
1373
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001374 if (cvt_id)
1375 *cvt_id = cvt_idx;
1376 if (mux_id)
1377 *mux_id = mux_idx;
1378
1379 return 0;
1380}
1381
Mengdong Lin2df67422014-03-20 13:01:06 +08001382/* Assure the pin select the right convetor */
1383static void intel_verify_pin_cvt_connect(struct hda_codec *codec,
1384 struct hdmi_spec_per_pin *per_pin)
1385{
1386 hda_nid_t pin_nid = per_pin->pin_nid;
1387 int mux_idx, curr;
1388
1389 mux_idx = per_pin->mux_idx;
1390 curr = snd_hda_codec_read(codec, pin_nid, 0,
1391 AC_VERB_GET_CONNECT_SEL, 0);
1392 if (curr != mux_idx)
1393 snd_hda_codec_write_cache(codec, pin_nid, 0,
1394 AC_VERB_SET_CONNECT_SEL,
1395 mux_idx);
1396}
1397
Mengdong Lin300016b2013-11-04 01:13:13 -05001398/* Intel HDMI workaround to fix audio routing issue:
1399 * For some Intel display codecs, pins share the same connection list.
1400 * So a conveter can be selected by multiple pins and playback on any of these
1401 * pins will generate sound on the external display, because audio flows from
1402 * the same converter to the display pipeline. Also muting one pin may make
1403 * other pins have no sound output.
1404 * So this function assures that an assigned converter for a pin is not selected
1405 * by any other pins.
1406 */
1407static void intel_not_share_assigned_cvt(struct hda_codec *codec,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001408 hda_nid_t pin_nid, int mux_idx)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001409{
1410 struct hdmi_spec *spec = codec->spec;
Takashi Iwai7639a062015-03-03 10:07:24 +01001411 hda_nid_t nid;
Mengdong Linf82d7d12013-09-21 20:34:45 -04001412 int cvt_idx, curr;
1413 struct hdmi_spec_per_cvt *per_cvt;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001414
Mengdong Linf82d7d12013-09-21 20:34:45 -04001415 /* configure all pins, including "no physical connection" ones */
Takashi Iwai7639a062015-03-03 10:07:24 +01001416 for_each_hda_codec_node(nid, codec) {
Mengdong Linf82d7d12013-09-21 20:34:45 -04001417 unsigned int wid_caps = get_wcaps(codec, nid);
1418 unsigned int wid_type = get_wcaps_type(wid_caps);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001419
Mengdong Linf82d7d12013-09-21 20:34:45 -04001420 if (wid_type != AC_WID_PIN)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001421 continue;
1422
Mengdong Linf82d7d12013-09-21 20:34:45 -04001423 if (nid == pin_nid)
1424 continue;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001425
Mengdong Linf82d7d12013-09-21 20:34:45 -04001426 curr = snd_hda_codec_read(codec, nid, 0,
1427 AC_VERB_GET_CONNECT_SEL, 0);
1428 if (curr != mux_idx)
1429 continue;
1430
1431 /* choose an unassigned converter. The conveters in the
1432 * connection list are in the same order as in the codec.
1433 */
1434 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
1435 per_cvt = get_cvt(spec, cvt_idx);
1436 if (!per_cvt->assigned) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001437 codec_dbg(codec,
1438 "choose cvt %d for pin nid %d\n",
Mengdong Linf82d7d12013-09-21 20:34:45 -04001439 cvt_idx, nid);
1440 snd_hda_codec_write_cache(codec, nid, 0,
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001441 AC_VERB_SET_CONNECT_SEL,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001442 cvt_idx);
1443 break;
1444 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001445 }
1446 }
1447}
1448
1449/*
1450 * HDA PCM callbacks
1451 */
1452static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
1453 struct hda_codec *codec,
1454 struct snd_pcm_substream *substream)
1455{
1456 struct hdmi_spec *spec = codec->spec;
1457 struct snd_pcm_runtime *runtime = substream->runtime;
1458 int pin_idx, cvt_idx, mux_idx = 0;
1459 struct hdmi_spec_per_pin *per_pin;
1460 struct hdmi_eld *eld;
1461 struct hdmi_spec_per_cvt *per_cvt = NULL;
1462 int err;
1463
1464 /* Validate hinfo */
Takashi Iwai4e76a882014-02-25 12:21:03 +01001465 pin_idx = hinfo_to_pin_index(codec, hinfo);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001466 if (snd_BUG_ON(pin_idx < 0))
1467 return -EINVAL;
1468 per_pin = get_pin(spec, pin_idx);
1469 eld = &per_pin->sink_eld;
1470
1471 err = hdmi_choose_cvt(codec, pin_idx, &cvt_idx, &mux_idx);
1472 if (err < 0)
1473 return err;
1474
1475 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001476 /* Claim converter */
1477 per_cvt->assigned = 1;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001478 per_pin->cvt_nid = per_cvt->cvt_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001479 hinfo->nid = per_cvt->cvt_nid;
1480
Takashi Iwaibddee962013-06-18 16:14:22 +02001481 snd_hda_codec_write_cache(codec, per_pin->pin_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -06001482 AC_VERB_SET_CONNECT_SEL,
1483 mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001484
1485 /* configure unused pins to choose other converters */
Libin Yangca2e7222014-08-19 16:20:12 +08001486 if (is_haswell_plus(codec) || is_valleyview_plus(codec))
Mengdong Lin300016b2013-11-04 01:13:13 -05001487 intel_not_share_assigned_cvt(codec, per_pin->pin_nid, mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001488
Stephen Warren384a48d2011-06-01 11:14:21 -06001489 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001490
Stephen Warren2def8172011-06-01 11:14:20 -06001491 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -06001492 hinfo->channels_min = per_cvt->channels_min;
1493 hinfo->channels_max = per_cvt->channels_max;
1494 hinfo->rates = per_cvt->rates;
1495 hinfo->formats = per_cvt->formats;
1496 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -06001497
Stephen Warren384a48d2011-06-01 11:14:21 -06001498 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -06001499 if (!static_hdmi_pcm && eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001500 snd_hdmi_eld_update_pcm_info(&eld->info, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001501 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001502 !hinfo->rates || !hinfo->formats) {
1503 per_cvt->assigned = 0;
1504 hinfo->nid = 0;
1505 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001506 return -ENODEV;
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001507 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001508 }
Stephen Warren2def8172011-06-01 11:14:20 -06001509
1510 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +01001511 runtime->hw.channels_min = hinfo->channels_min;
1512 runtime->hw.channels_max = hinfo->channels_max;
1513 runtime->hw.formats = hinfo->formats;
1514 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +01001515
1516 snd_pcm_hw_constraint_step(substream->runtime, 0,
1517 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001518 return 0;
1519}
1520
1521/*
Wu Fengguang079d88c2010-03-08 10:44:23 +08001522 * HDA/HDMI auto parsing
1523 */
Stephen Warren384a48d2011-06-01 11:14:21 -06001524static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001525{
1526 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001527 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001528 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001529
1530 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001531 codec_warn(codec,
1532 "HDMI: pin %d wcaps %#x does not support connection list\n",
Wu Fengguang079d88c2010-03-08 10:44:23 +08001533 pin_nid, get_wcaps(codec, pin_nid));
1534 return -EINVAL;
1535 }
1536
Stephen Warren384a48d2011-06-01 11:14:21 -06001537 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
1538 per_pin->mux_nids,
1539 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001540
1541 return 0;
1542}
1543
Takashi Iwaie90247f2015-11-13 09:12:12 +01001544/* update per_pin ELD from the given new ELD;
1545 * setup info frame and notification accordingly
1546 */
1547static void update_eld(struct hda_codec *codec,
1548 struct hdmi_spec_per_pin *per_pin,
1549 struct hdmi_eld *eld)
1550{
1551 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
1552 bool old_eld_valid = pin_eld->eld_valid;
1553 bool eld_changed;
1554
1555 if (eld->eld_valid)
1556 snd_hdmi_show_eld(codec, &eld->info);
1557
1558 eld_changed = (pin_eld->eld_valid != eld->eld_valid);
1559 if (eld->eld_valid && pin_eld->eld_valid)
1560 if (pin_eld->eld_size != eld->eld_size ||
1561 memcmp(pin_eld->eld_buffer, eld->eld_buffer,
1562 eld->eld_size) != 0)
1563 eld_changed = true;
1564
1565 pin_eld->eld_valid = eld->eld_valid;
1566 pin_eld->eld_size = eld->eld_size;
1567 if (eld->eld_valid)
1568 memcpy(pin_eld->eld_buffer, eld->eld_buffer, eld->eld_size);
1569 pin_eld->info = eld->info;
1570
1571 /*
1572 * Re-setup pin and infoframe. This is needed e.g. when
1573 * - sink is first plugged-in
1574 * - transcoder can change during stream playback on Haswell
1575 * and this can make HW reset converter selection on a pin.
1576 */
1577 if (eld->eld_valid && !old_eld_valid && per_pin->setup) {
1578 if (is_haswell_plus(codec) || is_valleyview_plus(codec)) {
1579 intel_verify_pin_cvt_connect(codec, per_pin);
1580 intel_not_share_assigned_cvt(codec, per_pin->pin_nid,
1581 per_pin->mux_idx);
1582 }
1583
1584 hdmi_setup_audio_infoframe(codec, per_pin, per_pin->non_pcm);
1585 }
1586
1587 if (eld_changed)
1588 snd_ctl_notify(codec->card,
1589 SNDRV_CTL_EVENT_MASK_VALUE |
1590 SNDRV_CTL_EVENT_MASK_INFO,
1591 &per_pin->eld_ctl->id);
1592}
1593
Takashi Iwai788d4412015-11-12 15:36:13 +01001594/* update ELD and jack state via HD-audio verbs */
1595static bool hdmi_present_sense_via_verbs(struct hdmi_spec_per_pin *per_pin,
1596 int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001597{
David Henningsson464837a2013-11-07 13:38:25 +01001598 struct hda_jack_tbl *jack;
Wu Fengguang744626d2011-11-16 16:29:47 +08001599 struct hda_codec *codec = per_pin->codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001600 struct hdmi_spec *spec = codec->spec;
1601 struct hdmi_eld *eld = &spec->temp_eld;
1602 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +08001603 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -06001604 /*
1605 * Always execute a GetPinSense verb here, even when called from
1606 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
1607 * response's PD bit is not the real PD value, but indicates that
1608 * the real PD value changed. An older version of the HD-audio
1609 * specification worked this way. Hence, we just ignore the data in
1610 * the unsolicited response to avoid custom WARs.
1611 */
David Henningssonda4a7a32013-12-18 10:46:04 +01001612 int present;
Takashi Iwaiefe47102013-11-07 13:38:23 +01001613 bool ret;
Takashi Iwai9a5e5232015-12-10 14:35:09 +01001614 bool do_repoll = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001615
Takashi Iwai664c7152015-04-08 11:43:14 +02001616 snd_hda_power_up_pm(codec);
David Henningssonda4a7a32013-12-18 10:46:04 +01001617 present = snd_hda_pin_sense(codec, pin_nid);
1618
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001619 mutex_lock(&per_pin->lock);
David Henningsson4bd038f2013-02-19 16:11:25 +01001620 pin_eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
1621 if (pin_eld->monitor_present)
1622 eld->eld_valid = !!(present & AC_PINSENSE_ELDV);
1623 else
1624 eld->eld_valid = false;
Stephen Warren5d44f922011-05-24 17:11:17 -06001625
Takashi Iwai4e76a882014-02-25 12:21:03 +01001626 codec_dbg(codec,
Stephen Warren384a48d2011-06-01 11:14:21 -06001627 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Mengdong Lin10250912013-03-28 05:21:28 -04001628 codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -06001629
David Henningsson4bd038f2013-02-19 16:11:25 +01001630 if (eld->eld_valid) {
Anssi Hannula307229d2013-10-24 21:10:34 +03001631 if (spec->ops.pin_get_eld(codec, pin_nid, eld->eld_buffer,
David Henningsson1613d6b2013-02-19 16:11:24 +01001632 &eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001633 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001634 else {
Takashi Iwai79514d42014-06-06 18:04:34 +02001635 if (snd_hdmi_parse_eld(codec, &eld->info, eld->eld_buffer,
David Henningsson1613d6b2013-02-19 16:11:24 +01001636 eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001637 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001638 }
Takashi Iwai9a5e5232015-12-10 14:35:09 +01001639 if (!eld->eld_valid && repoll)
1640 do_repoll = true;
Wu Fengguang744626d2011-11-16 16:29:47 +08001641 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001642
Takashi Iwai9a5e5232015-12-10 14:35:09 +01001643 if (do_repoll)
Takashi Iwaie90247f2015-11-13 09:12:12 +01001644 schedule_delayed_work(&per_pin->work, msecs_to_jiffies(300));
1645 else
1646 update_eld(codec, per_pin, eld);
Anssi Hannula6acce402014-10-19 19:25:19 +03001647
Takashi Iwaiaff747eb2013-11-07 16:39:37 +01001648 ret = !repoll || !pin_eld->monitor_present || pin_eld->eld_valid;
David Henningsson464837a2013-11-07 13:38:25 +01001649
1650 jack = snd_hda_jack_tbl_get(codec, pin_nid);
1651 if (jack)
1652 jack->block_report = !ret;
1653
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001654 mutex_unlock(&per_pin->lock);
Takashi Iwai664c7152015-04-08 11:43:14 +02001655 snd_hda_power_down_pm(codec);
Takashi Iwaiefe47102013-11-07 13:38:23 +01001656 return ret;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001657}
1658
Takashi Iwai788d4412015-11-12 15:36:13 +01001659/* update ELD and jack state via audio component */
1660static void sync_eld_via_acomp(struct hda_codec *codec,
1661 struct hdmi_spec_per_pin *per_pin)
1662{
Takashi Iwai788d4412015-11-12 15:36:13 +01001663 struct hdmi_spec *spec = codec->spec;
1664 struct hdmi_eld *eld = &spec->temp_eld;
1665 int size;
1666
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01001667 mutex_lock(&per_pin->lock);
1668 size = snd_hdac_acomp_get_eld(&codec->bus->core, per_pin->pin_nid,
1669 &eld->monitor_present, eld->eld_buffer,
1670 ELD_MAX_SIZE);
1671 if (size < 0)
1672 goto unlock;
1673 if (size > 0) {
1674 size = min(size, ELD_MAX_SIZE);
1675 if (snd_hdmi_parse_eld(codec, &eld->info,
1676 eld->eld_buffer, size) < 0)
1677 size = -EINVAL;
Takashi Iwai788d4412015-11-12 15:36:13 +01001678 }
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01001679
1680 if (size > 0) {
1681 eld->eld_valid = true;
1682 eld->eld_size = size;
1683 } else {
1684 eld->eld_valid = false;
1685 eld->eld_size = 0;
1686 }
1687
1688 update_eld(codec, per_pin, eld);
1689 snd_jack_report(per_pin->acomp_jack,
1690 eld->monitor_present ? SND_JACK_AVOUT : 0);
1691 unlock:
1692 mutex_unlock(&per_pin->lock);
Takashi Iwai788d4412015-11-12 15:36:13 +01001693}
1694
1695static bool hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
1696{
1697 struct hda_codec *codec = per_pin->codec;
1698
1699 if (codec_has_acomp(codec)) {
1700 sync_eld_via_acomp(codec, per_pin);
1701 return false; /* don't call snd_hda_jack_report_sync() */
1702 } else {
1703 return hdmi_present_sense_via_verbs(per_pin, repoll);
1704 }
1705}
1706
Wu Fengguang744626d2011-11-16 16:29:47 +08001707static void hdmi_repoll_eld(struct work_struct *work)
1708{
1709 struct hdmi_spec_per_pin *per_pin =
1710 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1711
Wu Fengguangc6e84532011-11-18 16:59:32 -06001712 if (per_pin->repoll_count++ > 6)
1713 per_pin->repoll_count = 0;
1714
Takashi Iwaiefe47102013-11-07 13:38:23 +01001715 if (hdmi_present_sense(per_pin, per_pin->repoll_count))
1716 snd_hda_jack_report_sync(per_pin->codec);
Wu Fengguang744626d2011-11-16 16:29:47 +08001717}
1718
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001719static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
1720 hda_nid_t nid);
1721
Wu Fengguang079d88c2010-03-08 10:44:23 +08001722static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1723{
1724 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001725 unsigned int caps, config;
1726 int pin_idx;
1727 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001728 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001729
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001730 caps = snd_hda_query_pin_caps(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001731 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1732 return 0;
1733
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001734 config = snd_hda_codec_get_pincfg(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001735 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1736 return 0;
1737
Mengdong Lin75dcbe42014-01-08 15:55:32 -05001738 if (is_haswell_plus(codec))
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001739 intel_haswell_fixup_connect_list(codec, pin_nid);
1740
Stephen Warren384a48d2011-06-01 11:14:21 -06001741 pin_idx = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001742 per_pin = snd_array_new(&spec->pins);
1743 if (!per_pin)
1744 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001745
1746 per_pin->pin_nid = pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001747 per_pin->non_pcm = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001748
Stephen Warren384a48d2011-06-01 11:14:21 -06001749 err = hdmi_read_pin_conn(codec, pin_idx);
1750 if (err < 0)
1751 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001752
Wu Fengguang079d88c2010-03-08 10:44:23 +08001753 spec->num_pins++;
1754
Stephen Warren384a48d2011-06-01 11:14:21 -06001755 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001756}
1757
Stephen Warren384a48d2011-06-01 11:14:21 -06001758static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001759{
1760 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001761 struct hdmi_spec_per_cvt *per_cvt;
1762 unsigned int chans;
1763 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001764
Stephen Warren384a48d2011-06-01 11:14:21 -06001765 chans = get_wcaps(codec, cvt_nid);
1766 chans = get_wcaps_channels(chans);
1767
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001768 per_cvt = snd_array_new(&spec->cvts);
1769 if (!per_cvt)
1770 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001771
1772 per_cvt->cvt_nid = cvt_nid;
1773 per_cvt->channels_min = 2;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001774 if (chans <= 16) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001775 per_cvt->channels_max = chans;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001776 if (chans > spec->channels_max)
1777 spec->channels_max = chans;
1778 }
Stephen Warren384a48d2011-06-01 11:14:21 -06001779
1780 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1781 &per_cvt->rates,
1782 &per_cvt->formats,
1783 &per_cvt->maxbps);
1784 if (err < 0)
1785 return err;
1786
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001787 if (spec->num_cvts < ARRAY_SIZE(spec->cvt_nids))
1788 spec->cvt_nids[spec->num_cvts] = cvt_nid;
1789 spec->num_cvts++;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001790
1791 return 0;
1792}
1793
1794static int hdmi_parse_codec(struct hda_codec *codec)
1795{
1796 hda_nid_t nid;
1797 int i, nodes;
1798
Takashi Iwai7639a062015-03-03 10:07:24 +01001799 nodes = snd_hda_get_sub_nodes(codec, codec->core.afg, &nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001800 if (!nid || nodes < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001801 codec_warn(codec, "HDMI: failed to get afg sub nodes\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +08001802 return -EINVAL;
1803 }
1804
1805 for (i = 0; i < nodes; i++, nid++) {
1806 unsigned int caps;
1807 unsigned int type;
1808
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001809 caps = get_wcaps(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001810 type = get_wcaps_type(caps);
1811
1812 if (!(caps & AC_WCAP_DIGITAL))
1813 continue;
1814
1815 switch (type) {
1816 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001817 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001818 break;
1819 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001820 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001821 break;
1822 }
1823 }
1824
Wu Fengguang079d88c2010-03-08 10:44:23 +08001825 return 0;
1826}
1827
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001828/*
1829 */
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001830static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
1831{
1832 struct hda_spdif_out *spdif;
1833 bool non_pcm;
1834
1835 mutex_lock(&codec->spdif_mutex);
1836 spdif = snd_hda_spdif_out_of_nid(codec, cvt_nid);
1837 non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO);
1838 mutex_unlock(&codec->spdif_mutex);
1839 return non_pcm;
1840}
1841
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001842/*
1843 * HDMI callbacks
1844 */
1845
1846static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1847 struct hda_codec *codec,
1848 unsigned int stream_tag,
1849 unsigned int format,
1850 struct snd_pcm_substream *substream)
1851{
Stephen Warren384a48d2011-06-01 11:14:21 -06001852 hda_nid_t cvt_nid = hinfo->nid;
1853 struct hdmi_spec *spec = codec->spec;
Takashi Iwai4e76a882014-02-25 12:21:03 +01001854 int pin_idx = hinfo_to_pin_index(codec, hinfo);
Takashi Iwaib0540872013-09-02 12:33:02 +02001855 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
1856 hda_nid_t pin_nid = per_pin->pin_nid;
Libin Yangddd621f2015-09-02 14:11:40 +08001857 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001858 bool non_pcm;
Stephen Warren75fae112014-01-30 11:52:16 -07001859 int pinctl;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001860
Libin Yangca2e7222014-08-19 16:20:12 +08001861 if (is_haswell_plus(codec) || is_valleyview_plus(codec)) {
Mengdong Lin2df67422014-03-20 13:01:06 +08001862 /* Verify pin:cvt selections to avoid silent audio after S3.
1863 * After S3, the audio driver restores pin:cvt selections
1864 * but this can happen before gfx is ready and such selection
1865 * is overlooked by HW. Thus multiple pins can share a same
1866 * default convertor and mute control will affect each other,
1867 * which can cause a resumed audio playback become silent
1868 * after S3.
1869 */
1870 intel_verify_pin_cvt_connect(codec, per_pin);
1871 intel_not_share_assigned_cvt(codec, pin_nid, per_pin->mux_idx);
1872 }
1873
Libin Yangddd621f2015-09-02 14:11:40 +08001874 /* Call sync_audio_rate to set the N/CTS/M manually if necessary */
1875 /* Todo: add DP1.2 MST audio support later */
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01001876 snd_hdac_sync_audio_rate(&codec->bus->core, pin_nid, runtime->rate);
Libin Yangddd621f2015-09-02 14:11:40 +08001877
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001878 non_pcm = check_non_pcm_per_cvt(codec, cvt_nid);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001879 mutex_lock(&per_pin->lock);
Takashi Iwaib0540872013-09-02 12:33:02 +02001880 per_pin->channels = substream->runtime->channels;
1881 per_pin->setup = true;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001882
Takashi Iwaib0540872013-09-02 12:33:02 +02001883 hdmi_setup_audio_infoframe(codec, per_pin, non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001884 mutex_unlock(&per_pin->lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06001885
Stephen Warren75fae112014-01-30 11:52:16 -07001886 if (spec->dyn_pin_out) {
1887 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
1888 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1889 snd_hda_codec_write(codec, pin_nid, 0,
1890 AC_VERB_SET_PIN_WIDGET_CONTROL,
1891 pinctl | PIN_OUT);
1892 }
1893
Anssi Hannula307229d2013-10-24 21:10:34 +03001894 return spec->ops.setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001895}
1896
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001897static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1898 struct hda_codec *codec,
1899 struct snd_pcm_substream *substream)
1900{
1901 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
1902 return 0;
1903}
1904
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001905static int hdmi_pcm_close(struct hda_pcm_stream *hinfo,
1906 struct hda_codec *codec,
1907 struct snd_pcm_substream *substream)
Stephen Warren384a48d2011-06-01 11:14:21 -06001908{
1909 struct hdmi_spec *spec = codec->spec;
1910 int cvt_idx, pin_idx;
1911 struct hdmi_spec_per_cvt *per_cvt;
1912 struct hdmi_spec_per_pin *per_pin;
Stephen Warren75fae112014-01-30 11:52:16 -07001913 int pinctl;
Stephen Warren384a48d2011-06-01 11:14:21 -06001914
Stephen Warren384a48d2011-06-01 11:14:21 -06001915 if (hinfo->nid) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001916 cvt_idx = cvt_nid_to_cvt_index(codec, hinfo->nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001917 if (snd_BUG_ON(cvt_idx < 0))
1918 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001919 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001920
1921 snd_BUG_ON(!per_cvt->assigned);
1922 per_cvt->assigned = 0;
1923 hinfo->nid = 0;
1924
Takashi Iwai4e76a882014-02-25 12:21:03 +01001925 pin_idx = hinfo_to_pin_index(codec, hinfo);
Stephen Warren384a48d2011-06-01 11:14:21 -06001926 if (snd_BUG_ON(pin_idx < 0))
1927 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001928 per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001929
Stephen Warren75fae112014-01-30 11:52:16 -07001930 if (spec->dyn_pin_out) {
1931 pinctl = snd_hda_codec_read(codec, per_pin->pin_nid, 0,
1932 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1933 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
1934 AC_VERB_SET_PIN_WIDGET_CONTROL,
1935 pinctl & ~PIN_OUT);
1936 }
1937
Stephen Warren384a48d2011-06-01 11:14:21 -06001938 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaicbbaa602013-10-17 18:03:24 +02001939
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001940 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001941 per_pin->chmap_set = false;
1942 memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
Takashi Iwaib0540872013-09-02 12:33:02 +02001943
1944 per_pin->setup = false;
1945 per_pin->channels = 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001946 mutex_unlock(&per_pin->lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06001947 }
Takashi Iwaid45e6882012-07-31 11:36:00 +02001948
Stephen Warren384a48d2011-06-01 11:14:21 -06001949 return 0;
1950}
1951
1952static const struct hda_pcm_ops generic_ops = {
1953 .open = hdmi_pcm_open,
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001954 .close = hdmi_pcm_close,
Stephen Warren384a48d2011-06-01 11:14:21 -06001955 .prepare = generic_hdmi_playback_pcm_prepare,
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001956 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001957};
1958
Takashi Iwaid45e6882012-07-31 11:36:00 +02001959/*
1960 * ALSA API channel-map control callbacks
1961 */
1962static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
1963 struct snd_ctl_elem_info *uinfo)
1964{
1965 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1966 struct hda_codec *codec = info->private_data;
1967 struct hdmi_spec *spec = codec->spec;
1968 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1969 uinfo->count = spec->channels_max;
1970 uinfo->value.integer.min = 0;
1971 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
1972 return 0;
1973}
1974
Anssi Hannula307229d2013-10-24 21:10:34 +03001975static int hdmi_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
1976 int channels)
1977{
1978 /* If the speaker allocation matches the channel count, it is OK.*/
1979 if (cap->channels != channels)
1980 return -1;
1981
1982 /* all channels are remappable freely */
1983 return SNDRV_CTL_TLVT_CHMAP_VAR;
1984}
1985
1986static void hdmi_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
1987 unsigned int *chmap, int channels)
1988{
1989 int count = 0;
1990 int c;
1991
1992 for (c = 7; c >= 0; c--) {
1993 int spk = cap->speakers[c];
1994 if (!spk)
1995 continue;
1996
1997 chmap[count++] = spk_to_chmap(spk);
1998 }
1999
2000 WARN_ON(count != channels);
2001}
2002
Takashi Iwaid45e6882012-07-31 11:36:00 +02002003static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2004 unsigned int size, unsigned int __user *tlv)
2005{
2006 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2007 struct hda_codec *codec = info->private_data;
2008 struct hdmi_spec *spec = codec->spec;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002009 unsigned int __user *dst;
2010 int chs, count = 0;
2011
2012 if (size < 8)
2013 return -ENOMEM;
2014 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
2015 return -EFAULT;
2016 size -= 8;
2017 dst = tlv + 2;
Takashi Iwai498dab32012-09-10 16:08:40 +02002018 for (chs = 2; chs <= spec->channels_max; chs++) {
Anssi Hannula307229d2013-10-24 21:10:34 +03002019 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002020 struct cea_channel_speaker_allocation *cap;
2021 cap = channel_allocations;
2022 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
2023 int chs_bytes = chs * 4;
Anssi Hannula307229d2013-10-24 21:10:34 +03002024 int type = spec->ops.chmap_cea_alloc_validate_get_type(cap, chs);
2025 unsigned int tlv_chmap[8];
2026
2027 if (type < 0)
Takashi Iwaid45e6882012-07-31 11:36:00 +02002028 continue;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002029 if (size < 8)
2030 return -ENOMEM;
Anssi Hannula307229d2013-10-24 21:10:34 +03002031 if (put_user(type, dst) ||
Takashi Iwaid45e6882012-07-31 11:36:00 +02002032 put_user(chs_bytes, dst + 1))
2033 return -EFAULT;
2034 dst += 2;
2035 size -= 8;
2036 count += 8;
2037 if (size < chs_bytes)
2038 return -ENOMEM;
2039 size -= chs_bytes;
2040 count += chs_bytes;
Anssi Hannula307229d2013-10-24 21:10:34 +03002041 spec->ops.cea_alloc_to_tlv_chmap(cap, tlv_chmap, chs);
2042 if (copy_to_user(dst, tlv_chmap, chs_bytes))
2043 return -EFAULT;
2044 dst += chs;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002045 }
2046 }
2047 if (put_user(count, tlv + 1))
2048 return -EFAULT;
2049 return 0;
2050}
2051
2052static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
2053 struct snd_ctl_elem_value *ucontrol)
2054{
2055 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2056 struct hda_codec *codec = info->private_data;
2057 struct hdmi_spec *spec = codec->spec;
2058 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002059 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002060 int i;
2061
2062 for (i = 0; i < ARRAY_SIZE(per_pin->chmap); i++)
2063 ucontrol->value.integer.value[i] = per_pin->chmap[i];
2064 return 0;
2065}
2066
2067static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
2068 struct snd_ctl_elem_value *ucontrol)
2069{
2070 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2071 struct hda_codec *codec = info->private_data;
2072 struct hdmi_spec *spec = codec->spec;
2073 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002074 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002075 unsigned int ctl_idx;
2076 struct snd_pcm_substream *substream;
2077 unsigned char chmap[8];
Anssi Hannula307229d2013-10-24 21:10:34 +03002078 int i, err, ca, prepared = 0;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002079
2080 ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2081 substream = snd_pcm_chmap_substream(info, ctl_idx);
2082 if (!substream || !substream->runtime)
Takashi Iwai6f54c362013-01-15 14:44:41 +01002083 return 0; /* just for avoiding error from alsactl restore */
Takashi Iwaid45e6882012-07-31 11:36:00 +02002084 switch (substream->runtime->status->state) {
2085 case SNDRV_PCM_STATE_OPEN:
2086 case SNDRV_PCM_STATE_SETUP:
2087 break;
2088 case SNDRV_PCM_STATE_PREPARED:
2089 prepared = 1;
2090 break;
2091 default:
2092 return -EBUSY;
2093 }
2094 memset(chmap, 0, sizeof(chmap));
2095 for (i = 0; i < ARRAY_SIZE(chmap); i++)
2096 chmap[i] = ucontrol->value.integer.value[i];
2097 if (!memcmp(chmap, per_pin->chmap, sizeof(chmap)))
2098 return 0;
2099 ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
2100 if (ca < 0)
2101 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03002102 if (spec->ops.chmap_validate) {
2103 err = spec->ops.chmap_validate(ca, ARRAY_SIZE(chmap), chmap);
2104 if (err)
2105 return err;
2106 }
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002107 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002108 per_pin->chmap_set = true;
2109 memcpy(per_pin->chmap, chmap, sizeof(chmap));
2110 if (prepared)
Takashi Iwaib0540872013-09-02 12:33:02 +02002111 hdmi_setup_audio_infoframe(codec, per_pin, per_pin->non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002112 mutex_unlock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002113
2114 return 0;
2115}
2116
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002117static int generic_hdmi_build_pcms(struct hda_codec *codec)
2118{
2119 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002120 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002121
Stephen Warren384a48d2011-06-01 11:14:21 -06002122 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2123 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002124 struct hda_pcm_stream *pstr;
2125
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002126 info = snd_hda_codec_pcm_new(codec, "HDMI %d", pin_idx);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002127 if (!info)
2128 return -ENOMEM;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002129 spec->pcm_rec[pin_idx] = info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002130 info->pcm_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002131 info->own_chmap = true;
Stephen Warren384a48d2011-06-01 11:14:21 -06002132
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002133 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06002134 pstr->substreams = 1;
2135 pstr->ops = generic_ops;
2136 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002137 }
2138
2139 return 0;
2140}
2141
Takashi Iwai788d4412015-11-12 15:36:13 +01002142static void free_acomp_jack_priv(struct snd_jack *jack)
2143{
2144 struct hdmi_spec_per_pin *per_pin = jack->private_data;
2145
2146 per_pin->acomp_jack = NULL;
2147}
2148
2149static int add_acomp_jack_kctl(struct hda_codec *codec,
2150 struct hdmi_spec_per_pin *per_pin,
2151 const char *name)
2152{
2153 struct snd_jack *jack;
2154 int err;
2155
2156 err = snd_jack_new(codec->card, name, SND_JACK_AVOUT, &jack,
2157 true, false);
2158 if (err < 0)
2159 return err;
2160 per_pin->acomp_jack = jack;
2161 jack->private_data = per_pin;
2162 jack->private_free = free_acomp_jack_priv;
2163 return 0;
2164}
2165
David Henningsson0b6c49b2011-08-23 16:56:03 +02002166static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
2167{
Takashi Iwai31ef2252011-12-01 17:41:36 +01002168 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02002169 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002170 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
2171 int pcmdev = get_pcm_rec(spec, pin_idx)->device;
Takashi Iwai909cadc2015-11-12 11:52:13 +01002172 bool phantom_jack;
David Henningsson0b6c49b2011-08-23 16:56:03 +02002173
Takashi Iwai31ef2252011-12-01 17:41:36 +01002174 if (pcmdev > 0)
2175 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
Takashi Iwai788d4412015-11-12 15:36:13 +01002176 if (codec_has_acomp(codec))
2177 return add_acomp_jack_kctl(codec, per_pin, hdmi_str);
Takashi Iwai909cadc2015-11-12 11:52:13 +01002178 phantom_jack = !is_jack_detectable(codec, per_pin->pin_nid);
2179 if (phantom_jack)
David Henningsson30efd8d2013-02-22 10:16:28 +01002180 strncat(hdmi_str, " Phantom",
2181 sizeof(hdmi_str) - strlen(hdmi_str) - 1);
David Henningsson0b6c49b2011-08-23 16:56:03 +02002182
Takashi Iwai909cadc2015-11-12 11:52:13 +01002183 return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str,
2184 phantom_jack);
David Henningsson0b6c49b2011-08-23 16:56:03 +02002185}
2186
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002187static int generic_hdmi_build_controls(struct hda_codec *codec)
2188{
2189 struct hdmi_spec *spec = codec->spec;
2190 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06002191 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002192
Stephen Warren384a48d2011-06-01 11:14:21 -06002193 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002194 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
David Henningsson0b6c49b2011-08-23 16:56:03 +02002195
2196 err = generic_hdmi_build_jack(codec, pin_idx);
2197 if (err < 0)
2198 return err;
2199
Takashi Iwaidcda5802012-10-12 17:24:51 +02002200 err = snd_hda_create_dig_out_ctls(codec,
2201 per_pin->pin_nid,
2202 per_pin->mux_nids[0],
2203 HDA_PCM_TYPE_HDMI);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002204 if (err < 0)
2205 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06002206 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002207
2208 /* add control for ELD Bytes */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002209 err = hdmi_create_eld_ctl(codec, pin_idx,
2210 get_pcm_rec(spec, pin_idx)->device);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002211
2212 if (err < 0)
2213 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01002214
Takashi Iwai82b1d732011-12-20 15:53:07 +01002215 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002216 }
2217
Takashi Iwaid45e6882012-07-31 11:36:00 +02002218 /* add channel maps */
2219 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002220 struct hda_pcm *pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002221 struct snd_pcm_chmap *chmap;
2222 struct snd_kcontrol *kctl;
2223 int i;
Takashi Iwai2ca320e2013-08-22 09:55:36 +02002224
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002225 pcm = spec->pcm_rec[pin_idx];
2226 if (!pcm || !pcm->pcm)
Takashi Iwai2ca320e2013-08-22 09:55:36 +02002227 break;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002228 err = snd_pcm_add_chmap_ctls(pcm->pcm,
Takashi Iwaid45e6882012-07-31 11:36:00 +02002229 SNDRV_PCM_STREAM_PLAYBACK,
2230 NULL, 0, pin_idx, &chmap);
2231 if (err < 0)
2232 return err;
2233 /* override handlers */
2234 chmap->private_data = codec;
2235 kctl = chmap->kctl;
2236 for (i = 0; i < kctl->count; i++)
2237 kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
2238 kctl->info = hdmi_chmap_ctl_info;
2239 kctl->get = hdmi_chmap_ctl_get;
2240 kctl->put = hdmi_chmap_ctl_put;
2241 kctl->tlv.c = hdmi_chmap_ctl_tlv;
2242 }
2243
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002244 return 0;
2245}
2246
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002247static int generic_hdmi_init_per_pins(struct hda_codec *codec)
2248{
2249 struct hdmi_spec *spec = codec->spec;
2250 int pin_idx;
2251
2252 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002253 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002254
2255 per_pin->codec = codec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002256 mutex_init(&per_pin->lock);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002257 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002258 eld_proc_new(per_pin, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002259 }
2260 return 0;
2261}
2262
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002263static int generic_hdmi_init(struct hda_codec *codec)
2264{
2265 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002266 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002267
Stephen Warren384a48d2011-06-01 11:14:21 -06002268 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002269 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002270 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06002271
2272 hdmi_init_pin(codec, pin_nid);
Takashi Iwai788d4412015-11-12 15:36:13 +01002273 if (!codec_has_acomp(codec))
2274 snd_hda_jack_detect_enable_callback(codec, pin_nid,
2275 codec->jackpoll_interval > 0 ?
2276 jack_callback : NULL);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002277 }
2278 return 0;
2279}
2280
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002281static void hdmi_array_init(struct hdmi_spec *spec, int nums)
2282{
2283 snd_array_init(&spec->pins, sizeof(struct hdmi_spec_per_pin), nums);
2284 snd_array_init(&spec->cvts, sizeof(struct hdmi_spec_per_cvt), nums);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002285}
2286
2287static void hdmi_array_free(struct hdmi_spec *spec)
2288{
2289 snd_array_free(&spec->pins);
2290 snd_array_free(&spec->cvts);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002291}
2292
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002293static void generic_hdmi_free(struct hda_codec *codec)
2294{
2295 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002296 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002297
Takashi Iwai66032492015-12-01 16:49:35 +01002298 if (codec_has_acomp(codec))
David Henningsson25adc132015-08-19 10:48:58 +02002299 snd_hdac_i915_register_notifier(NULL);
2300
Stephen Warren384a48d2011-06-01 11:14:21 -06002301 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002302 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002303
Takashi Iwai2f35c632015-02-27 22:43:26 +01002304 cancel_delayed_work_sync(&per_pin->work);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002305 eld_proc_free(per_pin);
Takashi Iwai788d4412015-11-12 15:36:13 +01002306 if (per_pin->acomp_jack)
2307 snd_device_free(codec->card, per_pin->acomp_jack);
Stephen Warren384a48d2011-06-01 11:14:21 -06002308 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002309
Takashi Iwai55913112015-12-10 13:03:29 +01002310 if (spec->i915_bound)
2311 snd_hdac_i915_exit(&codec->bus->core);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002312 hdmi_array_free(spec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002313 kfree(spec);
2314}
2315
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002316#ifdef CONFIG_PM
2317static int generic_hdmi_resume(struct hda_codec *codec)
2318{
2319 struct hdmi_spec *spec = codec->spec;
2320 int pin_idx;
2321
Pierre Ossmana2833682014-06-18 21:48:09 +02002322 codec->patch_ops.init(codec);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002323 regcache_sync(codec->core.regmap);
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002324
2325 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2326 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
2327 hdmi_present_sense(per_pin, 1);
2328 }
2329 return 0;
2330}
2331#endif
2332
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002333static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002334 .init = generic_hdmi_init,
2335 .free = generic_hdmi_free,
2336 .build_pcms = generic_hdmi_build_pcms,
2337 .build_controls = generic_hdmi_build_controls,
2338 .unsol_event = hdmi_unsol_event,
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002339#ifdef CONFIG_PM
2340 .resume = generic_hdmi_resume,
2341#endif
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002342};
2343
Anssi Hannula307229d2013-10-24 21:10:34 +03002344static const struct hdmi_ops generic_standard_hdmi_ops = {
2345 .pin_get_eld = snd_hdmi_get_eld,
2346 .pin_get_slot_channel = hdmi_pin_get_slot_channel,
2347 .pin_set_slot_channel = hdmi_pin_set_slot_channel,
2348 .pin_setup_infoframe = hdmi_pin_setup_infoframe,
2349 .pin_hbr_setup = hdmi_pin_hbr_setup,
2350 .setup_stream = hdmi_setup_stream,
2351 .chmap_cea_alloc_validate_get_type = hdmi_chmap_cea_alloc_validate_get_type,
2352 .cea_alloc_to_tlv_chmap = hdmi_cea_alloc_to_tlv_chmap,
2353};
2354
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002355
2356static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
2357 hda_nid_t nid)
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002358{
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002359 struct hdmi_spec *spec = codec->spec;
2360 hda_nid_t conns[4];
2361 int nconns;
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002362
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002363 nconns = snd_hda_get_connections(codec, nid, conns, ARRAY_SIZE(conns));
2364 if (nconns == spec->num_cvts &&
2365 !memcmp(conns, spec->cvt_nids, spec->num_cvts * sizeof(hda_nid_t)))
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002366 return;
2367
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002368 /* override pins connection list */
Takashi Iwai4e76a882014-02-25 12:21:03 +01002369 codec_dbg(codec, "hdmi: haswell: override pin connection 0x%x\n", nid);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002370 snd_hda_override_conn_list(codec, nid, spec->num_cvts, spec->cvt_nids);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002371}
2372
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002373#define INTEL_VENDOR_NID 0x08
2374#define INTEL_GET_VENDOR_VERB 0xf81
2375#define INTEL_SET_VENDOR_VERB 0x781
2376#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
2377#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
2378
2379static void intel_haswell_enable_all_pins(struct hda_codec *codec,
Takashi Iwai17df3f52013-05-08 08:09:34 +02002380 bool update_tree)
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002381{
2382 unsigned int vendor_param;
2383
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002384 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2385 INTEL_GET_VENDOR_VERB, 0);
2386 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
2387 return;
2388
2389 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
2390 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2391 INTEL_SET_VENDOR_VERB, vendor_param);
2392 if (vendor_param == -1)
2393 return;
2394
Takashi Iwai17df3f52013-05-08 08:09:34 +02002395 if (update_tree)
2396 snd_hda_codec_update_widgets(codec);
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002397}
2398
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002399static void intel_haswell_fixup_enable_dp12(struct hda_codec *codec)
2400{
2401 unsigned int vendor_param;
2402
2403 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2404 INTEL_GET_VENDOR_VERB, 0);
2405 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
2406 return;
2407
2408 /* enable DP1.2 mode */
2409 vendor_param |= INTEL_EN_DP12;
Takashi Iwaia551d912015-02-26 12:34:49 +01002410 snd_hdac_regmap_add_vendor_verb(&codec->core, INTEL_SET_VENDOR_VERB);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002411 snd_hda_codec_write_cache(codec, INTEL_VENDOR_NID, 0,
2412 INTEL_SET_VENDOR_VERB, vendor_param);
2413}
2414
Takashi Iwai17df3f52013-05-08 08:09:34 +02002415/* Haswell needs to re-issue the vendor-specific verbs before turning to D0.
2416 * Otherwise you may get severe h/w communication errors.
2417 */
2418static void haswell_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2419 unsigned int power_state)
2420{
2421 if (power_state == AC_PWRST_D0) {
2422 intel_haswell_enable_all_pins(codec, false);
2423 intel_haswell_fixup_enable_dp12(codec);
2424 }
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002425
Takashi Iwai17df3f52013-05-08 08:09:34 +02002426 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, power_state);
2427 snd_hda_codec_set_power_to_all(codec, fg, power_state);
2428}
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002429
David Henningssonf0675d42015-09-03 11:51:34 +02002430static void intel_pin_eld_notify(void *audio_ptr, int port)
David Henningsson25adc132015-08-19 10:48:58 +02002431{
2432 struct hda_codec *codec = audio_ptr;
2433 int pin_nid = port + 0x04;
2434
Takashi Iwai4f8e4f32016-03-10 12:02:49 +01002435 /* we assume only from port-B to port-D */
2436 if (port < 1 || port > 3)
2437 return;
2438
Takashi Iwai8ae743e2015-11-27 14:23:00 +01002439 /* skip notification during system suspend (but not in runtime PM);
2440 * the state will be updated at resume
2441 */
2442 if (snd_power_get_state(codec->card) != SNDRV_CTL_POWER_D0)
2443 return;
Takashi Iwaieb399d32015-11-27 14:53:35 +01002444 /* ditto during suspend/resume process itself */
2445 if (atomic_read(&(codec)->core.in_pm))
2446 return;
Takashi Iwai8ae743e2015-11-27 14:23:00 +01002447
David Henningsson25adc132015-08-19 10:48:58 +02002448 check_presence_and_report(codec, pin_nid);
2449}
2450
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002451static int patch_generic_hdmi(struct hda_codec *codec)
2452{
2453 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002454
2455 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2456 if (spec == NULL)
2457 return -ENOMEM;
2458
Anssi Hannula307229d2013-10-24 21:10:34 +03002459 spec->ops = generic_standard_hdmi_ops;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002460 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002461 hdmi_array_init(spec, 4);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002462
Takashi Iwai55913112015-12-10 13:03:29 +01002463 /* Try to bind with i915 for any Intel codecs (if not done yet) */
2464 if (!codec_has_acomp(codec) &&
2465 (codec->core.vendor_id >> 16) == 0x8086)
2466 if (!snd_hdac_i915_init(&codec->bus->core))
2467 spec->i915_bound = true;
2468
Mengdong Lin75dcbe42014-01-08 15:55:32 -05002469 if (is_haswell_plus(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002470 intel_haswell_enable_all_pins(codec, true);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002471 intel_haswell_fixup_enable_dp12(codec);
Takashi Iwai17df3f52013-05-08 08:09:34 +02002472 }
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002473
Mengdong Lin2bd1f73f2015-04-29 17:43:43 +08002474 /* For Valleyview/Cherryview, only the display codec is in the display
2475 * power well and can use link_power ops to request/release the power.
2476 * For Haswell/Broadwell, the controller is also in the power well and
2477 * can cover the codec power request, and so need not set this flag.
2478 * For previous platforms, there is no such power well feature.
2479 */
Lu, Hanff9d8852015-11-19 23:25:13 +08002480 if (is_valleyview_plus(codec) || is_skylake(codec) ||
2481 is_broxton(codec))
Mengdong Lin2bd1f73f2015-04-29 17:43:43 +08002482 codec->core.link_power_control = 1;
2483
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002484 if (hdmi_parse_codec(codec) < 0) {
Takashi Iwai55913112015-12-10 13:03:29 +01002485 if (spec->i915_bound)
2486 snd_hdac_i915_exit(&codec->bus->core);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002487 codec->spec = NULL;
2488 kfree(spec);
2489 return -EINVAL;
2490 }
2491 codec->patch_ops = generic_hdmi_patch_ops;
Mengdong Lin75dcbe42014-01-08 15:55:32 -05002492 if (is_haswell_plus(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002493 codec->patch_ops.set_power_state = haswell_set_power_state;
Mengdong Lin5dc989b2013-08-26 21:35:41 -04002494 codec->dp_mst = true;
2495 }
Takashi Iwai17df3f52013-05-08 08:09:34 +02002496
Lu, Han2377c3c2015-06-09 16:50:38 +08002497 /* Enable runtime pm for HDMI audio codec of HSW/BDW/SKL/BYT/BSW */
2498 if (is_haswell_plus(codec) || is_valleyview_plus(codec))
2499 codec->auto_runtime_pm = 1;
2500
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002501 generic_hdmi_init_per_pins(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002502
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002503 init_channel_allocations();
2504
Libin Yang790b4152016-03-04 14:33:43 +08002505 if (codec_has_acomp(codec)) {
2506 codec->depop_delay = 0;
2507 spec->i915_audio_ops.audio_ptr = codec;
2508 /* intel_audio_codec_enable() or intel_audio_codec_disable()
2509 * will call pin_eld_notify with using audio_ptr pointer
2510 * We need make sure audio_ptr is really setup
2511 */
2512 wmb();
2513 spec->i915_audio_ops.pin_eld_notify = intel_pin_eld_notify;
2514 snd_hdac_i915_register_notifier(&spec->i915_audio_ops);
2515 }
2516
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002517 return 0;
2518}
2519
2520/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06002521 * Shared non-generic implementations
2522 */
2523
2524static int simple_playback_build_pcms(struct hda_codec *codec)
2525{
2526 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002527 struct hda_pcm *info;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002528 unsigned int chans;
2529 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002530 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002531
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002532 per_cvt = get_cvt(spec, 0);
2533 chans = get_wcaps(codec, per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002534 chans = get_wcaps_channels(chans);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002535
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002536 info = snd_hda_codec_pcm_new(codec, "HDMI 0");
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002537 if (!info)
2538 return -ENOMEM;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002539 spec->pcm_rec[0] = info;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002540 info->pcm_type = HDA_PCM_TYPE_HDMI;
2541 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
2542 *pstr = spec->pcm_playback;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002543 pstr->nid = per_cvt->cvt_nid;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002544 if (pstr->channels_max <= 2 && chans && chans <= 16)
2545 pstr->channels_max = chans;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002546
2547 return 0;
2548}
2549
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002550/* unsolicited event for jack sensing */
2551static void simple_hdmi_unsol_event(struct hda_codec *codec,
2552 unsigned int res)
2553{
Takashi Iwai9dd8cf12012-06-21 10:43:15 +02002554 snd_hda_jack_set_dirty_all(codec);
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002555 snd_hda_jack_report_sync(codec);
2556}
2557
2558/* generic_hdmi_build_jack can be used for simple_hdmi, too,
2559 * as long as spec->pins[] is set correctly
2560 */
2561#define simple_hdmi_build_jack generic_hdmi_build_jack
2562
Stephen Warren3aaf8982011-06-01 11:14:19 -06002563static int simple_playback_build_controls(struct hda_codec *codec)
2564{
2565 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002566 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002567 int err;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002568
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002569 per_cvt = get_cvt(spec, 0);
Anssi Hannulac9a63382013-12-10 22:46:34 +02002570 err = snd_hda_create_dig_out_ctls(codec, per_cvt->cvt_nid,
2571 per_cvt->cvt_nid,
2572 HDA_PCM_TYPE_HDMI);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002573 if (err < 0)
2574 return err;
2575 return simple_hdmi_build_jack(codec, 0);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002576}
2577
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002578static int simple_playback_init(struct hda_codec *codec)
2579{
2580 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002581 struct hdmi_spec_per_pin *per_pin = get_pin(spec, 0);
2582 hda_nid_t pin = per_pin->pin_nid;
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002583
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002584 snd_hda_codec_write(codec, pin, 0,
2585 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2586 /* some codecs require to unmute the pin */
2587 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
2588 snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2589 AMP_OUT_UNMUTE);
Takashi Iwai62f949b2014-09-11 14:06:53 +02002590 snd_hda_jack_detect_enable(codec, pin);
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002591 return 0;
2592}
2593
Stephen Warren3aaf8982011-06-01 11:14:19 -06002594static void simple_playback_free(struct hda_codec *codec)
2595{
2596 struct hdmi_spec *spec = codec->spec;
2597
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002598 hdmi_array_free(spec);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002599 kfree(spec);
2600}
2601
2602/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002603 * Nvidia specific implementations
2604 */
2605
2606#define Nv_VERB_SET_Channel_Allocation 0xF79
2607#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
2608#define Nv_VERB_SET_Audio_Protection_On 0xF98
2609#define Nv_VERB_SET_Audio_Protection_Off 0xF99
2610
2611#define nvhdmi_master_con_nid_7x 0x04
2612#define nvhdmi_master_pin_nid_7x 0x05
2613
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002614static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002615 /*front, rear, clfe, rear_surr */
2616 0x6, 0x8, 0xa, 0xc,
2617};
2618
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002619static const struct hda_verb nvhdmi_basic_init_7x_2ch[] = {
2620 /* set audio protect on */
2621 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2622 /* enable digital output on pin widget */
2623 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2624 {} /* terminator */
2625};
2626
2627static const struct hda_verb nvhdmi_basic_init_7x_8ch[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002628 /* set audio protect on */
2629 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2630 /* enable digital output on pin widget */
2631 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2632 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2633 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2634 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2635 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2636 {} /* terminator */
2637};
2638
2639#ifdef LIMITED_RATE_FMT_SUPPORT
2640/* support only the safe format and rate */
2641#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
2642#define SUPPORTED_MAXBPS 16
2643#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
2644#else
2645/* support all rates and formats */
2646#define SUPPORTED_RATES \
2647 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
2648 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
2649 SNDRV_PCM_RATE_192000)
2650#define SUPPORTED_MAXBPS 24
2651#define SUPPORTED_FORMATS \
2652 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
2653#endif
2654
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002655static int nvhdmi_7x_init_2ch(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002656{
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002657 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_2ch);
2658 return 0;
2659}
2660
2661static int nvhdmi_7x_init_8ch(struct hda_codec *codec)
2662{
2663 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_8ch);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002664 return 0;
2665}
2666
Nitin Daga393004b2011-01-10 21:49:31 +05302667static unsigned int channels_2_6_8[] = {
2668 2, 6, 8
2669};
2670
2671static unsigned int channels_2_8[] = {
2672 2, 8
2673};
2674
2675static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
2676 .count = ARRAY_SIZE(channels_2_6_8),
2677 .list = channels_2_6_8,
2678 .mask = 0,
2679};
2680
2681static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
2682 .count = ARRAY_SIZE(channels_2_8),
2683 .list = channels_2_8,
2684 .mask = 0,
2685};
2686
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002687static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
2688 struct hda_codec *codec,
2689 struct snd_pcm_substream *substream)
2690{
2691 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05302692 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
2693
Takashi Iwaib9a94a92015-10-01 16:20:04 +02002694 switch (codec->preset->vendor_id) {
Nitin Daga393004b2011-01-10 21:49:31 +05302695 case 0x10de0002:
2696 case 0x10de0003:
2697 case 0x10de0005:
2698 case 0x10de0006:
2699 hw_constraints_channels = &hw_constraints_2_8_channels;
2700 break;
2701 case 0x10de0007:
2702 hw_constraints_channels = &hw_constraints_2_6_8_channels;
2703 break;
2704 default:
2705 break;
2706 }
2707
2708 if (hw_constraints_channels != NULL) {
2709 snd_pcm_hw_constraint_list(substream->runtime, 0,
2710 SNDRV_PCM_HW_PARAM_CHANNELS,
2711 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01002712 } else {
2713 snd_pcm_hw_constraint_step(substream->runtime, 0,
2714 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05302715 }
2716
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002717 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2718}
2719
2720static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
2721 struct hda_codec *codec,
2722 struct snd_pcm_substream *substream)
2723{
2724 struct hdmi_spec *spec = codec->spec;
2725 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2726}
2727
2728static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2729 struct hda_codec *codec,
2730 unsigned int stream_tag,
2731 unsigned int format,
2732 struct snd_pcm_substream *substream)
2733{
2734 struct hdmi_spec *spec = codec->spec;
2735 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2736 stream_tag, format, substream);
2737}
2738
Takashi Iwaid0b12522012-06-15 14:34:42 +02002739static const struct hda_pcm_stream simple_pcm_playback = {
2740 .substreams = 1,
2741 .channels_min = 2,
2742 .channels_max = 2,
2743 .ops = {
2744 .open = simple_playback_pcm_open,
2745 .close = simple_playback_pcm_close,
2746 .prepare = simple_playback_pcm_prepare
2747 },
2748};
2749
2750static const struct hda_codec_ops simple_hdmi_patch_ops = {
2751 .build_controls = simple_playback_build_controls,
2752 .build_pcms = simple_playback_build_pcms,
2753 .init = simple_playback_init,
2754 .free = simple_playback_free,
Takashi Iwai250e41a2012-06-15 14:40:21 +02002755 .unsol_event = simple_hdmi_unsol_event,
Takashi Iwaid0b12522012-06-15 14:34:42 +02002756};
2757
2758static int patch_simple_hdmi(struct hda_codec *codec,
2759 hda_nid_t cvt_nid, hda_nid_t pin_nid)
2760{
2761 struct hdmi_spec *spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002762 struct hdmi_spec_per_cvt *per_cvt;
2763 struct hdmi_spec_per_pin *per_pin;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002764
2765 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2766 if (!spec)
2767 return -ENOMEM;
2768
2769 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002770 hdmi_array_init(spec, 1);
Takashi Iwaid0b12522012-06-15 14:34:42 +02002771
2772 spec->multiout.num_dacs = 0; /* no analog */
2773 spec->multiout.max_channels = 2;
2774 spec->multiout.dig_out_nid = cvt_nid;
2775 spec->num_cvts = 1;
2776 spec->num_pins = 1;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002777 per_pin = snd_array_new(&spec->pins);
2778 per_cvt = snd_array_new(&spec->cvts);
2779 if (!per_pin || !per_cvt) {
2780 simple_playback_free(codec);
2781 return -ENOMEM;
2782 }
2783 per_cvt->cvt_nid = cvt_nid;
2784 per_pin->pin_nid = pin_nid;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002785 spec->pcm_playback = simple_pcm_playback;
2786
2787 codec->patch_ops = simple_hdmi_patch_ops;
2788
2789 return 0;
2790}
2791
Aaron Plattner1f348522011-04-06 17:19:04 -07002792static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
2793 int channels)
2794{
2795 unsigned int chanmask;
2796 int chan = channels ? (channels - 1) : 1;
2797
2798 switch (channels) {
2799 default:
2800 case 0:
2801 case 2:
2802 chanmask = 0x00;
2803 break;
2804 case 4:
2805 chanmask = 0x08;
2806 break;
2807 case 6:
2808 chanmask = 0x0b;
2809 break;
2810 case 8:
2811 chanmask = 0x13;
2812 break;
2813 }
2814
2815 /* Set the audio infoframe channel allocation and checksum fields. The
2816 * channel count is computed implicitly by the hardware. */
2817 snd_hda_codec_write(codec, 0x1, 0,
2818 Nv_VERB_SET_Channel_Allocation, chanmask);
2819
2820 snd_hda_codec_write(codec, 0x1, 0,
2821 Nv_VERB_SET_Info_Frame_Checksum,
2822 (0x71 - chan - chanmask));
2823}
2824
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002825static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
2826 struct hda_codec *codec,
2827 struct snd_pcm_substream *substream)
2828{
2829 struct hdmi_spec *spec = codec->spec;
2830 int i;
2831
2832 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
2833 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
2834 for (i = 0; i < 4; i++) {
2835 /* set the stream id */
2836 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2837 AC_VERB_SET_CHANNEL_STREAMID, 0);
2838 /* set the stream format */
2839 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2840 AC_VERB_SET_STREAM_FORMAT, 0);
2841 }
2842
Aaron Plattner1f348522011-04-06 17:19:04 -07002843 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
2844 * streams are disabled. */
2845 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2846
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002847 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2848}
2849
2850static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
2851 struct hda_codec *codec,
2852 unsigned int stream_tag,
2853 unsigned int format,
2854 struct snd_pcm_substream *substream)
2855{
2856 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01002857 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002858 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06002859 struct hdmi_spec *spec = codec->spec;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002860 struct hda_spdif_out *spdif;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002861 struct hdmi_spec_per_cvt *per_cvt;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002862
2863 mutex_lock(&codec->spdif_mutex);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002864 per_cvt = get_cvt(spec, 0);
2865 spdif = snd_hda_spdif_out_of_nid(codec, per_cvt->cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002866
2867 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002868
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002869 dataDCC2 = 0x2;
2870
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002871 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06002872 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002873 snd_hda_codec_write(codec,
2874 nvhdmi_master_con_nid_7x,
2875 0,
2876 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002877 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002878
2879 /* set the stream id */
2880 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2881 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
2882
2883 /* set the stream format */
2884 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2885 AC_VERB_SET_STREAM_FORMAT, format);
2886
2887 /* turn on again (if needed) */
2888 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06002889 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002890 snd_hda_codec_write(codec,
2891 nvhdmi_master_con_nid_7x,
2892 0,
2893 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002894 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002895 snd_hda_codec_write(codec,
2896 nvhdmi_master_con_nid_7x,
2897 0,
2898 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2899 }
2900
2901 for (i = 0; i < 4; i++) {
2902 if (chs == 2)
2903 channel_id = 0;
2904 else
2905 channel_id = i * 2;
2906
2907 /* turn off SPDIF once;
2908 *otherwise the IEC958 bits won't be updated
2909 */
2910 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002911 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002912 snd_hda_codec_write(codec,
2913 nvhdmi_con_nids_7x[i],
2914 0,
2915 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002916 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002917 /* set the stream id */
2918 snd_hda_codec_write(codec,
2919 nvhdmi_con_nids_7x[i],
2920 0,
2921 AC_VERB_SET_CHANNEL_STREAMID,
2922 (stream_tag << 4) | channel_id);
2923 /* set the stream format */
2924 snd_hda_codec_write(codec,
2925 nvhdmi_con_nids_7x[i],
2926 0,
2927 AC_VERB_SET_STREAM_FORMAT,
2928 format);
2929 /* turn on again (if needed) */
2930 /* enable and set the channel status audio/data flag */
2931 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002932 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002933 snd_hda_codec_write(codec,
2934 nvhdmi_con_nids_7x[i],
2935 0,
2936 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002937 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002938 snd_hda_codec_write(codec,
2939 nvhdmi_con_nids_7x[i],
2940 0,
2941 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2942 }
2943 }
2944
Aaron Plattner1f348522011-04-06 17:19:04 -07002945 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002946
2947 mutex_unlock(&codec->spdif_mutex);
2948 return 0;
2949}
2950
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002951static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002952 .substreams = 1,
2953 .channels_min = 2,
2954 .channels_max = 8,
2955 .nid = nvhdmi_master_con_nid_7x,
2956 .rates = SUPPORTED_RATES,
2957 .maxbps = SUPPORTED_MAXBPS,
2958 .formats = SUPPORTED_FORMATS,
2959 .ops = {
2960 .open = simple_playback_pcm_open,
2961 .close = nvhdmi_8ch_7x_pcm_close,
2962 .prepare = nvhdmi_8ch_7x_pcm_prepare
2963 },
2964};
2965
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002966static int patch_nvhdmi_2ch(struct hda_codec *codec)
2967{
2968 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002969 int err = patch_simple_hdmi(codec, nvhdmi_master_con_nid_7x,
2970 nvhdmi_master_pin_nid_7x);
2971 if (err < 0)
2972 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002973
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002974 codec->patch_ops.init = nvhdmi_7x_init_2ch;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002975 /* override the PCM rates, etc, as the codec doesn't give full list */
2976 spec = codec->spec;
2977 spec->pcm_playback.rates = SUPPORTED_RATES;
2978 spec->pcm_playback.maxbps = SUPPORTED_MAXBPS;
2979 spec->pcm_playback.formats = SUPPORTED_FORMATS;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002980 return 0;
2981}
2982
Takashi Iwai53775b02012-08-01 12:17:41 +02002983static int nvhdmi_7x_8ch_build_pcms(struct hda_codec *codec)
2984{
2985 struct hdmi_spec *spec = codec->spec;
2986 int err = simple_playback_build_pcms(codec);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002987 if (!err) {
2988 struct hda_pcm *info = get_pcm_rec(spec, 0);
2989 info->own_chmap = true;
2990 }
Takashi Iwai53775b02012-08-01 12:17:41 +02002991 return err;
2992}
2993
2994static int nvhdmi_7x_8ch_build_controls(struct hda_codec *codec)
2995{
2996 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002997 struct hda_pcm *info;
Takashi Iwai53775b02012-08-01 12:17:41 +02002998 struct snd_pcm_chmap *chmap;
2999 int err;
3000
3001 err = simple_playback_build_controls(codec);
3002 if (err < 0)
3003 return err;
3004
3005 /* add channel maps */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003006 info = get_pcm_rec(spec, 0);
3007 err = snd_pcm_add_chmap_ctls(info->pcm,
Takashi Iwai53775b02012-08-01 12:17:41 +02003008 SNDRV_PCM_STREAM_PLAYBACK,
3009 snd_pcm_alt_chmaps, 8, 0, &chmap);
3010 if (err < 0)
3011 return err;
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003012 switch (codec->preset->vendor_id) {
Takashi Iwai53775b02012-08-01 12:17:41 +02003013 case 0x10de0002:
3014 case 0x10de0003:
3015 case 0x10de0005:
3016 case 0x10de0006:
3017 chmap->channel_mask = (1U << 2) | (1U << 8);
3018 break;
3019 case 0x10de0007:
3020 chmap->channel_mask = (1U << 2) | (1U << 6) | (1U << 8);
3021 }
3022 return 0;
3023}
3024
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003025static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
3026{
3027 struct hdmi_spec *spec;
3028 int err = patch_nvhdmi_2ch(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003029 if (err < 0)
3030 return err;
3031 spec = codec->spec;
3032 spec->multiout.max_channels = 8;
Takashi Iwaid0b12522012-06-15 14:34:42 +02003033 spec->pcm_playback = nvhdmi_pcm_playback_8ch_7x;
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02003034 codec->patch_ops.init = nvhdmi_7x_init_8ch;
Takashi Iwai53775b02012-08-01 12:17:41 +02003035 codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms;
3036 codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls;
Aaron Plattner1f348522011-04-06 17:19:04 -07003037
3038 /* Initialize the audio infoframe channel mask and checksum to something
3039 * valid */
3040 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
3041
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003042 return 0;
3043}
3044
3045/*
Anssi Hannula611885b2013-11-03 17:15:00 +02003046 * NVIDIA codecs ignore ASP mapping for 2ch - confirmed on:
3047 * - 0x10de0015
3048 * - 0x10de0040
3049 */
3050static int nvhdmi_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
3051 int channels)
3052{
3053 if (cap->ca_index == 0x00 && channels == 2)
3054 return SNDRV_CTL_TLVT_CHMAP_FIXED;
3055
3056 return hdmi_chmap_cea_alloc_validate_get_type(cap, channels);
3057}
3058
3059static int nvhdmi_chmap_validate(int ca, int chs, unsigned char *map)
3060{
3061 if (ca == 0x00 && (map[0] != SNDRV_CHMAP_FL || map[1] != SNDRV_CHMAP_FR))
3062 return -EINVAL;
3063
3064 return 0;
3065}
3066
3067static int patch_nvhdmi(struct hda_codec *codec)
3068{
3069 struct hdmi_spec *spec;
3070 int err;
3071
3072 err = patch_generic_hdmi(codec);
3073 if (err)
3074 return err;
3075
3076 spec = codec->spec;
Stephen Warren75fae112014-01-30 11:52:16 -07003077 spec->dyn_pin_out = true;
Anssi Hannula611885b2013-11-03 17:15:00 +02003078
3079 spec->ops.chmap_cea_alloc_validate_get_type =
3080 nvhdmi_chmap_cea_alloc_validate_get_type;
3081 spec->ops.chmap_validate = nvhdmi_chmap_validate;
3082
3083 return 0;
3084}
3085
3086/*
Thierry Reding26e9a962015-05-05 14:56:20 +02003087 * The HDA codec on NVIDIA Tegra contains two scratch registers that are
3088 * accessed using vendor-defined verbs. These registers can be used for
3089 * interoperability between the HDA and HDMI drivers.
3090 */
3091
3092/* Audio Function Group node */
3093#define NVIDIA_AFG_NID 0x01
3094
3095/*
3096 * The SCRATCH0 register is used to notify the HDMI codec of changes in audio
3097 * format. On Tegra, bit 31 is used as a trigger that causes an interrupt to
3098 * be raised in the HDMI codec. The remainder of the bits is arbitrary. This
3099 * implementation stores the HDA format (see AC_FMT_*) in bits [15:0] and an
3100 * additional bit (at position 30) to signal the validity of the format.
3101 *
3102 * | 31 | 30 | 29 16 | 15 0 |
3103 * +---------+-------+--------+--------+
3104 * | TRIGGER | VALID | UNUSED | FORMAT |
3105 * +-----------------------------------|
3106 *
3107 * Note that for the trigger bit to take effect it needs to change value
3108 * (i.e. it needs to be toggled).
3109 */
3110#define NVIDIA_GET_SCRATCH0 0xfa6
3111#define NVIDIA_SET_SCRATCH0_BYTE0 0xfa7
3112#define NVIDIA_SET_SCRATCH0_BYTE1 0xfa8
3113#define NVIDIA_SET_SCRATCH0_BYTE2 0xfa9
3114#define NVIDIA_SET_SCRATCH0_BYTE3 0xfaa
3115#define NVIDIA_SCRATCH_TRIGGER (1 << 7)
3116#define NVIDIA_SCRATCH_VALID (1 << 6)
3117
3118#define NVIDIA_GET_SCRATCH1 0xfab
3119#define NVIDIA_SET_SCRATCH1_BYTE0 0xfac
3120#define NVIDIA_SET_SCRATCH1_BYTE1 0xfad
3121#define NVIDIA_SET_SCRATCH1_BYTE2 0xfae
3122#define NVIDIA_SET_SCRATCH1_BYTE3 0xfaf
3123
3124/*
3125 * The format parameter is the HDA audio format (see AC_FMT_*). If set to 0,
3126 * the format is invalidated so that the HDMI codec can be disabled.
3127 */
3128static void tegra_hdmi_set_format(struct hda_codec *codec, unsigned int format)
3129{
3130 unsigned int value;
3131
3132 /* bits [31:30] contain the trigger and valid bits */
3133 value = snd_hda_codec_read(codec, NVIDIA_AFG_NID, 0,
3134 NVIDIA_GET_SCRATCH0, 0);
3135 value = (value >> 24) & 0xff;
3136
3137 /* bits [15:0] are used to store the HDA format */
3138 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3139 NVIDIA_SET_SCRATCH0_BYTE0,
3140 (format >> 0) & 0xff);
3141 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3142 NVIDIA_SET_SCRATCH0_BYTE1,
3143 (format >> 8) & 0xff);
3144
3145 /* bits [16:24] are unused */
3146 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3147 NVIDIA_SET_SCRATCH0_BYTE2, 0);
3148
3149 /*
3150 * Bit 30 signals that the data is valid and hence that HDMI audio can
3151 * be enabled.
3152 */
3153 if (format == 0)
3154 value &= ~NVIDIA_SCRATCH_VALID;
3155 else
3156 value |= NVIDIA_SCRATCH_VALID;
3157
3158 /*
3159 * Whenever the trigger bit is toggled, an interrupt is raised in the
3160 * HDMI codec. The HDMI driver will use that as trigger to update its
3161 * configuration.
3162 */
3163 value ^= NVIDIA_SCRATCH_TRIGGER;
3164
3165 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3166 NVIDIA_SET_SCRATCH0_BYTE3, value);
3167}
3168
3169static int tegra_hdmi_pcm_prepare(struct hda_pcm_stream *hinfo,
3170 struct hda_codec *codec,
3171 unsigned int stream_tag,
3172 unsigned int format,
3173 struct snd_pcm_substream *substream)
3174{
3175 int err;
3176
3177 err = generic_hdmi_playback_pcm_prepare(hinfo, codec, stream_tag,
3178 format, substream);
3179 if (err < 0)
3180 return err;
3181
3182 /* notify the HDMI codec of the format change */
3183 tegra_hdmi_set_format(codec, format);
3184
3185 return 0;
3186}
3187
3188static int tegra_hdmi_pcm_cleanup(struct hda_pcm_stream *hinfo,
3189 struct hda_codec *codec,
3190 struct snd_pcm_substream *substream)
3191{
3192 /* invalidate the format in the HDMI codec */
3193 tegra_hdmi_set_format(codec, 0);
3194
3195 return generic_hdmi_playback_pcm_cleanup(hinfo, codec, substream);
3196}
3197
3198static struct hda_pcm *hda_find_pcm_by_type(struct hda_codec *codec, int type)
3199{
3200 struct hdmi_spec *spec = codec->spec;
3201 unsigned int i;
3202
3203 for (i = 0; i < spec->num_pins; i++) {
3204 struct hda_pcm *pcm = get_pcm_rec(spec, i);
3205
3206 if (pcm->pcm_type == type)
3207 return pcm;
3208 }
3209
3210 return NULL;
3211}
3212
3213static int tegra_hdmi_build_pcms(struct hda_codec *codec)
3214{
3215 struct hda_pcm_stream *stream;
3216 struct hda_pcm *pcm;
3217 int err;
3218
3219 err = generic_hdmi_build_pcms(codec);
3220 if (err < 0)
3221 return err;
3222
3223 pcm = hda_find_pcm_by_type(codec, HDA_PCM_TYPE_HDMI);
3224 if (!pcm)
3225 return -ENODEV;
3226
3227 /*
3228 * Override ->prepare() and ->cleanup() operations to notify the HDMI
3229 * codec about format changes.
3230 */
3231 stream = &pcm->stream[SNDRV_PCM_STREAM_PLAYBACK];
3232 stream->ops.prepare = tegra_hdmi_pcm_prepare;
3233 stream->ops.cleanup = tegra_hdmi_pcm_cleanup;
3234
3235 return 0;
3236}
3237
3238static int patch_tegra_hdmi(struct hda_codec *codec)
3239{
3240 int err;
3241
3242 err = patch_generic_hdmi(codec);
3243 if (err)
3244 return err;
3245
3246 codec->patch_ops.build_pcms = tegra_hdmi_build_pcms;
3247
3248 return 0;
3249}
3250
3251/*
Anssi Hannula5a6135842013-10-24 21:10:35 +03003252 * ATI/AMD-specific implementations
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003253 */
3254
Anssi Hannula5a6135842013-10-24 21:10:35 +03003255#define is_amdhdmi_rev3_or_later(codec) \
Takashi Iwai7639a062015-03-03 10:07:24 +01003256 ((codec)->core.vendor_id == 0x1002aa01 && \
3257 ((codec)->core.revision_id & 0xff00) >= 0x0300)
Anssi Hannula5a6135842013-10-24 21:10:35 +03003258#define has_amd_full_remap_support(codec) is_amdhdmi_rev3_or_later(codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003259
Anssi Hannula5a6135842013-10-24 21:10:35 +03003260/* ATI/AMD specific HDA pin verbs, see the AMD HDA Verbs specification */
3261#define ATI_VERB_SET_CHANNEL_ALLOCATION 0x771
3262#define ATI_VERB_SET_DOWNMIX_INFO 0x772
3263#define ATI_VERB_SET_MULTICHANNEL_01 0x777
3264#define ATI_VERB_SET_MULTICHANNEL_23 0x778
3265#define ATI_VERB_SET_MULTICHANNEL_45 0x779
3266#define ATI_VERB_SET_MULTICHANNEL_67 0x77a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003267#define ATI_VERB_SET_HBR_CONTROL 0x77c
Anssi Hannula5a6135842013-10-24 21:10:35 +03003268#define ATI_VERB_SET_MULTICHANNEL_1 0x785
3269#define ATI_VERB_SET_MULTICHANNEL_3 0x786
3270#define ATI_VERB_SET_MULTICHANNEL_5 0x787
3271#define ATI_VERB_SET_MULTICHANNEL_7 0x788
3272#define ATI_VERB_SET_MULTICHANNEL_MODE 0x789
3273#define ATI_VERB_GET_CHANNEL_ALLOCATION 0xf71
3274#define ATI_VERB_GET_DOWNMIX_INFO 0xf72
3275#define ATI_VERB_GET_MULTICHANNEL_01 0xf77
3276#define ATI_VERB_GET_MULTICHANNEL_23 0xf78
3277#define ATI_VERB_GET_MULTICHANNEL_45 0xf79
3278#define ATI_VERB_GET_MULTICHANNEL_67 0xf7a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003279#define ATI_VERB_GET_HBR_CONTROL 0xf7c
Anssi Hannula5a6135842013-10-24 21:10:35 +03003280#define ATI_VERB_GET_MULTICHANNEL_1 0xf85
3281#define ATI_VERB_GET_MULTICHANNEL_3 0xf86
3282#define ATI_VERB_GET_MULTICHANNEL_5 0xf87
3283#define ATI_VERB_GET_MULTICHANNEL_7 0xf88
3284#define ATI_VERB_GET_MULTICHANNEL_MODE 0xf89
3285
Anssi Hannula84d69e72013-10-24 21:10:38 +03003286/* AMD specific HDA cvt verbs */
3287#define ATI_VERB_SET_RAMP_RATE 0x770
3288#define ATI_VERB_GET_RAMP_RATE 0xf70
3289
Anssi Hannula5a6135842013-10-24 21:10:35 +03003290#define ATI_OUT_ENABLE 0x1
3291
3292#define ATI_MULTICHANNEL_MODE_PAIRED 0
3293#define ATI_MULTICHANNEL_MODE_SINGLE 1
3294
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003295#define ATI_HBR_CAPABLE 0x01
3296#define ATI_HBR_ENABLE 0x10
3297
Anssi Hannula89250f82013-10-24 21:10:36 +03003298static int atihdmi_pin_get_eld(struct hda_codec *codec, hda_nid_t nid,
3299 unsigned char *buf, int *eld_size)
3300{
3301 /* call hda_eld.c ATI/AMD-specific function */
3302 return snd_hdmi_get_eld_ati(codec, nid, buf, eld_size,
3303 is_amdhdmi_rev3_or_later(codec));
3304}
3305
Anssi Hannula5a6135842013-10-24 21:10:35 +03003306static void atihdmi_pin_setup_infoframe(struct hda_codec *codec, hda_nid_t pin_nid, int ca,
3307 int active_channels, int conn_type)
3308{
3309 snd_hda_codec_write(codec, pin_nid, 0, ATI_VERB_SET_CHANNEL_ALLOCATION, ca);
3310}
3311
3312static int atihdmi_paired_swap_fc_lfe(int pos)
3313{
3314 /*
3315 * ATI/AMD have automatic FC/LFE swap built-in
3316 * when in pairwise mapping mode.
3317 */
3318
3319 switch (pos) {
3320 /* see channel_allocations[].speakers[] */
3321 case 2: return 3;
3322 case 3: return 2;
3323 default: break;
3324 }
3325
3326 return pos;
3327}
3328
3329static int atihdmi_paired_chmap_validate(int ca, int chs, unsigned char *map)
3330{
3331 struct cea_channel_speaker_allocation *cap;
3332 int i, j;
3333
3334 /* check that only channel pairs need to be remapped on old pre-rev3 ATI/AMD */
3335
3336 cap = &channel_allocations[get_channel_allocation_order(ca)];
3337 for (i = 0; i < chs; ++i) {
3338 int mask = to_spk_mask(map[i]);
3339 bool ok = false;
3340 bool companion_ok = false;
3341
3342 if (!mask)
3343 continue;
3344
3345 for (j = 0 + i % 2; j < 8; j += 2) {
3346 int chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j);
3347 if (cap->speakers[chan_idx] == mask) {
3348 /* channel is in a supported position */
3349 ok = true;
3350
3351 if (i % 2 == 0 && i + 1 < chs) {
3352 /* even channel, check the odd companion */
3353 int comp_chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j + 1);
3354 int comp_mask_req = to_spk_mask(map[i+1]);
3355 int comp_mask_act = cap->speakers[comp_chan_idx];
3356
3357 if (comp_mask_req == comp_mask_act)
3358 companion_ok = true;
3359 else
3360 return -EINVAL;
3361 }
3362 break;
3363 }
3364 }
3365
3366 if (!ok)
3367 return -EINVAL;
3368
3369 if (companion_ok)
3370 i++; /* companion channel already checked */
3371 }
3372
3373 return 0;
3374}
3375
3376static int atihdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
3377 int hdmi_slot, int stream_channel)
3378{
3379 int verb;
3380 int ati_channel_setup = 0;
3381
3382 if (hdmi_slot > 7)
3383 return -EINVAL;
3384
3385 if (!has_amd_full_remap_support(codec)) {
3386 hdmi_slot = atihdmi_paired_swap_fc_lfe(hdmi_slot);
3387
3388 /* In case this is an odd slot but without stream channel, do not
3389 * disable the slot since the corresponding even slot could have a
3390 * channel. In case neither have a channel, the slot pair will be
3391 * disabled when this function is called for the even slot. */
3392 if (hdmi_slot % 2 != 0 && stream_channel == 0xf)
3393 return 0;
3394
3395 hdmi_slot -= hdmi_slot % 2;
3396
3397 if (stream_channel != 0xf)
3398 stream_channel -= stream_channel % 2;
3399 }
3400
3401 verb = ATI_VERB_SET_MULTICHANNEL_01 + hdmi_slot/2 + (hdmi_slot % 2) * 0x00e;
3402
3403 /* ati_channel_setup format: [7..4] = stream_channel_id, [1] = mute, [0] = enable */
3404
3405 if (stream_channel != 0xf)
3406 ati_channel_setup = (stream_channel << 4) | ATI_OUT_ENABLE;
3407
3408 return snd_hda_codec_write(codec, pin_nid, 0, verb, ati_channel_setup);
3409}
3410
3411static int atihdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
3412 int asp_slot)
3413{
3414 bool was_odd = false;
3415 int ati_asp_slot = asp_slot;
3416 int verb;
3417 int ati_channel_setup;
3418
3419 if (asp_slot > 7)
3420 return -EINVAL;
3421
3422 if (!has_amd_full_remap_support(codec)) {
3423 ati_asp_slot = atihdmi_paired_swap_fc_lfe(asp_slot);
3424 if (ati_asp_slot % 2 != 0) {
3425 ati_asp_slot -= 1;
3426 was_odd = true;
3427 }
3428 }
3429
3430 verb = ATI_VERB_GET_MULTICHANNEL_01 + ati_asp_slot/2 + (ati_asp_slot % 2) * 0x00e;
3431
3432 ati_channel_setup = snd_hda_codec_read(codec, pin_nid, 0, verb, 0);
3433
3434 if (!(ati_channel_setup & ATI_OUT_ENABLE))
3435 return 0xf;
3436
3437 return ((ati_channel_setup & 0xf0) >> 4) + !!was_odd;
3438}
3439
3440static int atihdmi_paired_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
3441 int channels)
3442{
3443 int c;
3444
3445 /*
3446 * Pre-rev3 ATI/AMD codecs operate in a paired channel mode, so
3447 * we need to take that into account (a single channel may take 2
3448 * channel slots if we need to carry a silent channel next to it).
3449 * On Rev3+ AMD codecs this function is not used.
3450 */
3451 int chanpairs = 0;
3452
3453 /* We only produce even-numbered channel count TLVs */
3454 if ((channels % 2) != 0)
3455 return -1;
3456
3457 for (c = 0; c < 7; c += 2) {
3458 if (cap->speakers[c] || cap->speakers[c+1])
3459 chanpairs++;
3460 }
3461
3462 if (chanpairs * 2 != channels)
3463 return -1;
3464
3465 return SNDRV_CTL_TLVT_CHMAP_PAIRED;
3466}
3467
3468static void atihdmi_paired_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
3469 unsigned int *chmap, int channels)
3470{
3471 /* produce paired maps for pre-rev3 ATI/AMD codecs */
3472 int count = 0;
3473 int c;
3474
3475 for (c = 7; c >= 0; c--) {
3476 int chan = 7 - atihdmi_paired_swap_fc_lfe(7 - c);
3477 int spk = cap->speakers[chan];
3478 if (!spk) {
3479 /* add N/A channel if the companion channel is occupied */
3480 if (cap->speakers[chan + (chan % 2 ? -1 : 1)])
3481 chmap[count++] = SNDRV_CHMAP_NA;
3482
3483 continue;
3484 }
3485
3486 chmap[count++] = spk_to_chmap(spk);
3487 }
3488
3489 WARN_ON(count != channels);
3490}
3491
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003492static int atihdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
3493 bool hbr)
3494{
3495 int hbr_ctl, hbr_ctl_new;
3496
3497 hbr_ctl = snd_hda_codec_read(codec, pin_nid, 0, ATI_VERB_GET_HBR_CONTROL, 0);
Anssi Hannula13122e62013-11-10 20:56:10 +02003498 if (hbr_ctl >= 0 && (hbr_ctl & ATI_HBR_CAPABLE)) {
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003499 if (hbr)
3500 hbr_ctl_new = hbr_ctl | ATI_HBR_ENABLE;
3501 else
3502 hbr_ctl_new = hbr_ctl & ~ATI_HBR_ENABLE;
3503
Takashi Iwai4e76a882014-02-25 12:21:03 +01003504 codec_dbg(codec,
3505 "atihdmi_pin_hbr_setup: NID=0x%x, %shbr-ctl=0x%x\n",
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003506 pin_nid,
3507 hbr_ctl == hbr_ctl_new ? "" : "new-",
3508 hbr_ctl_new);
3509
3510 if (hbr_ctl != hbr_ctl_new)
3511 snd_hda_codec_write(codec, pin_nid, 0,
3512 ATI_VERB_SET_HBR_CONTROL,
3513 hbr_ctl_new);
3514
3515 } else if (hbr)
3516 return -EINVAL;
3517
3518 return 0;
3519}
3520
Anssi Hannula84d69e72013-10-24 21:10:38 +03003521static int atihdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
3522 hda_nid_t pin_nid, u32 stream_tag, int format)
3523{
3524
3525 if (is_amdhdmi_rev3_or_later(codec)) {
3526 int ramp_rate = 180; /* default as per AMD spec */
3527 /* disable ramp-up/down for non-pcm as per AMD spec */
3528 if (format & AC_FMT_TYPE_NON_PCM)
3529 ramp_rate = 0;
3530
3531 snd_hda_codec_write(codec, cvt_nid, 0, ATI_VERB_SET_RAMP_RATE, ramp_rate);
3532 }
3533
3534 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
3535}
3536
3537
Anssi Hannula5a6135842013-10-24 21:10:35 +03003538static int atihdmi_init(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003539{
3540 struct hdmi_spec *spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003541 int pin_idx, err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003542
Anssi Hannula5a6135842013-10-24 21:10:35 +03003543 err = generic_hdmi_init(codec);
3544
3545 if (err)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003546 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003547
3548 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
3549 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
3550
3551 /* make sure downmix information in infoframe is zero */
3552 snd_hda_codec_write(codec, per_pin->pin_nid, 0, ATI_VERB_SET_DOWNMIX_INFO, 0);
3553
3554 /* enable channel-wise remap mode if supported */
3555 if (has_amd_full_remap_support(codec))
3556 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
3557 ATI_VERB_SET_MULTICHANNEL_MODE,
3558 ATI_MULTICHANNEL_MODE_SINGLE);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003559 }
Anssi Hannula5a6135842013-10-24 21:10:35 +03003560
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003561 return 0;
3562}
3563
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003564static int patch_atihdmi(struct hda_codec *codec)
3565{
3566 struct hdmi_spec *spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003567 struct hdmi_spec_per_cvt *per_cvt;
3568 int err, cvt_idx;
3569
3570 err = patch_generic_hdmi(codec);
3571
3572 if (err)
Takashi Iwaid0b12522012-06-15 14:34:42 +02003573 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003574
3575 codec->patch_ops.init = atihdmi_init;
3576
Takashi Iwaid0b12522012-06-15 14:34:42 +02003577 spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003578
Anssi Hannula89250f82013-10-24 21:10:36 +03003579 spec->ops.pin_get_eld = atihdmi_pin_get_eld;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003580 spec->ops.pin_get_slot_channel = atihdmi_pin_get_slot_channel;
3581 spec->ops.pin_set_slot_channel = atihdmi_pin_set_slot_channel;
3582 spec->ops.pin_setup_infoframe = atihdmi_pin_setup_infoframe;
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003583 spec->ops.pin_hbr_setup = atihdmi_pin_hbr_setup;
Anssi Hannula84d69e72013-10-24 21:10:38 +03003584 spec->ops.setup_stream = atihdmi_setup_stream;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003585
3586 if (!has_amd_full_remap_support(codec)) {
3587 /* override to ATI/AMD-specific versions with pairwise mapping */
3588 spec->ops.chmap_cea_alloc_validate_get_type =
3589 atihdmi_paired_chmap_cea_alloc_validate_get_type;
3590 spec->ops.cea_alloc_to_tlv_chmap = atihdmi_paired_cea_alloc_to_tlv_chmap;
3591 spec->ops.chmap_validate = atihdmi_paired_chmap_validate;
3592 }
3593
3594 /* ATI/AMD converters do not advertise all of their capabilities */
3595 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
3596 per_cvt = get_cvt(spec, cvt_idx);
3597 per_cvt->channels_max = max(per_cvt->channels_max, 8u);
3598 per_cvt->rates |= SUPPORTED_RATES;
3599 per_cvt->formats |= SUPPORTED_FORMATS;
3600 per_cvt->maxbps = max(per_cvt->maxbps, 24u);
3601 }
3602
3603 spec->channels_max = max(spec->channels_max, 8u);
3604
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003605 return 0;
3606}
3607
Annie Liu3de5ff82012-06-08 19:18:42 +08003608/* VIA HDMI Implementation */
3609#define VIAHDMI_CVT_NID 0x02 /* audio converter1 */
3610#define VIAHDMI_PIN_NID 0x03 /* HDMI output pin1 */
3611
Annie Liu3de5ff82012-06-08 19:18:42 +08003612static int patch_via_hdmi(struct hda_codec *codec)
3613{
Takashi Iwai250e41a2012-06-15 14:40:21 +02003614 return patch_simple_hdmi(codec, VIAHDMI_CVT_NID, VIAHDMI_PIN_NID);
Annie Liu3de5ff82012-06-08 19:18:42 +08003615}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003616
3617/*
3618 * patch entries
3619 */
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003620static const struct hda_device_id snd_hda_id_hdmi[] = {
3621HDA_CODEC_ENTRY(0x1002793c, "RS600 HDMI", patch_atihdmi),
3622HDA_CODEC_ENTRY(0x10027919, "RS600 HDMI", patch_atihdmi),
3623HDA_CODEC_ENTRY(0x1002791a, "RS690/780 HDMI", patch_atihdmi),
3624HDA_CODEC_ENTRY(0x1002aa01, "R6xx HDMI", patch_atihdmi),
3625HDA_CODEC_ENTRY(0x10951390, "SiI1390 HDMI", patch_generic_hdmi),
3626HDA_CODEC_ENTRY(0x10951392, "SiI1392 HDMI", patch_generic_hdmi),
3627HDA_CODEC_ENTRY(0x17e80047, "Chrontel HDMI", patch_generic_hdmi),
3628HDA_CODEC_ENTRY(0x10de0002, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
3629HDA_CODEC_ENTRY(0x10de0003, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
3630HDA_CODEC_ENTRY(0x10de0005, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
3631HDA_CODEC_ENTRY(0x10de0006, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
3632HDA_CODEC_ENTRY(0x10de0007, "MCP79/7A HDMI", patch_nvhdmi_8ch_7x),
3633HDA_CODEC_ENTRY(0x10de000a, "GPU 0a HDMI/DP", patch_nvhdmi),
3634HDA_CODEC_ENTRY(0x10de000b, "GPU 0b HDMI/DP", patch_nvhdmi),
3635HDA_CODEC_ENTRY(0x10de000c, "MCP89 HDMI", patch_nvhdmi),
3636HDA_CODEC_ENTRY(0x10de000d, "GPU 0d HDMI/DP", patch_nvhdmi),
3637HDA_CODEC_ENTRY(0x10de0010, "GPU 10 HDMI/DP", patch_nvhdmi),
3638HDA_CODEC_ENTRY(0x10de0011, "GPU 11 HDMI/DP", patch_nvhdmi),
3639HDA_CODEC_ENTRY(0x10de0012, "GPU 12 HDMI/DP", patch_nvhdmi),
3640HDA_CODEC_ENTRY(0x10de0013, "GPU 13 HDMI/DP", patch_nvhdmi),
3641HDA_CODEC_ENTRY(0x10de0014, "GPU 14 HDMI/DP", patch_nvhdmi),
3642HDA_CODEC_ENTRY(0x10de0015, "GPU 15 HDMI/DP", patch_nvhdmi),
3643HDA_CODEC_ENTRY(0x10de0016, "GPU 16 HDMI/DP", patch_nvhdmi),
Richard Samsonc8900a02011-03-03 12:46:13 +01003644/* 17 is known to be absent */
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003645HDA_CODEC_ENTRY(0x10de0018, "GPU 18 HDMI/DP", patch_nvhdmi),
3646HDA_CODEC_ENTRY(0x10de0019, "GPU 19 HDMI/DP", patch_nvhdmi),
3647HDA_CODEC_ENTRY(0x10de001a, "GPU 1a HDMI/DP", patch_nvhdmi),
3648HDA_CODEC_ENTRY(0x10de001b, "GPU 1b HDMI/DP", patch_nvhdmi),
3649HDA_CODEC_ENTRY(0x10de001c, "GPU 1c HDMI/DP", patch_nvhdmi),
3650HDA_CODEC_ENTRY(0x10de0020, "Tegra30 HDMI", patch_tegra_hdmi),
3651HDA_CODEC_ENTRY(0x10de0022, "Tegra114 HDMI", patch_tegra_hdmi),
3652HDA_CODEC_ENTRY(0x10de0028, "Tegra124 HDMI", patch_tegra_hdmi),
3653HDA_CODEC_ENTRY(0x10de0029, "Tegra210 HDMI/DP", patch_tegra_hdmi),
3654HDA_CODEC_ENTRY(0x10de0040, "GPU 40 HDMI/DP", patch_nvhdmi),
3655HDA_CODEC_ENTRY(0x10de0041, "GPU 41 HDMI/DP", patch_nvhdmi),
3656HDA_CODEC_ENTRY(0x10de0042, "GPU 42 HDMI/DP", patch_nvhdmi),
3657HDA_CODEC_ENTRY(0x10de0043, "GPU 43 HDMI/DP", patch_nvhdmi),
3658HDA_CODEC_ENTRY(0x10de0044, "GPU 44 HDMI/DP", patch_nvhdmi),
3659HDA_CODEC_ENTRY(0x10de0051, "GPU 51 HDMI/DP", patch_nvhdmi),
3660HDA_CODEC_ENTRY(0x10de0060, "GPU 60 HDMI/DP", patch_nvhdmi),
3661HDA_CODEC_ENTRY(0x10de0067, "MCP67 HDMI", patch_nvhdmi_2ch),
3662HDA_CODEC_ENTRY(0x10de0070, "GPU 70 HDMI/DP", patch_nvhdmi),
3663HDA_CODEC_ENTRY(0x10de0071, "GPU 71 HDMI/DP", patch_nvhdmi),
3664HDA_CODEC_ENTRY(0x10de0072, "GPU 72 HDMI/DP", patch_nvhdmi),
3665HDA_CODEC_ENTRY(0x10de007d, "GPU 7d HDMI/DP", patch_nvhdmi),
Aaron Plattner3ec622f2016-01-28 14:07:38 -08003666HDA_CODEC_ENTRY(0x10de0083, "GPU 83 HDMI/DP", patch_nvhdmi),
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003667HDA_CODEC_ENTRY(0x10de8001, "MCP73 HDMI", patch_nvhdmi_2ch),
3668HDA_CODEC_ENTRY(0x11069f80, "VX900 HDMI/DP", patch_via_hdmi),
3669HDA_CODEC_ENTRY(0x11069f81, "VX900 HDMI/DP", patch_via_hdmi),
3670HDA_CODEC_ENTRY(0x11069f84, "VX11 HDMI/DP", patch_generic_hdmi),
3671HDA_CODEC_ENTRY(0x11069f85, "VX11 HDMI/DP", patch_generic_hdmi),
3672HDA_CODEC_ENTRY(0x80860054, "IbexPeak HDMI", patch_generic_hdmi),
3673HDA_CODEC_ENTRY(0x80862801, "Bearlake HDMI", patch_generic_hdmi),
3674HDA_CODEC_ENTRY(0x80862802, "Cantiga HDMI", patch_generic_hdmi),
3675HDA_CODEC_ENTRY(0x80862803, "Eaglelake HDMI", patch_generic_hdmi),
3676HDA_CODEC_ENTRY(0x80862804, "IbexPeak HDMI", patch_generic_hdmi),
3677HDA_CODEC_ENTRY(0x80862805, "CougarPoint HDMI", patch_generic_hdmi),
3678HDA_CODEC_ENTRY(0x80862806, "PantherPoint HDMI", patch_generic_hdmi),
3679HDA_CODEC_ENTRY(0x80862807, "Haswell HDMI", patch_generic_hdmi),
3680HDA_CODEC_ENTRY(0x80862808, "Broadwell HDMI", patch_generic_hdmi),
3681HDA_CODEC_ENTRY(0x80862809, "Skylake HDMI", patch_generic_hdmi),
3682HDA_CODEC_ENTRY(0x8086280a, "Broxton HDMI", patch_generic_hdmi),
Libin Yang91815d82016-01-14 14:09:00 +08003683HDA_CODEC_ENTRY(0x8086280b, "Kabylake HDMI", patch_generic_hdmi),
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003684HDA_CODEC_ENTRY(0x80862880, "CedarTrail HDMI", patch_generic_hdmi),
3685HDA_CODEC_ENTRY(0x80862882, "Valleyview2 HDMI", patch_generic_hdmi),
3686HDA_CODEC_ENTRY(0x80862883, "Braswell HDMI", patch_generic_hdmi),
3687HDA_CODEC_ENTRY(0x808629fb, "Crestline HDMI", patch_generic_hdmi),
Takashi Iwaid8a766a2015-02-17 15:25:37 +01003688/* special ID for generic HDMI */
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003689HDA_CODEC_ENTRY(HDA_CODEC_ID_GENERIC_HDMI, "Generic HDMI", patch_generic_hdmi),
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003690{} /* terminator */
3691};
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003692MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_hdmi);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003693
3694MODULE_LICENSE("GPL");
3695MODULE_DESCRIPTION("HDMI HD-audio codec");
3696MODULE_ALIAS("snd-hda-codec-intelhdmi");
3697MODULE_ALIAS("snd-hda-codec-nvhdmi");
3698MODULE_ALIAS("snd-hda-codec-atihdmi");
3699
Takashi Iwaid8a766a2015-02-17 15:25:37 +01003700static struct hda_codec_driver hdmi_driver = {
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003701 .id = snd_hda_id_hdmi,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003702};
3703
Takashi Iwaid8a766a2015-02-17 15:25:37 +01003704module_hda_codec_driver(hdmi_driver);