blob: c2d9ee9cfdc00900aee82957fee356442710faa3 [file] [log] [blame]
Takashi Iwai4e01f542009-04-16 08:53:34 +02001/*
2 * HD audio interface patch for Creative X-Fi CA0110-IBG chip
3 *
4 * Copyright (c) 2008 Takashi Iwai <tiwai@suse.de>
5 *
6 * This driver is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This driver is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/init.h>
Takashi Iwai4e01f542009-04-16 08:53:34 +020022#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040023#include <linux/module.h>
Takashi Iwai4e01f542009-04-16 08:53:34 +020024#include <sound/core.h>
25#include "hda_codec.h"
26#include "hda_local.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020027#include "hda_auto_parser.h"
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010028#include "hda_jack.h"
29#include "hda_generic.h"
Takashi Iwai4e01f542009-04-16 08:53:34 +020030
Takashi Iwai4e01f542009-04-16 08:53:34 +020031
Takashi Iwai728850a2011-05-02 11:36:00 +020032static const struct hda_codec_ops ca0110_patch_ops = {
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010033 .build_controls = snd_hda_gen_build_controls,
34 .build_pcms = snd_hda_gen_build_pcms,
35 .init = snd_hda_gen_init,
36 .free = snd_hda_gen_free,
Takashi Iwai8a6c21a2013-01-18 07:51:17 +010037 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai4e01f542009-04-16 08:53:34 +020038};
39
Takashi Iwai4e01f542009-04-16 08:53:34 +020040static int ca0110_parse_auto_config(struct hda_codec *codec)
41{
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010042 struct hda_gen_spec *spec = codec->spec;
Takashi Iwai4e01f542009-04-16 08:53:34 +020043 int err;
44
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010045 err = snd_hda_parse_pin_defcfg(codec, &spec->autocfg, NULL, 0);
46 if (err < 0)
47 return err;
48 err = snd_hda_gen_parse_auto_config(codec, &spec->autocfg);
Takashi Iwai4e01f542009-04-16 08:53:34 +020049 if (err < 0)
50 return err;
51
Takashi Iwai4e01f542009-04-16 08:53:34 +020052 return 0;
53}
54
55
Takashi Iwai1e168952009-07-01 08:34:32 +020056static int patch_ca0110(struct hda_codec *codec)
Takashi Iwai4e01f542009-04-16 08:53:34 +020057{
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010058 struct hda_gen_spec *spec;
Takashi Iwai4e01f542009-04-16 08:53:34 +020059 int err;
60
61 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
62 if (!spec)
63 return -ENOMEM;
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010064 snd_hda_gen_spec_init(spec);
Takashi Iwai4e01f542009-04-16 08:53:34 +020065 codec->spec = spec;
Takashi Iwai225068a2015-05-29 10:42:14 +020066 codec->patch_ops = ca0110_patch_ops;
Takashi Iwai4e01f542009-04-16 08:53:34 +020067
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010068 spec->multi_cap_vol = 1;
Takashi Iwai4e01f542009-04-16 08:53:34 +020069 codec->bus->needs_damn_long_delay = 1;
70
71 err = ca0110_parse_auto_config(codec);
72 if (err < 0)
73 goto error;
74
Takashi Iwai4e01f542009-04-16 08:53:34 +020075 return 0;
76
77 error:
Takashi Iwai8fadf1d2012-12-19 18:04:37 +010078 snd_hda_gen_free(codec);
Takashi Iwai4e01f542009-04-16 08:53:34 +020079 return err;
80}
81
82
83/*
84 * patch entries
85 */
Takashi Iwaib9a94a92015-10-01 16:20:04 +020086static const struct hda_device_id snd_hda_id_ca0110[] = {
87 HDA_CODEC_ENTRY(0x1102000a, "CA0110-IBG", patch_ca0110),
88 HDA_CODEC_ENTRY(0x1102000b, "CA0110-IBG", patch_ca0110),
89 HDA_CODEC_ENTRY(0x1102000d, "SB0880 X-Fi", patch_ca0110),
Takashi Iwai4e01f542009-04-16 08:53:34 +020090 {} /* terminator */
91};
Takashi Iwaib9a94a92015-10-01 16:20:04 +020092MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_ca0110);
Takashi Iwai4e01f542009-04-16 08:53:34 +020093
94MODULE_LICENSE("GPL");
95MODULE_DESCRIPTION("Creative CA0110-IBG HD-audio codec");
96
Takashi Iwaid8a766a2015-02-17 15:25:37 +010097static struct hda_codec_driver ca0110_driver = {
Takashi Iwaib9a94a92015-10-01 16:20:04 +020098 .id = snd_hda_id_ca0110,
Takashi Iwai4e01f542009-04-16 08:53:34 +020099};
100
Takashi Iwaid8a766a2015-02-17 15:25:37 +0100101module_hda_codec_driver(ca0110_driver);