blob: 21425fb51fe0b86c6f3d9822d5618fde80db45e5 [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>
Wang Xingchao433968d2012-09-06 10:02:37 +080037#include <sound/asoundef.h>
Takashi Iwaid45e6882012-07-31 11:36:00 +020038#include <sound/tlv.h>
Takashi Iwai84eb01b2010-09-07 12:27:25 +020039#include "hda_codec.h"
40#include "hda_local.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020041#include "hda_jack.h"
Takashi Iwai84eb01b2010-09-07 12:27:25 +020042
Takashi Iwai0ebaa242011-01-11 18:11:04 +010043static bool static_hdmi_pcm;
44module_param(static_hdmi_pcm, bool, 0644);
45MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info");
46
Takashi Iwai84eb01b2010-09-07 12:27:25 +020047/*
48 * The HDMI/DisplayPort configuration can be highly dynamic. A graphics device
Stephen Warren384a48d2011-06-01 11:14:21 -060049 * could support N independent pipes, each of them can be connected to one or
Takashi Iwai84eb01b2010-09-07 12:27:25 +020050 * more ports (DVI, HDMI or DisplayPort).
51 *
52 * The HDA correspondence of pipes/ports are converter/pin nodes.
53 */
Takashi Iwaia4567cb2011-11-24 14:44:19 +010054#define MAX_HDMI_CVTS 8
55#define MAX_HDMI_PINS 8
Wu Fengguang079d88c2010-03-08 10:44:23 +080056
Stephen Warren384a48d2011-06-01 11:14:21 -060057struct hdmi_spec_per_cvt {
58 hda_nid_t cvt_nid;
59 int assigned;
60 unsigned int channels_min;
61 unsigned int channels_max;
62 u32 rates;
63 u64 formats;
64 unsigned int maxbps;
65};
66
Takashi Iwai4eea3092013-02-07 18:18:19 +010067/* max. connections to a widget */
68#define HDA_MAX_CONNECTIONS 32
69
Stephen Warren384a48d2011-06-01 11:14:21 -060070struct hdmi_spec_per_pin {
71 hda_nid_t pin_nid;
72 int num_mux_nids;
73 hda_nid_t mux_nids[HDA_MAX_CONNECTIONS];
Wu Fengguang744626d2011-11-16 16:29:47 +080074
75 struct hda_codec *codec;
Stephen Warren384a48d2011-06-01 11:14:21 -060076 struct hdmi_eld sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +080077 struct delayed_work work;
David Henningsson92c69e72013-02-19 16:11:26 +010078 struct snd_kcontrol *eld_ctl;
Wu Fengguangc6e84532011-11-18 16:59:32 -060079 int repoll_count;
Takashi Iwai1a6003b2012-09-06 17:42:08 +020080 bool non_pcm;
Takashi Iwaid45e6882012-07-31 11:36:00 +020081 bool chmap_set; /* channel-map override by ALSA API? */
82 unsigned char chmap[8]; /* ALSA API channel-map */
Stephen Warren384a48d2011-06-01 11:14:21 -060083};
84
Wu Fengguang079d88c2010-03-08 10:44:23 +080085struct hdmi_spec {
86 int num_cvts;
Stephen Warren384a48d2011-06-01 11:14:21 -060087 struct hdmi_spec_per_cvt cvts[MAX_HDMI_CVTS];
Takashi Iwaic88d4e82013-02-08 17:10:04 -050088 hda_nid_t cvt_nids[MAX_HDMI_CVTS];
Stephen Warren384a48d2011-06-01 11:14:21 -060089
Wu Fengguang079d88c2010-03-08 10:44:23 +080090 int num_pins;
Stephen Warren384a48d2011-06-01 11:14:21 -060091 struct hdmi_spec_per_pin pins[MAX_HDMI_PINS];
92 struct hda_pcm pcm_rec[MAX_HDMI_PINS];
Takashi Iwaid45e6882012-07-31 11:36:00 +020093 unsigned int channels_max; /* max over all cvts */
Wu Fengguang079d88c2010-03-08 10:44:23 +080094
David Henningsson4bd038f2013-02-19 16:11:25 +010095 struct hdmi_eld temp_eld;
Wu Fengguang079d88c2010-03-08 10:44:23 +080096 /*
Stephen Warren384a48d2011-06-01 11:14:21 -060097 * Non-generic ATI/NVIDIA specific
Wu Fengguang079d88c2010-03-08 10:44:23 +080098 */
99 struct hda_multi_out multiout;
Takashi Iwaid0b12522012-06-15 14:34:42 +0200100 struct hda_pcm_stream pcm_playback;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800101};
102
103
104struct hdmi_audio_infoframe {
105 u8 type; /* 0x84 */
106 u8 ver; /* 0x01 */
107 u8 len; /* 0x0a */
108
Wu Fengguang53d7d692010-09-21 14:25:49 +0800109 u8 checksum;
110
Wu Fengguang079d88c2010-03-08 10:44:23 +0800111 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
112 u8 SS01_SF24;
113 u8 CXT04;
114 u8 CA;
115 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800116};
117
118struct dp_audio_infoframe {
119 u8 type; /* 0x84 */
120 u8 len; /* 0x1b */
121 u8 ver; /* 0x11 << 2 */
122
123 u8 CC02_CT47; /* match with HDMI infoframe from this on */
124 u8 SS01_SF24;
125 u8 CXT04;
126 u8 CA;
127 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800128};
129
Takashi Iwai2b203db2011-02-11 12:17:30 +0100130union audio_infoframe {
131 struct hdmi_audio_infoframe hdmi;
132 struct dp_audio_infoframe dp;
133 u8 bytes[0];
134};
135
Wu Fengguang079d88c2010-03-08 10:44:23 +0800136/*
137 * CEA speaker placement:
138 *
139 * FLH FCH FRH
140 * FLW FL FLC FC FRC FR FRW
141 *
142 * LFE
143 * TC
144 *
145 * RL RLC RC RRC RR
146 *
147 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
148 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
149 */
150enum cea_speaker_placement {
151 FL = (1 << 0), /* Front Left */
152 FC = (1 << 1), /* Front Center */
153 FR = (1 << 2), /* Front Right */
154 FLC = (1 << 3), /* Front Left Center */
155 FRC = (1 << 4), /* Front Right Center */
156 RL = (1 << 5), /* Rear Left */
157 RC = (1 << 6), /* Rear Center */
158 RR = (1 << 7), /* Rear Right */
159 RLC = (1 << 8), /* Rear Left Center */
160 RRC = (1 << 9), /* Rear Right Center */
161 LFE = (1 << 10), /* Low Frequency Effect */
162 FLW = (1 << 11), /* Front Left Wide */
163 FRW = (1 << 12), /* Front Right Wide */
164 FLH = (1 << 13), /* Front Left High */
165 FCH = (1 << 14), /* Front Center High */
166 FRH = (1 << 15), /* Front Right High */
167 TC = (1 << 16), /* Top Center */
168};
169
170/*
171 * ELD SA bits in the CEA Speaker Allocation data block
172 */
173static int eld_speaker_allocation_bits[] = {
174 [0] = FL | FR,
175 [1] = LFE,
176 [2] = FC,
177 [3] = RL | RR,
178 [4] = RC,
179 [5] = FLC | FRC,
180 [6] = RLC | RRC,
181 /* the following are not defined in ELD yet */
182 [7] = FLW | FRW,
183 [8] = FLH | FRH,
184 [9] = TC,
185 [10] = FCH,
186};
187
188struct cea_channel_speaker_allocation {
189 int ca_index;
190 int speakers[8];
191
192 /* derived values, just for convenience */
193 int channels;
194 int spk_mask;
195};
196
197/*
198 * ALSA sequence is:
199 *
200 * surround40 surround41 surround50 surround51 surround71
201 * ch0 front left = = = =
202 * ch1 front right = = = =
203 * ch2 rear left = = = =
204 * ch3 rear right = = = =
205 * ch4 LFE center center center
206 * ch5 LFE LFE
207 * ch6 side left
208 * ch7 side right
209 *
210 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
211 */
212static int hdmi_channel_mapping[0x32][8] = {
213 /* stereo */
214 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
215 /* 2.1 */
216 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
217 /* Dolby Surround */
218 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
219 /* surround40 */
220 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
221 /* 4ch */
222 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
223 /* surround41 */
Jerry Zhou9396d312010-09-21 14:44:51 +0800224 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
Wu Fengguang079d88c2010-03-08 10:44:23 +0800225 /* surround50 */
226 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
227 /* surround51 */
228 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
229 /* 7.1 */
230 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
231};
232
233/*
234 * This is an ordered list!
235 *
236 * The preceding ones have better chances to be selected by
Wu Fengguang53d7d692010-09-21 14:25:49 +0800237 * hdmi_channel_allocation().
Wu Fengguang079d88c2010-03-08 10:44:23 +0800238 */
239static struct cea_channel_speaker_allocation channel_allocations[] = {
240/* channel: 7 6 5 4 3 2 1 0 */
241{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
242 /* 2.1 */
243{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
244 /* Dolby Surround */
245{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
246 /* surround40 */
247{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
248 /* surround41 */
249{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
250 /* surround50 */
251{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
252 /* surround51 */
253{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
254 /* 6.1 */
255{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
256 /* surround71 */
257{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
258
259{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
260{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
261{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
262{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
263{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
264{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
265{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
266{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
267{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
268{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
269{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
270{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
271{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
272{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
273{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
274{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
275{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
276{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
277{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
278{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
279{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
280{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
281{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
282{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
283{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
284{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
285{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
286{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
287{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
288{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
289{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
290{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
291{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
292{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
293{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
294{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
295{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
296{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
297{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
298{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
299{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
300};
301
302
303/*
304 * HDMI routines
305 */
306
Stephen Warren384a48d2011-06-01 11:14:21 -0600307static int pin_nid_to_pin_index(struct hdmi_spec *spec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800308{
Stephen Warren384a48d2011-06-01 11:14:21 -0600309 int pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800310
Stephen Warren384a48d2011-06-01 11:14:21 -0600311 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
312 if (spec->pins[pin_idx].pin_nid == pin_nid)
313 return pin_idx;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800314
Stephen Warren384a48d2011-06-01 11:14:21 -0600315 snd_printk(KERN_WARNING "HDMI: pin nid %d not registered\n", pin_nid);
316 return -EINVAL;
317}
318
319static int hinfo_to_pin_index(struct hdmi_spec *spec,
320 struct hda_pcm_stream *hinfo)
321{
322 int pin_idx;
323
324 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++)
325 if (&spec->pcm_rec[pin_idx].stream[0] == hinfo)
326 return pin_idx;
327
328 snd_printk(KERN_WARNING "HDMI: hinfo %p not registered\n", hinfo);
329 return -EINVAL;
330}
331
332static int cvt_nid_to_cvt_index(struct hdmi_spec *spec, hda_nid_t cvt_nid)
333{
334 int cvt_idx;
335
336 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++)
337 if (spec->cvts[cvt_idx].cvt_nid == cvt_nid)
338 return cvt_idx;
339
340 snd_printk(KERN_WARNING "HDMI: cvt nid %d not registered\n", cvt_nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800341 return -EINVAL;
342}
343
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500344static int hdmi_eld_ctl_info(struct snd_kcontrol *kcontrol,
345 struct snd_ctl_elem_info *uinfo)
346{
347 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100348 struct hdmi_spec *spec = codec->spec;
349 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500350 int pin_idx;
351
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500352 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
353
354 pin_idx = kcontrol->private_value;
David Henningsson68e03de2013-02-19 16:11:23 +0100355 eld = &spec->pins[pin_idx].sink_eld;
356
David Henningsson4bd038f2013-02-19 16:11:25 +0100357 mutex_lock(&eld->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100358 uinfo->count = eld->eld_valid ? eld->eld_size : 0;
David Henningsson4bd038f2013-02-19 16:11:25 +0100359 mutex_unlock(&eld->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500360
361 return 0;
362}
363
364static int hdmi_eld_ctl_get(struct snd_kcontrol *kcontrol,
365 struct snd_ctl_elem_value *ucontrol)
366{
367 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
David Henningsson68e03de2013-02-19 16:11:23 +0100368 struct hdmi_spec *spec = codec->spec;
369 struct hdmi_eld *eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500370 int pin_idx;
371
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500372 pin_idx = kcontrol->private_value;
David Henningsson68e03de2013-02-19 16:11:23 +0100373 eld = &spec->pins[pin_idx].sink_eld;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500374
David Henningsson4bd038f2013-02-19 16:11:25 +0100375 mutex_lock(&eld->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100376 if (eld->eld_size > ARRAY_SIZE(ucontrol->value.bytes.data)) {
David Henningsson4bd038f2013-02-19 16:11:25 +0100377 mutex_unlock(&eld->lock);
David Henningsson68e03de2013-02-19 16:11:23 +0100378 snd_BUG();
379 return -EINVAL;
380 }
381
382 memset(ucontrol->value.bytes.data, 0,
383 ARRAY_SIZE(ucontrol->value.bytes.data));
384 if (eld->eld_valid)
385 memcpy(ucontrol->value.bytes.data, eld->eld_buffer,
386 eld->eld_size);
David Henningsson4bd038f2013-02-19 16:11:25 +0100387 mutex_unlock(&eld->lock);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500388
389 return 0;
390}
391
392static struct snd_kcontrol_new eld_bytes_ctl = {
393 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
394 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
395 .name = "ELD",
396 .info = hdmi_eld_ctl_info,
397 .get = hdmi_eld_ctl_get,
398};
399
400static int hdmi_create_eld_ctl(struct hda_codec *codec, int pin_idx,
401 int device)
402{
403 struct snd_kcontrol *kctl;
404 struct hdmi_spec *spec = codec->spec;
405 int err;
406
407 kctl = snd_ctl_new1(&eld_bytes_ctl, codec);
408 if (!kctl)
409 return -ENOMEM;
410 kctl->private_value = pin_idx;
411 kctl->id.device = device;
412
413 err = snd_hda_ctl_add(codec, spec->pins[pin_idx].pin_nid, kctl);
414 if (err < 0)
415 return err;
416
David Henningsson92c69e72013-02-19 16:11:26 +0100417 spec->pins[pin_idx].eld_ctl = kctl;
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -0500418 return 0;
419}
420
Wu Fengguang079d88c2010-03-08 10:44:23 +0800421#ifdef BE_PARANOID
422static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
423 int *packet_index, int *byte_index)
424{
425 int val;
426
427 val = snd_hda_codec_read(codec, pin_nid, 0,
428 AC_VERB_GET_HDMI_DIP_INDEX, 0);
429
430 *packet_index = val >> 5;
431 *byte_index = val & 0x1f;
432}
433#endif
434
435static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
436 int packet_index, int byte_index)
437{
438 int val;
439
440 val = (packet_index << 5) | (byte_index & 0x1f);
441
442 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
443}
444
445static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
446 unsigned char val)
447{
448 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
449}
450
Stephen Warren384a48d2011-06-01 11:14:21 -0600451static void hdmi_init_pin(struct hda_codec *codec, hda_nid_t pin_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800452{
453 /* Unmute */
454 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
455 snd_hda_codec_write(codec, pin_nid, 0,
456 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
Takashi Iwai6169b672012-12-14 10:22:35 +0100457 /* Enable pin out: some machines with GM965 gets broken output when
458 * the pin is disabled or changed while using with HDMI
459 */
Wu Fengguang079d88c2010-03-08 10:44:23 +0800460 snd_hda_codec_write(codec, pin_nid, 0,
Takashi Iwai6169b672012-12-14 10:22:35 +0100461 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800462}
463
Stephen Warren384a48d2011-06-01 11:14:21 -0600464static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800465{
Stephen Warren384a48d2011-06-01 11:14:21 -0600466 return 1 + snd_hda_codec_read(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800467 AC_VERB_GET_CVT_CHAN_COUNT, 0);
468}
469
470static void hdmi_set_channel_count(struct hda_codec *codec,
Stephen Warren384a48d2011-06-01 11:14:21 -0600471 hda_nid_t cvt_nid, int chs)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800472{
Stephen Warren384a48d2011-06-01 11:14:21 -0600473 if (chs != hdmi_get_channel_count(codec, cvt_nid))
474 snd_hda_codec_write(codec, cvt_nid, 0,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800475 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
476}
477
478
479/*
480 * Channel mapping routines
481 */
482
483/*
484 * Compute derived values in channel_allocations[].
485 */
486static void init_channel_allocations(void)
487{
488 int i, j;
489 struct cea_channel_speaker_allocation *p;
490
491 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
492 p = channel_allocations + i;
493 p->channels = 0;
494 p->spk_mask = 0;
495 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
496 if (p->speakers[j]) {
497 p->channels++;
498 p->spk_mask |= p->speakers[j];
499 }
500 }
501}
502
Wang Xingchao72357c72012-09-06 10:02:36 +0800503static int get_channel_allocation_order(int ca)
504{
505 int i;
506
507 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
508 if (channel_allocations[i].ca_index == ca)
509 break;
510 }
511 return i;
512}
513
Wu Fengguang079d88c2010-03-08 10:44:23 +0800514/*
515 * The transformation takes two steps:
516 *
517 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
518 * spk_mask => (channel_allocations[]) => ai->CA
519 *
520 * TODO: it could select the wrong CA from multiple candidates.
521*/
Stephen Warren384a48d2011-06-01 11:14:21 -0600522static int hdmi_channel_allocation(struct hdmi_eld *eld, int channels)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800523{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800524 int i;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800525 int ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800526 int spk_mask = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800527 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
528
529 /*
530 * CA defaults to 0 for basic stereo audio
531 */
532 if (channels <= 2)
533 return 0;
534
Wu Fengguang079d88c2010-03-08 10:44:23 +0800535 /*
536 * expand ELD's speaker allocation mask
537 *
538 * ELD tells the speaker mask in a compact(paired) form,
539 * expand ELD's notions to match the ones used by Audio InfoFrame.
540 */
541 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
David Henningsson1613d6b2013-02-19 16:11:24 +0100542 if (eld->info.spk_alloc & (1 << i))
Wu Fengguang079d88c2010-03-08 10:44:23 +0800543 spk_mask |= eld_speaker_allocation_bits[i];
544 }
545
546 /* search for the first working match in the CA table */
547 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
548 if (channels == channel_allocations[i].channels &&
549 (spk_mask & channel_allocations[i].spk_mask) ==
550 channel_allocations[i].spk_mask) {
Wu Fengguang53d7d692010-09-21 14:25:49 +0800551 ca = channel_allocations[i].ca_index;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800552 break;
553 }
554 }
555
David Henningsson1613d6b2013-02-19 16:11:24 +0100556 snd_print_channel_allocation(eld->info.spk_alloc, buf, sizeof(buf));
Wu Fengguang2abbf432010-03-08 10:45:38 +0800557 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
Wu Fengguang53d7d692010-09-21 14:25:49 +0800558 ca, channels, buf);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800559
Wu Fengguang53d7d692010-09-21 14:25:49 +0800560 return ca;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800561}
562
563static void hdmi_debug_channel_mapping(struct hda_codec *codec,
564 hda_nid_t pin_nid)
565{
566#ifdef CONFIG_SND_DEBUG_VERBOSE
567 int i;
568 int slot;
569
570 for (i = 0; i < 8; i++) {
571 slot = snd_hda_codec_read(codec, pin_nid, 0,
572 AC_VERB_GET_HDMI_CHAN_SLOT, i);
573 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
574 slot >> 4, slot & 0xf);
575 }
576#endif
577}
578
579
Takashi Iwaid45e6882012-07-31 11:36:00 +0200580static void hdmi_std_setup_channel_mapping(struct hda_codec *codec,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800581 hda_nid_t pin_nid,
Wang Xingchao433968d2012-09-06 10:02:37 +0800582 bool non_pcm,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800583 int ca)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800584{
585 int i;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800586 int err;
Wang Xingchao72357c72012-09-06 10:02:36 +0800587 int order;
Wang Xingchao433968d2012-09-06 10:02:37 +0800588 int non_pcm_mapping[8];
Wu Fengguang079d88c2010-03-08 10:44:23 +0800589
Wang Xingchao72357c72012-09-06 10:02:36 +0800590 order = get_channel_allocation_order(ca);
Wang Xingchao433968d2012-09-06 10:02:37 +0800591
Wu Fengguang079d88c2010-03-08 10:44:23 +0800592 if (hdmi_channel_mapping[ca][1] == 0) {
Wang Xingchao72357c72012-09-06 10:02:36 +0800593 for (i = 0; i < channel_allocations[order].channels; i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800594 hdmi_channel_mapping[ca][i] = i | (i << 4);
595 for (; i < 8; i++)
596 hdmi_channel_mapping[ca][i] = 0xf | (i << 4);
597 }
598
Wang Xingchao433968d2012-09-06 10:02:37 +0800599 if (non_pcm) {
600 for (i = 0; i < channel_allocations[order].channels; i++)
601 non_pcm_mapping[i] = i | (i << 4);
602 for (; i < 8; i++)
603 non_pcm_mapping[i] = 0xf | (i << 4);
604 }
605
Wu Fengguang079d88c2010-03-08 10:44:23 +0800606 for (i = 0; i < 8; i++) {
607 err = snd_hda_codec_write(codec, pin_nid, 0,
608 AC_VERB_SET_HDMI_CHAN_SLOT,
Wang Xingchao433968d2012-09-06 10:02:37 +0800609 non_pcm ? non_pcm_mapping[i] : hdmi_channel_mapping[ca][i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800610 if (err) {
Wu Fengguang2abbf432010-03-08 10:45:38 +0800611 snd_printdd(KERN_NOTICE
612 "HDMI: channel mapping failed\n");
Wu Fengguang079d88c2010-03-08 10:44:23 +0800613 break;
614 }
615 }
616
617 hdmi_debug_channel_mapping(codec, pin_nid);
618}
619
Takashi Iwaid45e6882012-07-31 11:36:00 +0200620struct channel_map_table {
621 unsigned char map; /* ALSA API channel map position */
622 unsigned char cea_slot; /* CEA slot value */
623 int spk_mask; /* speaker position bit mask */
624};
625
626static struct channel_map_table map_tables[] = {
627 { SNDRV_CHMAP_FL, 0x00, FL },
628 { SNDRV_CHMAP_FR, 0x01, FR },
629 { SNDRV_CHMAP_RL, 0x04, RL },
630 { SNDRV_CHMAP_RR, 0x05, RR },
631 { SNDRV_CHMAP_LFE, 0x02, LFE },
632 { SNDRV_CHMAP_FC, 0x03, FC },
633 { SNDRV_CHMAP_RLC, 0x06, RLC },
634 { SNDRV_CHMAP_RRC, 0x07, RRC },
635 {} /* terminator */
636};
637
638/* from ALSA API channel position to speaker bit mask */
639static int to_spk_mask(unsigned char c)
640{
641 struct channel_map_table *t = map_tables;
642 for (; t->map; t++) {
643 if (t->map == c)
644 return t->spk_mask;
645 }
646 return 0;
647}
648
649/* from ALSA API channel position to CEA slot */
650static int to_cea_slot(unsigned char c)
651{
652 struct channel_map_table *t = map_tables;
653 for (; t->map; t++) {
654 if (t->map == c)
655 return t->cea_slot;
656 }
657 return 0x0f;
658}
659
660/* from CEA slot to ALSA API channel position */
661static int from_cea_slot(unsigned char c)
662{
663 struct channel_map_table *t = map_tables;
664 for (; t->map; t++) {
665 if (t->cea_slot == c)
666 return t->map;
667 }
668 return 0;
669}
670
671/* from speaker bit mask to ALSA API channel position */
672static int spk_to_chmap(int spk)
673{
674 struct channel_map_table *t = map_tables;
675 for (; t->map; t++) {
676 if (t->spk_mask == spk)
677 return t->map;
678 }
679 return 0;
680}
681
682/* get the CA index corresponding to the given ALSA API channel map */
683static int hdmi_manual_channel_allocation(int chs, unsigned char *map)
684{
685 int i, spks = 0, spk_mask = 0;
686
687 for (i = 0; i < chs; i++) {
688 int mask = to_spk_mask(map[i]);
689 if (mask) {
690 spk_mask |= mask;
691 spks++;
692 }
693 }
694
695 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
696 if ((chs == channel_allocations[i].channels ||
697 spks == channel_allocations[i].channels) &&
698 (spk_mask & channel_allocations[i].spk_mask) ==
699 channel_allocations[i].spk_mask)
700 return channel_allocations[i].ca_index;
701 }
702 return -1;
703}
704
705/* set up the channel slots for the given ALSA API channel map */
706static int hdmi_manual_setup_channel_mapping(struct hda_codec *codec,
707 hda_nid_t pin_nid,
708 int chs, unsigned char *map)
709{
710 int i;
711 for (i = 0; i < 8; i++) {
712 int val, err;
713 if (i < chs)
714 val = to_cea_slot(map[i]);
715 else
716 val = 0xf;
717 val |= (i << 4);
718 err = snd_hda_codec_write(codec, pin_nid, 0,
719 AC_VERB_SET_HDMI_CHAN_SLOT, val);
720 if (err)
721 return -EINVAL;
722 }
723 return 0;
724}
725
726/* store ALSA API channel map from the current default map */
727static void hdmi_setup_fake_chmap(unsigned char *map, int ca)
728{
729 int i;
730 for (i = 0; i < 8; i++) {
731 if (i < channel_allocations[ca].channels)
732 map[i] = from_cea_slot((hdmi_channel_mapping[ca][i] >> 4) & 0x0f);
733 else
734 map[i] = 0;
735 }
736}
737
738static void hdmi_setup_channel_mapping(struct hda_codec *codec,
739 hda_nid_t pin_nid, bool non_pcm, int ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200740 int channels, unsigned char *map,
741 bool chmap_set)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200742{
Anssi Hannula20608732013-02-03 17:55:45 +0200743 if (!non_pcm && chmap_set) {
Takashi Iwaid45e6882012-07-31 11:36:00 +0200744 hdmi_manual_setup_channel_mapping(codec, pin_nid,
745 channels, map);
746 } else {
747 hdmi_std_setup_channel_mapping(codec, pin_nid, non_pcm, ca);
748 hdmi_setup_fake_chmap(map, ca);
749 }
750}
Wu Fengguang079d88c2010-03-08 10:44:23 +0800751
752/*
753 * Audio InfoFrame routines
754 */
755
756/*
757 * Enable Audio InfoFrame Transmission
758 */
759static void hdmi_start_infoframe_trans(struct hda_codec *codec,
760 hda_nid_t pin_nid)
761{
762 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
763 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
764 AC_DIPXMIT_BEST);
765}
766
767/*
768 * Disable Audio InfoFrame Transmission
769 */
770static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
771 hda_nid_t pin_nid)
772{
773 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
774 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
775 AC_DIPXMIT_DISABLE);
776}
777
778static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
779{
780#ifdef CONFIG_SND_DEBUG_VERBOSE
781 int i;
782 int size;
783
784 size = snd_hdmi_get_eld_size(codec, pin_nid);
785 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
786
787 for (i = 0; i < 8; i++) {
788 size = snd_hda_codec_read(codec, pin_nid, 0,
789 AC_VERB_GET_HDMI_DIP_SIZE, i);
790 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
791 }
792#endif
793}
794
795static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
796{
797#ifdef BE_PARANOID
798 int i, j;
799 int size;
800 int pi, bi;
801 for (i = 0; i < 8; i++) {
802 size = snd_hda_codec_read(codec, pin_nid, 0,
803 AC_VERB_GET_HDMI_DIP_SIZE, i);
804 if (size == 0)
805 continue;
806
807 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
808 for (j = 1; j < 1000; j++) {
809 hdmi_write_dip_byte(codec, pin_nid, 0x0);
810 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
811 if (pi != i)
812 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
813 bi, pi, i);
814 if (bi == 0) /* byte index wrapped around */
815 break;
816 }
817 snd_printd(KERN_INFO
818 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
819 i, size, j);
820 }
821#endif
822}
823
Wu Fengguang53d7d692010-09-21 14:25:49 +0800824static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *hdmi_ai)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800825{
Wu Fengguang53d7d692010-09-21 14:25:49 +0800826 u8 *bytes = (u8 *)hdmi_ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800827 u8 sum = 0;
828 int i;
829
Wu Fengguang53d7d692010-09-21 14:25:49 +0800830 hdmi_ai->checksum = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800831
Wu Fengguang53d7d692010-09-21 14:25:49 +0800832 for (i = 0; i < sizeof(*hdmi_ai); i++)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800833 sum += bytes[i];
834
Wu Fengguang53d7d692010-09-21 14:25:49 +0800835 hdmi_ai->checksum = -sum;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800836}
837
838static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
839 hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800840 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800841{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800842 int i;
843
844 hdmi_debug_dip_size(codec, pin_nid);
845 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
846
Wu Fengguang079d88c2010-03-08 10:44:23 +0800847 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800848 for (i = 0; i < size; i++)
849 hdmi_write_dip_byte(codec, pin_nid, dip[i]);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800850}
851
852static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid,
Wu Fengguang53d7d692010-09-21 14:25:49 +0800853 u8 *dip, int size)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800854{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800855 u8 val;
856 int i;
857
858 if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0)
859 != AC_DIPXMIT_BEST)
860 return false;
861
862 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800863 for (i = 0; i < size; i++) {
Wu Fengguang079d88c2010-03-08 10:44:23 +0800864 val = snd_hda_codec_read(codec, pin_nid, 0,
865 AC_VERB_GET_HDMI_DIP_DATA, 0);
Wu Fengguang53d7d692010-09-21 14:25:49 +0800866 if (val != dip[i])
Wu Fengguang079d88c2010-03-08 10:44:23 +0800867 return false;
868 }
869
870 return true;
871}
872
Stephen Warren384a48d2011-06-01 11:14:21 -0600873static void hdmi_setup_audio_infoframe(struct hda_codec *codec, int pin_idx,
Takashi Iwai1a6003b2012-09-06 17:42:08 +0200874 bool non_pcm,
875 struct snd_pcm_substream *substream)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800876{
877 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -0600878 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
879 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800880 int channels = substream->runtime->channels;
Stephen Warren384a48d2011-06-01 11:14:21 -0600881 struct hdmi_eld *eld;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800882 int ca;
Takashi Iwai2b203db2011-02-11 12:17:30 +0100883 union audio_infoframe ai;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800884
Stephen Warren384a48d2011-06-01 11:14:21 -0600885 eld = &spec->pins[pin_idx].sink_eld;
886 if (!eld->monitor_present)
887 return;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800888
Takashi Iwaid45e6882012-07-31 11:36:00 +0200889 if (!non_pcm && per_pin->chmap_set)
890 ca = hdmi_manual_channel_allocation(channels, per_pin->chmap);
891 else
892 ca = hdmi_channel_allocation(eld, channels);
893 if (ca < 0)
894 ca = 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800895
Stephen Warren384a48d2011-06-01 11:14:21 -0600896 memset(&ai, 0, sizeof(ai));
David Henningsson1613d6b2013-02-19 16:11:24 +0100897 if (eld->info.conn_type == 0) { /* HDMI */
Stephen Warren384a48d2011-06-01 11:14:21 -0600898 struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800899
Stephen Warren384a48d2011-06-01 11:14:21 -0600900 hdmi_ai->type = 0x84;
901 hdmi_ai->ver = 0x01;
902 hdmi_ai->len = 0x0a;
903 hdmi_ai->CC02_CT47 = channels - 1;
904 hdmi_ai->CA = ca;
905 hdmi_checksum_audio_infoframe(hdmi_ai);
David Henningsson1613d6b2013-02-19 16:11:24 +0100906 } else if (eld->info.conn_type == 1) { /* DisplayPort */
Stephen Warren384a48d2011-06-01 11:14:21 -0600907 struct dp_audio_infoframe *dp_ai = &ai.dp;
Wu Fengguang53d7d692010-09-21 14:25:49 +0800908
Stephen Warren384a48d2011-06-01 11:14:21 -0600909 dp_ai->type = 0x84;
910 dp_ai->len = 0x1b;
911 dp_ai->ver = 0x11 << 2;
912 dp_ai->CC02_CT47 = channels - 1;
913 dp_ai->CA = ca;
914 } else {
915 snd_printd("HDMI: unknown connection type at pin %d\n",
916 pin_nid);
917 return;
918 }
Wu Fengguang53d7d692010-09-21 14:25:49 +0800919
Stephen Warren384a48d2011-06-01 11:14:21 -0600920 /*
921 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
922 * sizeof(*dp_ai) to avoid partial match/update problems when
923 * the user switches between HDMI/DP monitors.
924 */
925 if (!hdmi_infoframe_uptodate(codec, pin_nid, ai.bytes,
926 sizeof(ai))) {
927 snd_printdd("hdmi_setup_audio_infoframe: "
928 "pin=%d channels=%d\n",
929 pin_nid,
930 channels);
Takashi Iwaid45e6882012-07-31 11:36:00 +0200931 hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200932 channels, per_pin->chmap,
933 per_pin->chmap_set);
Stephen Warren384a48d2011-06-01 11:14:21 -0600934 hdmi_stop_infoframe_trans(codec, pin_nid);
935 hdmi_fill_audio_infoframe(codec, pin_nid,
936 ai.bytes, sizeof(ai));
937 hdmi_start_infoframe_trans(codec, pin_nid);
Wang Xingchao2d7e8872012-09-06 10:02:38 +0800938 } else {
939 /* For non-pcm audio switch, setup new channel mapping
940 * accordingly */
Takashi Iwai1a6003b2012-09-06 17:42:08 +0200941 if (per_pin->non_pcm != non_pcm)
Takashi Iwaid45e6882012-07-31 11:36:00 +0200942 hdmi_setup_channel_mapping(codec, pin_nid, non_pcm, ca,
Anssi Hannula20608732013-02-03 17:55:45 +0200943 channels, per_pin->chmap,
944 per_pin->chmap_set);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800945 }
Wang Xingchao433968d2012-09-06 10:02:37 +0800946
Takashi Iwai1a6003b2012-09-06 17:42:08 +0200947 per_pin->non_pcm = non_pcm;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800948}
949
950
951/*
952 * Unsolicited events
953 */
954
Wu Fengguangc6e84532011-11-18 16:59:32 -0600955static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll);
Takashi Iwai38faddb2010-07-28 14:21:55 +0200956
Wu Fengguang079d88c2010-03-08 10:44:23 +0800957static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
958{
959 struct hdmi_spec *spec = codec->spec;
Takashi Iwai3a938972011-10-28 01:16:55 +0200960 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
961 int pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -0600962 int pin_idx;
Takashi Iwai3a938972011-10-28 01:16:55 +0200963 struct hda_jack_tbl *jack;
964
965 jack = snd_hda_jack_tbl_get_from_tag(codec, tag);
966 if (!jack)
967 return;
968 pin_nid = jack->nid;
969 jack->jack_dirty = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800970
Fengguang Wufae3d882012-04-10 17:00:35 +0800971 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -0600972 "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
Fengguang Wufae3d882012-04-10 17:00:35 +0800973 codec->addr, pin_nid,
974 !!(res & AC_UNSOL_RES_PD), !!(res & AC_UNSOL_RES_ELDV));
Wu Fengguang079d88c2010-03-08 10:44:23 +0800975
Stephen Warren384a48d2011-06-01 11:14:21 -0600976 pin_idx = pin_nid_to_pin_index(spec, pin_nid);
977 if (pin_idx < 0)
Wu Fengguang079d88c2010-03-08 10:44:23 +0800978 return;
979
Wu Fengguangc6e84532011-11-18 16:59:32 -0600980 hdmi_present_sense(&spec->pins[pin_idx], 1);
Takashi Iwai01a61e12011-10-28 00:03:22 +0200981 snd_hda_jack_report_sync(codec);
Wu Fengguang079d88c2010-03-08 10:44:23 +0800982}
983
984static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
985{
986 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
987 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
988 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
989 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
990
991 printk(KERN_INFO
Takashi Iwaie9ea8e82012-06-21 11:41:05 +0200992 "HDMI CP event: CODEC=%d TAG=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
Stephen Warren384a48d2011-06-01 11:14:21 -0600993 codec->addr,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800994 tag,
995 subtag,
996 cp_state,
997 cp_ready);
998
999 /* TODO */
1000 if (cp_state)
1001 ;
1002 if (cp_ready)
1003 ;
1004}
1005
1006
1007static void hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
1008{
Wu Fengguang079d88c2010-03-08 10:44:23 +08001009 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
1010 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
1011
Takashi Iwai3a938972011-10-28 01:16:55 +02001012 if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) {
Wu Fengguang079d88c2010-03-08 10:44:23 +08001013 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
1014 return;
1015 }
1016
1017 if (subtag == 0)
1018 hdmi_intrinsic_event(codec, res);
1019 else
1020 hdmi_non_intrinsic_event(codec, res);
1021}
1022
1023/*
1024 * Callbacks
1025 */
1026
Takashi Iwai92f10b32010-08-03 14:21:00 +02001027/* HBR should be Non-PCM, 8 channels */
1028#define is_hbr_format(format) \
1029 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
1030
Stephen Warren384a48d2011-06-01 11:14:21 -06001031static int hdmi_setup_stream(struct hda_codec *codec, hda_nid_t cvt_nid,
1032 hda_nid_t pin_nid, u32 stream_tag, int format)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001033{
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001034 int pinctl;
1035 int new_pinctl = 0;
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001036
Stephen Warren384a48d2011-06-01 11:14:21 -06001037 if (snd_hda_query_pin_caps(codec, pin_nid) & AC_PINCAP_HBR) {
1038 pinctl = snd_hda_codec_read(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001039 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1040
1041 new_pinctl = pinctl & ~AC_PINCTL_EPT;
Takashi Iwai92f10b32010-08-03 14:21:00 +02001042 if (is_hbr_format(format))
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001043 new_pinctl |= AC_PINCTL_EPT_HBR;
1044 else
1045 new_pinctl |= AC_PINCTL_EPT_NATIVE;
1046
1047 snd_printdd("hdmi_setup_stream: "
1048 "NID=0x%x, %spinctl=0x%x\n",
Stephen Warren384a48d2011-06-01 11:14:21 -06001049 pin_nid,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001050 pinctl == new_pinctl ? "" : "new-",
1051 new_pinctl);
1052
1053 if (pinctl != new_pinctl)
Stephen Warren384a48d2011-06-01 11:14:21 -06001054 snd_hda_codec_write(codec, pin_nid, 0,
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001055 AC_VERB_SET_PIN_WIDGET_CONTROL,
1056 new_pinctl);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001057
Stephen Warren384a48d2011-06-01 11:14:21 -06001058 }
Takashi Iwai92f10b32010-08-03 14:21:00 +02001059 if (is_hbr_format(format) && !new_pinctl) {
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001060 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
1061 return -EINVAL;
1062 }
Wu Fengguang079d88c2010-03-08 10:44:23 +08001063
Stephen Warren384a48d2011-06-01 11:14:21 -06001064 snd_hda_codec_setup_stream(codec, cvt_nid, stream_tag, 0, format);
Anssi Hannulaea87d1c2010-08-03 13:28:58 +03001065 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001066}
1067
1068/*
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001069 * HDA PCM callbacks
1070 */
1071static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
1072 struct hda_codec *codec,
1073 struct snd_pcm_substream *substream)
1074{
1075 struct hdmi_spec *spec = codec->spec;
Takashi Iwai639cef02011-01-14 10:30:46 +01001076 struct snd_pcm_runtime *runtime = substream->runtime;
Stephen Warren384a48d2011-06-01 11:14:21 -06001077 int pin_idx, cvt_idx, mux_idx = 0;
1078 struct hdmi_spec_per_pin *per_pin;
1079 struct hdmi_eld *eld;
1080 struct hdmi_spec_per_cvt *per_cvt = NULL;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001081
Stephen Warren384a48d2011-06-01 11:14:21 -06001082 /* Validate hinfo */
1083 pin_idx = hinfo_to_pin_index(spec, hinfo);
1084 if (snd_BUG_ON(pin_idx < 0))
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001085 return -EINVAL;
Stephen Warren384a48d2011-06-01 11:14:21 -06001086 per_pin = &spec->pins[pin_idx];
1087 eld = &per_pin->sink_eld;
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001088
Stephen Warren384a48d2011-06-01 11:14:21 -06001089 /* Dynamically assign converter to stream */
1090 for (cvt_idx = 0; cvt_idx < spec->num_cvts; cvt_idx++) {
1091 per_cvt = &spec->cvts[cvt_idx];
1092
1093 /* Must not already be assigned */
1094 if (per_cvt->assigned)
1095 continue;
1096 /* Must be in pin's mux's list of converters */
1097 for (mux_idx = 0; mux_idx < per_pin->num_mux_nids; mux_idx++)
1098 if (per_pin->mux_nids[mux_idx] == per_cvt->cvt_nid)
1099 break;
1100 /* Not in mux list */
1101 if (mux_idx == per_pin->num_mux_nids)
1102 continue;
1103 break;
1104 }
1105 /* No free converters */
1106 if (cvt_idx == spec->num_cvts)
1107 return -ENODEV;
1108
1109 /* Claim converter */
1110 per_cvt->assigned = 1;
1111 hinfo->nid = per_cvt->cvt_nid;
1112
1113 snd_hda_codec_write(codec, per_pin->pin_nid, 0,
1114 AC_VERB_SET_CONNECT_SEL,
1115 mux_idx);
Stephen Warren384a48d2011-06-01 11:14:21 -06001116 snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001117
Stephen Warren2def8172011-06-01 11:14:20 -06001118 /* Initially set the converter's capabilities */
Stephen Warren384a48d2011-06-01 11:14:21 -06001119 hinfo->channels_min = per_cvt->channels_min;
1120 hinfo->channels_max = per_cvt->channels_max;
1121 hinfo->rates = per_cvt->rates;
1122 hinfo->formats = per_cvt->formats;
1123 hinfo->maxbps = per_cvt->maxbps;
Stephen Warren2def8172011-06-01 11:14:20 -06001124
Stephen Warren384a48d2011-06-01 11:14:21 -06001125 /* Restrict capabilities by ELD if this isn't disabled */
Stephen Warrenc3d52102011-06-01 11:14:16 -06001126 if (!static_hdmi_pcm && eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001127 snd_hdmi_eld_update_pcm_info(&eld->info, hinfo);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001128 if (hinfo->channels_min > hinfo->channels_max ||
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001129 !hinfo->rates || !hinfo->formats) {
1130 per_cvt->assigned = 0;
1131 hinfo->nid = 0;
1132 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001133 return -ENODEV;
Takashi Iwai2ad779b2013-02-01 14:01:27 +01001134 }
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001135 }
Stephen Warren2def8172011-06-01 11:14:20 -06001136
1137 /* Store the updated parameters */
Takashi Iwai639cef02011-01-14 10:30:46 +01001138 runtime->hw.channels_min = hinfo->channels_min;
1139 runtime->hw.channels_max = hinfo->channels_max;
1140 runtime->hw.formats = hinfo->formats;
1141 runtime->hw.rates = hinfo->rates;
Takashi Iwai4fe2ca12011-01-14 10:33:26 +01001142
1143 snd_pcm_hw_constraint_step(substream->runtime, 0,
1144 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Takashi Iwaibbbe3392010-08-13 08:45:23 +02001145 return 0;
1146}
1147
1148/*
Wu Fengguang079d88c2010-03-08 10:44:23 +08001149 * HDA/HDMI auto parsing
1150 */
Stephen Warren384a48d2011-06-01 11:14:21 -06001151static int hdmi_read_pin_conn(struct hda_codec *codec, int pin_idx)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001152{
1153 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001154 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1155 hda_nid_t pin_nid = per_pin->pin_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001156
1157 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
1158 snd_printk(KERN_WARNING
1159 "HDMI: pin %d wcaps %#x "
1160 "does not support connection list\n",
1161 pin_nid, get_wcaps(codec, pin_nid));
1162 return -EINVAL;
1163 }
1164
Stephen Warren384a48d2011-06-01 11:14:21 -06001165 per_pin->num_mux_nids = snd_hda_get_connections(codec, pin_nid,
1166 per_pin->mux_nids,
1167 HDA_MAX_CONNECTIONS);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001168
1169 return 0;
1170}
1171
Wu Fengguangc6e84532011-11-18 16:59:32 -06001172static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001173{
Wu Fengguang744626d2011-11-16 16:29:47 +08001174 struct hda_codec *codec = per_pin->codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001175 struct hdmi_spec *spec = codec->spec;
1176 struct hdmi_eld *eld = &spec->temp_eld;
1177 struct hdmi_eld *pin_eld = &per_pin->sink_eld;
Wu Fengguang744626d2011-11-16 16:29:47 +08001178 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren5d44f922011-05-24 17:11:17 -06001179 /*
1180 * Always execute a GetPinSense verb here, even when called from
1181 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
1182 * response's PD bit is not the real PD value, but indicates that
1183 * the real PD value changed. An older version of the HD-audio
1184 * specification worked this way. Hence, we just ignore the data in
1185 * the unsolicited response to avoid custom WARs.
1186 */
Wu Fengguang079d88c2010-03-08 10:44:23 +08001187 int present = snd_hda_pin_sense(codec, pin_nid);
David Henningsson4bd038f2013-02-19 16:11:25 +01001188 bool update_eld = false;
1189 bool eld_changed = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001190
David Henningsson4bd038f2013-02-19 16:11:25 +01001191 pin_eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE);
1192 if (pin_eld->monitor_present)
1193 eld->eld_valid = !!(present & AC_PINSENSE_ELDV);
1194 else
1195 eld->eld_valid = false;
Stephen Warren5d44f922011-05-24 17:11:17 -06001196
Fengguang Wufae3d882012-04-10 17:00:35 +08001197 _snd_printd(SND_PR_VERBOSE,
Stephen Warren384a48d2011-06-01 11:14:21 -06001198 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
David Henningsson4bd038f2013-02-19 16:11:25 +01001199 codec->addr, pin_nid, eld->monitor_present, eld->eld_valid);
Stephen Warren5d44f922011-05-24 17:11:17 -06001200
David Henningsson4bd038f2013-02-19 16:11:25 +01001201 if (eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001202 if (snd_hdmi_get_eld(codec, pin_nid, eld->eld_buffer,
1203 &eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001204 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001205 else {
1206 memset(&eld->info, 0, sizeof(struct parsed_hdmi_eld));
1207 if (snd_hdmi_parse_eld(&eld->info, eld->eld_buffer,
1208 eld->eld_size) < 0)
David Henningsson4bd038f2013-02-19 16:11:25 +01001209 eld->eld_valid = false;
David Henningsson1613d6b2013-02-19 16:11:24 +01001210 }
1211
David Henningsson4bd038f2013-02-19 16:11:25 +01001212 if (eld->eld_valid) {
David Henningsson1613d6b2013-02-19 16:11:24 +01001213 snd_hdmi_show_eld(&eld->info);
David Henningsson4bd038f2013-02-19 16:11:25 +01001214 update_eld = true;
David Henningsson1613d6b2013-02-19 16:11:24 +01001215 }
Wu Fengguangc6e84532011-11-18 16:59:32 -06001216 else if (repoll) {
Wu Fengguang744626d2011-11-16 16:29:47 +08001217 queue_delayed_work(codec->bus->workq,
1218 &per_pin->work,
1219 msecs_to_jiffies(300));
David Henningsson4bd038f2013-02-19 16:11:25 +01001220 return;
Wu Fengguang744626d2011-11-16 16:29:47 +08001221 }
1222 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001223
1224 mutex_lock(&pin_eld->lock);
David Henningsson92c69e72013-02-19 16:11:26 +01001225 if (pin_eld->eld_valid && !eld->eld_valid) {
David Henningsson4bd038f2013-02-19 16:11:25 +01001226 update_eld = true;
David Henningsson92c69e72013-02-19 16:11:26 +01001227 eld_changed = true;
1228 }
David Henningsson4bd038f2013-02-19 16:11:25 +01001229 if (update_eld) {
1230 pin_eld->eld_valid = eld->eld_valid;
David Henningsson92c69e72013-02-19 16:11:26 +01001231 eld_changed = pin_eld->eld_size != eld->eld_size ||
1232 memcmp(pin_eld->eld_buffer, eld->eld_buffer,
David Henningsson4bd038f2013-02-19 16:11:25 +01001233 eld->eld_size) != 0;
1234 if (eld_changed)
1235 memcpy(pin_eld->eld_buffer, eld->eld_buffer,
1236 eld->eld_size);
1237 pin_eld->eld_size = eld->eld_size;
1238 pin_eld->info = eld->info;
1239 }
1240 mutex_unlock(&pin_eld->lock);
David Henningsson92c69e72013-02-19 16:11:26 +01001241
1242 if (eld_changed)
1243 snd_ctl_notify(codec->bus->card,
1244 SNDRV_CTL_EVENT_MASK_VALUE | SNDRV_CTL_EVENT_MASK_INFO,
1245 &per_pin->eld_ctl->id);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001246}
1247
Wu Fengguang744626d2011-11-16 16:29:47 +08001248static void hdmi_repoll_eld(struct work_struct *work)
1249{
1250 struct hdmi_spec_per_pin *per_pin =
1251 container_of(to_delayed_work(work), struct hdmi_spec_per_pin, work);
1252
Wu Fengguangc6e84532011-11-18 16:59:32 -06001253 if (per_pin->repoll_count++ > 6)
1254 per_pin->repoll_count = 0;
1255
1256 hdmi_present_sense(per_pin, per_pin->repoll_count);
Wu Fengguang744626d2011-11-16 16:29:47 +08001257}
1258
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001259static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
1260 hda_nid_t nid);
1261
Wu Fengguang079d88c2010-03-08 10:44:23 +08001262static int hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
1263{
1264 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001265 unsigned int caps, config;
1266 int pin_idx;
1267 struct hdmi_spec_per_pin *per_pin;
David Henningsson07acecc2011-05-19 11:46:03 +02001268 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001269
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001270 caps = snd_hda_query_pin_caps(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001271 if (!(caps & (AC_PINCAP_HDMI | AC_PINCAP_DP)))
1272 return 0;
1273
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001274 config = snd_hda_codec_get_pincfg(codec, pin_nid);
Stephen Warren384a48d2011-06-01 11:14:21 -06001275 if (get_defcfg_connect(config) == AC_JACK_PORT_NONE)
1276 return 0;
1277
1278 if (snd_BUG_ON(spec->num_pins >= MAX_HDMI_PINS))
Wu Fengguang3eaead52010-05-14 16:36:15 +08001279 return -E2BIG;
Stephen Warren384a48d2011-06-01 11:14:21 -06001280
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001281 if (codec->vendor_id == 0x80862807)
1282 intel_haswell_fixup_connect_list(codec, pin_nid);
1283
Stephen Warren384a48d2011-06-01 11:14:21 -06001284 pin_idx = spec->num_pins;
1285 per_pin = &spec->pins[pin_idx];
Stephen Warren384a48d2011-06-01 11:14:21 -06001286
1287 per_pin->pin_nid = pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001288 per_pin->non_pcm = false;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001289
Stephen Warren384a48d2011-06-01 11:14:21 -06001290 err = hdmi_read_pin_conn(codec, pin_idx);
1291 if (err < 0)
1292 return err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001293
Wu Fengguang079d88c2010-03-08 10:44:23 +08001294 spec->num_pins++;
1295
Stephen Warren384a48d2011-06-01 11:14:21 -06001296 return 0;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001297}
1298
Stephen Warren384a48d2011-06-01 11:14:21 -06001299static int hdmi_add_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
Wu Fengguang079d88c2010-03-08 10:44:23 +08001300{
1301 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001302 int cvt_idx;
1303 struct hdmi_spec_per_cvt *per_cvt;
1304 unsigned int chans;
1305 int err;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001306
David Henningsson116dcde2010-11-23 10:23:40 +01001307 if (snd_BUG_ON(spec->num_cvts >= MAX_HDMI_CVTS))
1308 return -E2BIG;
1309
Stephen Warren384a48d2011-06-01 11:14:21 -06001310 chans = get_wcaps(codec, cvt_nid);
1311 chans = get_wcaps_channels(chans);
1312
1313 cvt_idx = spec->num_cvts;
1314 per_cvt = &spec->cvts[cvt_idx];
1315
1316 per_cvt->cvt_nid = cvt_nid;
1317 per_cvt->channels_min = 2;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001318 if (chans <= 16) {
Stephen Warren384a48d2011-06-01 11:14:21 -06001319 per_cvt->channels_max = chans;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001320 if (chans > spec->channels_max)
1321 spec->channels_max = chans;
1322 }
Stephen Warren384a48d2011-06-01 11:14:21 -06001323
1324 err = snd_hda_query_supported_pcm(codec, cvt_nid,
1325 &per_cvt->rates,
1326 &per_cvt->formats,
1327 &per_cvt->maxbps);
1328 if (err < 0)
1329 return err;
1330
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001331 spec->cvt_nids[spec->num_cvts++] = cvt_nid;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001332
1333 return 0;
1334}
1335
1336static int hdmi_parse_codec(struct hda_codec *codec)
1337{
1338 hda_nid_t nid;
1339 int i, nodes;
1340
1341 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
1342 if (!nid || nodes < 0) {
1343 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
1344 return -EINVAL;
1345 }
1346
1347 for (i = 0; i < nodes; i++, nid++) {
1348 unsigned int caps;
1349 unsigned int type;
1350
Takashi Iwaiefc2f8de2012-11-21 14:27:37 +01001351 caps = get_wcaps(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001352 type = get_wcaps_type(caps);
1353
1354 if (!(caps & AC_WCAP_DIGITAL))
1355 continue;
1356
1357 switch (type) {
1358 case AC_WID_AUD_OUT:
Stephen Warren384a48d2011-06-01 11:14:21 -06001359 hdmi_add_cvt(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001360 break;
1361 case AC_WID_PIN:
Wu Fengguang3eaead52010-05-14 16:36:15 +08001362 hdmi_add_pin(codec, nid);
Wu Fengguang079d88c2010-03-08 10:44:23 +08001363 break;
1364 }
1365 }
1366
David Henningssonc9adeef2012-11-07 09:22:33 +01001367#ifdef CONFIG_PM
1368 /* We're seeing some problems with unsolicited hot plug events on
1369 * PantherPoint after S3, if this is not enabled */
1370 if (codec->vendor_id == 0x80862806)
1371 codec->bus->power_keep_link_on = 1;
Wu Fengguang079d88c2010-03-08 10:44:23 +08001372 /*
1373 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1374 * can be lost and presence sense verb will become inaccurate if the
1375 * HDA link is powered off at hot plug or hw initialization time.
1376 */
David Henningssonc9adeef2012-11-07 09:22:33 +01001377 else if (!(snd_hda_param_read(codec, codec->afg, AC_PAR_POWER_STATE) &
Wu Fengguang079d88c2010-03-08 10:44:23 +08001378 AC_PWRST_EPSS))
1379 codec->bus->power_keep_link_on = 1;
1380#endif
1381
1382 return 0;
1383}
1384
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001385/*
1386 */
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001387static char *get_hdmi_pcm_name(int idx)
1388{
1389 static char names[MAX_HDMI_PINS][8];
1390 sprintf(&names[idx][0], "HDMI %d", idx);
1391 return &names[idx][0];
1392}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001393
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001394static bool check_non_pcm_per_cvt(struct hda_codec *codec, hda_nid_t cvt_nid)
1395{
1396 struct hda_spdif_out *spdif;
1397 bool non_pcm;
1398
1399 mutex_lock(&codec->spdif_mutex);
1400 spdif = snd_hda_spdif_out_of_nid(codec, cvt_nid);
1401 non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO);
1402 mutex_unlock(&codec->spdif_mutex);
1403 return non_pcm;
1404}
1405
1406
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001407/*
1408 * HDMI callbacks
1409 */
1410
1411static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1412 struct hda_codec *codec,
1413 unsigned int stream_tag,
1414 unsigned int format,
1415 struct snd_pcm_substream *substream)
1416{
Stephen Warren384a48d2011-06-01 11:14:21 -06001417 hda_nid_t cvt_nid = hinfo->nid;
1418 struct hdmi_spec *spec = codec->spec;
1419 int pin_idx = hinfo_to_pin_index(spec, hinfo);
1420 hda_nid_t pin_nid = spec->pins[pin_idx].pin_nid;
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001421 bool non_pcm;
1422
1423 non_pcm = check_non_pcm_per_cvt(codec, cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001424
Stephen Warren384a48d2011-06-01 11:14:21 -06001425 hdmi_set_channel_count(codec, cvt_nid, substream->runtime->channels);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001426
Takashi Iwai1a6003b2012-09-06 17:42:08 +02001427 hdmi_setup_audio_infoframe(codec, pin_idx, non_pcm, substream);
Stephen Warren384a48d2011-06-01 11:14:21 -06001428
1429 return hdmi_setup_stream(codec, cvt_nid, pin_nid, stream_tag, format);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001430}
1431
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001432static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1433 struct hda_codec *codec,
1434 struct snd_pcm_substream *substream)
1435{
1436 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
1437 return 0;
1438}
1439
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001440static int hdmi_pcm_close(struct hda_pcm_stream *hinfo,
1441 struct hda_codec *codec,
1442 struct snd_pcm_substream *substream)
Stephen Warren384a48d2011-06-01 11:14:21 -06001443{
1444 struct hdmi_spec *spec = codec->spec;
1445 int cvt_idx, pin_idx;
1446 struct hdmi_spec_per_cvt *per_cvt;
1447 struct hdmi_spec_per_pin *per_pin;
Stephen Warren384a48d2011-06-01 11:14:21 -06001448
Stephen Warren384a48d2011-06-01 11:14:21 -06001449 if (hinfo->nid) {
1450 cvt_idx = cvt_nid_to_cvt_index(spec, hinfo->nid);
1451 if (snd_BUG_ON(cvt_idx < 0))
1452 return -EINVAL;
1453 per_cvt = &spec->cvts[cvt_idx];
1454
1455 snd_BUG_ON(!per_cvt->assigned);
1456 per_cvt->assigned = 0;
1457 hinfo->nid = 0;
1458
1459 pin_idx = hinfo_to_pin_index(spec, hinfo);
1460 if (snd_BUG_ON(pin_idx < 0))
1461 return -EINVAL;
1462 per_pin = &spec->pins[pin_idx];
1463
Stephen Warren384a48d2011-06-01 11:14:21 -06001464 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Takashi Iwaid45e6882012-07-31 11:36:00 +02001465 per_pin->chmap_set = false;
1466 memset(per_pin->chmap, 0, sizeof(per_pin->chmap));
Stephen Warren384a48d2011-06-01 11:14:21 -06001467 }
Takashi Iwaid45e6882012-07-31 11:36:00 +02001468
Stephen Warren384a48d2011-06-01 11:14:21 -06001469 return 0;
1470}
1471
1472static const struct hda_pcm_ops generic_ops = {
1473 .open = hdmi_pcm_open,
Takashi Iwaif2ad24f2012-07-26 18:08:14 +02001474 .close = hdmi_pcm_close,
Stephen Warren384a48d2011-06-01 11:14:21 -06001475 .prepare = generic_hdmi_playback_pcm_prepare,
Takashi Iwai8dfaa572012-08-06 14:49:36 +02001476 .cleanup = generic_hdmi_playback_pcm_cleanup,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001477};
1478
Takashi Iwaid45e6882012-07-31 11:36:00 +02001479/*
1480 * ALSA API channel-map control callbacks
1481 */
1482static int hdmi_chmap_ctl_info(struct snd_kcontrol *kcontrol,
1483 struct snd_ctl_elem_info *uinfo)
1484{
1485 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1486 struct hda_codec *codec = info->private_data;
1487 struct hdmi_spec *spec = codec->spec;
1488 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1489 uinfo->count = spec->channels_max;
1490 uinfo->value.integer.min = 0;
1491 uinfo->value.integer.max = SNDRV_CHMAP_LAST;
1492 return 0;
1493}
1494
1495static int hdmi_chmap_ctl_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1496 unsigned int size, unsigned int __user *tlv)
1497{
1498 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1499 struct hda_codec *codec = info->private_data;
1500 struct hdmi_spec *spec = codec->spec;
1501 const unsigned int valid_mask =
1502 FL | FR | RL | RR | LFE | FC | RLC | RRC;
1503 unsigned int __user *dst;
1504 int chs, count = 0;
1505
1506 if (size < 8)
1507 return -ENOMEM;
1508 if (put_user(SNDRV_CTL_TLVT_CONTAINER, tlv))
1509 return -EFAULT;
1510 size -= 8;
1511 dst = tlv + 2;
Takashi Iwai498dab32012-09-10 16:08:40 +02001512 for (chs = 2; chs <= spec->channels_max; chs++) {
Takashi Iwaid45e6882012-07-31 11:36:00 +02001513 int i, c;
1514 struct cea_channel_speaker_allocation *cap;
1515 cap = channel_allocations;
1516 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++, cap++) {
1517 int chs_bytes = chs * 4;
1518 if (cap->channels != chs)
1519 continue;
1520 if (cap->spk_mask & ~valid_mask)
1521 continue;
1522 if (size < 8)
1523 return -ENOMEM;
1524 if (put_user(SNDRV_CTL_TLVT_CHMAP_VAR, dst) ||
1525 put_user(chs_bytes, dst + 1))
1526 return -EFAULT;
1527 dst += 2;
1528 size -= 8;
1529 count += 8;
1530 if (size < chs_bytes)
1531 return -ENOMEM;
1532 size -= chs_bytes;
1533 count += chs_bytes;
1534 for (c = 7; c >= 0; c--) {
1535 int spk = cap->speakers[c];
1536 if (!spk)
1537 continue;
1538 if (put_user(spk_to_chmap(spk), dst))
1539 return -EFAULT;
1540 dst++;
1541 }
1542 }
1543 }
1544 if (put_user(count, tlv + 1))
1545 return -EFAULT;
1546 return 0;
1547}
1548
1549static int hdmi_chmap_ctl_get(struct snd_kcontrol *kcontrol,
1550 struct snd_ctl_elem_value *ucontrol)
1551{
1552 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1553 struct hda_codec *codec = info->private_data;
1554 struct hdmi_spec *spec = codec->spec;
1555 int pin_idx = kcontrol->private_value;
1556 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1557 int i;
1558
1559 for (i = 0; i < ARRAY_SIZE(per_pin->chmap); i++)
1560 ucontrol->value.integer.value[i] = per_pin->chmap[i];
1561 return 0;
1562}
1563
1564static int hdmi_chmap_ctl_put(struct snd_kcontrol *kcontrol,
1565 struct snd_ctl_elem_value *ucontrol)
1566{
1567 struct snd_pcm_chmap *info = snd_kcontrol_chip(kcontrol);
1568 struct hda_codec *codec = info->private_data;
1569 struct hdmi_spec *spec = codec->spec;
1570 int pin_idx = kcontrol->private_value;
1571 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1572 unsigned int ctl_idx;
1573 struct snd_pcm_substream *substream;
1574 unsigned char chmap[8];
1575 int i, ca, prepared = 0;
1576
1577 ctl_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1578 substream = snd_pcm_chmap_substream(info, ctl_idx);
1579 if (!substream || !substream->runtime)
Takashi Iwai6f54c362013-01-15 14:44:41 +01001580 return 0; /* just for avoiding error from alsactl restore */
Takashi Iwaid45e6882012-07-31 11:36:00 +02001581 switch (substream->runtime->status->state) {
1582 case SNDRV_PCM_STATE_OPEN:
1583 case SNDRV_PCM_STATE_SETUP:
1584 break;
1585 case SNDRV_PCM_STATE_PREPARED:
1586 prepared = 1;
1587 break;
1588 default:
1589 return -EBUSY;
1590 }
1591 memset(chmap, 0, sizeof(chmap));
1592 for (i = 0; i < ARRAY_SIZE(chmap); i++)
1593 chmap[i] = ucontrol->value.integer.value[i];
1594 if (!memcmp(chmap, per_pin->chmap, sizeof(chmap)))
1595 return 0;
1596 ca = hdmi_manual_channel_allocation(ARRAY_SIZE(chmap), chmap);
1597 if (ca < 0)
1598 return -EINVAL;
1599 per_pin->chmap_set = true;
1600 memcpy(per_pin->chmap, chmap, sizeof(chmap));
1601 if (prepared)
1602 hdmi_setup_audio_infoframe(codec, pin_idx, per_pin->non_pcm,
1603 substream);
1604
1605 return 0;
1606}
1607
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001608static int generic_hdmi_build_pcms(struct hda_codec *codec)
1609{
1610 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001611 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001612
Stephen Warren384a48d2011-06-01 11:14:21 -06001613 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1614 struct hda_pcm *info;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001615 struct hda_pcm_stream *pstr;
1616
Stephen Warren384a48d2011-06-01 11:14:21 -06001617 info = &spec->pcm_rec[pin_idx];
Takashi Iwaia4567cb2011-11-24 14:44:19 +01001618 info->name = get_hdmi_pcm_name(pin_idx);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001619 info->pcm_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaid45e6882012-07-31 11:36:00 +02001620 info->own_chmap = true;
Stephen Warren384a48d2011-06-01 11:14:21 -06001621
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001622 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
Stephen Warren384a48d2011-06-01 11:14:21 -06001623 pstr->substreams = 1;
1624 pstr->ops = generic_ops;
1625 /* other pstr fields are set in open */
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001626 }
1627
Stephen Warren384a48d2011-06-01 11:14:21 -06001628 codec->num_pcms = spec->num_pins;
1629 codec->pcm_info = spec->pcm_rec;
1630
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001631 return 0;
1632}
1633
David Henningsson0b6c49b2011-08-23 16:56:03 +02001634static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx)
1635{
Takashi Iwai31ef2252011-12-01 17:41:36 +01001636 char hdmi_str[32] = "HDMI/DP";
David Henningsson0b6c49b2011-08-23 16:56:03 +02001637 struct hdmi_spec *spec = codec->spec;
1638 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1639 int pcmdev = spec->pcm_rec[pin_idx].device;
1640
Takashi Iwai31ef2252011-12-01 17:41:36 +01001641 if (pcmdev > 0)
1642 sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001643
Takashi Iwai31ef2252011-12-01 17:41:36 +01001644 return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0);
David Henningsson0b6c49b2011-08-23 16:56:03 +02001645}
1646
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001647static int generic_hdmi_build_controls(struct hda_codec *codec)
1648{
1649 struct hdmi_spec *spec = codec->spec;
1650 int err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001651 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001652
Stephen Warren384a48d2011-06-01 11:14:21 -06001653 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1654 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
David Henningsson0b6c49b2011-08-23 16:56:03 +02001655
1656 err = generic_hdmi_build_jack(codec, pin_idx);
1657 if (err < 0)
1658 return err;
1659
Takashi Iwaidcda5802012-10-12 17:24:51 +02001660 err = snd_hda_create_dig_out_ctls(codec,
1661 per_pin->pin_nid,
1662 per_pin->mux_nids[0],
1663 HDA_PCM_TYPE_HDMI);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001664 if (err < 0)
1665 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06001666 snd_hda_spdif_ctls_unassign(codec, pin_idx);
Pierre-Louis Bossart14bc52b2011-09-30 16:35:41 -05001667
1668 /* add control for ELD Bytes */
1669 err = hdmi_create_eld_ctl(codec,
1670 pin_idx,
1671 spec->pcm_rec[pin_idx].device);
1672
1673 if (err < 0)
1674 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01001675
Takashi Iwai82b1d732011-12-20 15:53:07 +01001676 hdmi_present_sense(per_pin, 0);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001677 }
1678
Takashi Iwaid45e6882012-07-31 11:36:00 +02001679 /* add channel maps */
1680 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1681 struct snd_pcm_chmap *chmap;
1682 struct snd_kcontrol *kctl;
1683 int i;
1684 err = snd_pcm_add_chmap_ctls(codec->pcm_info[pin_idx].pcm,
1685 SNDRV_PCM_STREAM_PLAYBACK,
1686 NULL, 0, pin_idx, &chmap);
1687 if (err < 0)
1688 return err;
1689 /* override handlers */
1690 chmap->private_data = codec;
1691 kctl = chmap->kctl;
1692 for (i = 0; i < kctl->count; i++)
1693 kctl->vd[i].access |= SNDRV_CTL_ELEM_ACCESS_WRITE;
1694 kctl->info = hdmi_chmap_ctl_info;
1695 kctl->get = hdmi_chmap_ctl_get;
1696 kctl->put = hdmi_chmap_ctl_put;
1697 kctl->tlv.c = hdmi_chmap_ctl_tlv;
1698 }
1699
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001700 return 0;
1701}
1702
Takashi Iwai8b8d6542012-06-20 16:32:22 +02001703static int generic_hdmi_init_per_pins(struct hda_codec *codec)
1704{
1705 struct hdmi_spec *spec = codec->spec;
1706 int pin_idx;
1707
1708 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1709 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1710 struct hdmi_eld *eld = &per_pin->sink_eld;
1711
1712 per_pin->codec = codec;
David Henningsson4bd038f2013-02-19 16:11:25 +01001713 mutex_init(&eld->lock);
Takashi Iwai8b8d6542012-06-20 16:32:22 +02001714 INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld);
1715 snd_hda_eld_proc_new(codec, eld, pin_idx);
1716 }
1717 return 0;
1718}
1719
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001720static int generic_hdmi_init(struct hda_codec *codec)
1721{
1722 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001723 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001724
Stephen Warren384a48d2011-06-01 11:14:21 -06001725 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1726 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1727 hda_nid_t pin_nid = per_pin->pin_nid;
Stephen Warren384a48d2011-06-01 11:14:21 -06001728
1729 hdmi_init_pin(codec, pin_nid);
Takashi Iwai1835a0f2011-10-27 22:12:46 +02001730 snd_hda_jack_detect_enable(codec, pin_nid, pin_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001731 }
1732 return 0;
1733}
1734
1735static void generic_hdmi_free(struct hda_codec *codec)
1736{
1737 struct hdmi_spec *spec = codec->spec;
Stephen Warren384a48d2011-06-01 11:14:21 -06001738 int pin_idx;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001739
Stephen Warren384a48d2011-06-01 11:14:21 -06001740 for (pin_idx = 0; pin_idx < spec->num_pins; pin_idx++) {
1741 struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx];
1742 struct hdmi_eld *eld = &per_pin->sink_eld;
1743
Wu Fengguang744626d2011-11-16 16:29:47 +08001744 cancel_delayed_work(&per_pin->work);
Stephen Warren384a48d2011-06-01 11:14:21 -06001745 snd_hda_eld_proc_free(codec, eld);
1746 }
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001747
Wu Fengguang744626d2011-11-16 16:29:47 +08001748 flush_workqueue(codec->bus->workq);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001749 kfree(spec);
1750}
1751
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001752static const struct hda_codec_ops generic_hdmi_patch_ops = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001753 .init = generic_hdmi_init,
1754 .free = generic_hdmi_free,
1755 .build_pcms = generic_hdmi_build_pcms,
1756 .build_controls = generic_hdmi_build_controls,
1757 .unsol_event = hdmi_unsol_event,
1758};
1759
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001760
1761static void intel_haswell_fixup_connect_list(struct hda_codec *codec,
1762 hda_nid_t nid)
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001763{
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001764 struct hdmi_spec *spec = codec->spec;
1765 hda_nid_t conns[4];
1766 int nconns;
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001767
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001768 nconns = snd_hda_get_connections(codec, nid, conns, ARRAY_SIZE(conns));
1769 if (nconns == spec->num_cvts &&
1770 !memcmp(conns, spec->cvt_nids, spec->num_cvts * sizeof(hda_nid_t)))
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001771 return;
1772
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001773 /* override pins connection list */
1774 snd_printdd("hdmi: haswell: override pin connection 0x%x\n", nid);
1775 snd_hda_override_conn_list(codec, nid, spec->num_cvts, spec->cvt_nids);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001776}
1777
Mengdong Lin1611a9c2013-02-08 17:09:52 -05001778#define INTEL_VENDOR_NID 0x08
1779#define INTEL_GET_VENDOR_VERB 0xf81
1780#define INTEL_SET_VENDOR_VERB 0x781
1781#define INTEL_EN_DP12 0x02 /* enable DP 1.2 features */
1782#define INTEL_EN_ALL_PIN_CVTS 0x01 /* enable 2nd & 3rd pins and convertors */
1783
1784static void intel_haswell_enable_all_pins(struct hda_codec *codec,
1785 const struct hda_fixup *fix, int action)
1786{
1787 unsigned int vendor_param;
1788
1789 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1790 return;
1791 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
1792 INTEL_GET_VENDOR_VERB, 0);
1793 if (vendor_param == -1 || vendor_param & INTEL_EN_ALL_PIN_CVTS)
1794 return;
1795
1796 vendor_param |= INTEL_EN_ALL_PIN_CVTS;
1797 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
1798 INTEL_SET_VENDOR_VERB, vendor_param);
1799 if (vendor_param == -1)
1800 return;
1801
1802 snd_hda_codec_update_widgets(codec);
1803 return;
1804}
1805
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001806static void intel_haswell_fixup_enable_dp12(struct hda_codec *codec)
1807{
1808 unsigned int vendor_param;
1809
1810 vendor_param = snd_hda_codec_read(codec, INTEL_VENDOR_NID, 0,
1811 INTEL_GET_VENDOR_VERB, 0);
1812 if (vendor_param == -1 || vendor_param & INTEL_EN_DP12)
1813 return;
1814
1815 /* enable DP1.2 mode */
1816 vendor_param |= INTEL_EN_DP12;
1817 snd_hda_codec_write_cache(codec, INTEL_VENDOR_NID, 0,
1818 INTEL_SET_VENDOR_VERB, vendor_param);
1819}
1820
1821
Mengdong Lin1611a9c2013-02-08 17:09:52 -05001822
1823/* available models for fixup */
1824enum {
1825 INTEL_HASWELL,
1826};
1827
1828static const struct hda_model_fixup hdmi_models[] = {
1829 {.id = INTEL_HASWELL, .name = "Haswell"},
1830 {}
1831};
1832
1833static const struct snd_pci_quirk hdmi_fixup_tbl[] = {
1834 SND_PCI_QUIRK(0x8086, 0x2010, "Haswell", INTEL_HASWELL),
1835 {} /* terminator */
1836};
1837
1838static const struct hda_fixup hdmi_fixups[] = {
1839 [INTEL_HASWELL] = {
1840 .type = HDA_FIXUP_FUNC,
1841 .v.func = intel_haswell_enable_all_pins,
1842 },
1843};
1844
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001845
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001846static int patch_generic_hdmi(struct hda_codec *codec)
1847{
1848 struct hdmi_spec *spec;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001849
1850 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1851 if (spec == NULL)
1852 return -ENOMEM;
1853
1854 codec->spec = spec;
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001855
Mengdong Lin1611a9c2013-02-08 17:09:52 -05001856 snd_hda_pick_fixup(codec, hdmi_models, hdmi_fixup_tbl, hdmi_fixups);
1857 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1858
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001859 if (codec->vendor_id == 0x80862807)
Takashi Iwaic88d4e82013-02-08 17:10:04 -05001860 intel_haswell_fixup_enable_dp12(codec);
Mengdong Lin6ffe1682012-12-18 16:59:15 -05001861
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001862 if (hdmi_parse_codec(codec) < 0) {
1863 codec->spec = NULL;
1864 kfree(spec);
1865 return -EINVAL;
1866 }
1867 codec->patch_ops = generic_hdmi_patch_ops;
Takashi Iwai8b8d6542012-06-20 16:32:22 +02001868 generic_hdmi_init_per_pins(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001869
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001870 init_channel_allocations();
1871
1872 return 0;
1873}
1874
1875/*
Stephen Warren3aaf8982011-06-01 11:14:19 -06001876 * Shared non-generic implementations
1877 */
1878
1879static int simple_playback_build_pcms(struct hda_codec *codec)
1880{
1881 struct hdmi_spec *spec = codec->spec;
1882 struct hda_pcm *info = spec->pcm_rec;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001883 unsigned int chans;
1884 struct hda_pcm_stream *pstr;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001885
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001886 codec->num_pcms = 1;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001887 codec->pcm_info = info;
1888
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001889 chans = get_wcaps(codec, spec->cvts[0].cvt_nid);
1890 chans = get_wcaps_channels(chans);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001891
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001892 info->name = get_hdmi_pcm_name(0);
1893 info->pcm_type = HDA_PCM_TYPE_HDMI;
1894 pstr = &info->stream[SNDRV_PCM_STREAM_PLAYBACK];
1895 *pstr = spec->pcm_playback;
1896 pstr->nid = spec->cvts[0].cvt_nid;
1897 if (pstr->channels_max <= 2 && chans && chans <= 16)
1898 pstr->channels_max = chans;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001899
1900 return 0;
1901}
1902
Takashi Iwai4b6ace92012-06-15 11:53:32 +02001903/* unsolicited event for jack sensing */
1904static void simple_hdmi_unsol_event(struct hda_codec *codec,
1905 unsigned int res)
1906{
Takashi Iwai9dd8cf12012-06-21 10:43:15 +02001907 snd_hda_jack_set_dirty_all(codec);
Takashi Iwai4b6ace92012-06-15 11:53:32 +02001908 snd_hda_jack_report_sync(codec);
1909}
1910
1911/* generic_hdmi_build_jack can be used for simple_hdmi, too,
1912 * as long as spec->pins[] is set correctly
1913 */
1914#define simple_hdmi_build_jack generic_hdmi_build_jack
1915
Stephen Warren3aaf8982011-06-01 11:14:19 -06001916static int simple_playback_build_controls(struct hda_codec *codec)
1917{
1918 struct hdmi_spec *spec = codec->spec;
1919 int err;
Stephen Warren3aaf8982011-06-01 11:14:19 -06001920
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001921 err = snd_hda_create_spdif_out_ctls(codec,
1922 spec->cvts[0].cvt_nid,
1923 spec->cvts[0].cvt_nid);
1924 if (err < 0)
1925 return err;
1926 return simple_hdmi_build_jack(codec, 0);
Stephen Warren3aaf8982011-06-01 11:14:19 -06001927}
1928
Takashi Iwai4f0110c2012-06-15 12:45:43 +02001929static int simple_playback_init(struct hda_codec *codec)
1930{
1931 struct hdmi_spec *spec = codec->spec;
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001932 hda_nid_t pin = spec->pins[0].pin_nid;
Takashi Iwai4f0110c2012-06-15 12:45:43 +02001933
Takashi Iwai8ceb3322012-06-21 08:23:27 +02001934 snd_hda_codec_write(codec, pin, 0,
1935 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1936 /* some codecs require to unmute the pin */
1937 if (get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)
1938 snd_hda_codec_write(codec, pin, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1939 AMP_OUT_UNMUTE);
1940 snd_hda_jack_detect_enable(codec, pin, pin);
Takashi Iwai4f0110c2012-06-15 12:45:43 +02001941 return 0;
1942}
1943
Stephen Warren3aaf8982011-06-01 11:14:19 -06001944static void simple_playback_free(struct hda_codec *codec)
1945{
1946 struct hdmi_spec *spec = codec->spec;
1947
1948 kfree(spec);
1949}
1950
1951/*
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001952 * Nvidia specific implementations
1953 */
1954
1955#define Nv_VERB_SET_Channel_Allocation 0xF79
1956#define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
1957#define Nv_VERB_SET_Audio_Protection_On 0xF98
1958#define Nv_VERB_SET_Audio_Protection_Off 0xF99
1959
1960#define nvhdmi_master_con_nid_7x 0x04
1961#define nvhdmi_master_pin_nid_7x 0x05
1962
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02001963static const hda_nid_t nvhdmi_con_nids_7x[4] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001964 /*front, rear, clfe, rear_surr */
1965 0x6, 0x8, 0xa, 0xc,
1966};
1967
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02001968static const struct hda_verb nvhdmi_basic_init_7x_2ch[] = {
1969 /* set audio protect on */
1970 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
1971 /* enable digital output on pin widget */
1972 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1973 {} /* terminator */
1974};
1975
1976static const struct hda_verb nvhdmi_basic_init_7x_8ch[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02001977 /* set audio protect on */
1978 { 0x1, Nv_VERB_SET_Audio_Protection_On, 0x1},
1979 /* enable digital output on pin widget */
1980 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1981 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1982 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1983 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1984 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT | 0x5 },
1985 {} /* terminator */
1986};
1987
1988#ifdef LIMITED_RATE_FMT_SUPPORT
1989/* support only the safe format and rate */
1990#define SUPPORTED_RATES SNDRV_PCM_RATE_48000
1991#define SUPPORTED_MAXBPS 16
1992#define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1993#else
1994/* support all rates and formats */
1995#define SUPPORTED_RATES \
1996 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
1997 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
1998 SNDRV_PCM_RATE_192000)
1999#define SUPPORTED_MAXBPS 24
2000#define SUPPORTED_FORMATS \
2001 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
2002#endif
2003
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002004static int nvhdmi_7x_init_2ch(struct hda_codec *codec)
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002005{
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002006 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_2ch);
2007 return 0;
2008}
2009
2010static int nvhdmi_7x_init_8ch(struct hda_codec *codec)
2011{
2012 snd_hda_sequence_write(codec, nvhdmi_basic_init_7x_8ch);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002013 return 0;
2014}
2015
Nitin Daga393004b2011-01-10 21:49:31 +05302016static unsigned int channels_2_6_8[] = {
2017 2, 6, 8
2018};
2019
2020static unsigned int channels_2_8[] = {
2021 2, 8
2022};
2023
2024static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels = {
2025 .count = ARRAY_SIZE(channels_2_6_8),
2026 .list = channels_2_6_8,
2027 .mask = 0,
2028};
2029
2030static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels = {
2031 .count = ARRAY_SIZE(channels_2_8),
2032 .list = channels_2_8,
2033 .mask = 0,
2034};
2035
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002036static int simple_playback_pcm_open(struct hda_pcm_stream *hinfo,
2037 struct hda_codec *codec,
2038 struct snd_pcm_substream *substream)
2039{
2040 struct hdmi_spec *spec = codec->spec;
Nitin Daga393004b2011-01-10 21:49:31 +05302041 struct snd_pcm_hw_constraint_list *hw_constraints_channels = NULL;
2042
2043 switch (codec->preset->id) {
2044 case 0x10de0002:
2045 case 0x10de0003:
2046 case 0x10de0005:
2047 case 0x10de0006:
2048 hw_constraints_channels = &hw_constraints_2_8_channels;
2049 break;
2050 case 0x10de0007:
2051 hw_constraints_channels = &hw_constraints_2_6_8_channels;
2052 break;
2053 default:
2054 break;
2055 }
2056
2057 if (hw_constraints_channels != NULL) {
2058 snd_pcm_hw_constraint_list(substream->runtime, 0,
2059 SNDRV_PCM_HW_PARAM_CHANNELS,
2060 hw_constraints_channels);
Takashi Iwaiad09fc92011-01-14 09:42:27 +01002061 } else {
2062 snd_pcm_hw_constraint_step(substream->runtime, 0,
2063 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Nitin Daga393004b2011-01-10 21:49:31 +05302064 }
2065
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002066 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2067}
2068
2069static int simple_playback_pcm_close(struct hda_pcm_stream *hinfo,
2070 struct hda_codec *codec,
2071 struct snd_pcm_substream *substream)
2072{
2073 struct hdmi_spec *spec = codec->spec;
2074 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2075}
2076
2077static int simple_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2078 struct hda_codec *codec,
2079 unsigned int stream_tag,
2080 unsigned int format,
2081 struct snd_pcm_substream *substream)
2082{
2083 struct hdmi_spec *spec = codec->spec;
2084 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2085 stream_tag, format, substream);
2086}
2087
Takashi Iwaid0b12522012-06-15 14:34:42 +02002088static const struct hda_pcm_stream simple_pcm_playback = {
2089 .substreams = 1,
2090 .channels_min = 2,
2091 .channels_max = 2,
2092 .ops = {
2093 .open = simple_playback_pcm_open,
2094 .close = simple_playback_pcm_close,
2095 .prepare = simple_playback_pcm_prepare
2096 },
2097};
2098
2099static const struct hda_codec_ops simple_hdmi_patch_ops = {
2100 .build_controls = simple_playback_build_controls,
2101 .build_pcms = simple_playback_build_pcms,
2102 .init = simple_playback_init,
2103 .free = simple_playback_free,
Takashi Iwai250e41a2012-06-15 14:40:21 +02002104 .unsol_event = simple_hdmi_unsol_event,
Takashi Iwaid0b12522012-06-15 14:34:42 +02002105};
2106
2107static int patch_simple_hdmi(struct hda_codec *codec,
2108 hda_nid_t cvt_nid, hda_nid_t pin_nid)
2109{
2110 struct hdmi_spec *spec;
2111
2112 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2113 if (!spec)
2114 return -ENOMEM;
2115
2116 codec->spec = spec;
2117
2118 spec->multiout.num_dacs = 0; /* no analog */
2119 spec->multiout.max_channels = 2;
2120 spec->multiout.dig_out_nid = cvt_nid;
2121 spec->num_cvts = 1;
2122 spec->num_pins = 1;
2123 spec->cvts[0].cvt_nid = cvt_nid;
Takashi Iwai21cd6832012-06-20 09:19:32 +02002124 spec->pins[0].pin_nid = pin_nid;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002125 spec->pcm_playback = simple_pcm_playback;
2126
2127 codec->patch_ops = simple_hdmi_patch_ops;
2128
2129 return 0;
2130}
2131
Aaron Plattner1f348522011-04-06 17:19:04 -07002132static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec *codec,
2133 int channels)
2134{
2135 unsigned int chanmask;
2136 int chan = channels ? (channels - 1) : 1;
2137
2138 switch (channels) {
2139 default:
2140 case 0:
2141 case 2:
2142 chanmask = 0x00;
2143 break;
2144 case 4:
2145 chanmask = 0x08;
2146 break;
2147 case 6:
2148 chanmask = 0x0b;
2149 break;
2150 case 8:
2151 chanmask = 0x13;
2152 break;
2153 }
2154
2155 /* Set the audio infoframe channel allocation and checksum fields. The
2156 * channel count is computed implicitly by the hardware. */
2157 snd_hda_codec_write(codec, 0x1, 0,
2158 Nv_VERB_SET_Channel_Allocation, chanmask);
2159
2160 snd_hda_codec_write(codec, 0x1, 0,
2161 Nv_VERB_SET_Info_Frame_Checksum,
2162 (0x71 - chan - chanmask));
2163}
2164
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002165static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream *hinfo,
2166 struct hda_codec *codec,
2167 struct snd_pcm_substream *substream)
2168{
2169 struct hdmi_spec *spec = codec->spec;
2170 int i;
2171
2172 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x,
2173 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
2174 for (i = 0; i < 4; i++) {
2175 /* set the stream id */
2176 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2177 AC_VERB_SET_CHANNEL_STREAMID, 0);
2178 /* set the stream format */
2179 snd_hda_codec_write(codec, nvhdmi_con_nids_7x[i], 0,
2180 AC_VERB_SET_STREAM_FORMAT, 0);
2181 }
2182
Aaron Plattner1f348522011-04-06 17:19:04 -07002183 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
2184 * streams are disabled. */
2185 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2186
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002187 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2188}
2189
2190static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream *hinfo,
2191 struct hda_codec *codec,
2192 unsigned int stream_tag,
2193 unsigned int format,
2194 struct snd_pcm_substream *substream)
2195{
2196 int chs;
Takashi Iwai112daa72011-11-02 21:40:06 +01002197 unsigned int dataDCC2, channel_id;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002198 int i;
Stephen Warren7c935972011-06-01 11:14:17 -06002199 struct hdmi_spec *spec = codec->spec;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002200 struct hda_spdif_out *spdif;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002201
2202 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002203 spdif = snd_hda_spdif_out_of_nid(codec, spec->cvts[0].cvt_nid);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002204
2205 chs = substream->runtime->channels;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002206
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002207 dataDCC2 = 0x2;
2208
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002209 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Stephen Warren7c935972011-06-01 11:14:17 -06002210 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002211 snd_hda_codec_write(codec,
2212 nvhdmi_master_con_nid_7x,
2213 0,
2214 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002215 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002216
2217 /* set the stream id */
2218 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2219 AC_VERB_SET_CHANNEL_STREAMID, (stream_tag << 4) | 0x0);
2220
2221 /* set the stream format */
2222 snd_hda_codec_write(codec, nvhdmi_master_con_nid_7x, 0,
2223 AC_VERB_SET_STREAM_FORMAT, format);
2224
2225 /* turn on again (if needed) */
2226 /* enable and set the channel status audio/data flag */
Stephen Warren7c935972011-06-01 11:14:17 -06002227 if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002228 snd_hda_codec_write(codec,
2229 nvhdmi_master_con_nid_7x,
2230 0,
2231 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002232 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002233 snd_hda_codec_write(codec,
2234 nvhdmi_master_con_nid_7x,
2235 0,
2236 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2237 }
2238
2239 for (i = 0; i < 4; i++) {
2240 if (chs == 2)
2241 channel_id = 0;
2242 else
2243 channel_id = i * 2;
2244
2245 /* turn off SPDIF once;
2246 *otherwise the IEC958 bits won't be updated
2247 */
2248 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002249 (spdif->ctls & AC_DIG1_ENABLE))
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002250 snd_hda_codec_write(codec,
2251 nvhdmi_con_nids_7x[i],
2252 0,
2253 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002254 spdif->ctls & ~AC_DIG1_ENABLE & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002255 /* set the stream id */
2256 snd_hda_codec_write(codec,
2257 nvhdmi_con_nids_7x[i],
2258 0,
2259 AC_VERB_SET_CHANNEL_STREAMID,
2260 (stream_tag << 4) | channel_id);
2261 /* set the stream format */
2262 snd_hda_codec_write(codec,
2263 nvhdmi_con_nids_7x[i],
2264 0,
2265 AC_VERB_SET_STREAM_FORMAT,
2266 format);
2267 /* turn on again (if needed) */
2268 /* enable and set the channel status audio/data flag */
2269 if (codec->spdif_status_reset &&
Stephen Warren7c935972011-06-01 11:14:17 -06002270 (spdif->ctls & AC_DIG1_ENABLE)) {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002271 snd_hda_codec_write(codec,
2272 nvhdmi_con_nids_7x[i],
2273 0,
2274 AC_VERB_SET_DIGI_CONVERT_1,
Stephen Warren7c935972011-06-01 11:14:17 -06002275 spdif->ctls & 0xff);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002276 snd_hda_codec_write(codec,
2277 nvhdmi_con_nids_7x[i],
2278 0,
2279 AC_VERB_SET_DIGI_CONVERT_2, dataDCC2);
2280 }
2281 }
2282
Aaron Plattner1f348522011-04-06 17:19:04 -07002283 nvhdmi_8ch_7x_set_info_frame_parameters(codec, chs);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002284
2285 mutex_unlock(&codec->spdif_mutex);
2286 return 0;
2287}
2288
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002289static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002290 .substreams = 1,
2291 .channels_min = 2,
2292 .channels_max = 8,
2293 .nid = nvhdmi_master_con_nid_7x,
2294 .rates = SUPPORTED_RATES,
2295 .maxbps = SUPPORTED_MAXBPS,
2296 .formats = SUPPORTED_FORMATS,
2297 .ops = {
2298 .open = simple_playback_pcm_open,
2299 .close = nvhdmi_8ch_7x_pcm_close,
2300 .prepare = nvhdmi_8ch_7x_pcm_prepare
2301 },
2302};
2303
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002304static int patch_nvhdmi_2ch(struct hda_codec *codec)
2305{
2306 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002307 int err = patch_simple_hdmi(codec, nvhdmi_master_con_nid_7x,
2308 nvhdmi_master_pin_nid_7x);
2309 if (err < 0)
2310 return err;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002311
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002312 codec->patch_ops.init = nvhdmi_7x_init_2ch;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002313 /* override the PCM rates, etc, as the codec doesn't give full list */
2314 spec = codec->spec;
2315 spec->pcm_playback.rates = SUPPORTED_RATES;
2316 spec->pcm_playback.maxbps = SUPPORTED_MAXBPS;
2317 spec->pcm_playback.formats = SUPPORTED_FORMATS;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002318 return 0;
2319}
2320
Takashi Iwai53775b02012-08-01 12:17:41 +02002321static int nvhdmi_7x_8ch_build_pcms(struct hda_codec *codec)
2322{
2323 struct hdmi_spec *spec = codec->spec;
2324 int err = simple_playback_build_pcms(codec);
2325 spec->pcm_rec[0].own_chmap = true;
2326 return err;
2327}
2328
2329static int nvhdmi_7x_8ch_build_controls(struct hda_codec *codec)
2330{
2331 struct hdmi_spec *spec = codec->spec;
2332 struct snd_pcm_chmap *chmap;
2333 int err;
2334
2335 err = simple_playback_build_controls(codec);
2336 if (err < 0)
2337 return err;
2338
2339 /* add channel maps */
2340 err = snd_pcm_add_chmap_ctls(spec->pcm_rec[0].pcm,
2341 SNDRV_PCM_STREAM_PLAYBACK,
2342 snd_pcm_alt_chmaps, 8, 0, &chmap);
2343 if (err < 0)
2344 return err;
2345 switch (codec->preset->id) {
2346 case 0x10de0002:
2347 case 0x10de0003:
2348 case 0x10de0005:
2349 case 0x10de0006:
2350 chmap->channel_mask = (1U << 2) | (1U << 8);
2351 break;
2352 case 0x10de0007:
2353 chmap->channel_mask = (1U << 2) | (1U << 6) | (1U << 8);
2354 }
2355 return 0;
2356}
2357
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002358static int patch_nvhdmi_8ch_7x(struct hda_codec *codec)
2359{
2360 struct hdmi_spec *spec;
2361 int err = patch_nvhdmi_2ch(codec);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002362 if (err < 0)
2363 return err;
2364 spec = codec->spec;
2365 spec->multiout.max_channels = 8;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002366 spec->pcm_playback = nvhdmi_pcm_playback_8ch_7x;
Takashi Iwaiceaa86b2012-06-15 14:38:31 +02002367 codec->patch_ops.init = nvhdmi_7x_init_8ch;
Takashi Iwai53775b02012-08-01 12:17:41 +02002368 codec->patch_ops.build_pcms = nvhdmi_7x_8ch_build_pcms;
2369 codec->patch_ops.build_controls = nvhdmi_7x_8ch_build_controls;
Aaron Plattner1f348522011-04-06 17:19:04 -07002370
2371 /* Initialize the audio infoframe channel mask and checksum to something
2372 * valid */
2373 nvhdmi_8ch_7x_set_info_frame_parameters(codec, 8);
2374
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002375 return 0;
2376}
2377
2378/*
2379 * ATI-specific implementations
2380 *
2381 * FIXME: we may omit the whole this and use the generic code once after
2382 * it's confirmed to work.
2383 */
2384
2385#define ATIHDMI_CVT_NID 0x02 /* audio converter */
2386#define ATIHDMI_PIN_NID 0x03 /* HDMI output pin */
2387
2388static int atihdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2389 struct hda_codec *codec,
2390 unsigned int stream_tag,
2391 unsigned int format,
2392 struct snd_pcm_substream *substream)
2393{
2394 struct hdmi_spec *spec = codec->spec;
2395 int chans = substream->runtime->channels;
2396 int i, err;
2397
2398 err = simple_playback_pcm_prepare(hinfo, codec, stream_tag, format,
2399 substream);
2400 if (err < 0)
2401 return err;
Stephen Warren384a48d2011-06-01 11:14:21 -06002402 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
2403 AC_VERB_SET_CVT_CHAN_COUNT, chans - 1);
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002404 /* FIXME: XXX */
2405 for (i = 0; i < chans; i++) {
Stephen Warren384a48d2011-06-01 11:14:21 -06002406 snd_hda_codec_write(codec, spec->cvts[0].cvt_nid, 0,
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002407 AC_VERB_SET_HDMI_CHAN_SLOT,
2408 (i << 4) | i);
2409 }
2410 return 0;
2411}
2412
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002413static int patch_atihdmi(struct hda_codec *codec)
2414{
2415 struct hdmi_spec *spec;
Takashi Iwaid0b12522012-06-15 14:34:42 +02002416 int err = patch_simple_hdmi(codec, ATIHDMI_CVT_NID, ATIHDMI_PIN_NID);
2417 if (err < 0)
2418 return err;
2419 spec = codec->spec;
2420 spec->pcm_playback.ops.prepare = atihdmi_playback_pcm_prepare;
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002421 return 0;
2422}
2423
Annie Liu3de5ff82012-06-08 19:18:42 +08002424/* VIA HDMI Implementation */
2425#define VIAHDMI_CVT_NID 0x02 /* audio converter1 */
2426#define VIAHDMI_PIN_NID 0x03 /* HDMI output pin1 */
2427
Annie Liu3de5ff82012-06-08 19:18:42 +08002428static int patch_via_hdmi(struct hda_codec *codec)
2429{
Takashi Iwai250e41a2012-06-15 14:40:21 +02002430 return patch_simple_hdmi(codec, VIAHDMI_CVT_NID, VIAHDMI_PIN_NID);
Annie Liu3de5ff82012-06-08 19:18:42 +08002431}
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002432
2433/*
2434 * patch entries
2435 */
Takashi Iwaifb79e1e2011-05-02 12:17:41 +02002436static const struct hda_codec_preset snd_hda_preset_hdmi[] = {
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002437{ .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi },
2438{ .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi },
2439{ .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi },
Anssi Hannula36e9c132010-12-05 02:34:15 +02002440{ .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002441{ .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_generic_hdmi },
2442{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_generic_hdmi },
2443{ .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_generic_hdmi },
2444{ .id = 0x10de0002, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2445{ .id = 0x10de0003, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2446{ .id = 0x10de0005, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2447{ .id = 0x10de0006, .name = "MCP77/78 HDMI", .patch = patch_nvhdmi_8ch_7x },
2448{ .id = 0x10de0007, .name = "MCP79/7A HDMI", .patch = patch_nvhdmi_8ch_7x },
Stephen Warren5d44f922011-05-24 17:11:17 -06002449{ .id = 0x10de000a, .name = "GPU 0a HDMI/DP", .patch = patch_generic_hdmi },
2450{ .id = 0x10de000b, .name = "GPU 0b HDMI/DP", .patch = patch_generic_hdmi },
2451{ .id = 0x10de000c, .name = "MCP89 HDMI", .patch = patch_generic_hdmi },
2452{ .id = 0x10de000d, .name = "GPU 0d HDMI/DP", .patch = patch_generic_hdmi },
2453{ .id = 0x10de0010, .name = "GPU 10 HDMI/DP", .patch = patch_generic_hdmi },
2454{ .id = 0x10de0011, .name = "GPU 11 HDMI/DP", .patch = patch_generic_hdmi },
2455{ .id = 0x10de0012, .name = "GPU 12 HDMI/DP", .patch = patch_generic_hdmi },
2456{ .id = 0x10de0013, .name = "GPU 13 HDMI/DP", .patch = patch_generic_hdmi },
2457{ .id = 0x10de0014, .name = "GPU 14 HDMI/DP", .patch = patch_generic_hdmi },
2458{ .id = 0x10de0015, .name = "GPU 15 HDMI/DP", .patch = patch_generic_hdmi },
2459{ .id = 0x10de0016, .name = "GPU 16 HDMI/DP", .patch = patch_generic_hdmi },
Richard Samsonc8900a02011-03-03 12:46:13 +01002460/* 17 is known to be absent */
Stephen Warren5d44f922011-05-24 17:11:17 -06002461{ .id = 0x10de0018, .name = "GPU 18 HDMI/DP", .patch = patch_generic_hdmi },
2462{ .id = 0x10de0019, .name = "GPU 19 HDMI/DP", .patch = patch_generic_hdmi },
2463{ .id = 0x10de001a, .name = "GPU 1a HDMI/DP", .patch = patch_generic_hdmi },
2464{ .id = 0x10de001b, .name = "GPU 1b HDMI/DP", .patch = patch_generic_hdmi },
2465{ .id = 0x10de001c, .name = "GPU 1c HDMI/DP", .patch = patch_generic_hdmi },
2466{ .id = 0x10de0040, .name = "GPU 40 HDMI/DP", .patch = patch_generic_hdmi },
2467{ .id = 0x10de0041, .name = "GPU 41 HDMI/DP", .patch = patch_generic_hdmi },
2468{ .id = 0x10de0042, .name = "GPU 42 HDMI/DP", .patch = patch_generic_hdmi },
2469{ .id = 0x10de0043, .name = "GPU 43 HDMI/DP", .patch = patch_generic_hdmi },
2470{ .id = 0x10de0044, .name = "GPU 44 HDMI/DP", .patch = patch_generic_hdmi },
Aaron Plattner7ae48b52012-07-16 17:10:04 -07002471{ .id = 0x10de0051, .name = "GPU 51 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002472{ .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch },
2473{ .id = 0x10de8001, .name = "MCP73 HDMI", .patch = patch_nvhdmi_2ch },
Annie Liu3de5ff82012-06-08 19:18:42 +08002474{ .id = 0x11069f80, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
2475{ .id = 0x11069f81, .name = "VX900 HDMI/DP", .patch = patch_via_hdmi },
2476{ .id = 0x11069f84, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
2477{ .id = 0x11069f85, .name = "VX11 HDMI/DP", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002478{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
2479{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_generic_hdmi },
2480{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_generic_hdmi },
2481{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_generic_hdmi },
2482{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi },
2483{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi },
Wu Fengguang591e6102011-05-20 15:35:43 +08002484{ .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi },
Wang Xingchao1c766842012-06-13 10:23:52 +08002485{ .id = 0x80862807, .name = "Haswell HDMI", .patch = patch_generic_hdmi },
Wu Fengguang6edc59e2012-02-23 15:07:44 +08002486{ .id = 0x80862880, .name = "CedarTrail HDMI", .patch = patch_generic_hdmi },
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002487{ .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi },
2488{} /* terminator */
2489};
2490
2491MODULE_ALIAS("snd-hda-codec-id:1002793c");
2492MODULE_ALIAS("snd-hda-codec-id:10027919");
2493MODULE_ALIAS("snd-hda-codec-id:1002791a");
2494MODULE_ALIAS("snd-hda-codec-id:1002aa01");
2495MODULE_ALIAS("snd-hda-codec-id:10951390");
2496MODULE_ALIAS("snd-hda-codec-id:10951392");
2497MODULE_ALIAS("snd-hda-codec-id:10de0002");
2498MODULE_ALIAS("snd-hda-codec-id:10de0003");
2499MODULE_ALIAS("snd-hda-codec-id:10de0005");
2500MODULE_ALIAS("snd-hda-codec-id:10de0006");
2501MODULE_ALIAS("snd-hda-codec-id:10de0007");
2502MODULE_ALIAS("snd-hda-codec-id:10de000a");
2503MODULE_ALIAS("snd-hda-codec-id:10de000b");
2504MODULE_ALIAS("snd-hda-codec-id:10de000c");
2505MODULE_ALIAS("snd-hda-codec-id:10de000d");
2506MODULE_ALIAS("snd-hda-codec-id:10de0010");
2507MODULE_ALIAS("snd-hda-codec-id:10de0011");
2508MODULE_ALIAS("snd-hda-codec-id:10de0012");
2509MODULE_ALIAS("snd-hda-codec-id:10de0013");
2510MODULE_ALIAS("snd-hda-codec-id:10de0014");
Richard Samsonc8900a02011-03-03 12:46:13 +01002511MODULE_ALIAS("snd-hda-codec-id:10de0015");
2512MODULE_ALIAS("snd-hda-codec-id:10de0016");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002513MODULE_ALIAS("snd-hda-codec-id:10de0018");
2514MODULE_ALIAS("snd-hda-codec-id:10de0019");
2515MODULE_ALIAS("snd-hda-codec-id:10de001a");
2516MODULE_ALIAS("snd-hda-codec-id:10de001b");
2517MODULE_ALIAS("snd-hda-codec-id:10de001c");
2518MODULE_ALIAS("snd-hda-codec-id:10de0040");
2519MODULE_ALIAS("snd-hda-codec-id:10de0041");
2520MODULE_ALIAS("snd-hda-codec-id:10de0042");
2521MODULE_ALIAS("snd-hda-codec-id:10de0043");
2522MODULE_ALIAS("snd-hda-codec-id:10de0044");
Aaron Plattner7ae48b52012-07-16 17:10:04 -07002523MODULE_ALIAS("snd-hda-codec-id:10de0051");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002524MODULE_ALIAS("snd-hda-codec-id:10de0067");
2525MODULE_ALIAS("snd-hda-codec-id:10de8001");
Annie Liu3de5ff82012-06-08 19:18:42 +08002526MODULE_ALIAS("snd-hda-codec-id:11069f80");
2527MODULE_ALIAS("snd-hda-codec-id:11069f81");
2528MODULE_ALIAS("snd-hda-codec-id:11069f84");
2529MODULE_ALIAS("snd-hda-codec-id:11069f85");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002530MODULE_ALIAS("snd-hda-codec-id:17e80047");
2531MODULE_ALIAS("snd-hda-codec-id:80860054");
2532MODULE_ALIAS("snd-hda-codec-id:80862801");
2533MODULE_ALIAS("snd-hda-codec-id:80862802");
2534MODULE_ALIAS("snd-hda-codec-id:80862803");
2535MODULE_ALIAS("snd-hda-codec-id:80862804");
2536MODULE_ALIAS("snd-hda-codec-id:80862805");
Wu Fengguang591e6102011-05-20 15:35:43 +08002537MODULE_ALIAS("snd-hda-codec-id:80862806");
Wang Xingchao1c766842012-06-13 10:23:52 +08002538MODULE_ALIAS("snd-hda-codec-id:80862807");
Wu Fengguang6edc59e2012-02-23 15:07:44 +08002539MODULE_ALIAS("snd-hda-codec-id:80862880");
Takashi Iwai84eb01b2010-09-07 12:27:25 +02002540MODULE_ALIAS("snd-hda-codec-id:808629fb");
2541
2542MODULE_LICENSE("GPL");
2543MODULE_DESCRIPTION("HDMI HD-audio codec");
2544MODULE_ALIAS("snd-hda-codec-intelhdmi");
2545MODULE_ALIAS("snd-hda-codec-nvhdmi");
2546MODULE_ALIAS("snd-hda-codec-atihdmi");
2547
2548static struct hda_codec_preset_list intel_list = {
2549 .preset = snd_hda_preset_hdmi,
2550 .owner = THIS_MODULE,
2551};
2552
2553static int __init patch_hdmi_init(void)
2554{
2555 return snd_hda_add_codec_preset(&intel_list);
2556}
2557
2558static void __exit patch_hdmi_exit(void)
2559{
2560 snd_hda_delete_codec_preset(&intel_list);
2561}
2562
2563module_init(patch_hdmi_init)
2564module_exit(patch_hdmi_exit)