blob: 1a3e1797994aa8638c2d939c956fd8f9227c74bc [file] [log] [blame]
Richard Purdie10c5cf32006-10-06 18:37:32 +02001/*
2 * wm9712.c -- ALSA Soc WM9712 codec support
3 *
Mark Brown656baae2012-05-23 12:39:07 +01004 * Copyright 2006-12 Wolfson Microelectronics PLC.
Liam Girdwoodd3311242008-10-12 13:17:36 +01005 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Richard Purdie10c5cf32006-10-06 18:37:32 +02006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
Richard Purdie10c5cf32006-10-06 18:37:32 +020011 */
12
13#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Richard Purdie10c5cf32006-10-06 18:37:32 +020015#include <linux/module.h>
Richard Purdie10c5cf32006-10-06 18:37:32 +020016#include <linux/kernel.h>
17#include <linux/device.h>
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +020018#include <linux/regmap.h>
Richard Purdie10c5cf32006-10-06 18:37:32 +020019#include <sound/core.h>
20#include <sound/pcm.h>
21#include <sound/ac97_codec.h>
22#include <sound/initval.h>
23#include <sound/soc.h>
Mark Brown471280b2012-02-01 12:42:59 +000024#include <sound/tlv.h>
Richard Purdie10c5cf32006-10-06 18:37:32 +020025
Lars-Peter Clausena575be42015-07-21 21:53:05 +020026#define WM9712_VENDOR_ID 0x574d4c12
27#define WM9712_VENDOR_ID_MASK 0xffffffff
28
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +010029struct wm9712_priv {
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +010030 struct snd_ac97 *ac97;
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +010031 unsigned int hp_mixer[2];
32 struct mutex lock;
33};
34
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +020035static const struct reg_default wm9712_reg_defaults[] = {
36 { 0x02, 0x8000 },
37 { 0x04, 0x8000 },
38 { 0x06, 0x8000 },
39 { 0x08, 0x0f0f },
40 { 0x0a, 0xaaa0 },
41 { 0x0c, 0xc008 },
42 { 0x0e, 0x6808 },
43 { 0x10, 0xe808 },
44 { 0x12, 0xaaa0 },
45 { 0x14, 0xad00 },
46 { 0x16, 0x8000 },
47 { 0x18, 0xe808 },
48 { 0x1a, 0x3000 },
49 { 0x1c, 0x8000 },
50 { 0x20, 0x0000 },
51 { 0x22, 0x0000 },
52 { 0x26, 0x000f },
53 { 0x28, 0x0605 },
54 { 0x2a, 0x0410 },
55 { 0x2c, 0xbb80 },
56 { 0x2e, 0xbb80 },
57 { 0x32, 0xbb80 },
58 { 0x34, 0x2000 },
59 { 0x4c, 0xf83e },
60 { 0x4e, 0xffff },
61 { 0x50, 0x0000 },
62 { 0x52, 0x0000 },
63 { 0x56, 0xf83e },
64 { 0x58, 0x0008 },
65 { 0x5c, 0x0000 },
66 { 0x60, 0xb032 },
67 { 0x62, 0x3e00 },
68 { 0x64, 0x0000 },
69 { 0x76, 0x0006 },
70 { 0x78, 0x0001 },
71 { 0x7a, 0x0000 },
72};
Richard Purdie10c5cf32006-10-06 18:37:32 +020073
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +020074static bool wm9712_volatile_reg(struct device *dev, unsigned int reg)
75{
76 switch (reg) {
77 case AC97_REC_GAIN:
78 return true;
79 default:
80 return regmap_ac97_default_volatile(dev, reg);
81 }
82}
83
84static const struct regmap_config wm9712_regmap_config = {
85 .reg_bits = 16,
86 .reg_stride = 2,
87 .val_bits = 16,
88 .max_register = 0x7e,
89 .cache_type = REGCACHE_RBTREE,
90
91 .volatile_reg = wm9712_volatile_reg,
92
93 .reg_defaults = wm9712_reg_defaults,
94 .num_reg_defaults = ARRAY_SIZE(wm9712_reg_defaults),
Richard Purdie10c5cf32006-10-06 18:37:32 +020095};
96
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +010097#define HPL_MIXER 0x0
98#define HPR_MIXER 0x1
Richard Purdie10c5cf32006-10-06 18:37:32 +020099
100static const char *wm9712_alc_select[] = {"None", "Left", "Right", "Stereo"};
101static const char *wm9712_alc_mux[] = {"Stereo", "Left", "Right", "None"};
102static const char *wm9712_out3_src[] = {"Left", "VREF", "Left + Right",
103 "Mono"};
104static const char *wm9712_spk_src[] = {"Speaker Mix", "Headphone Mix"};
105static const char *wm9712_rec_adc[] = {"Stereo", "Left", "Right", "Mute"};
106static const char *wm9712_base[] = {"Linear Control", "Adaptive Boost"};
107static const char *wm9712_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
108static const char *wm9712_mic[] = {"Mic 1", "Differential", "Mic 2",
109 "Stereo"};
110static const char *wm9712_rec_sel[] = {"Mic", "NC", "NC", "Speaker Mixer",
111 "Line", "Headphone Mixer", "Phone Mixer", "Phone"};
112static const char *wm9712_ng_type[] = {"Constant Gain", "Mute"};
113static const char *wm9712_diff_sel[] = {"Mic", "Line"};
114
Mark Brown471280b2012-02-01 12:42:59 +0000115static const DECLARE_TLV_DB_SCALE(main_tlv, -3450, 150, 0);
116static const DECLARE_TLV_DB_SCALE(boost_tlv, 0, 2000, 0);
117
Richard Purdie10c5cf32006-10-06 18:37:32 +0200118static const struct soc_enum wm9712_enum[] = {
119SOC_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9712_alc_select),
120SOC_ENUM_SINGLE(AC97_VIDEO, 12, 4, wm9712_alc_mux),
121SOC_ENUM_SINGLE(AC97_AUX, 9, 4, wm9712_out3_src),
122SOC_ENUM_SINGLE(AC97_AUX, 8, 2, wm9712_spk_src),
123SOC_ENUM_SINGLE(AC97_REC_SEL, 12, 4, wm9712_rec_adc),
124SOC_ENUM_SINGLE(AC97_MASTER_TONE, 15, 2, wm9712_base),
125SOC_ENUM_DOUBLE(AC97_REC_GAIN, 14, 6, 2, wm9712_rec_gain),
126SOC_ENUM_SINGLE(AC97_MIC, 5, 4, wm9712_mic),
127SOC_ENUM_SINGLE(AC97_REC_SEL, 8, 8, wm9712_rec_sel),
128SOC_ENUM_SINGLE(AC97_REC_SEL, 0, 8, wm9712_rec_sel),
129SOC_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9712_ng_type),
130SOC_ENUM_SINGLE(0x5c, 8, 2, wm9712_diff_sel),
131};
132
133static const struct snd_kcontrol_new wm9712_snd_ac97_controls[] = {
134SOC_DOUBLE("Speaker Playback Volume", AC97_MASTER, 8, 0, 31, 1),
135SOC_SINGLE("Speaker Playback Switch", AC97_MASTER, 15, 1, 1),
136SOC_DOUBLE("Headphone Playback Volume", AC97_HEADPHONE, 8, 0, 31, 1),
Mark Brown7e48bf62008-04-28 14:15:28 +0100137SOC_SINGLE("Headphone Playback Switch", AC97_HEADPHONE, 15, 1, 1),
Liam Girdwood53ae5192007-02-14 15:23:57 +0100138SOC_DOUBLE("PCM Playback Volume", AC97_PCM, 8, 0, 31, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200139
140SOC_SINGLE("Speaker Playback ZC Switch", AC97_MASTER, 7, 1, 0),
141SOC_SINGLE("Speaker Playback Invert Switch", AC97_MASTER, 6, 1, 0),
142SOC_SINGLE("Headphone Playback ZC Switch", AC97_HEADPHONE, 7, 1, 0),
143SOC_SINGLE("Mono Playback ZC Switch", AC97_MASTER_MONO, 7, 1, 0),
Mike Rapoport18fe4ac2007-10-22 17:41:08 +0200144SOC_SINGLE("Mono Playback Volume", AC97_MASTER_MONO, 0, 31, 1),
145SOC_SINGLE("Mono Playback Switch", AC97_MASTER_MONO, 15, 1, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200146
147SOC_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
148SOC_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
149SOC_SINGLE("ALC Decay Time", AC97_CODEC_CLASS_REV, 4, 15, 0),
150SOC_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
151SOC_ENUM("ALC Function", wm9712_enum[0]),
152SOC_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 0),
153SOC_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 1),
154SOC_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
155SOC_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
156SOC_ENUM("ALC NG Type", wm9712_enum[10]),
157SOC_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 1),
158
159SOC_SINGLE("Mic Headphone Volume", AC97_VIDEO, 12, 7, 1),
160SOC_SINGLE("ALC Headphone Volume", AC97_VIDEO, 7, 7, 1),
161
162SOC_SINGLE("Out3 Switch", AC97_AUX, 15, 1, 1),
163SOC_SINGLE("Out3 ZC Switch", AC97_AUX, 7, 1, 1),
164SOC_SINGLE("Out3 Volume", AC97_AUX, 0, 31, 1),
165
166SOC_SINGLE("PCBeep Bypass Headphone Volume", AC97_PC_BEEP, 12, 7, 1),
167SOC_SINGLE("PCBeep Bypass Speaker Volume", AC97_PC_BEEP, 8, 7, 1),
168SOC_SINGLE("PCBeep Bypass Phone Volume", AC97_PC_BEEP, 4, 7, 1),
169
170SOC_SINGLE("Aux Playback Headphone Volume", AC97_CD, 12, 7, 1),
171SOC_SINGLE("Aux Playback Speaker Volume", AC97_CD, 8, 7, 1),
172SOC_SINGLE("Aux Playback Phone Volume", AC97_CD, 4, 7, 1),
173
Joe Sauer7570f292008-01-10 14:34:56 +0100174SOC_SINGLE("Phone Volume", AC97_PHONE, 0, 15, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200175SOC_DOUBLE("Line Capture Volume", AC97_LINE, 8, 0, 31, 1),
176
Mark Brown3eadd882012-08-22 17:30:13 +0100177SOC_SINGLE_TLV("Capture Boost Switch", AC97_REC_SEL, 14, 1, 0, boost_tlv),
178SOC_SINGLE_TLV("Capture to Phone Boost Switch", AC97_REC_SEL, 11, 1, 1,
179 boost_tlv),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200180
181SOC_SINGLE("3D Upper Cut-off Switch", AC97_3D_CONTROL, 5, 1, 1),
182SOC_SINGLE("3D Lower Cut-off Switch", AC97_3D_CONTROL, 4, 1, 1),
183SOC_SINGLE("3D Playback Volume", AC97_3D_CONTROL, 0, 15, 0),
184
185SOC_ENUM("Bass Control", wm9712_enum[5]),
186SOC_SINGLE("Bass Cut-off Switch", AC97_MASTER_TONE, 12, 1, 1),
187SOC_SINGLE("Tone Cut-off Switch", AC97_MASTER_TONE, 4, 1, 1),
188SOC_SINGLE("Playback Attenuate (-6dB) Switch", AC97_MASTER_TONE, 6, 1, 0),
Mike Rapoport18fe4ac2007-10-22 17:41:08 +0200189SOC_SINGLE("Bass Volume", AC97_MASTER_TONE, 8, 15, 1),
190SOC_SINGLE("Treble Volume", AC97_MASTER_TONE, 0, 15, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200191
Mark Brown689185b2012-07-31 18:37:29 +0100192SOC_SINGLE("Capture Switch", AC97_REC_GAIN, 15, 1, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200193SOC_ENUM("Capture Volume Steps", wm9712_enum[6]),
Mark Brown28c42c22012-07-31 18:37:28 +0100194SOC_DOUBLE("Capture Volume", AC97_REC_GAIN, 8, 0, 63, 0),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200195SOC_SINGLE("Capture ZC Switch", AC97_REC_GAIN, 7, 1, 0),
196
Mark Brown471280b2012-02-01 12:42:59 +0000197SOC_SINGLE_TLV("Mic 1 Volume", AC97_MIC, 8, 31, 1, main_tlv),
198SOC_SINGLE_TLV("Mic 2 Volume", AC97_MIC, 0, 31, 1, main_tlv),
199SOC_SINGLE_TLV("Mic Boost Volume", AC97_MIC, 7, 1, 0, boost_tlv),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200200};
201
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100202static const unsigned int wm9712_mixer_mute_regs[] = {
203 AC97_VIDEO,
204 AC97_PCM,
205 AC97_LINE,
206 AC97_PHONE,
207 AC97_CD,
208 AC97_PC_BEEP,
209};
210
Richard Purdie10c5cf32006-10-06 18:37:32 +0200211/* We have to create a fake left and right HP mixers because
212 * the codec only has a single control that is shared by both channels.
213 * This makes it impossible to determine the audio path.
214 */
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100215static int wm9712_hp_mixer_put(struct snd_kcontrol *kcontrol,
216 struct snd_ctl_elem_value *ucontrol)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200217{
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100218 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
219 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
220 struct wm9712_priv *wm9712 = snd_soc_codec_get_drvdata(codec);
Takashi Iwai4b0b6692015-03-10 12:39:15 +0100221 unsigned int val = ucontrol->value.integer.value[0];
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100222 struct soc_mixer_control *mc =
223 (struct soc_mixer_control *)kcontrol->private_value;
224 unsigned int mixer, mask, shift, old;
Chen-Yu Tsaie411b0b2016-11-02 15:35:58 +0800225 struct snd_soc_dapm_update update = { 0 };
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100226 bool change;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200227
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100228 mixer = mc->shift >> 8;
229 shift = mc->shift & 0xff;
230 mask = 1 << shift;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200231
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100232 mutex_lock(&wm9712->lock);
233 old = wm9712->hp_mixer[mixer];
Takashi Iwai4b0b6692015-03-10 12:39:15 +0100234 if (ucontrol->value.integer.value[0])
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100235 wm9712->hp_mixer[mixer] |= mask;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200236 else
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100237 wm9712->hp_mixer[mixer] &= ~mask;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200238
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100239 change = old != wm9712->hp_mixer[mixer];
240 if (change) {
241 update.kcontrol = kcontrol;
242 update.reg = wm9712_mixer_mute_regs[shift];
243 update.mask = 0x8000;
244 if ((wm9712->hp_mixer[0] & mask) ||
245 (wm9712->hp_mixer[1] & mask))
246 update.val = 0x0;
247 else
248 update.val = 0x8000;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200249
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100250 snd_soc_dapm_mixer_update_power(dapm, kcontrol, val,
251 &update);
252 }
Richard Purdie10c5cf32006-10-06 18:37:32 +0200253
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100254 mutex_unlock(&wm9712->lock);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200255
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100256 return change;
257}
Richard Purdie10c5cf32006-10-06 18:37:32 +0200258
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100259static int wm9712_hp_mixer_get(struct snd_kcontrol *kcontrol,
260 struct snd_ctl_elem_value *ucontrol)
261{
262 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
263 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
264 struct wm9712_priv *wm9712 = snd_soc_codec_get_drvdata(codec);
265 struct soc_mixer_control *mc =
266 (struct soc_mixer_control *)kcontrol->private_value;
267 unsigned int shift, mixer;
268
269 mixer = mc->shift >> 8;
270 shift = mc->shift & 0xff;
271
Takashi Iwai4b0b6692015-03-10 12:39:15 +0100272 ucontrol->value.integer.value[0] =
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100273 (wm9712->hp_mixer[mixer] >> shift) & 1;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200274
275 return 0;
276}
277
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100278#define WM9712_HP_MIXER_CTRL(xname, xmixer, xshift) { \
279 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
280 .info = snd_soc_info_volsw, \
281 .get = wm9712_hp_mixer_get, .put = wm9712_hp_mixer_put, \
282 .private_value = SOC_SINGLE_VALUE(SND_SOC_NOPM, \
283 (xmixer << 8) | xshift, 1, 0, 0) \
284}
285
Richard Purdie10c5cf32006-10-06 18:37:32 +0200286/* Left Headphone Mixers */
287static const struct snd_kcontrol_new wm9712_hpl_mixer_controls[] = {
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100288 WM9712_HP_MIXER_CTRL("PCBeep Bypass Switch", HPL_MIXER, 5),
289 WM9712_HP_MIXER_CTRL("Aux Playback Switch", HPL_MIXER, 4),
290 WM9712_HP_MIXER_CTRL("Phone Bypass Switch", HPL_MIXER, 3),
291 WM9712_HP_MIXER_CTRL("Line Bypass Switch", HPL_MIXER, 2),
292 WM9712_HP_MIXER_CTRL("PCM Playback Switch", HPL_MIXER, 1),
293 WM9712_HP_MIXER_CTRL("Mic Sidetone Switch", HPL_MIXER, 0),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200294};
295
296/* Right Headphone Mixers */
297static const struct snd_kcontrol_new wm9712_hpr_mixer_controls[] = {
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100298 WM9712_HP_MIXER_CTRL("PCBeep Bypass Switch", HPR_MIXER, 5),
299 WM9712_HP_MIXER_CTRL("Aux Playback Switch", HPR_MIXER, 4),
300 WM9712_HP_MIXER_CTRL("Phone Bypass Switch", HPR_MIXER, 3),
301 WM9712_HP_MIXER_CTRL("Line Bypass Switch", HPR_MIXER, 2),
302 WM9712_HP_MIXER_CTRL("PCM Playback Switch", HPR_MIXER, 1),
303 WM9712_HP_MIXER_CTRL("Mic Sidetone Switch", HPR_MIXER, 0),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200304};
305
306/* Speaker Mixer */
307static const struct snd_kcontrol_new wm9712_speaker_mixer_controls[] = {
308 SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 11, 1, 1),
309 SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 11, 1, 1),
310 SOC_DAPM_SINGLE("Phone Bypass Switch", AC97_PHONE, 14, 1, 1),
311 SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 14, 1, 1),
312 SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 14, 1, 1),
313};
314
315/* Phone Mixer */
316static const struct snd_kcontrol_new wm9712_phone_mixer_controls[] = {
317 SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 7, 1, 1),
318 SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 7, 1, 1),
319 SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 13, 1, 1),
320 SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 13, 1, 1),
321 SOC_DAPM_SINGLE("Mic 1 Sidetone Switch", AC97_MIC, 14, 1, 1),
322 SOC_DAPM_SINGLE("Mic 2 Sidetone Switch", AC97_MIC, 13, 1, 1),
323};
324
325/* ALC headphone mux */
326static const struct snd_kcontrol_new wm9712_alc_mux_controls =
327SOC_DAPM_ENUM("Route", wm9712_enum[1]);
328
329/* out 3 mux */
330static const struct snd_kcontrol_new wm9712_out3_mux_controls =
331SOC_DAPM_ENUM("Route", wm9712_enum[2]);
332
333/* spk mux */
334static const struct snd_kcontrol_new wm9712_spk_mux_controls =
335SOC_DAPM_ENUM("Route", wm9712_enum[3]);
336
337/* Capture to Phone mux */
338static const struct snd_kcontrol_new wm9712_capture_phone_mux_controls =
339SOC_DAPM_ENUM("Route", wm9712_enum[4]);
340
341/* Capture left select */
342static const struct snd_kcontrol_new wm9712_capture_selectl_controls =
343SOC_DAPM_ENUM("Route", wm9712_enum[8]);
344
345/* Capture right select */
346static const struct snd_kcontrol_new wm9712_capture_selectr_controls =
347SOC_DAPM_ENUM("Route", wm9712_enum[9]);
348
349/* Mic select */
350static const struct snd_kcontrol_new wm9712_mic_src_controls =
Mark Brownccf79582012-08-16 22:36:04 +0100351SOC_DAPM_ENUM("Mic Source Select", wm9712_enum[7]);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200352
353/* diff select */
354static const struct snd_kcontrol_new wm9712_diff_sel_controls =
355SOC_DAPM_ENUM("Route", wm9712_enum[11]);
356
357static const struct snd_soc_dapm_widget wm9712_dapm_widgets[] = {
358SND_SOC_DAPM_MUX("ALC Sidetone Mux", SND_SOC_NOPM, 0, 0,
359 &wm9712_alc_mux_controls),
360SND_SOC_DAPM_MUX("Out3 Mux", SND_SOC_NOPM, 0, 0,
361 &wm9712_out3_mux_controls),
362SND_SOC_DAPM_MUX("Speaker Mux", SND_SOC_NOPM, 0, 0,
363 &wm9712_spk_mux_controls),
364SND_SOC_DAPM_MUX("Capture Phone Mux", SND_SOC_NOPM, 0, 0,
365 &wm9712_capture_phone_mux_controls),
366SND_SOC_DAPM_MUX("Left Capture Select", SND_SOC_NOPM, 0, 0,
367 &wm9712_capture_selectl_controls),
368SND_SOC_DAPM_MUX("Right Capture Select", SND_SOC_NOPM, 0, 0,
369 &wm9712_capture_selectr_controls),
Mark Brownccf79582012-08-16 22:36:04 +0100370SND_SOC_DAPM_MUX("Left Mic Select Source", SND_SOC_NOPM, 0, 0,
371 &wm9712_mic_src_controls),
372SND_SOC_DAPM_MUX("Right Mic Select Source", SND_SOC_NOPM, 0, 0,
Richard Purdie10c5cf32006-10-06 18:37:32 +0200373 &wm9712_mic_src_controls),
374SND_SOC_DAPM_MUX("Differential Source", SND_SOC_NOPM, 0, 0,
375 &wm9712_diff_sel_controls),
376SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100377SND_SOC_DAPM_MIXER("Left HP Mixer", AC97_INT_PAGING, 9, 1,
378 &wm9712_hpl_mixer_controls[0], ARRAY_SIZE(wm9712_hpl_mixer_controls)),
379SND_SOC_DAPM_MIXER("Right HP Mixer", AC97_INT_PAGING, 8, 1,
380 &wm9712_hpr_mixer_controls[0], ARRAY_SIZE(wm9712_hpr_mixer_controls)),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200381SND_SOC_DAPM_MIXER("Phone Mixer", AC97_INT_PAGING, 6, 1,
382 &wm9712_phone_mixer_controls[0], ARRAY_SIZE(wm9712_phone_mixer_controls)),
383SND_SOC_DAPM_MIXER("Speaker Mixer", AC97_INT_PAGING, 7, 1,
384 &wm9712_speaker_mixer_controls[0],
385 ARRAY_SIZE(wm9712_speaker_mixer_controls)),
386SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
387SND_SOC_DAPM_DAC("Left DAC", "Left HiFi Playback", AC97_INT_PAGING, 14, 1),
388SND_SOC_DAPM_DAC("Right DAC", "Right HiFi Playback", AC97_INT_PAGING, 13, 1),
389SND_SOC_DAPM_DAC("Aux DAC", "Aux Playback", SND_SOC_NOPM, 0, 0),
390SND_SOC_DAPM_ADC("Left ADC", "Left HiFi Capture", AC97_INT_PAGING, 12, 1),
391SND_SOC_DAPM_ADC("Right ADC", "Right HiFi Capture", AC97_INT_PAGING, 11, 1),
392SND_SOC_DAPM_PGA("Headphone PGA", AC97_INT_PAGING, 4, 1, NULL, 0),
393SND_SOC_DAPM_PGA("Speaker PGA", AC97_INT_PAGING, 3, 1, NULL, 0),
394SND_SOC_DAPM_PGA("Out 3 PGA", AC97_INT_PAGING, 5, 1, NULL, 0),
395SND_SOC_DAPM_PGA("Line PGA", AC97_INT_PAGING, 2, 1, NULL, 0),
396SND_SOC_DAPM_PGA("Phone PGA", AC97_INT_PAGING, 1, 1, NULL, 0),
397SND_SOC_DAPM_PGA("Mic PGA", AC97_INT_PAGING, 0, 1, NULL, 0),
Mark Brownccf79582012-08-16 22:36:04 +0100398SND_SOC_DAPM_PGA("Differential Mic", SND_SOC_NOPM, 0, 0, NULL, 0),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200399SND_SOC_DAPM_MICBIAS("Mic Bias", AC97_INT_PAGING, 10, 1),
400SND_SOC_DAPM_OUTPUT("MONOOUT"),
401SND_SOC_DAPM_OUTPUT("HPOUTL"),
402SND_SOC_DAPM_OUTPUT("HPOUTR"),
403SND_SOC_DAPM_OUTPUT("LOUT2"),
404SND_SOC_DAPM_OUTPUT("ROUT2"),
405SND_SOC_DAPM_OUTPUT("OUT3"),
406SND_SOC_DAPM_INPUT("LINEINL"),
407SND_SOC_DAPM_INPUT("LINEINR"),
408SND_SOC_DAPM_INPUT("PHONE"),
409SND_SOC_DAPM_INPUT("PCBEEP"),
410SND_SOC_DAPM_INPUT("MIC1"),
411SND_SOC_DAPM_INPUT("MIC2"),
412};
413
Lu Guanqun98334772011-03-30 21:53:12 +0800414static const struct snd_soc_dapm_route wm9712_audio_map[] = {
Richard Purdie10c5cf32006-10-06 18:37:32 +0200415 /* virtual mixer - mixes left & right channels for spk and mono */
416 {"AC97 Mixer", NULL, "Left DAC"},
417 {"AC97 Mixer", NULL, "Right DAC"},
418
419 /* Left HP mixer */
420 {"Left HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
421 {"Left HP Mixer", "Aux Playback Switch", "Aux DAC"},
422 {"Left HP Mixer", "Phone Bypass Switch", "Phone PGA"},
423 {"Left HP Mixer", "Line Bypass Switch", "Line PGA"},
424 {"Left HP Mixer", "PCM Playback Switch", "Left DAC"},
425 {"Left HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
426 {"Left HP Mixer", NULL, "ALC Sidetone Mux"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200427
428 /* Right HP mixer */
429 {"Right HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
430 {"Right HP Mixer", "Aux Playback Switch", "Aux DAC"},
431 {"Right HP Mixer", "Phone Bypass Switch", "Phone PGA"},
432 {"Right HP Mixer", "Line Bypass Switch", "Line PGA"},
433 {"Right HP Mixer", "PCM Playback Switch", "Right DAC"},
434 {"Right HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
435 {"Right HP Mixer", NULL, "ALC Sidetone Mux"},
436
437 /* speaker mixer */
438 {"Speaker Mixer", "PCBeep Bypass Switch", "PCBEEP"},
439 {"Speaker Mixer", "Line Bypass Switch", "Line PGA"},
440 {"Speaker Mixer", "PCM Playback Switch", "AC97 Mixer"},
441 {"Speaker Mixer", "Phone Bypass Switch", "Phone PGA"},
442 {"Speaker Mixer", "Aux Playback Switch", "Aux DAC"},
443
444 /* Phone mixer */
445 {"Phone Mixer", "PCBeep Bypass Switch", "PCBEEP"},
446 {"Phone Mixer", "Line Bypass Switch", "Line PGA"},
447 {"Phone Mixer", "Aux Playback Switch", "Aux DAC"},
448 {"Phone Mixer", "PCM Playback Switch", "AC97 Mixer"},
449 {"Phone Mixer", "Mic 1 Sidetone Switch", "Mic PGA"},
450 {"Phone Mixer", "Mic 2 Sidetone Switch", "Mic PGA"},
451
452 /* inputs */
453 {"Line PGA", NULL, "LINEINL"},
454 {"Line PGA", NULL, "LINEINR"},
455 {"Phone PGA", NULL, "PHONE"},
456 {"Mic PGA", NULL, "MIC1"},
457 {"Mic PGA", NULL, "MIC2"},
458
Mark Brownccf79582012-08-16 22:36:04 +0100459 /* microphones */
460 {"Differential Mic", NULL, "MIC1"},
461 {"Differential Mic", NULL, "MIC2"},
462 {"Left Mic Select Source", "Mic 1", "MIC1"},
463 {"Left Mic Select Source", "Mic 2", "MIC2"},
464 {"Left Mic Select Source", "Stereo", "MIC1"},
465 {"Left Mic Select Source", "Differential", "Differential Mic"},
466 {"Right Mic Select Source", "Mic 1", "MIC1"},
467 {"Right Mic Select Source", "Mic 2", "MIC2"},
468 {"Right Mic Select Source", "Stereo", "MIC2"},
469 {"Right Mic Select Source", "Differential", "Differential Mic"},
470
Richard Purdie10c5cf32006-10-06 18:37:32 +0200471 /* left capture selector */
472 {"Left Capture Select", "Mic", "MIC1"},
473 {"Left Capture Select", "Speaker Mixer", "Speaker Mixer"},
474 {"Left Capture Select", "Line", "LINEINL"},
475 {"Left Capture Select", "Headphone Mixer", "Left HP Mixer"},
476 {"Left Capture Select", "Phone Mixer", "Phone Mixer"},
477 {"Left Capture Select", "Phone", "PHONE"},
478
479 /* right capture selector */
480 {"Right Capture Select", "Mic", "MIC2"},
481 {"Right Capture Select", "Speaker Mixer", "Speaker Mixer"},
482 {"Right Capture Select", "Line", "LINEINR"},
483 {"Right Capture Select", "Headphone Mixer", "Right HP Mixer"},
484 {"Right Capture Select", "Phone Mixer", "Phone Mixer"},
485 {"Right Capture Select", "Phone", "PHONE"},
486
487 /* ALC Sidetone */
488 {"ALC Sidetone Mux", "Stereo", "Left Capture Select"},
489 {"ALC Sidetone Mux", "Stereo", "Right Capture Select"},
490 {"ALC Sidetone Mux", "Left", "Left Capture Select"},
491 {"ALC Sidetone Mux", "Right", "Right Capture Select"},
492
493 /* ADC's */
494 {"Left ADC", NULL, "Left Capture Select"},
495 {"Right ADC", NULL, "Right Capture Select"},
496
497 /* outputs */
498 {"MONOOUT", NULL, "Phone Mixer"},
499 {"HPOUTL", NULL, "Headphone PGA"},
500 {"Headphone PGA", NULL, "Left HP Mixer"},
501 {"HPOUTR", NULL, "Headphone PGA"},
502 {"Headphone PGA", NULL, "Right HP Mixer"},
503
Marek Vasut94324842008-07-20 17:36:20 +0200504 /* mono mixer */
505 {"Mono Mixer", NULL, "Left HP Mixer"},
506 {"Mono Mixer", NULL, "Right HP Mixer"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200507
508 /* Out3 Mux */
509 {"Out3 Mux", "Left", "Left HP Mixer"},
510 {"Out3 Mux", "Mono", "Phone Mixer"},
Marek Vasut94324842008-07-20 17:36:20 +0200511 {"Out3 Mux", "Left + Right", "Mono Mixer"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200512 {"Out 3 PGA", NULL, "Out3 Mux"},
513 {"OUT3", NULL, "Out 3 PGA"},
514
515 /* speaker Mux */
516 {"Speaker Mux", "Speaker Mix", "Speaker Mixer"},
Marek Vasut94324842008-07-20 17:36:20 +0200517 {"Speaker Mux", "Headphone Mix", "Mono Mixer"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200518 {"Speaker PGA", NULL, "Speaker Mux"},
519 {"LOUT2", NULL, "Speaker PGA"},
520 {"ROUT2", NULL, "Speaker PGA"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200521};
522
Mark Browndee89c42008-11-18 22:11:38 +0000523static int ac97_prepare(struct snd_pcm_substream *substream,
524 struct snd_soc_dai *dai)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200525{
Mark Browne6968a12012-04-04 15:58:16 +0100526 struct snd_soc_codec *codec = dai->codec;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200527 int reg;
Fabio Estevamb46ac302012-04-10 18:33:07 -0300528 struct snd_pcm_runtime *runtime = substream->runtime;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200529
Lars-Peter Clausen7e845e72016-09-30 19:27:30 +0200530 snd_soc_update_bits(codec, AC97_EXTENDED_STATUS, 0x1, 0x1);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200531
532 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
533 reg = AC97_PCM_FRONT_DAC_RATE;
534 else
535 reg = AC97_PCM_LR_ADC_RATE;
536
Lars-Peter Clausen7e845e72016-09-30 19:27:30 +0200537 return snd_soc_write(codec, reg, runtime->rate);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200538}
539
Mark Browndee89c42008-11-18 22:11:38 +0000540static int ac97_aux_prepare(struct snd_pcm_substream *substream,
541 struct snd_soc_dai *dai)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200542{
Mark Browne6968a12012-04-04 15:58:16 +0100543 struct snd_soc_codec *codec = dai->codec;
Fabio Estevamb46ac302012-04-10 18:33:07 -0300544 struct snd_pcm_runtime *runtime = substream->runtime;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200545
Lars-Peter Clausen7e845e72016-09-30 19:27:30 +0200546 snd_soc_update_bits(codec, AC97_EXTENDED_STATUS, 0x1, 0x1);
547 snd_soc_update_bits(codec, AC97_PCI_SID, 0x8000, 0x8000);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200548
549 if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
550 return -ENODEV;
551
Lars-Peter Clausen7e845e72016-09-30 19:27:30 +0200552 return snd_soc_write(codec, AC97_PCM_SURR_DAC_RATE, runtime->rate);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200553}
554
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100555#define WM9712_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown7e48bf62008-04-28 14:15:28 +0100556 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
557 SNDRV_PCM_RATE_48000)
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100558
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100559static const struct snd_soc_dai_ops wm9712_dai_ops_hifi = {
Eric Miao6335d052009-03-03 09:41:00 +0800560 .prepare = ac97_prepare,
561};
562
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100563static const struct snd_soc_dai_ops wm9712_dai_ops_aux = {
Eric Miao6335d052009-03-03 09:41:00 +0800564 .prepare = ac97_aux_prepare,
565};
566
Mark Brown0daaf7e2010-09-06 18:56:03 +0100567static struct snd_soc_dai_driver wm9712_dai[] = {
Richard Purdie10c5cf32006-10-06 18:37:32 +0200568{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000569 .name = "wm9712-hifi",
Richard Purdie10c5cf32006-10-06 18:37:32 +0200570 .playback = {
571 .stream_name = "HiFi Playback",
572 .channels_min = 1,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100573 .channels_max = 2,
574 .rates = WM9712_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +0100575 .formats = SND_SOC_STD_AC97_FMTS,},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200576 .capture = {
577 .stream_name = "HiFi Capture",
578 .channels_min = 1,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100579 .channels_max = 2,
580 .rates = WM9712_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +0100581 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +0800582 .ops = &wm9712_dai_ops_hifi,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100583},
584{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000585 .name = "wm9712-aux",
Richard Purdie10c5cf32006-10-06 18:37:32 +0200586 .playback = {
587 .stream_name = "Aux Playback",
588 .channels_min = 1,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100589 .channels_max = 1,
590 .rates = WM9712_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +0100591 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +0800592 .ops = &wm9712_dai_ops_aux,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100593}
Richard Purdie10c5cf32006-10-06 18:37:32 +0200594};
Richard Purdie10c5cf32006-10-06 18:37:32 +0200595
Mark Brown0be98982008-05-19 12:31:28 +0200596static int wm9712_set_bias_level(struct snd_soc_codec *codec,
597 enum snd_soc_bias_level level)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200598{
Mark Brown0be98982008-05-19 12:31:28 +0200599 switch (level) {
600 case SND_SOC_BIAS_ON:
601 case SND_SOC_BIAS_PREPARE:
Richard Purdie10c5cf32006-10-06 18:37:32 +0200602 break;
Mark Brown0be98982008-05-19 12:31:28 +0200603 case SND_SOC_BIAS_STANDBY:
Lars-Peter Clausen7e845e72016-09-30 19:27:30 +0200604 snd_soc_write(codec, AC97_POWERDOWN, 0x0000);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200605 break;
Mark Brown0be98982008-05-19 12:31:28 +0200606 case SND_SOC_BIAS_OFF:
Richard Purdie10c5cf32006-10-06 18:37:32 +0200607 /* disable everything including AC link */
Lars-Peter Clausen7e845e72016-09-30 19:27:30 +0200608 snd_soc_write(codec, AC97_EXTENDED_MSTATUS, 0xffff);
609 snd_soc_write(codec, AC97_POWERDOWN, 0xffff);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200610 break;
611 }
Richard Purdie10c5cf32006-10-06 18:37:32 +0200612 return 0;
613}
614
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000615static int wm9712_soc_resume(struct snd_soc_codec *codec)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200616{
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +0100617 struct wm9712_priv *wm9712 = snd_soc_codec_get_drvdata(codec);
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +0200618 int ret;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200619
Lars-Peter Clausena575be42015-07-21 21:53:05 +0200620 ret = snd_ac97_reset(wm9712->ac97, true, WM9712_VENDOR_ID,
621 WM9712_VENDOR_ID_MASK);
Lars-Peter Clausen12ced332014-10-30 21:01:05 +0100622 if (ret < 0)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200623 return ret;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200624
Lars-Peter Clausenbd1204c2015-04-27 22:13:24 +0200625 snd_soc_codec_force_bias_level(codec, SND_SOC_BIAS_STANDBY);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200626
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +0200627 if (ret == 0)
628 regcache_sync(codec->component.regmap);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200629
Richard Purdie10c5cf32006-10-06 18:37:32 +0200630 return ret;
631}
632
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000633static int wm9712_soc_probe(struct snd_soc_codec *codec)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200634{
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +0100635 struct wm9712_priv *wm9712 = snd_soc_codec_get_drvdata(codec);
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +0200636 struct regmap *regmap;
Lars-Peter Clausena575be42015-07-21 21:53:05 +0200637 int ret;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200638
Lars-Peter Clausena575be42015-07-21 21:53:05 +0200639 wm9712->ac97 = snd_soc_new_ac97_codec(codec, WM9712_VENDOR_ID,
640 WM9712_VENDOR_ID_MASK);
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +0100641 if (IS_ERR(wm9712->ac97)) {
642 ret = PTR_ERR(wm9712->ac97);
643 dev_err(codec->dev, "Failed to register AC97 codec: %d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000644 return ret;
Liam Girdwoode35115a2007-01-31 10:02:23 +0100645 }
Richard Purdie10c5cf32006-10-06 18:37:32 +0200646
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +0200647 regmap = regmap_init_ac97(wm9712->ac97, &wm9712_regmap_config);
648 if (IS_ERR(regmap)) {
649 ret = PTR_ERR(regmap);
650 goto err_free_ac97_codec;
651 }
652
653 snd_soc_codec_init_regmap(codec, regmap);
654
Richard Purdie10c5cf32006-10-06 18:37:32 +0200655 /* set alc mux to none */
Lars-Peter Clausen7e845e72016-09-30 19:27:30 +0200656 snd_soc_update_bits(codec, AC97_VIDEO, 0x3000, 0x3000);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200657
Richard Purdie10c5cf32006-10-06 18:37:32 +0200658 return 0;
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +0200659err_free_ac97_codec:
660 snd_soc_free_ac97_codec(wm9712->ac97);
661 return ret;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200662}
663
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000664static int wm9712_soc_remove(struct snd_soc_codec *codec)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200665{
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +0100666 struct wm9712_priv *wm9712 = snd_soc_codec_get_drvdata(codec);
667
Lars-Peter Clausenb4f4f2e2016-09-30 19:27:29 +0200668 snd_soc_codec_exit_regmap(codec);
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +0100669 snd_soc_free_ac97_codec(wm9712->ac97);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200670 return 0;
671}
672
Julia Lawallf802d6c2016-08-31 23:52:27 +0200673static const struct snd_soc_codec_driver soc_codec_dev_wm9712 = {
Richard Purdie10c5cf32006-10-06 18:37:32 +0200674 .probe = wm9712_soc_probe,
675 .remove = wm9712_soc_remove,
Richard Purdie10c5cf32006-10-06 18:37:32 +0200676 .resume = wm9712_soc_resume,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000677 .set_bias_level = wm9712_set_bias_level,
Lars-Peter Clausenab492b82014-11-23 13:37:47 +0100678 .suspend_bias_off = true,
Lars-Peter Clausen9a812c62014-10-30 21:01:06 +0100679
Kuninori Morimoto3123e542016-08-08 09:35:53 +0000680 .component_driver = {
681 .controls = wm9712_snd_ac97_controls,
682 .num_controls = ARRAY_SIZE(wm9712_snd_ac97_controls),
683 .dapm_widgets = wm9712_dapm_widgets,
684 .num_dapm_widgets = ARRAY_SIZE(wm9712_dapm_widgets),
685 .dapm_routes = wm9712_audio_map,
686 .num_dapm_routes = ARRAY_SIZE(wm9712_audio_map),
687 },
Richard Purdie10c5cf32006-10-06 18:37:32 +0200688};
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689
Bill Pemberton7a79e942012-12-07 09:26:37 -0500690static int wm9712_probe(struct platform_device *pdev)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000691{
Lars-Peter Clausencf1f2eb2014-11-03 19:33:03 +0100692 struct wm9712_priv *wm9712;
693
694 wm9712 = devm_kzalloc(&pdev->dev, sizeof(*wm9712), GFP_KERNEL);
695 if (wm9712 == NULL)
696 return -ENOMEM;
697
698 mutex_init(&wm9712->lock);
699
700 platform_set_drvdata(pdev, wm9712);
701
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000702 return snd_soc_register_codec(&pdev->dev,
703 &soc_codec_dev_wm9712, wm9712_dai, ARRAY_SIZE(wm9712_dai));
704}
705
Bill Pemberton7a79e942012-12-07 09:26:37 -0500706static int wm9712_remove(struct platform_device *pdev)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000707{
708 snd_soc_unregister_codec(&pdev->dev);
709 return 0;
710}
711
712static struct platform_driver wm9712_codec_driver = {
713 .driver = {
Mark Brown9a37eae2012-07-31 18:37:30 +0100714 .name = "wm9712-codec",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000715 },
716
717 .probe = wm9712_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500718 .remove = wm9712_remove,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000719};
720
Mark Brown5bbcc3c2011-11-23 22:52:08 +0000721module_platform_driver(wm9712_codec_driver);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200722
723MODULE_DESCRIPTION("ASoC WM9711/WM9712 driver");
724MODULE_AUTHOR("Liam Girdwood");
725MODULE_LICENSE("GPL");