blob: 02a6e3f481ef97fb5b36521443f9ac4752108a43 [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"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020039#include "hda_jack.h"
Takashi Iwai84eb01b2010-09-07 12:27:25 +020040
Takashi Iwai0ebaa242011-01-11 18:11:04 +010041static bool static_hdmi_pcm;
42module_param(static_hdmi_pcm, bool, 0644);
43MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info");
44
Takashi Iwai84eb01b2010-09-07 12:27:25 +020045/*
46 * The HDMI/DisplayPort configuration can be highly dynamic. A graphics device
Stephen Warren384a48d2011-06-01 11:14:21 -060047 * could support N independent pipes, each of them can be connected to one or
Takashi Iwai84eb01b2010-09-07 12:27:25 +020048 * more ports (DVI, HDMI or DisplayPort).
49 *
50 * The HDA correspondence of pipes/ports are converter/pin nodes.
51 */
Takashi Iwaia4567cb2011-11-24 14:44:19 +010052#define MAX_HDMI_CVTS 8
53#define MAX_HDMI_PINS 8
Wu Fengguang079d88c2010-03-08 10:44:23 +080054
Stephen Warren384a48d2011-06-01 11:14:21 -060055struct hdmi_spec_per_cvt {
56 hda_nid_t cvt_nid;
57 int assigned;
58 unsigned int channels_min;
59 unsigned int channels_max;
60 u32 rates;
61 u64 formats;
62 unsigned int maxbps;
63};
64
65struct hdmi_spec_per_pin {
66 hda_nid_t pin_nid;
67 int num_mux_nids;
68 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Wu Fengguang744626d2011-11-16 16:29:47 +080069
70 struct hda_codec *codec;
Stephen Warren384a48d2011-06-01 11:14:21 -060071 struct hdmi_eld sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +080072 struct delayed_work work;
Wu Fengguangc6e84532011-11-18 16:59:32 -060073 int repoll_count;
Stephen Warren384a48d2011-06-01 11:14:21 -060074};
75
Wu Fengguang079d88c2010-03-08 10:44:23 +080076struct hdmi_spec {
77 int num_cvts;
Stephen Warren384a48d2011-06-01 11:14:21 -060078 struct hdmi_spec_per_cvt cvts[MAX_HDMI_CVTS];
79
Wu Fengguang079d88c2010-03-08 10:44:23 +080080 int num_pins;
Stephen Warren384a48d2011-06-01 11:14:21 -060081 struct hdmi_spec_per_pin pins[MAX_HDMI_PINS];
82 struct hda_pcm pcm_rec[MAX_HDMI_PINS];
Wu Fengguang079d88c2010-03-08 10:44:23 +080083
84 /*
Stephen Warren384a48d2011-06-01 11:14:21 -060085 * Non-generic ATI/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +080086 */
87 struct hda_multi_out multiout;
Takashi Iwaifb79e1e2011-05-02 12:17:41 +020088 const struct hda_pcm_stream *pcm_playback;
Wu Fengguang079d88c2010-03-08 10:44:23 +080089};
90
91
92struct hdmi_audio_infoframe {
93 u8 type; /* 0x84 */
94 u8 ver; /* 0x01 */
95 u8 len; /* 0x0a */
96
Wu Fengguang53d7d692010-09-21 14:25:49 +080097 u8 checksum;
98
Wu Fengguang079d88c2010-03-08 10:44:23 +080099 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
100 u8 SS01_SF24;
101 u8 CXT04;
102 u8 CA;
103 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800104};
105
106struct dp_audio_infoframe {
107 u8 type; /* 0x84 */
108 u8 len; /* 0x1b */
109 u8 ver; /* 0x11 << 2 */
110
111 u8 CC02_CT47; /* match with HDMI infoframe from this on */
112 u8 SS01_SF24;
113 u8 CXT04;
114 u8 CA;
115 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800116};
117
Takashi Iwai2b203db2011-02-11 12:17:30 +0100118union audio_infoframe {
119 struct hdmi_audio_infoframe hdmi;
120 struct dp_audio_infoframe dp;
121 u8 bytes[0];
122};
123
Wu Fengguang079d88c2010-03-08 10:44:23 +0800124/*
125 * CEA speaker placement:
126 *
127 * FLH FCH FRH
128 * FLW FL FLC FC FRC FR FRW
129 *
130 * LFE
131 * TC
132 *
133 * RL RLC RC RRC RR
134 *
135 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
136 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
137 */
138enum cea_speaker_placement {
139 FL = (1 << 0), /* Front Left */
140 FC = (1 << 1), /* Front Center */
141 FR = (1 << 2), /* Front Right */
142 FLC = (1 << 3), /* Front Left Center */
143 FRC = (1 << 4), /* Front Right Center */
144 RL = (1 << 5), /* Rear Left */
145 RC = (1 << 6), /* Rear Center */
146 RR = (1 << 7), /* Rear Right */
147 RLC = (1 << 8), /* Rear Left Center */
148 RRC = (1 << 9), /* Rear Right Center */
149 LFE = (1 << 10), /* Low Frequency Effect */
150 FLW = (1 << 11), /* Front Left Wide */
151 FRW = (1 << 12), /* Front Right Wide */
152 FLH = (1 << 13), /* Front Left High */
153 FCH = (1 << 14), /* Front Center High */
154 FRH = (1 << 15), /* Front Right High */
155 TC = (1 << 16), /* Top Center */
156};
157
158/*
159 * ELD SA bits in the CEA Speaker Allocation data block
160 */
161static int eld_speaker_allocation_bits[] = {
162 [0] = FL | FR,
163 [1] = LFE,
164 [2] = FC,
165 [3] = RL | RR,
166 [4] = RC,
167 [5] = FLC | FRC,
168 [6] = RLC | RRC,
169 /* the following are not defined in ELD yet */
170 [7] = FLW | FRW,
171 [8] = FLH | FRH,
172 [9] = TC,
173 [10] = FCH,
174};
175
176struct cea_channel_speaker_allocation {
177 int ca_index;
178 int speakers[8];
179
180 /* derived values, just for convenience */
181 int channels;
182 int spk_mask;
183};
184
185/*
186 * ALSA sequence is:
187 *
188 * surround40 surround41 surround50 surround51 surround71
189 * ch0 front left = = = =
190 * ch1 front right = = = =
191 * ch2 rear left = = = =
192 * ch3 rear right = = = =
193 * ch4 LFE center center center
194 * ch5 LFE LFE
195 * ch6 side left
196 * ch7 side right
197 *
198 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
199 */
200static int hdmi_channel_mapping[0x32][8] = {
201 /* stereo */
202 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
203 /* 2.1 */
204 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
205 /* Dolby Surround */
206 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
207 /* surround40 */
208 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
209 /* 4ch */
210 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
211 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800212 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800213 /* surround50 */
214 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
215 /* surround51 */
216 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
217 /* 7.1 */
218 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
219};
220
221/*
222 * This is an ordered list!
223 *
224 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800225 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800226 */
227static struct cea_channel_speaker_allocation channel_allocations[] = {
228/* channel: 7 6 5 4 3 2 1 0 */
229{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
230 /* 2.1 */
231{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
232 /* Dolby Surround */
233{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
234 /* surround40 */
235{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
236 /* surround41 */
237{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
238 /* surround50 */
239{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
240 /* surround51 */
241{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
242 /* 6.1 */
243{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
244 /* surround71 */
245{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
246
247{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
248{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
249{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
250{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
251{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
252{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
253{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
254{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
255{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
256{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
257{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
258{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
259{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
260{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
261{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
262{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
263{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
264{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
265{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
266{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
267{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
268{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
269{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
270{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
271{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
272{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
273{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
274{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
275{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
276{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
277{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
278{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
279{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
280{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
281{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
282{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
283{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
284{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
285{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
286{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
287{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
288};
289
290
291/*
292 * HDMI routines
293 */
294
Stephen Warren384a48d2011-06-01 11:14:21 -0600295static int pin_nid_to_pin_index(struct hdmi_spec *spec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800296{
Stephen Warren384a48d2011-06-01 11:14:21 -0600297 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800298
Stephen Warren384a48d2011-06-01 11:14:21 -0600299 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
300 if (spec->pins[pin_idx].pin_nid == pin_nid)
301 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800302
Stephen Warren384a48d2011-06-01 11:14:21 -0600303 snd_printk(KERN_WARNING "HDMI: pin nid %d not registered\n", pin_nid);
304 return -EINVAL;
305}
306
307static int hinfo_to_pin_index(struct hdmi_spec *spec,
308 struct hda_pcm_stream *hinfo)
309{
310 int pin_idx;
311
312 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
313 if (&spec->pcm_rec[pin_idx].stream[0] == hinfo)
314 return pin_idx;
315
316 snd_printk(KERN_WARNING "HDMI: hinfo %p not registered\n", hinfo);
317 return -EINVAL;
318}
319
320static int cvt_nid_to_cvt_index(struct hdmi_spec *spec, hda_nid_t cvt_nid)
321{
322 int cvt_idx;
323
324 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
325 if (spec->cvts[cvt_idx].cvt_nid == cvt_nid)
326 return cvt_idx;
327
328 snd_printk(KERN_WARNING "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800329 return -EINVAL;
330}
331
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500332static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
333 struct snd_ctl_elem_info *uinfo)
334{
335 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
336 struct hdmi_spec *spec;
337 int pin_idx;
338
339 spec = codec->spec;
340 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
341
342 pin_idx = kcontrol->private_value;
343 uinfo->count = spec->pins[pin_idx].sink_eld.eld_size;
344
345 return 0;
346}
347
348static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
349 struct snd_ctl_elem_value *ucontrol)
350{
351 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
352 struct hdmi_spec *spec;
353 int pin_idx;
354
355 spec = codec->spec;
356 pin_idx = kcontrol->private_value;
357
358 memcpy(ucontrol->value.bytes.data,
359 spec->pins[pin_idx].sink_eld.eld_buffer, ELD_MAX_SIZE);
360
361 return 0;
362}
363
364static struct snd_kcontrol_new eld_bytes_ctl = {
365 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
366 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
367 .name = "ELD",
368 .info = hdmi_eld_ctl_info,
369 .get = hdmi_eld_ctl_get,
370};
371
372static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
373 int device)
374{
375 struct snd_kcontrol *kctl;
376 struct hdmi_spec *spec = codec->spec;
377 int err;
378
379 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
380 if (!kctl)
381 return -ENOMEM;
382 kctl->private_value = pin_idx;
383 kctl->id.device = device;
384
385 err = snd_hda_ctl_add(codec, spec->pins[pin_idx].pin_nid, kctl);
386 if (err < 0)
387 return err;
388
389 return 0;
390}
391
Wu Fengguang079d88c2010-03-08 10:44:23 +0800392#ifdef BE_PARANOID
393static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
394 int *packet_index, int *byte_index)
395{
396 int val;
397
398 val = snd_hda_codec_read(codec, pin_nid, 0,
399 AC_VERB_GET_HDMI_DIP_INDEX, 0);
400
401 *packet_index = val >> 5;
402 *byte_index = val & 0x1f;
403}
404#endif
405
406static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
407 int packet_index, int byte_index)
408{
409 int val;
410
411 val = (packet_index << 5) | (byte_index & 0x1f);
412
413 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
414}
415
416static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
417 unsigned char val)
418{
419 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
420}
421
Stephen Warren384a48d2011-06-01 11:14:21 -0600422static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800423{
424 /* Unmute */
425 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
426 snd_hda_codec_write(codec, pin_nid, 0,
427 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Stephen Warren384a48d2011-06-01 11:14:21 -0600428 /* Disable pin out until stream is active*/
Wu Fengguang079d88c2010-03-08 10:44:23 +0800429 snd_hda_codec_write(codec, pin_nid, 0,
Stephen Warren384a48d2011-06-01 11:14:21 -0600430 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800431}
432
Stephen Warren384a48d2011-06-01 11:14:21 -0600433static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800434{
Stephen Warren384a48d2011-06-01 11:14:21 -0600435 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800436 AC_VERB_GET_CVT_CHAN_COUNT, 0);
437}
438
439static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600440 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800441{
Stephen Warren384a48d2011-06-01 11:14:21 -0600442 if (chs != hdmi_get_channel_count(codec, cvt_nid))
443 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800444 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
445}
446
447
448/*
449 * Channel mapping routines
450 */
451
452/*
453 * Compute derived values in channel_allocations[].
454 */
455static void init_channel_allocations(void)
456{
457 int i, j;
458 struct cea_channel_speaker_allocation *p;
459
460 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
461 p = channel_allocations + i;
462 p->channels = 0;
463 p->spk_mask = 0;
464 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
465 if (p->speakers[j]) {
466 p->channels++;
467 p->spk_mask |= p->speakers[j];
468 }
469 }
470}
471
472/*
473 * The transformation takes two steps:
474 *
475 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
476 * spk_mask => (channel_allocations[]) => ai->CA
477 *
478 * TODO: it could select the wrong CA from multiple candidates.
479*/
Stephen Warren384a48d2011-06-01 11:14:21 -0600480static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800481{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800482 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800483 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800484 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800485 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
486
487 /*
488 * CA defaults to 0 for basic stereo audio
489 */
490 if (channels <= 2)
491 return 0;
492
Wu Fengguang079d88c2010-03-08 10:44:23 +0800493 /*
494 * expand ELD's speaker allocation mask
495 *
496 * ELD tells the speaker mask in a compact(paired) form,
497 * expand ELD's notions to match the ones used by Audio InfoFrame.
498 */
499 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
500 if (eld->spk_alloc & (1 << i))
501 spk_mask |= eld_speaker_allocation_bits[i];
502 }
503
504 /* search for the first working match in the CA table */
505 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
506 if (channels == channel_allocations[i].channels &&
507 (spk_mask & channel_allocations[i].spk_mask) ==
508 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800509 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800510 break;
511 }
512 }
513
514 snd_print_channel_allocation(eld->spk_alloc, buf, sizeof(buf));
Wu Fengguang2abbf432010-03-08 10:45:38 +0800515 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800516 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800517
Wu Fengguang53d7d692010-09-21 14:25:49 +0800518 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800519}
520
521static void hdmi_debug_channel_mapping(struct hda_codec *codec,
522 hda_nid_t pin_nid)
523{
524#ifdef CONFIG_SND_DEBUG_VERBOSE
525 int i;
526 int slot;
527
528 for (i = 0; i < 8; i++) {
529 slot = snd_hda_codec_read(codec, pin_nid, 0,
530 AC_VERB_GET_HDMI_CHAN_SLOT, i);
531 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
532 slot >> 4, slot & 0xf);
533 }
534#endif
535}
536
537
538static void hdmi_setup_channel_mapping(struct hda_codec *codec,
539 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800540 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800541{
542 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800543 int err;
544
545 if (hdmi_channel_mapping[ca][1] == 0) {
546 for (i = 0; i < channel_allocations[ca].channels; i++)
547 hdmi_channel_mapping[ca][i] = i | (i << 4);
548 for (; i < 8; i++)
549 hdmi_channel_mapping[ca][i] = 0xf | (i << 4);
550 }
551
552 for (i = 0; i < 8; i++) {
553 err = snd_hda_codec_write(codec, pin_nid, 0,
554 AC_VERB_SET_HDMI_CHAN_SLOT,
555 hdmi_channel_mapping[ca][i]);
556 if (err) {
Wu Fengguang2abbf432010-03-08 10:45:38 +0800557 snd_printdd(KERN_NOTICE
558 "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800559 break;
560 }
561 }
562
563 hdmi_debug_channel_mapping(codec, pin_nid);
564}
565
566
567/*
568 * Audio InfoFrame routines
569 */
570
571/*
572 * Enable Audio InfoFrame Transmission
573 */
574static void hdmi_start_infoframe_trans(struct hda_codec *codec,
575 hda_nid_t pin_nid)
576{
577 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
578 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
579 AC_DIPXMIT_BEST);
580}
581
582/*
583 * Disable Audio InfoFrame Transmission
584 */
585static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
586 hda_nid_t pin_nid)
587{
588 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
589 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
590 AC_DIPXMIT_DISABLE);
591}
592
593static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
594{
595#ifdef CONFIG_SND_DEBUG_VERBOSE
596 int i;
597 int size;
598
599 size = snd_hdmi_get_eld_size(codec, pin_nid);
600 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
601
602 for (i = 0; i < 8; i++) {
603 size = snd_hda_codec_read(codec, pin_nid, 0,
604 AC_VERB_GET_HDMI_DIP_SIZE, i);
605 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
606 }
607#endif
608}
609
610static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
611{
612#ifdef BE_PARANOID
613 int i, j;
614 int size;
615 int pi, bi;
616 for (i = 0; i < 8; i++) {
617 size = snd_hda_codec_read(codec, pin_nid, 0,
618 AC_VERB_GET_HDMI_DIP_SIZE, i);
619 if (size == 0)
620 continue;
621
622 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
623 for (j = 1; j < 1000; j++) {
624 hdmi_write_dip_byte(codec, pin_nid, 0x0);
625 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
626 if (pi != i)
627 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
628 bi, pi, i);
629 if (bi == 0) /* byte index wrapped around */
630 break;
631 }
632 snd_printd(KERN_INFO
633 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
634 i, size, j);
635 }
636#endif
637}
638
Wu Fengguang53d7d692010-09-21 14:25:49 +0800639static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800640{
Wu Fengguang53d7d692010-09-21 14:25:49 +0800641 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800642 u8 sum = 0;
643 int i;
644
Wu Fengguang53d7d692010-09-21 14:25:49 +0800645 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800646
Wu Fengguang53d7d692010-09-21 14:25:49 +0800647 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800648 sum += bytes[i];
649
Wu Fengguang53d7d692010-09-21 14:25:49 +0800650 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800651}
652
653static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
654 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800655 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800656{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800657 int i;
658
659 hdmi_debug_dip_size(codec, pin_nid);
660 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
661
Wu Fengguang079d88c2010-03-08 10:44:23 +0800662 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800663 for (i = 0; i < size; i++)
664 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800665}
666
667static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800668 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800669{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800670 u8 val;
671 int i;
672
673 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
674 != AC_DIPXMIT_BEST)
675 return false;
676
677 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800678 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800679 val = snd_hda_codec_read(codec, pin_nid, 0,
680 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800681 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +0800682 return false;
683 }
684
685 return true;
686}
687
Stephen Warren384a48d2011-06-01 11:14:21 -0600688static void hdmi_setup_audio_infoframe(struct hda_codec *codec, int pin_idx,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800689 struct snd_pcm_substream *substream)
690{
691 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600692 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
693 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800694 int channels = substream->runtime->channels;
Stephen Warren384a48d2011-06-01 11:14:21 -0600695 struct hdmi_eld *eld;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800696 int ca;
Takashi Iwai2b203db2011-02-11 12:17:30 +0100697 union audio_infoframe ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800698
Stephen Warren384a48d2011-06-01 11:14:21 -0600699 eld = &spec->pins[pin_idx].sink_eld;
700 if (!eld->monitor_present)
701 return;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800702
Stephen Warren384a48d2011-06-01 11:14:21 -0600703 ca = hdmi_channel_allocation(eld, channels);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800704
Stephen Warren384a48d2011-06-01 11:14:21 -0600705 memset(&ai, 0, sizeof(ai));
706 if (eld->conn_type == 0) { /* HDMI */
707 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800708
Stephen Warren384a48d2011-06-01 11:14:21 -0600709 hdmi_ai->type = 0x84;
710 hdmi_ai->ver = 0x01;
711 hdmi_ai->len = 0x0a;
712 hdmi_ai->CC02_CT47 = channels - 1;
713 hdmi_ai->CA = ca;
714 hdmi_checksum_audio_infoframe(hdmi_ai);
715 } else if (eld->conn_type == 1) { /* DisplayPort */
716 struct dp_audio_infoframe *dp_ai = &ai.dp;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800717
Stephen Warren384a48d2011-06-01 11:14:21 -0600718 dp_ai->type = 0x84;
719 dp_ai->len = 0x1b;
720 dp_ai->ver = 0x11 << 2;
721 dp_ai->CC02_CT47 = channels - 1;
722 dp_ai->CA = ca;
723 } else {
724 snd_printd("HDMI: unknown connection type at pin %d\n",
725 pin_nid);
726 return;
727 }
Wu Fengguang53d7d692010-09-21 14:25:49 +0800728
Stephen Warren384a48d2011-06-01 11:14:21 -0600729 /*
730 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
731 * sizeof(*dp_ai) to avoid partial match/update problems when
732 * the user switches between HDMI/DP monitors.
733 */
734 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
735 sizeof(ai))) {
736 snd_printdd("hdmi_setup_audio_infoframe: "
737 "pin=%d channels=%d\n",
738 pin_nid,
739 channels);
740 hdmi_setup_channel_mapping(codec, pin_nid, ca);
741 hdmi_stop_infoframe_trans(codec, pin_nid);
742 hdmi_fill_audio_infoframe(codec, pin_nid,
743 ai.bytes, sizeof(ai));
744 hdmi_start_infoframe_trans(codec, pin_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800745 }
746}
747
748
749/*
750 * Unsolicited events
751 */
752
Wu Fengguangc6e84532011-11-18 16:59:32 -0600753static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +0200754
Wu Fengguang079d88c2010-03-08 10:44:23 +0800755static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
756{
757 struct hdmi_spec *spec = codec->spec;
Takashi Iwai3a938972011-10-28 01:16:55 +0200758 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
759 int pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -0600760 int pin_idx;
Takashi Iwai3a938972011-10-28 01:16:55 +0200761 struct hda_jack_tbl *jack;
762
763 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
764 if (!jack)
765 return;
766 pin_nid = jack->nid;
767 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800768
Fengguang Wufae3d882012-04-10 17:00:35 +0800769 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -0600770 "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Fengguang Wufae3d882012-04-10 17:00:35 +0800771 codec->addr, pin_nid,
772 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +0800773
Stephen Warren384a48d2011-06-01 11:14:21 -0600774 pin_idx = pin_nid_to_pin_index(spec, pin_nid);
775 if (pin_idx < 0)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800776 return;
777
Wu Fengguangc6e84532011-11-18 16:59:32 -0600778 hdmi_present_sense(&spec->pins[pin_idx], 1);
Takashi Iwai01a61e12011-10-28 00:03:22 +0200779 snd_hda_jack_report_sync(codec);
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{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800807 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
808 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
809
Takashi Iwai3a938972011-10-28 01:16:55 +0200810 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800811 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
812 return;
813 }
814
815 if (subtag == 0)
816 hdmi_intrinsic_event(codec, res);
817 else
818 hdmi_non_intrinsic_event(codec, res);
819}
820
821/*
822 * Callbacks
823 */
824
Takashi Iwai92f10b32010-08-03 14:21:00 +0200825/* HBR should be Non-PCM, 8 channels */
826#define is_hbr_format(format) \
827 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
828
Stephen Warren384a48d2011-06-01 11:14:21 -0600829static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
830 hda_nid_t pin_nid, u32 stream_tag, int format)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800831{
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300832 int pinctl;
833 int new_pinctl = 0;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300834
Stephen Warren384a48d2011-06-01 11:14:21 -0600835 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
836 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300837 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
838
839 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Takashi Iwai92f10b32010-08-03 14:21:00 +0200840 if (is_hbr_format(format))
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300841 new_pinctl |= AC_PINCTL_EPT_HBR;
842 else
843 new_pinctl |= AC_PINCTL_EPT_NATIVE;
844
845 snd_printdd("hdmi_setup_stream: "
846 "NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -0600847 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300848 pinctl == new_pinctl ? "" : "new-",
849 new_pinctl);
850
851 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -0600852 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300853 AC_VERB_SET_PIN_WIDGET_CONTROL,
854 new_pinctl);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300855
Stephen Warren384a48d2011-06-01 11:14:21 -0600856 }
Takashi Iwai92f10b32010-08-03 14:21:00 +0200857 if (is_hbr_format(format) && !new_pinctl) {
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300858 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
859 return -EINVAL;
860 }
Wu Fengguang079d88c2010-03-08 10:44:23 +0800861
Stephen Warren384a48d2011-06-01 11:14:21 -0600862 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300863 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800864}
865
866/*
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200867 * HDA PCM callbacks
868 */
869static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
870 struct hda_codec *codec,
871 struct snd_pcm_substream *substream)
872{
873 struct hdmi_spec *spec = codec->spec;
Takashi Iwai639cef02011-01-14 10:30:46 +0100874 struct snd_pcm_runtime *runtime = substream->runtime;
Stephen Warren384a48d2011-06-01 11:14:21 -0600875 int pin_idx, cvt_idx, mux_idx = 0;
876 struct hdmi_spec_per_pin *per_pin;
877 struct hdmi_eld *eld;
878 struct hdmi_spec_per_cvt *per_cvt = NULL;
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200879
Stephen Warren384a48d2011-06-01 11:14:21 -0600880 /* Validate hinfo */
881 pin_idx = hinfo_to_pin_index(spec, hinfo);
882 if (snd_BUG_ON(pin_idx < 0))
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200883 return -EINVAL;
Stephen Warren384a48d2011-06-01 11:14:21 -0600884 per_pin = &spec->pins[pin_idx];
885 eld = &per_pin->sink_eld;
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200886
Stephen Warren384a48d2011-06-01 11:14:21 -0600887 /* Dynamically assign converter to stream */
888 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
889 per_cvt = &spec->cvts[cvt_idx];
890
891 /* Must not already be assigned */
892 if (per_cvt->assigned)
893 continue;
894 /* Must be in pin's mux's list of converters */
895 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
896 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
897 break;
898 /* Not in mux list */
899 if (mux_idx == per_pin->num_mux_nids)
900 continue;
901 break;
902 }
903 /* No free converters */
904 if (cvt_idx == spec->num_cvts)
905 return -ENODEV;
906
907 /* Claim converter */
908 per_cvt->assigned = 1;
909 hinfo->nid = per_cvt->cvt_nid;
910
911 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
912 AC_VERB_SET_CONNECT_SEL,
913 mux_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -0600914 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200915
Stephen Warren2def8172011-06-01 11:14:20 -0600916 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -0600917 hinfo->channels_min = per_cvt->channels_min;
918 hinfo->channels_max = per_cvt->channels_max;
919 hinfo->rates = per_cvt->rates;
920 hinfo->formats = per_cvt->formats;
921 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -0600922
Stephen Warren384a48d2011-06-01 11:14:21 -0600923 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -0600924 if (!static_hdmi_pcm && eld->eld_valid) {
Stephen Warren2def8172011-06-01 11:14:20 -0600925 snd_hdmi_eld_update_pcm_info(eld, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200926 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai63b2afe2013-02-01 14:01:27 +0100927 !hinfo->rates || !hinfo->formats) {
928 per_cvt->assigned = 0;
929 hinfo->nid = 0;
930 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200931 return -ENODEV;
Takashi Iwai63b2afe2013-02-01 14:01:27 +0100932 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200933 }
Stephen Warren2def8172011-06-01 11:14:20 -0600934
935 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +0100936 runtime->hw.channels_min = hinfo->channels_min;
937 runtime->hw.channels_max = hinfo->channels_max;
938 runtime->hw.formats = hinfo->formats;
939 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +0100940
941 snd_pcm_hw_constraint_step(substream->runtime, 0,
942 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200943 return 0;
944}
945
946/*
Wu Fengguang079d88c2010-03-08 10:44:23 +0800947 * HDA/HDMI auto parsing
948 */
Stephen Warren384a48d2011-06-01 11:14:21 -0600949static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800950{
951 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600952 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
953 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800954
955 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
956 snd_printk(KERN_WARNING
957 "HDMI: pin %d wcaps %#x "
958 "does not support connection list\n",
959 pin_nid, get_wcaps(codec, pin_nid));
960 return -EINVAL;
961 }
962
Stephen Warren384a48d2011-06-01 11:14:21 -0600963 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
964 per_pin->mux_nids,
965 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800966
967 return 0;
968}
969
Wu Fengguangc6e84532011-11-18 16:59:32 -0600970static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800971{
Wu Fengguang744626d2011-11-16 16:29:47 +0800972 struct hda_codec *codec = per_pin->codec;
973 struct hdmi_eld *eld = &per_pin->sink_eld;
974 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -0600975 /*
976 * Always execute a GetPinSense verb here, even when called from
977 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
978 * response's PD bit is not the real PD value, but indicates that
979 * the real PD value changed. An older version of the HD-audio
980 * specification worked this way. Hence, we just ignore the data in
981 * the unsolicited response to avoid custom WARs.
982 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800983 int present = snd_hda_pin_sense(codec, pin_nid);
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800984 bool eld_valid = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800985
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800986 memset(eld, 0, offsetof(struct hdmi_eld, eld_buffer));
Wu Fengguang079d88c2010-03-08 10:44:23 +0800987
Stephen Warren5d44f922011-05-24 17:11:17 -0600988 eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
989 if (eld->monitor_present)
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800990 eld_valid = !!(present & AC_PINSENSE_ELDV);
Stephen Warren5d44f922011-05-24 17:11:17 -0600991
Fengguang Wufae3d882012-04-10 17:00:35 +0800992 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -0600993 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800994 codec->addr, pin_nid, eld->monitor_present, eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -0600995
David Henningsson65232892013-02-19 16:11:22 +0100996 eld->eld_valid = false;
Wu Fengguang744626d2011-11-16 16:29:47 +0800997 if (eld_valid) {
Stephen Warren5d44f922011-05-24 17:11:17 -0600998 if (!snd_hdmi_get_eld(eld, codec, pin_nid))
999 snd_hdmi_show_eld(eld);
Wu Fengguangc6e84532011-11-18 16:59:32 -06001000 else if (repoll) {
Wu Fengguang744626d2011-11-16 16:29:47 +08001001 queue_delayed_work(codec->bus->workq,
1002 &per_pin->work,
1003 msecs_to_jiffies(300));
1004 }
1005 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001006}
1007
Wu Fengguang744626d2011-11-16 16:29:47 +08001008static void hdmi_repoll_eld(struct work_struct *work)
1009{
1010 struct hdmi_spec_per_pin *per_pin =
1011 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1012
Wu Fengguangc6e84532011-11-18 16:59:32 -06001013 if (per_pin->repoll_count++ > 6)
1014 per_pin->repoll_count = 0;
1015
1016 hdmi_present_sense(per_pin, per_pin->repoll_count);
Wu Fengguang744626d2011-11-16 16:29:47 +08001017}
1018
Wu Fengguang079d88c2010-03-08 10:44:23 +08001019static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1020{
1021 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001022 unsigned int caps, config;
1023 int pin_idx;
1024 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001025 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001026
Stephen Warren384a48d2011-06-01 11:14:21 -06001027 caps = snd_hda_param_read(codec, pin_nid, AC_PAR_PIN_CAP);
1028 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1029 return 0;
1030
1031 config = snd_hda_codec_read(codec, pin_nid, 0,
1032 AC_VERB_GET_CONFIG_DEFAULT, 0);
1033 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1034 return 0;
1035
1036 if (snd_BUG_ON(spec->num_pins >= MAX_HDMI_PINS))
Wu Fengguang3eaead52010-05-14 16:36:15 +08001037 return -E2BIG;
Stephen Warren384a48d2011-06-01 11:14:21 -06001038
1039 pin_idx = spec->num_pins;
1040 per_pin = &spec->pins[pin_idx];
Stephen Warren384a48d2011-06-01 11:14:21 -06001041
1042 per_pin->pin_nid = pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001043
Stephen Warren384a48d2011-06-01 11:14:21 -06001044 err = hdmi_read_pin_conn(codec, pin_idx);
1045 if (err < 0)
1046 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001047
Wu Fengguang079d88c2010-03-08 10:44:23 +08001048 spec->num_pins++;
1049
Stephen Warren384a48d2011-06-01 11:14:21 -06001050 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001051}
1052
Stephen Warren384a48d2011-06-01 11:14:21 -06001053static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001054{
1055 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001056 int cvt_idx;
1057 struct hdmi_spec_per_cvt *per_cvt;
1058 unsigned int chans;
1059 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001060
David Henningsson116dcde2010-11-23 10:23:40 +01001061 if (snd_BUG_ON(spec->num_cvts >= MAX_HDMI_CVTS))
1062 return -E2BIG;
1063
Stephen Warren384a48d2011-06-01 11:14:21 -06001064 chans = get_wcaps(codec, cvt_nid);
1065 chans = get_wcaps_channels(chans);
1066
1067 cvt_idx = spec->num_cvts;
1068 per_cvt = &spec->cvts[cvt_idx];
1069
1070 per_cvt->cvt_nid = cvt_nid;
1071 per_cvt->channels_min = 2;
1072 if (chans <= 16)
1073 per_cvt->channels_max = chans;
1074
1075 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1076 &per_cvt->rates,
1077 &per_cvt->formats,
1078 &per_cvt->maxbps);
1079 if (err < 0)
1080 return err;
1081
Wu Fengguang079d88c2010-03-08 10:44:23 +08001082 spec->num_cvts++;
1083
1084 return 0;
1085}
1086
1087static int hdmi_parse_codec(struct hda_codec *codec)
1088{
1089 hda_nid_t nid;
1090 int i, nodes;
1091
1092 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
1093 if (!nid || nodes < 0) {
1094 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
1095 return -EINVAL;
1096 }
1097
1098 for (i = 0; i < nodes; i++, nid++) {
1099 unsigned int caps;
1100 unsigned int type;
1101
1102 caps = snd_hda_param_read(codec, nid, AC_PAR_AUDIO_WIDGET_CAP);
1103 type = get_wcaps_type(caps);
1104
1105 if (!(caps & AC_WCAP_DIGITAL))
1106 continue;
1107
1108 switch (type) {
1109 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001110 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001111 break;
1112 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001113 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001114 break;
1115 }
1116 }
1117
1118 /*
1119 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1120 * can be lost and presence sense verb will become inaccurate if the
1121 * HDA link is powered off at hot plug or hw initialization time.
1122 */
1123#ifdef CONFIG_SND_HDA_POWER_SAVE
1124 if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
1125 AC_PWRST_EPSS))
1126 codec->bus->power_keep_link_on = 1;
1127#endif
1128
1129 return 0;
1130}
1131
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001132/*
1133 */
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001134static char *get_hdmi_pcm_name(int idx)
1135{
1136 static char names[MAX_HDMI_PINS][8];
1137 sprintf(&names[idx][0], "HDMI %d", idx);
1138 return &names[idx][0];
1139}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001140
1141/*
1142 * HDMI callbacks
1143 */
1144
1145static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1146 struct hda_codec *codec,
1147 unsigned int stream_tag,
1148 unsigned int format,
1149 struct snd_pcm_substream *substream)
1150{
Stephen Warren384a48d2011-06-01 11:14:21 -06001151 hda_nid_t cvt_nid = hinfo->nid;
1152 struct hdmi_spec *spec = codec->spec;
1153 int pin_idx = hinfo_to_pin_index(spec, hinfo);
1154 hda_nid_t pin_nid = spec->pins[pin_idx].pin_nid;
Dylan Reid761f1862012-07-19 17:52:58 -07001155 int pinctl;
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
Dylan Reid761f1862012-07-19 17:52:58 -07001161 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
1162 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1163 snd_hda_codec_write(codec, pin_nid, 0,
1164 AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl | PIN_OUT);
1165
Stephen Warren384a48d2011-06-01 11:14:21 -06001166 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001167}
1168
Stephen Warren384a48d2011-06-01 11:14:21 -06001169static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1170 struct hda_codec *codec,
1171 struct snd_pcm_substream *substream)
1172{
1173 struct hdmi_spec *spec = codec->spec;
1174 int cvt_idx, pin_idx;
1175 struct hdmi_spec_per_cvt *per_cvt;
1176 struct hdmi_spec_per_pin *per_pin;
1177 int pinctl;
1178
1179 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
1180
1181 if (hinfo->nid) {
1182 cvt_idx = cvt_nid_to_cvt_index(spec, hinfo->nid);
1183 if (snd_BUG_ON(cvt_idx < 0))
1184 return -EINVAL;
1185 per_cvt = &spec->cvts[cvt_idx];
1186
1187 snd_BUG_ON(!per_cvt->assigned);
1188 per_cvt->assigned = 0;
1189 hinfo->nid = 0;
1190
1191 pin_idx = hinfo_to_pin_index(spec, hinfo);
1192 if (snd_BUG_ON(pin_idx < 0))
1193 return -EINVAL;
1194 per_pin = &spec->pins[pin_idx];
1195
1196 pinctl = snd_hda_codec_read(codec, per_pin->pin_nid, 0,
1197 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1198 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
1199 AC_VERB_SET_PIN_WIDGET_CONTROL,
1200 pinctl & ~PIN_OUT);
1201 snd_hda_spdif_ctls_unassign(codec, pin_idx);
1202 }
1203
1204 return 0;
1205}
1206
1207static const struct hda_pcm_ops generic_ops = {
1208 .open = hdmi_pcm_open,
1209 .prepare = generic_hdmi_playback_pcm_prepare,
1210 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001211};
1212
1213static int generic_hdmi_build_pcms(struct hda_codec *codec)
1214{
1215 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001216 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001217
Stephen Warren384a48d2011-06-01 11:14:21 -06001218 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1219 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001220 struct hda_pcm_stream *pstr;
1221
Stephen Warren384a48d2011-06-01 11:14:21 -06001222 info = &spec->pcm_rec[pin_idx];
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001223 info->name = get_hdmi_pcm_name(pin_idx);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001224 info->pcm_type = HDA_PCM_TYPE_HDMI;
Stephen Warren384a48d2011-06-01 11:14:21 -06001225
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001226 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06001227 pstr->substreams = 1;
1228 pstr->ops = generic_ops;
1229 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001230 }
1231
Stephen Warren384a48d2011-06-01 11:14:21 -06001232 codec->num_pcms = spec->num_pins;
1233 codec->pcm_info = spec->pcm_rec;
1234
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001235 return 0;
1236}
1237
David Henningsson0b6c49b2011-08-23 16:56:03 +02001238static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
1239{
Takashi Iwai31ef2252011-12-01 17:41:36 +01001240 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02001241 struct hdmi_spec *spec = codec->spec;
1242 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1243 int pcmdev = spec->pcm_rec[pin_idx].device;
1244
Takashi Iwai31ef2252011-12-01 17:41:36 +01001245 if (pcmdev > 0)
1246 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001247
Takashi Iwai31ef2252011-12-01 17:41:36 +01001248 return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001249}
1250
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001251static int generic_hdmi_build_controls(struct hda_codec *codec)
1252{
1253 struct hdmi_spec *spec = codec->spec;
1254 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001255 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001256
Stephen Warren384a48d2011-06-01 11:14:21 -06001257 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1258 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
David Henningsson0b6c49b2011-08-23 16:56:03 +02001259
1260 err = generic_hdmi_build_jack(codec, pin_idx);
1261 if (err < 0)
1262 return err;
1263
Stephen Warren384a48d2011-06-01 11:14:21 -06001264 err = snd_hda_create_spdif_out_ctls(codec,
1265 per_pin->pin_nid,
1266 per_pin->mux_nids[0]);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001267 if (err < 0)
1268 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001269 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05001270
1271 /* add control for ELD Bytes */
1272 err = hdmi_create_eld_ctl(codec,
1273 pin_idx,
1274 spec->pcm_rec[pin_idx].device);
1275
1276 if (err < 0)
1277 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01001278
Takashi Iwai82b1d732011-12-20 15:53:07 +01001279 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001280 }
1281
1282 return 0;
1283}
1284
1285static int generic_hdmi_init(struct hda_codec *codec)
1286{
1287 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001288 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001289
Stephen Warren384a48d2011-06-01 11:14:21 -06001290 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1291 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1292 hda_nid_t pin_nid = per_pin->pin_nid;
1293 struct hdmi_eld *eld = &per_pin->sink_eld;
1294
1295 hdmi_init_pin(codec, pin_nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001296 snd_hda_jack_detect_enable(codec, pin_nid, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001297
Wu Fengguang744626d2011-11-16 16:29:47 +08001298 per_pin->codec = codec;
1299 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
Stephen Warren384a48d2011-06-01 11:14:21 -06001300 snd_hda_eld_proc_new(codec, eld, pin_idx);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001301 }
Takashi Iwai01a61e12011-10-28 00:03:22 +02001302 snd_hda_jack_report_sync(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001303 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 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001318
Wu Fengguang744626d2011-11-16 16:29:47 +08001319 flush_workqueue(codec->bus->workq);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001320 kfree(spec);
1321}
1322
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001323static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001324 .init = generic_hdmi_init,
1325 .free = generic_hdmi_free,
1326 .build_pcms = generic_hdmi_build_pcms,
1327 .build_controls = generic_hdmi_build_controls,
1328 .unsol_event = hdmi_unsol_event,
1329};
1330
1331static int patch_generic_hdmi(struct hda_codec *codec)
1332{
1333 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001334
1335 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1336 if (spec == NULL)
1337 return -ENOMEM;
1338
1339 codec->spec = spec;
1340 if (hdmi_parse_codec(codec) < 0) {
1341 codec->spec = NULL;
1342 kfree(spec);
1343 return -EINVAL;
1344 }
1345 codec->patch_ops = generic_hdmi_patch_ops;
1346
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001347 init_channel_allocations();
1348
1349 return 0;
1350}
1351
1352/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06001353 * Shared non-generic implementations
1354 */
1355
1356static int simple_playback_build_pcms(struct hda_codec *codec)
1357{
1358 struct hdmi_spec *spec = codec->spec;
1359 struct hda_pcm *info = spec->pcm_rec;
1360 int i;
1361
1362 codec->num_pcms = spec->num_cvts;
1363 codec->pcm_info = info;
1364
1365 for (i = 0; i < codec->num_pcms; i++, info++) {
1366 unsigned int chans;
1367 struct hda_pcm_stream *pstr;
1368
Stephen Warren384a48d2011-06-01 11:14:21 -06001369 chans = get_wcaps(codec, spec->cvts[i].cvt_nid);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001370 chans = get_wcaps_channels(chans);
1371
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001372 info->name = get_hdmi_pcm_name(i);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001373 info->pcm_type = HDA_PCM_TYPE_HDMI;
1374 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
1375 snd_BUG_ON(!spec->pcm_playback);
1376 *pstr = *spec->pcm_playback;
Stephen Warren384a48d2011-06-01 11:14:21 -06001377 pstr->nid = spec->cvts[i].cvt_nid;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001378 if (pstr->channels_max <= 2 && chans && chans <= 16)
1379 pstr->channels_max = chans;
1380 }
1381
1382 return 0;
1383}
1384
1385static int simple_playback_build_controls(struct hda_codec *codec)
1386{
1387 struct hdmi_spec *spec = codec->spec;
1388 int err;
1389 int i;
1390
1391 for (i = 0; i < codec->num_pcms; i++) {
1392 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren384a48d2011-06-01 11:14:21 -06001393 spec->cvts[i].cvt_nid,
1394 spec->cvts[i].cvt_nid);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001395 if (err < 0)
1396 return err;
1397 }
1398
1399 return 0;
1400}
1401
1402static void simple_playback_free(struct hda_codec *codec)
1403{
1404 struct hdmi_spec *spec = codec->spec;
1405
1406 kfree(spec);
1407}
1408
1409/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001410 * Nvidia specific implementations
1411 */
1412
1413#define Nv_VERB_SET_Channel_Allocation 0xF79
1414#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
1415#define Nv_VERB_SET_Audio_Protection_On 0xF98
1416#define Nv_VERB_SET_Audio_Protection_Off 0xF99
1417
1418#define nvhdmi_master_con_nid_7x 0x04
1419#define nvhdmi_master_pin_nid_7x 0x05
1420
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001421static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001422 /*front, rear, clfe, rear_surr */
1423 0x6, 0x8, 0xa, 0xc,
1424};
1425
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001426static const struct hda_verb nvhdmi_basic_init_7x[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001427 /* set audio protect on */
1428 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
1429 /* enable digital output on pin widget */
1430 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1431 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1432 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1433 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1434 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1435 {} /* terminator */
1436};
1437
1438#ifdef LIMITED_RATE_FMT_SUPPORT
1439/* support only the safe format and rate */
1440#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
1441#define SUPPORTED_MAXBPS 16
1442#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1443#else
1444/* support all rates and formats */
1445#define SUPPORTED_RATES \
1446 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
1447 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
1448 SNDRV_PCM_RATE_192000)
1449#define SUPPORTED_MAXBPS 24
1450#define SUPPORTED_FORMATS \
1451 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
1452#endif
1453
1454static int nvhdmi_7x_init(struct hda_codec *codec)
1455{
1456 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x);
1457 return 0;
1458}
1459
Nitin Daga393004b2011-01-10 21:49:31 +05301460static unsigned int channels_2_6_8[] = {
1461 2, 6, 8
1462};
1463
1464static unsigned int channels_2_8[] = {
1465 2, 8
1466};
1467
1468static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
1469 .count = ARRAY_SIZE(channels_2_6_8),
1470 .list = channels_2_6_8,
1471 .mask = 0,
1472};
1473
1474static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
1475 .count = ARRAY_SIZE(channels_2_8),
1476 .list = channels_2_8,
1477 .mask = 0,
1478};
1479
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001480static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
1481 struct hda_codec *codec,
1482 struct snd_pcm_substream *substream)
1483{
1484 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05301485 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
1486
1487 switch (codec->preset->id) {
1488 case 0x10de0002:
1489 case 0x10de0003:
1490 case 0x10de0005:
1491 case 0x10de0006:
1492 hw_constraints_channels = &hw_constraints_2_8_channels;
1493 break;
1494 case 0x10de0007:
1495 hw_constraints_channels = &hw_constraints_2_6_8_channels;
1496 break;
1497 default:
1498 break;
1499 }
1500
1501 if (hw_constraints_channels != NULL) {
1502 snd_pcm_hw_constraint_list(substream->runtime, 0,
1503 SNDRV_PCM_HW_PARAM_CHANNELS,
1504 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01001505 } else {
1506 snd_pcm_hw_constraint_step(substream->runtime, 0,
1507 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05301508 }
1509
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001510 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1511}
1512
1513static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
1514 struct hda_codec *codec,
1515 struct snd_pcm_substream *substream)
1516{
1517 struct hdmi_spec *spec = codec->spec;
1518 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1519}
1520
1521static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1522 struct hda_codec *codec,
1523 unsigned int stream_tag,
1524 unsigned int format,
1525 struct snd_pcm_substream *substream)
1526{
1527 struct hdmi_spec *spec = codec->spec;
1528 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1529 stream_tag, format, substream);
1530}
1531
Aaron Plattner1f348522011-04-06 17:19:04 -07001532static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
1533 int channels)
1534{
1535 unsigned int chanmask;
1536 int chan = channels ? (channels - 1) : 1;
1537
1538 switch (channels) {
1539 default:
1540 case 0:
1541 case 2:
1542 chanmask = 0x00;
1543 break;
1544 case 4:
1545 chanmask = 0x08;
1546 break;
1547 case 6:
1548 chanmask = 0x0b;
1549 break;
1550 case 8:
1551 chanmask = 0x13;
1552 break;
1553 }
1554
1555 /* Set the audio infoframe channel allocation and checksum fields. The
1556 * channel count is computed implicitly by the hardware. */
1557 snd_hda_codec_write(codec, 0x1, 0,
1558 Nv_VERB_SET_Channel_Allocation, chanmask);
1559
1560 snd_hda_codec_write(codec, 0x1, 0,
1561 Nv_VERB_SET_Info_Frame_Checksum,
1562 (0x71 - chan - chanmask));
1563}
1564
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001565static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
1566 struct hda_codec *codec,
1567 struct snd_pcm_substream *substream)
1568{
1569 struct hdmi_spec *spec = codec->spec;
1570 int i;
1571
1572 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
1573 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1574 for (i = 0; i < 4; i++) {
1575 /* set the stream id */
1576 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
1577 AC_VERB_SET_CHANNEL_STREAMID, 0);
1578 /* set the stream format */
1579 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
1580 AC_VERB_SET_STREAM_FORMAT, 0);
1581 }
1582
Aaron Plattner1f348522011-04-06 17:19:04 -07001583 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
1584 * streams are disabled. */
1585 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
1586
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001587 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1588}
1589
1590static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
1591 struct hda_codec *codec,
1592 unsigned int stream_tag,
1593 unsigned int format,
1594 struct snd_pcm_substream *substream)
1595{
1596 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01001597 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001598 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06001599 struct hdmi_spec *spec = codec->spec;
1600 struct hda_spdif_out *spdif =
Stephen Warren384a48d2011-06-01 11:14:21 -06001601 snd_hda_spdif_out_of_nid(codec, spec->cvts[0].cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001602
1603 mutex_lock(&codec->spdif_mutex);
1604
1605 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001606
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001607 dataDCC2 = 0x2;
1608
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001609 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06001610 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001611 snd_hda_codec_write(codec,
1612 nvhdmi_master_con_nid_7x,
1613 0,
1614 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001615 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001616
1617 /* set the stream id */
1618 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
1619 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
1620
1621 /* set the stream format */
1622 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
1623 AC_VERB_SET_STREAM_FORMAT, format);
1624
1625 /* turn on again (if needed) */
1626 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06001627 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001628 snd_hda_codec_write(codec,
1629 nvhdmi_master_con_nid_7x,
1630 0,
1631 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001632 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001633 snd_hda_codec_write(codec,
1634 nvhdmi_master_con_nid_7x,
1635 0,
1636 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
1637 }
1638
1639 for (i = 0; i < 4; i++) {
1640 if (chs == 2)
1641 channel_id = 0;
1642 else
1643 channel_id = i * 2;
1644
1645 /* turn off SPDIF once;
1646 *otherwise the IEC958 bits won't be updated
1647 */
1648 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06001649 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001650 snd_hda_codec_write(codec,
1651 nvhdmi_con_nids_7x[i],
1652 0,
1653 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001654 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001655 /* set the stream id */
1656 snd_hda_codec_write(codec,
1657 nvhdmi_con_nids_7x[i],
1658 0,
1659 AC_VERB_SET_CHANNEL_STREAMID,
1660 (stream_tag << 4) | channel_id);
1661 /* set the stream format */
1662 snd_hda_codec_write(codec,
1663 nvhdmi_con_nids_7x[i],
1664 0,
1665 AC_VERB_SET_STREAM_FORMAT,
1666 format);
1667 /* turn on again (if needed) */
1668 /* enable and set the channel status audio/data flag */
1669 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06001670 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001671 snd_hda_codec_write(codec,
1672 nvhdmi_con_nids_7x[i],
1673 0,
1674 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001675 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001676 snd_hda_codec_write(codec,
1677 nvhdmi_con_nids_7x[i],
1678 0,
1679 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
1680 }
1681 }
1682
Aaron Plattner1f348522011-04-06 17:19:04 -07001683 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001684
1685 mutex_unlock(&codec->spdif_mutex);
1686 return 0;
1687}
1688
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001689static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001690 .substreams = 1,
1691 .channels_min = 2,
1692 .channels_max = 8,
1693 .nid = nvhdmi_master_con_nid_7x,
1694 .rates = SUPPORTED_RATES,
1695 .maxbps = SUPPORTED_MAXBPS,
1696 .formats = SUPPORTED_FORMATS,
1697 .ops = {
1698 .open = simple_playback_pcm_open,
1699 .close = nvhdmi_8ch_7x_pcm_close,
1700 .prepare = nvhdmi_8ch_7x_pcm_prepare
1701 },
1702};
1703
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001704static const struct hda_pcm_stream nvhdmi_pcm_playback_2ch = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001705 .substreams = 1,
1706 .channels_min = 2,
1707 .channels_max = 2,
1708 .nid = nvhdmi_master_con_nid_7x,
1709 .rates = SUPPORTED_RATES,
1710 .maxbps = SUPPORTED_MAXBPS,
1711 .formats = SUPPORTED_FORMATS,
1712 .ops = {
1713 .open = simple_playback_pcm_open,
1714 .close = simple_playback_pcm_close,
1715 .prepare = simple_playback_pcm_prepare
1716 },
1717};
1718
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001719static const struct hda_codec_ops nvhdmi_patch_ops_8ch_7x = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001720 .build_controls = simple_playback_build_controls,
1721 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001722 .init = nvhdmi_7x_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001723 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001724};
1725
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001726static const struct hda_codec_ops nvhdmi_patch_ops_2ch = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001727 .build_controls = simple_playback_build_controls,
1728 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001729 .init = nvhdmi_7x_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001730 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001731};
1732
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001733static int patch_nvhdmi_2ch(struct hda_codec *codec)
1734{
1735 struct hdmi_spec *spec;
1736
1737 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1738 if (spec == NULL)
1739 return -ENOMEM;
1740
1741 codec->spec = spec;
1742
1743 spec->multiout.num_dacs = 0; /* no analog */
1744 spec->multiout.max_channels = 2;
1745 spec->multiout.dig_out_nid = nvhdmi_master_con_nid_7x;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001746 spec->num_cvts = 1;
Stephen Warren384a48d2011-06-01 11:14:21 -06001747 spec->cvts[0].cvt_nid = nvhdmi_master_con_nid_7x;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001748 spec->pcm_playback = &nvhdmi_pcm_playback_2ch;
1749
1750 codec->patch_ops = nvhdmi_patch_ops_2ch;
1751
1752 return 0;
1753}
1754
1755static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
1756{
1757 struct hdmi_spec *spec;
1758 int err = patch_nvhdmi_2ch(codec);
1759
1760 if (err < 0)
1761 return err;
1762 spec = codec->spec;
1763 spec->multiout.max_channels = 8;
1764 spec->pcm_playback = &nvhdmi_pcm_playback_8ch_7x;
1765 codec->patch_ops = nvhdmi_patch_ops_8ch_7x;
Aaron Plattner1f348522011-04-06 17:19:04 -07001766
1767 /* Initialize the audio infoframe channel mask and checksum to something
1768 * valid */
1769 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
1770
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001771 return 0;
1772}
1773
1774/*
1775 * ATI-specific implementations
1776 *
1777 * FIXME: we may omit the whole this and use the generic code once after
1778 * it's confirmed to work.
1779 */
1780
1781#define ATIHDMI_CVT_NID 0x02 /* audio converter */
1782#define ATIHDMI_PIN_NID 0x03 /* HDMI output pin */
1783
1784static int atihdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1785 struct hda_codec *codec,
1786 unsigned int stream_tag,
1787 unsigned int format,
1788 struct snd_pcm_substream *substream)
1789{
1790 struct hdmi_spec *spec = codec->spec;
1791 int chans = substream->runtime->channels;
1792 int i, err;
1793
1794 err = simple_playback_pcm_prepare(hinfo, codec, stream_tag, format,
1795 substream);
1796 if (err < 0)
1797 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001798 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
1799 AC_VERB_SET_CVT_CHAN_COUNT, chans - 1);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001800 /* FIXME: XXX */
1801 for (i = 0; i < chans; i++) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001802 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001803 AC_VERB_SET_HDMI_CHAN_SLOT,
1804 (i << 4) | i);
1805 }
1806 return 0;
1807}
1808
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001809static const struct hda_pcm_stream atihdmi_pcm_digital_playback = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001810 .substreams = 1,
1811 .channels_min = 2,
1812 .channels_max = 2,
1813 .nid = ATIHDMI_CVT_NID,
1814 .ops = {
1815 .open = simple_playback_pcm_open,
1816 .close = simple_playback_pcm_close,
1817 .prepare = atihdmi_playback_pcm_prepare
1818 },
1819};
1820
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001821static const struct hda_verb atihdmi_basic_init[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001822 /* enable digital output on pin widget */
1823 { 0x03, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1824 {} /* terminator */
1825};
1826
1827static int atihdmi_init(struct hda_codec *codec)
1828{
1829 struct hdmi_spec *spec = codec->spec;
1830
1831 snd_hda_sequence_write(codec, atihdmi_basic_init);
1832 /* SI codec requires to unmute the pin */
Stephen Warren384a48d2011-06-01 11:14:21 -06001833 if (get_wcaps(codec, spec->pins[0].pin_nid) & AC_WCAP_OUT_AMP)
1834 snd_hda_codec_write(codec, spec->pins[0].pin_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001835 AC_VERB_SET_AMP_GAIN_MUTE,
1836 AMP_OUT_UNMUTE);
1837 return 0;
1838}
1839
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001840static const struct hda_codec_ops atihdmi_patch_ops = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001841 .build_controls = simple_playback_build_controls,
1842 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001843 .init = atihdmi_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001844 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001845};
1846
1847
1848static int patch_atihdmi(struct hda_codec *codec)
1849{
1850 struct hdmi_spec *spec;
1851
1852 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1853 if (spec == NULL)
1854 return -ENOMEM;
1855
1856 codec->spec = spec;
1857
1858 spec->multiout.num_dacs = 0; /* no analog */
1859 spec->multiout.max_channels = 2;
1860 spec->multiout.dig_out_nid = ATIHDMI_CVT_NID;
1861 spec->num_cvts = 1;
Stephen Warren384a48d2011-06-01 11:14:21 -06001862 spec->cvts[0].cvt_nid = ATIHDMI_CVT_NID;
1863 spec->pins[0].pin_nid = ATIHDMI_PIN_NID;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001864 spec->pcm_playback = &atihdmi_pcm_digital_playback;
1865
1866 codec->patch_ops = atihdmi_patch_ops;
1867
1868 return 0;
1869}
1870
1871
1872/*
1873 * patch entries
1874 */
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001875static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001876{ .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
1877{ .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
1878{ .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
Anssi Hannula36e9c132010-12-05 02:34:15 +02001879{ .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001880{ .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
1881{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
1882{ .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
1883{ .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1884{ .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1885{ .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1886{ .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1887{ .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
Stephen Warren5d44f922011-05-24 17:11:17 -06001888{ .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_generic_hdmi },
1889{ .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_generic_hdmi },
1890{ .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_generic_hdmi },
1891{ .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_generic_hdmi },
1892{ .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_generic_hdmi },
1893{ .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_generic_hdmi },
1894{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_generic_hdmi },
1895{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_generic_hdmi },
1896{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_generic_hdmi },
1897{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_generic_hdmi },
1898{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_generic_hdmi },
Richard Samsonc8900a02011-03-03 12:46:13 +01001899/* 17 is known to be absent */
Stephen Warren5d44f922011-05-24 17:11:17 -06001900{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_generic_hdmi },
1901{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_generic_hdmi },
1902{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_generic_hdmi },
1903{ .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_generic_hdmi },
1904{ .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_generic_hdmi },
1905{ .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_generic_hdmi },
1906{ .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_generic_hdmi },
1907{ .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_generic_hdmi },
1908{ .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_generic_hdmi },
1909{ .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001910{ .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
1911{ .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
1912{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
1913{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
1914{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
1915{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
1916{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
1917{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang591e6102011-05-20 15:35:43 +08001918{ .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang6edc59e2012-02-23 15:07:44 +08001919{ .id = 0x80862880, .name = "CedarTrail 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");
Wu Fengguang6edc59e2012-02-23 15:07:44 +08001966MODULE_ALIAS("snd-hda-codec-id:80862880");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001967MODULE_ALIAS("snd-hda-codec-id:808629fb");
1968
1969MODULE_LICENSE("GPL");
1970MODULE_DESCRIPTION("HDMI HD-audio codec");
1971MODULE_ALIAS("snd-hda-codec-intelhdmi");
1972MODULE_ALIAS("snd-hda-codec-nvhdmi");
1973MODULE_ALIAS("snd-hda-codec-atihdmi");
1974
1975static struct hda_codec_preset_list intel_list = {
1976 .preset = snd_hda_preset_hdmi,
1977 .owner = THIS_MODULE,
1978};
1979
1980static int __init patch_hdmi_init(void)
1981{
1982 return snd_hda_add_codec_preset(&intel_list);
1983}
1984
1985static void __exit patch_hdmi_exit(void)
1986{
1987 snd_hda_delete_codec_preset(&intel_list);
1988}
1989
1990module_init(patch_hdmi_init)
1991module_exit(patch_hdmi_exit)