ASoC: One more x86 typo fix
[deliverable/linux.git] / sound / soc / codecs / wm8731.c
CommitLineData
40e0aa64
RP
1/*
2 * wm8731.c -- WM8731 ALSA SoC Audio driver
3 *
4 * Copyright 2005 Openedhand Ltd.
5 *
6 * Author: Richard Purdie <richard@openedhand.com>
7 *
8 * Based on wm8753.c by Liam Girdwood
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/module.h>
16#include <linux/moduleparam.h>
17#include <linux/init.h>
18#include <linux/delay.h>
19#include <linux/pm.h>
20#include <linux/i2c.h>
5a0e3ad6 21#include <linux/slab.h>
40e0aa64 22#include <linux/platform_device.h>
7dea7c01 23#include <linux/regulator/consumer.h>
d2a40355 24#include <linux/spi/spi.h>
40e0aa64
RP
25#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28#include <sound/soc.h>
40e0aa64 29#include <sound/initval.h>
d00efa64 30#include <sound/tlv.h>
40e0aa64
RP
31
32#include "wm8731.h"
33
7dea7c01
MB
34#define WM8731_NUM_SUPPLIES 4
35static const char *wm8731_supply_names[WM8731_NUM_SUPPLIES] = {
36 "AVDD",
37 "HPVDD",
38 "DCVDD",
39 "DBVDD",
40};
41
b36d61d4
FM
42/* codec private data */
43struct wm8731_priv {
f0fba2ad 44 enum snd_soc_control_type control_type;
7dea7c01 45 struct regulator_bulk_data supplies[WM8731_NUM_SUPPLIES];
5998102b 46 u16 reg_cache[WM8731_CACHEREGNUM];
b36d61d4 47 unsigned int sysclk;
9745e824 48 int sysclk_type;
dd31b310
MB
49 int playback_fs;
50 bool deemph;
b36d61d4
FM
51};
52
a8035c8f 53
40e0aa64
RP
54/*
55 * wm8731 register cache
56 * We can't read the WM8731 register space when we are
57 * using 2 wire for device control, so we cache them instead.
58 * There is no point in caching the reset register
59 */
60static const u16 wm8731_reg[WM8731_CACHEREGNUM] = {
17a52fd6
MB
61 0x0097, 0x0097, 0x0079, 0x0079,
62 0x000a, 0x0008, 0x009f, 0x000a,
63 0x0000, 0x0000
40e0aa64
RP
64};
65
17a52fd6 66#define wm8731_reset(c) snd_soc_write(c, WM8731_RESET, 0)
40e0aa64
RP
67
68static const char *wm8731_input_select[] = {"Line In", "Mic"};
59f72970 69
59f72970
MB
70static const struct soc_enum wm8731_insel_enum =
71 SOC_ENUM_SINGLE(WM8731_APANA, 2, 2, wm8731_input_select);
72
dd31b310
MB
73static int wm8731_deemph[] = { 0, 32000, 44100, 48000 };
74
75static int wm8731_set_deemph(struct snd_soc_codec *codec)
76{
77 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
78 int val, i, best;
79
80 /* If we're using deemphasis select the nearest available sample
81 * rate.
82 */
83 if (wm8731->deemph) {
84 best = 1;
85 for (i = 2; i < ARRAY_SIZE(wm8731_deemph); i++) {
86 if (abs(wm8731_deemph[i] - wm8731->playback_fs) <
87 abs(wm8731_deemph[best] - wm8731->playback_fs))
88 best = i;
89 }
90
91 val = best << 1;
92 } else {
93 best = 0;
94 val = 0;
95 }
96
97 dev_dbg(codec->dev, "Set deemphasis %d (%dHz)\n",
98 best, wm8731_deemph[best]);
99
100 return snd_soc_update_bits(codec, WM8731_APDIGI, 0x6, val);
101}
102
103static int wm8731_get_deemph(struct snd_kcontrol *kcontrol,
104 struct snd_ctl_elem_value *ucontrol)
105{
106 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
107 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
108
109 ucontrol->value.enumerated.item[0] = wm8731->deemph;
110
111 return 0;
112}
113
114static int wm8731_put_deemph(struct snd_kcontrol *kcontrol,
115 struct snd_ctl_elem_value *ucontrol)
116{
117 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
118 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
119 int deemph = ucontrol->value.enumerated.item[0];
120 int ret = 0;
121
122 if (deemph > 1)
123 return -EINVAL;
124
125 mutex_lock(&codec->mutex);
126 if (wm8731->deemph != deemph) {
127 wm8731->deemph = deemph;
59f72970 128
dd31b310
MB
129 wm8731_set_deemph(codec);
130
131 ret = 1;
132 }
133 mutex_unlock(&codec->mutex);
134
135 return ret;
136}
40e0aa64 137
d00efa64
MB
138static const DECLARE_TLV_DB_SCALE(in_tlv, -3450, 150, 0);
139static const DECLARE_TLV_DB_SCALE(sidetone_tlv, -1500, 300, 0);
140static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1);
d921184e 141static const DECLARE_TLV_DB_SCALE(mic_tlv, 0, 2000, 0);
d00efa64 142
40e0aa64
RP
143static const struct snd_kcontrol_new wm8731_snd_controls[] = {
144
d00efa64
MB
145SOC_DOUBLE_R_TLV("Master Playback Volume", WM8731_LOUT1V, WM8731_ROUT1V,
146 0, 127, 0, out_tlv),
bd903b6e
LG
147SOC_DOUBLE_R("Master Playback ZC Switch", WM8731_LOUT1V, WM8731_ROUT1V,
148 7, 1, 0),
40e0aa64 149
d00efa64
MB
150SOC_DOUBLE_R_TLV("Capture Volume", WM8731_LINVOL, WM8731_RINVOL, 0, 31, 0,
151 in_tlv),
40e0aa64
RP
152SOC_DOUBLE_R("Line Capture Switch", WM8731_LINVOL, WM8731_RINVOL, 7, 1, 1),
153
d921184e 154SOC_SINGLE_TLV("Mic Boost Volume", WM8731_APANA, 0, 1, 0, mic_tlv),
ef38ed88 155SOC_SINGLE("Mic Capture Switch", WM8731_APANA, 1, 1, 1),
40e0aa64 156
d00efa64
MB
157SOC_SINGLE_TLV("Sidetone Playback Volume", WM8731_APANA, 6, 3, 1,
158 sidetone_tlv),
40e0aa64
RP
159
160SOC_SINGLE("ADC High Pass Filter Switch", WM8731_APDIGI, 0, 1, 1),
161SOC_SINGLE("Store DC Offset Switch", WM8731_APDIGI, 4, 1, 0),
162
dd31b310
MB
163SOC_SINGLE_BOOL_EXT("Playback Deemphasis Switch", 0,
164 wm8731_get_deemph, wm8731_put_deemph),
40e0aa64
RP
165};
166
40e0aa64
RP
167/* Output Mixer */
168static const struct snd_kcontrol_new wm8731_output_mixer_controls[] = {
169SOC_DAPM_SINGLE("Line Bypass Switch", WM8731_APANA, 3, 1, 0),
170SOC_DAPM_SINGLE("Mic Sidetone Switch", WM8731_APANA, 5, 1, 0),
171SOC_DAPM_SINGLE("HiFi Playback Switch", WM8731_APANA, 4, 1, 0),
172};
173
174/* Input mux */
175static const struct snd_kcontrol_new wm8731_input_mux_controls =
59f72970 176SOC_DAPM_ENUM("Input Select", wm8731_insel_enum);
40e0aa64
RP
177
178static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = {
9745e824 179SND_SOC_DAPM_SUPPLY("OSC", WM8731_PWR, 5, 1, NULL, 0),
40e0aa64
RP
180SND_SOC_DAPM_MIXER("Output Mixer", WM8731_PWR, 4, 1,
181 &wm8731_output_mixer_controls[0],
182 ARRAY_SIZE(wm8731_output_mixer_controls)),
183SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8731_PWR, 3, 1),
184SND_SOC_DAPM_OUTPUT("LOUT"),
185SND_SOC_DAPM_OUTPUT("LHPOUT"),
186SND_SOC_DAPM_OUTPUT("ROUT"),
187SND_SOC_DAPM_OUTPUT("RHPOUT"),
188SND_SOC_DAPM_ADC("ADC", "HiFi Capture", WM8731_PWR, 2, 1),
189SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, &wm8731_input_mux_controls),
190SND_SOC_DAPM_PGA("Line Input", WM8731_PWR, 0, 1, NULL, 0),
191SND_SOC_DAPM_MICBIAS("Mic Bias", WM8731_PWR, 1, 1),
192SND_SOC_DAPM_INPUT("MICIN"),
193SND_SOC_DAPM_INPUT("RLINEIN"),
194SND_SOC_DAPM_INPUT("LLINEIN"),
195};
196
9745e824
MB
197static int wm8731_check_osc(struct snd_soc_dapm_widget *source,
198 struct snd_soc_dapm_widget *sink)
199{
200 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(source->codec);
201
202 return wm8731->sysclk_type == WM8731_SYSCLK_MCLK;
203}
204
a65f0568 205static const struct snd_soc_dapm_route intercon[] = {
9745e824
MB
206 {"DAC", NULL, "OSC", wm8731_check_osc},
207 {"ADC", NULL, "OSC", wm8731_check_osc},
208
40e0aa64
RP
209 /* output mixer */
210 {"Output Mixer", "Line Bypass Switch", "Line Input"},
211 {"Output Mixer", "HiFi Playback Switch", "DAC"},
212 {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"},
213
214 /* outputs */
215 {"RHPOUT", NULL, "Output Mixer"},
216 {"ROUT", NULL, "Output Mixer"},
217 {"LHPOUT", NULL, "Output Mixer"},
218 {"LOUT", NULL, "Output Mixer"},
219
220 /* input mux */
221 {"Input Mux", "Line In", "Line Input"},
222 {"Input Mux", "Mic", "Mic Bias"},
223 {"ADC", NULL, "Input Mux"},
224
225 /* inputs */
226 {"Line Input", NULL, "LLINEIN"},
227 {"Line Input", NULL, "RLINEIN"},
228 {"Mic Bias", NULL, "MICIN"},
40e0aa64
RP
229};
230
231static int wm8731_add_widgets(struct snd_soc_codec *codec)
232{
ce6120cc 233 struct snd_soc_dapm_context *dapm = &codec->dapm;
40e0aa64 234
ce6120cc
LG
235 snd_soc_dapm_new_controls(dapm, wm8731_dapm_widgets,
236 ARRAY_SIZE(wm8731_dapm_widgets));
237 snd_soc_dapm_add_routes(dapm, intercon, ARRAY_SIZE(intercon));
40e0aa64 238
40e0aa64
RP
239 return 0;
240}
241
242struct _coeff_div {
243 u32 mclk;
244 u32 rate;
245 u16 fs;
246 u8 sr:4;
247 u8 bosr:1;
248 u8 usb:1;
249};
250
251/* codec mclk clock divider coefficients */
252static const struct _coeff_div coeff_div[] = {
253 /* 48k */
254 {12288000, 48000, 256, 0x0, 0x0, 0x0},
255 {18432000, 48000, 384, 0x0, 0x1, 0x0},
256 {12000000, 48000, 250, 0x0, 0x0, 0x1},
257
258 /* 32k */
259 {12288000, 32000, 384, 0x6, 0x0, 0x0},
260 {18432000, 32000, 576, 0x6, 0x1, 0x0},
298a2c75 261 {12000000, 32000, 375, 0x6, 0x0, 0x1},
40e0aa64
RP
262
263 /* 8k */
264 {12288000, 8000, 1536, 0x3, 0x0, 0x0},
265 {18432000, 8000, 2304, 0x3, 0x1, 0x0},
266 {11289600, 8000, 1408, 0xb, 0x0, 0x0},
267 {16934400, 8000, 2112, 0xb, 0x1, 0x0},
268 {12000000, 8000, 1500, 0x3, 0x0, 0x1},
269
270 /* 96k */
271 {12288000, 96000, 128, 0x7, 0x0, 0x0},
272 {18432000, 96000, 192, 0x7, 0x1, 0x0},
273 {12000000, 96000, 125, 0x7, 0x0, 0x1},
274
275 /* 44.1k */
276 {11289600, 44100, 256, 0x8, 0x0, 0x0},
277 {16934400, 44100, 384, 0x8, 0x1, 0x0},
278 {12000000, 44100, 272, 0x8, 0x1, 0x1},
279
280 /* 88.2k */
281 {11289600, 88200, 128, 0xf, 0x0, 0x0},
282 {16934400, 88200, 192, 0xf, 0x1, 0x0},
283 {12000000, 88200, 136, 0xf, 0x1, 0x1},
284};
285
286static inline int get_coeff(int mclk, int rate)
287{
288 int i;
289
290 for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
291 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
292 return i;
293 }
294 return 0;
295}
296
b36d61d4 297static int wm8731_hw_params(struct snd_pcm_substream *substream,
dee89c4d
MB
298 struct snd_pcm_hw_params *params,
299 struct snd_soc_dai *dai)
40e0aa64 300{
f0fba2ad 301 struct snd_soc_codec *codec = dai->codec;
b2c812e2 302 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
17a52fd6 303 u16 iface = snd_soc_read(codec, WM8731_IFACE) & 0xfff3;
b36d61d4
FM
304 int i = get_coeff(wm8731->sysclk, params_rate(params));
305 u16 srate = (coeff_div[i].sr << 2) |
306 (coeff_div[i].bosr << 1) | coeff_div[i].usb;
40e0aa64 307
dd31b310
MB
308 wm8731->playback_fs = params_rate(params);
309
17a52fd6 310 snd_soc_write(codec, WM8731_SRATE, srate);
b36d61d4
FM
311
312 /* bit size */
313 switch (params_format(params)) {
314 case SNDRV_PCM_FORMAT_S16_LE:
315 break;
316 case SNDRV_PCM_FORMAT_S20_3LE:
317 iface |= 0x0004;
318 break;
319 case SNDRV_PCM_FORMAT_S24_LE:
320 iface |= 0x0008;
321 break;
322 }
40e0aa64 323
dd31b310
MB
324 wm8731_set_deemph(codec);
325
17a52fd6 326 snd_soc_write(codec, WM8731_IFACE, iface);
b36d61d4 327 return 0;
40e0aa64
RP
328}
329
dee89c4d
MB
330static int wm8731_pcm_prepare(struct snd_pcm_substream *substream,
331 struct snd_soc_dai *dai)
40e0aa64 332{
f0fba2ad 333 struct snd_soc_codec *codec = dai->codec;
b36d61d4
FM
334
335 /* set active */
17a52fd6 336 snd_soc_write(codec, WM8731_ACTIVE, 0x0001);
b36d61d4
FM
337
338 return 0;
339}
340
dee89c4d
MB
341static void wm8731_shutdown(struct snd_pcm_substream *substream,
342 struct snd_soc_dai *dai)
b36d61d4 343{
f0fba2ad 344 struct snd_soc_codec *codec = dai->codec;
b36d61d4
FM
345
346 /* deactivate */
347 if (!codec->active) {
348 udelay(50);
17a52fd6 349 snd_soc_write(codec, WM8731_ACTIVE, 0x0);
b36d61d4
FM
350 }
351}
352
e550e17f 353static int wm8731_mute(struct snd_soc_dai *dai, int mute)
b36d61d4
FM
354{
355 struct snd_soc_codec *codec = dai->codec;
17a52fd6 356 u16 mute_reg = snd_soc_read(codec, WM8731_APDIGI) & 0xfff7;
b36d61d4
FM
357
358 if (mute)
17a52fd6 359 snd_soc_write(codec, WM8731_APDIGI, mute_reg | 0x8);
b36d61d4 360 else
17a52fd6 361 snd_soc_write(codec, WM8731_APDIGI, mute_reg);
b36d61d4
FM
362 return 0;
363}
364
e550e17f 365static int wm8731_set_dai_sysclk(struct snd_soc_dai *codec_dai,
b36d61d4
FM
366 int clk_id, unsigned int freq, int dir)
367{
368 struct snd_soc_codec *codec = codec_dai->codec;
b2c812e2 369 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
b36d61d4 370
9745e824
MB
371 switch (clk_id) {
372 case WM8731_SYSCLK_XTAL:
373 case WM8731_SYSCLK_MCLK:
374 wm8731->sysclk_type = clk_id;
375 break;
376 default:
377 return -EINVAL;
378 }
379
b36d61d4
FM
380 switch (freq) {
381 case 11289600:
382 case 12000000:
383 case 12288000:
384 case 16934400:
385 case 18432000:
386 wm8731->sysclk = freq;
9745e824
MB
387 break;
388 default:
389 return -EINVAL;
b36d61d4 390 }
9745e824 391
ce6120cc 392 snd_soc_dapm_sync(&codec->dapm);
9745e824
MB
393
394 return 0;
b36d61d4
FM
395}
396
397
e550e17f 398static int wm8731_set_dai_fmt(struct snd_soc_dai *codec_dai,
b36d61d4
FM
399 unsigned int fmt)
400{
401 struct snd_soc_codec *codec = codec_dai->codec;
402 u16 iface = 0;
40e0aa64
RP
403
404 /* set master/slave audio interface */
b36d61d4 405 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
40e0aa64
RP
406 case SND_SOC_DAIFMT_CBM_CFM:
407 iface |= 0x0040;
408 break;
409 case SND_SOC_DAIFMT_CBS_CFS:
410 break;
b36d61d4
FM
411 default:
412 return -EINVAL;
40e0aa64 413 }
40e0aa64
RP
414
415 /* interface format */
b36d61d4 416 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
40e0aa64
RP
417 case SND_SOC_DAIFMT_I2S:
418 iface |= 0x0002;
419 break;
420 case SND_SOC_DAIFMT_RIGHT_J:
421 break;
422 case SND_SOC_DAIFMT_LEFT_J:
423 iface |= 0x0001;
424 break;
425 case SND_SOC_DAIFMT_DSP_A:
426 iface |= 0x0003;
427 break;
428 case SND_SOC_DAIFMT_DSP_B:
429 iface |= 0x0013;
430 break;
b36d61d4
FM
431 default:
432 return -EINVAL;
40e0aa64
RP
433 }
434
435 /* clock inversion */
b36d61d4 436 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
40e0aa64
RP
437 case SND_SOC_DAIFMT_NB_NF:
438 break;
439 case SND_SOC_DAIFMT_IB_IF:
440 iface |= 0x0090;
441 break;
442 case SND_SOC_DAIFMT_IB_NF:
443 iface |= 0x0080;
444 break;
445 case SND_SOC_DAIFMT_NB_IF:
446 iface |= 0x0010;
447 break;
b36d61d4
FM
448 default:
449 return -EINVAL;
40e0aa64
RP
450 }
451
452 /* set iface */
17a52fd6 453 snd_soc_write(codec, WM8731_IFACE, iface);
40e0aa64
RP
454 return 0;
455}
456
0be9898a
MB
457static int wm8731_set_bias_level(struct snd_soc_codec *codec,
458 enum snd_soc_bias_level level)
40e0aa64 459{
06ae9988
MB
460 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
461 int i, ret;
462 u8 data[2];
463 u16 *cache = codec->reg_cache;
22d22ee5 464 u16 reg;
40e0aa64 465
0be9898a
MB
466 switch (level) {
467 case SND_SOC_BIAS_ON:
40e0aa64 468 break;
0be9898a 469 case SND_SOC_BIAS_PREPARE:
40e0aa64 470 break;
0be9898a 471 case SND_SOC_BIAS_STANDBY:
ce6120cc 472 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
06ae9988
MB
473 ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies),
474 wm8731->supplies);
475 if (ret != 0)
476 return ret;
477
478 /* Sync reg_cache with the hardware */
479 for (i = 0; i < ARRAY_SIZE(wm8731_reg); i++) {
480 if (cache[i] == wm8731_reg[i])
481 continue;
482
483 data[0] = (i << 1) | ((cache[i] >> 8)
484 & 0x0001);
485 data[1] = cache[i] & 0x00ff;
486 codec->hw_write(codec->control_data, data, 2);
487 }
488 }
489
22d22ee5 490 /* Clear PWROFF, gate CLKOUT, everything else as-is */
17a52fd6
MB
491 reg = snd_soc_read(codec, WM8731_PWR) & 0xff7f;
492 snd_soc_write(codec, WM8731_PWR, reg | 0x0040);
40e0aa64 493 break;
0be9898a 494 case SND_SOC_BIAS_OFF:
17a52fd6
MB
495 snd_soc_write(codec, WM8731_ACTIVE, 0x0);
496 snd_soc_write(codec, WM8731_PWR, 0xffff);
06ae9988
MB
497 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies),
498 wm8731->supplies);
40e0aa64
RP
499 break;
500 }
ce6120cc 501 codec->dapm.bias_level = level;
40e0aa64
RP
502 return 0;
503}
504
e135443e 505#define WM8731_RATES SNDRV_PCM_RATE_8000_96000
b36d61d4
FM
506
507#define WM8731_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
508 SNDRV_PCM_FMTBIT_S24_LE)
509
6335d055
EM
510static struct snd_soc_dai_ops wm8731_dai_ops = {
511 .prepare = wm8731_pcm_prepare,
512 .hw_params = wm8731_hw_params,
513 .shutdown = wm8731_shutdown,
514 .digital_mute = wm8731_mute,
515 .set_sysclk = wm8731_set_dai_sysclk,
516 .set_fmt = wm8731_set_dai_fmt,
517};
518
f0fba2ad
LG
519static struct snd_soc_dai_driver wm8731_dai = {
520 .name = "wm8731-hifi",
40e0aa64
RP
521 .playback = {
522 .stream_name = "Playback",
523 .channels_min = 1,
524 .channels_max = 2,
b36d61d4
FM
525 .rates = WM8731_RATES,
526 .formats = WM8731_FORMATS,},
40e0aa64
RP
527 .capture = {
528 .stream_name = "Capture",
529 .channels_min = 1,
530 .channels_max = 2,
b36d61d4
FM
531 .rates = WM8731_RATES,
532 .formats = WM8731_FORMATS,},
6335d055 533 .ops = &wm8731_dai_ops,
4934482d 534 .symmetric_rates = 1,
40e0aa64 535};
40e0aa64 536
b3b50b3f 537#ifdef CONFIG_PM
f0fba2ad 538static int wm8731_suspend(struct snd_soc_codec *codec, pm_message_t state)
40e0aa64 539{
0be9898a 540 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF);
06ae9988 541
40e0aa64
RP
542 return 0;
543}
544
f0fba2ad 545static int wm8731_resume(struct snd_soc_codec *codec)
40e0aa64 546{
0be9898a 547 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
7dea7c01 548
40e0aa64
RP
549 return 0;
550}
b3b50b3f
MB
551#else
552#define wm8731_suspend NULL
553#define wm8731_resume NULL
554#endif
40e0aa64 555
f0fba2ad 556static int wm8731_probe(struct snd_soc_codec *codec)
40e0aa64 557{
f0fba2ad
LG
558 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
559 int ret = 0, i;
5998102b 560
f0fba2ad 561 ret = snd_soc_codec_set_cache_io(codec, 7, 9, wm8731->control_type);
17a52fd6
MB
562 if (ret < 0) {
563 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
f0fba2ad 564 return ret;
17a52fd6
MB
565 }
566
7dea7c01
MB
567 for (i = 0; i < ARRAY_SIZE(wm8731->supplies); i++)
568 wm8731->supplies[i].supply = wm8731_supply_names[i];
569
570 ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(wm8731->supplies),
571 wm8731->supplies);
572 if (ret != 0) {
573 dev_err(codec->dev, "Failed to request supplies: %d\n", ret);
f0fba2ad 574 return ret;
7dea7c01
MB
575 }
576
577 ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies),
578 wm8731->supplies);
579 if (ret != 0) {
580 dev_err(codec->dev, "Failed to enable supplies: %d\n", ret);
581 goto err_regulator_get;
582 }
583
519cf2df
MB
584 ret = wm8731_reset(codec);
585 if (ret < 0) {
fe5422fc 586 dev_err(codec->dev, "Failed to issue reset: %d\n", ret);
7dea7c01 587 goto err_regulator_enable;
519cf2df
MB
588 }
589
5998102b
MB
590 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
591
592 /* Latch the update bits */
17a52fd6
MB
593 snd_soc_update_bits(codec, WM8731_LOUT1V, 0x100, 0);
594 snd_soc_update_bits(codec, WM8731_ROUT1V, 0x100, 0);
595 snd_soc_update_bits(codec, WM8731_LINVOL, 0x100, 0);
596 snd_soc_update_bits(codec, WM8731_RINVOL, 0x100, 0);
5998102b 597
ce3bdaa8 598 /* Disable bypass path by default */
2062ea52 599 snd_soc_update_bits(codec, WM8731_APANA, 0x8, 0);
ce3bdaa8 600
f0fba2ad
LG
601 snd_soc_add_controls(codec, wm8731_snd_controls,
602 ARRAY_SIZE(wm8731_snd_controls));
603 wm8731_add_widgets(codec);
a8035c8f 604
06ae9988
MB
605 /* Regulators will have been enabled by bias management */
606 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
607
a8035c8f 608 return 0;
fe5422fc 609
7dea7c01
MB
610err_regulator_enable:
611 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
612err_regulator_get:
613 regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
f0fba2ad 614
fe5422fc 615 return ret;
a8035c8f
MB
616}
617
f0fba2ad
LG
618/* power down chip */
619static int wm8731_remove(struct snd_soc_codec *codec)
5998102b 620{
f0fba2ad
LG
621 struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec);
622
623 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF);
624
625 regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
7dea7c01 626 regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies);
f0fba2ad
LG
627
628 return 0;
5998102b 629}
a8035c8f 630
f0fba2ad
LG
631static struct snd_soc_codec_driver soc_codec_dev_wm8731 = {
632 .probe = wm8731_probe,
633 .remove = wm8731_remove,
634 .suspend = wm8731_suspend,
635 .resume = wm8731_resume,
636 .set_bias_level = wm8731_set_bias_level,
e5eec34c 637 .reg_cache_size = ARRAY_SIZE(wm8731_reg),
f0fba2ad
LG
638 .reg_word_size = sizeof(u16),
639 .reg_cache_default = wm8731_reg,
640};
641
5998102b 642#if defined(CONFIG_SPI_MASTER)
5998102b
MB
643static int __devinit wm8731_spi_probe(struct spi_device *spi)
644{
5998102b 645 struct wm8731_priv *wm8731;
f0fba2ad 646 int ret;
5998102b
MB
647
648 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL);
649 if (wm8731 == NULL)
650 return -ENOMEM;
651
f0fba2ad
LG
652 wm8731->control_type = SND_SOC_SPI;
653 spi_set_drvdata(spi, wm8731);
93b760b7 654
f0fba2ad
LG
655 ret = snd_soc_register_codec(&spi->dev,
656 &soc_codec_dev_wm8731, &wm8731_dai, 1);
657 if (ret < 0)
658 kfree(wm8731);
659 return ret;
5998102b
MB
660}
661
662static int __devexit wm8731_spi_remove(struct spi_device *spi)
663{
f0fba2ad
LG
664 snd_soc_unregister_codec(&spi->dev);
665 kfree(spi_get_drvdata(spi));
5998102b
MB
666 return 0;
667}
668
669static struct spi_driver wm8731_spi_driver = {
670 .driver = {
f0fba2ad 671 .name = "wm8731-codec",
5998102b
MB
672 .owner = THIS_MODULE,
673 },
674 .probe = wm8731_spi_probe,
675 .remove = __devexit_p(wm8731_spi_remove),
676};
a8035c8f
MB
677#endif /* CONFIG_SPI_MASTER */
678
679#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
c6f29811
MB
680static __devinit int wm8731_i2c_probe(struct i2c_client *i2c,
681 const struct i2c_device_id *id)
a8035c8f 682{
5998102b 683 struct wm8731_priv *wm8731;
f0fba2ad 684 int ret;
a8035c8f 685
5998102b
MB
686 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL);
687 if (wm8731 == NULL)
688 return -ENOMEM;
689
5998102b 690 i2c_set_clientdata(i2c, wm8731);
f0fba2ad 691 wm8731->control_type = SND_SOC_I2C;
a8035c8f 692
f0fba2ad
LG
693 ret = snd_soc_register_codec(&i2c->dev,
694 &soc_codec_dev_wm8731, &wm8731_dai, 1);
695 if (ret < 0)
696 kfree(wm8731);
697 return ret;
a8035c8f
MB
698}
699
c6f29811 700static __devexit int wm8731_i2c_remove(struct i2c_client *client)
a8035c8f 701{
f0fba2ad
LG
702 snd_soc_unregister_codec(&client->dev);
703 kfree(i2c_get_clientdata(client));
a8035c8f
MB
704 return 0;
705}
706
707static const struct i2c_device_id wm8731_i2c_id[] = {
708 { "wm8731", 0 },
709 { }
710};
711MODULE_DEVICE_TABLE(i2c, wm8731_i2c_id);
712
713static struct i2c_driver wm8731_i2c_driver = {
714 .driver = {
f0fba2ad 715 .name = "wm8731-codec",
a8035c8f
MB
716 .owner = THIS_MODULE,
717 },
718 .probe = wm8731_i2c_probe,
c6f29811 719 .remove = __devexit_p(wm8731_i2c_remove),
a8035c8f
MB
720 .id_table = wm8731_i2c_id,
721};
722#endif
723
c9b3a40f 724static int __init wm8731_modinit(void)
64089b84 725{
f0fba2ad 726 int ret = 0;
5998102b
MB
727#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
728 ret = i2c_add_driver(&wm8731_i2c_driver);
729 if (ret != 0) {
730 printk(KERN_ERR "Failed to register WM8731 I2C driver: %d\n",
731 ret);
732 }
733#endif
734#if defined(CONFIG_SPI_MASTER)
735 ret = spi_register_driver(&wm8731_spi_driver);
736 if (ret != 0) {
737 printk(KERN_ERR "Failed to register WM8731 SPI driver: %d\n",
738 ret);
739 }
740#endif
f0fba2ad 741 return ret;
64089b84
MB
742}
743module_init(wm8731_modinit);
744
745static void __exit wm8731_exit(void)
746{
5998102b
MB
747#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
748 i2c_del_driver(&wm8731_i2c_driver);
749#endif
750#if defined(CONFIG_SPI_MASTER)
751 spi_unregister_driver(&wm8731_spi_driver);
752#endif
64089b84
MB
753}
754module_exit(wm8731_exit);
755
40e0aa64
RP
756MODULE_DESCRIPTION("ASoC WM8731 driver");
757MODULE_AUTHOR("Richard Purdie");
758MODULE_LICENSE("GPL");
This page took 0.411889 seconds and 5 git commands to generate.