blob: 6b5c3e2cf93b9acc54e9515846209f06862f6e1d [file] [log] [blame]
Wu, Fengguang91504872008-11-05 11:16:56 +08001/*
2 *
3 * patch_intelhdmi.c - Patch for Intel HDMI codecs
4 *
5 * Copyright(c) 2008 Intel Corporation. All rights reserved.
6 *
7 * Authors:
8 * Jiang Zhe <zhe.jiang@intel.com>
9 * Wu Fengguang <wfg@linux.intel.com>
10 *
11 * Maintained by:
12 * Wu Fengguang <wfg@linux.intel.com>
13 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the Free
16 * Software Foundation; either version 2 of the License, or (at your option)
17 * any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
21 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29#include <linux/init.h>
30#include <linux/delay.h>
31#include <linux/slab.h>
32#include <sound/core.h>
Wu, Fengguang91504872008-11-05 11:16:56 +080033#include "hda_codec.h"
34#include "hda_local.h"
35#include "hda_patch.h"
36
37#define CVT_NID 0x02 /* audio converter */
38#define PIN_NID 0x03 /* HDMI output pin */
39
40#define INTEL_HDMI_EVENT_TAG 0x08
41
Wu, Fengguang91504872008-11-05 11:16:56 +080042struct intel_hdmi_spec {
43 struct hda_multi_out multiout;
44 struct hda_pcm pcm_rec;
45 struct sink_eld sink;
46};
47
48static struct hda_verb pinout_enable_verb[] = {
49 {PIN_NID, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
50 {} /* terminator */
51};
52
53static struct hda_verb pinout_disable_verb[] = {
54 {PIN_NID, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00},
55 {}
56};
57
58static struct hda_verb unsolicited_response_verb[] = {
59 {PIN_NID, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN |
60 INTEL_HDMI_EVENT_TAG},
61 {}
62};
63
64static struct hda_verb def_chan_map[] = {
65 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x00},
66 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x11},
67 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x22},
68 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x33},
69 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x44},
70 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x55},
71 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x66},
72 {CVT_NID, AC_VERB_SET_HDMI_CHAN_SLOT, 0x77},
73 {}
74};
75
76
77struct hdmi_audio_infoframe {
78 u8 type; /* 0x84 */
79 u8 ver; /* 0x01 */
80 u8 len; /* 0x0a */
81
82 u8 checksum; /* PB0 */
83 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
84 u8 SS01_SF24;
85 u8 CXT04;
86 u8 CA;
87 u8 LFEPBL01_LSV36_DM_INH7;
88 u8 reserved[5]; /* PB6 - PB10 */
89};
90
91/*
Wu Fengguang698544d2008-11-19 08:56:17 +080092 * CEA speaker placement:
93 *
94 * FLH FCH FRH
95 * FLW FL FLC FC FRC FR FRW
96 *
97 * LFE
98 * TC
99 *
100 * RL RLC RC RRC RR
101 *
102 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
103 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
104 */
105enum cea_speaker_placement {
106 FL = (1 << 0), /* Front Left */
107 FC = (1 << 1), /* Front Center */
108 FR = (1 << 2), /* Front Right */
109 FLC = (1 << 3), /* Front Left Center */
110 FRC = (1 << 4), /* Front Right Center */
111 RL = (1 << 5), /* Rear Left */
112 RC = (1 << 6), /* Rear Center */
113 RR = (1 << 7), /* Rear Right */
114 RLC = (1 << 8), /* Rear Left Center */
115 RRC = (1 << 9), /* Rear Right Center */
116 LFE = (1 << 10), /* Low Frequency Effect */
117 FLW = (1 << 11), /* Front Left Wide */
118 FRW = (1 << 12), /* Front Right Wide */
119 FLH = (1 << 13), /* Front Left High */
120 FCH = (1 << 14), /* Front Center High */
121 FRH = (1 << 15), /* Front Right High */
122 TC = (1 << 16), /* Top Center */
123};
124
125/*
126 * ELD SA bits in the CEA Speaker Allocation data block
127 */
128static int eld_speaker_allocation_bits[] = {
129 [0] = FL | FR,
130 [1] = LFE,
131 [2] = FC,
132 [3] = RL | RR,
133 [4] = RC,
134 [5] = FLC | FRC,
135 [6] = RLC | RRC,
136 /* the following are not defined in ELD yet */
137 [7] = FLW | FRW,
138 [8] = FLH | FRH,
139 [9] = TC,
140 [10] = FCH,
141};
142
143struct cea_channel_speaker_allocation {
144 int ca_index;
145 int speakers[8];
146
147 /* derived values, just for convenience */
148 int channels;
149 int spk_mask;
150};
151
152/*
153 * This is an ordered list!
154 *
155 * The preceding ones have better chances to be selected by
156 * hdmi_setup_channel_allocation().
157 */
158static struct cea_channel_speaker_allocation channel_allocations[] = {
159/* channel: 8 7 6 5 4 3 2 1 */
160{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
161 /* 2.1 */
162{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
163 /* dolby surround */
164{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
165{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
166{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
167{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
168{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
169{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
170{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
171{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
172{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
173 /* 5.1 */
174{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
175{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
176{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
177{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
178 /* 6.1 */
179{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
180{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
181{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
182{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
183 /* 7.1 */
184{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
185{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
186{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
187{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
188{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
189{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
190{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
191{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
192{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
193{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
194{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
195{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
196{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
197{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
198{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
199{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
200{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
201{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
202{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
203{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
204{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
205{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
206{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
207{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
208{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
209{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
210{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
211{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
212{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
213{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
214{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
215};
216
217/*
Wu, Fengguang91504872008-11-05 11:16:56 +0800218 * HDMI routines
219 */
220
Takashi Iwaibeb0b9cf2008-11-05 07:58:25 +0100221#ifdef BE_PARANOID
Wu, Fengguang91504872008-11-05 11:16:56 +0800222static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t nid,
223 int *packet_index, int *byte_index)
224{
225 int val;
226
227 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_HDMI_DIP_INDEX, 0);
228
229 *packet_index = val >> 5;
230 *byte_index = val & 0x1f;
231}
Takashi Iwaibeb0b9cf2008-11-05 07:58:25 +0100232#endif
Wu, Fengguang91504872008-11-05 11:16:56 +0800233
234static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t nid,
235 int packet_index, int byte_index)
236{
237 int val;
238
239 val = (packet_index << 5) | (byte_index & 0x1f);
240
241 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
242}
243
244static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t nid,
245 unsigned char val)
246{
247 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
248}
249
250static void hdmi_enable_output(struct hda_codec *codec)
251{
Wu, Fengguang91504872008-11-05 11:16:56 +0800252 /* Enable Audio InfoFrame Transmission */
253 hdmi_set_dip_index(codec, PIN_NID, 0x0, 0x0);
254 snd_hda_codec_write(codec, PIN_NID, 0, AC_VERB_SET_HDMI_DIP_XMIT,
255 AC_DIPXMIT_BEST);
Wu Fengguang796359d2008-11-17 16:57:33 +0800256 /* Unmute */
257 if (get_wcaps(codec, PIN_NID) & AC_WCAP_OUT_AMP)
258 snd_hda_codec_write(codec, PIN_NID, 0,
259 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
260 /* Enable pin out */
261 snd_hda_sequence_write(codec, pinout_enable_verb);
Wu, Fengguang91504872008-11-05 11:16:56 +0800262}
263
264static void hdmi_disable_output(struct hda_codec *codec)
265{
266 snd_hda_sequence_write(codec, pinout_disable_verb);
267 if (get_wcaps(codec, PIN_NID) & AC_WCAP_OUT_AMP)
268 snd_hda_codec_write(codec, PIN_NID, 0,
269 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
270
271 /*
272 * FIXME: noises may arise when playing music after reloading the
273 * kernel module, until the next X restart or monitor repower.
274 */
275}
276
277static int hdmi_get_channel_count(struct hda_codec *codec)
278{
279 return 1 + snd_hda_codec_read(codec, CVT_NID, 0,
280 AC_VERB_GET_CVT_CHAN_COUNT, 0);
281}
282
283static void hdmi_set_channel_count(struct hda_codec *codec, int chs)
284{
285 snd_hda_codec_write(codec, CVT_NID, 0,
286 AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
287
288 if (chs != hdmi_get_channel_count(codec))
289 snd_printd(KERN_INFO "Channel count expect=%d, real=%d\n",
290 chs, hdmi_get_channel_count(codec));
291}
292
293static void hdmi_debug_slot_mapping(struct hda_codec *codec)
294{
295#ifdef CONFIG_SND_DEBUG_VERBOSE
296 int i;
297 int slot;
298
299 for (i = 0; i < 8; i++) {
300 slot = snd_hda_codec_read(codec, CVT_NID, 0,
301 AC_VERB_GET_HDMI_CHAN_SLOT, i);
302 printk(KERN_DEBUG "ASP channel %d => slot %d\n",
303 slot >> 4, slot & 0x7);
304 }
305#endif
306}
307
308static void hdmi_setup_channel_mapping(struct hda_codec *codec)
309{
310 snd_hda_sequence_write(codec, def_chan_map);
311 hdmi_debug_slot_mapping(codec);
312}
313
314
Wu, Fengguang91504872008-11-05 11:16:56 +0800315static void hdmi_parse_eld(struct hda_codec *codec)
316{
Wu Fengguang7f4a9f42008-11-18 11:47:52 +0800317 struct intel_hdmi_spec *spec = codec->spec;
318 struct sink_eld *eld = &spec->sink;
Wu, Fengguang91504872008-11-05 11:16:56 +0800319
Wu Fengguang7f4a9f42008-11-18 11:47:52 +0800320 if (!snd_hdmi_get_eld(eld, codec, PIN_NID))
321 snd_hdmi_show_eld(eld);
Wu, Fengguang91504872008-11-05 11:16:56 +0800322}
323
324
325/*
326 * Audio Infoframe routines
327 */
328
329static void hdmi_debug_dip_size(struct hda_codec *codec)
330{
331#ifdef CONFIG_SND_DEBUG_VERBOSE
332 int i;
333 int size;
334
Wu Fengguang7f4a9f42008-11-18 11:47:52 +0800335 size = snd_hdmi_get_eld_size(codec, PIN_NID);
Wu, Fengguang91504872008-11-05 11:16:56 +0800336 printk(KERN_DEBUG "ELD buf size is %d\n", size);
337
338 for (i = 0; i < 8; i++) {
339 size = snd_hda_codec_read(codec, PIN_NID, 0,
340 AC_VERB_GET_HDMI_DIP_SIZE, i);
341 printk(KERN_DEBUG "DIP GP[%d] buf size is %d\n", i, size);
342 }
343#endif
344}
345
346static void hdmi_clear_dip_buffers(struct hda_codec *codec)
347{
348#ifdef BE_PARANOID
349 int i, j;
350 int size;
351 int pi, bi;
352 for (i = 0; i < 8; i++) {
353 size = snd_hda_codec_read(codec, PIN_NID, 0,
354 AC_VERB_GET_HDMI_DIP_SIZE, i);
355 if (size == 0)
356 continue;
357
358 hdmi_set_dip_index(codec, PIN_NID, i, 0x0);
359 for (j = 1; j < 1000; j++) {
360 hdmi_write_dip_byte(codec, PIN_NID, 0x0);
361 hdmi_get_dip_index(codec, PIN_NID, &pi, &bi);
362 if (pi != i)
363 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
364 bi, pi, i);
365 if (bi == 0) /* byte index wrapped around */
366 break;
367 }
368 snd_printd(KERN_INFO
369 "DIP GP[%d] buf reported size=%d, written=%d\n",
370 i, size, j);
371 }
372#endif
373}
374
Wu Fengguang5457a982008-11-19 08:56:15 +0800375static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
376 struct hdmi_audio_infoframe *ai)
Wu, Fengguang91504872008-11-05 11:16:56 +0800377{
Wu Fengguang5457a982008-11-19 08:56:15 +0800378 u8 *params = (u8 *)ai;
Wu, Fengguang91504872008-11-05 11:16:56 +0800379 int i;
380
381 hdmi_debug_dip_size(codec);
382 hdmi_clear_dip_buffers(codec); /* be paranoid */
383
384 hdmi_set_dip_index(codec, PIN_NID, 0x0, 0x0);
Wu Fengguang5457a982008-11-19 08:56:15 +0800385 for (i = 0; i < sizeof(ai); i++)
Wu, Fengguang91504872008-11-05 11:16:56 +0800386 hdmi_write_dip_byte(codec, PIN_NID, params[i]);
387}
388
Wu Fengguang698544d2008-11-19 08:56:17 +0800389/*
390 * Compute derived values in channel_allocations[].
391 */
392static void init_channel_allocations(void)
393{
394 int i, j;
395 struct cea_channel_speaker_allocation *p;
396
397 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
398 p = channel_allocations + i;
399 p->channels = 0;
400 p->spk_mask = 0;
401 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
402 if (p->speakers[j]) {
403 p->channels++;
404 p->spk_mask |= p->speakers[j];
405 }
406 }
407}
408
409/*
410 * The transformation takes two steps:
411 *
412 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
413 * spk_mask => (channel_allocations[]) => ai->CA
414 *
415 * TODO: it could select the wrong CA from multiple candidates.
416*/
417static int hdmi_setup_channel_allocation(struct hda_codec *codec,
418 struct hdmi_audio_infoframe *ai)
419{
420 struct intel_hdmi_spec *spec = codec->spec;
421 struct sink_eld *eld = &spec->sink;
422 int i;
423 int spk_mask = 0;
424 int channels = 1 + (ai->CC02_CT47 & 0x7);
425 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
426
427 /*
428 * CA defaults to 0 for basic stereo audio
429 */
430 if (!eld->eld_ver)
431 return 0;
432 if (!eld->spk_alloc)
433 return 0;
434 if (channels <= 2)
435 return 0;
436
437 /*
438 * expand ELD's speaker allocation mask
439 *
440 * ELD tells the speaker mask in a compact(paired) form,
441 * expand ELD's notions to match the ones used by audio infoframe.
442 */
443 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
444 if (eld->spk_alloc & (1 << i))
445 spk_mask |= eld_speaker_allocation_bits[i];
446 }
447
448 /* search for the first working match in the CA table */
449 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
450 if (channels == channel_allocations[i].channels &&
451 (spk_mask & channel_allocations[i].spk_mask) ==
452 channel_allocations[i].spk_mask) {
453 ai->CA = channel_allocations[i].ca_index;
454 return 0;
455 }
456 }
457
458 snd_print_channel_allocation(eld->spk_alloc, buf, sizeof(buf));
459 snd_printd(KERN_INFO "failed to setup channel allocation: %d of %s\n",
460 channels, buf);
461 return -1;
462}
463
Wu Fengguang5457a982008-11-19 08:56:15 +0800464static void hdmi_setup_audio_infoframe(struct hda_codec *codec,
465 struct snd_pcm_substream *substream)
466{
467 struct hdmi_audio_infoframe ai = {
468 .type = 0x84,
469 .ver = 0x01,
470 .len = 0x0a,
471 .CC02_CT47 = substream->runtime->channels - 1,
472 };
473
Wu Fengguang698544d2008-11-19 08:56:17 +0800474 hdmi_setup_channel_allocation(codec, &ai);
475
Wu Fengguang5457a982008-11-19 08:56:15 +0800476 hdmi_fill_audio_infoframe(codec, &ai);
477}
478
Wu, Fengguang91504872008-11-05 11:16:56 +0800479
480/*
481 * Unsolicited events
482 */
483
484static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
485{
486 int pind = !!(res & AC_UNSOL_RES_PD);
487 int eldv = !!(res & AC_UNSOL_RES_ELDV);
488
489 printk(KERN_INFO "HDMI intrinsic event: PD=%d ELDV=%d\n", pind, eldv);
490
491 if (pind && eldv) {
492 hdmi_parse_eld(codec);
493 /* TODO: do real things about ELD */
494 }
495}
496
497static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
498{
499 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
500 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
501 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
502
503 printk(KERN_INFO "HDMI non-intrinsic event: "
504 "SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
505 subtag,
506 cp_state,
507 cp_ready);
508
509 /* who cares? */
510 if (cp_state)
511 ;
512 if (cp_ready)
513 ;
514}
515
516
517static void intel_hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
518{
519 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
520 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
521
522 if (tag != INTEL_HDMI_EVENT_TAG) {
523 snd_printd(KERN_INFO
524 "Unexpected HDMI unsolicited event tag 0x%x\n",
525 tag);
526 return;
527 }
528
529 if (subtag == 0)
530 hdmi_intrinsic_event(codec, res);
531 else
532 hdmi_non_intrinsic_event(codec, res);
533}
534
535/*
536 * Callbacks
537 */
538
539static int intel_hdmi_playback_pcm_open(struct hda_pcm_stream *hinfo,
540 struct hda_codec *codec,
541 struct snd_pcm_substream *substream)
542{
543 struct intel_hdmi_spec *spec = codec->spec;
544
545 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
546}
547
548static int intel_hdmi_playback_pcm_close(struct hda_pcm_stream *hinfo,
549 struct hda_codec *codec,
550 struct snd_pcm_substream *substream)
551{
552 struct intel_hdmi_spec *spec = codec->spec;
553
554 hdmi_disable_output(codec);
555
556 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
557}
558
559static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
560 struct hda_codec *codec,
561 unsigned int stream_tag,
562 unsigned int format,
563 struct snd_pcm_substream *substream)
564{
565 struct intel_hdmi_spec *spec = codec->spec;
566
567 snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
568 format, substream);
569
570 hdmi_set_channel_count(codec, substream->runtime->channels);
571
572 /* wfg: channel mapping not supported by DEVCTG */
573 hdmi_setup_channel_mapping(codec);
574
575 hdmi_setup_audio_infoframe(codec, substream);
576
577 hdmi_enable_output(codec);
578
579 return 0;
580}
581
582static struct hda_pcm_stream intel_hdmi_pcm_playback = {
583 .substreams = 1,
584 .channels_min = 2,
585 .channels_max = 8,
586 .nid = CVT_NID, /* NID to query formats and rates and setup streams */
587 .ops = {
588 .open = intel_hdmi_playback_pcm_open,
589 .close = intel_hdmi_playback_pcm_close,
590 .prepare = intel_hdmi_playback_pcm_prepare
591 },
592};
593
594static int intel_hdmi_build_pcms(struct hda_codec *codec)
595{
596 struct intel_hdmi_spec *spec = codec->spec;
597 struct hda_pcm *info = &spec->pcm_rec;
598
599 codec->num_pcms = 1;
600 codec->pcm_info = info;
601
602 info->name = "INTEL HDMI";
603 info->pcm_type = HDA_PCM_TYPE_HDMI;
604 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = intel_hdmi_pcm_playback;
605
606 return 0;
607}
608
609static int intel_hdmi_build_controls(struct hda_codec *codec)
610{
611 struct intel_hdmi_spec *spec = codec->spec;
612 int err;
613
614 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
615 if (err < 0)
616 return err;
617
618 return 0;
619}
620
621static int intel_hdmi_init(struct hda_codec *codec)
622{
623 /* disable audio output as early as possible */
624 hdmi_disable_output(codec);
625
626 snd_hda_sequence_write(codec, unsolicited_response_verb);
627
628 return 0;
629}
630
631static void intel_hdmi_free(struct hda_codec *codec)
632{
633 kfree(codec->spec);
634}
635
636static struct hda_codec_ops intel_hdmi_patch_ops = {
637 .init = intel_hdmi_init,
638 .free = intel_hdmi_free,
639 .build_pcms = intel_hdmi_build_pcms,
640 .build_controls = intel_hdmi_build_controls,
641 .unsol_event = intel_hdmi_unsol_event,
642};
643
644static int patch_intel_hdmi(struct hda_codec *codec)
645{
646 struct intel_hdmi_spec *spec;
647
648 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
649 if (spec == NULL)
650 return -ENOMEM;
651
652 spec->multiout.num_dacs = 0; /* no analog */
653 spec->multiout.max_channels = 8;
654 spec->multiout.dig_out_nid = CVT_NID;
655
656 codec->spec = spec;
657 codec->patch_ops = intel_hdmi_patch_ops;
658
Wu Fengguang5f1e71b2008-11-18 11:47:53 +0800659 snd_hda_eld_proc_new(codec, &spec->sink);
660
Wu Fengguang698544d2008-11-19 08:56:17 +0800661 init_channel_allocations();
662
Wu, Fengguang91504872008-11-05 11:16:56 +0800663 return 0;
664}
665
666struct hda_codec_preset snd_hda_preset_intelhdmi[] = {
667 { .id = 0x808629fb, .name = "INTEL G45 DEVCL", .patch = patch_intel_hdmi },
668 { .id = 0x80862801, .name = "INTEL G45 DEVBLC", .patch = patch_intel_hdmi },
669 { .id = 0x80862802, .name = "INTEL G45 DEVCTG", .patch = patch_intel_hdmi },
670 { .id = 0x80862803, .name = "INTEL G45 DEVELK", .patch = patch_intel_hdmi },
Wu Fengguang3a95cb92008-11-13 10:19:38 +0800671 { .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_intel_hdmi },
Wu, Fengguang91504872008-11-05 11:16:56 +0800672 {} /* terminator */
673};