blob: 4d00eff87d68182df6ef3e7321d6ad3d8439e58e [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);
Takashi Iwai88e7e712012-12-14 10:22:35 +0100428 /* Enable pin out: some machines with GM965 gets broken output when
429 * the pin is disabled or changed while using with HDMI
430 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800431 snd_hda_codec_write(codec, pin_nid, 0,
Takashi Iwai88e7e712012-12-14 10:22:35 +0100432 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800433}
434
Stephen Warren384a48d2011-06-01 11:14:21 -0600435static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800436{
Stephen Warren384a48d2011-06-01 11:14:21 -0600437 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800438 AC_VERB_GET_CVT_CHAN_COUNT, 0);
439}
440
441static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600442 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800443{
Stephen Warren384a48d2011-06-01 11:14:21 -0600444 if (chs != hdmi_get_channel_count(codec, cvt_nid))
445 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800446 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
447}
448
449
450/*
451 * Channel mapping routines
452 */
453
454/*
455 * Compute derived values in channel_allocations[].
456 */
457static void init_channel_allocations(void)
458{
459 int i, j;
460 struct cea_channel_speaker_allocation *p;
461
462 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
463 p = channel_allocations + i;
464 p->channels = 0;
465 p->spk_mask = 0;
466 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
467 if (p->speakers[j]) {
468 p->channels++;
469 p->spk_mask |= p->speakers[j];
470 }
471 }
472}
473
474/*
475 * The transformation takes two steps:
476 *
477 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
478 * spk_mask => (channel_allocations[]) => ai->CA
479 *
480 * TODO: it could select the wrong CA from multiple candidates.
481*/
Stephen Warren384a48d2011-06-01 11:14:21 -0600482static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800483{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800484 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800485 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800486 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800487 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
488
489 /*
490 * CA defaults to 0 for basic stereo audio
491 */
492 if (channels <= 2)
493 return 0;
494
Wu Fengguang079d88c2010-03-08 10:44:23 +0800495 /*
496 * expand ELD's speaker allocation mask
497 *
498 * ELD tells the speaker mask in a compact(paired) form,
499 * expand ELD's notions to match the ones used by Audio InfoFrame.
500 */
501 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
502 if (eld->spk_alloc & (1 << i))
503 spk_mask |= eld_speaker_allocation_bits[i];
504 }
505
506 /* search for the first working match in the CA table */
507 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
508 if (channels == channel_allocations[i].channels &&
509 (spk_mask & channel_allocations[i].spk_mask) ==
510 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800511 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800512 break;
513 }
514 }
515
516 snd_print_channel_allocation(eld->spk_alloc, buf, sizeof(buf));
Wu Fengguang2abbf432010-03-08 10:45:38 +0800517 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800518 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800519
Wu Fengguang53d7d692010-09-21 14:25:49 +0800520 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800521}
522
523static void hdmi_debug_channel_mapping(struct hda_codec *codec,
524 hda_nid_t pin_nid)
525{
526#ifdef CONFIG_SND_DEBUG_VERBOSE
527 int i;
528 int slot;
529
530 for (i = 0; i < 8; i++) {
531 slot = snd_hda_codec_read(codec, pin_nid, 0,
532 AC_VERB_GET_HDMI_CHAN_SLOT, i);
533 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
534 slot >> 4, slot & 0xf);
535 }
536#endif
537}
538
539
540static void hdmi_setup_channel_mapping(struct hda_codec *codec,
541 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800542 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800543{
544 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800545 int err;
546
547 if (hdmi_channel_mapping[ca][1] == 0) {
548 for (i = 0; i < channel_allocations[ca].channels; i++)
549 hdmi_channel_mapping[ca][i] = i | (i << 4);
550 for (; i < 8; i++)
551 hdmi_channel_mapping[ca][i] = 0xf | (i << 4);
552 }
553
554 for (i = 0; i < 8; i++) {
555 err = snd_hda_codec_write(codec, pin_nid, 0,
556 AC_VERB_SET_HDMI_CHAN_SLOT,
557 hdmi_channel_mapping[ca][i]);
558 if (err) {
Wu Fengguang2abbf432010-03-08 10:45:38 +0800559 snd_printdd(KERN_NOTICE
560 "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800561 break;
562 }
563 }
564
565 hdmi_debug_channel_mapping(codec, pin_nid);
566}
567
568
569/*
570 * Audio InfoFrame routines
571 */
572
573/*
574 * Enable Audio InfoFrame Transmission
575 */
576static void hdmi_start_infoframe_trans(struct hda_codec *codec,
577 hda_nid_t pin_nid)
578{
579 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
580 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
581 AC_DIPXMIT_BEST);
582}
583
584/*
585 * Disable Audio InfoFrame Transmission
586 */
587static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
588 hda_nid_t pin_nid)
589{
590 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
591 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
592 AC_DIPXMIT_DISABLE);
593}
594
595static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
596{
597#ifdef CONFIG_SND_DEBUG_VERBOSE
598 int i;
599 int size;
600
601 size = snd_hdmi_get_eld_size(codec, pin_nid);
602 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
603
604 for (i = 0; i < 8; i++) {
605 size = snd_hda_codec_read(codec, pin_nid, 0,
606 AC_VERB_GET_HDMI_DIP_SIZE, i);
607 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
608 }
609#endif
610}
611
612static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
613{
614#ifdef BE_PARANOID
615 int i, j;
616 int size;
617 int pi, bi;
618 for (i = 0; i < 8; i++) {
619 size = snd_hda_codec_read(codec, pin_nid, 0,
620 AC_VERB_GET_HDMI_DIP_SIZE, i);
621 if (size == 0)
622 continue;
623
624 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
625 for (j = 1; j < 1000; j++) {
626 hdmi_write_dip_byte(codec, pin_nid, 0x0);
627 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
628 if (pi != i)
629 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
630 bi, pi, i);
631 if (bi == 0) /* byte index wrapped around */
632 break;
633 }
634 snd_printd(KERN_INFO
635 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
636 i, size, j);
637 }
638#endif
639}
640
Wu Fengguang53d7d692010-09-21 14:25:49 +0800641static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800642{
Wu Fengguang53d7d692010-09-21 14:25:49 +0800643 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800644 u8 sum = 0;
645 int i;
646
Wu Fengguang53d7d692010-09-21 14:25:49 +0800647 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800648
Wu Fengguang53d7d692010-09-21 14:25:49 +0800649 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800650 sum += bytes[i];
651
Wu Fengguang53d7d692010-09-21 14:25:49 +0800652 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800653}
654
655static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
656 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800657 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800658{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800659 int i;
660
661 hdmi_debug_dip_size(codec, pin_nid);
662 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
663
Wu Fengguang079d88c2010-03-08 10:44:23 +0800664 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800665 for (i = 0; i < size; i++)
666 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800667}
668
669static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800670 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800671{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800672 u8 val;
673 int i;
674
675 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
676 != AC_DIPXMIT_BEST)
677 return false;
678
679 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800680 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800681 val = snd_hda_codec_read(codec, pin_nid, 0,
682 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800683 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +0800684 return false;
685 }
686
687 return true;
688}
689
Stephen Warren384a48d2011-06-01 11:14:21 -0600690static void hdmi_setup_audio_infoframe(struct hda_codec *codec, int pin_idx,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800691 struct snd_pcm_substream *substream)
692{
693 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600694 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
695 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800696 int channels = substream->runtime->channels;
Stephen Warren384a48d2011-06-01 11:14:21 -0600697 struct hdmi_eld *eld;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800698 int ca;
Takashi Iwai2b203db2011-02-11 12:17:30 +0100699 union audio_infoframe ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800700
Stephen Warren384a48d2011-06-01 11:14:21 -0600701 eld = &spec->pins[pin_idx].sink_eld;
702 if (!eld->monitor_present)
703 return;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800704
Stephen Warren384a48d2011-06-01 11:14:21 -0600705 ca = hdmi_channel_allocation(eld, channels);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800706
Stephen Warren384a48d2011-06-01 11:14:21 -0600707 memset(&ai, 0, sizeof(ai));
708 if (eld->conn_type == 0) { /* HDMI */
709 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800710
Stephen Warren384a48d2011-06-01 11:14:21 -0600711 hdmi_ai->type = 0x84;
712 hdmi_ai->ver = 0x01;
713 hdmi_ai->len = 0x0a;
714 hdmi_ai->CC02_CT47 = channels - 1;
715 hdmi_ai->CA = ca;
716 hdmi_checksum_audio_infoframe(hdmi_ai);
717 } else if (eld->conn_type == 1) { /* DisplayPort */
718 struct dp_audio_infoframe *dp_ai = &ai.dp;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800719
Stephen Warren384a48d2011-06-01 11:14:21 -0600720 dp_ai->type = 0x84;
721 dp_ai->len = 0x1b;
722 dp_ai->ver = 0x11 << 2;
723 dp_ai->CC02_CT47 = channels - 1;
724 dp_ai->CA = ca;
725 } else {
726 snd_printd("HDMI: unknown connection type at pin %d\n",
727 pin_nid);
728 return;
729 }
Wu Fengguang53d7d692010-09-21 14:25:49 +0800730
Stephen Warren384a48d2011-06-01 11:14:21 -0600731 /*
732 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
733 * sizeof(*dp_ai) to avoid partial match/update problems when
734 * the user switches between HDMI/DP monitors.
735 */
736 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
737 sizeof(ai))) {
738 snd_printdd("hdmi_setup_audio_infoframe: "
739 "pin=%d channels=%d\n",
740 pin_nid,
741 channels);
742 hdmi_setup_channel_mapping(codec, pin_nid, ca);
743 hdmi_stop_infoframe_trans(codec, pin_nid);
744 hdmi_fill_audio_infoframe(codec, pin_nid,
745 ai.bytes, sizeof(ai));
746 hdmi_start_infoframe_trans(codec, pin_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800747 }
748}
749
750
751/*
752 * Unsolicited events
753 */
754
Wu Fengguangc6e84532011-11-18 16:59:32 -0600755static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +0200756
Wu Fengguang079d88c2010-03-08 10:44:23 +0800757static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
758{
759 struct hdmi_spec *spec = codec->spec;
Takashi Iwai3a938972011-10-28 01:16:55 +0200760 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
761 int pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -0600762 int pin_idx;
Takashi Iwai3a938972011-10-28 01:16:55 +0200763 struct hda_jack_tbl *jack;
764
765 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
766 if (!jack)
767 return;
768 pin_nid = jack->nid;
769 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800770
Fengguang Wufae3d882012-04-10 17:00:35 +0800771 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -0600772 "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Fengguang Wufae3d882012-04-10 17:00:35 +0800773 codec->addr, pin_nid,
774 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +0800775
Stephen Warren384a48d2011-06-01 11:14:21 -0600776 pin_idx = pin_nid_to_pin_index(spec, pin_nid);
777 if (pin_idx < 0)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800778 return;
779
Wu Fengguangc6e84532011-11-18 16:59:32 -0600780 hdmi_present_sense(&spec->pins[pin_idx], 1);
Takashi Iwai01a61e12011-10-28 00:03:22 +0200781 snd_hda_jack_report_sync(codec);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800782}
783
784static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
785{
786 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
787 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
788 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
789 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
790
791 printk(KERN_INFO
Stephen Warren384a48d2011-06-01 11:14:21 -0600792 "HDMI CP event: CODEC=%d PIN=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
793 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800794 tag,
795 subtag,
796 cp_state,
797 cp_ready);
798
799 /* TODO */
800 if (cp_state)
801 ;
802 if (cp_ready)
803 ;
804}
805
806
807static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
808{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800809 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
810 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
811
Takashi Iwai3a938972011-10-28 01:16:55 +0200812 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800813 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
814 return;
815 }
816
817 if (subtag == 0)
818 hdmi_intrinsic_event(codec, res);
819 else
820 hdmi_non_intrinsic_event(codec, res);
821}
822
823/*
824 * Callbacks
825 */
826
Takashi Iwai92f10b32010-08-03 14:21:00 +0200827/* HBR should be Non-PCM, 8 channels */
828#define is_hbr_format(format) \
829 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
830
Stephen Warren384a48d2011-06-01 11:14:21 -0600831static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
832 hda_nid_t pin_nid, u32 stream_tag, int format)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800833{
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300834 int pinctl;
835 int new_pinctl = 0;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300836
Stephen Warren384a48d2011-06-01 11:14:21 -0600837 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
838 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300839 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
840
841 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Takashi Iwai92f10b32010-08-03 14:21:00 +0200842 if (is_hbr_format(format))
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300843 new_pinctl |= AC_PINCTL_EPT_HBR;
844 else
845 new_pinctl |= AC_PINCTL_EPT_NATIVE;
846
847 snd_printdd("hdmi_setup_stream: "
848 "NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -0600849 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300850 pinctl == new_pinctl ? "" : "new-",
851 new_pinctl);
852
853 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -0600854 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300855 AC_VERB_SET_PIN_WIDGET_CONTROL,
856 new_pinctl);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300857
Stephen Warren384a48d2011-06-01 11:14:21 -0600858 }
Takashi Iwai92f10b32010-08-03 14:21:00 +0200859 if (is_hbr_format(format) && !new_pinctl) {
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300860 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
861 return -EINVAL;
862 }
Wu Fengguang079d88c2010-03-08 10:44:23 +0800863
Stephen Warren384a48d2011-06-01 11:14:21 -0600864 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +0300865 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800866}
867
868/*
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200869 * HDA PCM callbacks
870 */
871static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
872 struct hda_codec *codec,
873 struct snd_pcm_substream *substream)
874{
875 struct hdmi_spec *spec = codec->spec;
Takashi Iwai639cef02011-01-14 10:30:46 +0100876 struct snd_pcm_runtime *runtime = substream->runtime;
Stephen Warren384a48d2011-06-01 11:14:21 -0600877 int pin_idx, cvt_idx, mux_idx = 0;
878 struct hdmi_spec_per_pin *per_pin;
879 struct hdmi_eld *eld;
880 struct hdmi_spec_per_cvt *per_cvt = NULL;
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);
Stephen Warren384a48d2011-06-01 11:14:21 -0600916 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200917
Stephen Warren2def8172011-06-01 11:14:20 -0600918 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -0600919 hinfo->channels_min = per_cvt->channels_min;
920 hinfo->channels_max = per_cvt->channels_max;
921 hinfo->rates = per_cvt->rates;
922 hinfo->formats = per_cvt->formats;
923 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -0600924
Stephen Warren384a48d2011-06-01 11:14:21 -0600925 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -0600926 if (!static_hdmi_pcm && eld->eld_valid) {
Stephen Warren2def8172011-06-01 11:14:20 -0600927 snd_hdmi_eld_update_pcm_info(eld, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200928 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai63b2afe2013-02-01 14:01:27 +0100929 !hinfo->rates || !hinfo->formats) {
930 per_cvt->assigned = 0;
931 hinfo->nid = 0;
932 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200933 return -ENODEV;
Takashi Iwai63b2afe2013-02-01 14:01:27 +0100934 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200935 }
Stephen Warren2def8172011-06-01 11:14:20 -0600936
937 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +0100938 runtime->hw.channels_min = hinfo->channels_min;
939 runtime->hw.channels_max = hinfo->channels_max;
940 runtime->hw.formats = hinfo->formats;
941 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +0100942
943 snd_pcm_hw_constraint_step(substream->runtime, 0,
944 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +0200945 return 0;
946}
947
948/*
Wu Fengguang079d88c2010-03-08 10:44:23 +0800949 * HDA/HDMI auto parsing
950 */
Stephen Warren384a48d2011-06-01 11:14:21 -0600951static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800952{
953 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600954 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
955 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800956
957 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
958 snd_printk(KERN_WARNING
959 "HDMI: pin %d wcaps %#x "
960 "does not support connection list\n",
961 pin_nid, get_wcaps(codec, pin_nid));
962 return -EINVAL;
963 }
964
Stephen Warren384a48d2011-06-01 11:14:21 -0600965 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
966 per_pin->mux_nids,
967 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800968
969 return 0;
970}
971
Wu Fengguangc6e84532011-11-18 16:59:32 -0600972static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800973{
Wu Fengguang744626d2011-11-16 16:29:47 +0800974 struct hda_codec *codec = per_pin->codec;
975 struct hdmi_eld *eld = &per_pin->sink_eld;
976 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -0600977 /*
978 * Always execute a GetPinSense verb here, even when called from
979 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
980 * response's PD bit is not the real PD value, but indicates that
981 * the real PD value changed. An older version of the HD-audio
982 * specification worked this way. Hence, we just ignore the data in
983 * the unsolicited response to avoid custom WARs.
984 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800985 int present = snd_hda_pin_sense(codec, pin_nid);
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800986 bool eld_valid = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800987
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800988 memset(eld, 0, offsetof(struct hdmi_eld, eld_buffer));
Wu Fengguang079d88c2010-03-08 10:44:23 +0800989
Stephen Warren5d44f922011-05-24 17:11:17 -0600990 eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
991 if (eld->monitor_present)
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800992 eld_valid = !!(present & AC_PINSENSE_ELDV);
Stephen Warren5d44f922011-05-24 17:11:17 -0600993
Fengguang Wufae3d882012-04-10 17:00:35 +0800994 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -0600995 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Wu Fengguangb95d68b2011-11-16 16:29:46 +0800996 codec->addr, pin_nid, eld->monitor_present, eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -0600997
David Henningsson65232892013-02-19 16:11:22 +0100998 eld->eld_valid = false;
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 Fengguangc6e84532011-11-18 16:59:32 -06001002 else if (repoll) {
Wu Fengguang744626d2011-11-16 16:29:47 +08001003 queue_delayed_work(codec->bus->workq,
1004 &per_pin->work,
1005 msecs_to_jiffies(300));
1006 }
1007 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001008}
1009
Wu Fengguang744626d2011-11-16 16:29:47 +08001010static void hdmi_repoll_eld(struct work_struct *work)
1011{
1012 struct hdmi_spec_per_pin *per_pin =
1013 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1014
Wu Fengguangc6e84532011-11-18 16:59:32 -06001015 if (per_pin->repoll_count++ > 6)
1016 per_pin->repoll_count = 0;
1017
1018 hdmi_present_sense(per_pin, per_pin->repoll_count);
Wu Fengguang744626d2011-11-16 16:29:47 +08001019}
1020
Wu Fengguang079d88c2010-03-08 10:44:23 +08001021static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1022{
1023 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001024 unsigned int caps, config;
1025 int pin_idx;
1026 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001027 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001028
Stephen Warren384a48d2011-06-01 11:14:21 -06001029 caps = snd_hda_param_read(codec, pin_nid, AC_PAR_PIN_CAP);
1030 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1031 return 0;
1032
1033 config = snd_hda_codec_read(codec, pin_nid, 0,
1034 AC_VERB_GET_CONFIG_DEFAULT, 0);
1035 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1036 return 0;
1037
1038 if (snd_BUG_ON(spec->num_pins >= MAX_HDMI_PINS))
Wu Fengguang3eaead52010-05-14 16:36:15 +08001039 return -E2BIG;
Stephen Warren384a48d2011-06-01 11:14:21 -06001040
1041 pin_idx = spec->num_pins;
1042 per_pin = &spec->pins[pin_idx];
Stephen Warren384a48d2011-06-01 11:14:21 -06001043
1044 per_pin->pin_nid = pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001045
Stephen Warren384a48d2011-06-01 11:14:21 -06001046 err = hdmi_read_pin_conn(codec, pin_idx);
1047 if (err < 0)
1048 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001049
Wu Fengguang079d88c2010-03-08 10:44:23 +08001050 spec->num_pins++;
1051
Stephen Warren384a48d2011-06-01 11:14:21 -06001052 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001053}
1054
Stephen Warren384a48d2011-06-01 11:14:21 -06001055static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001056{
1057 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001058 int cvt_idx;
1059 struct hdmi_spec_per_cvt *per_cvt;
1060 unsigned int chans;
1061 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001062
David Henningsson116dcde2010-11-23 10:23:40 +01001063 if (snd_BUG_ON(spec->num_cvts >= MAX_HDMI_CVTS))
1064 return -E2BIG;
1065
Stephen Warren384a48d2011-06-01 11:14:21 -06001066 chans = get_wcaps(codec, cvt_nid);
1067 chans = get_wcaps_channels(chans);
1068
1069 cvt_idx = spec->num_cvts;
1070 per_cvt = &spec->cvts[cvt_idx];
1071
1072 per_cvt->cvt_nid = cvt_nid;
1073 per_cvt->channels_min = 2;
1074 if (chans <= 16)
1075 per_cvt->channels_max = chans;
1076
1077 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1078 &per_cvt->rates,
1079 &per_cvt->formats,
1080 &per_cvt->maxbps);
1081 if (err < 0)
1082 return err;
1083
Wu Fengguang079d88c2010-03-08 10:44:23 +08001084 spec->num_cvts++;
1085
1086 return 0;
1087}
1088
1089static int hdmi_parse_codec(struct hda_codec *codec)
1090{
1091 hda_nid_t nid;
1092 int i, nodes;
1093
1094 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
1095 if (!nid || nodes < 0) {
1096 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
1097 return -EINVAL;
1098 }
1099
1100 for (i = 0; i < nodes; i++, nid++) {
1101 unsigned int caps;
1102 unsigned int type;
1103
1104 caps = snd_hda_param_read(codec, nid, AC_PAR_AUDIO_WIDGET_CAP);
1105 type = get_wcaps_type(caps);
1106
1107 if (!(caps & AC_WCAP_DIGITAL))
1108 continue;
1109
1110 switch (type) {
1111 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001112 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001113 break;
1114 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001115 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001116 break;
1117 }
1118 }
1119
1120 /*
1121 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1122 * can be lost and presence sense verb will become inaccurate if the
1123 * HDA link is powered off at hot plug or hw initialization time.
1124 */
1125#ifdef CONFIG_SND_HDA_POWER_SAVE
1126 if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
1127 AC_PWRST_EPSS))
1128 codec->bus->power_keep_link_on = 1;
1129#endif
1130
1131 return 0;
1132}
1133
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001134/*
1135 */
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001136static char *get_hdmi_pcm_name(int idx)
1137{
1138 static char names[MAX_HDMI_PINS][8];
1139 sprintf(&names[idx][0], "HDMI %d", idx);
1140 return &names[idx][0];
1141}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001142
1143/*
1144 * HDMI callbacks
1145 */
1146
1147static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1148 struct hda_codec *codec,
1149 unsigned int stream_tag,
1150 unsigned int format,
1151 struct snd_pcm_substream *substream)
1152{
Stephen Warren384a48d2011-06-01 11:14:21 -06001153 hda_nid_t cvt_nid = hinfo->nid;
1154 struct hdmi_spec *spec = codec->spec;
1155 int pin_idx = hinfo_to_pin_index(spec, hinfo);
1156 hda_nid_t pin_nid = spec->pins[pin_idx].pin_nid;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001157
Stephen Warren384a48d2011-06-01 11:14:21 -06001158 hdmi_set_channel_count(codec, cvt_nid, substream->runtime->channels);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001159
Stephen Warren384a48d2011-06-01 11:14:21 -06001160 hdmi_setup_audio_infoframe(codec, pin_idx, substream);
1161
1162 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001163}
1164
Stephen Warren384a48d2011-06-01 11:14:21 -06001165static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1166 struct hda_codec *codec,
1167 struct snd_pcm_substream *substream)
1168{
1169 struct hdmi_spec *spec = codec->spec;
1170 int cvt_idx, pin_idx;
1171 struct hdmi_spec_per_cvt *per_cvt;
1172 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001173
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
Stephen Warren384a48d2011-06-01 11:14:21 -06001191 snd_hda_spdif_ctls_unassign(codec, pin_idx);
1192 }
1193
1194 return 0;
1195}
1196
1197static const struct hda_pcm_ops generic_ops = {
1198 .open = hdmi_pcm_open,
1199 .prepare = generic_hdmi_playback_pcm_prepare,
1200 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001201};
1202
1203static int generic_hdmi_build_pcms(struct hda_codec *codec)
1204{
1205 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001206 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001207
Stephen Warren384a48d2011-06-01 11:14:21 -06001208 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1209 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001210 struct hda_pcm_stream *pstr;
1211
Stephen Warren384a48d2011-06-01 11:14:21 -06001212 info = &spec->pcm_rec[pin_idx];
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001213 info->name = get_hdmi_pcm_name(pin_idx);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001214 info->pcm_type = HDA_PCM_TYPE_HDMI;
Stephen Warren384a48d2011-06-01 11:14:21 -06001215
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001216 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06001217 pstr->substreams = 1;
1218 pstr->ops = generic_ops;
1219 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001220 }
1221
Stephen Warren384a48d2011-06-01 11:14:21 -06001222 codec->num_pcms = spec->num_pins;
1223 codec->pcm_info = spec->pcm_rec;
1224
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001225 return 0;
1226}
1227
David Henningsson0b6c49b2011-08-23 16:56:03 +02001228static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
1229{
Takashi Iwai31ef2252011-12-01 17:41:36 +01001230 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02001231 struct hdmi_spec *spec = codec->spec;
1232 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1233 int pcmdev = spec->pcm_rec[pin_idx].device;
1234
Takashi Iwai31ef2252011-12-01 17:41:36 +01001235 if (pcmdev > 0)
1236 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001237
Takashi Iwai31ef2252011-12-01 17:41:36 +01001238 return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001239}
1240
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001241static int generic_hdmi_build_controls(struct hda_codec *codec)
1242{
1243 struct hdmi_spec *spec = codec->spec;
1244 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001245 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001246
Stephen Warren384a48d2011-06-01 11:14:21 -06001247 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1248 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
David Henningsson0b6c49b2011-08-23 16:56:03 +02001249
1250 err = generic_hdmi_build_jack(codec, pin_idx);
1251 if (err < 0)
1252 return err;
1253
Stephen Warren384a48d2011-06-01 11:14:21 -06001254 err = snd_hda_create_spdif_out_ctls(codec,
1255 per_pin->pin_nid,
1256 per_pin->mux_nids[0]);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001257 if (err < 0)
1258 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001259 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05001260
1261 /* add control for ELD Bytes */
1262 err = hdmi_create_eld_ctl(codec,
1263 pin_idx,
1264 spec->pcm_rec[pin_idx].device);
1265
1266 if (err < 0)
1267 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01001268
Takashi Iwai82b1d732011-12-20 15:53:07 +01001269 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001270 }
1271
1272 return 0;
1273}
1274
Takashi Iwai1ddb8112012-06-20 16:32:22 +02001275static int generic_hdmi_init_per_pins(struct hda_codec *codec)
1276{
1277 struct hdmi_spec *spec = codec->spec;
1278 int pin_idx;
1279
1280 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1281 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1282 struct hdmi_eld *eld = &per_pin->sink_eld;
1283
1284 per_pin->codec = codec;
1285 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
1286 snd_hda_eld_proc_new(codec, eld, pin_idx);
1287 }
1288 return 0;
1289}
1290
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001291static int generic_hdmi_init(struct hda_codec *codec)
1292{
1293 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001294 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001295
Stephen Warren384a48d2011-06-01 11:14:21 -06001296 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1297 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1298 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001299
1300 hdmi_init_pin(codec, pin_nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001301 snd_hda_jack_detect_enable(codec, pin_nid, pin_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001302 }
Takashi Iwai01a61e12011-10-28 00:03:22 +02001303 snd_hda_jack_report_sync(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001304 return 0;
1305}
1306
1307static void generic_hdmi_free(struct hda_codec *codec)
1308{
1309 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001310 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001311
Stephen Warren384a48d2011-06-01 11:14:21 -06001312 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1313 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1314 struct hdmi_eld *eld = &per_pin->sink_eld;
1315
Wu Fengguang744626d2011-11-16 16:29:47 +08001316 cancel_delayed_work(&per_pin->work);
Stephen Warren384a48d2011-06-01 11:14:21 -06001317 snd_hda_eld_proc_free(codec, eld);
1318 }
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;
Takashi Iwai1ddb8112012-06-20 16:32:22 +02001347 generic_hdmi_init_per_pins(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001348
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001349 init_channel_allocations();
1350
1351 return 0;
1352}
1353
1354/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06001355 * Shared non-generic implementations
1356 */
1357
1358static int simple_playback_build_pcms(struct hda_codec *codec)
1359{
1360 struct hdmi_spec *spec = codec->spec;
1361 struct hda_pcm *info = spec->pcm_rec;
1362 int i;
1363
1364 codec->num_pcms = spec->num_cvts;
1365 codec->pcm_info = info;
1366
1367 for (i = 0; i < codec->num_pcms; i++, info++) {
1368 unsigned int chans;
1369 struct hda_pcm_stream *pstr;
1370
Stephen Warren384a48d2011-06-01 11:14:21 -06001371 chans = get_wcaps(codec, spec->cvts[i].cvt_nid);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001372 chans = get_wcaps_channels(chans);
1373
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001374 info->name = get_hdmi_pcm_name(i);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001375 info->pcm_type = HDA_PCM_TYPE_HDMI;
1376 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
1377 snd_BUG_ON(!spec->pcm_playback);
1378 *pstr = *spec->pcm_playback;
Stephen Warren384a48d2011-06-01 11:14:21 -06001379 pstr->nid = spec->cvts[i].cvt_nid;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001380 if (pstr->channels_max <= 2 && chans && chans <= 16)
1381 pstr->channels_max = chans;
1382 }
1383
1384 return 0;
1385}
1386
1387static int simple_playback_build_controls(struct hda_codec *codec)
1388{
1389 struct hdmi_spec *spec = codec->spec;
1390 int err;
1391 int i;
1392
1393 for (i = 0; i < codec->num_pcms; i++) {
1394 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren384a48d2011-06-01 11:14:21 -06001395 spec->cvts[i].cvt_nid,
1396 spec->cvts[i].cvt_nid);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001397 if (err < 0)
1398 return err;
1399 }
1400
1401 return 0;
1402}
1403
1404static void simple_playback_free(struct hda_codec *codec)
1405{
1406 struct hdmi_spec *spec = codec->spec;
1407
1408 kfree(spec);
1409}
1410
1411/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001412 * Nvidia specific implementations
1413 */
1414
1415#define Nv_VERB_SET_Channel_Allocation 0xF79
1416#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
1417#define Nv_VERB_SET_Audio_Protection_On 0xF98
1418#define Nv_VERB_SET_Audio_Protection_Off 0xF99
1419
1420#define nvhdmi_master_con_nid_7x 0x04
1421#define nvhdmi_master_pin_nid_7x 0x05
1422
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001423static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001424 /*front, rear, clfe, rear_surr */
1425 0x6, 0x8, 0xa, 0xc,
1426};
1427
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001428static const struct hda_verb nvhdmi_basic_init_7x[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001429 /* set audio protect on */
1430 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
1431 /* enable digital output on pin widget */
1432 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1433 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1434 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1435 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1436 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1437 {} /* terminator */
1438};
1439
1440#ifdef LIMITED_RATE_FMT_SUPPORT
1441/* support only the safe format and rate */
1442#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
1443#define SUPPORTED_MAXBPS 16
1444#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1445#else
1446/* support all rates and formats */
1447#define SUPPORTED_RATES \
1448 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
1449 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
1450 SNDRV_PCM_RATE_192000)
1451#define SUPPORTED_MAXBPS 24
1452#define SUPPORTED_FORMATS \
1453 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
1454#endif
1455
1456static int nvhdmi_7x_init(struct hda_codec *codec)
1457{
1458 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x);
1459 return 0;
1460}
1461
Nitin Daga393004b2011-01-10 21:49:31 +05301462static unsigned int channels_2_6_8[] = {
1463 2, 6, 8
1464};
1465
1466static unsigned int channels_2_8[] = {
1467 2, 8
1468};
1469
1470static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
1471 .count = ARRAY_SIZE(channels_2_6_8),
1472 .list = channels_2_6_8,
1473 .mask = 0,
1474};
1475
1476static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
1477 .count = ARRAY_SIZE(channels_2_8),
1478 .list = channels_2_8,
1479 .mask = 0,
1480};
1481
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001482static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
1483 struct hda_codec *codec,
1484 struct snd_pcm_substream *substream)
1485{
1486 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05301487 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
1488
1489 switch (codec->preset->id) {
1490 case 0x10de0002:
1491 case 0x10de0003:
1492 case 0x10de0005:
1493 case 0x10de0006:
1494 hw_constraints_channels = &hw_constraints_2_8_channels;
1495 break;
1496 case 0x10de0007:
1497 hw_constraints_channels = &hw_constraints_2_6_8_channels;
1498 break;
1499 default:
1500 break;
1501 }
1502
1503 if (hw_constraints_channels != NULL) {
1504 snd_pcm_hw_constraint_list(substream->runtime, 0,
1505 SNDRV_PCM_HW_PARAM_CHANNELS,
1506 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01001507 } else {
1508 snd_pcm_hw_constraint_step(substream->runtime, 0,
1509 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05301510 }
1511
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001512 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1513}
1514
1515static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
1516 struct hda_codec *codec,
1517 struct snd_pcm_substream *substream)
1518{
1519 struct hdmi_spec *spec = codec->spec;
1520 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1521}
1522
1523static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1524 struct hda_codec *codec,
1525 unsigned int stream_tag,
1526 unsigned int format,
1527 struct snd_pcm_substream *substream)
1528{
1529 struct hdmi_spec *spec = codec->spec;
1530 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1531 stream_tag, format, substream);
1532}
1533
Aaron Plattner1f348522011-04-06 17:19:04 -07001534static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
1535 int channels)
1536{
1537 unsigned int chanmask;
1538 int chan = channels ? (channels - 1) : 1;
1539
1540 switch (channels) {
1541 default:
1542 case 0:
1543 case 2:
1544 chanmask = 0x00;
1545 break;
1546 case 4:
1547 chanmask = 0x08;
1548 break;
1549 case 6:
1550 chanmask = 0x0b;
1551 break;
1552 case 8:
1553 chanmask = 0x13;
1554 break;
1555 }
1556
1557 /* Set the audio infoframe channel allocation and checksum fields. The
1558 * channel count is computed implicitly by the hardware. */
1559 snd_hda_codec_write(codec, 0x1, 0,
1560 Nv_VERB_SET_Channel_Allocation, chanmask);
1561
1562 snd_hda_codec_write(codec, 0x1, 0,
1563 Nv_VERB_SET_Info_Frame_Checksum,
1564 (0x71 - chan - chanmask));
1565}
1566
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001567static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
1568 struct hda_codec *codec,
1569 struct snd_pcm_substream *substream)
1570{
1571 struct hdmi_spec *spec = codec->spec;
1572 int i;
1573
1574 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
1575 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1576 for (i = 0; i < 4; i++) {
1577 /* set the stream id */
1578 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
1579 AC_VERB_SET_CHANNEL_STREAMID, 0);
1580 /* set the stream format */
1581 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
1582 AC_VERB_SET_STREAM_FORMAT, 0);
1583 }
1584
Aaron Plattner1f348522011-04-06 17:19:04 -07001585 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
1586 * streams are disabled. */
1587 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
1588
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001589 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1590}
1591
1592static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
1593 struct hda_codec *codec,
1594 unsigned int stream_tag,
1595 unsigned int format,
1596 struct snd_pcm_substream *substream)
1597{
1598 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01001599 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001600 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06001601 struct hdmi_spec *spec = codec->spec;
1602 struct hda_spdif_out *spdif =
Stephen Warren384a48d2011-06-01 11:14:21 -06001603 snd_hda_spdif_out_of_nid(codec, spec->cvts[0].cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001604
1605 mutex_lock(&codec->spdif_mutex);
1606
1607 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001608
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001609 dataDCC2 = 0x2;
1610
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001611 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06001612 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001613 snd_hda_codec_write(codec,
1614 nvhdmi_master_con_nid_7x,
1615 0,
1616 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001617 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001618
1619 /* set the stream id */
1620 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
1621 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
1622
1623 /* set the stream format */
1624 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
1625 AC_VERB_SET_STREAM_FORMAT, format);
1626
1627 /* turn on again (if needed) */
1628 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06001629 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001630 snd_hda_codec_write(codec,
1631 nvhdmi_master_con_nid_7x,
1632 0,
1633 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001634 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001635 snd_hda_codec_write(codec,
1636 nvhdmi_master_con_nid_7x,
1637 0,
1638 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
1639 }
1640
1641 for (i = 0; i < 4; i++) {
1642 if (chs == 2)
1643 channel_id = 0;
1644 else
1645 channel_id = i * 2;
1646
1647 /* turn off SPDIF once;
1648 *otherwise the IEC958 bits won't be updated
1649 */
1650 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06001651 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001652 snd_hda_codec_write(codec,
1653 nvhdmi_con_nids_7x[i],
1654 0,
1655 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001656 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001657 /* set the stream id */
1658 snd_hda_codec_write(codec,
1659 nvhdmi_con_nids_7x[i],
1660 0,
1661 AC_VERB_SET_CHANNEL_STREAMID,
1662 (stream_tag << 4) | channel_id);
1663 /* set the stream format */
1664 snd_hda_codec_write(codec,
1665 nvhdmi_con_nids_7x[i],
1666 0,
1667 AC_VERB_SET_STREAM_FORMAT,
1668 format);
1669 /* turn on again (if needed) */
1670 /* enable and set the channel status audio/data flag */
1671 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06001672 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001673 snd_hda_codec_write(codec,
1674 nvhdmi_con_nids_7x[i],
1675 0,
1676 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06001677 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001678 snd_hda_codec_write(codec,
1679 nvhdmi_con_nids_7x[i],
1680 0,
1681 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
1682 }
1683 }
1684
Aaron Plattner1f348522011-04-06 17:19:04 -07001685 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001686
1687 mutex_unlock(&codec->spdif_mutex);
1688 return 0;
1689}
1690
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001691static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001692 .substreams = 1,
1693 .channels_min = 2,
1694 .channels_max = 8,
1695 .nid = nvhdmi_master_con_nid_7x,
1696 .rates = SUPPORTED_RATES,
1697 .maxbps = SUPPORTED_MAXBPS,
1698 .formats = SUPPORTED_FORMATS,
1699 .ops = {
1700 .open = simple_playback_pcm_open,
1701 .close = nvhdmi_8ch_7x_pcm_close,
1702 .prepare = nvhdmi_8ch_7x_pcm_prepare
1703 },
1704};
1705
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001706static const struct hda_pcm_stream nvhdmi_pcm_playback_2ch = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001707 .substreams = 1,
1708 .channels_min = 2,
1709 .channels_max = 2,
1710 .nid = nvhdmi_master_con_nid_7x,
1711 .rates = SUPPORTED_RATES,
1712 .maxbps = SUPPORTED_MAXBPS,
1713 .formats = SUPPORTED_FORMATS,
1714 .ops = {
1715 .open = simple_playback_pcm_open,
1716 .close = simple_playback_pcm_close,
1717 .prepare = simple_playback_pcm_prepare
1718 },
1719};
1720
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001721static const struct hda_codec_ops nvhdmi_patch_ops_8ch_7x = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001722 .build_controls = simple_playback_build_controls,
1723 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001724 .init = nvhdmi_7x_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001725 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001726};
1727
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001728static const struct hda_codec_ops nvhdmi_patch_ops_2ch = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001729 .build_controls = simple_playback_build_controls,
1730 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001731 .init = nvhdmi_7x_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001732 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001733};
1734
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001735static int patch_nvhdmi_2ch(struct hda_codec *codec)
1736{
1737 struct hdmi_spec *spec;
1738
1739 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1740 if (spec == NULL)
1741 return -ENOMEM;
1742
1743 codec->spec = spec;
1744
1745 spec->multiout.num_dacs = 0; /* no analog */
1746 spec->multiout.max_channels = 2;
1747 spec->multiout.dig_out_nid = nvhdmi_master_con_nid_7x;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001748 spec->num_cvts = 1;
Stephen Warren384a48d2011-06-01 11:14:21 -06001749 spec->cvts[0].cvt_nid = nvhdmi_master_con_nid_7x;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001750 spec->pcm_playback = &nvhdmi_pcm_playback_2ch;
1751
1752 codec->patch_ops = nvhdmi_patch_ops_2ch;
1753
1754 return 0;
1755}
1756
1757static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
1758{
1759 struct hdmi_spec *spec;
1760 int err = patch_nvhdmi_2ch(codec);
1761
1762 if (err < 0)
1763 return err;
1764 spec = codec->spec;
1765 spec->multiout.max_channels = 8;
1766 spec->pcm_playback = &nvhdmi_pcm_playback_8ch_7x;
1767 codec->patch_ops = nvhdmi_patch_ops_8ch_7x;
Aaron Plattner1f348522011-04-06 17:19:04 -07001768
1769 /* Initialize the audio infoframe channel mask and checksum to something
1770 * valid */
1771 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
1772
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001773 return 0;
1774}
1775
1776/*
1777 * ATI-specific implementations
1778 *
1779 * FIXME: we may omit the whole this and use the generic code once after
1780 * it's confirmed to work.
1781 */
1782
1783#define ATIHDMI_CVT_NID 0x02 /* audio converter */
1784#define ATIHDMI_PIN_NID 0x03 /* HDMI output pin */
1785
1786static int atihdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1787 struct hda_codec *codec,
1788 unsigned int stream_tag,
1789 unsigned int format,
1790 struct snd_pcm_substream *substream)
1791{
1792 struct hdmi_spec *spec = codec->spec;
1793 int chans = substream->runtime->channels;
1794 int i, err;
1795
1796 err = simple_playback_pcm_prepare(hinfo, codec, stream_tag, format,
1797 substream);
1798 if (err < 0)
1799 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001800 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
1801 AC_VERB_SET_CVT_CHAN_COUNT, chans - 1);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001802 /* FIXME: XXX */
1803 for (i = 0; i < chans; i++) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001804 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001805 AC_VERB_SET_HDMI_CHAN_SLOT,
1806 (i << 4) | i);
1807 }
1808 return 0;
1809}
1810
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001811static const struct hda_pcm_stream atihdmi_pcm_digital_playback = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001812 .substreams = 1,
1813 .channels_min = 2,
1814 .channels_max = 2,
1815 .nid = ATIHDMI_CVT_NID,
1816 .ops = {
1817 .open = simple_playback_pcm_open,
1818 .close = simple_playback_pcm_close,
1819 .prepare = atihdmi_playback_pcm_prepare
1820 },
1821};
1822
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001823static const struct hda_verb atihdmi_basic_init[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001824 /* enable digital output on pin widget */
1825 { 0x03, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1826 {} /* terminator */
1827};
1828
1829static int atihdmi_init(struct hda_codec *codec)
1830{
1831 struct hdmi_spec *spec = codec->spec;
1832
1833 snd_hda_sequence_write(codec, atihdmi_basic_init);
1834 /* SI codec requires to unmute the pin */
Stephen Warren384a48d2011-06-01 11:14:21 -06001835 if (get_wcaps(codec, spec->pins[0].pin_nid) & AC_WCAP_OUT_AMP)
1836 snd_hda_codec_write(codec, spec->pins[0].pin_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001837 AC_VERB_SET_AMP_GAIN_MUTE,
1838 AMP_OUT_UNMUTE);
1839 return 0;
1840}
1841
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001842static const struct hda_codec_ops atihdmi_patch_ops = {
Stephen Warren3aaf8982011-06-01 11:14:19 -06001843 .build_controls = simple_playback_build_controls,
1844 .build_pcms = simple_playback_build_pcms,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001845 .init = atihdmi_init,
Stephen Warren3aaf8982011-06-01 11:14:19 -06001846 .free = simple_playback_free,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001847};
1848
1849
1850static int patch_atihdmi(struct hda_codec *codec)
1851{
1852 struct hdmi_spec *spec;
1853
1854 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1855 if (spec == NULL)
1856 return -ENOMEM;
1857
1858 codec->spec = spec;
1859
1860 spec->multiout.num_dacs = 0; /* no analog */
1861 spec->multiout.max_channels = 2;
1862 spec->multiout.dig_out_nid = ATIHDMI_CVT_NID;
1863 spec->num_cvts = 1;
Stephen Warren384a48d2011-06-01 11:14:21 -06001864 spec->cvts[0].cvt_nid = ATIHDMI_CVT_NID;
1865 spec->pins[0].pin_nid = ATIHDMI_PIN_NID;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001866 spec->pcm_playback = &atihdmi_pcm_digital_playback;
1867
1868 codec->patch_ops = atihdmi_patch_ops;
1869
1870 return 0;
1871}
1872
1873
1874/*
1875 * patch entries
1876 */
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001877static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001878{ .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
1879{ .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
1880{ .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
Anssi Hannula36e9c132010-12-05 02:34:15 +02001881{ .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001882{ .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
1883{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
1884{ .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
1885{ .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1886{ .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1887{ .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1888{ .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
1889{ .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
Stephen Warren5d44f922011-05-24 17:11:17 -06001890{ .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_generic_hdmi },
1891{ .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_generic_hdmi },
1892{ .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_generic_hdmi },
1893{ .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_generic_hdmi },
1894{ .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_generic_hdmi },
1895{ .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_generic_hdmi },
1896{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_generic_hdmi },
1897{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_generic_hdmi },
1898{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_generic_hdmi },
1899{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_generic_hdmi },
1900{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_generic_hdmi },
Richard Samsonc8900a02011-03-03 12:46:13 +01001901/* 17 is known to be absent */
Stephen Warren5d44f922011-05-24 17:11:17 -06001902{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_generic_hdmi },
1903{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_generic_hdmi },
1904{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_generic_hdmi },
1905{ .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_generic_hdmi },
1906{ .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_generic_hdmi },
1907{ .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_generic_hdmi },
1908{ .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_generic_hdmi },
1909{ .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_generic_hdmi },
1910{ .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_generic_hdmi },
1911{ .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001912{ .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
1913{ .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
1914{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
1915{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
1916{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
1917{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
1918{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
1919{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang591e6102011-05-20 15:35:43 +08001920{ .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang6edc59e2012-02-23 15:07:44 +08001921{ .id = 0x80862880, .name = "CedarTrail HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001922{ .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi },
1923{} /* terminator */
1924};
1925
1926MODULE_ALIAS("snd-hda-codec-id:1002793c");
1927MODULE_ALIAS("snd-hda-codec-id:10027919");
1928MODULE_ALIAS("snd-hda-codec-id:1002791a");
1929MODULE_ALIAS("snd-hda-codec-id:1002aa01");
1930MODULE_ALIAS("snd-hda-codec-id:10951390");
1931MODULE_ALIAS("snd-hda-codec-id:10951392");
1932MODULE_ALIAS("snd-hda-codec-id:10de0002");
1933MODULE_ALIAS("snd-hda-codec-id:10de0003");
1934MODULE_ALIAS("snd-hda-codec-id:10de0005");
1935MODULE_ALIAS("snd-hda-codec-id:10de0006");
1936MODULE_ALIAS("snd-hda-codec-id:10de0007");
1937MODULE_ALIAS("snd-hda-codec-id:10de000a");
1938MODULE_ALIAS("snd-hda-codec-id:10de000b");
1939MODULE_ALIAS("snd-hda-codec-id:10de000c");
1940MODULE_ALIAS("snd-hda-codec-id:10de000d");
1941MODULE_ALIAS("snd-hda-codec-id:10de0010");
1942MODULE_ALIAS("snd-hda-codec-id:10de0011");
1943MODULE_ALIAS("snd-hda-codec-id:10de0012");
1944MODULE_ALIAS("snd-hda-codec-id:10de0013");
1945MODULE_ALIAS("snd-hda-codec-id:10de0014");
Richard Samsonc8900a02011-03-03 12:46:13 +01001946MODULE_ALIAS("snd-hda-codec-id:10de0015");
1947MODULE_ALIAS("snd-hda-codec-id:10de0016");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001948MODULE_ALIAS("snd-hda-codec-id:10de0018");
1949MODULE_ALIAS("snd-hda-codec-id:10de0019");
1950MODULE_ALIAS("snd-hda-codec-id:10de001a");
1951MODULE_ALIAS("snd-hda-codec-id:10de001b");
1952MODULE_ALIAS("snd-hda-codec-id:10de001c");
1953MODULE_ALIAS("snd-hda-codec-id:10de0040");
1954MODULE_ALIAS("snd-hda-codec-id:10de0041");
1955MODULE_ALIAS("snd-hda-codec-id:10de0042");
1956MODULE_ALIAS("snd-hda-codec-id:10de0043");
1957MODULE_ALIAS("snd-hda-codec-id:10de0044");
1958MODULE_ALIAS("snd-hda-codec-id:10de0067");
1959MODULE_ALIAS("snd-hda-codec-id:10de8001");
1960MODULE_ALIAS("snd-hda-codec-id:17e80047");
1961MODULE_ALIAS("snd-hda-codec-id:80860054");
1962MODULE_ALIAS("snd-hda-codec-id:80862801");
1963MODULE_ALIAS("snd-hda-codec-id:80862802");
1964MODULE_ALIAS("snd-hda-codec-id:80862803");
1965MODULE_ALIAS("snd-hda-codec-id:80862804");
1966MODULE_ALIAS("snd-hda-codec-id:80862805");
Wu Fengguang591e6102011-05-20 15:35:43 +08001967MODULE_ALIAS("snd-hda-codec-id:80862806");
Wu Fengguang6edc59e2012-02-23 15:07:44 +08001968MODULE_ALIAS("snd-hda-codec-id:80862880");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001969MODULE_ALIAS("snd-hda-codec-id:808629fb");
1970
1971MODULE_LICENSE("GPL");
1972MODULE_DESCRIPTION("HDMI HD-audio codec");
1973MODULE_ALIAS("snd-hda-codec-intelhdmi");
1974MODULE_ALIAS("snd-hda-codec-nvhdmi");
1975MODULE_ALIAS("snd-hda-codec-atihdmi");
1976
1977static struct hda_codec_preset_list intel_list = {
1978 .preset = snd_hda_preset_hdmi,
1979 .owner = THIS_MODULE,
1980};
1981
1982static int __init patch_hdmi_init(void)
1983{
1984 return snd_hda_add_codec_preset(&intel_list);
1985}
1986
1987static void __exit patch_hdmi_exit(void)
1988{
1989 snd_hda_delete_codec_preset(&intel_list);
1990}
1991
1992module_init(patch_hdmi_init)
1993module_exit(patch_hdmi_exit)