blob: cc168c4a4be02227741930e14c171455832d9659 [file] [log] [blame]
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +01001/*
2 * wm8804.c -- WM8804 S/PDIF transceiver driver
3 *
Mark Brown656baae2012-05-23 12:39:07 +01004 * Copyright 2010-11 Wolfson Microelectronics plc
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +01005 *
6 * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/init.h>
Charles Keepax7e5ee1c2015-04-07 11:34:50 +010016#include <linux/gpio/consumer.h>
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010017#include <linux/delay.h>
18#include <linux/pm.h>
Mark Brownd2dd0542011-08-29 14:23:05 +010019#include <linux/of_device.h>
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010020#include <linux/regulator/consumer.h>
21#include <linux/slab.h>
22#include <sound/core.h>
23#include <sound/pcm.h>
24#include <sound/pcm_params.h>
25#include <sound/soc.h>
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010026#include <sound/initval.h>
27#include <sound/tlv.h>
28
29#include "wm8804.h"
30
31#define WM8804_NUM_SUPPLIES 2
32static const char *wm8804_supply_names[WM8804_NUM_SUPPLIES] = {
33 "PVDD",
34 "DVDD"
35};
36
Mark Brown891271c2011-12-29 19:58:06 +000037static const struct reg_default wm8804_reg_defaults[] = {
38 { 3, 0x21 }, /* R3 - PLL1 */
39 { 4, 0xFD }, /* R4 - PLL2 */
40 { 5, 0x36 }, /* R5 - PLL3 */
41 { 6, 0x07 }, /* R6 - PLL4 */
42 { 7, 0x16 }, /* R7 - PLL5 */
43 { 8, 0x18 }, /* R8 - PLL6 */
44 { 9, 0xFF }, /* R9 - SPDMODE */
45 { 10, 0x00 }, /* R10 - INTMASK */
46 { 18, 0x00 }, /* R18 - SPDTX1 */
47 { 19, 0x00 }, /* R19 - SPDTX2 */
48 { 20, 0x00 }, /* R20 - SPDTX3 */
49 { 21, 0x71 }, /* R21 - SPDTX4 */
50 { 22, 0x0B }, /* R22 - SPDTX5 */
51 { 23, 0x70 }, /* R23 - GPO0 */
52 { 24, 0x57 }, /* R24 - GPO1 */
53 { 26, 0x42 }, /* R26 - GPO2 */
54 { 27, 0x06 }, /* R27 - AIFTX */
55 { 28, 0x06 }, /* R28 - AIFRX */
56 { 29, 0x80 }, /* R29 - SPDRX1 */
57 { 30, 0x07 }, /* R30 - PWRDN */
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010058};
59
60struct wm8804_priv {
Mark Brown891271c2011-12-29 19:58:06 +000061 struct regmap *regmap;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010062 struct regulator_bulk_data supplies[WM8804_NUM_SUPPLIES];
63 struct notifier_block disable_nb[WM8804_NUM_SUPPLIES];
Daniel Matuschek06109f42014-05-29 15:08:03 +010064 int mclk_div;
Charles Keepax7e5ee1c2015-04-07 11:34:50 +010065
66 struct gpio_desc *reset;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010067};
68
69static int txsrc_get(struct snd_kcontrol *kcontrol,
70 struct snd_ctl_elem_value *ucontrol);
71
72static int txsrc_put(struct snd_kcontrol *kcontrol,
73 struct snd_ctl_elem_value *ucontrol);
74
75/*
76 * We can't use the same notifier block for more than one supply and
77 * there's no way I can see to get from a callback to the caller
78 * except container_of().
79 */
80#define WM8804_REGULATOR_EVENT(n) \
81static int wm8804_regulator_event_##n(struct notifier_block *nb, \
82 unsigned long event, void *data) \
83{ \
84 struct wm8804_priv *wm8804 = container_of(nb, struct wm8804_priv, \
85 disable_nb[n]); \
86 if (event & REGULATOR_EVENT_DISABLE) { \
Mark Brown891271c2011-12-29 19:58:06 +000087 regcache_mark_dirty(wm8804->regmap); \
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010088 } \
89 return 0; \
90}
91
92WM8804_REGULATOR_EVENT(0)
93WM8804_REGULATOR_EVENT(1)
94
95static const char *txsrc_text[] = { "S/PDIF RX", "AIF" };
Takashi Iwaida9f39f2014-02-18 09:44:00 +010096static SOC_ENUM_SINGLE_EXT_DECL(txsrc, txsrc_text);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010097
98static const struct snd_kcontrol_new wm8804_snd_controls[] = {
99 SOC_ENUM_EXT("Input Source", txsrc, txsrc_get, txsrc_put),
100 SOC_SINGLE("TX Playback Switch", WM8804_PWRDN, 2, 1, 1),
101 SOC_SINGLE("AIF Playback Switch", WM8804_PWRDN, 4, 1, 1)
102};
103
104static int txsrc_get(struct snd_kcontrol *kcontrol,
105 struct snd_ctl_elem_value *ucontrol)
106{
107 struct snd_soc_codec *codec;
108 unsigned int src;
109
Lars-Peter Clausenea53bf72014-03-18 09:02:04 +0100110 codec = snd_soc_kcontrol_codec(kcontrol);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100111 src = snd_soc_read(codec, WM8804_SPDTX4);
112 if (src & 0x40)
113 ucontrol->value.integer.value[0] = 1;
114 else
115 ucontrol->value.integer.value[0] = 0;
116
117 return 0;
118}
119
120static int txsrc_put(struct snd_kcontrol *kcontrol,
121 struct snd_ctl_elem_value *ucontrol)
122{
123 struct snd_soc_codec *codec;
124 unsigned int src, txpwr;
125
Lars-Peter Clausenea53bf72014-03-18 09:02:04 +0100126 codec = snd_soc_kcontrol_codec(kcontrol);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100127
128 if (ucontrol->value.integer.value[0] != 0
129 && ucontrol->value.integer.value[0] != 1)
130 return -EINVAL;
131
132 src = snd_soc_read(codec, WM8804_SPDTX4);
133 switch ((src & 0x40) >> 6) {
134 case 0:
135 if (!ucontrol->value.integer.value[0])
136 return 0;
137 break;
138 case 1:
139 if (ucontrol->value.integer.value[1])
140 return 0;
141 break;
142 }
143
144 /* save the current power state of the transmitter */
145 txpwr = snd_soc_read(codec, WM8804_PWRDN) & 0x4;
146 /* power down the transmitter */
147 snd_soc_update_bits(codec, WM8804_PWRDN, 0x4, 0x4);
148 /* set the tx source */
149 snd_soc_update_bits(codec, WM8804_SPDTX4, 0x40,
150 ucontrol->value.integer.value[0] << 6);
151
152 if (ucontrol->value.integer.value[0]) {
153 /* power down the receiver */
154 snd_soc_update_bits(codec, WM8804_PWRDN, 0x2, 0x2);
155 /* power up the AIF */
156 snd_soc_update_bits(codec, WM8804_PWRDN, 0x10, 0);
157 } else {
158 /* don't power down the AIF -- may be used as an output */
159 /* power up the receiver */
160 snd_soc_update_bits(codec, WM8804_PWRDN, 0x2, 0);
161 }
162
163 /* restore the transmitter's configuration */
164 snd_soc_update_bits(codec, WM8804_PWRDN, 0x4, txpwr);
165
166 return 0;
167}
168
Mark Brown891271c2011-12-29 19:58:06 +0000169static bool wm8804_volatile(struct device *dev, unsigned int reg)
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100170{
171 switch (reg) {
172 case WM8804_RST_DEVID1:
173 case WM8804_DEVID2:
174 case WM8804_DEVREV:
175 case WM8804_INTSTAT:
176 case WM8804_SPDSTAT:
177 case WM8804_RXCHAN1:
178 case WM8804_RXCHAN2:
179 case WM8804_RXCHAN3:
180 case WM8804_RXCHAN4:
181 case WM8804_RXCHAN5:
Mark Brown891271c2011-12-29 19:58:06 +0000182 return true;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100183 default:
Mark Brown891271c2011-12-29 19:58:06 +0000184 return false;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100185 }
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100186}
187
Charles Keepax7e5ee1c2015-04-07 11:34:50 +0100188static int wm8804_soft_reset(struct wm8804_priv *wm8804)
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100189{
Charles Keepax6f2c9342015-02-22 16:43:22 +0000190 return regmap_write(wm8804->regmap, WM8804_RST_DEVID1, 0x0);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100191}
192
193static int wm8804_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
194{
195 struct snd_soc_codec *codec;
196 u16 format, master, bcp, lrp;
197
198 codec = dai->codec;
199
200 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
201 case SND_SOC_DAIFMT_I2S:
202 format = 0x2;
203 break;
204 case SND_SOC_DAIFMT_RIGHT_J:
205 format = 0x0;
206 break;
207 case SND_SOC_DAIFMT_LEFT_J:
208 format = 0x1;
209 break;
210 case SND_SOC_DAIFMT_DSP_A:
211 case SND_SOC_DAIFMT_DSP_B:
212 format = 0x3;
213 break;
214 default:
215 dev_err(dai->dev, "Unknown dai format\n");
216 return -EINVAL;
217 }
218
219 /* set data format */
220 snd_soc_update_bits(codec, WM8804_AIFTX, 0x3, format);
221 snd_soc_update_bits(codec, WM8804_AIFRX, 0x3, format);
222
223 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
224 case SND_SOC_DAIFMT_CBM_CFM:
225 master = 1;
226 break;
227 case SND_SOC_DAIFMT_CBS_CFS:
228 master = 0;
229 break;
230 default:
231 dev_err(dai->dev, "Unknown master/slave configuration\n");
232 return -EINVAL;
233 }
234
235 /* set master/slave mode */
236 snd_soc_update_bits(codec, WM8804_AIFRX, 0x40, master << 6);
237
238 bcp = lrp = 0;
239 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
240 case SND_SOC_DAIFMT_NB_NF:
241 break;
242 case SND_SOC_DAIFMT_IB_IF:
243 bcp = lrp = 1;
244 break;
245 case SND_SOC_DAIFMT_IB_NF:
246 bcp = 1;
247 break;
248 case SND_SOC_DAIFMT_NB_IF:
249 lrp = 1;
250 break;
251 default:
252 dev_err(dai->dev, "Unknown polarity configuration\n");
253 return -EINVAL;
254 }
255
256 /* set frame inversion */
257 snd_soc_update_bits(codec, WM8804_AIFTX, 0x10 | 0x20,
258 (bcp << 4) | (lrp << 5));
259 snd_soc_update_bits(codec, WM8804_AIFRX, 0x10 | 0x20,
260 (bcp << 4) | (lrp << 5));
261 return 0;
262}
263
264static int wm8804_hw_params(struct snd_pcm_substream *substream,
265 struct snd_pcm_hw_params *params,
266 struct snd_soc_dai *dai)
267{
268 struct snd_soc_codec *codec;
269 u16 blen;
270
271 codec = dai->codec;
272
Mark Brown16cfd482014-07-31 12:52:37 +0100273 switch (params_width(params)) {
274 case 16:
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100275 blen = 0x0;
276 break;
Mark Brown16cfd482014-07-31 12:52:37 +0100277 case 20:
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100278 blen = 0x1;
279 break;
Mark Brown16cfd482014-07-31 12:52:37 +0100280 case 24:
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100281 blen = 0x2;
282 break;
283 default:
284 dev_err(dai->dev, "Unsupported word length: %u\n",
Mark Brown16cfd482014-07-31 12:52:37 +0100285 params_width(params));
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100286 return -EINVAL;
287 }
288
289 /* set word length */
290 snd_soc_update_bits(codec, WM8804_AIFTX, 0xc, blen << 2);
291 snd_soc_update_bits(codec, WM8804_AIFRX, 0xc, blen << 2);
292
293 return 0;
294}
295
296struct pll_div {
297 u32 prescale:1;
298 u32 mclkdiv:1;
299 u32 freqmode:2;
300 u32 n:4;
301 u32 k:22;
302};
303
304/* PLL rate to output rate divisions */
305static struct {
306 unsigned int div;
307 unsigned int freqmode;
308 unsigned int mclkdiv;
309} post_table[] = {
310 { 2, 0, 0 },
311 { 4, 0, 1 },
312 { 4, 1, 0 },
313 { 8, 1, 1 },
314 { 8, 2, 0 },
315 { 16, 2, 1 },
316 { 12, 3, 0 },
317 { 24, 3, 1 }
318};
319
320#define FIXED_PLL_SIZE ((1ULL << 22) * 10)
321static int pll_factors(struct pll_div *pll_div, unsigned int target,
Daniel Matuschek06109f42014-05-29 15:08:03 +0100322 unsigned int source, unsigned int mclk_div)
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100323{
324 u64 Kpart;
325 unsigned long int K, Ndiv, Nmod, tmp;
326 int i;
327
328 /*
329 * Scale the output frequency up; the PLL should run in the
330 * region of 90-100MHz.
331 */
332 for (i = 0; i < ARRAY_SIZE(post_table); i++) {
333 tmp = target * post_table[i].div;
Daniel Matuschek06109f42014-05-29 15:08:03 +0100334 if ((tmp >= 90000000 && tmp <= 100000000) &&
335 (mclk_div == post_table[i].mclkdiv)) {
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100336 pll_div->freqmode = post_table[i].freqmode;
337 pll_div->mclkdiv = post_table[i].mclkdiv;
338 target *= post_table[i].div;
339 break;
340 }
341 }
342
343 if (i == ARRAY_SIZE(post_table)) {
344 pr_err("%s: Unable to scale output frequency: %uHz\n",
345 __func__, target);
346 return -EINVAL;
347 }
348
349 pll_div->prescale = 0;
350 Ndiv = target / source;
351 if (Ndiv < 5) {
352 source >>= 1;
353 pll_div->prescale = 1;
354 Ndiv = target / source;
355 }
356
357 if (Ndiv < 5 || Ndiv > 13) {
358 pr_err("%s: WM8804 N value is not within the recommended range: %lu\n",
359 __func__, Ndiv);
360 return -EINVAL;
361 }
362 pll_div->n = Ndiv;
363
364 Nmod = target % source;
365 Kpart = FIXED_PLL_SIZE * (u64)Nmod;
366
367 do_div(Kpart, source);
368
369 K = Kpart & 0xffffffff;
370 if ((K % 10) >= 5)
371 K += 5;
372 K /= 10;
373 pll_div->k = K;
374
375 return 0;
376}
377
378static int wm8804_set_pll(struct snd_soc_dai *dai, int pll_id,
379 int source, unsigned int freq_in,
380 unsigned int freq_out)
381{
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100382 struct snd_soc_codec *codec;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100383
384 codec = dai->codec;
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100385 if (!freq_in || !freq_out) {
386 /* disable the PLL */
Dimitris Papastamos6c20c802010-10-04 09:37:48 +0100387 snd_soc_update_bits(codec, WM8804_PWRDN, 0x1, 0x1);
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100388 return 0;
389 } else {
390 int ret;
391 struct pll_div pll_div;
Daniel Matuschek06109f42014-05-29 15:08:03 +0100392 struct wm8804_priv *wm8804;
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100393
Daniel Matuschek06109f42014-05-29 15:08:03 +0100394 wm8804 = snd_soc_codec_get_drvdata(codec);
395
396 ret = pll_factors(&pll_div, freq_out, freq_in,
397 wm8804->mclk_div);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100398 if (ret)
399 return ret;
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100400
401 /* power down the PLL before reprogramming it */
Dimitris Papastamos6c20c802010-10-04 09:37:48 +0100402 snd_soc_update_bits(codec, WM8804_PWRDN, 0x1, 0x1);
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100403
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100404 /* set PLLN and PRESCALE */
405 snd_soc_update_bits(codec, WM8804_PLL4, 0xf | 0x10,
406 pll_div.n | (pll_div.prescale << 4));
407 /* set mclkdiv and freqmode */
408 snd_soc_update_bits(codec, WM8804_PLL5, 0x3 | 0x8,
409 pll_div.freqmode | (pll_div.mclkdiv << 3));
410 /* set PLLK */
411 snd_soc_write(codec, WM8804_PLL1, pll_div.k & 0xff);
412 snd_soc_write(codec, WM8804_PLL2, (pll_div.k >> 8) & 0xff);
413 snd_soc_write(codec, WM8804_PLL3, pll_div.k >> 16);
414
415 /* power up the PLL */
Dimitris Papastamos6c20c802010-10-04 09:37:48 +0100416 snd_soc_update_bits(codec, WM8804_PWRDN, 0x1, 0);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100417 }
418
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100419 return 0;
420}
421
422static int wm8804_set_sysclk(struct snd_soc_dai *dai,
423 int clk_id, unsigned int freq, int dir)
424{
425 struct snd_soc_codec *codec;
426
427 codec = dai->codec;
428
429 switch (clk_id) {
430 case WM8804_TX_CLKSRC_MCLK:
431 if ((freq >= 10000000 && freq <= 14400000)
432 || (freq >= 16280000 && freq <= 27000000))
433 snd_soc_update_bits(codec, WM8804_PLL6, 0x80, 0x80);
434 else {
435 dev_err(dai->dev, "OSCCLOCK is not within the "
436 "recommended range: %uHz\n", freq);
437 return -EINVAL;
438 }
439 break;
440 case WM8804_TX_CLKSRC_PLL:
441 snd_soc_update_bits(codec, WM8804_PLL6, 0x80, 0);
442 break;
443 case WM8804_CLKOUT_SRC_CLK1:
444 snd_soc_update_bits(codec, WM8804_PLL6, 0x8, 0);
445 break;
446 case WM8804_CLKOUT_SRC_OSCCLK:
447 snd_soc_update_bits(codec, WM8804_PLL6, 0x8, 0x8);
448 break;
449 default:
450 dev_err(dai->dev, "Unknown clock source: %d\n", clk_id);
451 return -EINVAL;
452 }
453
454 return 0;
455}
456
457static int wm8804_set_clkdiv(struct snd_soc_dai *dai,
458 int div_id, int div)
459{
460 struct snd_soc_codec *codec;
Daniel Matuschek06109f42014-05-29 15:08:03 +0100461 struct wm8804_priv *wm8804;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100462
463 codec = dai->codec;
464 switch (div_id) {
465 case WM8804_CLKOUT_DIV:
466 snd_soc_update_bits(codec, WM8804_PLL5, 0x30,
467 (div & 0x3) << 4);
468 break;
Daniel Matuschek06109f42014-05-29 15:08:03 +0100469 case WM8804_MCLK_DIV:
470 wm8804 = snd_soc_codec_get_drvdata(codec);
471 wm8804->mclk_div = div;
472 break;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100473 default:
474 dev_err(dai->dev, "Unknown clock divider: %d\n", div_id);
475 return -EINVAL;
476 }
477 return 0;
478}
479
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100480static int wm8804_set_bias_level(struct snd_soc_codec *codec,
481 enum snd_soc_bias_level level)
482{
483 int ret;
484 struct wm8804_priv *wm8804;
485
486 wm8804 = snd_soc_codec_get_drvdata(codec);
487 switch (level) {
488 case SND_SOC_BIAS_ON:
489 break;
490 case SND_SOC_BIAS_PREPARE:
491 /* power up the OSC and the PLL */
492 snd_soc_update_bits(codec, WM8804_PWRDN, 0x9, 0);
493 break;
494 case SND_SOC_BIAS_STANDBY:
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200495 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100496 ret = regulator_bulk_enable(ARRAY_SIZE(wm8804->supplies),
497 wm8804->supplies);
498 if (ret) {
499 dev_err(codec->dev,
500 "Failed to enable supplies: %d\n",
501 ret);
502 return ret;
503 }
Mark Brown891271c2011-12-29 19:58:06 +0000504 regcache_sync(wm8804->regmap);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100505 }
506 /* power down the OSC and the PLL */
507 snd_soc_update_bits(codec, WM8804_PWRDN, 0x9, 0x9);
508 break;
509 case SND_SOC_BIAS_OFF:
510 /* power down the OSC and the PLL */
511 snd_soc_update_bits(codec, WM8804_PWRDN, 0x9, 0x9);
512 regulator_bulk_disable(ARRAY_SIZE(wm8804->supplies),
513 wm8804->supplies);
514 break;
515 }
516
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200517 codec->dapm.bias_level = level;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100518 return 0;
519}
520
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100521static const struct snd_soc_dai_ops wm8804_dai_ops = {
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100522 .hw_params = wm8804_hw_params,
523 .set_fmt = wm8804_set_fmt,
524 .set_sysclk = wm8804_set_sysclk,
525 .set_clkdiv = wm8804_set_clkdiv,
526 .set_pll = wm8804_set_pll
527};
528
529#define WM8804_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
530 SNDRV_PCM_FMTBIT_S24_LE)
531
Mark Brown3115ae12011-06-08 18:07:49 +0100532#define WM8804_RATES (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
533 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_64000 | \
534 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | \
535 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000)
536
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100537static struct snd_soc_dai_driver wm8804_dai = {
Dimitris Papastamoscb13c6b2010-10-01 09:12:14 +0100538 .name = "wm8804-spdif",
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100539 .playback = {
540 .stream_name = "Playback",
541 .channels_min = 2,
542 .channels_max = 2,
Mark Brown3115ae12011-06-08 18:07:49 +0100543 .rates = WM8804_RATES,
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100544 .formats = WM8804_FORMATS,
545 },
546 .capture = {
547 .stream_name = "Capture",
548 .channels_min = 2,
549 .channels_max = 2,
Mark Brown3115ae12011-06-08 18:07:49 +0100550 .rates = WM8804_RATES,
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100551 .formats = WM8804_FORMATS,
552 },
553 .ops = &wm8804_dai_ops,
554 .symmetric_rates = 1
555};
556
Krzysztof Kozlowskic0b36382015-01-05 10:18:26 +0100557static const struct snd_soc_codec_driver soc_codec_dev_wm8804 = {
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100558 .set_bias_level = wm8804_set_bias_level,
Axel Lineb3032f2012-01-27 18:02:09 +0800559 .idle_bias_off = true,
Mark Brown5a374522011-12-08 16:52:19 +0800560
561 .controls = wm8804_snd_controls,
562 .num_controls = ARRAY_SIZE(wm8804_snd_controls),
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100563};
564
Charles Keepaxbbed2972015-02-22 16:43:21 +0000565const struct regmap_config wm8804_regmap_config = {
Mark Brown891271c2011-12-29 19:58:06 +0000566 .reg_bits = 8,
567 .val_bits = 8,
568
569 .max_register = WM8804_MAX_REGISTER,
570 .volatile_reg = wm8804_volatile,
571
572 .cache_type = REGCACHE_RBTREE,
573 .reg_defaults = wm8804_reg_defaults,
574 .num_reg_defaults = ARRAY_SIZE(wm8804_reg_defaults),
575};
Charles Keepaxbbed2972015-02-22 16:43:21 +0000576EXPORT_SYMBOL_GPL(wm8804_regmap_config);
Mark Brown891271c2011-12-29 19:58:06 +0000577
Charles Keepaxbbed2972015-02-22 16:43:21 +0000578int wm8804_probe(struct device *dev, struct regmap *regmap)
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100579{
580 struct wm8804_priv *wm8804;
Charles Keepax6f2c9342015-02-22 16:43:22 +0000581 unsigned int id1, id2;
582 int i, ret;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100583
Charles Keepaxbbed2972015-02-22 16:43:21 +0000584 wm8804 = devm_kzalloc(dev, sizeof(*wm8804), GFP_KERNEL);
Dan Carpenterfe3e2e72010-10-09 21:31:31 +0200585 if (!wm8804)
586 return -ENOMEM;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100587
Charles Keepaxbbed2972015-02-22 16:43:21 +0000588 dev_set_drvdata(dev, wm8804);
Mark Brown891271c2011-12-29 19:58:06 +0000589
Charles Keepaxbbed2972015-02-22 16:43:21 +0000590 wm8804->regmap = regmap;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100591
Charles Keepax7e5ee1c2015-04-07 11:34:50 +0100592 wm8804->reset = devm_gpiod_get_optional(dev, "wlf,reset",
593 GPIOD_OUT_LOW);
594 if (IS_ERR(wm8804->reset)) {
595 ret = PTR_ERR(wm8804->reset);
596 dev_err(dev, "Failed to get reset line: %d\n", ret);
597 return ret;
598 }
599
Charles Keepax6f2c9342015-02-22 16:43:22 +0000600 for (i = 0; i < ARRAY_SIZE(wm8804->supplies); i++)
601 wm8804->supplies[i].supply = wm8804_supply_names[i];
602
603 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(wm8804->supplies),
604 wm8804->supplies);
605 if (ret) {
606 dev_err(dev, "Failed to request supplies: %d\n", ret);
607 return ret;
608 }
609
610 wm8804->disable_nb[0].notifier_call = wm8804_regulator_event_0;
611 wm8804->disable_nb[1].notifier_call = wm8804_regulator_event_1;
612
613 /* This should really be moved into the regulator core */
614 for (i = 0; i < ARRAY_SIZE(wm8804->supplies); i++) {
Charles Keepax0be96532015-03-05 15:39:21 +0000615 struct regulator *regulator = wm8804->supplies[i].consumer;
616
617 ret = devm_regulator_register_notifier(regulator,
618 &wm8804->disable_nb[i]);
Charles Keepax6f2c9342015-02-22 16:43:22 +0000619 if (ret != 0) {
620 dev_err(dev,
621 "Failed to register regulator notifier: %d\n",
622 ret);
Charles Keepaxfcf638f2015-03-05 15:39:22 +0000623 return ret;
Charles Keepax6f2c9342015-02-22 16:43:22 +0000624 }
625 }
626
627 ret = regulator_bulk_enable(ARRAY_SIZE(wm8804->supplies),
628 wm8804->supplies);
629 if (ret) {
630 dev_err(dev, "Failed to enable supplies: %d\n", ret);
Charles Keepaxfcf638f2015-03-05 15:39:22 +0000631 return ret;
Charles Keepax6f2c9342015-02-22 16:43:22 +0000632 }
633
Charles Keepax7e5ee1c2015-04-07 11:34:50 +0100634 if (wm8804->reset)
635 gpiod_set_value_cansleep(wm8804->reset, 1);
636
Charles Keepax6f2c9342015-02-22 16:43:22 +0000637 ret = regmap_read(regmap, WM8804_RST_DEVID1, &id1);
638 if (ret < 0) {
639 dev_err(dev, "Failed to read device ID: %d\n", ret);
640 goto err_reg_enable;
641 }
642
643 ret = regmap_read(regmap, WM8804_DEVID2, &id2);
644 if (ret < 0) {
645 dev_err(dev, "Failed to read device ID: %d\n", ret);
646 goto err_reg_enable;
647 }
648
649 id2 = (id2 << 8) | id1;
650
651 if (id2 != 0x8805) {
652 dev_err(dev, "Invalid device ID: %#x\n", id2);
653 ret = -EINVAL;
654 goto err_reg_enable;
655 }
656
657 ret = regmap_read(regmap, WM8804_DEVREV, &id1);
658 if (ret < 0) {
659 dev_err(dev, "Failed to read device revision: %d\n",
660 ret);
661 goto err_reg_enable;
662 }
663 dev_info(dev, "revision %c\n", id1 + 'A');
664
Charles Keepax7e5ee1c2015-04-07 11:34:50 +0100665 if (!wm8804->reset) {
666 ret = wm8804_soft_reset(wm8804);
667 if (ret < 0) {
668 dev_err(dev, "Failed to issue reset: %d\n", ret);
669 goto err_reg_enable;
670 }
Charles Keepax6f2c9342015-02-22 16:43:22 +0000671 }
672
Charles Keepaxfcf638f2015-03-05 15:39:22 +0000673 ret = snd_soc_register_codec(dev, &soc_codec_dev_wm8804,
674 &wm8804_dai, 1);
675 if (ret < 0) {
676 dev_err(dev, "Failed to register CODEC: %d\n", ret);
677 goto err_reg_enable;
678 }
679
680 return 0;
Charles Keepax6f2c9342015-02-22 16:43:22 +0000681
682err_reg_enable:
683 regulator_bulk_disable(ARRAY_SIZE(wm8804->supplies), wm8804->supplies);
684 return ret;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100685}
Charles Keepaxbbed2972015-02-22 16:43:21 +0000686EXPORT_SYMBOL_GPL(wm8804_probe);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100687
Charles Keepaxbbed2972015-02-22 16:43:21 +0000688void wm8804_remove(struct device *dev)
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100689{
Charles Keepaxbbed2972015-02-22 16:43:21 +0000690 snd_soc_unregister_codec(dev);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100691}
Charles Keepaxbbed2972015-02-22 16:43:21 +0000692EXPORT_SYMBOL_GPL(wm8804_remove);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100693
694MODULE_DESCRIPTION("ASoC WM8804 driver");
695MODULE_AUTHOR("Dimitris Papastamos <dp@opensource.wolfsonmicro.com>");
696MODULE_LICENSE("GPL");