blob: c8b11dadbd2abd37996f9a0ee89a95764fd7ca11 [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;
Libin Yanga76056f2015-12-16 16:48:15 +080078 /* pin idx, different device entries on the same pin use the same idx */
79 int pin_nid_idx;
Stephen Warren384a48d2011-06-01 11:14:21 -060080 int num_mux_nids;
81 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Mengdong Lin2df67422014-03-20 13:01:06 +080082 int mux_idx;
Anssi Hannula1df5a062013-10-05 02:25:40 +030083 hda_nid_t cvt_nid;
Wu Fengguang744626d2011-11-16 16:29:47 +080084
85 struct hda_codec *codec;
Stephen Warren384a48d2011-06-01 11:14:21 -060086 struct hdmi_eld sink_eld;
Takashi Iwaia4e9a382013-10-17 18:21:12 +020087 struct mutex lock;
Wu Fengguang744626d2011-11-16 16:29:47 +080088 struct delayed_work work;
David Henningsson92c69e72013-02-19 16:11:26 +010089 struct snd_kcontrol *eld_ctl;
Libin Yang2bea2412016-01-12 11:13:26 +080090 struct hdmi_pcm *pcm; /* pointer to spec->pcm_rec[n] dynamically*/
Libin Yanga76056f2015-12-16 16:48:15 +080091 int pcm_idx; /* which pcm is attached. -1 means no pcm is attached */
Wu Fengguangc6e84532011-11-18 16:59:32 -060092 int repoll_count;
Takashi Iwaib0540872013-09-02 12:33:02 +020093 bool setup; /* the stream has been set up by prepare callback */
94 int channels; /* current number of channels */
Takashi Iwai1a6003b2012-09-06 17:42:08 +020095 bool non_pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +020096 bool chmap_set; /* channel-map override by ALSA API? */
97 unsigned char chmap[8]; /* ALSA API channel-map */
Jie Yangcd6a6502015-05-27 19:45:45 +080098#ifdef CONFIG_SND_PROC_FS
Takashi Iwaia4e9a382013-10-17 18:21:12 +020099 struct snd_info_entry *proc_entry;
100#endif
Stephen Warren384a48d2011-06-01 11:14:21 -0600101};
102
Anssi Hannula307229d2013-10-24 21:10:34 +0300103struct cea_channel_speaker_allocation;
104
105/* operations used by generic code that can be overridden by patches */
106struct hdmi_ops {
107 int (*pin_get_eld)(struct hda_codec *codec, hda_nid_t pin_nid,
108 unsigned char *buf, int *eld_size);
109
110 /* get and set channel assigned to each HDMI ASP (audio sample packet) slot */
111 int (*pin_get_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
112 int asp_slot);
113 int (*pin_set_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
114 int asp_slot, int channel);
115
116 void (*pin_setup_infoframe)(struct hda_codec *codec, hda_nid_t pin_nid,
117 int ca, int active_channels, int conn_type);
118
119 /* enable/disable HBR (HD passthrough) */
120 int (*pin_hbr_setup)(struct hda_codec *codec, hda_nid_t pin_nid, bool hbr);
121
122 int (*setup_stream)(struct hda_codec *codec, hda_nid_t cvt_nid,
123 hda_nid_t pin_nid, u32 stream_tag, int format);
124
125 /* Helpers for producing the channel map TLVs. These can be overridden
126 * for devices that have non-standard mapping requirements. */
127 int (*chmap_cea_alloc_validate_get_type)(struct cea_channel_speaker_allocation *cap,
128 int channels);
129 void (*cea_alloc_to_tlv_chmap)(struct cea_channel_speaker_allocation *cap,
130 unsigned int *chmap, int channels);
131
132 /* check that the user-given chmap is supported */
133 int (*chmap_validate)(int ca, int channels, unsigned char *chmap);
134};
135
Libin Yang2bea2412016-01-12 11:13:26 +0800136struct hdmi_pcm {
137 struct hda_pcm *pcm;
138 struct snd_jack *jack;
139};
140
Wu Fengguang079d88c2010-03-08 10:44:23 +0800141struct hdmi_spec {
142 int num_cvts;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100143 struct snd_array cvts; /* struct hdmi_spec_per_cvt */
144 hda_nid_t cvt_nids[4]; /* only for haswell fix */
Stephen Warren384a48d2011-06-01 11:14:21 -0600145
Wu Fengguang079d88c2010-03-08 10:44:23 +0800146 int num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100147 struct snd_array pins; /* struct hdmi_spec_per_pin */
Libin Yang2bea2412016-01-12 11:13:26 +0800148 struct hdmi_pcm pcm_rec[16];
Libin Yang42b29872015-12-16 13:42:42 +0800149 struct mutex pcm_lock;
Libin Yanga76056f2015-12-16 16:48:15 +0800150 /* pcm_bitmap means which pcms have been assigned to pins*/
151 unsigned long pcm_bitmap;
Libin Yang2bf3c852015-12-16 13:42:43 +0800152 int pcm_used; /* counter of pcm_rec[] */
Libin Yangac983792015-12-16 16:48:16 +0800153 /* bitmap shows whether the pcm is opened in user space
154 * bit 0 means the first playback PCM (PCM3);
155 * bit 1 means the second playback PCM, and so on.
156 */
157 unsigned long pcm_in_use;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200158 unsigned int channels_max; /* max over all cvts */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800159
David Henningsson4bd038f2013-02-19 16:11:25 +0100160 struct hdmi_eld temp_eld;
Anssi Hannula307229d2013-10-24 21:10:34 +0300161 struct hdmi_ops ops;
Stephen Warren75fae112014-01-30 11:52:16 -0700162
163 bool dyn_pin_out;
Libin Yang6590faa2015-12-16 13:42:41 +0800164 bool dyn_pcm_assign;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800165 /*
Anssi Hannula5a6135842013-10-24 21:10:35 +0300166 * Non-generic VIA/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +0800167 */
168 struct hda_multi_out multiout;
Takashi Iwaid0b12522012-06-15 14:34:42 +0200169 struct hda_pcm_stream pcm_playback;
David Henningsson25adc132015-08-19 10:48:58 +0200170
171 /* i915/powerwell (Haswell+/Valleyview+) specific */
172 struct i915_audio_component_audio_ops i915_audio_ops;
Takashi Iwai55913112015-12-10 13:03:29 +0100173 bool i915_bound; /* was i915 bound in this driver? */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800174};
175
Takashi Iwaif4e30402015-12-10 13:01:28 +0100176#ifdef CONFIG_SND_HDA_I915
Takashi Iwai66032492015-12-01 16:49:35 +0100177#define codec_has_acomp(codec) \
178 ((codec)->bus->core.audio_component != NULL)
Takashi Iwaif4e30402015-12-10 13:01:28 +0100179#else
180#define codec_has_acomp(codec) false
181#endif
Wu Fengguang079d88c2010-03-08 10:44:23 +0800182
183struct hdmi_audio_infoframe {
184 u8 type; /* 0x84 */
185 u8 ver; /* 0x01 */
186 u8 len; /* 0x0a */
187
Wu Fengguang53d7d692010-09-21 14:25:49 +0800188 u8 checksum;
189
Wu Fengguang079d88c2010-03-08 10:44:23 +0800190 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
191 u8 SS01_SF24;
192 u8 CXT04;
193 u8 CA;
194 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800195};
196
197struct dp_audio_infoframe {
198 u8 type; /* 0x84 */
199 u8 len; /* 0x1b */
200 u8 ver; /* 0x11 << 2 */
201
202 u8 CC02_CT47; /* match with HDMI infoframe from this on */
203 u8 SS01_SF24;
204 u8 CXT04;
205 u8 CA;
206 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800207};
208
Takashi Iwai2b203dbb2011-02-11 12:17:30 +0100209union audio_infoframe {
210 struct hdmi_audio_infoframe hdmi;
211 struct dp_audio_infoframe dp;
212 u8 bytes[0];
213};
214
Wu Fengguang079d88c2010-03-08 10:44:23 +0800215/*
216 * CEA speaker placement:
217 *
218 * FLH FCH FRH
219 * FLW FL FLC FC FRC FR FRW
220 *
221 * LFE
222 * TC
223 *
224 * RL RLC RC RRC RR
225 *
226 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
227 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
228 */
229enum cea_speaker_placement {
230 FL = (1 << 0), /* Front Left */
231 FC = (1 << 1), /* Front Center */
232 FR = (1 << 2), /* Front Right */
233 FLC = (1 << 3), /* Front Left Center */
234 FRC = (1 << 4), /* Front Right Center */
235 RL = (1 << 5), /* Rear Left */
236 RC = (1 << 6), /* Rear Center */
237 RR = (1 << 7), /* Rear Right */
238 RLC = (1 << 8), /* Rear Left Center */
239 RRC = (1 << 9), /* Rear Right Center */
240 LFE = (1 << 10), /* Low Frequency Effect */
241 FLW = (1 << 11), /* Front Left Wide */
242 FRW = (1 << 12), /* Front Right Wide */
243 FLH = (1 << 13), /* Front Left High */
244 FCH = (1 << 14), /* Front Center High */
245 FRH = (1 << 15), /* Front Right High */
246 TC = (1 << 16), /* Top Center */
247};
248
249/*
250 * ELD SA bits in the CEA Speaker Allocation data block
251 */
252static int eld_speaker_allocation_bits[] = {
253 [0] = FL | FR,
254 [1] = LFE,
255 [2] = FC,
256 [3] = RL | RR,
257 [4] = RC,
258 [5] = FLC | FRC,
259 [6] = RLC | RRC,
260 /* the following are not defined in ELD yet */
261 [7] = FLW | FRW,
262 [8] = FLH | FRH,
263 [9] = TC,
264 [10] = FCH,
265};
266
267struct cea_channel_speaker_allocation {
268 int ca_index;
269 int speakers[8];
270
271 /* derived values, just for convenience */
272 int channels;
273 int spk_mask;
274};
275
276/*
277 * ALSA sequence is:
278 *
279 * surround40 surround41 surround50 surround51 surround71
280 * ch0 front left = = = =
281 * ch1 front right = = = =
282 * ch2 rear left = = = =
283 * ch3 rear right = = = =
284 * ch4 LFE center center center
285 * ch5 LFE LFE
286 * ch6 side left
287 * ch7 side right
288 *
289 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
290 */
291static int hdmi_channel_mapping[0x32][8] = {
292 /* stereo */
293 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
294 /* 2.1 */
295 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
296 /* Dolby Surround */
297 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
298 /* surround40 */
299 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
300 /* 4ch */
301 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
302 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800303 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800304 /* surround50 */
305 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
306 /* surround51 */
307 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
308 /* 7.1 */
309 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
310};
311
312/*
313 * This is an ordered list!
314 *
315 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800316 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800317 */
318static struct cea_channel_speaker_allocation channel_allocations[] = {
319/* channel: 7 6 5 4 3 2 1 0 */
320{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
321 /* 2.1 */
322{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
323 /* Dolby Surround */
324{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
325 /* surround40 */
326{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
327 /* surround41 */
328{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
329 /* surround50 */
330{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
331 /* surround51 */
332{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
333 /* 6.1 */
334{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
335 /* surround71 */
336{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
337
338{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
339{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
340{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
341{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
342{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
343{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
344{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
345{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
346{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
347{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
348{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
349{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
350{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
351{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
352{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
353{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
354{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
355{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
356{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
357{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
358{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
359{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
360{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
361{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
362{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
363{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
364{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
365{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
366{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
367{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
368{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
369{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
370{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
371{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
372{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
373{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
374{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
375{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
376{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
377{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
378{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
379};
380
381
382/*
383 * HDMI routines
384 */
385
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100386#define get_pin(spec, idx) \
387 ((struct hdmi_spec_per_pin *)snd_array_elem(&spec->pins, idx))
388#define get_cvt(spec, idx) \
389 ((struct hdmi_spec_per_cvt *)snd_array_elem(&spec->cvts, idx))
Libin Yang2bea2412016-01-12 11:13:26 +0800390/* obtain hdmi_pcm object assigned to idx */
391#define get_hdmi_pcm(spec, idx) (&(spec)->pcm_rec[idx])
392/* obtain hda_pcm object assigned to idx */
393#define get_pcm_rec(spec, idx) (get_hdmi_pcm(spec, idx)->pcm)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100394
Takashi Iwai4e76a882014-02-25 12:21:03 +0100395static int pin_nid_to_pin_index(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800396{
Takashi Iwai4e76a882014-02-25 12:21:03 +0100397 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600398 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800399
Stephen Warren384a48d2011-06-01 11:14:21 -0600400 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100401 if (get_pin(spec, pin_idx)->pin_nid == pin_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600402 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800403
Takashi Iwai4e76a882014-02-25 12:21:03 +0100404 codec_warn(codec, "HDMI: pin nid %d not registered\n", pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -0600405 return -EINVAL;
406}
407
Libin Yang2bf3c852015-12-16 13:42:43 +0800408static int hinfo_to_pcm_index(struct hda_codec *codec,
409 struct hda_pcm_stream *hinfo)
410{
411 struct hdmi_spec *spec = codec->spec;
412 int pcm_idx;
413
414 for (pcm_idx = 0; pcm_idx < spec->pcm_used; pcm_idx++)
415 if (get_pcm_rec(spec, pcm_idx)->stream == hinfo)
416 return pcm_idx;
417
418 codec_warn(codec, "HDMI: hinfo %p not registered\n", hinfo);
419 return -EINVAL;
420}
421
Takashi Iwai4e76a882014-02-25 12:21:03 +0100422static int hinfo_to_pin_index(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600423 struct hda_pcm_stream *hinfo)
424{
Takashi Iwai4e76a882014-02-25 12:21:03 +0100425 struct hdmi_spec *spec = codec->spec;
Libin Yang6590faa2015-12-16 13:42:41 +0800426 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -0600427 int pin_idx;
428
Libin Yang6590faa2015-12-16 13:42:41 +0800429 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
430 per_pin = get_pin(spec, pin_idx);
Libin Yang2bea2412016-01-12 11:13:26 +0800431 if (per_pin->pcm &&
432 per_pin->pcm->pcm->stream == hinfo)
Stephen Warren384a48d2011-06-01 11:14:21 -0600433 return pin_idx;
Libin Yang6590faa2015-12-16 13:42:41 +0800434 }
Stephen Warren384a48d2011-06-01 11:14:21 -0600435
Libin Yang6590faa2015-12-16 13:42:41 +0800436 codec_dbg(codec, "HDMI: hinfo %p not registered\n", hinfo);
Stephen Warren384a48d2011-06-01 11:14:21 -0600437 return -EINVAL;
438}
439
Takashi Iwai4e76a882014-02-25 12:21:03 +0100440static int cvt_nid_to_cvt_index(struct hda_codec *codec, hda_nid_t cvt_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600441{
Takashi Iwai4e76a882014-02-25 12:21:03 +0100442 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600443 int cvt_idx;
444
445 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100446 if (get_cvt(spec, cvt_idx)->cvt_nid == cvt_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600447 return cvt_idx;
448
Takashi Iwai4e76a882014-02-25 12:21:03 +0100449 codec_warn(codec, "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800450 return -EINVAL;
451}
452
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500453static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
454 struct snd_ctl_elem_info *uinfo)
455{
456 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100457 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200458 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100459 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500460 int pin_idx;
461
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500462 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
463
464 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200465 per_pin = get_pin(spec, pin_idx);
466 eld = &per_pin->sink_eld;
David Henningsson68e03de2013-02-19 16:11:23 +0100467
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200468 mutex_lock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100469 uinfo->count = eld->eld_valid ? eld->eld_size : 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200470 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500471
472 return 0;
473}
474
475static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
476 struct snd_ctl_elem_value *ucontrol)
477{
478 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100479 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200480 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100481 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500482 int pin_idx;
483
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500484 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200485 per_pin = get_pin(spec, pin_idx);
486 eld = &per_pin->sink_eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500487
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200488 mutex_lock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100489 if (eld->eld_size > ARRAY_SIZE(ucontrol->value.bytes.data)) {
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200490 mutex_unlock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100491 snd_BUG();
492 return -EINVAL;
493 }
494
495 memset(ucontrol->value.bytes.data, 0,
496 ARRAY_SIZE(ucontrol->value.bytes.data));
497 if (eld->eld_valid)
498 memcpy(ucontrol->value.bytes.data, eld->eld_buffer,
499 eld->eld_size);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200500 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500501
502 return 0;
503}
504
505static struct snd_kcontrol_new eld_bytes_ctl = {
506 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
507 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
508 .name = "ELD",
509 .info = hdmi_eld_ctl_info,
510 .get = hdmi_eld_ctl_get,
511};
512
513static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
514 int device)
515{
516 struct snd_kcontrol *kctl;
517 struct hdmi_spec *spec = codec->spec;
518 int err;
519
520 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
521 if (!kctl)
522 return -ENOMEM;
523 kctl->private_value = pin_idx;
524 kctl->id.device = device;
525
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100526 err = snd_hda_ctl_add(codec, get_pin(spec, pin_idx)->pin_nid, kctl);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500527 if (err < 0)
528 return err;
529
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100530 get_pin(spec, pin_idx)->eld_ctl = kctl;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500531 return 0;
532}
533
Wu Fengguang079d88c2010-03-08 10:44:23 +0800534#ifdef BE_PARANOID
535static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
536 int *packet_index, int *byte_index)
537{
538 int val;
539
540 val = snd_hda_codec_read(codec, pin_nid, 0,
541 AC_VERB_GET_HDMI_DIP_INDEX, 0);
542
543 *packet_index = val >> 5;
544 *byte_index = val & 0x1f;
545}
546#endif
547
548static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
549 int packet_index, int byte_index)
550{
551 int val;
552
553 val = (packet_index << 5) | (byte_index & 0x1f);
554
555 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
556}
557
558static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
559 unsigned char val)
560{
561 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
562}
563
Stephen Warren384a48d2011-06-01 11:14:21 -0600564static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800565{
Stephen Warren75fae112014-01-30 11:52:16 -0700566 struct hdmi_spec *spec = codec->spec;
567 int pin_out;
568
Wu Fengguang079d88c2010-03-08 10:44:23 +0800569 /* Unmute */
570 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
571 snd_hda_codec_write(codec, pin_nid, 0,
572 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Stephen Warren75fae112014-01-30 11:52:16 -0700573
574 if (spec->dyn_pin_out)
575 /* Disable pin out until stream is active */
576 pin_out = 0;
577 else
578 /* Enable pin out: some machines with GM965 gets broken output
579 * when the pin is disabled or changed while using with HDMI
580 */
581 pin_out = PIN_OUT;
582
Wu Fengguang079d88c2010-03-08 10:44:23 +0800583 snd_hda_codec_write(codec, pin_nid, 0,
Stephen Warren75fae112014-01-30 11:52:16 -0700584 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_out);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800585}
586
Stephen Warren384a48d2011-06-01 11:14:21 -0600587static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800588{
Stephen Warren384a48d2011-06-01 11:14:21 -0600589 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800590 AC_VERB_GET_CVT_CHAN_COUNT, 0);
591}
592
593static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600594 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800595{
Stephen Warren384a48d2011-06-01 11:14:21 -0600596 if (chs != hdmi_get_channel_count(codec, cvt_nid))
597 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800598 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
599}
600
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200601/*
602 * ELD proc files
603 */
604
Jie Yangcd6a6502015-05-27 19:45:45 +0800605#ifdef CONFIG_SND_PROC_FS
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200606static void print_eld_info(struct snd_info_entry *entry,
607 struct snd_info_buffer *buffer)
608{
609 struct hdmi_spec_per_pin *per_pin = entry->private_data;
610
611 mutex_lock(&per_pin->lock);
612 snd_hdmi_print_eld_info(&per_pin->sink_eld, buffer);
613 mutex_unlock(&per_pin->lock);
614}
615
616static void write_eld_info(struct snd_info_entry *entry,
617 struct snd_info_buffer *buffer)
618{
619 struct hdmi_spec_per_pin *per_pin = entry->private_data;
620
621 mutex_lock(&per_pin->lock);
622 snd_hdmi_write_eld_info(&per_pin->sink_eld, buffer);
623 mutex_unlock(&per_pin->lock);
624}
625
626static int eld_proc_new(struct hdmi_spec_per_pin *per_pin, int index)
627{
628 char name[32];
629 struct hda_codec *codec = per_pin->codec;
630 struct snd_info_entry *entry;
631 int err;
632
633 snprintf(name, sizeof(name), "eld#%d.%d", codec->addr, index);
Takashi Iwai6efdd852015-02-27 16:09:22 +0100634 err = snd_card_proc_new(codec->card, name, &entry);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200635 if (err < 0)
636 return err;
637
638 snd_info_set_text_ops(entry, per_pin, print_eld_info);
639 entry->c.text.write = write_eld_info;
640 entry->mode |= S_IWUSR;
641 per_pin->proc_entry = entry;
642
643 return 0;
644}
645
646static void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
647{
Markus Elfring1947a112015-06-28 11:15:28 +0200648 if (!per_pin->codec->bus->shutdown) {
Takashi Iwaic560a672015-04-22 18:26:38 +0200649 snd_info_free_entry(per_pin->proc_entry);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200650 per_pin->proc_entry = NULL;
651 }
652}
653#else
Takashi Iwaib55447a2013-10-21 16:31:45 +0200654static inline int eld_proc_new(struct hdmi_spec_per_pin *per_pin,
655 int index)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200656{
657 return 0;
658}
Takashi Iwaib55447a2013-10-21 16:31:45 +0200659static inline void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200660{
661}
662#endif
Wu Fengguang079d88c2010-03-08 10:44:23 +0800663
664/*
665 * Channel mapping routines
666 */
667
668/*
669 * Compute derived values in channel_allocations[].
670 */
671static void init_channel_allocations(void)
672{
673 int i, j;
674 struct cea_channel_speaker_allocation *p;
675
676 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
677 p = channel_allocations + i;
678 p->channels = 0;
679 p->spk_mask = 0;
680 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
681 if (p->speakers[j]) {
682 p->channels++;
683 p->spk_mask |= p->speakers[j];
684 }
685 }
686}
687
Wang Xingchao72357c72012-09-06 10:02:36 +0800688static int get_channel_allocation_order(int ca)
689{
690 int i;
691
692 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
693 if (channel_allocations[i].ca_index == ca)
694 break;
695 }
696 return i;
697}
698
Wu Fengguang079d88c2010-03-08 10:44:23 +0800699/*
700 * The transformation takes two steps:
701 *
702 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
703 * spk_mask => (channel_allocations[]) => ai->CA
704 *
705 * TODO: it could select the wrong CA from multiple candidates.
706*/
Takashi Iwai79514d42014-06-06 18:04:34 +0200707static int hdmi_channel_allocation(struct hda_codec *codec,
708 struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800709{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800710 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800711 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800712 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800713 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
714
715 /*
716 * CA defaults to 0 for basic stereo audio
717 */
718 if (channels <= 2)
719 return 0;
720
Wu Fengguang079d88c2010-03-08 10:44:23 +0800721 /*
722 * expand ELD's speaker allocation mask
723 *
724 * ELD tells the speaker mask in a compact(paired) form,
725 * expand ELD's notions to match the ones used by Audio InfoFrame.
726 */
727 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
David Henningsson1613d6b2013-02-19 16:11:24 +0100728 if (eld->info.spk_alloc & (1 << i))
Wu Fengguang079d88c2010-03-08 10:44:23 +0800729 spk_mask |= eld_speaker_allocation_bits[i];
730 }
731
732 /* search for the first working match in the CA table */
733 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
734 if (channels == channel_allocations[i].channels &&
735 (spk_mask & channel_allocations[i].spk_mask) ==
736 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800737 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800738 break;
739 }
740 }
741
Anssi Hannula18e39182013-09-01 14:36:47 +0300742 if (!ca) {
743 /* if there was no match, select the regular ALSA channel
744 * allocation with the matching number of channels */
745 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
746 if (channels == channel_allocations[i].channels) {
747 ca = channel_allocations[i].ca_index;
748 break;
749 }
750 }
751 }
752
David Henningsson1613d6b2013-02-19 16:11:24 +0100753 snd_print_channel_allocation(eld->info.spk_alloc, buf, sizeof(buf));
Takashi Iwai79514d42014-06-06 18:04:34 +0200754 codec_dbg(codec, "HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800755 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800756
Wu Fengguang53d7d692010-09-21 14:25:49 +0800757 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800758}
759
760static void hdmi_debug_channel_mapping(struct hda_codec *codec,
761 hda_nid_t pin_nid)
762{
763#ifdef CONFIG_SND_DEBUG_VERBOSE
Anssi Hannula307229d2013-10-24 21:10:34 +0300764 struct hdmi_spec *spec = codec->spec;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800765 int i;
Anssi Hannula307229d2013-10-24 21:10:34 +0300766 int channel;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800767
768 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300769 channel = spec->ops.pin_get_slot_channel(codec, pin_nid, i);
Takashi Iwai4e76a882014-02-25 12:21:03 +0100770 codec_dbg(codec, "HDMI: ASP channel %d => slot %d\n",
Anssi Hannula307229d2013-10-24 21:10:34 +0300771 channel, i);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800772 }
773#endif
774}
775
Takashi Iwaid45e6882012-07-31 11:36:00 +0200776static void hdmi_std_setup_channel_mapping(struct hda_codec *codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800777 hda_nid_t pin_nid,
Wang Xingchao433968d2012-09-06 10:02:37 +0800778 bool non_pcm,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800779 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800780{
Anssi Hannula307229d2013-10-24 21:10:34 +0300781 struct hdmi_spec *spec = codec->spec;
Anssi Hannula90f28002013-10-05 02:25:39 +0300782 struct cea_channel_speaker_allocation *ch_alloc;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800783 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800784 int err;
Wang Xingchao72357c72012-09-06 10:02:36 +0800785 int order;
Wang Xingchao433968d2012-09-06 10:02:37 +0800786 int non_pcm_mapping[8];
Wu Fengguang079d88c2010-03-08 10:44:23 +0800787
Wang Xingchao72357c72012-09-06 10:02:36 +0800788 order = get_channel_allocation_order(ca);
Anssi Hannula90f28002013-10-05 02:25:39 +0300789 ch_alloc = &channel_allocations[order];
Wang Xingchao433968d2012-09-06 10:02:37 +0800790
Wu Fengguang079d88c2010-03-08 10:44:23 +0800791 if (hdmi_channel_mapping[ca][1] == 0) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300792 int hdmi_slot = 0;
793 /* fill actual channel mappings in ALSA channel (i) order */
794 for (i = 0; i < ch_alloc->channels; i++) {
795 while (!ch_alloc->speakers[7 - hdmi_slot] && !WARN_ON(hdmi_slot >= 8))
796 hdmi_slot++; /* skip zero slots */
797
798 hdmi_channel_mapping[ca][i] = (i << 4) | hdmi_slot++;
799 }
800 /* fill the rest of the slots with ALSA channel 0xf */
801 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++)
802 if (!ch_alloc->speakers[7 - hdmi_slot])
803 hdmi_channel_mapping[ca][i++] = (0xf << 4) | hdmi_slot;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800804 }
805
Wang Xingchao433968d2012-09-06 10:02:37 +0800806 if (non_pcm) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300807 for (i = 0; i < ch_alloc->channels; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300808 non_pcm_mapping[i] = (i << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800809 for (; i < 8; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300810 non_pcm_mapping[i] = (0xf << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800811 }
812
Wu Fengguang079d88c2010-03-08 10:44:23 +0800813 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300814 int slotsetup = non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i];
815 int hdmi_slot = slotsetup & 0x0f;
816 int channel = (slotsetup & 0xf0) >> 4;
817 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot, channel);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800818 if (err) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100819 codec_dbg(codec, "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800820 break;
821 }
822 }
Wu Fengguang079d88c2010-03-08 10:44:23 +0800823}
824
Takashi Iwaid45e6882012-07-31 11:36:00 +0200825struct channel_map_table {
826 unsigned char map; /* ALSA API channel map position */
Takashi Iwaid45e6882012-07-31 11:36:00 +0200827 int spk_mask; /* speaker position bit mask */
828};
829
830static struct channel_map_table map_tables[] = {
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300831 { SNDRV_CHMAP_FL, FL },
832 { SNDRV_CHMAP_FR, FR },
833 { SNDRV_CHMAP_RL, RL },
834 { SNDRV_CHMAP_RR, RR },
835 { SNDRV_CHMAP_LFE, LFE },
836 { SNDRV_CHMAP_FC, FC },
837 { SNDRV_CHMAP_RLC, RLC },
838 { SNDRV_CHMAP_RRC, RRC },
839 { SNDRV_CHMAP_RC, RC },
840 { SNDRV_CHMAP_FLC, FLC },
841 { SNDRV_CHMAP_FRC, FRC },
Anssi Hannula94908a32013-11-10 21:24:04 +0200842 { SNDRV_CHMAP_TFL, FLH },
843 { SNDRV_CHMAP_TFR, FRH },
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300844 { SNDRV_CHMAP_FLW, FLW },
845 { SNDRV_CHMAP_FRW, FRW },
846 { SNDRV_CHMAP_TC, TC },
Anssi Hannula94908a32013-11-10 21:24:04 +0200847 { SNDRV_CHMAP_TFC, FCH },
Takashi Iwaid45e6882012-07-31 11:36:00 +0200848 {} /* terminator */
849};
850
851/* from ALSA API channel position to speaker bit mask */
852static int to_spk_mask(unsigned char c)
853{
854 struct channel_map_table *t = map_tables;
855 for (; t->map; t++) {
856 if (t->map == c)
857 return t->spk_mask;
858 }
859 return 0;
860}
861
862/* from ALSA API channel position to CEA slot */
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300863static int to_cea_slot(int ordered_ca, unsigned char pos)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200864{
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300865 int mask = to_spk_mask(pos);
866 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200867
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300868 if (mask) {
869 for (i = 0; i < 8; i++) {
870 if (channel_allocations[ordered_ca].speakers[7 - i] == mask)
871 return i;
872 }
Takashi Iwaid45e6882012-07-31 11:36:00 +0200873 }
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300874
875 return -1;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200876}
877
878/* from speaker bit mask to ALSA API channel position */
879static int spk_to_chmap(int spk)
880{
881 struct channel_map_table *t = map_tables;
882 for (; t->map; t++) {
883 if (t->spk_mask == spk)
884 return t->map;
885 }
886 return 0;
887}
888
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300889/* from CEA slot to ALSA API channel position */
890static int from_cea_slot(int ordered_ca, unsigned char slot)
891{
892 int mask = channel_allocations[ordered_ca].speakers[7 - slot];
893
894 return spk_to_chmap(mask);
895}
896
Takashi Iwaid45e6882012-07-31 11:36:00 +0200897/* get the CA index corresponding to the given ALSA API channel map */
898static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
899{
900 int i, spks = 0, spk_mask = 0;
901
902 for (i = 0; i < chs; i++) {
903 int mask = to_spk_mask(map[i]);
904 if (mask) {
905 spk_mask |= mask;
906 spks++;
907 }
908 }
909
910 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
911 if ((chs == channel_allocations[i].channels ||
912 spks == channel_allocations[i].channels) &&
913 (spk_mask & channel_allocations[i].spk_mask) ==
914 channel_allocations[i].spk_mask)
915 return channel_allocations[i].ca_index;
916 }
917 return -1;
918}
919
920/* set up the channel slots for the given ALSA API channel map */
921static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
922 hda_nid_t pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300923 int chs, unsigned char *map,
924 int ca)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200925{
Anssi Hannula307229d2013-10-24 21:10:34 +0300926 struct hdmi_spec *spec = codec->spec;
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300927 int ordered_ca = get_channel_allocation_order(ca);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300928 int alsa_pos, hdmi_slot;
929 int assignments[8] = {[0 ... 7] = 0xf};
930
931 for (alsa_pos = 0; alsa_pos < chs; alsa_pos++) {
932
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300933 hdmi_slot = to_cea_slot(ordered_ca, map[alsa_pos]);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300934
935 if (hdmi_slot < 0)
936 continue; /* unassigned channel */
937
938 assignments[hdmi_slot] = alsa_pos;
939 }
940
941 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300942 int err;
Anssi Hannula11f7c522013-10-05 02:25:41 +0300943
Anssi Hannula307229d2013-10-24 21:10:34 +0300944 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot,
945 assignments[hdmi_slot]);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200946 if (err)
947 return -EINVAL;
948 }
949 return 0;
950}
951
952/* store ALSA API channel map from the current default map */
953static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
954{
955 int i;
Anssi Hannula56cac412013-10-05 02:25:38 +0300956 int ordered_ca = get_channel_allocation_order(ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200957 for (i = 0; i < 8; i++) {
Anssi Hannula56cac412013-10-05 02:25:38 +0300958 if (i < channel_allocations[ordered_ca].channels)
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300959 map[i] = from_cea_slot(ordered_ca, hdmi_channel_mapping[ca][i] & 0x0f);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200960 else
961 map[i] = 0;
962 }
963}
964
965static void hdmi_setup_channel_mapping(struct hda_codec *codec,
966 hda_nid_t pin_nid, bool non_pcm, int ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200967 int channels, unsigned char *map,
968 bool chmap_set)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200969{
Anssi Hannula20608732013-02-03 17:55:45 +0200970 if (!non_pcm && chmap_set) {
Takashi Iwaid45e6882012-07-31 11:36:00 +0200971 hdmi_manual_setup_channel_mapping(codec, pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300972 channels, map, ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200973 } else {
974 hdmi_std_setup_channel_mapping(codec, pin_nid, non_pcm, ca);
975 hdmi_setup_fake_chmap(map, ca);
976 }
Anssi Hannula980b2492013-10-05 02:25:44 +0300977
978 hdmi_debug_channel_mapping(codec, pin_nid);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200979}
Wu Fengguang079d88c2010-03-08 10:44:23 +0800980
Anssi Hannula307229d2013-10-24 21:10:34 +0300981static int hdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
982 int asp_slot, int channel)
983{
984 return snd_hda_codec_write(codec, pin_nid, 0,
985 AC_VERB_SET_HDMI_CHAN_SLOT,
986 (channel << 4) | asp_slot);
987}
988
989static int hdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
990 int asp_slot)
991{
992 return (snd_hda_codec_read(codec, pin_nid, 0,
993 AC_VERB_GET_HDMI_CHAN_SLOT,
994 asp_slot) & 0xf0) >> 4;
995}
996
Wu Fengguang079d88c2010-03-08 10:44:23 +0800997/*
998 * Audio InfoFrame routines
999 */
1000
1001/*
1002 * Enable Audio InfoFrame Transmission
1003 */
1004static void hdmi_start_infoframe_trans(struct hda_codec *codec,
1005 hda_nid_t pin_nid)
1006{
1007 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
1008 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
1009 AC_DIPXMIT_BEST);
1010}
1011
1012/*
1013 * Disable Audio InfoFrame Transmission
1014 */
1015static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
1016 hda_nid_t pin_nid)
1017{
1018 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
1019 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
1020 AC_DIPXMIT_DISABLE);
1021}
1022
1023static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
1024{
1025#ifdef CONFIG_SND_DEBUG_VERBOSE
1026 int i;
1027 int size;
1028
1029 size = snd_hdmi_get_eld_size(codec, pin_nid);
Takashi Iwai4e76a882014-02-25 12:21:03 +01001030 codec_dbg(codec, "HDMI: ELD buf size is %d\n", size);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001031
1032 for (i = 0; i < 8; i++) {
1033 size = snd_hda_codec_read(codec, pin_nid, 0,
1034 AC_VERB_GET_HDMI_DIP_SIZE, i);
Takashi Iwai4e76a882014-02-25 12:21:03 +01001035 codec_dbg(codec, "HDMI: DIP GP[%d] buf size is %d\n", i, size);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001036 }
1037#endif
1038}
1039
1040static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
1041{
1042#ifdef BE_PARANOID
1043 int i, j;
1044 int size;
1045 int pi, bi;
1046 for (i = 0; i < 8; i++) {
1047 size = snd_hda_codec_read(codec, pin_nid, 0,
1048 AC_VERB_GET_HDMI_DIP_SIZE, i);
1049 if (size == 0)
1050 continue;
1051
1052 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
1053 for (j = 1; j < 1000; j++) {
1054 hdmi_write_dip_byte(codec, pin_nid, 0x0);
1055 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
1056 if (pi != i)
Takashi Iwai4e76a882014-02-25 12:21:03 +01001057 codec_dbg(codec, "dip index %d: %d != %d\n",
Wu Fengguang079d88c2010-03-08 10:44:23 +08001058 bi, pi, i);
1059 if (bi == 0) /* byte index wrapped around */
1060 break;
1061 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01001062 codec_dbg(codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +08001063 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
1064 i, size, j);
1065 }
1066#endif
1067}
1068
Wu Fengguang53d7d692010-09-21 14:25:49 +08001069static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001070{
Wu Fengguang53d7d692010-09-21 14:25:49 +08001071 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001072 u8 sum = 0;
1073 int i;
1074
Wu Fengguang53d7d692010-09-21 14:25:49 +08001075 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001076
Wu Fengguang53d7d692010-09-21 14:25:49 +08001077 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001078 sum += bytes[i];
1079
Wu Fengguang53d7d692010-09-21 14:25:49 +08001080 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001081}
1082
1083static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
1084 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001085 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001086{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001087 int i;
1088
1089 hdmi_debug_dip_size(codec, pin_nid);
1090 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
1091
Wu Fengguang079d88c2010-03-08 10:44:23 +08001092 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001093 for (i = 0; i < size; i++)
1094 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001095}
1096
1097static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001098 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001099{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001100 u8 val;
1101 int i;
1102
1103 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
1104 != AC_DIPXMIT_BEST)
1105 return false;
1106
1107 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001108 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001109 val = snd_hda_codec_read(codec, pin_nid, 0,
1110 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001111 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +08001112 return false;
1113 }
1114
1115 return true;
1116}
1117
Anssi Hannula307229d2013-10-24 21:10:34 +03001118static void hdmi_pin_setup_infoframe(struct hda_codec *codec,
1119 hda_nid_t pin_nid,
1120 int ca, int active_channels,
1121 int conn_type)
1122{
1123 union audio_infoframe ai;
1124
Mengdong Lincaaf5ef2014-03-11 17:12:52 -04001125 memset(&ai, 0, sizeof(ai));
Anssi Hannula307229d2013-10-24 21:10:34 +03001126 if (conn_type == 0) { /* HDMI */
1127 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
1128
1129 hdmi_ai->type = 0x84;
1130 hdmi_ai->ver = 0x01;
1131 hdmi_ai->len = 0x0a;
1132 hdmi_ai->CC02_CT47 = active_channels - 1;
1133 hdmi_ai->CA = ca;
1134 hdmi_checksum_audio_infoframe(hdmi_ai);
1135 } else if (conn_type == 1) { /* DisplayPort */
1136 struct dp_audio_infoframe *dp_ai = &ai.dp;
1137
1138 dp_ai->type = 0x84;
1139 dp_ai->len = 0x1b;
1140 dp_ai->ver = 0x11 << 2;
1141 dp_ai->CC02_CT47 = active_channels - 1;
1142 dp_ai->CA = ca;
1143 } else {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001144 codec_dbg(codec, "HDMI: unknown connection type at pin %d\n",
Anssi Hannula307229d2013-10-24 21:10:34 +03001145 pin_nid);
1146 return;
1147 }
1148
1149 /*
1150 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
1151 * sizeof(*dp_ai) to avoid partial match/update problems when
1152 * the user switches between HDMI/DP monitors.
1153 */
1154 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
1155 sizeof(ai))) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001156 codec_dbg(codec,
1157 "hdmi_pin_setup_infoframe: pin=%d channels=%d ca=0x%02x\n",
Anssi Hannula307229d2013-10-24 21:10:34 +03001158 pin_nid,
1159 active_channels, ca);
1160 hdmi_stop_infoframe_trans(codec, pin_nid);
1161 hdmi_fill_audio_infoframe(codec, pin_nid,
1162 ai.bytes, sizeof(ai));
1163 hdmi_start_infoframe_trans(codec, pin_nid);
1164 }
1165}
1166
Takashi Iwaib0540872013-09-02 12:33:02 +02001167static void hdmi_setup_audio_infoframe(struct hda_codec *codec,
1168 struct hdmi_spec_per_pin *per_pin,
1169 bool non_pcm)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001170{
Anssi Hannula307229d2013-10-24 21:10:34 +03001171 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001172 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwaib0540872013-09-02 12:33:02 +02001173 int channels = per_pin->channels;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001174 int active_channels;
Stephen Warren384a48d2011-06-01 11:14:21 -06001175 struct hdmi_eld *eld;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001176 int ca, ordered_ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001177
Takashi Iwaib0540872013-09-02 12:33:02 +02001178 if (!channels)
1179 return;
1180
Mengdong Lin75dcbe42014-01-08 15:55:32 -05001181 if (is_haswell_plus(codec))
Mengdong Lin58f7d282013-09-04 16:37:12 -04001182 snd_hda_codec_write(codec, pin_nid, 0,
1183 AC_VERB_SET_AMP_GAIN_MUTE,
1184 AMP_OUT_UNMUTE);
1185
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001186 eld = &per_pin->sink_eld;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001187
Takashi Iwaid45e6882012-07-31 11:36:00 +02001188 if (!non_pcm && per_pin->chmap_set)
1189 ca = hdmi_manual_channel_allocation(channels, per_pin->chmap);
1190 else
Takashi Iwai79514d42014-06-06 18:04:34 +02001191 ca = hdmi_channel_allocation(codec, eld, channels);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001192 if (ca < 0)
1193 ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001194
Anssi Hannula1df5a062013-10-05 02:25:40 +03001195 ordered_ca = get_channel_allocation_order(ca);
1196 active_channels = channel_allocations[ordered_ca].channels;
1197
1198 hdmi_set_channel_count(codec, per_pin->cvt_nid, active_channels);
1199
Stephen Warren384a48d2011-06-01 11:14:21 -06001200 /*
Anssi Hannula39edac72013-10-07 19:24:52 +03001201 * always configure channel mapping, it may have been changed by the
1202 * user in the meantime
1203 */
1204 hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
1205 channels, per_pin->chmap,
1206 per_pin->chmap_set);
1207
Anssi Hannula307229d2013-10-24 21:10:34 +03001208 spec->ops.pin_setup_infoframe(codec, pin_nid, ca, active_channels,
1209 eld->info.conn_type);
Wang Xingchao433968d2012-09-06 10:02:37 +08001210
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001211 per_pin->non_pcm = non_pcm;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001212}
1213
Wu Fengguang079d88c2010-03-08 10:44:23 +08001214/*
1215 * Unsolicited events
1216 */
1217
Takashi Iwaiefe47102013-11-07 13:38:23 +01001218static bool hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +02001219
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001220static void check_presence_and_report(struct hda_codec *codec, hda_nid_t nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001221{
1222 struct hdmi_spec *spec = codec->spec;
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001223 int pin_idx = pin_nid_to_pin_index(codec, nid);
1224
David Henningsson20ce9022013-12-04 10:19:41 +08001225 if (pin_idx < 0)
1226 return;
David Henningsson20ce9022013-12-04 10:19:41 +08001227 if (hdmi_present_sense(get_pin(spec, pin_idx), 1))
1228 snd_hda_jack_report_sync(codec);
1229}
1230
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001231static void jack_callback(struct hda_codec *codec,
1232 struct hda_jack_callback *jack)
1233{
1234 check_presence_and_report(codec, jack->tbl->nid);
1235}
1236
David Henningsson20ce9022013-12-04 10:19:41 +08001237static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
1238{
Takashi Iwai3a938972011-10-28 01:16:55 +02001239 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
Takashi Iwai3a938972011-10-28 01:16:55 +02001240 struct hda_jack_tbl *jack;
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001241 int dev_entry = (res & AC_UNSOL_RES_DE) >> AC_UNSOL_RES_DE_SHIFT;
Takashi Iwai3a938972011-10-28 01:16:55 +02001242
1243 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
1244 if (!jack)
1245 return;
Takashi Iwai3a938972011-10-28 01:16:55 +02001246 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001247
Takashi Iwai4e76a882014-02-25 12:21:03 +01001248 codec_dbg(codec,
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001249 "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 +08001250 codec->addr, jack->nid, dev_entry, !!(res & AC_UNSOL_RES_IA),
Fengguang Wufae3d882012-04-10 17:00:35 +08001251 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +08001252
Takashi Iwai1a4f69d2014-09-11 15:22:46 +02001253 check_presence_and_report(codec, jack->nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001254}
1255
1256static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
1257{
1258 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1259 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1260 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
1261 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
1262
Takashi Iwai4e76a882014-02-25 12:21:03 +01001263 codec_info(codec,
Takashi Iwaie9ea8e82012-06-21 11:41:05 +02001264 "HDMI CP event: CODEC=%d TAG=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001265 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +08001266 tag,
1267 subtag,
1268 cp_state,
1269 cp_ready);
1270
1271 /* TODO */
1272 if (cp_state)
1273 ;
1274 if (cp_ready)
1275 ;
1276}
1277
1278
1279static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
1280{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001281 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1282 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1283
Takashi Iwai3a938972011-10-28 01:16:55 +02001284 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001285 codec_dbg(codec, "Unexpected HDMI event tag 0x%x\n", tag);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001286 return;
1287 }
1288
1289 if (subtag == 0)
1290 hdmi_intrinsic_event(codec, res);
1291 else
1292 hdmi_non_intrinsic_event(codec, res);
1293}
1294
Mengdong Lin58f7d282013-09-04 16:37:12 -04001295static void haswell_verify_D0(struct hda_codec *codec,
Wang Xingchao53b434f2013-06-18 10:41:53 +08001296 hda_nid_t cvt_nid, hda_nid_t nid)
David Henningsson83f26ad2013-04-10 12:26:07 +02001297{
Mengdong Lin58f7d282013-09-04 16:37:12 -04001298 int pwr;
David Henningsson83f26ad2013-04-10 12:26:07 +02001299
Wang Xingchao53b434f2013-06-18 10:41:53 +08001300 /* For Haswell, the converter 1/2 may keep in D3 state after bootup,
1301 * thus pins could only choose converter 0 for use. Make sure the
1302 * converters are in correct power state */
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001303 if (!snd_hda_check_power_state(codec, cvt_nid, AC_PWRST_D0))
Wang Xingchao53b434f2013-06-18 10:41:53 +08001304 snd_hda_codec_write(codec, cvt_nid, 0, AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1305
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001306 if (!snd_hda_check_power_state(codec, nid, AC_PWRST_D0)) {
David Henningsson83f26ad2013-04-10 12:26:07 +02001307 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
1308 AC_PWRST_D0);
1309 msleep(40);
1310 pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
1311 pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
Takashi Iwai4e76a882014-02-25 12:21:03 +01001312 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 +02001313 }
David Henningsson83f26ad2013-04-10 12:26:07 +02001314}
1315
Wu Fengguang079d88c2010-03-08 10:44:23 +08001316/*
1317 * Callbacks
1318 */
1319
Takashi Iwai92f10b32010-08-03 14:21:00 +02001320/* HBR should be Non-PCM, 8 channels */
1321#define is_hbr_format(format) \
1322 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
1323
Anssi Hannula307229d2013-10-24 21:10:34 +03001324static int hdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
1325 bool hbr)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001326{
Anssi Hannula307229d2013-10-24 21:10:34 +03001327 int pinctl, new_pinctl;
David Henningsson83f26ad2013-04-10 12:26:07 +02001328
Stephen Warren384a48d2011-06-01 11:14:21 -06001329 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
1330 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001331 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1332
Anssi Hannula13122e62013-11-10 20:56:10 +02001333 if (pinctl < 0)
1334 return hbr ? -EINVAL : 0;
1335
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001336 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Anssi Hannula307229d2013-10-24 21:10:34 +03001337 if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001338 new_pinctl |= AC_PINCTL_EPT_HBR;
1339 else
1340 new_pinctl |= AC_PINCTL_EPT_NATIVE;
1341
Takashi Iwai4e76a882014-02-25 12:21:03 +01001342 codec_dbg(codec,
1343 "hdmi_pin_hbr_setup: NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001344 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001345 pinctl == new_pinctl ? "" : "new-",
1346 new_pinctl);
1347
1348 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -06001349 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001350 AC_VERB_SET_PIN_WIDGET_CONTROL,
1351 new_pinctl);
Anssi Hannula307229d2013-10-24 21:10:34 +03001352 } else if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001353 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03001354
1355 return 0;
1356}
1357
1358static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
1359 hda_nid_t pin_nid, u32 stream_tag, int format)
1360{
1361 struct hdmi_spec *spec = codec->spec;
1362 int err;
1363
Mengdong Lin75dcbe42014-01-08 15:55:32 -05001364 if (is_haswell_plus(codec))
Anssi Hannula307229d2013-10-24 21:10:34 +03001365 haswell_verify_D0(codec, cvt_nid, pin_nid);
1366
1367 err = spec->ops.pin_hbr_setup(codec, pin_nid, is_hbr_format(format));
1368
1369 if (err) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001370 codec_dbg(codec, "hdmi_setup_stream: HBR is not supported\n");
Anssi Hannula307229d2013-10-24 21:10:34 +03001371 return err;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001372 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001373
Stephen Warren384a48d2011-06-01 11:14:21 -06001374 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001375 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001376}
1377
Libin Yang42b29872015-12-16 13:42:42 +08001378/* Try to find an available converter
1379 * If pin_idx is less then zero, just try to find an available converter.
1380 * Otherwise, try to find an available converter and get the cvt mux index
1381 * of the pin.
1382 */
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001383static int hdmi_choose_cvt(struct hda_codec *codec,
1384 int pin_idx, int *cvt_id, int *mux_id)
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001385{
1386 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001387 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001388 struct hdmi_spec_per_cvt *per_cvt = NULL;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001389 int cvt_idx, mux_idx = 0;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001390
Libin Yang42b29872015-12-16 13:42:42 +08001391 /* pin_idx < 0 means no pin will be bound to the converter */
1392 if (pin_idx < 0)
1393 per_pin = NULL;
1394 else
1395 per_pin = get_pin(spec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001396
Stephen Warren384a48d2011-06-01 11:14:21 -06001397 /* Dynamically assign converter to stream */
1398 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001399 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001400
1401 /* Must not already be assigned */
1402 if (per_cvt->assigned)
1403 continue;
Libin Yang42b29872015-12-16 13:42:42 +08001404 if (per_pin == NULL)
1405 break;
Stephen Warren384a48d2011-06-01 11:14:21 -06001406 /* Must be in pin's mux's list of converters */
1407 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
1408 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
1409 break;
1410 /* Not in mux list */
1411 if (mux_idx == per_pin->num_mux_nids)
1412 continue;
1413 break;
1414 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001415
Stephen Warren384a48d2011-06-01 11:14:21 -06001416 /* No free converters */
1417 if (cvt_idx == spec->num_cvts)
Libin Yang42b29872015-12-16 13:42:42 +08001418 return -EBUSY;
Stephen Warren384a48d2011-06-01 11:14:21 -06001419
Libin Yang42b29872015-12-16 13:42:42 +08001420 if (per_pin != NULL)
1421 per_pin->mux_idx = mux_idx;
Mengdong Lin2df67422014-03-20 13:01:06 +08001422
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001423 if (cvt_id)
1424 *cvt_id = cvt_idx;
1425 if (mux_id)
1426 *mux_id = mux_idx;
1427
1428 return 0;
1429}
1430
Mengdong Lin2df67422014-03-20 13:01:06 +08001431/* Assure the pin select the right convetor */
1432static void intel_verify_pin_cvt_connect(struct hda_codec *codec,
1433 struct hdmi_spec_per_pin *per_pin)
1434{
1435 hda_nid_t pin_nid = per_pin->pin_nid;
1436 int mux_idx, curr;
1437
1438 mux_idx = per_pin->mux_idx;
1439 curr = snd_hda_codec_read(codec, pin_nid, 0,
1440 AC_VERB_GET_CONNECT_SEL, 0);
1441 if (curr != mux_idx)
1442 snd_hda_codec_write_cache(codec, pin_nid, 0,
1443 AC_VERB_SET_CONNECT_SEL,
1444 mux_idx);
1445}
1446
Libin Yang42b29872015-12-16 13:42:42 +08001447/* get the mux index for the converter of the pins
1448 * converter's mux index is the same for all pins on Intel platform
1449 */
1450static int intel_cvt_id_to_mux_idx(struct hdmi_spec *spec,
1451 hda_nid_t cvt_nid)
1452{
1453 int i;
1454
1455 for (i = 0; i < spec->num_cvts; i++)
1456 if (spec->cvt_nids[i] == cvt_nid)
1457 return i;
1458 return -EINVAL;
1459}
1460
Mengdong Lin300016b2013-11-04 01:13:13 -05001461/* Intel HDMI workaround to fix audio routing issue:
1462 * For some Intel display codecs, pins share the same connection list.
1463 * So a conveter can be selected by multiple pins and playback on any of these
1464 * pins will generate sound on the external display, because audio flows from
1465 * the same converter to the display pipeline. Also muting one pin may make
1466 * other pins have no sound output.
1467 * So this function assures that an assigned converter for a pin is not selected
1468 * by any other pins.
1469 */
1470static void intel_not_share_assigned_cvt(struct hda_codec *codec,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001471 hda_nid_t pin_nid, int mux_idx)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001472{
1473 struct hdmi_spec *spec = codec->spec;
Takashi Iwai7639a062015-03-03 10:07:24 +01001474 hda_nid_t nid;
Mengdong Linf82d7d12013-09-21 20:34:45 -04001475 int cvt_idx, curr;
1476 struct hdmi_spec_per_cvt *per_cvt;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001477
Mengdong Linf82d7d12013-09-21 20:34:45 -04001478 /* configure all pins, including "no physical connection" ones */
Takashi Iwai7639a062015-03-03 10:07:24 +01001479 for_each_hda_codec_node(nid, codec) {
Mengdong Linf82d7d12013-09-21 20:34:45 -04001480 unsigned int wid_caps = get_wcaps(codec, nid);
1481 unsigned int wid_type = get_wcaps_type(wid_caps);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001482
Mengdong Linf82d7d12013-09-21 20:34:45 -04001483 if (wid_type != AC_WID_PIN)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001484 continue;
1485
Mengdong Linf82d7d12013-09-21 20:34:45 -04001486 if (nid == pin_nid)
1487 continue;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001488
Mengdong Linf82d7d12013-09-21 20:34:45 -04001489 curr = snd_hda_codec_read(codec, nid, 0,
1490 AC_VERB_GET_CONNECT_SEL, 0);
1491 if (curr != mux_idx)
1492 continue;
1493
1494 /* choose an unassigned converter. The conveters in the
1495 * connection list are in the same order as in the codec.
1496 */
1497 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
1498 per_cvt = get_cvt(spec, cvt_idx);
1499 if (!per_cvt->assigned) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001500 codec_dbg(codec,
1501 "choose cvt %d for pin nid %d\n",
Mengdong Linf82d7d12013-09-21 20:34:45 -04001502 cvt_idx, nid);
1503 snd_hda_codec_write_cache(codec, nid, 0,
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001504 AC_VERB_SET_CONNECT_SEL,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001505 cvt_idx);
1506 break;
1507 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001508 }
1509 }
1510}
1511
Libin Yang42b29872015-12-16 13:42:42 +08001512/* A wrapper of intel_not_share_asigned_cvt() */
1513static void intel_not_share_assigned_cvt_nid(struct hda_codec *codec,
1514 hda_nid_t pin_nid, hda_nid_t cvt_nid)
1515{
1516 int mux_idx;
1517 struct hdmi_spec *spec = codec->spec;
1518
1519 if (!is_haswell_plus(codec) && !is_valleyview_plus(codec))
1520 return;
1521
1522 /* On Intel platform, the mapping of converter nid to
1523 * mux index of the pins are always the same.
1524 * The pin nid may be 0, this means all pins will not
1525 * share the converter.
1526 */
1527 mux_idx = intel_cvt_id_to_mux_idx(spec, cvt_nid);
1528 if (mux_idx >= 0)
1529 intel_not_share_assigned_cvt(codec, pin_nid, mux_idx);
1530}
1531
1532/* called in hdmi_pcm_open when no pin is assigned to the PCM
1533 * in dyn_pcm_assign mode.
1534 */
1535static int hdmi_pcm_open_no_pin(struct hda_pcm_stream *hinfo,
1536 struct hda_codec *codec,
1537 struct snd_pcm_substream *substream)
1538{
1539 struct hdmi_spec *spec = codec->spec;
1540 struct snd_pcm_runtime *runtime = substream->runtime;
Libin Yangac983792015-12-16 16:48:16 +08001541 int cvt_idx, pcm_idx;
Libin Yang42b29872015-12-16 13:42:42 +08001542 struct hdmi_spec_per_cvt *per_cvt = NULL;
1543 int err;
1544
Libin Yangac983792015-12-16 16:48:16 +08001545 pcm_idx = hinfo_to_pcm_index(codec, hinfo);
1546 if (pcm_idx < 0)
1547 return -EINVAL;
1548
Libin Yang42b29872015-12-16 13:42:42 +08001549 err = hdmi_choose_cvt(codec, -1, &cvt_idx, NULL);
1550 if (err)
1551 return err;
1552
1553 per_cvt = get_cvt(spec, cvt_idx);
1554 per_cvt->assigned = 1;
1555 hinfo->nid = per_cvt->cvt_nid;
1556
1557 intel_not_share_assigned_cvt_nid(codec, 0, per_cvt->cvt_nid);
1558
Libin Yangac983792015-12-16 16:48:16 +08001559 set_bit(pcm_idx, &spec->pcm_in_use);
Libin Yang42b29872015-12-16 13:42:42 +08001560 /* todo: setup spdif ctls assign */
1561
1562 /* Initially set the converter's capabilities */
1563 hinfo->channels_min = per_cvt->channels_min;
1564 hinfo->channels_max = per_cvt->channels_max;
1565 hinfo->rates = per_cvt->rates;
1566 hinfo->formats = per_cvt->formats;
1567 hinfo->maxbps = per_cvt->maxbps;
1568
1569 /* Store the updated parameters */
1570 runtime->hw.channels_min = hinfo->channels_min;
1571 runtime->hw.channels_max = hinfo->channels_max;
1572 runtime->hw.formats = hinfo->formats;
1573 runtime->hw.rates = hinfo->rates;
1574
1575 snd_pcm_hw_constraint_step(substream->runtime, 0,
1576 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
1577 return 0;
1578}
1579
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001580/*
1581 * HDA PCM callbacks
1582 */
1583static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
1584 struct hda_codec *codec,
1585 struct snd_pcm_substream *substream)
1586{
1587 struct hdmi_spec *spec = codec->spec;
1588 struct snd_pcm_runtime *runtime = substream->runtime;
Libin Yang2bf3c852015-12-16 13:42:43 +08001589 int pin_idx, cvt_idx, pcm_idx, mux_idx = 0;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001590 struct hdmi_spec_per_pin *per_pin;
1591 struct hdmi_eld *eld;
1592 struct hdmi_spec_per_cvt *per_cvt = NULL;
1593 int err;
1594
1595 /* Validate hinfo */
Libin Yang2bf3c852015-12-16 13:42:43 +08001596 pcm_idx = hinfo_to_pcm_index(codec, hinfo);
1597 if (pcm_idx < 0)
1598 return -EINVAL;
1599
Libin Yang42b29872015-12-16 13:42:42 +08001600 mutex_lock(&spec->pcm_lock);
Takashi Iwai4e76a882014-02-25 12:21:03 +01001601 pin_idx = hinfo_to_pin_index(codec, hinfo);
Libin Yang42b29872015-12-16 13:42:42 +08001602 if (!spec->dyn_pcm_assign) {
1603 if (snd_BUG_ON(pin_idx < 0)) {
1604 mutex_unlock(&spec->pcm_lock);
1605 return -EINVAL;
1606 }
1607 } else {
1608 /* no pin is assigned to the PCM
1609 * PA need pcm open successfully when probe
1610 */
1611 if (pin_idx < 0) {
1612 err = hdmi_pcm_open_no_pin(hinfo, codec, substream);
1613 mutex_unlock(&spec->pcm_lock);
1614 return err;
1615 }
1616 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001617
1618 err = hdmi_choose_cvt(codec, pin_idx, &cvt_idx, &mux_idx);
Libin Yang42b29872015-12-16 13:42:42 +08001619 if (err < 0) {
1620 mutex_unlock(&spec->pcm_lock);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001621 return err;
Libin Yang42b29872015-12-16 13:42:42 +08001622 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001623
1624 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001625 /* Claim converter */
1626 per_cvt->assigned = 1;
Libin Yang42b29872015-12-16 13:42:42 +08001627
Libin Yangac983792015-12-16 16:48:16 +08001628 set_bit(pcm_idx, &spec->pcm_in_use);
Libin Yang42b29872015-12-16 13:42:42 +08001629 per_pin = get_pin(spec, pin_idx);
Anssi Hannula1df5a062013-10-05 02:25:40 +03001630 per_pin->cvt_nid = per_cvt->cvt_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001631 hinfo->nid = per_cvt->cvt_nid;
1632
Takashi Iwaibddee962013-06-18 16:14:22 +02001633 snd_hda_codec_write_cache(codec, per_pin->pin_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -06001634 AC_VERB_SET_CONNECT_SEL,
1635 mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001636
1637 /* configure unused pins to choose other converters */
Libin Yangca2e7222014-08-19 16:20:12 +08001638 if (is_haswell_plus(codec) || is_valleyview_plus(codec))
Mengdong Lin300016b2013-11-04 01:13:13 -05001639 intel_not_share_assigned_cvt(codec, per_pin->pin_nid, mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001640
Libin Yang2bf3c852015-12-16 13:42:43 +08001641 snd_hda_spdif_ctls_assign(codec, pcm_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001642
Stephen Warren2def8172011-06-01 11:14:20 -06001643 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -06001644 hinfo->channels_min = per_cvt->channels_min;
1645 hinfo->channels_max = per_cvt->channels_max;
1646 hinfo->rates = per_cvt->rates;
1647 hinfo->formats = per_cvt->formats;
1648 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -06001649
Libin Yang42b29872015-12-16 13:42:42 +08001650 eld = &per_pin->sink_eld;
Stephen Warren384a48d2011-06-01 11:14:21 -06001651 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -06001652 if (!static_hdmi_pcm && eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001653 snd_hdmi_eld_update_pcm_info(&eld->info, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001654 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001655 !hinfo->rates || !hinfo->formats) {
1656 per_cvt->assigned = 0;
1657 hinfo->nid = 0;
Libin Yang2bf3c852015-12-16 13:42:43 +08001658 snd_hda_spdif_ctls_unassign(codec, pcm_idx);
Libin Yang42b29872015-12-16 13:42:42 +08001659 mutex_unlock(&spec->pcm_lock);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001660 return -ENODEV;
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001661 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001662 }
Stephen Warren2def8172011-06-01 11:14:20 -06001663
Libin Yang42b29872015-12-16 13:42:42 +08001664 mutex_unlock(&spec->pcm_lock);
Stephen Warren2def8172011-06-01 11:14:20 -06001665 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +01001666 runtime->hw.channels_min = hinfo->channels_min;
1667 runtime->hw.channels_max = hinfo->channels_max;
1668 runtime->hw.formats = hinfo->formats;
1669 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +01001670
1671 snd_pcm_hw_constraint_step(substream->runtime, 0,
1672 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001673 return 0;
1674}
1675
1676/*
Wu Fengguang079d88c2010-03-08 10:44:23 +08001677 * HDA/HDMI auto parsing
1678 */
Stephen Warren384a48d2011-06-01 11:14:21 -06001679static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001680{
1681 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001682 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001683 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001684
1685 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001686 codec_warn(codec,
1687 "HDMI: pin %d wcaps %#x does not support connection list\n",
Wu Fengguang079d88c2010-03-08 10:44:23 +08001688 pin_nid, get_wcaps(codec, pin_nid));
1689 return -EINVAL;
1690 }
1691
Stephen Warren384a48d2011-06-01 11:14:21 -06001692 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
1693 per_pin->mux_nids,
1694 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001695
1696 return 0;
1697}
1698
Libin Yanga76056f2015-12-16 16:48:15 +08001699static int hdmi_find_pcm_slot(struct hdmi_spec *spec,
1700 struct hdmi_spec_per_pin *per_pin)
1701{
1702 int i;
1703
1704 /* try the prefer PCM */
1705 if (!test_bit(per_pin->pin_nid_idx, &spec->pcm_bitmap))
1706 return per_pin->pin_nid_idx;
1707
1708 /* have a second try; check the "reserved area" over num_pins */
1709 for (i = spec->num_pins; i < spec->pcm_used; i++) {
1710 if (!test_bit(i, &spec->pcm_bitmap))
1711 return i;
1712 }
1713
1714 /* the last try; check the empty slots in pins */
1715 for (i = 0; i < spec->num_pins; i++) {
1716 if (!test_bit(i, &spec->pcm_bitmap))
1717 return i;
1718 }
1719 return -EBUSY;
1720}
1721
1722static void hdmi_attach_hda_pcm(struct hdmi_spec *spec,
1723 struct hdmi_spec_per_pin *per_pin)
1724{
1725 int idx;
1726
1727 /* pcm already be attached to the pin */
1728 if (per_pin->pcm)
1729 return;
1730 idx = hdmi_find_pcm_slot(spec, per_pin);
1731 if (idx == -ENODEV)
1732 return;
1733 per_pin->pcm_idx = idx;
Libin Yang2bea2412016-01-12 11:13:26 +08001734 per_pin->pcm = get_hdmi_pcm(spec, idx);
Libin Yanga76056f2015-12-16 16:48:15 +08001735 set_bit(idx, &spec->pcm_bitmap);
1736}
1737
1738static void hdmi_detach_hda_pcm(struct hdmi_spec *spec,
1739 struct hdmi_spec_per_pin *per_pin)
1740{
1741 int idx;
1742
1743 /* pcm already be detached from the pin */
1744 if (!per_pin->pcm)
1745 return;
1746 idx = per_pin->pcm_idx;
1747 per_pin->pcm_idx = -1;
1748 per_pin->pcm = NULL;
1749 if (idx >= 0 && idx < spec->pcm_used)
1750 clear_bit(idx, &spec->pcm_bitmap);
1751}
1752
Libin Yangac983792015-12-16 16:48:16 +08001753static int hdmi_get_pin_cvt_mux(struct hdmi_spec *spec,
1754 struct hdmi_spec_per_pin *per_pin, hda_nid_t cvt_nid)
1755{
1756 int mux_idx;
1757
1758 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
1759 if (per_pin->mux_nids[mux_idx] == cvt_nid)
1760 break;
1761 return mux_idx;
1762}
1763
1764static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid);
1765
1766static void hdmi_pcm_setup_pin(struct hdmi_spec *spec,
1767 struct hdmi_spec_per_pin *per_pin)
1768{
1769 struct hda_codec *codec = per_pin->codec;
1770 struct hda_pcm *pcm;
1771 struct hda_pcm_stream *hinfo;
1772 struct snd_pcm_substream *substream;
1773 int mux_idx;
1774 bool non_pcm;
1775
1776 if (per_pin->pcm_idx >= 0 && per_pin->pcm_idx < spec->pcm_used)
Libin Yang2bea2412016-01-12 11:13:26 +08001777 pcm = get_pcm_rec(spec, per_pin->pcm_idx);
Libin Yangac983792015-12-16 16:48:16 +08001778 else
1779 return;
1780 if (!test_bit(per_pin->pcm_idx, &spec->pcm_in_use))
1781 return;
1782
1783 /* hdmi audio only uses playback and one substream */
1784 hinfo = pcm->stream;
1785 substream = pcm->pcm->streams[0].substream;
1786
1787 per_pin->cvt_nid = hinfo->nid;
1788
1789 mux_idx = hdmi_get_pin_cvt_mux(spec, per_pin, hinfo->nid);
1790 if (mux_idx < per_pin->num_mux_nids)
1791 snd_hda_codec_write_cache(codec, per_pin->pin_nid, 0,
1792 AC_VERB_SET_CONNECT_SEL,
1793 mux_idx);
1794 snd_hda_spdif_ctls_assign(codec, per_pin->pcm_idx, hinfo->nid);
1795
1796 non_pcm = check_non_pcm_per_cvt(codec, hinfo->nid);
1797 if (substream->runtime)
1798 per_pin->channels = substream->runtime->channels;
1799 per_pin->setup = true;
1800 per_pin->mux_idx = mux_idx;
1801
1802 hdmi_setup_audio_infoframe(codec, per_pin, non_pcm);
1803}
1804
1805static void hdmi_pcm_reset_pin(struct hdmi_spec *spec,
1806 struct hdmi_spec_per_pin *per_pin)
1807{
1808 if (per_pin->pcm_idx >= 0 && per_pin->pcm_idx < spec->pcm_used)
1809 snd_hda_spdif_ctls_unassign(per_pin->codec, per_pin->pcm_idx);
1810
1811 per_pin->chmap_set = false;
1812 memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
1813
1814 per_pin->setup = false;
1815 per_pin->channels = 0;
1816}
1817
Takashi Iwaie90247f2015-11-13 09:12:12 +01001818/* update per_pin ELD from the given new ELD;
1819 * setup info frame and notification accordingly
1820 */
1821static void update_eld(struct hda_codec *codec,
1822 struct hdmi_spec_per_pin *per_pin,
1823 struct hdmi_eld *eld)
1824{
1825 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
Libin Yanga76056f2015-12-16 16:48:15 +08001826 struct hdmi_spec *spec = codec->spec;
Takashi Iwaie90247f2015-11-13 09:12:12 +01001827 bool old_eld_valid = pin_eld->eld_valid;
1828 bool eld_changed;
1829
Libin Yanga76056f2015-12-16 16:48:15 +08001830 if (spec->dyn_pcm_assign) {
Libin Yangac983792015-12-16 16:48:16 +08001831 if (eld->eld_valid) {
Libin Yanga76056f2015-12-16 16:48:15 +08001832 hdmi_attach_hda_pcm(spec, per_pin);
Libin Yangac983792015-12-16 16:48:16 +08001833 hdmi_pcm_setup_pin(spec, per_pin);
1834 } else {
1835 hdmi_pcm_reset_pin(spec, per_pin);
Libin Yanga76056f2015-12-16 16:48:15 +08001836 hdmi_detach_hda_pcm(spec, per_pin);
Libin Yangac983792015-12-16 16:48:16 +08001837 }
Libin Yanga76056f2015-12-16 16:48:15 +08001838 }
1839
Takashi Iwaie90247f2015-11-13 09:12:12 +01001840 if (eld->eld_valid)
1841 snd_hdmi_show_eld(codec, &eld->info);
1842
1843 eld_changed = (pin_eld->eld_valid != eld->eld_valid);
1844 if (eld->eld_valid && pin_eld->eld_valid)
1845 if (pin_eld->eld_size != eld->eld_size ||
1846 memcmp(pin_eld->eld_buffer, eld->eld_buffer,
1847 eld->eld_size) != 0)
1848 eld_changed = true;
1849
1850 pin_eld->eld_valid = eld->eld_valid;
1851 pin_eld->eld_size = eld->eld_size;
1852 if (eld->eld_valid)
1853 memcpy(pin_eld->eld_buffer, eld->eld_buffer, eld->eld_size);
1854 pin_eld->info = eld->info;
1855
1856 /*
1857 * Re-setup pin and infoframe. This is needed e.g. when
1858 * - sink is first plugged-in
1859 * - transcoder can change during stream playback on Haswell
1860 * and this can make HW reset converter selection on a pin.
1861 */
1862 if (eld->eld_valid && !old_eld_valid && per_pin->setup) {
1863 if (is_haswell_plus(codec) || is_valleyview_plus(codec)) {
1864 intel_verify_pin_cvt_connect(codec, per_pin);
1865 intel_not_share_assigned_cvt(codec, per_pin->pin_nid,
1866 per_pin->mux_idx);
1867 }
1868
1869 hdmi_setup_audio_infoframe(codec, per_pin, per_pin->non_pcm);
1870 }
1871
1872 if (eld_changed)
1873 snd_ctl_notify(codec->card,
1874 SNDRV_CTL_EVENT_MASK_VALUE |
1875 SNDRV_CTL_EVENT_MASK_INFO,
1876 &per_pin->eld_ctl->id);
1877}
1878
Takashi Iwai788d4412015-11-12 15:36:13 +01001879/* update ELD and jack state via HD-audio verbs */
1880static bool hdmi_present_sense_via_verbs(struct hdmi_spec_per_pin *per_pin,
1881 int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001882{
David Henningsson464837a2013-11-07 13:38:25 +01001883 struct hda_jack_tbl *jack;
Wu Fengguang744626d2011-11-16 16:29:47 +08001884 struct hda_codec *codec = per_pin->codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001885 struct hdmi_spec *spec = codec->spec;
1886 struct hdmi_eld *eld = &spec->temp_eld;
1887 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +08001888 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -06001889 /*
1890 * Always execute a GetPinSense verb here, even when called from
1891 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
1892 * response's PD bit is not the real PD value, but indicates that
1893 * the real PD value changed. An older version of the HD-audio
1894 * specification worked this way. Hence, we just ignore the data in
1895 * the unsolicited response to avoid custom WARs.
1896 */
David Henningssonda4a7a32013-12-18 10:46:04 +01001897 int present;
Takashi Iwaiefe47102013-11-07 13:38:23 +01001898 bool ret;
Takashi Iwai9a5e5232015-12-10 14:35:09 +01001899 bool do_repoll = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001900
Takashi Iwai664c7152015-04-08 11:43:14 +02001901 snd_hda_power_up_pm(codec);
David Henningssonda4a7a32013-12-18 10:46:04 +01001902 present = snd_hda_pin_sense(codec, pin_nid);
1903
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001904 mutex_lock(&per_pin->lock);
David Henningsson4bd038f2013-02-19 16:11:25 +01001905 pin_eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
1906 if (pin_eld->monitor_present)
1907 eld->eld_valid = !!(present & AC_PINSENSE_ELDV);
1908 else
1909 eld->eld_valid = false;
Stephen Warren5d44f922011-05-24 17:11:17 -06001910
Takashi Iwai4e76a882014-02-25 12:21:03 +01001911 codec_dbg(codec,
Stephen Warren384a48d2011-06-01 11:14:21 -06001912 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Mengdong Lin10250912013-03-28 05:21:28 -04001913 codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -06001914
David Henningsson4bd038f2013-02-19 16:11:25 +01001915 if (eld->eld_valid) {
Anssi Hannula307229d2013-10-24 21:10:34 +03001916 if (spec->ops.pin_get_eld(codec, pin_nid, eld->eld_buffer,
David Henningsson1613d6b2013-02-19 16:11:24 +01001917 &eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001918 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001919 else {
Takashi Iwai79514d42014-06-06 18:04:34 +02001920 if (snd_hdmi_parse_eld(codec, &eld->info, eld->eld_buffer,
David Henningsson1613d6b2013-02-19 16:11:24 +01001921 eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001922 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001923 }
Takashi Iwai9a5e5232015-12-10 14:35:09 +01001924 if (!eld->eld_valid && repoll)
1925 do_repoll = true;
Wu Fengguang744626d2011-11-16 16:29:47 +08001926 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001927
Takashi Iwai9a5e5232015-12-10 14:35:09 +01001928 if (do_repoll)
Takashi Iwaie90247f2015-11-13 09:12:12 +01001929 schedule_delayed_work(&per_pin->work, msecs_to_jiffies(300));
1930 else
1931 update_eld(codec, per_pin, eld);
Anssi Hannula6acce402014-10-19 19:25:19 +03001932
Takashi Iwaiaff747eb2013-11-07 16:39:37 +01001933 ret = !repoll || !pin_eld->monitor_present || pin_eld->eld_valid;
David Henningsson464837a2013-11-07 13:38:25 +01001934
1935 jack = snd_hda_jack_tbl_get(codec, pin_nid);
1936 if (jack)
1937 jack->block_report = !ret;
1938
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001939 mutex_unlock(&per_pin->lock);
Takashi Iwai664c7152015-04-08 11:43:14 +02001940 snd_hda_power_down_pm(codec);
Takashi Iwaiefe47102013-11-07 13:38:23 +01001941 return ret;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001942}
1943
Takashi Iwai788d4412015-11-12 15:36:13 +01001944/* update ELD and jack state via audio component */
1945static void sync_eld_via_acomp(struct hda_codec *codec,
1946 struct hdmi_spec_per_pin *per_pin)
1947{
Takashi Iwai788d4412015-11-12 15:36:13 +01001948 struct hdmi_spec *spec = codec->spec;
1949 struct hdmi_eld *eld = &spec->temp_eld;
Libin Yang25e4abb2016-01-12 11:13:27 +08001950 struct snd_jack *jack = NULL;
Takashi Iwai788d4412015-11-12 15:36:13 +01001951 int size;
1952
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01001953 mutex_lock(&per_pin->lock);
1954 size = snd_hdac_acomp_get_eld(&codec->bus->core, per_pin->pin_nid,
1955 &eld->monitor_present, eld->eld_buffer,
1956 ELD_MAX_SIZE);
1957 if (size < 0)
1958 goto unlock;
1959 if (size > 0) {
1960 size = min(size, ELD_MAX_SIZE);
1961 if (snd_hdmi_parse_eld(codec, &eld->info,
1962 eld->eld_buffer, size) < 0)
1963 size = -EINVAL;
Takashi Iwai788d4412015-11-12 15:36:13 +01001964 }
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01001965
1966 if (size > 0) {
1967 eld->eld_valid = true;
1968 eld->eld_size = size;
1969 } else {
1970 eld->eld_valid = false;
1971 eld->eld_size = 0;
1972 }
1973
Libin Yang25e4abb2016-01-12 11:13:27 +08001974 /* pcm_idx >=0 before update_eld() means it is in monitor
1975 * disconnected event. Jack must be fetched before update_eld()
1976 */
1977 if (per_pin->pcm_idx >= 0)
1978 jack = spec->pcm_rec[per_pin->pcm_idx].jack;
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01001979 update_eld(codec, per_pin, eld);
Libin Yang25e4abb2016-01-12 11:13:27 +08001980 if (jack == NULL && per_pin->pcm_idx >= 0)
1981 jack = spec->pcm_rec[per_pin->pcm_idx].jack;
1982 if (jack == NULL)
1983 goto unlock;
1984 snd_jack_report(jack,
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01001985 eld->monitor_present ? SND_JACK_AVOUT : 0);
1986 unlock:
1987 mutex_unlock(&per_pin->lock);
Takashi Iwai788d4412015-11-12 15:36:13 +01001988}
1989
1990static bool hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
1991{
1992 struct hda_codec *codec = per_pin->codec;
Libin Yanga76056f2015-12-16 16:48:15 +08001993 struct hdmi_spec *spec = codec->spec;
1994 int ret;
Takashi Iwai788d4412015-11-12 15:36:13 +01001995
Libin Yanga76056f2015-12-16 16:48:15 +08001996 mutex_lock(&spec->pcm_lock);
Takashi Iwai788d4412015-11-12 15:36:13 +01001997 if (codec_has_acomp(codec)) {
1998 sync_eld_via_acomp(codec, per_pin);
Libin Yanga76056f2015-12-16 16:48:15 +08001999 ret = false; /* don't call snd_hda_jack_report_sync() */
Takashi Iwai788d4412015-11-12 15:36:13 +01002000 } else {
Libin Yanga76056f2015-12-16 16:48:15 +08002001 ret = hdmi_present_sense_via_verbs(per_pin, repoll);
Takashi Iwai788d4412015-11-12 15:36:13 +01002002 }
Libin Yanga76056f2015-12-16 16:48:15 +08002003 mutex_unlock(&spec->pcm_lock);
2004
2005 return ret;
Takashi Iwai788d4412015-11-12 15:36:13 +01002006}
2007
Wu Fengguang744626d2011-11-16 16:29:47 +08002008static void hdmi_repoll_eld(struct work_struct *work)
2009{
2010 struct hdmi_spec_per_pin *per_pin =
2011 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
2012
Wu Fengguangc6e84532011-11-18 16:59:32 -06002013 if (per_pin->repoll_count++ > 6)
2014 per_pin->repoll_count = 0;
2015
Takashi Iwaiefe47102013-11-07 13:38:23 +01002016 if (hdmi_present_sense(per_pin, per_pin->repoll_count))
2017 snd_hda_jack_report_sync(per_pin->codec);
Wu Fengguang744626d2011-11-16 16:29:47 +08002018}
2019
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002020static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
2021 hda_nid_t nid);
2022
Wu Fengguang079d88c2010-03-08 10:44:23 +08002023static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
2024{
2025 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002026 unsigned int caps, config;
2027 int pin_idx;
2028 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02002029 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08002030
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01002031 caps = snd_hda_query_pin_caps(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06002032 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
2033 return 0;
2034
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01002035 config = snd_hda_codec_get_pincfg(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06002036 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
2037 return 0;
2038
Mengdong Lin75dcbe42014-01-08 15:55:32 -05002039 if (is_haswell_plus(codec))
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002040 intel_haswell_fixup_connect_list(codec, pin_nid);
2041
Stephen Warren384a48d2011-06-01 11:14:21 -06002042 pin_idx = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002043 per_pin = snd_array_new(&spec->pins);
2044 if (!per_pin)
2045 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06002046
2047 per_pin->pin_nid = pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02002048 per_pin->non_pcm = false;
Libin Yanga76056f2015-12-16 16:48:15 +08002049 if (spec->dyn_pcm_assign)
2050 per_pin->pcm_idx = -1;
Libin Yang2bea2412016-01-12 11:13:26 +08002051 else {
2052 per_pin->pcm = get_hdmi_pcm(spec, pin_idx);
Libin Yanga76056f2015-12-16 16:48:15 +08002053 per_pin->pcm_idx = pin_idx;
Libin Yang2bea2412016-01-12 11:13:26 +08002054 }
Libin Yanga76056f2015-12-16 16:48:15 +08002055 per_pin->pin_nid_idx = pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +08002056
Stephen Warren384a48d2011-06-01 11:14:21 -06002057 err = hdmi_read_pin_conn(codec, pin_idx);
2058 if (err < 0)
2059 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08002060
Wu Fengguang079d88c2010-03-08 10:44:23 +08002061 spec->num_pins++;
2062
Stephen Warren384a48d2011-06-01 11:14:21 -06002063 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08002064}
2065
Stephen Warren384a48d2011-06-01 11:14:21 -06002066static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08002067{
2068 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002069 struct hdmi_spec_per_cvt *per_cvt;
2070 unsigned int chans;
2071 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08002072
Stephen Warren384a48d2011-06-01 11:14:21 -06002073 chans = get_wcaps(codec, cvt_nid);
2074 chans = get_wcaps_channels(chans);
2075
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002076 per_cvt = snd_array_new(&spec->cvts);
2077 if (!per_cvt)
2078 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06002079
2080 per_cvt->cvt_nid = cvt_nid;
2081 per_cvt->channels_min = 2;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002082 if (chans <= 16) {
Stephen Warren384a48d2011-06-01 11:14:21 -06002083 per_cvt->channels_max = chans;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002084 if (chans > spec->channels_max)
2085 spec->channels_max = chans;
2086 }
Stephen Warren384a48d2011-06-01 11:14:21 -06002087
2088 err = snd_hda_query_supported_pcm(codec, cvt_nid,
2089 &per_cvt->rates,
2090 &per_cvt->formats,
2091 &per_cvt->maxbps);
2092 if (err < 0)
2093 return err;
2094
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002095 if (spec->num_cvts < ARRAY_SIZE(spec->cvt_nids))
2096 spec->cvt_nids[spec->num_cvts] = cvt_nid;
2097 spec->num_cvts++;
Wu Fengguang079d88c2010-03-08 10:44:23 +08002098
2099 return 0;
2100}
2101
2102static int hdmi_parse_codec(struct hda_codec *codec)
2103{
2104 hda_nid_t nid;
2105 int i, nodes;
2106
Takashi Iwai7639a062015-03-03 10:07:24 +01002107 nodes = snd_hda_get_sub_nodes(codec, codec->core.afg, &nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08002108 if (!nid || nodes < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002109 codec_warn(codec, "HDMI: failed to get afg sub nodes\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +08002110 return -EINVAL;
2111 }
2112
2113 for (i = 0; i < nodes; i++, nid++) {
2114 unsigned int caps;
2115 unsigned int type;
2116
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01002117 caps = get_wcaps(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08002118 type = get_wcaps_type(caps);
2119
2120 if (!(caps & AC_WCAP_DIGITAL))
2121 continue;
2122
2123 switch (type) {
2124 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06002125 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08002126 break;
2127 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08002128 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08002129 break;
2130 }
2131 }
2132
Wu Fengguang079d88c2010-03-08 10:44:23 +08002133 return 0;
2134}
2135
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002136/*
2137 */
Takashi Iwai1a6003b2012-09-06 17:42:08 +02002138static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
2139{
2140 struct hda_spdif_out *spdif;
2141 bool non_pcm;
2142
2143 mutex_lock(&codec->spdif_mutex);
2144 spdif = snd_hda_spdif_out_of_nid(codec, cvt_nid);
2145 non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO);
2146 mutex_unlock(&codec->spdif_mutex);
2147 return non_pcm;
2148}
2149
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002150/*
2151 * HDMI callbacks
2152 */
2153
2154static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2155 struct hda_codec *codec,
2156 unsigned int stream_tag,
2157 unsigned int format,
2158 struct snd_pcm_substream *substream)
2159{
Stephen Warren384a48d2011-06-01 11:14:21 -06002160 hda_nid_t cvt_nid = hinfo->nid;
2161 struct hdmi_spec *spec = codec->spec;
Libin Yang42b29872015-12-16 13:42:42 +08002162 int pin_idx;
2163 struct hdmi_spec_per_pin *per_pin;
2164 hda_nid_t pin_nid;
Libin Yangddd621f2015-09-02 14:11:40 +08002165 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02002166 bool non_pcm;
Stephen Warren75fae112014-01-30 11:52:16 -07002167 int pinctl;
Libin Yang42b29872015-12-16 13:42:42 +08002168 int err;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02002169
Libin Yang42b29872015-12-16 13:42:42 +08002170 mutex_lock(&spec->pcm_lock);
2171 pin_idx = hinfo_to_pin_index(codec, hinfo);
2172 if (spec->dyn_pcm_assign && pin_idx < 0) {
2173 /* when dyn_pcm_assign and pcm is not bound to a pin
2174 * skip pin setup and return 0 to make audio playback
2175 * be ongoing
2176 */
2177 intel_not_share_assigned_cvt_nid(codec, 0, cvt_nid);
2178 snd_hda_codec_setup_stream(codec, cvt_nid,
2179 stream_tag, 0, format);
2180 mutex_unlock(&spec->pcm_lock);
2181 return 0;
2182 }
2183
2184 if (snd_BUG_ON(pin_idx < 0)) {
2185 mutex_unlock(&spec->pcm_lock);
2186 return -EINVAL;
2187 }
2188 per_pin = get_pin(spec, pin_idx);
2189 pin_nid = per_pin->pin_nid;
Libin Yangca2e7222014-08-19 16:20:12 +08002190 if (is_haswell_plus(codec) || is_valleyview_plus(codec)) {
Mengdong Lin2df67422014-03-20 13:01:06 +08002191 /* Verify pin:cvt selections to avoid silent audio after S3.
2192 * After S3, the audio driver restores pin:cvt selections
2193 * but this can happen before gfx is ready and such selection
2194 * is overlooked by HW. Thus multiple pins can share a same
2195 * default convertor and mute control will affect each other,
2196 * which can cause a resumed audio playback become silent
2197 * after S3.
2198 */
2199 intel_verify_pin_cvt_connect(codec, per_pin);
2200 intel_not_share_assigned_cvt(codec, pin_nid, per_pin->mux_idx);
2201 }
2202
Libin Yangddd621f2015-09-02 14:11:40 +08002203 /* Call sync_audio_rate to set the N/CTS/M manually if necessary */
2204 /* Todo: add DP1.2 MST audio support later */
Takashi Iwaie2dc7d72015-12-01 12:39:38 +01002205 snd_hdac_sync_audio_rate(&codec->bus->core, pin_nid, runtime->rate);
Libin Yangddd621f2015-09-02 14:11:40 +08002206
Takashi Iwai1a6003b2012-09-06 17:42:08 +02002207 non_pcm = check_non_pcm_per_cvt(codec, cvt_nid);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002208 mutex_lock(&per_pin->lock);
Takashi Iwaib0540872013-09-02 12:33:02 +02002209 per_pin->channels = substream->runtime->channels;
2210 per_pin->setup = true;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002211
Takashi Iwaib0540872013-09-02 12:33:02 +02002212 hdmi_setup_audio_infoframe(codec, per_pin, non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002213 mutex_unlock(&per_pin->lock);
Stephen Warren75fae112014-01-30 11:52:16 -07002214 if (spec->dyn_pin_out) {
2215 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
2216 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2217 snd_hda_codec_write(codec, pin_nid, 0,
2218 AC_VERB_SET_PIN_WIDGET_CONTROL,
2219 pinctl | PIN_OUT);
2220 }
2221
Libin Yang42b29872015-12-16 13:42:42 +08002222 err = spec->ops.setup_stream(codec, cvt_nid, pin_nid,
2223 stream_tag, format);
2224 mutex_unlock(&spec->pcm_lock);
2225 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002226}
2227
Takashi Iwai8dfaa572012-08-06 14:49:36 +02002228static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2229 struct hda_codec *codec,
2230 struct snd_pcm_substream *substream)
2231{
2232 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
2233 return 0;
2234}
2235
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02002236static int hdmi_pcm_close(struct hda_pcm_stream *hinfo,
2237 struct hda_codec *codec,
2238 struct snd_pcm_substream *substream)
Stephen Warren384a48d2011-06-01 11:14:21 -06002239{
2240 struct hdmi_spec *spec = codec->spec;
Libin Yang2bf3c852015-12-16 13:42:43 +08002241 int cvt_idx, pin_idx, pcm_idx;
Stephen Warren384a48d2011-06-01 11:14:21 -06002242 struct hdmi_spec_per_cvt *per_cvt;
2243 struct hdmi_spec_per_pin *per_pin;
Stephen Warren75fae112014-01-30 11:52:16 -07002244 int pinctl;
Stephen Warren384a48d2011-06-01 11:14:21 -06002245
Stephen Warren384a48d2011-06-01 11:14:21 -06002246 if (hinfo->nid) {
Libin Yang2bf3c852015-12-16 13:42:43 +08002247 pcm_idx = hinfo_to_pcm_index(codec, hinfo);
2248 if (snd_BUG_ON(pcm_idx < 0))
2249 return -EINVAL;
Takashi Iwai4e76a882014-02-25 12:21:03 +01002250 cvt_idx = cvt_nid_to_cvt_index(codec, hinfo->nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06002251 if (snd_BUG_ON(cvt_idx < 0))
2252 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002253 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002254
2255 snd_BUG_ON(!per_cvt->assigned);
2256 per_cvt->assigned = 0;
2257 hinfo->nid = 0;
2258
Libin Yang42b29872015-12-16 13:42:42 +08002259 mutex_lock(&spec->pcm_lock);
Libin Yangac983792015-12-16 16:48:16 +08002260 clear_bit(pcm_idx, &spec->pcm_in_use);
Takashi Iwai4e76a882014-02-25 12:21:03 +01002261 pin_idx = hinfo_to_pin_index(codec, hinfo);
Libin Yang42b29872015-12-16 13:42:42 +08002262 if (spec->dyn_pcm_assign && pin_idx < 0) {
2263 mutex_unlock(&spec->pcm_lock);
2264 return 0;
2265 }
2266
2267 if (snd_BUG_ON(pin_idx < 0)) {
2268 mutex_unlock(&spec->pcm_lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06002269 return -EINVAL;
Libin Yang42b29872015-12-16 13:42:42 +08002270 }
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002271 per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002272
Stephen Warren75fae112014-01-30 11:52:16 -07002273 if (spec->dyn_pin_out) {
2274 pinctl = snd_hda_codec_read(codec, per_pin->pin_nid, 0,
2275 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2276 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
2277 AC_VERB_SET_PIN_WIDGET_CONTROL,
2278 pinctl & ~PIN_OUT);
2279 }
2280
Libin Yang2bf3c852015-12-16 13:42:43 +08002281 snd_hda_spdif_ctls_unassign(codec, pcm_idx);
Takashi Iwaicbbaa602013-10-17 18:03:24 +02002282
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002283 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002284 per_pin->chmap_set = false;
2285 memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
Takashi Iwaib0540872013-09-02 12:33:02 +02002286
2287 per_pin->setup = false;
2288 per_pin->channels = 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002289 mutex_unlock(&per_pin->lock);
Libin Yang42b29872015-12-16 13:42:42 +08002290 mutex_unlock(&spec->pcm_lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06002291 }
Takashi Iwaid45e6882012-07-31 11:36:00 +02002292
Stephen Warren384a48d2011-06-01 11:14:21 -06002293 return 0;
2294}
2295
2296static const struct hda_pcm_ops generic_ops = {
2297 .open = hdmi_pcm_open,
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02002298 .close = hdmi_pcm_close,
Stephen Warren384a48d2011-06-01 11:14:21 -06002299 .prepare = generic_hdmi_playback_pcm_prepare,
Takashi Iwai8dfaa572012-08-06 14:49:36 +02002300 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002301};
2302
Takashi Iwaid45e6882012-07-31 11:36:00 +02002303/*
2304 * ALSA API channel-map control callbacks
2305 */
2306static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
2307 struct snd_ctl_elem_info *uinfo)
2308{
2309 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2310 struct hda_codec *codec = info->private_data;
2311 struct hdmi_spec *spec = codec->spec;
2312 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2313 uinfo->count = spec->channels_max;
2314 uinfo->value.integer.min = 0;
2315 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
2316 return 0;
2317}
2318
Anssi Hannula307229d2013-10-24 21:10:34 +03002319static int hdmi_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
2320 int channels)
2321{
2322 /* If the speaker allocation matches the channel count, it is OK.*/
2323 if (cap->channels != channels)
2324 return -1;
2325
2326 /* all channels are remappable freely */
2327 return SNDRV_CTL_TLVT_CHMAP_VAR;
2328}
2329
2330static void hdmi_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
2331 unsigned int *chmap, int channels)
2332{
2333 int count = 0;
2334 int c;
2335
2336 for (c = 7; c >= 0; c--) {
2337 int spk = cap->speakers[c];
2338 if (!spk)
2339 continue;
2340
2341 chmap[count++] = spk_to_chmap(spk);
2342 }
2343
2344 WARN_ON(count != channels);
2345}
2346
Takashi Iwaid45e6882012-07-31 11:36:00 +02002347static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2348 unsigned int size, unsigned int __user *tlv)
2349{
2350 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2351 struct hda_codec *codec = info->private_data;
2352 struct hdmi_spec *spec = codec->spec;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002353 unsigned int __user *dst;
2354 int chs, count = 0;
2355
2356 if (size < 8)
2357 return -ENOMEM;
2358 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
2359 return -EFAULT;
2360 size -= 8;
2361 dst = tlv + 2;
Takashi Iwai498dab32012-09-10 16:08:40 +02002362 for (chs = 2; chs <= spec->channels_max; chs++) {
Anssi Hannula307229d2013-10-24 21:10:34 +03002363 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002364 struct cea_channel_speaker_allocation *cap;
2365 cap = channel_allocations;
2366 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
2367 int chs_bytes = chs * 4;
Anssi Hannula307229d2013-10-24 21:10:34 +03002368 int type = spec->ops.chmap_cea_alloc_validate_get_type(cap, chs);
2369 unsigned int tlv_chmap[8];
2370
2371 if (type < 0)
Takashi Iwaid45e6882012-07-31 11:36:00 +02002372 continue;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002373 if (size < 8)
2374 return -ENOMEM;
Anssi Hannula307229d2013-10-24 21:10:34 +03002375 if (put_user(type, dst) ||
Takashi Iwaid45e6882012-07-31 11:36:00 +02002376 put_user(chs_bytes, dst + 1))
2377 return -EFAULT;
2378 dst += 2;
2379 size -= 8;
2380 count += 8;
2381 if (size < chs_bytes)
2382 return -ENOMEM;
2383 size -= chs_bytes;
2384 count += chs_bytes;
Anssi Hannula307229d2013-10-24 21:10:34 +03002385 spec->ops.cea_alloc_to_tlv_chmap(cap, tlv_chmap, chs);
2386 if (copy_to_user(dst, tlv_chmap, chs_bytes))
2387 return -EFAULT;
2388 dst += chs;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002389 }
2390 }
2391 if (put_user(count, tlv + 1))
2392 return -EFAULT;
2393 return 0;
2394}
2395
2396static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
2397 struct snd_ctl_elem_value *ucontrol)
2398{
2399 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2400 struct hda_codec *codec = info->private_data;
2401 struct hdmi_spec *spec = codec->spec;
2402 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002403 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002404 int i;
2405
2406 for (i = 0; i < ARRAY_SIZE(per_pin->chmap); i++)
2407 ucontrol->value.integer.value[i] = per_pin->chmap[i];
2408 return 0;
2409}
2410
2411static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
2412 struct snd_ctl_elem_value *ucontrol)
2413{
2414 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
2415 struct hda_codec *codec = info->private_data;
2416 struct hdmi_spec *spec = codec->spec;
2417 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002418 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002419 unsigned int ctl_idx;
2420 struct snd_pcm_substream *substream;
2421 unsigned char chmap[8];
Anssi Hannula307229d2013-10-24 21:10:34 +03002422 int i, err, ca, prepared = 0;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002423
2424 ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2425 substream = snd_pcm_chmap_substream(info, ctl_idx);
2426 if (!substream || !substream->runtime)
Takashi Iwai6f54c362013-01-15 14:44:41 +01002427 return 0; /* just for avoiding error from alsactl restore */
Takashi Iwaid45e6882012-07-31 11:36:00 +02002428 switch (substream->runtime->status->state) {
2429 case SNDRV_PCM_STATE_OPEN:
2430 case SNDRV_PCM_STATE_SETUP:
2431 break;
2432 case SNDRV_PCM_STATE_PREPARED:
2433 prepared = 1;
2434 break;
2435 default:
2436 return -EBUSY;
2437 }
2438 memset(chmap, 0, sizeof(chmap));
2439 for (i = 0; i < ARRAY_SIZE(chmap); i++)
2440 chmap[i] = ucontrol->value.integer.value[i];
2441 if (!memcmp(chmap, per_pin->chmap, sizeof(chmap)))
2442 return 0;
2443 ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
2444 if (ca < 0)
2445 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03002446 if (spec->ops.chmap_validate) {
2447 err = spec->ops.chmap_validate(ca, ARRAY_SIZE(chmap), chmap);
2448 if (err)
2449 return err;
2450 }
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002451 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002452 per_pin->chmap_set = true;
2453 memcpy(per_pin->chmap, chmap, sizeof(chmap));
2454 if (prepared)
Takashi Iwaib0540872013-09-02 12:33:02 +02002455 hdmi_setup_audio_infoframe(codec, per_pin, per_pin->non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002456 mutex_unlock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02002457
2458 return 0;
2459}
2460
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002461static int generic_hdmi_build_pcms(struct hda_codec *codec)
2462{
2463 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002464 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002465
Stephen Warren384a48d2011-06-01 11:14:21 -06002466 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2467 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002468 struct hda_pcm_stream *pstr;
2469
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002470 info = snd_hda_codec_pcm_new(codec, "HDMI %d", pin_idx);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002471 if (!info)
2472 return -ENOMEM;
Libin Yang2bea2412016-01-12 11:13:26 +08002473
2474 spec->pcm_rec[pin_idx].pcm = info;
Libin Yang2bf3c852015-12-16 13:42:43 +08002475 spec->pcm_used++;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002476 info->pcm_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002477 info->own_chmap = true;
Stephen Warren384a48d2011-06-01 11:14:21 -06002478
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002479 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06002480 pstr->substreams = 1;
2481 pstr->ops = generic_ops;
2482 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002483 }
2484
2485 return 0;
2486}
2487
Libin Yang25e4abb2016-01-12 11:13:27 +08002488static void free_hdmi_jack_priv(struct snd_jack *jack)
Takashi Iwai788d4412015-11-12 15:36:13 +01002489{
Libin Yang25e4abb2016-01-12 11:13:27 +08002490 struct hdmi_pcm *pcm = jack->private_data;
Takashi Iwai788d4412015-11-12 15:36:13 +01002491
Libin Yang25e4abb2016-01-12 11:13:27 +08002492 pcm->jack = NULL;
Takashi Iwai788d4412015-11-12 15:36:13 +01002493}
2494
Libin Yang25e4abb2016-01-12 11:13:27 +08002495static int add_hdmi_jack_kctl(struct hda_codec *codec,
2496 struct hdmi_spec *spec,
2497 int pcm_idx,
Takashi Iwai788d4412015-11-12 15:36:13 +01002498 const char *name)
2499{
2500 struct snd_jack *jack;
2501 int err;
2502
2503 err = snd_jack_new(codec->card, name, SND_JACK_AVOUT, &jack,
2504 true, false);
2505 if (err < 0)
2506 return err;
Libin Yang25e4abb2016-01-12 11:13:27 +08002507
2508 spec->pcm_rec[pcm_idx].jack = jack;
2509 jack->private_data = &spec->pcm_rec[pcm_idx];
2510 jack->private_free = free_hdmi_jack_priv;
Takashi Iwai788d4412015-11-12 15:36:13 +01002511 return 0;
2512}
2513
Libin Yang25e4abb2016-01-12 11:13:27 +08002514static int generic_hdmi_build_jack(struct hda_codec *codec, int pcm_idx)
David Henningsson0b6c49b2011-08-23 16:56:03 +02002515{
Takashi Iwai31ef2252011-12-01 17:41:36 +01002516 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02002517 struct hdmi_spec *spec = codec->spec;
Libin Yang25e4abb2016-01-12 11:13:27 +08002518 struct hdmi_spec_per_pin *per_pin;
2519 struct hda_jack_tbl *jack;
2520 int pcmdev = get_pcm_rec(spec, pcm_idx)->device;
Takashi Iwai909cadc2015-11-12 11:52:13 +01002521 bool phantom_jack;
Libin Yang25e4abb2016-01-12 11:13:27 +08002522 int ret;
David Henningsson0b6c49b2011-08-23 16:56:03 +02002523
Takashi Iwai31ef2252011-12-01 17:41:36 +01002524 if (pcmdev > 0)
2525 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
Libin Yang25e4abb2016-01-12 11:13:27 +08002526
2527 if (spec->dyn_pcm_assign)
2528 return add_hdmi_jack_kctl(codec, spec, pcm_idx, hdmi_str);
2529
2530 /* for !dyn_pcm_assign, we still use hda_jack for compatibility */
2531 /* if !dyn_pcm_assign, it must be non-MST mode.
2532 * This means pcms and pins are statically mapped.
2533 * And pcm_idx is pin_idx.
2534 */
2535 per_pin = get_pin(spec, pcm_idx);
Takashi Iwai909cadc2015-11-12 11:52:13 +01002536 phantom_jack = !is_jack_detectable(codec, per_pin->pin_nid);
2537 if (phantom_jack)
David Henningsson30efd8d2013-02-22 10:16:28 +01002538 strncat(hdmi_str, " Phantom",
2539 sizeof(hdmi_str) - strlen(hdmi_str) - 1);
Libin Yang25e4abb2016-01-12 11:13:27 +08002540 ret = snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str,
2541 phantom_jack);
2542 if (ret < 0)
2543 return ret;
2544 jack = snd_hda_jack_tbl_get(codec, per_pin->pin_nid);
2545 if (jack == NULL)
2546 return 0;
2547 /* assign jack->jack to pcm_rec[].jack to
2548 * align with dyn_pcm_assign mode
2549 */
2550 spec->pcm_rec[pcm_idx].jack = jack->jack;
2551 return 0;
David Henningsson0b6c49b2011-08-23 16:56:03 +02002552}
2553
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002554static int generic_hdmi_build_controls(struct hda_codec *codec)
2555{
2556 struct hdmi_spec *spec = codec->spec;
2557 int err;
Libin Yang25e4abb2016-01-12 11:13:27 +08002558 int pin_idx, pcm_idx;
2559
2560
2561 for (pcm_idx = 0; pcm_idx < spec->pcm_used; pcm_idx++) {
2562 err = generic_hdmi_build_jack(codec, pcm_idx);
2563 if (err < 0)
2564 return err;
2565 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002566
Stephen Warren384a48d2011-06-01 11:14:21 -06002567 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002568 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
David Henningsson0b6c49b2011-08-23 16:56:03 +02002569
Takashi Iwaidcda5802012-10-12 17:24:51 +02002570 err = snd_hda_create_dig_out_ctls(codec,
2571 per_pin->pin_nid,
2572 per_pin->mux_nids[0],
2573 HDA_PCM_TYPE_HDMI);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002574 if (err < 0)
2575 return err;
Libin Yang2bf3c852015-12-16 13:42:43 +08002576 /* pin number is the same with pcm number so far */
Stephen Warren384a48d2011-06-01 11:14:21 -06002577 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002578
2579 /* add control for ELD Bytes */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002580 err = hdmi_create_eld_ctl(codec, pin_idx,
Libin Yang2bea2412016-01-12 11:13:26 +08002581 get_pcm_rec(spec, pin_idx)->device);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002582
2583 if (err < 0)
2584 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01002585
Takashi Iwai82b1d732011-12-20 15:53:07 +01002586 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002587 }
2588
Takashi Iwaid45e6882012-07-31 11:36:00 +02002589 /* add channel maps */
2590 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002591 struct hda_pcm *pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002592 struct snd_pcm_chmap *chmap;
2593 struct snd_kcontrol *kctl;
2594 int i;
Takashi Iwai2ca320e2013-08-22 09:55:36 +02002595
Libin Yang2bea2412016-01-12 11:13:26 +08002596 pcm = get_pcm_rec(spec, pin_idx);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002597 if (!pcm || !pcm->pcm)
Takashi Iwai2ca320e2013-08-22 09:55:36 +02002598 break;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002599 err = snd_pcm_add_chmap_ctls(pcm->pcm,
Takashi Iwaid45e6882012-07-31 11:36:00 +02002600 SNDRV_PCM_STREAM_PLAYBACK,
2601 NULL, 0, pin_idx, &chmap);
2602 if (err < 0)
2603 return err;
2604 /* override handlers */
2605 chmap->private_data = codec;
2606 kctl = chmap->kctl;
2607 for (i = 0; i < kctl->count; i++)
2608 kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
2609 kctl->info = hdmi_chmap_ctl_info;
2610 kctl->get = hdmi_chmap_ctl_get;
2611 kctl->put = hdmi_chmap_ctl_put;
2612 kctl->tlv.c = hdmi_chmap_ctl_tlv;
2613 }
2614
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002615 return 0;
2616}
2617
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002618static int generic_hdmi_init_per_pins(struct hda_codec *codec)
2619{
2620 struct hdmi_spec *spec = codec->spec;
2621 int pin_idx;
2622
2623 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002624 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002625
2626 per_pin->codec = codec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002627 mutex_init(&per_pin->lock);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002628 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002629 eld_proc_new(per_pin, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002630 }
2631 return 0;
2632}
2633
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002634static int generic_hdmi_init(struct hda_codec *codec)
2635{
2636 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002637 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002638
Stephen Warren384a48d2011-06-01 11:14:21 -06002639 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002640 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002641 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06002642
2643 hdmi_init_pin(codec, pin_nid);
Takashi Iwai788d4412015-11-12 15:36:13 +01002644 if (!codec_has_acomp(codec))
2645 snd_hda_jack_detect_enable_callback(codec, pin_nid,
2646 codec->jackpoll_interval > 0 ?
2647 jack_callback : NULL);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002648 }
2649 return 0;
2650}
2651
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002652static void hdmi_array_init(struct hdmi_spec *spec, int nums)
2653{
2654 snd_array_init(&spec->pins, sizeof(struct hdmi_spec_per_pin), nums);
2655 snd_array_init(&spec->cvts, sizeof(struct hdmi_spec_per_cvt), nums);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002656}
2657
2658static void hdmi_array_free(struct hdmi_spec *spec)
2659{
2660 snd_array_free(&spec->pins);
2661 snd_array_free(&spec->cvts);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002662}
2663
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002664static void generic_hdmi_free(struct hda_codec *codec)
2665{
2666 struct hdmi_spec *spec = codec->spec;
Libin Yang25e4abb2016-01-12 11:13:27 +08002667 int pin_idx, pcm_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002668
Takashi Iwai66032492015-12-01 16:49:35 +01002669 if (codec_has_acomp(codec))
David Henningsson25adc132015-08-19 10:48:58 +02002670 snd_hdac_i915_register_notifier(NULL);
2671
Stephen Warren384a48d2011-06-01 11:14:21 -06002672 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002673 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwai2f35c632015-02-27 22:43:26 +01002674 cancel_delayed_work_sync(&per_pin->work);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002675 eld_proc_free(per_pin);
Libin Yang25e4abb2016-01-12 11:13:27 +08002676 }
2677
2678 for (pcm_idx = 0; pcm_idx < spec->pcm_used; pcm_idx++) {
2679 if (spec->pcm_rec[pcm_idx].jack == NULL)
2680 continue;
2681 if (spec->dyn_pcm_assign)
2682 snd_device_free(codec->card,
2683 spec->pcm_rec[pcm_idx].jack);
2684 else
2685 spec->pcm_rec[pcm_idx].jack = NULL;
Stephen Warren384a48d2011-06-01 11:14:21 -06002686 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002687
Takashi Iwai55913112015-12-10 13:03:29 +01002688 if (spec->i915_bound)
2689 snd_hdac_i915_exit(&codec->bus->core);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002690 hdmi_array_free(spec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002691 kfree(spec);
2692}
2693
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002694#ifdef CONFIG_PM
2695static int generic_hdmi_resume(struct hda_codec *codec)
2696{
2697 struct hdmi_spec *spec = codec->spec;
2698 int pin_idx;
2699
Pierre Ossmana2833682014-06-18 21:48:09 +02002700 codec->patch_ops.init(codec);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002701 regcache_sync(codec->core.regmap);
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002702
2703 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2704 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
2705 hdmi_present_sense(per_pin, 1);
2706 }
2707 return 0;
2708}
2709#endif
2710
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002711static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002712 .init = generic_hdmi_init,
2713 .free = generic_hdmi_free,
2714 .build_pcms = generic_hdmi_build_pcms,
2715 .build_controls = generic_hdmi_build_controls,
2716 .unsol_event = hdmi_unsol_event,
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002717#ifdef CONFIG_PM
2718 .resume = generic_hdmi_resume,
2719#endif
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002720};
2721
Anssi Hannula307229d2013-10-24 21:10:34 +03002722static const struct hdmi_ops generic_standard_hdmi_ops = {
2723 .pin_get_eld = snd_hdmi_get_eld,
2724 .pin_get_slot_channel = hdmi_pin_get_slot_channel,
2725 .pin_set_slot_channel = hdmi_pin_set_slot_channel,
2726 .pin_setup_infoframe = hdmi_pin_setup_infoframe,
2727 .pin_hbr_setup = hdmi_pin_hbr_setup,
2728 .setup_stream = hdmi_setup_stream,
2729 .chmap_cea_alloc_validate_get_type = hdmi_chmap_cea_alloc_validate_get_type,
2730 .cea_alloc_to_tlv_chmap = hdmi_cea_alloc_to_tlv_chmap,
2731};
2732
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002733
2734static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
2735 hda_nid_t nid)
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002736{
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002737 struct hdmi_spec *spec = codec->spec;
2738 hda_nid_t conns[4];
2739 int nconns;
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002740
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002741 nconns = snd_hda_get_connections(codec, nid, conns, ARRAY_SIZE(conns));
2742 if (nconns == spec->num_cvts &&
2743 !memcmp(conns, spec->cvt_nids, spec->num_cvts * sizeof(hda_nid_t)))
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002744 return;
2745
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002746 /* override pins connection list */
Takashi Iwai4e76a882014-02-25 12:21:03 +01002747 codec_dbg(codec, "hdmi: haswell: override pin connection 0x%x\n", nid);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002748 snd_hda_override_conn_list(codec, nid, spec->num_cvts, spec->cvt_nids);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002749}
2750
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002751#define INTEL_VENDOR_NID 0x08
2752#define INTEL_GET_VENDOR_VERB 0xf81
2753#define INTEL_SET_VENDOR_VERB 0x781
2754#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
2755#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
2756
2757static void intel_haswell_enable_all_pins(struct hda_codec *codec,
Takashi Iwai17df3f52013-05-08 08:09:34 +02002758 bool update_tree)
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002759{
2760 unsigned int vendor_param;
2761
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002762 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2763 INTEL_GET_VENDOR_VERB, 0);
2764 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
2765 return;
2766
2767 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
2768 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2769 INTEL_SET_VENDOR_VERB, vendor_param);
2770 if (vendor_param == -1)
2771 return;
2772
Takashi Iwai17df3f52013-05-08 08:09:34 +02002773 if (update_tree)
2774 snd_hda_codec_update_widgets(codec);
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002775}
2776
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002777static void intel_haswell_fixup_enable_dp12(struct hda_codec *codec)
2778{
2779 unsigned int vendor_param;
2780
2781 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2782 INTEL_GET_VENDOR_VERB, 0);
2783 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
2784 return;
2785
2786 /* enable DP1.2 mode */
2787 vendor_param |= INTEL_EN_DP12;
Takashi Iwaia551d912015-02-26 12:34:49 +01002788 snd_hdac_regmap_add_vendor_verb(&codec->core, INTEL_SET_VENDOR_VERB);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002789 snd_hda_codec_write_cache(codec, INTEL_VENDOR_NID, 0,
2790 INTEL_SET_VENDOR_VERB, vendor_param);
2791}
2792
Takashi Iwai17df3f52013-05-08 08:09:34 +02002793/* Haswell needs to re-issue the vendor-specific verbs before turning to D0.
2794 * Otherwise you may get severe h/w communication errors.
2795 */
2796static void haswell_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2797 unsigned int power_state)
2798{
2799 if (power_state == AC_PWRST_D0) {
2800 intel_haswell_enable_all_pins(codec, false);
2801 intel_haswell_fixup_enable_dp12(codec);
2802 }
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002803
Takashi Iwai17df3f52013-05-08 08:09:34 +02002804 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, power_state);
2805 snd_hda_codec_set_power_to_all(codec, fg, power_state);
2806}
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002807
David Henningssonf0675d42015-09-03 11:51:34 +02002808static void intel_pin_eld_notify(void *audio_ptr, int port)
David Henningsson25adc132015-08-19 10:48:58 +02002809{
2810 struct hda_codec *codec = audio_ptr;
2811 int pin_nid = port + 0x04;
2812
Takashi Iwai8ae743e2015-11-27 14:23:00 +01002813 /* skip notification during system suspend (but not in runtime PM);
2814 * the state will be updated at resume
2815 */
2816 if (snd_power_get_state(codec->card) != SNDRV_CTL_POWER_D0)
2817 return;
Takashi Iwaieb399d32015-11-27 14:53:35 +01002818 /* ditto during suspend/resume process itself */
2819 if (atomic_read(&(codec)->core.in_pm))
2820 return;
Takashi Iwai8ae743e2015-11-27 14:23:00 +01002821
David Henningsson25adc132015-08-19 10:48:58 +02002822 check_presence_and_report(codec, pin_nid);
2823}
2824
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002825static int patch_generic_hdmi(struct hda_codec *codec)
2826{
2827 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002828
2829 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2830 if (spec == NULL)
2831 return -ENOMEM;
2832
Anssi Hannula307229d2013-10-24 21:10:34 +03002833 spec->ops = generic_standard_hdmi_ops;
Libin Yang42b29872015-12-16 13:42:42 +08002834 mutex_init(&spec->pcm_lock);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002835 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002836 hdmi_array_init(spec, 4);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002837
Takashi Iwai55913112015-12-10 13:03:29 +01002838 /* Try to bind with i915 for any Intel codecs (if not done yet) */
2839 if (!codec_has_acomp(codec) &&
2840 (codec->core.vendor_id >> 16) == 0x8086)
2841 if (!snd_hdac_i915_init(&codec->bus->core))
2842 spec->i915_bound = true;
2843
Mengdong Lin75dcbe42014-01-08 15:55:32 -05002844 if (is_haswell_plus(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002845 intel_haswell_enable_all_pins(codec, true);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002846 intel_haswell_fixup_enable_dp12(codec);
Takashi Iwai17df3f52013-05-08 08:09:34 +02002847 }
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002848
Mengdong Lin2bd1f73f2015-04-29 17:43:43 +08002849 /* For Valleyview/Cherryview, only the display codec is in the display
2850 * power well and can use link_power ops to request/release the power.
2851 * For Haswell/Broadwell, the controller is also in the power well and
2852 * can cover the codec power request, and so need not set this flag.
2853 * For previous platforms, there is no such power well feature.
2854 */
Lu, Hanff9d8852015-11-19 23:25:13 +08002855 if (is_valleyview_plus(codec) || is_skylake(codec) ||
2856 is_broxton(codec))
Mengdong Lin2bd1f73f2015-04-29 17:43:43 +08002857 codec->core.link_power_control = 1;
2858
Takashi Iwai66032492015-12-01 16:49:35 +01002859 if (codec_has_acomp(codec)) {
Mengdong Lin5b8620b2013-12-05 18:35:48 -05002860 codec->depop_delay = 0;
David Henningsson25adc132015-08-19 10:48:58 +02002861 spec->i915_audio_ops.audio_ptr = codec;
2862 spec->i915_audio_ops.pin_eld_notify = intel_pin_eld_notify;
2863 snd_hdac_i915_register_notifier(&spec->i915_audio_ops);
2864 }
Mengdong Lin5b8620b2013-12-05 18:35:48 -05002865
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002866 if (hdmi_parse_codec(codec) < 0) {
Takashi Iwai55913112015-12-10 13:03:29 +01002867 if (spec->i915_bound)
2868 snd_hdac_i915_exit(&codec->bus->core);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002869 codec->spec = NULL;
2870 kfree(spec);
2871 return -EINVAL;
2872 }
2873 codec->patch_ops = generic_hdmi_patch_ops;
Mengdong Lin75dcbe42014-01-08 15:55:32 -05002874 if (is_haswell_plus(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002875 codec->patch_ops.set_power_state = haswell_set_power_state;
Mengdong Lin5dc989b2013-08-26 21:35:41 -04002876 codec->dp_mst = true;
2877 }
Takashi Iwai17df3f52013-05-08 08:09:34 +02002878
Lu, Han2377c3c2015-06-09 16:50:38 +08002879 /* Enable runtime pm for HDMI audio codec of HSW/BDW/SKL/BYT/BSW */
2880 if (is_haswell_plus(codec) || is_valleyview_plus(codec))
2881 codec->auto_runtime_pm = 1;
2882
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002883 generic_hdmi_init_per_pins(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002884
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002885 init_channel_allocations();
2886
Libin Yang25e4abb2016-01-12 11:13:27 +08002887 WARN_ON(spec->dyn_pcm_assign && !codec_has_acomp(codec));
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002888 return 0;
2889}
2890
2891/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06002892 * Shared non-generic implementations
2893 */
2894
2895static int simple_playback_build_pcms(struct hda_codec *codec)
2896{
2897 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002898 struct hda_pcm *info;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002899 unsigned int chans;
2900 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002901 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002902
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002903 per_cvt = get_cvt(spec, 0);
2904 chans = get_wcaps(codec, per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002905 chans = get_wcaps_channels(chans);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002906
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002907 info = snd_hda_codec_pcm_new(codec, "HDMI 0");
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002908 if (!info)
2909 return -ENOMEM;
Libin Yang2bea2412016-01-12 11:13:26 +08002910 spec->pcm_rec[0].pcm = info;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002911 info->pcm_type = HDA_PCM_TYPE_HDMI;
2912 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
2913 *pstr = spec->pcm_playback;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002914 pstr->nid = per_cvt->cvt_nid;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002915 if (pstr->channels_max <= 2 && chans && chans <= 16)
2916 pstr->channels_max = chans;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002917
2918 return 0;
2919}
2920
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002921/* unsolicited event for jack sensing */
2922static void simple_hdmi_unsol_event(struct hda_codec *codec,
2923 unsigned int res)
2924{
Takashi Iwai9dd8cf12012-06-21 10:43:15 +02002925 snd_hda_jack_set_dirty_all(codec);
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002926 snd_hda_jack_report_sync(codec);
2927}
2928
2929/* generic_hdmi_build_jack can be used for simple_hdmi, too,
2930 * as long as spec->pins[] is set correctly
2931 */
2932#define simple_hdmi_build_jack generic_hdmi_build_jack
2933
Stephen Warren3aaf8982011-06-01 11:14:19 -06002934static int simple_playback_build_controls(struct hda_codec *codec)
2935{
2936 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002937 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002938 int err;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002939
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002940 per_cvt = get_cvt(spec, 0);
Anssi Hannulac9a63382013-12-10 22:46:34 +02002941 err = snd_hda_create_dig_out_ctls(codec, per_cvt->cvt_nid,
2942 per_cvt->cvt_nid,
2943 HDA_PCM_TYPE_HDMI);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002944 if (err < 0)
2945 return err;
2946 return simple_hdmi_build_jack(codec, 0);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002947}
2948
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002949static int simple_playback_init(struct hda_codec *codec)
2950{
2951 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002952 struct hdmi_spec_per_pin *per_pin = get_pin(spec, 0);
2953 hda_nid_t pin = per_pin->pin_nid;
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002954
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002955 snd_hda_codec_write(codec, pin, 0,
2956 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2957 /* some codecs require to unmute the pin */
2958 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
2959 snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2960 AMP_OUT_UNMUTE);
Takashi Iwai62f949b2014-09-11 14:06:53 +02002961 snd_hda_jack_detect_enable(codec, pin);
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002962 return 0;
2963}
2964
Stephen Warren3aaf8982011-06-01 11:14:19 -06002965static void simple_playback_free(struct hda_codec *codec)
2966{
2967 struct hdmi_spec *spec = codec->spec;
2968
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002969 hdmi_array_free(spec);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002970 kfree(spec);
2971}
2972
2973/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002974 * Nvidia specific implementations
2975 */
2976
2977#define Nv_VERB_SET_Channel_Allocation 0xF79
2978#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
2979#define Nv_VERB_SET_Audio_Protection_On 0xF98
2980#define Nv_VERB_SET_Audio_Protection_Off 0xF99
2981
2982#define nvhdmi_master_con_nid_7x 0x04
2983#define nvhdmi_master_pin_nid_7x 0x05
2984
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002985static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002986 /*front, rear, clfe, rear_surr */
2987 0x6, 0x8, 0xa, 0xc,
2988};
2989
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002990static const struct hda_verb nvhdmi_basic_init_7x_2ch[] = {
2991 /* set audio protect on */
2992 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2993 /* enable digital output on pin widget */
2994 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2995 {} /* terminator */
2996};
2997
2998static const struct hda_verb nvhdmi_basic_init_7x_8ch[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002999 /* set audio protect on */
3000 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
3001 /* enable digital output on pin widget */
3002 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
3003 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
3004 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
3005 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
3006 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
3007 {} /* terminator */
3008};
3009
3010#ifdef LIMITED_RATE_FMT_SUPPORT
3011/* support only the safe format and rate */
3012#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
3013#define SUPPORTED_MAXBPS 16
3014#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
3015#else
3016/* support all rates and formats */
3017#define SUPPORTED_RATES \
3018 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
3019 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
3020 SNDRV_PCM_RATE_192000)
3021#define SUPPORTED_MAXBPS 24
3022#define SUPPORTED_FORMATS \
3023 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
3024#endif
3025
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02003026static int nvhdmi_7x_init_2ch(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003027{
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02003028 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_2ch);
3029 return 0;
3030}
3031
3032static int nvhdmi_7x_init_8ch(struct hda_codec *codec)
3033{
3034 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_8ch);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003035 return 0;
3036}
3037
Nitin Daga393004b2011-01-10 21:49:31 +05303038static unsigned int channels_2_6_8[] = {
3039 2, 6, 8
3040};
3041
3042static unsigned int channels_2_8[] = {
3043 2, 8
3044};
3045
3046static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
3047 .count = ARRAY_SIZE(channels_2_6_8),
3048 .list = channels_2_6_8,
3049 .mask = 0,
3050};
3051
3052static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
3053 .count = ARRAY_SIZE(channels_2_8),
3054 .list = channels_2_8,
3055 .mask = 0,
3056};
3057
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003058static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
3059 struct hda_codec *codec,
3060 struct snd_pcm_substream *substream)
3061{
3062 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05303063 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
3064
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003065 switch (codec->preset->vendor_id) {
Nitin Daga393004b2011-01-10 21:49:31 +05303066 case 0x10de0002:
3067 case 0x10de0003:
3068 case 0x10de0005:
3069 case 0x10de0006:
3070 hw_constraints_channels = &hw_constraints_2_8_channels;
3071 break;
3072 case 0x10de0007:
3073 hw_constraints_channels = &hw_constraints_2_6_8_channels;
3074 break;
3075 default:
3076 break;
3077 }
3078
3079 if (hw_constraints_channels != NULL) {
3080 snd_pcm_hw_constraint_list(substream->runtime, 0,
3081 SNDRV_PCM_HW_PARAM_CHANNELS,
3082 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01003083 } else {
3084 snd_pcm_hw_constraint_step(substream->runtime, 0,
3085 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05303086 }
3087
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003088 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
3089}
3090
3091static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
3092 struct hda_codec *codec,
3093 struct snd_pcm_substream *substream)
3094{
3095 struct hdmi_spec *spec = codec->spec;
3096 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
3097}
3098
3099static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
3100 struct hda_codec *codec,
3101 unsigned int stream_tag,
3102 unsigned int format,
3103 struct snd_pcm_substream *substream)
3104{
3105 struct hdmi_spec *spec = codec->spec;
3106 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
3107 stream_tag, format, substream);
3108}
3109
Takashi Iwaid0b12522012-06-15 14:34:42 +02003110static const struct hda_pcm_stream simple_pcm_playback = {
3111 .substreams = 1,
3112 .channels_min = 2,
3113 .channels_max = 2,
3114 .ops = {
3115 .open = simple_playback_pcm_open,
3116 .close = simple_playback_pcm_close,
3117 .prepare = simple_playback_pcm_prepare
3118 },
3119};
3120
3121static const struct hda_codec_ops simple_hdmi_patch_ops = {
3122 .build_controls = simple_playback_build_controls,
3123 .build_pcms = simple_playback_build_pcms,
3124 .init = simple_playback_init,
3125 .free = simple_playback_free,
Takashi Iwai250e41a2012-06-15 14:40:21 +02003126 .unsol_event = simple_hdmi_unsol_event,
Takashi Iwaid0b12522012-06-15 14:34:42 +02003127};
3128
3129static int patch_simple_hdmi(struct hda_codec *codec,
3130 hda_nid_t cvt_nid, hda_nid_t pin_nid)
3131{
3132 struct hdmi_spec *spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003133 struct hdmi_spec_per_cvt *per_cvt;
3134 struct hdmi_spec_per_pin *per_pin;
Takashi Iwaid0b12522012-06-15 14:34:42 +02003135
3136 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3137 if (!spec)
3138 return -ENOMEM;
3139
3140 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003141 hdmi_array_init(spec, 1);
Takashi Iwaid0b12522012-06-15 14:34:42 +02003142
3143 spec->multiout.num_dacs = 0; /* no analog */
3144 spec->multiout.max_channels = 2;
3145 spec->multiout.dig_out_nid = cvt_nid;
3146 spec->num_cvts = 1;
3147 spec->num_pins = 1;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003148 per_pin = snd_array_new(&spec->pins);
3149 per_cvt = snd_array_new(&spec->cvts);
3150 if (!per_pin || !per_cvt) {
3151 simple_playback_free(codec);
3152 return -ENOMEM;
3153 }
3154 per_cvt->cvt_nid = cvt_nid;
3155 per_pin->pin_nid = pin_nid;
Takashi Iwaid0b12522012-06-15 14:34:42 +02003156 spec->pcm_playback = simple_pcm_playback;
3157
3158 codec->patch_ops = simple_hdmi_patch_ops;
3159
3160 return 0;
3161}
3162
Aaron Plattner1f348522011-04-06 17:19:04 -07003163static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
3164 int channels)
3165{
3166 unsigned int chanmask;
3167 int chan = channels ? (channels - 1) : 1;
3168
3169 switch (channels) {
3170 default:
3171 case 0:
3172 case 2:
3173 chanmask = 0x00;
3174 break;
3175 case 4:
3176 chanmask = 0x08;
3177 break;
3178 case 6:
3179 chanmask = 0x0b;
3180 break;
3181 case 8:
3182 chanmask = 0x13;
3183 break;
3184 }
3185
3186 /* Set the audio infoframe channel allocation and checksum fields. The
3187 * channel count is computed implicitly by the hardware. */
3188 snd_hda_codec_write(codec, 0x1, 0,
3189 Nv_VERB_SET_Channel_Allocation, chanmask);
3190
3191 snd_hda_codec_write(codec, 0x1, 0,
3192 Nv_VERB_SET_Info_Frame_Checksum,
3193 (0x71 - chan - chanmask));
3194}
3195
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003196static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
3197 struct hda_codec *codec,
3198 struct snd_pcm_substream *substream)
3199{
3200 struct hdmi_spec *spec = codec->spec;
3201 int i;
3202
3203 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
3204 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
3205 for (i = 0; i < 4; i++) {
3206 /* set the stream id */
3207 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
3208 AC_VERB_SET_CHANNEL_STREAMID, 0);
3209 /* set the stream format */
3210 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
3211 AC_VERB_SET_STREAM_FORMAT, 0);
3212 }
3213
Aaron Plattner1f348522011-04-06 17:19:04 -07003214 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
3215 * streams are disabled. */
3216 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
3217
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003218 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
3219}
3220
3221static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
3222 struct hda_codec *codec,
3223 unsigned int stream_tag,
3224 unsigned int format,
3225 struct snd_pcm_substream *substream)
3226{
3227 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01003228 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003229 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06003230 struct hdmi_spec *spec = codec->spec;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003231 struct hda_spdif_out *spdif;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003232 struct hdmi_spec_per_cvt *per_cvt;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003233
3234 mutex_lock(&codec->spdif_mutex);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003235 per_cvt = get_cvt(spec, 0);
3236 spdif = snd_hda_spdif_out_of_nid(codec, per_cvt->cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003237
3238 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003239
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003240 dataDCC2 = 0x2;
3241
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003242 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06003243 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003244 snd_hda_codec_write(codec,
3245 nvhdmi_master_con_nid_7x,
3246 0,
3247 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06003248 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003249
3250 /* set the stream id */
3251 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
3252 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
3253
3254 /* set the stream format */
3255 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
3256 AC_VERB_SET_STREAM_FORMAT, format);
3257
3258 /* turn on again (if needed) */
3259 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06003260 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003261 snd_hda_codec_write(codec,
3262 nvhdmi_master_con_nid_7x,
3263 0,
3264 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06003265 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003266 snd_hda_codec_write(codec,
3267 nvhdmi_master_con_nid_7x,
3268 0,
3269 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
3270 }
3271
3272 for (i = 0; i < 4; i++) {
3273 if (chs == 2)
3274 channel_id = 0;
3275 else
3276 channel_id = i * 2;
3277
3278 /* turn off SPDIF once;
3279 *otherwise the IEC958 bits won't be updated
3280 */
3281 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06003282 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003283 snd_hda_codec_write(codec,
3284 nvhdmi_con_nids_7x[i],
3285 0,
3286 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06003287 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003288 /* set the stream id */
3289 snd_hda_codec_write(codec,
3290 nvhdmi_con_nids_7x[i],
3291 0,
3292 AC_VERB_SET_CHANNEL_STREAMID,
3293 (stream_tag << 4) | channel_id);
3294 /* set the stream format */
3295 snd_hda_codec_write(codec,
3296 nvhdmi_con_nids_7x[i],
3297 0,
3298 AC_VERB_SET_STREAM_FORMAT,
3299 format);
3300 /* turn on again (if needed) */
3301 /* enable and set the channel status audio/data flag */
3302 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06003303 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003304 snd_hda_codec_write(codec,
3305 nvhdmi_con_nids_7x[i],
3306 0,
3307 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06003308 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003309 snd_hda_codec_write(codec,
3310 nvhdmi_con_nids_7x[i],
3311 0,
3312 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
3313 }
3314 }
3315
Aaron Plattner1f348522011-04-06 17:19:04 -07003316 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003317
3318 mutex_unlock(&codec->spdif_mutex);
3319 return 0;
3320}
3321
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02003322static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003323 .substreams = 1,
3324 .channels_min = 2,
3325 .channels_max = 8,
3326 .nid = nvhdmi_master_con_nid_7x,
3327 .rates = SUPPORTED_RATES,
3328 .maxbps = SUPPORTED_MAXBPS,
3329 .formats = SUPPORTED_FORMATS,
3330 .ops = {
3331 .open = simple_playback_pcm_open,
3332 .close = nvhdmi_8ch_7x_pcm_close,
3333 .prepare = nvhdmi_8ch_7x_pcm_prepare
3334 },
3335};
3336
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003337static int patch_nvhdmi_2ch(struct hda_codec *codec)
3338{
3339 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02003340 int err = patch_simple_hdmi(codec, nvhdmi_master_con_nid_7x,
3341 nvhdmi_master_pin_nid_7x);
3342 if (err < 0)
3343 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003344
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02003345 codec->patch_ops.init = nvhdmi_7x_init_2ch;
Takashi Iwaid0b12522012-06-15 14:34:42 +02003346 /* override the PCM rates, etc, as the codec doesn't give full list */
3347 spec = codec->spec;
3348 spec->pcm_playback.rates = SUPPORTED_RATES;
3349 spec->pcm_playback.maxbps = SUPPORTED_MAXBPS;
3350 spec->pcm_playback.formats = SUPPORTED_FORMATS;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003351 return 0;
3352}
3353
Takashi Iwai53775b02012-08-01 12:17:41 +02003354static int nvhdmi_7x_8ch_build_pcms(struct hda_codec *codec)
3355{
3356 struct hdmi_spec *spec = codec->spec;
3357 int err = simple_playback_build_pcms(codec);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003358 if (!err) {
3359 struct hda_pcm *info = get_pcm_rec(spec, 0);
3360 info->own_chmap = true;
3361 }
Takashi Iwai53775b02012-08-01 12:17:41 +02003362 return err;
3363}
3364
3365static int nvhdmi_7x_8ch_build_controls(struct hda_codec *codec)
3366{
3367 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003368 struct hda_pcm *info;
Takashi Iwai53775b02012-08-01 12:17:41 +02003369 struct snd_pcm_chmap *chmap;
3370 int err;
3371
3372 err = simple_playback_build_controls(codec);
3373 if (err < 0)
3374 return err;
3375
3376 /* add channel maps */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01003377 info = get_pcm_rec(spec, 0);
3378 err = snd_pcm_add_chmap_ctls(info->pcm,
Takashi Iwai53775b02012-08-01 12:17:41 +02003379 SNDRV_PCM_STREAM_PLAYBACK,
3380 snd_pcm_alt_chmaps, 8, 0, &chmap);
3381 if (err < 0)
3382 return err;
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003383 switch (codec->preset->vendor_id) {
Takashi Iwai53775b02012-08-01 12:17:41 +02003384 case 0x10de0002:
3385 case 0x10de0003:
3386 case 0x10de0005:
3387 case 0x10de0006:
3388 chmap->channel_mask = (1U << 2) | (1U << 8);
3389 break;
3390 case 0x10de0007:
3391 chmap->channel_mask = (1U << 2) | (1U << 6) | (1U << 8);
3392 }
3393 return 0;
3394}
3395
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003396static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
3397{
3398 struct hdmi_spec *spec;
3399 int err = patch_nvhdmi_2ch(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003400 if (err < 0)
3401 return err;
3402 spec = codec->spec;
3403 spec->multiout.max_channels = 8;
Takashi Iwaid0b12522012-06-15 14:34:42 +02003404 spec->pcm_playback = nvhdmi_pcm_playback_8ch_7x;
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02003405 codec->patch_ops.init = nvhdmi_7x_init_8ch;
Takashi Iwai53775b02012-08-01 12:17:41 +02003406 codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms;
3407 codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls;
Aaron Plattner1f348522011-04-06 17:19:04 -07003408
3409 /* Initialize the audio infoframe channel mask and checksum to something
3410 * valid */
3411 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
3412
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003413 return 0;
3414}
3415
3416/*
Anssi Hannula611885b2013-11-03 17:15:00 +02003417 * NVIDIA codecs ignore ASP mapping for 2ch - confirmed on:
3418 * - 0x10de0015
3419 * - 0x10de0040
3420 */
3421static int nvhdmi_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
3422 int channels)
3423{
3424 if (cap->ca_index == 0x00 && channels == 2)
3425 return SNDRV_CTL_TLVT_CHMAP_FIXED;
3426
3427 return hdmi_chmap_cea_alloc_validate_get_type(cap, channels);
3428}
3429
3430static int nvhdmi_chmap_validate(int ca, int chs, unsigned char *map)
3431{
3432 if (ca == 0x00 && (map[0] != SNDRV_CHMAP_FL || map[1] != SNDRV_CHMAP_FR))
3433 return -EINVAL;
3434
3435 return 0;
3436}
3437
3438static int patch_nvhdmi(struct hda_codec *codec)
3439{
3440 struct hdmi_spec *spec;
3441 int err;
3442
3443 err = patch_generic_hdmi(codec);
3444 if (err)
3445 return err;
3446
3447 spec = codec->spec;
Stephen Warren75fae112014-01-30 11:52:16 -07003448 spec->dyn_pin_out = true;
Anssi Hannula611885b2013-11-03 17:15:00 +02003449
3450 spec->ops.chmap_cea_alloc_validate_get_type =
3451 nvhdmi_chmap_cea_alloc_validate_get_type;
3452 spec->ops.chmap_validate = nvhdmi_chmap_validate;
3453
3454 return 0;
3455}
3456
3457/*
Thierry Reding26e9a962015-05-05 14:56:20 +02003458 * The HDA codec on NVIDIA Tegra contains two scratch registers that are
3459 * accessed using vendor-defined verbs. These registers can be used for
3460 * interoperability between the HDA and HDMI drivers.
3461 */
3462
3463/* Audio Function Group node */
3464#define NVIDIA_AFG_NID 0x01
3465
3466/*
3467 * The SCRATCH0 register is used to notify the HDMI codec of changes in audio
3468 * format. On Tegra, bit 31 is used as a trigger that causes an interrupt to
3469 * be raised in the HDMI codec. The remainder of the bits is arbitrary. This
3470 * implementation stores the HDA format (see AC_FMT_*) in bits [15:0] and an
3471 * additional bit (at position 30) to signal the validity of the format.
3472 *
3473 * | 31 | 30 | 29 16 | 15 0 |
3474 * +---------+-------+--------+--------+
3475 * | TRIGGER | VALID | UNUSED | FORMAT |
3476 * +-----------------------------------|
3477 *
3478 * Note that for the trigger bit to take effect it needs to change value
3479 * (i.e. it needs to be toggled).
3480 */
3481#define NVIDIA_GET_SCRATCH0 0xfa6
3482#define NVIDIA_SET_SCRATCH0_BYTE0 0xfa7
3483#define NVIDIA_SET_SCRATCH0_BYTE1 0xfa8
3484#define NVIDIA_SET_SCRATCH0_BYTE2 0xfa9
3485#define NVIDIA_SET_SCRATCH0_BYTE3 0xfaa
3486#define NVIDIA_SCRATCH_TRIGGER (1 << 7)
3487#define NVIDIA_SCRATCH_VALID (1 << 6)
3488
3489#define NVIDIA_GET_SCRATCH1 0xfab
3490#define NVIDIA_SET_SCRATCH1_BYTE0 0xfac
3491#define NVIDIA_SET_SCRATCH1_BYTE1 0xfad
3492#define NVIDIA_SET_SCRATCH1_BYTE2 0xfae
3493#define NVIDIA_SET_SCRATCH1_BYTE3 0xfaf
3494
3495/*
3496 * The format parameter is the HDA audio format (see AC_FMT_*). If set to 0,
3497 * the format is invalidated so that the HDMI codec can be disabled.
3498 */
3499static void tegra_hdmi_set_format(struct hda_codec *codec, unsigned int format)
3500{
3501 unsigned int value;
3502
3503 /* bits [31:30] contain the trigger and valid bits */
3504 value = snd_hda_codec_read(codec, NVIDIA_AFG_NID, 0,
3505 NVIDIA_GET_SCRATCH0, 0);
3506 value = (value >> 24) & 0xff;
3507
3508 /* bits [15:0] are used to store the HDA format */
3509 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3510 NVIDIA_SET_SCRATCH0_BYTE0,
3511 (format >> 0) & 0xff);
3512 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3513 NVIDIA_SET_SCRATCH0_BYTE1,
3514 (format >> 8) & 0xff);
3515
3516 /* bits [16:24] are unused */
3517 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3518 NVIDIA_SET_SCRATCH0_BYTE2, 0);
3519
3520 /*
3521 * Bit 30 signals that the data is valid and hence that HDMI audio can
3522 * be enabled.
3523 */
3524 if (format == 0)
3525 value &= ~NVIDIA_SCRATCH_VALID;
3526 else
3527 value |= NVIDIA_SCRATCH_VALID;
3528
3529 /*
3530 * Whenever the trigger bit is toggled, an interrupt is raised in the
3531 * HDMI codec. The HDMI driver will use that as trigger to update its
3532 * configuration.
3533 */
3534 value ^= NVIDIA_SCRATCH_TRIGGER;
3535
3536 snd_hda_codec_write(codec, NVIDIA_AFG_NID, 0,
3537 NVIDIA_SET_SCRATCH0_BYTE3, value);
3538}
3539
3540static int tegra_hdmi_pcm_prepare(struct hda_pcm_stream *hinfo,
3541 struct hda_codec *codec,
3542 unsigned int stream_tag,
3543 unsigned int format,
3544 struct snd_pcm_substream *substream)
3545{
3546 int err;
3547
3548 err = generic_hdmi_playback_pcm_prepare(hinfo, codec, stream_tag,
3549 format, substream);
3550 if (err < 0)
3551 return err;
3552
3553 /* notify the HDMI codec of the format change */
3554 tegra_hdmi_set_format(codec, format);
3555
3556 return 0;
3557}
3558
3559static int tegra_hdmi_pcm_cleanup(struct hda_pcm_stream *hinfo,
3560 struct hda_codec *codec,
3561 struct snd_pcm_substream *substream)
3562{
3563 /* invalidate the format in the HDMI codec */
3564 tegra_hdmi_set_format(codec, 0);
3565
3566 return generic_hdmi_playback_pcm_cleanup(hinfo, codec, substream);
3567}
3568
3569static struct hda_pcm *hda_find_pcm_by_type(struct hda_codec *codec, int type)
3570{
3571 struct hdmi_spec *spec = codec->spec;
3572 unsigned int i;
3573
3574 for (i = 0; i < spec->num_pins; i++) {
3575 struct hda_pcm *pcm = get_pcm_rec(spec, i);
3576
3577 if (pcm->pcm_type == type)
3578 return pcm;
3579 }
3580
3581 return NULL;
3582}
3583
3584static int tegra_hdmi_build_pcms(struct hda_codec *codec)
3585{
3586 struct hda_pcm_stream *stream;
3587 struct hda_pcm *pcm;
3588 int err;
3589
3590 err = generic_hdmi_build_pcms(codec);
3591 if (err < 0)
3592 return err;
3593
3594 pcm = hda_find_pcm_by_type(codec, HDA_PCM_TYPE_HDMI);
3595 if (!pcm)
3596 return -ENODEV;
3597
3598 /*
3599 * Override ->prepare() and ->cleanup() operations to notify the HDMI
3600 * codec about format changes.
3601 */
3602 stream = &pcm->stream[SNDRV_PCM_STREAM_PLAYBACK];
3603 stream->ops.prepare = tegra_hdmi_pcm_prepare;
3604 stream->ops.cleanup = tegra_hdmi_pcm_cleanup;
3605
3606 return 0;
3607}
3608
3609static int patch_tegra_hdmi(struct hda_codec *codec)
3610{
3611 int err;
3612
3613 err = patch_generic_hdmi(codec);
3614 if (err)
3615 return err;
3616
3617 codec->patch_ops.build_pcms = tegra_hdmi_build_pcms;
3618
3619 return 0;
3620}
3621
3622/*
Anssi Hannula5a6135842013-10-24 21:10:35 +03003623 * ATI/AMD-specific implementations
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003624 */
3625
Anssi Hannula5a6135842013-10-24 21:10:35 +03003626#define is_amdhdmi_rev3_or_later(codec) \
Takashi Iwai7639a062015-03-03 10:07:24 +01003627 ((codec)->core.vendor_id == 0x1002aa01 && \
3628 ((codec)->core.revision_id & 0xff00) >= 0x0300)
Anssi Hannula5a6135842013-10-24 21:10:35 +03003629#define has_amd_full_remap_support(codec) is_amdhdmi_rev3_or_later(codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003630
Anssi Hannula5a6135842013-10-24 21:10:35 +03003631/* ATI/AMD specific HDA pin verbs, see the AMD HDA Verbs specification */
3632#define ATI_VERB_SET_CHANNEL_ALLOCATION 0x771
3633#define ATI_VERB_SET_DOWNMIX_INFO 0x772
3634#define ATI_VERB_SET_MULTICHANNEL_01 0x777
3635#define ATI_VERB_SET_MULTICHANNEL_23 0x778
3636#define ATI_VERB_SET_MULTICHANNEL_45 0x779
3637#define ATI_VERB_SET_MULTICHANNEL_67 0x77a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003638#define ATI_VERB_SET_HBR_CONTROL 0x77c
Anssi Hannula5a6135842013-10-24 21:10:35 +03003639#define ATI_VERB_SET_MULTICHANNEL_1 0x785
3640#define ATI_VERB_SET_MULTICHANNEL_3 0x786
3641#define ATI_VERB_SET_MULTICHANNEL_5 0x787
3642#define ATI_VERB_SET_MULTICHANNEL_7 0x788
3643#define ATI_VERB_SET_MULTICHANNEL_MODE 0x789
3644#define ATI_VERB_GET_CHANNEL_ALLOCATION 0xf71
3645#define ATI_VERB_GET_DOWNMIX_INFO 0xf72
3646#define ATI_VERB_GET_MULTICHANNEL_01 0xf77
3647#define ATI_VERB_GET_MULTICHANNEL_23 0xf78
3648#define ATI_VERB_GET_MULTICHANNEL_45 0xf79
3649#define ATI_VERB_GET_MULTICHANNEL_67 0xf7a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003650#define ATI_VERB_GET_HBR_CONTROL 0xf7c
Anssi Hannula5a6135842013-10-24 21:10:35 +03003651#define ATI_VERB_GET_MULTICHANNEL_1 0xf85
3652#define ATI_VERB_GET_MULTICHANNEL_3 0xf86
3653#define ATI_VERB_GET_MULTICHANNEL_5 0xf87
3654#define ATI_VERB_GET_MULTICHANNEL_7 0xf88
3655#define ATI_VERB_GET_MULTICHANNEL_MODE 0xf89
3656
Anssi Hannula84d69e72013-10-24 21:10:38 +03003657/* AMD specific HDA cvt verbs */
3658#define ATI_VERB_SET_RAMP_RATE 0x770
3659#define ATI_VERB_GET_RAMP_RATE 0xf70
3660
Anssi Hannula5a6135842013-10-24 21:10:35 +03003661#define ATI_OUT_ENABLE 0x1
3662
3663#define ATI_MULTICHANNEL_MODE_PAIRED 0
3664#define ATI_MULTICHANNEL_MODE_SINGLE 1
3665
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003666#define ATI_HBR_CAPABLE 0x01
3667#define ATI_HBR_ENABLE 0x10
3668
Anssi Hannula89250f82013-10-24 21:10:36 +03003669static int atihdmi_pin_get_eld(struct hda_codec *codec, hda_nid_t nid,
3670 unsigned char *buf, int *eld_size)
3671{
3672 /* call hda_eld.c ATI/AMD-specific function */
3673 return snd_hdmi_get_eld_ati(codec, nid, buf, eld_size,
3674 is_amdhdmi_rev3_or_later(codec));
3675}
3676
Anssi Hannula5a6135842013-10-24 21:10:35 +03003677static void atihdmi_pin_setup_infoframe(struct hda_codec *codec, hda_nid_t pin_nid, int ca,
3678 int active_channels, int conn_type)
3679{
3680 snd_hda_codec_write(codec, pin_nid, 0, ATI_VERB_SET_CHANNEL_ALLOCATION, ca);
3681}
3682
3683static int atihdmi_paired_swap_fc_lfe(int pos)
3684{
3685 /*
3686 * ATI/AMD have automatic FC/LFE swap built-in
3687 * when in pairwise mapping mode.
3688 */
3689
3690 switch (pos) {
3691 /* see channel_allocations[].speakers[] */
3692 case 2: return 3;
3693 case 3: return 2;
3694 default: break;
3695 }
3696
3697 return pos;
3698}
3699
3700static int atihdmi_paired_chmap_validate(int ca, int chs, unsigned char *map)
3701{
3702 struct cea_channel_speaker_allocation *cap;
3703 int i, j;
3704
3705 /* check that only channel pairs need to be remapped on old pre-rev3 ATI/AMD */
3706
3707 cap = &channel_allocations[get_channel_allocation_order(ca)];
3708 for (i = 0; i < chs; ++i) {
3709 int mask = to_spk_mask(map[i]);
3710 bool ok = false;
3711 bool companion_ok = false;
3712
3713 if (!mask)
3714 continue;
3715
3716 for (j = 0 + i % 2; j < 8; j += 2) {
3717 int chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j);
3718 if (cap->speakers[chan_idx] == mask) {
3719 /* channel is in a supported position */
3720 ok = true;
3721
3722 if (i % 2 == 0 && i + 1 < chs) {
3723 /* even channel, check the odd companion */
3724 int comp_chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j + 1);
3725 int comp_mask_req = to_spk_mask(map[i+1]);
3726 int comp_mask_act = cap->speakers[comp_chan_idx];
3727
3728 if (comp_mask_req == comp_mask_act)
3729 companion_ok = true;
3730 else
3731 return -EINVAL;
3732 }
3733 break;
3734 }
3735 }
3736
3737 if (!ok)
3738 return -EINVAL;
3739
3740 if (companion_ok)
3741 i++; /* companion channel already checked */
3742 }
3743
3744 return 0;
3745}
3746
3747static int atihdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
3748 int hdmi_slot, int stream_channel)
3749{
3750 int verb;
3751 int ati_channel_setup = 0;
3752
3753 if (hdmi_slot > 7)
3754 return -EINVAL;
3755
3756 if (!has_amd_full_remap_support(codec)) {
3757 hdmi_slot = atihdmi_paired_swap_fc_lfe(hdmi_slot);
3758
3759 /* In case this is an odd slot but without stream channel, do not
3760 * disable the slot since the corresponding even slot could have a
3761 * channel. In case neither have a channel, the slot pair will be
3762 * disabled when this function is called for the even slot. */
3763 if (hdmi_slot % 2 != 0 && stream_channel == 0xf)
3764 return 0;
3765
3766 hdmi_slot -= hdmi_slot % 2;
3767
3768 if (stream_channel != 0xf)
3769 stream_channel -= stream_channel % 2;
3770 }
3771
3772 verb = ATI_VERB_SET_MULTICHANNEL_01 + hdmi_slot/2 + (hdmi_slot % 2) * 0x00e;
3773
3774 /* ati_channel_setup format: [7..4] = stream_channel_id, [1] = mute, [0] = enable */
3775
3776 if (stream_channel != 0xf)
3777 ati_channel_setup = (stream_channel << 4) | ATI_OUT_ENABLE;
3778
3779 return snd_hda_codec_write(codec, pin_nid, 0, verb, ati_channel_setup);
3780}
3781
3782static int atihdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
3783 int asp_slot)
3784{
3785 bool was_odd = false;
3786 int ati_asp_slot = asp_slot;
3787 int verb;
3788 int ati_channel_setup;
3789
3790 if (asp_slot > 7)
3791 return -EINVAL;
3792
3793 if (!has_amd_full_remap_support(codec)) {
3794 ati_asp_slot = atihdmi_paired_swap_fc_lfe(asp_slot);
3795 if (ati_asp_slot % 2 != 0) {
3796 ati_asp_slot -= 1;
3797 was_odd = true;
3798 }
3799 }
3800
3801 verb = ATI_VERB_GET_MULTICHANNEL_01 + ati_asp_slot/2 + (ati_asp_slot % 2) * 0x00e;
3802
3803 ati_channel_setup = snd_hda_codec_read(codec, pin_nid, 0, verb, 0);
3804
3805 if (!(ati_channel_setup & ATI_OUT_ENABLE))
3806 return 0xf;
3807
3808 return ((ati_channel_setup & 0xf0) >> 4) + !!was_odd;
3809}
3810
3811static int atihdmi_paired_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
3812 int channels)
3813{
3814 int c;
3815
3816 /*
3817 * Pre-rev3 ATI/AMD codecs operate in a paired channel mode, so
3818 * we need to take that into account (a single channel may take 2
3819 * channel slots if we need to carry a silent channel next to it).
3820 * On Rev3+ AMD codecs this function is not used.
3821 */
3822 int chanpairs = 0;
3823
3824 /* We only produce even-numbered channel count TLVs */
3825 if ((channels % 2) != 0)
3826 return -1;
3827
3828 for (c = 0; c < 7; c += 2) {
3829 if (cap->speakers[c] || cap->speakers[c+1])
3830 chanpairs++;
3831 }
3832
3833 if (chanpairs * 2 != channels)
3834 return -1;
3835
3836 return SNDRV_CTL_TLVT_CHMAP_PAIRED;
3837}
3838
3839static void atihdmi_paired_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
3840 unsigned int *chmap, int channels)
3841{
3842 /* produce paired maps for pre-rev3 ATI/AMD codecs */
3843 int count = 0;
3844 int c;
3845
3846 for (c = 7; c >= 0; c--) {
3847 int chan = 7 - atihdmi_paired_swap_fc_lfe(7 - c);
3848 int spk = cap->speakers[chan];
3849 if (!spk) {
3850 /* add N/A channel if the companion channel is occupied */
3851 if (cap->speakers[chan + (chan % 2 ? -1 : 1)])
3852 chmap[count++] = SNDRV_CHMAP_NA;
3853
3854 continue;
3855 }
3856
3857 chmap[count++] = spk_to_chmap(spk);
3858 }
3859
3860 WARN_ON(count != channels);
3861}
3862
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003863static int atihdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
3864 bool hbr)
3865{
3866 int hbr_ctl, hbr_ctl_new;
3867
3868 hbr_ctl = snd_hda_codec_read(codec, pin_nid, 0, ATI_VERB_GET_HBR_CONTROL, 0);
Anssi Hannula13122e62013-11-10 20:56:10 +02003869 if (hbr_ctl >= 0 && (hbr_ctl & ATI_HBR_CAPABLE)) {
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003870 if (hbr)
3871 hbr_ctl_new = hbr_ctl | ATI_HBR_ENABLE;
3872 else
3873 hbr_ctl_new = hbr_ctl & ~ATI_HBR_ENABLE;
3874
Takashi Iwai4e76a882014-02-25 12:21:03 +01003875 codec_dbg(codec,
3876 "atihdmi_pin_hbr_setup: NID=0x%x, %shbr-ctl=0x%x\n",
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003877 pin_nid,
3878 hbr_ctl == hbr_ctl_new ? "" : "new-",
3879 hbr_ctl_new);
3880
3881 if (hbr_ctl != hbr_ctl_new)
3882 snd_hda_codec_write(codec, pin_nid, 0,
3883 ATI_VERB_SET_HBR_CONTROL,
3884 hbr_ctl_new);
3885
3886 } else if (hbr)
3887 return -EINVAL;
3888
3889 return 0;
3890}
3891
Anssi Hannula84d69e72013-10-24 21:10:38 +03003892static int atihdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
3893 hda_nid_t pin_nid, u32 stream_tag, int format)
3894{
3895
3896 if (is_amdhdmi_rev3_or_later(codec)) {
3897 int ramp_rate = 180; /* default as per AMD spec */
3898 /* disable ramp-up/down for non-pcm as per AMD spec */
3899 if (format & AC_FMT_TYPE_NON_PCM)
3900 ramp_rate = 0;
3901
3902 snd_hda_codec_write(codec, cvt_nid, 0, ATI_VERB_SET_RAMP_RATE, ramp_rate);
3903 }
3904
3905 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
3906}
3907
3908
Anssi Hannula5a6135842013-10-24 21:10:35 +03003909static int atihdmi_init(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003910{
3911 struct hdmi_spec *spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003912 int pin_idx, err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003913
Anssi Hannula5a6135842013-10-24 21:10:35 +03003914 err = generic_hdmi_init(codec);
3915
3916 if (err)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003917 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003918
3919 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
3920 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
3921
3922 /* make sure downmix information in infoframe is zero */
3923 snd_hda_codec_write(codec, per_pin->pin_nid, 0, ATI_VERB_SET_DOWNMIX_INFO, 0);
3924
3925 /* enable channel-wise remap mode if supported */
3926 if (has_amd_full_remap_support(codec))
3927 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
3928 ATI_VERB_SET_MULTICHANNEL_MODE,
3929 ATI_MULTICHANNEL_MODE_SINGLE);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003930 }
Anssi Hannula5a6135842013-10-24 21:10:35 +03003931
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003932 return 0;
3933}
3934
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003935static int patch_atihdmi(struct hda_codec *codec)
3936{
3937 struct hdmi_spec *spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003938 struct hdmi_spec_per_cvt *per_cvt;
3939 int err, cvt_idx;
3940
3941 err = patch_generic_hdmi(codec);
3942
3943 if (err)
Takashi Iwaid0b12522012-06-15 14:34:42 +02003944 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003945
3946 codec->patch_ops.init = atihdmi_init;
3947
Takashi Iwaid0b12522012-06-15 14:34:42 +02003948 spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003949
Anssi Hannula89250f82013-10-24 21:10:36 +03003950 spec->ops.pin_get_eld = atihdmi_pin_get_eld;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003951 spec->ops.pin_get_slot_channel = atihdmi_pin_get_slot_channel;
3952 spec->ops.pin_set_slot_channel = atihdmi_pin_set_slot_channel;
3953 spec->ops.pin_setup_infoframe = atihdmi_pin_setup_infoframe;
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003954 spec->ops.pin_hbr_setup = atihdmi_pin_hbr_setup;
Anssi Hannula84d69e72013-10-24 21:10:38 +03003955 spec->ops.setup_stream = atihdmi_setup_stream;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003956
3957 if (!has_amd_full_remap_support(codec)) {
3958 /* override to ATI/AMD-specific versions with pairwise mapping */
3959 spec->ops.chmap_cea_alloc_validate_get_type =
3960 atihdmi_paired_chmap_cea_alloc_validate_get_type;
3961 spec->ops.cea_alloc_to_tlv_chmap = atihdmi_paired_cea_alloc_to_tlv_chmap;
3962 spec->ops.chmap_validate = atihdmi_paired_chmap_validate;
3963 }
3964
3965 /* ATI/AMD converters do not advertise all of their capabilities */
3966 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
3967 per_cvt = get_cvt(spec, cvt_idx);
3968 per_cvt->channels_max = max(per_cvt->channels_max, 8u);
3969 per_cvt->rates |= SUPPORTED_RATES;
3970 per_cvt->formats |= SUPPORTED_FORMATS;
3971 per_cvt->maxbps = max(per_cvt->maxbps, 24u);
3972 }
3973
3974 spec->channels_max = max(spec->channels_max, 8u);
3975
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003976 return 0;
3977}
3978
Annie Liu3de5ff82012-06-08 19:18:42 +08003979/* VIA HDMI Implementation */
3980#define VIAHDMI_CVT_NID 0x02 /* audio converter1 */
3981#define VIAHDMI_PIN_NID 0x03 /* HDMI output pin1 */
3982
Annie Liu3de5ff82012-06-08 19:18:42 +08003983static int patch_via_hdmi(struct hda_codec *codec)
3984{
Takashi Iwai250e41a2012-06-15 14:40:21 +02003985 return patch_simple_hdmi(codec, VIAHDMI_CVT_NID, VIAHDMI_PIN_NID);
Annie Liu3de5ff82012-06-08 19:18:42 +08003986}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003987
3988/*
3989 * patch entries
3990 */
Takashi Iwaib9a94a92015-10-01 16:20:04 +02003991static const struct hda_device_id snd_hda_id_hdmi[] = {
3992HDA_CODEC_ENTRY(0x1002793c, "RS600 HDMI", patch_atihdmi),
3993HDA_CODEC_ENTRY(0x10027919, "RS600 HDMI", patch_atihdmi),
3994HDA_CODEC_ENTRY(0x1002791a, "RS690/780 HDMI", patch_atihdmi),
3995HDA_CODEC_ENTRY(0x1002aa01, "R6xx HDMI", patch_atihdmi),
3996HDA_CODEC_ENTRY(0x10951390, "SiI1390 HDMI", patch_generic_hdmi),
3997HDA_CODEC_ENTRY(0x10951392, "SiI1392 HDMI", patch_generic_hdmi),
3998HDA_CODEC_ENTRY(0x17e80047, "Chrontel HDMI", patch_generic_hdmi),
3999HDA_CODEC_ENTRY(0x10de0002, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
4000HDA_CODEC_ENTRY(0x10de0003, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
4001HDA_CODEC_ENTRY(0x10de0005, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
4002HDA_CODEC_ENTRY(0x10de0006, "MCP77/78 HDMI", patch_nvhdmi_8ch_7x),
4003HDA_CODEC_ENTRY(0x10de0007, "MCP79/7A HDMI", patch_nvhdmi_8ch_7x),
4004HDA_CODEC_ENTRY(0x10de000a, "GPU 0a HDMI/DP", patch_nvhdmi),
4005HDA_CODEC_ENTRY(0x10de000b, "GPU 0b HDMI/DP", patch_nvhdmi),
4006HDA_CODEC_ENTRY(0x10de000c, "MCP89 HDMI", patch_nvhdmi),
4007HDA_CODEC_ENTRY(0x10de000d, "GPU 0d HDMI/DP", patch_nvhdmi),
4008HDA_CODEC_ENTRY(0x10de0010, "GPU 10 HDMI/DP", patch_nvhdmi),
4009HDA_CODEC_ENTRY(0x10de0011, "GPU 11 HDMI/DP", patch_nvhdmi),
4010HDA_CODEC_ENTRY(0x10de0012, "GPU 12 HDMI/DP", patch_nvhdmi),
4011HDA_CODEC_ENTRY(0x10de0013, "GPU 13 HDMI/DP", patch_nvhdmi),
4012HDA_CODEC_ENTRY(0x10de0014, "GPU 14 HDMI/DP", patch_nvhdmi),
4013HDA_CODEC_ENTRY(0x10de0015, "GPU 15 HDMI/DP", patch_nvhdmi),
4014HDA_CODEC_ENTRY(0x10de0016, "GPU 16 HDMI/DP", patch_nvhdmi),
Richard Samsonc8900a02011-03-03 12:46:13 +01004015/* 17 is known to be absent */
Takashi Iwaib9a94a92015-10-01 16:20:04 +02004016HDA_CODEC_ENTRY(0x10de0018, "GPU 18 HDMI/DP", patch_nvhdmi),
4017HDA_CODEC_ENTRY(0x10de0019, "GPU 19 HDMI/DP", patch_nvhdmi),
4018HDA_CODEC_ENTRY(0x10de001a, "GPU 1a HDMI/DP", patch_nvhdmi),
4019HDA_CODEC_ENTRY(0x10de001b, "GPU 1b HDMI/DP", patch_nvhdmi),
4020HDA_CODEC_ENTRY(0x10de001c, "GPU 1c HDMI/DP", patch_nvhdmi),
4021HDA_CODEC_ENTRY(0x10de0020, "Tegra30 HDMI", patch_tegra_hdmi),
4022HDA_CODEC_ENTRY(0x10de0022, "Tegra114 HDMI", patch_tegra_hdmi),
4023HDA_CODEC_ENTRY(0x10de0028, "Tegra124 HDMI", patch_tegra_hdmi),
4024HDA_CODEC_ENTRY(0x10de0029, "Tegra210 HDMI/DP", patch_tegra_hdmi),
4025HDA_CODEC_ENTRY(0x10de0040, "GPU 40 HDMI/DP", patch_nvhdmi),
4026HDA_CODEC_ENTRY(0x10de0041, "GPU 41 HDMI/DP", patch_nvhdmi),
4027HDA_CODEC_ENTRY(0x10de0042, "GPU 42 HDMI/DP", patch_nvhdmi),
4028HDA_CODEC_ENTRY(0x10de0043, "GPU 43 HDMI/DP", patch_nvhdmi),
4029HDA_CODEC_ENTRY(0x10de0044, "GPU 44 HDMI/DP", patch_nvhdmi),
4030HDA_CODEC_ENTRY(0x10de0051, "GPU 51 HDMI/DP", patch_nvhdmi),
4031HDA_CODEC_ENTRY(0x10de0060, "GPU 60 HDMI/DP", patch_nvhdmi),
4032HDA_CODEC_ENTRY(0x10de0067, "MCP67 HDMI", patch_nvhdmi_2ch),
4033HDA_CODEC_ENTRY(0x10de0070, "GPU 70 HDMI/DP", patch_nvhdmi),
4034HDA_CODEC_ENTRY(0x10de0071, "GPU 71 HDMI/DP", patch_nvhdmi),
4035HDA_CODEC_ENTRY(0x10de0072, "GPU 72 HDMI/DP", patch_nvhdmi),
4036HDA_CODEC_ENTRY(0x10de007d, "GPU 7d HDMI/DP", patch_nvhdmi),
4037HDA_CODEC_ENTRY(0x10de8001, "MCP73 HDMI", patch_nvhdmi_2ch),
4038HDA_CODEC_ENTRY(0x11069f80, "VX900 HDMI/DP", patch_via_hdmi),
4039HDA_CODEC_ENTRY(0x11069f81, "VX900 HDMI/DP", patch_via_hdmi),
4040HDA_CODEC_ENTRY(0x11069f84, "VX11 HDMI/DP", patch_generic_hdmi),
4041HDA_CODEC_ENTRY(0x11069f85, "VX11 HDMI/DP", patch_generic_hdmi),
4042HDA_CODEC_ENTRY(0x80860054, "IbexPeak HDMI", patch_generic_hdmi),
4043HDA_CODEC_ENTRY(0x80862801, "Bearlake HDMI", patch_generic_hdmi),
4044HDA_CODEC_ENTRY(0x80862802, "Cantiga HDMI", patch_generic_hdmi),
4045HDA_CODEC_ENTRY(0x80862803, "Eaglelake HDMI", patch_generic_hdmi),
4046HDA_CODEC_ENTRY(0x80862804, "IbexPeak HDMI", patch_generic_hdmi),
4047HDA_CODEC_ENTRY(0x80862805, "CougarPoint HDMI", patch_generic_hdmi),
4048HDA_CODEC_ENTRY(0x80862806, "PantherPoint HDMI", patch_generic_hdmi),
4049HDA_CODEC_ENTRY(0x80862807, "Haswell HDMI", patch_generic_hdmi),
4050HDA_CODEC_ENTRY(0x80862808, "Broadwell HDMI", patch_generic_hdmi),
4051HDA_CODEC_ENTRY(0x80862809, "Skylake HDMI", patch_generic_hdmi),
4052HDA_CODEC_ENTRY(0x8086280a, "Broxton HDMI", patch_generic_hdmi),
Libin Yang91815d82016-01-14 14:09:00 +08004053HDA_CODEC_ENTRY(0x8086280b, "Kabylake HDMI", patch_generic_hdmi),
Takashi Iwaib9a94a92015-10-01 16:20:04 +02004054HDA_CODEC_ENTRY(0x80862880, "CedarTrail HDMI", patch_generic_hdmi),
4055HDA_CODEC_ENTRY(0x80862882, "Valleyview2 HDMI", patch_generic_hdmi),
4056HDA_CODEC_ENTRY(0x80862883, "Braswell HDMI", patch_generic_hdmi),
4057HDA_CODEC_ENTRY(0x808629fb, "Crestline HDMI", patch_generic_hdmi),
Takashi Iwaid8a766a2015-02-17 15:25:37 +01004058/* special ID for generic HDMI */
Takashi Iwaib9a94a92015-10-01 16:20:04 +02004059HDA_CODEC_ENTRY(HDA_CODEC_ID_GENERIC_HDMI, "Generic HDMI", patch_generic_hdmi),
Takashi Iwai84eb01b2010-09-07 12:27:25 +02004060{} /* terminator */
4061};
Takashi Iwaib9a94a92015-10-01 16:20:04 +02004062MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_hdmi);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02004063
4064MODULE_LICENSE("GPL");
4065MODULE_DESCRIPTION("HDMI HD-audio codec");
4066MODULE_ALIAS("snd-hda-codec-intelhdmi");
4067MODULE_ALIAS("snd-hda-codec-nvhdmi");
4068MODULE_ALIAS("snd-hda-codec-atihdmi");
4069
Takashi Iwaid8a766a2015-02-17 15:25:37 +01004070static struct hda_codec_driver hdmi_driver = {
Takashi Iwaib9a94a92015-10-01 16:20:04 +02004071 .id = snd_hda_id_hdmi,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02004072};
4073
Takashi Iwaid8a766a2015-02-17 15:25:37 +01004074module_hda_codec_driver(hdmi_driver);