blob: e22323f5042482cf1e6c8ae1d31e75548997d336 [file] [log] [blame]
Wu Fengguang079d88c2010-03-08 10:44:23 +08001/*
2 *
3 * patch_hdmi.c - routines for HDMI/DisplayPort codecs
4 *
5 * Copyright(c) 2008-2010 Intel Corporation. All rights reserved.
Takashi Iwai84eb01b2010-09-07 12:27:25 +02006 * Copyright (c) 2006 ATI Technologies Inc.
7 * Copyright (c) 2008 NVIDIA Corp. All rights reserved.
8 * Copyright (c) 2008 Wei Ni <wni@nvidia.com>
Anssi Hannula5a6135842013-10-24 21:10:35 +03009 * Copyright (c) 2013 Anssi Hannula <anssi.hannula@iki.fi>
Wu Fengguang079d88c2010-03-08 10:44:23 +080010 *
11 * Authors:
12 * Wu Fengguang <wfg@linux.intel.com>
13 *
14 * Maintained by:
15 * Wu Fengguang <wfg@linux.intel.com>
16 *
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the Free
19 * Software Foundation; either version 2 of the License, or (at your option)
20 * any later version.
21 *
22 * This program is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
24 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
25 * for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software Foundation,
29 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 */
31
Takashi Iwai84eb01b2010-09-07 12:27:25 +020032#include <linux/init.h>
33#include <linux/delay.h>
34#include <linux/slab.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040035#include <linux/module.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020036#include <sound/core.h>
David Henningsson07acecc2011-05-19 11:46:03 +020037#include <sound/jack.h>
Wang Xingchao433968d2012-09-06 10:02:37 +080038#include <sound/asoundef.h>
Takashi Iwaid45e6882012-07-31 11:36:00 +020039#include <sound/tlv.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020040#include "hda_codec.h"
41#include "hda_local.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020042#include "hda_jack.h"
Takashi Iwai84eb01b2010-09-07 12:27:25 +020043
Takashi Iwai0ebaa242011-01-11 18:11:04 +010044static bool static_hdmi_pcm;
45module_param(static_hdmi_pcm, bool, 0644);
46MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info");
47
Mengdong Linfb87fa32013-09-04 16:36:57 -040048#define is_haswell(codec) ((codec)->vendor_id == 0x80862807)
Mengdong Lin02383852013-10-31 18:31:51 -040049#define is_valleyview(codec) ((codec)->vendor_id == 0x80862882)
Mengdong Linfb87fa32013-09-04 16:36:57 -040050
Stephen Warren384a48d2011-06-01 11:14:21 -060051struct hdmi_spec_per_cvt {
52 hda_nid_t cvt_nid;
53 int assigned;
54 unsigned int channels_min;
55 unsigned int channels_max;
56 u32 rates;
57 u64 formats;
58 unsigned int maxbps;
59};
60
Takashi Iwai4eea3092013-02-07 18:18:19 +010061/* max. connections to a widget */
62#define HDA_MAX_CONNECTIONS 32
63
Stephen Warren384a48d2011-06-01 11:14:21 -060064struct hdmi_spec_per_pin {
65 hda_nid_t pin_nid;
66 int num_mux_nids;
67 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Anssi Hannula1df5a062013-10-05 02:25:40 +030068 hda_nid_t cvt_nid;
Wu Fengguang744626d2011-11-16 16:29:47 +080069
70 struct hda_codec *codec;
Stephen Warren384a48d2011-06-01 11:14:21 -060071 struct hdmi_eld sink_eld;
Takashi Iwaia4e9a382013-10-17 18:21:12 +020072 struct mutex lock;
Wu Fengguang744626d2011-11-16 16:29:47 +080073 struct delayed_work work;
David Henningsson92c69e72013-02-19 16:11:26 +010074 struct snd_kcontrol *eld_ctl;
Wu Fengguangc6e84532011-11-18 16:59:32 -060075 int repoll_count;
Takashi Iwaib0540872013-09-02 12:33:02 +020076 bool setup; /* the stream has been set up by prepare callback */
77 int channels; /* current number of channels */
Takashi Iwai1a6003b2012-09-06 17:42:08 +020078 bool non_pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +020079 bool chmap_set; /* channel-map override by ALSA API? */
80 unsigned char chmap[8]; /* ALSA API channel-map */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +010081 char pcm_name[8]; /* filled in build_pcm callbacks */
Takashi Iwaia4e9a382013-10-17 18:21:12 +020082#ifdef CONFIG_PROC_FS
83 struct snd_info_entry *proc_entry;
84#endif
Stephen Warren384a48d2011-06-01 11:14:21 -060085};
86
Anssi Hannula307229d2013-10-24 21:10:34 +030087struct cea_channel_speaker_allocation;
88
89/* operations used by generic code that can be overridden by patches */
90struct hdmi_ops {
91 int (*pin_get_eld)(struct hda_codec *codec, hda_nid_t pin_nid,
92 unsigned char *buf, int *eld_size);
93
94 /* get and set channel assigned to each HDMI ASP (audio sample packet) slot */
95 int (*pin_get_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
96 int asp_slot);
97 int (*pin_set_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
98 int asp_slot, int channel);
99
100 void (*pin_setup_infoframe)(struct hda_codec *codec, hda_nid_t pin_nid,
101 int ca, int active_channels, int conn_type);
102
103 /* enable/disable HBR (HD passthrough) */
104 int (*pin_hbr_setup)(struct hda_codec *codec, hda_nid_t pin_nid, bool hbr);
105
106 int (*setup_stream)(struct hda_codec *codec, hda_nid_t cvt_nid,
107 hda_nid_t pin_nid, u32 stream_tag, int format);
108
109 /* Helpers for producing the channel map TLVs. These can be overridden
110 * for devices that have non-standard mapping requirements. */
111 int (*chmap_cea_alloc_validate_get_type)(struct cea_channel_speaker_allocation *cap,
112 int channels);
113 void (*cea_alloc_to_tlv_chmap)(struct cea_channel_speaker_allocation *cap,
114 unsigned int *chmap, int channels);
115
116 /* check that the user-given chmap is supported */
117 int (*chmap_validate)(int ca, int channels, unsigned char *chmap);
118};
119
Wu Fengguang079d88c2010-03-08 10:44:23 +0800120struct hdmi_spec {
121 int num_cvts;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100122 struct snd_array cvts; /* struct hdmi_spec_per_cvt */
123 hda_nid_t cvt_nids[4]; /* only for haswell fix */
Stephen Warren384a48d2011-06-01 11:14:21 -0600124
Wu Fengguang079d88c2010-03-08 10:44:23 +0800125 int num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100126 struct snd_array pins; /* struct hdmi_spec_per_pin */
127 struct snd_array pcm_rec; /* struct hda_pcm */
Takashi Iwaid45e6882012-07-31 11:36:00 +0200128 unsigned int channels_max; /* max over all cvts */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800129
David Henningsson4bd038f2013-02-19 16:11:25 +0100130 struct hdmi_eld temp_eld;
Anssi Hannula307229d2013-10-24 21:10:34 +0300131 struct hdmi_ops ops;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800132 /*
Anssi Hannula5a6135842013-10-24 21:10:35 +0300133 * Non-generic VIA/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +0800134 */
135 struct hda_multi_out multiout;
Takashi Iwaid0b12522012-06-15 14:34:42 +0200136 struct hda_pcm_stream pcm_playback;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800137};
138
139
140struct hdmi_audio_infoframe {
141 u8 type; /* 0x84 */
142 u8 ver; /* 0x01 */
143 u8 len; /* 0x0a */
144
Wu Fengguang53d7d692010-09-21 14:25:49 +0800145 u8 checksum;
146
Wu Fengguang079d88c2010-03-08 10:44:23 +0800147 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
148 u8 SS01_SF24;
149 u8 CXT04;
150 u8 CA;
151 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800152};
153
154struct dp_audio_infoframe {
155 u8 type; /* 0x84 */
156 u8 len; /* 0x1b */
157 u8 ver; /* 0x11 << 2 */
158
159 u8 CC02_CT47; /* match with HDMI infoframe from this on */
160 u8 SS01_SF24;
161 u8 CXT04;
162 u8 CA;
163 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800164};
165
Takashi Iwai2b203db2011-02-11 12:17:30 +0100166union audio_infoframe {
167 struct hdmi_audio_infoframe hdmi;
168 struct dp_audio_infoframe dp;
169 u8 bytes[0];
170};
171
Wu Fengguang079d88c2010-03-08 10:44:23 +0800172/*
173 * CEA speaker placement:
174 *
175 * FLH FCH FRH
176 * FLW FL FLC FC FRC FR FRW
177 *
178 * LFE
179 * TC
180 *
181 * RL RLC RC RRC RR
182 *
183 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
184 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
185 */
186enum cea_speaker_placement {
187 FL = (1 << 0), /* Front Left */
188 FC = (1 << 1), /* Front Center */
189 FR = (1 << 2), /* Front Right */
190 FLC = (1 << 3), /* Front Left Center */
191 FRC = (1 << 4), /* Front Right Center */
192 RL = (1 << 5), /* Rear Left */
193 RC = (1 << 6), /* Rear Center */
194 RR = (1 << 7), /* Rear Right */
195 RLC = (1 << 8), /* Rear Left Center */
196 RRC = (1 << 9), /* Rear Right Center */
197 LFE = (1 << 10), /* Low Frequency Effect */
198 FLW = (1 << 11), /* Front Left Wide */
199 FRW = (1 << 12), /* Front Right Wide */
200 FLH = (1 << 13), /* Front Left High */
201 FCH = (1 << 14), /* Front Center High */
202 FRH = (1 << 15), /* Front Right High */
203 TC = (1 << 16), /* Top Center */
204};
205
206/*
207 * ELD SA bits in the CEA Speaker Allocation data block
208 */
209static int eld_speaker_allocation_bits[] = {
210 [0] = FL | FR,
211 [1] = LFE,
212 [2] = FC,
213 [3] = RL | RR,
214 [4] = RC,
215 [5] = FLC | FRC,
216 [6] = RLC | RRC,
217 /* the following are not defined in ELD yet */
218 [7] = FLW | FRW,
219 [8] = FLH | FRH,
220 [9] = TC,
221 [10] = FCH,
222};
223
224struct cea_channel_speaker_allocation {
225 int ca_index;
226 int speakers[8];
227
228 /* derived values, just for convenience */
229 int channels;
230 int spk_mask;
231};
232
233/*
234 * ALSA sequence is:
235 *
236 * surround40 surround41 surround50 surround51 surround71
237 * ch0 front left = = = =
238 * ch1 front right = = = =
239 * ch2 rear left = = = =
240 * ch3 rear right = = = =
241 * ch4 LFE center center center
242 * ch5 LFE LFE
243 * ch6 side left
244 * ch7 side right
245 *
246 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
247 */
248static int hdmi_channel_mapping[0x32][8] = {
249 /* stereo */
250 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
251 /* 2.1 */
252 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
253 /* Dolby Surround */
254 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
255 /* surround40 */
256 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
257 /* 4ch */
258 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
259 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800260 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800261 /* surround50 */
262 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
263 /* surround51 */
264 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
265 /* 7.1 */
266 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
267};
268
269/*
270 * This is an ordered list!
271 *
272 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800273 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800274 */
275static struct cea_channel_speaker_allocation channel_allocations[] = {
276/* channel: 7 6 5 4 3 2 1 0 */
277{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
278 /* 2.1 */
279{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
280 /* Dolby Surround */
281{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
282 /* surround40 */
283{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
284 /* surround41 */
285{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
286 /* surround50 */
287{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
288 /* surround51 */
289{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
290 /* 6.1 */
291{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
292 /* surround71 */
293{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
294
295{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
296{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
297{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
298{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
299{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
300{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
301{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
302{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
303{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
304{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
305{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
306{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
307{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
308{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
309{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
310{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
311{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
312{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
313{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
314{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
315{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
316{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
317{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
318{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
319{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
320{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
321{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
322{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
323{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
324{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
325{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
326{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
327{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
328{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
329{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
330{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
331{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
332{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
333{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
334{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
335{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
336};
337
338
339/*
340 * HDMI routines
341 */
342
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100343#define get_pin(spec, idx) \
344 ((struct hdmi_spec_per_pin *)snd_array_elem(&spec->pins, idx))
345#define get_cvt(spec, idx) \
346 ((struct hdmi_spec_per_cvt *)snd_array_elem(&spec->cvts, idx))
347#define get_pcm_rec(spec, idx) \
348 ((struct hda_pcm *)snd_array_elem(&spec->pcm_rec, idx))
349
Stephen Warren384a48d2011-06-01 11:14:21 -0600350static int pin_nid_to_pin_index(struct hdmi_spec *spec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800351{
Stephen Warren384a48d2011-06-01 11:14:21 -0600352 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800353
Stephen Warren384a48d2011-06-01 11:14:21 -0600354 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100355 if (get_pin(spec, pin_idx)->pin_nid == pin_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600356 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800357
Stephen Warren384a48d2011-06-01 11:14:21 -0600358 snd_printk(KERN_WARNING "HDMI: pin nid %d not registered\n", pin_nid);
359 return -EINVAL;
360}
361
362static int hinfo_to_pin_index(struct hdmi_spec *spec,
363 struct hda_pcm_stream *hinfo)
364{
365 int pin_idx;
366
367 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100368 if (get_pcm_rec(spec, pin_idx)->stream == hinfo)
Stephen Warren384a48d2011-06-01 11:14:21 -0600369 return pin_idx;
370
371 snd_printk(KERN_WARNING "HDMI: hinfo %p not registered\n", hinfo);
372 return -EINVAL;
373}
374
375static int cvt_nid_to_cvt_index(struct hdmi_spec *spec, hda_nid_t cvt_nid)
376{
377 int cvt_idx;
378
379 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100380 if (get_cvt(spec, cvt_idx)->cvt_nid == cvt_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600381 return cvt_idx;
382
383 snd_printk(KERN_WARNING "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800384 return -EINVAL;
385}
386
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500387static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
388 struct snd_ctl_elem_info *uinfo)
389{
390 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100391 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200392 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100393 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500394 int pin_idx;
395
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500396 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
397
398 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200399 per_pin = get_pin(spec, pin_idx);
400 eld = &per_pin->sink_eld;
David Henningsson68e03de2013-02-19 16:11:23 +0100401
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200402 mutex_lock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100403 uinfo->count = eld->eld_valid ? eld->eld_size : 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200404 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500405
406 return 0;
407}
408
409static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
410 struct snd_ctl_elem_value *ucontrol)
411{
412 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100413 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200414 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100415 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500416 int pin_idx;
417
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500418 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200419 per_pin = get_pin(spec, pin_idx);
420 eld = &per_pin->sink_eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500421
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200422 mutex_lock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100423 if (eld->eld_size > ARRAY_SIZE(ucontrol->value.bytes.data)) {
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200424 mutex_unlock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100425 snd_BUG();
426 return -EINVAL;
427 }
428
429 memset(ucontrol->value.bytes.data, 0,
430 ARRAY_SIZE(ucontrol->value.bytes.data));
431 if (eld->eld_valid)
432 memcpy(ucontrol->value.bytes.data, eld->eld_buffer,
433 eld->eld_size);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200434 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500435
436 return 0;
437}
438
439static struct snd_kcontrol_new eld_bytes_ctl = {
440 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
441 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
442 .name = "ELD",
443 .info = hdmi_eld_ctl_info,
444 .get = hdmi_eld_ctl_get,
445};
446
447static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
448 int device)
449{
450 struct snd_kcontrol *kctl;
451 struct hdmi_spec *spec = codec->spec;
452 int err;
453
454 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
455 if (!kctl)
456 return -ENOMEM;
457 kctl->private_value = pin_idx;
458 kctl->id.device = device;
459
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100460 err = snd_hda_ctl_add(codec, get_pin(spec, pin_idx)->pin_nid, kctl);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500461 if (err < 0)
462 return err;
463
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100464 get_pin(spec, pin_idx)->eld_ctl = kctl;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500465 return 0;
466}
467
Wu Fengguang079d88c2010-03-08 10:44:23 +0800468#ifdef BE_PARANOID
469static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
470 int *packet_index, int *byte_index)
471{
472 int val;
473
474 val = snd_hda_codec_read(codec, pin_nid, 0,
475 AC_VERB_GET_HDMI_DIP_INDEX, 0);
476
477 *packet_index = val >> 5;
478 *byte_index = val & 0x1f;
479}
480#endif
481
482static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
483 int packet_index, int byte_index)
484{
485 int val;
486
487 val = (packet_index << 5) | (byte_index & 0x1f);
488
489 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
490}
491
492static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
493 unsigned char val)
494{
495 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
496}
497
Stephen Warren384a48d2011-06-01 11:14:21 -0600498static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800499{
500 /* Unmute */
501 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
502 snd_hda_codec_write(codec, pin_nid, 0,
503 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Takashi Iwai6169b672012-12-14 10:22:35 +0100504 /* Enable pin out: some machines with GM965 gets broken output when
505 * the pin is disabled or changed while using with HDMI
506 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800507 snd_hda_codec_write(codec, pin_nid, 0,
Takashi Iwai6169b672012-12-14 10:22:35 +0100508 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800509}
510
Stephen Warren384a48d2011-06-01 11:14:21 -0600511static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800512{
Stephen Warren384a48d2011-06-01 11:14:21 -0600513 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800514 AC_VERB_GET_CVT_CHAN_COUNT, 0);
515}
516
517static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600518 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800519{
Stephen Warren384a48d2011-06-01 11:14:21 -0600520 if (chs != hdmi_get_channel_count(codec, cvt_nid))
521 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800522 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
523}
524
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200525/*
526 * ELD proc files
527 */
528
529#ifdef CONFIG_PROC_FS
530static void print_eld_info(struct snd_info_entry *entry,
531 struct snd_info_buffer *buffer)
532{
533 struct hdmi_spec_per_pin *per_pin = entry->private_data;
534
535 mutex_lock(&per_pin->lock);
536 snd_hdmi_print_eld_info(&per_pin->sink_eld, buffer);
537 mutex_unlock(&per_pin->lock);
538}
539
540static void write_eld_info(struct snd_info_entry *entry,
541 struct snd_info_buffer *buffer)
542{
543 struct hdmi_spec_per_pin *per_pin = entry->private_data;
544
545 mutex_lock(&per_pin->lock);
546 snd_hdmi_write_eld_info(&per_pin->sink_eld, buffer);
547 mutex_unlock(&per_pin->lock);
548}
549
550static int eld_proc_new(struct hdmi_spec_per_pin *per_pin, int index)
551{
552 char name[32];
553 struct hda_codec *codec = per_pin->codec;
554 struct snd_info_entry *entry;
555 int err;
556
557 snprintf(name, sizeof(name), "eld#%d.%d", codec->addr, index);
558 err = snd_card_proc_new(codec->bus->card, name, &entry);
559 if (err < 0)
560 return err;
561
562 snd_info_set_text_ops(entry, per_pin, print_eld_info);
563 entry->c.text.write = write_eld_info;
564 entry->mode |= S_IWUSR;
565 per_pin->proc_entry = entry;
566
567 return 0;
568}
569
570static void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
571{
572 if (!per_pin->codec->bus->shutdown && per_pin->proc_entry) {
573 snd_device_free(per_pin->codec->bus->card, per_pin->proc_entry);
574 per_pin->proc_entry = NULL;
575 }
576}
577#else
Takashi Iwaib55447a2013-10-21 16:31:45 +0200578static inline int eld_proc_new(struct hdmi_spec_per_pin *per_pin,
579 int index)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200580{
581 return 0;
582}
Takashi Iwaib55447a2013-10-21 16:31:45 +0200583static inline void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200584{
585}
586#endif
Wu Fengguang079d88c2010-03-08 10:44:23 +0800587
588/*
589 * Channel mapping routines
590 */
591
592/*
593 * Compute derived values in channel_allocations[].
594 */
595static void init_channel_allocations(void)
596{
597 int i, j;
598 struct cea_channel_speaker_allocation *p;
599
600 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
601 p = channel_allocations + i;
602 p->channels = 0;
603 p->spk_mask = 0;
604 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
605 if (p->speakers[j]) {
606 p->channels++;
607 p->spk_mask |= p->speakers[j];
608 }
609 }
610}
611
Wang Xingchao72357c72012-09-06 10:02:36 +0800612static int get_channel_allocation_order(int ca)
613{
614 int i;
615
616 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
617 if (channel_allocations[i].ca_index == ca)
618 break;
619 }
620 return i;
621}
622
Wu Fengguang079d88c2010-03-08 10:44:23 +0800623/*
624 * The transformation takes two steps:
625 *
626 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
627 * spk_mask => (channel_allocations[]) => ai->CA
628 *
629 * TODO: it could select the wrong CA from multiple candidates.
630*/
Stephen Warren384a48d2011-06-01 11:14:21 -0600631static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800632{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800633 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800634 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800635 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800636 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
637
638 /*
639 * CA defaults to 0 for basic stereo audio
640 */
641 if (channels <= 2)
642 return 0;
643
Wu Fengguang079d88c2010-03-08 10:44:23 +0800644 /*
645 * expand ELD's speaker allocation mask
646 *
647 * ELD tells the speaker mask in a compact(paired) form,
648 * expand ELD's notions to match the ones used by Audio InfoFrame.
649 */
650 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
David Henningsson1613d6b2013-02-19 16:11:24 +0100651 if (eld->info.spk_alloc & (1 << i))
Wu Fengguang079d88c2010-03-08 10:44:23 +0800652 spk_mask |= eld_speaker_allocation_bits[i];
653 }
654
655 /* search for the first working match in the CA table */
656 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
657 if (channels == channel_allocations[i].channels &&
658 (spk_mask & channel_allocations[i].spk_mask) ==
659 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800660 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800661 break;
662 }
663 }
664
Anssi Hannula18e39182013-09-01 14:36:47 +0300665 if (!ca) {
666 /* if there was no match, select the regular ALSA channel
667 * allocation with the matching number of channels */
668 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
669 if (channels == channel_allocations[i].channels) {
670 ca = channel_allocations[i].ca_index;
671 break;
672 }
673 }
674 }
675
David Henningsson1613d6b2013-02-19 16:11:24 +0100676 snd_print_channel_allocation(eld->info.spk_alloc, buf, sizeof(buf));
Wu Fengguang2abbf432010-03-08 10:45:38 +0800677 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800678 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800679
Wu Fengguang53d7d692010-09-21 14:25:49 +0800680 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800681}
682
683static void hdmi_debug_channel_mapping(struct hda_codec *codec,
684 hda_nid_t pin_nid)
685{
686#ifdef CONFIG_SND_DEBUG_VERBOSE
Anssi Hannula307229d2013-10-24 21:10:34 +0300687 struct hdmi_spec *spec = codec->spec;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800688 int i;
Anssi Hannula307229d2013-10-24 21:10:34 +0300689 int channel;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800690
691 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300692 channel = spec->ops.pin_get_slot_channel(codec, pin_nid, i);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800693 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
Anssi Hannula307229d2013-10-24 21:10:34 +0300694 channel, i);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800695 }
696#endif
697}
698
Takashi Iwaid45e6882012-07-31 11:36:00 +0200699static void hdmi_std_setup_channel_mapping(struct hda_codec *codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800700 hda_nid_t pin_nid,
Wang Xingchao433968d2012-09-06 10:02:37 +0800701 bool non_pcm,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800702 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800703{
Anssi Hannula307229d2013-10-24 21:10:34 +0300704 struct hdmi_spec *spec = codec->spec;
Anssi Hannula90f28002013-10-05 02:25:39 +0300705 struct cea_channel_speaker_allocation *ch_alloc;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800706 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800707 int err;
Wang Xingchao72357c72012-09-06 10:02:36 +0800708 int order;
Wang Xingchao433968d2012-09-06 10:02:37 +0800709 int non_pcm_mapping[8];
Wu Fengguang079d88c2010-03-08 10:44:23 +0800710
Wang Xingchao72357c72012-09-06 10:02:36 +0800711 order = get_channel_allocation_order(ca);
Anssi Hannula90f28002013-10-05 02:25:39 +0300712 ch_alloc = &channel_allocations[order];
Wang Xingchao433968d2012-09-06 10:02:37 +0800713
Wu Fengguang079d88c2010-03-08 10:44:23 +0800714 if (hdmi_channel_mapping[ca][1] == 0) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300715 int hdmi_slot = 0;
716 /* fill actual channel mappings in ALSA channel (i) order */
717 for (i = 0; i < ch_alloc->channels; i++) {
718 while (!ch_alloc->speakers[7 - hdmi_slot] && !WARN_ON(hdmi_slot >= 8))
719 hdmi_slot++; /* skip zero slots */
720
721 hdmi_channel_mapping[ca][i] = (i << 4) | hdmi_slot++;
722 }
723 /* fill the rest of the slots with ALSA channel 0xf */
724 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++)
725 if (!ch_alloc->speakers[7 - hdmi_slot])
726 hdmi_channel_mapping[ca][i++] = (0xf << 4) | hdmi_slot;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800727 }
728
Wang Xingchao433968d2012-09-06 10:02:37 +0800729 if (non_pcm) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300730 for (i = 0; i < ch_alloc->channels; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300731 non_pcm_mapping[i] = (i << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800732 for (; i < 8; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300733 non_pcm_mapping[i] = (0xf << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800734 }
735
Wu Fengguang079d88c2010-03-08 10:44:23 +0800736 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300737 int slotsetup = non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i];
738 int hdmi_slot = slotsetup & 0x0f;
739 int channel = (slotsetup & 0xf0) >> 4;
740 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot, channel);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800741 if (err) {
Wu Fengguang2abbf432010-03-08 10:45:38 +0800742 snd_printdd(KERN_NOTICE
743 "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800744 break;
745 }
746 }
Wu Fengguang079d88c2010-03-08 10:44:23 +0800747}
748
Takashi Iwaid45e6882012-07-31 11:36:00 +0200749struct channel_map_table {
750 unsigned char map; /* ALSA API channel map position */
Takashi Iwaid45e6882012-07-31 11:36:00 +0200751 int spk_mask; /* speaker position bit mask */
752};
753
754static struct channel_map_table map_tables[] = {
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300755 { SNDRV_CHMAP_FL, FL },
756 { SNDRV_CHMAP_FR, FR },
757 { SNDRV_CHMAP_RL, RL },
758 { SNDRV_CHMAP_RR, RR },
759 { SNDRV_CHMAP_LFE, LFE },
760 { SNDRV_CHMAP_FC, FC },
761 { SNDRV_CHMAP_RLC, RLC },
762 { SNDRV_CHMAP_RRC, RRC },
763 { SNDRV_CHMAP_RC, RC },
764 { SNDRV_CHMAP_FLC, FLC },
765 { SNDRV_CHMAP_FRC, FRC },
766 { SNDRV_CHMAP_FLH, FLH },
767 { SNDRV_CHMAP_FRH, FRH },
768 { SNDRV_CHMAP_FLW, FLW },
769 { SNDRV_CHMAP_FRW, FRW },
770 { SNDRV_CHMAP_TC, TC },
771 { SNDRV_CHMAP_FCH, FCH },
Takashi Iwaid45e6882012-07-31 11:36:00 +0200772 {} /* terminator */
773};
774
775/* from ALSA API channel position to speaker bit mask */
776static int to_spk_mask(unsigned char c)
777{
778 struct channel_map_table *t = map_tables;
779 for (; t->map; t++) {
780 if (t->map == c)
781 return t->spk_mask;
782 }
783 return 0;
784}
785
786/* from ALSA API channel position to CEA slot */
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300787static int to_cea_slot(int ordered_ca, unsigned char pos)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200788{
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300789 int mask = to_spk_mask(pos);
790 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200791
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300792 if (mask) {
793 for (i = 0; i < 8; i++) {
794 if (channel_allocations[ordered_ca].speakers[7 - i] == mask)
795 return i;
796 }
Takashi Iwaid45e6882012-07-31 11:36:00 +0200797 }
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300798
799 return -1;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200800}
801
802/* from speaker bit mask to ALSA API channel position */
803static int spk_to_chmap(int spk)
804{
805 struct channel_map_table *t = map_tables;
806 for (; t->map; t++) {
807 if (t->spk_mask == spk)
808 return t->map;
809 }
810 return 0;
811}
812
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300813/* from CEA slot to ALSA API channel position */
814static int from_cea_slot(int ordered_ca, unsigned char slot)
815{
816 int mask = channel_allocations[ordered_ca].speakers[7 - slot];
817
818 return spk_to_chmap(mask);
819}
820
Takashi Iwaid45e6882012-07-31 11:36:00 +0200821/* get the CA index corresponding to the given ALSA API channel map */
822static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
823{
824 int i, spks = 0, spk_mask = 0;
825
826 for (i = 0; i < chs; i++) {
827 int mask = to_spk_mask(map[i]);
828 if (mask) {
829 spk_mask |= mask;
830 spks++;
831 }
832 }
833
834 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
835 if ((chs == channel_allocations[i].channels ||
836 spks == channel_allocations[i].channels) &&
837 (spk_mask & channel_allocations[i].spk_mask) ==
838 channel_allocations[i].spk_mask)
839 return channel_allocations[i].ca_index;
840 }
841 return -1;
842}
843
844/* set up the channel slots for the given ALSA API channel map */
845static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
846 hda_nid_t pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300847 int chs, unsigned char *map,
848 int ca)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200849{
Anssi Hannula307229d2013-10-24 21:10:34 +0300850 struct hdmi_spec *spec = codec->spec;
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300851 int ordered_ca = get_channel_allocation_order(ca);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300852 int alsa_pos, hdmi_slot;
853 int assignments[8] = {[0 ... 7] = 0xf};
854
855 for (alsa_pos = 0; alsa_pos < chs; alsa_pos++) {
856
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300857 hdmi_slot = to_cea_slot(ordered_ca, map[alsa_pos]);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300858
859 if (hdmi_slot < 0)
860 continue; /* unassigned channel */
861
862 assignments[hdmi_slot] = alsa_pos;
863 }
864
865 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300866 int err;
Anssi Hannula11f7c522013-10-05 02:25:41 +0300867
Anssi Hannula307229d2013-10-24 21:10:34 +0300868 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot,
869 assignments[hdmi_slot]);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200870 if (err)
871 return -EINVAL;
872 }
873 return 0;
874}
875
876/* store ALSA API channel map from the current default map */
877static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
878{
879 int i;
Anssi Hannula56cac412013-10-05 02:25:38 +0300880 int ordered_ca = get_channel_allocation_order(ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200881 for (i = 0; i < 8; i++) {
Anssi Hannula56cac412013-10-05 02:25:38 +0300882 if (i < channel_allocations[ordered_ca].channels)
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300883 map[i] = from_cea_slot(ordered_ca, hdmi_channel_mapping[ca][i] & 0x0f);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200884 else
885 map[i] = 0;
886 }
887}
888
889static void hdmi_setup_channel_mapping(struct hda_codec *codec,
890 hda_nid_t pin_nid, bool non_pcm, int ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200891 int channels, unsigned char *map,
892 bool chmap_set)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200893{
Anssi Hannula20608732013-02-03 17:55:45 +0200894 if (!non_pcm && chmap_set) {
Takashi Iwaid45e6882012-07-31 11:36:00 +0200895 hdmi_manual_setup_channel_mapping(codec, pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300896 channels, map, ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200897 } else {
898 hdmi_std_setup_channel_mapping(codec, pin_nid, non_pcm, ca);
899 hdmi_setup_fake_chmap(map, ca);
900 }
Anssi Hannula980b2492013-10-05 02:25:44 +0300901
902 hdmi_debug_channel_mapping(codec, pin_nid);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200903}
Wu Fengguang079d88c2010-03-08 10:44:23 +0800904
Anssi Hannula307229d2013-10-24 21:10:34 +0300905static int hdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
906 int asp_slot, int channel)
907{
908 return snd_hda_codec_write(codec, pin_nid, 0,
909 AC_VERB_SET_HDMI_CHAN_SLOT,
910 (channel << 4) | asp_slot);
911}
912
913static int hdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
914 int asp_slot)
915{
916 return (snd_hda_codec_read(codec, pin_nid, 0,
917 AC_VERB_GET_HDMI_CHAN_SLOT,
918 asp_slot) & 0xf0) >> 4;
919}
920
Wu Fengguang079d88c2010-03-08 10:44:23 +0800921/*
922 * Audio InfoFrame routines
923 */
924
925/*
926 * Enable Audio InfoFrame Transmission
927 */
928static void hdmi_start_infoframe_trans(struct hda_codec *codec,
929 hda_nid_t pin_nid)
930{
931 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
932 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
933 AC_DIPXMIT_BEST);
934}
935
936/*
937 * Disable Audio InfoFrame Transmission
938 */
939static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
940 hda_nid_t pin_nid)
941{
942 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
943 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
944 AC_DIPXMIT_DISABLE);
945}
946
947static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
948{
949#ifdef CONFIG_SND_DEBUG_VERBOSE
950 int i;
951 int size;
952
953 size = snd_hdmi_get_eld_size(codec, pin_nid);
954 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
955
956 for (i = 0; i < 8; i++) {
957 size = snd_hda_codec_read(codec, pin_nid, 0,
958 AC_VERB_GET_HDMI_DIP_SIZE, i);
959 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
960 }
961#endif
962}
963
964static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
965{
966#ifdef BE_PARANOID
967 int i, j;
968 int size;
969 int pi, bi;
970 for (i = 0; i < 8; i++) {
971 size = snd_hda_codec_read(codec, pin_nid, 0,
972 AC_VERB_GET_HDMI_DIP_SIZE, i);
973 if (size == 0)
974 continue;
975
976 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
977 for (j = 1; j < 1000; j++) {
978 hdmi_write_dip_byte(codec, pin_nid, 0x0);
979 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
980 if (pi != i)
981 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
982 bi, pi, i);
983 if (bi == 0) /* byte index wrapped around */
984 break;
985 }
986 snd_printd(KERN_INFO
987 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
988 i, size, j);
989 }
990#endif
991}
992
Wu Fengguang53d7d692010-09-21 14:25:49 +0800993static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800994{
Wu Fengguang53d7d692010-09-21 14:25:49 +0800995 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800996 u8 sum = 0;
997 int i;
998
Wu Fengguang53d7d692010-09-21 14:25:49 +0800999 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001000
Wu Fengguang53d7d692010-09-21 14:25:49 +08001001 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001002 sum += bytes[i];
1003
Wu Fengguang53d7d692010-09-21 14:25:49 +08001004 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001005}
1006
1007static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
1008 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001009 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001010{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001011 int i;
1012
1013 hdmi_debug_dip_size(codec, pin_nid);
1014 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
1015
Wu Fengguang079d88c2010-03-08 10:44:23 +08001016 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001017 for (i = 0; i < size; i++)
1018 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001019}
1020
1021static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001022 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001023{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001024 u8 val;
1025 int i;
1026
1027 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
1028 != AC_DIPXMIT_BEST)
1029 return false;
1030
1031 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001032 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001033 val = snd_hda_codec_read(codec, pin_nid, 0,
1034 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001035 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +08001036 return false;
1037 }
1038
1039 return true;
1040}
1041
Anssi Hannula307229d2013-10-24 21:10:34 +03001042static void hdmi_pin_setup_infoframe(struct hda_codec *codec,
1043 hda_nid_t pin_nid,
1044 int ca, int active_channels,
1045 int conn_type)
1046{
1047 union audio_infoframe ai;
1048
1049 if (conn_type == 0) { /* HDMI */
1050 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
1051
1052 hdmi_ai->type = 0x84;
1053 hdmi_ai->ver = 0x01;
1054 hdmi_ai->len = 0x0a;
1055 hdmi_ai->CC02_CT47 = active_channels - 1;
1056 hdmi_ai->CA = ca;
1057 hdmi_checksum_audio_infoframe(hdmi_ai);
1058 } else if (conn_type == 1) { /* DisplayPort */
1059 struct dp_audio_infoframe *dp_ai = &ai.dp;
1060
1061 dp_ai->type = 0x84;
1062 dp_ai->len = 0x1b;
1063 dp_ai->ver = 0x11 << 2;
1064 dp_ai->CC02_CT47 = active_channels - 1;
1065 dp_ai->CA = ca;
1066 } else {
1067 snd_printd("HDMI: unknown connection type at pin %d\n",
1068 pin_nid);
1069 return;
1070 }
1071
1072 /*
1073 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
1074 * sizeof(*dp_ai) to avoid partial match/update problems when
1075 * the user switches between HDMI/DP monitors.
1076 */
1077 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
1078 sizeof(ai))) {
1079 snd_printdd("hdmi_pin_setup_infoframe: "
1080 "pin=%d channels=%d ca=0x%02x\n",
1081 pin_nid,
1082 active_channels, ca);
1083 hdmi_stop_infoframe_trans(codec, pin_nid);
1084 hdmi_fill_audio_infoframe(codec, pin_nid,
1085 ai.bytes, sizeof(ai));
1086 hdmi_start_infoframe_trans(codec, pin_nid);
1087 }
1088}
1089
Takashi Iwaib0540872013-09-02 12:33:02 +02001090static void hdmi_setup_audio_infoframe(struct hda_codec *codec,
1091 struct hdmi_spec_per_pin *per_pin,
1092 bool non_pcm)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001093{
Anssi Hannula307229d2013-10-24 21:10:34 +03001094 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001095 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwaib0540872013-09-02 12:33:02 +02001096 int channels = per_pin->channels;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001097 int active_channels;
Stephen Warren384a48d2011-06-01 11:14:21 -06001098 struct hdmi_eld *eld;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001099 int ca, ordered_ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001100
Takashi Iwaib0540872013-09-02 12:33:02 +02001101 if (!channels)
1102 return;
1103
Mengdong Lin58f7d282013-09-04 16:37:12 -04001104 if (is_haswell(codec))
1105 snd_hda_codec_write(codec, pin_nid, 0,
1106 AC_VERB_SET_AMP_GAIN_MUTE,
1107 AMP_OUT_UNMUTE);
1108
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001109 eld = &per_pin->sink_eld;
Stephen Warren384a48d2011-06-01 11:14:21 -06001110 if (!eld->monitor_present)
1111 return;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001112
Takashi Iwaid45e6882012-07-31 11:36:00 +02001113 if (!non_pcm && per_pin->chmap_set)
1114 ca = hdmi_manual_channel_allocation(channels, per_pin->chmap);
1115 else
1116 ca = hdmi_channel_allocation(eld, channels);
1117 if (ca < 0)
1118 ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001119
Anssi Hannula1df5a062013-10-05 02:25:40 +03001120 ordered_ca = get_channel_allocation_order(ca);
1121 active_channels = channel_allocations[ordered_ca].channels;
1122
1123 hdmi_set_channel_count(codec, per_pin->cvt_nid, active_channels);
1124
Stephen Warren384a48d2011-06-01 11:14:21 -06001125 /*
Anssi Hannula39edac72013-10-07 19:24:52 +03001126 * always configure channel mapping, it may have been changed by the
1127 * user in the meantime
1128 */
1129 hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
1130 channels, per_pin->chmap,
1131 per_pin->chmap_set);
1132
Anssi Hannula307229d2013-10-24 21:10:34 +03001133 spec->ops.pin_setup_infoframe(codec, pin_nid, ca, active_channels,
1134 eld->info.conn_type);
Wang Xingchao433968d2012-09-06 10:02:37 +08001135
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001136 per_pin->non_pcm = non_pcm;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001137}
1138
Wu Fengguang079d88c2010-03-08 10:44:23 +08001139/*
1140 * Unsolicited events
1141 */
1142
Wu Fengguangc6e84532011-11-18 16:59:32 -06001143static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +02001144
Wu Fengguang079d88c2010-03-08 10:44:23 +08001145static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
1146{
1147 struct hdmi_spec *spec = codec->spec;
Takashi Iwai3a938972011-10-28 01:16:55 +02001148 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1149 int pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001150 int pin_idx;
Takashi Iwai3a938972011-10-28 01:16:55 +02001151 struct hda_jack_tbl *jack;
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001152 int dev_entry = (res & AC_UNSOL_RES_DE) >> AC_UNSOL_RES_DE_SHIFT;
Takashi Iwai3a938972011-10-28 01:16:55 +02001153
1154 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
1155 if (!jack)
1156 return;
1157 pin_nid = jack->nid;
1158 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001159
Fengguang Wufae3d882012-04-10 17:00:35 +08001160 _snd_printd(SND_PR_VERBOSE,
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001161 "HDMI hot plug event: Codec=%d Pin=%d Device=%d Inactive=%d Presence_Detect=%d ELD_Valid=%d\n",
1162 codec->addr, pin_nid, dev_entry, !!(res & AC_UNSOL_RES_IA),
Fengguang Wufae3d882012-04-10 17:00:35 +08001163 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +08001164
Stephen Warren384a48d2011-06-01 11:14:21 -06001165 pin_idx = pin_nid_to_pin_index(spec, pin_nid);
1166 if (pin_idx < 0)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001167 return;
1168
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001169 hdmi_present_sense(get_pin(spec, pin_idx), 1);
Takashi Iwai01a61e12011-10-28 00:03:22 +02001170 snd_hda_jack_report_sync(codec);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001171}
1172
1173static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
1174{
1175 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1176 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1177 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
1178 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
1179
1180 printk(KERN_INFO
Takashi Iwaie9ea8e82012-06-21 11:41:05 +02001181 "HDMI CP event: CODEC=%d TAG=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001182 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +08001183 tag,
1184 subtag,
1185 cp_state,
1186 cp_ready);
1187
1188 /* TODO */
1189 if (cp_state)
1190 ;
1191 if (cp_ready)
1192 ;
1193}
1194
1195
1196static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
1197{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001198 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1199 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1200
Takashi Iwai3a938972011-10-28 01:16:55 +02001201 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001202 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
1203 return;
1204 }
1205
1206 if (subtag == 0)
1207 hdmi_intrinsic_event(codec, res);
1208 else
1209 hdmi_non_intrinsic_event(codec, res);
1210}
1211
Mengdong Lin58f7d282013-09-04 16:37:12 -04001212static void haswell_verify_D0(struct hda_codec *codec,
Wang Xingchao53b434f2013-06-18 10:41:53 +08001213 hda_nid_t cvt_nid, hda_nid_t nid)
David Henningsson83f26ad2013-04-10 12:26:07 +02001214{
Mengdong Lin58f7d282013-09-04 16:37:12 -04001215 int pwr;
David Henningsson83f26ad2013-04-10 12:26:07 +02001216
Wang Xingchao53b434f2013-06-18 10:41:53 +08001217 /* For Haswell, the converter 1/2 may keep in D3 state after bootup,
1218 * thus pins could only choose converter 0 for use. Make sure the
1219 * converters are in correct power state */
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001220 if (!snd_hda_check_power_state(codec, cvt_nid, AC_PWRST_D0))
Wang Xingchao53b434f2013-06-18 10:41:53 +08001221 snd_hda_codec_write(codec, cvt_nid, 0, AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1222
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001223 if (!snd_hda_check_power_state(codec, nid, AC_PWRST_D0)) {
David Henningsson83f26ad2013-04-10 12:26:07 +02001224 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
1225 AC_PWRST_D0);
1226 msleep(40);
1227 pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
1228 pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
1229 snd_printd("Haswell HDMI audio: Power for pin 0x%x is now D%d\n", nid, pwr);
1230 }
David Henningsson83f26ad2013-04-10 12:26:07 +02001231}
1232
Wu Fengguang079d88c2010-03-08 10:44:23 +08001233/*
1234 * Callbacks
1235 */
1236
Takashi Iwai92f10b32010-08-03 14:21:00 +02001237/* HBR should be Non-PCM, 8 channels */
1238#define is_hbr_format(format) \
1239 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
1240
Anssi Hannula307229d2013-10-24 21:10:34 +03001241static int hdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
1242 bool hbr)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001243{
Anssi Hannula307229d2013-10-24 21:10:34 +03001244 int pinctl, new_pinctl;
David Henningsson83f26ad2013-04-10 12:26:07 +02001245
Stephen Warren384a48d2011-06-01 11:14:21 -06001246 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
1247 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001248 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1249
1250 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Anssi Hannula307229d2013-10-24 21:10:34 +03001251 if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001252 new_pinctl |= AC_PINCTL_EPT_HBR;
1253 else
1254 new_pinctl |= AC_PINCTL_EPT_NATIVE;
1255
Anssi Hannula307229d2013-10-24 21:10:34 +03001256 snd_printdd("hdmi_pin_hbr_setup: "
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001257 "NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001258 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001259 pinctl == new_pinctl ? "" : "new-",
1260 new_pinctl);
1261
1262 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -06001263 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001264 AC_VERB_SET_PIN_WIDGET_CONTROL,
1265 new_pinctl);
Anssi Hannula307229d2013-10-24 21:10:34 +03001266 } else if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001267 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03001268
1269 return 0;
1270}
1271
1272static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
1273 hda_nid_t pin_nid, u32 stream_tag, int format)
1274{
1275 struct hdmi_spec *spec = codec->spec;
1276 int err;
1277
1278 if (is_haswell(codec))
1279 haswell_verify_D0(codec, cvt_nid, pin_nid);
1280
1281 err = spec->ops.pin_hbr_setup(codec, pin_nid, is_hbr_format(format));
1282
1283 if (err) {
1284 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
1285 return err;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001286 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001287
Stephen Warren384a48d2011-06-01 11:14:21 -06001288 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001289 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001290}
1291
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001292static int hdmi_choose_cvt(struct hda_codec *codec,
1293 int pin_idx, int *cvt_id, int *mux_id)
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001294{
1295 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001296 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001297 struct hdmi_spec_per_cvt *per_cvt = NULL;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001298 int cvt_idx, mux_idx = 0;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001299
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001300 per_pin = get_pin(spec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001301
Stephen Warren384a48d2011-06-01 11:14:21 -06001302 /* Dynamically assign converter to stream */
1303 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001304 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001305
1306 /* Must not already be assigned */
1307 if (per_cvt->assigned)
1308 continue;
1309 /* Must be in pin's mux's list of converters */
1310 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
1311 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
1312 break;
1313 /* Not in mux list */
1314 if (mux_idx == per_pin->num_mux_nids)
1315 continue;
1316 break;
1317 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001318
Stephen Warren384a48d2011-06-01 11:14:21 -06001319 /* No free converters */
1320 if (cvt_idx == spec->num_cvts)
1321 return -ENODEV;
1322
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001323 if (cvt_id)
1324 *cvt_id = cvt_idx;
1325 if (mux_id)
1326 *mux_id = mux_idx;
1327
1328 return 0;
1329}
1330
Mengdong Lin300016b2013-11-04 01:13:13 -05001331/* Intel HDMI workaround to fix audio routing issue:
1332 * For some Intel display codecs, pins share the same connection list.
1333 * So a conveter can be selected by multiple pins and playback on any of these
1334 * pins will generate sound on the external display, because audio flows from
1335 * the same converter to the display pipeline. Also muting one pin may make
1336 * other pins have no sound output.
1337 * So this function assures that an assigned converter for a pin is not selected
1338 * by any other pins.
1339 */
1340static void intel_not_share_assigned_cvt(struct hda_codec *codec,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001341 hda_nid_t pin_nid, int mux_idx)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001342{
1343 struct hdmi_spec *spec = codec->spec;
Mengdong Linf82d7d12013-09-21 20:34:45 -04001344 hda_nid_t nid, end_nid;
1345 int cvt_idx, curr;
1346 struct hdmi_spec_per_cvt *per_cvt;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001347
Mengdong Linf82d7d12013-09-21 20:34:45 -04001348 /* configure all pins, including "no physical connection" ones */
1349 end_nid = codec->start_nid + codec->num_nodes;
1350 for (nid = codec->start_nid; nid < end_nid; nid++) {
1351 unsigned int wid_caps = get_wcaps(codec, nid);
1352 unsigned int wid_type = get_wcaps_type(wid_caps);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001353
Mengdong Linf82d7d12013-09-21 20:34:45 -04001354 if (wid_type != AC_WID_PIN)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001355 continue;
1356
Mengdong Linf82d7d12013-09-21 20:34:45 -04001357 if (nid == pin_nid)
1358 continue;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001359
Mengdong Linf82d7d12013-09-21 20:34:45 -04001360 curr = snd_hda_codec_read(codec, nid, 0,
1361 AC_VERB_GET_CONNECT_SEL, 0);
1362 if (curr != mux_idx)
1363 continue;
1364
1365 /* choose an unassigned converter. The conveters in the
1366 * connection list are in the same order as in the codec.
1367 */
1368 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
1369 per_cvt = get_cvt(spec, cvt_idx);
1370 if (!per_cvt->assigned) {
1371 snd_printdd("choose cvt %d for pin nid %d\n",
1372 cvt_idx, nid);
1373 snd_hda_codec_write_cache(codec, nid, 0,
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001374 AC_VERB_SET_CONNECT_SEL,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001375 cvt_idx);
1376 break;
1377 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001378 }
1379 }
1380}
1381
1382/*
1383 * HDA PCM callbacks
1384 */
1385static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
1386 struct hda_codec *codec,
1387 struct snd_pcm_substream *substream)
1388{
1389 struct hdmi_spec *spec = codec->spec;
1390 struct snd_pcm_runtime *runtime = substream->runtime;
1391 int pin_idx, cvt_idx, mux_idx = 0;
1392 struct hdmi_spec_per_pin *per_pin;
1393 struct hdmi_eld *eld;
1394 struct hdmi_spec_per_cvt *per_cvt = NULL;
1395 int err;
1396
1397 /* Validate hinfo */
1398 pin_idx = hinfo_to_pin_index(spec, hinfo);
1399 if (snd_BUG_ON(pin_idx < 0))
1400 return -EINVAL;
1401 per_pin = get_pin(spec, pin_idx);
1402 eld = &per_pin->sink_eld;
1403
1404 err = hdmi_choose_cvt(codec, pin_idx, &cvt_idx, &mux_idx);
1405 if (err < 0)
1406 return err;
1407
1408 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001409 /* Claim converter */
1410 per_cvt->assigned = 1;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001411 per_pin->cvt_nid = per_cvt->cvt_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001412 hinfo->nid = per_cvt->cvt_nid;
1413
Takashi Iwaibddee962013-06-18 16:14:22 +02001414 snd_hda_codec_write_cache(codec, per_pin->pin_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -06001415 AC_VERB_SET_CONNECT_SEL,
1416 mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001417
1418 /* configure unused pins to choose other converters */
Mengdong Lin02383852013-10-31 18:31:51 -04001419 if (is_haswell(codec) || is_valleyview(codec))
Mengdong Lin300016b2013-11-04 01:13:13 -05001420 intel_not_share_assigned_cvt(codec, per_pin->pin_nid, mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001421
Stephen Warren384a48d2011-06-01 11:14:21 -06001422 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001423
Stephen Warren2def8172011-06-01 11:14:20 -06001424 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -06001425 hinfo->channels_min = per_cvt->channels_min;
1426 hinfo->channels_max = per_cvt->channels_max;
1427 hinfo->rates = per_cvt->rates;
1428 hinfo->formats = per_cvt->formats;
1429 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -06001430
Stephen Warren384a48d2011-06-01 11:14:21 -06001431 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -06001432 if (!static_hdmi_pcm && eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001433 snd_hdmi_eld_update_pcm_info(&eld->info, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001434 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001435 !hinfo->rates || !hinfo->formats) {
1436 per_cvt->assigned = 0;
1437 hinfo->nid = 0;
1438 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001439 return -ENODEV;
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001440 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001441 }
Stephen Warren2def8172011-06-01 11:14:20 -06001442
1443 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +01001444 runtime->hw.channels_min = hinfo->channels_min;
1445 runtime->hw.channels_max = hinfo->channels_max;
1446 runtime->hw.formats = hinfo->formats;
1447 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +01001448
1449 snd_pcm_hw_constraint_step(substream->runtime, 0,
1450 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001451 return 0;
1452}
1453
1454/*
Wu Fengguang079d88c2010-03-08 10:44:23 +08001455 * HDA/HDMI auto parsing
1456 */
Stephen Warren384a48d2011-06-01 11:14:21 -06001457static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001458{
1459 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001460 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001461 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001462
1463 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
1464 snd_printk(KERN_WARNING
1465 "HDMI: pin %d wcaps %#x "
1466 "does not support connection list\n",
1467 pin_nid, get_wcaps(codec, pin_nid));
1468 return -EINVAL;
1469 }
1470
Stephen Warren384a48d2011-06-01 11:14:21 -06001471 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
1472 per_pin->mux_nids,
1473 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001474
1475 return 0;
1476}
1477
Wu Fengguangc6e84532011-11-18 16:59:32 -06001478static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001479{
Wu Fengguang744626d2011-11-16 16:29:47 +08001480 struct hda_codec *codec = per_pin->codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001481 struct hdmi_spec *spec = codec->spec;
1482 struct hdmi_eld *eld = &spec->temp_eld;
1483 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +08001484 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -06001485 /*
1486 * Always execute a GetPinSense verb here, even when called from
1487 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
1488 * response's PD bit is not the real PD value, but indicates that
1489 * the real PD value changed. An older version of the HD-audio
1490 * specification worked this way. Hence, we just ignore the data in
1491 * the unsolicited response to avoid custom WARs.
1492 */
Wu Fengguang079d88c2010-03-08 10:44:23 +08001493 int present = snd_hda_pin_sense(codec, pin_nid);
David Henningsson4bd038f2013-02-19 16:11:25 +01001494 bool update_eld = false;
1495 bool eld_changed = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001496
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001497 mutex_lock(&per_pin->lock);
David Henningsson4bd038f2013-02-19 16:11:25 +01001498 pin_eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
1499 if (pin_eld->monitor_present)
1500 eld->eld_valid = !!(present & AC_PINSENSE_ELDV);
1501 else
1502 eld->eld_valid = false;
Stephen Warren5d44f922011-05-24 17:11:17 -06001503
Fengguang Wufae3d882012-04-10 17:00:35 +08001504 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -06001505 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Mengdong Lin10250912013-03-28 05:21:28 -04001506 codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -06001507
David Henningsson4bd038f2013-02-19 16:11:25 +01001508 if (eld->eld_valid) {
Anssi Hannula307229d2013-10-24 21:10:34 +03001509 if (spec->ops.pin_get_eld(codec, pin_nid, eld->eld_buffer,
David Henningsson1613d6b2013-02-19 16:11:24 +01001510 &eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001511 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001512 else {
1513 memset(&eld->info, 0, sizeof(struct parsed_hdmi_eld));
1514 if (snd_hdmi_parse_eld(&eld->info, eld->eld_buffer,
1515 eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001516 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001517 }
1518
David Henningsson4bd038f2013-02-19 16:11:25 +01001519 if (eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001520 snd_hdmi_show_eld(&eld->info);
David Henningsson4bd038f2013-02-19 16:11:25 +01001521 update_eld = true;
David Henningsson1613d6b2013-02-19 16:11:24 +01001522 }
Wu Fengguangc6e84532011-11-18 16:59:32 -06001523 else if (repoll) {
Wu Fengguang744626d2011-11-16 16:29:47 +08001524 queue_delayed_work(codec->bus->workq,
1525 &per_pin->work,
1526 msecs_to_jiffies(300));
Takashi Iwaicbbaa602013-10-17 18:03:24 +02001527 goto unlock;
Wu Fengguang744626d2011-11-16 16:29:47 +08001528 }
1529 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001530
David Henningsson92c69e72013-02-19 16:11:26 +01001531 if (pin_eld->eld_valid && !eld->eld_valid) {
David Henningsson4bd038f2013-02-19 16:11:25 +01001532 update_eld = true;
David Henningsson92c69e72013-02-19 16:11:26 +01001533 eld_changed = true;
1534 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001535 if (update_eld) {
Takashi Iwaib0540872013-09-02 12:33:02 +02001536 bool old_eld_valid = pin_eld->eld_valid;
David Henningsson4bd038f2013-02-19 16:11:25 +01001537 pin_eld->eld_valid = eld->eld_valid;
David Henningsson92c69e72013-02-19 16:11:26 +01001538 eld_changed = pin_eld->eld_size != eld->eld_size ||
1539 memcmp(pin_eld->eld_buffer, eld->eld_buffer,
David Henningsson4bd038f2013-02-19 16:11:25 +01001540 eld->eld_size) != 0;
1541 if (eld_changed)
1542 memcpy(pin_eld->eld_buffer, eld->eld_buffer,
1543 eld->eld_size);
1544 pin_eld->eld_size = eld->eld_size;
1545 pin_eld->info = eld->info;
Takashi Iwaib0540872013-09-02 12:33:02 +02001546
Anssi Hannula73420172013-10-25 01:45:18 +03001547 /*
1548 * Re-setup pin and infoframe. This is needed e.g. when
1549 * - sink is first plugged-in (infoframe is not set up if !monitor_present)
1550 * - transcoder can change during stream playback on Haswell
Takashi Iwaib0540872013-09-02 12:33:02 +02001551 */
Anssi Hannula73420172013-10-25 01:45:18 +03001552 if (eld->eld_valid && !old_eld_valid && per_pin->setup)
Takashi Iwaib0540872013-09-02 12:33:02 +02001553 hdmi_setup_audio_infoframe(codec, per_pin,
1554 per_pin->non_pcm);
David Henningsson4bd038f2013-02-19 16:11:25 +01001555 }
David Henningsson92c69e72013-02-19 16:11:26 +01001556
1557 if (eld_changed)
1558 snd_ctl_notify(codec->bus->card,
1559 SNDRV_CTL_EVENT_MASK_VALUE | SNDRV_CTL_EVENT_MASK_INFO,
1560 &per_pin->eld_ctl->id);
Takashi Iwaicbbaa602013-10-17 18:03:24 +02001561 unlock:
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001562 mutex_unlock(&per_pin->lock);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001563}
1564
Wu Fengguang744626d2011-11-16 16:29:47 +08001565static void hdmi_repoll_eld(struct work_struct *work)
1566{
1567 struct hdmi_spec_per_pin *per_pin =
1568 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1569
Wu Fengguangc6e84532011-11-18 16:59:32 -06001570 if (per_pin->repoll_count++ > 6)
1571 per_pin->repoll_count = 0;
1572
1573 hdmi_present_sense(per_pin, per_pin->repoll_count);
Wu Fengguang744626d2011-11-16 16:29:47 +08001574}
1575
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001576static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
1577 hda_nid_t nid);
1578
Wu Fengguang079d88c2010-03-08 10:44:23 +08001579static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1580{
1581 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001582 unsigned int caps, config;
1583 int pin_idx;
1584 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001585 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001586
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001587 caps = snd_hda_query_pin_caps(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001588 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1589 return 0;
1590
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001591 config = snd_hda_codec_get_pincfg(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001592 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1593 return 0;
1594
Mengdong Linfb87fa32013-09-04 16:36:57 -04001595 if (is_haswell(codec))
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001596 intel_haswell_fixup_connect_list(codec, pin_nid);
1597
Stephen Warren384a48d2011-06-01 11:14:21 -06001598 pin_idx = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001599 per_pin = snd_array_new(&spec->pins);
1600 if (!per_pin)
1601 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001602
1603 per_pin->pin_nid = pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001604 per_pin->non_pcm = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001605
Stephen Warren384a48d2011-06-01 11:14:21 -06001606 err = hdmi_read_pin_conn(codec, pin_idx);
1607 if (err < 0)
1608 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001609
Wu Fengguang079d88c2010-03-08 10:44:23 +08001610 spec->num_pins++;
1611
Stephen Warren384a48d2011-06-01 11:14:21 -06001612 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001613}
1614
Stephen Warren384a48d2011-06-01 11:14:21 -06001615static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001616{
1617 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001618 struct hdmi_spec_per_cvt *per_cvt;
1619 unsigned int chans;
1620 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001621
Stephen Warren384a48d2011-06-01 11:14:21 -06001622 chans = get_wcaps(codec, cvt_nid);
1623 chans = get_wcaps_channels(chans);
1624
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001625 per_cvt = snd_array_new(&spec->cvts);
1626 if (!per_cvt)
1627 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001628
1629 per_cvt->cvt_nid = cvt_nid;
1630 per_cvt->channels_min = 2;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001631 if (chans <= 16) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001632 per_cvt->channels_max = chans;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001633 if (chans > spec->channels_max)
1634 spec->channels_max = chans;
1635 }
Stephen Warren384a48d2011-06-01 11:14:21 -06001636
1637 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1638 &per_cvt->rates,
1639 &per_cvt->formats,
1640 &per_cvt->maxbps);
1641 if (err < 0)
1642 return err;
1643
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001644 if (spec->num_cvts < ARRAY_SIZE(spec->cvt_nids))
1645 spec->cvt_nids[spec->num_cvts] = cvt_nid;
1646 spec->num_cvts++;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001647
1648 return 0;
1649}
1650
1651static int hdmi_parse_codec(struct hda_codec *codec)
1652{
1653 hda_nid_t nid;
1654 int i, nodes;
1655
1656 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
1657 if (!nid || nodes < 0) {
1658 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
1659 return -EINVAL;
1660 }
1661
1662 for (i = 0; i < nodes; i++, nid++) {
1663 unsigned int caps;
1664 unsigned int type;
1665
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001666 caps = get_wcaps(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001667 type = get_wcaps_type(caps);
1668
1669 if (!(caps & AC_WCAP_DIGITAL))
1670 continue;
1671
1672 switch (type) {
1673 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001674 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001675 break;
1676 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001677 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001678 break;
1679 }
1680 }
1681
David Henningssonc9adeef2012-11-07 09:22:33 +01001682#ifdef CONFIG_PM
1683 /* We're seeing some problems with unsolicited hot plug events on
1684 * PantherPoint after S3, if this is not enabled */
1685 if (codec->vendor_id == 0x80862806)
1686 codec->bus->power_keep_link_on = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001687 /*
1688 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1689 * can be lost and presence sense verb will become inaccurate if the
1690 * HDA link is powered off at hot plug or hw initialization time.
1691 */
David Henningssonc9adeef2012-11-07 09:22:33 +01001692 else if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
Wu Fengguang079d88c2010-03-08 10:44:23 +08001693 AC_PWRST_EPSS))
1694 codec->bus->power_keep_link_on = 1;
1695#endif
1696
1697 return 0;
1698}
1699
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001700/*
1701 */
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001702static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
1703{
1704 struct hda_spdif_out *spdif;
1705 bool non_pcm;
1706
1707 mutex_lock(&codec->spdif_mutex);
1708 spdif = snd_hda_spdif_out_of_nid(codec, cvt_nid);
1709 non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO);
1710 mutex_unlock(&codec->spdif_mutex);
1711 return non_pcm;
1712}
1713
1714
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001715/*
1716 * HDMI callbacks
1717 */
1718
1719static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1720 struct hda_codec *codec,
1721 unsigned int stream_tag,
1722 unsigned int format,
1723 struct snd_pcm_substream *substream)
1724{
Stephen Warren384a48d2011-06-01 11:14:21 -06001725 hda_nid_t cvt_nid = hinfo->nid;
1726 struct hdmi_spec *spec = codec->spec;
1727 int pin_idx = hinfo_to_pin_index(spec, hinfo);
Takashi Iwaib0540872013-09-02 12:33:02 +02001728 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
1729 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001730 bool non_pcm;
1731
1732 non_pcm = check_non_pcm_per_cvt(codec, cvt_nid);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001733 mutex_lock(&per_pin->lock);
Takashi Iwaib0540872013-09-02 12:33:02 +02001734 per_pin->channels = substream->runtime->channels;
1735 per_pin->setup = true;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001736
Takashi Iwaib0540872013-09-02 12:33:02 +02001737 hdmi_setup_audio_infoframe(codec, per_pin, non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001738 mutex_unlock(&per_pin->lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06001739
Anssi Hannula307229d2013-10-24 21:10:34 +03001740 return spec->ops.setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001741}
1742
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001743static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1744 struct hda_codec *codec,
1745 struct snd_pcm_substream *substream)
1746{
1747 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
1748 return 0;
1749}
1750
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001751static int hdmi_pcm_close(struct hda_pcm_stream *hinfo,
1752 struct hda_codec *codec,
1753 struct snd_pcm_substream *substream)
Stephen Warren384a48d2011-06-01 11:14:21 -06001754{
1755 struct hdmi_spec *spec = codec->spec;
1756 int cvt_idx, pin_idx;
1757 struct hdmi_spec_per_cvt *per_cvt;
1758 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001759
Stephen Warren384a48d2011-06-01 11:14:21 -06001760 if (hinfo->nid) {
1761 cvt_idx = cvt_nid_to_cvt_index(spec, hinfo->nid);
1762 if (snd_BUG_ON(cvt_idx < 0))
1763 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001764 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001765
1766 snd_BUG_ON(!per_cvt->assigned);
1767 per_cvt->assigned = 0;
1768 hinfo->nid = 0;
1769
1770 pin_idx = hinfo_to_pin_index(spec, hinfo);
1771 if (snd_BUG_ON(pin_idx < 0))
1772 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001773 per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001774
Stephen Warren384a48d2011-06-01 11:14:21 -06001775 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaicbbaa602013-10-17 18:03:24 +02001776
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001777 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001778 per_pin->chmap_set = false;
1779 memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
Takashi Iwaib0540872013-09-02 12:33:02 +02001780
1781 per_pin->setup = false;
1782 per_pin->channels = 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001783 mutex_unlock(&per_pin->lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06001784 }
Takashi Iwaid45e6882012-07-31 11:36:00 +02001785
Stephen Warren384a48d2011-06-01 11:14:21 -06001786 return 0;
1787}
1788
1789static const struct hda_pcm_ops generic_ops = {
1790 .open = hdmi_pcm_open,
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001791 .close = hdmi_pcm_close,
Stephen Warren384a48d2011-06-01 11:14:21 -06001792 .prepare = generic_hdmi_playback_pcm_prepare,
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001793 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001794};
1795
Takashi Iwaid45e6882012-07-31 11:36:00 +02001796/*
1797 * ALSA API channel-map control callbacks
1798 */
1799static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
1800 struct snd_ctl_elem_info *uinfo)
1801{
1802 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1803 struct hda_codec *codec = info->private_data;
1804 struct hdmi_spec *spec = codec->spec;
1805 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1806 uinfo->count = spec->channels_max;
1807 uinfo->value.integer.min = 0;
1808 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
1809 return 0;
1810}
1811
Anssi Hannula307229d2013-10-24 21:10:34 +03001812static int hdmi_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
1813 int channels)
1814{
1815 /* If the speaker allocation matches the channel count, it is OK.*/
1816 if (cap->channels != channels)
1817 return -1;
1818
1819 /* all channels are remappable freely */
1820 return SNDRV_CTL_TLVT_CHMAP_VAR;
1821}
1822
1823static void hdmi_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
1824 unsigned int *chmap, int channels)
1825{
1826 int count = 0;
1827 int c;
1828
1829 for (c = 7; c >= 0; c--) {
1830 int spk = cap->speakers[c];
1831 if (!spk)
1832 continue;
1833
1834 chmap[count++] = spk_to_chmap(spk);
1835 }
1836
1837 WARN_ON(count != channels);
1838}
1839
Takashi Iwaid45e6882012-07-31 11:36:00 +02001840static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1841 unsigned int size, unsigned int __user *tlv)
1842{
1843 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1844 struct hda_codec *codec = info->private_data;
1845 struct hdmi_spec *spec = codec->spec;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001846 unsigned int __user *dst;
1847 int chs, count = 0;
1848
1849 if (size < 8)
1850 return -ENOMEM;
1851 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
1852 return -EFAULT;
1853 size -= 8;
1854 dst = tlv + 2;
Takashi Iwai498dab32012-09-10 16:08:40 +02001855 for (chs = 2; chs <= spec->channels_max; chs++) {
Anssi Hannula307229d2013-10-24 21:10:34 +03001856 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001857 struct cea_channel_speaker_allocation *cap;
1858 cap = channel_allocations;
1859 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
1860 int chs_bytes = chs * 4;
Anssi Hannula307229d2013-10-24 21:10:34 +03001861 int type = spec->ops.chmap_cea_alloc_validate_get_type(cap, chs);
1862 unsigned int tlv_chmap[8];
1863
1864 if (type < 0)
Takashi Iwaid45e6882012-07-31 11:36:00 +02001865 continue;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001866 if (size < 8)
1867 return -ENOMEM;
Anssi Hannula307229d2013-10-24 21:10:34 +03001868 if (put_user(type, dst) ||
Takashi Iwaid45e6882012-07-31 11:36:00 +02001869 put_user(chs_bytes, dst + 1))
1870 return -EFAULT;
1871 dst += 2;
1872 size -= 8;
1873 count += 8;
1874 if (size < chs_bytes)
1875 return -ENOMEM;
1876 size -= chs_bytes;
1877 count += chs_bytes;
Anssi Hannula307229d2013-10-24 21:10:34 +03001878 spec->ops.cea_alloc_to_tlv_chmap(cap, tlv_chmap, chs);
1879 if (copy_to_user(dst, tlv_chmap, chs_bytes))
1880 return -EFAULT;
1881 dst += chs;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001882 }
1883 }
1884 if (put_user(count, tlv + 1))
1885 return -EFAULT;
1886 return 0;
1887}
1888
1889static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
1890 struct snd_ctl_elem_value *ucontrol)
1891{
1892 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1893 struct hda_codec *codec = info->private_data;
1894 struct hdmi_spec *spec = codec->spec;
1895 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001896 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001897 int i;
1898
1899 for (i = 0; i < ARRAY_SIZE(per_pin->chmap); i++)
1900 ucontrol->value.integer.value[i] = per_pin->chmap[i];
1901 return 0;
1902}
1903
1904static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
1905 struct snd_ctl_elem_value *ucontrol)
1906{
1907 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1908 struct hda_codec *codec = info->private_data;
1909 struct hdmi_spec *spec = codec->spec;
1910 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001911 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001912 unsigned int ctl_idx;
1913 struct snd_pcm_substream *substream;
1914 unsigned char chmap[8];
Anssi Hannula307229d2013-10-24 21:10:34 +03001915 int i, err, ca, prepared = 0;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001916
1917 ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1918 substream = snd_pcm_chmap_substream(info, ctl_idx);
1919 if (!substream || !substream->runtime)
Takashi Iwai6f54c362013-01-15 14:44:41 +01001920 return 0; /* just for avoiding error from alsactl restore */
Takashi Iwaid45e6882012-07-31 11:36:00 +02001921 switch (substream->runtime->status->state) {
1922 case SNDRV_PCM_STATE_OPEN:
1923 case SNDRV_PCM_STATE_SETUP:
1924 break;
1925 case SNDRV_PCM_STATE_PREPARED:
1926 prepared = 1;
1927 break;
1928 default:
1929 return -EBUSY;
1930 }
1931 memset(chmap, 0, sizeof(chmap));
1932 for (i = 0; i < ARRAY_SIZE(chmap); i++)
1933 chmap[i] = ucontrol->value.integer.value[i];
1934 if (!memcmp(chmap, per_pin->chmap, sizeof(chmap)))
1935 return 0;
1936 ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
1937 if (ca < 0)
1938 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03001939 if (spec->ops.chmap_validate) {
1940 err = spec->ops.chmap_validate(ca, ARRAY_SIZE(chmap), chmap);
1941 if (err)
1942 return err;
1943 }
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001944 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001945 per_pin->chmap_set = true;
1946 memcpy(per_pin->chmap, chmap, sizeof(chmap));
1947 if (prepared)
Takashi Iwaib0540872013-09-02 12:33:02 +02001948 hdmi_setup_audio_infoframe(codec, per_pin, per_pin->non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001949 mutex_unlock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001950
1951 return 0;
1952}
1953
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001954static int generic_hdmi_build_pcms(struct hda_codec *codec)
1955{
1956 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001957 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001958
Stephen Warren384a48d2011-06-01 11:14:21 -06001959 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1960 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001961 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001962 struct hdmi_spec_per_pin *per_pin;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001963
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001964 per_pin = get_pin(spec, pin_idx);
1965 sprintf(per_pin->pcm_name, "HDMI %d", pin_idx);
1966 info = snd_array_new(&spec->pcm_rec);
1967 if (!info)
1968 return -ENOMEM;
1969 info->name = per_pin->pcm_name;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001970 info->pcm_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001971 info->own_chmap = true;
Stephen Warren384a48d2011-06-01 11:14:21 -06001972
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001973 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06001974 pstr->substreams = 1;
1975 pstr->ops = generic_ops;
1976 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001977 }
1978
Stephen Warren384a48d2011-06-01 11:14:21 -06001979 codec->num_pcms = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001980 codec->pcm_info = spec->pcm_rec.list;
Stephen Warren384a48d2011-06-01 11:14:21 -06001981
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001982 return 0;
1983}
1984
David Henningsson0b6c49b2011-08-23 16:56:03 +02001985static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
1986{
Takashi Iwai31ef2252011-12-01 17:41:36 +01001987 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02001988 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001989 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
1990 int pcmdev = get_pcm_rec(spec, pin_idx)->device;
David Henningsson0b6c49b2011-08-23 16:56:03 +02001991
Takashi Iwai31ef2252011-12-01 17:41:36 +01001992 if (pcmdev > 0)
1993 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
David Henningsson30efd8d2013-02-22 10:16:28 +01001994 if (!is_jack_detectable(codec, per_pin->pin_nid))
1995 strncat(hdmi_str, " Phantom",
1996 sizeof(hdmi_str) - strlen(hdmi_str) - 1);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001997
Takashi Iwai31ef2252011-12-01 17:41:36 +01001998 return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001999}
2000
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002001static int generic_hdmi_build_controls(struct hda_codec *codec)
2002{
2003 struct hdmi_spec *spec = codec->spec;
2004 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06002005 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002006
Stephen Warren384a48d2011-06-01 11:14:21 -06002007 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002008 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
David Henningsson0b6c49b2011-08-23 16:56:03 +02002009
2010 err = generic_hdmi_build_jack(codec, pin_idx);
2011 if (err < 0)
2012 return err;
2013
Takashi Iwaidcda5802012-10-12 17:24:51 +02002014 err = snd_hda_create_dig_out_ctls(codec,
2015 per_pin->pin_nid,
2016 per_pin->mux_nids[0],
2017 HDA_PCM_TYPE_HDMI);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002018 if (err < 0)
2019 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06002020 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002021
2022 /* add control for ELD Bytes */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002023 err = hdmi_create_eld_ctl(codec, pin_idx,
2024 get_pcm_rec(spec, pin_idx)->device);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002025
2026 if (err < 0)
2027 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01002028
Takashi Iwai82b1d732011-12-20 15:53:07 +01002029 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002030 }
2031
Takashi Iwaid45e6882012-07-31 11:36:00 +02002032 /* add channel maps */
2033 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2034 struct snd_pcm_chmap *chmap;
2035 struct snd_kcontrol *kctl;
2036 int i;
Takashi Iwai2ca320e2013-08-22 09:55:36 +02002037
2038 if (!codec->pcm_info[pin_idx].pcm)
2039 break;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002040 err = snd_pcm_add_chmap_ctls(codec->pcm_info[pin_idx].pcm,
2041 SNDRV_PCM_STREAM_PLAYBACK,
2042 NULL, 0, pin_idx, &chmap);
2043 if (err < 0)
2044 return err;
2045 /* override handlers */
2046 chmap->private_data = codec;
2047 kctl = chmap->kctl;
2048 for (i = 0; i < kctl->count; i++)
2049 kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
2050 kctl->info = hdmi_chmap_ctl_info;
2051 kctl->get = hdmi_chmap_ctl_get;
2052 kctl->put = hdmi_chmap_ctl_put;
2053 kctl->tlv.c = hdmi_chmap_ctl_tlv;
2054 }
2055
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002056 return 0;
2057}
2058
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002059static int generic_hdmi_init_per_pins(struct hda_codec *codec)
2060{
2061 struct hdmi_spec *spec = codec->spec;
2062 int pin_idx;
2063
2064 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002065 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002066
2067 per_pin->codec = codec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002068 mutex_init(&per_pin->lock);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002069 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002070 eld_proc_new(per_pin, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002071 }
2072 return 0;
2073}
2074
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002075static int generic_hdmi_init(struct hda_codec *codec)
2076{
2077 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002078 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002079
Stephen Warren384a48d2011-06-01 11:14:21 -06002080 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002081 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002082 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06002083
2084 hdmi_init_pin(codec, pin_nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +02002085 snd_hda_jack_detect_enable(codec, pin_nid, pin_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002086 }
2087 return 0;
2088}
2089
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002090static void hdmi_array_init(struct hdmi_spec *spec, int nums)
2091{
2092 snd_array_init(&spec->pins, sizeof(struct hdmi_spec_per_pin), nums);
2093 snd_array_init(&spec->cvts, sizeof(struct hdmi_spec_per_cvt), nums);
2094 snd_array_init(&spec->pcm_rec, sizeof(struct hda_pcm), nums);
2095}
2096
2097static void hdmi_array_free(struct hdmi_spec *spec)
2098{
2099 snd_array_free(&spec->pins);
2100 snd_array_free(&spec->cvts);
2101 snd_array_free(&spec->pcm_rec);
2102}
2103
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002104static void generic_hdmi_free(struct hda_codec *codec)
2105{
2106 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002107 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002108
Stephen Warren384a48d2011-06-01 11:14:21 -06002109 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002110 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002111
Wu Fengguang744626d2011-11-16 16:29:47 +08002112 cancel_delayed_work(&per_pin->work);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002113 eld_proc_free(per_pin);
Stephen Warren384a48d2011-06-01 11:14:21 -06002114 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002115
Wu Fengguang744626d2011-11-16 16:29:47 +08002116 flush_workqueue(codec->bus->workq);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002117 hdmi_array_free(spec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002118 kfree(spec);
2119}
2120
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002121#ifdef CONFIG_PM
2122static int generic_hdmi_resume(struct hda_codec *codec)
2123{
2124 struct hdmi_spec *spec = codec->spec;
2125 int pin_idx;
2126
2127 generic_hdmi_init(codec);
2128 snd_hda_codec_resume_amp(codec);
2129 snd_hda_codec_resume_cache(codec);
2130
2131 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2132 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
2133 hdmi_present_sense(per_pin, 1);
2134 }
2135 return 0;
2136}
2137#endif
2138
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002139static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002140 .init = generic_hdmi_init,
2141 .free = generic_hdmi_free,
2142 .build_pcms = generic_hdmi_build_pcms,
2143 .build_controls = generic_hdmi_build_controls,
2144 .unsol_event = hdmi_unsol_event,
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002145#ifdef CONFIG_PM
2146 .resume = generic_hdmi_resume,
2147#endif
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002148};
2149
Anssi Hannula307229d2013-10-24 21:10:34 +03002150static const struct hdmi_ops generic_standard_hdmi_ops = {
2151 .pin_get_eld = snd_hdmi_get_eld,
2152 .pin_get_slot_channel = hdmi_pin_get_slot_channel,
2153 .pin_set_slot_channel = hdmi_pin_set_slot_channel,
2154 .pin_setup_infoframe = hdmi_pin_setup_infoframe,
2155 .pin_hbr_setup = hdmi_pin_hbr_setup,
2156 .setup_stream = hdmi_setup_stream,
2157 .chmap_cea_alloc_validate_get_type = hdmi_chmap_cea_alloc_validate_get_type,
2158 .cea_alloc_to_tlv_chmap = hdmi_cea_alloc_to_tlv_chmap,
2159};
2160
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002161
2162static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
2163 hda_nid_t nid)
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002164{
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002165 struct hdmi_spec *spec = codec->spec;
2166 hda_nid_t conns[4];
2167 int nconns;
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002168
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002169 nconns = snd_hda_get_connections(codec, nid, conns, ARRAY_SIZE(conns));
2170 if (nconns == spec->num_cvts &&
2171 !memcmp(conns, spec->cvt_nids, spec->num_cvts * sizeof(hda_nid_t)))
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002172 return;
2173
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002174 /* override pins connection list */
2175 snd_printdd("hdmi: haswell: override pin connection 0x%x\n", nid);
2176 snd_hda_override_conn_list(codec, nid, spec->num_cvts, spec->cvt_nids);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002177}
2178
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002179#define INTEL_VENDOR_NID 0x08
2180#define INTEL_GET_VENDOR_VERB 0xf81
2181#define INTEL_SET_VENDOR_VERB 0x781
2182#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
2183#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
2184
2185static void intel_haswell_enable_all_pins(struct hda_codec *codec,
Takashi Iwai17df3f52013-05-08 08:09:34 +02002186 bool update_tree)
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002187{
2188 unsigned int vendor_param;
2189
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002190 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2191 INTEL_GET_VENDOR_VERB, 0);
2192 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
2193 return;
2194
2195 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
2196 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2197 INTEL_SET_VENDOR_VERB, vendor_param);
2198 if (vendor_param == -1)
2199 return;
2200
Takashi Iwai17df3f52013-05-08 08:09:34 +02002201 if (update_tree)
2202 snd_hda_codec_update_widgets(codec);
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002203}
2204
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002205static void intel_haswell_fixup_enable_dp12(struct hda_codec *codec)
2206{
2207 unsigned int vendor_param;
2208
2209 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2210 INTEL_GET_VENDOR_VERB, 0);
2211 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
2212 return;
2213
2214 /* enable DP1.2 mode */
2215 vendor_param |= INTEL_EN_DP12;
2216 snd_hda_codec_write_cache(codec, INTEL_VENDOR_NID, 0,
2217 INTEL_SET_VENDOR_VERB, vendor_param);
2218}
2219
Takashi Iwai17df3f52013-05-08 08:09:34 +02002220/* Haswell needs to re-issue the vendor-specific verbs before turning to D0.
2221 * Otherwise you may get severe h/w communication errors.
2222 */
2223static void haswell_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2224 unsigned int power_state)
2225{
2226 if (power_state == AC_PWRST_D0) {
2227 intel_haswell_enable_all_pins(codec, false);
2228 intel_haswell_fixup_enable_dp12(codec);
2229 }
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002230
Takashi Iwai17df3f52013-05-08 08:09:34 +02002231 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, power_state);
2232 snd_hda_codec_set_power_to_all(codec, fg, power_state);
2233}
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002234
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002235static int patch_generic_hdmi(struct hda_codec *codec)
2236{
2237 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002238
2239 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2240 if (spec == NULL)
2241 return -ENOMEM;
2242
Anssi Hannula307229d2013-10-24 21:10:34 +03002243 spec->ops = generic_standard_hdmi_ops;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002244 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002245 hdmi_array_init(spec, 4);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002246
Mengdong Linfb87fa32013-09-04 16:36:57 -04002247 if (is_haswell(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002248 intel_haswell_enable_all_pins(codec, true);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002249 intel_haswell_fixup_enable_dp12(codec);
Takashi Iwai17df3f52013-05-08 08:09:34 +02002250 }
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002251
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002252 if (hdmi_parse_codec(codec) < 0) {
2253 codec->spec = NULL;
2254 kfree(spec);
2255 return -EINVAL;
2256 }
2257 codec->patch_ops = generic_hdmi_patch_ops;
Mengdong Linfb87fa32013-09-04 16:36:57 -04002258 if (is_haswell(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002259 codec->patch_ops.set_power_state = haswell_set_power_state;
Mengdong Lin5dc989b2013-08-26 21:35:41 -04002260 codec->dp_mst = true;
2261 }
Takashi Iwai17df3f52013-05-08 08:09:34 +02002262
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002263 generic_hdmi_init_per_pins(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002264
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002265 init_channel_allocations();
2266
2267 return 0;
2268}
2269
2270/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06002271 * Shared non-generic implementations
2272 */
2273
2274static int simple_playback_build_pcms(struct hda_codec *codec)
2275{
2276 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002277 struct hda_pcm *info;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002278 unsigned int chans;
2279 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002280 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002281
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002282 per_cvt = get_cvt(spec, 0);
2283 chans = get_wcaps(codec, per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002284 chans = get_wcaps_channels(chans);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002285
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002286 info = snd_array_new(&spec->pcm_rec);
2287 if (!info)
2288 return -ENOMEM;
2289 info->name = get_pin(spec, 0)->pcm_name;
2290 sprintf(info->name, "HDMI 0");
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002291 info->pcm_type = HDA_PCM_TYPE_HDMI;
2292 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
2293 *pstr = spec->pcm_playback;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002294 pstr->nid = per_cvt->cvt_nid;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002295 if (pstr->channels_max <= 2 && chans && chans <= 16)
2296 pstr->channels_max = chans;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002297
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002298 codec->num_pcms = 1;
2299 codec->pcm_info = info;
2300
Stephen Warren3aaf8982011-06-01 11:14:19 -06002301 return 0;
2302}
2303
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002304/* unsolicited event for jack sensing */
2305static void simple_hdmi_unsol_event(struct hda_codec *codec,
2306 unsigned int res)
2307{
Takashi Iwai9dd8cf12012-06-21 10:43:15 +02002308 snd_hda_jack_set_dirty_all(codec);
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002309 snd_hda_jack_report_sync(codec);
2310}
2311
2312/* generic_hdmi_build_jack can be used for simple_hdmi, too,
2313 * as long as spec->pins[] is set correctly
2314 */
2315#define simple_hdmi_build_jack generic_hdmi_build_jack
2316
Stephen Warren3aaf8982011-06-01 11:14:19 -06002317static int simple_playback_build_controls(struct hda_codec *codec)
2318{
2319 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002320 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002321 int err;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002322
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002323 per_cvt = get_cvt(spec, 0);
2324 err = snd_hda_create_spdif_out_ctls(codec, per_cvt->cvt_nid,
2325 per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002326 if (err < 0)
2327 return err;
2328 return simple_hdmi_build_jack(codec, 0);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002329}
2330
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002331static int simple_playback_init(struct hda_codec *codec)
2332{
2333 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002334 struct hdmi_spec_per_pin *per_pin = get_pin(spec, 0);
2335 hda_nid_t pin = per_pin->pin_nid;
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002336
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002337 snd_hda_codec_write(codec, pin, 0,
2338 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2339 /* some codecs require to unmute the pin */
2340 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
2341 snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2342 AMP_OUT_UNMUTE);
2343 snd_hda_jack_detect_enable(codec, pin, pin);
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002344 return 0;
2345}
2346
Stephen Warren3aaf8982011-06-01 11:14:19 -06002347static void simple_playback_free(struct hda_codec *codec)
2348{
2349 struct hdmi_spec *spec = codec->spec;
2350
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002351 hdmi_array_free(spec);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002352 kfree(spec);
2353}
2354
2355/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002356 * Nvidia specific implementations
2357 */
2358
2359#define Nv_VERB_SET_Channel_Allocation 0xF79
2360#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
2361#define Nv_VERB_SET_Audio_Protection_On 0xF98
2362#define Nv_VERB_SET_Audio_Protection_Off 0xF99
2363
2364#define nvhdmi_master_con_nid_7x 0x04
2365#define nvhdmi_master_pin_nid_7x 0x05
2366
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002367static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002368 /*front, rear, clfe, rear_surr */
2369 0x6, 0x8, 0xa, 0xc,
2370};
2371
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002372static const struct hda_verb nvhdmi_basic_init_7x_2ch[] = {
2373 /* set audio protect on */
2374 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2375 /* enable digital output on pin widget */
2376 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2377 {} /* terminator */
2378};
2379
2380static const struct hda_verb nvhdmi_basic_init_7x_8ch[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002381 /* set audio protect on */
2382 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2383 /* enable digital output on pin widget */
2384 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2385 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2386 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2387 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2388 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2389 {} /* terminator */
2390};
2391
2392#ifdef LIMITED_RATE_FMT_SUPPORT
2393/* support only the safe format and rate */
2394#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
2395#define SUPPORTED_MAXBPS 16
2396#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
2397#else
2398/* support all rates and formats */
2399#define SUPPORTED_RATES \
2400 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
2401 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
2402 SNDRV_PCM_RATE_192000)
2403#define SUPPORTED_MAXBPS 24
2404#define SUPPORTED_FORMATS \
2405 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
2406#endif
2407
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002408static int nvhdmi_7x_init_2ch(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002409{
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002410 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_2ch);
2411 return 0;
2412}
2413
2414static int nvhdmi_7x_init_8ch(struct hda_codec *codec)
2415{
2416 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_8ch);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002417 return 0;
2418}
2419
Nitin Daga393004b2011-01-10 21:49:31 +05302420static unsigned int channels_2_6_8[] = {
2421 2, 6, 8
2422};
2423
2424static unsigned int channels_2_8[] = {
2425 2, 8
2426};
2427
2428static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
2429 .count = ARRAY_SIZE(channels_2_6_8),
2430 .list = channels_2_6_8,
2431 .mask = 0,
2432};
2433
2434static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
2435 .count = ARRAY_SIZE(channels_2_8),
2436 .list = channels_2_8,
2437 .mask = 0,
2438};
2439
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002440static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
2441 struct hda_codec *codec,
2442 struct snd_pcm_substream *substream)
2443{
2444 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05302445 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
2446
2447 switch (codec->preset->id) {
2448 case 0x10de0002:
2449 case 0x10de0003:
2450 case 0x10de0005:
2451 case 0x10de0006:
2452 hw_constraints_channels = &hw_constraints_2_8_channels;
2453 break;
2454 case 0x10de0007:
2455 hw_constraints_channels = &hw_constraints_2_6_8_channels;
2456 break;
2457 default:
2458 break;
2459 }
2460
2461 if (hw_constraints_channels != NULL) {
2462 snd_pcm_hw_constraint_list(substream->runtime, 0,
2463 SNDRV_PCM_HW_PARAM_CHANNELS,
2464 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01002465 } else {
2466 snd_pcm_hw_constraint_step(substream->runtime, 0,
2467 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05302468 }
2469
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002470 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2471}
2472
2473static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
2474 struct hda_codec *codec,
2475 struct snd_pcm_substream *substream)
2476{
2477 struct hdmi_spec *spec = codec->spec;
2478 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2479}
2480
2481static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2482 struct hda_codec *codec,
2483 unsigned int stream_tag,
2484 unsigned int format,
2485 struct snd_pcm_substream *substream)
2486{
2487 struct hdmi_spec *spec = codec->spec;
2488 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2489 stream_tag, format, substream);
2490}
2491
Takashi Iwaid0b12522012-06-15 14:34:42 +02002492static const struct hda_pcm_stream simple_pcm_playback = {
2493 .substreams = 1,
2494 .channels_min = 2,
2495 .channels_max = 2,
2496 .ops = {
2497 .open = simple_playback_pcm_open,
2498 .close = simple_playback_pcm_close,
2499 .prepare = simple_playback_pcm_prepare
2500 },
2501};
2502
2503static const struct hda_codec_ops simple_hdmi_patch_ops = {
2504 .build_controls = simple_playback_build_controls,
2505 .build_pcms = simple_playback_build_pcms,
2506 .init = simple_playback_init,
2507 .free = simple_playback_free,
Takashi Iwai250e41a2012-06-15 14:40:21 +02002508 .unsol_event = simple_hdmi_unsol_event,
Takashi Iwaid0b12522012-06-15 14:34:42 +02002509};
2510
2511static int patch_simple_hdmi(struct hda_codec *codec,
2512 hda_nid_t cvt_nid, hda_nid_t pin_nid)
2513{
2514 struct hdmi_spec *spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002515 struct hdmi_spec_per_cvt *per_cvt;
2516 struct hdmi_spec_per_pin *per_pin;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002517
2518 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2519 if (!spec)
2520 return -ENOMEM;
2521
2522 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002523 hdmi_array_init(spec, 1);
Takashi Iwaid0b12522012-06-15 14:34:42 +02002524
2525 spec->multiout.num_dacs = 0; /* no analog */
2526 spec->multiout.max_channels = 2;
2527 spec->multiout.dig_out_nid = cvt_nid;
2528 spec->num_cvts = 1;
2529 spec->num_pins = 1;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002530 per_pin = snd_array_new(&spec->pins);
2531 per_cvt = snd_array_new(&spec->cvts);
2532 if (!per_pin || !per_cvt) {
2533 simple_playback_free(codec);
2534 return -ENOMEM;
2535 }
2536 per_cvt->cvt_nid = cvt_nid;
2537 per_pin->pin_nid = pin_nid;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002538 spec->pcm_playback = simple_pcm_playback;
2539
2540 codec->patch_ops = simple_hdmi_patch_ops;
2541
2542 return 0;
2543}
2544
Aaron Plattner1f348522011-04-06 17:19:04 -07002545static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
2546 int channels)
2547{
2548 unsigned int chanmask;
2549 int chan = channels ? (channels - 1) : 1;
2550
2551 switch (channels) {
2552 default:
2553 case 0:
2554 case 2:
2555 chanmask = 0x00;
2556 break;
2557 case 4:
2558 chanmask = 0x08;
2559 break;
2560 case 6:
2561 chanmask = 0x0b;
2562 break;
2563 case 8:
2564 chanmask = 0x13;
2565 break;
2566 }
2567
2568 /* Set the audio infoframe channel allocation and checksum fields. The
2569 * channel count is computed implicitly by the hardware. */
2570 snd_hda_codec_write(codec, 0x1, 0,
2571 Nv_VERB_SET_Channel_Allocation, chanmask);
2572
2573 snd_hda_codec_write(codec, 0x1, 0,
2574 Nv_VERB_SET_Info_Frame_Checksum,
2575 (0x71 - chan - chanmask));
2576}
2577
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002578static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
2579 struct hda_codec *codec,
2580 struct snd_pcm_substream *substream)
2581{
2582 struct hdmi_spec *spec = codec->spec;
2583 int i;
2584
2585 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
2586 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
2587 for (i = 0; i < 4; i++) {
2588 /* set the stream id */
2589 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2590 AC_VERB_SET_CHANNEL_STREAMID, 0);
2591 /* set the stream format */
2592 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2593 AC_VERB_SET_STREAM_FORMAT, 0);
2594 }
2595
Aaron Plattner1f348522011-04-06 17:19:04 -07002596 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
2597 * streams are disabled. */
2598 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2599
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002600 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2601}
2602
2603static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
2604 struct hda_codec *codec,
2605 unsigned int stream_tag,
2606 unsigned int format,
2607 struct snd_pcm_substream *substream)
2608{
2609 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01002610 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002611 int i;
Stephen Warren7c9359762011-06-01 11:14:17 -06002612 struct hdmi_spec *spec = codec->spec;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002613 struct hda_spdif_out *spdif;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002614 struct hdmi_spec_per_cvt *per_cvt;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002615
2616 mutex_lock(&codec->spdif_mutex);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002617 per_cvt = get_cvt(spec, 0);
2618 spdif = snd_hda_spdif_out_of_nid(codec, per_cvt->cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002619
2620 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002621
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002622 dataDCC2 = 0x2;
2623
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002624 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c9359762011-06-01 11:14:17 -06002625 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002626 snd_hda_codec_write(codec,
2627 nvhdmi_master_con_nid_7x,
2628 0,
2629 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c9359762011-06-01 11:14:17 -06002630 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002631
2632 /* set the stream id */
2633 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2634 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
2635
2636 /* set the stream format */
2637 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2638 AC_VERB_SET_STREAM_FORMAT, format);
2639
2640 /* turn on again (if needed) */
2641 /* enable and set the channel status audio/data flag */
Stephen Warren7c9359762011-06-01 11:14:17 -06002642 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002643 snd_hda_codec_write(codec,
2644 nvhdmi_master_con_nid_7x,
2645 0,
2646 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c9359762011-06-01 11:14:17 -06002647 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002648 snd_hda_codec_write(codec,
2649 nvhdmi_master_con_nid_7x,
2650 0,
2651 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2652 }
2653
2654 for (i = 0; i < 4; i++) {
2655 if (chs == 2)
2656 channel_id = 0;
2657 else
2658 channel_id = i * 2;
2659
2660 /* turn off SPDIF once;
2661 *otherwise the IEC958 bits won't be updated
2662 */
2663 if (codec->spdif_status_reset &&
Stephen Warren7c9359762011-06-01 11:14:17 -06002664 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002665 snd_hda_codec_write(codec,
2666 nvhdmi_con_nids_7x[i],
2667 0,
2668 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c9359762011-06-01 11:14:17 -06002669 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002670 /* set the stream id */
2671 snd_hda_codec_write(codec,
2672 nvhdmi_con_nids_7x[i],
2673 0,
2674 AC_VERB_SET_CHANNEL_STREAMID,
2675 (stream_tag << 4) | channel_id);
2676 /* set the stream format */
2677 snd_hda_codec_write(codec,
2678 nvhdmi_con_nids_7x[i],
2679 0,
2680 AC_VERB_SET_STREAM_FORMAT,
2681 format);
2682 /* turn on again (if needed) */
2683 /* enable and set the channel status audio/data flag */
2684 if (codec->spdif_status_reset &&
Stephen Warren7c9359762011-06-01 11:14:17 -06002685 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002686 snd_hda_codec_write(codec,
2687 nvhdmi_con_nids_7x[i],
2688 0,
2689 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c9359762011-06-01 11:14:17 -06002690 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002691 snd_hda_codec_write(codec,
2692 nvhdmi_con_nids_7x[i],
2693 0,
2694 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2695 }
2696 }
2697
Aaron Plattner1f348522011-04-06 17:19:04 -07002698 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002699
2700 mutex_unlock(&codec->spdif_mutex);
2701 return 0;
2702}
2703
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002704static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002705 .substreams = 1,
2706 .channels_min = 2,
2707 .channels_max = 8,
2708 .nid = nvhdmi_master_con_nid_7x,
2709 .rates = SUPPORTED_RATES,
2710 .maxbps = SUPPORTED_MAXBPS,
2711 .formats = SUPPORTED_FORMATS,
2712 .ops = {
2713 .open = simple_playback_pcm_open,
2714 .close = nvhdmi_8ch_7x_pcm_close,
2715 .prepare = nvhdmi_8ch_7x_pcm_prepare
2716 },
2717};
2718
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002719static int patch_nvhdmi_2ch(struct hda_codec *codec)
2720{
2721 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002722 int err = patch_simple_hdmi(codec, nvhdmi_master_con_nid_7x,
2723 nvhdmi_master_pin_nid_7x);
2724 if (err < 0)
2725 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002726
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002727 codec->patch_ops.init = nvhdmi_7x_init_2ch;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002728 /* override the PCM rates, etc, as the codec doesn't give full list */
2729 spec = codec->spec;
2730 spec->pcm_playback.rates = SUPPORTED_RATES;
2731 spec->pcm_playback.maxbps = SUPPORTED_MAXBPS;
2732 spec->pcm_playback.formats = SUPPORTED_FORMATS;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002733 return 0;
2734}
2735
Takashi Iwai53775b02012-08-01 12:17:41 +02002736static int nvhdmi_7x_8ch_build_pcms(struct hda_codec *codec)
2737{
2738 struct hdmi_spec *spec = codec->spec;
2739 int err = simple_playback_build_pcms(codec);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002740 if (!err) {
2741 struct hda_pcm *info = get_pcm_rec(spec, 0);
2742 info->own_chmap = true;
2743 }
Takashi Iwai53775b02012-08-01 12:17:41 +02002744 return err;
2745}
2746
2747static int nvhdmi_7x_8ch_build_controls(struct hda_codec *codec)
2748{
2749 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002750 struct hda_pcm *info;
Takashi Iwai53775b02012-08-01 12:17:41 +02002751 struct snd_pcm_chmap *chmap;
2752 int err;
2753
2754 err = simple_playback_build_controls(codec);
2755 if (err < 0)
2756 return err;
2757
2758 /* add channel maps */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002759 info = get_pcm_rec(spec, 0);
2760 err = snd_pcm_add_chmap_ctls(info->pcm,
Takashi Iwai53775b02012-08-01 12:17:41 +02002761 SNDRV_PCM_STREAM_PLAYBACK,
2762 snd_pcm_alt_chmaps, 8, 0, &chmap);
2763 if (err < 0)
2764 return err;
2765 switch (codec->preset->id) {
2766 case 0x10de0002:
2767 case 0x10de0003:
2768 case 0x10de0005:
2769 case 0x10de0006:
2770 chmap->channel_mask = (1U << 2) | (1U << 8);
2771 break;
2772 case 0x10de0007:
2773 chmap->channel_mask = (1U << 2) | (1U << 6) | (1U << 8);
2774 }
2775 return 0;
2776}
2777
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002778static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
2779{
2780 struct hdmi_spec *spec;
2781 int err = patch_nvhdmi_2ch(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002782 if (err < 0)
2783 return err;
2784 spec = codec->spec;
2785 spec->multiout.max_channels = 8;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002786 spec->pcm_playback = nvhdmi_pcm_playback_8ch_7x;
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002787 codec->patch_ops.init = nvhdmi_7x_init_8ch;
Takashi Iwai53775b02012-08-01 12:17:41 +02002788 codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms;
2789 codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls;
Aaron Plattner1f348522011-04-06 17:19:04 -07002790
2791 /* Initialize the audio infoframe channel mask and checksum to something
2792 * valid */
2793 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2794
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002795 return 0;
2796}
2797
2798/*
Anssi Hannula611885b2013-11-03 17:15:00 +02002799 * NVIDIA codecs ignore ASP mapping for 2ch - confirmed on:
2800 * - 0x10de0015
2801 * - 0x10de0040
2802 */
2803static int nvhdmi_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
2804 int channels)
2805{
2806 if (cap->ca_index == 0x00 && channels == 2)
2807 return SNDRV_CTL_TLVT_CHMAP_FIXED;
2808
2809 return hdmi_chmap_cea_alloc_validate_get_type(cap, channels);
2810}
2811
2812static int nvhdmi_chmap_validate(int ca, int chs, unsigned char *map)
2813{
2814 if (ca == 0x00 && (map[0] != SNDRV_CHMAP_FL || map[1] != SNDRV_CHMAP_FR))
2815 return -EINVAL;
2816
2817 return 0;
2818}
2819
2820static int patch_nvhdmi(struct hda_codec *codec)
2821{
2822 struct hdmi_spec *spec;
2823 int err;
2824
2825 err = patch_generic_hdmi(codec);
2826 if (err)
2827 return err;
2828
2829 spec = codec->spec;
2830
2831 spec->ops.chmap_cea_alloc_validate_get_type =
2832 nvhdmi_chmap_cea_alloc_validate_get_type;
2833 spec->ops.chmap_validate = nvhdmi_chmap_validate;
2834
2835 return 0;
2836}
2837
2838/*
Anssi Hannula5a6135842013-10-24 21:10:35 +03002839 * ATI/AMD-specific implementations
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002840 */
2841
Anssi Hannula5a6135842013-10-24 21:10:35 +03002842#define is_amdhdmi_rev3_or_later(codec) \
2843 ((codec)->vendor_id == 0x1002aa01 && ((codec)->revision_id & 0xff00) >= 0x0300)
2844#define has_amd_full_remap_support(codec) is_amdhdmi_rev3_or_later(codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002845
Anssi Hannula5a6135842013-10-24 21:10:35 +03002846/* ATI/AMD specific HDA pin verbs, see the AMD HDA Verbs specification */
2847#define ATI_VERB_SET_CHANNEL_ALLOCATION 0x771
2848#define ATI_VERB_SET_DOWNMIX_INFO 0x772
2849#define ATI_VERB_SET_MULTICHANNEL_01 0x777
2850#define ATI_VERB_SET_MULTICHANNEL_23 0x778
2851#define ATI_VERB_SET_MULTICHANNEL_45 0x779
2852#define ATI_VERB_SET_MULTICHANNEL_67 0x77a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03002853#define ATI_VERB_SET_HBR_CONTROL 0x77c
Anssi Hannula5a6135842013-10-24 21:10:35 +03002854#define ATI_VERB_SET_MULTICHANNEL_1 0x785
2855#define ATI_VERB_SET_MULTICHANNEL_3 0x786
2856#define ATI_VERB_SET_MULTICHANNEL_5 0x787
2857#define ATI_VERB_SET_MULTICHANNEL_7 0x788
2858#define ATI_VERB_SET_MULTICHANNEL_MODE 0x789
2859#define ATI_VERB_GET_CHANNEL_ALLOCATION 0xf71
2860#define ATI_VERB_GET_DOWNMIX_INFO 0xf72
2861#define ATI_VERB_GET_MULTICHANNEL_01 0xf77
2862#define ATI_VERB_GET_MULTICHANNEL_23 0xf78
2863#define ATI_VERB_GET_MULTICHANNEL_45 0xf79
2864#define ATI_VERB_GET_MULTICHANNEL_67 0xf7a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03002865#define ATI_VERB_GET_HBR_CONTROL 0xf7c
Anssi Hannula5a6135842013-10-24 21:10:35 +03002866#define ATI_VERB_GET_MULTICHANNEL_1 0xf85
2867#define ATI_VERB_GET_MULTICHANNEL_3 0xf86
2868#define ATI_VERB_GET_MULTICHANNEL_5 0xf87
2869#define ATI_VERB_GET_MULTICHANNEL_7 0xf88
2870#define ATI_VERB_GET_MULTICHANNEL_MODE 0xf89
2871
Anssi Hannula84d69e72013-10-24 21:10:38 +03002872/* AMD specific HDA cvt verbs */
2873#define ATI_VERB_SET_RAMP_RATE 0x770
2874#define ATI_VERB_GET_RAMP_RATE 0xf70
2875
Anssi Hannula5a6135842013-10-24 21:10:35 +03002876#define ATI_OUT_ENABLE 0x1
2877
2878#define ATI_MULTICHANNEL_MODE_PAIRED 0
2879#define ATI_MULTICHANNEL_MODE_SINGLE 1
2880
Anssi Hannula461cf6b2013-10-24 21:10:37 +03002881#define ATI_HBR_CAPABLE 0x01
2882#define ATI_HBR_ENABLE 0x10
2883
Anssi Hannula89250f82013-10-24 21:10:36 +03002884static int atihdmi_pin_get_eld(struct hda_codec *codec, hda_nid_t nid,
2885 unsigned char *buf, int *eld_size)
2886{
2887 /* call hda_eld.c ATI/AMD-specific function */
2888 return snd_hdmi_get_eld_ati(codec, nid, buf, eld_size,
2889 is_amdhdmi_rev3_or_later(codec));
2890}
2891
Anssi Hannula5a6135842013-10-24 21:10:35 +03002892static void atihdmi_pin_setup_infoframe(struct hda_codec *codec, hda_nid_t pin_nid, int ca,
2893 int active_channels, int conn_type)
2894{
2895 snd_hda_codec_write(codec, pin_nid, 0, ATI_VERB_SET_CHANNEL_ALLOCATION, ca);
2896}
2897
2898static int atihdmi_paired_swap_fc_lfe(int pos)
2899{
2900 /*
2901 * ATI/AMD have automatic FC/LFE swap built-in
2902 * when in pairwise mapping mode.
2903 */
2904
2905 switch (pos) {
2906 /* see channel_allocations[].speakers[] */
2907 case 2: return 3;
2908 case 3: return 2;
2909 default: break;
2910 }
2911
2912 return pos;
2913}
2914
2915static int atihdmi_paired_chmap_validate(int ca, int chs, unsigned char *map)
2916{
2917 struct cea_channel_speaker_allocation *cap;
2918 int i, j;
2919
2920 /* check that only channel pairs need to be remapped on old pre-rev3 ATI/AMD */
2921
2922 cap = &channel_allocations[get_channel_allocation_order(ca)];
2923 for (i = 0; i < chs; ++i) {
2924 int mask = to_spk_mask(map[i]);
2925 bool ok = false;
2926 bool companion_ok = false;
2927
2928 if (!mask)
2929 continue;
2930
2931 for (j = 0 + i % 2; j < 8; j += 2) {
2932 int chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j);
2933 if (cap->speakers[chan_idx] == mask) {
2934 /* channel is in a supported position */
2935 ok = true;
2936
2937 if (i % 2 == 0 && i + 1 < chs) {
2938 /* even channel, check the odd companion */
2939 int comp_chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j + 1);
2940 int comp_mask_req = to_spk_mask(map[i+1]);
2941 int comp_mask_act = cap->speakers[comp_chan_idx];
2942
2943 if (comp_mask_req == comp_mask_act)
2944 companion_ok = true;
2945 else
2946 return -EINVAL;
2947 }
2948 break;
2949 }
2950 }
2951
2952 if (!ok)
2953 return -EINVAL;
2954
2955 if (companion_ok)
2956 i++; /* companion channel already checked */
2957 }
2958
2959 return 0;
2960}
2961
2962static int atihdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
2963 int hdmi_slot, int stream_channel)
2964{
2965 int verb;
2966 int ati_channel_setup = 0;
2967
2968 if (hdmi_slot > 7)
2969 return -EINVAL;
2970
2971 if (!has_amd_full_remap_support(codec)) {
2972 hdmi_slot = atihdmi_paired_swap_fc_lfe(hdmi_slot);
2973
2974 /* In case this is an odd slot but without stream channel, do not
2975 * disable the slot since the corresponding even slot could have a
2976 * channel. In case neither have a channel, the slot pair will be
2977 * disabled when this function is called for the even slot. */
2978 if (hdmi_slot % 2 != 0 && stream_channel == 0xf)
2979 return 0;
2980
2981 hdmi_slot -= hdmi_slot % 2;
2982
2983 if (stream_channel != 0xf)
2984 stream_channel -= stream_channel % 2;
2985 }
2986
2987 verb = ATI_VERB_SET_MULTICHANNEL_01 + hdmi_slot/2 + (hdmi_slot % 2) * 0x00e;
2988
2989 /* ati_channel_setup format: [7..4] = stream_channel_id, [1] = mute, [0] = enable */
2990
2991 if (stream_channel != 0xf)
2992 ati_channel_setup = (stream_channel << 4) | ATI_OUT_ENABLE;
2993
2994 return snd_hda_codec_write(codec, pin_nid, 0, verb, ati_channel_setup);
2995}
2996
2997static int atihdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
2998 int asp_slot)
2999{
3000 bool was_odd = false;
3001 int ati_asp_slot = asp_slot;
3002 int verb;
3003 int ati_channel_setup;
3004
3005 if (asp_slot > 7)
3006 return -EINVAL;
3007
3008 if (!has_amd_full_remap_support(codec)) {
3009 ati_asp_slot = atihdmi_paired_swap_fc_lfe(asp_slot);
3010 if (ati_asp_slot % 2 != 0) {
3011 ati_asp_slot -= 1;
3012 was_odd = true;
3013 }
3014 }
3015
3016 verb = ATI_VERB_GET_MULTICHANNEL_01 + ati_asp_slot/2 + (ati_asp_slot % 2) * 0x00e;
3017
3018 ati_channel_setup = snd_hda_codec_read(codec, pin_nid, 0, verb, 0);
3019
3020 if (!(ati_channel_setup & ATI_OUT_ENABLE))
3021 return 0xf;
3022
3023 return ((ati_channel_setup & 0xf0) >> 4) + !!was_odd;
3024}
3025
3026static int atihdmi_paired_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
3027 int channels)
3028{
3029 int c;
3030
3031 /*
3032 * Pre-rev3 ATI/AMD codecs operate in a paired channel mode, so
3033 * we need to take that into account (a single channel may take 2
3034 * channel slots if we need to carry a silent channel next to it).
3035 * On Rev3+ AMD codecs this function is not used.
3036 */
3037 int chanpairs = 0;
3038
3039 /* We only produce even-numbered channel count TLVs */
3040 if ((channels % 2) != 0)
3041 return -1;
3042
3043 for (c = 0; c < 7; c += 2) {
3044 if (cap->speakers[c] || cap->speakers[c+1])
3045 chanpairs++;
3046 }
3047
3048 if (chanpairs * 2 != channels)
3049 return -1;
3050
3051 return SNDRV_CTL_TLVT_CHMAP_PAIRED;
3052}
3053
3054static void atihdmi_paired_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
3055 unsigned int *chmap, int channels)
3056{
3057 /* produce paired maps for pre-rev3 ATI/AMD codecs */
3058 int count = 0;
3059 int c;
3060
3061 for (c = 7; c >= 0; c--) {
3062 int chan = 7 - atihdmi_paired_swap_fc_lfe(7 - c);
3063 int spk = cap->speakers[chan];
3064 if (!spk) {
3065 /* add N/A channel if the companion channel is occupied */
3066 if (cap->speakers[chan + (chan % 2 ? -1 : 1)])
3067 chmap[count++] = SNDRV_CHMAP_NA;
3068
3069 continue;
3070 }
3071
3072 chmap[count++] = spk_to_chmap(spk);
3073 }
3074
3075 WARN_ON(count != channels);
3076}
3077
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003078static int atihdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
3079 bool hbr)
3080{
3081 int hbr_ctl, hbr_ctl_new;
3082
3083 hbr_ctl = snd_hda_codec_read(codec, pin_nid, 0, ATI_VERB_GET_HBR_CONTROL, 0);
3084 if (hbr_ctl & ATI_HBR_CAPABLE) {
3085 if (hbr)
3086 hbr_ctl_new = hbr_ctl | ATI_HBR_ENABLE;
3087 else
3088 hbr_ctl_new = hbr_ctl & ~ATI_HBR_ENABLE;
3089
3090 snd_printdd("atihdmi_pin_hbr_setup: "
3091 "NID=0x%x, %shbr-ctl=0x%x\n",
3092 pin_nid,
3093 hbr_ctl == hbr_ctl_new ? "" : "new-",
3094 hbr_ctl_new);
3095
3096 if (hbr_ctl != hbr_ctl_new)
3097 snd_hda_codec_write(codec, pin_nid, 0,
3098 ATI_VERB_SET_HBR_CONTROL,
3099 hbr_ctl_new);
3100
3101 } else if (hbr)
3102 return -EINVAL;
3103
3104 return 0;
3105}
3106
Anssi Hannula84d69e72013-10-24 21:10:38 +03003107static int atihdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
3108 hda_nid_t pin_nid, u32 stream_tag, int format)
3109{
3110
3111 if (is_amdhdmi_rev3_or_later(codec)) {
3112 int ramp_rate = 180; /* default as per AMD spec */
3113 /* disable ramp-up/down for non-pcm as per AMD spec */
3114 if (format & AC_FMT_TYPE_NON_PCM)
3115 ramp_rate = 0;
3116
3117 snd_hda_codec_write(codec, cvt_nid, 0, ATI_VERB_SET_RAMP_RATE, ramp_rate);
3118 }
3119
3120 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
3121}
3122
3123
Anssi Hannula5a6135842013-10-24 21:10:35 +03003124static int atihdmi_init(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003125{
3126 struct hdmi_spec *spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003127 int pin_idx, err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003128
Anssi Hannula5a6135842013-10-24 21:10:35 +03003129 err = generic_hdmi_init(codec);
3130
3131 if (err)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003132 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003133
3134 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
3135 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
3136
3137 /* make sure downmix information in infoframe is zero */
3138 snd_hda_codec_write(codec, per_pin->pin_nid, 0, ATI_VERB_SET_DOWNMIX_INFO, 0);
3139
3140 /* enable channel-wise remap mode if supported */
3141 if (has_amd_full_remap_support(codec))
3142 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
3143 ATI_VERB_SET_MULTICHANNEL_MODE,
3144 ATI_MULTICHANNEL_MODE_SINGLE);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003145 }
Anssi Hannula5a6135842013-10-24 21:10:35 +03003146
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003147 return 0;
3148}
3149
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003150static int patch_atihdmi(struct hda_codec *codec)
3151{
3152 struct hdmi_spec *spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003153 struct hdmi_spec_per_cvt *per_cvt;
3154 int err, cvt_idx;
3155
3156 err = patch_generic_hdmi(codec);
3157
3158 if (err)
Takashi Iwaid0b12522012-06-15 14:34:42 +02003159 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003160
3161 codec->patch_ops.init = atihdmi_init;
3162
Takashi Iwaid0b12522012-06-15 14:34:42 +02003163 spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003164
Anssi Hannula89250f82013-10-24 21:10:36 +03003165 spec->ops.pin_get_eld = atihdmi_pin_get_eld;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003166 spec->ops.pin_get_slot_channel = atihdmi_pin_get_slot_channel;
3167 spec->ops.pin_set_slot_channel = atihdmi_pin_set_slot_channel;
3168 spec->ops.pin_setup_infoframe = atihdmi_pin_setup_infoframe;
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003169 spec->ops.pin_hbr_setup = atihdmi_pin_hbr_setup;
Anssi Hannula84d69e72013-10-24 21:10:38 +03003170 spec->ops.setup_stream = atihdmi_setup_stream;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003171
3172 if (!has_amd_full_remap_support(codec)) {
3173 /* override to ATI/AMD-specific versions with pairwise mapping */
3174 spec->ops.chmap_cea_alloc_validate_get_type =
3175 atihdmi_paired_chmap_cea_alloc_validate_get_type;
3176 spec->ops.cea_alloc_to_tlv_chmap = atihdmi_paired_cea_alloc_to_tlv_chmap;
3177 spec->ops.chmap_validate = atihdmi_paired_chmap_validate;
3178 }
3179
3180 /* ATI/AMD converters do not advertise all of their capabilities */
3181 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
3182 per_cvt = get_cvt(spec, cvt_idx);
3183 per_cvt->channels_max = max(per_cvt->channels_max, 8u);
3184 per_cvt->rates |= SUPPORTED_RATES;
3185 per_cvt->formats |= SUPPORTED_FORMATS;
3186 per_cvt->maxbps = max(per_cvt->maxbps, 24u);
3187 }
3188
3189 spec->channels_max = max(spec->channels_max, 8u);
3190
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003191 return 0;
3192}
3193
Annie Liu3de5ff82012-06-08 19:18:42 +08003194/* VIA HDMI Implementation */
3195#define VIAHDMI_CVT_NID 0x02 /* audio converter1 */
3196#define VIAHDMI_PIN_NID 0x03 /* HDMI output pin1 */
3197
Annie Liu3de5ff82012-06-08 19:18:42 +08003198static int patch_via_hdmi(struct hda_codec *codec)
3199{
Takashi Iwai250e41a2012-06-15 14:40:21 +02003200 return patch_simple_hdmi(codec, VIAHDMI_CVT_NID, VIAHDMI_PIN_NID);
Annie Liu3de5ff82012-06-08 19:18:42 +08003201}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003202
3203/*
3204 * patch entries
3205 */
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02003206static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003207{ .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
3208{ .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
3209{ .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
Anssi Hannula5a6135842013-10-24 21:10:35 +03003210{ .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_atihdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003211{ .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
3212{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
3213{ .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
3214{ .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3215{ .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3216{ .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3217{ .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3218{ .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
Anssi Hannula611885b2013-11-03 17:15:00 +02003219{ .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_nvhdmi },
3220{ .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_nvhdmi },
3221{ .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_nvhdmi },
3222{ .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_nvhdmi },
3223{ .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_nvhdmi },
3224{ .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_nvhdmi },
3225{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_nvhdmi },
3226{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_nvhdmi },
3227{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_nvhdmi },
3228{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_nvhdmi },
3229{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_nvhdmi },
Richard Samsonc8900a02011-03-03 12:46:13 +01003230/* 17 is known to be absent */
Anssi Hannula611885b2013-11-03 17:15:00 +02003231{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_nvhdmi },
3232{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_nvhdmi },
3233{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_nvhdmi },
3234{ .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_nvhdmi },
3235{ .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_nvhdmi },
3236{ .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_nvhdmi },
3237{ .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_nvhdmi },
3238{ .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_nvhdmi },
3239{ .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_nvhdmi },
3240{ .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_nvhdmi },
3241{ .id = 0x10de0051, .name = "GPU 51 HDMI/DP", .patch = patch_nvhdmi },
3242{ .id = 0x10de0060, .name = "GPU 60 HDMI/DP", .patch = patch_nvhdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003243{ .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
3244{ .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
Annie Liu3de5ff82012-06-08 19:18:42 +08003245{ .id = 0x11069f80, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
3246{ .id = 0x11069f81, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
3247{ .id = 0x11069f84, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
3248{ .id = 0x11069f85, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003249{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
3250{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
3251{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
3252{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
3253{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
3254{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang591e6102011-05-20 15:35:43 +08003255{ .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
Wang Xingchao1c766842012-06-13 10:23:52 +08003256{ .id = 0x80862807, .name = "Haswell HDMI", .patch = patch_generic_hdmi },
Wu Fengguang6edc59e2012-02-23 15:07:44 +08003257{ .id = 0x80862880, .name = "CedarTrail HDMI", .patch = patch_generic_hdmi },
Mengdong Lincc1a95d2013-10-20 23:03:31 -04003258{ .id = 0x80862882, .name = "Valleyview2 HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003259{ .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi },
3260{} /* terminator */
3261};
3262
3263MODULE_ALIAS("snd-hda-codec-id:1002793c");
3264MODULE_ALIAS("snd-hda-codec-id:10027919");
3265MODULE_ALIAS("snd-hda-codec-id:1002791a");
3266MODULE_ALIAS("snd-hda-codec-id:1002aa01");
3267MODULE_ALIAS("snd-hda-codec-id:10951390");
3268MODULE_ALIAS("snd-hda-codec-id:10951392");
3269MODULE_ALIAS("snd-hda-codec-id:10de0002");
3270MODULE_ALIAS("snd-hda-codec-id:10de0003");
3271MODULE_ALIAS("snd-hda-codec-id:10de0005");
3272MODULE_ALIAS("snd-hda-codec-id:10de0006");
3273MODULE_ALIAS("snd-hda-codec-id:10de0007");
3274MODULE_ALIAS("snd-hda-codec-id:10de000a");
3275MODULE_ALIAS("snd-hda-codec-id:10de000b");
3276MODULE_ALIAS("snd-hda-codec-id:10de000c");
3277MODULE_ALIAS("snd-hda-codec-id:10de000d");
3278MODULE_ALIAS("snd-hda-codec-id:10de0010");
3279MODULE_ALIAS("snd-hda-codec-id:10de0011");
3280MODULE_ALIAS("snd-hda-codec-id:10de0012");
3281MODULE_ALIAS("snd-hda-codec-id:10de0013");
3282MODULE_ALIAS("snd-hda-codec-id:10de0014");
Richard Samsonc8900a02011-03-03 12:46:13 +01003283MODULE_ALIAS("snd-hda-codec-id:10de0015");
3284MODULE_ALIAS("snd-hda-codec-id:10de0016");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003285MODULE_ALIAS("snd-hda-codec-id:10de0018");
3286MODULE_ALIAS("snd-hda-codec-id:10de0019");
3287MODULE_ALIAS("snd-hda-codec-id:10de001a");
3288MODULE_ALIAS("snd-hda-codec-id:10de001b");
3289MODULE_ALIAS("snd-hda-codec-id:10de001c");
3290MODULE_ALIAS("snd-hda-codec-id:10de0040");
3291MODULE_ALIAS("snd-hda-codec-id:10de0041");
3292MODULE_ALIAS("snd-hda-codec-id:10de0042");
3293MODULE_ALIAS("snd-hda-codec-id:10de0043");
3294MODULE_ALIAS("snd-hda-codec-id:10de0044");
Aaron Plattner7ae48b52012-07-16 17:10:04 -07003295MODULE_ALIAS("snd-hda-codec-id:10de0051");
Aaron Plattnerd52392b2013-07-12 11:01:37 -07003296MODULE_ALIAS("snd-hda-codec-id:10de0060");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003297MODULE_ALIAS("snd-hda-codec-id:10de0067");
3298MODULE_ALIAS("snd-hda-codec-id:10de8001");
Annie Liu3de5ff82012-06-08 19:18:42 +08003299MODULE_ALIAS("snd-hda-codec-id:11069f80");
3300MODULE_ALIAS("snd-hda-codec-id:11069f81");
3301MODULE_ALIAS("snd-hda-codec-id:11069f84");
3302MODULE_ALIAS("snd-hda-codec-id:11069f85");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003303MODULE_ALIAS("snd-hda-codec-id:17e80047");
3304MODULE_ALIAS("snd-hda-codec-id:80860054");
3305MODULE_ALIAS("snd-hda-codec-id:80862801");
3306MODULE_ALIAS("snd-hda-codec-id:80862802");
3307MODULE_ALIAS("snd-hda-codec-id:80862803");
3308MODULE_ALIAS("snd-hda-codec-id:80862804");
3309MODULE_ALIAS("snd-hda-codec-id:80862805");
Wu Fengguang591e6102011-05-20 15:35:43 +08003310MODULE_ALIAS("snd-hda-codec-id:80862806");
Wang Xingchao1c766842012-06-13 10:23:52 +08003311MODULE_ALIAS("snd-hda-codec-id:80862807");
Wu Fengguang6edc59e2012-02-23 15:07:44 +08003312MODULE_ALIAS("snd-hda-codec-id:80862880");
Mengdong Lincc1a95d2013-10-20 23:03:31 -04003313MODULE_ALIAS("snd-hda-codec-id:80862882");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003314MODULE_ALIAS("snd-hda-codec-id:808629fb");
3315
3316MODULE_LICENSE("GPL");
3317MODULE_DESCRIPTION("HDMI HD-audio codec");
3318MODULE_ALIAS("snd-hda-codec-intelhdmi");
3319MODULE_ALIAS("snd-hda-codec-nvhdmi");
3320MODULE_ALIAS("snd-hda-codec-atihdmi");
3321
3322static struct hda_codec_preset_list intel_list = {
3323 .preset = snd_hda_preset_hdmi,
3324 .owner = THIS_MODULE,
3325};
3326
3327static int __init patch_hdmi_init(void)
3328{
3329 return snd_hda_add_codec_preset(&intel_list);
3330}
3331
3332static void __exit patch_hdmi_exit(void)
3333{
3334 snd_hda_delete_codec_preset(&intel_list);
3335}
3336
3337module_init(patch_hdmi_init)
3338module_exit(patch_hdmi_exit)