blob: 757a52aed80478a6ebb5680a106283eece68cfb9 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
2 * wm9712.c -- ALSA Soc WM9712 codec support
3 *
4 * Copyright 2006 Wolfson Microelectronics PLC.
5 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
6 *
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.
11 */
12
13#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/device.h>
18#include <sound/core.h>
19#include <sound/pcm.h>
20#include <sound/ac97_codec.h>
21#include <sound/initval.h>
22#include <sound/soc.h>
23#include <sound/tlv.h>
24#include "wm9712.h"
25
26static unsigned int ac97_read(struct snd_soc_codec *codec,
27 unsigned int reg);
28static int ac97_write(struct snd_soc_codec *codec,
29 unsigned int reg, unsigned int val);
30
31/*
32 * WM9712 register cache
33 */
34static const u16 wm9712_reg[] = {
35 0x6174, 0x8000, 0x8000, 0x8000, /* 6 */
36 0x0f0f, 0xaaa0, 0xc008, 0x6808, /* e */
37 0xe808, 0xaaa0, 0xad00, 0x8000, /* 16 */
38 0xe808, 0x3000, 0x8000, 0x0000, /* 1e */
39 0x0000, 0x0000, 0x0000, 0x000f, /* 26 */
40 0x0405, 0x0410, 0xbb80, 0xbb80, /* 2e */
41 0x0000, 0xbb80, 0x0000, 0x0000, /* 36 */
42 0x0000, 0x2000, 0x0000, 0x0000, /* 3e */
43 0x0000, 0x0000, 0x0000, 0x0000, /* 46 */
44 0x0000, 0x0000, 0xf83e, 0xffff, /* 4e */
45 0x0000, 0x0000, 0x0000, 0xf83e, /* 56 */
46 0x0008, 0x0000, 0x0000, 0x0000, /* 5e */
47 0xb032, 0x3e00, 0x0000, 0x0000, /* 66 */
48 0x0000, 0x0000, 0x0000, 0x0000, /* 6e */
49 0x0000, 0x0000, 0x0000, 0x0006, /* 76 */
50 0x0001, 0x0000, 0x574d, 0x4c12, /* 7e */
51 0x0000, 0x0000 /* virtual hp mixers */
52};
53
54/* virtual HP mixers regs */
55#define HPL_MIXER 0x80
56#define HPR_MIXER 0x82
57
58static const char *wm9712_alc_select[] = {"None", "Left", "Right", "Stereo"};
59static const char *wm9712_alc_mux[] = {"Stereo", "Left", "Right", "None"};
60static const char *wm9712_out3_src[] = {"Left", "VREF", "Left + Right",
61 "Mono"};
62static const char *wm9712_spk_src[] = {"Speaker Mix", "Headphone Mix"};
63static const char *wm9712_rec_adc[] = {"Stereo", "Left", "Right", "Mute"};
64static const char *wm9712_base[] = {"Linear Control", "Adaptive Boost"};
65static const char *wm9712_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
66static const char *wm9712_mic[] = {"Mic 1", "Differential", "Mic 2",
67 "Stereo"};
68static const char *wm9712_rec_sel[] = {"Mic", "NC", "NC", "Speaker Mixer",
69 "Line", "Headphone Mixer", "Phone Mixer", "Phone"};
70static const char *wm9712_ng_type[] = {"Constant Gain", "Mute"};
71static const char *wm9712_diff_sel[] = {"Mic", "Line"};
72
73static const DECLARE_TLV_DB_SCALE(main_tlv, -3450, 150, 0);
74static const DECLARE_TLV_DB_SCALE(boost_tlv, 0, 2000, 0);
75
76static const struct soc_enum wm9712_enum[] = {
77SOC_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9712_alc_select),
78SOC_ENUM_SINGLE(AC97_VIDEO, 12, 4, wm9712_alc_mux),
79SOC_ENUM_SINGLE(AC97_AUX, 9, 4, wm9712_out3_src),
80SOC_ENUM_SINGLE(AC97_AUX, 8, 2, wm9712_spk_src),
81SOC_ENUM_SINGLE(AC97_REC_SEL, 12, 4, wm9712_rec_adc),
82SOC_ENUM_SINGLE(AC97_MASTER_TONE, 15, 2, wm9712_base),
83SOC_ENUM_DOUBLE(AC97_REC_GAIN, 14, 6, 2, wm9712_rec_gain),
84SOC_ENUM_SINGLE(AC97_MIC, 5, 4, wm9712_mic),
85SOC_ENUM_SINGLE(AC97_REC_SEL, 8, 8, wm9712_rec_sel),
86SOC_ENUM_SINGLE(AC97_REC_SEL, 0, 8, wm9712_rec_sel),
87SOC_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9712_ng_type),
88SOC_ENUM_SINGLE(0x5c, 8, 2, wm9712_diff_sel),
89};
90
91static const struct snd_kcontrol_new wm9712_snd_ac97_controls[] = {
92SOC_DOUBLE("Speaker Playback Volume", AC97_MASTER, 8, 0, 31, 1),
93SOC_SINGLE("Speaker Playback Switch", AC97_MASTER, 15, 1, 1),
94SOC_DOUBLE("Headphone Playback Volume", AC97_HEADPHONE, 8, 0, 31, 1),
95SOC_SINGLE("Headphone Playback Switch", AC97_HEADPHONE, 15, 1, 1),
96SOC_DOUBLE("PCM Playback Volume", AC97_PCM, 8, 0, 31, 1),
97
98SOC_SINGLE("Speaker Playback ZC Switch", AC97_MASTER, 7, 1, 0),
99SOC_SINGLE("Speaker Playback Invert Switch", AC97_MASTER, 6, 1, 0),
100SOC_SINGLE("Headphone Playback ZC Switch", AC97_HEADPHONE, 7, 1, 0),
101SOC_SINGLE("Mono Playback ZC Switch", AC97_MASTER_MONO, 7, 1, 0),
102SOC_SINGLE("Mono Playback Volume", AC97_MASTER_MONO, 0, 31, 1),
103SOC_SINGLE("Mono Playback Switch", AC97_MASTER_MONO, 15, 1, 1),
104
105SOC_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
106SOC_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
107SOC_SINGLE("ALC Decay Time", AC97_CODEC_CLASS_REV, 4, 15, 0),
108SOC_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
109SOC_ENUM("ALC Function", wm9712_enum[0]),
110SOC_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 0),
111SOC_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 1),
112SOC_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
113SOC_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
114SOC_ENUM("ALC NG Type", wm9712_enum[10]),
115SOC_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 1),
116
117SOC_SINGLE("Mic Headphone Volume", AC97_VIDEO, 12, 7, 1),
118SOC_SINGLE("ALC Headphone Volume", AC97_VIDEO, 7, 7, 1),
119
120SOC_SINGLE("Out3 Switch", AC97_AUX, 15, 1, 1),
121SOC_SINGLE("Out3 ZC Switch", AC97_AUX, 7, 1, 1),
122SOC_SINGLE("Out3 Volume", AC97_AUX, 0, 31, 1),
123
124SOC_SINGLE("PCBeep Bypass Headphone Volume", AC97_PC_BEEP, 12, 7, 1),
125SOC_SINGLE("PCBeep Bypass Speaker Volume", AC97_PC_BEEP, 8, 7, 1),
126SOC_SINGLE("PCBeep Bypass Phone Volume", AC97_PC_BEEP, 4, 7, 1),
127
128SOC_SINGLE("Aux Playback Headphone Volume", AC97_CD, 12, 7, 1),
129SOC_SINGLE("Aux Playback Speaker Volume", AC97_CD, 8, 7, 1),
130SOC_SINGLE("Aux Playback Phone Volume", AC97_CD, 4, 7, 1),
131
132SOC_SINGLE("Phone Volume", AC97_PHONE, 0, 15, 1),
133SOC_DOUBLE("Line Capture Volume", AC97_LINE, 8, 0, 31, 1),
134
135SOC_SINGLE("Capture 20dB Boost Switch", AC97_REC_SEL, 14, 1, 0),
136SOC_SINGLE("Capture to Phone 20dB Boost Switch", AC97_REC_SEL, 11, 1, 1),
137
138SOC_SINGLE("3D Upper Cut-off Switch", AC97_3D_CONTROL, 5, 1, 1),
139SOC_SINGLE("3D Lower Cut-off Switch", AC97_3D_CONTROL, 4, 1, 1),
140SOC_SINGLE("3D Playback Volume", AC97_3D_CONTROL, 0, 15, 0),
141
142SOC_ENUM("Bass Control", wm9712_enum[5]),
143SOC_SINGLE("Bass Cut-off Switch", AC97_MASTER_TONE, 12, 1, 1),
144SOC_SINGLE("Tone Cut-off Switch", AC97_MASTER_TONE, 4, 1, 1),
145SOC_SINGLE("Playback Attenuate (-6dB) Switch", AC97_MASTER_TONE, 6, 1, 0),
146SOC_SINGLE("Bass Volume", AC97_MASTER_TONE, 8, 15, 1),
147SOC_SINGLE("Treble Volume", AC97_MASTER_TONE, 0, 15, 1),
148
149SOC_SINGLE("Capture Switch", AC97_REC_GAIN, 15, 1, 1),
150SOC_ENUM("Capture Volume Steps", wm9712_enum[6]),
151SOC_DOUBLE("Capture Volume", AC97_REC_GAIN, 8, 0, 63, 1),
152SOC_SINGLE("Capture ZC Switch", AC97_REC_GAIN, 7, 1, 0),
153
154SOC_SINGLE_TLV("Mic 1 Volume", AC97_MIC, 8, 31, 1, main_tlv),
155SOC_SINGLE_TLV("Mic 2 Volume", AC97_MIC, 0, 31, 1, main_tlv),
156SOC_SINGLE_TLV("Mic Boost Volume", AC97_MIC, 7, 1, 0, boost_tlv),
157};
158
159/* We have to create a fake left and right HP mixers because
160 * the codec only has a single control that is shared by both channels.
161 * This makes it impossible to determine the audio path.
162 */
163static int mixer_event(struct snd_soc_dapm_widget *w,
164 struct snd_kcontrol *k, int event)
165{
166 u16 l, r, beep, line, phone, mic, pcm, aux;
167
168 l = ac97_read(w->codec, HPL_MIXER);
169 r = ac97_read(w->codec, HPR_MIXER);
170 beep = ac97_read(w->codec, AC97_PC_BEEP);
171 mic = ac97_read(w->codec, AC97_VIDEO);
172 phone = ac97_read(w->codec, AC97_PHONE);
173 line = ac97_read(w->codec, AC97_LINE);
174 pcm = ac97_read(w->codec, AC97_PCM);
175 aux = ac97_read(w->codec, AC97_CD);
176
177 if (l & 0x1 || r & 0x1)
178 ac97_write(w->codec, AC97_VIDEO, mic & 0x7fff);
179 else
180 ac97_write(w->codec, AC97_VIDEO, mic | 0x8000);
181
182 if (l & 0x2 || r & 0x2)
183 ac97_write(w->codec, AC97_PCM, pcm & 0x7fff);
184 else
185 ac97_write(w->codec, AC97_PCM, pcm | 0x8000);
186
187 if (l & 0x4 || r & 0x4)
188 ac97_write(w->codec, AC97_LINE, line & 0x7fff);
189 else
190 ac97_write(w->codec, AC97_LINE, line | 0x8000);
191
192 if (l & 0x8 || r & 0x8)
193 ac97_write(w->codec, AC97_PHONE, phone & 0x7fff);
194 else
195 ac97_write(w->codec, AC97_PHONE, phone | 0x8000);
196
197 if (l & 0x10 || r & 0x10)
198 ac97_write(w->codec, AC97_CD, aux & 0x7fff);
199 else
200 ac97_write(w->codec, AC97_CD, aux | 0x8000);
201
202 if (l & 0x20 || r & 0x20)
203 ac97_write(w->codec, AC97_PC_BEEP, beep & 0x7fff);
204 else
205 ac97_write(w->codec, AC97_PC_BEEP, beep | 0x8000);
206
207 return 0;
208}
209
210/* Left Headphone Mixers */
211static const struct snd_kcontrol_new wm9712_hpl_mixer_controls[] = {
212 SOC_DAPM_SINGLE("PCBeep Bypass Switch", HPL_MIXER, 5, 1, 0),
213 SOC_DAPM_SINGLE("Aux Playback Switch", HPL_MIXER, 4, 1, 0),
214 SOC_DAPM_SINGLE("Phone Bypass Switch", HPL_MIXER, 3, 1, 0),
215 SOC_DAPM_SINGLE("Line Bypass Switch", HPL_MIXER, 2, 1, 0),
216 SOC_DAPM_SINGLE("PCM Playback Switch", HPL_MIXER, 1, 1, 0),
217 SOC_DAPM_SINGLE("Mic Sidetone Switch", HPL_MIXER, 0, 1, 0),
218};
219
220/* Right Headphone Mixers */
221static const struct snd_kcontrol_new wm9712_hpr_mixer_controls[] = {
222 SOC_DAPM_SINGLE("PCBeep Bypass Switch", HPR_MIXER, 5, 1, 0),
223 SOC_DAPM_SINGLE("Aux Playback Switch", HPR_MIXER, 4, 1, 0),
224 SOC_DAPM_SINGLE("Phone Bypass Switch", HPR_MIXER, 3, 1, 0),
225 SOC_DAPM_SINGLE("Line Bypass Switch", HPR_MIXER, 2, 1, 0),
226 SOC_DAPM_SINGLE("PCM Playback Switch", HPR_MIXER, 1, 1, 0),
227 SOC_DAPM_SINGLE("Mic Sidetone Switch", HPR_MIXER, 0, 1, 0),
228};
229
230/* Speaker Mixer */
231static const struct snd_kcontrol_new wm9712_speaker_mixer_controls[] = {
232 SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 11, 1, 1),
233 SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 11, 1, 1),
234 SOC_DAPM_SINGLE("Phone Bypass Switch", AC97_PHONE, 14, 1, 1),
235 SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 14, 1, 1),
236 SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 14, 1, 1),
237};
238
239/* Phone Mixer */
240static const struct snd_kcontrol_new wm9712_phone_mixer_controls[] = {
241 SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 7, 1, 1),
242 SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 7, 1, 1),
243 SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 13, 1, 1),
244 SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 13, 1, 1),
245 SOC_DAPM_SINGLE("Mic 1 Sidetone Switch", AC97_MIC, 14, 1, 1),
246 SOC_DAPM_SINGLE("Mic 2 Sidetone Switch", AC97_MIC, 13, 1, 1),
247};
248
249/* ALC headphone mux */
250static const struct snd_kcontrol_new wm9712_alc_mux_controls =
251SOC_DAPM_ENUM("Route", wm9712_enum[1]);
252
253/* out 3 mux */
254static const struct snd_kcontrol_new wm9712_out3_mux_controls =
255SOC_DAPM_ENUM("Route", wm9712_enum[2]);
256
257/* spk mux */
258static const struct snd_kcontrol_new wm9712_spk_mux_controls =
259SOC_DAPM_ENUM("Route", wm9712_enum[3]);
260
261/* Capture to Phone mux */
262static const struct snd_kcontrol_new wm9712_capture_phone_mux_controls =
263SOC_DAPM_ENUM("Route", wm9712_enum[4]);
264
265/* Capture left select */
266static const struct snd_kcontrol_new wm9712_capture_selectl_controls =
267SOC_DAPM_ENUM("Route", wm9712_enum[8]);
268
269/* Capture right select */
270static const struct snd_kcontrol_new wm9712_capture_selectr_controls =
271SOC_DAPM_ENUM("Route", wm9712_enum[9]);
272
273/* Mic select */
274static const struct snd_kcontrol_new wm9712_mic_src_controls =
275SOC_DAPM_ENUM("Mic Source Select", wm9712_enum[7]);
276
277/* diff select */
278static const struct snd_kcontrol_new wm9712_diff_sel_controls =
279SOC_DAPM_ENUM("Route", wm9712_enum[11]);
280
281static const struct snd_soc_dapm_widget wm9712_dapm_widgets[] = {
282SND_SOC_DAPM_MUX("ALC Sidetone Mux", SND_SOC_NOPM, 0, 0,
283 &wm9712_alc_mux_controls),
284SND_SOC_DAPM_MUX("Out3 Mux", SND_SOC_NOPM, 0, 0,
285 &wm9712_out3_mux_controls),
286SND_SOC_DAPM_MUX("Speaker Mux", SND_SOC_NOPM, 0, 0,
287 &wm9712_spk_mux_controls),
288SND_SOC_DAPM_MUX("Capture Phone Mux", SND_SOC_NOPM, 0, 0,
289 &wm9712_capture_phone_mux_controls),
290SND_SOC_DAPM_MUX("Left Capture Select", SND_SOC_NOPM, 0, 0,
291 &wm9712_capture_selectl_controls),
292SND_SOC_DAPM_MUX("Right Capture Select", SND_SOC_NOPM, 0, 0,
293 &wm9712_capture_selectr_controls),
294SND_SOC_DAPM_MUX("Left Mic Select Source", SND_SOC_NOPM, 0, 0,
295 &wm9712_mic_src_controls),
296SND_SOC_DAPM_MUX("Right Mic Select Source", SND_SOC_NOPM, 0, 0,
297 &wm9712_mic_src_controls),
298SND_SOC_DAPM_MUX("Differential Source", SND_SOC_NOPM, 0, 0,
299 &wm9712_diff_sel_controls),
300SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
301SND_SOC_DAPM_MIXER_E("Left HP Mixer", AC97_INT_PAGING, 9, 1,
302 &wm9712_hpl_mixer_controls[0], ARRAY_SIZE(wm9712_hpl_mixer_controls),
303 mixer_event, SND_SOC_DAPM_POST_REG),
304SND_SOC_DAPM_MIXER_E("Right HP Mixer", AC97_INT_PAGING, 8, 1,
305 &wm9712_hpr_mixer_controls[0], ARRAY_SIZE(wm9712_hpr_mixer_controls),
306 mixer_event, SND_SOC_DAPM_POST_REG),
307SND_SOC_DAPM_MIXER("Phone Mixer", AC97_INT_PAGING, 6, 1,
308 &wm9712_phone_mixer_controls[0], ARRAY_SIZE(wm9712_phone_mixer_controls)),
309SND_SOC_DAPM_MIXER("Speaker Mixer", AC97_INT_PAGING, 7, 1,
310 &wm9712_speaker_mixer_controls[0],
311 ARRAY_SIZE(wm9712_speaker_mixer_controls)),
312SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
313SND_SOC_DAPM_DAC("Left DAC", "Left HiFi Playback", AC97_INT_PAGING, 14, 1),
314SND_SOC_DAPM_DAC("Right DAC", "Right HiFi Playback", AC97_INT_PAGING, 13, 1),
315SND_SOC_DAPM_DAC("Aux DAC", "Aux Playback", SND_SOC_NOPM, 0, 0),
316SND_SOC_DAPM_ADC("Left ADC", "Left HiFi Capture", AC97_INT_PAGING, 12, 1),
317SND_SOC_DAPM_ADC("Right ADC", "Right HiFi Capture", AC97_INT_PAGING, 11, 1),
318SND_SOC_DAPM_PGA("Headphone PGA", AC97_INT_PAGING, 4, 1, NULL, 0),
319SND_SOC_DAPM_PGA("Speaker PGA", AC97_INT_PAGING, 3, 1, NULL, 0),
320SND_SOC_DAPM_PGA("Out 3 PGA", AC97_INT_PAGING, 5, 1, NULL, 0),
321SND_SOC_DAPM_PGA("Line PGA", AC97_INT_PAGING, 2, 1, NULL, 0),
322SND_SOC_DAPM_PGA("Phone PGA", AC97_INT_PAGING, 1, 1, NULL, 0),
323SND_SOC_DAPM_PGA("Mic PGA", AC97_INT_PAGING, 0, 1, NULL, 0),
324SND_SOC_DAPM_PGA("Differential Mic", SND_SOC_NOPM, 0, 0, NULL, 0),
325SND_SOC_DAPM_MICBIAS("Mic Bias", AC97_INT_PAGING, 10, 1),
326SND_SOC_DAPM_OUTPUT("MONOOUT"),
327SND_SOC_DAPM_OUTPUT("HPOUTL"),
328SND_SOC_DAPM_OUTPUT("HPOUTR"),
329SND_SOC_DAPM_OUTPUT("LOUT2"),
330SND_SOC_DAPM_OUTPUT("ROUT2"),
331SND_SOC_DAPM_OUTPUT("OUT3"),
332SND_SOC_DAPM_INPUT("LINEINL"),
333SND_SOC_DAPM_INPUT("LINEINR"),
334SND_SOC_DAPM_INPUT("PHONE"),
335SND_SOC_DAPM_INPUT("PCBEEP"),
336SND_SOC_DAPM_INPUT("MIC1"),
337SND_SOC_DAPM_INPUT("MIC2"),
338};
339
340static const struct snd_soc_dapm_route wm9712_audio_map[] = {
341 /* virtual mixer - mixes left & right channels for spk and mono */
342 {"AC97 Mixer", NULL, "Left DAC"},
343 {"AC97 Mixer", NULL, "Right DAC"},
344
345 /* Left HP mixer */
346 {"Left HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
347 {"Left HP Mixer", "Aux Playback Switch", "Aux DAC"},
348 {"Left HP Mixer", "Phone Bypass Switch", "Phone PGA"},
349 {"Left HP Mixer", "Line Bypass Switch", "Line PGA"},
350 {"Left HP Mixer", "PCM Playback Switch", "Left DAC"},
351 {"Left HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
352 {"Left HP Mixer", NULL, "ALC Sidetone Mux"},
353
354 /* Right HP mixer */
355 {"Right HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
356 {"Right HP Mixer", "Aux Playback Switch", "Aux DAC"},
357 {"Right HP Mixer", "Phone Bypass Switch", "Phone PGA"},
358 {"Right HP Mixer", "Line Bypass Switch", "Line PGA"},
359 {"Right HP Mixer", "PCM Playback Switch", "Right DAC"},
360 {"Right HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
361 {"Right HP Mixer", NULL, "ALC Sidetone Mux"},
362
363 /* speaker mixer */
364 {"Speaker Mixer", "PCBeep Bypass Switch", "PCBEEP"},
365 {"Speaker Mixer", "Line Bypass Switch", "Line PGA"},
366 {"Speaker Mixer", "PCM Playback Switch", "AC97 Mixer"},
367 {"Speaker Mixer", "Phone Bypass Switch", "Phone PGA"},
368 {"Speaker Mixer", "Aux Playback Switch", "Aux DAC"},
369
370 /* Phone mixer */
371 {"Phone Mixer", "PCBeep Bypass Switch", "PCBEEP"},
372 {"Phone Mixer", "Line Bypass Switch", "Line PGA"},
373 {"Phone Mixer", "Aux Playback Switch", "Aux DAC"},
374 {"Phone Mixer", "PCM Playback Switch", "AC97 Mixer"},
375 {"Phone Mixer", "Mic 1 Sidetone Switch", "Mic PGA"},
376 {"Phone Mixer", "Mic 2 Sidetone Switch", "Mic PGA"},
377
378 /* inputs */
379 {"Line PGA", NULL, "LINEINL"},
380 {"Line PGA", NULL, "LINEINR"},
381 {"Phone PGA", NULL, "PHONE"},
382 {"Mic PGA", NULL, "MIC1"},
383 {"Mic PGA", NULL, "MIC2"},
384
385 /* microphones */
386 {"Differential Mic", NULL, "MIC1"},
387 {"Differential Mic", NULL, "MIC2"},
388 {"Left Mic Select Source", "Mic 1", "MIC1"},
389 {"Left Mic Select Source", "Mic 2", "MIC2"},
390 {"Left Mic Select Source", "Stereo", "MIC1"},
391 {"Left Mic Select Source", "Differential", "Differential Mic"},
392 {"Right Mic Select Source", "Mic 1", "MIC1"},
393 {"Right Mic Select Source", "Mic 2", "MIC2"},
394 {"Right Mic Select Source", "Stereo", "MIC2"},
395 {"Right Mic Select Source", "Differential", "Differential Mic"},
396
397 /* left capture selector */
398 {"Left Capture Select", "Mic", "MIC1"},
399 {"Left Capture Select", "Speaker Mixer", "Speaker Mixer"},
400 {"Left Capture Select", "Line", "LINEINL"},
401 {"Left Capture Select", "Headphone Mixer", "Left HP Mixer"},
402 {"Left Capture Select", "Phone Mixer", "Phone Mixer"},
403 {"Left Capture Select", "Phone", "PHONE"},
404
405 /* right capture selector */
406 {"Right Capture Select", "Mic", "MIC2"},
407 {"Right Capture Select", "Speaker Mixer", "Speaker Mixer"},
408 {"Right Capture Select", "Line", "LINEINR"},
409 {"Right Capture Select", "Headphone Mixer", "Right HP Mixer"},
410 {"Right Capture Select", "Phone Mixer", "Phone Mixer"},
411 {"Right Capture Select", "Phone", "PHONE"},
412
413 /* ALC Sidetone */
414 {"ALC Sidetone Mux", "Stereo", "Left Capture Select"},
415 {"ALC Sidetone Mux", "Stereo", "Right Capture Select"},
416 {"ALC Sidetone Mux", "Left", "Left Capture Select"},
417 {"ALC Sidetone Mux", "Right", "Right Capture Select"},
418
419 /* ADC's */
420 {"Left ADC", NULL, "Left Capture Select"},
421 {"Right ADC", NULL, "Right Capture Select"},
422
423 /* outputs */
424 {"MONOOUT", NULL, "Phone Mixer"},
425 {"HPOUTL", NULL, "Headphone PGA"},
426 {"Headphone PGA", NULL, "Left HP Mixer"},
427 {"HPOUTR", NULL, "Headphone PGA"},
428 {"Headphone PGA", NULL, "Right HP Mixer"},
429
430 /* mono mixer */
431 {"Mono Mixer", NULL, "Left HP Mixer"},
432 {"Mono Mixer", NULL, "Right HP Mixer"},
433
434 /* Out3 Mux */
435 {"Out3 Mux", "Left", "Left HP Mixer"},
436 {"Out3 Mux", "Mono", "Phone Mixer"},
437 {"Out3 Mux", "Left + Right", "Mono Mixer"},
438 {"Out 3 PGA", NULL, "Out3 Mux"},
439 {"OUT3", NULL, "Out 3 PGA"},
440
441 /* speaker Mux */
442 {"Speaker Mux", "Speaker Mix", "Speaker Mixer"},
443 {"Speaker Mux", "Headphone Mix", "Mono Mixer"},
444 {"Speaker PGA", NULL, "Speaker Mux"},
445 {"LOUT2", NULL, "Speaker PGA"},
446 {"ROUT2", NULL, "Speaker PGA"},
447};
448
449static unsigned int ac97_read(struct snd_soc_codec *codec,
450 unsigned int reg)
451{
452 u16 *cache = codec->reg_cache;
453
454 if (reg == AC97_RESET || reg == AC97_GPIO_STATUS ||
455 reg == AC97_VENDOR_ID1 || reg == AC97_VENDOR_ID2 ||
456 reg == AC97_REC_GAIN)
457 return soc_ac97_ops.read(codec->ac97, reg);
458 else {
459 reg = reg >> 1;
460
461 if (reg >= (ARRAY_SIZE(wm9712_reg)))
462 return -EIO;
463
464 return cache[reg];
465 }
466}
467
468static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
469 unsigned int val)
470{
471 u16 *cache = codec->reg_cache;
472
473 if (reg < 0x7c)
474 soc_ac97_ops.write(codec->ac97, reg, val);
475 reg = reg >> 1;
476 if (reg < (ARRAY_SIZE(wm9712_reg)))
477 cache[reg] = val;
478
479 return 0;
480}
481
482static int ac97_prepare(struct snd_pcm_substream *substream,
483 struct snd_soc_dai *dai)
484{
485 struct snd_pcm_runtime *runtime = substream->runtime;
486 struct snd_soc_pcm_runtime *rtd = substream->private_data;
487 struct snd_soc_codec *codec =rtd->codec;
488 int reg;
489 u16 vra;
490
491 vra = ac97_read(codec, AC97_EXTENDED_STATUS);
492 ac97_write(codec, AC97_EXTENDED_STATUS, vra | 0x1);
493
494 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
495 reg = AC97_PCM_FRONT_DAC_RATE;
496 else
497 reg = AC97_PCM_LR_ADC_RATE;
498
499 return ac97_write(codec, reg, runtime->rate);
500}
501
502static int ac97_aux_prepare(struct snd_pcm_substream *substream,
503 struct snd_soc_dai *dai)
504{
505 struct snd_pcm_runtime *runtime = substream->runtime;
506 struct snd_soc_pcm_runtime *rtd = substream->private_data;
507 struct snd_soc_codec *codec = rtd->codec;
508 u16 vra, xsle;
509
510 vra = ac97_read(codec, AC97_EXTENDED_STATUS);
511 ac97_write(codec, AC97_EXTENDED_STATUS, vra | 0x1);
512 xsle = ac97_read(codec, AC97_PCI_SID);
513 ac97_write(codec, AC97_PCI_SID, xsle | 0x8000);
514
515 if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
516 return -ENODEV;
517
518 return ac97_write(codec, AC97_PCM_SURR_DAC_RATE, runtime->rate);
519}
520
521#define WM9712_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
522 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
523 SNDRV_PCM_RATE_48000)
524
525static const struct snd_soc_dai_ops wm9712_dai_ops_hifi = {
526 .prepare = ac97_prepare,
527};
528
529static const struct snd_soc_dai_ops wm9712_dai_ops_aux = {
530 .prepare = ac97_aux_prepare,
531};
532
533static struct snd_soc_dai_driver wm9712_dai[] = {
534{
535 .name = "wm9712-hifi",
536 .ac97_control = 1,
537 .playback = {
538 .stream_name = "HiFi Playback",
539 .channels_min = 1,
540 .channels_max = 2,
541 .rates = WM9712_AC97_RATES,
542 .formats = SND_SOC_STD_AC97_FMTS,},
543 .capture = {
544 .stream_name = "HiFi Capture",
545 .channels_min = 1,
546 .channels_max = 2,
547 .rates = WM9712_AC97_RATES,
548 .formats = SND_SOC_STD_AC97_FMTS,},
549 .ops = &wm9712_dai_ops_hifi,
550},
551{
552 .name = "wm9712-aux",
553 .playback = {
554 .stream_name = "Aux Playback",
555 .channels_min = 1,
556 .channels_max = 1,
557 .rates = WM9712_AC97_RATES,
558 .formats = SND_SOC_STD_AC97_FMTS,},
559 .ops = &wm9712_dai_ops_aux,
560}
561};
562
563static int wm9712_set_bias_level(struct snd_soc_codec *codec,
564 enum snd_soc_bias_level level)
565{
566 switch (level) {
567 case SND_SOC_BIAS_ON:
568 case SND_SOC_BIAS_PREPARE:
569 break;
570 case SND_SOC_BIAS_STANDBY:
571 ac97_write(codec, AC97_POWERDOWN, 0x0000);
572 break;
573 case SND_SOC_BIAS_OFF:
574 /* disable everything including AC link */
575 ac97_write(codec, AC97_EXTENDED_MSTATUS, 0xffff);
576 ac97_write(codec, AC97_POWERDOWN, 0xffff);
577 break;
578 }
579 codec->dapm.bias_level = level;
580 return 0;
581}
582
583static int wm9712_reset(struct snd_soc_codec *codec, int try_warm)
584{
585 if (try_warm && soc_ac97_ops.warm_reset) {
586 soc_ac97_ops.warm_reset(codec->ac97);
587 if (ac97_read(codec, 0) == wm9712_reg[0])
588 return 1;
589 }
590
591 soc_ac97_ops.reset(codec->ac97);
592 if (soc_ac97_ops.warm_reset)
593 soc_ac97_ops.warm_reset(codec->ac97);
594 if (ac97_read(codec, 0) != wm9712_reg[0])
595 goto err;
596 return 0;
597
598err:
599 printk(KERN_ERR "WM9712 AC97 reset failed\n");
600 return -EIO;
601}
602
603static int wm9712_soc_suspend(struct snd_soc_codec *codec)
604{
605 wm9712_set_bias_level(codec, SND_SOC_BIAS_OFF);
606 return 0;
607}
608
609static int wm9712_soc_resume(struct snd_soc_codec *codec)
610{
611 int i, ret;
612 u16 *cache = codec->reg_cache;
613
614 ret = wm9712_reset(codec, 1);
615 if (ret < 0) {
616 printk(KERN_ERR "could not reset AC97 codec\n");
617 return ret;
618 }
619
620 wm9712_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
621
622 if (ret == 0) {
623 /* Sync reg_cache with the hardware after cold reset */
624 for (i = 2; i < ARRAY_SIZE(wm9712_reg) << 1; i += 2) {
625 if (i == AC97_INT_PAGING || i == AC97_POWERDOWN ||
626 (i > 0x58 && i != 0x5c))
627 continue;
628 soc_ac97_ops.write(codec->ac97, i, cache[i>>1]);
629 }
630 }
631
632 return ret;
633}
634
635static int wm9712_soc_probe(struct snd_soc_codec *codec)
636{
637 int ret = 0;
638
639 ret = snd_soc_new_ac97_codec(codec, &soc_ac97_ops, 0);
640 if (ret < 0) {
641 printk(KERN_ERR "wm9712: failed to register AC97 codec\n");
642 return ret;
643 }
644
645 ret = wm9712_reset(codec, 0);
646 if (ret < 0) {
647 printk(KERN_ERR "Failed to reset WM9712: AC97 link error\n");
648 goto reset_err;
649 }
650
651 /* set alc mux to none */
652 ac97_write(codec, AC97_VIDEO, ac97_read(codec, AC97_VIDEO) | 0x3000);
653
654 wm9712_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
655 snd_soc_add_codec_controls(codec, wm9712_snd_ac97_controls,
656 ARRAY_SIZE(wm9712_snd_ac97_controls));
657
658 return 0;
659
660reset_err:
661 snd_soc_free_ac97_codec(codec);
662 return ret;
663}
664
665static int wm9712_soc_remove(struct snd_soc_codec *codec)
666{
667 snd_soc_free_ac97_codec(codec);
668 return 0;
669}
670
671static struct snd_soc_codec_driver soc_codec_dev_wm9712 = {
672 .probe = wm9712_soc_probe,
673 .remove = wm9712_soc_remove,
674 .suspend = wm9712_soc_suspend,
675 .resume = wm9712_soc_resume,
676 .read = ac97_read,
677 .write = ac97_write,
678 .set_bias_level = wm9712_set_bias_level,
679 .reg_cache_size = ARRAY_SIZE(wm9712_reg),
680 .reg_word_size = sizeof(u16),
681 .reg_cache_step = 2,
682 .reg_cache_default = wm9712_reg,
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};
688
689static __devinit int wm9712_probe(struct platform_device *pdev)
690{
691 return snd_soc_register_codec(&pdev->dev,
692 &soc_codec_dev_wm9712, wm9712_dai, ARRAY_SIZE(wm9712_dai));
693}
694
695static int __devexit wm9712_remove(struct platform_device *pdev)
696{
697 snd_soc_unregister_codec(&pdev->dev);
698 return 0;
699}
700
701static struct platform_driver wm9712_codec_driver = {
702 .driver = {
703 .name = "wm9712-codec",
704 .owner = THIS_MODULE,
705 },
706
707 .probe = wm9712_probe,
708 .remove = __devexit_p(wm9712_remove),
709};
710
711module_platform_driver(wm9712_codec_driver);
712
713MODULE_DESCRIPTION("ASoC WM9711/WM9712 driver");
714MODULE_AUTHOR("Liam Girdwood");
715MODULE_LICENSE("GPL");