ASoC: Add CODEC volatile register operation
[GitHub/mt8127/android_kernel_alcatel_ttab.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>
21#include <linux/platform_device.h>
d2a40355 22#include <linux/spi/spi.h>
40e0aa64
RP
23#include <sound/core.h>
24#include <sound/pcm.h>
25#include <sound/pcm_params.h>
26#include <sound/soc.h>
27#include <sound/soc-dapm.h>
28#include <sound/initval.h>
29
30#include "wm8731.h"
31
5998102b 32static struct snd_soc_codec *wm8731_codec;
40e0aa64
RP
33struct snd_soc_codec_device soc_codec_dev_wm8731;
34
b36d61d4
FM
35/* codec private data */
36struct wm8731_priv {
5998102b
MB
37 struct snd_soc_codec codec;
38 u16 reg_cache[WM8731_CACHEREGNUM];
b36d61d4
FM
39 unsigned int sysclk;
40};
41
a8035c8f
MB
42#ifdef CONFIG_SPI_MASTER
43static int wm8731_spi_write(struct spi_device *spi, const char *data, int len);
a8035c8f
MB
44#endif
45
40e0aa64
RP
46/*
47 * wm8731 register cache
48 * We can't read the WM8731 register space when we are
49 * using 2 wire for device control, so we cache them instead.
50 * There is no point in caching the reset register
51 */
52static const u16 wm8731_reg[WM8731_CACHEREGNUM] = {
53 0x0097, 0x0097, 0x0079, 0x0079,
54 0x000a, 0x0008, 0x009f, 0x000a,
55 0x0000, 0x0000
56};
57
40e0aa64
RP
58/*
59 * read wm8731 register cache
60 */
61static inline unsigned int wm8731_read_reg_cache(struct snd_soc_codec *codec,
62 unsigned int reg)
63{
64 u16 *cache = codec->reg_cache;
65 if (reg == WM8731_RESET)
66 return 0;
67 if (reg >= WM8731_CACHEREGNUM)
68 return -1;
69 return cache[reg];
70}
71
72/*
73 * write wm8731 register cache
74 */
75static inline void wm8731_write_reg_cache(struct snd_soc_codec *codec,
76 u16 reg, unsigned int value)
77{
78 u16 *cache = codec->reg_cache;
79 if (reg >= WM8731_CACHEREGNUM)
80 return;
81 cache[reg] = value;
82}
83
84/*
85 * write to the WM8731 register space
86 */
87static int wm8731_write(struct snd_soc_codec *codec, unsigned int reg,
88 unsigned int value)
89{
90 u8 data[2];
91
92 /* data is
93 * D15..D9 WM8731 register offset
94 * D8...D0 register data
95 */
96 data[0] = (reg << 1) | ((value >> 8) & 0x0001);
97 data[1] = value & 0x00ff;
98
d454aee9 99 wm8731_write_reg_cache(codec, reg, value);
40e0aa64
RP
100 if (codec->hw_write(codec->control_data, data, 2) == 2)
101 return 0;
102 else
103 return -EIO;
104}
105
106#define wm8731_reset(c) wm8731_write(c, WM8731_RESET, 0)
107
108static const char *wm8731_input_select[] = {"Line In", "Mic"};
109static const char *wm8731_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"};
110
111static const struct soc_enum wm8731_enum[] = {
112 SOC_ENUM_SINGLE(WM8731_APANA, 2, 2, wm8731_input_select),
113 SOC_ENUM_SINGLE(WM8731_APDIGI, 1, 4, wm8731_deemph),
114};
115
116static const struct snd_kcontrol_new wm8731_snd_controls[] = {
117
bd903b6e
LG
118SOC_DOUBLE_R("Master Playback Volume", WM8731_LOUT1V, WM8731_ROUT1V,
119 0, 127, 0),
120SOC_DOUBLE_R("Master Playback ZC Switch", WM8731_LOUT1V, WM8731_ROUT1V,
121 7, 1, 0),
40e0aa64
RP
122
123SOC_DOUBLE_R("Capture Volume", WM8731_LINVOL, WM8731_RINVOL, 0, 31, 0),
124SOC_DOUBLE_R("Line Capture Switch", WM8731_LINVOL, WM8731_RINVOL, 7, 1, 1),
125
126SOC_SINGLE("Mic Boost (+20dB)", WM8731_APANA, 0, 1, 0),
127SOC_SINGLE("Capture Mic Switch", WM8731_APANA, 1, 1, 1),
128
129SOC_SINGLE("Sidetone Playback Volume", WM8731_APANA, 6, 3, 1),
130
131SOC_SINGLE("ADC High Pass Filter Switch", WM8731_APDIGI, 0, 1, 1),
132SOC_SINGLE("Store DC Offset Switch", WM8731_APDIGI, 4, 1, 0),
133
134SOC_ENUM("Playback De-emphasis", wm8731_enum[1]),
135};
136
40e0aa64
RP
137/* Output Mixer */
138static const struct snd_kcontrol_new wm8731_output_mixer_controls[] = {
139SOC_DAPM_SINGLE("Line Bypass Switch", WM8731_APANA, 3, 1, 0),
140SOC_DAPM_SINGLE("Mic Sidetone Switch", WM8731_APANA, 5, 1, 0),
141SOC_DAPM_SINGLE("HiFi Playback Switch", WM8731_APANA, 4, 1, 0),
142};
143
144/* Input mux */
145static const struct snd_kcontrol_new wm8731_input_mux_controls =
146SOC_DAPM_ENUM("Input Select", wm8731_enum[0]);
147
148static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = {
149SND_SOC_DAPM_MIXER("Output Mixer", WM8731_PWR, 4, 1,
150 &wm8731_output_mixer_controls[0],
151 ARRAY_SIZE(wm8731_output_mixer_controls)),
152SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8731_PWR, 3, 1),
153SND_SOC_DAPM_OUTPUT("LOUT"),
154SND_SOC_DAPM_OUTPUT("LHPOUT"),
155SND_SOC_DAPM_OUTPUT("ROUT"),
156SND_SOC_DAPM_OUTPUT("RHPOUT"),
157SND_SOC_DAPM_ADC("ADC", "HiFi Capture", WM8731_PWR, 2, 1),
158SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, &wm8731_input_mux_controls),
159SND_SOC_DAPM_PGA("Line Input", WM8731_PWR, 0, 1, NULL, 0),
160SND_SOC_DAPM_MICBIAS("Mic Bias", WM8731_PWR, 1, 1),
161SND_SOC_DAPM_INPUT("MICIN"),
162SND_SOC_DAPM_INPUT("RLINEIN"),
163SND_SOC_DAPM_INPUT("LLINEIN"),
164};
165
a65f0568 166static const struct snd_soc_dapm_route intercon[] = {
40e0aa64
RP
167 /* output mixer */
168 {"Output Mixer", "Line Bypass Switch", "Line Input"},
169 {"Output Mixer", "HiFi Playback Switch", "DAC"},
170 {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"},
171
172 /* outputs */
173 {"RHPOUT", NULL, "Output Mixer"},
174 {"ROUT", NULL, "Output Mixer"},
175 {"LHPOUT", NULL, "Output Mixer"},
176 {"LOUT", NULL, "Output Mixer"},
177
178 /* input mux */
179 {"Input Mux", "Line In", "Line Input"},
180 {"Input Mux", "Mic", "Mic Bias"},
181 {"ADC", NULL, "Input Mux"},
182
183 /* inputs */
184 {"Line Input", NULL, "LLINEIN"},
185 {"Line Input", NULL, "RLINEIN"},
186 {"Mic Bias", NULL, "MICIN"},
40e0aa64
RP
187};
188
189static int wm8731_add_widgets(struct snd_soc_codec *codec)
190{
a65f0568
MB
191 snd_soc_dapm_new_controls(codec, wm8731_dapm_widgets,
192 ARRAY_SIZE(wm8731_dapm_widgets));
40e0aa64 193
a65f0568 194 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
40e0aa64
RP
195
196 snd_soc_dapm_new_widgets(codec);
197 return 0;
198}
199
200struct _coeff_div {
201 u32 mclk;
202 u32 rate;
203 u16 fs;
204 u8 sr:4;
205 u8 bosr:1;
206 u8 usb:1;
207};
208
209/* codec mclk clock divider coefficients */
210static const struct _coeff_div coeff_div[] = {
211 /* 48k */
212 {12288000, 48000, 256, 0x0, 0x0, 0x0},
213 {18432000, 48000, 384, 0x0, 0x1, 0x0},
214 {12000000, 48000, 250, 0x0, 0x0, 0x1},
215
216 /* 32k */
217 {12288000, 32000, 384, 0x6, 0x0, 0x0},
218 {18432000, 32000, 576, 0x6, 0x1, 0x0},
298a2c75 219 {12000000, 32000, 375, 0x6, 0x0, 0x1},
40e0aa64
RP
220
221 /* 8k */
222 {12288000, 8000, 1536, 0x3, 0x0, 0x0},
223 {18432000, 8000, 2304, 0x3, 0x1, 0x0},
224 {11289600, 8000, 1408, 0xb, 0x0, 0x0},
225 {16934400, 8000, 2112, 0xb, 0x1, 0x0},
226 {12000000, 8000, 1500, 0x3, 0x0, 0x1},
227
228 /* 96k */
229 {12288000, 96000, 128, 0x7, 0x0, 0x0},
230 {18432000, 96000, 192, 0x7, 0x1, 0x0},
231 {12000000, 96000, 125, 0x7, 0x0, 0x1},
232
233 /* 44.1k */
234 {11289600, 44100, 256, 0x8, 0x0, 0x0},
235 {16934400, 44100, 384, 0x8, 0x1, 0x0},
236 {12000000, 44100, 272, 0x8, 0x1, 0x1},
237
238 /* 88.2k */
239 {11289600, 88200, 128, 0xf, 0x0, 0x0},
240 {16934400, 88200, 192, 0xf, 0x1, 0x0},
241 {12000000, 88200, 136, 0xf, 0x1, 0x1},
242};
243
244static inline int get_coeff(int mclk, int rate)
245{
246 int i;
247
248 for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
249 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
250 return i;
251 }
252 return 0;
253}
254
b36d61d4 255static int wm8731_hw_params(struct snd_pcm_substream *substream,
dee89c4d
MB
256 struct snd_pcm_hw_params *params,
257 struct snd_soc_dai *dai)
40e0aa64 258{
b36d61d4
FM
259 struct snd_soc_pcm_runtime *rtd = substream->private_data;
260 struct snd_soc_device *socdev = rtd->socdev;
6627a653 261 struct snd_soc_codec *codec = socdev->card->codec;
b36d61d4
FM
262 struct wm8731_priv *wm8731 = codec->private_data;
263 u16 iface = wm8731_read_reg_cache(codec, WM8731_IFACE) & 0xfff3;
264 int i = get_coeff(wm8731->sysclk, params_rate(params));
265 u16 srate = (coeff_div[i].sr << 2) |
266 (coeff_div[i].bosr << 1) | coeff_div[i].usb;
40e0aa64 267
b36d61d4
FM
268 wm8731_write(codec, WM8731_SRATE, srate);
269
270 /* bit size */
271 switch (params_format(params)) {
272 case SNDRV_PCM_FORMAT_S16_LE:
273 break;
274 case SNDRV_PCM_FORMAT_S20_3LE:
275 iface |= 0x0004;
276 break;
277 case SNDRV_PCM_FORMAT_S24_LE:
278 iface |= 0x0008;
279 break;
280 }
40e0aa64 281
b36d61d4
FM
282 wm8731_write(codec, WM8731_IFACE, iface);
283 return 0;
40e0aa64
RP
284}
285
dee89c4d
MB
286static int wm8731_pcm_prepare(struct snd_pcm_substream *substream,
287 struct snd_soc_dai *dai)
40e0aa64
RP
288{
289 struct snd_soc_pcm_runtime *rtd = substream->private_data;
290 struct snd_soc_device *socdev = rtd->socdev;
6627a653 291 struct snd_soc_codec *codec = socdev->card->codec;
b36d61d4
FM
292
293 /* set active */
294 wm8731_write(codec, WM8731_ACTIVE, 0x0001);
295
296 return 0;
297}
298
dee89c4d
MB
299static void wm8731_shutdown(struct snd_pcm_substream *substream,
300 struct snd_soc_dai *dai)
b36d61d4
FM
301{
302 struct snd_soc_pcm_runtime *rtd = substream->private_data;
303 struct snd_soc_device *socdev = rtd->socdev;
6627a653 304 struct snd_soc_codec *codec = socdev->card->codec;
b36d61d4
FM
305
306 /* deactivate */
307 if (!codec->active) {
308 udelay(50);
309 wm8731_write(codec, WM8731_ACTIVE, 0x0);
310 }
311}
312
e550e17f 313static int wm8731_mute(struct snd_soc_dai *dai, int mute)
b36d61d4
FM
314{
315 struct snd_soc_codec *codec = dai->codec;
316 u16 mute_reg = wm8731_read_reg_cache(codec, WM8731_APDIGI) & 0xfff7;
317
318 if (mute)
319 wm8731_write(codec, WM8731_APDIGI, mute_reg | 0x8);
320 else
321 wm8731_write(codec, WM8731_APDIGI, mute_reg);
322 return 0;
323}
324
e550e17f 325static int wm8731_set_dai_sysclk(struct snd_soc_dai *codec_dai,
b36d61d4
FM
326 int clk_id, unsigned int freq, int dir)
327{
328 struct snd_soc_codec *codec = codec_dai->codec;
329 struct wm8731_priv *wm8731 = codec->private_data;
330
331 switch (freq) {
332 case 11289600:
333 case 12000000:
334 case 12288000:
335 case 16934400:
336 case 18432000:
337 wm8731->sysclk = freq;
338 return 0;
339 }
340 return -EINVAL;
341}
342
343
e550e17f 344static int wm8731_set_dai_fmt(struct snd_soc_dai *codec_dai,
b36d61d4
FM
345 unsigned int fmt)
346{
347 struct snd_soc_codec *codec = codec_dai->codec;
348 u16 iface = 0;
40e0aa64
RP
349
350 /* set master/slave audio interface */
b36d61d4 351 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
40e0aa64
RP
352 case SND_SOC_DAIFMT_CBM_CFM:
353 iface |= 0x0040;
354 break;
355 case SND_SOC_DAIFMT_CBS_CFS:
356 break;
b36d61d4
FM
357 default:
358 return -EINVAL;
40e0aa64 359 }
40e0aa64
RP
360
361 /* interface format */
b36d61d4 362 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
40e0aa64
RP
363 case SND_SOC_DAIFMT_I2S:
364 iface |= 0x0002;
365 break;
366 case SND_SOC_DAIFMT_RIGHT_J:
367 break;
368 case SND_SOC_DAIFMT_LEFT_J:
369 iface |= 0x0001;
370 break;
371 case SND_SOC_DAIFMT_DSP_A:
372 iface |= 0x0003;
373 break;
374 case SND_SOC_DAIFMT_DSP_B:
375 iface |= 0x0013;
376 break;
b36d61d4
FM
377 default:
378 return -EINVAL;
40e0aa64
RP
379 }
380
381 /* clock inversion */
b36d61d4 382 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
40e0aa64
RP
383 case SND_SOC_DAIFMT_NB_NF:
384 break;
385 case SND_SOC_DAIFMT_IB_IF:
386 iface |= 0x0090;
387 break;
388 case SND_SOC_DAIFMT_IB_NF:
389 iface |= 0x0080;
390 break;
391 case SND_SOC_DAIFMT_NB_IF:
392 iface |= 0x0010;
393 break;
b36d61d4
FM
394 default:
395 return -EINVAL;
40e0aa64
RP
396 }
397
398 /* set iface */
399 wm8731_write(codec, WM8731_IFACE, iface);
40e0aa64
RP
400 return 0;
401}
402
0be9898a
MB
403static int wm8731_set_bias_level(struct snd_soc_codec *codec,
404 enum snd_soc_bias_level level)
40e0aa64 405{
22d22ee5 406 u16 reg;
40e0aa64 407
0be9898a
MB
408 switch (level) {
409 case SND_SOC_BIAS_ON:
40e0aa64 410 break;
0be9898a 411 case SND_SOC_BIAS_PREPARE:
40e0aa64 412 break;
0be9898a 413 case SND_SOC_BIAS_STANDBY:
22d22ee5
MB
414 /* Clear PWROFF, gate CLKOUT, everything else as-is */
415 reg = wm8731_read_reg_cache(codec, WM8731_PWR) & 0xff7f;
40e0aa64
RP
416 wm8731_write(codec, WM8731_PWR, reg | 0x0040);
417 break;
0be9898a 418 case SND_SOC_BIAS_OFF:
40e0aa64
RP
419 wm8731_write(codec, WM8731_ACTIVE, 0x0);
420 wm8731_write(codec, WM8731_PWR, 0xffff);
421 break;
422 }
0be9898a 423 codec->bias_level = level;
40e0aa64
RP
424 return 0;
425}
426
b36d61d4
FM
427#define WM8731_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
428 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\
429 SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |\
430 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |\
431 SNDRV_PCM_RATE_96000)
432
433#define WM8731_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
434 SNDRV_PCM_FMTBIT_S24_LE)
435
6335d055
EM
436static struct snd_soc_dai_ops wm8731_dai_ops = {
437 .prepare = wm8731_pcm_prepare,
438 .hw_params = wm8731_hw_params,
439 .shutdown = wm8731_shutdown,
440 .digital_mute = wm8731_mute,
441 .set_sysclk = wm8731_set_dai_sysclk,
442 .set_fmt = wm8731_set_dai_fmt,
443};
444
e550e17f 445struct snd_soc_dai wm8731_dai = {
40e0aa64
RP
446 .name = "WM8731",
447 .playback = {
448 .stream_name = "Playback",
449 .channels_min = 1,
450 .channels_max = 2,
b36d61d4
FM
451 .rates = WM8731_RATES,
452 .formats = WM8731_FORMATS,},
40e0aa64
RP
453 .capture = {
454 .stream_name = "Capture",
455 .channels_min = 1,
456 .channels_max = 2,
b36d61d4
FM
457 .rates = WM8731_RATES,
458 .formats = WM8731_FORMATS,},
6335d055 459 .ops = &wm8731_dai_ops,
40e0aa64
RP
460};
461EXPORT_SYMBOL_GPL(wm8731_dai);
462
b3b50b3f 463#ifdef CONFIG_PM
40e0aa64
RP
464static int wm8731_suspend(struct platform_device *pdev, pm_message_t state)
465{
466 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
6627a653 467 struct snd_soc_codec *codec = socdev->card->codec;
40e0aa64
RP
468
469 wm8731_write(codec, WM8731_ACTIVE, 0x0);
0be9898a 470 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF);
40e0aa64
RP
471 return 0;
472}
473
474static int wm8731_resume(struct platform_device *pdev)
475{
476 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
6627a653 477 struct snd_soc_codec *codec = socdev->card->codec;
40e0aa64
RP
478 int i;
479 u8 data[2];
480 u16 *cache = codec->reg_cache;
481
482 /* Sync reg_cache with the hardware */
483 for (i = 0; i < ARRAY_SIZE(wm8731_reg); i++) {
484 data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001);
485 data[1] = cache[i] & 0x00ff;
486 codec->hw_write(codec->control_data, data, 2);
487 }
0be9898a
MB
488 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
489 wm8731_set_bias_level(codec, codec->suspend_bias_level);
40e0aa64
RP
490 return 0;
491}
b3b50b3f
MB
492#else
493#define wm8731_suspend NULL
494#define wm8731_resume NULL
495#endif
40e0aa64 496
5998102b 497static int wm8731_probe(struct platform_device *pdev)
40e0aa64 498{
5998102b
MB
499 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
500 struct snd_soc_codec *codec;
501 int ret = 0;
40e0aa64 502
5998102b
MB
503 if (wm8731_codec == NULL) {
504 dev_err(&pdev->dev, "Codec device not registered\n");
505 return -ENODEV;
506 }
40e0aa64 507
5998102b
MB
508 socdev->card->codec = wm8731_codec;
509 codec = wm8731_codec;
40e0aa64
RP
510
511 /* register pcms */
512 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
513 if (ret < 0) {
5998102b 514 dev_err(codec->dev, "failed to create pcms: %d\n", ret);
e35115a5 515 goto pcm_err;
40e0aa64
RP
516 }
517
3e8e1952 518 snd_soc_add_controls(codec, wm8731_snd_controls,
5998102b 519 ARRAY_SIZE(wm8731_snd_controls));
40e0aa64 520 wm8731_add_widgets(codec);
968a6025 521 ret = snd_soc_init_card(socdev);
40e0aa64 522 if (ret < 0) {
5998102b 523 dev_err(codec->dev, "failed to register card: %d\n", ret);
e35115a5 524 goto card_err;
40e0aa64
RP
525 }
526
527 return ret;
e35115a5
LG
528
529card_err:
530 snd_soc_free_pcms(socdev);
531 snd_soc_dapm_free(socdev);
532pcm_err:
40e0aa64
RP
533 return ret;
534}
535
536/* power down chip */
537static int wm8731_remove(struct platform_device *pdev)
538{
539 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
40e0aa64
RP
540
541 snd_soc_free_pcms(socdev);
542 snd_soc_dapm_free(socdev);
40e0aa64
RP
543
544 return 0;
545}
546
547struct snd_soc_codec_device soc_codec_dev_wm8731 = {
548 .probe = wm8731_probe,
549 .remove = wm8731_remove,
550 .suspend = wm8731_suspend,
551 .resume = wm8731_resume,
552};
40e0aa64
RP
553EXPORT_SYMBOL_GPL(soc_codec_dev_wm8731);
554
5998102b 555static int wm8731_register(struct wm8731_priv *wm8731)
a8035c8f 556{
a8035c8f 557 int ret;
5998102b
MB
558 struct snd_soc_codec *codec = &wm8731->codec;
559 u16 reg;
a8035c8f 560
5998102b
MB
561 if (wm8731_codec) {
562 dev_err(codec->dev, "Another WM8731 is registered\n");
563 return -EINVAL;
564 }
a8035c8f 565
5998102b
MB
566 mutex_init(&codec->mutex);
567 INIT_LIST_HEAD(&codec->dapm_widgets);
568 INIT_LIST_HEAD(&codec->dapm_paths);
a8035c8f 569
5998102b
MB
570 codec->private_data = wm8731;
571 codec->name = "WM8731";
572 codec->owner = THIS_MODULE;
573 codec->read = wm8731_read_reg_cache;
574 codec->write = wm8731_write;
575 codec->bias_level = SND_SOC_BIAS_OFF;
576 codec->set_bias_level = wm8731_set_bias_level;
577 codec->dai = &wm8731_dai;
578 codec->num_dai = 1;
579 codec->reg_cache_size = WM8731_CACHEREGNUM;
580 codec->reg_cache = &wm8731->reg_cache;
581
582 memcpy(codec->reg_cache, wm8731_reg, sizeof(wm8731_reg));
583
519cf2df
MB
584 ret = wm8731_reset(codec);
585 if (ret < 0) {
586 dev_err(codec->dev, "Failed to issue reset\n");
587 return ret;
588 }
589
5998102b
MB
590 wm8731_dai.dev = codec->dev;
591
5998102b
MB
592 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
593
594 /* Latch the update bits */
595 reg = wm8731_read_reg_cache(codec, WM8731_LOUT1V);
596 wm8731_write(codec, WM8731_LOUT1V, reg & ~0x0100);
597 reg = wm8731_read_reg_cache(codec, WM8731_ROUT1V);
598 wm8731_write(codec, WM8731_ROUT1V, reg & ~0x0100);
599 reg = wm8731_read_reg_cache(codec, WM8731_LINVOL);
600 wm8731_write(codec, WM8731_LINVOL, reg & ~0x0100);
601 reg = wm8731_read_reg_cache(codec, WM8731_RINVOL);
602 wm8731_write(codec, WM8731_RINVOL, reg & ~0x0100);
603
ce3bdaa8
MB
604 /* Disable bypass path by default */
605 reg = wm8731_read_reg_cache(codec, WM8731_APANA);
606 wm8731_write(codec, WM8731_APANA, reg & ~0x4);
607
5998102b
MB
608 wm8731_codec = codec;
609
610 ret = snd_soc_register_codec(codec);
611 if (ret != 0) {
612 dev_err(codec->dev, "Failed to register codec: %d\n", ret);
613 return ret;
614 }
615
616 ret = snd_soc_register_dai(&wm8731_dai);
617 if (ret != 0) {
618 dev_err(codec->dev, "Failed to register DAI: %d\n", ret);
619 snd_soc_unregister_codec(codec);
620 return ret;
621 }
a8035c8f 622
a8035c8f
MB
623 return 0;
624}
625
5998102b
MB
626static void wm8731_unregister(struct wm8731_priv *wm8731)
627{
628 wm8731_set_bias_level(&wm8731->codec, SND_SOC_BIAS_OFF);
629 snd_soc_unregister_dai(&wm8731_dai);
630 snd_soc_unregister_codec(&wm8731->codec);
631 kfree(wm8731);
632 wm8731_codec = NULL;
633}
a8035c8f 634
5998102b 635#if defined(CONFIG_SPI_MASTER)
a8035c8f
MB
636static int wm8731_spi_write(struct spi_device *spi, const char *data, int len)
637{
638 struct spi_transfer t;
639 struct spi_message m;
640 u8 msg[2];
641
642 if (len <= 0)
643 return 0;
644
645 msg[0] = data[0];
646 msg[1] = data[1];
647
648 spi_message_init(&m);
649 memset(&t, 0, (sizeof t));
650
651 t.tx_buf = &msg[0];
652 t.len = len;
653
654 spi_message_add_tail(&t, &m);
655 spi_sync(spi, &m);
656
657 return len;
658}
5998102b
MB
659
660static int __devinit wm8731_spi_probe(struct spi_device *spi)
661{
662 struct snd_soc_codec *codec;
663 struct wm8731_priv *wm8731;
664
665 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL);
666 if (wm8731 == NULL)
667 return -ENOMEM;
668
669 codec = &wm8731->codec;
670 codec->control_data = spi;
671 codec->hw_write = (hw_write_t)wm8731_spi_write;
672 codec->dev = &spi->dev;
673
ae31c1fb 674 dev_set_drvdata(&spi->dev, wm8731);
93b760b7 675
5998102b
MB
676 return wm8731_register(wm8731);
677}
678
679static int __devexit wm8731_spi_remove(struct spi_device *spi)
680{
ae31c1fb 681 struct wm8731_priv *wm8731 = dev_get_drvdata(&spi->dev);
93b760b7
MB
682
683 wm8731_unregister(wm8731);
684
5998102b
MB
685 return 0;
686}
687
b3b50b3f
MB
688#ifdef CONFIG_PM
689static int wm8731_spi_suspend(struct spi_device *spi, pm_message_t msg)
690{
691 return snd_soc_suspend_device(&spi->dev);
692}
693
694static int wm8731_spi_resume(struct spi_device *spi)
695{
696 return snd_soc_resume_device(&spi->dev);
697}
698#else
699#define wm8731_spi_suspend NULL
700#define wm8731_spi_resume NULL
701#endif
702
5998102b
MB
703static struct spi_driver wm8731_spi_driver = {
704 .driver = {
705 .name = "wm8731",
706 .bus = &spi_bus_type,
707 .owner = THIS_MODULE,
708 },
709 .probe = wm8731_spi_probe,
b3b50b3f
MB
710 .suspend = wm8731_spi_suspend,
711 .resume = wm8731_spi_resume,
5998102b
MB
712 .remove = __devexit_p(wm8731_spi_remove),
713};
a8035c8f
MB
714#endif /* CONFIG_SPI_MASTER */
715
716#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
c6f29811
MB
717static __devinit int wm8731_i2c_probe(struct i2c_client *i2c,
718 const struct i2c_device_id *id)
a8035c8f 719{
5998102b
MB
720 struct wm8731_priv *wm8731;
721 struct snd_soc_codec *codec;
a8035c8f 722
5998102b
MB
723 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL);
724 if (wm8731 == NULL)
725 return -ENOMEM;
726
727 codec = &wm8731->codec;
728 codec->hw_write = (hw_write_t)i2c_master_send;
729
730 i2c_set_clientdata(i2c, wm8731);
a8035c8f
MB
731 codec->control_data = i2c;
732
5998102b 733 codec->dev = &i2c->dev;
a8035c8f 734
5998102b 735 return wm8731_register(wm8731);
a8035c8f
MB
736}
737
c6f29811 738static __devexit int wm8731_i2c_remove(struct i2c_client *client)
a8035c8f 739{
5998102b
MB
740 struct wm8731_priv *wm8731 = i2c_get_clientdata(client);
741 wm8731_unregister(wm8731);
a8035c8f
MB
742 return 0;
743}
744
b3b50b3f
MB
745#ifdef CONFIG_PM
746static int wm8731_i2c_suspend(struct i2c_client *i2c, pm_message_t msg)
747{
748 return snd_soc_suspend_device(&i2c->dev);
749}
750
751static int wm8731_i2c_resume(struct i2c_client *i2c)
752{
753 return snd_soc_resume_device(&i2c->dev);
754}
755#else
756#define wm8731_i2c_suspend NULL
757#define wm8731_i2c_resume NULL
758#endif
759
a8035c8f
MB
760static const struct i2c_device_id wm8731_i2c_id[] = {
761 { "wm8731", 0 },
762 { }
763};
764MODULE_DEVICE_TABLE(i2c, wm8731_i2c_id);
765
766static struct i2c_driver wm8731_i2c_driver = {
767 .driver = {
768 .name = "WM8731 I2C Codec",
769 .owner = THIS_MODULE,
770 },
771 .probe = wm8731_i2c_probe,
c6f29811 772 .remove = __devexit_p(wm8731_i2c_remove),
b3b50b3f
MB
773 .suspend = wm8731_i2c_suspend,
774 .resume = wm8731_i2c_resume,
a8035c8f
MB
775 .id_table = wm8731_i2c_id,
776};
777#endif
778
c9b3a40f 779static int __init wm8731_modinit(void)
64089b84 780{
5998102b
MB
781 int ret;
782#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
783 ret = i2c_add_driver(&wm8731_i2c_driver);
784 if (ret != 0) {
785 printk(KERN_ERR "Failed to register WM8731 I2C driver: %d\n",
786 ret);
787 }
788#endif
789#if defined(CONFIG_SPI_MASTER)
790 ret = spi_register_driver(&wm8731_spi_driver);
791 if (ret != 0) {
792 printk(KERN_ERR "Failed to register WM8731 SPI driver: %d\n",
793 ret);
794 }
795#endif
796 return 0;
64089b84
MB
797}
798module_init(wm8731_modinit);
799
800static void __exit wm8731_exit(void)
801{
5998102b
MB
802#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
803 i2c_del_driver(&wm8731_i2c_driver);
804#endif
805#if defined(CONFIG_SPI_MASTER)
806 spi_unregister_driver(&wm8731_spi_driver);
807#endif
64089b84
MB
808}
809module_exit(wm8731_exit);
810
40e0aa64
RP
811MODULE_DESCRIPTION("ASoC WM8731 driver");
812MODULE_AUTHOR("Richard Purdie");
813MODULE_LICENSE("GPL");