blob: ad1aa5d87ddab8881abaf4b2c8cdc0bf510b6357 [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"
Wu, Fengguang91504872008-11-05 11:16:56 +080035
Wu Fengguang54a25f82009-10-30 11:44:26 +010036/*
37 * The HDMI/DisplayPort configuration can be highly dynamic. A graphics device
38 * could support two independent pipes, each of them can be connected to one or
39 * more ports (DVI, HDMI or DisplayPort).
40 *
41 * The HDA correspondence of pipes/ports are converter/pin nodes.
42 */
43#define INTEL_HDMI_CVTS 2
44#define INTEL_HDMI_PINS 3
Wu, Fengguang91504872008-11-05 11:16:56 +080045
Wu Fengguang54a25f82009-10-30 11:44:26 +010046static char *intel_hdmi_pcm_names[INTEL_HDMI_CVTS] = {
47 "INTEL HDMI 0",
48 "INTEL HDMI 1",
49};
Wu, Fengguang91504872008-11-05 11:16:56 +080050
Wu, Fengguang91504872008-11-05 11:16:56 +080051struct intel_hdmi_spec {
Wu Fengguang54a25f82009-10-30 11:44:26 +010052 int num_cvts;
53 int num_pins;
54 hda_nid_t cvt[INTEL_HDMI_CVTS+1]; /* audio sources */
55 hda_nid_t pin[INTEL_HDMI_PINS+1]; /* audio sinks */
56
57 /*
58 * source connection for each pin
59 */
60 hda_nid_t pin_cvt[INTEL_HDMI_PINS+1];
61
62 /*
63 * HDMI sink attached to each pin
64 */
65 bool sink_present[INTEL_HDMI_PINS];
66 bool sink_eldv[INTEL_HDMI_PINS];
67 struct hdmi_eld sink_eld[INTEL_HDMI_PINS];
68
69 /*
70 * export one pcm per pipe
71 */
72 struct hda_pcm pcm_rec[INTEL_HDMI_CVTS];
Wu, Fengguang91504872008-11-05 11:16:56 +080073};
74
Wu, Fengguang91504872008-11-05 11:16:56 +080075struct hdmi_audio_infoframe {
76 u8 type; /* 0x84 */
77 u8 ver; /* 0x01 */
78 u8 len; /* 0x0a */
79
80 u8 checksum; /* PB0 */
81 u8 CC02_CT47; /* CC in bits 0:2, CT in 4:7 */
82 u8 SS01_SF24;
83 u8 CXT04;
84 u8 CA;
85 u8 LFEPBL01_LSV36_DM_INH7;
Wu Fengguang4e19c582008-11-19 15:13:59 +080086 u8 reserved[5]; /* PB6 - PB10 */
Wu, Fengguang91504872008-11-05 11:16:56 +080087};
88
89/*
Wu Fengguang698544d2008-11-19 08:56:17 +080090 * CEA speaker placement:
91 *
92 * FLH FCH FRH
93 * FLW FL FLC FC FRC FR FRW
94 *
95 * LFE
96 * TC
97 *
98 * RL RLC RC RRC RR
99 *
100 * The Left/Right Surround channel _notions_ LS/RS in SMPTE 320M corresponds to
101 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
102 */
103enum cea_speaker_placement {
104 FL = (1 << 0), /* Front Left */
105 FC = (1 << 1), /* Front Center */
106 FR = (1 << 2), /* Front Right */
107 FLC = (1 << 3), /* Front Left Center */
108 FRC = (1 << 4), /* Front Right Center */
109 RL = (1 << 5), /* Rear Left */
110 RC = (1 << 6), /* Rear Center */
111 RR = (1 << 7), /* Rear Right */
112 RLC = (1 << 8), /* Rear Left Center */
113 RRC = (1 << 9), /* Rear Right Center */
114 LFE = (1 << 10), /* Low Frequency Effect */
115 FLW = (1 << 11), /* Front Left Wide */
116 FRW = (1 << 12), /* Front Right Wide */
117 FLH = (1 << 13), /* Front Left High */
118 FCH = (1 << 14), /* Front Center High */
119 FRH = (1 << 15), /* Front Right High */
120 TC = (1 << 16), /* Top Center */
121};
122
123/*
124 * ELD SA bits in the CEA Speaker Allocation data block
125 */
126static int eld_speaker_allocation_bits[] = {
127 [0] = FL | FR,
128 [1] = LFE,
129 [2] = FC,
130 [3] = RL | RR,
131 [4] = RC,
132 [5] = FLC | FRC,
133 [6] = RLC | RRC,
134 /* the following are not defined in ELD yet */
135 [7] = FLW | FRW,
136 [8] = FLH | FRH,
137 [9] = TC,
138 [10] = FCH,
139};
140
141struct cea_channel_speaker_allocation {
142 int ca_index;
143 int speakers[8];
144
145 /* derived values, just for convenience */
146 int channels;
147 int spk_mask;
148};
149
150/*
151 * This is an ordered list!
152 *
153 * The preceding ones have better chances to be selected by
154 * hdmi_setup_channel_allocation().
155 */
156static struct cea_channel_speaker_allocation channel_allocations[] = {
157/* channel: 8 7 6 5 4 3 2 1 */
158{ .ca_index = 0x00, .speakers = { 0, 0, 0, 0, 0, 0, FR, FL } },
159 /* 2.1 */
160{ .ca_index = 0x01, .speakers = { 0, 0, 0, 0, 0, LFE, FR, FL } },
Wu Fengguang4e19c582008-11-19 15:13:59 +0800161 /* Dolby Surround */
Wu Fengguang698544d2008-11-19 08:56:17 +0800162{ .ca_index = 0x02, .speakers = { 0, 0, 0, 0, FC, 0, FR, FL } },
163{ .ca_index = 0x03, .speakers = { 0, 0, 0, 0, FC, LFE, FR, FL } },
164{ .ca_index = 0x04, .speakers = { 0, 0, 0, RC, 0, 0, FR, FL } },
165{ .ca_index = 0x05, .speakers = { 0, 0, 0, RC, 0, LFE, FR, FL } },
166{ .ca_index = 0x06, .speakers = { 0, 0, 0, RC, FC, 0, FR, FL } },
167{ .ca_index = 0x07, .speakers = { 0, 0, 0, RC, FC, LFE, FR, FL } },
168{ .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
169{ .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
170{ .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
171 /* 5.1 */
172{ .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
173{ .ca_index = 0x0c, .speakers = { 0, RC, RR, RL, 0, 0, FR, FL } },
174{ .ca_index = 0x0d, .speakers = { 0, RC, RR, RL, 0, LFE, FR, FL } },
175{ .ca_index = 0x0e, .speakers = { 0, RC, RR, RL, FC, 0, FR, FL } },
176 /* 6.1 */
177{ .ca_index = 0x0f, .speakers = { 0, RC, RR, RL, FC, LFE, FR, FL } },
178{ .ca_index = 0x10, .speakers = { RRC, RLC, RR, RL, 0, 0, FR, FL } },
179{ .ca_index = 0x11, .speakers = { RRC, RLC, RR, RL, 0, LFE, FR, FL } },
180{ .ca_index = 0x12, .speakers = { RRC, RLC, RR, RL, FC, 0, FR, FL } },
181 /* 7.1 */
182{ .ca_index = 0x13, .speakers = { RRC, RLC, RR, RL, FC, LFE, FR, FL } },
183{ .ca_index = 0x14, .speakers = { FRC, FLC, 0, 0, 0, 0, FR, FL } },
184{ .ca_index = 0x15, .speakers = { FRC, FLC, 0, 0, 0, LFE, FR, FL } },
185{ .ca_index = 0x16, .speakers = { FRC, FLC, 0, 0, FC, 0, FR, FL } },
186{ .ca_index = 0x17, .speakers = { FRC, FLC, 0, 0, FC, LFE, FR, FL } },
187{ .ca_index = 0x18, .speakers = { FRC, FLC, 0, RC, 0, 0, FR, FL } },
188{ .ca_index = 0x19, .speakers = { FRC, FLC, 0, RC, 0, LFE, FR, FL } },
189{ .ca_index = 0x1a, .speakers = { FRC, FLC, 0, RC, FC, 0, FR, FL } },
190{ .ca_index = 0x1b, .speakers = { FRC, FLC, 0, RC, FC, LFE, FR, FL } },
191{ .ca_index = 0x1c, .speakers = { FRC, FLC, RR, RL, 0, 0, FR, FL } },
192{ .ca_index = 0x1d, .speakers = { FRC, FLC, RR, RL, 0, LFE, FR, FL } },
193{ .ca_index = 0x1e, .speakers = { FRC, FLC, RR, RL, FC, 0, FR, FL } },
194{ .ca_index = 0x1f, .speakers = { FRC, FLC, RR, RL, FC, LFE, FR, FL } },
195{ .ca_index = 0x20, .speakers = { 0, FCH, RR, RL, FC, 0, FR, FL } },
196{ .ca_index = 0x21, .speakers = { 0, FCH, RR, RL, FC, LFE, FR, FL } },
197{ .ca_index = 0x22, .speakers = { TC, 0, RR, RL, FC, 0, FR, FL } },
198{ .ca_index = 0x23, .speakers = { TC, 0, RR, RL, FC, LFE, FR, FL } },
199{ .ca_index = 0x24, .speakers = { FRH, FLH, RR, RL, 0, 0, FR, FL } },
200{ .ca_index = 0x25, .speakers = { FRH, FLH, RR, RL, 0, LFE, FR, FL } },
201{ .ca_index = 0x26, .speakers = { FRW, FLW, RR, RL, 0, 0, FR, FL } },
202{ .ca_index = 0x27, .speakers = { FRW, FLW, RR, RL, 0, LFE, FR, FL } },
203{ .ca_index = 0x28, .speakers = { TC, RC, RR, RL, FC, 0, FR, FL } },
204{ .ca_index = 0x29, .speakers = { TC, RC, RR, RL, FC, LFE, FR, FL } },
205{ .ca_index = 0x2a, .speakers = { FCH, RC, RR, RL, FC, 0, FR, FL } },
206{ .ca_index = 0x2b, .speakers = { FCH, RC, RR, RL, FC, LFE, FR, FL } },
207{ .ca_index = 0x2c, .speakers = { TC, FCH, RR, RL, FC, 0, FR, FL } },
208{ .ca_index = 0x2d, .speakers = { TC, FCH, RR, RL, FC, LFE, FR, FL } },
209{ .ca_index = 0x2e, .speakers = { FRH, FLH, RR, RL, FC, 0, FR, FL } },
210{ .ca_index = 0x2f, .speakers = { FRH, FLH, RR, RL, FC, LFE, FR, FL } },
211{ .ca_index = 0x30, .speakers = { FRW, FLW, RR, RL, FC, 0, FR, FL } },
212{ .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } },
213};
214
Wu Fengguang54a25f82009-10-30 11:44:26 +0100215
Wu Fengguangf4243672009-10-30 11:45:35 +0100216/*
217 * HDA/HDMI auto parsing
218 */
219
Wu Fengguang54a25f82009-10-30 11:44:26 +0100220static int hda_node_index(hda_nid_t *nids, hda_nid_t nid)
221{
222 int i;
223
224 for (i = 0; nids[i]; i++)
225 if (nids[i] == nid)
226 return i;
227
228 snd_printk(KERN_WARNING "HDMI: nid %d not registered\n", nid);
229 return -EINVAL;
230}
231
Wu Fengguangf4243672009-10-30 11:45:35 +0100232static int intel_hdmi_read_pin_conn(struct hda_codec *codec, hda_nid_t pin_nid)
233{
234 struct intel_hdmi_spec *spec = codec->spec;
235 hda_nid_t conn_list[HDA_MAX_CONNECTIONS];
236 int conn_len, curr;
237 int index;
238
239 if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) {
240 snd_printk(KERN_WARNING
241 "HDMI: pin %d wcaps %#x "
242 "does not support connection list\n",
243 pin_nid, get_wcaps(codec, pin_nid));
244 return -EINVAL;
245 }
246
247 conn_len = snd_hda_get_connections(codec, pin_nid, conn_list,
248 HDA_MAX_CONNECTIONS);
249 if (conn_len > 1)
250 curr = snd_hda_codec_read(codec, pin_nid, 0,
251 AC_VERB_GET_CONNECT_SEL, 0);
252 else
253 curr = 0;
254
255 index = hda_node_index(spec->pin, pin_nid);
256 if (index < 0)
257 return -EINVAL;
258
259 spec->pin_cvt[index] = conn_list[curr];
260
261 return 0;
262}
263
264static int intel_hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid)
265{
266 struct intel_hdmi_spec *spec = codec->spec;
267
268 if (spec->num_pins >= INTEL_HDMI_PINS) {
269 snd_printk(KERN_WARNING
270 "HDMI: no space for pin %d \n", pin_nid);
271 return -EINVAL;
272 }
273
274 spec->pin[spec->num_pins] = pin_nid;
275 spec->num_pins++;
276
277 /*
278 * It is assumed that converter nodes come first in the node list and
279 * hence have been registered and usable now.
280 */
281 return intel_hdmi_read_pin_conn(codec, pin_nid);
282}
283
284static int intel_hdmi_add_cvt(struct hda_codec *codec, hda_nid_t nid)
285{
286 struct intel_hdmi_spec *spec = codec->spec;
287
288 if (spec->num_cvts >= INTEL_HDMI_CVTS) {
289 snd_printk(KERN_WARNING
290 "HDMI: no space for converter %d \n", nid);
291 return -EINVAL;
292 }
293
294 spec->cvt[spec->num_cvts] = nid;
295 spec->num_cvts++;
296
297 return 0;
298}
299
300static int intel_hdmi_parse_codec(struct hda_codec *codec)
301{
302 hda_nid_t nid;
303 int i, nodes;
304
305 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid);
306 if (!nid || nodes < 0) {
307 snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n");
308 return -EINVAL;
309 }
310
311 for (i = 0; i < nodes; i++, nid++) {
312 unsigned int caps;
313 unsigned int type;
314
315 caps = snd_hda_param_read(codec, nid, AC_PAR_AUDIO_WIDGET_CAP);
316 type = get_wcaps_type(caps);
317
318 if (!(caps & AC_WCAP_DIGITAL))
319 continue;
320
321 switch (type) {
322 case AC_WID_AUD_OUT:
323 if (intel_hdmi_add_cvt(codec, nid) < 0)
324 return -EINVAL;
325 break;
326 case AC_WID_PIN:
327 caps = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
328 if (!(caps & AC_PINCAP_HDMI))
329 continue;
330 if (intel_hdmi_add_pin(codec, nid) < 0)
331 return -EINVAL;
332 break;
333 }
334 }
335
336 return 0;
337}
338
Wu Fengguang698544d2008-11-19 08:56:17 +0800339/*
Wu, Fengguang91504872008-11-05 11:16:56 +0800340 * HDMI routines
341 */
342
Takashi Iwaibeb0b9c2008-11-05 07:58:25 +0100343#ifdef BE_PARANOID
Wu Fengguang6797cf22009-10-30 11:40:40 +0100344static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
Wu, Fengguang91504872008-11-05 11:16:56 +0800345 int *packet_index, int *byte_index)
346{
347 int val;
348
Wu Fengguang6797cf22009-10-30 11:40:40 +0100349 val = snd_hda_codec_read(codec, pin_nid, 0,
350 AC_VERB_GET_HDMI_DIP_INDEX, 0);
Wu, Fengguang91504872008-11-05 11:16:56 +0800351
352 *packet_index = val >> 5;
353 *byte_index = val & 0x1f;
354}
Takashi Iwaibeb0b9c2008-11-05 07:58:25 +0100355#endif
Wu, Fengguang91504872008-11-05 11:16:56 +0800356
Wu Fengguang6797cf22009-10-30 11:40:40 +0100357static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid,
Wu, Fengguang91504872008-11-05 11:16:56 +0800358 int packet_index, int byte_index)
359{
360 int val;
361
362 val = (packet_index << 5) | (byte_index & 0x1f);
363
Wu Fengguang6797cf22009-10-30 11:40:40 +0100364 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val);
Wu, Fengguang91504872008-11-05 11:16:56 +0800365}
366
Wu Fengguang6797cf22009-10-30 11:40:40 +0100367static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid,
Wu, Fengguang91504872008-11-05 11:16:56 +0800368 unsigned char val)
369{
Wu Fengguang6797cf22009-10-30 11:40:40 +0100370 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val);
Wu, Fengguang91504872008-11-05 11:16:56 +0800371}
372
Wu Fengguang6797cf22009-10-30 11:40:40 +0100373static void hdmi_enable_output(struct hda_codec *codec, hda_nid_t pin_nid)
Wu, Fengguang91504872008-11-05 11:16:56 +0800374{
Wu Fengguang796359d2008-11-17 16:57:33 +0800375 /* Unmute */
Wu Fengguang559059b2009-08-02 16:48:55 +0800376 if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP)
377 snd_hda_codec_write(codec, pin_nid, 0,
Wu Fengguang796359d2008-11-17 16:57:33 +0800378 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
379 /* Enable pin out */
Wu Fengguang559059b2009-08-02 16:48:55 +0800380 snd_hda_codec_write(codec, pin_nid, 0,
381 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
Wu, Fengguang91504872008-11-05 11:16:56 +0800382}
383
Wu Fengguang606c0ce2009-02-11 15:22:29 +0800384/*
385 * Enable Audio InfoFrame Transmission
386 */
Wu Fengguang6797cf22009-10-30 11:40:40 +0100387static void hdmi_start_infoframe_trans(struct hda_codec *codec,
388 hda_nid_t pin_nid)
Wu, Fengguang91504872008-11-05 11:16:56 +0800389{
Wu Fengguang559059b2009-08-02 16:48:55 +0800390 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
391 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
Wu Fengguang606c0ce2009-02-11 15:22:29 +0800392 AC_DIPXMIT_BEST);
393}
Wu, Fengguang91504872008-11-05 11:16:56 +0800394
Wu Fengguang606c0ce2009-02-11 15:22:29 +0800395/*
396 * Disable Audio InfoFrame Transmission
397 */
Wu Fengguang6797cf22009-10-30 11:40:40 +0100398static void hdmi_stop_infoframe_trans(struct hda_codec *codec,
399 hda_nid_t pin_nid)
Wu Fengguang606c0ce2009-02-11 15:22:29 +0800400{
Wu Fengguang559059b2009-08-02 16:48:55 +0800401 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
402 snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT,
Wu Fengguang606c0ce2009-02-11 15:22:29 +0800403 AC_DIPXMIT_DISABLE);
Wu, Fengguang91504872008-11-05 11:16:56 +0800404}
405
Takashi Iwai6a5f96c2009-10-30 12:31:39 +0100406#ifdef CONFIG_SND_DEBUG_VERBOSE
Wu Fengguang6797cf22009-10-30 11:40:40 +0100407static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t nid)
Wu, Fengguang91504872008-11-05 11:16:56 +0800408{
Wu Fengguang6797cf22009-10-30 11:40:40 +0100409 return 1 + snd_hda_codec_read(codec, nid, 0,
Wu, Fengguang91504872008-11-05 11:16:56 +0800410 AC_VERB_GET_CVT_CHAN_COUNT, 0);
411}
Takashi Iwai6a5f96c2009-10-30 12:31:39 +0100412#endif
Wu, Fengguang91504872008-11-05 11:16:56 +0800413
Wu Fengguang6797cf22009-10-30 11:40:40 +0100414static void hdmi_set_channel_count(struct hda_codec *codec,
415 hda_nid_t nid, int chs)
Wu, Fengguang91504872008-11-05 11:16:56 +0800416{
Wu Fengguang6797cf22009-10-30 11:40:40 +0100417 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CVT_CHAN_COUNT, chs - 1);
Wu, Fengguang91504872008-11-05 11:16:56 +0800418
Wu Fengguang6797cf22009-10-30 11:40:40 +0100419#ifdef CONFIG_SND_DEBUG_VERBOSE
420 if (chs != hdmi_get_channel_count(codec, nid))
Wu Fengguang03284c82008-11-22 09:40:53 +0800421 snd_printd(KERN_INFO "HDMI channel count: expect %d, get %d\n",
Wu Fengguang6797cf22009-10-30 11:40:40 +0100422 chs, hdmi_get_channel_count(codec, nid));
423#endif
Wu, Fengguang91504872008-11-05 11:16:56 +0800424}
425
Wu Fengguang6797cf22009-10-30 11:40:40 +0100426static void hdmi_debug_channel_mapping(struct hda_codec *codec, hda_nid_t nid)
Wu, Fengguang91504872008-11-05 11:16:56 +0800427{
428#ifdef CONFIG_SND_DEBUG_VERBOSE
429 int i;
430 int slot;
431
432 for (i = 0; i < 8; i++) {
Wu Fengguang6797cf22009-10-30 11:40:40 +0100433 slot = snd_hda_codec_read(codec, nid, 0,
Wu, Fengguang91504872008-11-05 11:16:56 +0800434 AC_VERB_GET_HDMI_CHAN_SLOT, i);
Wu Fengguang03284c82008-11-22 09:40:53 +0800435 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
Wu Fengguang4e19c582008-11-19 15:13:59 +0800436 slot >> 4, slot & 0x7);
Wu, Fengguang91504872008-11-05 11:16:56 +0800437 }
438#endif
439}
440
Wu Fengguang54a25f82009-10-30 11:44:26 +0100441static void hdmi_parse_eld(struct hda_codec *codec, int index)
Wu, Fengguang91504872008-11-05 11:16:56 +0800442{
Wu Fengguang7f4a9f42008-11-18 11:47:52 +0800443 struct intel_hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100444 struct hdmi_eld *eld = &spec->sink_eld[index];
Wu, Fengguang91504872008-11-05 11:16:56 +0800445
Wu Fengguang54a25f82009-10-30 11:44:26 +0100446 if (!snd_hdmi_get_eld(eld, codec, spec->pin[index]))
Wu Fengguang7f4a9f42008-11-18 11:47:52 +0800447 snd_hdmi_show_eld(eld);
Wu, Fengguang91504872008-11-05 11:16:56 +0800448}
449
450
451/*
Wu Fengguang4e19c582008-11-19 15:13:59 +0800452 * Audio InfoFrame routines
Wu, Fengguang91504872008-11-05 11:16:56 +0800453 */
454
Wu Fengguang6797cf22009-10-30 11:40:40 +0100455static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid)
Wu, Fengguang91504872008-11-05 11:16:56 +0800456{
457#ifdef CONFIG_SND_DEBUG_VERBOSE
458 int i;
459 int size;
460
Wu Fengguang559059b2009-08-02 16:48:55 +0800461 size = snd_hdmi_get_eld_size(codec, pin_nid);
Wu Fengguang03284c82008-11-22 09:40:53 +0800462 printk(KERN_DEBUG "HDMI: ELD buf size is %d\n", size);
Wu, Fengguang91504872008-11-05 11:16:56 +0800463
464 for (i = 0; i < 8; i++) {
Wu Fengguang559059b2009-08-02 16:48:55 +0800465 size = snd_hda_codec_read(codec, pin_nid, 0,
Wu, Fengguang91504872008-11-05 11:16:56 +0800466 AC_VERB_GET_HDMI_DIP_SIZE, i);
Wu Fengguang03284c82008-11-22 09:40:53 +0800467 printk(KERN_DEBUG "HDMI: DIP GP[%d] buf size is %d\n", i, size);
Wu, Fengguang91504872008-11-05 11:16:56 +0800468 }
469#endif
470}
471
Wu Fengguang6797cf22009-10-30 11:40:40 +0100472static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid)
Wu, Fengguang91504872008-11-05 11:16:56 +0800473{
474#ifdef BE_PARANOID
475 int i, j;
476 int size;
477 int pi, bi;
478 for (i = 0; i < 8; i++) {
Wu Fengguang559059b2009-08-02 16:48:55 +0800479 size = snd_hda_codec_read(codec, pin_nid, 0,
Wu, Fengguang91504872008-11-05 11:16:56 +0800480 AC_VERB_GET_HDMI_DIP_SIZE, i);
481 if (size == 0)
482 continue;
483
Wu Fengguang559059b2009-08-02 16:48:55 +0800484 hdmi_set_dip_index(codec, pin_nid, i, 0x0);
Wu, Fengguang91504872008-11-05 11:16:56 +0800485 for (j = 1; j < 1000; j++) {
Wu Fengguang559059b2009-08-02 16:48:55 +0800486 hdmi_write_dip_byte(codec, pin_nid, 0x0);
487 hdmi_get_dip_index(codec, pin_nid, &pi, &bi);
Wu, Fengguang91504872008-11-05 11:16:56 +0800488 if (pi != i)
489 snd_printd(KERN_INFO "dip index %d: %d != %d\n",
490 bi, pi, i);
491 if (bi == 0) /* byte index wrapped around */
492 break;
493 }
494 snd_printd(KERN_INFO
Wu Fengguang03284c82008-11-22 09:40:53 +0800495 "HDMI: DIP GP[%d] buf reported size=%d, written=%d\n",
496 i, size, j);
Wu, Fengguang91504872008-11-05 11:16:56 +0800497 }
498#endif
499}
500
Wu Fengguang5457a982008-11-19 08:56:15 +0800501static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
Wu Fengguang6797cf22009-10-30 11:40:40 +0100502 hda_nid_t pin_nid,
503 struct hdmi_audio_infoframe *ai)
Wu, Fengguang91504872008-11-05 11:16:56 +0800504{
Wu Fengguang5457a982008-11-19 08:56:15 +0800505 u8 *params = (u8 *)ai;
Wu Fengguang9a957a22009-02-11 15:22:30 +0800506 u8 sum = 0;
Wu, Fengguang91504872008-11-05 11:16:56 +0800507 int i;
508
Wu Fengguang6797cf22009-10-30 11:40:40 +0100509 hdmi_debug_dip_size(codec, pin_nid);
510 hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
Wu, Fengguang91504872008-11-05 11:16:56 +0800511
Wu Fengguang6f539a92009-11-18 12:37:59 +0800512 for (i = 0; i < sizeof(*ai); i++)
Wu Fengguang9a957a22009-02-11 15:22:30 +0800513 sum += params[i];
514 ai->checksum = - sum;
515
Wu Fengguang559059b2009-08-02 16:48:55 +0800516 hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
Wu Fengguang6f539a92009-11-18 12:37:59 +0800517 for (i = 0; i < sizeof(*ai); i++)
Wu Fengguang559059b2009-08-02 16:48:55 +0800518 hdmi_write_dip_byte(codec, pin_nid, params[i]);
Wu, Fengguang91504872008-11-05 11:16:56 +0800519}
520
Wu Fengguang698544d2008-11-19 08:56:17 +0800521/*
522 * Compute derived values in channel_allocations[].
523 */
524static void init_channel_allocations(void)
525{
526 int i, j;
527 struct cea_channel_speaker_allocation *p;
528
529 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
530 p = channel_allocations + i;
531 p->channels = 0;
532 p->spk_mask = 0;
533 for (j = 0; j < ARRAY_SIZE(p->speakers); j++)
534 if (p->speakers[j]) {
535 p->channels++;
536 p->spk_mask |= p->speakers[j];
537 }
538 }
539}
540
541/*
542 * The transformation takes two steps:
543 *
544 * eld->spk_alloc => (eld_speaker_allocation_bits[]) => spk_mask
545 * spk_mask => (channel_allocations[]) => ai->CA
546 *
547 * TODO: it could select the wrong CA from multiple candidates.
548*/
Wu Fengguang6797cf22009-10-30 11:40:40 +0100549static int hdmi_setup_channel_allocation(struct hda_codec *codec, hda_nid_t nid,
Wu Fengguang698544d2008-11-19 08:56:17 +0800550 struct hdmi_audio_infoframe *ai)
551{
552 struct intel_hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100553 struct hdmi_eld *eld;
Wu Fengguang698544d2008-11-19 08:56:17 +0800554 int i;
555 int spk_mask = 0;
556 int channels = 1 + (ai->CC02_CT47 & 0x7);
557 char buf[SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE];
558
559 /*
560 * CA defaults to 0 for basic stereo audio
561 */
Wu Fengguang698544d2008-11-19 08:56:17 +0800562 if (channels <= 2)
563 return 0;
564
Wu Fengguang54a25f82009-10-30 11:44:26 +0100565 i = hda_node_index(spec->pin_cvt, nid);
566 if (i < 0)
567 return 0;
568 eld = &spec->sink_eld[i];
569
Wu Fengguang698544d2008-11-19 08:56:17 +0800570 /*
Wu Fengguanga1667e42009-02-11 15:22:28 +0800571 * HDMI sink's ELD info cannot always be retrieved for now, e.g.
572 * in console or for audio devices. Assume the highest speakers
573 * configuration, to _not_ prohibit multi-channel audio playback.
574 */
575 if (!eld->spk_alloc)
576 eld->spk_alloc = 0xffff;
577
578 /*
Wu Fengguang698544d2008-11-19 08:56:17 +0800579 * expand ELD's speaker allocation mask
580 *
581 * ELD tells the speaker mask in a compact(paired) form,
Wu Fengguangb83923a2008-11-22 09:40:51 +0800582 * expand ELD's notions to match the ones used by Audio InfoFrame.
Wu Fengguang698544d2008-11-19 08:56:17 +0800583 */
584 for (i = 0; i < ARRAY_SIZE(eld_speaker_allocation_bits); i++) {
585 if (eld->spk_alloc & (1 << i))
586 spk_mask |= eld_speaker_allocation_bits[i];
587 }
588
589 /* search for the first working match in the CA table */
590 for (i = 0; i < ARRAY_SIZE(channel_allocations); i++) {
591 if (channels == channel_allocations[i].channels &&
592 (spk_mask & channel_allocations[i].spk_mask) ==
593 channel_allocations[i].spk_mask) {
594 ai->CA = channel_allocations[i].ca_index;
Wu Fengguangcc02b832008-11-22 09:40:52 +0800595 break;
Wu Fengguang698544d2008-11-19 08:56:17 +0800596 }
597 }
598
599 snd_print_channel_allocation(eld->spk_alloc, buf, sizeof(buf));
Wu Fengguangcc02b832008-11-22 09:40:52 +0800600 snd_printdd(KERN_INFO
601 "HDMI: select CA 0x%x for %d-channel allocation: %s\n",
602 ai->CA, channels, buf);
603
604 return ai->CA;
Wu Fengguang698544d2008-11-19 08:56:17 +0800605}
606
Wu Fengguang6797cf22009-10-30 11:40:40 +0100607static void hdmi_setup_channel_mapping(struct hda_codec *codec, hda_nid_t nid,
608 struct hdmi_audio_infoframe *ai)
Wu Fengguang9c8641e2008-11-19 08:56:18 +0800609{
Wu Fengguang559059b2009-08-02 16:48:55 +0800610 int i;
611
Wu Fengguang9c8641e2008-11-19 08:56:18 +0800612 if (!ai->CA)
613 return;
614
615 /*
616 * TODO: adjust channel mapping if necessary
617 * ALSA sequence is front/surr/clfe/side?
618 */
619
Wu Fengguang559059b2009-08-02 16:48:55 +0800620 for (i = 0; i < 8; i++)
Wu Fengguang6797cf22009-10-30 11:40:40 +0100621 snd_hda_codec_write(codec, nid, 0,
Wu Fengguang559059b2009-08-02 16:48:55 +0800622 AC_VERB_SET_HDMI_CHAN_SLOT,
623 (i << 4) | i);
624
Wu Fengguang6797cf22009-10-30 11:40:40 +0100625 hdmi_debug_channel_mapping(codec, nid);
Wu Fengguang9c8641e2008-11-19 08:56:18 +0800626}
627
628
Wu Fengguang6797cf22009-10-30 11:40:40 +0100629static void hdmi_setup_audio_infoframe(struct hda_codec *codec, hda_nid_t nid,
Wu Fengguang5457a982008-11-19 08:56:15 +0800630 struct snd_pcm_substream *substream)
631{
Wu Fengguang54a25f82009-10-30 11:44:26 +0100632 struct intel_hdmi_spec *spec = codec->spec;
633 hda_nid_t pin_nid;
634 int i;
Wu Fengguang5457a982008-11-19 08:56:15 +0800635 struct hdmi_audio_infoframe ai = {
636 .type = 0x84,
637 .ver = 0x01,
638 .len = 0x0a,
639 .CC02_CT47 = substream->runtime->channels - 1,
640 };
641
Wu Fengguang6797cf22009-10-30 11:40:40 +0100642 hdmi_setup_channel_allocation(codec, nid, &ai);
643 hdmi_setup_channel_mapping(codec, nid, &ai);
Wu Fengguang698544d2008-11-19 08:56:17 +0800644
Wu Fengguang54a25f82009-10-30 11:44:26 +0100645 for (i = 0; i < spec->num_pins; i++) {
646 if (spec->pin_cvt[i] != nid)
647 continue;
648 if (spec->sink_present[i] != true)
649 continue;
650
651 pin_nid = spec->pin[i];
652 hdmi_fill_audio_infoframe(codec, pin_nid, &ai);
653 hdmi_start_infoframe_trans(codec, pin_nid);
654 }
Wu Fengguang5457a982008-11-19 08:56:15 +0800655}
656
Wu, Fengguang91504872008-11-05 11:16:56 +0800657
658/*
659 * Unsolicited events
660 */
661
662static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res)
663{
Wu Fengguang54a25f82009-10-30 11:44:26 +0100664 struct intel_hdmi_spec *spec = codec->spec;
665 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
Wu, Fengguang91504872008-11-05 11:16:56 +0800666 int pind = !!(res & AC_UNSOL_RES_PD);
667 int eldv = !!(res & AC_UNSOL_RES_ELDV);
Wu Fengguang54a25f82009-10-30 11:44:26 +0100668 int index;
Wu, Fengguang91504872008-11-05 11:16:56 +0800669
Wu Fengguang03284c82008-11-22 09:40:53 +0800670 printk(KERN_INFO
Wu Fengguang54a25f82009-10-30 11:44:26 +0100671 "HDMI hot plug event: Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
672 tag, pind, eldv);
673
674 index = hda_node_index(spec->pin, tag);
675 if (index < 0)
676 return;
677
678 spec->sink_present[index] = pind;
679 spec->sink_eldv[index] = eldv;
Wu, Fengguang91504872008-11-05 11:16:56 +0800680
681 if (pind && eldv) {
Wu Fengguang54a25f82009-10-30 11:44:26 +0100682 hdmi_parse_eld(codec, index);
Wu, Fengguang91504872008-11-05 11:16:56 +0800683 /* TODO: do real things about ELD */
684 }
685}
686
687static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res)
688{
Wu Fengguang54a25f82009-10-30 11:44:26 +0100689 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
Wu, Fengguang91504872008-11-05 11:16:56 +0800690 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
691 int cp_state = !!(res & AC_UNSOL_RES_CP_STATE);
692 int cp_ready = !!(res & AC_UNSOL_RES_CP_READY);
693
Wu Fengguang03284c82008-11-22 09:40:53 +0800694 printk(KERN_INFO
Wu Fengguang54a25f82009-10-30 11:44:26 +0100695 "HDMI CP event: PIN=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n",
696 tag,
Wu Fengguang03284c82008-11-22 09:40:53 +0800697 subtag,
698 cp_state,
699 cp_ready);
Wu, Fengguang91504872008-11-05 11:16:56 +0800700
Wu Fengguang03284c82008-11-22 09:40:53 +0800701 /* TODO */
Wu, Fengguang91504872008-11-05 11:16:56 +0800702 if (cp_state)
703 ;
704 if (cp_ready)
705 ;
706}
707
708
709static void intel_hdmi_unsol_event(struct hda_codec *codec, unsigned int res)
710{
Wu Fengguang54a25f82009-10-30 11:44:26 +0100711 struct intel_hdmi_spec *spec = codec->spec;
Wu, Fengguang91504872008-11-05 11:16:56 +0800712 int tag = res >> AC_UNSOL_RES_TAG_SHIFT;
713 int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT;
714
Wu Fengguang54a25f82009-10-30 11:44:26 +0100715 if (hda_node_index(spec->pin, tag) < 0) {
Wu Fengguang03284c82008-11-22 09:40:53 +0800716 snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag);
Wu, Fengguang91504872008-11-05 11:16:56 +0800717 return;
718 }
719
720 if (subtag == 0)
721 hdmi_intrinsic_event(codec, res);
722 else
723 hdmi_non_intrinsic_event(codec, res);
724}
725
726/*
727 * Callbacks
728 */
729
Wu, Fengguang91504872008-11-05 11:16:56 +0800730static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
731 struct hda_codec *codec,
732 unsigned int stream_tag,
733 unsigned int format,
734 struct snd_pcm_substream *substream)
735{
Wu Fengguang54a25f82009-10-30 11:44:26 +0100736 hdmi_set_channel_count(codec, hinfo->nid,
Wu Fengguang7bedb012009-10-30 11:41:44 +0100737 substream->runtime->channels);
Wu, Fengguang91504872008-11-05 11:16:56 +0800738
Wu Fengguang54a25f82009-10-30 11:44:26 +0100739 hdmi_setup_audio_infoframe(codec, hinfo->nid, substream);
Wu, Fengguang91504872008-11-05 11:16:56 +0800740
Wu Fengguang7bedb012009-10-30 11:41:44 +0100741 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
Wu, Fengguang91504872008-11-05 11:16:56 +0800742 return 0;
743}
744
Wu Fengguangddb81522009-10-30 11:43:03 +0100745static int intel_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
746 struct hda_codec *codec,
747 struct snd_pcm_substream *substream)
748{
749 struct intel_hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100750 int i;
Wu Fengguangddb81522009-10-30 11:43:03 +0100751
Wu Fengguang54a25f82009-10-30 11:44:26 +0100752 for (i = 0; i < spec->num_pins; i++) {
753 if (spec->pin_cvt[i] != hinfo->nid)
754 continue;
755
756 hdmi_stop_infoframe_trans(codec, spec->pin[i]);
757 }
Wu Fengguangddb81522009-10-30 11:43:03 +0100758
759 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
760 return 0;
761}
762
Wu, Fengguang91504872008-11-05 11:16:56 +0800763static struct hda_pcm_stream intel_hdmi_pcm_playback = {
764 .substreams = 1,
765 .channels_min = 2,
Wu, Fengguang91504872008-11-05 11:16:56 +0800766 .ops = {
Wu Fengguang70ca35f2009-10-30 11:42:18 +0100767 .prepare = intel_hdmi_playback_pcm_prepare,
768 .cleanup = intel_hdmi_playback_pcm_cleanup,
Wu, Fengguang91504872008-11-05 11:16:56 +0800769 },
770};
771
772static int intel_hdmi_build_pcms(struct hda_codec *codec)
773{
774 struct intel_hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100775 struct hda_pcm *info = spec->pcm_rec;
776 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +0800777
Wu Fengguang54a25f82009-10-30 11:44:26 +0100778 codec->num_pcms = spec->num_cvts;
Wu, Fengguang91504872008-11-05 11:16:56 +0800779 codec->pcm_info = info;
780
Wu Fengguang54a25f82009-10-30 11:44:26 +0100781 for (i = 0; i < codec->num_pcms; i++, info++) {
Wu Fengguang69fb3462009-10-30 11:45:04 +0100782 unsigned int chans;
783
784 chans = get_wcaps(codec, spec->cvt[i]);
785 chans = get_wcaps_channels(chans);
786
Wu Fengguang54a25f82009-10-30 11:44:26 +0100787 info->name = intel_hdmi_pcm_names[i];
788 info->pcm_type = HDA_PCM_TYPE_HDMI;
789 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
790 intel_hdmi_pcm_playback;
791 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->cvt[i];
Wu Fengguang69fb3462009-10-30 11:45:04 +0100792 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = chans;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100793 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800794
795 return 0;
796}
797
798static int intel_hdmi_build_controls(struct hda_codec *codec)
799{
800 struct intel_hdmi_spec *spec = codec->spec;
801 int err;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100802 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +0800803
Wu Fengguang54a25f82009-10-30 11:44:26 +0100804 for (i = 0; i < codec->num_pcms; i++) {
805 err = snd_hda_create_spdif_out_ctls(codec, spec->cvt[i]);
806 if (err < 0)
807 return err;
808 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800809
810 return 0;
811}
812
813static int intel_hdmi_init(struct hda_codec *codec)
814{
Wu Fengguang54a25f82009-10-30 11:44:26 +0100815 struct intel_hdmi_spec *spec = codec->spec;
816 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +0800817
Wu Fengguang54a25f82009-10-30 11:44:26 +0100818 for (i = 0; spec->pin[i]; i++) {
819 hdmi_enable_output(codec, spec->pin[i]);
820 snd_hda_codec_write(codec, spec->pin[i], 0,
821 AC_VERB_SET_UNSOLICITED_ENABLE,
822 AC_USRSP_EN | spec->pin[i]);
823 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800824 return 0;
825}
826
827static void intel_hdmi_free(struct hda_codec *codec)
828{
Takashi Iwaif208dba2008-11-21 09:11:50 +0100829 struct intel_hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100830 int i;
Takashi Iwaif208dba2008-11-21 09:11:50 +0100831
Wu Fengguang54a25f82009-10-30 11:44:26 +0100832 for (i = 0; i < spec->num_pins; i++)
833 snd_hda_eld_proc_free(codec, &spec->sink_eld[i]);
834
Takashi Iwaif208dba2008-11-21 09:11:50 +0100835 kfree(spec);
Wu, Fengguang91504872008-11-05 11:16:56 +0800836}
837
838static struct hda_codec_ops intel_hdmi_patch_ops = {
839 .init = intel_hdmi_init,
840 .free = intel_hdmi_free,
841 .build_pcms = intel_hdmi_build_pcms,
842 .build_controls = intel_hdmi_build_controls,
843 .unsol_event = intel_hdmi_unsol_event,
844};
845
Wu Fengguangfd080b22009-10-30 11:46:22 +0100846static int patch_intel_hdmi(struct hda_codec *codec)
Wu, Fengguang91504872008-11-05 11:16:56 +0800847{
848 struct intel_hdmi_spec *spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100849 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +0800850
851 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
852 if (spec == NULL)
853 return -ENOMEM;
854
Wu, Fengguang91504872008-11-05 11:16:56 +0800855 codec->spec = spec;
Wu Fengguangf4243672009-10-30 11:45:35 +0100856 if (intel_hdmi_parse_codec(codec) < 0) {
857 codec->spec = NULL;
858 kfree(spec);
859 return -EINVAL;
860 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800861 codec->patch_ops = intel_hdmi_patch_ops;
862
Wu Fengguang54a25f82009-10-30 11:44:26 +0100863 for (i = 0; i < spec->num_pins; i++)
864 snd_hda_eld_proc_new(codec, &spec->sink_eld[i], i);
Wu Fengguang5f1e71b2008-11-18 11:47:53 +0800865
Wu Fengguang698544d2008-11-19 08:56:17 +0800866 init_channel_allocations();
867
Wu, Fengguang91504872008-11-05 11:16:56 +0800868 return 0;
869}
870
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100871static struct hda_codec_preset snd_hda_preset_intelhdmi[] = {
Takashi Iwai74c61132008-12-18 09:11:33 +0100872 { .id = 0x808629fb, .name = "G45 DEVCL", .patch = patch_intel_hdmi },
873 { .id = 0x80862801, .name = "G45 DEVBLC", .patch = patch_intel_hdmi },
874 { .id = 0x80862802, .name = "G45 DEVCTG", .patch = patch_intel_hdmi },
875 { .id = 0x80862803, .name = "G45 DEVELK", .patch = patch_intel_hdmi },
Wu Fengguangfd080b22009-10-30 11:46:22 +0100876 { .id = 0x80862804, .name = "G45 DEVIBX", .patch = patch_intel_hdmi },
877 { .id = 0x80860054, .name = "Q57 DEVIBX", .patch = patch_intel_hdmi },
Wu Fengguang3a95cb92008-11-13 10:19:38 +0800878 { .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_intel_hdmi },
Wu, Fengguang91504872008-11-05 11:16:56 +0800879 {} /* terminator */
880};
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100881
882MODULE_ALIAS("snd-hda-codec-id:808629fb");
883MODULE_ALIAS("snd-hda-codec-id:80862801");
884MODULE_ALIAS("snd-hda-codec-id:80862802");
885MODULE_ALIAS("snd-hda-codec-id:80862803");
Wu Fengguanga57c0eb2009-02-11 15:22:31 +0800886MODULE_ALIAS("snd-hda-codec-id:80862804");
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200887MODULE_ALIAS("snd-hda-codec-id:80860054");
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100888MODULE_ALIAS("snd-hda-codec-id:10951392");
889
890MODULE_LICENSE("GPL");
891MODULE_DESCRIPTION("Intel HDMI HD-audio codec");
892
893static struct hda_codec_preset_list intel_list = {
894 .preset = snd_hda_preset_intelhdmi,
895 .owner = THIS_MODULE,
896};
897
898static int __init patch_intelhdmi_init(void)
899{
900 return snd_hda_add_codec_preset(&intel_list);
901}
902
903static void __exit patch_intelhdmi_exit(void)
904{
905 snd_hda_delete_codec_preset(&intel_list);
906}
907
908module_init(patch_intelhdmi_init)
909module_exit(patch_intelhdmi_exit)