3 * patch_intelhdmi.c - Patch for Intel HDMI codecs
5 * Copyright(c) 2008 Intel Corporation. All rights reserved.
8 * Jiang Zhe <zhe.jiang@intel.com>
9 * Wu Fengguang <wfg@linux.intel.com>
12 * Wu Fengguang <wfg@linux.intel.com>
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)
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
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.
29 #include <linux/init.h>
30 #include <linux/delay.h>
31 #include <linux/slab.h>
32 #include <sound/core.h>
33 #include "hda_codec.h"
34 #include "hda_local.h"
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).
41 * The HDA correspondence of pipes/ports are converter/pin nodes.
43 #define MAX_HDMI_CVTS 2
44 #define MAX_HDMI_PINS 3
46 #include "patch_hdmi.c"
48 static char *intel_hdmi_pcm_names
[MAX_HDMI_CVTS
] = {
57 static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
58 struct hda_codec
*codec
,
59 unsigned int stream_tag
,
61 struct snd_pcm_substream
*substream
)
63 hdmi_set_channel_count(codec
, hinfo
->nid
,
64 substream
->runtime
->channels
);
66 hdmi_setup_audio_infoframe(codec
, hinfo
->nid
, substream
);
68 hdmi_setup_stream(codec
, hinfo
->nid
, stream_tag
, format
);
72 static int intel_hdmi_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
73 struct hda_codec
*codec
,
74 struct snd_pcm_substream
*substream
)
79 static struct hda_pcm_stream intel_hdmi_pcm_playback
= {
83 .prepare
= intel_hdmi_playback_pcm_prepare
,
84 .cleanup
= intel_hdmi_playback_pcm_cleanup
,
88 static int intel_hdmi_build_pcms(struct hda_codec
*codec
)
90 struct hdmi_spec
*spec
= codec
->spec
;
91 struct hda_pcm
*info
= spec
->pcm_rec
;
94 codec
->num_pcms
= spec
->num_cvts
;
95 codec
->pcm_info
= info
;
97 for (i
= 0; i
< codec
->num_pcms
; i
++, info
++) {
100 chans
= get_wcaps(codec
, spec
->cvt
[i
]);
101 chans
= get_wcaps_channels(chans
);
103 info
->name
= intel_hdmi_pcm_names
[i
];
104 info
->pcm_type
= HDA_PCM_TYPE_HDMI
;
105 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
106 intel_hdmi_pcm_playback
;
107 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->cvt
[i
];
108 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
= chans
;
114 static int intel_hdmi_build_controls(struct hda_codec
*codec
)
116 struct hdmi_spec
*spec
= codec
->spec
;
120 for (i
= 0; i
< codec
->num_pcms
; i
++) {
121 err
= snd_hda_create_spdif_out_ctls(codec
, spec
->cvt
[i
]);
129 static int intel_hdmi_init(struct hda_codec
*codec
)
131 struct hdmi_spec
*spec
= codec
->spec
;
134 for (i
= 0; spec
->pin
[i
]; i
++) {
135 hdmi_enable_output(codec
, spec
->pin
[i
]);
136 snd_hda_codec_write(codec
, spec
->pin
[i
], 0,
137 AC_VERB_SET_UNSOLICITED_ENABLE
,
138 AC_USRSP_EN
| spec
->pin
[i
]);
143 static void intel_hdmi_free(struct hda_codec
*codec
)
145 struct hdmi_spec
*spec
= codec
->spec
;
148 for (i
= 0; i
< spec
->num_pins
; i
++)
149 snd_hda_eld_proc_free(codec
, &spec
->sink_eld
[i
]);
154 static struct hda_codec_ops intel_hdmi_patch_ops
= {
155 .init
= intel_hdmi_init
,
156 .free
= intel_hdmi_free
,
157 .build_pcms
= intel_hdmi_build_pcms
,
158 .build_controls
= intel_hdmi_build_controls
,
159 .unsol_event
= hdmi_unsol_event
,
162 static int patch_intel_hdmi(struct hda_codec
*codec
)
164 struct hdmi_spec
*spec
;
167 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
172 if (hdmi_parse_codec(codec
) < 0) {
177 codec
->patch_ops
= intel_hdmi_patch_ops
;
179 for (i
= 0; i
< spec
->num_pins
; i
++)
180 snd_hda_eld_proc_new(codec
, &spec
->sink_eld
[i
], i
);
182 init_channel_allocations();
187 static struct hda_codec_preset snd_hda_preset_intelhdmi
[] = {
188 { .id
= 0x808629fb, .name
= "G45 DEVCL", .patch
= patch_intel_hdmi
},
189 { .id
= 0x80862801, .name
= "G45 DEVBLC", .patch
= patch_intel_hdmi
},
190 { .id
= 0x80862802, .name
= "G45 DEVCTG", .patch
= patch_intel_hdmi
},
191 { .id
= 0x80862803, .name
= "G45 DEVELK", .patch
= patch_intel_hdmi
},
192 { .id
= 0x80862804, .name
= "G45 DEVIBX", .patch
= patch_intel_hdmi
},
193 { .id
= 0x80860054, .name
= "Q57 DEVIBX", .patch
= patch_intel_hdmi
},
194 { .id
= 0x10951392, .name
= "SiI1392 HDMI", .patch
= patch_intel_hdmi
},
198 MODULE_ALIAS("snd-hda-codec-id:808629fb");
199 MODULE_ALIAS("snd-hda-codec-id:80862801");
200 MODULE_ALIAS("snd-hda-codec-id:80862802");
201 MODULE_ALIAS("snd-hda-codec-id:80862803");
202 MODULE_ALIAS("snd-hda-codec-id:80862804");
203 MODULE_ALIAS("snd-hda-codec-id:80860054");
204 MODULE_ALIAS("snd-hda-codec-id:10951392");
206 MODULE_LICENSE("GPL");
207 MODULE_DESCRIPTION("Intel HDMI HD-audio codec");
209 static struct hda_codec_preset_list intel_list
= {
210 .preset
= snd_hda_preset_intelhdmi
,
211 .owner
= THIS_MODULE
,
214 static int __init
patch_intelhdmi_init(void)
216 return snd_hda_add_codec_preset(&intel_list
);
219 static void __exit
patch_intelhdmi_exit(void)
221 snd_hda_delete_codec_preset(&intel_list
);
224 module_init(patch_intelhdmi_init
)
225 module_exit(patch_intelhdmi_exit
)