ASoC: wm8960: Convert to snd_soc_cache_sync
[deliverable/linux.git] / sound / soc / codecs / wm8971.c
CommitLineData
8bae3e23
KK
1/*
2 * wm8971.c -- WM8971 ALSA SoC Audio driver
3 *
4 * Copyright 2005 Lab126, Inc.
5 *
6 * Author: Kenneth Kiraly <kiraly@lab126.com>
7 *
8 * Based on wm8753.c by Liam Girdwood
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/init.h>
19#include <linux/delay.h>
20#include <linux/pm.h>
21#include <linux/i2c.h>
22#include <linux/platform_device.h>
5a0e3ad6 23#include <linux/slab.h>
8bae3e23
KK
24#include <sound/core.h>
25#include <sound/pcm.h>
26#include <sound/pcm_params.h>
27#include <sound/soc.h>
8bae3e23
KK
28#include <sound/initval.h>
29
30#include "wm8971.h"
31
8bae3e23
KK
32#define WM8971_REG_COUNT 43
33
34static struct workqueue_struct *wm8971_workq = NULL;
35
36/* codec private data */
37struct wm8971_priv {
f0fba2ad 38 enum snd_soc_control_type control_type;
8bae3e23
KK
39 unsigned int sysclk;
40};
41
42/*
43 * wm8971 register cache
44 * We can't read the WM8971 register space when we
45 * are using 2 wire for device control, so we cache them instead.
46 */
47static const u16 wm8971_reg[] = {
48 0x0097, 0x0097, 0x0079, 0x0079, /* 0 */
49 0x0000, 0x0008, 0x0000, 0x000a, /* 4 */
50 0x0000, 0x0000, 0x00ff, 0x00ff, /* 8 */
51 0x000f, 0x000f, 0x0000, 0x0000, /* 12 */
52 0x0000, 0x007b, 0x0000, 0x0032, /* 16 */
53 0x0000, 0x00c3, 0x00c3, 0x00c0, /* 20 */
54 0x0000, 0x0000, 0x0000, 0x0000, /* 24 */
55 0x0000, 0x0000, 0x0000, 0x0000, /* 28 */
56 0x0000, 0x0000, 0x0050, 0x0050, /* 32 */
57 0x0050, 0x0050, 0x0050, 0x0050, /* 36 */
58 0x0079, 0x0079, 0x0079, /* 40 */
59};
60
17a52fd6 61#define wm8971_reset(c) snd_soc_write(c, WM8971_RESET, 0)
8bae3e23
KK
62
63/* WM8971 Controls */
64static const char *wm8971_bass[] = { "Linear Control", "Adaptive Boost" };
65static const char *wm8971_bass_filter[] = { "130Hz @ 48kHz",
66 "200Hz @ 48kHz" };
67static const char *wm8971_treble[] = { "8kHz", "4kHz" };
68static const char *wm8971_alc_func[] = { "Off", "Right", "Left", "Stereo" };
69static const char *wm8971_ng_type[] = { "Constant PGA Gain",
70 "Mute ADC Output" };
71static const char *wm8971_deemp[] = { "None", "32kHz", "44.1kHz", "48kHz" };
72static const char *wm8971_mono_mux[] = {"Stereo", "Mono (Left)",
73 "Mono (Right)", "Digital Mono"};
74static const char *wm8971_dac_phase[] = { "Non Inverted", "Inverted" };
75static const char *wm8971_lline_mux[] = {"Line", "NC", "NC", "PGA",
76 "Differential"};
77static const char *wm8971_rline_mux[] = {"Line", "Mic", "NC", "PGA",
78 "Differential"};
79static const char *wm8971_lpga_sel[] = {"Line", "NC", "NC", "Differential"};
80static const char *wm8971_rpga_sel[] = {"Line", "Mic", "NC", "Differential"};
81static const char *wm8971_adcpol[] = {"Normal", "L Invert", "R Invert",
82 "L + R Invert"};
83
84static const struct soc_enum wm8971_enum[] = {
85 SOC_ENUM_SINGLE(WM8971_BASS, 7, 2, wm8971_bass), /* 0 */
86 SOC_ENUM_SINGLE(WM8971_BASS, 6, 2, wm8971_bass_filter),
87 SOC_ENUM_SINGLE(WM8971_TREBLE, 6, 2, wm8971_treble),
88 SOC_ENUM_SINGLE(WM8971_ALC1, 7, 4, wm8971_alc_func),
89 SOC_ENUM_SINGLE(WM8971_NGATE, 1, 2, wm8971_ng_type), /* 4 */
90 SOC_ENUM_SINGLE(WM8971_ADCDAC, 1, 4, wm8971_deemp),
91 SOC_ENUM_SINGLE(WM8971_ADCTL1, 4, 4, wm8971_mono_mux),
92 SOC_ENUM_SINGLE(WM8971_ADCTL1, 1, 2, wm8971_dac_phase),
93 SOC_ENUM_SINGLE(WM8971_LOUTM1, 0, 5, wm8971_lline_mux), /* 8 */
94 SOC_ENUM_SINGLE(WM8971_ROUTM1, 0, 5, wm8971_rline_mux),
95 SOC_ENUM_SINGLE(WM8971_LADCIN, 6, 4, wm8971_lpga_sel),
96 SOC_ENUM_SINGLE(WM8971_RADCIN, 6, 4, wm8971_rpga_sel),
97 SOC_ENUM_SINGLE(WM8971_ADCDAC, 5, 4, wm8971_adcpol), /* 12 */
98 SOC_ENUM_SINGLE(WM8971_ADCIN, 6, 4, wm8971_mono_mux),
99};
100
101static const struct snd_kcontrol_new wm8971_snd_controls[] = {
102 SOC_DOUBLE_R("Capture Volume", WM8971_LINVOL, WM8971_RINVOL, 0, 63, 0),
103 SOC_DOUBLE_R("Capture ZC Switch", WM8971_LINVOL, WM8971_RINVOL,
104 6, 1, 0),
105 SOC_DOUBLE_R("Capture Switch", WM8971_LINVOL, WM8971_RINVOL, 7, 1, 1),
106
107 SOC_DOUBLE_R("Headphone Playback ZC Switch", WM8971_LOUT1V,
108 WM8971_ROUT1V, 7, 1, 0),
109 SOC_DOUBLE_R("Speaker Playback ZC Switch", WM8971_LOUT2V,
110 WM8971_ROUT2V, 7, 1, 0),
111 SOC_SINGLE("Mono Playback ZC Switch", WM8971_MOUTV, 7, 1, 0),
112
113 SOC_DOUBLE_R("PCM Volume", WM8971_LDAC, WM8971_RDAC, 0, 255, 0),
114
115 SOC_DOUBLE_R("Bypass Left Playback Volume", WM8971_LOUTM1,
116 WM8971_LOUTM2, 4, 7, 1),
117 SOC_DOUBLE_R("Bypass Right Playback Volume", WM8971_ROUTM1,
118 WM8971_ROUTM2, 4, 7, 1),
119 SOC_DOUBLE_R("Bypass Mono Playback Volume", WM8971_MOUTM1,
120 WM8971_MOUTM2, 4, 7, 1),
121
122 SOC_DOUBLE_R("Headphone Playback Volume", WM8971_LOUT1V,
123 WM8971_ROUT1V, 0, 127, 0),
124 SOC_DOUBLE_R("Speaker Playback Volume", WM8971_LOUT2V,
125 WM8971_ROUT2V, 0, 127, 0),
126
127 SOC_ENUM("Bass Boost", wm8971_enum[0]),
128 SOC_ENUM("Bass Filter", wm8971_enum[1]),
129 SOC_SINGLE("Bass Volume", WM8971_BASS, 0, 7, 1),
130
131 SOC_SINGLE("Treble Volume", WM8971_TREBLE, 0, 7, 0),
132 SOC_ENUM("Treble Cut-off", wm8971_enum[2]),
133
134 SOC_SINGLE("Capture Filter Switch", WM8971_ADCDAC, 0, 1, 1),
135
136 SOC_SINGLE("ALC Target Volume", WM8971_ALC1, 0, 7, 0),
137 SOC_SINGLE("ALC Max Volume", WM8971_ALC1, 4, 7, 0),
138
139 SOC_SINGLE("ALC Capture Target Volume", WM8971_ALC1, 0, 7, 0),
140 SOC_SINGLE("ALC Capture Max Volume", WM8971_ALC1, 4, 7, 0),
141 SOC_ENUM("ALC Capture Function", wm8971_enum[3]),
142 SOC_SINGLE("ALC Capture ZC Switch", WM8971_ALC2, 7, 1, 0),
143 SOC_SINGLE("ALC Capture Hold Time", WM8971_ALC2, 0, 15, 0),
144 SOC_SINGLE("ALC Capture Decay Time", WM8971_ALC3, 4, 15, 0),
145 SOC_SINGLE("ALC Capture Attack Time", WM8971_ALC3, 0, 15, 0),
146 SOC_SINGLE("ALC Capture NG Threshold", WM8971_NGATE, 3, 31, 0),
147 SOC_ENUM("ALC Capture NG Type", wm8971_enum[4]),
148 SOC_SINGLE("ALC Capture NG Switch", WM8971_NGATE, 0, 1, 0),
149
150 SOC_SINGLE("Capture 6dB Attenuate", WM8971_ADCDAC, 8, 1, 0),
151 SOC_SINGLE("Playback 6dB Attenuate", WM8971_ADCDAC, 7, 1, 0),
152
153 SOC_ENUM("Playback De-emphasis", wm8971_enum[5]),
154 SOC_ENUM("Playback Function", wm8971_enum[6]),
155 SOC_ENUM("Playback Phase", wm8971_enum[7]),
156
157 SOC_DOUBLE_R("Mic Boost", WM8971_LADCIN, WM8971_RADCIN, 4, 3, 0),
158};
159
8bae3e23
KK
160/*
161 * DAPM Controls
162 */
163
164/* Left Mixer */
165static const struct snd_kcontrol_new wm8971_left_mixer_controls[] = {
166SOC_DAPM_SINGLE("Playback Switch", WM8971_LOUTM1, 8, 1, 0),
167SOC_DAPM_SINGLE("Left Bypass Switch", WM8971_LOUTM1, 7, 1, 0),
168SOC_DAPM_SINGLE("Right Playback Switch", WM8971_LOUTM2, 8, 1, 0),
169SOC_DAPM_SINGLE("Right Bypass Switch", WM8971_LOUTM2, 7, 1, 0),
170};
171
172/* Right Mixer */
173static const struct snd_kcontrol_new wm8971_right_mixer_controls[] = {
174SOC_DAPM_SINGLE("Left Playback Switch", WM8971_ROUTM1, 8, 1, 0),
175SOC_DAPM_SINGLE("Left Bypass Switch", WM8971_ROUTM1, 7, 1, 0),
176SOC_DAPM_SINGLE("Playback Switch", WM8971_ROUTM2, 8, 1, 0),
177SOC_DAPM_SINGLE("Right Bypass Switch", WM8971_ROUTM2, 7, 1, 0),
178};
179
180/* Mono Mixer */
181static const struct snd_kcontrol_new wm8971_mono_mixer_controls[] = {
182SOC_DAPM_SINGLE("Left Playback Switch", WM8971_MOUTM1, 8, 1, 0),
183SOC_DAPM_SINGLE("Left Bypass Switch", WM8971_MOUTM1, 7, 1, 0),
184SOC_DAPM_SINGLE("Right Playback Switch", WM8971_MOUTM2, 8, 1, 0),
185SOC_DAPM_SINGLE("Right Bypass Switch", WM8971_MOUTM2, 7, 1, 0),
186};
187
188/* Left Line Mux */
189static const struct snd_kcontrol_new wm8971_left_line_controls =
190SOC_DAPM_ENUM("Route", wm8971_enum[8]);
191
192/* Right Line Mux */
193static const struct snd_kcontrol_new wm8971_right_line_controls =
194SOC_DAPM_ENUM("Route", wm8971_enum[9]);
195
196/* Left PGA Mux */
197static const struct snd_kcontrol_new wm8971_left_pga_controls =
198SOC_DAPM_ENUM("Route", wm8971_enum[10]);
199
200/* Right PGA Mux */
201static const struct snd_kcontrol_new wm8971_right_pga_controls =
202SOC_DAPM_ENUM("Route", wm8971_enum[11]);
203
204/* Mono ADC Mux */
205static const struct snd_kcontrol_new wm8971_monomux_controls =
206SOC_DAPM_ENUM("Route", wm8971_enum[13]);
207
208static const struct snd_soc_dapm_widget wm8971_dapm_widgets[] = {
209 SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0,
210 &wm8971_left_mixer_controls[0],
211 ARRAY_SIZE(wm8971_left_mixer_controls)),
212 SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0,
213 &wm8971_right_mixer_controls[0],
214 ARRAY_SIZE(wm8971_right_mixer_controls)),
215 SND_SOC_DAPM_MIXER("Mono Mixer", WM8971_PWR2, 2, 0,
216 &wm8971_mono_mixer_controls[0],
217 ARRAY_SIZE(wm8971_mono_mixer_controls)),
218
219 SND_SOC_DAPM_PGA("Right Out 2", WM8971_PWR2, 3, 0, NULL, 0),
220 SND_SOC_DAPM_PGA("Left Out 2", WM8971_PWR2, 4, 0, NULL, 0),
221 SND_SOC_DAPM_PGA("Right Out 1", WM8971_PWR2, 5, 0, NULL, 0),
222 SND_SOC_DAPM_PGA("Left Out 1", WM8971_PWR2, 6, 0, NULL, 0),
223 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", WM8971_PWR2, 7, 0),
224 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", WM8971_PWR2, 8, 0),
225 SND_SOC_DAPM_PGA("Mono Out 1", WM8971_PWR2, 2, 0, NULL, 0),
226
227 SND_SOC_DAPM_MICBIAS("Mic Bias", WM8971_PWR1, 1, 0),
228 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", WM8971_PWR1, 2, 0),
229 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", WM8971_PWR1, 3, 0),
230
231 SND_SOC_DAPM_MUX("Left PGA Mux", WM8971_PWR1, 5, 0,
232 &wm8971_left_pga_controls),
233 SND_SOC_DAPM_MUX("Right PGA Mux", WM8971_PWR1, 4, 0,
234 &wm8971_right_pga_controls),
235 SND_SOC_DAPM_MUX("Left Line Mux", SND_SOC_NOPM, 0, 0,
236 &wm8971_left_line_controls),
237 SND_SOC_DAPM_MUX("Right Line Mux", SND_SOC_NOPM, 0, 0,
238 &wm8971_right_line_controls),
239
240 SND_SOC_DAPM_MUX("Left ADC Mux", SND_SOC_NOPM, 0, 0,
241 &wm8971_monomux_controls),
242 SND_SOC_DAPM_MUX("Right ADC Mux", SND_SOC_NOPM, 0, 0,
243 &wm8971_monomux_controls),
244
245 SND_SOC_DAPM_OUTPUT("LOUT1"),
246 SND_SOC_DAPM_OUTPUT("ROUT1"),
247 SND_SOC_DAPM_OUTPUT("LOUT2"),
248 SND_SOC_DAPM_OUTPUT("ROUT2"),
249 SND_SOC_DAPM_OUTPUT("MONO"),
250
251 SND_SOC_DAPM_INPUT("LINPUT1"),
252 SND_SOC_DAPM_INPUT("RINPUT1"),
253 SND_SOC_DAPM_INPUT("MIC"),
254};
255
256static const struct snd_soc_dapm_route audio_map[] = {
257 /* left mixer */
258 {"Left Mixer", "Playback Switch", "Left DAC"},
259 {"Left Mixer", "Left Bypass Switch", "Left Line Mux"},
260 {"Left Mixer", "Right Playback Switch", "Right DAC"},
261 {"Left Mixer", "Right Bypass Switch", "Right Line Mux"},
262
263 /* right mixer */
264 {"Right Mixer", "Left Playback Switch", "Left DAC"},
265 {"Right Mixer", "Left Bypass Switch", "Left Line Mux"},
266 {"Right Mixer", "Playback Switch", "Right DAC"},
267 {"Right Mixer", "Right Bypass Switch", "Right Line Mux"},
268
269 /* left out 1 */
270 {"Left Out 1", NULL, "Left Mixer"},
271 {"LOUT1", NULL, "Left Out 1"},
272
273 /* left out 2 */
274 {"Left Out 2", NULL, "Left Mixer"},
275 {"LOUT2", NULL, "Left Out 2"},
276
277 /* right out 1 */
278 {"Right Out 1", NULL, "Right Mixer"},
279 {"ROUT1", NULL, "Right Out 1"},
280
281 /* right out 2 */
282 {"Right Out 2", NULL, "Right Mixer"},
283 {"ROUT2", NULL, "Right Out 2"},
284
285 /* mono mixer */
286 {"Mono Mixer", "Left Playback Switch", "Left DAC"},
287 {"Mono Mixer", "Left Bypass Switch", "Left Line Mux"},
288 {"Mono Mixer", "Right Playback Switch", "Right DAC"},
289 {"Mono Mixer", "Right Bypass Switch", "Right Line Mux"},
290
291 /* mono out */
292 {"Mono Out", NULL, "Mono Mixer"},
293 {"MONO1", NULL, "Mono Out"},
294
295 /* Left Line Mux */
296 {"Left Line Mux", "Line", "LINPUT1"},
297 {"Left Line Mux", "PGA", "Left PGA Mux"},
298 {"Left Line Mux", "Differential", "Differential Mux"},
299
300 /* Right Line Mux */
301 {"Right Line Mux", "Line", "RINPUT1"},
302 {"Right Line Mux", "Mic", "MIC"},
303 {"Right Line Mux", "PGA", "Right PGA Mux"},
304 {"Right Line Mux", "Differential", "Differential Mux"},
305
306 /* Left PGA Mux */
307 {"Left PGA Mux", "Line", "LINPUT1"},
308 {"Left PGA Mux", "Differential", "Differential Mux"},
309
310 /* Right PGA Mux */
311 {"Right PGA Mux", "Line", "RINPUT1"},
312 {"Right PGA Mux", "Differential", "Differential Mux"},
313
314 /* Differential Mux */
315 {"Differential Mux", "Line", "LINPUT1"},
316 {"Differential Mux", "Line", "RINPUT1"},
317
318 /* Left ADC Mux */
319 {"Left ADC Mux", "Stereo", "Left PGA Mux"},
320 {"Left ADC Mux", "Mono (Left)", "Left PGA Mux"},
321 {"Left ADC Mux", "Digital Mono", "Left PGA Mux"},
322
323 /* Right ADC Mux */
324 {"Right ADC Mux", "Stereo", "Right PGA Mux"},
325 {"Right ADC Mux", "Mono (Right)", "Right PGA Mux"},
326 {"Right ADC Mux", "Digital Mono", "Right PGA Mux"},
327
328 /* ADC */
329 {"Left ADC", NULL, "Left ADC Mux"},
330 {"Right ADC", NULL, "Right ADC Mux"},
331};
332
333static int wm8971_add_widgets(struct snd_soc_codec *codec)
334{
ce6120cc 335 struct snd_soc_dapm_context *dapm = &codec->dapm;
8bae3e23 336
ce6120cc
LG
337 snd_soc_dapm_new_controls(dapm, wm8971_dapm_widgets,
338 ARRAY_SIZE(wm8971_dapm_widgets));
339 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
8bae3e23 340
8bae3e23
KK
341 return 0;
342}
343
344struct _coeff_div {
345 u32 mclk;
346 u32 rate;
347 u16 fs;
348 u8 sr:5;
349 u8 usb:1;
350};
351
352/* codec hifi mclk clock divider coefficients */
353static const struct _coeff_div coeff_div[] = {
354 /* 8k */
355 {12288000, 8000, 1536, 0x6, 0x0},
356 {11289600, 8000, 1408, 0x16, 0x0},
357 {18432000, 8000, 2304, 0x7, 0x0},
358 {16934400, 8000, 2112, 0x17, 0x0},
359 {12000000, 8000, 1500, 0x6, 0x1},
360
361 /* 11.025k */
362 {11289600, 11025, 1024, 0x18, 0x0},
363 {16934400, 11025, 1536, 0x19, 0x0},
364 {12000000, 11025, 1088, 0x19, 0x1},
365
366 /* 16k */
367 {12288000, 16000, 768, 0xa, 0x0},
368 {18432000, 16000, 1152, 0xb, 0x0},
369 {12000000, 16000, 750, 0xa, 0x1},
370
371 /* 22.05k */
372 {11289600, 22050, 512, 0x1a, 0x0},
373 {16934400, 22050, 768, 0x1b, 0x0},
374 {12000000, 22050, 544, 0x1b, 0x1},
375
376 /* 32k */
377 {12288000, 32000, 384, 0xc, 0x0},
378 {18432000, 32000, 576, 0xd, 0x0},
379 {12000000, 32000, 375, 0xa, 0x1},
380
381 /* 44.1k */
382 {11289600, 44100, 256, 0x10, 0x0},
383 {16934400, 44100, 384, 0x11, 0x0},
384 {12000000, 44100, 272, 0x11, 0x1},
385
386 /* 48k */
387 {12288000, 48000, 256, 0x0, 0x0},
388 {18432000, 48000, 384, 0x1, 0x0},
389 {12000000, 48000, 250, 0x0, 0x1},
390
391 /* 88.2k */
392 {11289600, 88200, 128, 0x1e, 0x0},
393 {16934400, 88200, 192, 0x1f, 0x0},
394 {12000000, 88200, 136, 0x1f, 0x1},
395
396 /* 96k */
397 {12288000, 96000, 128, 0xe, 0x0},
398 {18432000, 96000, 192, 0xf, 0x0},
399 {12000000, 96000, 125, 0xe, 0x1},
400};
401
402static int get_coeff(int mclk, int rate)
403{
404 int i;
405
406 for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
407 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
408 return i;
409 }
410 return -EINVAL;
411}
412
413static int wm8971_set_dai_sysclk(struct snd_soc_dai *codec_dai,
414 int clk_id, unsigned int freq, int dir)
415{
416 struct snd_soc_codec *codec = codec_dai->codec;
b2c812e2 417 struct wm8971_priv *wm8971 = snd_soc_codec_get_drvdata(codec);
8bae3e23
KK
418
419 switch (freq) {
420 case 11289600:
421 case 12000000:
422 case 12288000:
423 case 16934400:
424 case 18432000:
425 wm8971->sysclk = freq;
426 return 0;
427 }
428 return -EINVAL;
429}
430
431static int wm8971_set_dai_fmt(struct snd_soc_dai *codec_dai,
432 unsigned int fmt)
433{
434 struct snd_soc_codec *codec = codec_dai->codec;
435 u16 iface = 0;
436
437 /* set master/slave audio interface */
438 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
439 case SND_SOC_DAIFMT_CBM_CFM:
440 iface = 0x0040;
441 break;
442 case SND_SOC_DAIFMT_CBS_CFS:
443 break;
444 default:
445 return -EINVAL;
446 }
447
448 /* interface format */
449 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
450 case SND_SOC_DAIFMT_I2S:
451 iface |= 0x0002;
452 break;
453 case SND_SOC_DAIFMT_RIGHT_J:
454 break;
455 case SND_SOC_DAIFMT_LEFT_J:
456 iface |= 0x0001;
457 break;
458 case SND_SOC_DAIFMT_DSP_A:
459 iface |= 0x0003;
460 break;
461 case SND_SOC_DAIFMT_DSP_B:
462 iface |= 0x0013;
463 break;
464 default:
465 return -EINVAL;
466 }
467
468 /* clock inversion */
469 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
470 case SND_SOC_DAIFMT_NB_NF:
471 break;
472 case SND_SOC_DAIFMT_IB_IF:
473 iface |= 0x0090;
474 break;
475 case SND_SOC_DAIFMT_IB_NF:
476 iface |= 0x0080;
477 break;
478 case SND_SOC_DAIFMT_NB_IF:
479 iface |= 0x0010;
480 break;
481 default:
482 return -EINVAL;
483 }
484
17a52fd6 485 snd_soc_write(codec, WM8971_IFACE, iface);
8bae3e23
KK
486 return 0;
487}
488
489static int wm8971_pcm_hw_params(struct snd_pcm_substream *substream,
dee89c4d
MB
490 struct snd_pcm_hw_params *params,
491 struct snd_soc_dai *dai)
8bae3e23
KK
492{
493 struct snd_soc_pcm_runtime *rtd = substream->private_data;
f0fba2ad 494 struct snd_soc_codec *codec = rtd->codec;
b2c812e2 495 struct wm8971_priv *wm8971 = snd_soc_codec_get_drvdata(codec);
17a52fd6
MB
496 u16 iface = snd_soc_read(codec, WM8971_IFACE) & 0x1f3;
497 u16 srate = snd_soc_read(codec, WM8971_SRATE) & 0x1c0;
8bae3e23
KK
498 int coeff = get_coeff(wm8971->sysclk, params_rate(params));
499
500 /* bit size */
501 switch (params_format(params)) {
502 case SNDRV_PCM_FORMAT_S16_LE:
503 break;
504 case SNDRV_PCM_FORMAT_S20_3LE:
505 iface |= 0x0004;
506 break;
507 case SNDRV_PCM_FORMAT_S24_LE:
508 iface |= 0x0008;
509 break;
510 case SNDRV_PCM_FORMAT_S32_LE:
511 iface |= 0x000c;
512 break;
513 }
514
515 /* set iface & srate */
17a52fd6 516 snd_soc_write(codec, WM8971_IFACE, iface);
8bae3e23 517 if (coeff >= 0)
17a52fd6 518 snd_soc_write(codec, WM8971_SRATE, srate |
8bae3e23
KK
519 (coeff_div[coeff].sr << 1) | coeff_div[coeff].usb);
520
521 return 0;
522}
523
524static int wm8971_mute(struct snd_soc_dai *dai, int mute)
525{
526 struct snd_soc_codec *codec = dai->codec;
17a52fd6 527 u16 mute_reg = snd_soc_read(codec, WM8971_ADCDAC) & 0xfff7;
8bae3e23
KK
528
529 if (mute)
17a52fd6 530 snd_soc_write(codec, WM8971_ADCDAC, mute_reg | 0x8);
8bae3e23 531 else
17a52fd6 532 snd_soc_write(codec, WM8971_ADCDAC, mute_reg);
8bae3e23
KK
533 return 0;
534}
535
536static int wm8971_set_bias_level(struct snd_soc_codec *codec,
537 enum snd_soc_bias_level level)
538{
17a52fd6 539 u16 pwr_reg = snd_soc_read(codec, WM8971_PWR1) & 0xfe3e;
8bae3e23
KK
540
541 switch (level) {
542 case SND_SOC_BIAS_ON:
543 /* set vmid to 50k and unmute dac */
17a52fd6 544 snd_soc_write(codec, WM8971_PWR1, pwr_reg | 0x00c1);
8bae3e23
KK
545 break;
546 case SND_SOC_BIAS_PREPARE:
547 break;
548 case SND_SOC_BIAS_STANDBY:
549 /* mute dac and set vmid to 500k, enable VREF */
17a52fd6 550 snd_soc_write(codec, WM8971_PWR1, pwr_reg | 0x0140);
8bae3e23
KK
551 break;
552 case SND_SOC_BIAS_OFF:
17a52fd6 553 snd_soc_write(codec, WM8971_PWR1, 0x0001);
8bae3e23
KK
554 break;
555 }
ce6120cc 556 codec->dapm.bias_level = level;
8bae3e23
KK
557 return 0;
558}
559
560#define WM8971_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
561 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
562 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
563
564#define WM8971_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
565 SNDRV_PCM_FMTBIT_S24_LE)
566
6335d055
EM
567static struct snd_soc_dai_ops wm8971_dai_ops = {
568 .hw_params = wm8971_pcm_hw_params,
569 .digital_mute = wm8971_mute,
570 .set_fmt = wm8971_set_dai_fmt,
571 .set_sysclk = wm8971_set_dai_sysclk,
572};
573
f0fba2ad
LG
574static struct snd_soc_dai_driver wm8971_dai = {
575 .name = "wm8971-hifi",
8bae3e23
KK
576 .playback = {
577 .stream_name = "Playback",
578 .channels_min = 1,
579 .channels_max = 2,
580 .rates = WM8971_RATES,
581 .formats = WM8971_FORMATS,},
582 .capture = {
583 .stream_name = "Capture",
584 .channels_min = 1,
585 .channels_max = 2,
586 .rates = WM8971_RATES,
587 .formats = WM8971_FORMATS,},
6335d055 588 .ops = &wm8971_dai_ops,
8bae3e23 589};
8bae3e23
KK
590
591static void wm8971_work(struct work_struct *work)
592{
ce6120cc
LG
593 struct snd_soc_dapm_context *dapm =
594 container_of(work, struct snd_soc_dapm_context,
595 delayed_work.work);
596 struct snd_soc_codec *codec = dapm->codec;
597 wm8971_set_bias_level(codec, codec->dapm.bias_level);
8bae3e23
KK
598}
599
f0fba2ad 600static int wm8971_suspend(struct snd_soc_codec *codec, pm_message_t state)
8bae3e23 601{
8bae3e23
KK
602 wm8971_set_bias_level(codec, SND_SOC_BIAS_OFF);
603 return 0;
604}
605
f0fba2ad 606static int wm8971_resume(struct snd_soc_codec *codec)
8bae3e23 607{
8bae3e23
KK
608 int i;
609 u8 data[2];
610 u16 *cache = codec->reg_cache;
611 u16 reg;
612
613 /* Sync reg_cache with the hardware */
614 for (i = 0; i < ARRAY_SIZE(wm8971_reg); i++) {
1a3bbb40 615 if (i == WM8971_RESET)
8bae3e23
KK
616 continue;
617 data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001);
618 data[1] = cache[i] & 0x00ff;
619 codec->hw_write(codec->control_data, data, 2);
620 }
621
622 wm8971_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
623
624 /* charge wm8971 caps */
ce6120cc 625 if (codec->dapm.suspend_bias_level == SND_SOC_BIAS_ON) {
17a52fd6
MB
626 reg = snd_soc_read(codec, WM8971_PWR1) & 0xfe3e;
627 snd_soc_write(codec, WM8971_PWR1, reg | 0x01c0);
ce6120cc
LG
628 codec->dapm.bias_level = SND_SOC_BIAS_ON;
629 queue_delayed_work(wm8971_workq, &codec->dapm.delayed_work,
8bae3e23
KK
630 msecs_to_jiffies(1000));
631 }
632
633 return 0;
634}
635
f0fba2ad 636static int wm8971_probe(struct snd_soc_codec *codec)
8bae3e23 637{
f0fba2ad
LG
638 struct wm8971_priv *wm8971 = snd_soc_codec_get_drvdata(codec);
639 int ret = 0;
640 u16 reg;
641
f0fba2ad 642 ret = snd_soc_codec_set_cache_io(codec, 7, 9, wm8971->control_type);
17a52fd6
MB
643 if (ret < 0) {
644 printk(KERN_ERR "wm8971: failed to set cache I/O: %d\n", ret);
f0fba2ad 645 return ret;
17a52fd6
MB
646 }
647
ce6120cc 648 INIT_DELAYED_WORK(&codec->dapm.delayed_work, wm8971_work);
f0fba2ad
LG
649 wm8971_workq = create_workqueue("wm8971");
650 if (wm8971_workq == NULL)
651 return -ENOMEM;
8bae3e23 652
f0fba2ad 653 wm8971_reset(codec);
8bae3e23
KK
654
655 /* charge output caps - set vmid to 5k for quick power up */
17a52fd6
MB
656 reg = snd_soc_read(codec, WM8971_PWR1) & 0xfe3e;
657 snd_soc_write(codec, WM8971_PWR1, reg | 0x01c0);
ce6120cc
LG
658 codec->dapm.bias_level = SND_SOC_BIAS_STANDBY;
659 queue_delayed_work(wm8971_workq, &codec->dapm.delayed_work,
8bae3e23
KK
660 msecs_to_jiffies(1000));
661
662 /* set the update bits */
c6d43417
AL
663 snd_soc_update_bits(codec, WM8971_LDAC, 0x0100, 0x0100);
664 snd_soc_update_bits(codec, WM8971_RDAC, 0x0100, 0x0100);
665 snd_soc_update_bits(codec, WM8971_LOUT1V, 0x0100, 0x0100);
666 snd_soc_update_bits(codec, WM8971_ROUT1V, 0x0100, 0x0100);
667 snd_soc_update_bits(codec, WM8971_LOUT2V, 0x0100, 0x0100);
668 snd_soc_update_bits(codec, WM8971_ROUT2V, 0x0100, 0x0100);
669 snd_soc_update_bits(codec, WM8971_LINVOL, 0x0100, 0x0100);
670 snd_soc_update_bits(codec, WM8971_RINVOL, 0x0100, 0x0100);
8bae3e23 671
3e8e1952
IM
672 snd_soc_add_controls(codec, wm8971_snd_controls,
673 ARRAY_SIZE(wm8971_snd_controls));
8bae3e23 674 wm8971_add_widgets(codec);
fe3e78e0 675
8bae3e23 676 return ret;
8bae3e23
KK
677}
678
8bae3e23 679
f0fba2ad
LG
680/* power down chip */
681static int wm8971_remove(struct snd_soc_codec *codec)
682{
683 wm8971_set_bias_level(codec, SND_SOC_BIAS_OFF);
684
685 if (wm8971_workq)
686 destroy_workqueue(wm8971_workq);
687 return 0;
688}
689
690static struct snd_soc_codec_driver soc_codec_dev_wm8971 = {
691 .probe = wm8971_probe,
692 .remove = wm8971_remove,
693 .suspend = wm8971_suspend,
694 .resume = wm8971_resume,
695 .set_bias_level = wm8971_set_bias_level,
696 .reg_cache_size = ARRAY_SIZE(wm8971_reg),
697 .reg_word_size = sizeof(u16),
698 .reg_cache_default = wm8971_reg,
699};
8bae3e23 700
f0fba2ad
LG
701#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
702static __devinit int wm8971_i2c_probe(struct i2c_client *i2c,
703 const struct i2c_device_id *id)
8bae3e23 704{
f0fba2ad 705 struct wm8971_priv *wm8971;
8bae3e23
KK
706 int ret;
707
f0fba2ad
LG
708 wm8971 = kzalloc(sizeof(struct wm8971_priv), GFP_KERNEL);
709 if (wm8971 == NULL)
710 return -ENOMEM;
8bae3e23 711
7f984b55 712 wm8971->control_type = SND_SOC_I2C;
f0fba2ad 713 i2c_set_clientdata(i2c, wm8971);
8bae3e23 714
f0fba2ad
LG
715 ret = snd_soc_register_codec(&i2c->dev,
716 &soc_codec_dev_wm8971, &wm8971_dai, 1);
8bae3e23 717 if (ret < 0)
f0fba2ad 718 kfree(wm8971);
8bae3e23
KK
719 return ret;
720}
721
f0fba2ad 722static __devexit int wm8971_i2c_remove(struct i2c_client *client)
8bae3e23 723{
f0fba2ad
LG
724 snd_soc_unregister_codec(&client->dev);
725 kfree(i2c_get_clientdata(client));
8bae3e23
KK
726 return 0;
727}
728
729static const struct i2c_device_id wm8971_i2c_id[] = {
730 { "wm8971", 0 },
731 { }
732};
733MODULE_DEVICE_TABLE(i2c, wm8971_i2c_id);
734
735static struct i2c_driver wm8971_i2c_driver = {
736 .driver = {
f0fba2ad 737 .name = "wm8971-codec",
8bae3e23
KK
738 .owner = THIS_MODULE,
739 },
f0fba2ad
LG
740 .probe = wm8971_i2c_probe,
741 .remove = __devexit_p(wm8971_i2c_remove),
8bae3e23
KK
742 .id_table = wm8971_i2c_id,
743};
8bae3e23
KK
744#endif
745
f0fba2ad 746static int __init wm8971_modinit(void)
8bae3e23 747{
8bae3e23 748 int ret = 0;
f0fba2ad
LG
749#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
750 ret = i2c_add_driver(&wm8971_i2c_driver);
8bae3e23 751 if (ret != 0) {
f0fba2ad
LG
752 printk(KERN_ERR "Failed to register WM8971 I2C driver: %d\n",
753 ret);
8bae3e23 754 }
8bae3e23 755#endif
f0fba2ad 756 return ret;
64089b84
MB
757}
758module_init(wm8971_modinit);
759
760static void __exit wm8971_exit(void)
761{
f0fba2ad
LG
762#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
763 i2c_del_driver(&wm8971_i2c_driver);
764#endif
64089b84
MB
765}
766module_exit(wm8971_exit);
767
8bae3e23
KK
768MODULE_DESCRIPTION("ASoC WM8971 driver");
769MODULE_AUTHOR("Lab126");
770MODULE_LICENSE("GPL");
This page took 0.163434 seconds and 5 git commands to generate.