blob: 09ff01f2fc1e859d65eef02131aa371d4cf93111 [file] [log] [blame]
Ian Lartey992bee42010-07-31 00:32:11 +01001/*
2 * wm8741.c -- WM8741 ALSA SoC Audio driver
3 *
Mark Brown656baae2012-05-23 12:39:07 +01004 * Copyright 2010-1 Wolfson Microelectronics plc
Ian Lartey992bee42010-07-31 00:32:11 +01005 *
6 * Author: Ian Lartey <ian@opensource.wolfsonmicro.com>
7 *
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/init.h>
17#include <linux/delay.h>
18#include <linux/pm.h>
19#include <linux/i2c.h>
Mark Brown39e9b8d2011-08-03 17:30:57 +090020#include <linux/spi/spi.h>
Mark Brownfe98c0c2012-09-10 18:00:21 +080021#include <linux/regmap.h>
Ian Lartey992bee42010-07-31 00:32:11 +010022#include <linux/regulator/consumer.h>
23#include <linux/slab.h>
Mark Brown80080ec2011-08-03 17:31:26 +090024#include <linux/of_device.h>
Ian Lartey992bee42010-07-31 00:32:11 +010025#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28#include <sound/soc.h>
Ian Lartey992bee42010-07-31 00:32:11 +010029#include <sound/initval.h>
30#include <sound/tlv.h>
31
32#include "wm8741.h"
33
Ian Lartey992bee42010-07-31 00:32:11 +010034#define WM8741_NUM_SUPPLIES 2
35static const char *wm8741_supply_names[WM8741_NUM_SUPPLIES] = {
36 "AVDD",
37 "DVDD",
38};
39
Ian Lartey3fe4a5e2010-08-27 15:26:27 +010040#define WM8741_NUM_RATES 6
Ian Lartey992bee42010-07-31 00:32:11 +010041
42/* codec private data */
43struct wm8741_priv {
Sergej Sawazkic354b542015-05-13 11:39:01 +020044 struct wm8741_platform_data pdata;
Mark Brownfe98c0c2012-09-10 18:00:21 +080045 struct regmap *regmap;
Ian Lartey992bee42010-07-31 00:32:11 +010046 struct regulator_bulk_data supplies[WM8741_NUM_SUPPLIES];
47 unsigned int sysclk;
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +010048 const struct snd_pcm_hw_constraint_list *sysclk_constraints;
Ian Lartey992bee42010-07-31 00:32:11 +010049};
50
Mark Brownfe98c0c2012-09-10 18:00:21 +080051static const struct reg_default wm8741_reg_defaults[] = {
52 { 0, 0x0000 }, /* R0 - DACLLSB Attenuation */
53 { 1, 0x0000 }, /* R1 - DACLMSB Attenuation */
54 { 2, 0x0000 }, /* R2 - DACRLSB Attenuation */
55 { 3, 0x0000 }, /* R3 - DACRMSB Attenuation */
56 { 4, 0x0000 }, /* R4 - Volume Control */
57 { 5, 0x000A }, /* R5 - Format Control */
58 { 6, 0x0000 }, /* R6 - Filter Control */
59 { 7, 0x0000 }, /* R7 - Mode Control 1 */
60 { 8, 0x0002 }, /* R8 - Mode Control 2 */
61 { 32, 0x0002 }, /* R32 - ADDITONAL_CONTROL_1 */
Ian Lartey992bee42010-07-31 00:32:11 +010062};
63
Mark Brownfe98c0c2012-09-10 18:00:21 +080064static bool wm8741_readable(struct device *dev, unsigned int reg)
65{
66 switch (reg) {
67 case WM8741_DACLLSB_ATTENUATION:
68 case WM8741_DACLMSB_ATTENUATION:
69 case WM8741_DACRLSB_ATTENUATION:
70 case WM8741_DACRMSB_ATTENUATION:
71 case WM8741_VOLUME_CONTROL:
72 case WM8741_FORMAT_CONTROL:
73 case WM8741_FILTER_CONTROL:
74 case WM8741_MODE_CONTROL_1:
75 case WM8741_MODE_CONTROL_2:
76 case WM8741_ADDITIONAL_CONTROL_1:
77 return true;
78 default:
79 return false;
80 }
81}
Ian Lartey992bee42010-07-31 00:32:11 +010082
83static int wm8741_reset(struct snd_soc_codec *codec)
84{
85 return snd_soc_write(codec, WM8741_RESET, 0);
86}
87
88static const DECLARE_TLV_DB_SCALE(dac_tlv_fine, -12700, 13, 0);
89static const DECLARE_TLV_DB_SCALE(dac_tlv, -12700, 400, 0);
90
Sergej Sawazkic354b542015-05-13 11:39:01 +020091static const struct snd_kcontrol_new wm8741_snd_controls_stereo[] = {
Ian Lartey992bee42010-07-31 00:32:11 +010092SOC_DOUBLE_R_TLV("Fine Playback Volume", WM8741_DACLLSB_ATTENUATION,
93 WM8741_DACRLSB_ATTENUATION, 1, 255, 1, dac_tlv_fine),
94SOC_DOUBLE_R_TLV("Playback Volume", WM8741_DACLMSB_ATTENUATION,
95 WM8741_DACRMSB_ATTENUATION, 0, 511, 1, dac_tlv),
96};
97
Sergej Sawazkic354b542015-05-13 11:39:01 +020098static const struct snd_kcontrol_new wm8741_snd_controls_mono_left[] = {
99SOC_SINGLE_TLV("Fine Playback Volume", WM8741_DACLLSB_ATTENUATION,
100 1, 255, 1, dac_tlv_fine),
101SOC_SINGLE_TLV("Playback Volume", WM8741_DACLMSB_ATTENUATION,
102 0, 511, 1, dac_tlv),
103};
104
105static const struct snd_kcontrol_new wm8741_snd_controls_mono_right[] = {
106SOC_SINGLE_TLV("Fine Playback Volume", WM8741_DACRLSB_ATTENUATION,
107 1, 255, 1, dac_tlv_fine),
108SOC_SINGLE_TLV("Playback Volume", WM8741_DACRMSB_ATTENUATION,
109 0, 511, 1, dac_tlv),
110};
111
Ian Lartey992bee42010-07-31 00:32:11 +0100112static const struct snd_soc_dapm_widget wm8741_dapm_widgets[] = {
113SND_SOC_DAPM_DAC("DACL", "Playback", SND_SOC_NOPM, 0, 0),
114SND_SOC_DAPM_DAC("DACR", "Playback", SND_SOC_NOPM, 0, 0),
115SND_SOC_DAPM_OUTPUT("VOUTLP"),
116SND_SOC_DAPM_OUTPUT("VOUTLN"),
117SND_SOC_DAPM_OUTPUT("VOUTRP"),
118SND_SOC_DAPM_OUTPUT("VOUTRN"),
119};
120
Mark Brown0e627802011-12-03 17:15:06 +0000121static const struct snd_soc_dapm_route wm8741_dapm_routes[] = {
Ian Lartey992bee42010-07-31 00:32:11 +0100122 { "VOUTLP", NULL, "DACL" },
123 { "VOUTLN", NULL, "DACL" },
124 { "VOUTRP", NULL, "DACR" },
125 { "VOUTRN", NULL, "DACR" },
126};
127
Ian Lartey992bee42010-07-31 00:32:11 +0100128static struct {
129 int value;
130 int ratio;
131} lrclk_ratios[WM8741_NUM_RATES] = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100132 { 1, 128 },
133 { 2, 192 },
134 { 3, 256 },
135 { 4, 384 },
136 { 5, 512 },
137 { 6, 768 },
138};
139
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100140static const unsigned int rates_11289[] = {
Sergej Sawazki87870412015-03-24 21:13:22 +0100141 44100, 88200,
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100142};
143
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100144static const struct snd_pcm_hw_constraint_list constraints_11289 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100145 .count = ARRAY_SIZE(rates_11289),
146 .list = rates_11289,
147};
148
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100149static const unsigned int rates_12288[] = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100150 32000, 48000, 96000,
151};
152
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100153static const struct snd_pcm_hw_constraint_list constraints_12288 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100154 .count = ARRAY_SIZE(rates_12288),
155 .list = rates_12288,
156};
157
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100158static const unsigned int rates_16384[] = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100159 32000,
160};
161
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100162static const struct snd_pcm_hw_constraint_list constraints_16384 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100163 .count = ARRAY_SIZE(rates_16384),
164 .list = rates_16384,
165};
166
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100167static const unsigned int rates_16934[] = {
Sergej Sawazki87870412015-03-24 21:13:22 +0100168 44100, 88200,
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100169};
170
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100171static const struct snd_pcm_hw_constraint_list constraints_16934 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100172 .count = ARRAY_SIZE(rates_16934),
173 .list = rates_16934,
174};
175
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100176static const unsigned int rates_18432[] = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100177 48000, 96000,
178};
179
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100180static const struct snd_pcm_hw_constraint_list constraints_18432 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100181 .count = ARRAY_SIZE(rates_18432),
182 .list = rates_18432,
183};
184
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100185static const unsigned int rates_22579[] = {
Sergej Sawazki87870412015-03-24 21:13:22 +0100186 44100, 88200, 176400
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100187};
188
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100189static const struct snd_pcm_hw_constraint_list constraints_22579 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100190 .count = ARRAY_SIZE(rates_22579),
191 .list = rates_22579,
192};
193
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100194static const unsigned int rates_24576[] = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100195 32000, 48000, 96000, 192000
196};
197
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100198static const struct snd_pcm_hw_constraint_list constraints_24576 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100199 .count = ARRAY_SIZE(rates_24576),
200 .list = rates_24576,
201};
202
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100203static const unsigned int rates_36864[] = {
Sergej Sawazki87870412015-03-24 21:13:22 +0100204 48000, 96000, 192000
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100205};
206
Lars-Peter Clausen70bad2c2014-02-05 21:54:35 +0100207static const struct snd_pcm_hw_constraint_list constraints_36864 = {
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100208 .count = ARRAY_SIZE(rates_36864),
209 .list = rates_36864,
Ian Lartey992bee42010-07-31 00:32:11 +0100210};
211
212
213static int wm8741_startup(struct snd_pcm_substream *substream,
214 struct snd_soc_dai *dai)
215{
216 struct snd_soc_codec *codec = dai->codec;
217 struct wm8741_priv *wm8741 = snd_soc_codec_get_drvdata(codec);
218
219 /* The set of sample rates that can be supported depends on the
220 * MCLK supplied to the CODEC - enforce this.
221 */
222 if (!wm8741->sysclk) {
223 dev_err(codec->dev,
224 "No MCLK configured, call set_sysclk() on init\n");
225 return -EINVAL;
226 }
227
228 snd_pcm_hw_constraint_list(substream->runtime, 0,
229 SNDRV_PCM_HW_PARAM_RATE,
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100230 wm8741->sysclk_constraints);
Ian Lartey992bee42010-07-31 00:32:11 +0100231
232 return 0;
233}
234
235static int wm8741_hw_params(struct snd_pcm_substream *substream,
236 struct snd_pcm_hw_params *params,
237 struct snd_soc_dai *dai)
238{
Mark Browne6968a12012-04-04 15:58:16 +0100239 struct snd_soc_codec *codec = dai->codec;
Ian Lartey992bee42010-07-31 00:32:11 +0100240 struct wm8741_priv *wm8741 = snd_soc_codec_get_drvdata(codec);
241 u16 iface = snd_soc_read(codec, WM8741_FORMAT_CONTROL) & 0x1FC;
242 int i;
243
244 /* Find a supported LRCLK ratio */
245 for (i = 0; i < ARRAY_SIZE(lrclk_ratios); i++) {
246 if (wm8741->sysclk / params_rate(params) ==
247 lrclk_ratios[i].ratio)
248 break;
249 }
250
251 /* Should never happen, should be handled by constraints */
252 if (i == ARRAY_SIZE(lrclk_ratios)) {
253 dev_err(codec->dev, "MCLK/fs ratio %d unsupported\n",
254 wm8741->sysclk / params_rate(params));
255 return -EINVAL;
256 }
257
258 /* bit size */
Mark Brown34967ad2014-07-31 12:51:45 +0100259 switch (params_width(params)) {
260 case 16:
Ian Lartey992bee42010-07-31 00:32:11 +0100261 break;
Mark Brown34967ad2014-07-31 12:51:45 +0100262 case 20:
Ian Lartey992bee42010-07-31 00:32:11 +0100263 iface |= 0x0001;
264 break;
Mark Brown34967ad2014-07-31 12:51:45 +0100265 case 24:
Ian Lartey992bee42010-07-31 00:32:11 +0100266 iface |= 0x0002;
267 break;
Mark Brown34967ad2014-07-31 12:51:45 +0100268 case 32:
Ian Lartey992bee42010-07-31 00:32:11 +0100269 iface |= 0x0003;
270 break;
271 default:
272 dev_dbg(codec->dev, "wm8741_hw_params: Unsupported bit size param = %d",
Mark Brown34967ad2014-07-31 12:51:45 +0100273 params_width(params));
Ian Lartey992bee42010-07-31 00:32:11 +0100274 return -EINVAL;
275 }
276
277 dev_dbg(codec->dev, "wm8741_hw_params: bit size param = %d",
Mark Brown34967ad2014-07-31 12:51:45 +0100278 params_width(params));
Ian Lartey992bee42010-07-31 00:32:11 +0100279
280 snd_soc_write(codec, WM8741_FORMAT_CONTROL, iface);
281 return 0;
282}
283
284static int wm8741_set_dai_sysclk(struct snd_soc_dai *codec_dai,
285 int clk_id, unsigned int freq, int dir)
286{
287 struct snd_soc_codec *codec = codec_dai->codec;
288 struct wm8741_priv *wm8741 = snd_soc_codec_get_drvdata(codec);
Ian Lartey992bee42010-07-31 00:32:11 +0100289
290 dev_dbg(codec->dev, "wm8741_set_dai_sysclk info: freq=%dHz\n", freq);
291
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100292 switch (freq) {
293 case 11289600:
294 wm8741->sysclk_constraints = &constraints_11289;
295 wm8741->sysclk = freq;
296 return 0;
Ian Lartey992bee42010-07-31 00:32:11 +0100297
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100298 case 12288000:
299 wm8741->sysclk_constraints = &constraints_12288;
300 wm8741->sysclk = freq;
301 return 0;
Ian Lartey992bee42010-07-31 00:32:11 +0100302
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100303 case 16384000:
304 wm8741->sysclk_constraints = &constraints_16384;
305 wm8741->sysclk = freq;
306 return 0;
Ian Lartey992bee42010-07-31 00:32:11 +0100307
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100308 case 16934400:
309 wm8741->sysclk_constraints = &constraints_16934;
310 wm8741->sysclk = freq;
311 return 0;
312
313 case 18432000:
314 wm8741->sysclk_constraints = &constraints_18432;
315 wm8741->sysclk = freq;
316 return 0;
317
318 case 22579200:
319 case 33868800:
320 wm8741->sysclk_constraints = &constraints_22579;
321 wm8741->sysclk = freq;
322 return 0;
323
324 case 24576000:
325 wm8741->sysclk_constraints = &constraints_24576;
326 wm8741->sysclk = freq;
327 return 0;
328
329 case 36864000:
330 wm8741->sysclk_constraints = &constraints_36864;
331 wm8741->sysclk = freq;
332 return 0;
Ian Lartey992bee42010-07-31 00:32:11 +0100333 }
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100334 return -EINVAL;
Ian Lartey992bee42010-07-31 00:32:11 +0100335}
336
337static int wm8741_set_dai_fmt(struct snd_soc_dai *codec_dai,
338 unsigned int fmt)
339{
340 struct snd_soc_codec *codec = codec_dai->codec;
341 u16 iface = snd_soc_read(codec, WM8741_FORMAT_CONTROL) & 0x1C3;
342
343 /* check master/slave audio interface */
344 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
345 case SND_SOC_DAIFMT_CBS_CFS:
346 break;
347 default:
348 return -EINVAL;
349 }
350
351 /* interface format */
352 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
353 case SND_SOC_DAIFMT_I2S:
354 iface |= 0x0008;
355 break;
356 case SND_SOC_DAIFMT_RIGHT_J:
357 break;
358 case SND_SOC_DAIFMT_LEFT_J:
359 iface |= 0x0004;
360 break;
361 case SND_SOC_DAIFMT_DSP_A:
Axel Lin3a340102011-10-17 20:14:56 +0800362 iface |= 0x000C;
Ian Lartey992bee42010-07-31 00:32:11 +0100363 break;
364 case SND_SOC_DAIFMT_DSP_B:
Axel Lin3a340102011-10-17 20:14:56 +0800365 iface |= 0x001C;
Ian Lartey992bee42010-07-31 00:32:11 +0100366 break;
367 default:
368 return -EINVAL;
369 }
370
371 /* clock inversion */
372 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
373 case SND_SOC_DAIFMT_NB_NF:
374 break;
375 case SND_SOC_DAIFMT_IB_IF:
376 iface |= 0x0010;
377 break;
378 case SND_SOC_DAIFMT_IB_NF:
379 iface |= 0x0020;
380 break;
381 case SND_SOC_DAIFMT_NB_IF:
382 iface |= 0x0030;
383 break;
384 default:
385 return -EINVAL;
386 }
387
388
389 dev_dbg(codec->dev, "wm8741_set_dai_fmt: Format=%x, Clock Inv=%x\n",
390 fmt & SND_SOC_DAIFMT_FORMAT_MASK,
391 ((fmt & SND_SOC_DAIFMT_INV_MASK)));
392
393 snd_soc_write(codec, WM8741_FORMAT_CONTROL, iface);
394 return 0;
395}
396
397#define WM8741_RATES (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
398 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 | \
399 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 | \
400 SNDRV_PCM_RATE_192000)
401
402#define WM8741_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
403 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
404
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100405static const struct snd_soc_dai_ops wm8741_dai_ops = {
Ian Lartey992bee42010-07-31 00:32:11 +0100406 .startup = wm8741_startup,
407 .hw_params = wm8741_hw_params,
408 .set_sysclk = wm8741_set_dai_sysclk,
409 .set_fmt = wm8741_set_dai_fmt,
410};
411
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000412static struct snd_soc_dai_driver wm8741_dai = {
Ian Lartey30e2d362010-08-20 17:18:44 +0100413 .name = "wm8741",
Ian Lartey992bee42010-07-31 00:32:11 +0100414 .playback = {
415 .stream_name = "Playback",
Sergej Sawazkic354b542015-05-13 11:39:01 +0200416 .channels_min = 2,
Ian Lartey992bee42010-07-31 00:32:11 +0100417 .channels_max = 2,
418 .rates = WM8741_RATES,
419 .formats = WM8741_FORMATS,
420 },
421 .ops = &wm8741_dai_ops,
422};
Ian Lartey992bee42010-07-31 00:32:11 +0100423
424#ifdef CONFIG_PM
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000425static int wm8741_resume(struct snd_soc_codec *codec)
Ian Lartey992bee42010-07-31 00:32:11 +0100426{
Axel Lindf3431b2011-10-17 20:16:37 +0800427 snd_soc_cache_sync(codec);
Ian Lartey992bee42010-07-31 00:32:11 +0100428 return 0;
429}
430#else
Ian Lartey992bee42010-07-31 00:32:11 +0100431#define wm8741_resume NULL
432#endif
433
Sergej Sawazkic354b542015-05-13 11:39:01 +0200434static int wm8741_configure(struct snd_soc_codec *codec)
435{
436 struct wm8741_priv *wm8741 = snd_soc_codec_get_drvdata(codec);
437
438 /* Configure differential mode */
439 switch (wm8741->pdata.diff_mode) {
440 case WM8741_DIFF_MODE_STEREO:
441 case WM8741_DIFF_MODE_STEREO_REVERSED:
442 case WM8741_DIFF_MODE_MONO_LEFT:
443 case WM8741_DIFF_MODE_MONO_RIGHT:
444 snd_soc_update_bits(codec, WM8741_MODE_CONTROL_2,
445 WM8741_DIFF_MASK,
446 wm8741->pdata.diff_mode << WM8741_DIFF_SHIFT);
447 break;
448 default:
449 return -EINVAL;
450 }
451
452 /* Change some default settings - latch VU */
453 snd_soc_update_bits(codec, WM8741_DACLLSB_ATTENUATION,
454 WM8741_UPDATELL, WM8741_UPDATELL);
455 snd_soc_update_bits(codec, WM8741_DACLMSB_ATTENUATION,
456 WM8741_UPDATELM, WM8741_UPDATELM);
457 snd_soc_update_bits(codec, WM8741_DACRLSB_ATTENUATION,
458 WM8741_UPDATERL, WM8741_UPDATERL);
459 snd_soc_update_bits(codec, WM8741_DACRMSB_ATTENUATION,
460 WM8741_UPDATERM, WM8741_UPDATERM);
461
462 return 0;
463}
464
465static int wm8741_add_controls(struct snd_soc_codec *codec)
466{
467 struct wm8741_priv *wm8741 = snd_soc_codec_get_drvdata(codec);
468
469 switch (wm8741->pdata.diff_mode) {
470 case WM8741_DIFF_MODE_STEREO:
471 case WM8741_DIFF_MODE_STEREO_REVERSED:
472 snd_soc_add_codec_controls(codec,
473 wm8741_snd_controls_stereo,
474 ARRAY_SIZE(wm8741_snd_controls_stereo));
475 break;
476 case WM8741_DIFF_MODE_MONO_LEFT:
477 snd_soc_add_codec_controls(codec,
478 wm8741_snd_controls_mono_left,
479 ARRAY_SIZE(wm8741_snd_controls_mono_left));
480 break;
481 case WM8741_DIFF_MODE_MONO_RIGHT:
482 snd_soc_add_codec_controls(codec,
483 wm8741_snd_controls_mono_right,
484 ARRAY_SIZE(wm8741_snd_controls_mono_right));
485 break;
486 default:
487 return -EINVAL;
488 }
489
490 return 0;
491}
492
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000493static int wm8741_probe(struct snd_soc_codec *codec)
Ian Lartey992bee42010-07-31 00:32:11 +0100494{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000495 struct wm8741_priv *wm8741 = snd_soc_codec_get_drvdata(codec);
Ian Lartey992bee42010-07-31 00:32:11 +0100496 int ret = 0;
Mark Brown398575d2011-08-03 17:16:11 +0900497
498 ret = regulator_bulk_enable(ARRAY_SIZE(wm8741->supplies),
499 wm8741->supplies);
500 if (ret != 0) {
501 dev_err(codec->dev, "Failed to enable supplies: %d\n", ret);
502 goto err_get;
503 }
Ian Lartey992bee42010-07-31 00:32:11 +0100504
Ian Lartey992bee42010-07-31 00:32:11 +0100505 ret = wm8741_reset(codec);
506 if (ret < 0) {
507 dev_err(codec->dev, "Failed to issue reset\n");
Mark Brown398575d2011-08-03 17:16:11 +0900508 goto err_enable;
Ian Lartey992bee42010-07-31 00:32:11 +0100509 }
510
Sergej Sawazkic354b542015-05-13 11:39:01 +0200511 ret = wm8741_configure(codec);
512 if (ret < 0) {
513 dev_err(codec->dev, "Failed to change default settings\n");
514 goto err_enable;
515 }
516
517 ret = wm8741_add_controls(codec);
518 if (ret < 0) {
519 dev_err(codec->dev, "Failed to add controls\n");
520 goto err_enable;
521 }
Ian Lartey992bee42010-07-31 00:32:11 +0100522
Ian Lartey992bee42010-07-31 00:32:11 +0100523 dev_dbg(codec->dev, "Successful registration\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000524 return ret;
Mark Brown398575d2011-08-03 17:16:11 +0900525
526err_enable:
527 regulator_bulk_disable(ARRAY_SIZE(wm8741->supplies), wm8741->supplies);
528err_get:
Mark Brown398575d2011-08-03 17:16:11 +0900529 return ret;
530}
531
532static int wm8741_remove(struct snd_soc_codec *codec)
533{
534 struct wm8741_priv *wm8741 = snd_soc_codec_get_drvdata(codec);
535
536 regulator_bulk_disable(ARRAY_SIZE(wm8741->supplies), wm8741->supplies);
Mark Brown398575d2011-08-03 17:16:11 +0900537
538 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000539}
540
541static struct snd_soc_codec_driver soc_codec_dev_wm8741 = {
542 .probe = wm8741_probe,
Mark Brown398575d2011-08-03 17:16:11 +0900543 .remove = wm8741_remove,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000544 .resume = wm8741_resume,
Mark Brown0e627802011-12-03 17:15:06 +0000545
Mark Brown0e627802011-12-03 17:15:06 +0000546 .dapm_widgets = wm8741_dapm_widgets,
547 .num_dapm_widgets = ARRAY_SIZE(wm8741_dapm_widgets),
548 .dapm_routes = wm8741_dapm_routes,
549 .num_dapm_routes = ARRAY_SIZE(wm8741_dapm_routes),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000550};
551
Mark Brown80080ec2011-08-03 17:31:26 +0900552static const struct of_device_id wm8741_of_match[] = {
553 { .compatible = "wlf,wm8741", },
554 { }
555};
556MODULE_DEVICE_TABLE(of, wm8741_of_match);
557
Mark Brownfe98c0c2012-09-10 18:00:21 +0800558static const struct regmap_config wm8741_regmap = {
559 .reg_bits = 7,
560 .val_bits = 9,
561 .max_register = WM8741_MAX_REGISTER,
562
563 .reg_defaults = wm8741_reg_defaults,
564 .num_reg_defaults = ARRAY_SIZE(wm8741_reg_defaults),
565 .cache_type = REGCACHE_RBTREE,
566
567 .readable_reg = wm8741_readable,
568};
569
Sergej Sawazkic354b542015-05-13 11:39:01 +0200570static int wm8741_set_pdata(struct device *dev, struct wm8741_priv *wm8741)
571{
572 const struct wm8741_platform_data *pdata = dev_get_platdata(dev);
573 u32 diff_mode;
574
575 if (dev->of_node) {
576 if (of_property_read_u32(dev->of_node, "diff-mode", &diff_mode)
577 >= 0)
578 wm8741->pdata.diff_mode = diff_mode;
579 } else {
580 if (pdata != NULL)
581 memcpy(&wm8741->pdata, pdata, sizeof(wm8741->pdata));
582 }
583
584 return 0;
585}
586
Fabio Estevam26090a82013-11-21 12:38:45 -0200587#if IS_ENABLED(CONFIG_I2C)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000588static int wm8741_i2c_probe(struct i2c_client *i2c,
589 const struct i2c_device_id *id)
590{
591 struct wm8741_priv *wm8741;
Mark Brownd9780552012-09-10 17:52:59 +0800592 int ret, i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000593
Mark Brown5aefb302011-12-03 17:17:05 +0000594 wm8741 = devm_kzalloc(&i2c->dev, sizeof(struct wm8741_priv),
595 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000596 if (wm8741 == NULL)
597 return -ENOMEM;
598
Mark Brownd9780552012-09-10 17:52:59 +0800599 for (i = 0; i < ARRAY_SIZE(wm8741->supplies); i++)
600 wm8741->supplies[i].supply = wm8741_supply_names[i];
601
602 ret = devm_regulator_bulk_get(&i2c->dev, ARRAY_SIZE(wm8741->supplies),
603 wm8741->supplies);
604 if (ret != 0) {
Mark Brownfe98c0c2012-09-10 18:00:21 +0800605 dev_err(&i2c->dev, "Failed to request supplies: %d\n", ret);
606 return ret;
607 }
608
Tushar Beherafd64c452012-11-22 09:38:37 +0530609 wm8741->regmap = devm_regmap_init_i2c(i2c, &wm8741_regmap);
Mark Brownfe98c0c2012-09-10 18:00:21 +0800610 if (IS_ERR(wm8741->regmap)) {
611 ret = PTR_ERR(wm8741->regmap);
612 dev_err(&i2c->dev, "Failed to init regmap: %d\n", ret);
613 return ret;
Mark Brownd9780552012-09-10 17:52:59 +0800614 }
615
Dan Carpenter2d52d172015-05-20 10:40:35 +0300616 ret = wm8741_set_pdata(&i2c->dev, wm8741);
Sergej Sawazkic354b542015-05-13 11:39:01 +0200617 if (ret != 0) {
618 dev_err(&i2c->dev, "Failed to set pdata: %d\n", ret);
619 return ret;
620 }
621
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000622 i2c_set_clientdata(i2c, wm8741);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000623
Mark Brown398575d2011-08-03 17:16:11 +0900624 ret = snd_soc_register_codec(&i2c->dev,
625 &soc_codec_dev_wm8741, &wm8741_dai, 1);
Mark Brown398575d2011-08-03 17:16:11 +0900626
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000627 return ret;
Ian Lartey992bee42010-07-31 00:32:11 +0100628}
629
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000630static int wm8741_i2c_remove(struct i2c_client *client)
Ian Lartey992bee42010-07-31 00:32:11 +0100631{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000632 snd_soc_unregister_codec(&client->dev);
Ian Lartey992bee42010-07-31 00:32:11 +0100633 return 0;
634}
635
636static const struct i2c_device_id wm8741_i2c_id[] = {
637 { "wm8741", 0 },
638 { }
639};
640MODULE_DEVICE_TABLE(i2c, wm8741_i2c_id);
641
Ian Lartey992bee42010-07-31 00:32:11 +0100642static struct i2c_driver wm8741_i2c_driver = {
643 .driver = {
Mark Brown0473e612011-08-03 16:52:10 +0900644 .name = "wm8741",
Ian Lartey992bee42010-07-31 00:32:11 +0100645 .owner = THIS_MODULE,
Mark Brown80080ec2011-08-03 17:31:26 +0900646 .of_match_table = wm8741_of_match,
Ian Lartey992bee42010-07-31 00:32:11 +0100647 },
648 .probe = wm8741_i2c_probe,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000649 .remove = wm8741_i2c_remove,
Ian Lartey992bee42010-07-31 00:32:11 +0100650 .id_table = wm8741_i2c_id,
651};
652#endif
653
Mark Brown39e9b8d2011-08-03 17:30:57 +0900654#if defined(CONFIG_SPI_MASTER)
Bill Pemberton7a79e942012-12-07 09:26:37 -0500655static int wm8741_spi_probe(struct spi_device *spi)
Mark Brown39e9b8d2011-08-03 17:30:57 +0900656{
657 struct wm8741_priv *wm8741;
Mark Brownd9780552012-09-10 17:52:59 +0800658 int ret, i;
Mark Brown39e9b8d2011-08-03 17:30:57 +0900659
Mark Brown5aefb302011-12-03 17:17:05 +0000660 wm8741 = devm_kzalloc(&spi->dev, sizeof(struct wm8741_priv),
661 GFP_KERNEL);
Mark Brown39e9b8d2011-08-03 17:30:57 +0900662 if (wm8741 == NULL)
663 return -ENOMEM;
664
Mark Brownd9780552012-09-10 17:52:59 +0800665 for (i = 0; i < ARRAY_SIZE(wm8741->supplies); i++)
666 wm8741->supplies[i].supply = wm8741_supply_names[i];
667
Mark Brownfe98c0c2012-09-10 18:00:21 +0800668 ret = devm_regulator_bulk_get(&spi->dev, ARRAY_SIZE(wm8741->supplies),
Mark Brownd9780552012-09-10 17:52:59 +0800669 wm8741->supplies);
670 if (ret != 0) {
671 dev_err(&spi->dev, "Failed to request supplies: %d\n", ret);
Mark Brownfe98c0c2012-09-10 18:00:21 +0800672 return ret;
Mark Brownd9780552012-09-10 17:52:59 +0800673 }
674
Tushar Beherafd64c452012-11-22 09:38:37 +0530675 wm8741->regmap = devm_regmap_init_spi(spi, &wm8741_regmap);
Mark Brownfe98c0c2012-09-10 18:00:21 +0800676 if (IS_ERR(wm8741->regmap)) {
677 ret = PTR_ERR(wm8741->regmap);
678 dev_err(&spi->dev, "Failed to init regmap: %d\n", ret);
679 return ret;
680 }
681
Dan Carpenter2d52d172015-05-20 10:40:35 +0300682 ret = wm8741_set_pdata(&spi->dev, wm8741);
Sergej Sawazkic354b542015-05-13 11:39:01 +0200683 if (ret != 0) {
684 dev_err(&spi->dev, "Failed to set pdata: %d\n", ret);
685 return ret;
686 }
687
Mark Brown39e9b8d2011-08-03 17:30:57 +0900688 spi_set_drvdata(spi, wm8741);
689
690 ret = snd_soc_register_codec(&spi->dev,
691 &soc_codec_dev_wm8741, &wm8741_dai, 1);
Mark Brown39e9b8d2011-08-03 17:30:57 +0900692 return ret;
693}
694
Bill Pemberton7a79e942012-12-07 09:26:37 -0500695static int wm8741_spi_remove(struct spi_device *spi)
Mark Brown39e9b8d2011-08-03 17:30:57 +0900696{
697 snd_soc_unregister_codec(&spi->dev);
Mark Brown39e9b8d2011-08-03 17:30:57 +0900698 return 0;
699}
700
701static struct spi_driver wm8741_spi_driver = {
702 .driver = {
703 .name = "wm8741",
704 .owner = THIS_MODULE,
Mark Brown80080ec2011-08-03 17:31:26 +0900705 .of_match_table = wm8741_of_match,
Mark Brown39e9b8d2011-08-03 17:30:57 +0900706 },
707 .probe = wm8741_spi_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500708 .remove = wm8741_spi_remove,
Mark Brown39e9b8d2011-08-03 17:30:57 +0900709};
710#endif /* CONFIG_SPI_MASTER */
711
Ian Lartey992bee42010-07-31 00:32:11 +0100712static int __init wm8741_modinit(void)
713{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000714 int ret = 0;
715
Fabio Estevam26090a82013-11-21 12:38:45 -0200716#if IS_ENABLED(CONFIG_I2C)
Ian Lartey992bee42010-07-31 00:32:11 +0100717 ret = i2c_add_driver(&wm8741_i2c_driver);
Ian Lartey3fe4a5e2010-08-27 15:26:27 +0100718 if (ret != 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000719 pr_err("Failed to register WM8741 I2C driver: %d\n", ret);
Ian Lartey992bee42010-07-31 00:32:11 +0100720#endif
Mark Brown39e9b8d2011-08-03 17:30:57 +0900721#if defined(CONFIG_SPI_MASTER)
722 ret = spi_register_driver(&wm8741_spi_driver);
723 if (ret != 0) {
724 printk(KERN_ERR "Failed to register wm8741 SPI driver: %d\n",
725 ret);
726 }
727#endif
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000728
729 return ret;
Ian Lartey992bee42010-07-31 00:32:11 +0100730}
731module_init(wm8741_modinit);
732
733static void __exit wm8741_exit(void)
734{
Mark Brown39e9b8d2011-08-03 17:30:57 +0900735#if defined(CONFIG_SPI_MASTER)
736 spi_unregister_driver(&wm8741_spi_driver);
737#endif
Fabio Estevam26090a82013-11-21 12:38:45 -0200738#if IS_ENABLED(CONFIG_I2C)
Ian Lartey992bee42010-07-31 00:32:11 +0100739 i2c_del_driver(&wm8741_i2c_driver);
740#endif
741}
742module_exit(wm8741_exit);
743
744MODULE_DESCRIPTION("ASoC WM8741 driver");
745MODULE_AUTHOR("Ian Lartey <ian@opensource.wolfsonmicro.com>");
746MODULE_LICENSE("GPL");