blob: 369d39c3f745d9d441ff23d253afaa51dc36aefb [file] [log] [blame]
Richard Purdie40e0aa62006-10-06 18:36:07 +02001/*
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>
Richard Purdie40e0aa62006-10-06 18:36:07 +020022#include <sound/core.h>
23#include <sound/pcm.h>
24#include <sound/pcm_params.h>
25#include <sound/soc.h>
26#include <sound/soc-dapm.h>
27#include <sound/initval.h>
28
29#include "wm8731.h"
30
31#define AUDIO_NAME "wm8731"
Frank Mandarinob36d61d2007-02-02 17:14:56 +010032#define WM8731_VERSION "0.13"
Richard Purdie40e0aa62006-10-06 18:36:07 +020033
Richard Purdie40e0aa62006-10-06 18:36:07 +020034struct snd_soc_codec_device soc_codec_dev_wm8731;
35
Frank Mandarinob36d61d2007-02-02 17:14:56 +010036/* codec private data */
37struct wm8731_priv {
38 unsigned int sysclk;
39};
40
Richard Purdie40e0aa62006-10-06 18:36:07 +020041/*
42 * wm8731 register cache
43 * We can't read the WM8731 register space when we are
44 * using 2 wire for device control, so we cache them instead.
45 * There is no point in caching the reset register
46 */
47static const u16 wm8731_reg[WM8731_CACHEREGNUM] = {
48 0x0097, 0x0097, 0x0079, 0x0079,
49 0x000a, 0x0008, 0x009f, 0x000a,
50 0x0000, 0x0000
51};
52
Richard Purdie40e0aa62006-10-06 18:36:07 +020053/*
54 * read wm8731 register cache
55 */
56static inline unsigned int wm8731_read_reg_cache(struct snd_soc_codec *codec,
57 unsigned int reg)
58{
59 u16 *cache = codec->reg_cache;
60 if (reg == WM8731_RESET)
61 return 0;
62 if (reg >= WM8731_CACHEREGNUM)
63 return -1;
64 return cache[reg];
65}
66
67/*
68 * write wm8731 register cache
69 */
70static inline void wm8731_write_reg_cache(struct snd_soc_codec *codec,
71 u16 reg, unsigned int value)
72{
73 u16 *cache = codec->reg_cache;
74 if (reg >= WM8731_CACHEREGNUM)
75 return;
76 cache[reg] = value;
77}
78
79/*
80 * write to the WM8731 register space
81 */
82static int wm8731_write(struct snd_soc_codec *codec, unsigned int reg,
83 unsigned int value)
84{
85 u8 data[2];
86
87 /* data is
88 * D15..D9 WM8731 register offset
89 * D8...D0 register data
90 */
91 data[0] = (reg << 1) | ((value >> 8) & 0x0001);
92 data[1] = value & 0x00ff;
93
Mark Brownd454aee2008-04-23 15:16:46 +020094 wm8731_write_reg_cache(codec, reg, value);
Richard Purdie40e0aa62006-10-06 18:36:07 +020095 if (codec->hw_write(codec->control_data, data, 2) == 2)
96 return 0;
97 else
98 return -EIO;
99}
100
101#define wm8731_reset(c) wm8731_write(c, WM8731_RESET, 0)
102
103static const char *wm8731_input_select[] = {"Line In", "Mic"};
104static const char *wm8731_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"};
105
106static const struct soc_enum wm8731_enum[] = {
107 SOC_ENUM_SINGLE(WM8731_APANA, 2, 2, wm8731_input_select),
108 SOC_ENUM_SINGLE(WM8731_APDIGI, 1, 4, wm8731_deemph),
109};
110
111static const struct snd_kcontrol_new wm8731_snd_controls[] = {
112
Liam Girdwoodbd903b62006-11-09 16:35:01 +0100113SOC_DOUBLE_R("Master Playback Volume", WM8731_LOUT1V, WM8731_ROUT1V,
114 0, 127, 0),
115SOC_DOUBLE_R("Master Playback ZC Switch", WM8731_LOUT1V, WM8731_ROUT1V,
116 7, 1, 0),
Richard Purdie40e0aa62006-10-06 18:36:07 +0200117
118SOC_DOUBLE_R("Capture Volume", WM8731_LINVOL, WM8731_RINVOL, 0, 31, 0),
119SOC_DOUBLE_R("Line Capture Switch", WM8731_LINVOL, WM8731_RINVOL, 7, 1, 1),
120
121SOC_SINGLE("Mic Boost (+20dB)", WM8731_APANA, 0, 1, 0),
122SOC_SINGLE("Capture Mic Switch", WM8731_APANA, 1, 1, 1),
123
124SOC_SINGLE("Sidetone Playback Volume", WM8731_APANA, 6, 3, 1),
125
126SOC_SINGLE("ADC High Pass Filter Switch", WM8731_APDIGI, 0, 1, 1),
127SOC_SINGLE("Store DC Offset Switch", WM8731_APDIGI, 4, 1, 0),
128
129SOC_ENUM("Playback De-emphasis", wm8731_enum[1]),
130};
131
132/* add non dapm controls */
133static int wm8731_add_controls(struct snd_soc_codec *codec)
134{
135 int err, i;
136
137 for (i = 0; i < ARRAY_SIZE(wm8731_snd_controls); i++) {
Mark Brownd454aee2008-04-23 15:16:46 +0200138 err = snd_ctl_add(codec->card,
139 snd_soc_cnew(&wm8731_snd_controls[i],
140 codec, NULL));
141 if (err < 0)
Richard Purdie40e0aa62006-10-06 18:36:07 +0200142 return err;
143 }
144
145 return 0;
146}
147
148/* Output Mixer */
149static const struct snd_kcontrol_new wm8731_output_mixer_controls[] = {
150SOC_DAPM_SINGLE("Line Bypass Switch", WM8731_APANA, 3, 1, 0),
151SOC_DAPM_SINGLE("Mic Sidetone Switch", WM8731_APANA, 5, 1, 0),
152SOC_DAPM_SINGLE("HiFi Playback Switch", WM8731_APANA, 4, 1, 0),
153};
154
155/* Input mux */
156static const struct snd_kcontrol_new wm8731_input_mux_controls =
157SOC_DAPM_ENUM("Input Select", wm8731_enum[0]);
158
159static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = {
160SND_SOC_DAPM_MIXER("Output Mixer", WM8731_PWR, 4, 1,
161 &wm8731_output_mixer_controls[0],
162 ARRAY_SIZE(wm8731_output_mixer_controls)),
163SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8731_PWR, 3, 1),
164SND_SOC_DAPM_OUTPUT("LOUT"),
165SND_SOC_DAPM_OUTPUT("LHPOUT"),
166SND_SOC_DAPM_OUTPUT("ROUT"),
167SND_SOC_DAPM_OUTPUT("RHPOUT"),
168SND_SOC_DAPM_ADC("ADC", "HiFi Capture", WM8731_PWR, 2, 1),
169SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, &wm8731_input_mux_controls),
170SND_SOC_DAPM_PGA("Line Input", WM8731_PWR, 0, 1, NULL, 0),
171SND_SOC_DAPM_MICBIAS("Mic Bias", WM8731_PWR, 1, 1),
172SND_SOC_DAPM_INPUT("MICIN"),
173SND_SOC_DAPM_INPUT("RLINEIN"),
174SND_SOC_DAPM_INPUT("LLINEIN"),
175};
176
Mark Browna65f0562008-05-13 14:54:43 +0200177static const struct snd_soc_dapm_route intercon[] = {
Richard Purdie40e0aa62006-10-06 18:36:07 +0200178 /* output mixer */
179 {"Output Mixer", "Line Bypass Switch", "Line Input"},
180 {"Output Mixer", "HiFi Playback Switch", "DAC"},
181 {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"},
182
183 /* outputs */
184 {"RHPOUT", NULL, "Output Mixer"},
185 {"ROUT", NULL, "Output Mixer"},
186 {"LHPOUT", NULL, "Output Mixer"},
187 {"LOUT", NULL, "Output Mixer"},
188
189 /* input mux */
190 {"Input Mux", "Line In", "Line Input"},
191 {"Input Mux", "Mic", "Mic Bias"},
192 {"ADC", NULL, "Input Mux"},
193
194 /* inputs */
195 {"Line Input", NULL, "LLINEIN"},
196 {"Line Input", NULL, "RLINEIN"},
197 {"Mic Bias", NULL, "MICIN"},
Richard Purdie40e0aa62006-10-06 18:36:07 +0200198};
199
200static int wm8731_add_widgets(struct snd_soc_codec *codec)
201{
Mark Browna65f0562008-05-13 14:54:43 +0200202 snd_soc_dapm_new_controls(codec, wm8731_dapm_widgets,
203 ARRAY_SIZE(wm8731_dapm_widgets));
Richard Purdie40e0aa62006-10-06 18:36:07 +0200204
Mark Browna65f0562008-05-13 14:54:43 +0200205 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
Richard Purdie40e0aa62006-10-06 18:36:07 +0200206
207 snd_soc_dapm_new_widgets(codec);
208 return 0;
209}
210
211struct _coeff_div {
212 u32 mclk;
213 u32 rate;
214 u16 fs;
215 u8 sr:4;
216 u8 bosr:1;
217 u8 usb:1;
218};
219
220/* codec mclk clock divider coefficients */
221static const struct _coeff_div coeff_div[] = {
222 /* 48k */
223 {12288000, 48000, 256, 0x0, 0x0, 0x0},
224 {18432000, 48000, 384, 0x0, 0x1, 0x0},
225 {12000000, 48000, 250, 0x0, 0x0, 0x1},
226
227 /* 32k */
228 {12288000, 32000, 384, 0x6, 0x0, 0x0},
229 {18432000, 32000, 576, 0x6, 0x1, 0x0},
Frank Mandarino298a2c72007-01-31 10:02:56 +0100230 {12000000, 32000, 375, 0x6, 0x0, 0x1},
Richard Purdie40e0aa62006-10-06 18:36:07 +0200231
232 /* 8k */
233 {12288000, 8000, 1536, 0x3, 0x0, 0x0},
234 {18432000, 8000, 2304, 0x3, 0x1, 0x0},
235 {11289600, 8000, 1408, 0xb, 0x0, 0x0},
236 {16934400, 8000, 2112, 0xb, 0x1, 0x0},
237 {12000000, 8000, 1500, 0x3, 0x0, 0x1},
238
239 /* 96k */
240 {12288000, 96000, 128, 0x7, 0x0, 0x0},
241 {18432000, 96000, 192, 0x7, 0x1, 0x0},
242 {12000000, 96000, 125, 0x7, 0x0, 0x1},
243
244 /* 44.1k */
245 {11289600, 44100, 256, 0x8, 0x0, 0x0},
246 {16934400, 44100, 384, 0x8, 0x1, 0x0},
247 {12000000, 44100, 272, 0x8, 0x1, 0x1},
248
249 /* 88.2k */
250 {11289600, 88200, 128, 0xf, 0x0, 0x0},
251 {16934400, 88200, 192, 0xf, 0x1, 0x0},
252 {12000000, 88200, 136, 0xf, 0x1, 0x1},
253};
254
255static inline int get_coeff(int mclk, int rate)
256{
257 int i;
258
259 for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
260 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
261 return i;
262 }
263 return 0;
264}
265
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100266static int wm8731_hw_params(struct snd_pcm_substream *substream,
267 struct snd_pcm_hw_params *params)
Richard Purdie40e0aa62006-10-06 18:36:07 +0200268{
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100269 struct snd_soc_pcm_runtime *rtd = substream->private_data;
270 struct snd_soc_device *socdev = rtd->socdev;
271 struct snd_soc_codec *codec = socdev->codec;
272 struct wm8731_priv *wm8731 = codec->private_data;
273 u16 iface = wm8731_read_reg_cache(codec, WM8731_IFACE) & 0xfff3;
274 int i = get_coeff(wm8731->sysclk, params_rate(params));
275 u16 srate = (coeff_div[i].sr << 2) |
276 (coeff_div[i].bosr << 1) | coeff_div[i].usb;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200277
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100278 wm8731_write(codec, WM8731_SRATE, srate);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200279
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100280 /* bit size */
281 switch (params_format(params)) {
282 case SNDRV_PCM_FORMAT_S16_LE:
283 break;
284 case SNDRV_PCM_FORMAT_S20_3LE:
285 iface |= 0x0004;
286 break;
287 case SNDRV_PCM_FORMAT_S24_LE:
288 iface |= 0x0008;
289 break;
290 }
291
292 wm8731_write(codec, WM8731_IFACE, iface);
293 return 0;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200294}
295
296static int wm8731_pcm_prepare(struct snd_pcm_substream *substream)
297{
298 struct snd_soc_pcm_runtime *rtd = substream->private_data;
299 struct snd_soc_device *socdev = rtd->socdev;
300 struct snd_soc_codec *codec = socdev->codec;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200301
302 /* set active */
303 wm8731_write(codec, WM8731_ACTIVE, 0x0001);
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100304
Richard Purdie40e0aa62006-10-06 18:36:07 +0200305 return 0;
306}
307
308static void wm8731_shutdown(struct snd_pcm_substream *substream)
309{
310 struct snd_soc_pcm_runtime *rtd = substream->private_data;
311 struct snd_soc_device *socdev = rtd->socdev;
312 struct snd_soc_codec *codec = socdev->codec;
313
314 /* deactivate */
315 if (!codec->active) {
316 udelay(50);
317 wm8731_write(codec, WM8731_ACTIVE, 0x0);
318 }
319}
320
Liam Girdwoode550e172008-07-07 16:07:52 +0100321static int wm8731_mute(struct snd_soc_dai *dai, int mute)
Richard Purdie40e0aa62006-10-06 18:36:07 +0200322{
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100323 struct snd_soc_codec *codec = dai->codec;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200324 u16 mute_reg = wm8731_read_reg_cache(codec, WM8731_APDIGI) & 0xfff7;
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100325
Richard Purdie40e0aa62006-10-06 18:36:07 +0200326 if (mute)
327 wm8731_write(codec, WM8731_APDIGI, mute_reg | 0x8);
328 else
329 wm8731_write(codec, WM8731_APDIGI, mute_reg);
330 return 0;
331}
332
Liam Girdwoode550e172008-07-07 16:07:52 +0100333static int wm8731_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100334 int clk_id, unsigned int freq, int dir)
335{
336 struct snd_soc_codec *codec = codec_dai->codec;
337 struct wm8731_priv *wm8731 = codec->private_data;
338
339 switch (freq) {
340 case 11289600:
341 case 12000000:
342 case 12288000:
343 case 16934400:
344 case 18432000:
345 wm8731->sysclk = freq;
346 return 0;
347 }
348 return -EINVAL;
349}
350
351
Liam Girdwoode550e172008-07-07 16:07:52 +0100352static int wm8731_set_dai_fmt(struct snd_soc_dai *codec_dai,
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100353 unsigned int fmt)
354{
355 struct snd_soc_codec *codec = codec_dai->codec;
356 u16 iface = 0;
357
358 /* set master/slave audio interface */
359 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
360 case SND_SOC_DAIFMT_CBM_CFM:
361 iface |= 0x0040;
362 break;
363 case SND_SOC_DAIFMT_CBS_CFS:
364 break;
365 default:
366 return -EINVAL;
367 }
368
369 /* interface format */
370 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
371 case SND_SOC_DAIFMT_I2S:
372 iface |= 0x0002;
373 break;
374 case SND_SOC_DAIFMT_RIGHT_J:
375 break;
376 case SND_SOC_DAIFMT_LEFT_J:
377 iface |= 0x0001;
378 break;
379 case SND_SOC_DAIFMT_DSP_A:
380 iface |= 0x0003;
381 break;
382 case SND_SOC_DAIFMT_DSP_B:
383 iface |= 0x0013;
384 break;
385 default:
386 return -EINVAL;
387 }
388
389 /* clock inversion */
390 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
391 case SND_SOC_DAIFMT_NB_NF:
392 break;
393 case SND_SOC_DAIFMT_IB_IF:
394 iface |= 0x0090;
395 break;
396 case SND_SOC_DAIFMT_IB_NF:
397 iface |= 0x0080;
398 break;
399 case SND_SOC_DAIFMT_NB_IF:
400 iface |= 0x0010;
401 break;
402 default:
403 return -EINVAL;
404 }
405
406 /* set iface */
407 wm8731_write(codec, WM8731_IFACE, iface);
408 return 0;
409}
410
Mark Brown0be98982008-05-19 12:31:28 +0200411static int wm8731_set_bias_level(struct snd_soc_codec *codec,
412 enum snd_soc_bias_level level)
Richard Purdie40e0aa62006-10-06 18:36:07 +0200413{
414 u16 reg = wm8731_read_reg_cache(codec, WM8731_PWR) & 0xff7f;
415
Mark Brown0be98982008-05-19 12:31:28 +0200416 switch (level) {
417 case SND_SOC_BIAS_ON:
Richard Purdie40e0aa62006-10-06 18:36:07 +0200418 /* vref/mid, osc on, dac unmute */
419 wm8731_write(codec, WM8731_PWR, reg);
420 break;
Mark Brown0be98982008-05-19 12:31:28 +0200421 case SND_SOC_BIAS_PREPARE:
Richard Purdie40e0aa62006-10-06 18:36:07 +0200422 break;
Mark Brown0be98982008-05-19 12:31:28 +0200423 case SND_SOC_BIAS_STANDBY:
Richard Purdie40e0aa62006-10-06 18:36:07 +0200424 /* everything off except vref/vmid, */
425 wm8731_write(codec, WM8731_PWR, reg | 0x0040);
426 break;
Mark Brown0be98982008-05-19 12:31:28 +0200427 case SND_SOC_BIAS_OFF:
Richard Purdie40e0aa62006-10-06 18:36:07 +0200428 /* everything off, dac mute, inactive */
429 wm8731_write(codec, WM8731_ACTIVE, 0x0);
430 wm8731_write(codec, WM8731_PWR, 0xffff);
431 break;
432 }
Mark Brown0be98982008-05-19 12:31:28 +0200433 codec->bias_level = level;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200434 return 0;
435}
436
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100437#define WM8731_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
438 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\
439 SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |\
440 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |\
441 SNDRV_PCM_RATE_96000)
442
443#define WM8731_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
444 SNDRV_PCM_FMTBIT_S24_LE)
445
Liam Girdwoode550e172008-07-07 16:07:52 +0100446struct snd_soc_dai wm8731_dai = {
Richard Purdie40e0aa62006-10-06 18:36:07 +0200447 .name = "WM8731",
448 .playback = {
449 .stream_name = "Playback",
450 .channels_min = 1,
451 .channels_max = 2,
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100452 .rates = WM8731_RATES,
453 .formats = WM8731_FORMATS,},
Richard Purdie40e0aa62006-10-06 18:36:07 +0200454 .capture = {
455 .stream_name = "Capture",
456 .channels_min = 1,
457 .channels_max = 2,
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100458 .rates = WM8731_RATES,
459 .formats = WM8731_FORMATS,},
Richard Purdie40e0aa62006-10-06 18:36:07 +0200460 .ops = {
461 .prepare = wm8731_pcm_prepare,
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100462 .hw_params = wm8731_hw_params,
Richard Purdie40e0aa62006-10-06 18:36:07 +0200463 .shutdown = wm8731_shutdown,
464 },
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100465 .dai_ops = {
466 .digital_mute = wm8731_mute,
467 .set_sysclk = wm8731_set_dai_sysclk,
468 .set_fmt = wm8731_set_dai_fmt,
469 }
Richard Purdie40e0aa62006-10-06 18:36:07 +0200470};
471EXPORT_SYMBOL_GPL(wm8731_dai);
472
473static int wm8731_suspend(struct platform_device *pdev, pm_message_t state)
474{
475 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
476 struct snd_soc_codec *codec = socdev->codec;
477
478 wm8731_write(codec, WM8731_ACTIVE, 0x0);
Mark Brown0be98982008-05-19 12:31:28 +0200479 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200480 return 0;
481}
482
483static int wm8731_resume(struct platform_device *pdev)
484{
485 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
486 struct snd_soc_codec *codec = socdev->codec;
487 int i;
488 u8 data[2];
489 u16 *cache = codec->reg_cache;
490
491 /* Sync reg_cache with the hardware */
492 for (i = 0; i < ARRAY_SIZE(wm8731_reg); i++) {
493 data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001);
494 data[1] = cache[i] & 0x00ff;
495 codec->hw_write(codec->control_data, data, 2);
496 }
Mark Brown0be98982008-05-19 12:31:28 +0200497 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
498 wm8731_set_bias_level(codec, codec->suspend_bias_level);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200499 return 0;
500}
501
502/*
503 * initialise the WM8731 driver
504 * register the mixer and dsp interfaces with the kernel
505 */
506static int wm8731_init(struct snd_soc_device *socdev)
507{
508 struct snd_soc_codec *codec = socdev->codec;
509 int reg, ret = 0;
510
511 codec->name = "WM8731";
512 codec->owner = THIS_MODULE;
513 codec->read = wm8731_read_reg_cache;
514 codec->write = wm8731_write;
Mark Brown0be98982008-05-19 12:31:28 +0200515 codec->set_bias_level = wm8731_set_bias_level;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200516 codec->dai = &wm8731_dai;
517 codec->num_dai = 1;
Mark Brownd751b232008-06-11 13:47:06 +0100518 codec->reg_cache_size = ARRAY_SIZE(wm8731_reg);
Takashi Iwai88cb4292007-02-05 14:56:20 +0100519 codec->reg_cache = kmemdup(wm8731_reg, sizeof(wm8731_reg), GFP_KERNEL);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200520 if (codec->reg_cache == NULL)
521 return -ENOMEM;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200522
523 wm8731_reset(codec);
524
525 /* register pcms */
526 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
527 if (ret < 0) {
Liam Girdwoode35115a2007-01-31 10:02:23 +0100528 printk(KERN_ERR "wm8731: failed to create pcms\n");
529 goto pcm_err;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200530 }
531
532 /* power on device */
Mark Brown0be98982008-05-19 12:31:28 +0200533 wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200534
535 /* set the update bits */
536 reg = wm8731_read_reg_cache(codec, WM8731_LOUT1V);
Ville Syrjala389619f2007-11-26 08:58:24 +0100537 wm8731_write(codec, WM8731_LOUT1V, reg & ~0x0100);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200538 reg = wm8731_read_reg_cache(codec, WM8731_ROUT1V);
Ville Syrjala389619f2007-11-26 08:58:24 +0100539 wm8731_write(codec, WM8731_ROUT1V, reg & ~0x0100);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200540 reg = wm8731_read_reg_cache(codec, WM8731_LINVOL);
Ville Syrjala389619f2007-11-26 08:58:24 +0100541 wm8731_write(codec, WM8731_LINVOL, reg & ~0x0100);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200542 reg = wm8731_read_reg_cache(codec, WM8731_RINVOL);
Ville Syrjala389619f2007-11-26 08:58:24 +0100543 wm8731_write(codec, WM8731_RINVOL, reg & ~0x0100);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200544
545 wm8731_add_controls(codec);
546 wm8731_add_widgets(codec);
547 ret = snd_soc_register_card(socdev);
548 if (ret < 0) {
Liam Girdwoode35115a2007-01-31 10:02:23 +0100549 printk(KERN_ERR "wm8731: failed to register card\n");
550 goto card_err;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200551 }
552
553 return ret;
Liam Girdwoode35115a2007-01-31 10:02:23 +0100554
555card_err:
556 snd_soc_free_pcms(socdev);
557 snd_soc_dapm_free(socdev);
558pcm_err:
559 kfree(codec->reg_cache);
560 return ret;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200561}
562
563static struct snd_soc_device *wm8731_socdev;
564
Mark Brownd454aee2008-04-23 15:16:46 +0200565#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
Richard Purdie40e0aa62006-10-06 18:36:07 +0200566
567/*
568 * WM8731 2 wire address is determined by GPIO5
569 * state during powerup.
570 * low = 0x1a
571 * high = 0x1b
572 */
573static unsigned short normal_i2c[] = { 0, I2C_CLIENT_END };
574
575/* Magic definition of all other variables and things */
576I2C_CLIENT_INSMOD;
577
578static struct i2c_driver wm8731_i2c_driver;
579static struct i2c_client client_template;
580
581/* If the i2c layer weren't so broken, we could pass this kind of data
582 around */
583
584static int wm8731_codec_probe(struct i2c_adapter *adap, int addr, int kind)
585{
586 struct snd_soc_device *socdev = wm8731_socdev;
587 struct wm8731_setup_data *setup = socdev->codec_data;
588 struct snd_soc_codec *codec = socdev->codec;
589 struct i2c_client *i2c;
590 int ret;
591
592 if (addr != setup->i2c_address)
593 return -ENODEV;
594
595 client_template.adapter = adap;
596 client_template.addr = addr;
597
Takashi Iwai88cb4292007-02-05 14:56:20 +0100598 i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200599 if (i2c == NULL) {
600 kfree(codec);
601 return -ENOMEM;
602 }
Richard Purdie40e0aa62006-10-06 18:36:07 +0200603 i2c_set_clientdata(i2c, codec);
604 codec->control_data = i2c;
605
606 ret = i2c_attach_client(i2c);
607 if (ret < 0) {
Mark Browna5c95e92008-06-23 14:51:29 +0100608 pr_err("failed to attach codec at addr %x\n", addr);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200609 goto err;
610 }
611
612 ret = wm8731_init(socdev);
613 if (ret < 0) {
Mark Browna5c95e92008-06-23 14:51:29 +0100614 pr_err("failed to initialise WM8731\n");
Richard Purdie40e0aa62006-10-06 18:36:07 +0200615 goto err;
616 }
617 return ret;
618
619err:
620 kfree(codec);
621 kfree(i2c);
622 return ret;
623}
624
625static int wm8731_i2c_detach(struct i2c_client *client)
626{
Mark Brownd454aee2008-04-23 15:16:46 +0200627 struct snd_soc_codec *codec = i2c_get_clientdata(client);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200628 i2c_detach_client(client);
629 kfree(codec->reg_cache);
630 kfree(client);
631 return 0;
632}
633
634static int wm8731_i2c_attach(struct i2c_adapter *adap)
635{
636 return i2c_probe(adap, &addr_data, wm8731_codec_probe);
637}
638
639/* corgi i2c codec control layer */
640static struct i2c_driver wm8731_i2c_driver = {
641 .driver = {
642 .name = "WM8731 I2C Codec",
643 .owner = THIS_MODULE,
644 },
645 .id = I2C_DRIVERID_WM8731,
646 .attach_adapter = wm8731_i2c_attach,
647 .detach_client = wm8731_i2c_detach,
648 .command = NULL,
649};
650
651static struct i2c_client client_template = {
652 .name = "WM8731",
653 .driver = &wm8731_i2c_driver,
654};
655#endif
656
657static int wm8731_probe(struct platform_device *pdev)
658{
659 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
660 struct wm8731_setup_data *setup;
661 struct snd_soc_codec *codec;
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100662 struct wm8731_priv *wm8731;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200663 int ret = 0;
664
Mark Browna5c95e92008-06-23 14:51:29 +0100665 pr_info("WM8731 Audio Codec %s", WM8731_VERSION);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200666
667 setup = socdev->codec_data;
668 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
669 if (codec == NULL)
670 return -ENOMEM;
671
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100672 wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL);
673 if (wm8731 == NULL) {
674 kfree(codec);
675 return -ENOMEM;
676 }
677
678 codec->private_data = wm8731;
Richard Purdie40e0aa62006-10-06 18:36:07 +0200679 socdev->codec = codec;
680 mutex_init(&codec->mutex);
681 INIT_LIST_HEAD(&codec->dapm_widgets);
682 INIT_LIST_HEAD(&codec->dapm_paths);
683
684 wm8731_socdev = socdev;
Mark Brownd454aee2008-04-23 15:16:46 +0200685#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
Richard Purdie40e0aa62006-10-06 18:36:07 +0200686 if (setup->i2c_address) {
687 normal_i2c[0] = setup->i2c_address;
688 codec->hw_write = (hw_write_t)i2c_master_send;
689 ret = i2c_add_driver(&wm8731_i2c_driver);
690 if (ret != 0)
691 printk(KERN_ERR "can't add i2c driver");
692 }
693#else
694 /* Add other interfaces here */
695#endif
696 return ret;
697}
698
699/* power down chip */
700static int wm8731_remove(struct platform_device *pdev)
701{
702 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
703 struct snd_soc_codec *codec = socdev->codec;
704
705 if (codec->control_data)
Mark Brown0be98982008-05-19 12:31:28 +0200706 wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200707
708 snd_soc_free_pcms(socdev);
709 snd_soc_dapm_free(socdev);
Mark Brownd454aee2008-04-23 15:16:46 +0200710#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
Richard Purdie40e0aa62006-10-06 18:36:07 +0200711 i2c_del_driver(&wm8731_i2c_driver);
712#endif
Frank Mandarinob36d61d2007-02-02 17:14:56 +0100713 kfree(codec->private_data);
Richard Purdie40e0aa62006-10-06 18:36:07 +0200714 kfree(codec);
715
716 return 0;
717}
718
719struct snd_soc_codec_device soc_codec_dev_wm8731 = {
720 .probe = wm8731_probe,
721 .remove = wm8731_remove,
722 .suspend = wm8731_suspend,
723 .resume = wm8731_resume,
724};
Richard Purdie40e0aa62006-10-06 18:36:07 +0200725EXPORT_SYMBOL_GPL(soc_codec_dev_wm8731);
726
727MODULE_DESCRIPTION("ASoC WM8731 driver");
728MODULE_AUTHOR("Richard Purdie");
729MODULE_LICENSE("GPL");