blob: 7bd89bf62559d0b7dc38ec085d81466485bcaeb9 [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)
49
Stephen Warren384a48d2011-06-01 11:14:21 -060050struct hdmi_spec_per_cvt {
51 hda_nid_t cvt_nid;
52 int assigned;
53 unsigned int channels_min;
54 unsigned int channels_max;
55 u32 rates;
56 u64 formats;
57 unsigned int maxbps;
58};
59
Takashi Iwai4eea3092013-02-07 18:18:19 +010060/* max. connections to a widget */
61#define HDA_MAX_CONNECTIONS 32
62
Stephen Warren384a48d2011-06-01 11:14:21 -060063struct hdmi_spec_per_pin {
64 hda_nid_t pin_nid;
65 int num_mux_nids;
66 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Anssi Hannula1df5a062013-10-05 02:25:40 +030067 hda_nid_t cvt_nid;
Wu Fengguang744626d2011-11-16 16:29:47 +080068
69 struct hda_codec *codec;
Stephen Warren384a48d2011-06-01 11:14:21 -060070 struct hdmi_eld sink_eld;
Takashi Iwaia4e9a382013-10-17 18:21:12 +020071 struct mutex lock;
Wu Fengguang744626d2011-11-16 16:29:47 +080072 struct delayed_work work;
David Henningsson92c69e72013-02-19 16:11:26 +010073 struct snd_kcontrol *eld_ctl;
Wu Fengguangc6e84532011-11-18 16:59:32 -060074 int repoll_count;
Takashi Iwaib0540872013-09-02 12:33:02 +020075 bool setup; /* the stream has been set up by prepare callback */
76 int channels; /* current number of channels */
Takashi Iwai1a6003b2012-09-06 17:42:08 +020077 bool non_pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +020078 bool chmap_set; /* channel-map override by ALSA API? */
79 unsigned char chmap[8]; /* ALSA API channel-map */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +010080 char pcm_name[8]; /* filled in build_pcm callbacks */
Takashi Iwaia4e9a382013-10-17 18:21:12 +020081#ifdef CONFIG_PROC_FS
82 struct snd_info_entry *proc_entry;
83#endif
Stephen Warren384a48d2011-06-01 11:14:21 -060084};
85
Anssi Hannula307229d2013-10-24 21:10:34 +030086struct cea_channel_speaker_allocation;
87
88/* operations used by generic code that can be overridden by patches */
89struct hdmi_ops {
90 int (*pin_get_eld)(struct hda_codec *codec, hda_nid_t pin_nid,
91 unsigned char *buf, int *eld_size);
92
93 /* get and set channel assigned to each HDMI ASP (audio sample packet) slot */
94 int (*pin_get_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
95 int asp_slot);
96 int (*pin_set_slot_channel)(struct hda_codec *codec, hda_nid_t pin_nid,
97 int asp_slot, int channel);
98
99 void (*pin_setup_infoframe)(struct hda_codec *codec, hda_nid_t pin_nid,
100 int ca, int active_channels, int conn_type);
101
102 /* enable/disable HBR (HD passthrough) */
103 int (*pin_hbr_setup)(struct hda_codec *codec, hda_nid_t pin_nid, bool hbr);
104
105 int (*setup_stream)(struct hda_codec *codec, hda_nid_t cvt_nid,
106 hda_nid_t pin_nid, u32 stream_tag, int format);
107
108 /* Helpers for producing the channel map TLVs. These can be overridden
109 * for devices that have non-standard mapping requirements. */
110 int (*chmap_cea_alloc_validate_get_type)(struct cea_channel_speaker_allocation *cap,
111 int channels);
112 void (*cea_alloc_to_tlv_chmap)(struct cea_channel_speaker_allocation *cap,
113 unsigned int *chmap, int channels);
114
115 /* check that the user-given chmap is supported */
116 int (*chmap_validate)(int ca, int channels, unsigned char *chmap);
117};
118
Wu Fengguang079d88c2010-03-08 10:44:23 +0800119struct hdmi_spec {
120 int num_cvts;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100121 struct snd_array cvts; /* struct hdmi_spec_per_cvt */
122 hda_nid_t cvt_nids[4]; /* only for haswell fix */
Stephen Warren384a48d2011-06-01 11:14:21 -0600123
Wu Fengguang079d88c2010-03-08 10:44:23 +0800124 int num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100125 struct snd_array pins; /* struct hdmi_spec_per_pin */
126 struct snd_array pcm_rec; /* struct hda_pcm */
Takashi Iwaid45e6882012-07-31 11:36:00 +0200127 unsigned int channels_max; /* max over all cvts */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800128
David Henningsson4bd038f2013-02-19 16:11:25 +0100129 struct hdmi_eld temp_eld;
Anssi Hannula307229d2013-10-24 21:10:34 +0300130 struct hdmi_ops ops;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800131 /*
Anssi Hannula5a6135842013-10-24 21:10:35 +0300132 * Non-generic VIA/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +0800133 */
134 struct hda_multi_out multiout;
Takashi Iwaid0b12522012-06-15 14:34:42 +0200135 struct hda_pcm_stream pcm_playback;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800136};
137
138
139struct hdmi_audio_infoframe {
140 u8 type; /* 0x84 */
141 u8 ver; /* 0x01 */
142 u8 len; /* 0x0a */
143
Wu Fengguang53d7d692010-09-21 14:25:49 +0800144 u8 checksum;
145
Wu Fengguang079d88c2010-03-08 10:44:23 +0800146 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
147 u8 SS01_SF24;
148 u8 CXT04;
149 u8 CA;
150 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800151};
152
153struct dp_audio_infoframe {
154 u8 type; /* 0x84 */
155 u8 len; /* 0x1b */
156 u8 ver; /* 0x11 << 2 */
157
158 u8 CC02_CT47; /* match with HDMI infoframe from this on */
159 u8 SS01_SF24;
160 u8 CXT04;
161 u8 CA;
162 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800163};
164
Takashi Iwai2b203dbb2011-02-11 12:17:30 +0100165union audio_infoframe {
166 struct hdmi_audio_infoframe hdmi;
167 struct dp_audio_infoframe dp;
168 u8 bytes[0];
169};
170
Wu Fengguang079d88c2010-03-08 10:44:23 +0800171/*
172 * CEA speaker placement:
173 *
174 * FLH FCH FRH
175 * FLW FL FLC FC FRC FR FRW
176 *
177 * LFE
178 * TC
179 *
180 * RL RLC RC RRC RR
181 *
182 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
183 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
184 */
185enum cea_speaker_placement {
186 FL = (1 << 0), /* Front Left */
187 FC = (1 << 1), /* Front Center */
188 FR = (1 << 2), /* Front Right */
189 FLC = (1 << 3), /* Front Left Center */
190 FRC = (1 << 4), /* Front Right Center */
191 RL = (1 << 5), /* Rear Left */
192 RC = (1 << 6), /* Rear Center */
193 RR = (1 << 7), /* Rear Right */
194 RLC = (1 << 8), /* Rear Left Center */
195 RRC = (1 << 9), /* Rear Right Center */
196 LFE = (1 << 10), /* Low Frequency Effect */
197 FLW = (1 << 11), /* Front Left Wide */
198 FRW = (1 << 12), /* Front Right Wide */
199 FLH = (1 << 13), /* Front Left High */
200 FCH = (1 << 14), /* Front Center High */
201 FRH = (1 << 15), /* Front Right High */
202 TC = (1 << 16), /* Top Center */
203};
204
205/*
206 * ELD SA bits in the CEA Speaker Allocation data block
207 */
208static int eld_speaker_allocation_bits[] = {
209 [0] = FL | FR,
210 [1] = LFE,
211 [2] = FC,
212 [3] = RL | RR,
213 [4] = RC,
214 [5] = FLC | FRC,
215 [6] = RLC | RRC,
216 /* the following are not defined in ELD yet */
217 [7] = FLW | FRW,
218 [8] = FLH | FRH,
219 [9] = TC,
220 [10] = FCH,
221};
222
223struct cea_channel_speaker_allocation {
224 int ca_index;
225 int speakers[8];
226
227 /* derived values, just for convenience */
228 int channels;
229 int spk_mask;
230};
231
232/*
233 * ALSA sequence is:
234 *
235 * surround40 surround41 surround50 surround51 surround71
236 * ch0 front left = = = =
237 * ch1 front right = = = =
238 * ch2 rear left = = = =
239 * ch3 rear right = = = =
240 * ch4 LFE center center center
241 * ch5 LFE LFE
242 * ch6 side left
243 * ch7 side right
244 *
245 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
246 */
247static int hdmi_channel_mapping[0x32][8] = {
248 /* stereo */
249 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
250 /* 2.1 */
251 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
252 /* Dolby Surround */
253 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
254 /* surround40 */
255 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
256 /* 4ch */
257 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
258 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800259 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800260 /* surround50 */
261 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
262 /* surround51 */
263 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
264 /* 7.1 */
265 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
266};
267
268/*
269 * This is an ordered list!
270 *
271 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800272 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800273 */
274static struct cea_channel_speaker_allocation channel_allocations[] = {
275/* channel: 7 6 5 4 3 2 1 0 */
276{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
277 /* 2.1 */
278{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
279 /* Dolby Surround */
280{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
281 /* surround40 */
282{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
283 /* surround41 */
284{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
285 /* surround50 */
286{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
287 /* surround51 */
288{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
289 /* 6.1 */
290{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
291 /* surround71 */
292{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
293
294{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
295{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
296{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
297{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
298{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
299{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
300{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
301{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
302{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
303{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
304{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
305{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
306{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
307{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
308{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
309{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
310{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
311{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
312{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
313{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
314{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
315{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
316{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
317{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
318{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
319{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
320{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
321{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
322{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
323{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
324{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
325{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
326{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
327{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
328{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
329{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
330{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
331{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
332{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
333{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
334{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
335};
336
337
338/*
339 * HDMI routines
340 */
341
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100342#define get_pin(spec, idx) \
343 ((struct hdmi_spec_per_pin *)snd_array_elem(&spec->pins, idx))
344#define get_cvt(spec, idx) \
345 ((struct hdmi_spec_per_cvt *)snd_array_elem(&spec->cvts, idx))
346#define get_pcm_rec(spec, idx) \
347 ((struct hda_pcm *)snd_array_elem(&spec->pcm_rec, idx))
348
Stephen Warren384a48d2011-06-01 11:14:21 -0600349static int pin_nid_to_pin_index(struct hdmi_spec *spec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800350{
Stephen Warren384a48d2011-06-01 11:14:21 -0600351 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800352
Stephen Warren384a48d2011-06-01 11:14:21 -0600353 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100354 if (get_pin(spec, pin_idx)->pin_nid == pin_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600355 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800356
Stephen Warren384a48d2011-06-01 11:14:21 -0600357 snd_printk(KERN_WARNING "HDMI: pin nid %d not registered\n", pin_nid);
358 return -EINVAL;
359}
360
361static int hinfo_to_pin_index(struct hdmi_spec *spec,
362 struct hda_pcm_stream *hinfo)
363{
364 int pin_idx;
365
366 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100367 if (get_pcm_rec(spec, pin_idx)->stream == hinfo)
Stephen Warren384a48d2011-06-01 11:14:21 -0600368 return pin_idx;
369
370 snd_printk(KERN_WARNING "HDMI: hinfo %p not registered\n", hinfo);
371 return -EINVAL;
372}
373
374static int cvt_nid_to_cvt_index(struct hdmi_spec *spec, hda_nid_t cvt_nid)
375{
376 int cvt_idx;
377
378 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100379 if (get_cvt(spec, cvt_idx)->cvt_nid == cvt_nid)
Stephen Warren384a48d2011-06-01 11:14:21 -0600380 return cvt_idx;
381
382 snd_printk(KERN_WARNING "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800383 return -EINVAL;
384}
385
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500386static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
387 struct snd_ctl_elem_info *uinfo)
388{
389 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100390 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200391 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100392 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500393 int pin_idx;
394
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500395 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
396
397 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200398 per_pin = get_pin(spec, pin_idx);
399 eld = &per_pin->sink_eld;
David Henningsson68e03de2013-02-19 16:11:23 +0100400
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200401 mutex_lock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100402 uinfo->count = eld->eld_valid ? eld->eld_size : 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200403 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500404
405 return 0;
406}
407
408static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
409 struct snd_ctl_elem_value *ucontrol)
410{
411 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100412 struct hdmi_spec *spec = codec->spec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200413 struct hdmi_spec_per_pin *per_pin;
David Henningsson68e03de2013-02-19 16:11:23 +0100414 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500415 int pin_idx;
416
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500417 pin_idx = kcontrol->private_value;
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200418 per_pin = get_pin(spec, pin_idx);
419 eld = &per_pin->sink_eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500420
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200421 mutex_lock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100422 if (eld->eld_size > ARRAY_SIZE(ucontrol->value.bytes.data)) {
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200423 mutex_unlock(&per_pin->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100424 snd_BUG();
425 return -EINVAL;
426 }
427
428 memset(ucontrol->value.bytes.data, 0,
429 ARRAY_SIZE(ucontrol->value.bytes.data));
430 if (eld->eld_valid)
431 memcpy(ucontrol->value.bytes.data, eld->eld_buffer,
432 eld->eld_size);
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200433 mutex_unlock(&per_pin->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500434
435 return 0;
436}
437
438static struct snd_kcontrol_new eld_bytes_ctl = {
439 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
440 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
441 .name = "ELD",
442 .info = hdmi_eld_ctl_info,
443 .get = hdmi_eld_ctl_get,
444};
445
446static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
447 int device)
448{
449 struct snd_kcontrol *kctl;
450 struct hdmi_spec *spec = codec->spec;
451 int err;
452
453 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
454 if (!kctl)
455 return -ENOMEM;
456 kctl->private_value = pin_idx;
457 kctl->id.device = device;
458
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100459 err = snd_hda_ctl_add(codec, get_pin(spec, pin_idx)->pin_nid, kctl);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500460 if (err < 0)
461 return err;
462
Takashi Iwaibce0d2a2013-03-13 14:40:31 +0100463 get_pin(spec, pin_idx)->eld_ctl = kctl;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500464 return 0;
465}
466
Wu Fengguang079d88c2010-03-08 10:44:23 +0800467#ifdef BE_PARANOID
468static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
469 int *packet_index, int *byte_index)
470{
471 int val;
472
473 val = snd_hda_codec_read(codec, pin_nid, 0,
474 AC_VERB_GET_HDMI_DIP_INDEX, 0);
475
476 *packet_index = val >> 5;
477 *byte_index = val & 0x1f;
478}
479#endif
480
481static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
482 int packet_index, int byte_index)
483{
484 int val;
485
486 val = (packet_index << 5) | (byte_index & 0x1f);
487
488 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
489}
490
491static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
492 unsigned char val)
493{
494 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
495}
496
Stephen Warren384a48d2011-06-01 11:14:21 -0600497static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800498{
499 /* Unmute */
500 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
501 snd_hda_codec_write(codec, pin_nid, 0,
502 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Takashi Iwai6169b672012-12-14 10:22:35 +0100503 /* Enable pin out: some machines with GM965 gets broken output when
504 * the pin is disabled or changed while using with HDMI
505 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800506 snd_hda_codec_write(codec, pin_nid, 0,
Takashi Iwai6169b672012-12-14 10:22:35 +0100507 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800508}
509
Stephen Warren384a48d2011-06-01 11:14:21 -0600510static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800511{
Stephen Warren384a48d2011-06-01 11:14:21 -0600512 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800513 AC_VERB_GET_CVT_CHAN_COUNT, 0);
514}
515
516static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600517 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800518{
Stephen Warren384a48d2011-06-01 11:14:21 -0600519 if (chs != hdmi_get_channel_count(codec, cvt_nid))
520 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800521 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
522}
523
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200524/*
525 * ELD proc files
526 */
527
528#ifdef CONFIG_PROC_FS
529static void print_eld_info(struct snd_info_entry *entry,
530 struct snd_info_buffer *buffer)
531{
532 struct hdmi_spec_per_pin *per_pin = entry->private_data;
533
534 mutex_lock(&per_pin->lock);
535 snd_hdmi_print_eld_info(&per_pin->sink_eld, buffer);
536 mutex_unlock(&per_pin->lock);
537}
538
539static void write_eld_info(struct snd_info_entry *entry,
540 struct snd_info_buffer *buffer)
541{
542 struct hdmi_spec_per_pin *per_pin = entry->private_data;
543
544 mutex_lock(&per_pin->lock);
545 snd_hdmi_write_eld_info(&per_pin->sink_eld, buffer);
546 mutex_unlock(&per_pin->lock);
547}
548
549static int eld_proc_new(struct hdmi_spec_per_pin *per_pin, int index)
550{
551 char name[32];
552 struct hda_codec *codec = per_pin->codec;
553 struct snd_info_entry *entry;
554 int err;
555
556 snprintf(name, sizeof(name), "eld#%d.%d", codec->addr, index);
557 err = snd_card_proc_new(codec->bus->card, name, &entry);
558 if (err < 0)
559 return err;
560
561 snd_info_set_text_ops(entry, per_pin, print_eld_info);
562 entry->c.text.write = write_eld_info;
563 entry->mode |= S_IWUSR;
564 per_pin->proc_entry = entry;
565
566 return 0;
567}
568
569static void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
570{
571 if (!per_pin->codec->bus->shutdown && per_pin->proc_entry) {
572 snd_device_free(per_pin->codec->bus->card, per_pin->proc_entry);
573 per_pin->proc_entry = NULL;
574 }
575}
576#else
Takashi Iwaib55447a2013-10-21 16:31:45 +0200577static inline int eld_proc_new(struct hdmi_spec_per_pin *per_pin,
578 int index)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200579{
580 return 0;
581}
Takashi Iwaib55447a2013-10-21 16:31:45 +0200582static inline void eld_proc_free(struct hdmi_spec_per_pin *per_pin)
Takashi Iwaia4e9a382013-10-17 18:21:12 +0200583{
584}
585#endif
Wu Fengguang079d88c2010-03-08 10:44:23 +0800586
587/*
588 * Channel mapping routines
589 */
590
591/*
592 * Compute derived values in channel_allocations[].
593 */
594static void init_channel_allocations(void)
595{
596 int i, j;
597 struct cea_channel_speaker_allocation *p;
598
599 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
600 p = channel_allocations + i;
601 p->channels = 0;
602 p->spk_mask = 0;
603 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
604 if (p->speakers[j]) {
605 p->channels++;
606 p->spk_mask |= p->speakers[j];
607 }
608 }
609}
610
Wang Xingchao72357c72012-09-06 10:02:36 +0800611static int get_channel_allocation_order(int ca)
612{
613 int i;
614
615 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
616 if (channel_allocations[i].ca_index == ca)
617 break;
618 }
619 return i;
620}
621
Wu Fengguang079d88c2010-03-08 10:44:23 +0800622/*
623 * The transformation takes two steps:
624 *
625 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
626 * spk_mask => (channel_allocations[]) => ai->CA
627 *
628 * TODO: it could select the wrong CA from multiple candidates.
629*/
Stephen Warren384a48d2011-06-01 11:14:21 -0600630static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800631{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800632 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800633 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800634 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800635 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
636
637 /*
638 * CA defaults to 0 for basic stereo audio
639 */
640 if (channels <= 2)
641 return 0;
642
Wu Fengguang079d88c2010-03-08 10:44:23 +0800643 /*
644 * expand ELD's speaker allocation mask
645 *
646 * ELD tells the speaker mask in a compact(paired) form,
647 * expand ELD's notions to match the ones used by Audio InfoFrame.
648 */
649 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
David Henningsson1613d6b2013-02-19 16:11:24 +0100650 if (eld->info.spk_alloc & (1 << i))
Wu Fengguang079d88c2010-03-08 10:44:23 +0800651 spk_mask |= eld_speaker_allocation_bits[i];
652 }
653
654 /* search for the first working match in the CA table */
655 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
656 if (channels == channel_allocations[i].channels &&
657 (spk_mask & channel_allocations[i].spk_mask) ==
658 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800659 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800660 break;
661 }
662 }
663
Anssi Hannula18e39182013-09-01 14:36:47 +0300664 if (!ca) {
665 /* if there was no match, select the regular ALSA channel
666 * allocation with the matching number of channels */
667 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
668 if (channels == channel_allocations[i].channels) {
669 ca = channel_allocations[i].ca_index;
670 break;
671 }
672 }
673 }
674
David Henningsson1613d6b2013-02-19 16:11:24 +0100675 snd_print_channel_allocation(eld->info.spk_alloc, buf, sizeof(buf));
Wu Fengguang2abbf432010-03-08 10:45:38 +0800676 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800677 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800678
Wu Fengguang53d7d692010-09-21 14:25:49 +0800679 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800680}
681
682static void hdmi_debug_channel_mapping(struct hda_codec *codec,
683 hda_nid_t pin_nid)
684{
685#ifdef CONFIG_SND_DEBUG_VERBOSE
Anssi Hannula307229d2013-10-24 21:10:34 +0300686 struct hdmi_spec *spec = codec->spec;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800687 int i;
Anssi Hannula307229d2013-10-24 21:10:34 +0300688 int channel;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800689
690 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300691 channel = spec->ops.pin_get_slot_channel(codec, pin_nid, i);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800692 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
Anssi Hannula307229d2013-10-24 21:10:34 +0300693 channel, i);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800694 }
695#endif
696}
697
Takashi Iwaid45e6882012-07-31 11:36:00 +0200698static void hdmi_std_setup_channel_mapping(struct hda_codec *codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800699 hda_nid_t pin_nid,
Wang Xingchao433968d2012-09-06 10:02:37 +0800700 bool non_pcm,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800701 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800702{
Anssi Hannula307229d2013-10-24 21:10:34 +0300703 struct hdmi_spec *spec = codec->spec;
Anssi Hannula90f28002013-10-05 02:25:39 +0300704 struct cea_channel_speaker_allocation *ch_alloc;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800705 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800706 int err;
Wang Xingchao72357c72012-09-06 10:02:36 +0800707 int order;
Wang Xingchao433968d2012-09-06 10:02:37 +0800708 int non_pcm_mapping[8];
Wu Fengguang079d88c2010-03-08 10:44:23 +0800709
Wang Xingchao72357c72012-09-06 10:02:36 +0800710 order = get_channel_allocation_order(ca);
Anssi Hannula90f28002013-10-05 02:25:39 +0300711 ch_alloc = &channel_allocations[order];
Wang Xingchao433968d2012-09-06 10:02:37 +0800712
Wu Fengguang079d88c2010-03-08 10:44:23 +0800713 if (hdmi_channel_mapping[ca][1] == 0) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300714 int hdmi_slot = 0;
715 /* fill actual channel mappings in ALSA channel (i) order */
716 for (i = 0; i < ch_alloc->channels; i++) {
717 while (!ch_alloc->speakers[7 - hdmi_slot] && !WARN_ON(hdmi_slot >= 8))
718 hdmi_slot++; /* skip zero slots */
719
720 hdmi_channel_mapping[ca][i] = (i << 4) | hdmi_slot++;
721 }
722 /* fill the rest of the slots with ALSA channel 0xf */
723 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++)
724 if (!ch_alloc->speakers[7 - hdmi_slot])
725 hdmi_channel_mapping[ca][i++] = (0xf << 4) | hdmi_slot;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800726 }
727
Wang Xingchao433968d2012-09-06 10:02:37 +0800728 if (non_pcm) {
Anssi Hannula90f28002013-10-05 02:25:39 +0300729 for (i = 0; i < ch_alloc->channels; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300730 non_pcm_mapping[i] = (i << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800731 for (; i < 8; i++)
Anssi Hannula11f7c522013-10-05 02:25:41 +0300732 non_pcm_mapping[i] = (0xf << 4) | i;
Wang Xingchao433968d2012-09-06 10:02:37 +0800733 }
734
Wu Fengguang079d88c2010-03-08 10:44:23 +0800735 for (i = 0; i < 8; i++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300736 int slotsetup = non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i];
737 int hdmi_slot = slotsetup & 0x0f;
738 int channel = (slotsetup & 0xf0) >> 4;
739 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot, channel);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800740 if (err) {
Wu Fengguang2abbf432010-03-08 10:45:38 +0800741 snd_printdd(KERN_NOTICE
742 "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800743 break;
744 }
745 }
Wu Fengguang079d88c2010-03-08 10:44:23 +0800746}
747
Takashi Iwaid45e6882012-07-31 11:36:00 +0200748struct channel_map_table {
749 unsigned char map; /* ALSA API channel map position */
Takashi Iwaid45e6882012-07-31 11:36:00 +0200750 int spk_mask; /* speaker position bit mask */
751};
752
753static struct channel_map_table map_tables[] = {
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300754 { SNDRV_CHMAP_FL, FL },
755 { SNDRV_CHMAP_FR, FR },
756 { SNDRV_CHMAP_RL, RL },
757 { SNDRV_CHMAP_RR, RR },
758 { SNDRV_CHMAP_LFE, LFE },
759 { SNDRV_CHMAP_FC, FC },
760 { SNDRV_CHMAP_RLC, RLC },
761 { SNDRV_CHMAP_RRC, RRC },
762 { SNDRV_CHMAP_RC, RC },
763 { SNDRV_CHMAP_FLC, FLC },
764 { SNDRV_CHMAP_FRC, FRC },
765 { SNDRV_CHMAP_FLH, FLH },
766 { SNDRV_CHMAP_FRH, FRH },
767 { SNDRV_CHMAP_FLW, FLW },
768 { SNDRV_CHMAP_FRW, FRW },
769 { SNDRV_CHMAP_TC, TC },
770 { SNDRV_CHMAP_FCH, FCH },
Takashi Iwaid45e6882012-07-31 11:36:00 +0200771 {} /* terminator */
772};
773
774/* from ALSA API channel position to speaker bit mask */
775static int to_spk_mask(unsigned char c)
776{
777 struct channel_map_table *t = map_tables;
778 for (; t->map; t++) {
779 if (t->map == c)
780 return t->spk_mask;
781 }
782 return 0;
783}
784
785/* from ALSA API channel position to CEA slot */
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300786static int to_cea_slot(int ordered_ca, unsigned char pos)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200787{
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300788 int mask = to_spk_mask(pos);
789 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200790
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300791 if (mask) {
792 for (i = 0; i < 8; i++) {
793 if (channel_allocations[ordered_ca].speakers[7 - i] == mask)
794 return i;
795 }
Takashi Iwaid45e6882012-07-31 11:36:00 +0200796 }
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300797
798 return -1;
Takashi Iwaid45e6882012-07-31 11:36:00 +0200799}
800
801/* from speaker bit mask to ALSA API channel position */
802static int spk_to_chmap(int spk)
803{
804 struct channel_map_table *t = map_tables;
805 for (; t->map; t++) {
806 if (t->spk_mask == spk)
807 return t->map;
808 }
809 return 0;
810}
811
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300812/* from CEA slot to ALSA API channel position */
813static int from_cea_slot(int ordered_ca, unsigned char slot)
814{
815 int mask = channel_allocations[ordered_ca].speakers[7 - slot];
816
817 return spk_to_chmap(mask);
818}
819
Takashi Iwaid45e6882012-07-31 11:36:00 +0200820/* get the CA index corresponding to the given ALSA API channel map */
821static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
822{
823 int i, spks = 0, spk_mask = 0;
824
825 for (i = 0; i < chs; i++) {
826 int mask = to_spk_mask(map[i]);
827 if (mask) {
828 spk_mask |= mask;
829 spks++;
830 }
831 }
832
833 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
834 if ((chs == channel_allocations[i].channels ||
835 spks == channel_allocations[i].channels) &&
836 (spk_mask & channel_allocations[i].spk_mask) ==
837 channel_allocations[i].spk_mask)
838 return channel_allocations[i].ca_index;
839 }
840 return -1;
841}
842
843/* set up the channel slots for the given ALSA API channel map */
844static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
845 hda_nid_t pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300846 int chs, unsigned char *map,
847 int ca)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200848{
Anssi Hannula307229d2013-10-24 21:10:34 +0300849 struct hdmi_spec *spec = codec->spec;
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300850 int ordered_ca = get_channel_allocation_order(ca);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300851 int alsa_pos, hdmi_slot;
852 int assignments[8] = {[0 ... 7] = 0xf};
853
854 for (alsa_pos = 0; alsa_pos < chs; alsa_pos++) {
855
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300856 hdmi_slot = to_cea_slot(ordered_ca, map[alsa_pos]);
Anssi Hannula11f7c522013-10-05 02:25:41 +0300857
858 if (hdmi_slot < 0)
859 continue; /* unassigned channel */
860
861 assignments[hdmi_slot] = alsa_pos;
862 }
863
864 for (hdmi_slot = 0; hdmi_slot < 8; hdmi_slot++) {
Anssi Hannula307229d2013-10-24 21:10:34 +0300865 int err;
Anssi Hannula11f7c522013-10-05 02:25:41 +0300866
Anssi Hannula307229d2013-10-24 21:10:34 +0300867 err = spec->ops.pin_set_slot_channel(codec, pin_nid, hdmi_slot,
868 assignments[hdmi_slot]);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200869 if (err)
870 return -EINVAL;
871 }
872 return 0;
873}
874
875/* store ALSA API channel map from the current default map */
876static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
877{
878 int i;
Anssi Hannula56cac412013-10-05 02:25:38 +0300879 int ordered_ca = get_channel_allocation_order(ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200880 for (i = 0; i < 8; i++) {
Anssi Hannula56cac412013-10-05 02:25:38 +0300881 if (i < channel_allocations[ordered_ca].channels)
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300882 map[i] = from_cea_slot(ordered_ca, hdmi_channel_mapping[ca][i] & 0x0f);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200883 else
884 map[i] = 0;
885 }
886}
887
888static void hdmi_setup_channel_mapping(struct hda_codec *codec,
889 hda_nid_t pin_nid, bool non_pcm, int ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200890 int channels, unsigned char *map,
891 bool chmap_set)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200892{
Anssi Hannula20608732013-02-03 17:55:45 +0200893 if (!non_pcm && chmap_set) {
Takashi Iwaid45e6882012-07-31 11:36:00 +0200894 hdmi_manual_setup_channel_mapping(codec, pin_nid,
Anssi Hannulaa5b7d512013-10-05 02:25:42 +0300895 channels, map, ca);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200896 } else {
897 hdmi_std_setup_channel_mapping(codec, pin_nid, non_pcm, ca);
898 hdmi_setup_fake_chmap(map, ca);
899 }
Anssi Hannula980b2492013-10-05 02:25:44 +0300900
901 hdmi_debug_channel_mapping(codec, pin_nid);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200902}
Wu Fengguang079d88c2010-03-08 10:44:23 +0800903
Anssi Hannula307229d2013-10-24 21:10:34 +0300904static int hdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
905 int asp_slot, int channel)
906{
907 return snd_hda_codec_write(codec, pin_nid, 0,
908 AC_VERB_SET_HDMI_CHAN_SLOT,
909 (channel << 4) | asp_slot);
910}
911
912static int hdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
913 int asp_slot)
914{
915 return (snd_hda_codec_read(codec, pin_nid, 0,
916 AC_VERB_GET_HDMI_CHAN_SLOT,
917 asp_slot) & 0xf0) >> 4;
918}
919
Wu Fengguang079d88c2010-03-08 10:44:23 +0800920/*
921 * Audio InfoFrame routines
922 */
923
924/*
925 * Enable Audio InfoFrame Transmission
926 */
927static void hdmi_start_infoframe_trans(struct hda_codec *codec,
928 hda_nid_t pin_nid)
929{
930 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
931 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
932 AC_DIPXMIT_BEST);
933}
934
935/*
936 * Disable Audio InfoFrame Transmission
937 */
938static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
939 hda_nid_t pin_nid)
940{
941 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
942 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
943 AC_DIPXMIT_DISABLE);
944}
945
946static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
947{
948#ifdef CONFIG_SND_DEBUG_VERBOSE
949 int i;
950 int size;
951
952 size = snd_hdmi_get_eld_size(codec, pin_nid);
953 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
954
955 for (i = 0; i < 8; i++) {
956 size = snd_hda_codec_read(codec, pin_nid, 0,
957 AC_VERB_GET_HDMI_DIP_SIZE, i);
958 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
959 }
960#endif
961}
962
963static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
964{
965#ifdef BE_PARANOID
966 int i, j;
967 int size;
968 int pi, bi;
969 for (i = 0; i < 8; i++) {
970 size = snd_hda_codec_read(codec, pin_nid, 0,
971 AC_VERB_GET_HDMI_DIP_SIZE, i);
972 if (size == 0)
973 continue;
974
975 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
976 for (j = 1; j < 1000; j++) {
977 hdmi_write_dip_byte(codec, pin_nid, 0x0);
978 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
979 if (pi != i)
980 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
981 bi, pi, i);
982 if (bi == 0) /* byte index wrapped around */
983 break;
984 }
985 snd_printd(KERN_INFO
986 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
987 i, size, j);
988 }
989#endif
990}
991
Wu Fengguang53d7d692010-09-21 14:25:49 +0800992static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800993{
Wu Fengguang53d7d692010-09-21 14:25:49 +0800994 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800995 u8 sum = 0;
996 int i;
997
Wu Fengguang53d7d692010-09-21 14:25:49 +0800998 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800999
Wu Fengguang53d7d692010-09-21 14:25:49 +08001000 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001001 sum += bytes[i];
1002
Wu Fengguang53d7d692010-09-21 14:25:49 +08001003 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001004}
1005
1006static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
1007 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001008 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001009{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001010 int i;
1011
1012 hdmi_debug_dip_size(codec, pin_nid);
1013 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
1014
Wu Fengguang079d88c2010-03-08 10:44:23 +08001015 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001016 for (i = 0; i < size; i++)
1017 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001018}
1019
1020static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +08001021 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001022{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001023 u8 val;
1024 int i;
1025
1026 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
1027 != AC_DIPXMIT_BEST)
1028 return false;
1029
1030 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001031 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001032 val = snd_hda_codec_read(codec, pin_nid, 0,
1033 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +08001034 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +08001035 return false;
1036 }
1037
1038 return true;
1039}
1040
Anssi Hannula307229d2013-10-24 21:10:34 +03001041static void hdmi_pin_setup_infoframe(struct hda_codec *codec,
1042 hda_nid_t pin_nid,
1043 int ca, int active_channels,
1044 int conn_type)
1045{
1046 union audio_infoframe ai;
1047
1048 if (conn_type == 0) { /* HDMI */
1049 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
1050
1051 hdmi_ai->type = 0x84;
1052 hdmi_ai->ver = 0x01;
1053 hdmi_ai->len = 0x0a;
1054 hdmi_ai->CC02_CT47 = active_channels - 1;
1055 hdmi_ai->CA = ca;
1056 hdmi_checksum_audio_infoframe(hdmi_ai);
1057 } else if (conn_type == 1) { /* DisplayPort */
1058 struct dp_audio_infoframe *dp_ai = &ai.dp;
1059
1060 dp_ai->type = 0x84;
1061 dp_ai->len = 0x1b;
1062 dp_ai->ver = 0x11 << 2;
1063 dp_ai->CC02_CT47 = active_channels - 1;
1064 dp_ai->CA = ca;
1065 } else {
1066 snd_printd("HDMI: unknown connection type at pin %d\n",
1067 pin_nid);
1068 return;
1069 }
1070
1071 /*
1072 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
1073 * sizeof(*dp_ai) to avoid partial match/update problems when
1074 * the user switches between HDMI/DP monitors.
1075 */
1076 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
1077 sizeof(ai))) {
1078 snd_printdd("hdmi_pin_setup_infoframe: "
1079 "pin=%d channels=%d ca=0x%02x\n",
1080 pin_nid,
1081 active_channels, ca);
1082 hdmi_stop_infoframe_trans(codec, pin_nid);
1083 hdmi_fill_audio_infoframe(codec, pin_nid,
1084 ai.bytes, sizeof(ai));
1085 hdmi_start_infoframe_trans(codec, pin_nid);
1086 }
1087}
1088
Takashi Iwaib0540872013-09-02 12:33:02 +02001089static void hdmi_setup_audio_infoframe(struct hda_codec *codec,
1090 struct hdmi_spec_per_pin *per_pin,
1091 bool non_pcm)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001092{
Anssi Hannula307229d2013-10-24 21:10:34 +03001093 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001094 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwaib0540872013-09-02 12:33:02 +02001095 int channels = per_pin->channels;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001096 int active_channels;
Stephen Warren384a48d2011-06-01 11:14:21 -06001097 struct hdmi_eld *eld;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001098 int ca, ordered_ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001099
Takashi Iwaib0540872013-09-02 12:33:02 +02001100 if (!channels)
1101 return;
1102
Mengdong Lin58f7d282013-09-04 16:37:12 -04001103 if (is_haswell(codec))
1104 snd_hda_codec_write(codec, pin_nid, 0,
1105 AC_VERB_SET_AMP_GAIN_MUTE,
1106 AMP_OUT_UNMUTE);
1107
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001108 eld = &per_pin->sink_eld;
Stephen Warren384a48d2011-06-01 11:14:21 -06001109 if (!eld->monitor_present)
1110 return;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001111
Takashi Iwaid45e6882012-07-31 11:36:00 +02001112 if (!non_pcm && per_pin->chmap_set)
1113 ca = hdmi_manual_channel_allocation(channels, per_pin->chmap);
1114 else
1115 ca = hdmi_channel_allocation(eld, channels);
1116 if (ca < 0)
1117 ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001118
Anssi Hannula1df5a062013-10-05 02:25:40 +03001119 ordered_ca = get_channel_allocation_order(ca);
1120 active_channels = channel_allocations[ordered_ca].channels;
1121
1122 hdmi_set_channel_count(codec, per_pin->cvt_nid, active_channels);
1123
Stephen Warren384a48d2011-06-01 11:14:21 -06001124 /*
Anssi Hannula39edac72013-10-07 19:24:52 +03001125 * always configure channel mapping, it may have been changed by the
1126 * user in the meantime
1127 */
1128 hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
1129 channels, per_pin->chmap,
1130 per_pin->chmap_set);
1131
Anssi Hannula307229d2013-10-24 21:10:34 +03001132 spec->ops.pin_setup_infoframe(codec, pin_nid, ca, active_channels,
1133 eld->info.conn_type);
Wang Xingchao433968d2012-09-06 10:02:37 +08001134
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001135 per_pin->non_pcm = non_pcm;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001136}
1137
Wu Fengguang079d88c2010-03-08 10:44:23 +08001138/*
1139 * Unsolicited events
1140 */
1141
Wu Fengguangc6e84532011-11-18 16:59:32 -06001142static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +02001143
Wu Fengguang079d88c2010-03-08 10:44:23 +08001144static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
1145{
1146 struct hdmi_spec *spec = codec->spec;
Takashi Iwai3a938972011-10-28 01:16:55 +02001147 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1148 int pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001149 int pin_idx;
Takashi Iwai3a938972011-10-28 01:16:55 +02001150 struct hda_jack_tbl *jack;
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001151 int dev_entry = (res & AC_UNSOL_RES_DE) >> AC_UNSOL_RES_DE_SHIFT;
Takashi Iwai3a938972011-10-28 01:16:55 +02001152
1153 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
1154 if (!jack)
1155 return;
1156 pin_nid = jack->nid;
1157 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001158
Fengguang Wufae3d882012-04-10 17:00:35 +08001159 _snd_printd(SND_PR_VERBOSE,
Mengdong Lin2e59e5a2013-08-26 21:35:49 -04001160 "HDMI hot plug event: Codec=%d Pin=%d Device=%d Inactive=%d Presence_Detect=%d ELD_Valid=%d\n",
1161 codec->addr, pin_nid, dev_entry, !!(res & AC_UNSOL_RES_IA),
Fengguang Wufae3d882012-04-10 17:00:35 +08001162 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +08001163
Stephen Warren384a48d2011-06-01 11:14:21 -06001164 pin_idx = pin_nid_to_pin_index(spec, pin_nid);
1165 if (pin_idx < 0)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001166 return;
1167
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001168 hdmi_present_sense(get_pin(spec, pin_idx), 1);
Takashi Iwai01a61e12011-10-28 00:03:22 +02001169 snd_hda_jack_report_sync(codec);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001170}
1171
1172static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
1173{
1174 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1175 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1176 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
1177 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
1178
1179 printk(KERN_INFO
Takashi Iwaie9ea8e82012-06-21 11:41:05 +02001180 "HDMI CP event: CODEC=%d TAG=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001181 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +08001182 tag,
1183 subtag,
1184 cp_state,
1185 cp_ready);
1186
1187 /* TODO */
1188 if (cp_state)
1189 ;
1190 if (cp_ready)
1191 ;
1192}
1193
1194
1195static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
1196{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001197 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1198 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1199
Takashi Iwai3a938972011-10-28 01:16:55 +02001200 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001201 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
1202 return;
1203 }
1204
1205 if (subtag == 0)
1206 hdmi_intrinsic_event(codec, res);
1207 else
1208 hdmi_non_intrinsic_event(codec, res);
1209}
1210
Mengdong Lin58f7d282013-09-04 16:37:12 -04001211static void haswell_verify_D0(struct hda_codec *codec,
Wang Xingchao53b434f2013-06-18 10:41:53 +08001212 hda_nid_t cvt_nid, hda_nid_t nid)
David Henningsson83f26ad2013-04-10 12:26:07 +02001213{
Mengdong Lin58f7d282013-09-04 16:37:12 -04001214 int pwr;
David Henningsson83f26ad2013-04-10 12:26:07 +02001215
Wang Xingchao53b434f2013-06-18 10:41:53 +08001216 /* For Haswell, the converter 1/2 may keep in D3 state after bootup,
1217 * thus pins could only choose converter 0 for use. Make sure the
1218 * converters are in correct power state */
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001219 if (!snd_hda_check_power_state(codec, cvt_nid, AC_PWRST_D0))
Wang Xingchao53b434f2013-06-18 10:41:53 +08001220 snd_hda_codec_write(codec, cvt_nid, 0, AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1221
Takashi Iwaifd678ca2013-06-18 16:28:36 +02001222 if (!snd_hda_check_power_state(codec, nid, AC_PWRST_D0)) {
David Henningsson83f26ad2013-04-10 12:26:07 +02001223 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
1224 AC_PWRST_D0);
1225 msleep(40);
1226 pwr = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_POWER_STATE, 0);
1227 pwr = (pwr & AC_PWRST_ACTUAL) >> AC_PWRST_ACTUAL_SHIFT;
1228 snd_printd("Haswell HDMI audio: Power for pin 0x%x is now D%d\n", nid, pwr);
1229 }
David Henningsson83f26ad2013-04-10 12:26:07 +02001230}
1231
Wu Fengguang079d88c2010-03-08 10:44:23 +08001232/*
1233 * Callbacks
1234 */
1235
Takashi Iwai92f10b32010-08-03 14:21:00 +02001236/* HBR should be Non-PCM, 8 channels */
1237#define is_hbr_format(format) \
1238 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
1239
Anssi Hannula307229d2013-10-24 21:10:34 +03001240static int hdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
1241 bool hbr)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001242{
Anssi Hannula307229d2013-10-24 21:10:34 +03001243 int pinctl, new_pinctl;
David Henningsson83f26ad2013-04-10 12:26:07 +02001244
Stephen Warren384a48d2011-06-01 11:14:21 -06001245 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
1246 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001247 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1248
1249 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Anssi Hannula307229d2013-10-24 21:10:34 +03001250 if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001251 new_pinctl |= AC_PINCTL_EPT_HBR;
1252 else
1253 new_pinctl |= AC_PINCTL_EPT_NATIVE;
1254
Anssi Hannula307229d2013-10-24 21:10:34 +03001255 snd_printdd("hdmi_pin_hbr_setup: "
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001256 "NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001257 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001258 pinctl == new_pinctl ? "" : "new-",
1259 new_pinctl);
1260
1261 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -06001262 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001263 AC_VERB_SET_PIN_WIDGET_CONTROL,
1264 new_pinctl);
Anssi Hannula307229d2013-10-24 21:10:34 +03001265 } else if (hbr)
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001266 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03001267
1268 return 0;
1269}
1270
1271static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
1272 hda_nid_t pin_nid, u32 stream_tag, int format)
1273{
1274 struct hdmi_spec *spec = codec->spec;
1275 int err;
1276
1277 if (is_haswell(codec))
1278 haswell_verify_D0(codec, cvt_nid, pin_nid);
1279
1280 err = spec->ops.pin_hbr_setup(codec, pin_nid, is_hbr_format(format));
1281
1282 if (err) {
1283 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
1284 return err;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001285 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001286
Stephen Warren384a48d2011-06-01 11:14:21 -06001287 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001288 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001289}
1290
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001291static int hdmi_choose_cvt(struct hda_codec *codec,
1292 int pin_idx, int *cvt_id, int *mux_id)
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001293{
1294 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001295 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001296 struct hdmi_spec_per_cvt *per_cvt = NULL;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001297 int cvt_idx, mux_idx = 0;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001298
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001299 per_pin = get_pin(spec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001300
Stephen Warren384a48d2011-06-01 11:14:21 -06001301 /* Dynamically assign converter to stream */
1302 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001303 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001304
1305 /* Must not already be assigned */
1306 if (per_cvt->assigned)
1307 continue;
1308 /* Must be in pin's mux's list of converters */
1309 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
1310 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
1311 break;
1312 /* Not in mux list */
1313 if (mux_idx == per_pin->num_mux_nids)
1314 continue;
1315 break;
1316 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001317
Stephen Warren384a48d2011-06-01 11:14:21 -06001318 /* No free converters */
1319 if (cvt_idx == spec->num_cvts)
1320 return -ENODEV;
1321
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001322 if (cvt_id)
1323 *cvt_id = cvt_idx;
1324 if (mux_id)
1325 *mux_id = mux_idx;
1326
1327 return 0;
1328}
1329
1330static void haswell_config_cvts(struct hda_codec *codec,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001331 hda_nid_t pin_nid, int mux_idx)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001332{
1333 struct hdmi_spec *spec = codec->spec;
Mengdong Linf82d7d12013-09-21 20:34:45 -04001334 hda_nid_t nid, end_nid;
1335 int cvt_idx, curr;
1336 struct hdmi_spec_per_cvt *per_cvt;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001337
Mengdong Linf82d7d12013-09-21 20:34:45 -04001338 /* configure all pins, including "no physical connection" ones */
1339 end_nid = codec->start_nid + codec->num_nodes;
1340 for (nid = codec->start_nid; nid < end_nid; nid++) {
1341 unsigned int wid_caps = get_wcaps(codec, nid);
1342 unsigned int wid_type = get_wcaps_type(wid_caps);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001343
Mengdong Linf82d7d12013-09-21 20:34:45 -04001344 if (wid_type != AC_WID_PIN)
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001345 continue;
1346
Mengdong Linf82d7d12013-09-21 20:34:45 -04001347 if (nid == pin_nid)
1348 continue;
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001349
Mengdong Linf82d7d12013-09-21 20:34:45 -04001350 curr = snd_hda_codec_read(codec, nid, 0,
1351 AC_VERB_GET_CONNECT_SEL, 0);
1352 if (curr != mux_idx)
1353 continue;
1354
1355 /* choose an unassigned converter. The conveters in the
1356 * connection list are in the same order as in the codec.
1357 */
1358 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
1359 per_cvt = get_cvt(spec, cvt_idx);
1360 if (!per_cvt->assigned) {
1361 snd_printdd("choose cvt %d for pin nid %d\n",
1362 cvt_idx, nid);
1363 snd_hda_codec_write_cache(codec, nid, 0,
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001364 AC_VERB_SET_CONNECT_SEL,
Mengdong Linf82d7d12013-09-21 20:34:45 -04001365 cvt_idx);
1366 break;
1367 }
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001368 }
1369 }
1370}
1371
1372/*
1373 * HDA PCM callbacks
1374 */
1375static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
1376 struct hda_codec *codec,
1377 struct snd_pcm_substream *substream)
1378{
1379 struct hdmi_spec *spec = codec->spec;
1380 struct snd_pcm_runtime *runtime = substream->runtime;
1381 int pin_idx, cvt_idx, mux_idx = 0;
1382 struct hdmi_spec_per_pin *per_pin;
1383 struct hdmi_eld *eld;
1384 struct hdmi_spec_per_cvt *per_cvt = NULL;
1385 int err;
1386
1387 /* Validate hinfo */
1388 pin_idx = hinfo_to_pin_index(spec, hinfo);
1389 if (snd_BUG_ON(pin_idx < 0))
1390 return -EINVAL;
1391 per_pin = get_pin(spec, pin_idx);
1392 eld = &per_pin->sink_eld;
1393
1394 err = hdmi_choose_cvt(codec, pin_idx, &cvt_idx, &mux_idx);
1395 if (err < 0)
1396 return err;
1397
1398 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001399 /* Claim converter */
1400 per_cvt->assigned = 1;
Anssi Hannula1df5a062013-10-05 02:25:40 +03001401 per_pin->cvt_nid = per_cvt->cvt_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001402 hinfo->nid = per_cvt->cvt_nid;
1403
Takashi Iwaibddee962013-06-18 16:14:22 +02001404 snd_hda_codec_write_cache(codec, per_pin->pin_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -06001405 AC_VERB_SET_CONNECT_SEL,
1406 mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001407
1408 /* configure unused pins to choose other converters */
Mengdong Linfb87fa32013-09-04 16:36:57 -04001409 if (is_haswell(codec))
Mengdong Linf82d7d12013-09-21 20:34:45 -04001410 haswell_config_cvts(codec, per_pin->pin_nid, mux_idx);
Wang Xingchao7ef166b2013-06-18 21:42:14 +08001411
Stephen Warren384a48d2011-06-01 11:14:21 -06001412 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001413
Stephen Warren2def8172011-06-01 11:14:20 -06001414 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -06001415 hinfo->channels_min = per_cvt->channels_min;
1416 hinfo->channels_max = per_cvt->channels_max;
1417 hinfo->rates = per_cvt->rates;
1418 hinfo->formats = per_cvt->formats;
1419 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -06001420
Stephen Warren384a48d2011-06-01 11:14:21 -06001421 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -06001422 if (!static_hdmi_pcm && eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001423 snd_hdmi_eld_update_pcm_info(&eld->info, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001424 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001425 !hinfo->rates || !hinfo->formats) {
1426 per_cvt->assigned = 0;
1427 hinfo->nid = 0;
1428 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001429 return -ENODEV;
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001430 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001431 }
Stephen Warren2def8172011-06-01 11:14:20 -06001432
1433 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +01001434 runtime->hw.channels_min = hinfo->channels_min;
1435 runtime->hw.channels_max = hinfo->channels_max;
1436 runtime->hw.formats = hinfo->formats;
1437 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +01001438
1439 snd_pcm_hw_constraint_step(substream->runtime, 0,
1440 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001441 return 0;
1442}
1443
1444/*
Wu Fengguang079d88c2010-03-08 10:44:23 +08001445 * HDA/HDMI auto parsing
1446 */
Stephen Warren384a48d2011-06-01 11:14:21 -06001447static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001448{
1449 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001450 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001451 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001452
1453 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
1454 snd_printk(KERN_WARNING
1455 "HDMI: pin %d wcaps %#x "
1456 "does not support connection list\n",
1457 pin_nid, get_wcaps(codec, pin_nid));
1458 return -EINVAL;
1459 }
1460
Stephen Warren384a48d2011-06-01 11:14:21 -06001461 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
1462 per_pin->mux_nids,
1463 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001464
1465 return 0;
1466}
1467
Wu Fengguangc6e84532011-11-18 16:59:32 -06001468static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001469{
Wu Fengguang744626d2011-11-16 16:29:47 +08001470 struct hda_codec *codec = per_pin->codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001471 struct hdmi_spec *spec = codec->spec;
1472 struct hdmi_eld *eld = &spec->temp_eld;
1473 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +08001474 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -06001475 /*
1476 * Always execute a GetPinSense verb here, even when called from
1477 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
1478 * response's PD bit is not the real PD value, but indicates that
1479 * the real PD value changed. An older version of the HD-audio
1480 * specification worked this way. Hence, we just ignore the data in
1481 * the unsolicited response to avoid custom WARs.
1482 */
Wu Fengguang079d88c2010-03-08 10:44:23 +08001483 int present = snd_hda_pin_sense(codec, pin_nid);
David Henningsson4bd038f2013-02-19 16:11:25 +01001484 bool update_eld = false;
1485 bool eld_changed = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001486
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001487 mutex_lock(&per_pin->lock);
David Henningsson4bd038f2013-02-19 16:11:25 +01001488 pin_eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
1489 if (pin_eld->monitor_present)
1490 eld->eld_valid = !!(present & AC_PINSENSE_ELDV);
1491 else
1492 eld->eld_valid = false;
Stephen Warren5d44f922011-05-24 17:11:17 -06001493
Fengguang Wufae3d882012-04-10 17:00:35 +08001494 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -06001495 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Mengdong Lin10250912013-03-28 05:21:28 -04001496 codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -06001497
David Henningsson4bd038f2013-02-19 16:11:25 +01001498 if (eld->eld_valid) {
Anssi Hannula307229d2013-10-24 21:10:34 +03001499 if (spec->ops.pin_get_eld(codec, pin_nid, eld->eld_buffer,
David Henningsson1613d6b2013-02-19 16:11:24 +01001500 &eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001501 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001502 else {
1503 memset(&eld->info, 0, sizeof(struct parsed_hdmi_eld));
1504 if (snd_hdmi_parse_eld(&eld->info, eld->eld_buffer,
1505 eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001506 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001507 }
1508
David Henningsson4bd038f2013-02-19 16:11:25 +01001509 if (eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001510 snd_hdmi_show_eld(&eld->info);
David Henningsson4bd038f2013-02-19 16:11:25 +01001511 update_eld = true;
David Henningsson1613d6b2013-02-19 16:11:24 +01001512 }
Wu Fengguangc6e84532011-11-18 16:59:32 -06001513 else if (repoll) {
Wu Fengguang744626d2011-11-16 16:29:47 +08001514 queue_delayed_work(codec->bus->workq,
1515 &per_pin->work,
1516 msecs_to_jiffies(300));
Takashi Iwaicbbaa602013-10-17 18:03:24 +02001517 goto unlock;
Wu Fengguang744626d2011-11-16 16:29:47 +08001518 }
1519 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001520
David Henningsson92c69e72013-02-19 16:11:26 +01001521 if (pin_eld->eld_valid && !eld->eld_valid) {
David Henningsson4bd038f2013-02-19 16:11:25 +01001522 update_eld = true;
David Henningsson92c69e72013-02-19 16:11:26 +01001523 eld_changed = true;
1524 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001525 if (update_eld) {
Takashi Iwaib0540872013-09-02 12:33:02 +02001526 bool old_eld_valid = pin_eld->eld_valid;
David Henningsson4bd038f2013-02-19 16:11:25 +01001527 pin_eld->eld_valid = eld->eld_valid;
David Henningsson92c69e72013-02-19 16:11:26 +01001528 eld_changed = pin_eld->eld_size != eld->eld_size ||
1529 memcmp(pin_eld->eld_buffer, eld->eld_buffer,
David Henningsson4bd038f2013-02-19 16:11:25 +01001530 eld->eld_size) != 0;
1531 if (eld_changed)
1532 memcpy(pin_eld->eld_buffer, eld->eld_buffer,
1533 eld->eld_size);
1534 pin_eld->eld_size = eld->eld_size;
1535 pin_eld->info = eld->info;
Takashi Iwaib0540872013-09-02 12:33:02 +02001536
1537 /* Haswell-specific workaround: re-setup when the transcoder is
1538 * changed during the stream playback
1539 */
Mengdong Linfb87fa32013-09-04 16:36:57 -04001540 if (is_haswell(codec) &&
Mengdong Lin58f7d282013-09-04 16:37:12 -04001541 eld->eld_valid && !old_eld_valid && per_pin->setup)
Takashi Iwaib0540872013-09-02 12:33:02 +02001542 hdmi_setup_audio_infoframe(codec, per_pin,
1543 per_pin->non_pcm);
David Henningsson4bd038f2013-02-19 16:11:25 +01001544 }
David Henningsson92c69e72013-02-19 16:11:26 +01001545
1546 if (eld_changed)
1547 snd_ctl_notify(codec->bus->card,
1548 SNDRV_CTL_EVENT_MASK_VALUE | SNDRV_CTL_EVENT_MASK_INFO,
1549 &per_pin->eld_ctl->id);
Takashi Iwaicbbaa602013-10-17 18:03:24 +02001550 unlock:
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001551 mutex_unlock(&per_pin->lock);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001552}
1553
Wu Fengguang744626d2011-11-16 16:29:47 +08001554static void hdmi_repoll_eld(struct work_struct *work)
1555{
1556 struct hdmi_spec_per_pin *per_pin =
1557 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1558
Wu Fengguangc6e84532011-11-18 16:59:32 -06001559 if (per_pin->repoll_count++ > 6)
1560 per_pin->repoll_count = 0;
1561
1562 hdmi_present_sense(per_pin, per_pin->repoll_count);
Wu Fengguang744626d2011-11-16 16:29:47 +08001563}
1564
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001565static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
1566 hda_nid_t nid);
1567
Wu Fengguang079d88c2010-03-08 10:44:23 +08001568static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1569{
1570 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001571 unsigned int caps, config;
1572 int pin_idx;
1573 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001574 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001575
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001576 caps = snd_hda_query_pin_caps(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001577 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1578 return 0;
1579
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001580 config = snd_hda_codec_get_pincfg(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001581 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1582 return 0;
1583
Mengdong Linfb87fa32013-09-04 16:36:57 -04001584 if (is_haswell(codec))
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001585 intel_haswell_fixup_connect_list(codec, pin_nid);
1586
Stephen Warren384a48d2011-06-01 11:14:21 -06001587 pin_idx = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001588 per_pin = snd_array_new(&spec->pins);
1589 if (!per_pin)
1590 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001591
1592 per_pin->pin_nid = pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001593 per_pin->non_pcm = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001594
Stephen Warren384a48d2011-06-01 11:14:21 -06001595 err = hdmi_read_pin_conn(codec, pin_idx);
1596 if (err < 0)
1597 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001598
Wu Fengguang079d88c2010-03-08 10:44:23 +08001599 spec->num_pins++;
1600
Stephen Warren384a48d2011-06-01 11:14:21 -06001601 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001602}
1603
Stephen Warren384a48d2011-06-01 11:14:21 -06001604static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001605{
1606 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001607 struct hdmi_spec_per_cvt *per_cvt;
1608 unsigned int chans;
1609 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001610
Stephen Warren384a48d2011-06-01 11:14:21 -06001611 chans = get_wcaps(codec, cvt_nid);
1612 chans = get_wcaps_channels(chans);
1613
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001614 per_cvt = snd_array_new(&spec->cvts);
1615 if (!per_cvt)
1616 return -ENOMEM;
Stephen Warren384a48d2011-06-01 11:14:21 -06001617
1618 per_cvt->cvt_nid = cvt_nid;
1619 per_cvt->channels_min = 2;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001620 if (chans <= 16) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001621 per_cvt->channels_max = chans;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001622 if (chans > spec->channels_max)
1623 spec->channels_max = chans;
1624 }
Stephen Warren384a48d2011-06-01 11:14:21 -06001625
1626 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1627 &per_cvt->rates,
1628 &per_cvt->formats,
1629 &per_cvt->maxbps);
1630 if (err < 0)
1631 return err;
1632
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001633 if (spec->num_cvts < ARRAY_SIZE(spec->cvt_nids))
1634 spec->cvt_nids[spec->num_cvts] = cvt_nid;
1635 spec->num_cvts++;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001636
1637 return 0;
1638}
1639
1640static int hdmi_parse_codec(struct hda_codec *codec)
1641{
1642 hda_nid_t nid;
1643 int i, nodes;
1644
1645 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
1646 if (!nid || nodes < 0) {
1647 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
1648 return -EINVAL;
1649 }
1650
1651 for (i = 0; i < nodes; i++, nid++) {
1652 unsigned int caps;
1653 unsigned int type;
1654
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001655 caps = get_wcaps(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001656 type = get_wcaps_type(caps);
1657
1658 if (!(caps & AC_WCAP_DIGITAL))
1659 continue;
1660
1661 switch (type) {
1662 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001663 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001664 break;
1665 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001666 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001667 break;
1668 }
1669 }
1670
David Henningssonc9adeef2012-11-07 09:22:33 +01001671#ifdef CONFIG_PM
1672 /* We're seeing some problems with unsolicited hot plug events on
1673 * PantherPoint after S3, if this is not enabled */
1674 if (codec->vendor_id == 0x80862806)
1675 codec->bus->power_keep_link_on = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001676 /*
1677 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1678 * can be lost and presence sense verb will become inaccurate if the
1679 * HDA link is powered off at hot plug or hw initialization time.
1680 */
David Henningssonc9adeef2012-11-07 09:22:33 +01001681 else if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
Wu Fengguang079d88c2010-03-08 10:44:23 +08001682 AC_PWRST_EPSS))
1683 codec->bus->power_keep_link_on = 1;
1684#endif
1685
1686 return 0;
1687}
1688
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001689/*
1690 */
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001691static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
1692{
1693 struct hda_spdif_out *spdif;
1694 bool non_pcm;
1695
1696 mutex_lock(&codec->spdif_mutex);
1697 spdif = snd_hda_spdif_out_of_nid(codec, cvt_nid);
1698 non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO);
1699 mutex_unlock(&codec->spdif_mutex);
1700 return non_pcm;
1701}
1702
1703
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001704/*
1705 * HDMI callbacks
1706 */
1707
1708static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1709 struct hda_codec *codec,
1710 unsigned int stream_tag,
1711 unsigned int format,
1712 struct snd_pcm_substream *substream)
1713{
Stephen Warren384a48d2011-06-01 11:14:21 -06001714 hda_nid_t cvt_nid = hinfo->nid;
1715 struct hdmi_spec *spec = codec->spec;
1716 int pin_idx = hinfo_to_pin_index(spec, hinfo);
Takashi Iwaib0540872013-09-02 12:33:02 +02001717 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
1718 hda_nid_t pin_nid = per_pin->pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001719 bool non_pcm;
1720
1721 non_pcm = check_non_pcm_per_cvt(codec, cvt_nid);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001722 mutex_lock(&per_pin->lock);
Takashi Iwaib0540872013-09-02 12:33:02 +02001723 per_pin->channels = substream->runtime->channels;
1724 per_pin->setup = true;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001725
Takashi Iwaib0540872013-09-02 12:33:02 +02001726 hdmi_setup_audio_infoframe(codec, per_pin, non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001727 mutex_unlock(&per_pin->lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06001728
Anssi Hannula307229d2013-10-24 21:10:34 +03001729 return spec->ops.setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001730}
1731
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001732static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1733 struct hda_codec *codec,
1734 struct snd_pcm_substream *substream)
1735{
1736 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
1737 return 0;
1738}
1739
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001740static int hdmi_pcm_close(struct hda_pcm_stream *hinfo,
1741 struct hda_codec *codec,
1742 struct snd_pcm_substream *substream)
Stephen Warren384a48d2011-06-01 11:14:21 -06001743{
1744 struct hdmi_spec *spec = codec->spec;
1745 int cvt_idx, pin_idx;
1746 struct hdmi_spec_per_cvt *per_cvt;
1747 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001748
Stephen Warren384a48d2011-06-01 11:14:21 -06001749 if (hinfo->nid) {
1750 cvt_idx = cvt_nid_to_cvt_index(spec, hinfo->nid);
1751 if (snd_BUG_ON(cvt_idx < 0))
1752 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001753 per_cvt = get_cvt(spec, cvt_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001754
1755 snd_BUG_ON(!per_cvt->assigned);
1756 per_cvt->assigned = 0;
1757 hinfo->nid = 0;
1758
1759 pin_idx = hinfo_to_pin_index(spec, hinfo);
1760 if (snd_BUG_ON(pin_idx < 0))
1761 return -EINVAL;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001762 per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001763
Stephen Warren384a48d2011-06-01 11:14:21 -06001764 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaicbbaa602013-10-17 18:03:24 +02001765
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001766 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001767 per_pin->chmap_set = false;
1768 memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
Takashi Iwaib0540872013-09-02 12:33:02 +02001769
1770 per_pin->setup = false;
1771 per_pin->channels = 0;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001772 mutex_unlock(&per_pin->lock);
Stephen Warren384a48d2011-06-01 11:14:21 -06001773 }
Takashi Iwaid45e6882012-07-31 11:36:00 +02001774
Stephen Warren384a48d2011-06-01 11:14:21 -06001775 return 0;
1776}
1777
1778static const struct hda_pcm_ops generic_ops = {
1779 .open = hdmi_pcm_open,
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001780 .close = hdmi_pcm_close,
Stephen Warren384a48d2011-06-01 11:14:21 -06001781 .prepare = generic_hdmi_playback_pcm_prepare,
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001782 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001783};
1784
Takashi Iwaid45e6882012-07-31 11:36:00 +02001785/*
1786 * ALSA API channel-map control callbacks
1787 */
1788static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
1789 struct snd_ctl_elem_info *uinfo)
1790{
1791 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1792 struct hda_codec *codec = info->private_data;
1793 struct hdmi_spec *spec = codec->spec;
1794 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1795 uinfo->count = spec->channels_max;
1796 uinfo->value.integer.min = 0;
1797 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
1798 return 0;
1799}
1800
Anssi Hannula307229d2013-10-24 21:10:34 +03001801static int hdmi_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
1802 int channels)
1803{
1804 /* If the speaker allocation matches the channel count, it is OK.*/
1805 if (cap->channels != channels)
1806 return -1;
1807
1808 /* all channels are remappable freely */
1809 return SNDRV_CTL_TLVT_CHMAP_VAR;
1810}
1811
1812static void hdmi_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
1813 unsigned int *chmap, int channels)
1814{
1815 int count = 0;
1816 int c;
1817
1818 for (c = 7; c >= 0; c--) {
1819 int spk = cap->speakers[c];
1820 if (!spk)
1821 continue;
1822
1823 chmap[count++] = spk_to_chmap(spk);
1824 }
1825
1826 WARN_ON(count != channels);
1827}
1828
Takashi Iwaid45e6882012-07-31 11:36:00 +02001829static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1830 unsigned int size, unsigned int __user *tlv)
1831{
1832 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1833 struct hda_codec *codec = info->private_data;
1834 struct hdmi_spec *spec = codec->spec;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001835 unsigned int __user *dst;
1836 int chs, count = 0;
1837
1838 if (size < 8)
1839 return -ENOMEM;
1840 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
1841 return -EFAULT;
1842 size -= 8;
1843 dst = tlv + 2;
Takashi Iwai498dab32012-09-10 16:08:40 +02001844 for (chs = 2; chs <= spec->channels_max; chs++) {
Anssi Hannula307229d2013-10-24 21:10:34 +03001845 int i;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001846 struct cea_channel_speaker_allocation *cap;
1847 cap = channel_allocations;
1848 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
1849 int chs_bytes = chs * 4;
Anssi Hannula307229d2013-10-24 21:10:34 +03001850 int type = spec->ops.chmap_cea_alloc_validate_get_type(cap, chs);
1851 unsigned int tlv_chmap[8];
1852
1853 if (type < 0)
Takashi Iwaid45e6882012-07-31 11:36:00 +02001854 continue;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001855 if (size < 8)
1856 return -ENOMEM;
Anssi Hannula307229d2013-10-24 21:10:34 +03001857 if (put_user(type, dst) ||
Takashi Iwaid45e6882012-07-31 11:36:00 +02001858 put_user(chs_bytes, dst + 1))
1859 return -EFAULT;
1860 dst += 2;
1861 size -= 8;
1862 count += 8;
1863 if (size < chs_bytes)
1864 return -ENOMEM;
1865 size -= chs_bytes;
1866 count += chs_bytes;
Anssi Hannula307229d2013-10-24 21:10:34 +03001867 spec->ops.cea_alloc_to_tlv_chmap(cap, tlv_chmap, chs);
1868 if (copy_to_user(dst, tlv_chmap, chs_bytes))
1869 return -EFAULT;
1870 dst += chs;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001871 }
1872 }
1873 if (put_user(count, tlv + 1))
1874 return -EFAULT;
1875 return 0;
1876}
1877
1878static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
1879 struct snd_ctl_elem_value *ucontrol)
1880{
1881 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1882 struct hda_codec *codec = info->private_data;
1883 struct hdmi_spec *spec = codec->spec;
1884 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001885 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001886 int i;
1887
1888 for (i = 0; i < ARRAY_SIZE(per_pin->chmap); i++)
1889 ucontrol->value.integer.value[i] = per_pin->chmap[i];
1890 return 0;
1891}
1892
1893static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
1894 struct snd_ctl_elem_value *ucontrol)
1895{
1896 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1897 struct hda_codec *codec = info->private_data;
1898 struct hdmi_spec *spec = codec->spec;
1899 int pin_idx = kcontrol->private_value;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001900 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001901 unsigned int ctl_idx;
1902 struct snd_pcm_substream *substream;
1903 unsigned char chmap[8];
Anssi Hannula307229d2013-10-24 21:10:34 +03001904 int i, err, ca, prepared = 0;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001905
1906 ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1907 substream = snd_pcm_chmap_substream(info, ctl_idx);
1908 if (!substream || !substream->runtime)
Takashi Iwai6f54c362013-01-15 14:44:41 +01001909 return 0; /* just for avoiding error from alsactl restore */
Takashi Iwaid45e6882012-07-31 11:36:00 +02001910 switch (substream->runtime->status->state) {
1911 case SNDRV_PCM_STATE_OPEN:
1912 case SNDRV_PCM_STATE_SETUP:
1913 break;
1914 case SNDRV_PCM_STATE_PREPARED:
1915 prepared = 1;
1916 break;
1917 default:
1918 return -EBUSY;
1919 }
1920 memset(chmap, 0, sizeof(chmap));
1921 for (i = 0; i < ARRAY_SIZE(chmap); i++)
1922 chmap[i] = ucontrol->value.integer.value[i];
1923 if (!memcmp(chmap, per_pin->chmap, sizeof(chmap)))
1924 return 0;
1925 ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
1926 if (ca < 0)
1927 return -EINVAL;
Anssi Hannula307229d2013-10-24 21:10:34 +03001928 if (spec->ops.chmap_validate) {
1929 err = spec->ops.chmap_validate(ca, ARRAY_SIZE(chmap), chmap);
1930 if (err)
1931 return err;
1932 }
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001933 mutex_lock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001934 per_pin->chmap_set = true;
1935 memcpy(per_pin->chmap, chmap, sizeof(chmap));
1936 if (prepared)
Takashi Iwaib0540872013-09-02 12:33:02 +02001937 hdmi_setup_audio_infoframe(codec, per_pin, per_pin->non_pcm);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02001938 mutex_unlock(&per_pin->lock);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001939
1940 return 0;
1941}
1942
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001943static int generic_hdmi_build_pcms(struct hda_codec *codec)
1944{
1945 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001946 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001947
Stephen Warren384a48d2011-06-01 11:14:21 -06001948 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1949 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001950 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001951 struct hdmi_spec_per_pin *per_pin;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001952
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001953 per_pin = get_pin(spec, pin_idx);
1954 sprintf(per_pin->pcm_name, "HDMI %d", pin_idx);
1955 info = snd_array_new(&spec->pcm_rec);
1956 if (!info)
1957 return -ENOMEM;
1958 info->name = per_pin->pcm_name;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001959 info->pcm_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001960 info->own_chmap = true;
Stephen Warren384a48d2011-06-01 11:14:21 -06001961
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001962 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06001963 pstr->substreams = 1;
1964 pstr->ops = generic_ops;
1965 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001966 }
1967
Stephen Warren384a48d2011-06-01 11:14:21 -06001968 codec->num_pcms = spec->num_pins;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001969 codec->pcm_info = spec->pcm_rec.list;
Stephen Warren384a48d2011-06-01 11:14:21 -06001970
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001971 return 0;
1972}
1973
David Henningsson0b6c49b2011-08-23 16:56:03 +02001974static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
1975{
Takashi Iwai31ef2252011-12-01 17:41:36 +01001976 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02001977 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001978 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
1979 int pcmdev = get_pcm_rec(spec, pin_idx)->device;
David Henningsson0b6c49b2011-08-23 16:56:03 +02001980
Takashi Iwai31ef2252011-12-01 17:41:36 +01001981 if (pcmdev > 0)
1982 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
David Henningsson30efd8d2013-02-22 10:16:28 +01001983 if (!is_jack_detectable(codec, per_pin->pin_nid))
1984 strncat(hdmi_str, " Phantom",
1985 sizeof(hdmi_str) - strlen(hdmi_str) - 1);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001986
Takashi Iwai31ef2252011-12-01 17:41:36 +01001987 return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001988}
1989
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001990static int generic_hdmi_build_controls(struct hda_codec *codec)
1991{
1992 struct hdmi_spec *spec = codec->spec;
1993 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001994 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001995
Stephen Warren384a48d2011-06-01 11:14:21 -06001996 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01001997 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001998
1999 err = generic_hdmi_build_jack(codec, pin_idx);
2000 if (err < 0)
2001 return err;
2002
Takashi Iwaidcda5802012-10-12 17:24:51 +02002003 err = snd_hda_create_dig_out_ctls(codec,
2004 per_pin->pin_nid,
2005 per_pin->mux_nids[0],
2006 HDA_PCM_TYPE_HDMI);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002007 if (err < 0)
2008 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06002009 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002010
2011 /* add control for ELD Bytes */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002012 err = hdmi_create_eld_ctl(codec, pin_idx,
2013 get_pcm_rec(spec, pin_idx)->device);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05002014
2015 if (err < 0)
2016 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01002017
Takashi Iwai82b1d732011-12-20 15:53:07 +01002018 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002019 }
2020
Takashi Iwaid45e6882012-07-31 11:36:00 +02002021 /* add channel maps */
2022 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2023 struct snd_pcm_chmap *chmap;
2024 struct snd_kcontrol *kctl;
2025 int i;
Takashi Iwai2ca320e2013-08-22 09:55:36 +02002026
2027 if (!codec->pcm_info[pin_idx].pcm)
2028 break;
Takashi Iwaid45e6882012-07-31 11:36:00 +02002029 err = snd_pcm_add_chmap_ctls(codec->pcm_info[pin_idx].pcm,
2030 SNDRV_PCM_STREAM_PLAYBACK,
2031 NULL, 0, pin_idx, &chmap);
2032 if (err < 0)
2033 return err;
2034 /* override handlers */
2035 chmap->private_data = codec;
2036 kctl = chmap->kctl;
2037 for (i = 0; i < kctl->count; i++)
2038 kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
2039 kctl->info = hdmi_chmap_ctl_info;
2040 kctl->get = hdmi_chmap_ctl_get;
2041 kctl->put = hdmi_chmap_ctl_put;
2042 kctl->tlv.c = hdmi_chmap_ctl_tlv;
2043 }
2044
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002045 return 0;
2046}
2047
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002048static int generic_hdmi_init_per_pins(struct hda_codec *codec)
2049{
2050 struct hdmi_spec *spec = codec->spec;
2051 int pin_idx;
2052
2053 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002054 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002055
2056 per_pin->codec = codec;
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002057 mutex_init(&per_pin->lock);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002058 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002059 eld_proc_new(per_pin, pin_idx);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002060 }
2061 return 0;
2062}
2063
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002064static int generic_hdmi_init(struct hda_codec *codec)
2065{
2066 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002067 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002068
Stephen Warren384a48d2011-06-01 11:14:21 -06002069 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002070 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002071 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06002072
2073 hdmi_init_pin(codec, pin_nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +02002074 snd_hda_jack_detect_enable(codec, pin_nid, pin_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002075 }
2076 return 0;
2077}
2078
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002079static void hdmi_array_init(struct hdmi_spec *spec, int nums)
2080{
2081 snd_array_init(&spec->pins, sizeof(struct hdmi_spec_per_pin), nums);
2082 snd_array_init(&spec->cvts, sizeof(struct hdmi_spec_per_cvt), nums);
2083 snd_array_init(&spec->pcm_rec, sizeof(struct hda_pcm), nums);
2084}
2085
2086static void hdmi_array_free(struct hdmi_spec *spec)
2087{
2088 snd_array_free(&spec->pins);
2089 snd_array_free(&spec->cvts);
2090 snd_array_free(&spec->pcm_rec);
2091}
2092
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002093static void generic_hdmi_free(struct hda_codec *codec)
2094{
2095 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06002096 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002097
Stephen Warren384a48d2011-06-01 11:14:21 -06002098 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002099 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06002100
Wu Fengguang744626d2011-11-16 16:29:47 +08002101 cancel_delayed_work(&per_pin->work);
Takashi Iwaia4e9a382013-10-17 18:21:12 +02002102 eld_proc_free(per_pin);
Stephen Warren384a48d2011-06-01 11:14:21 -06002103 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002104
Wu Fengguang744626d2011-11-16 16:29:47 +08002105 flush_workqueue(codec->bus->workq);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002106 hdmi_array_free(spec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002107 kfree(spec);
2108}
2109
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002110#ifdef CONFIG_PM
2111static int generic_hdmi_resume(struct hda_codec *codec)
2112{
2113 struct hdmi_spec *spec = codec->spec;
2114 int pin_idx;
2115
2116 generic_hdmi_init(codec);
2117 snd_hda_codec_resume_amp(codec);
2118 snd_hda_codec_resume_cache(codec);
2119
2120 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
2121 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
2122 hdmi_present_sense(per_pin, 1);
2123 }
2124 return 0;
2125}
2126#endif
2127
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002128static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002129 .init = generic_hdmi_init,
2130 .free = generic_hdmi_free,
2131 .build_pcms = generic_hdmi_build_pcms,
2132 .build_controls = generic_hdmi_build_controls,
2133 .unsol_event = hdmi_unsol_event,
Wang Xingchao28cb72e2013-06-24 07:45:23 -04002134#ifdef CONFIG_PM
2135 .resume = generic_hdmi_resume,
2136#endif
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002137};
2138
Anssi Hannula307229d2013-10-24 21:10:34 +03002139static const struct hdmi_ops generic_standard_hdmi_ops = {
2140 .pin_get_eld = snd_hdmi_get_eld,
2141 .pin_get_slot_channel = hdmi_pin_get_slot_channel,
2142 .pin_set_slot_channel = hdmi_pin_set_slot_channel,
2143 .pin_setup_infoframe = hdmi_pin_setup_infoframe,
2144 .pin_hbr_setup = hdmi_pin_hbr_setup,
2145 .setup_stream = hdmi_setup_stream,
2146 .chmap_cea_alloc_validate_get_type = hdmi_chmap_cea_alloc_validate_get_type,
2147 .cea_alloc_to_tlv_chmap = hdmi_cea_alloc_to_tlv_chmap,
2148};
2149
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002150
2151static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
2152 hda_nid_t nid)
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002153{
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002154 struct hdmi_spec *spec = codec->spec;
2155 hda_nid_t conns[4];
2156 int nconns;
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002157
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002158 nconns = snd_hda_get_connections(codec, nid, conns, ARRAY_SIZE(conns));
2159 if (nconns == spec->num_cvts &&
2160 !memcmp(conns, spec->cvt_nids, spec->num_cvts * sizeof(hda_nid_t)))
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002161 return;
2162
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002163 /* override pins connection list */
2164 snd_printdd("hdmi: haswell: override pin connection 0x%x\n", nid);
2165 snd_hda_override_conn_list(codec, nid, spec->num_cvts, spec->cvt_nids);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002166}
2167
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002168#define INTEL_VENDOR_NID 0x08
2169#define INTEL_GET_VENDOR_VERB 0xf81
2170#define INTEL_SET_VENDOR_VERB 0x781
2171#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
2172#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
2173
2174static void intel_haswell_enable_all_pins(struct hda_codec *codec,
Takashi Iwai17df3f52013-05-08 08:09:34 +02002175 bool update_tree)
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002176{
2177 unsigned int vendor_param;
2178
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002179 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2180 INTEL_GET_VENDOR_VERB, 0);
2181 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
2182 return;
2183
2184 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
2185 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2186 INTEL_SET_VENDOR_VERB, vendor_param);
2187 if (vendor_param == -1)
2188 return;
2189
Takashi Iwai17df3f52013-05-08 08:09:34 +02002190 if (update_tree)
2191 snd_hda_codec_update_widgets(codec);
Mengdong Lin1611a9c2013-02-08 17:09:52 -05002192}
2193
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002194static void intel_haswell_fixup_enable_dp12(struct hda_codec *codec)
2195{
2196 unsigned int vendor_param;
2197
2198 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
2199 INTEL_GET_VENDOR_VERB, 0);
2200 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
2201 return;
2202
2203 /* enable DP1.2 mode */
2204 vendor_param |= INTEL_EN_DP12;
2205 snd_hda_codec_write_cache(codec, INTEL_VENDOR_NID, 0,
2206 INTEL_SET_VENDOR_VERB, vendor_param);
2207}
2208
Takashi Iwai17df3f52013-05-08 08:09:34 +02002209/* Haswell needs to re-issue the vendor-specific verbs before turning to D0.
2210 * Otherwise you may get severe h/w communication errors.
2211 */
2212static void haswell_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2213 unsigned int power_state)
2214{
2215 if (power_state == AC_PWRST_D0) {
2216 intel_haswell_enable_all_pins(codec, false);
2217 intel_haswell_fixup_enable_dp12(codec);
2218 }
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002219
Takashi Iwai17df3f52013-05-08 08:09:34 +02002220 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, power_state);
2221 snd_hda_codec_set_power_to_all(codec, fg, power_state);
2222}
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002223
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002224static int patch_generic_hdmi(struct hda_codec *codec)
2225{
2226 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002227
2228 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2229 if (spec == NULL)
2230 return -ENOMEM;
2231
Anssi Hannula307229d2013-10-24 21:10:34 +03002232 spec->ops = generic_standard_hdmi_ops;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002233 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002234 hdmi_array_init(spec, 4);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002235
Mengdong Linfb87fa32013-09-04 16:36:57 -04002236 if (is_haswell(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002237 intel_haswell_enable_all_pins(codec, true);
Takashi Iwaic88d4e82013-02-08 17:10:04 -05002238 intel_haswell_fixup_enable_dp12(codec);
Takashi Iwai17df3f52013-05-08 08:09:34 +02002239 }
Mengdong Lin6ffe1682012-12-18 16:59:15 -05002240
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002241 if (hdmi_parse_codec(codec) < 0) {
2242 codec->spec = NULL;
2243 kfree(spec);
2244 return -EINVAL;
2245 }
2246 codec->patch_ops = generic_hdmi_patch_ops;
Mengdong Linfb87fa32013-09-04 16:36:57 -04002247 if (is_haswell(codec)) {
Takashi Iwai17df3f52013-05-08 08:09:34 +02002248 codec->patch_ops.set_power_state = haswell_set_power_state;
Mengdong Lin5dc989b2013-08-26 21:35:41 -04002249 codec->dp_mst = true;
2250 }
Takashi Iwai17df3f52013-05-08 08:09:34 +02002251
Takashi Iwai8b8d6542012-06-20 16:32:22 +02002252 generic_hdmi_init_per_pins(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002253
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002254 init_channel_allocations();
2255
2256 return 0;
2257}
2258
2259/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06002260 * Shared non-generic implementations
2261 */
2262
2263static int simple_playback_build_pcms(struct hda_codec *codec)
2264{
2265 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002266 struct hda_pcm *info;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002267 unsigned int chans;
2268 struct hda_pcm_stream *pstr;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002269 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002270
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002271 per_cvt = get_cvt(spec, 0);
2272 chans = get_wcaps(codec, per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002273 chans = get_wcaps_channels(chans);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002274
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002275 info = snd_array_new(&spec->pcm_rec);
2276 if (!info)
2277 return -ENOMEM;
2278 info->name = get_pin(spec, 0)->pcm_name;
2279 sprintf(info->name, "HDMI 0");
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002280 info->pcm_type = HDA_PCM_TYPE_HDMI;
2281 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
2282 *pstr = spec->pcm_playback;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002283 pstr->nid = per_cvt->cvt_nid;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002284 if (pstr->channels_max <= 2 && chans && chans <= 16)
2285 pstr->channels_max = chans;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002286
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002287 codec->num_pcms = 1;
2288 codec->pcm_info = info;
2289
Stephen Warren3aaf8982011-06-01 11:14:19 -06002290 return 0;
2291}
2292
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002293/* unsolicited event for jack sensing */
2294static void simple_hdmi_unsol_event(struct hda_codec *codec,
2295 unsigned int res)
2296{
Takashi Iwai9dd8cf12012-06-21 10:43:15 +02002297 snd_hda_jack_set_dirty_all(codec);
Takashi Iwai4b6ace92012-06-15 11:53:32 +02002298 snd_hda_jack_report_sync(codec);
2299}
2300
2301/* generic_hdmi_build_jack can be used for simple_hdmi, too,
2302 * as long as spec->pins[] is set correctly
2303 */
2304#define simple_hdmi_build_jack generic_hdmi_build_jack
2305
Stephen Warren3aaf8982011-06-01 11:14:19 -06002306static int simple_playback_build_controls(struct hda_codec *codec)
2307{
2308 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002309 struct hdmi_spec_per_cvt *per_cvt;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002310 int err;
Stephen Warren3aaf8982011-06-01 11:14:19 -06002311
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002312 per_cvt = get_cvt(spec, 0);
2313 err = snd_hda_create_spdif_out_ctls(codec, per_cvt->cvt_nid,
2314 per_cvt->cvt_nid);
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002315 if (err < 0)
2316 return err;
2317 return simple_hdmi_build_jack(codec, 0);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002318}
2319
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002320static int simple_playback_init(struct hda_codec *codec)
2321{
2322 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002323 struct hdmi_spec_per_pin *per_pin = get_pin(spec, 0);
2324 hda_nid_t pin = per_pin->pin_nid;
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002325
Takashi Iwai8ceb3322012-06-21 08:23:27 +02002326 snd_hda_codec_write(codec, pin, 0,
2327 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2328 /* some codecs require to unmute the pin */
2329 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
2330 snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2331 AMP_OUT_UNMUTE);
2332 snd_hda_jack_detect_enable(codec, pin, pin);
Takashi Iwai4f0110c2012-06-15 12:45:43 +02002333 return 0;
2334}
2335
Stephen Warren3aaf8982011-06-01 11:14:19 -06002336static void simple_playback_free(struct hda_codec *codec)
2337{
2338 struct hdmi_spec *spec = codec->spec;
2339
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002340 hdmi_array_free(spec);
Stephen Warren3aaf8982011-06-01 11:14:19 -06002341 kfree(spec);
2342}
2343
2344/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002345 * Nvidia specific implementations
2346 */
2347
2348#define Nv_VERB_SET_Channel_Allocation 0xF79
2349#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
2350#define Nv_VERB_SET_Audio_Protection_On 0xF98
2351#define Nv_VERB_SET_Audio_Protection_Off 0xF99
2352
2353#define nvhdmi_master_con_nid_7x 0x04
2354#define nvhdmi_master_pin_nid_7x 0x05
2355
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002356static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002357 /*front, rear, clfe, rear_surr */
2358 0x6, 0x8, 0xa, 0xc,
2359};
2360
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002361static const struct hda_verb nvhdmi_basic_init_7x_2ch[] = {
2362 /* set audio protect on */
2363 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2364 /* enable digital output on pin widget */
2365 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2366 {} /* terminator */
2367};
2368
2369static const struct hda_verb nvhdmi_basic_init_7x_8ch[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002370 /* set audio protect on */
2371 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
2372 /* enable digital output on pin widget */
2373 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2374 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2375 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2376 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2377 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
2378 {} /* terminator */
2379};
2380
2381#ifdef LIMITED_RATE_FMT_SUPPORT
2382/* support only the safe format and rate */
2383#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
2384#define SUPPORTED_MAXBPS 16
2385#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
2386#else
2387/* support all rates and formats */
2388#define SUPPORTED_RATES \
2389 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
2390 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
2391 SNDRV_PCM_RATE_192000)
2392#define SUPPORTED_MAXBPS 24
2393#define SUPPORTED_FORMATS \
2394 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
2395#endif
2396
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002397static int nvhdmi_7x_init_2ch(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002398{
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002399 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_2ch);
2400 return 0;
2401}
2402
2403static int nvhdmi_7x_init_8ch(struct hda_codec *codec)
2404{
2405 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_8ch);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002406 return 0;
2407}
2408
Nitin Daga393004b2011-01-10 21:49:31 +05302409static unsigned int channels_2_6_8[] = {
2410 2, 6, 8
2411};
2412
2413static unsigned int channels_2_8[] = {
2414 2, 8
2415};
2416
2417static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
2418 .count = ARRAY_SIZE(channels_2_6_8),
2419 .list = channels_2_6_8,
2420 .mask = 0,
2421};
2422
2423static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
2424 .count = ARRAY_SIZE(channels_2_8),
2425 .list = channels_2_8,
2426 .mask = 0,
2427};
2428
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002429static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
2430 struct hda_codec *codec,
2431 struct snd_pcm_substream *substream)
2432{
2433 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05302434 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
2435
2436 switch (codec->preset->id) {
2437 case 0x10de0002:
2438 case 0x10de0003:
2439 case 0x10de0005:
2440 case 0x10de0006:
2441 hw_constraints_channels = &hw_constraints_2_8_channels;
2442 break;
2443 case 0x10de0007:
2444 hw_constraints_channels = &hw_constraints_2_6_8_channels;
2445 break;
2446 default:
2447 break;
2448 }
2449
2450 if (hw_constraints_channels != NULL) {
2451 snd_pcm_hw_constraint_list(substream->runtime, 0,
2452 SNDRV_PCM_HW_PARAM_CHANNELS,
2453 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01002454 } else {
2455 snd_pcm_hw_constraint_step(substream->runtime, 0,
2456 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05302457 }
2458
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002459 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2460}
2461
2462static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
2463 struct hda_codec *codec,
2464 struct snd_pcm_substream *substream)
2465{
2466 struct hdmi_spec *spec = codec->spec;
2467 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2468}
2469
2470static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2471 struct hda_codec *codec,
2472 unsigned int stream_tag,
2473 unsigned int format,
2474 struct snd_pcm_substream *substream)
2475{
2476 struct hdmi_spec *spec = codec->spec;
2477 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2478 stream_tag, format, substream);
2479}
2480
Takashi Iwaid0b12522012-06-15 14:34:42 +02002481static const struct hda_pcm_stream simple_pcm_playback = {
2482 .substreams = 1,
2483 .channels_min = 2,
2484 .channels_max = 2,
2485 .ops = {
2486 .open = simple_playback_pcm_open,
2487 .close = simple_playback_pcm_close,
2488 .prepare = simple_playback_pcm_prepare
2489 },
2490};
2491
2492static const struct hda_codec_ops simple_hdmi_patch_ops = {
2493 .build_controls = simple_playback_build_controls,
2494 .build_pcms = simple_playback_build_pcms,
2495 .init = simple_playback_init,
2496 .free = simple_playback_free,
Takashi Iwai250e41a2012-06-15 14:40:21 +02002497 .unsol_event = simple_hdmi_unsol_event,
Takashi Iwaid0b12522012-06-15 14:34:42 +02002498};
2499
2500static int patch_simple_hdmi(struct hda_codec *codec,
2501 hda_nid_t cvt_nid, hda_nid_t pin_nid)
2502{
2503 struct hdmi_spec *spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002504 struct hdmi_spec_per_cvt *per_cvt;
2505 struct hdmi_spec_per_pin *per_pin;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002506
2507 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2508 if (!spec)
2509 return -ENOMEM;
2510
2511 codec->spec = spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002512 hdmi_array_init(spec, 1);
Takashi Iwaid0b12522012-06-15 14:34:42 +02002513
2514 spec->multiout.num_dacs = 0; /* no analog */
2515 spec->multiout.max_channels = 2;
2516 spec->multiout.dig_out_nid = cvt_nid;
2517 spec->num_cvts = 1;
2518 spec->num_pins = 1;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002519 per_pin = snd_array_new(&spec->pins);
2520 per_cvt = snd_array_new(&spec->cvts);
2521 if (!per_pin || !per_cvt) {
2522 simple_playback_free(codec);
2523 return -ENOMEM;
2524 }
2525 per_cvt->cvt_nid = cvt_nid;
2526 per_pin->pin_nid = pin_nid;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002527 spec->pcm_playback = simple_pcm_playback;
2528
2529 codec->patch_ops = simple_hdmi_patch_ops;
2530
2531 return 0;
2532}
2533
Aaron Plattner1f348522011-04-06 17:19:04 -07002534static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
2535 int channels)
2536{
2537 unsigned int chanmask;
2538 int chan = channels ? (channels - 1) : 1;
2539
2540 switch (channels) {
2541 default:
2542 case 0:
2543 case 2:
2544 chanmask = 0x00;
2545 break;
2546 case 4:
2547 chanmask = 0x08;
2548 break;
2549 case 6:
2550 chanmask = 0x0b;
2551 break;
2552 case 8:
2553 chanmask = 0x13;
2554 break;
2555 }
2556
2557 /* Set the audio infoframe channel allocation and checksum fields. The
2558 * channel count is computed implicitly by the hardware. */
2559 snd_hda_codec_write(codec, 0x1, 0,
2560 Nv_VERB_SET_Channel_Allocation, chanmask);
2561
2562 snd_hda_codec_write(codec, 0x1, 0,
2563 Nv_VERB_SET_Info_Frame_Checksum,
2564 (0x71 - chan - chanmask));
2565}
2566
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002567static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
2568 struct hda_codec *codec,
2569 struct snd_pcm_substream *substream)
2570{
2571 struct hdmi_spec *spec = codec->spec;
2572 int i;
2573
2574 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
2575 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
2576 for (i = 0; i < 4; i++) {
2577 /* set the stream id */
2578 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2579 AC_VERB_SET_CHANNEL_STREAMID, 0);
2580 /* set the stream format */
2581 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2582 AC_VERB_SET_STREAM_FORMAT, 0);
2583 }
2584
Aaron Plattner1f348522011-04-06 17:19:04 -07002585 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
2586 * streams are disabled. */
2587 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2588
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002589 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2590}
2591
2592static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
2593 struct hda_codec *codec,
2594 unsigned int stream_tag,
2595 unsigned int format,
2596 struct snd_pcm_substream *substream)
2597{
2598 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01002599 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002600 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06002601 struct hdmi_spec *spec = codec->spec;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002602 struct hda_spdif_out *spdif;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002603 struct hdmi_spec_per_cvt *per_cvt;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002604
2605 mutex_lock(&codec->spdif_mutex);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002606 per_cvt = get_cvt(spec, 0);
2607 spdif = snd_hda_spdif_out_of_nid(codec, per_cvt->cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002608
2609 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002610
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002611 dataDCC2 = 0x2;
2612
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002613 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06002614 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002615 snd_hda_codec_write(codec,
2616 nvhdmi_master_con_nid_7x,
2617 0,
2618 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002619 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002620
2621 /* set the stream id */
2622 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2623 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
2624
2625 /* set the stream format */
2626 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2627 AC_VERB_SET_STREAM_FORMAT, format);
2628
2629 /* turn on again (if needed) */
2630 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06002631 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002632 snd_hda_codec_write(codec,
2633 nvhdmi_master_con_nid_7x,
2634 0,
2635 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002636 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002637 snd_hda_codec_write(codec,
2638 nvhdmi_master_con_nid_7x,
2639 0,
2640 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2641 }
2642
2643 for (i = 0; i < 4; i++) {
2644 if (chs == 2)
2645 channel_id = 0;
2646 else
2647 channel_id = i * 2;
2648
2649 /* turn off SPDIF once;
2650 *otherwise the IEC958 bits won't be updated
2651 */
2652 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002653 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002654 snd_hda_codec_write(codec,
2655 nvhdmi_con_nids_7x[i],
2656 0,
2657 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002658 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002659 /* set the stream id */
2660 snd_hda_codec_write(codec,
2661 nvhdmi_con_nids_7x[i],
2662 0,
2663 AC_VERB_SET_CHANNEL_STREAMID,
2664 (stream_tag << 4) | channel_id);
2665 /* set the stream format */
2666 snd_hda_codec_write(codec,
2667 nvhdmi_con_nids_7x[i],
2668 0,
2669 AC_VERB_SET_STREAM_FORMAT,
2670 format);
2671 /* turn on again (if needed) */
2672 /* enable and set the channel status audio/data flag */
2673 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002674 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002675 snd_hda_codec_write(codec,
2676 nvhdmi_con_nids_7x[i],
2677 0,
2678 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002679 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002680 snd_hda_codec_write(codec,
2681 nvhdmi_con_nids_7x[i],
2682 0,
2683 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2684 }
2685 }
2686
Aaron Plattner1f348522011-04-06 17:19:04 -07002687 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002688
2689 mutex_unlock(&codec->spdif_mutex);
2690 return 0;
2691}
2692
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002693static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002694 .substreams = 1,
2695 .channels_min = 2,
2696 .channels_max = 8,
2697 .nid = nvhdmi_master_con_nid_7x,
2698 .rates = SUPPORTED_RATES,
2699 .maxbps = SUPPORTED_MAXBPS,
2700 .formats = SUPPORTED_FORMATS,
2701 .ops = {
2702 .open = simple_playback_pcm_open,
2703 .close = nvhdmi_8ch_7x_pcm_close,
2704 .prepare = nvhdmi_8ch_7x_pcm_prepare
2705 },
2706};
2707
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002708static int patch_nvhdmi_2ch(struct hda_codec *codec)
2709{
2710 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002711 int err = patch_simple_hdmi(codec, nvhdmi_master_con_nid_7x,
2712 nvhdmi_master_pin_nid_7x);
2713 if (err < 0)
2714 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002715
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002716 codec->patch_ops.init = nvhdmi_7x_init_2ch;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002717 /* override the PCM rates, etc, as the codec doesn't give full list */
2718 spec = codec->spec;
2719 spec->pcm_playback.rates = SUPPORTED_RATES;
2720 spec->pcm_playback.maxbps = SUPPORTED_MAXBPS;
2721 spec->pcm_playback.formats = SUPPORTED_FORMATS;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002722 return 0;
2723}
2724
Takashi Iwai53775b02012-08-01 12:17:41 +02002725static int nvhdmi_7x_8ch_build_pcms(struct hda_codec *codec)
2726{
2727 struct hdmi_spec *spec = codec->spec;
2728 int err = simple_playback_build_pcms(codec);
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002729 if (!err) {
2730 struct hda_pcm *info = get_pcm_rec(spec, 0);
2731 info->own_chmap = true;
2732 }
Takashi Iwai53775b02012-08-01 12:17:41 +02002733 return err;
2734}
2735
2736static int nvhdmi_7x_8ch_build_controls(struct hda_codec *codec)
2737{
2738 struct hdmi_spec *spec = codec->spec;
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002739 struct hda_pcm *info;
Takashi Iwai53775b02012-08-01 12:17:41 +02002740 struct snd_pcm_chmap *chmap;
2741 int err;
2742
2743 err = simple_playback_build_controls(codec);
2744 if (err < 0)
2745 return err;
2746
2747 /* add channel maps */
Takashi Iwaibce0d2a2013-03-13 14:40:31 +01002748 info = get_pcm_rec(spec, 0);
2749 err = snd_pcm_add_chmap_ctls(info->pcm,
Takashi Iwai53775b02012-08-01 12:17:41 +02002750 SNDRV_PCM_STREAM_PLAYBACK,
2751 snd_pcm_alt_chmaps, 8, 0, &chmap);
2752 if (err < 0)
2753 return err;
2754 switch (codec->preset->id) {
2755 case 0x10de0002:
2756 case 0x10de0003:
2757 case 0x10de0005:
2758 case 0x10de0006:
2759 chmap->channel_mask = (1U << 2) | (1U << 8);
2760 break;
2761 case 0x10de0007:
2762 chmap->channel_mask = (1U << 2) | (1U << 6) | (1U << 8);
2763 }
2764 return 0;
2765}
2766
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002767static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
2768{
2769 struct hdmi_spec *spec;
2770 int err = patch_nvhdmi_2ch(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002771 if (err < 0)
2772 return err;
2773 spec = codec->spec;
2774 spec->multiout.max_channels = 8;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002775 spec->pcm_playback = nvhdmi_pcm_playback_8ch_7x;
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002776 codec->patch_ops.init = nvhdmi_7x_init_8ch;
Takashi Iwai53775b02012-08-01 12:17:41 +02002777 codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms;
2778 codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls;
Aaron Plattner1f348522011-04-06 17:19:04 -07002779
2780 /* Initialize the audio infoframe channel mask and checksum to something
2781 * valid */
2782 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2783
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002784 return 0;
2785}
2786
2787/*
Anssi Hannula5a6135842013-10-24 21:10:35 +03002788 * ATI/AMD-specific implementations
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002789 */
2790
Anssi Hannula5a6135842013-10-24 21:10:35 +03002791#define is_amdhdmi_rev3_or_later(codec) \
2792 ((codec)->vendor_id == 0x1002aa01 && ((codec)->revision_id & 0xff00) >= 0x0300)
2793#define has_amd_full_remap_support(codec) is_amdhdmi_rev3_or_later(codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002794
Anssi Hannula5a6135842013-10-24 21:10:35 +03002795/* ATI/AMD specific HDA pin verbs, see the AMD HDA Verbs specification */
2796#define ATI_VERB_SET_CHANNEL_ALLOCATION 0x771
2797#define ATI_VERB_SET_DOWNMIX_INFO 0x772
2798#define ATI_VERB_SET_MULTICHANNEL_01 0x777
2799#define ATI_VERB_SET_MULTICHANNEL_23 0x778
2800#define ATI_VERB_SET_MULTICHANNEL_45 0x779
2801#define ATI_VERB_SET_MULTICHANNEL_67 0x77a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03002802#define ATI_VERB_SET_HBR_CONTROL 0x77c
Anssi Hannula5a6135842013-10-24 21:10:35 +03002803#define ATI_VERB_SET_MULTICHANNEL_1 0x785
2804#define ATI_VERB_SET_MULTICHANNEL_3 0x786
2805#define ATI_VERB_SET_MULTICHANNEL_5 0x787
2806#define ATI_VERB_SET_MULTICHANNEL_7 0x788
2807#define ATI_VERB_SET_MULTICHANNEL_MODE 0x789
2808#define ATI_VERB_GET_CHANNEL_ALLOCATION 0xf71
2809#define ATI_VERB_GET_DOWNMIX_INFO 0xf72
2810#define ATI_VERB_GET_MULTICHANNEL_01 0xf77
2811#define ATI_VERB_GET_MULTICHANNEL_23 0xf78
2812#define ATI_VERB_GET_MULTICHANNEL_45 0xf79
2813#define ATI_VERB_GET_MULTICHANNEL_67 0xf7a
Anssi Hannula461cf6b2013-10-24 21:10:37 +03002814#define ATI_VERB_GET_HBR_CONTROL 0xf7c
Anssi Hannula5a6135842013-10-24 21:10:35 +03002815#define ATI_VERB_GET_MULTICHANNEL_1 0xf85
2816#define ATI_VERB_GET_MULTICHANNEL_3 0xf86
2817#define ATI_VERB_GET_MULTICHANNEL_5 0xf87
2818#define ATI_VERB_GET_MULTICHANNEL_7 0xf88
2819#define ATI_VERB_GET_MULTICHANNEL_MODE 0xf89
2820
Anssi Hannula84d69e72013-10-24 21:10:38 +03002821/* AMD specific HDA cvt verbs */
2822#define ATI_VERB_SET_RAMP_RATE 0x770
2823#define ATI_VERB_GET_RAMP_RATE 0xf70
2824
Anssi Hannula5a6135842013-10-24 21:10:35 +03002825#define ATI_OUT_ENABLE 0x1
2826
2827#define ATI_MULTICHANNEL_MODE_PAIRED 0
2828#define ATI_MULTICHANNEL_MODE_SINGLE 1
2829
Anssi Hannula461cf6b2013-10-24 21:10:37 +03002830#define ATI_HBR_CAPABLE 0x01
2831#define ATI_HBR_ENABLE 0x10
2832
Anssi Hannula89250f82013-10-24 21:10:36 +03002833static int atihdmi_pin_get_eld(struct hda_codec *codec, hda_nid_t nid,
2834 unsigned char *buf, int *eld_size)
2835{
2836 /* call hda_eld.c ATI/AMD-specific function */
2837 return snd_hdmi_get_eld_ati(codec, nid, buf, eld_size,
2838 is_amdhdmi_rev3_or_later(codec));
2839}
2840
Anssi Hannula5a6135842013-10-24 21:10:35 +03002841static void atihdmi_pin_setup_infoframe(struct hda_codec *codec, hda_nid_t pin_nid, int ca,
2842 int active_channels, int conn_type)
2843{
2844 snd_hda_codec_write(codec, pin_nid, 0, ATI_VERB_SET_CHANNEL_ALLOCATION, ca);
2845}
2846
2847static int atihdmi_paired_swap_fc_lfe(int pos)
2848{
2849 /*
2850 * ATI/AMD have automatic FC/LFE swap built-in
2851 * when in pairwise mapping mode.
2852 */
2853
2854 switch (pos) {
2855 /* see channel_allocations[].speakers[] */
2856 case 2: return 3;
2857 case 3: return 2;
2858 default: break;
2859 }
2860
2861 return pos;
2862}
2863
2864static int atihdmi_paired_chmap_validate(int ca, int chs, unsigned char *map)
2865{
2866 struct cea_channel_speaker_allocation *cap;
2867 int i, j;
2868
2869 /* check that only channel pairs need to be remapped on old pre-rev3 ATI/AMD */
2870
2871 cap = &channel_allocations[get_channel_allocation_order(ca)];
2872 for (i = 0; i < chs; ++i) {
2873 int mask = to_spk_mask(map[i]);
2874 bool ok = false;
2875 bool companion_ok = false;
2876
2877 if (!mask)
2878 continue;
2879
2880 for (j = 0 + i % 2; j < 8; j += 2) {
2881 int chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j);
2882 if (cap->speakers[chan_idx] == mask) {
2883 /* channel is in a supported position */
2884 ok = true;
2885
2886 if (i % 2 == 0 && i + 1 < chs) {
2887 /* even channel, check the odd companion */
2888 int comp_chan_idx = 7 - atihdmi_paired_swap_fc_lfe(j + 1);
2889 int comp_mask_req = to_spk_mask(map[i+1]);
2890 int comp_mask_act = cap->speakers[comp_chan_idx];
2891
2892 if (comp_mask_req == comp_mask_act)
2893 companion_ok = true;
2894 else
2895 return -EINVAL;
2896 }
2897 break;
2898 }
2899 }
2900
2901 if (!ok)
2902 return -EINVAL;
2903
2904 if (companion_ok)
2905 i++; /* companion channel already checked */
2906 }
2907
2908 return 0;
2909}
2910
2911static int atihdmi_pin_set_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
2912 int hdmi_slot, int stream_channel)
2913{
2914 int verb;
2915 int ati_channel_setup = 0;
2916
2917 if (hdmi_slot > 7)
2918 return -EINVAL;
2919
2920 if (!has_amd_full_remap_support(codec)) {
2921 hdmi_slot = atihdmi_paired_swap_fc_lfe(hdmi_slot);
2922
2923 /* In case this is an odd slot but without stream channel, do not
2924 * disable the slot since the corresponding even slot could have a
2925 * channel. In case neither have a channel, the slot pair will be
2926 * disabled when this function is called for the even slot. */
2927 if (hdmi_slot % 2 != 0 && stream_channel == 0xf)
2928 return 0;
2929
2930 hdmi_slot -= hdmi_slot % 2;
2931
2932 if (stream_channel != 0xf)
2933 stream_channel -= stream_channel % 2;
2934 }
2935
2936 verb = ATI_VERB_SET_MULTICHANNEL_01 + hdmi_slot/2 + (hdmi_slot % 2) * 0x00e;
2937
2938 /* ati_channel_setup format: [7..4] = stream_channel_id, [1] = mute, [0] = enable */
2939
2940 if (stream_channel != 0xf)
2941 ati_channel_setup = (stream_channel << 4) | ATI_OUT_ENABLE;
2942
2943 return snd_hda_codec_write(codec, pin_nid, 0, verb, ati_channel_setup);
2944}
2945
2946static int atihdmi_pin_get_slot_channel(struct hda_codec *codec, hda_nid_t pin_nid,
2947 int asp_slot)
2948{
2949 bool was_odd = false;
2950 int ati_asp_slot = asp_slot;
2951 int verb;
2952 int ati_channel_setup;
2953
2954 if (asp_slot > 7)
2955 return -EINVAL;
2956
2957 if (!has_amd_full_remap_support(codec)) {
2958 ati_asp_slot = atihdmi_paired_swap_fc_lfe(asp_slot);
2959 if (ati_asp_slot % 2 != 0) {
2960 ati_asp_slot -= 1;
2961 was_odd = true;
2962 }
2963 }
2964
2965 verb = ATI_VERB_GET_MULTICHANNEL_01 + ati_asp_slot/2 + (ati_asp_slot % 2) * 0x00e;
2966
2967 ati_channel_setup = snd_hda_codec_read(codec, pin_nid, 0, verb, 0);
2968
2969 if (!(ati_channel_setup & ATI_OUT_ENABLE))
2970 return 0xf;
2971
2972 return ((ati_channel_setup & 0xf0) >> 4) + !!was_odd;
2973}
2974
2975static int atihdmi_paired_chmap_cea_alloc_validate_get_type(struct cea_channel_speaker_allocation *cap,
2976 int channels)
2977{
2978 int c;
2979
2980 /*
2981 * Pre-rev3 ATI/AMD codecs operate in a paired channel mode, so
2982 * we need to take that into account (a single channel may take 2
2983 * channel slots if we need to carry a silent channel next to it).
2984 * On Rev3+ AMD codecs this function is not used.
2985 */
2986 int chanpairs = 0;
2987
2988 /* We only produce even-numbered channel count TLVs */
2989 if ((channels % 2) != 0)
2990 return -1;
2991
2992 for (c = 0; c < 7; c += 2) {
2993 if (cap->speakers[c] || cap->speakers[c+1])
2994 chanpairs++;
2995 }
2996
2997 if (chanpairs * 2 != channels)
2998 return -1;
2999
3000 return SNDRV_CTL_TLVT_CHMAP_PAIRED;
3001}
3002
3003static void atihdmi_paired_cea_alloc_to_tlv_chmap(struct cea_channel_speaker_allocation *cap,
3004 unsigned int *chmap, int channels)
3005{
3006 /* produce paired maps for pre-rev3 ATI/AMD codecs */
3007 int count = 0;
3008 int c;
3009
3010 for (c = 7; c >= 0; c--) {
3011 int chan = 7 - atihdmi_paired_swap_fc_lfe(7 - c);
3012 int spk = cap->speakers[chan];
3013 if (!spk) {
3014 /* add N/A channel if the companion channel is occupied */
3015 if (cap->speakers[chan + (chan % 2 ? -1 : 1)])
3016 chmap[count++] = SNDRV_CHMAP_NA;
3017
3018 continue;
3019 }
3020
3021 chmap[count++] = spk_to_chmap(spk);
3022 }
3023
3024 WARN_ON(count != channels);
3025}
3026
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003027static int atihdmi_pin_hbr_setup(struct hda_codec *codec, hda_nid_t pin_nid,
3028 bool hbr)
3029{
3030 int hbr_ctl, hbr_ctl_new;
3031
3032 hbr_ctl = snd_hda_codec_read(codec, pin_nid, 0, ATI_VERB_GET_HBR_CONTROL, 0);
3033 if (hbr_ctl & ATI_HBR_CAPABLE) {
3034 if (hbr)
3035 hbr_ctl_new = hbr_ctl | ATI_HBR_ENABLE;
3036 else
3037 hbr_ctl_new = hbr_ctl & ~ATI_HBR_ENABLE;
3038
3039 snd_printdd("atihdmi_pin_hbr_setup: "
3040 "NID=0x%x, %shbr-ctl=0x%x\n",
3041 pin_nid,
3042 hbr_ctl == hbr_ctl_new ? "" : "new-",
3043 hbr_ctl_new);
3044
3045 if (hbr_ctl != hbr_ctl_new)
3046 snd_hda_codec_write(codec, pin_nid, 0,
3047 ATI_VERB_SET_HBR_CONTROL,
3048 hbr_ctl_new);
3049
3050 } else if (hbr)
3051 return -EINVAL;
3052
3053 return 0;
3054}
3055
Anssi Hannula84d69e72013-10-24 21:10:38 +03003056static int atihdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
3057 hda_nid_t pin_nid, u32 stream_tag, int format)
3058{
3059
3060 if (is_amdhdmi_rev3_or_later(codec)) {
3061 int ramp_rate = 180; /* default as per AMD spec */
3062 /* disable ramp-up/down for non-pcm as per AMD spec */
3063 if (format & AC_FMT_TYPE_NON_PCM)
3064 ramp_rate = 0;
3065
3066 snd_hda_codec_write(codec, cvt_nid, 0, ATI_VERB_SET_RAMP_RATE, ramp_rate);
3067 }
3068
3069 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
3070}
3071
3072
Anssi Hannula5a6135842013-10-24 21:10:35 +03003073static int atihdmi_init(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003074{
3075 struct hdmi_spec *spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003076 int pin_idx, err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003077
Anssi Hannula5a6135842013-10-24 21:10:35 +03003078 err = generic_hdmi_init(codec);
3079
3080 if (err)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003081 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003082
3083 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
3084 struct hdmi_spec_per_pin *per_pin = get_pin(spec, pin_idx);
3085
3086 /* make sure downmix information in infoframe is zero */
3087 snd_hda_codec_write(codec, per_pin->pin_nid, 0, ATI_VERB_SET_DOWNMIX_INFO, 0);
3088
3089 /* enable channel-wise remap mode if supported */
3090 if (has_amd_full_remap_support(codec))
3091 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
3092 ATI_VERB_SET_MULTICHANNEL_MODE,
3093 ATI_MULTICHANNEL_MODE_SINGLE);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003094 }
Anssi Hannula5a6135842013-10-24 21:10:35 +03003095
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003096 return 0;
3097}
3098
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003099static int patch_atihdmi(struct hda_codec *codec)
3100{
3101 struct hdmi_spec *spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003102 struct hdmi_spec_per_cvt *per_cvt;
3103 int err, cvt_idx;
3104
3105 err = patch_generic_hdmi(codec);
3106
3107 if (err)
Takashi Iwaid0b12522012-06-15 14:34:42 +02003108 return err;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003109
3110 codec->patch_ops.init = atihdmi_init;
3111
Takashi Iwaid0b12522012-06-15 14:34:42 +02003112 spec = codec->spec;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003113
Anssi Hannula89250f82013-10-24 21:10:36 +03003114 spec->ops.pin_get_eld = atihdmi_pin_get_eld;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003115 spec->ops.pin_get_slot_channel = atihdmi_pin_get_slot_channel;
3116 spec->ops.pin_set_slot_channel = atihdmi_pin_set_slot_channel;
3117 spec->ops.pin_setup_infoframe = atihdmi_pin_setup_infoframe;
Anssi Hannula461cf6b2013-10-24 21:10:37 +03003118 spec->ops.pin_hbr_setup = atihdmi_pin_hbr_setup;
Anssi Hannula84d69e72013-10-24 21:10:38 +03003119 spec->ops.setup_stream = atihdmi_setup_stream;
Anssi Hannula5a6135842013-10-24 21:10:35 +03003120
3121 if (!has_amd_full_remap_support(codec)) {
3122 /* override to ATI/AMD-specific versions with pairwise mapping */
3123 spec->ops.chmap_cea_alloc_validate_get_type =
3124 atihdmi_paired_chmap_cea_alloc_validate_get_type;
3125 spec->ops.cea_alloc_to_tlv_chmap = atihdmi_paired_cea_alloc_to_tlv_chmap;
3126 spec->ops.chmap_validate = atihdmi_paired_chmap_validate;
3127 }
3128
3129 /* ATI/AMD converters do not advertise all of their capabilities */
3130 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
3131 per_cvt = get_cvt(spec, cvt_idx);
3132 per_cvt->channels_max = max(per_cvt->channels_max, 8u);
3133 per_cvt->rates |= SUPPORTED_RATES;
3134 per_cvt->formats |= SUPPORTED_FORMATS;
3135 per_cvt->maxbps = max(per_cvt->maxbps, 24u);
3136 }
3137
3138 spec->channels_max = max(spec->channels_max, 8u);
3139
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003140 return 0;
3141}
3142
Annie Liu3de5ff82012-06-08 19:18:42 +08003143/* VIA HDMI Implementation */
3144#define VIAHDMI_CVT_NID 0x02 /* audio converter1 */
3145#define VIAHDMI_PIN_NID 0x03 /* HDMI output pin1 */
3146
Annie Liu3de5ff82012-06-08 19:18:42 +08003147static int patch_via_hdmi(struct hda_codec *codec)
3148{
Takashi Iwai250e41a2012-06-15 14:40:21 +02003149 return patch_simple_hdmi(codec, VIAHDMI_CVT_NID, VIAHDMI_PIN_NID);
Annie Liu3de5ff82012-06-08 19:18:42 +08003150}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003151
3152/*
3153 * patch entries
3154 */
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02003155static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003156{ .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
3157{ .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
3158{ .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
Anssi Hannula5a6135842013-10-24 21:10:35 +03003159{ .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_atihdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003160{ .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
3161{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
3162{ .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
3163{ .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3164{ .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3165{ .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3166{ .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
3167{ .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
Stephen Warren5d44f922011-05-24 17:11:17 -06003168{ .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_generic_hdmi },
3169{ .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_generic_hdmi },
3170{ .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_generic_hdmi },
3171{ .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_generic_hdmi },
3172{ .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_generic_hdmi },
3173{ .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_generic_hdmi },
3174{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_generic_hdmi },
3175{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_generic_hdmi },
3176{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_generic_hdmi },
3177{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_generic_hdmi },
3178{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_generic_hdmi },
Richard Samsonc8900a02011-03-03 12:46:13 +01003179/* 17 is known to be absent */
Stephen Warren5d44f922011-05-24 17:11:17 -06003180{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_generic_hdmi },
3181{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_generic_hdmi },
3182{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_generic_hdmi },
3183{ .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_generic_hdmi },
3184{ .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_generic_hdmi },
3185{ .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_generic_hdmi },
3186{ .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_generic_hdmi },
3187{ .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_generic_hdmi },
3188{ .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_generic_hdmi },
3189{ .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_generic_hdmi },
Aaron Plattner7ae48b52012-07-16 17:10:04 -07003190{ .id = 0x10de0051, .name = "GPU 51 HDMI/DP", .patch = patch_generic_hdmi },
Aaron Plattnerd52392b2013-07-12 11:01:37 -07003191{ .id = 0x10de0060, .name = "GPU 60 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003192{ .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
3193{ .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
Annie Liu3de5ff82012-06-08 19:18:42 +08003194{ .id = 0x11069f80, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
3195{ .id = 0x11069f81, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
3196{ .id = 0x11069f84, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
3197{ .id = 0x11069f85, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003198{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
3199{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
3200{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
3201{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
3202{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
3203{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang591e6102011-05-20 15:35:43 +08003204{ .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
Wang Xingchao1c766842012-06-13 10:23:52 +08003205{ .id = 0x80862807, .name = "Haswell HDMI", .patch = patch_generic_hdmi },
Wu Fengguang6edc59e2012-02-23 15:07:44 +08003206{ .id = 0x80862880, .name = "CedarTrail HDMI", .patch = patch_generic_hdmi },
Mengdong Lincc1a95d2013-10-20 23:03:31 -04003207{ .id = 0x80862882, .name = "Valleyview2 HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003208{ .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi },
3209{} /* terminator */
3210};
3211
3212MODULE_ALIAS("snd-hda-codec-id:1002793c");
3213MODULE_ALIAS("snd-hda-codec-id:10027919");
3214MODULE_ALIAS("snd-hda-codec-id:1002791a");
3215MODULE_ALIAS("snd-hda-codec-id:1002aa01");
3216MODULE_ALIAS("snd-hda-codec-id:10951390");
3217MODULE_ALIAS("snd-hda-codec-id:10951392");
3218MODULE_ALIAS("snd-hda-codec-id:10de0002");
3219MODULE_ALIAS("snd-hda-codec-id:10de0003");
3220MODULE_ALIAS("snd-hda-codec-id:10de0005");
3221MODULE_ALIAS("snd-hda-codec-id:10de0006");
3222MODULE_ALIAS("snd-hda-codec-id:10de0007");
3223MODULE_ALIAS("snd-hda-codec-id:10de000a");
3224MODULE_ALIAS("snd-hda-codec-id:10de000b");
3225MODULE_ALIAS("snd-hda-codec-id:10de000c");
3226MODULE_ALIAS("snd-hda-codec-id:10de000d");
3227MODULE_ALIAS("snd-hda-codec-id:10de0010");
3228MODULE_ALIAS("snd-hda-codec-id:10de0011");
3229MODULE_ALIAS("snd-hda-codec-id:10de0012");
3230MODULE_ALIAS("snd-hda-codec-id:10de0013");
3231MODULE_ALIAS("snd-hda-codec-id:10de0014");
Richard Samsonc8900a02011-03-03 12:46:13 +01003232MODULE_ALIAS("snd-hda-codec-id:10de0015");
3233MODULE_ALIAS("snd-hda-codec-id:10de0016");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003234MODULE_ALIAS("snd-hda-codec-id:10de0018");
3235MODULE_ALIAS("snd-hda-codec-id:10de0019");
3236MODULE_ALIAS("snd-hda-codec-id:10de001a");
3237MODULE_ALIAS("snd-hda-codec-id:10de001b");
3238MODULE_ALIAS("snd-hda-codec-id:10de001c");
3239MODULE_ALIAS("snd-hda-codec-id:10de0040");
3240MODULE_ALIAS("snd-hda-codec-id:10de0041");
3241MODULE_ALIAS("snd-hda-codec-id:10de0042");
3242MODULE_ALIAS("snd-hda-codec-id:10de0043");
3243MODULE_ALIAS("snd-hda-codec-id:10de0044");
Aaron Plattner7ae48b52012-07-16 17:10:04 -07003244MODULE_ALIAS("snd-hda-codec-id:10de0051");
Aaron Plattnerd52392b2013-07-12 11:01:37 -07003245MODULE_ALIAS("snd-hda-codec-id:10de0060");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003246MODULE_ALIAS("snd-hda-codec-id:10de0067");
3247MODULE_ALIAS("snd-hda-codec-id:10de8001");
Annie Liu3de5ff82012-06-08 19:18:42 +08003248MODULE_ALIAS("snd-hda-codec-id:11069f80");
3249MODULE_ALIAS("snd-hda-codec-id:11069f81");
3250MODULE_ALIAS("snd-hda-codec-id:11069f84");
3251MODULE_ALIAS("snd-hda-codec-id:11069f85");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003252MODULE_ALIAS("snd-hda-codec-id:17e80047");
3253MODULE_ALIAS("snd-hda-codec-id:80860054");
3254MODULE_ALIAS("snd-hda-codec-id:80862801");
3255MODULE_ALIAS("snd-hda-codec-id:80862802");
3256MODULE_ALIAS("snd-hda-codec-id:80862803");
3257MODULE_ALIAS("snd-hda-codec-id:80862804");
3258MODULE_ALIAS("snd-hda-codec-id:80862805");
Wu Fengguang591e6102011-05-20 15:35:43 +08003259MODULE_ALIAS("snd-hda-codec-id:80862806");
Wang Xingchao1c766842012-06-13 10:23:52 +08003260MODULE_ALIAS("snd-hda-codec-id:80862807");
Wu Fengguang6edc59e2012-02-23 15:07:44 +08003261MODULE_ALIAS("snd-hda-codec-id:80862880");
Mengdong Lincc1a95d2013-10-20 23:03:31 -04003262MODULE_ALIAS("snd-hda-codec-id:80862882");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02003263MODULE_ALIAS("snd-hda-codec-id:808629fb");
3264
3265MODULE_LICENSE("GPL");
3266MODULE_DESCRIPTION("HDMI HD-audio codec");
3267MODULE_ALIAS("snd-hda-codec-intelhdmi");
3268MODULE_ALIAS("snd-hda-codec-nvhdmi");
3269MODULE_ALIAS("snd-hda-codec-atihdmi");
3270
3271static struct hda_codec_preset_list intel_list = {
3272 .preset = snd_hda_preset_hdmi,
3273 .owner = THIS_MODULE,
3274};
3275
3276static int __init patch_hdmi_init(void)
3277{
3278 return snd_hda_add_codec_preset(&intel_list);
3279}
3280
3281static void __exit patch_hdmi_exit(void)
3282{
3283 snd_hda_delete_codec_preset(&intel_list);
3284}
3285
3286module_init(patch_hdmi_init)
3287module_exit(patch_hdmi_exit)