blob: a76139b6015427e00d7c68bc48b3cabd75828665 [file] [log] [blame]
Wu Fengguang079d88c2010-03-08 10:44:23 +08001/*
2 *
3 * patch_hdmi.c - routines for HDMI/DisplayPort codecs
4 *
5 * Copyright(c) 2008-2010 Intel Corporation. All rights reserved.
Takashi Iwai84eb01b2010-09-07 12:27:25 +02006 * Copyright (c) 2006 ATI Technologies Inc.
7 * Copyright (c) 2008 NVIDIA Corp. All rights reserved.
8 * Copyright (c) 2008 Wei Ni <wni@nvidia.com>
Wu Fengguang079d88c2010-03-08 10:44:23 +08009 *
10 * Authors:
11 * Wu Fengguang <wfg@linux.intel.com>
12 *
13 * Maintained by:
14 * Wu Fengguang <wfg@linux.intel.com>
15 *
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the Free
18 * Software Foundation; either version 2 of the License, or (at your option)
19 * any later version.
20 *
21 * This program is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
23 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 * for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software Foundation,
28 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 */
30
Takashi Iwai84eb01b2010-09-07 12:27:25 +020031#include <linux/init.h>
32#include <linux/delay.h>
33#include <linux/slab.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040034#include <linux/module.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020035#include <sound/core.h>
David Henningsson07acecc2011-05-19 11:46:03 +020036#include <sound/jack.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020037#include "hda_codec.h"
38#include "hda_local.h"
39
Takashi Iwai0ebaa242011-01-11 18:11:04 +010040static bool static_hdmi_pcm;
41module_param(static_hdmi_pcm, bool, 0644);
42MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info");
43
Takashi Iwai84eb01b2010-09-07 12:27:25 +020044/*
45 * The HDMI/DisplayPort configuration can be highly dynamic. A graphics device
Stephen Warren384a48d2011-06-01 11:14:21 -060046 * could support N independent pipes, each of them can be connected to one or
Takashi Iwai84eb01b2010-09-07 12:27:25 +020047 * more ports (DVI, HDMI or DisplayPort).
48 *
49 * The HDA correspondence of pipes/ports are converter/pin nodes.
50 */
Stephen Warren73926652011-05-25 12:42:13 -060051#define MAX_HDMI_CVTS 4
52#define MAX_HDMI_PINS 4
Wu Fengguang079d88c2010-03-08 10:44:23 +080053
Stephen Warren384a48d2011-06-01 11:14:21 -060054struct hdmi_spec_per_cvt {
55 hda_nid_t cvt_nid;
56 int assigned;
57 unsigned int channels_min;
58 unsigned int channels_max;
59 u32 rates;
60 u64 formats;
61 unsigned int maxbps;
62};
63
64struct hdmi_spec_per_pin {
65 hda_nid_t pin_nid;
66 int num_mux_nids;
67 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
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;
Wu Fengguang744626d2011-11-16 16:29:47 +080071 struct delayed_work work;
Stephen Warren384a48d2011-06-01 11:14:21 -060072};
73
Wu Fengguang079d88c2010-03-08 10:44:23 +080074struct hdmi_spec {
75 int num_cvts;
Stephen Warren384a48d2011-06-01 11:14:21 -060076 struct hdmi_spec_per_cvt cvts[MAX_HDMI_CVTS];
77
Wu Fengguang079d88c2010-03-08 10:44:23 +080078 int num_pins;
Stephen Warren384a48d2011-06-01 11:14:21 -060079 struct hdmi_spec_per_pin pins[MAX_HDMI_PINS];
80 struct hda_pcm pcm_rec[MAX_HDMI_PINS];
Wu Fengguang079d88c2010-03-08 10:44:23 +080081
82 /*
Stephen Warren384a48d2011-06-01 11:14:21 -060083 * Non-generic ATI/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +080084 */
85 struct hda_multi_out multiout;
Takashi Iwaifb79e1e2011-05-02 12:17:41 +020086 const struct hda_pcm_stream *pcm_playback;
Wu Fengguang079d88c2010-03-08 10:44:23 +080087};
88
89
90struct hdmi_audio_infoframe {
91 u8 type; /* 0x84 */
92 u8 ver; /* 0x01 */
93 u8 len; /* 0x0a */
94
Wu Fengguang53d7d692010-09-21 14:25:49 +080095 u8 checksum;
96
Wu Fengguang079d88c2010-03-08 10:44:23 +080097 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
98 u8 SS01_SF24;
99 u8 CXT04;
100 u8 CA;
101 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800102};
103
104struct dp_audio_infoframe {
105 u8 type; /* 0x84 */
106 u8 len; /* 0x1b */
107 u8 ver; /* 0x11 << 2 */
108
109 u8 CC02_CT47; /* match with HDMI infoframe from this on */
110 u8 SS01_SF24;
111 u8 CXT04;
112 u8 CA;
113 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800114};
115
Takashi Iwai2b203db2011-02-11 12:17:30 +0100116union audio_infoframe {
117 struct hdmi_audio_infoframe hdmi;
118 struct dp_audio_infoframe dp;
119 u8 bytes[0];
120};
121
Wu Fengguang079d88c2010-03-08 10:44:23 +0800122/*
123 * CEA speaker placement:
124 *
125 * FLH FCH FRH
126 * FLW FL FLC FC FRC FR FRW
127 *
128 * LFE
129 * TC
130 *
131 * RL RLC RC RRC RR
132 *
133 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
134 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
135 */
136enum cea_speaker_placement {
137 FL = (1 << 0), /* Front Left */
138 FC = (1 << 1), /* Front Center */
139 FR = (1 << 2), /* Front Right */
140 FLC = (1 << 3), /* Front Left Center */
141 FRC = (1 << 4), /* Front Right Center */
142 RL = (1 << 5), /* Rear Left */
143 RC = (1 << 6), /* Rear Center */
144 RR = (1 << 7), /* Rear Right */
145 RLC = (1 << 8), /* Rear Left Center */
146 RRC = (1 << 9), /* Rear Right Center */
147 LFE = (1 << 10), /* Low Frequency Effect */
148 FLW = (1 << 11), /* Front Left Wide */
149 FRW = (1 << 12), /* Front Right Wide */
150 FLH = (1 << 13), /* Front Left High */
151 FCH = (1 << 14), /* Front Center High */
152 FRH = (1 << 15), /* Front Right High */
153 TC = (1 << 16), /* Top Center */
154};
155
156/*
157 * ELD SA bits in the CEA Speaker Allocation data block
158 */
159static int eld_speaker_allocation_bits[] = {
160 [0] = FL | FR,
161 [1] = LFE,
162 [2] = FC,
163 [3] = RL | RR,
164 [4] = RC,
165 [5] = FLC | FRC,
166 [6] = RLC | RRC,
167 /* the following are not defined in ELD yet */
168 [7] = FLW | FRW,
169 [8] = FLH | FRH,
170 [9] = TC,
171 [10] = FCH,
172};
173
174struct cea_channel_speaker_allocation {
175 int ca_index;
176 int speakers[8];
177
178 /* derived values, just for convenience */
179 int channels;
180 int spk_mask;
181};
182
183/*
184 * ALSA sequence is:
185 *
186 * surround40 surround41 surround50 surround51 surround71
187 * ch0 front left = = = =
188 * ch1 front right = = = =
189 * ch2 rear left = = = =
190 * ch3 rear right = = = =
191 * ch4 LFE center center center
192 * ch5 LFE LFE
193 * ch6 side left
194 * ch7 side right
195 *
196 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
197 */
198static int hdmi_channel_mapping[0x32][8] = {
199 /* stereo */
200 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
201 /* 2.1 */
202 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
203 /* Dolby Surround */
204 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
205 /* surround40 */
206 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
207 /* 4ch */
208 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
209 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800210 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800211 /* surround50 */
212 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
213 /* surround51 */
214 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
215 /* 7.1 */
216 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
217};
218
219/*
220 * This is an ordered list!
221 *
222 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800223 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800224 */
225static struct cea_channel_speaker_allocation channel_allocations[] = {
226/* channel: 7 6 5 4 3 2 1 0 */
227{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
228 /* 2.1 */
229{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
230 /* Dolby Surround */
231{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
232 /* surround40 */
233{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
234 /* surround41 */
235{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
236 /* surround50 */
237{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
238 /* surround51 */
239{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
240 /* 6.1 */
241{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
242 /* surround71 */
243{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
244
245{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
246{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
247{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
248{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
249{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
250{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
251{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
252{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
253{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
254{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
255{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
256{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
257{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
258{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
259{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
260{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
261{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
262{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
263{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
264{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
265{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
266{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
267{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
268{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
269{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
270{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
271{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
272{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
273{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
274{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
275{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
276{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
277{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
278{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
279{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
280{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
281{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
282{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
283{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
284{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
285{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
286};
287
288
289/*
290 * HDMI routines
291 */
292
Stephen Warren384a48d2011-06-01 11:14:21 -0600293static int pin_nid_to_pin_index(struct hdmi_spec *spec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800294{
Stephen Warren384a48d2011-06-01 11:14:21 -0600295 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800296
Stephen Warren384a48d2011-06-01 11:14:21 -0600297 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
298 if (spec->pins[pin_idx].pin_nid == pin_nid)
299 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800300
Stephen Warren384a48d2011-06-01 11:14:21 -0600301 snd_printk(KERN_WARNING "HDMI: pin nid %d not registered\n", pin_nid);
302 return -EINVAL;
303}
304
305static int hinfo_to_pin_index(struct hdmi_spec *spec,
306 struct hda_pcm_stream *hinfo)
307{
308 int pin_idx;
309
310 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
311 if (&spec->pcm_rec[pin_idx].stream[0] == hinfo)
312 return pin_idx;
313
314 snd_printk(KERN_WARNING "HDMI: hinfo %p not registered\n", hinfo);
315 return -EINVAL;
316}
317
318static int cvt_nid_to_cvt_index(struct hdmi_spec *spec, hda_nid_t cvt_nid)
319{
320 int cvt_idx;
321
322 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
323 if (spec->cvts[cvt_idx].cvt_nid == cvt_nid)
324 return cvt_idx;
325
326 snd_printk(KERN_WARNING "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800327 return -EINVAL;
328}
329
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500330static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
331 struct snd_ctl_elem_info *uinfo)
332{
333 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
334 struct hdmi_spec *spec;
335 int pin_idx;
336
337 spec = codec->spec;
338 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
339
340 pin_idx = kcontrol->private_value;
341 uinfo->count = spec->pins[pin_idx].sink_eld.eld_size;
342
343 return 0;
344}
345
346static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
347 struct snd_ctl_elem_value *ucontrol)
348{
349 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
350 struct hdmi_spec *spec;
351 int pin_idx;
352
353 spec = codec->spec;
354 pin_idx = kcontrol->private_value;
355
356 memcpy(ucontrol->value.bytes.data,
357 spec->pins[pin_idx].sink_eld.eld_buffer, ELD_MAX_SIZE);
358
359 return 0;
360}
361
362static struct snd_kcontrol_new eld_bytes_ctl = {
363 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
364 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
365 .name = "ELD",
366 .info = hdmi_eld_ctl_info,
367 .get = hdmi_eld_ctl_get,
368};
369
370static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
371 int device)
372{
373 struct snd_kcontrol *kctl;
374 struct hdmi_spec *spec = codec->spec;
375 int err;
376
377 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
378 if (!kctl)
379 return -ENOMEM;
380 kctl->private_value = pin_idx;
381 kctl->id.device = device;
382
383 err = snd_hda_ctl_add(codec, spec->pins[pin_idx].pin_nid, kctl);
384 if (err < 0)
385 return err;
386
387 return 0;
388}
389
Wu Fengguang079d88c2010-03-08 10:44:23 +0800390#ifdef BE_PARANOID
391static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
392 int *packet_index, int *byte_index)
393{
394 int val;
395
396 val = snd_hda_codec_read(codec, pin_nid, 0,
397 AC_VERB_GET_HDMI_DIP_INDEX, 0);
398
399 *packet_index = val >> 5;
400 *byte_index = val & 0x1f;
401}
402#endif
403
404static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
405 int packet_index, int byte_index)
406{
407 int val;
408
409 val = (packet_index << 5) | (byte_index & 0x1f);
410
411 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
412}
413
414static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
415 unsigned char val)
416{
417 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
418}
419
Stephen Warren384a48d2011-06-01 11:14:21 -0600420static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800421{
422 /* Unmute */
423 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
424 snd_hda_codec_write(codec, pin_nid, 0,
425 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Stephen Warren384a48d2011-06-01 11:14:21 -0600426 /* Disable pin out until stream is active*/
Wu Fengguang079d88c2010-03-08 10:44:23 +0800427 snd_hda_codec_write(codec, pin_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -0600428 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800429}
430
Stephen Warren384a48d2011-06-01 11:14:21 -0600431static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800432{
Stephen Warren384a48d2011-06-01 11:14:21 -0600433 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800434 AC_VERB_GET_CVT_CHAN_COUNT, 0);
435}
436
437static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600438 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800439{
Stephen Warren384a48d2011-06-01 11:14:21 -0600440 if (chs != hdmi_get_channel_count(codec, cvt_nid))
441 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800442 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
443}
444
445
446/*
447 * Channel mapping routines
448 */
449
450/*
451 * Compute derived values in channel_allocations[].
452 */
453static void init_channel_allocations(void)
454{
455 int i, j;
456 struct cea_channel_speaker_allocation *p;
457
458 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
459 p = channel_allocations + i;
460 p->channels = 0;
461 p->spk_mask = 0;
462 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
463 if (p->speakers[j]) {
464 p->channels++;
465 p->spk_mask |= p->speakers[j];
466 }
467 }
468}
469
470/*
471 * The transformation takes two steps:
472 *
473 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
474 * spk_mask => (channel_allocations[]) => ai->CA
475 *
476 * TODO: it could select the wrong CA from multiple candidates.
477*/
Stephen Warren384a48d2011-06-01 11:14:21 -0600478static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800479{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800480 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800481 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800482 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800483 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
484
485 /*
486 * CA defaults to 0 for basic stereo audio
487 */
488 if (channels <= 2)
489 return 0;
490
Wu Fengguang079d88c2010-03-08 10:44:23 +0800491 /*
492 * expand ELD's speaker allocation mask
493 *
494 * ELD tells the speaker mask in a compact(paired) form,
495 * expand ELD's notions to match the ones used by Audio InfoFrame.
496 */
497 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
498 if (eld->spk_alloc & (1 << i))
499 spk_mask |= eld_speaker_allocation_bits[i];
500 }
501
502 /* search for the first working match in the CA table */
503 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
504 if (channels == channel_allocations[i].channels &&
505 (spk_mask & channel_allocations[i].spk_mask) ==
506 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800507 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800508 break;
509 }
510 }
511
512 snd_print_channel_allocation(eld->spk_alloc, buf, sizeof(buf));
Wu Fengguang2abbf432010-03-08 10:45:38 +0800513 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800514 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800515
Wu Fengguang53d7d692010-09-21 14:25:49 +0800516 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800517}
518
519static void hdmi_debug_channel_mapping(struct hda_codec *codec,
520 hda_nid_t pin_nid)
521{
522#ifdef CONFIG_SND_DEBUG_VERBOSE
523 int i;
524 int slot;
525
526 for (i = 0; i < 8; i++) {
527 slot = snd_hda_codec_read(codec, pin_nid, 0,
528 AC_VERB_GET_HDMI_CHAN_SLOT, i);
529 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
530 slot >> 4, slot & 0xf);
531 }
532#endif
533}
534
535
536static void hdmi_setup_channel_mapping(struct hda_codec *codec,
537 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800538 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800539{
540 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800541 int err;
542
543 if (hdmi_channel_mapping[ca][1] == 0) {
544 for (i = 0; i < channel_allocations[ca].channels; i++)
545 hdmi_channel_mapping[ca][i] = i | (i << 4);
546 for (; i < 8; i++)
547 hdmi_channel_mapping[ca][i] = 0xf | (i << 4);
548 }
549
550 for (i = 0; i < 8; i++) {
551 err = snd_hda_codec_write(codec, pin_nid, 0,
552 AC_VERB_SET_HDMI_CHAN_SLOT,
553 hdmi_channel_mapping[ca][i]);
554 if (err) {
Wu Fengguang2abbf432010-03-08 10:45:38 +0800555 snd_printdd(KERN_NOTICE
556 "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800557 break;
558 }
559 }
560
561 hdmi_debug_channel_mapping(codec, pin_nid);
562}
563
564
565/*
566 * Audio InfoFrame routines
567 */
568
569/*
570 * Enable Audio InfoFrame Transmission
571 */
572static void hdmi_start_infoframe_trans(struct hda_codec *codec,
573 hda_nid_t pin_nid)
574{
575 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
576 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
577 AC_DIPXMIT_BEST);
578}
579
580/*
581 * Disable Audio InfoFrame Transmission
582 */
583static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
584 hda_nid_t pin_nid)
585{
586 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
587 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
588 AC_DIPXMIT_DISABLE);
589}
590
591static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
592{
593#ifdef CONFIG_SND_DEBUG_VERBOSE
594 int i;
595 int size;
596
597 size = snd_hdmi_get_eld_size(codec, pin_nid);
598 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
599
600 for (i = 0; i < 8; i++) {
601 size = snd_hda_codec_read(codec, pin_nid, 0,
602 AC_VERB_GET_HDMI_DIP_SIZE, i);
603 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
604 }
605#endif
606}
607
608static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
609{
610#ifdef BE_PARANOID
611 int i, j;
612 int size;
613 int pi, bi;
614 for (i = 0; i < 8; i++) {
615 size = snd_hda_codec_read(codec, pin_nid, 0,
616 AC_VERB_GET_HDMI_DIP_SIZE, i);
617 if (size == 0)
618 continue;
619
620 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
621 for (j = 1; j < 1000; j++) {
622 hdmi_write_dip_byte(codec, pin_nid, 0x0);
623 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
624 if (pi != i)
625 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
626 bi, pi, i);
627 if (bi == 0) /* byte index wrapped around */
628 break;
629 }
630 snd_printd(KERN_INFO
631 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
632 i, size, j);
633 }
634#endif
635}
636
Wu Fengguang53d7d692010-09-21 14:25:49 +0800637static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800638{
Wu Fengguang53d7d692010-09-21 14:25:49 +0800639 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800640 u8 sum = 0;
641 int i;
642
Wu Fengguang53d7d692010-09-21 14:25:49 +0800643 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800644
Wu Fengguang53d7d692010-09-21 14:25:49 +0800645 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800646 sum += bytes[i];
647
Wu Fengguang53d7d692010-09-21 14:25:49 +0800648 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800649}
650
651static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
652 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800653 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800654{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800655 int i;
656
657 hdmi_debug_dip_size(codec, pin_nid);
658 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
659
Wu Fengguang079d88c2010-03-08 10:44:23 +0800660 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800661 for (i = 0; i < size; i++)
662 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800663}
664
665static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800666 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800667{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800668 u8 val;
669 int i;
670
671 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
672 != AC_DIPXMIT_BEST)
673 return false;
674
675 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800676 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800677 val = snd_hda_codec_read(codec, pin_nid, 0,
678 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800679 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +0800680 return false;
681 }
682
683 return true;
684}
685
Stephen Warren384a48d2011-06-01 11:14:21 -0600686static void hdmi_setup_audio_infoframe(struct hda_codec *codec, int pin_idx,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800687 struct snd_pcm_substream *substream)
688{
689 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600690 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
691 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800692 int channels = substream->runtime->channels;
Stephen Warren384a48d2011-06-01 11:14:21 -0600693 struct hdmi_eld *eld;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800694 int ca;
Takashi Iwai2b203db2011-02-11 12:17:30 +0100695 union audio_infoframe ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800696
Stephen Warren384a48d2011-06-01 11:14:21 -0600697 eld = &spec->pins[pin_idx].sink_eld;
698 if (!eld->monitor_present)
699 return;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800700
Stephen Warren384a48d2011-06-01 11:14:21 -0600701 ca = hdmi_channel_allocation(eld, channels);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800702
Stephen Warren384a48d2011-06-01 11:14:21 -0600703 memset(&ai, 0, sizeof(ai));
704 if (eld->conn_type == 0) { /* HDMI */
705 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800706
Stephen Warren384a48d2011-06-01 11:14:21 -0600707 hdmi_ai->type = 0x84;
708 hdmi_ai->ver = 0x01;
709 hdmi_ai->len = 0x0a;
710 hdmi_ai->CC02_CT47 = channels - 1;
711 hdmi_ai->CA = ca;
712 hdmi_checksum_audio_infoframe(hdmi_ai);
713 } else if (eld->conn_type == 1) { /* DisplayPort */
714 struct dp_audio_infoframe *dp_ai = &ai.dp;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800715
Stephen Warren384a48d2011-06-01 11:14:21 -0600716 dp_ai->type = 0x84;
717 dp_ai->len = 0x1b;
718 dp_ai->ver = 0x11 << 2;
719 dp_ai->CC02_CT47 = channels - 1;
720 dp_ai->CA = ca;
721 } else {
722 snd_printd("HDMI: unknown connection type at pin %d\n",
723 pin_nid);
724 return;
725 }
Wu Fengguang53d7d692010-09-21 14:25:49 +0800726
Stephen Warren384a48d2011-06-01 11:14:21 -0600727 /*
728 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
729 * sizeof(*dp_ai) to avoid partial match/update problems when
730 * the user switches between HDMI/DP monitors.
731 */
732 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
733 sizeof(ai))) {
734 snd_printdd("hdmi_setup_audio_infoframe: "
735 "pin=%d channels=%d\n",
736 pin_nid,
737 channels);
738 hdmi_setup_channel_mapping(codec, pin_nid, ca);
739 hdmi_stop_infoframe_trans(codec, pin_nid);
740 hdmi_fill_audio_infoframe(codec, pin_nid,
741 ai.bytes, sizeof(ai));
742 hdmi_start_infoframe_trans(codec, pin_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800743 }
744}
745
746
747/*
748 * Unsolicited events
749 */
750
Wu Fengguang744626d2011-11-16 16:29:47 +0800751static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, bool retry);
Takashi Iwai38faddb2010-07-28 14:21:55 +0200752
Wu Fengguang079d88c2010-03-08 10:44:23 +0800753static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
754{
755 struct hdmi_spec *spec = codec->spec;
Stephen Warren5d44f922011-05-24 17:11:17 -0600756 int pin_nid = res >> AC_UNSOL_RES_TAG_SHIFT;
757 int pd = !!(res & AC_UNSOL_RES_PD);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800758 int eldv = !!(res & AC_UNSOL_RES_ELDV);
Stephen Warren384a48d2011-06-01 11:14:21 -0600759 int pin_idx;
760 struct hdmi_eld *eld;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800761
762 printk(KERN_INFO
Stephen Warren384a48d2011-06-01 11:14:21 -0600763 "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
764 codec->addr, pin_nid, pd, eldv);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800765
Stephen Warren384a48d2011-06-01 11:14:21 -0600766 pin_idx = pin_nid_to_pin_index(spec, pin_nid);
767 if (pin_idx < 0)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800768 return;
Stephen Warren384a48d2011-06-01 11:14:21 -0600769 eld = &spec->pins[pin_idx].sink_eld;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800770
Wu Fengguang744626d2011-11-16 16:29:47 +0800771 hdmi_present_sense(&spec->pins[pin_idx], true);
Stephen Warren384a48d2011-06-01 11:14:21 -0600772
773 /*
774 * HDMI sink's ELD info cannot always be retrieved for now, e.g.
775 * in console or for audio devices. Assume the highest speakers
776 * configuration, to _not_ prohibit multi-channel audio playback.
777 */
778 if (!eld->spk_alloc)
779 eld->spk_alloc = 0xffff;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800780}
781
782static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
783{
784 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
785 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
786 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
787 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
788
789 printk(KERN_INFO
Stephen Warren384a48d2011-06-01 11:14:21 -0600790 "HDMI CP event: CODEC=%d PIN=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
791 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800792 tag,
793 subtag,
794 cp_state,
795 cp_ready);
796
797 /* TODO */
798 if (cp_state)
799 ;
800 if (cp_ready)
801 ;
802}
803
804
805static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
806{
807 struct hdmi_spec *spec = codec->spec;
808 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
809 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
810
Stephen Warren384a48d2011-06-01 11:14:21 -0600811 if (pin_nid_to_pin_index(spec, tag) < 0) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800812 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
813 return;
814 }
815
816 if (subtag == 0)
817 hdmi_intrinsic_event(codec, res);
818 else
819 hdmi_non_intrinsic_event(codec, res);
820}
821
822/*
823 * Callbacks
824 */
825
Takashi Iwai92f10b32010-08-03 14:21:00 +0200826/* HBR should be Non-PCM, 8 channels */
827#define is_hbr_format(format) \
828 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
829
Stephen Warren384a48d2011-06-01 11:14:21 -0600830static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
831 hda_nid_t pin_nid, u32 stream_tag, int format)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800832{
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300833 int pinctl;
834 int new_pinctl = 0;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300835
Stephen Warren384a48d2011-06-01 11:14:21 -0600836 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
837 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300838 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
839
840 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Takashi Iwai92f10b32010-08-03 14:21:00 +0200841 if (is_hbr_format(format))
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300842 new_pinctl |= AC_PINCTL_EPT_HBR;
843 else
844 new_pinctl |= AC_PINCTL_EPT_NATIVE;
845
846 snd_printdd("hdmi_setup_stream: "
847 "NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -0600848 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300849 pinctl == new_pinctl ? "" : "new-",
850 new_pinctl);
851
852 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -0600853 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300854 AC_VERB_SET_PIN_WIDGET_CONTROL,
855 new_pinctl);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300856
Stephen Warren384a48d2011-06-01 11:14:21 -0600857 }
Takashi Iwai92f10b32010-08-03 14:21:00 +0200858 if (is_hbr_format(format) && !new_pinctl) {
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300859 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
860 return -EINVAL;
861 }
Wu Fengguang079d88c2010-03-08 10:44:23 +0800862
Stephen Warren384a48d2011-06-01 11:14:21 -0600863 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300864 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800865}
866
867/*
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200868 * HDA PCM callbacks
869 */
870static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
871 struct hda_codec *codec,
872 struct snd_pcm_substream *substream)
873{
874 struct hdmi_spec *spec = codec->spec;
Takashi Iwai639cef02011-01-14 10:30:46 +0100875 struct snd_pcm_runtime *runtime = substream->runtime;
Stephen Warren384a48d2011-06-01 11:14:21 -0600876 int pin_idx, cvt_idx, mux_idx = 0;
877 struct hdmi_spec_per_pin *per_pin;
878 struct hdmi_eld *eld;
879 struct hdmi_spec_per_cvt *per_cvt = NULL;
880 int pinctl;
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200881
Stephen Warren384a48d2011-06-01 11:14:21 -0600882 /* Validate hinfo */
883 pin_idx = hinfo_to_pin_index(spec, hinfo);
884 if (snd_BUG_ON(pin_idx < 0))
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200885 return -EINVAL;
Stephen Warren384a48d2011-06-01 11:14:21 -0600886 per_pin = &spec->pins[pin_idx];
887 eld = &per_pin->sink_eld;
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200888
Stephen Warren384a48d2011-06-01 11:14:21 -0600889 /* Dynamically assign converter to stream */
890 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
891 per_cvt = &spec->cvts[cvt_idx];
892
893 /* Must not already be assigned */
894 if (per_cvt->assigned)
895 continue;
896 /* Must be in pin's mux's list of converters */
897 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
898 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
899 break;
900 /* Not in mux list */
901 if (mux_idx == per_pin->num_mux_nids)
902 continue;
903 break;
904 }
905 /* No free converters */
906 if (cvt_idx == spec->num_cvts)
907 return -ENODEV;
908
909 /* Claim converter */
910 per_cvt->assigned = 1;
911 hinfo->nid = per_cvt->cvt_nid;
912
913 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
914 AC_VERB_SET_CONNECT_SEL,
915 mux_idx);
916 pinctl = snd_hda_codec_read(codec, per_pin->pin_nid, 0,
917 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
918 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
919 AC_VERB_SET_PIN_WIDGET_CONTROL,
920 pinctl | PIN_OUT);
921 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200922
Stephen Warren2def8172011-06-01 11:14:20 -0600923 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -0600924 hinfo->channels_min = per_cvt->channels_min;
925 hinfo->channels_max = per_cvt->channels_max;
926 hinfo->rates = per_cvt->rates;
927 hinfo->formats = per_cvt->formats;
928 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -0600929
Stephen Warren384a48d2011-06-01 11:14:21 -0600930 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -0600931 if (!static_hdmi_pcm && eld->eld_valid) {
Stephen Warren2def8172011-06-01 11:14:20 -0600932 snd_hdmi_eld_update_pcm_info(eld, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200933 if (hinfo->channels_min > hinfo->channels_max ||
934 !hinfo->rates || !hinfo->formats)
935 return -ENODEV;
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200936 }
Stephen Warren2def8172011-06-01 11:14:20 -0600937
938 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +0100939 runtime->hw.channels_min = hinfo->channels_min;
940 runtime->hw.channels_max = hinfo->channels_max;
941 runtime->hw.formats = hinfo->formats;
942 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +0100943
944 snd_pcm_hw_constraint_step(substream->runtime, 0,
945 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200946 return 0;
947}
948
949/*
Wu Fengguang079d88c2010-03-08 10:44:23 +0800950 * HDA/HDMI auto parsing
951 */
Stephen Warren384a48d2011-06-01 11:14:21 -0600952static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800953{
954 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600955 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
956 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800957
958 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
959 snd_printk(KERN_WARNING
960 "HDMI: pin %d wcaps %#x "
961 "does not support connection list\n",
962 pin_nid, get_wcaps(codec, pin_nid));
963 return -EINVAL;
964 }
965
Stephen Warren384a48d2011-06-01 11:14:21 -0600966 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
967 per_pin->mux_nids,
968 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800969
970 return 0;
971}
972
Wu Fengguang744626d2011-11-16 16:29:47 +0800973static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, bool retry)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800974{
Wu Fengguang744626d2011-11-16 16:29:47 +0800975 struct hda_codec *codec = per_pin->codec;
976 struct hdmi_eld *eld = &per_pin->sink_eld;
977 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -0600978 /*
979 * Always execute a GetPinSense verb here, even when called from
980 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
981 * response's PD bit is not the real PD value, but indicates that
982 * the real PD value changed. An older version of the HD-audio
983 * specification worked this way. Hence, we just ignore the data in
984 * the unsolicited response to avoid custom WARs.
985 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800986 int present = snd_hda_pin_sense(codec, pin_nid);
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800987 bool eld_valid = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800988
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800989 memset(eld, 0, offsetof(struct hdmi_eld, eld_buffer));
Wu Fengguang079d88c2010-03-08 10:44:23 +0800990
Stephen Warren5d44f922011-05-24 17:11:17 -0600991 eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
992 if (eld->monitor_present)
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800993 eld_valid = !!(present & AC_PINSENSE_ELDV);
Stephen Warren5d44f922011-05-24 17:11:17 -0600994
995 printk(KERN_INFO
Stephen Warren384a48d2011-06-01 11:14:21 -0600996 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800997 codec->addr, pin_nid, eld->monitor_present, eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -0600998
Wu Fengguang744626d2011-11-16 16:29:47 +0800999 if (eld_valid) {
Stephen Warren5d44f922011-05-24 17:11:17 -06001000 if (!snd_hdmi_get_eld(eld, codec, pin_nid))
1001 snd_hdmi_show_eld(eld);
Wu Fengguang744626d2011-11-16 16:29:47 +08001002 else if (retry) {
1003 queue_delayed_work(codec->bus->workq,
1004 &per_pin->work,
1005 msecs_to_jiffies(300));
1006 }
1007 }
Stephen Warren5d44f922011-05-24 17:11:17 -06001008
1009 snd_hda_input_jack_report(codec, pin_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001010}
1011
Wu Fengguang744626d2011-11-16 16:29:47 +08001012static void hdmi_repoll_eld(struct work_struct *work)
1013{
1014 struct hdmi_spec_per_pin *per_pin =
1015 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1016
1017 hdmi_present_sense(per_pin, false);
1018}
1019
Wu Fengguang079d88c2010-03-08 10:44:23 +08001020static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1021{
1022 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001023 unsigned int caps, config;
1024 int pin_idx;
1025 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001026 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001027
Stephen Warren384a48d2011-06-01 11:14:21 -06001028 caps = snd_hda_param_read(codec, pin_nid, AC_PAR_PIN_CAP);
1029 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1030 return 0;
1031
1032 config = snd_hda_codec_read(codec, pin_nid, 0,
1033 AC_VERB_GET_CONFIG_DEFAULT, 0);
1034 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1035 return 0;
1036
1037 if (snd_BUG_ON(spec->num_pins >= MAX_HDMI_PINS))
Wu Fengguang3eaead52010-05-14 16:36:15 +08001038 return -E2BIG;
Stephen Warren384a48d2011-06-01 11:14:21 -06001039
1040 pin_idx = spec->num_pins;
1041 per_pin = &spec->pins[pin_idx];
Stephen Warren384a48d2011-06-01 11:14:21 -06001042
1043 per_pin->pin_nid = pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001044
Stephen Warren384a48d2011-06-01 11:14:21 -06001045 err = hdmi_read_pin_conn(codec, pin_idx);
1046 if (err < 0)
1047 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001048
Wu Fengguang079d88c2010-03-08 10:44:23 +08001049 spec->num_pins++;
1050
Stephen Warren384a48d2011-06-01 11:14:21 -06001051 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001052}
1053
Stephen Warren384a48d2011-06-01 11:14:21 -06001054static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001055{
1056 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001057 int cvt_idx;
1058 struct hdmi_spec_per_cvt *per_cvt;
1059 unsigned int chans;
1060 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001061
David Henningsson116dcde2010-11-23 10:23:40 +01001062 if (snd_BUG_ON(spec->num_cvts >= MAX_HDMI_CVTS))
1063 return -E2BIG;
1064
Stephen Warren384a48d2011-06-01 11:14:21 -06001065 chans = get_wcaps(codec, cvt_nid);
1066 chans = get_wcaps_channels(chans);
1067
1068 cvt_idx = spec->num_cvts;
1069 per_cvt = &spec->cvts[cvt_idx];
1070
1071 per_cvt->cvt_nid = cvt_nid;
1072 per_cvt->channels_min = 2;
1073 if (chans <= 16)
1074 per_cvt->channels_max = chans;
1075
1076 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1077 &per_cvt->rates,
1078 &per_cvt->formats,
1079 &per_cvt->maxbps);
1080 if (err < 0)
1081 return err;
1082
Wu Fengguang079d88c2010-03-08 10:44:23 +08001083 spec->num_cvts++;
1084
1085 return 0;
1086}
1087
1088static int hdmi_parse_codec(struct hda_codec *codec)
1089{
1090 hda_nid_t nid;
1091 int i, nodes;
1092
1093 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
1094 if (!nid || nodes < 0) {
1095 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
1096 return -EINVAL;
1097 }
1098
1099 for (i = 0; i < nodes; i++, nid++) {
1100 unsigned int caps;
1101 unsigned int type;
1102
1103 caps = snd_hda_param_read(codec, nid, AC_PAR_AUDIO_WIDGET_CAP);
1104 type = get_wcaps_type(caps);
1105
1106 if (!(caps & AC_WCAP_DIGITAL))
1107 continue;
1108
1109 switch (type) {
1110 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001111 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001112 break;
1113 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001114 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001115 break;
1116 }
1117 }
1118
1119 /*
1120 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1121 * can be lost and presence sense verb will become inaccurate if the
1122 * HDA link is powered off at hot plug or hw initialization time.
1123 */
1124#ifdef CONFIG_SND_HDA_POWER_SAVE
1125 if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
1126 AC_PWRST_EPSS))
1127 codec->bus->power_keep_link_on = 1;
1128#endif
1129
1130 return 0;
1131}
1132
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001133/*
1134 */
Stephen Warren384a48d2011-06-01 11:14:21 -06001135static char *generic_hdmi_pcm_names[MAX_HDMI_PINS] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001136 "HDMI 0",
1137 "HDMI 1",
1138 "HDMI 2",
Stephen Warren73926652011-05-25 12:42:13 -06001139 "HDMI 3",
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001140};
1141
1142/*
1143 * HDMI callbacks
1144 */
1145
1146static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1147 struct hda_codec *codec,
1148 unsigned int stream_tag,
1149 unsigned int format,
1150 struct snd_pcm_substream *substream)
1151{
Stephen Warren384a48d2011-06-01 11:14:21 -06001152 hda_nid_t cvt_nid = hinfo->nid;
1153 struct hdmi_spec *spec = codec->spec;
1154 int pin_idx = hinfo_to_pin_index(spec, hinfo);
1155 hda_nid_t pin_nid = spec->pins[pin_idx].pin_nid;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001156
Stephen Warren384a48d2011-06-01 11:14:21 -06001157 hdmi_set_channel_count(codec, cvt_nid, substream->runtime->channels);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001158
Stephen Warren384a48d2011-06-01 11:14:21 -06001159 hdmi_setup_audio_infoframe(codec, pin_idx, substream);
1160
1161 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001162}
1163
Stephen Warren384a48d2011-06-01 11:14:21 -06001164static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1165 struct hda_codec *codec,
1166 struct snd_pcm_substream *substream)
1167{
1168 struct hdmi_spec *spec = codec->spec;
1169 int cvt_idx, pin_idx;
1170 struct hdmi_spec_per_cvt *per_cvt;
1171 struct hdmi_spec_per_pin *per_pin;
1172 int pinctl;
1173
1174 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
1175
1176 if (hinfo->nid) {
1177 cvt_idx = cvt_nid_to_cvt_index(spec, hinfo->nid);
1178 if (snd_BUG_ON(cvt_idx < 0))
1179 return -EINVAL;
1180 per_cvt = &spec->cvts[cvt_idx];
1181
1182 snd_BUG_ON(!per_cvt->assigned);
1183 per_cvt->assigned = 0;
1184 hinfo->nid = 0;
1185
1186 pin_idx = hinfo_to_pin_index(spec, hinfo);
1187 if (snd_BUG_ON(pin_idx < 0))
1188 return -EINVAL;
1189 per_pin = &spec->pins[pin_idx];
1190
1191 pinctl = snd_hda_codec_read(codec, per_pin->pin_nid, 0,
1192 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1193 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
1194 AC_VERB_SET_PIN_WIDGET_CONTROL,
1195 pinctl & ~PIN_OUT);
1196 snd_hda_spdif_ctls_unassign(codec, pin_idx);
1197 }
1198
1199 return 0;
1200}
1201
1202static const struct hda_pcm_ops generic_ops = {
1203 .open = hdmi_pcm_open,
1204 .prepare = generic_hdmi_playback_pcm_prepare,
1205 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001206};
1207
1208static int generic_hdmi_build_pcms(struct hda_codec *codec)
1209{
1210 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001211 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001212
Stephen Warren384a48d2011-06-01 11:14:21 -06001213 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1214 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001215 struct hda_pcm_stream *pstr;
1216
Stephen Warren384a48d2011-06-01 11:14:21 -06001217 info = &spec->pcm_rec[pin_idx];
1218 info->name = generic_hdmi_pcm_names[pin_idx];
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001219 info->pcm_type = HDA_PCM_TYPE_HDMI;
Stephen Warren384a48d2011-06-01 11:14:21 -06001220
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001221 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06001222 pstr->substreams = 1;
1223 pstr->ops = generic_ops;
1224 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001225 }
1226
Stephen Warren384a48d2011-06-01 11:14:21 -06001227 codec->num_pcms = spec->num_pins;
1228 codec->pcm_info = spec->pcm_rec;
1229
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001230 return 0;
1231}
1232
David Henningsson0b6c49b2011-08-23 16:56:03 +02001233static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
1234{
1235 int err;
1236 char hdmi_str[32];
1237 struct hdmi_spec *spec = codec->spec;
1238 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1239 int pcmdev = spec->pcm_rec[pin_idx].device;
1240
1241 snprintf(hdmi_str, sizeof(hdmi_str), "HDMI/DP,pcm=%d", pcmdev);
1242
1243 err = snd_hda_input_jack_add(codec, per_pin->pin_nid,
1244 SND_JACK_VIDEOOUT, pcmdev > 0 ? hdmi_str : NULL);
1245 if (err < 0)
1246 return err;
1247
Wu Fengguang744626d2011-11-16 16:29:47 +08001248 hdmi_present_sense(per_pin, false);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001249 return 0;
1250}
1251
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001252static int generic_hdmi_build_controls(struct hda_codec *codec)
1253{
1254 struct hdmi_spec *spec = codec->spec;
1255 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001256 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001257
Stephen Warren384a48d2011-06-01 11:14:21 -06001258 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1259 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
David Henningsson0b6c49b2011-08-23 16:56:03 +02001260
1261 err = generic_hdmi_build_jack(codec, pin_idx);
1262 if (err < 0)
1263 return err;
1264
Stephen Warren384a48d2011-06-01 11:14:21 -06001265 err = snd_hda_create_spdif_out_ctls(codec,
1266 per_pin->pin_nid,
1267 per_pin->mux_nids[0]);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001268 if (err < 0)
1269 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001270 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05001271
1272 /* add control for ELD Bytes */
1273 err = hdmi_create_eld_ctl(codec,
1274 pin_idx,
1275 spec->pcm_rec[pin_idx].device);
1276
1277 if (err < 0)
1278 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001279 }
1280
1281 return 0;
1282}
1283
1284static int generic_hdmi_init(struct hda_codec *codec)
1285{
1286 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001287 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001288
Stephen Warren384a48d2011-06-01 11:14:21 -06001289 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1290 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1291 hda_nid_t pin_nid = per_pin->pin_nid;
1292 struct hdmi_eld *eld = &per_pin->sink_eld;
1293
1294 hdmi_init_pin(codec, pin_nid);
1295 snd_hda_codec_write(codec, pin_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001296 AC_VERB_SET_UNSOLICITED_ENABLE,
Stephen Warren384a48d2011-06-01 11:14:21 -06001297 AC_USRSP_EN | pin_nid);
1298
Wu Fengguang744626d2011-11-16 16:29:47 +08001299 per_pin->codec = codec;
1300 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
Stephen Warren384a48d2011-06-01 11:14:21 -06001301 snd_hda_eld_proc_new(codec, eld, pin_idx);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001302 }
1303 return 0;
1304}
1305
1306static void generic_hdmi_free(struct hda_codec *codec)
1307{
1308 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001309 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001310
Stephen Warren384a48d2011-06-01 11:14:21 -06001311 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1312 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1313 struct hdmi_eld *eld = &per_pin->sink_eld;
1314
Wu Fengguang744626d2011-11-16 16:29:47 +08001315 cancel_delayed_work(&per_pin->work);
Stephen Warren384a48d2011-06-01 11:14:21 -06001316 snd_hda_eld_proc_free(codec, eld);
1317 }
David Henningsson07acecc2011-05-19 11:46:03 +02001318 snd_hda_input_jack_free(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001319
Wu Fengguang744626d2011-11-16 16:29:47 +08001320 flush_workqueue(codec->bus->workq);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001321 kfree(spec);
1322}
1323
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001324static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001325 .init = generic_hdmi_init,
1326 .free = generic_hdmi_free,
1327 .build_pcms = generic_hdmi_build_pcms,
1328 .build_controls = generic_hdmi_build_controls,
1329 .unsol_event = hdmi_unsol_event,
1330};
1331
1332static int patch_generic_hdmi(struct hda_codec *codec)
1333{
1334 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001335
1336 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1337 if (spec == NULL)
1338 return -ENOMEM;
1339
1340 codec->spec = spec;
1341 if (hdmi_parse_codec(codec) < 0) {
1342 codec->spec = NULL;
1343 kfree(spec);
1344 return -EINVAL;
1345 }
1346 codec->patch_ops = generic_hdmi_patch_ops;
1347
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001348 init_channel_allocations();
1349
1350 return 0;
1351}
1352
1353/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06001354 * Shared non-generic implementations
1355 */
1356
1357static int simple_playback_build_pcms(struct hda_codec *codec)
1358{
1359 struct hdmi_spec *spec = codec->spec;
1360 struct hda_pcm *info = spec->pcm_rec;
1361 int i;
1362
1363 codec->num_pcms = spec->num_cvts;
1364 codec->pcm_info = info;
1365
1366 for (i = 0; i < codec->num_pcms; i++, info++) {
1367 unsigned int chans;
1368 struct hda_pcm_stream *pstr;
1369
Stephen Warren384a48d2011-06-01 11:14:21 -06001370 chans = get_wcaps(codec, spec->cvts[i].cvt_nid);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001371 chans = get_wcaps_channels(chans);
1372
1373 info->name = generic_hdmi_pcm_names[i];
1374 info->pcm_type = HDA_PCM_TYPE_HDMI;
1375 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
1376 snd_BUG_ON(!spec->pcm_playback);
1377 *pstr = *spec->pcm_playback;
Stephen Warren384a48d2011-06-01 11:14:21 -06001378 pstr->nid = spec->cvts[i].cvt_nid;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001379 if (pstr->channels_max <= 2 && chans && chans <= 16)
1380 pstr->channels_max = chans;
1381 }
1382
1383 return 0;
1384}
1385
1386static int simple_playback_build_controls(struct hda_codec *codec)
1387{
1388 struct hdmi_spec *spec = codec->spec;
1389 int err;
1390 int i;
1391
1392 for (i = 0; i < codec->num_pcms; i++) {
1393 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren384a48d2011-06-01 11:14:21 -06001394 spec->cvts[i].cvt_nid,
1395 spec->cvts[i].cvt_nid);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001396 if (err < 0)
1397 return err;
1398 }
1399
1400 return 0;
1401}
1402
1403static void simple_playback_free(struct hda_codec *codec)
1404{
1405 struct hdmi_spec *spec = codec->spec;
1406
1407 kfree(spec);
1408}
1409
1410/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001411 * Nvidia specific implementations
1412 */
1413
1414#define Nv_VERB_SET_Channel_Allocation 0xF79
1415#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
1416#define Nv_VERB_SET_Audio_Protection_On 0xF98
1417#define Nv_VERB_SET_Audio_Protection_Off 0xF99
1418
1419#define nvhdmi_master_con_nid_7x 0x04
1420#define nvhdmi_master_pin_nid_7x 0x05
1421
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001422static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001423 /*front, rear, clfe, rear_surr */
1424 0x6, 0x8, 0xa, 0xc,
1425};
1426
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001427static const struct hda_verb nvhdmi_basic_init_7x[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001428 /* set audio protect on */
1429 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
1430 /* enable digital output on pin widget */
1431 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1432 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1433 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1434 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1435 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1436 {} /* terminator */
1437};
1438
1439#ifdef LIMITED_RATE_FMT_SUPPORT
1440/* support only the safe format and rate */
1441#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
1442#define SUPPORTED_MAXBPS 16
1443#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1444#else
1445/* support all rates and formats */
1446#define SUPPORTED_RATES \
1447 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
1448 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
1449 SNDRV_PCM_RATE_192000)
1450#define SUPPORTED_MAXBPS 24
1451#define SUPPORTED_FORMATS \
1452 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
1453#endif
1454
1455static int nvhdmi_7x_init(struct hda_codec *codec)
1456{
1457 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x);
1458 return 0;
1459}
1460
Nitin Daga393004b2011-01-10 21:49:31 +05301461static unsigned int channels_2_6_8[] = {
1462 2, 6, 8
1463};
1464
1465static unsigned int channels_2_8[] = {
1466 2, 8
1467};
1468
1469static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
1470 .count = ARRAY_SIZE(channels_2_6_8),
1471 .list = channels_2_6_8,
1472 .mask = 0,
1473};
1474
1475static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
1476 .count = ARRAY_SIZE(channels_2_8),
1477 .list = channels_2_8,
1478 .mask = 0,
1479};
1480
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001481static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
1482 struct hda_codec *codec,
1483 struct snd_pcm_substream *substream)
1484{
1485 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05301486 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
1487
1488 switch (codec->preset->id) {
1489 case 0x10de0002:
1490 case 0x10de0003:
1491 case 0x10de0005:
1492 case 0x10de0006:
1493 hw_constraints_channels = &hw_constraints_2_8_channels;
1494 break;
1495 case 0x10de0007:
1496 hw_constraints_channels = &hw_constraints_2_6_8_channels;
1497 break;
1498 default:
1499 break;
1500 }
1501
1502 if (hw_constraints_channels != NULL) {
1503 snd_pcm_hw_constraint_list(substream->runtime, 0,
1504 SNDRV_PCM_HW_PARAM_CHANNELS,
1505 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01001506 } else {
1507 snd_pcm_hw_constraint_step(substream->runtime, 0,
1508 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05301509 }
1510
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001511 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1512}
1513
1514static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
1515 struct hda_codec *codec,
1516 struct snd_pcm_substream *substream)
1517{
1518 struct hdmi_spec *spec = codec->spec;
1519 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1520}
1521
1522static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1523 struct hda_codec *codec,
1524 unsigned int stream_tag,
1525 unsigned int format,
1526 struct snd_pcm_substream *substream)
1527{
1528 struct hdmi_spec *spec = codec->spec;
1529 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1530 stream_tag, format, substream);
1531}
1532
Aaron Plattner1f348522011-04-06 17:19:04 -07001533static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
1534 int channels)
1535{
1536 unsigned int chanmask;
1537 int chan = channels ? (channels - 1) : 1;
1538
1539 switch (channels) {
1540 default:
1541 case 0:
1542 case 2:
1543 chanmask = 0x00;
1544 break;
1545 case 4:
1546 chanmask = 0x08;
1547 break;
1548 case 6:
1549 chanmask = 0x0b;
1550 break;
1551 case 8:
1552 chanmask = 0x13;
1553 break;
1554 }
1555
1556 /* Set the audio infoframe channel allocation and checksum fields. The
1557 * channel count is computed implicitly by the hardware. */
1558 snd_hda_codec_write(codec, 0x1, 0,
1559 Nv_VERB_SET_Channel_Allocation, chanmask);
1560
1561 snd_hda_codec_write(codec, 0x1, 0,
1562 Nv_VERB_SET_Info_Frame_Checksum,
1563 (0x71 - chan - chanmask));
1564}
1565
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001566static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
1567 struct hda_codec *codec,
1568 struct snd_pcm_substream *substream)
1569{
1570 struct hdmi_spec *spec = codec->spec;
1571 int i;
1572
1573 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
1574 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1575 for (i = 0; i < 4; i++) {
1576 /* set the stream id */
1577 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
1578 AC_VERB_SET_CHANNEL_STREAMID, 0);
1579 /* set the stream format */
1580 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
1581 AC_VERB_SET_STREAM_FORMAT, 0);
1582 }
1583
Aaron Plattner1f348522011-04-06 17:19:04 -07001584 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
1585 * streams are disabled. */
1586 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
1587
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001588 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1589}
1590
1591static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
1592 struct hda_codec *codec,
1593 unsigned int stream_tag,
1594 unsigned int format,
1595 struct snd_pcm_substream *substream)
1596{
1597 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01001598 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001599 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06001600 struct hdmi_spec *spec = codec->spec;
1601 struct hda_spdif_out *spdif =
Stephen Warren384a48d2011-06-01 11:14:21 -06001602 snd_hda_spdif_out_of_nid(codec, spec->cvts[0].cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001603
1604 mutex_lock(&codec->spdif_mutex);
1605
1606 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001607
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001608 dataDCC2 = 0x2;
1609
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001610 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06001611 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001612 snd_hda_codec_write(codec,
1613 nvhdmi_master_con_nid_7x,
1614 0,
1615 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001616 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001617
1618 /* set the stream id */
1619 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
1620 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
1621
1622 /* set the stream format */
1623 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
1624 AC_VERB_SET_STREAM_FORMAT, format);
1625
1626 /* turn on again (if needed) */
1627 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06001628 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001629 snd_hda_codec_write(codec,
1630 nvhdmi_master_con_nid_7x,
1631 0,
1632 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001633 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001634 snd_hda_codec_write(codec,
1635 nvhdmi_master_con_nid_7x,
1636 0,
1637 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
1638 }
1639
1640 for (i = 0; i < 4; i++) {
1641 if (chs == 2)
1642 channel_id = 0;
1643 else
1644 channel_id = i * 2;
1645
1646 /* turn off SPDIF once;
1647 *otherwise the IEC958 bits won't be updated
1648 */
1649 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06001650 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001651 snd_hda_codec_write(codec,
1652 nvhdmi_con_nids_7x[i],
1653 0,
1654 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001655 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001656 /* set the stream id */
1657 snd_hda_codec_write(codec,
1658 nvhdmi_con_nids_7x[i],
1659 0,
1660 AC_VERB_SET_CHANNEL_STREAMID,
1661 (stream_tag << 4) | channel_id);
1662 /* set the stream format */
1663 snd_hda_codec_write(codec,
1664 nvhdmi_con_nids_7x[i],
1665 0,
1666 AC_VERB_SET_STREAM_FORMAT,
1667 format);
1668 /* turn on again (if needed) */
1669 /* enable and set the channel status audio/data flag */
1670 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06001671 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001672 snd_hda_codec_write(codec,
1673 nvhdmi_con_nids_7x[i],
1674 0,
1675 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001676 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001677 snd_hda_codec_write(codec,
1678 nvhdmi_con_nids_7x[i],
1679 0,
1680 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
1681 }
1682 }
1683
Aaron Plattner1f348522011-04-06 17:19:04 -07001684 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001685
1686 mutex_unlock(&codec->spdif_mutex);
1687 return 0;
1688}
1689
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001690static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001691 .substreams = 1,
1692 .channels_min = 2,
1693 .channels_max = 8,
1694 .nid = nvhdmi_master_con_nid_7x,
1695 .rates = SUPPORTED_RATES,
1696 .maxbps = SUPPORTED_MAXBPS,
1697 .formats = SUPPORTED_FORMATS,
1698 .ops = {
1699 .open = simple_playback_pcm_open,
1700 .close = nvhdmi_8ch_7x_pcm_close,
1701 .prepare = nvhdmi_8ch_7x_pcm_prepare
1702 },
1703};
1704
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001705static const struct hda_pcm_stream nvhdmi_pcm_playback_2ch = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001706 .substreams = 1,
1707 .channels_min = 2,
1708 .channels_max = 2,
1709 .nid = nvhdmi_master_con_nid_7x,
1710 .rates = SUPPORTED_RATES,
1711 .maxbps = SUPPORTED_MAXBPS,
1712 .formats = SUPPORTED_FORMATS,
1713 .ops = {
1714 .open = simple_playback_pcm_open,
1715 .close = simple_playback_pcm_close,
1716 .prepare = simple_playback_pcm_prepare
1717 },
1718};
1719
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001720static const struct hda_codec_ops nvhdmi_patch_ops_8ch_7x = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001721 .build_controls = simple_playback_build_controls,
1722 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001723 .init = nvhdmi_7x_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001724 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001725};
1726
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001727static const struct hda_codec_ops nvhdmi_patch_ops_2ch = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001728 .build_controls = simple_playback_build_controls,
1729 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001730 .init = nvhdmi_7x_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001731 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001732};
1733
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001734static int patch_nvhdmi_2ch(struct hda_codec *codec)
1735{
1736 struct hdmi_spec *spec;
1737
1738 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1739 if (spec == NULL)
1740 return -ENOMEM;
1741
1742 codec->spec = spec;
1743
1744 spec->multiout.num_dacs = 0; /* no analog */
1745 spec->multiout.max_channels = 2;
1746 spec->multiout.dig_out_nid = nvhdmi_master_con_nid_7x;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001747 spec->num_cvts = 1;
Stephen Warren384a48d2011-06-01 11:14:21 -06001748 spec->cvts[0].cvt_nid = nvhdmi_master_con_nid_7x;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001749 spec->pcm_playback = &nvhdmi_pcm_playback_2ch;
1750
1751 codec->patch_ops = nvhdmi_patch_ops_2ch;
1752
1753 return 0;
1754}
1755
1756static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
1757{
1758 struct hdmi_spec *spec;
1759 int err = patch_nvhdmi_2ch(codec);
1760
1761 if (err < 0)
1762 return err;
1763 spec = codec->spec;
1764 spec->multiout.max_channels = 8;
1765 spec->pcm_playback = &nvhdmi_pcm_playback_8ch_7x;
1766 codec->patch_ops = nvhdmi_patch_ops_8ch_7x;
Aaron Plattner1f348522011-04-06 17:19:04 -07001767
1768 /* Initialize the audio infoframe channel mask and checksum to something
1769 * valid */
1770 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
1771
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001772 return 0;
1773}
1774
1775/*
1776 * ATI-specific implementations
1777 *
1778 * FIXME: we may omit the whole this and use the generic code once after
1779 * it's confirmed to work.
1780 */
1781
1782#define ATIHDMI_CVT_NID 0x02 /* audio converter */
1783#define ATIHDMI_PIN_NID 0x03 /* HDMI output pin */
1784
1785static int atihdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1786 struct hda_codec *codec,
1787 unsigned int stream_tag,
1788 unsigned int format,
1789 struct snd_pcm_substream *substream)
1790{
1791 struct hdmi_spec *spec = codec->spec;
1792 int chans = substream->runtime->channels;
1793 int i, err;
1794
1795 err = simple_playback_pcm_prepare(hinfo, codec, stream_tag, format,
1796 substream);
1797 if (err < 0)
1798 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001799 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
1800 AC_VERB_SET_CVT_CHAN_COUNT, chans - 1);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001801 /* FIXME: XXX */
1802 for (i = 0; i < chans; i++) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001803 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001804 AC_VERB_SET_HDMI_CHAN_SLOT,
1805 (i << 4) | i);
1806 }
1807 return 0;
1808}
1809
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001810static const struct hda_pcm_stream atihdmi_pcm_digital_playback = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001811 .substreams = 1,
1812 .channels_min = 2,
1813 .channels_max = 2,
1814 .nid = ATIHDMI_CVT_NID,
1815 .ops = {
1816 .open = simple_playback_pcm_open,
1817 .close = simple_playback_pcm_close,
1818 .prepare = atihdmi_playback_pcm_prepare
1819 },
1820};
1821
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001822static const struct hda_verb atihdmi_basic_init[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001823 /* enable digital output on pin widget */
1824 { 0x03, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1825 {} /* terminator */
1826};
1827
1828static int atihdmi_init(struct hda_codec *codec)
1829{
1830 struct hdmi_spec *spec = codec->spec;
1831
1832 snd_hda_sequence_write(codec, atihdmi_basic_init);
1833 /* SI codec requires to unmute the pin */
Stephen Warren384a48d2011-06-01 11:14:21 -06001834 if (get_wcaps(codec, spec->pins[0].pin_nid) & AC_WCAP_OUT_AMP)
1835 snd_hda_codec_write(codec, spec->pins[0].pin_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001836 AC_VERB_SET_AMP_GAIN_MUTE,
1837 AMP_OUT_UNMUTE);
1838 return 0;
1839}
1840
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001841static const struct hda_codec_ops atihdmi_patch_ops = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001842 .build_controls = simple_playback_build_controls,
1843 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001844 .init = atihdmi_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001845 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001846};
1847
1848
1849static int patch_atihdmi(struct hda_codec *codec)
1850{
1851 struct hdmi_spec *spec;
1852
1853 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1854 if (spec == NULL)
1855 return -ENOMEM;
1856
1857 codec->spec = spec;
1858
1859 spec->multiout.num_dacs = 0; /* no analog */
1860 spec->multiout.max_channels = 2;
1861 spec->multiout.dig_out_nid = ATIHDMI_CVT_NID;
1862 spec->num_cvts = 1;
Stephen Warren384a48d2011-06-01 11:14:21 -06001863 spec->cvts[0].cvt_nid = ATIHDMI_CVT_NID;
1864 spec->pins[0].pin_nid = ATIHDMI_PIN_NID;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001865 spec->pcm_playback = &atihdmi_pcm_digital_playback;
1866
1867 codec->patch_ops = atihdmi_patch_ops;
1868
1869 return 0;
1870}
1871
1872
1873/*
1874 * patch entries
1875 */
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001876static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001877{ .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
1878{ .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
1879{ .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
Anssi Hannula36e9c132010-12-05 02:34:15 +02001880{ .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001881{ .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
1882{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
1883{ .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
1884{ .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1885{ .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1886{ .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1887{ .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1888{ .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
Stephen Warren5d44f922011-05-24 17:11:17 -06001889{ .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_generic_hdmi },
1890{ .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_generic_hdmi },
1891{ .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_generic_hdmi },
1892{ .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_generic_hdmi },
1893{ .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_generic_hdmi },
1894{ .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_generic_hdmi },
1895{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_generic_hdmi },
1896{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_generic_hdmi },
1897{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_generic_hdmi },
1898{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_generic_hdmi },
1899{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_generic_hdmi },
Richard Samsonc8900a02011-03-03 12:46:13 +01001900/* 17 is known to be absent */
Stephen Warren5d44f922011-05-24 17:11:17 -06001901{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_generic_hdmi },
1902{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_generic_hdmi },
1903{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_generic_hdmi },
1904{ .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_generic_hdmi },
1905{ .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_generic_hdmi },
1906{ .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_generic_hdmi },
1907{ .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_generic_hdmi },
1908{ .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_generic_hdmi },
1909{ .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_generic_hdmi },
1910{ .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001911{ .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
1912{ .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
1913{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
1914{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
1915{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
1916{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
1917{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
1918{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang591e6102011-05-20 15:35:43 +08001919{ .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001920{ .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi },
1921{} /* terminator */
1922};
1923
1924MODULE_ALIAS("snd-hda-codec-id:1002793c");
1925MODULE_ALIAS("snd-hda-codec-id:10027919");
1926MODULE_ALIAS("snd-hda-codec-id:1002791a");
1927MODULE_ALIAS("snd-hda-codec-id:1002aa01");
1928MODULE_ALIAS("snd-hda-codec-id:10951390");
1929MODULE_ALIAS("snd-hda-codec-id:10951392");
1930MODULE_ALIAS("snd-hda-codec-id:10de0002");
1931MODULE_ALIAS("snd-hda-codec-id:10de0003");
1932MODULE_ALIAS("snd-hda-codec-id:10de0005");
1933MODULE_ALIAS("snd-hda-codec-id:10de0006");
1934MODULE_ALIAS("snd-hda-codec-id:10de0007");
1935MODULE_ALIAS("snd-hda-codec-id:10de000a");
1936MODULE_ALIAS("snd-hda-codec-id:10de000b");
1937MODULE_ALIAS("snd-hda-codec-id:10de000c");
1938MODULE_ALIAS("snd-hda-codec-id:10de000d");
1939MODULE_ALIAS("snd-hda-codec-id:10de0010");
1940MODULE_ALIAS("snd-hda-codec-id:10de0011");
1941MODULE_ALIAS("snd-hda-codec-id:10de0012");
1942MODULE_ALIAS("snd-hda-codec-id:10de0013");
1943MODULE_ALIAS("snd-hda-codec-id:10de0014");
Richard Samsonc8900a02011-03-03 12:46:13 +01001944MODULE_ALIAS("snd-hda-codec-id:10de0015");
1945MODULE_ALIAS("snd-hda-codec-id:10de0016");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001946MODULE_ALIAS("snd-hda-codec-id:10de0018");
1947MODULE_ALIAS("snd-hda-codec-id:10de0019");
1948MODULE_ALIAS("snd-hda-codec-id:10de001a");
1949MODULE_ALIAS("snd-hda-codec-id:10de001b");
1950MODULE_ALIAS("snd-hda-codec-id:10de001c");
1951MODULE_ALIAS("snd-hda-codec-id:10de0040");
1952MODULE_ALIAS("snd-hda-codec-id:10de0041");
1953MODULE_ALIAS("snd-hda-codec-id:10de0042");
1954MODULE_ALIAS("snd-hda-codec-id:10de0043");
1955MODULE_ALIAS("snd-hda-codec-id:10de0044");
1956MODULE_ALIAS("snd-hda-codec-id:10de0067");
1957MODULE_ALIAS("snd-hda-codec-id:10de8001");
1958MODULE_ALIAS("snd-hda-codec-id:17e80047");
1959MODULE_ALIAS("snd-hda-codec-id:80860054");
1960MODULE_ALIAS("snd-hda-codec-id:80862801");
1961MODULE_ALIAS("snd-hda-codec-id:80862802");
1962MODULE_ALIAS("snd-hda-codec-id:80862803");
1963MODULE_ALIAS("snd-hda-codec-id:80862804");
1964MODULE_ALIAS("snd-hda-codec-id:80862805");
Wu Fengguang591e6102011-05-20 15:35:43 +08001965MODULE_ALIAS("snd-hda-codec-id:80862806");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001966MODULE_ALIAS("snd-hda-codec-id:808629fb");
1967
1968MODULE_LICENSE("GPL");
1969MODULE_DESCRIPTION("HDMI HD-audio codec");
1970MODULE_ALIAS("snd-hda-codec-intelhdmi");
1971MODULE_ALIAS("snd-hda-codec-nvhdmi");
1972MODULE_ALIAS("snd-hda-codec-atihdmi");
1973
1974static struct hda_codec_preset_list intel_list = {
1975 .preset = snd_hda_preset_hdmi,
1976 .owner = THIS_MODULE,
1977};
1978
1979static int __init patch_hdmi_init(void)
1980{
1981 return snd_hda_add_codec_preset(&intel_list);
1982}
1983
1984static void __exit patch_hdmi_exit(void)
1985{
1986 snd_hda_delete_codec_preset(&intel_list);
1987}
1988
1989module_init(patch_hdmi_init)
1990module_exit(patch_hdmi_exit)