3 * patch_hdmi.c - routines for HDMI/DisplayPort codecs
5 * Copyright(c) 2008-2010 Intel Corporation. All rights reserved.
6 * Copyright (c) 2006 ATI Technologies Inc.
7 * Copyright (c) 2008 NVIDIA Corp. All rights reserved.
8 * Copyright (c) 2008 Wei Ni <wni@nvidia.com>
11 * Wu Fengguang <wfg@linux.intel.com>
14 * Wu Fengguang <wfg@linux.intel.com>
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)
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
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.
31 #include <linux/init.h>
32 #include <linux/delay.h>
33 #include <linux/slab.h>
34 #include <linux/moduleparam.h>
35 #include <sound/core.h>
36 #include <sound/jack.h>
37 #include "hda_codec.h"
38 #include "hda_local.h"
40 static bool static_hdmi_pcm
;
41 module_param(static_hdmi_pcm
, bool, 0644);
42 MODULE_PARM_DESC(static_hdmi_pcm
, "Don't restrict PCM parameters per ELD info");
45 * The HDMI/DisplayPort configuration can be highly dynamic. A graphics device
46 * could support N independent pipes, each of them can be connected to one or
47 * more ports (DVI, HDMI or DisplayPort).
49 * The HDA correspondence of pipes/ports are converter/pin nodes.
51 #define MAX_HDMI_CVTS 4
52 #define MAX_HDMI_PINS 4
54 struct hdmi_spec_per_cvt
{
57 unsigned int channels_min
;
58 unsigned int channels_max
;
64 struct hdmi_spec_per_pin
{
67 hda_nid_t mux_nids
[HDA_MAX_CONNECTIONS
];
68 struct hdmi_eld sink_eld
;
73 struct hdmi_spec_per_cvt cvts
[MAX_HDMI_CVTS
];
76 struct hdmi_spec_per_pin pins
[MAX_HDMI_PINS
];
77 struct hda_pcm pcm_rec
[MAX_HDMI_PINS
];
80 * Non-generic ATI/NVIDIA specific
82 struct hda_multi_out multiout
;
83 const struct hda_pcm_stream
*pcm_playback
;
87 struct hdmi_audio_infoframe
{
94 u8 CC02_CT47
; /* CC in bits 0:2, CT in 4:7 */
98 u8 LFEPBL01_LSV36_DM_INH7
;
101 struct dp_audio_infoframe
{
104 u8 ver
; /* 0x11 << 2 */
106 u8 CC02_CT47
; /* match with HDMI infoframe from this on */
110 u8 LFEPBL01_LSV36_DM_INH7
;
113 union audio_infoframe
{
114 struct hdmi_audio_infoframe hdmi
;
115 struct dp_audio_infoframe dp
;
120 * CEA speaker placement:
123 * FLW FL FLC FC FRC FR FRW
130 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
131 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
133 enum cea_speaker_placement
{
134 FL
= (1 << 0), /* Front Left */
135 FC
= (1 << 1), /* Front Center */
136 FR
= (1 << 2), /* Front Right */
137 FLC
= (1 << 3), /* Front Left Center */
138 FRC
= (1 << 4), /* Front Right Center */
139 RL
= (1 << 5), /* Rear Left */
140 RC
= (1 << 6), /* Rear Center */
141 RR
= (1 << 7), /* Rear Right */
142 RLC
= (1 << 8), /* Rear Left Center */
143 RRC
= (1 << 9), /* Rear Right Center */
144 LFE
= (1 << 10), /* Low Frequency Effect */
145 FLW
= (1 << 11), /* Front Left Wide */
146 FRW
= (1 << 12), /* Front Right Wide */
147 FLH
= (1 << 13), /* Front Left High */
148 FCH
= (1 << 14), /* Front Center High */
149 FRH
= (1 << 15), /* Front Right High */
150 TC
= (1 << 16), /* Top Center */
154 * ELD SA bits in the CEA Speaker Allocation data block
156 static int eld_speaker_allocation_bits
[] = {
164 /* the following are not defined in ELD yet */
171 struct cea_channel_speaker_allocation
{
175 /* derived values, just for convenience */
183 * surround40 surround41 surround50 surround51 surround71
184 * ch0 front left = = = =
185 * ch1 front right = = = =
186 * ch2 rear left = = = =
187 * ch3 rear right = = = =
188 * ch4 LFE center center center
193 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
195 static int hdmi_channel_mapping
[0x32][8] = {
197 [0x00] = { 0x00, 0x11, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
199 [0x01] = { 0x00, 0x11, 0x22, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7 },
201 [0x02] = { 0x00, 0x11, 0x23, 0xf2, 0xf4, 0xf5, 0xf6, 0xf7 },
203 [0x08] = { 0x00, 0x11, 0x24, 0x35, 0xf3, 0xf2, 0xf6, 0xf7 },
205 [0x03] = { 0x00, 0x11, 0x23, 0x32, 0x44, 0xf5, 0xf6, 0xf7 },
207 [0x09] = { 0x00, 0x11, 0x24, 0x35, 0x42, 0xf3, 0xf6, 0xf7 },
209 [0x0a] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0xf2, 0xf6, 0xf7 },
211 [0x0b] = { 0x00, 0x11, 0x24, 0x35, 0x43, 0x52, 0xf6, 0xf7 },
213 [0x13] = { 0x00, 0x11, 0x26, 0x37, 0x43, 0x52, 0x64, 0x75 },
217 * This is an ordered list!
219 * The preceding ones have better chances to be selected by
220 * hdmi_channel_allocation().
222 static struct cea_channel_speaker_allocation channel_allocations
[] = {
223 /* channel: 7 6 5 4 3 2 1 0 */
224 { .ca_index
= 0x00, .speakers
= { 0, 0, 0, 0, 0, 0, FR
, FL
} },
226 { .ca_index
= 0x01, .speakers
= { 0, 0, 0, 0, 0, LFE
, FR
, FL
} },
228 { .ca_index
= 0x02, .speakers
= { 0, 0, 0, 0, FC
, 0, FR
, FL
} },
230 { .ca_index
= 0x08, .speakers
= { 0, 0, RR
, RL
, 0, 0, FR
, FL
} },
232 { .ca_index
= 0x09, .speakers
= { 0, 0, RR
, RL
, 0, LFE
, FR
, FL
} },
234 { .ca_index
= 0x0a, .speakers
= { 0, 0, RR
, RL
, FC
, 0, FR
, FL
} },
236 { .ca_index
= 0x0b, .speakers
= { 0, 0, RR
, RL
, FC
, LFE
, FR
, FL
} },
238 { .ca_index
= 0x0f, .speakers
= { 0, RC
, RR
, RL
, FC
, LFE
, FR
, FL
} },
240 { .ca_index
= 0x13, .speakers
= { RRC
, RLC
, RR
, RL
, FC
, LFE
, FR
, FL
} },
242 { .ca_index
= 0x03, .speakers
= { 0, 0, 0, 0, FC
, LFE
, FR
, FL
} },
243 { .ca_index
= 0x04, .speakers
= { 0, 0, 0, RC
, 0, 0, FR
, FL
} },
244 { .ca_index
= 0x05, .speakers
= { 0, 0, 0, RC
, 0, LFE
, FR
, FL
} },
245 { .ca_index
= 0x06, .speakers
= { 0, 0, 0, RC
, FC
, 0, FR
, FL
} },
246 { .ca_index
= 0x07, .speakers
= { 0, 0, 0, RC
, FC
, LFE
, FR
, FL
} },
247 { .ca_index
= 0x0c, .speakers
= { 0, RC
, RR
, RL
, 0, 0, FR
, FL
} },
248 { .ca_index
= 0x0d, .speakers
= { 0, RC
, RR
, RL
, 0, LFE
, FR
, FL
} },
249 { .ca_index
= 0x0e, .speakers
= { 0, RC
, RR
, RL
, FC
, 0, FR
, FL
} },
250 { .ca_index
= 0x10, .speakers
= { RRC
, RLC
, RR
, RL
, 0, 0, FR
, FL
} },
251 { .ca_index
= 0x11, .speakers
= { RRC
, RLC
, RR
, RL
, 0, LFE
, FR
, FL
} },
252 { .ca_index
= 0x12, .speakers
= { RRC
, RLC
, RR
, RL
, FC
, 0, FR
, FL
} },
253 { .ca_index
= 0x14, .speakers
= { FRC
, FLC
, 0, 0, 0, 0, FR
, FL
} },
254 { .ca_index
= 0x15, .speakers
= { FRC
, FLC
, 0, 0, 0, LFE
, FR
, FL
} },
255 { .ca_index
= 0x16, .speakers
= { FRC
, FLC
, 0, 0, FC
, 0, FR
, FL
} },
256 { .ca_index
= 0x17, .speakers
= { FRC
, FLC
, 0, 0, FC
, LFE
, FR
, FL
} },
257 { .ca_index
= 0x18, .speakers
= { FRC
, FLC
, 0, RC
, 0, 0, FR
, FL
} },
258 { .ca_index
= 0x19, .speakers
= { FRC
, FLC
, 0, RC
, 0, LFE
, FR
, FL
} },
259 { .ca_index
= 0x1a, .speakers
= { FRC
, FLC
, 0, RC
, FC
, 0, FR
, FL
} },
260 { .ca_index
= 0x1b, .speakers
= { FRC
, FLC
, 0, RC
, FC
, LFE
, FR
, FL
} },
261 { .ca_index
= 0x1c, .speakers
= { FRC
, FLC
, RR
, RL
, 0, 0, FR
, FL
} },
262 { .ca_index
= 0x1d, .speakers
= { FRC
, FLC
, RR
, RL
, 0, LFE
, FR
, FL
} },
263 { .ca_index
= 0x1e, .speakers
= { FRC
, FLC
, RR
, RL
, FC
, 0, FR
, FL
} },
264 { .ca_index
= 0x1f, .speakers
= { FRC
, FLC
, RR
, RL
, FC
, LFE
, FR
, FL
} },
265 { .ca_index
= 0x20, .speakers
= { 0, FCH
, RR
, RL
, FC
, 0, FR
, FL
} },
266 { .ca_index
= 0x21, .speakers
= { 0, FCH
, RR
, RL
, FC
, LFE
, FR
, FL
} },
267 { .ca_index
= 0x22, .speakers
= { TC
, 0, RR
, RL
, FC
, 0, FR
, FL
} },
268 { .ca_index
= 0x23, .speakers
= { TC
, 0, RR
, RL
, FC
, LFE
, FR
, FL
} },
269 { .ca_index
= 0x24, .speakers
= { FRH
, FLH
, RR
, RL
, 0, 0, FR
, FL
} },
270 { .ca_index
= 0x25, .speakers
= { FRH
, FLH
, RR
, RL
, 0, LFE
, FR
, FL
} },
271 { .ca_index
= 0x26, .speakers
= { FRW
, FLW
, RR
, RL
, 0, 0, FR
, FL
} },
272 { .ca_index
= 0x27, .speakers
= { FRW
, FLW
, RR
, RL
, 0, LFE
, FR
, FL
} },
273 { .ca_index
= 0x28, .speakers
= { TC
, RC
, RR
, RL
, FC
, 0, FR
, FL
} },
274 { .ca_index
= 0x29, .speakers
= { TC
, RC
, RR
, RL
, FC
, LFE
, FR
, FL
} },
275 { .ca_index
= 0x2a, .speakers
= { FCH
, RC
, RR
, RL
, FC
, 0, FR
, FL
} },
276 { .ca_index
= 0x2b, .speakers
= { FCH
, RC
, RR
, RL
, FC
, LFE
, FR
, FL
} },
277 { .ca_index
= 0x2c, .speakers
= { TC
, FCH
, RR
, RL
, FC
, 0, FR
, FL
} },
278 { .ca_index
= 0x2d, .speakers
= { TC
, FCH
, RR
, RL
, FC
, LFE
, FR
, FL
} },
279 { .ca_index
= 0x2e, .speakers
= { FRH
, FLH
, RR
, RL
, FC
, 0, FR
, FL
} },
280 { .ca_index
= 0x2f, .speakers
= { FRH
, FLH
, RR
, RL
, FC
, LFE
, FR
, FL
} },
281 { .ca_index
= 0x30, .speakers
= { FRW
, FLW
, RR
, RL
, FC
, 0, FR
, FL
} },
282 { .ca_index
= 0x31, .speakers
= { FRW
, FLW
, RR
, RL
, FC
, LFE
, FR
, FL
} },
290 static int pin_nid_to_pin_index(struct hdmi_spec
*spec
, hda_nid_t pin_nid
)
294 for (pin_idx
= 0; pin_idx
< spec
->num_pins
; pin_idx
++)
295 if (spec
->pins
[pin_idx
].pin_nid
== pin_nid
)
298 snd_printk(KERN_WARNING
"HDMI: pin nid %d not registered\n", pin_nid
);
302 static int hinfo_to_pin_index(struct hdmi_spec
*spec
,
303 struct hda_pcm_stream
*hinfo
)
307 for (pin_idx
= 0; pin_idx
< spec
->num_pins
; pin_idx
++)
308 if (&spec
->pcm_rec
[pin_idx
].stream
[0] == hinfo
)
311 snd_printk(KERN_WARNING
"HDMI: hinfo %p not registered\n", hinfo
);
315 static int cvt_nid_to_cvt_index(struct hdmi_spec
*spec
, hda_nid_t cvt_nid
)
319 for (cvt_idx
= 0; cvt_idx
< spec
->num_cvts
; cvt_idx
++)
320 if (spec
->cvts
[cvt_idx
].cvt_nid
== cvt_nid
)
323 snd_printk(KERN_WARNING
"HDMI: cvt nid %d not registered\n", cvt_nid
);
328 static void hdmi_get_dip_index(struct hda_codec
*codec
, hda_nid_t pin_nid
,
329 int *packet_index
, int *byte_index
)
333 val
= snd_hda_codec_read(codec
, pin_nid
, 0,
334 AC_VERB_GET_HDMI_DIP_INDEX
, 0);
336 *packet_index
= val
>> 5;
337 *byte_index
= val
& 0x1f;
341 static void hdmi_set_dip_index(struct hda_codec
*codec
, hda_nid_t pin_nid
,
342 int packet_index
, int byte_index
)
346 val
= (packet_index
<< 5) | (byte_index
& 0x1f);
348 snd_hda_codec_write(codec
, pin_nid
, 0, AC_VERB_SET_HDMI_DIP_INDEX
, val
);
351 static void hdmi_write_dip_byte(struct hda_codec
*codec
, hda_nid_t pin_nid
,
354 snd_hda_codec_write(codec
, pin_nid
, 0, AC_VERB_SET_HDMI_DIP_DATA
, val
);
357 static void hdmi_init_pin(struct hda_codec
*codec
, hda_nid_t pin_nid
)
360 if (get_wcaps(codec
, pin_nid
) & AC_WCAP_OUT_AMP
)
361 snd_hda_codec_write(codec
, pin_nid
, 0,
362 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
363 /* Disable pin out until stream is active*/
364 snd_hda_codec_write(codec
, pin_nid
, 0,
365 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
368 static int hdmi_get_channel_count(struct hda_codec
*codec
, hda_nid_t cvt_nid
)
370 return 1 + snd_hda_codec_read(codec
, cvt_nid
, 0,
371 AC_VERB_GET_CVT_CHAN_COUNT
, 0);
374 static void hdmi_set_channel_count(struct hda_codec
*codec
,
375 hda_nid_t cvt_nid
, int chs
)
377 if (chs
!= hdmi_get_channel_count(codec
, cvt_nid
))
378 snd_hda_codec_write(codec
, cvt_nid
, 0,
379 AC_VERB_SET_CVT_CHAN_COUNT
, chs
- 1);
384 * Channel mapping routines
388 * Compute derived values in channel_allocations[].
390 static void init_channel_allocations(void)
393 struct cea_channel_speaker_allocation
*p
;
395 for (i
= 0; i
< ARRAY_SIZE(channel_allocations
); i
++) {
396 p
= channel_allocations
+ i
;
399 for (j
= 0; j
< ARRAY_SIZE(p
->speakers
); j
++)
400 if (p
->speakers
[j
]) {
402 p
->spk_mask
|= p
->speakers
[j
];
408 * The transformation takes two steps:
410 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
411 * spk_mask => (channel_allocations[]) => ai->CA
413 * TODO: it could select the wrong CA from multiple candidates.
415 static int hdmi_channel_allocation(struct hdmi_eld
*eld
, int channels
)
420 char buf
[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE
];
423 * CA defaults to 0 for basic stereo audio
429 * expand ELD's speaker allocation mask
431 * ELD tells the speaker mask in a compact(paired) form,
432 * expand ELD's notions to match the ones used by Audio InfoFrame.
434 for (i
= 0; i
< ARRAY_SIZE(eld_speaker_allocation_bits
); i
++) {
435 if (eld
->spk_alloc
& (1 << i
))
436 spk_mask
|= eld_speaker_allocation_bits
[i
];
439 /* search for the first working match in the CA table */
440 for (i
= 0; i
< ARRAY_SIZE(channel_allocations
); i
++) {
441 if (channels
== channel_allocations
[i
].channels
&&
442 (spk_mask
& channel_allocations
[i
].spk_mask
) ==
443 channel_allocations
[i
].spk_mask
) {
444 ca
= channel_allocations
[i
].ca_index
;
449 snd_print_channel_allocation(eld
->spk_alloc
, buf
, sizeof(buf
));
450 snd_printdd("HDMI: select CA 0x%x for %d-channel allocation: %s\n",
456 static void hdmi_debug_channel_mapping(struct hda_codec
*codec
,
459 #ifdef CONFIG_SND_DEBUG_VERBOSE
463 for (i
= 0; i
< 8; i
++) {
464 slot
= snd_hda_codec_read(codec
, pin_nid
, 0,
465 AC_VERB_GET_HDMI_CHAN_SLOT
, i
);
466 printk(KERN_DEBUG
"HDMI: ASP channel %d => slot %d\n",
467 slot
>> 4, slot
& 0xf);
473 static void hdmi_setup_channel_mapping(struct hda_codec
*codec
,
480 if (hdmi_channel_mapping
[ca
][1] == 0) {
481 for (i
= 0; i
< channel_allocations
[ca
].channels
; i
++)
482 hdmi_channel_mapping
[ca
][i
] = i
| (i
<< 4);
484 hdmi_channel_mapping
[ca
][i
] = 0xf | (i
<< 4);
487 for (i
= 0; i
< 8; i
++) {
488 err
= snd_hda_codec_write(codec
, pin_nid
, 0,
489 AC_VERB_SET_HDMI_CHAN_SLOT
,
490 hdmi_channel_mapping
[ca
][i
]);
492 snd_printdd(KERN_NOTICE
493 "HDMI: channel mapping failed\n");
498 hdmi_debug_channel_mapping(codec
, pin_nid
);
503 * Audio InfoFrame routines
507 * Enable Audio InfoFrame Transmission
509 static void hdmi_start_infoframe_trans(struct hda_codec
*codec
,
512 hdmi_set_dip_index(codec
, pin_nid
, 0x0, 0x0);
513 snd_hda_codec_write(codec
, pin_nid
, 0, AC_VERB_SET_HDMI_DIP_XMIT
,
518 * Disable Audio InfoFrame Transmission
520 static void hdmi_stop_infoframe_trans(struct hda_codec
*codec
,
523 hdmi_set_dip_index(codec
, pin_nid
, 0x0, 0x0);
524 snd_hda_codec_write(codec
, pin_nid
, 0, AC_VERB_SET_HDMI_DIP_XMIT
,
528 static void hdmi_debug_dip_size(struct hda_codec
*codec
, hda_nid_t pin_nid
)
530 #ifdef CONFIG_SND_DEBUG_VERBOSE
534 size
= snd_hdmi_get_eld_size(codec
, pin_nid
);
535 printk(KERN_DEBUG
"HDMI: ELD buf size is %d\n", size
);
537 for (i
= 0; i
< 8; i
++) {
538 size
= snd_hda_codec_read(codec
, pin_nid
, 0,
539 AC_VERB_GET_HDMI_DIP_SIZE
, i
);
540 printk(KERN_DEBUG
"HDMI: DIP GP[%d] buf size is %d\n", i
, size
);
545 static void hdmi_clear_dip_buffers(struct hda_codec
*codec
, hda_nid_t pin_nid
)
551 for (i
= 0; i
< 8; i
++) {
552 size
= snd_hda_codec_read(codec
, pin_nid
, 0,
553 AC_VERB_GET_HDMI_DIP_SIZE
, i
);
557 hdmi_set_dip_index(codec
, pin_nid
, i
, 0x0);
558 for (j
= 1; j
< 1000; j
++) {
559 hdmi_write_dip_byte(codec
, pin_nid
, 0x0);
560 hdmi_get_dip_index(codec
, pin_nid
, &pi
, &bi
);
562 snd_printd(KERN_INFO
"dip index %d: %d != %d\n",
564 if (bi
== 0) /* byte index wrapped around */
568 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
574 static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe
*hdmi_ai
)
576 u8
*bytes
= (u8
*)hdmi_ai
;
580 hdmi_ai
->checksum
= 0;
582 for (i
= 0; i
< sizeof(*hdmi_ai
); i
++)
585 hdmi_ai
->checksum
= -sum
;
588 static void hdmi_fill_audio_infoframe(struct hda_codec
*codec
,
594 hdmi_debug_dip_size(codec
, pin_nid
);
595 hdmi_clear_dip_buffers(codec
, pin_nid
); /* be paranoid */
597 hdmi_set_dip_index(codec
, pin_nid
, 0x0, 0x0);
598 for (i
= 0; i
< size
; i
++)
599 hdmi_write_dip_byte(codec
, pin_nid
, dip
[i
]);
602 static bool hdmi_infoframe_uptodate(struct hda_codec
*codec
, hda_nid_t pin_nid
,
608 if (snd_hda_codec_read(codec
, pin_nid
, 0, AC_VERB_GET_HDMI_DIP_XMIT
, 0)
612 hdmi_set_dip_index(codec
, pin_nid
, 0x0, 0x0);
613 for (i
= 0; i
< size
; i
++) {
614 val
= snd_hda_codec_read(codec
, pin_nid
, 0,
615 AC_VERB_GET_HDMI_DIP_DATA
, 0);
623 static void hdmi_setup_audio_infoframe(struct hda_codec
*codec
, int pin_idx
,
624 struct snd_pcm_substream
*substream
)
626 struct hdmi_spec
*spec
= codec
->spec
;
627 struct hdmi_spec_per_pin
*per_pin
= &spec
->pins
[pin_idx
];
628 hda_nid_t pin_nid
= per_pin
->pin_nid
;
629 int channels
= substream
->runtime
->channels
;
630 struct hdmi_eld
*eld
;
632 union audio_infoframe ai
;
634 eld
= &spec
->pins
[pin_idx
].sink_eld
;
635 if (!eld
->monitor_present
)
638 ca
= hdmi_channel_allocation(eld
, channels
);
640 memset(&ai
, 0, sizeof(ai
));
641 if (eld
->conn_type
== 0) { /* HDMI */
642 struct hdmi_audio_infoframe
*hdmi_ai
= &ai
.hdmi
;
644 hdmi_ai
->type
= 0x84;
647 hdmi_ai
->CC02_CT47
= channels
- 1;
649 hdmi_checksum_audio_infoframe(hdmi_ai
);
650 } else if (eld
->conn_type
== 1) { /* DisplayPort */
651 struct dp_audio_infoframe
*dp_ai
= &ai
.dp
;
655 dp_ai
->ver
= 0x11 << 2;
656 dp_ai
->CC02_CT47
= channels
- 1;
659 snd_printd("HDMI: unknown connection type at pin %d\n",
665 * sizeof(ai) is used instead of sizeof(*hdmi_ai) or
666 * sizeof(*dp_ai) to avoid partial match/update problems when
667 * the user switches between HDMI/DP monitors.
669 if (!hdmi_infoframe_uptodate(codec
, pin_nid
, ai
.bytes
,
671 snd_printdd("hdmi_setup_audio_infoframe: "
672 "pin=%d channels=%d\n",
675 hdmi_setup_channel_mapping(codec
, pin_nid
, ca
);
676 hdmi_stop_infoframe_trans(codec
, pin_nid
);
677 hdmi_fill_audio_infoframe(codec
, pin_nid
,
678 ai
.bytes
, sizeof(ai
));
679 hdmi_start_infoframe_trans(codec
, pin_nid
);
688 static void hdmi_present_sense(struct hda_codec
*codec
, hda_nid_t pin_nid
,
689 struct hdmi_eld
*eld
);
691 static void hdmi_intrinsic_event(struct hda_codec
*codec
, unsigned int res
)
693 struct hdmi_spec
*spec
= codec
->spec
;
694 int pin_nid
= res
>> AC_UNSOL_RES_TAG_SHIFT
;
695 int pd
= !!(res
& AC_UNSOL_RES_PD
);
696 int eldv
= !!(res
& AC_UNSOL_RES_ELDV
);
698 struct hdmi_eld
*eld
;
701 "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
702 codec
->addr
, pin_nid
, pd
, eldv
);
704 pin_idx
= pin_nid_to_pin_index(spec
, pin_nid
);
707 eld
= &spec
->pins
[pin_idx
].sink_eld
;
709 hdmi_present_sense(codec
, pin_nid
, eld
);
712 * HDMI sink's ELD info cannot always be retrieved for now, e.g.
713 * in console or for audio devices. Assume the highest speakers
714 * configuration, to _not_ prohibit multi-channel audio playback.
717 eld
->spk_alloc
= 0xffff;
720 static void hdmi_non_intrinsic_event(struct hda_codec
*codec
, unsigned int res
)
722 int tag
= res
>> AC_UNSOL_RES_TAG_SHIFT
;
723 int subtag
= (res
& AC_UNSOL_RES_SUBTAG
) >> AC_UNSOL_RES_SUBTAG_SHIFT
;
724 int cp_state
= !!(res
& AC_UNSOL_RES_CP_STATE
);
725 int cp_ready
= !!(res
& AC_UNSOL_RES_CP_READY
);
728 "HDMI CP event: CODEC=%d PIN=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
743 static void hdmi_unsol_event(struct hda_codec
*codec
, unsigned int res
)
745 struct hdmi_spec
*spec
= codec
->spec
;
746 int tag
= res
>> AC_UNSOL_RES_TAG_SHIFT
;
747 int subtag
= (res
& AC_UNSOL_RES_SUBTAG
) >> AC_UNSOL_RES_SUBTAG_SHIFT
;
749 if (pin_nid_to_pin_index(spec
, tag
) < 0) {
750 snd_printd(KERN_INFO
"Unexpected HDMI event tag 0x%x\n", tag
);
755 hdmi_intrinsic_event(codec
, res
);
757 hdmi_non_intrinsic_event(codec
, res
);
764 /* HBR should be Non-PCM, 8 channels */
765 #define is_hbr_format(format) \
766 ((format & AC_FMT_TYPE_NON_PCM) && (format & AC_FMT_CHAN_MASK) == 7)
768 static int hdmi_setup_stream(struct hda_codec
*codec
, hda_nid_t cvt_nid
,
769 hda_nid_t pin_nid
, u32 stream_tag
, int format
)
774 if (snd_hda_query_pin_caps(codec
, pin_nid
) & AC_PINCAP_HBR
) {
775 pinctl
= snd_hda_codec_read(codec
, pin_nid
, 0,
776 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
778 new_pinctl
= pinctl
& ~AC_PINCTL_EPT
;
779 if (is_hbr_format(format
))
780 new_pinctl
|= AC_PINCTL_EPT_HBR
;
782 new_pinctl
|= AC_PINCTL_EPT_NATIVE
;
784 snd_printdd("hdmi_setup_stream: "
785 "NID=0x%x, %spinctl=0x%x\n",
787 pinctl
== new_pinctl
? "" : "new-",
790 if (pinctl
!= new_pinctl
)
791 snd_hda_codec_write(codec
, pin_nid
, 0,
792 AC_VERB_SET_PIN_WIDGET_CONTROL
,
796 if (is_hbr_format(format
) && !new_pinctl
) {
797 snd_printdd("hdmi_setup_stream: HBR is not supported\n");
801 snd_hda_codec_setup_stream(codec
, cvt_nid
, stream_tag
, 0, format
);
808 static int hdmi_pcm_open(struct hda_pcm_stream
*hinfo
,
809 struct hda_codec
*codec
,
810 struct snd_pcm_substream
*substream
)
812 struct hdmi_spec
*spec
= codec
->spec
;
813 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
814 int pin_idx
, cvt_idx
, mux_idx
= 0;
815 struct hdmi_spec_per_pin
*per_pin
;
816 struct hdmi_eld
*eld
;
817 struct hdmi_spec_per_cvt
*per_cvt
= NULL
;
821 pin_idx
= hinfo_to_pin_index(spec
, hinfo
);
822 if (snd_BUG_ON(pin_idx
< 0))
824 per_pin
= &spec
->pins
[pin_idx
];
825 eld
= &per_pin
->sink_eld
;
827 /* Dynamically assign converter to stream */
828 for (cvt_idx
= 0; cvt_idx
< spec
->num_cvts
; cvt_idx
++) {
829 per_cvt
= &spec
->cvts
[cvt_idx
];
831 /* Must not already be assigned */
832 if (per_cvt
->assigned
)
834 /* Must be in pin's mux's list of converters */
835 for (mux_idx
= 0; mux_idx
< per_pin
->num_mux_nids
; mux_idx
++)
836 if (per_pin
->mux_nids
[mux_idx
] == per_cvt
->cvt_nid
)
838 /* Not in mux list */
839 if (mux_idx
== per_pin
->num_mux_nids
)
843 /* No free converters */
844 if (cvt_idx
== spec
->num_cvts
)
847 /* Claim converter */
848 per_cvt
->assigned
= 1;
849 hinfo
->nid
= per_cvt
->cvt_nid
;
851 snd_hda_codec_write(codec
, per_pin
->pin_nid
, 0,
852 AC_VERB_SET_CONNECT_SEL
,
854 pinctl
= snd_hda_codec_read(codec
, per_pin
->pin_nid
, 0,
855 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
856 snd_hda_codec_write(codec
, per_pin
->pin_nid
, 0,
857 AC_VERB_SET_PIN_WIDGET_CONTROL
,
859 snd_hda_spdif_ctls_assign(codec
, pin_idx
, per_cvt
->cvt_nid
);
861 /* Initially set the converter's capabilities */
862 hinfo
->channels_min
= per_cvt
->channels_min
;
863 hinfo
->channels_max
= per_cvt
->channels_max
;
864 hinfo
->rates
= per_cvt
->rates
;
865 hinfo
->formats
= per_cvt
->formats
;
866 hinfo
->maxbps
= per_cvt
->maxbps
;
868 /* Restrict capabilities by ELD if this isn't disabled */
869 if (!static_hdmi_pcm
&& eld
->eld_valid
) {
870 snd_hdmi_eld_update_pcm_info(eld
, hinfo
);
871 if (hinfo
->channels_min
> hinfo
->channels_max
||
872 !hinfo
->rates
|| !hinfo
->formats
)
876 /* Store the updated parameters */
877 runtime
->hw
.channels_min
= hinfo
->channels_min
;
878 runtime
->hw
.channels_max
= hinfo
->channels_max
;
879 runtime
->hw
.formats
= hinfo
->formats
;
880 runtime
->hw
.rates
= hinfo
->rates
;
882 snd_pcm_hw_constraint_step(substream
->runtime
, 0,
883 SNDRV_PCM_HW_PARAM_CHANNELS
, 2);
888 * HDA/HDMI auto parsing
890 static int hdmi_read_pin_conn(struct hda_codec
*codec
, int pin_idx
)
892 struct hdmi_spec
*spec
= codec
->spec
;
893 struct hdmi_spec_per_pin
*per_pin
= &spec
->pins
[pin_idx
];
894 hda_nid_t pin_nid
= per_pin
->pin_nid
;
896 if (!(get_wcaps(codec
, pin_nid
) & AC_WCAP_CONN_LIST
)) {
897 snd_printk(KERN_WARNING
898 "HDMI: pin %d wcaps %#x "
899 "does not support connection list\n",
900 pin_nid
, get_wcaps(codec
, pin_nid
));
904 per_pin
->num_mux_nids
= snd_hda_get_connections(codec
, pin_nid
,
906 HDA_MAX_CONNECTIONS
);
911 static void hdmi_present_sense(struct hda_codec
*codec
, hda_nid_t pin_nid
,
912 struct hdmi_eld
*eld
)
915 * Always execute a GetPinSense verb here, even when called from
916 * hdmi_intrinsic_event; for some NVIDIA HW, the unsolicited
917 * response's PD bit is not the real PD value, but indicates that
918 * the real PD value changed. An older version of the HD-audio
919 * specification worked this way. Hence, we just ignore the data in
920 * the unsolicited response to avoid custom WARs.
922 int present
= snd_hda_pin_sense(codec
, pin_nid
);
924 memset(eld
, 0, sizeof(*eld
));
926 eld
->monitor_present
= !!(present
& AC_PINSENSE_PRESENCE
);
927 if (eld
->monitor_present
)
928 eld
->eld_valid
= !!(present
& AC_PINSENSE_ELDV
);
933 "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
934 codec
->addr
, pin_nid
, eld
->monitor_present
, eld
->eld_valid
);
937 if (!snd_hdmi_get_eld(eld
, codec
, pin_nid
))
938 snd_hdmi_show_eld(eld
);
940 snd_hda_input_jack_report(codec
, pin_nid
);
943 static int hdmi_add_pin(struct hda_codec
*codec
, hda_nid_t pin_nid
)
945 struct hdmi_spec
*spec
= codec
->spec
;
946 unsigned int caps
, config
;
948 struct hdmi_spec_per_pin
*per_pin
;
949 struct hdmi_eld
*eld
;
952 caps
= snd_hda_param_read(codec
, pin_nid
, AC_PAR_PIN_CAP
);
953 if (!(caps
& (AC_PINCAP_HDMI
| AC_PINCAP_DP
)))
956 config
= snd_hda_codec_read(codec
, pin_nid
, 0,
957 AC_VERB_GET_CONFIG_DEFAULT
, 0);
958 if (get_defcfg_connect(config
) == AC_JACK_PORT_NONE
)
961 if (snd_BUG_ON(spec
->num_pins
>= MAX_HDMI_PINS
))
964 pin_idx
= spec
->num_pins
;
965 per_pin
= &spec
->pins
[pin_idx
];
966 eld
= &per_pin
->sink_eld
;
968 per_pin
->pin_nid
= pin_nid
;
970 err
= snd_hda_input_jack_add(codec
, pin_nid
,
971 SND_JACK_VIDEOOUT
, NULL
);
975 err
= hdmi_read_pin_conn(codec
, pin_idx
);
981 hdmi_present_sense(codec
, pin_nid
, eld
);
986 static int hdmi_add_cvt(struct hda_codec
*codec
, hda_nid_t cvt_nid
)
988 struct hdmi_spec
*spec
= codec
->spec
;
990 struct hdmi_spec_per_cvt
*per_cvt
;
994 if (snd_BUG_ON(spec
->num_cvts
>= MAX_HDMI_CVTS
))
997 chans
= get_wcaps(codec
, cvt_nid
);
998 chans
= get_wcaps_channels(chans
);
1000 cvt_idx
= spec
->num_cvts
;
1001 per_cvt
= &spec
->cvts
[cvt_idx
];
1003 per_cvt
->cvt_nid
= cvt_nid
;
1004 per_cvt
->channels_min
= 2;
1006 per_cvt
->channels_max
= chans
;
1008 err
= snd_hda_query_supported_pcm(codec
, cvt_nid
,
1020 static int hdmi_parse_codec(struct hda_codec
*codec
)
1025 nodes
= snd_hda_get_sub_nodes(codec
, codec
->afg
, &nid
);
1026 if (!nid
|| nodes
< 0) {
1027 snd_printk(KERN_WARNING
"HDMI: failed to get afg sub nodes\n");
1031 for (i
= 0; i
< nodes
; i
++, nid
++) {
1035 caps
= snd_hda_param_read(codec
, nid
, AC_PAR_AUDIO_WIDGET_CAP
);
1036 type
= get_wcaps_type(caps
);
1038 if (!(caps
& AC_WCAP_DIGITAL
))
1042 case AC_WID_AUD_OUT
:
1043 hdmi_add_cvt(codec
, nid
);
1046 hdmi_add_pin(codec
, nid
);
1052 * G45/IbexPeak don't support EPSS: the unsolicited pin hot plug event
1053 * can be lost and presence sense verb will become inaccurate if the
1054 * HDA link is powered off at hot plug or hw initialization time.
1056 #ifdef CONFIG_SND_HDA_POWER_SAVE
1057 if (!(snd_hda_param_read(codec
, codec
->afg
, AC_PAR_POWER_STATE
) &
1059 codec
->bus
->power_keep_link_on
= 1;
1067 static char *generic_hdmi_pcm_names
[MAX_HDMI_PINS
] = {
1078 static int generic_hdmi_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
1079 struct hda_codec
*codec
,
1080 unsigned int stream_tag
,
1081 unsigned int format
,
1082 struct snd_pcm_substream
*substream
)
1084 hda_nid_t cvt_nid
= hinfo
->nid
;
1085 struct hdmi_spec
*spec
= codec
->spec
;
1086 int pin_idx
= hinfo_to_pin_index(spec
, hinfo
);
1087 hda_nid_t pin_nid
= spec
->pins
[pin_idx
].pin_nid
;
1089 hdmi_set_channel_count(codec
, cvt_nid
, substream
->runtime
->channels
);
1091 hdmi_setup_audio_infoframe(codec
, pin_idx
, substream
);
1093 return hdmi_setup_stream(codec
, cvt_nid
, pin_nid
, stream_tag
, format
);
1096 static int generic_hdmi_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
1097 struct hda_codec
*codec
,
1098 struct snd_pcm_substream
*substream
)
1100 struct hdmi_spec
*spec
= codec
->spec
;
1101 int cvt_idx
, pin_idx
;
1102 struct hdmi_spec_per_cvt
*per_cvt
;
1103 struct hdmi_spec_per_pin
*per_pin
;
1106 snd_hda_codec_cleanup_stream(codec
, hinfo
->nid
);
1109 cvt_idx
= cvt_nid_to_cvt_index(spec
, hinfo
->nid
);
1110 if (snd_BUG_ON(cvt_idx
< 0))
1112 per_cvt
= &spec
->cvts
[cvt_idx
];
1114 snd_BUG_ON(!per_cvt
->assigned
);
1115 per_cvt
->assigned
= 0;
1118 pin_idx
= hinfo_to_pin_index(spec
, hinfo
);
1119 if (snd_BUG_ON(pin_idx
< 0))
1121 per_pin
= &spec
->pins
[pin_idx
];
1123 pinctl
= snd_hda_codec_read(codec
, per_pin
->pin_nid
, 0,
1124 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
1125 snd_hda_codec_write(codec
, per_pin
->pin_nid
, 0,
1126 AC_VERB_SET_PIN_WIDGET_CONTROL
,
1128 snd_hda_spdif_ctls_unassign(codec
, pin_idx
);
1134 static const struct hda_pcm_ops generic_ops
= {
1135 .open
= hdmi_pcm_open
,
1136 .prepare
= generic_hdmi_playback_pcm_prepare
,
1137 .cleanup
= generic_hdmi_playback_pcm_cleanup
,
1140 static int generic_hdmi_build_pcms(struct hda_codec
*codec
)
1142 struct hdmi_spec
*spec
= codec
->spec
;
1145 for (pin_idx
= 0; pin_idx
< spec
->num_pins
; pin_idx
++) {
1146 struct hda_pcm
*info
;
1147 struct hda_pcm_stream
*pstr
;
1149 info
= &spec
->pcm_rec
[pin_idx
];
1150 info
->name
= generic_hdmi_pcm_names
[pin_idx
];
1151 info
->pcm_type
= HDA_PCM_TYPE_HDMI
;
1153 pstr
= &info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
];
1154 pstr
->substreams
= 1;
1155 pstr
->ops
= generic_ops
;
1156 /* other pstr fields are set in open */
1159 codec
->num_pcms
= spec
->num_pins
;
1160 codec
->pcm_info
= spec
->pcm_rec
;
1165 static int generic_hdmi_build_controls(struct hda_codec
*codec
)
1167 struct hdmi_spec
*spec
= codec
->spec
;
1171 for (pin_idx
= 0; pin_idx
< spec
->num_pins
; pin_idx
++) {
1172 struct hdmi_spec_per_pin
*per_pin
= &spec
->pins
[pin_idx
];
1173 err
= snd_hda_create_spdif_out_ctls(codec
,
1175 per_pin
->mux_nids
[0]);
1178 snd_hda_spdif_ctls_unassign(codec
, pin_idx
);
1184 static int generic_hdmi_init(struct hda_codec
*codec
)
1186 struct hdmi_spec
*spec
= codec
->spec
;
1189 for (pin_idx
= 0; pin_idx
< spec
->num_pins
; pin_idx
++) {
1190 struct hdmi_spec_per_pin
*per_pin
= &spec
->pins
[pin_idx
];
1191 hda_nid_t pin_nid
= per_pin
->pin_nid
;
1192 struct hdmi_eld
*eld
= &per_pin
->sink_eld
;
1194 hdmi_init_pin(codec
, pin_nid
);
1195 snd_hda_codec_write(codec
, pin_nid
, 0,
1196 AC_VERB_SET_UNSOLICITED_ENABLE
,
1197 AC_USRSP_EN
| pin_nid
);
1199 snd_hda_eld_proc_new(codec
, eld
, pin_idx
);
1204 static void generic_hdmi_free(struct hda_codec
*codec
)
1206 struct hdmi_spec
*spec
= codec
->spec
;
1209 for (pin_idx
= 0; pin_idx
< spec
->num_pins
; pin_idx
++) {
1210 struct hdmi_spec_per_pin
*per_pin
= &spec
->pins
[pin_idx
];
1211 struct hdmi_eld
*eld
= &per_pin
->sink_eld
;
1213 snd_hda_eld_proc_free(codec
, eld
);
1215 snd_hda_input_jack_free(codec
);
1220 static const struct hda_codec_ops generic_hdmi_patch_ops
= {
1221 .init
= generic_hdmi_init
,
1222 .free
= generic_hdmi_free
,
1223 .build_pcms
= generic_hdmi_build_pcms
,
1224 .build_controls
= generic_hdmi_build_controls
,
1225 .unsol_event
= hdmi_unsol_event
,
1228 static int patch_generic_hdmi(struct hda_codec
*codec
)
1230 struct hdmi_spec
*spec
;
1232 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1237 if (hdmi_parse_codec(codec
) < 0) {
1242 codec
->patch_ops
= generic_hdmi_patch_ops
;
1244 init_channel_allocations();
1250 * Shared non-generic implementations
1253 static int simple_playback_build_pcms(struct hda_codec
*codec
)
1255 struct hdmi_spec
*spec
= codec
->spec
;
1256 struct hda_pcm
*info
= spec
->pcm_rec
;
1259 codec
->num_pcms
= spec
->num_cvts
;
1260 codec
->pcm_info
= info
;
1262 for (i
= 0; i
< codec
->num_pcms
; i
++, info
++) {
1264 struct hda_pcm_stream
*pstr
;
1266 chans
= get_wcaps(codec
, spec
->cvts
[i
].cvt_nid
);
1267 chans
= get_wcaps_channels(chans
);
1269 info
->name
= generic_hdmi_pcm_names
[i
];
1270 info
->pcm_type
= HDA_PCM_TYPE_HDMI
;
1271 pstr
= &info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
];
1272 snd_BUG_ON(!spec
->pcm_playback
);
1273 *pstr
= *spec
->pcm_playback
;
1274 pstr
->nid
= spec
->cvts
[i
].cvt_nid
;
1275 if (pstr
->channels_max
<= 2 && chans
&& chans
<= 16)
1276 pstr
->channels_max
= chans
;
1282 static int simple_playback_build_controls(struct hda_codec
*codec
)
1284 struct hdmi_spec
*spec
= codec
->spec
;
1288 for (i
= 0; i
< codec
->num_pcms
; i
++) {
1289 err
= snd_hda_create_spdif_out_ctls(codec
,
1290 spec
->cvts
[i
].cvt_nid
,
1291 spec
->cvts
[i
].cvt_nid
);
1299 static void simple_playback_free(struct hda_codec
*codec
)
1301 struct hdmi_spec
*spec
= codec
->spec
;
1307 * Nvidia specific implementations
1310 #define Nv_VERB_SET_Channel_Allocation 0xF79
1311 #define Nv_VERB_SET_Info_Frame_Checksum 0xF7A
1312 #define Nv_VERB_SET_Audio_Protection_On 0xF98
1313 #define Nv_VERB_SET_Audio_Protection_Off 0xF99
1315 #define nvhdmi_master_con_nid_7x 0x04
1316 #define nvhdmi_master_pin_nid_7x 0x05
1318 static const hda_nid_t nvhdmi_con_nids_7x
[4] = {
1319 /*front, rear, clfe, rear_surr */
1323 static const struct hda_verb nvhdmi_basic_init_7x
[] = {
1324 /* set audio protect on */
1325 { 0x1, Nv_VERB_SET_Audio_Protection_On
, 0x1},
1326 /* enable digital output on pin widget */
1327 { 0x5, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x5 },
1328 { 0x7, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x5 },
1329 { 0x9, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x5 },
1330 { 0xb, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x5 },
1331 { 0xd, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x5 },
1335 #ifdef LIMITED_RATE_FMT_SUPPORT
1336 /* support only the safe format and rate */
1337 #define SUPPORTED_RATES SNDRV_PCM_RATE_48000
1338 #define SUPPORTED_MAXBPS 16
1339 #define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE
1341 /* support all rates and formats */
1342 #define SUPPORTED_RATES \
1343 (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
1344 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
1345 SNDRV_PCM_RATE_192000)
1346 #define SUPPORTED_MAXBPS 24
1347 #define SUPPORTED_FORMATS \
1348 (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE)
1351 static int nvhdmi_7x_init(struct hda_codec
*codec
)
1353 snd_hda_sequence_write(codec
, nvhdmi_basic_init_7x
);
1357 static unsigned int channels_2_6_8
[] = {
1361 static unsigned int channels_2_8
[] = {
1365 static struct snd_pcm_hw_constraint_list hw_constraints_2_6_8_channels
= {
1366 .count
= ARRAY_SIZE(channels_2_6_8
),
1367 .list
= channels_2_6_8
,
1371 static struct snd_pcm_hw_constraint_list hw_constraints_2_8_channels
= {
1372 .count
= ARRAY_SIZE(channels_2_8
),
1373 .list
= channels_2_8
,
1377 static int simple_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
1378 struct hda_codec
*codec
,
1379 struct snd_pcm_substream
*substream
)
1381 struct hdmi_spec
*spec
= codec
->spec
;
1382 struct snd_pcm_hw_constraint_list
*hw_constraints_channels
= NULL
;
1384 switch (codec
->preset
->id
) {
1389 hw_constraints_channels
= &hw_constraints_2_8_channels
;
1392 hw_constraints_channels
= &hw_constraints_2_6_8_channels
;
1398 if (hw_constraints_channels
!= NULL
) {
1399 snd_pcm_hw_constraint_list(substream
->runtime
, 0,
1400 SNDRV_PCM_HW_PARAM_CHANNELS
,
1401 hw_constraints_channels
);
1403 snd_pcm_hw_constraint_step(substream
->runtime
, 0,
1404 SNDRV_PCM_HW_PARAM_CHANNELS
, 2);
1407 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
1410 static int simple_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
1411 struct hda_codec
*codec
,
1412 struct snd_pcm_substream
*substream
)
1414 struct hdmi_spec
*spec
= codec
->spec
;
1415 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
1418 static int simple_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
1419 struct hda_codec
*codec
,
1420 unsigned int stream_tag
,
1421 unsigned int format
,
1422 struct snd_pcm_substream
*substream
)
1424 struct hdmi_spec
*spec
= codec
->spec
;
1425 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
1426 stream_tag
, format
, substream
);
1429 static void nvhdmi_8ch_7x_set_info_frame_parameters(struct hda_codec
*codec
,
1432 unsigned int chanmask
;
1433 int chan
= channels
? (channels
- 1) : 1;
1452 /* Set the audio infoframe channel allocation and checksum fields. The
1453 * channel count is computed implicitly by the hardware. */
1454 snd_hda_codec_write(codec
, 0x1, 0,
1455 Nv_VERB_SET_Channel_Allocation
, chanmask
);
1457 snd_hda_codec_write(codec
, 0x1, 0,
1458 Nv_VERB_SET_Info_Frame_Checksum
,
1459 (0x71 - chan
- chanmask
));
1462 static int nvhdmi_8ch_7x_pcm_close(struct hda_pcm_stream
*hinfo
,
1463 struct hda_codec
*codec
,
1464 struct snd_pcm_substream
*substream
)
1466 struct hdmi_spec
*spec
= codec
->spec
;
1469 snd_hda_codec_write(codec
, nvhdmi_master_con_nid_7x
,
1470 0, AC_VERB_SET_CHANNEL_STREAMID
, 0);
1471 for (i
= 0; i
< 4; i
++) {
1472 /* set the stream id */
1473 snd_hda_codec_write(codec
, nvhdmi_con_nids_7x
[i
], 0,
1474 AC_VERB_SET_CHANNEL_STREAMID
, 0);
1475 /* set the stream format */
1476 snd_hda_codec_write(codec
, nvhdmi_con_nids_7x
[i
], 0,
1477 AC_VERB_SET_STREAM_FORMAT
, 0);
1480 /* The audio hardware sends a channel count of 0x7 (8ch) when all the
1481 * streams are disabled. */
1482 nvhdmi_8ch_7x_set_info_frame_parameters(codec
, 8);
1484 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
1487 static int nvhdmi_8ch_7x_pcm_prepare(struct hda_pcm_stream
*hinfo
,
1488 struct hda_codec
*codec
,
1489 unsigned int stream_tag
,
1490 unsigned int format
,
1491 struct snd_pcm_substream
*substream
)
1494 unsigned int dataDCC1
, dataDCC2
, channel_id
;
1496 struct hdmi_spec
*spec
= codec
->spec
;
1497 struct hda_spdif_out
*spdif
=
1498 snd_hda_spdif_out_of_nid(codec
, spec
->cvts
[0].cvt_nid
);
1500 mutex_lock(&codec
->spdif_mutex
);
1502 chs
= substream
->runtime
->channels
;
1504 dataDCC1
= AC_DIG1_ENABLE
| AC_DIG1_COPYRIGHT
;
1507 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
1508 if (codec
->spdif_status_reset
&& (spdif
->ctls
& AC_DIG1_ENABLE
))
1509 snd_hda_codec_write(codec
,
1510 nvhdmi_master_con_nid_7x
,
1512 AC_VERB_SET_DIGI_CONVERT_1
,
1513 spdif
->ctls
& ~AC_DIG1_ENABLE
& 0xff);
1515 /* set the stream id */
1516 snd_hda_codec_write(codec
, nvhdmi_master_con_nid_7x
, 0,
1517 AC_VERB_SET_CHANNEL_STREAMID
, (stream_tag
<< 4) | 0x0);
1519 /* set the stream format */
1520 snd_hda_codec_write(codec
, nvhdmi_master_con_nid_7x
, 0,
1521 AC_VERB_SET_STREAM_FORMAT
, format
);
1523 /* turn on again (if needed) */
1524 /* enable and set the channel status audio/data flag */
1525 if (codec
->spdif_status_reset
&& (spdif
->ctls
& AC_DIG1_ENABLE
)) {
1526 snd_hda_codec_write(codec
,
1527 nvhdmi_master_con_nid_7x
,
1529 AC_VERB_SET_DIGI_CONVERT_1
,
1530 spdif
->ctls
& 0xff);
1531 snd_hda_codec_write(codec
,
1532 nvhdmi_master_con_nid_7x
,
1534 AC_VERB_SET_DIGI_CONVERT_2
, dataDCC2
);
1537 for (i
= 0; i
< 4; i
++) {
1543 /* turn off SPDIF once;
1544 *otherwise the IEC958 bits won't be updated
1546 if (codec
->spdif_status_reset
&&
1547 (spdif
->ctls
& AC_DIG1_ENABLE
))
1548 snd_hda_codec_write(codec
,
1549 nvhdmi_con_nids_7x
[i
],
1551 AC_VERB_SET_DIGI_CONVERT_1
,
1552 spdif
->ctls
& ~AC_DIG1_ENABLE
& 0xff);
1553 /* set the stream id */
1554 snd_hda_codec_write(codec
,
1555 nvhdmi_con_nids_7x
[i
],
1557 AC_VERB_SET_CHANNEL_STREAMID
,
1558 (stream_tag
<< 4) | channel_id
);
1559 /* set the stream format */
1560 snd_hda_codec_write(codec
,
1561 nvhdmi_con_nids_7x
[i
],
1563 AC_VERB_SET_STREAM_FORMAT
,
1565 /* turn on again (if needed) */
1566 /* enable and set the channel status audio/data flag */
1567 if (codec
->spdif_status_reset
&&
1568 (spdif
->ctls
& AC_DIG1_ENABLE
)) {
1569 snd_hda_codec_write(codec
,
1570 nvhdmi_con_nids_7x
[i
],
1572 AC_VERB_SET_DIGI_CONVERT_1
,
1573 spdif
->ctls
& 0xff);
1574 snd_hda_codec_write(codec
,
1575 nvhdmi_con_nids_7x
[i
],
1577 AC_VERB_SET_DIGI_CONVERT_2
, dataDCC2
);
1581 nvhdmi_8ch_7x_set_info_frame_parameters(codec
, chs
);
1583 mutex_unlock(&codec
->spdif_mutex
);
1587 static const struct hda_pcm_stream nvhdmi_pcm_playback_8ch_7x
= {
1591 .nid
= nvhdmi_master_con_nid_7x
,
1592 .rates
= SUPPORTED_RATES
,
1593 .maxbps
= SUPPORTED_MAXBPS
,
1594 .formats
= SUPPORTED_FORMATS
,
1596 .open
= simple_playback_pcm_open
,
1597 .close
= nvhdmi_8ch_7x_pcm_close
,
1598 .prepare
= nvhdmi_8ch_7x_pcm_prepare
1602 static const struct hda_pcm_stream nvhdmi_pcm_playback_2ch
= {
1606 .nid
= nvhdmi_master_con_nid_7x
,
1607 .rates
= SUPPORTED_RATES
,
1608 .maxbps
= SUPPORTED_MAXBPS
,
1609 .formats
= SUPPORTED_FORMATS
,
1611 .open
= simple_playback_pcm_open
,
1612 .close
= simple_playback_pcm_close
,
1613 .prepare
= simple_playback_pcm_prepare
1617 static const struct hda_codec_ops nvhdmi_patch_ops_8ch_7x
= {
1618 .build_controls
= simple_playback_build_controls
,
1619 .build_pcms
= simple_playback_build_pcms
,
1620 .init
= nvhdmi_7x_init
,
1621 .free
= simple_playback_free
,
1624 static const struct hda_codec_ops nvhdmi_patch_ops_2ch
= {
1625 .build_controls
= simple_playback_build_controls
,
1626 .build_pcms
= simple_playback_build_pcms
,
1627 .init
= nvhdmi_7x_init
,
1628 .free
= simple_playback_free
,
1631 static int patch_nvhdmi_2ch(struct hda_codec
*codec
)
1633 struct hdmi_spec
*spec
;
1635 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1641 spec
->multiout
.num_dacs
= 0; /* no analog */
1642 spec
->multiout
.max_channels
= 2;
1643 spec
->multiout
.dig_out_nid
= nvhdmi_master_con_nid_7x
;
1645 spec
->cvts
[0].cvt_nid
= nvhdmi_master_con_nid_7x
;
1646 spec
->pcm_playback
= &nvhdmi_pcm_playback_2ch
;
1648 codec
->patch_ops
= nvhdmi_patch_ops_2ch
;
1653 static int patch_nvhdmi_8ch_7x(struct hda_codec
*codec
)
1655 struct hdmi_spec
*spec
;
1656 int err
= patch_nvhdmi_2ch(codec
);
1661 spec
->multiout
.max_channels
= 8;
1662 spec
->pcm_playback
= &nvhdmi_pcm_playback_8ch_7x
;
1663 codec
->patch_ops
= nvhdmi_patch_ops_8ch_7x
;
1665 /* Initialize the audio infoframe channel mask and checksum to something
1667 nvhdmi_8ch_7x_set_info_frame_parameters(codec
, 8);
1673 * ATI-specific implementations
1675 * FIXME: we may omit the whole this and use the generic code once after
1676 * it's confirmed to work.
1679 #define ATIHDMI_CVT_NID 0x02 /* audio converter */
1680 #define ATIHDMI_PIN_NID 0x03 /* HDMI output pin */
1682 static int atihdmi_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
1683 struct hda_codec
*codec
,
1684 unsigned int stream_tag
,
1685 unsigned int format
,
1686 struct snd_pcm_substream
*substream
)
1688 struct hdmi_spec
*spec
= codec
->spec
;
1689 int chans
= substream
->runtime
->channels
;
1692 err
= simple_playback_pcm_prepare(hinfo
, codec
, stream_tag
, format
,
1696 snd_hda_codec_write(codec
, spec
->cvts
[0].cvt_nid
, 0,
1697 AC_VERB_SET_CVT_CHAN_COUNT
, chans
- 1);
1699 for (i
= 0; i
< chans
; i
++) {
1700 snd_hda_codec_write(codec
, spec
->cvts
[0].cvt_nid
, 0,
1701 AC_VERB_SET_HDMI_CHAN_SLOT
,
1707 static const struct hda_pcm_stream atihdmi_pcm_digital_playback
= {
1711 .nid
= ATIHDMI_CVT_NID
,
1713 .open
= simple_playback_pcm_open
,
1714 .close
= simple_playback_pcm_close
,
1715 .prepare
= atihdmi_playback_pcm_prepare
1719 static const struct hda_verb atihdmi_basic_init
[] = {
1720 /* enable digital output on pin widget */
1721 { 0x03, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1725 static int atihdmi_init(struct hda_codec
*codec
)
1727 struct hdmi_spec
*spec
= codec
->spec
;
1729 snd_hda_sequence_write(codec
, atihdmi_basic_init
);
1730 /* SI codec requires to unmute the pin */
1731 if (get_wcaps(codec
, spec
->pins
[0].pin_nid
) & AC_WCAP_OUT_AMP
)
1732 snd_hda_codec_write(codec
, spec
->pins
[0].pin_nid
, 0,
1733 AC_VERB_SET_AMP_GAIN_MUTE
,
1738 static const struct hda_codec_ops atihdmi_patch_ops
= {
1739 .build_controls
= simple_playback_build_controls
,
1740 .build_pcms
= simple_playback_build_pcms
,
1741 .init
= atihdmi_init
,
1742 .free
= simple_playback_free
,
1746 static int patch_atihdmi(struct hda_codec
*codec
)
1748 struct hdmi_spec
*spec
;
1750 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1756 spec
->multiout
.num_dacs
= 0; /* no analog */
1757 spec
->multiout
.max_channels
= 2;
1758 spec
->multiout
.dig_out_nid
= ATIHDMI_CVT_NID
;
1760 spec
->cvts
[0].cvt_nid
= ATIHDMI_CVT_NID
;
1761 spec
->pins
[0].pin_nid
= ATIHDMI_PIN_NID
;
1762 spec
->pcm_playback
= &atihdmi_pcm_digital_playback
;
1764 codec
->patch_ops
= atihdmi_patch_ops
;
1773 static const struct hda_codec_preset snd_hda_preset_hdmi
[] = {
1774 { .id
= 0x1002793c, .name
= "RS600 HDMI", .patch
= patch_atihdmi
},
1775 { .id
= 0x10027919, .name
= "RS600 HDMI", .patch
= patch_atihdmi
},
1776 { .id
= 0x1002791a, .name
= "RS690/780 HDMI", .patch
= patch_atihdmi
},
1777 { .id
= 0x1002aa01, .name
= "R6xx HDMI", .patch
= patch_generic_hdmi
},
1778 { .id
= 0x10951390, .name
= "SiI1390 HDMI", .patch
= patch_generic_hdmi
},
1779 { .id
= 0x10951392, .name
= "SiI1392 HDMI", .patch
= patch_generic_hdmi
},
1780 { .id
= 0x17e80047, .name
= "Chrontel HDMI", .patch
= patch_generic_hdmi
},
1781 { .id
= 0x10de0002, .name
= "MCP77/78 HDMI", .patch
= patch_nvhdmi_8ch_7x
},
1782 { .id
= 0x10de0003, .name
= "MCP77/78 HDMI", .patch
= patch_nvhdmi_8ch_7x
},
1783 { .id
= 0x10de0005, .name
= "MCP77/78 HDMI", .patch
= patch_nvhdmi_8ch_7x
},
1784 { .id
= 0x10de0006, .name
= "MCP77/78 HDMI", .patch
= patch_nvhdmi_8ch_7x
},
1785 { .id
= 0x10de0007, .name
= "MCP79/7A HDMI", .patch
= patch_nvhdmi_8ch_7x
},
1786 { .id
= 0x10de000a, .name
= "GPU 0a HDMI/DP", .patch
= patch_generic_hdmi
},
1787 { .id
= 0x10de000b, .name
= "GPU 0b HDMI/DP", .patch
= patch_generic_hdmi
},
1788 { .id
= 0x10de000c, .name
= "MCP89 HDMI", .patch
= patch_generic_hdmi
},
1789 { .id
= 0x10de000d, .name
= "GPU 0d HDMI/DP", .patch
= patch_generic_hdmi
},
1790 { .id
= 0x10de0010, .name
= "GPU 10 HDMI/DP", .patch
= patch_generic_hdmi
},
1791 { .id
= 0x10de0011, .name
= "GPU 11 HDMI/DP", .patch
= patch_generic_hdmi
},
1792 { .id
= 0x10de0012, .name
= "GPU 12 HDMI/DP", .patch
= patch_generic_hdmi
},
1793 { .id
= 0x10de0013, .name
= "GPU 13 HDMI/DP", .patch
= patch_generic_hdmi
},
1794 { .id
= 0x10de0014, .name
= "GPU 14 HDMI/DP", .patch
= patch_generic_hdmi
},
1795 { .id
= 0x10de0015, .name
= "GPU 15 HDMI/DP", .patch
= patch_generic_hdmi
},
1796 { .id
= 0x10de0016, .name
= "GPU 16 HDMI/DP", .patch
= patch_generic_hdmi
},
1797 /* 17 is known to be absent */
1798 { .id
= 0x10de0018, .name
= "GPU 18 HDMI/DP", .patch
= patch_generic_hdmi
},
1799 { .id
= 0x10de0019, .name
= "GPU 19 HDMI/DP", .patch
= patch_generic_hdmi
},
1800 { .id
= 0x10de001a, .name
= "GPU 1a HDMI/DP", .patch
= patch_generic_hdmi
},
1801 { .id
= 0x10de001b, .name
= "GPU 1b HDMI/DP", .patch
= patch_generic_hdmi
},
1802 { .id
= 0x10de001c, .name
= "GPU 1c HDMI/DP", .patch
= patch_generic_hdmi
},
1803 { .id
= 0x10de0040, .name
= "GPU 40 HDMI/DP", .patch
= patch_generic_hdmi
},
1804 { .id
= 0x10de0041, .name
= "GPU 41 HDMI/DP", .patch
= patch_generic_hdmi
},
1805 { .id
= 0x10de0042, .name
= "GPU 42 HDMI/DP", .patch
= patch_generic_hdmi
},
1806 { .id
= 0x10de0043, .name
= "GPU 43 HDMI/DP", .patch
= patch_generic_hdmi
},
1807 { .id
= 0x10de0044, .name
= "GPU 44 HDMI/DP", .patch
= patch_generic_hdmi
},
1808 { .id
= 0x10de0067, .name
= "MCP67 HDMI", .patch
= patch_nvhdmi_2ch
},
1809 { .id
= 0x10de8001, .name
= "MCP73 HDMI", .patch
= patch_nvhdmi_2ch
},
1810 { .id
= 0x80860054, .name
= "IbexPeak HDMI", .patch
= patch_generic_hdmi
},
1811 { .id
= 0x80862801, .name
= "Bearlake HDMI", .patch
= patch_generic_hdmi
},
1812 { .id
= 0x80862802, .name
= "Cantiga HDMI", .patch
= patch_generic_hdmi
},
1813 { .id
= 0x80862803, .name
= "Eaglelake HDMI", .patch
= patch_generic_hdmi
},
1814 { .id
= 0x80862804, .name
= "IbexPeak HDMI", .patch
= patch_generic_hdmi
},
1815 { .id
= 0x80862805, .name
= "CougarPoint HDMI", .patch
= patch_generic_hdmi
},
1816 { .id
= 0x80862806, .name
= "PantherPoint HDMI", .patch
= patch_generic_hdmi
},
1817 { .id
= 0x808629fb, .name
= "Crestline HDMI", .patch
= patch_generic_hdmi
},
1821 MODULE_ALIAS("snd-hda-codec-id:1002793c");
1822 MODULE_ALIAS("snd-hda-codec-id:10027919");
1823 MODULE_ALIAS("snd-hda-codec-id:1002791a");
1824 MODULE_ALIAS("snd-hda-codec-id:1002aa01");
1825 MODULE_ALIAS("snd-hda-codec-id:10951390");
1826 MODULE_ALIAS("snd-hda-codec-id:10951392");
1827 MODULE_ALIAS("snd-hda-codec-id:10de0002");
1828 MODULE_ALIAS("snd-hda-codec-id:10de0003");
1829 MODULE_ALIAS("snd-hda-codec-id:10de0005");
1830 MODULE_ALIAS("snd-hda-codec-id:10de0006");
1831 MODULE_ALIAS("snd-hda-codec-id:10de0007");
1832 MODULE_ALIAS("snd-hda-codec-id:10de000a");
1833 MODULE_ALIAS("snd-hda-codec-id:10de000b");
1834 MODULE_ALIAS("snd-hda-codec-id:10de000c");
1835 MODULE_ALIAS("snd-hda-codec-id:10de000d");
1836 MODULE_ALIAS("snd-hda-codec-id:10de0010");
1837 MODULE_ALIAS("snd-hda-codec-id:10de0011");
1838 MODULE_ALIAS("snd-hda-codec-id:10de0012");
1839 MODULE_ALIAS("snd-hda-codec-id:10de0013");
1840 MODULE_ALIAS("snd-hda-codec-id:10de0014");
1841 MODULE_ALIAS("snd-hda-codec-id:10de0015");
1842 MODULE_ALIAS("snd-hda-codec-id:10de0016");
1843 MODULE_ALIAS("snd-hda-codec-id:10de0018");
1844 MODULE_ALIAS("snd-hda-codec-id:10de0019");
1845 MODULE_ALIAS("snd-hda-codec-id:10de001a");
1846 MODULE_ALIAS("snd-hda-codec-id:10de001b");
1847 MODULE_ALIAS("snd-hda-codec-id:10de001c");
1848 MODULE_ALIAS("snd-hda-codec-id:10de0040");
1849 MODULE_ALIAS("snd-hda-codec-id:10de0041");
1850 MODULE_ALIAS("snd-hda-codec-id:10de0042");
1851 MODULE_ALIAS("snd-hda-codec-id:10de0043");
1852 MODULE_ALIAS("snd-hda-codec-id:10de0044");
1853 MODULE_ALIAS("snd-hda-codec-id:10de0067");
1854 MODULE_ALIAS("snd-hda-codec-id:10de8001");
1855 MODULE_ALIAS("snd-hda-codec-id:17e80047");
1856 MODULE_ALIAS("snd-hda-codec-id:80860054");
1857 MODULE_ALIAS("snd-hda-codec-id:80862801");
1858 MODULE_ALIAS("snd-hda-codec-id:80862802");
1859 MODULE_ALIAS("snd-hda-codec-id:80862803");
1860 MODULE_ALIAS("snd-hda-codec-id:80862804");
1861 MODULE_ALIAS("snd-hda-codec-id:80862805");
1862 MODULE_ALIAS("snd-hda-codec-id:80862806");
1863 MODULE_ALIAS("snd-hda-codec-id:808629fb");
1865 MODULE_LICENSE("GPL");
1866 MODULE_DESCRIPTION("HDMI HD-audio codec");
1867 MODULE_ALIAS("snd-hda-codec-intelhdmi");
1868 MODULE_ALIAS("snd-hda-codec-nvhdmi");
1869 MODULE_ALIAS("snd-hda-codec-atihdmi");
1871 static struct hda_codec_preset_list intel_list
= {
1872 .preset
= snd_hda_preset_hdmi
,
1873 .owner
= THIS_MODULE
,
1876 static int __init
patch_hdmi_init(void)
1878 return snd_hda_add_codec_preset(&intel_list
);
1881 static void __exit
patch_hdmi_exit(void)
1883 snd_hda_delete_codec_preset(&intel_list
);
1886 module_init(patch_hdmi_init
)
1887 module_exit(patch_hdmi_exit
)