blob: b81d23e42ace84fde7b3b60cbb96f0e93604cd2d [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 */
Wu Fengguange48b0082010-05-14 16:36:14 +080043#define MAX_HDMI_CVTS 3
Wu Fengguang079d88c2010-03-08 10:44:23 +080044#define MAX_HDMI_PINS 3
Wu, Fengguang91504872008-11-05 11:16:56 +080045
Wu Fengguang079d88c2010-03-08 10:44:23 +080046#include "patch_hdmi.c"
47
48static char *intel_hdmi_pcm_names[MAX_HDMI_CVTS] = {
Wu Fengguang54a25f82009-10-30 11:44:26 +010049 "INTEL HDMI 0",
50 "INTEL HDMI 1",
Wu Fengguange48b0082010-05-14 16:36:14 +080051 "INTEL HDMI 2",
Wu Fengguang54a25f82009-10-30 11:44:26 +010052};
Wu, Fengguang91504872008-11-05 11:16:56 +080053
Wu, Fengguang91504872008-11-05 11:16:56 +080054/*
Wu Fengguang079d88c2010-03-08 10:44:23 +080055 * HDMI callbacks
Wu Fengguang698544d2008-11-19 08:56:17 +080056 */
Wu Fengguang57791912009-11-18 12:38:06 +080057
Wu, Fengguang91504872008-11-05 11:16:56 +080058static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
59 struct hda_codec *codec,
60 unsigned int stream_tag,
61 unsigned int format,
62 struct snd_pcm_substream *substream)
63{
Wu Fengguang54a25f82009-10-30 11:44:26 +010064 hdmi_set_channel_count(codec, hinfo->nid,
Wu Fengguang7bedb012009-10-30 11:41:44 +010065 substream->runtime->channels);
Wu, Fengguang91504872008-11-05 11:16:56 +080066
Wu Fengguang54a25f82009-10-30 11:44:26 +010067 hdmi_setup_audio_infoframe(codec, hinfo->nid, substream);
Wu, Fengguang91504872008-11-05 11:16:56 +080068
Wu Fengguang57791912009-11-18 12:38:06 +080069 hdmi_setup_stream(codec, hinfo->nid, stream_tag, format);
Wu, Fengguang91504872008-11-05 11:16:56 +080070 return 0;
71}
72
Wu Fengguangddb81522009-10-30 11:43:03 +010073static int intel_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
74 struct hda_codec *codec,
75 struct snd_pcm_substream *substream)
76{
Wu Fengguangddb81522009-10-30 11:43:03 +010077 return 0;
78}
79
Wu, Fengguang91504872008-11-05 11:16:56 +080080static struct hda_pcm_stream intel_hdmi_pcm_playback = {
81 .substreams = 1,
82 .channels_min = 2,
Wu, Fengguang91504872008-11-05 11:16:56 +080083 .ops = {
Wu Fengguang70ca35f2009-10-30 11:42:18 +010084 .prepare = intel_hdmi_playback_pcm_prepare,
85 .cleanup = intel_hdmi_playback_pcm_cleanup,
Wu, Fengguang91504872008-11-05 11:16:56 +080086 },
87};
88
89static int intel_hdmi_build_pcms(struct hda_codec *codec)
90{
Wu Fengguang079d88c2010-03-08 10:44:23 +080091 struct hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +010092 struct hda_pcm *info = spec->pcm_rec;
93 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +080094
Wu Fengguang54a25f82009-10-30 11:44:26 +010095 codec->num_pcms = spec->num_cvts;
Wu, Fengguang91504872008-11-05 11:16:56 +080096 codec->pcm_info = info;
97
Wu Fengguang54a25f82009-10-30 11:44:26 +010098 for (i = 0; i < codec->num_pcms; i++, info++) {
Wu Fengguang69fb3462009-10-30 11:45:04 +010099 unsigned int chans;
100
101 chans = get_wcaps(codec, spec->cvt[i]);
102 chans = get_wcaps_channels(chans);
103
Wu Fengguang54a25f82009-10-30 11:44:26 +0100104 info->name = intel_hdmi_pcm_names[i];
105 info->pcm_type = HDA_PCM_TYPE_HDMI;
106 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
107 intel_hdmi_pcm_playback;
108 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->cvt[i];
Wu Fengguang69fb3462009-10-30 11:45:04 +0100109 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = chans;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100110 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800111
112 return 0;
113}
114
115static int intel_hdmi_build_controls(struct hda_codec *codec)
116{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800117 struct hdmi_spec *spec = codec->spec;
Wu, Fengguang91504872008-11-05 11:16:56 +0800118 int err;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100119 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +0800120
Wu Fengguang54a25f82009-10-30 11:44:26 +0100121 for (i = 0; i < codec->num_pcms; i++) {
122 err = snd_hda_create_spdif_out_ctls(codec, spec->cvt[i]);
123 if (err < 0)
124 return err;
125 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800126
127 return 0;
128}
129
130static int intel_hdmi_init(struct hda_codec *codec)
131{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800132 struct hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100133 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +0800134
Wu Fengguang54a25f82009-10-30 11:44:26 +0100135 for (i = 0; spec->pin[i]; i++) {
136 hdmi_enable_output(codec, spec->pin[i]);
137 snd_hda_codec_write(codec, spec->pin[i], 0,
138 AC_VERB_SET_UNSOLICITED_ENABLE,
139 AC_USRSP_EN | spec->pin[i]);
140 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800141 return 0;
142}
143
144static void intel_hdmi_free(struct hda_codec *codec)
145{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800146 struct hdmi_spec *spec = codec->spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100147 int i;
Takashi Iwaif208dba2008-11-21 09:11:50 +0100148
Wu Fengguang54a25f82009-10-30 11:44:26 +0100149 for (i = 0; i < spec->num_pins; i++)
150 snd_hda_eld_proc_free(codec, &spec->sink_eld[i]);
151
Takashi Iwaif208dba2008-11-21 09:11:50 +0100152 kfree(spec);
Wu, Fengguang91504872008-11-05 11:16:56 +0800153}
154
155static struct hda_codec_ops intel_hdmi_patch_ops = {
156 .init = intel_hdmi_init,
157 .free = intel_hdmi_free,
158 .build_pcms = intel_hdmi_build_pcms,
159 .build_controls = intel_hdmi_build_controls,
Wu Fengguang079d88c2010-03-08 10:44:23 +0800160 .unsol_event = hdmi_unsol_event,
Wu, Fengguang91504872008-11-05 11:16:56 +0800161};
162
Wu Fengguangfd080b22009-10-30 11:46:22 +0100163static int patch_intel_hdmi(struct hda_codec *codec)
Wu, Fengguang91504872008-11-05 11:16:56 +0800164{
Wu Fengguang079d88c2010-03-08 10:44:23 +0800165 struct hdmi_spec *spec;
Wu Fengguang54a25f82009-10-30 11:44:26 +0100166 int i;
Wu, Fengguang91504872008-11-05 11:16:56 +0800167
168 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
169 if (spec == NULL)
170 return -ENOMEM;
171
Wu, Fengguang91504872008-11-05 11:16:56 +0800172 codec->spec = spec;
Wu Fengguang079d88c2010-03-08 10:44:23 +0800173 if (hdmi_parse_codec(codec) < 0) {
Wu Fengguangf4243672009-10-30 11:45:35 +0100174 codec->spec = NULL;
175 kfree(spec);
176 return -EINVAL;
177 }
Wu, Fengguang91504872008-11-05 11:16:56 +0800178 codec->patch_ops = intel_hdmi_patch_ops;
179
Wu Fengguang54a25f82009-10-30 11:44:26 +0100180 for (i = 0; i < spec->num_pins; i++)
181 snd_hda_eld_proc_new(codec, &spec->sink_eld[i], i);
Wu Fengguang5f1e71b2008-11-18 11:47:53 +0800182
Wu Fengguang698544d2008-11-19 08:56:17 +0800183 init_channel_allocations();
184
Wu, Fengguang91504872008-11-05 11:16:56 +0800185 return 0;
186}
187
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100188static struct hda_codec_preset snd_hda_preset_intelhdmi[] = {
Wu Fengguang41da2e02010-05-14 16:36:13 +0800189{ .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_intel_hdmi },
190{ .id = 0x80862801, .name = "Bearlake HDMI", .patch = patch_intel_hdmi },
191{ .id = 0x80862802, .name = "Cantiga HDMI", .patch = patch_intel_hdmi },
192{ .id = 0x80862803, .name = "Eaglelake HDMI", .patch = patch_intel_hdmi },
193{ .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_intel_hdmi },
194{ .id = 0x80860054, .name = "IbexPeak HDMI", .patch = patch_intel_hdmi },
Wu Fengguange48b0082010-05-14 16:36:14 +0800195{ .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_intel_hdmi },
Wu Fengguang41da2e02010-05-14 16:36:13 +0800196{ .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_intel_hdmi },
197{} /* terminator */
Wu, Fengguang91504872008-11-05 11:16:56 +0800198};
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100199
200MODULE_ALIAS("snd-hda-codec-id:808629fb");
201MODULE_ALIAS("snd-hda-codec-id:80862801");
202MODULE_ALIAS("snd-hda-codec-id:80862802");
203MODULE_ALIAS("snd-hda-codec-id:80862803");
Wu Fengguanga57c0eb2009-02-11 15:22:31 +0800204MODULE_ALIAS("snd-hda-codec-id:80862804");
Wu Fengguange48b0082010-05-14 16:36:14 +0800205MODULE_ALIAS("snd-hda-codec-id:80862805");
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200206MODULE_ALIAS("snd-hda-codec-id:80860054");
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100207MODULE_ALIAS("snd-hda-codec-id:10951392");
208
209MODULE_LICENSE("GPL");
210MODULE_DESCRIPTION("Intel HDMI HD-audio codec");
211
212static struct hda_codec_preset_list intel_list = {
213 .preset = snd_hda_preset_intelhdmi,
214 .owner = THIS_MODULE,
215};
216
217static int __init patch_intelhdmi_init(void)
218{
219 return snd_hda_add_codec_preset(&intel_list);
220}
221
222static void __exit patch_intelhdmi_exit(void)
223{
224 snd_hda_delete_codec_preset(&intel_list);
225}
226
227module_init(patch_intelhdmi_init)
228module_exit(patch_intelhdmi_exit)