blob: 0ac1215dcd9b5e3140b4fa662d44c91f4ec8bc30 [file] [log] [blame]
Richard Purdie10c5cf32006-10-06 18:37:32 +02001/*
2 * wm9712.c -- ALSA Soc WM9712 codec support
3 *
4 * Copyright 2006 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>
14#include <linux/module.h>
Richard Purdie10c5cf32006-10-06 18:37:32 +020015#include <linux/kernel.h>
16#include <linux/device.h>
Richard Purdie10c5cf32006-10-06 18:37:32 +020017#include <sound/core.h>
18#include <sound/pcm.h>
19#include <sound/ac97_codec.h>
20#include <sound/initval.h>
21#include <sound/soc.h>
22#include <sound/soc-dapm.h>
Mark Browndbac7cb2008-06-11 13:47:09 +010023#include "wm9712.h"
Richard Purdie10c5cf32006-10-06 18:37:32 +020024
25#define WM9712_VERSION "0.4"
26
27static unsigned int ac97_read(struct snd_soc_codec *codec,
28 unsigned int reg);
29static int ac97_write(struct snd_soc_codec *codec,
30 unsigned int reg, unsigned int val);
31
Richard Purdie10c5cf32006-10-06 18:37:32 +020032/*
33 * WM9712 register cache
34 */
35static const u16 wm9712_reg[] = {
Mark Brown7e48bf62008-04-28 14:15:28 +010036 0x6174, 0x8000, 0x8000, 0x8000, /* 6 */
37 0x0f0f, 0xaaa0, 0xc008, 0x6808, /* e */
38 0xe808, 0xaaa0, 0xad00, 0x8000, /* 16 */
39 0xe808, 0x3000, 0x8000, 0x0000, /* 1e */
40 0x0000, 0x0000, 0x0000, 0x000f, /* 26 */
41 0x0405, 0x0410, 0xbb80, 0xbb80, /* 2e */
42 0x0000, 0xbb80, 0x0000, 0x0000, /* 36 */
43 0x0000, 0x2000, 0x0000, 0x0000, /* 3e */
44 0x0000, 0x0000, 0x0000, 0x0000, /* 46 */
45 0x0000, 0x0000, 0xf83e, 0xffff, /* 4e */
46 0x0000, 0x0000, 0x0000, 0xf83e, /* 56 */
47 0x0008, 0x0000, 0x0000, 0x0000, /* 5e */
48 0xb032, 0x3e00, 0x0000, 0x0000, /* 66 */
49 0x0000, 0x0000, 0x0000, 0x0000, /* 6e */
50 0x0000, 0x0000, 0x0000, 0x0006, /* 76 */
51 0x0001, 0x0000, 0x574d, 0x4c12, /* 7e */
52 0x0000, 0x0000 /* virtual hp mixers */
Richard Purdie10c5cf32006-10-06 18:37:32 +020053};
54
55/* virtual HP mixers regs */
56#define HPL_MIXER 0x80
57#define HPR_MIXER 0x82
58
59static const char *wm9712_alc_select[] = {"None", "Left", "Right", "Stereo"};
60static const char *wm9712_alc_mux[] = {"Stereo", "Left", "Right", "None"};
61static const char *wm9712_out3_src[] = {"Left", "VREF", "Left + Right",
62 "Mono"};
63static const char *wm9712_spk_src[] = {"Speaker Mix", "Headphone Mix"};
64static const char *wm9712_rec_adc[] = {"Stereo", "Left", "Right", "Mute"};
65static const char *wm9712_base[] = {"Linear Control", "Adaptive Boost"};
66static const char *wm9712_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
67static const char *wm9712_mic[] = {"Mic 1", "Differential", "Mic 2",
68 "Stereo"};
69static const char *wm9712_rec_sel[] = {"Mic", "NC", "NC", "Speaker Mixer",
70 "Line", "Headphone Mixer", "Phone Mixer", "Phone"};
71static const char *wm9712_ng_type[] = {"Constant Gain", "Mute"};
72static const char *wm9712_diff_sel[] = {"Mic", "Line"};
73
74static const struct soc_enum wm9712_enum[] = {
75SOC_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9712_alc_select),
76SOC_ENUM_SINGLE(AC97_VIDEO, 12, 4, wm9712_alc_mux),
77SOC_ENUM_SINGLE(AC97_AUX, 9, 4, wm9712_out3_src),
78SOC_ENUM_SINGLE(AC97_AUX, 8, 2, wm9712_spk_src),
79SOC_ENUM_SINGLE(AC97_REC_SEL, 12, 4, wm9712_rec_adc),
80SOC_ENUM_SINGLE(AC97_MASTER_TONE, 15, 2, wm9712_base),
81SOC_ENUM_DOUBLE(AC97_REC_GAIN, 14, 6, 2, wm9712_rec_gain),
82SOC_ENUM_SINGLE(AC97_MIC, 5, 4, wm9712_mic),
83SOC_ENUM_SINGLE(AC97_REC_SEL, 8, 8, wm9712_rec_sel),
84SOC_ENUM_SINGLE(AC97_REC_SEL, 0, 8, wm9712_rec_sel),
85SOC_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9712_ng_type),
86SOC_ENUM_SINGLE(0x5c, 8, 2, wm9712_diff_sel),
87};
88
89static const struct snd_kcontrol_new wm9712_snd_ac97_controls[] = {
90SOC_DOUBLE("Speaker Playback Volume", AC97_MASTER, 8, 0, 31, 1),
91SOC_SINGLE("Speaker Playback Switch", AC97_MASTER, 15, 1, 1),
92SOC_DOUBLE("Headphone Playback Volume", AC97_HEADPHONE, 8, 0, 31, 1),
Mark Brown7e48bf62008-04-28 14:15:28 +010093SOC_SINGLE("Headphone Playback Switch", AC97_HEADPHONE, 15, 1, 1),
Liam Girdwood53ae5192007-02-14 15:23:57 +010094SOC_DOUBLE("PCM Playback Volume", AC97_PCM, 8, 0, 31, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +020095
96SOC_SINGLE("Speaker Playback ZC Switch", AC97_MASTER, 7, 1, 0),
97SOC_SINGLE("Speaker Playback Invert Switch", AC97_MASTER, 6, 1, 0),
98SOC_SINGLE("Headphone Playback ZC Switch", AC97_HEADPHONE, 7, 1, 0),
99SOC_SINGLE("Mono Playback ZC Switch", AC97_MASTER_MONO, 7, 1, 0),
Mike Rapoport18fe4ac2007-10-22 17:41:08 +0200100SOC_SINGLE("Mono Playback Volume", AC97_MASTER_MONO, 0, 31, 1),
101SOC_SINGLE("Mono Playback Switch", AC97_MASTER_MONO, 15, 1, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200102
103SOC_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
104SOC_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
105SOC_SINGLE("ALC Decay Time", AC97_CODEC_CLASS_REV, 4, 15, 0),
106SOC_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
107SOC_ENUM("ALC Function", wm9712_enum[0]),
108SOC_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 0),
109SOC_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 1),
110SOC_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
111SOC_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
112SOC_ENUM("ALC NG Type", wm9712_enum[10]),
113SOC_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 1),
114
115SOC_SINGLE("Mic Headphone Volume", AC97_VIDEO, 12, 7, 1),
116SOC_SINGLE("ALC Headphone Volume", AC97_VIDEO, 7, 7, 1),
117
118SOC_SINGLE("Out3 Switch", AC97_AUX, 15, 1, 1),
119SOC_SINGLE("Out3 ZC Switch", AC97_AUX, 7, 1, 1),
120SOC_SINGLE("Out3 Volume", AC97_AUX, 0, 31, 1),
121
122SOC_SINGLE("PCBeep Bypass Headphone Volume", AC97_PC_BEEP, 12, 7, 1),
123SOC_SINGLE("PCBeep Bypass Speaker Volume", AC97_PC_BEEP, 8, 7, 1),
124SOC_SINGLE("PCBeep Bypass Phone Volume", AC97_PC_BEEP, 4, 7, 1),
125
126SOC_SINGLE("Aux Playback Headphone Volume", AC97_CD, 12, 7, 1),
127SOC_SINGLE("Aux Playback Speaker Volume", AC97_CD, 8, 7, 1),
128SOC_SINGLE("Aux Playback Phone Volume", AC97_CD, 4, 7, 1),
129
Joe Sauer7570f292008-01-10 14:34:56 +0100130SOC_SINGLE("Phone Volume", AC97_PHONE, 0, 15, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200131SOC_DOUBLE("Line Capture Volume", AC97_LINE, 8, 0, 31, 1),
132
133SOC_SINGLE("Capture 20dB Boost Switch", AC97_REC_SEL, 14, 1, 0),
134SOC_SINGLE("Capture to Phone 20dB Boost Switch", AC97_REC_SEL, 11, 1, 1),
135
136SOC_SINGLE("3D Upper Cut-off Switch", AC97_3D_CONTROL, 5, 1, 1),
137SOC_SINGLE("3D Lower Cut-off Switch", AC97_3D_CONTROL, 4, 1, 1),
138SOC_SINGLE("3D Playback Volume", AC97_3D_CONTROL, 0, 15, 0),
139
140SOC_ENUM("Bass Control", wm9712_enum[5]),
141SOC_SINGLE("Bass Cut-off Switch", AC97_MASTER_TONE, 12, 1, 1),
142SOC_SINGLE("Tone Cut-off Switch", AC97_MASTER_TONE, 4, 1, 1),
143SOC_SINGLE("Playback Attenuate (-6dB) Switch", AC97_MASTER_TONE, 6, 1, 0),
Mike Rapoport18fe4ac2007-10-22 17:41:08 +0200144SOC_SINGLE("Bass Volume", AC97_MASTER_TONE, 8, 15, 1),
145SOC_SINGLE("Treble Volume", AC97_MASTER_TONE, 0, 15, 1),
Richard Purdie10c5cf32006-10-06 18:37:32 +0200146
147SOC_SINGLE("Capture ADC Switch", AC97_REC_GAIN, 15, 1, 1),
148SOC_ENUM("Capture Volume Steps", wm9712_enum[6]),
149SOC_DOUBLE("Capture Volume", AC97_REC_GAIN, 8, 0, 63, 1),
150SOC_SINGLE("Capture ZC Switch", AC97_REC_GAIN, 7, 1, 0),
151
152SOC_SINGLE("Mic 1 Volume", AC97_MIC, 8, 31, 1),
153SOC_SINGLE("Mic 2 Volume", AC97_MIC, 0, 31, 1),
154SOC_SINGLE("Mic 20dB Boost Switch", AC97_MIC, 7, 1, 0),
155};
156
Richard Purdie10c5cf32006-10-06 18:37:32 +0200157/* We have to create a fake left and right HP mixers because
158 * the codec only has a single control that is shared by both channels.
159 * This makes it impossible to determine the audio path.
160 */
Jarkko Nikula3fffe872008-02-28 12:35:25 +0100161static int mixer_event(struct snd_soc_dapm_widget *w,
162 struct snd_kcontrol *k, int event)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200163{
164 u16 l, r, beep, line, phone, mic, pcm, aux;
165
166 l = ac97_read(w->codec, HPL_MIXER);
167 r = ac97_read(w->codec, HPR_MIXER);
168 beep = ac97_read(w->codec, AC97_PC_BEEP);
169 mic = ac97_read(w->codec, AC97_VIDEO);
170 phone = ac97_read(w->codec, AC97_PHONE);
171 line = ac97_read(w->codec, AC97_LINE);
172 pcm = ac97_read(w->codec, AC97_PCM);
173 aux = ac97_read(w->codec, AC97_CD);
174
175 if (l & 0x1 || r & 0x1)
176 ac97_write(w->codec, AC97_VIDEO, mic & 0x7fff);
177 else
178 ac97_write(w->codec, AC97_VIDEO, mic | 0x8000);
179
180 if (l & 0x2 || r & 0x2)
181 ac97_write(w->codec, AC97_PCM, pcm & 0x7fff);
182 else
183 ac97_write(w->codec, AC97_PCM, pcm | 0x8000);
184
185 if (l & 0x4 || r & 0x4)
186 ac97_write(w->codec, AC97_LINE, line & 0x7fff);
187 else
188 ac97_write(w->codec, AC97_LINE, line | 0x8000);
189
190 if (l & 0x8 || r & 0x8)
191 ac97_write(w->codec, AC97_PHONE, phone & 0x7fff);
192 else
193 ac97_write(w->codec, AC97_PHONE, phone | 0x8000);
194
195 if (l & 0x10 || r & 0x10)
196 ac97_write(w->codec, AC97_CD, aux & 0x7fff);
197 else
198 ac97_write(w->codec, AC97_CD, aux | 0x8000);
199
200 if (l & 0x20 || r & 0x20)
201 ac97_write(w->codec, AC97_PC_BEEP, beep & 0x7fff);
202 else
203 ac97_write(w->codec, AC97_PC_BEEP, beep | 0x8000);
204
205 return 0;
206}
207
208/* Left Headphone Mixers */
209static const struct snd_kcontrol_new wm9712_hpl_mixer_controls[] = {
210 SOC_DAPM_SINGLE("PCBeep Bypass Switch", HPL_MIXER, 5, 1, 0),
211 SOC_DAPM_SINGLE("Aux Playback Switch", HPL_MIXER, 4, 1, 0),
212 SOC_DAPM_SINGLE("Phone Bypass Switch", HPL_MIXER, 3, 1, 0),
213 SOC_DAPM_SINGLE("Line Bypass Switch", HPL_MIXER, 2, 1, 0),
214 SOC_DAPM_SINGLE("PCM Playback Switch", HPL_MIXER, 1, 1, 0),
215 SOC_DAPM_SINGLE("Mic Sidetone Switch", HPL_MIXER, 0, 1, 0),
216};
217
218/* Right Headphone Mixers */
219static const struct snd_kcontrol_new wm9712_hpr_mixer_controls[] = {
220 SOC_DAPM_SINGLE("PCBeep Bypass Switch", HPR_MIXER, 5, 1, 0),
221 SOC_DAPM_SINGLE("Aux Playback Switch", HPR_MIXER, 4, 1, 0),
222 SOC_DAPM_SINGLE("Phone Bypass Switch", HPR_MIXER, 3, 1, 0),
223 SOC_DAPM_SINGLE("Line Bypass Switch", HPR_MIXER, 2, 1, 0),
224 SOC_DAPM_SINGLE("PCM Playback Switch", HPR_MIXER, 1, 1, 0),
225 SOC_DAPM_SINGLE("Mic Sidetone Switch", HPR_MIXER, 0, 1, 0),
226};
227
228/* Speaker Mixer */
229static const struct snd_kcontrol_new wm9712_speaker_mixer_controls[] = {
230 SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 11, 1, 1),
231 SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 11, 1, 1),
232 SOC_DAPM_SINGLE("Phone Bypass Switch", AC97_PHONE, 14, 1, 1),
233 SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 14, 1, 1),
234 SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 14, 1, 1),
235};
236
237/* Phone Mixer */
238static const struct snd_kcontrol_new wm9712_phone_mixer_controls[] = {
239 SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 7, 1, 1),
240 SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 7, 1, 1),
241 SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 13, 1, 1),
242 SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 13, 1, 1),
243 SOC_DAPM_SINGLE("Mic 1 Sidetone Switch", AC97_MIC, 14, 1, 1),
244 SOC_DAPM_SINGLE("Mic 2 Sidetone Switch", AC97_MIC, 13, 1, 1),
245};
246
247/* ALC headphone mux */
248static const struct snd_kcontrol_new wm9712_alc_mux_controls =
249SOC_DAPM_ENUM("Route", wm9712_enum[1]);
250
251/* out 3 mux */
252static const struct snd_kcontrol_new wm9712_out3_mux_controls =
253SOC_DAPM_ENUM("Route", wm9712_enum[2]);
254
255/* spk mux */
256static const struct snd_kcontrol_new wm9712_spk_mux_controls =
257SOC_DAPM_ENUM("Route", wm9712_enum[3]);
258
259/* Capture to Phone mux */
260static const struct snd_kcontrol_new wm9712_capture_phone_mux_controls =
261SOC_DAPM_ENUM("Route", wm9712_enum[4]);
262
263/* Capture left select */
264static const struct snd_kcontrol_new wm9712_capture_selectl_controls =
265SOC_DAPM_ENUM("Route", wm9712_enum[8]);
266
267/* Capture right select */
268static const struct snd_kcontrol_new wm9712_capture_selectr_controls =
269SOC_DAPM_ENUM("Route", wm9712_enum[9]);
270
271/* Mic select */
272static const struct snd_kcontrol_new wm9712_mic_src_controls =
273SOC_DAPM_ENUM("Route", wm9712_enum[7]);
274
275/* diff select */
276static const struct snd_kcontrol_new wm9712_diff_sel_controls =
277SOC_DAPM_ENUM("Route", wm9712_enum[11]);
278
279static const struct snd_soc_dapm_widget wm9712_dapm_widgets[] = {
280SND_SOC_DAPM_MUX("ALC Sidetone Mux", SND_SOC_NOPM, 0, 0,
281 &wm9712_alc_mux_controls),
282SND_SOC_DAPM_MUX("Out3 Mux", SND_SOC_NOPM, 0, 0,
283 &wm9712_out3_mux_controls),
284SND_SOC_DAPM_MUX("Speaker Mux", SND_SOC_NOPM, 0, 0,
285 &wm9712_spk_mux_controls),
286SND_SOC_DAPM_MUX("Capture Phone Mux", SND_SOC_NOPM, 0, 0,
287 &wm9712_capture_phone_mux_controls),
288SND_SOC_DAPM_MUX("Left Capture Select", SND_SOC_NOPM, 0, 0,
289 &wm9712_capture_selectl_controls),
290SND_SOC_DAPM_MUX("Right Capture Select", SND_SOC_NOPM, 0, 0,
291 &wm9712_capture_selectr_controls),
292SND_SOC_DAPM_MUX("Mic Select Source", SND_SOC_NOPM, 0, 0,
293 &wm9712_mic_src_controls),
294SND_SOC_DAPM_MUX("Differential Source", SND_SOC_NOPM, 0, 0,
295 &wm9712_diff_sel_controls),
296SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
297SND_SOC_DAPM_MIXER_E("Left HP Mixer", AC97_INT_PAGING, 9, 1,
298 &wm9712_hpl_mixer_controls[0], ARRAY_SIZE(wm9712_hpl_mixer_controls),
299 mixer_event, SND_SOC_DAPM_POST_REG),
300SND_SOC_DAPM_MIXER_E("Right HP Mixer", AC97_INT_PAGING, 8, 1,
301 &wm9712_hpr_mixer_controls[0], ARRAY_SIZE(wm9712_hpr_mixer_controls),
302 mixer_event, SND_SOC_DAPM_POST_REG),
303SND_SOC_DAPM_MIXER("Phone Mixer", AC97_INT_PAGING, 6, 1,
304 &wm9712_phone_mixer_controls[0], ARRAY_SIZE(wm9712_phone_mixer_controls)),
305SND_SOC_DAPM_MIXER("Speaker Mixer", AC97_INT_PAGING, 7, 1,
306 &wm9712_speaker_mixer_controls[0],
307 ARRAY_SIZE(wm9712_speaker_mixer_controls)),
308SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
309SND_SOC_DAPM_DAC("Left DAC", "Left HiFi Playback", AC97_INT_PAGING, 14, 1),
310SND_SOC_DAPM_DAC("Right DAC", "Right HiFi Playback", AC97_INT_PAGING, 13, 1),
311SND_SOC_DAPM_DAC("Aux DAC", "Aux Playback", SND_SOC_NOPM, 0, 0),
312SND_SOC_DAPM_ADC("Left ADC", "Left HiFi Capture", AC97_INT_PAGING, 12, 1),
313SND_SOC_DAPM_ADC("Right ADC", "Right HiFi Capture", AC97_INT_PAGING, 11, 1),
314SND_SOC_DAPM_PGA("Headphone PGA", AC97_INT_PAGING, 4, 1, NULL, 0),
315SND_SOC_DAPM_PGA("Speaker PGA", AC97_INT_PAGING, 3, 1, NULL, 0),
316SND_SOC_DAPM_PGA("Out 3 PGA", AC97_INT_PAGING, 5, 1, NULL, 0),
317SND_SOC_DAPM_PGA("Line PGA", AC97_INT_PAGING, 2, 1, NULL, 0),
318SND_SOC_DAPM_PGA("Phone PGA", AC97_INT_PAGING, 1, 1, NULL, 0),
319SND_SOC_DAPM_PGA("Mic PGA", AC97_INT_PAGING, 0, 1, NULL, 0),
320SND_SOC_DAPM_MICBIAS("Mic Bias", AC97_INT_PAGING, 10, 1),
321SND_SOC_DAPM_OUTPUT("MONOOUT"),
322SND_SOC_DAPM_OUTPUT("HPOUTL"),
323SND_SOC_DAPM_OUTPUT("HPOUTR"),
324SND_SOC_DAPM_OUTPUT("LOUT2"),
325SND_SOC_DAPM_OUTPUT("ROUT2"),
326SND_SOC_DAPM_OUTPUT("OUT3"),
327SND_SOC_DAPM_INPUT("LINEINL"),
328SND_SOC_DAPM_INPUT("LINEINR"),
329SND_SOC_DAPM_INPUT("PHONE"),
330SND_SOC_DAPM_INPUT("PCBEEP"),
331SND_SOC_DAPM_INPUT("MIC1"),
332SND_SOC_DAPM_INPUT("MIC2"),
333};
334
Mark Browna65f0562008-05-13 14:54:43 +0200335static const struct snd_soc_dapm_route audio_map[] = {
Richard Purdie10c5cf32006-10-06 18:37:32 +0200336 /* virtual mixer - mixes left & right channels for spk and mono */
337 {"AC97 Mixer", NULL, "Left DAC"},
338 {"AC97 Mixer", NULL, "Right DAC"},
339
340 /* Left HP mixer */
341 {"Left HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
342 {"Left HP Mixer", "Aux Playback Switch", "Aux DAC"},
343 {"Left HP Mixer", "Phone Bypass Switch", "Phone PGA"},
344 {"Left HP Mixer", "Line Bypass Switch", "Line PGA"},
345 {"Left HP Mixer", "PCM Playback Switch", "Left DAC"},
346 {"Left HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
347 {"Left HP Mixer", NULL, "ALC Sidetone Mux"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200348
349 /* Right HP mixer */
350 {"Right HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
351 {"Right HP Mixer", "Aux Playback Switch", "Aux DAC"},
352 {"Right HP Mixer", "Phone Bypass Switch", "Phone PGA"},
353 {"Right HP Mixer", "Line Bypass Switch", "Line PGA"},
354 {"Right HP Mixer", "PCM Playback Switch", "Right DAC"},
355 {"Right HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
356 {"Right HP Mixer", NULL, "ALC Sidetone Mux"},
357
358 /* speaker mixer */
359 {"Speaker Mixer", "PCBeep Bypass Switch", "PCBEEP"},
360 {"Speaker Mixer", "Line Bypass Switch", "Line PGA"},
361 {"Speaker Mixer", "PCM Playback Switch", "AC97 Mixer"},
362 {"Speaker Mixer", "Phone Bypass Switch", "Phone PGA"},
363 {"Speaker Mixer", "Aux Playback Switch", "Aux DAC"},
364
365 /* Phone mixer */
366 {"Phone Mixer", "PCBeep Bypass Switch", "PCBEEP"},
367 {"Phone Mixer", "Line Bypass Switch", "Line PGA"},
368 {"Phone Mixer", "Aux Playback Switch", "Aux DAC"},
369 {"Phone Mixer", "PCM Playback Switch", "AC97 Mixer"},
370 {"Phone Mixer", "Mic 1 Sidetone Switch", "Mic PGA"},
371 {"Phone Mixer", "Mic 2 Sidetone Switch", "Mic PGA"},
372
373 /* inputs */
374 {"Line PGA", NULL, "LINEINL"},
375 {"Line PGA", NULL, "LINEINR"},
376 {"Phone PGA", NULL, "PHONE"},
377 {"Mic PGA", NULL, "MIC1"},
378 {"Mic PGA", NULL, "MIC2"},
379
380 /* left capture selector */
381 {"Left Capture Select", "Mic", "MIC1"},
382 {"Left Capture Select", "Speaker Mixer", "Speaker Mixer"},
383 {"Left Capture Select", "Line", "LINEINL"},
384 {"Left Capture Select", "Headphone Mixer", "Left HP Mixer"},
385 {"Left Capture Select", "Phone Mixer", "Phone Mixer"},
386 {"Left Capture Select", "Phone", "PHONE"},
387
388 /* right capture selector */
389 {"Right Capture Select", "Mic", "MIC2"},
390 {"Right Capture Select", "Speaker Mixer", "Speaker Mixer"},
391 {"Right Capture Select", "Line", "LINEINR"},
392 {"Right Capture Select", "Headphone Mixer", "Right HP Mixer"},
393 {"Right Capture Select", "Phone Mixer", "Phone Mixer"},
394 {"Right Capture Select", "Phone", "PHONE"},
395
396 /* ALC Sidetone */
397 {"ALC Sidetone Mux", "Stereo", "Left Capture Select"},
398 {"ALC Sidetone Mux", "Stereo", "Right Capture Select"},
399 {"ALC Sidetone Mux", "Left", "Left Capture Select"},
400 {"ALC Sidetone Mux", "Right", "Right Capture Select"},
401
402 /* ADC's */
403 {"Left ADC", NULL, "Left Capture Select"},
404 {"Right ADC", NULL, "Right Capture Select"},
405
406 /* outputs */
407 {"MONOOUT", NULL, "Phone Mixer"},
408 {"HPOUTL", NULL, "Headphone PGA"},
409 {"Headphone PGA", NULL, "Left HP Mixer"},
410 {"HPOUTR", NULL, "Headphone PGA"},
411 {"Headphone PGA", NULL, "Right HP Mixer"},
412
Marek Vasut94324842008-07-20 17:36:20 +0200413 /* mono mixer */
414 {"Mono Mixer", NULL, "Left HP Mixer"},
415 {"Mono Mixer", NULL, "Right HP Mixer"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200416
417 /* Out3 Mux */
418 {"Out3 Mux", "Left", "Left HP Mixer"},
419 {"Out3 Mux", "Mono", "Phone Mixer"},
Marek Vasut94324842008-07-20 17:36:20 +0200420 {"Out3 Mux", "Left + Right", "Mono Mixer"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200421 {"Out 3 PGA", NULL, "Out3 Mux"},
422 {"OUT3", NULL, "Out 3 PGA"},
423
424 /* speaker Mux */
425 {"Speaker Mux", "Speaker Mix", "Speaker Mixer"},
Marek Vasut94324842008-07-20 17:36:20 +0200426 {"Speaker Mux", "Headphone Mix", "Mono Mixer"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200427 {"Speaker PGA", NULL, "Speaker Mux"},
428 {"LOUT2", NULL, "Speaker PGA"},
429 {"ROUT2", NULL, "Speaker PGA"},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200430};
431
432static int wm9712_add_widgets(struct snd_soc_codec *codec)
433{
Mark Browna65f0562008-05-13 14:54:43 +0200434 snd_soc_dapm_new_controls(codec, wm9712_dapm_widgets,
435 ARRAY_SIZE(wm9712_dapm_widgets));
Richard Purdie10c5cf32006-10-06 18:37:32 +0200436
Mark Browna65f0562008-05-13 14:54:43 +0200437 snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
Richard Purdie10c5cf32006-10-06 18:37:32 +0200438
Richard Purdie10c5cf32006-10-06 18:37:32 +0200439 return 0;
440}
441
442static unsigned int ac97_read(struct snd_soc_codec *codec,
443 unsigned int reg)
444{
445 u16 *cache = codec->reg_cache;
446
447 if (reg == AC97_RESET || reg == AC97_GPIO_STATUS ||
448 reg == AC97_VENDOR_ID1 || reg == AC97_VENDOR_ID2 ||
449 reg == AC97_REC_GAIN)
450 return soc_ac97_ops.read(codec->ac97, reg);
451 else {
452 reg = reg >> 1;
453
Ian Molton91432e92009-01-17 17:44:23 +0000454 if (reg >= (ARRAY_SIZE(wm9712_reg)))
Richard Purdie10c5cf32006-10-06 18:37:32 +0200455 return -EIO;
456
457 return cache[reg];
458 }
459}
460
461static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
462 unsigned int val)
463{
464 u16 *cache = codec->reg_cache;
465
466 soc_ac97_ops.write(codec->ac97, reg, val);
467 reg = reg >> 1;
Ian Molton91432e92009-01-17 17:44:23 +0000468 if (reg < (ARRAY_SIZE(wm9712_reg)))
Richard Purdie10c5cf32006-10-06 18:37:32 +0200469 cache[reg] = val;
470
471 return 0;
472}
473
Mark Browndee89c42008-11-18 22:11:38 +0000474static int ac97_prepare(struct snd_pcm_substream *substream,
475 struct snd_soc_dai *dai)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200476{
477 struct snd_pcm_runtime *runtime = substream->runtime;
478 struct snd_soc_pcm_runtime *rtd = substream->private_data;
479 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown6627a652009-01-23 22:55:23 +0000480 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200481 int reg;
482 u16 vra;
483
484 vra = ac97_read(codec, AC97_EXTENDED_STATUS);
485 ac97_write(codec, AC97_EXTENDED_STATUS, vra | 0x1);
486
487 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
488 reg = AC97_PCM_FRONT_DAC_RATE;
489 else
490 reg = AC97_PCM_LR_ADC_RATE;
491
492 return ac97_write(codec, reg, runtime->rate);
493}
494
Mark Browndee89c42008-11-18 22:11:38 +0000495static int ac97_aux_prepare(struct snd_pcm_substream *substream,
496 struct snd_soc_dai *dai)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200497{
498 struct snd_pcm_runtime *runtime = substream->runtime;
499 struct snd_soc_pcm_runtime *rtd = substream->private_data;
500 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown6627a652009-01-23 22:55:23 +0000501 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200502 u16 vra, xsle;
503
504 vra = ac97_read(codec, AC97_EXTENDED_STATUS);
505 ac97_write(codec, AC97_EXTENDED_STATUS, vra | 0x1);
506 xsle = ac97_read(codec, AC97_PCI_SID);
507 ac97_write(codec, AC97_PCI_SID, xsle | 0x8000);
508
509 if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
510 return -ENODEV;
511
512 return ac97_write(codec, AC97_PCM_SURR_DAC_RATE, runtime->rate);
513}
514
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100515#define WM9712_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown7e48bf62008-04-28 14:15:28 +0100516 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
517 SNDRV_PCM_RATE_48000)
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100518
Eric Miao6335d052009-03-03 09:41:00 +0800519static struct snd_soc_dai_ops wm9712_dai_ops_hifi = {
520 .prepare = ac97_prepare,
521};
522
523static struct snd_soc_dai_ops wm9712_dai_ops_aux = {
524 .prepare = ac97_aux_prepare,
525};
526
Liam Girdwoode550e172008-07-07 16:07:52 +0100527struct snd_soc_dai wm9712_dai[] = {
Richard Purdie10c5cf32006-10-06 18:37:32 +0200528{
529 .name = "AC97 HiFi",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000530 .ac97_control = 1,
Richard Purdie10c5cf32006-10-06 18:37:32 +0200531 .playback = {
532 .stream_name = "HiFi Playback",
533 .channels_min = 1,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100534 .channels_max = 2,
535 .rates = WM9712_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +0100536 .formats = SND_SOC_STD_AC97_FMTS,},
Richard Purdie10c5cf32006-10-06 18:37:32 +0200537 .capture = {
538 .stream_name = "HiFi Capture",
539 .channels_min = 1,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100540 .channels_max = 2,
541 .rates = WM9712_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +0100542 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +0800543 .ops = &wm9712_dai_ops_hifi,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100544},
545{
Richard Purdie10c5cf32006-10-06 18:37:32 +0200546 .name = "AC97 Aux",
547 .playback = {
548 .stream_name = "Aux Playback",
549 .channels_min = 1,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100550 .channels_max = 1,
551 .rates = WM9712_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +0100552 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +0800553 .ops = &wm9712_dai_ops_aux,
Liam Girdwoodcbe83b12007-02-02 17:16:02 +0100554}
Richard Purdie10c5cf32006-10-06 18:37:32 +0200555};
556EXPORT_SYMBOL_GPL(wm9712_dai);
557
Mark Brown0be98982008-05-19 12:31:28 +0200558static int wm9712_set_bias_level(struct snd_soc_codec *codec,
559 enum snd_soc_bias_level level)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200560{
Mark Brown0be98982008-05-19 12:31:28 +0200561 switch (level) {
562 case SND_SOC_BIAS_ON:
563 case SND_SOC_BIAS_PREPARE:
Richard Purdie10c5cf32006-10-06 18:37:32 +0200564 break;
Mark Brown0be98982008-05-19 12:31:28 +0200565 case SND_SOC_BIAS_STANDBY:
Richard Purdie10c5cf32006-10-06 18:37:32 +0200566 ac97_write(codec, AC97_POWERDOWN, 0x0000);
567 break;
Mark Brown0be98982008-05-19 12:31:28 +0200568 case SND_SOC_BIAS_OFF:
Richard Purdie10c5cf32006-10-06 18:37:32 +0200569 /* disable everything including AC link */
Richard Purdie10c5cf32006-10-06 18:37:32 +0200570 ac97_write(codec, AC97_EXTENDED_MSTATUS, 0xffff);
571 ac97_write(codec, AC97_POWERDOWN, 0xffff);
572 break;
573 }
Mark Brown0be98982008-05-19 12:31:28 +0200574 codec->bias_level = level;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200575 return 0;
576}
577
578static int wm9712_reset(struct snd_soc_codec *codec, int try_warm)
579{
580 if (try_warm && soc_ac97_ops.warm_reset) {
581 soc_ac97_ops.warm_reset(codec->ac97);
Mark Brownabb68c262008-06-13 16:24:04 +0100582 if (ac97_read(codec, 0) == wm9712_reg[0])
Richard Purdie10c5cf32006-10-06 18:37:32 +0200583 return 1;
584 }
585
586 soc_ac97_ops.reset(codec->ac97);
Marek Vasut63c26ba2009-05-14 20:52:46 +0100587 if (soc_ac97_ops.warm_reset)
588 soc_ac97_ops.warm_reset(codec->ac97);
Mark Brownabb68c262008-06-13 16:24:04 +0100589 if (ac97_read(codec, 0) != wm9712_reg[0])
Richard Purdie10c5cf32006-10-06 18:37:32 +0200590 goto err;
591 return 0;
592
593err:
594 printk(KERN_ERR "WM9712 AC97 reset failed\n");
595 return -EIO;
596}
597
598static int wm9712_soc_suspend(struct platform_device *pdev,
599 pm_message_t state)
600{
601 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +0000602 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200603
Mark Brown0be98982008-05-19 12:31:28 +0200604 wm9712_set_bias_level(codec, SND_SOC_BIAS_OFF);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200605 return 0;
606}
607
608static int wm9712_soc_resume(struct platform_device *pdev)
609{
610 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +0000611 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200612 int i, ret;
613 u16 *cache = codec->reg_cache;
614
615 ret = wm9712_reset(codec, 1);
Mark Brown7e48bf62008-04-28 14:15:28 +0100616 if (ret < 0) {
Richard Purdie10c5cf32006-10-06 18:37:32 +0200617 printk(KERN_ERR "could not reset AC97 codec\n");
618 return ret;
619 }
620
Mark Brown0be98982008-05-19 12:31:28 +0200621 wm9712_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200622
623 if (ret == 0) {
624 /* Sync reg_cache with the hardware after cold reset */
Mark Brown7e48bf62008-04-28 14:15:28 +0100625 for (i = 2; i < ARRAY_SIZE(wm9712_reg) << 1; i += 2) {
Richard Purdie10c5cf32006-10-06 18:37:32 +0200626 if (i == AC97_INT_PAGING || i == AC97_POWERDOWN ||
Mark Brown7e48bf62008-04-28 14:15:28 +0100627 (i > 0x58 && i != 0x5c))
Richard Purdie10c5cf32006-10-06 18:37:32 +0200628 continue;
629 soc_ac97_ops.write(codec->ac97, i, cache[i>>1]);
630 }
631 }
632
Mark Brown0be98982008-05-19 12:31:28 +0200633 if (codec->suspend_bias_level == SND_SOC_BIAS_ON)
634 wm9712_set_bias_level(codec, SND_SOC_BIAS_ON);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200635
636 return ret;
637}
638
639static int wm9712_soc_probe(struct platform_device *pdev)
640{
641 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
642 struct snd_soc_codec *codec;
643 int ret = 0;
644
645 printk(KERN_INFO "WM9711/WM9712 SoC Audio Codec %s\n", WM9712_VERSION);
646
Mark Brown6627a652009-01-23 22:55:23 +0000647 socdev->card->codec = kzalloc(sizeof(struct snd_soc_codec),
648 GFP_KERNEL);
649 if (socdev->card->codec == NULL)
Richard Purdie10c5cf32006-10-06 18:37:32 +0200650 return -ENOMEM;
Mark Brown6627a652009-01-23 22:55:23 +0000651 codec = socdev->card->codec;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200652 mutex_init(&codec->mutex);
653
Graeme Gregory30652c42007-04-16 15:35:46 +0200654 codec->reg_cache = kmemdup(wm9712_reg, sizeof(wm9712_reg), GFP_KERNEL);
655
Richard Purdie10c5cf32006-10-06 18:37:32 +0200656 if (codec->reg_cache == NULL) {
Liam Girdwoode35115a2007-01-31 10:02:23 +0100657 ret = -ENOMEM;
658 goto cache_err;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200659 }
Graeme Gregory30652c42007-04-16 15:35:46 +0200660 codec->reg_cache_size = sizeof(wm9712_reg);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200661 codec->reg_cache_step = 2;
662
663 codec->name = "WM9712";
664 codec->owner = THIS_MODULE;
665 codec->dai = wm9712_dai;
666 codec->num_dai = ARRAY_SIZE(wm9712_dai);
667 codec->write = ac97_write;
668 codec->read = ac97_read;
Mark Brown0be98982008-05-19 12:31:28 +0200669 codec->set_bias_level = wm9712_set_bias_level;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200670 INIT_LIST_HEAD(&codec->dapm_widgets);
671 INIT_LIST_HEAD(&codec->dapm_paths);
672
673 ret = snd_soc_new_ac97_codec(codec, &soc_ac97_ops, 0);
Liam Girdwoode35115a2007-01-31 10:02:23 +0100674 if (ret < 0) {
675 printk(KERN_ERR "wm9712: failed to register AC97 codec\n");
676 goto codec_err;
677 }
Richard Purdie10c5cf32006-10-06 18:37:32 +0200678
679 /* register pcms */
680 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
681 if (ret < 0)
682 goto pcm_err;
683
684 ret = wm9712_reset(codec, 0);
685 if (ret < 0) {
Mark Brown39639fa2008-11-21 14:28:49 +0000686 printk(KERN_ERR "Failed to reset WM9712: AC97 link error\n");
Richard Purdie10c5cf32006-10-06 18:37:32 +0200687 goto reset_err;
688 }
689
690 /* set alc mux to none */
691 ac97_write(codec, AC97_VIDEO, ac97_read(codec, AC97_VIDEO) | 0x3000);
692
Mark Brown0be98982008-05-19 12:31:28 +0200693 wm9712_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Ian Molton3e8e1952009-01-09 00:23:21 +0000694 snd_soc_add_controls(codec, wm9712_snd_ac97_controls,
695 ARRAY_SIZE(wm9712_snd_ac97_controls));
Richard Purdie10c5cf32006-10-06 18:37:32 +0200696 wm9712_add_widgets(codec);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200697
698 return 0;
699
Takashi Iwaia22eaf42009-11-27 15:14:09 +0100700reset_err:
701 snd_soc_free_pcms(socdev);
Richard Purdie10c5cf32006-10-06 18:37:32 +0200702pcm_err:
703 snd_soc_free_ac97_codec(codec);
704
Liam Girdwoode35115a2007-01-31 10:02:23 +0100705codec_err:
706 kfree(codec->reg_cache);
707
708cache_err:
Mark Brown6627a652009-01-23 22:55:23 +0000709 kfree(socdev->card->codec);
710 socdev->card->codec = NULL;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200711 return ret;
712}
713
714static int wm9712_soc_remove(struct platform_device *pdev)
715{
716 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +0000717 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdie10c5cf32006-10-06 18:37:32 +0200718
719 if (codec == NULL)
720 return 0;
721
722 snd_soc_dapm_free(socdev);
723 snd_soc_free_pcms(socdev);
724 snd_soc_free_ac97_codec(codec);
725 kfree(codec->reg_cache);
726 kfree(codec);
727 return 0;
728}
729
730struct snd_soc_codec_device soc_codec_dev_wm9712 = {
731 .probe = wm9712_soc_probe,
732 .remove = wm9712_soc_remove,
733 .suspend = wm9712_soc_suspend,
734 .resume = wm9712_soc_resume,
735};
Richard Purdie10c5cf32006-10-06 18:37:32 +0200736EXPORT_SYMBOL_GPL(soc_codec_dev_wm9712);
737
738MODULE_DESCRIPTION("ASoC WM9711/WM9712 driver");
739MODULE_AUTHOR("Liam Girdwood");
740MODULE_LICENSE("GPL");