blob: aecf088f40af944afb11001f0972328e527eb3be [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>
Wu Fengguang079d88c2010-03-08 10:44:23 +08009 *
10 * Authors:
11 * Wu Fengguang <wfg@linux.intel.com>
12 *
13 * Maintained by:
14 * Wu Fengguang <wfg@linux.intel.com>
15 *
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the Free
18 * Software Foundation; either version 2 of the License, or (at your option)
19 * any later version.
20 *
21 * This program is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
23 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 * for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software Foundation,
28 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 */
30
Takashi Iwai84eb01b2010-09-07 12:27:25 +020031#include <linux/init.h>
32#include <linux/delay.h>
33#include <linux/slab.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040034#include <linux/module.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020035#include <sound/core.h>
David Henningsson07acecc2011-05-19 11:46:03 +020036#include <sound/jack.h>
Wang Xingchao433968d2012-09-06 10:02:37 +080037#include <sound/asoundef.h>
Takashi Iwaid45e6882012-07-31 11:36:00 +020038#include <sound/tlv.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020039#include "hda_codec.h"
40#include "hda_local.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020041#include "hda_jack.h"
Takashi Iwai84eb01b2010-09-07 12:27:25 +020042
Takashi Iwai0ebaa242011-01-11 18:11:04 +010043static bool static_hdmi_pcm;
44module_param(static_hdmi_pcm, bool, 0644);
45MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info");
46
Stephen Warren384a48d2011-06-01 11:14:21 -060047struct hdmi_spec_per_cvt {
48 hda_nid_t cvt_nid;
49 int assigned;
50 unsigned int channels_min;
51 unsigned int channels_max;
52 u32 rates;
53 u64 formats;
54 unsigned int maxbps;
55};
56
Takashi Iwai4eea3092013-02-07 18:18:19 +010057/* max. connections to a widget */
58#define HDA_MAX_CONNECTIONS 32
59
Stephen Warren384a48d2011-06-01 11:14:21 -060060struct hdmi_spec_per_pin {
61 hda_nid_t pin_nid;
62 int num_mux_nids;
63 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Wu Fengguang744626d2011-11-16 16:29:47 +080064
65 struct hda_codec *codec;
Stephen Warren384a48d2011-06-01 11:14:21 -060066 struct hdmi_eld sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +080067 struct delayed_work work;
David Henningsson92c69e72013-02-19 16:11:26 +010068 struct snd_kcontrol *eld_ctl;
Wu Fengguangc6e84532011-11-18 16:59:32 -060069 int repoll_count;
Takashi Iwaidc780f72013-09-02 12:33:02 +020070 bool setup; /* the stream has been set up by prepare callback */
71 int channels; /* current number of channels */
Takashi Iwai1a6003b2012-09-06 17:42:08 +020072 bool non_pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +020073 bool chmap_set; /* channel-map override by ALSA API? */
74 unsigned char chmap[8]; /* ALSA API channel-map */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +010075 char pcm_name[8]; /* filled in build_pcm callbacks */
Stephen Warren384a48d2011-06-01 11:14:21 -060076};
77
Wu Fengguang079d88c2010-03-08 10:44:23 +080078struct hdmi_spec {
79 int num_cvts;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +010080 struct snd_array cvts; /* struct hdmi_spec_per_cvt */
81 hda_nid_t cvt_nids[4]; /* only for haswell fix */
Stephen Warren384a48d2011-06-01 11:14:21 -060082
Wu Fengguang079d88c2010-03-08 10:44:23 +080083 int num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +010084 struct snd_array pins; /* struct hdmi_spec_per_pin */
85 struct snd_array pcm_rec; /* struct hda_pcm */
Takashi Iwaid45e6882012-07-31 11:36:00 +020086 unsigned int channels_max; /* max over all cvts */
Wu Fengguang079d88c2010-03-08 10:44:23 +080087
David Henningsson4bd038f2013-02-19 16:11:25 +010088 struct hdmi_eld temp_eld;
Wu Fengguang079d88c2010-03-08 10:44:23 +080089 /*
Stephen Warren384a48d2011-06-01 11:14:21 -060090 * Non-generic ATI/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +080091 */
92 struct hda_multi_out multiout;
Takashi Iwaid0b12522012-06-15 14:34:42 +020093 struct hda_pcm_stream pcm_playback;
Wu Fengguang079d88c2010-03-08 10:44:23 +080094};
95
96
97struct hdmi_audio_infoframe {
98 u8 type; /* 0x84 */
99 u8 ver; /* 0x01 */
100 u8 len; /* 0x0a */
101
Wu Fengguang53d7d692010-09-21 14:25:49 +0800102 u8 checksum;
103
Wu Fengguang079d88c2010-03-08 10:44:23 +0800104 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
105 u8 SS01_SF24;
106 u8 CXT04;
107 u8 CA;
108 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800109};
110
111struct dp_audio_infoframe {
112 u8 type; /* 0x84 */
113 u8 len; /* 0x1b */
114 u8 ver; /* 0x11 << 2 */
115
116 u8 CC02_CT47; /* match with HDMI infoframe from this on */
117 u8 SS01_SF24;
118 u8 CXT04;
119 u8 CA;
120 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800121};
122
Takashi Iwai2b203db2011-02-11 12:17:30 +0100123union audio_infoframe {
124 struct hdmi_audio_infoframe hdmi;
125 struct dp_audio_infoframe dp;
126 u8 bytes[0];
127};
128
Wu Fengguang079d88c2010-03-08 10:44:23 +0800129/*
130 * CEA speaker placement:
131 *
132 * FLH FCH FRH
133 * FLW FL FLC FC FRC FR FRW
134 *
135 * LFE
136 * TC
137 *
138 * RL RLC RC RRC RR
139 *
140 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
141 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
142 */
143enum cea_speaker_placement {
144 FL = (1 << 0), /* Front Left */
145 FC = (1 << 1), /* Front Center */
146 FR = (1 << 2), /* Front Right */
147 FLC = (1 << 3), /* Front Left Center */
148 FRC = (1 << 4), /* Front Right Center */
149 RL = (1 << 5), /* Rear Left */
150 RC = (1 << 6), /* Rear Center */
151 RR = (1 << 7), /* Rear Right */
152 RLC = (1 << 8), /* Rear Left Center */
153 RRC = (1 << 9), /* Rear Right Center */
154 LFE = (1 << 10), /* Low Frequency Effect */
155 FLW = (1 << 11), /* Front Left Wide */
156 FRW = (1 << 12), /* Front Right Wide */
157 FLH = (1 << 13), /* Front Left High */
158 FCH = (1 << 14), /* Front Center High */
159 FRH = (1 << 15), /* Front Right High */
160 TC = (1 << 16), /* Top Center */
161};
162
163/*
164 * ELD SA bits in the CEA Speaker Allocation data block
165 */
166static int eld_speaker_allocation_bits[] = {
167 [0] = FL | FR,
168 [1] = LFE,
169 [2] = FC,
170 [3] = RL | RR,
171 [4] = RC,
172 [5] = FLC | FRC,
173 [6] = RLC | RRC,
174 /* the following are not defined in ELD yet */
175 [7] = FLW | FRW,
176 [8] = FLH | FRH,
177 [9] = TC,
178 [10] = FCH,
179};
180
181struct cea_channel_speaker_allocation {
182 int ca_index;
183 int speakers[8];
184
185 /* derived values, just for convenience */
186 int channels;
187 int spk_mask;
188};
189
190/*
191 * ALSA sequence is:
192 *
193 * surround40 surround41 surround50 surround51 surround71
194 * ch0 front left = = = =
195 * ch1 front right = = = =
196 * ch2 rear left = = = =
197 * ch3 rear right = = = =
198 * ch4 LFE center center center
199 * ch5 LFE LFE
200 * ch6 side left
201 * ch7 side right
202 *
203 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
204 */
205static int hdmi_channel_mapping[0x32][8] = {
206 /* stereo */
207 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
208 /* 2.1 */
209 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
210 /* Dolby Surround */
211 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
212 /* surround40 */
213 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
214 /* 4ch */
215 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
216 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800217 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800218 /* surround50 */
219 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
220 /* surround51 */
221 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
222 /* 7.1 */
223 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
224};
225
226/*
227 * This is an ordered list!
228 *
229 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800230 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800231 */
232static struct cea_channel_speaker_allocation channel_allocations[] = {
233/* channel: 7 6 5 4 3 2 1 0 */
234{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
235 /* 2.1 */
236{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
237 /* Dolby Surround */
238{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
239 /* surround40 */
240{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
241 /* surround41 */
242{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
243 /* surround50 */
244{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
245 /* surround51 */
246{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
247 /* 6.1 */
248{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
249 /* surround71 */
250{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
251
252{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
253{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
254{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
255{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
256{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
257{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
258{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
259{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
260{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
261{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
262{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
263{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
264{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
265{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
266{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
267{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
268{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
269{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
270{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
271{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
272{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
273{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
274{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
275{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
276{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
277{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
278{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
279{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
280{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
281{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
282{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
283{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
284{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
285{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
286{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
287{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
288{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
289{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
290{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
291{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
292{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
293};
294
295
296/*
297 * HDMI routines
298 */
299
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100300#define get_pin(spec, idx) \
301 ((struct hdmi_spec_per_pin *)snd_array_elem(&spec->pins, idx))
302#define get_cvt(spec, idx) \
303 ((struct hdmi_spec_per_cvt *)snd_array_elem(&spec->cvts, idx))
304#define get_pcm_rec(spec, idx) \
305 ((struct hda_pcm *)snd_array_elem(&spec->pcm_rec, idx))
306
Stephen Warren384a48d2011-06-01 11:14:21 -0600307static int pin_nid_to_pin_index(struct hdmi_spec *spec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800308{
Stephen Warren384a48d2011-06-01 11:14:21 -0600309 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800310
Stephen Warren384a48d2011-06-01 11:14:21 -0600311 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100312 if (get_pin(spec, pin_idx)->pin_nid == pin_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600313 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800314
Stephen Warren384a48d2011-06-01 11:14:21 -0600315 snd_printk(KERN_WARNING "HDMI: pin nid %d not registered\n", pin_nid);
316 return -EINVAL;
317}
318
319static int hinfo_to_pin_index(struct hdmi_spec *spec,
320 struct hda_pcm_stream *hinfo)
321{
322 int pin_idx;
323
324 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100325 if (get_pcm_rec(spec, pin_idx)->stream == hinfo)
Stephen Warren384a48d2011-06-01 11:14:21 -0600326 return pin_idx;
327
328 snd_printk(KERN_WARNING "HDMI: hinfo %p not registered\n", hinfo);
329 return -EINVAL;
330}
331
332static int cvt_nid_to_cvt_index(struct hdmi_spec *spec, hda_nid_t cvt_nid)
333{
334 int cvt_idx;
335
336 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100337 if (get_cvt(spec, cvt_idx)->cvt_nid == cvt_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600338 return cvt_idx;
339
340 snd_printk(KERN_WARNING "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800341 return -EINVAL;
342}
343
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500344static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
345 struct snd_ctl_elem_info *uinfo)
346{
347 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100348 struct hdmi_spec *spec = codec->spec;
349 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500350 int pin_idx;
351
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500352 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
353
354 pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100355 eld = &get_pin(spec, pin_idx)->sink_eld;
David Henningsson68e03de2013-02-19 16:11:23 +0100356
David Henningsson4bd038f2013-02-19 16:11:25 +0100357 mutex_lock(&eld->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100358 uinfo->count = eld->eld_valid ? eld->eld_size : 0;
David Henningsson4bd038f2013-02-19 16:11:25 +0100359 mutex_unlock(&eld->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500360
361 return 0;
362}
363
364static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
365 struct snd_ctl_elem_value *ucontrol)
366{
367 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100368 struct hdmi_spec *spec = codec->spec;
369 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500370 int pin_idx;
371
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500372 pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100373 eld = &get_pin(spec, pin_idx)->sink_eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500374
David Henningsson4bd038f2013-02-19 16:11:25 +0100375 mutex_lock(&eld->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100376 if (eld->eld_size > ARRAY_SIZE(ucontrol->value.bytes.data)) {
David Henningsson4bd038f2013-02-19 16:11:25 +0100377 mutex_unlock(&eld->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100378 snd_BUG();
379 return -EINVAL;
380 }
381
382 memset(ucontrol->value.bytes.data, 0,
383 ARRAY_SIZE(ucontrol->value.bytes.data));
384 if (eld->eld_valid)
385 memcpy(ucontrol->value.bytes.data, eld->eld_buffer,
386 eld->eld_size);
David Henningsson4bd038f2013-02-19 16:11:25 +0100387 mutex_unlock(&eld->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500388
389 return 0;
390}
391
392static struct snd_kcontrol_new eld_bytes_ctl = {
393 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
394 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
395 .name = "ELD",
396 .info = hdmi_eld_ctl_info,
397 .get = hdmi_eld_ctl_get,
398};
399
400static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
401 int device)
402{
403 struct snd_kcontrol *kctl;
404 struct hdmi_spec *spec = codec->spec;
405 int err;
406
407 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
408 if (!kctl)
409 return -ENOMEM;
410 kctl->private_value = pin_idx;
411 kctl->id.device = device;
412
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100413 err = snd_hda_ctl_add(codec, get_pin(spec, pin_idx)->pin_nid, kctl);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500414 if (err < 0)
415 return err;
416
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100417 get_pin(spec, pin_idx)->eld_ctl = kctl;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500418 return 0;
419}
420
Wu Fengguang079d88c2010-03-08 10:44:23 +0800421#ifdef BE_PARANOID
422static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
423 int *packet_index, int *byte_index)
424{
425 int val;
426
427 val = snd_hda_codec_read(codec, pin_nid, 0,
428 AC_VERB_GET_HDMI_DIP_INDEX, 0);
429
430 *packet_index = val >> 5;
431 *byte_index = val & 0x1f;
432}
433#endif
434
435static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
436 int packet_index, int byte_index)
437{
438 int val;
439
440 val = (packet_index << 5) | (byte_index & 0x1f);
441
442 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
443}
444
445static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
446 unsigned char val)
447{
448 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
449}
450
Stephen Warren384a48d2011-06-01 11:14:21 -0600451static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800452{
453 /* Unmute */
454 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
455 snd_hda_codec_write(codec, pin_nid, 0,
456 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Takashi Iwai6169b672012-12-14 10:22:35 +0100457 /* Enable pin out: some machines with GM965 gets broken output when
458 * the pin is disabled or changed while using with HDMI
459 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800460 snd_hda_codec_write(codec, pin_nid, 0,
Takashi Iwai6169b672012-12-14 10:22:35 +0100461 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800462}
463
Stephen Warren384a48d2011-06-01 11:14:21 -0600464static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800465{
Stephen Warren384a48d2011-06-01 11:14:21 -0600466 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800467 AC_VERB_GET_CVT_CHAN_COUNT, 0);
468}
469
470static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600471 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800472{
Stephen Warren384a48d2011-06-01 11:14:21 -0600473 if (chs != hdmi_get_channel_count(codec, cvt_nid))
474 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800475 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
476}
477
478
479/*
480 * Channel mapping routines
481 */
482
483/*
484 * Compute derived values in channel_allocations[].
485 */
486static void init_channel_allocations(void)
487{
488 int i, j;
489 struct cea_channel_speaker_allocation *p;
490
491 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
492 p = channel_allocations + i;
493 p->channels = 0;
494 p->spk_mask = 0;
495 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
496 if (p->speakers[j]) {
497 p->channels++;
498 p->spk_mask |= p->speakers[j];
499 }
500 }
501}
502
Wang Xingchao72357c72012-09-06 10:02:36 +0800503static int get_channel_allocation_order(int ca)
504{
505 int i;
506
507 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
508 if (channel_allocations[i].ca_index == ca)
509 break;
510 }
511 return i;
512}
513
Wu Fengguang079d88c2010-03-08 10:44:23 +0800514/*
515 * The transformation takes two steps:
516 *
517 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
518 * spk_mask => (channel_allocations[]) => ai->CA
519 *
520 * TODO: it could select the wrong CA from multiple candidates.
521*/
Stephen Warren384a48d2011-06-01 11:14:21 -0600522static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800523{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800524 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800525 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800526 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800527 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
528
529 /*
530 * CA defaults to 0 for basic stereo audio
531 */
532 if (channels <= 2)
533 return 0;
534
Wu Fengguang079d88c2010-03-08 10:44:23 +0800535 /*
536 * expand ELD's speaker allocation mask
537 *
538 * ELD tells the speaker mask in a compact(paired) form,
539 * expand ELD's notions to match the ones used by Audio InfoFrame.
540 */
541 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
David Henningsson1613d6b42013-02-19 16:11:24 +0100542 if (eld->info.spk_alloc & (1 << i))
Wu Fengguang079d88c2010-03-08 10:44:23 +0800543 spk_mask |= eld_speaker_allocation_bits[i];
544 }
545
546 /* search for the first working match in the CA table */
547 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
548 if (channels == channel_allocations[i].channels &&
549 (spk_mask & channel_allocations[i].spk_mask) ==
550 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800551 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800552 break;
553 }
554 }
555
Anssi Hannula686edbc2013-09-01 14:36:47 +0300556 if (!ca) {
557 /* if there was no match, select the regular ALSA channel
558 * allocation with the matching number of channels */
559 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
560 if (channels == channel_allocations[i].channels) {
561 ca = channel_allocations[i].ca_index;
562 break;
563 }
564 }
565 }
566
David Henningsson1613d6b42013-02-19 16:11:24 +0100567 snd_print_channel_allocation(eld->info.spk_alloc, buf, sizeof(buf));
Wu Fengguang2abbf432010-03-08 10:45:38 +0800568 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800569 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800570
Wu Fengguang53d7d692010-09-21 14:25:49 +0800571 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800572}
573
574static void hdmi_debug_channel_mapping(struct hda_codec *codec,
575 hda_nid_t pin_nid)
576{
577#ifdef CONFIG_SND_DEBUG_VERBOSE
578 int i;
579 int slot;
580
581 for (i = 0; i < 8; i++) {
582 slot = snd_hda_codec_read(codec, pin_nid, 0,
583 AC_VERB_GET_HDMI_CHAN_SLOT, i);
584 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
585 slot >> 4, slot & 0xf);
586 }
587#endif
588}
589
590
Takashi Iwaid45e6882012-07-31 11:36:00 +0200591static void hdmi_std_setup_channel_mapping(struct hda_codec *codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800592 hda_nid_t pin_nid,
Wang Xingchao433968d2012-09-06 10:02:37 +0800593 bool non_pcm,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800594 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800595{
596 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800597 int err;
Wang Xingchao72357c72012-09-06 10:02:36 +0800598 int order;
Wang Xingchao433968d2012-09-06 10:02:37 +0800599 int non_pcm_mapping[8];
Wu Fengguang079d88c2010-03-08 10:44:23 +0800600
Wang Xingchao72357c72012-09-06 10:02:36 +0800601 order = get_channel_allocation_order(ca);
Wang Xingchao433968d2012-09-06 10:02:37 +0800602
Wu Fengguang079d88c2010-03-08 10:44:23 +0800603 if (hdmi_channel_mapping[ca][1] == 0) {
Wang Xingchao72357c72012-09-06 10:02:36 +0800604 for (i = 0; i < channel_allocations[order].channels; i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800605 hdmi_channel_mapping[ca][i] = i | (i << 4);
606 for (; i < 8; i++)
607 hdmi_channel_mapping[ca][i] = 0xf | (i << 4);
608 }
609
Wang Xingchao433968d2012-09-06 10:02:37 +0800610 if (non_pcm) {
611 for (i = 0; i < channel_allocations[order].channels; i++)
612 non_pcm_mapping[i] = i | (i << 4);
613 for (; i < 8; i++)
614 non_pcm_mapping[i] = 0xf | (i << 4);
615 }
616
Wu Fengguang079d88c2010-03-08 10:44:23 +0800617 for (i = 0; i < 8; i++) {
618 err = snd_hda_codec_write(codec, pin_nid, 0,
619 AC_VERB_SET_HDMI_CHAN_SLOT,
Wang Xingchao433968d2012-09-06 10:02:37 +0800620 non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800621 if (err) {
Wu Fengguang2abbf432010-03-08 10:45:38 +0800622 snd_printdd(KERN_NOTICE
623 "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800624 break;
625 }
626 }
627
628 hdmi_debug_channel_mapping(codec, pin_nid);
629}
630
Takashi Iwaid45e6882012-07-31 11:36:00 +0200631struct channel_map_table {
632 unsigned char map; /* ALSA API channel map position */
633 unsigned char cea_slot; /* CEA slot value */
634 int spk_mask; /* speaker position bit mask */
635};
636
637static struct channel_map_table map_tables[] = {
638 { SNDRV_CHMAP_FL, 0x00, FL },
639 { SNDRV_CHMAP_FR, 0x01, FR },
640 { SNDRV_CHMAP_RL, 0x04, RL },
641 { SNDRV_CHMAP_RR, 0x05, RR },
642 { SNDRV_CHMAP_LFE, 0x02, LFE },
643 { SNDRV_CHMAP_FC, 0x03, FC },
644 { SNDRV_CHMAP_RLC, 0x06, RLC },
645 { SNDRV_CHMAP_RRC, 0x07, RRC },
646 {} /* terminator */
647};
648
649/* from ALSA API channel position to speaker bit mask */
650static int to_spk_mask(unsigned char c)
651{
652 struct channel_map_table *t = map_tables;
653 for (; t->map; t++) {
654 if (t->map == c)
655 return t->spk_mask;
656 }
657 return 0;
658}
659
660/* from ALSA API channel position to CEA slot */
661static int to_cea_slot(unsigned char c)
662{
663 struct channel_map_table *t = map_tables;
664 for (; t->map; t++) {
665 if (t->map == c)
666 return t->cea_slot;
667 }
668 return 0x0f;
669}
670
671/* from CEA slot to ALSA API channel position */
672static int from_cea_slot(unsigned char c)
673{
674 struct channel_map_table *t = map_tables;
675 for (; t->map; t++) {
676 if (t->cea_slot == c)
677 return t->map;
678 }
679 return 0;
680}
681
682/* from speaker bit mask to ALSA API channel position */
683static int spk_to_chmap(int spk)
684{
685 struct channel_map_table *t = map_tables;
686 for (; t->map; t++) {
687 if (t->spk_mask == spk)
688 return t->map;
689 }
690 return 0;
691}
692
693/* get the CA index corresponding to the given ALSA API channel map */
694static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
695{
696 int i, spks = 0, spk_mask = 0;
697
698 for (i = 0; i < chs; i++) {
699 int mask = to_spk_mask(map[i]);
700 if (mask) {
701 spk_mask |= mask;
702 spks++;
703 }
704 }
705
706 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
707 if ((chs == channel_allocations[i].channels ||
708 spks == channel_allocations[i].channels) &&
709 (spk_mask & channel_allocations[i].spk_mask) ==
710 channel_allocations[i].spk_mask)
711 return channel_allocations[i].ca_index;
712 }
713 return -1;
714}
715
716/* set up the channel slots for the given ALSA API channel map */
717static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
718 hda_nid_t pin_nid,
719 int chs, unsigned char *map)
720{
721 int i;
722 for (i = 0; i < 8; i++) {
723 int val, err;
724 if (i < chs)
725 val = to_cea_slot(map[i]);
726 else
727 val = 0xf;
728 val |= (i << 4);
729 err = snd_hda_codec_write(codec, pin_nid, 0,
730 AC_VERB_SET_HDMI_CHAN_SLOT, val);
731 if (err)
732 return -EINVAL;
733 }
734 return 0;
735}
736
737/* store ALSA API channel map from the current default map */
738static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
739{
740 int i;
741 for (i = 0; i < 8; i++) {
742 if (i < channel_allocations[ca].channels)
743 map[i] = from_cea_slot((hdmi_channel_mapping[ca][i] >> 4) & 0x0f);
744 else
745 map[i] = 0;
746 }
747}
748
749static void hdmi_setup_channel_mapping(struct hda_codec *codec,
750 hda_nid_t pin_nid, bool non_pcm, int ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200751 int channels, unsigned char *map,
752 bool chmap_set)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200753{
Anssi Hannula20608732013-02-03 17:55:45 +0200754 if (!non_pcm && chmap_set) {
Takashi Iwaid45e6882012-07-31 11:36:00 +0200755 hdmi_manual_setup_channel_mapping(codec, pin_nid,
756 channels, map);
757 } else {
758 hdmi_std_setup_channel_mapping(codec, pin_nid, non_pcm, ca);
759 hdmi_setup_fake_chmap(map, ca);
760 }
761}
Wu Fengguang079d88c2010-03-08 10:44:23 +0800762
763/*
764 * Audio InfoFrame routines
765 */
766
767/*
768 * Enable Audio InfoFrame Transmission
769 */
770static void hdmi_start_infoframe_trans(struct hda_codec *codec,
771 hda_nid_t pin_nid)
772{
773 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
774 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
775 AC_DIPXMIT_BEST);
776}
777
778/*
779 * Disable Audio InfoFrame Transmission
780 */
781static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
782 hda_nid_t pin_nid)
783{
784 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
785 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
786 AC_DIPXMIT_DISABLE);
787}
788
789static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
790{
791#ifdef CONFIG_SND_DEBUG_VERBOSE
792 int i;
793 int size;
794
795 size = snd_hdmi_get_eld_size(codec, pin_nid);
796 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
797
798 for (i = 0; i < 8; i++) {
799 size = snd_hda_codec_read(codec, pin_nid, 0,
800 AC_VERB_GET_HDMI_DIP_SIZE, i);
801 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
802 }
803#endif
804}
805
806static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
807{
808#ifdef BE_PARANOID
809 int i, j;
810 int size;
811 int pi, bi;
812 for (i = 0; i < 8; i++) {
813 size = snd_hda_codec_read(codec, pin_nid, 0,
814 AC_VERB_GET_HDMI_DIP_SIZE, i);
815 if (size == 0)
816 continue;
817
818 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
819 for (j = 1; j < 1000; j++) {
820 hdmi_write_dip_byte(codec, pin_nid, 0x0);
821 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
822 if (pi != i)
823 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
824 bi, pi, i);
825 if (bi == 0) /* byte index wrapped around */
826 break;
827 }
828 snd_printd(KERN_INFO
829 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
830 i, size, j);
831 }
832#endif
833}
834
Wu Fengguang53d7d692010-09-21 14:25:49 +0800835static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800836{
Wu Fengguang53d7d692010-09-21 14:25:49 +0800837 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800838 u8 sum = 0;
839 int i;
840
Wu Fengguang53d7d692010-09-21 14:25:49 +0800841 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800842
Wu Fengguang53d7d692010-09-21 14:25:49 +0800843 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800844 sum += bytes[i];
845
Wu Fengguang53d7d692010-09-21 14:25:49 +0800846 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800847}
848
849static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
850 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800851 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800852{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800853 int i;
854
855 hdmi_debug_dip_size(codec, pin_nid);
856 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
857
Wu Fengguang079d88c2010-03-08 10:44:23 +0800858 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800859 for (i = 0; i < size; i++)
860 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800861}
862
863static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800864 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800865{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800866 u8 val;
867 int i;
868
869 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
870 != AC_DIPXMIT_BEST)
871 return false;
872
873 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800874 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800875 val = snd_hda_codec_read(codec, pin_nid, 0,
876 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800877 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +0800878 return false;
879 }
880
881 return true;
882}
883
Takashi Iwaidc780f72013-09-02 12:33:02 +0200884static void hdmi_setup_audio_infoframe(struct hda_codec *codec,
885 struct hdmi_spec_per_pin *per_pin,
886 bool non_pcm)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800887{
Stephen Warren384a48d2011-06-01 11:14:21 -0600888 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwaidc780f72013-09-02 12:33:02 +0200889 int channels = per_pin->channels;
Stephen Warren384a48d2011-06-01 11:14:21 -0600890 struct hdmi_eld *eld;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800891 int ca;
Takashi Iwai2b203db2011-02-11 12:17:30 +0100892 union audio_infoframe ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800893
Takashi Iwaidc780f72013-09-02 12:33:02 +0200894 if (!channels)
895 return;
896
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100897 eld = &per_pin->sink_eld;
Stephen Warren384a48d2011-06-01 11:14:21 -0600898 if (!eld->monitor_present)
899 return;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800900
Takashi Iwaid45e6882012-07-31 11:36:00 +0200901 if (!non_pcm && per_pin->chmap_set)
902 ca = hdmi_manual_channel_allocation(channels, per_pin->chmap);
903 else
904 ca = hdmi_channel_allocation(eld, channels);
905 if (ca < 0)
906 ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800907
Stephen Warren384a48d2011-06-01 11:14:21 -0600908 memset(&ai, 0, sizeof(ai));
David Henningsson1613d6b42013-02-19 16:11:24 +0100909 if (eld->info.conn_type == 0) { /* HDMI */
Stephen Warren384a48d2011-06-01 11:14:21 -0600910 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800911
Stephen Warren384a48d2011-06-01 11:14:21 -0600912 hdmi_ai->type = 0x84;
913 hdmi_ai->ver = 0x01;
914 hdmi_ai->len = 0x0a;
915 hdmi_ai->CC02_CT47 = channels - 1;
916 hdmi_ai->CA = ca;
917 hdmi_checksum_audio_infoframe(hdmi_ai);
David Henningsson1613d6b42013-02-19 16:11:24 +0100918 } else if (eld->info.conn_type == 1) { /* DisplayPort */
Stephen Warren384a48d2011-06-01 11:14:21 -0600919 struct dp_audio_infoframe *dp_ai = &ai.dp;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800920
Stephen Warren384a48d2011-06-01 11:14:21 -0600921 dp_ai->type = 0x84;
922 dp_ai->len = 0x1b;
923 dp_ai->ver = 0x11 << 2;
924 dp_ai->CC02_CT47 = channels - 1;
925 dp_ai->CA = ca;
926 } else {
927 snd_printd("HDMI: unknown connection type at pin %d\n",
928 pin_nid);
929 return;
930 }
Wu Fengguang53d7d692010-09-21 14:25:49 +0800931
Stephen Warren384a48d2011-06-01 11:14:21 -0600932 /*
Anssi Hannula43d3dd12013-10-07 19:24:52 +0300933 * always configure channel mapping, it may have been changed by the
934 * user in the meantime
935 */
936 hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
937 channels, per_pin->chmap,
938 per_pin->chmap_set);
939
940 /*
Stephen Warren384a48d2011-06-01 11:14:21 -0600941 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
942 * sizeof(*dp_ai) to avoid partial match/update problems when
943 * the user switches between HDMI/DP monitors.
944 */
945 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
946 sizeof(ai))) {
947 snd_printdd("hdmi_setup_audio_infoframe: "
948 "pin=%d channels=%d\n",
949 pin_nid,
950 channels);
Stephen Warren384a48d2011-06-01 11:14:21 -0600951 hdmi_stop_infoframe_trans(codec, pin_nid);
952 hdmi_fill_audio_infoframe(codec, pin_nid,
953 ai.bytes, sizeof(ai));
954 hdmi_start_infoframe_trans(codec, pin_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800955 }
Wang Xingchao433968d2012-09-06 10:02:37 +0800956
Takashi Iwai1a6003b2012-09-06 17:42:08 +0200957 per_pin->non_pcm = non_pcm;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800958}
959
960
961/*
962 * Unsolicited events
963 */
964
Wu Fengguangc6e84532011-11-18 16:59:32 -0600965static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +0200966
Wu Fengguang079d88c2010-03-08 10:44:23 +0800967static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
968{
969 struct hdmi_spec *spec = codec->spec;
Takashi Iwai3a938972011-10-28 01:16:55 +0200970 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
971 int pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -0600972 int pin_idx;
Takashi Iwai3a938972011-10-28 01:16:55 +0200973 struct hda_jack_tbl *jack;
974
975 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
976 if (!jack)
977 return;
978 pin_nid = jack->nid;
979 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800980
Fengguang Wufae3d882012-04-10 17:00:35 +0800981 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -0600982 "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Fengguang Wufae3d882012-04-10 17:00:35 +0800983 codec->addr, pin_nid,
984 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +0800985
Stephen Warren384a48d2011-06-01 11:14:21 -0600986 pin_idx = pin_nid_to_pin_index(spec, pin_nid);
987 if (pin_idx < 0)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800988 return;
989
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100990 hdmi_present_sense(get_pin(spec, pin_idx), 1);
Takashi Iwai01a61e12011-10-28 00:03:22 +0200991 snd_hda_jack_report_sync(codec);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800992}
993
994static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
995{
996 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
997 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
998 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
999 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
1000
1001 printk(KERN_INFO
Takashi Iwaie9ea8e82012-06-21 11:41:05 +02001002 "HDMI CP event: CODEC=%d TAG=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001003 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +08001004 tag,
1005 subtag,
1006 cp_state,
1007 cp_ready);
1008
1009 /* TODO */
1010 if (cp_state)
1011 ;
1012 if (cp_ready)
1013 ;
1014}
1015
1016
1017static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
1018{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001019 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1020 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1021
Takashi Iwai3a938972011-10-28 01:16:55 +02001022 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001023 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
1024 return;
1025 }
1026
1027 if (subtag == 0)
1028 hdmi_intrinsic_event(codec, res);
1029 else
1030 hdmi_non_intrinsic_event(codec, res);
1031}
1032
David Henningsson83f26ad2013-04-10 12:26:07 +02001033static void haswell_verify_pin_D0(struct hda_codec *codec, hda_nid_t nid)
1034{
1035 int pwr, lamp, ramp;
1036
1037 pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
1038 pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
1039 if (pwr != AC_PWRST_D0) {
1040 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
1041 AC_PWRST_D0);
1042 msleep(40);
1043 pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
1044 pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
1045 snd_printd("Haswell HDMI audio: Power for pin 0x%x is now D%d\n", nid, pwr);
1046 }
1047
1048 lamp = snd_hda_codec_read(codec, nid, 0,
1049 AC_VERB_GET_AMP_GAIN_MUTE,
1050 AC_AMP_GET_LEFT | AC_AMP_GET_OUTPUT);
1051 ramp = snd_hda_codec_read(codec, nid, 0,
1052 AC_VERB_GET_AMP_GAIN_MUTE,
1053 AC_AMP_GET_RIGHT | AC_AMP_GET_OUTPUT);
1054 if (lamp != ramp) {
1055 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1056 AC_AMP_SET_RIGHT | AC_AMP_SET_OUTPUT | lamp);
1057
1058 lamp = snd_hda_codec_read(codec, nid, 0,
1059 AC_VERB_GET_AMP_GAIN_MUTE,
1060 AC_AMP_GET_LEFT | AC_AMP_GET_OUTPUT);
1061 ramp = snd_hda_codec_read(codec, nid, 0,
1062 AC_VERB_GET_AMP_GAIN_MUTE,
1063 AC_AMP_GET_RIGHT | AC_AMP_GET_OUTPUT);
1064 snd_printd("Haswell HDMI audio: Mute after set on pin 0x%x: [0x%x 0x%x]\n", nid, lamp, ramp);
1065 }
1066}
1067
Wu Fengguang079d88c2010-03-08 10:44:23 +08001068/*
1069 * Callbacks
1070 */
1071
Takashi Iwai92f10b32010-08-03 14:21:00 +02001072/* HBR should be Non-PCM, 8 channels */
1073#define is_hbr_format(format) \
1074 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
1075
Stephen Warren384a48d2011-06-01 11:14:21 -06001076static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
1077 hda_nid_t pin_nid, u32 stream_tag, int format)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001078{
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001079 int pinctl;
1080 int new_pinctl = 0;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001081
David Henningsson83f26ad2013-04-10 12:26:07 +02001082 if (codec->vendor_id == 0x80862807)
1083 haswell_verify_pin_D0(codec, pin_nid);
1084
Stephen Warren384a48d2011-06-01 11:14:21 -06001085 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
1086 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001087 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1088
1089 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Takashi Iwai92f10b32010-08-03 14:21:00 +02001090 if (is_hbr_format(format))
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001091 new_pinctl |= AC_PINCTL_EPT_HBR;
1092 else
1093 new_pinctl |= AC_PINCTL_EPT_NATIVE;
1094
1095 snd_printdd("hdmi_setup_stream: "
1096 "NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001097 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001098 pinctl == new_pinctl ? "" : "new-",
1099 new_pinctl);
1100
1101 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -06001102 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001103 AC_VERB_SET_PIN_WIDGET_CONTROL,
1104 new_pinctl);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001105
Stephen Warren384a48d2011-06-01 11:14:21 -06001106 }
Takashi Iwai92f10b32010-08-03 14:21:00 +02001107 if (is_hbr_format(format) && !new_pinctl) {
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001108 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
1109 return -EINVAL;
1110 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001111
Stephen Warren384a48d2011-06-01 11:14:21 -06001112 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001113 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001114}
1115
1116/*
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001117 * HDA PCM callbacks
1118 */
1119static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
1120 struct hda_codec *codec,
1121 struct snd_pcm_substream *substream)
1122{
1123 struct hdmi_spec *spec = codec->spec;
Takashi Iwai639cef02011-01-14 10:30:46 +01001124 struct snd_pcm_runtime *runtime = substream->runtime;
Stephen Warren384a48d2011-06-01 11:14:21 -06001125 int pin_idx, cvt_idx, mux_idx = 0;
1126 struct hdmi_spec_per_pin *per_pin;
1127 struct hdmi_eld *eld;
1128 struct hdmi_spec_per_cvt *per_cvt = NULL;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001129
Stephen Warren384a48d2011-06-01 11:14:21 -06001130 /* Validate hinfo */
1131 pin_idx = hinfo_to_pin_index(spec, hinfo);
1132 if (snd_BUG_ON(pin_idx < 0))
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001133 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001134 per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001135 eld = &per_pin->sink_eld;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001136
Stephen Warren384a48d2011-06-01 11:14:21 -06001137 /* Dynamically assign converter to stream */
1138 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001139 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001140
1141 /* Must not already be assigned */
1142 if (per_cvt->assigned)
1143 continue;
1144 /* Must be in pin's mux's list of converters */
1145 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
1146 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
1147 break;
1148 /* Not in mux list */
1149 if (mux_idx == per_pin->num_mux_nids)
1150 continue;
1151 break;
1152 }
1153 /* No free converters */
1154 if (cvt_idx == spec->num_cvts)
1155 return -ENODEV;
1156
1157 /* Claim converter */
1158 per_cvt->assigned = 1;
1159 hinfo->nid = per_cvt->cvt_nid;
1160
Takashi Iwai27035ca2013-06-18 16:14:22 +02001161 snd_hda_codec_write_cache(codec, per_pin->pin_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -06001162 AC_VERB_SET_CONNECT_SEL,
1163 mux_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001164 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001165
Stephen Warren2def8172011-06-01 11:14:20 -06001166 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -06001167 hinfo->channels_min = per_cvt->channels_min;
1168 hinfo->channels_max = per_cvt->channels_max;
1169 hinfo->rates = per_cvt->rates;
1170 hinfo->formats = per_cvt->formats;
1171 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -06001172
Stephen Warren384a48d2011-06-01 11:14:21 -06001173 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -06001174 if (!static_hdmi_pcm && eld->eld_valid) {
David Henningsson1613d6b42013-02-19 16:11:24 +01001175 snd_hdmi_eld_update_pcm_info(&eld->info, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001176 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001177 !hinfo->rates || !hinfo->formats) {
1178 per_cvt->assigned = 0;
1179 hinfo->nid = 0;
1180 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001181 return -ENODEV;
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001182 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001183 }
Stephen Warren2def8172011-06-01 11:14:20 -06001184
1185 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +01001186 runtime->hw.channels_min = hinfo->channels_min;
1187 runtime->hw.channels_max = hinfo->channels_max;
1188 runtime->hw.formats = hinfo->formats;
1189 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +01001190
1191 snd_pcm_hw_constraint_step(substream->runtime, 0,
1192 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001193 return 0;
1194}
1195
1196/*
Wu Fengguang079d88c2010-03-08 10:44:23 +08001197 * HDA/HDMI auto parsing
1198 */
Stephen Warren384a48d2011-06-01 11:14:21 -06001199static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001200{
1201 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001202 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001203 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001204
1205 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
1206 snd_printk(KERN_WARNING
1207 "HDMI: pin %d wcaps %#x "
1208 "does not support connection list\n",
1209 pin_nid, get_wcaps(codec, pin_nid));
1210 return -EINVAL;
1211 }
1212
Stephen Warren384a48d2011-06-01 11:14:21 -06001213 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
1214 per_pin->mux_nids,
1215 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001216
1217 return 0;
1218}
1219
Wu Fengguangc6e84532011-11-18 16:59:32 -06001220static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001221{
Wu Fengguang744626d2011-11-16 16:29:47 +08001222 struct hda_codec *codec = per_pin->codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001223 struct hdmi_spec *spec = codec->spec;
1224 struct hdmi_eld *eld = &spec->temp_eld;
1225 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +08001226 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -06001227 /*
1228 * Always execute a GetPinSense verb here, even when called from
1229 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
1230 * response's PD bit is not the real PD value, but indicates that
1231 * the real PD value changed. An older version of the HD-audio
1232 * specification worked this way. Hence, we just ignore the data in
1233 * the unsolicited response to avoid custom WARs.
1234 */
Wu Fengguang079d88c2010-03-08 10:44:23 +08001235 int present = snd_hda_pin_sense(codec, pin_nid);
David Henningsson4bd038f2013-02-19 16:11:25 +01001236 bool update_eld = false;
1237 bool eld_changed = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001238
David Henningsson4bd038f2013-02-19 16:11:25 +01001239 pin_eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
1240 if (pin_eld->monitor_present)
1241 eld->eld_valid = !!(present & AC_PINSENSE_ELDV);
1242 else
1243 eld->eld_valid = false;
Stephen Warren5d44f922011-05-24 17:11:17 -06001244
Fengguang Wufae3d882012-04-10 17:00:35 +08001245 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -06001246 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Mengdong Lin10250912013-03-28 05:21:28 -04001247 codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -06001248
David Henningsson4bd038f2013-02-19 16:11:25 +01001249 if (eld->eld_valid) {
David Henningsson1613d6b42013-02-19 16:11:24 +01001250 if (snd_hdmi_get_eld(codec, pin_nid, eld->eld_buffer,
1251 &eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001252 eld->eld_valid = false;
David Henningsson1613d6b42013-02-19 16:11:24 +01001253 else {
1254 memset(&eld->info, 0, sizeof(struct parsed_hdmi_eld));
1255 if (snd_hdmi_parse_eld(&eld->info, eld->eld_buffer,
1256 eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001257 eld->eld_valid = false;
David Henningsson1613d6b42013-02-19 16:11:24 +01001258 }
1259
David Henningsson4bd038f2013-02-19 16:11:25 +01001260 if (eld->eld_valid) {
David Henningsson1613d6b42013-02-19 16:11:24 +01001261 snd_hdmi_show_eld(&eld->info);
David Henningsson4bd038f2013-02-19 16:11:25 +01001262 update_eld = true;
David Henningsson1613d6b42013-02-19 16:11:24 +01001263 }
Wu Fengguangc6e84532011-11-18 16:59:32 -06001264 else if (repoll) {
Wu Fengguang744626d2011-11-16 16:29:47 +08001265 queue_delayed_work(codec->bus->workq,
1266 &per_pin->work,
1267 msecs_to_jiffies(300));
David Henningsson4bd038f2013-02-19 16:11:25 +01001268 return;
Wu Fengguang744626d2011-11-16 16:29:47 +08001269 }
1270 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001271
1272 mutex_lock(&pin_eld->lock);
David Henningsson92c69e72013-02-19 16:11:26 +01001273 if (pin_eld->eld_valid && !eld->eld_valid) {
David Henningsson4bd038f2013-02-19 16:11:25 +01001274 update_eld = true;
David Henningsson92c69e72013-02-19 16:11:26 +01001275 eld_changed = true;
1276 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001277 if (update_eld) {
Takashi Iwaidc780f72013-09-02 12:33:02 +02001278 bool old_eld_valid = pin_eld->eld_valid;
David Henningsson4bd038f2013-02-19 16:11:25 +01001279 pin_eld->eld_valid = eld->eld_valid;
David Henningsson92c69e72013-02-19 16:11:26 +01001280 eld_changed = pin_eld->eld_size != eld->eld_size ||
1281 memcmp(pin_eld->eld_buffer, eld->eld_buffer,
David Henningsson4bd038f2013-02-19 16:11:25 +01001282 eld->eld_size) != 0;
1283 if (eld_changed)
1284 memcpy(pin_eld->eld_buffer, eld->eld_buffer,
1285 eld->eld_size);
1286 pin_eld->eld_size = eld->eld_size;
1287 pin_eld->info = eld->info;
Takashi Iwaidc780f72013-09-02 12:33:02 +02001288
1289 /* Haswell-specific workaround: re-setup when the transcoder is
1290 * changed during the stream playback
1291 */
1292 if (codec->vendor_id == 0x80862807 &&
1293 eld->eld_valid && !old_eld_valid && per_pin->setup) {
1294 snd_hda_codec_write(codec, pin_nid, 0,
1295 AC_VERB_SET_AMP_GAIN_MUTE,
1296 AMP_OUT_UNMUTE);
1297 hdmi_setup_audio_infoframe(codec, per_pin,
1298 per_pin->non_pcm);
1299 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001300 }
1301 mutex_unlock(&pin_eld->lock);
David Henningsson92c69e72013-02-19 16:11:26 +01001302
1303 if (eld_changed)
1304 snd_ctl_notify(codec->bus->card,
1305 SNDRV_CTL_EVENT_MASK_VALUE | SNDRV_CTL_EVENT_MASK_INFO,
1306 &per_pin->eld_ctl->id);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001307}
1308
Wu Fengguang744626d2011-11-16 16:29:47 +08001309static void hdmi_repoll_eld(struct work_struct *work)
1310{
1311 struct hdmi_spec_per_pin *per_pin =
1312 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1313
Wu Fengguangc6e84532011-11-18 16:59:32 -06001314 if (per_pin->repoll_count++ > 6)
1315 per_pin->repoll_count = 0;
1316
1317 hdmi_present_sense(per_pin, per_pin->repoll_count);
Wu Fengguang744626d2011-11-16 16:29:47 +08001318}
1319
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001320static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
1321 hda_nid_t nid);
1322
Wu Fengguang079d88c2010-03-08 10:44:23 +08001323static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1324{
1325 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001326 unsigned int caps, config;
1327 int pin_idx;
1328 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001329 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001330
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001331 caps = snd_hda_query_pin_caps(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001332 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1333 return 0;
1334
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001335 config = snd_hda_codec_get_pincfg(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001336 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1337 return 0;
1338
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001339 if (codec->vendor_id == 0x80862807)
1340 intel_haswell_fixup_connect_list(codec, pin_nid);
1341
Stephen Warren384a48d2011-06-01 11:14:21 -06001342 pin_idx = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001343 per_pin = snd_array_new(&spec->pins);
1344 if (!per_pin)
1345 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001346
1347 per_pin->pin_nid = pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001348 per_pin->non_pcm = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001349
Stephen Warren384a48d2011-06-01 11:14:21 -06001350 err = hdmi_read_pin_conn(codec, pin_idx);
1351 if (err < 0)
1352 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001353
Wu Fengguang079d88c2010-03-08 10:44:23 +08001354 spec->num_pins++;
1355
Stephen Warren384a48d2011-06-01 11:14:21 -06001356 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001357}
1358
Stephen Warren384a48d2011-06-01 11:14:21 -06001359static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001360{
1361 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001362 struct hdmi_spec_per_cvt *per_cvt;
1363 unsigned int chans;
1364 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001365
Stephen Warren384a48d2011-06-01 11:14:21 -06001366 chans = get_wcaps(codec, cvt_nid);
1367 chans = get_wcaps_channels(chans);
1368
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001369 per_cvt = snd_array_new(&spec->cvts);
1370 if (!per_cvt)
1371 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001372
1373 per_cvt->cvt_nid = cvt_nid;
1374 per_cvt->channels_min = 2;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001375 if (chans <= 16) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001376 per_cvt->channels_max = chans;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001377 if (chans > spec->channels_max)
1378 spec->channels_max = chans;
1379 }
Stephen Warren384a48d2011-06-01 11:14:21 -06001380
1381 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1382 &per_cvt->rates,
1383 &per_cvt->formats,
1384 &per_cvt->maxbps);
1385 if (err < 0)
1386 return err;
1387
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001388 if (spec->num_cvts < ARRAY_SIZE(spec->cvt_nids))
1389 spec->cvt_nids[spec->num_cvts] = cvt_nid;
1390 spec->num_cvts++;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001391
1392 return 0;
1393}
1394
1395static int hdmi_parse_codec(struct hda_codec *codec)
1396{
1397 hda_nid_t nid;
1398 int i, nodes;
1399
1400 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
1401 if (!nid || nodes < 0) {
1402 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
1403 return -EINVAL;
1404 }
1405
1406 for (i = 0; i < nodes; i++, nid++) {
1407 unsigned int caps;
1408 unsigned int type;
1409
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001410 caps = get_wcaps(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001411 type = get_wcaps_type(caps);
1412
1413 if (!(caps & AC_WCAP_DIGITAL))
1414 continue;
1415
1416 switch (type) {
1417 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001418 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001419 break;
1420 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001421 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001422 break;
1423 }
1424 }
1425
David Henningssonc9adeef2012-11-07 09:22:33 +01001426#ifdef CONFIG_PM
1427 /* We're seeing some problems with unsolicited hot plug events on
1428 * PantherPoint after S3, if this is not enabled */
1429 if (codec->vendor_id == 0x80862806)
1430 codec->bus->power_keep_link_on = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001431 /*
1432 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1433 * can be lost and presence sense verb will become inaccurate if the
1434 * HDA link is powered off at hot plug or hw initialization time.
1435 */
David Henningssonc9adeef2012-11-07 09:22:33 +01001436 else if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
Wu Fengguang079d88c2010-03-08 10:44:23 +08001437 AC_PWRST_EPSS))
1438 codec->bus->power_keep_link_on = 1;
1439#endif
1440
1441 return 0;
1442}
1443
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001444/*
1445 */
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001446static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
1447{
1448 struct hda_spdif_out *spdif;
1449 bool non_pcm;
1450
1451 mutex_lock(&codec->spdif_mutex);
1452 spdif = snd_hda_spdif_out_of_nid(codec, cvt_nid);
1453 non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO);
1454 mutex_unlock(&codec->spdif_mutex);
1455 return non_pcm;
1456}
1457
1458
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001459/*
1460 * HDMI callbacks
1461 */
1462
1463static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1464 struct hda_codec *codec,
1465 unsigned int stream_tag,
1466 unsigned int format,
1467 struct snd_pcm_substream *substream)
1468{
Stephen Warren384a48d2011-06-01 11:14:21 -06001469 hda_nid_t cvt_nid = hinfo->nid;
1470 struct hdmi_spec *spec = codec->spec;
1471 int pin_idx = hinfo_to_pin_index(spec, hinfo);
Takashi Iwaidc780f72013-09-02 12:33:02 +02001472 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
1473 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001474 bool non_pcm;
1475
1476 non_pcm = check_non_pcm_per_cvt(codec, cvt_nid);
Takashi Iwaidc780f72013-09-02 12:33:02 +02001477 per_pin->channels = substream->runtime->channels;
1478 per_pin->setup = true;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001479
Stephen Warren384a48d2011-06-01 11:14:21 -06001480 hdmi_set_channel_count(codec, cvt_nid, substream->runtime->channels);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001481
Takashi Iwaidc780f72013-09-02 12:33:02 +02001482 hdmi_setup_audio_infoframe(codec, per_pin, non_pcm);
Stephen Warren384a48d2011-06-01 11:14:21 -06001483
1484 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001485}
1486
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001487static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1488 struct hda_codec *codec,
1489 struct snd_pcm_substream *substream)
1490{
1491 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
1492 return 0;
1493}
1494
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001495static int hdmi_pcm_close(struct hda_pcm_stream *hinfo,
1496 struct hda_codec *codec,
1497 struct snd_pcm_substream *substream)
Stephen Warren384a48d2011-06-01 11:14:21 -06001498{
1499 struct hdmi_spec *spec = codec->spec;
1500 int cvt_idx, pin_idx;
1501 struct hdmi_spec_per_cvt *per_cvt;
1502 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001503
Stephen Warren384a48d2011-06-01 11:14:21 -06001504 if (hinfo->nid) {
1505 cvt_idx = cvt_nid_to_cvt_index(spec, hinfo->nid);
1506 if (snd_BUG_ON(cvt_idx < 0))
1507 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001508 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001509
1510 snd_BUG_ON(!per_cvt->assigned);
1511 per_cvt->assigned = 0;
1512 hinfo->nid = 0;
1513
1514 pin_idx = hinfo_to_pin_index(spec, hinfo);
1515 if (snd_BUG_ON(pin_idx < 0))
1516 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001517 per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001518
Stephen Warren384a48d2011-06-01 11:14:21 -06001519 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001520 per_pin->chmap_set = false;
1521 memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
Takashi Iwaidc780f72013-09-02 12:33:02 +02001522
1523 per_pin->setup = false;
1524 per_pin->channels = 0;
Stephen Warren384a48d2011-06-01 11:14:21 -06001525 }
Takashi Iwaid45e6882012-07-31 11:36:00 +02001526
Stephen Warren384a48d2011-06-01 11:14:21 -06001527 return 0;
1528}
1529
1530static const struct hda_pcm_ops generic_ops = {
1531 .open = hdmi_pcm_open,
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001532 .close = hdmi_pcm_close,
Stephen Warren384a48d2011-06-01 11:14:21 -06001533 .prepare = generic_hdmi_playback_pcm_prepare,
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001534 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001535};
1536
Takashi Iwaid45e6882012-07-31 11:36:00 +02001537/*
1538 * ALSA API channel-map control callbacks
1539 */
1540static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
1541 struct snd_ctl_elem_info *uinfo)
1542{
1543 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1544 struct hda_codec *codec = info->private_data;
1545 struct hdmi_spec *spec = codec->spec;
1546 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1547 uinfo->count = spec->channels_max;
1548 uinfo->value.integer.min = 0;
1549 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
1550 return 0;
1551}
1552
1553static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1554 unsigned int size, unsigned int __user *tlv)
1555{
1556 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1557 struct hda_codec *codec = info->private_data;
1558 struct hdmi_spec *spec = codec->spec;
1559 const unsigned int valid_mask =
1560 FL | FR | RL | RR | LFE | FC | RLC | RRC;
1561 unsigned int __user *dst;
1562 int chs, count = 0;
1563
1564 if (size < 8)
1565 return -ENOMEM;
1566 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
1567 return -EFAULT;
1568 size -= 8;
1569 dst = tlv + 2;
Takashi Iwai498dab32012-09-10 16:08:40 +02001570 for (chs = 2; chs <= spec->channels_max; chs++) {
Takashi Iwaid45e6882012-07-31 11:36:00 +02001571 int i, c;
1572 struct cea_channel_speaker_allocation *cap;
1573 cap = channel_allocations;
1574 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
1575 int chs_bytes = chs * 4;
1576 if (cap->channels != chs)
1577 continue;
1578 if (cap->spk_mask & ~valid_mask)
1579 continue;
1580 if (size < 8)
1581 return -ENOMEM;
1582 if (put_user(SNDRV_CTL_TLVT_CHMAP_VAR, dst) ||
1583 put_user(chs_bytes, dst + 1))
1584 return -EFAULT;
1585 dst += 2;
1586 size -= 8;
1587 count += 8;
1588 if (size < chs_bytes)
1589 return -ENOMEM;
1590 size -= chs_bytes;
1591 count += chs_bytes;
1592 for (c = 7; c >= 0; c--) {
1593 int spk = cap->speakers[c];
1594 if (!spk)
1595 continue;
1596 if (put_user(spk_to_chmap(spk), dst))
1597 return -EFAULT;
1598 dst++;
1599 }
1600 }
1601 }
1602 if (put_user(count, tlv + 1))
1603 return -EFAULT;
1604 return 0;
1605}
1606
1607static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
1608 struct snd_ctl_elem_value *ucontrol)
1609{
1610 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1611 struct hda_codec *codec = info->private_data;
1612 struct hdmi_spec *spec = codec->spec;
1613 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001614 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001615 int i;
1616
1617 for (i = 0; i < ARRAY_SIZE(per_pin->chmap); i++)
1618 ucontrol->value.integer.value[i] = per_pin->chmap[i];
1619 return 0;
1620}
1621
1622static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
1623 struct snd_ctl_elem_value *ucontrol)
1624{
1625 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1626 struct hda_codec *codec = info->private_data;
1627 struct hdmi_spec *spec = codec->spec;
1628 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001629 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001630 unsigned int ctl_idx;
1631 struct snd_pcm_substream *substream;
1632 unsigned char chmap[8];
1633 int i, ca, prepared = 0;
1634
1635 ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1636 substream = snd_pcm_chmap_substream(info, ctl_idx);
1637 if (!substream || !substream->runtime)
Takashi Iwai6f54c362013-01-15 14:44:41 +01001638 return 0; /* just for avoiding error from alsactl restore */
Takashi Iwaid45e6882012-07-31 11:36:00 +02001639 switch (substream->runtime->status->state) {
1640 case SNDRV_PCM_STATE_OPEN:
1641 case SNDRV_PCM_STATE_SETUP:
1642 break;
1643 case SNDRV_PCM_STATE_PREPARED:
1644 prepared = 1;
1645 break;
1646 default:
1647 return -EBUSY;
1648 }
1649 memset(chmap, 0, sizeof(chmap));
1650 for (i = 0; i < ARRAY_SIZE(chmap); i++)
1651 chmap[i] = ucontrol->value.integer.value[i];
1652 if (!memcmp(chmap, per_pin->chmap, sizeof(chmap)))
1653 return 0;
1654 ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
1655 if (ca < 0)
1656 return -EINVAL;
1657 per_pin->chmap_set = true;
1658 memcpy(per_pin->chmap, chmap, sizeof(chmap));
1659 if (prepared)
Takashi Iwaidc780f72013-09-02 12:33:02 +02001660 hdmi_setup_audio_infoframe(codec, per_pin, per_pin->non_pcm);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001661
1662 return 0;
1663}
1664
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001665static int generic_hdmi_build_pcms(struct hda_codec *codec)
1666{
1667 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001668 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001669
Stephen Warren384a48d2011-06-01 11:14:21 -06001670 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1671 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001672 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001673 struct hdmi_spec_per_pin *per_pin;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001674
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001675 per_pin = get_pin(spec, pin_idx);
1676 sprintf(per_pin->pcm_name, "HDMI %d", pin_idx);
1677 info = snd_array_new(&spec->pcm_rec);
1678 if (!info)
1679 return -ENOMEM;
1680 info->name = per_pin->pcm_name;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001681 info->pcm_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001682 info->own_chmap = true;
Stephen Warren384a48d2011-06-01 11:14:21 -06001683
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001684 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06001685 pstr->substreams = 1;
1686 pstr->ops = generic_ops;
1687 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001688 }
1689
Stephen Warren384a48d2011-06-01 11:14:21 -06001690 codec->num_pcms = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001691 codec->pcm_info = spec->pcm_rec.list;
Stephen Warren384a48d2011-06-01 11:14:21 -06001692
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001693 return 0;
1694}
1695
David Henningsson0b6c49b2011-08-23 16:56:03 +02001696static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
1697{
Takashi Iwai31ef2252011-12-01 17:41:36 +01001698 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02001699 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001700 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
1701 int pcmdev = get_pcm_rec(spec, pin_idx)->device;
David Henningsson0b6c49b2011-08-23 16:56:03 +02001702
Takashi Iwai31ef2252011-12-01 17:41:36 +01001703 if (pcmdev > 0)
1704 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
David Henningsson30efd8d2013-02-22 10:16:28 +01001705 if (!is_jack_detectable(codec, per_pin->pin_nid))
1706 strncat(hdmi_str, " Phantom",
1707 sizeof(hdmi_str) - strlen(hdmi_str) - 1);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001708
Takashi Iwai31ef2252011-12-01 17:41:36 +01001709 return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001710}
1711
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001712static int generic_hdmi_build_controls(struct hda_codec *codec)
1713{
1714 struct hdmi_spec *spec = codec->spec;
1715 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001716 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001717
Stephen Warren384a48d2011-06-01 11:14:21 -06001718 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001719 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001720
1721 err = generic_hdmi_build_jack(codec, pin_idx);
1722 if (err < 0)
1723 return err;
1724
Takashi Iwaidcda5802012-10-12 17:24:51 +02001725 err = snd_hda_create_dig_out_ctls(codec,
1726 per_pin->pin_nid,
1727 per_pin->mux_nids[0],
1728 HDA_PCM_TYPE_HDMI);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001729 if (err < 0)
1730 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001731 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05001732
1733 /* add control for ELD Bytes */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001734 err = hdmi_create_eld_ctl(codec, pin_idx,
1735 get_pcm_rec(spec, pin_idx)->device);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05001736
1737 if (err < 0)
1738 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01001739
Takashi Iwai82b1d732011-12-20 15:53:07 +01001740 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001741 }
1742
Takashi Iwaid45e6882012-07-31 11:36:00 +02001743 /* add channel maps */
1744 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1745 struct snd_pcm_chmap *chmap;
1746 struct snd_kcontrol *kctl;
1747 int i;
Takashi Iwaida958132013-08-22 09:55:36 +02001748
1749 if (!codec->pcm_info[pin_idx].pcm)
1750 break;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001751 err = snd_pcm_add_chmap_ctls(codec->pcm_info[pin_idx].pcm,
1752 SNDRV_PCM_STREAM_PLAYBACK,
1753 NULL, 0, pin_idx, &chmap);
1754 if (err < 0)
1755 return err;
1756 /* override handlers */
1757 chmap->private_data = codec;
1758 kctl = chmap->kctl;
1759 for (i = 0; i < kctl->count; i++)
1760 kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
1761 kctl->info = hdmi_chmap_ctl_info;
1762 kctl->get = hdmi_chmap_ctl_get;
1763 kctl->put = hdmi_chmap_ctl_put;
1764 kctl->tlv.c = hdmi_chmap_ctl_tlv;
1765 }
1766
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001767 return 0;
1768}
1769
Takashi Iwai8b8d6542012-06-20 16:32:22 +02001770static int generic_hdmi_init_per_pins(struct hda_codec *codec)
1771{
1772 struct hdmi_spec *spec = codec->spec;
1773 int pin_idx;
1774
1775 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001776 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02001777 struct hdmi_eld *eld = &per_pin->sink_eld;
1778
1779 per_pin->codec = codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001780 mutex_init(&eld->lock);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02001781 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
1782 snd_hda_eld_proc_new(codec, eld, pin_idx);
1783 }
1784 return 0;
1785}
1786
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001787static int generic_hdmi_init(struct hda_codec *codec)
1788{
1789 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001790 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001791
Stephen Warren384a48d2011-06-01 11:14:21 -06001792 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001793 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001794 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001795
1796 hdmi_init_pin(codec, pin_nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001797 snd_hda_jack_detect_enable(codec, pin_nid, pin_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001798 }
1799 return 0;
1800}
1801
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001802static void hdmi_array_init(struct hdmi_spec *spec, int nums)
1803{
1804 snd_array_init(&spec->pins, sizeof(struct hdmi_spec_per_pin), nums);
1805 snd_array_init(&spec->cvts, sizeof(struct hdmi_spec_per_cvt), nums);
1806 snd_array_init(&spec->pcm_rec, sizeof(struct hda_pcm), nums);
1807}
1808
1809static void hdmi_array_free(struct hdmi_spec *spec)
1810{
1811 snd_array_free(&spec->pins);
1812 snd_array_free(&spec->cvts);
1813 snd_array_free(&spec->pcm_rec);
1814}
1815
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001816static void generic_hdmi_free(struct hda_codec *codec)
1817{
1818 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001819 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001820
Stephen Warren384a48d2011-06-01 11:14:21 -06001821 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001822 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001823 struct hdmi_eld *eld = &per_pin->sink_eld;
1824
Wu Fengguang744626d2011-11-16 16:29:47 +08001825 cancel_delayed_work(&per_pin->work);
Stephen Warren384a48d2011-06-01 11:14:21 -06001826 snd_hda_eld_proc_free(codec, eld);
1827 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001828
Wu Fengguang744626d2011-11-16 16:29:47 +08001829 flush_workqueue(codec->bus->workq);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001830 hdmi_array_free(spec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001831 kfree(spec);
1832}
1833
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001834static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001835 .init = generic_hdmi_init,
1836 .free = generic_hdmi_free,
1837 .build_pcms = generic_hdmi_build_pcms,
1838 .build_controls = generic_hdmi_build_controls,
1839 .unsol_event = hdmi_unsol_event,
1840};
1841
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001842
1843static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
1844 hda_nid_t nid)
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001845{
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001846 struct hdmi_spec *spec = codec->spec;
1847 hda_nid_t conns[4];
1848 int nconns;
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001849
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001850 nconns = snd_hda_get_connections(codec, nid, conns, ARRAY_SIZE(conns));
1851 if (nconns == spec->num_cvts &&
1852 !memcmp(conns, spec->cvt_nids, spec->num_cvts * sizeof(hda_nid_t)))
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001853 return;
1854
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001855 /* override pins connection list */
1856 snd_printdd("hdmi: haswell: override pin connection 0x%x\n", nid);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001857 nconns = max(spec->num_cvts, 4);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001858 snd_hda_override_conn_list(codec, nid, spec->num_cvts, spec->cvt_nids);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001859}
1860
Mengdong Lin1611a9c2013-02-08 17:09:52 -05001861#define INTEL_VENDOR_NID 0x08
1862#define INTEL_GET_VENDOR_VERB 0xf81
1863#define INTEL_SET_VENDOR_VERB 0x781
1864#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
1865#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
1866
1867static void intel_haswell_enable_all_pins(struct hda_codec *codec,
Takashi Iwai17df3f52013-05-08 08:09:34 +02001868 bool update_tree)
Mengdong Lin1611a9c2013-02-08 17:09:52 -05001869{
1870 unsigned int vendor_param;
1871
Mengdong Lin1611a9c2013-02-08 17:09:52 -05001872 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
1873 INTEL_GET_VENDOR_VERB, 0);
1874 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
1875 return;
1876
1877 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
1878 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
1879 INTEL_SET_VENDOR_VERB, vendor_param);
1880 if (vendor_param == -1)
1881 return;
1882
Takashi Iwai17df3f52013-05-08 08:09:34 +02001883 if (update_tree)
1884 snd_hda_codec_update_widgets(codec);
Mengdong Lin1611a9c2013-02-08 17:09:52 -05001885}
1886
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001887static void intel_haswell_fixup_enable_dp12(struct hda_codec *codec)
1888{
1889 unsigned int vendor_param;
1890
1891 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
1892 INTEL_GET_VENDOR_VERB, 0);
1893 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
1894 return;
1895
1896 /* enable DP1.2 mode */
1897 vendor_param |= INTEL_EN_DP12;
1898 snd_hda_codec_write_cache(codec, INTEL_VENDOR_NID, 0,
1899 INTEL_SET_VENDOR_VERB, vendor_param);
1900}
1901
Takashi Iwai17df3f52013-05-08 08:09:34 +02001902/* Haswell needs to re-issue the vendor-specific verbs before turning to D0.
1903 * Otherwise you may get severe h/w communication errors.
1904 */
1905static void haswell_set_power_state(struct hda_codec *codec, hda_nid_t fg,
1906 unsigned int power_state)
1907{
1908 if (power_state == AC_PWRST_D0) {
1909 intel_haswell_enable_all_pins(codec, false);
1910 intel_haswell_fixup_enable_dp12(codec);
1911 }
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001912
Takashi Iwai17df3f52013-05-08 08:09:34 +02001913 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, power_state);
1914 snd_hda_codec_set_power_to_all(codec, fg, power_state);
1915}
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001916
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001917static int patch_generic_hdmi(struct hda_codec *codec)
1918{
1919 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001920
1921 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1922 if (spec == NULL)
1923 return -ENOMEM;
1924
1925 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001926 hdmi_array_init(spec, 4);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001927
Takashi Iwai17df3f52013-05-08 08:09:34 +02001928 if (codec->vendor_id == 0x80862807) {
1929 intel_haswell_enable_all_pins(codec, true);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001930 intel_haswell_fixup_enable_dp12(codec);
Takashi Iwai17df3f52013-05-08 08:09:34 +02001931 }
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001932
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001933 if (hdmi_parse_codec(codec) < 0) {
1934 codec->spec = NULL;
1935 kfree(spec);
1936 return -EINVAL;
1937 }
1938 codec->patch_ops = generic_hdmi_patch_ops;
Takashi Iwai17df3f52013-05-08 08:09:34 +02001939 if (codec->vendor_id == 0x80862807)
1940 codec->patch_ops.set_power_state = haswell_set_power_state;
1941
Takashi Iwai8b8d6542012-06-20 16:32:22 +02001942 generic_hdmi_init_per_pins(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001943
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001944 init_channel_allocations();
1945
1946 return 0;
1947}
1948
1949/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06001950 * Shared non-generic implementations
1951 */
1952
1953static int simple_playback_build_pcms(struct hda_codec *codec)
1954{
1955 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001956 struct hda_pcm *info;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001957 unsigned int chans;
1958 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001959 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001960
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001961 per_cvt = get_cvt(spec, 0);
1962 chans = get_wcaps(codec, per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001963 chans = get_wcaps_channels(chans);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001964
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001965 info = snd_array_new(&spec->pcm_rec);
1966 if (!info)
1967 return -ENOMEM;
1968 info->name = get_pin(spec, 0)->pcm_name;
1969 sprintf(info->name, "HDMI 0");
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001970 info->pcm_type = HDA_PCM_TYPE_HDMI;
1971 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
1972 *pstr = spec->pcm_playback;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001973 pstr->nid = per_cvt->cvt_nid;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001974 if (pstr->channels_max <= 2 && chans && chans <= 16)
1975 pstr->channels_max = chans;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001976
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001977 codec->num_pcms = 1;
1978 codec->pcm_info = info;
1979
Stephen Warren3aaf8982011-06-01 11:14:19 -06001980 return 0;
1981}
1982
Takashi Iwai4b6ace92012-06-15 11:53:32 +02001983/* unsolicited event for jack sensing */
1984static void simple_hdmi_unsol_event(struct hda_codec *codec,
1985 unsigned int res)
1986{
Takashi Iwai9dd8cf12012-06-21 10:43:15 +02001987 snd_hda_jack_set_dirty_all(codec);
Takashi Iwai4b6ace92012-06-15 11:53:32 +02001988 snd_hda_jack_report_sync(codec);
1989}
1990
1991/* generic_hdmi_build_jack can be used for simple_hdmi, too,
1992 * as long as spec->pins[] is set correctly
1993 */
1994#define simple_hdmi_build_jack generic_hdmi_build_jack
1995
Stephen Warren3aaf8982011-06-01 11:14:19 -06001996static int simple_playback_build_controls(struct hda_codec *codec)
1997{
1998 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001999 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002000 int err;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002001
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002002 per_cvt = get_cvt(spec, 0);
2003 err = snd_hda_create_spdif_out_ctls(codec, per_cvt->cvt_nid,
2004 per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002005 if (err < 0)
2006 return err;
2007 return simple_hdmi_build_jack(codec, 0);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002008}
2009
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002010static int simple_playback_init(struct hda_codec *codec)
2011{
2012 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002013 struct hdmi_spec_per_pin *per_pin = get_pin(spec, 0);
2014 hda_nid_t pin = per_pin->pin_nid;
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002015
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002016 snd_hda_codec_write(codec, pin, 0,
2017 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2018 /* some codecs require to unmute the pin */
2019 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
2020 snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2021 AMP_OUT_UNMUTE);
2022 snd_hda_jack_detect_enable(codec, pin, pin);
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002023 return 0;
2024}
2025
Stephen Warren3aaf8982011-06-01 11:14:19 -06002026static void simple_playback_free(struct hda_codec *codec)
2027{
2028 struct hdmi_spec *spec = codec->spec;
2029
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002030 hdmi_array_free(spec);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002031 kfree(spec);
2032}
2033
2034/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002035 * Nvidia specific implementations
2036 */
2037
2038#define Nv_VERB_SET_Channel_Allocation 0xF79
2039#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
2040#define Nv_VERB_SET_Audio_Protection_On 0xF98
2041#define Nv_VERB_SET_Audio_Protection_Off 0xF99
2042
2043#define nvhdmi_master_con_nid_7x 0x04
2044#define nvhdmi_master_pin_nid_7x 0x05
2045
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002046static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002047 /*front, rear, clfe, rear_surr */
2048 0x6, 0x8, 0xa, 0xc,
2049};
2050
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002051static const struct hda_verb nvhdmi_basic_init_7x_2ch[] = {
2052 /* set audio protect on */
2053 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2054 /* enable digital output on pin widget */
2055 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2056 {} /* terminator */
2057};
2058
2059static const struct hda_verb nvhdmi_basic_init_7x_8ch[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002060 /* set audio protect on */
2061 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2062 /* enable digital output on pin widget */
2063 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2064 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2065 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2066 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2067 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2068 {} /* terminator */
2069};
2070
2071#ifdef LIMITED_RATE_FMT_SUPPORT
2072/* support only the safe format and rate */
2073#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
2074#define SUPPORTED_MAXBPS 16
2075#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
2076#else
2077/* support all rates and formats */
2078#define SUPPORTED_RATES \
2079 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
2080 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
2081 SNDRV_PCM_RATE_192000)
2082#define SUPPORTED_MAXBPS 24
2083#define SUPPORTED_FORMATS \
2084 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
2085#endif
2086
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002087static int nvhdmi_7x_init_2ch(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002088{
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002089 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_2ch);
2090 return 0;
2091}
2092
2093static int nvhdmi_7x_init_8ch(struct hda_codec *codec)
2094{
2095 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_8ch);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002096 return 0;
2097}
2098
Nitin Daga393004b2011-01-10 21:49:31 +05302099static unsigned int channels_2_6_8[] = {
2100 2, 6, 8
2101};
2102
2103static unsigned int channels_2_8[] = {
2104 2, 8
2105};
2106
2107static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
2108 .count = ARRAY_SIZE(channels_2_6_8),
2109 .list = channels_2_6_8,
2110 .mask = 0,
2111};
2112
2113static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
2114 .count = ARRAY_SIZE(channels_2_8),
2115 .list = channels_2_8,
2116 .mask = 0,
2117};
2118
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002119static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
2120 struct hda_codec *codec,
2121 struct snd_pcm_substream *substream)
2122{
2123 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05302124 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
2125
2126 switch (codec->preset->id) {
2127 case 0x10de0002:
2128 case 0x10de0003:
2129 case 0x10de0005:
2130 case 0x10de0006:
2131 hw_constraints_channels = &hw_constraints_2_8_channels;
2132 break;
2133 case 0x10de0007:
2134 hw_constraints_channels = &hw_constraints_2_6_8_channels;
2135 break;
2136 default:
2137 break;
2138 }
2139
2140 if (hw_constraints_channels != NULL) {
2141 snd_pcm_hw_constraint_list(substream->runtime, 0,
2142 SNDRV_PCM_HW_PARAM_CHANNELS,
2143 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01002144 } else {
2145 snd_pcm_hw_constraint_step(substream->runtime, 0,
2146 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05302147 }
2148
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002149 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2150}
2151
2152static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
2153 struct hda_codec *codec,
2154 struct snd_pcm_substream *substream)
2155{
2156 struct hdmi_spec *spec = codec->spec;
2157 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2158}
2159
2160static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2161 struct hda_codec *codec,
2162 unsigned int stream_tag,
2163 unsigned int format,
2164 struct snd_pcm_substream *substream)
2165{
2166 struct hdmi_spec *spec = codec->spec;
2167 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2168 stream_tag, format, substream);
2169}
2170
Takashi Iwaid0b12522012-06-15 14:34:42 +02002171static const struct hda_pcm_stream simple_pcm_playback = {
2172 .substreams = 1,
2173 .channels_min = 2,
2174 .channels_max = 2,
2175 .ops = {
2176 .open = simple_playback_pcm_open,
2177 .close = simple_playback_pcm_close,
2178 .prepare = simple_playback_pcm_prepare
2179 },
2180};
2181
2182static const struct hda_codec_ops simple_hdmi_patch_ops = {
2183 .build_controls = simple_playback_build_controls,
2184 .build_pcms = simple_playback_build_pcms,
2185 .init = simple_playback_init,
2186 .free = simple_playback_free,
Takashi Iwai250e41a2012-06-15 14:40:21 +02002187 .unsol_event = simple_hdmi_unsol_event,
Takashi Iwaid0b12522012-06-15 14:34:42 +02002188};
2189
2190static int patch_simple_hdmi(struct hda_codec *codec,
2191 hda_nid_t cvt_nid, hda_nid_t pin_nid)
2192{
2193 struct hdmi_spec *spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002194 struct hdmi_spec_per_cvt *per_cvt;
2195 struct hdmi_spec_per_pin *per_pin;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002196
2197 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2198 if (!spec)
2199 return -ENOMEM;
2200
2201 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002202 hdmi_array_init(spec, 1);
Takashi Iwaid0b12522012-06-15 14:34:42 +02002203
2204 spec->multiout.num_dacs = 0; /* no analog */
2205 spec->multiout.max_channels = 2;
2206 spec->multiout.dig_out_nid = cvt_nid;
2207 spec->num_cvts = 1;
2208 spec->num_pins = 1;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002209 per_pin = snd_array_new(&spec->pins);
2210 per_cvt = snd_array_new(&spec->cvts);
2211 if (!per_pin || !per_cvt) {
2212 simple_playback_free(codec);
2213 return -ENOMEM;
2214 }
2215 per_cvt->cvt_nid = cvt_nid;
2216 per_pin->pin_nid = pin_nid;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002217 spec->pcm_playback = simple_pcm_playback;
2218
2219 codec->patch_ops = simple_hdmi_patch_ops;
2220
2221 return 0;
2222}
2223
Aaron Plattner1f348522011-04-06 17:19:04 -07002224static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
2225 int channels)
2226{
2227 unsigned int chanmask;
2228 int chan = channels ? (channels - 1) : 1;
2229
2230 switch (channels) {
2231 default:
2232 case 0:
2233 case 2:
2234 chanmask = 0x00;
2235 break;
2236 case 4:
2237 chanmask = 0x08;
2238 break;
2239 case 6:
2240 chanmask = 0x0b;
2241 break;
2242 case 8:
2243 chanmask = 0x13;
2244 break;
2245 }
2246
2247 /* Set the audio infoframe channel allocation and checksum fields. The
2248 * channel count is computed implicitly by the hardware. */
2249 snd_hda_codec_write(codec, 0x1, 0,
2250 Nv_VERB_SET_Channel_Allocation, chanmask);
2251
2252 snd_hda_codec_write(codec, 0x1, 0,
2253 Nv_VERB_SET_Info_Frame_Checksum,
2254 (0x71 - chan - chanmask));
2255}
2256
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002257static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
2258 struct hda_codec *codec,
2259 struct snd_pcm_substream *substream)
2260{
2261 struct hdmi_spec *spec = codec->spec;
2262 int i;
2263
2264 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
2265 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
2266 for (i = 0; i < 4; i++) {
2267 /* set the stream id */
2268 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2269 AC_VERB_SET_CHANNEL_STREAMID, 0);
2270 /* set the stream format */
2271 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2272 AC_VERB_SET_STREAM_FORMAT, 0);
2273 }
2274
Aaron Plattner1f348522011-04-06 17:19:04 -07002275 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
2276 * streams are disabled. */
2277 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2278
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002279 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2280}
2281
2282static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
2283 struct hda_codec *codec,
2284 unsigned int stream_tag,
2285 unsigned int format,
2286 struct snd_pcm_substream *substream)
2287{
2288 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01002289 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002290 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06002291 struct hdmi_spec *spec = codec->spec;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002292 struct hda_spdif_out *spdif;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002293 struct hdmi_spec_per_cvt *per_cvt;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002294
2295 mutex_lock(&codec->spdif_mutex);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002296 per_cvt = get_cvt(spec, 0);
2297 spdif = snd_hda_spdif_out_of_nid(codec, per_cvt->cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002298
2299 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002300
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002301 dataDCC2 = 0x2;
2302
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002303 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06002304 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002305 snd_hda_codec_write(codec,
2306 nvhdmi_master_con_nid_7x,
2307 0,
2308 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002309 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002310
2311 /* set the stream id */
2312 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2313 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
2314
2315 /* set the stream format */
2316 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2317 AC_VERB_SET_STREAM_FORMAT, format);
2318
2319 /* turn on again (if needed) */
2320 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06002321 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002322 snd_hda_codec_write(codec,
2323 nvhdmi_master_con_nid_7x,
2324 0,
2325 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002326 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002327 snd_hda_codec_write(codec,
2328 nvhdmi_master_con_nid_7x,
2329 0,
2330 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2331 }
2332
2333 for (i = 0; i < 4; i++) {
2334 if (chs == 2)
2335 channel_id = 0;
2336 else
2337 channel_id = i * 2;
2338
2339 /* turn off SPDIF once;
2340 *otherwise the IEC958 bits won't be updated
2341 */
2342 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002343 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002344 snd_hda_codec_write(codec,
2345 nvhdmi_con_nids_7x[i],
2346 0,
2347 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002348 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002349 /* set the stream id */
2350 snd_hda_codec_write(codec,
2351 nvhdmi_con_nids_7x[i],
2352 0,
2353 AC_VERB_SET_CHANNEL_STREAMID,
2354 (stream_tag << 4) | channel_id);
2355 /* set the stream format */
2356 snd_hda_codec_write(codec,
2357 nvhdmi_con_nids_7x[i],
2358 0,
2359 AC_VERB_SET_STREAM_FORMAT,
2360 format);
2361 /* turn on again (if needed) */
2362 /* enable and set the channel status audio/data flag */
2363 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002364 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002365 snd_hda_codec_write(codec,
2366 nvhdmi_con_nids_7x[i],
2367 0,
2368 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002369 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002370 snd_hda_codec_write(codec,
2371 nvhdmi_con_nids_7x[i],
2372 0,
2373 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2374 }
2375 }
2376
Aaron Plattner1f348522011-04-06 17:19:04 -07002377 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002378
2379 mutex_unlock(&codec->spdif_mutex);
2380 return 0;
2381}
2382
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002383static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002384 .substreams = 1,
2385 .channels_min = 2,
2386 .channels_max = 8,
2387 .nid = nvhdmi_master_con_nid_7x,
2388 .rates = SUPPORTED_RATES,
2389 .maxbps = SUPPORTED_MAXBPS,
2390 .formats = SUPPORTED_FORMATS,
2391 .ops = {
2392 .open = simple_playback_pcm_open,
2393 .close = nvhdmi_8ch_7x_pcm_close,
2394 .prepare = nvhdmi_8ch_7x_pcm_prepare
2395 },
2396};
2397
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002398static int patch_nvhdmi_2ch(struct hda_codec *codec)
2399{
2400 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002401 int err = patch_simple_hdmi(codec, nvhdmi_master_con_nid_7x,
2402 nvhdmi_master_pin_nid_7x);
2403 if (err < 0)
2404 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002405
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002406 codec->patch_ops.init = nvhdmi_7x_init_2ch;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002407 /* override the PCM rates, etc, as the codec doesn't give full list */
2408 spec = codec->spec;
2409 spec->pcm_playback.rates = SUPPORTED_RATES;
2410 spec->pcm_playback.maxbps = SUPPORTED_MAXBPS;
2411 spec->pcm_playback.formats = SUPPORTED_FORMATS;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002412 return 0;
2413}
2414
Takashi Iwai53775b02012-08-01 12:17:41 +02002415static int nvhdmi_7x_8ch_build_pcms(struct hda_codec *codec)
2416{
2417 struct hdmi_spec *spec = codec->spec;
2418 int err = simple_playback_build_pcms(codec);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002419 if (!err) {
2420 struct hda_pcm *info = get_pcm_rec(spec, 0);
2421 info->own_chmap = true;
2422 }
Takashi Iwai53775b02012-08-01 12:17:41 +02002423 return err;
2424}
2425
2426static int nvhdmi_7x_8ch_build_controls(struct hda_codec *codec)
2427{
2428 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002429 struct hda_pcm *info;
Takashi Iwai53775b02012-08-01 12:17:41 +02002430 struct snd_pcm_chmap *chmap;
2431 int err;
2432
2433 err = simple_playback_build_controls(codec);
2434 if (err < 0)
2435 return err;
2436
2437 /* add channel maps */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002438 info = get_pcm_rec(spec, 0);
2439 err = snd_pcm_add_chmap_ctls(info->pcm,
Takashi Iwai53775b02012-08-01 12:17:41 +02002440 SNDRV_PCM_STREAM_PLAYBACK,
2441 snd_pcm_alt_chmaps, 8, 0, &chmap);
2442 if (err < 0)
2443 return err;
2444 switch (codec->preset->id) {
2445 case 0x10de0002:
2446 case 0x10de0003:
2447 case 0x10de0005:
2448 case 0x10de0006:
2449 chmap->channel_mask = (1U << 2) | (1U << 8);
2450 break;
2451 case 0x10de0007:
2452 chmap->channel_mask = (1U << 2) | (1U << 6) | (1U << 8);
2453 }
2454 return 0;
2455}
2456
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002457static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
2458{
2459 struct hdmi_spec *spec;
2460 int err = patch_nvhdmi_2ch(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002461 if (err < 0)
2462 return err;
2463 spec = codec->spec;
2464 spec->multiout.max_channels = 8;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002465 spec->pcm_playback = nvhdmi_pcm_playback_8ch_7x;
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002466 codec->patch_ops.init = nvhdmi_7x_init_8ch;
Takashi Iwai53775b02012-08-01 12:17:41 +02002467 codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms;
2468 codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls;
Aaron Plattner1f348522011-04-06 17:19:04 -07002469
2470 /* Initialize the audio infoframe channel mask and checksum to something
2471 * valid */
2472 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2473
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002474 return 0;
2475}
2476
2477/*
2478 * ATI-specific implementations
2479 *
2480 * FIXME: we may omit the whole this and use the generic code once after
2481 * it's confirmed to work.
2482 */
2483
2484#define ATIHDMI_CVT_NID 0x02 /* audio converter */
2485#define ATIHDMI_PIN_NID 0x03 /* HDMI output pin */
2486
2487static int atihdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2488 struct hda_codec *codec,
2489 unsigned int stream_tag,
2490 unsigned int format,
2491 struct snd_pcm_substream *substream)
2492{
2493 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002494 struct hdmi_spec_per_cvt *per_cvt = get_cvt(spec, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002495 int chans = substream->runtime->channels;
2496 int i, err;
2497
2498 err = simple_playback_pcm_prepare(hinfo, codec, stream_tag, format,
2499 substream);
2500 if (err < 0)
2501 return err;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002502 snd_hda_codec_write(codec, per_cvt->cvt_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -06002503 AC_VERB_SET_CVT_CHAN_COUNT, chans - 1);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002504 /* FIXME: XXX */
2505 for (i = 0; i < chans; i++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002506 snd_hda_codec_write(codec, per_cvt->cvt_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002507 AC_VERB_SET_HDMI_CHAN_SLOT,
2508 (i << 4) | i);
2509 }
2510 return 0;
2511}
2512
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002513static int patch_atihdmi(struct hda_codec *codec)
2514{
2515 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002516 int err = patch_simple_hdmi(codec, ATIHDMI_CVT_NID, ATIHDMI_PIN_NID);
2517 if (err < 0)
2518 return err;
2519 spec = codec->spec;
2520 spec->pcm_playback.ops.prepare = atihdmi_playback_pcm_prepare;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002521 return 0;
2522}
2523
Annie Liu3de5ff82012-06-08 19:18:42 +08002524/* VIA HDMI Implementation */
2525#define VIAHDMI_CVT_NID 0x02 /* audio converter1 */
2526#define VIAHDMI_PIN_NID 0x03 /* HDMI output pin1 */
2527
Annie Liu3de5ff82012-06-08 19:18:42 +08002528static int patch_via_hdmi(struct hda_codec *codec)
2529{
Takashi Iwai250e41a2012-06-15 14:40:21 +02002530 return patch_simple_hdmi(codec, VIAHDMI_CVT_NID, VIAHDMI_PIN_NID);
Annie Liu3de5ff82012-06-08 19:18:42 +08002531}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002532
2533/*
2534 * patch entries
2535 */
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002536static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002537{ .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
2538{ .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
2539{ .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
Anssi Hannula36e9c132010-12-05 02:34:15 +02002540{ .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002541{ .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
2542{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
2543{ .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
2544{ .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2545{ .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2546{ .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2547{ .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2548{ .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
Stephen Warren5d44f922011-05-24 17:11:17 -06002549{ .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_generic_hdmi },
2550{ .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_generic_hdmi },
2551{ .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_generic_hdmi },
2552{ .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_generic_hdmi },
2553{ .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_generic_hdmi },
2554{ .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_generic_hdmi },
2555{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_generic_hdmi },
2556{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_generic_hdmi },
2557{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_generic_hdmi },
2558{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_generic_hdmi },
2559{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_generic_hdmi },
Richard Samsonc8900a02011-03-03 12:46:13 +01002560/* 17 is known to be absent */
Stephen Warren5d44f922011-05-24 17:11:17 -06002561{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_generic_hdmi },
2562{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_generic_hdmi },
2563{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_generic_hdmi },
2564{ .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_generic_hdmi },
2565{ .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_generic_hdmi },
2566{ .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_generic_hdmi },
2567{ .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_generic_hdmi },
2568{ .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_generic_hdmi },
2569{ .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_generic_hdmi },
2570{ .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_generic_hdmi },
Aaron Plattner7ae48b52012-07-16 17:10:04 -07002571{ .id = 0x10de0051, .name = "GPU 51 HDMI/DP", .patch = patch_generic_hdmi },
Aaron Plattner782e9ca2013-07-12 11:01:37 -07002572{ .id = 0x10de0060, .name = "GPU 60 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002573{ .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
2574{ .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
Annie Liu3de5ff82012-06-08 19:18:42 +08002575{ .id = 0x11069f80, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
2576{ .id = 0x11069f81, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
2577{ .id = 0x11069f84, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
2578{ .id = 0x11069f85, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002579{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
2580{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
2581{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
2582{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
2583{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
2584{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang591e6102011-05-20 15:35:43 +08002585{ .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
Wang Xingchao1c766842012-06-13 10:23:52 +08002586{ .id = 0x80862807, .name = "Haswell HDMI", .patch = patch_generic_hdmi },
Wu Fengguang6edc59e2012-02-23 15:07:44 +08002587{ .id = 0x80862880, .name = "CedarTrail HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002588{ .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi },
2589{} /* terminator */
2590};
2591
2592MODULE_ALIAS("snd-hda-codec-id:1002793c");
2593MODULE_ALIAS("snd-hda-codec-id:10027919");
2594MODULE_ALIAS("snd-hda-codec-id:1002791a");
2595MODULE_ALIAS("snd-hda-codec-id:1002aa01");
2596MODULE_ALIAS("snd-hda-codec-id:10951390");
2597MODULE_ALIAS("snd-hda-codec-id:10951392");
2598MODULE_ALIAS("snd-hda-codec-id:10de0002");
2599MODULE_ALIAS("snd-hda-codec-id:10de0003");
2600MODULE_ALIAS("snd-hda-codec-id:10de0005");
2601MODULE_ALIAS("snd-hda-codec-id:10de0006");
2602MODULE_ALIAS("snd-hda-codec-id:10de0007");
2603MODULE_ALIAS("snd-hda-codec-id:10de000a");
2604MODULE_ALIAS("snd-hda-codec-id:10de000b");
2605MODULE_ALIAS("snd-hda-codec-id:10de000c");
2606MODULE_ALIAS("snd-hda-codec-id:10de000d");
2607MODULE_ALIAS("snd-hda-codec-id:10de0010");
2608MODULE_ALIAS("snd-hda-codec-id:10de0011");
2609MODULE_ALIAS("snd-hda-codec-id:10de0012");
2610MODULE_ALIAS("snd-hda-codec-id:10de0013");
2611MODULE_ALIAS("snd-hda-codec-id:10de0014");
Richard Samsonc8900a02011-03-03 12:46:13 +01002612MODULE_ALIAS("snd-hda-codec-id:10de0015");
2613MODULE_ALIAS("snd-hda-codec-id:10de0016");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002614MODULE_ALIAS("snd-hda-codec-id:10de0018");
2615MODULE_ALIAS("snd-hda-codec-id:10de0019");
2616MODULE_ALIAS("snd-hda-codec-id:10de001a");
2617MODULE_ALIAS("snd-hda-codec-id:10de001b");
2618MODULE_ALIAS("snd-hda-codec-id:10de001c");
2619MODULE_ALIAS("snd-hda-codec-id:10de0040");
2620MODULE_ALIAS("snd-hda-codec-id:10de0041");
2621MODULE_ALIAS("snd-hda-codec-id:10de0042");
2622MODULE_ALIAS("snd-hda-codec-id:10de0043");
2623MODULE_ALIAS("snd-hda-codec-id:10de0044");
Aaron Plattner7ae48b52012-07-16 17:10:04 -07002624MODULE_ALIAS("snd-hda-codec-id:10de0051");
Aaron Plattner782e9ca2013-07-12 11:01:37 -07002625MODULE_ALIAS("snd-hda-codec-id:10de0060");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002626MODULE_ALIAS("snd-hda-codec-id:10de0067");
2627MODULE_ALIAS("snd-hda-codec-id:10de8001");
Annie Liu3de5ff82012-06-08 19:18:42 +08002628MODULE_ALIAS("snd-hda-codec-id:11069f80");
2629MODULE_ALIAS("snd-hda-codec-id:11069f81");
2630MODULE_ALIAS("snd-hda-codec-id:11069f84");
2631MODULE_ALIAS("snd-hda-codec-id:11069f85");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002632MODULE_ALIAS("snd-hda-codec-id:17e80047");
2633MODULE_ALIAS("snd-hda-codec-id:80860054");
2634MODULE_ALIAS("snd-hda-codec-id:80862801");
2635MODULE_ALIAS("snd-hda-codec-id:80862802");
2636MODULE_ALIAS("snd-hda-codec-id:80862803");
2637MODULE_ALIAS("snd-hda-codec-id:80862804");
2638MODULE_ALIAS("snd-hda-codec-id:80862805");
Wu Fengguang591e6102011-05-20 15:35:43 +08002639MODULE_ALIAS("snd-hda-codec-id:80862806");
Wang Xingchao1c766842012-06-13 10:23:52 +08002640MODULE_ALIAS("snd-hda-codec-id:80862807");
Wu Fengguang6edc59e2012-02-23 15:07:44 +08002641MODULE_ALIAS("snd-hda-codec-id:80862880");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002642MODULE_ALIAS("snd-hda-codec-id:808629fb");
2643
2644MODULE_LICENSE("GPL");
2645MODULE_DESCRIPTION("HDMI HD-audio codec");
2646MODULE_ALIAS("snd-hda-codec-intelhdmi");
2647MODULE_ALIAS("snd-hda-codec-nvhdmi");
2648MODULE_ALIAS("snd-hda-codec-atihdmi");
2649
2650static struct hda_codec_preset_list intel_list = {
2651 .preset = snd_hda_preset_hdmi,
2652 .owner = THIS_MODULE,
2653};
2654
2655static int __init patch_hdmi_init(void)
2656{
2657 return snd_hda_add_codec_preset(&intel_list);
2658}
2659
2660static void __exit patch_hdmi_exit(void)
2661{
2662 snd_hda_delete_codec_preset(&intel_list);
2663}
2664
2665module_init(patch_hdmi_init)
2666module_exit(patch_hdmi_exit)