blob: 4d79cefe85db7e3b3781208bad8bf36e5b82f5a9 [file] [log] [blame]
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +01001/*
2 * wm8804.c -- WM8804 S/PDIF transceiver driver
3 *
4 * Copyright 2010 Wolfson Microelectronics plc
5 *
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>
16#include <linux/delay.h>
17#include <linux/pm.h>
18#include <linux/i2c.h>
Mark Brownd2dd0542011-08-29 14:23:05 +010019#include <linux/of_device.h>
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010020#include <linux/spi/spi.h>
21#include <linux/regulator/consumer.h>
22#include <linux/slab.h>
23#include <sound/core.h>
24#include <sound/pcm.h>
25#include <sound/pcm_params.h>
26#include <sound/soc.h>
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +010027#include <sound/initval.h>
28#include <sound/tlv.h>
29
30#include "wm8804.h"
31
32#define WM8804_NUM_SUPPLIES 2
33static const char *wm8804_supply_names[WM8804_NUM_SUPPLIES] = {
34 "PVDD",
35 "DVDD"
36};
37
38static const u8 wm8804_reg_defs[] = {
39 0x05, /* R0 - RST/DEVID1 */
40 0x88, /* R1 - DEVID2 */
41 0x04, /* R2 - DEVREV */
42 0x21, /* R3 - PLL1 */
43 0xFD, /* R4 - PLL2 */
44 0x36, /* R5 - PLL3 */
45 0x07, /* R6 - PLL4 */
46 0x16, /* R7 - PLL5 */
47 0x18, /* R8 - PLL6 */
48 0xFF, /* R9 - SPDMODE */
49 0x00, /* R10 - INTMASK */
50 0x00, /* R11 - INTSTAT */
51 0x00, /* R12 - SPDSTAT */
52 0x00, /* R13 - RXCHAN1 */
53 0x00, /* R14 - RXCHAN2 */
54 0x00, /* R15 - RXCHAN3 */
55 0x00, /* R16 - RXCHAN4 */
56 0x00, /* R17 - RXCHAN5 */
57 0x00, /* R18 - SPDTX1 */
58 0x00, /* R19 - SPDTX2 */
59 0x00, /* R20 - SPDTX3 */
60 0x71, /* R21 - SPDTX4 */
61 0x0B, /* R22 - SPDTX5 */
62 0x70, /* R23 - GPO0 */
63 0x57, /* R24 - GPO1 */
64 0x00, /* R25 */
65 0x42, /* R26 - GPO2 */
66 0x06, /* R27 - AIFTX */
67 0x06, /* R28 - AIFRX */
68 0x80, /* R29 - SPDRX1 */
69 0x07, /* R30 - PWRDN */
70};
71
72struct wm8804_priv {
73 enum snd_soc_control_type control_type;
74 struct regulator_bulk_data supplies[WM8804_NUM_SUPPLIES];
75 struct notifier_block disable_nb[WM8804_NUM_SUPPLIES];
76 struct snd_soc_codec *codec;
77};
78
79static int txsrc_get(struct snd_kcontrol *kcontrol,
80 struct snd_ctl_elem_value *ucontrol);
81
82static int txsrc_put(struct snd_kcontrol *kcontrol,
83 struct snd_ctl_elem_value *ucontrol);
84
85/*
86 * We can't use the same notifier block for more than one supply and
87 * there's no way I can see to get from a callback to the caller
88 * except container_of().
89 */
90#define WM8804_REGULATOR_EVENT(n) \
91static int wm8804_regulator_event_##n(struct notifier_block *nb, \
92 unsigned long event, void *data) \
93{ \
94 struct wm8804_priv *wm8804 = container_of(nb, struct wm8804_priv, \
95 disable_nb[n]); \
96 if (event & REGULATOR_EVENT_DISABLE) { \
97 wm8804->codec->cache_sync = 1; \
98 } \
99 return 0; \
100}
101
102WM8804_REGULATOR_EVENT(0)
103WM8804_REGULATOR_EVENT(1)
104
105static const char *txsrc_text[] = { "S/PDIF RX", "AIF" };
106static const SOC_ENUM_SINGLE_EXT_DECL(txsrc, txsrc_text);
107
108static const struct snd_kcontrol_new wm8804_snd_controls[] = {
109 SOC_ENUM_EXT("Input Source", txsrc, txsrc_get, txsrc_put),
110 SOC_SINGLE("TX Playback Switch", WM8804_PWRDN, 2, 1, 1),
111 SOC_SINGLE("AIF Playback Switch", WM8804_PWRDN, 4, 1, 1)
112};
113
114static int txsrc_get(struct snd_kcontrol *kcontrol,
115 struct snd_ctl_elem_value *ucontrol)
116{
117 struct snd_soc_codec *codec;
118 unsigned int src;
119
120 codec = snd_kcontrol_chip(kcontrol);
121 src = snd_soc_read(codec, WM8804_SPDTX4);
122 if (src & 0x40)
123 ucontrol->value.integer.value[0] = 1;
124 else
125 ucontrol->value.integer.value[0] = 0;
126
127 return 0;
128}
129
130static int txsrc_put(struct snd_kcontrol *kcontrol,
131 struct snd_ctl_elem_value *ucontrol)
132{
133 struct snd_soc_codec *codec;
134 unsigned int src, txpwr;
135
136 codec = snd_kcontrol_chip(kcontrol);
137
138 if (ucontrol->value.integer.value[0] != 0
139 && ucontrol->value.integer.value[0] != 1)
140 return -EINVAL;
141
142 src = snd_soc_read(codec, WM8804_SPDTX4);
143 switch ((src & 0x40) >> 6) {
144 case 0:
145 if (!ucontrol->value.integer.value[0])
146 return 0;
147 break;
148 case 1:
149 if (ucontrol->value.integer.value[1])
150 return 0;
151 break;
152 }
153
154 /* save the current power state of the transmitter */
155 txpwr = snd_soc_read(codec, WM8804_PWRDN) & 0x4;
156 /* power down the transmitter */
157 snd_soc_update_bits(codec, WM8804_PWRDN, 0x4, 0x4);
158 /* set the tx source */
159 snd_soc_update_bits(codec, WM8804_SPDTX4, 0x40,
160 ucontrol->value.integer.value[0] << 6);
161
162 if (ucontrol->value.integer.value[0]) {
163 /* power down the receiver */
164 snd_soc_update_bits(codec, WM8804_PWRDN, 0x2, 0x2);
165 /* power up the AIF */
166 snd_soc_update_bits(codec, WM8804_PWRDN, 0x10, 0);
167 } else {
168 /* don't power down the AIF -- may be used as an output */
169 /* power up the receiver */
170 snd_soc_update_bits(codec, WM8804_PWRDN, 0x2, 0);
171 }
172
173 /* restore the transmitter's configuration */
174 snd_soc_update_bits(codec, WM8804_PWRDN, 0x4, txpwr);
175
176 return 0;
177}
178
Dimitris Papastamosd4754ec2011-01-13 12:20:37 +0000179static int wm8804_volatile(struct snd_soc_codec *codec, unsigned int reg)
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100180{
181 switch (reg) {
182 case WM8804_RST_DEVID1:
183 case WM8804_DEVID2:
184 case WM8804_DEVREV:
185 case WM8804_INTSTAT:
186 case WM8804_SPDSTAT:
187 case WM8804_RXCHAN1:
188 case WM8804_RXCHAN2:
189 case WM8804_RXCHAN3:
190 case WM8804_RXCHAN4:
191 case WM8804_RXCHAN5:
192 return 1;
193 default:
194 break;
195 }
196
197 return 0;
198}
199
200static int wm8804_reset(struct snd_soc_codec *codec)
201{
202 return snd_soc_write(codec, WM8804_RST_DEVID1, 0x0);
203}
204
205static int wm8804_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
206{
207 struct snd_soc_codec *codec;
208 u16 format, master, bcp, lrp;
209
210 codec = dai->codec;
211
212 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
213 case SND_SOC_DAIFMT_I2S:
214 format = 0x2;
215 break;
216 case SND_SOC_DAIFMT_RIGHT_J:
217 format = 0x0;
218 break;
219 case SND_SOC_DAIFMT_LEFT_J:
220 format = 0x1;
221 break;
222 case SND_SOC_DAIFMT_DSP_A:
223 case SND_SOC_DAIFMT_DSP_B:
224 format = 0x3;
225 break;
226 default:
227 dev_err(dai->dev, "Unknown dai format\n");
228 return -EINVAL;
229 }
230
231 /* set data format */
232 snd_soc_update_bits(codec, WM8804_AIFTX, 0x3, format);
233 snd_soc_update_bits(codec, WM8804_AIFRX, 0x3, format);
234
235 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
236 case SND_SOC_DAIFMT_CBM_CFM:
237 master = 1;
238 break;
239 case SND_SOC_DAIFMT_CBS_CFS:
240 master = 0;
241 break;
242 default:
243 dev_err(dai->dev, "Unknown master/slave configuration\n");
244 return -EINVAL;
245 }
246
247 /* set master/slave mode */
248 snd_soc_update_bits(codec, WM8804_AIFRX, 0x40, master << 6);
249
250 bcp = lrp = 0;
251 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
252 case SND_SOC_DAIFMT_NB_NF:
253 break;
254 case SND_SOC_DAIFMT_IB_IF:
255 bcp = lrp = 1;
256 break;
257 case SND_SOC_DAIFMT_IB_NF:
258 bcp = 1;
259 break;
260 case SND_SOC_DAIFMT_NB_IF:
261 lrp = 1;
262 break;
263 default:
264 dev_err(dai->dev, "Unknown polarity configuration\n");
265 return -EINVAL;
266 }
267
268 /* set frame inversion */
269 snd_soc_update_bits(codec, WM8804_AIFTX, 0x10 | 0x20,
270 (bcp << 4) | (lrp << 5));
271 snd_soc_update_bits(codec, WM8804_AIFRX, 0x10 | 0x20,
272 (bcp << 4) | (lrp << 5));
273 return 0;
274}
275
276static int wm8804_hw_params(struct snd_pcm_substream *substream,
277 struct snd_pcm_hw_params *params,
278 struct snd_soc_dai *dai)
279{
280 struct snd_soc_codec *codec;
281 u16 blen;
282
283 codec = dai->codec;
284
285 switch (params_format(params)) {
286 case SNDRV_PCM_FORMAT_S16_LE:
287 blen = 0x0;
288 break;
289 case SNDRV_PCM_FORMAT_S20_3LE:
290 blen = 0x1;
291 break;
292 case SNDRV_PCM_FORMAT_S24_LE:
293 blen = 0x2;
294 break;
295 default:
296 dev_err(dai->dev, "Unsupported word length: %u\n",
297 params_format(params));
298 return -EINVAL;
299 }
300
301 /* set word length */
302 snd_soc_update_bits(codec, WM8804_AIFTX, 0xc, blen << 2);
303 snd_soc_update_bits(codec, WM8804_AIFRX, 0xc, blen << 2);
304
305 return 0;
306}
307
308struct pll_div {
309 u32 prescale:1;
310 u32 mclkdiv:1;
311 u32 freqmode:2;
312 u32 n:4;
313 u32 k:22;
314};
315
316/* PLL rate to output rate divisions */
317static struct {
318 unsigned int div;
319 unsigned int freqmode;
320 unsigned int mclkdiv;
321} post_table[] = {
322 { 2, 0, 0 },
323 { 4, 0, 1 },
324 { 4, 1, 0 },
325 { 8, 1, 1 },
326 { 8, 2, 0 },
327 { 16, 2, 1 },
328 { 12, 3, 0 },
329 { 24, 3, 1 }
330};
331
332#define FIXED_PLL_SIZE ((1ULL << 22) * 10)
333static int pll_factors(struct pll_div *pll_div, unsigned int target,
334 unsigned int source)
335{
336 u64 Kpart;
337 unsigned long int K, Ndiv, Nmod, tmp;
338 int i;
339
340 /*
341 * Scale the output frequency up; the PLL should run in the
342 * region of 90-100MHz.
343 */
344 for (i = 0; i < ARRAY_SIZE(post_table); i++) {
345 tmp = target * post_table[i].div;
346 if (tmp >= 90000000 && tmp <= 100000000) {
347 pll_div->freqmode = post_table[i].freqmode;
348 pll_div->mclkdiv = post_table[i].mclkdiv;
349 target *= post_table[i].div;
350 break;
351 }
352 }
353
354 if (i == ARRAY_SIZE(post_table)) {
355 pr_err("%s: Unable to scale output frequency: %uHz\n",
356 __func__, target);
357 return -EINVAL;
358 }
359
360 pll_div->prescale = 0;
361 Ndiv = target / source;
362 if (Ndiv < 5) {
363 source >>= 1;
364 pll_div->prescale = 1;
365 Ndiv = target / source;
366 }
367
368 if (Ndiv < 5 || Ndiv > 13) {
369 pr_err("%s: WM8804 N value is not within the recommended range: %lu\n",
370 __func__, Ndiv);
371 return -EINVAL;
372 }
373 pll_div->n = Ndiv;
374
375 Nmod = target % source;
376 Kpart = FIXED_PLL_SIZE * (u64)Nmod;
377
378 do_div(Kpart, source);
379
380 K = Kpart & 0xffffffff;
381 if ((K % 10) >= 5)
382 K += 5;
383 K /= 10;
384 pll_div->k = K;
385
386 return 0;
387}
388
389static int wm8804_set_pll(struct snd_soc_dai *dai, int pll_id,
390 int source, unsigned int freq_in,
391 unsigned int freq_out)
392{
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100393 struct snd_soc_codec *codec;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100394
395 codec = dai->codec;
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100396 if (!freq_in || !freq_out) {
397 /* disable the PLL */
Dimitris Papastamos6c20c802010-10-04 09:37:48 +0100398 snd_soc_update_bits(codec, WM8804_PWRDN, 0x1, 0x1);
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100399 return 0;
400 } else {
401 int ret;
402 struct pll_div pll_div;
403
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100404 ret = pll_factors(&pll_div, freq_out, freq_in);
405 if (ret)
406 return ret;
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100407
408 /* power down the PLL before reprogramming it */
Dimitris Papastamos6c20c802010-10-04 09:37:48 +0100409 snd_soc_update_bits(codec, WM8804_PWRDN, 0x1, 0x1);
Dimitris Papastamos86ce6c92010-10-04 09:31:42 +0100410
411 if (!freq_in || !freq_out)
412 return 0;
413
414 /* set PLLN and PRESCALE */
415 snd_soc_update_bits(codec, WM8804_PLL4, 0xf | 0x10,
416 pll_div.n | (pll_div.prescale << 4));
417 /* set mclkdiv and freqmode */
418 snd_soc_update_bits(codec, WM8804_PLL5, 0x3 | 0x8,
419 pll_div.freqmode | (pll_div.mclkdiv << 3));
420 /* set PLLK */
421 snd_soc_write(codec, WM8804_PLL1, pll_div.k & 0xff);
422 snd_soc_write(codec, WM8804_PLL2, (pll_div.k >> 8) & 0xff);
423 snd_soc_write(codec, WM8804_PLL3, pll_div.k >> 16);
424
425 /* power up the PLL */
Dimitris Papastamos6c20c802010-10-04 09:37:48 +0100426 snd_soc_update_bits(codec, WM8804_PWRDN, 0x1, 0);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100427 }
428
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100429 return 0;
430}
431
432static int wm8804_set_sysclk(struct snd_soc_dai *dai,
433 int clk_id, unsigned int freq, int dir)
434{
435 struct snd_soc_codec *codec;
436
437 codec = dai->codec;
438
439 switch (clk_id) {
440 case WM8804_TX_CLKSRC_MCLK:
441 if ((freq >= 10000000 && freq <= 14400000)
442 || (freq >= 16280000 && freq <= 27000000))
443 snd_soc_update_bits(codec, WM8804_PLL6, 0x80, 0x80);
444 else {
445 dev_err(dai->dev, "OSCCLOCK is not within the "
446 "recommended range: %uHz\n", freq);
447 return -EINVAL;
448 }
449 break;
450 case WM8804_TX_CLKSRC_PLL:
451 snd_soc_update_bits(codec, WM8804_PLL6, 0x80, 0);
452 break;
453 case WM8804_CLKOUT_SRC_CLK1:
454 snd_soc_update_bits(codec, WM8804_PLL6, 0x8, 0);
455 break;
456 case WM8804_CLKOUT_SRC_OSCCLK:
457 snd_soc_update_bits(codec, WM8804_PLL6, 0x8, 0x8);
458 break;
459 default:
460 dev_err(dai->dev, "Unknown clock source: %d\n", clk_id);
461 return -EINVAL;
462 }
463
464 return 0;
465}
466
467static int wm8804_set_clkdiv(struct snd_soc_dai *dai,
468 int div_id, int div)
469{
470 struct snd_soc_codec *codec;
471
472 codec = dai->codec;
473 switch (div_id) {
474 case WM8804_CLKOUT_DIV:
475 snd_soc_update_bits(codec, WM8804_PLL5, 0x30,
476 (div & 0x3) << 4);
477 break;
478 default:
479 dev_err(dai->dev, "Unknown clock divider: %d\n", div_id);
480 return -EINVAL;
481 }
482 return 0;
483}
484
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100485static int wm8804_set_bias_level(struct snd_soc_codec *codec,
486 enum snd_soc_bias_level level)
487{
488 int ret;
489 struct wm8804_priv *wm8804;
490
491 wm8804 = snd_soc_codec_get_drvdata(codec);
492 switch (level) {
493 case SND_SOC_BIAS_ON:
494 break;
495 case SND_SOC_BIAS_PREPARE:
496 /* power up the OSC and the PLL */
497 snd_soc_update_bits(codec, WM8804_PWRDN, 0x9, 0);
498 break;
499 case SND_SOC_BIAS_STANDBY:
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200500 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100501 ret = regulator_bulk_enable(ARRAY_SIZE(wm8804->supplies),
502 wm8804->supplies);
503 if (ret) {
504 dev_err(codec->dev,
505 "Failed to enable supplies: %d\n",
506 ret);
507 return ret;
508 }
Mark Browne055cd62011-12-29 19:13:37 +0000509 snd_soc_cache_sync(codec);
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100510 }
511 /* power down the OSC and the PLL */
512 snd_soc_update_bits(codec, WM8804_PWRDN, 0x9, 0x9);
513 break;
514 case SND_SOC_BIAS_OFF:
515 /* power down the OSC and the PLL */
516 snd_soc_update_bits(codec, WM8804_PWRDN, 0x9, 0x9);
517 regulator_bulk_disable(ARRAY_SIZE(wm8804->supplies),
518 wm8804->supplies);
519 break;
520 }
521
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200522 codec->dapm.bias_level = level;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100523 return 0;
524}
525
526#ifdef CONFIG_PM
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100527static int wm8804_suspend(struct snd_soc_codec *codec)
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100528{
529 wm8804_set_bias_level(codec, SND_SOC_BIAS_OFF);
530 return 0;
531}
532
533static int wm8804_resume(struct snd_soc_codec *codec)
534{
535 wm8804_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
536 return 0;
537}
538#else
539#define wm8804_suspend NULL
540#define wm8804_resume NULL
541#endif
542
543static int wm8804_remove(struct snd_soc_codec *codec)
544{
545 struct wm8804_priv *wm8804;
546 int i;
547
548 wm8804 = snd_soc_codec_get_drvdata(codec);
549 wm8804_set_bias_level(codec, SND_SOC_BIAS_OFF);
550
551 for (i = 0; i < ARRAY_SIZE(wm8804->supplies); ++i)
552 regulator_unregister_notifier(wm8804->supplies[i].consumer,
553 &wm8804->disable_nb[i]);
554 regulator_bulk_free(ARRAY_SIZE(wm8804->supplies), wm8804->supplies);
555 return 0;
556}
557
558static int wm8804_probe(struct snd_soc_codec *codec)
559{
560 struct wm8804_priv *wm8804;
561 int i, id1, id2, ret;
562
563 wm8804 = snd_soc_codec_get_drvdata(codec);
564 wm8804->codec = codec;
565
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200566 codec->dapm.idle_bias_off = 1;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100567
568 ret = snd_soc_codec_set_cache_io(codec, 8, 8, wm8804->control_type);
569 if (ret < 0) {
570 dev_err(codec->dev, "Failed to set cache i/o: %d\n", ret);
571 return ret;
572 }
573
574 for (i = 0; i < ARRAY_SIZE(wm8804->supplies); i++)
575 wm8804->supplies[i].supply = wm8804_supply_names[i];
576
577 ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(wm8804->supplies),
578 wm8804->supplies);
579 if (ret) {
580 dev_err(codec->dev, "Failed to request supplies: %d\n", ret);
581 return ret;
582 }
583
584 wm8804->disable_nb[0].notifier_call = wm8804_regulator_event_0;
585 wm8804->disable_nb[1].notifier_call = wm8804_regulator_event_1;
586
587 /* This should really be moved into the regulator core */
588 for (i = 0; i < ARRAY_SIZE(wm8804->supplies); i++) {
589 ret = regulator_register_notifier(wm8804->supplies[i].consumer,
590 &wm8804->disable_nb[i]);
591 if (ret != 0) {
592 dev_err(codec->dev,
593 "Failed to register regulator notifier: %d\n",
594 ret);
595 }
596 }
597
598 ret = regulator_bulk_enable(ARRAY_SIZE(wm8804->supplies),
599 wm8804->supplies);
600 if (ret) {
601 dev_err(codec->dev, "Failed to enable supplies: %d\n", ret);
602 goto err_reg_get;
603 }
604
605 id1 = snd_soc_read(codec, WM8804_RST_DEVID1);
606 if (id1 < 0) {
607 dev_err(codec->dev, "Failed to read device ID: %d\n", id1);
608 ret = id1;
609 goto err_reg_enable;
610 }
611
612 id2 = snd_soc_read(codec, WM8804_DEVID2);
613 if (id2 < 0) {
614 dev_err(codec->dev, "Failed to read device ID: %d\n", id2);
615 ret = id2;
616 goto err_reg_enable;
617 }
618
619 id2 = (id2 << 8) | id1;
620
621 if (id2 != ((wm8804_reg_defs[WM8804_DEVID2] << 8)
622 | wm8804_reg_defs[WM8804_RST_DEVID1])) {
623 dev_err(codec->dev, "Invalid device ID: %#x\n", id2);
624 ret = -EINVAL;
625 goto err_reg_enable;
626 }
627
Dimitris Papastamose595b322010-10-04 16:28:59 +0100628 ret = snd_soc_read(codec, WM8804_DEVREV);
629 if (ret < 0) {
630 dev_err(codec->dev, "Failed to read device revision: %d\n",
631 ret);
632 goto err_reg_enable;
633 }
634 dev_info(codec->dev, "revision %c\n", ret + 'A');
635
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100636 ret = wm8804_reset(codec);
637 if (ret < 0) {
638 dev_err(codec->dev, "Failed to issue reset: %d\n", ret);
639 goto err_reg_enable;
640 }
641
642 wm8804_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
643
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100644 return 0;
645
646err_reg_enable:
647 regulator_bulk_disable(ARRAY_SIZE(wm8804->supplies), wm8804->supplies);
648err_reg_get:
649 regulator_bulk_free(ARRAY_SIZE(wm8804->supplies), wm8804->supplies);
650 return ret;
651}
652
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100653static const struct snd_soc_dai_ops wm8804_dai_ops = {
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100654 .hw_params = wm8804_hw_params,
655 .set_fmt = wm8804_set_fmt,
656 .set_sysclk = wm8804_set_sysclk,
657 .set_clkdiv = wm8804_set_clkdiv,
658 .set_pll = wm8804_set_pll
659};
660
661#define WM8804_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
662 SNDRV_PCM_FMTBIT_S24_LE)
663
Mark Brown3115ae12011-06-08 18:07:49 +0100664#define WM8804_RATES (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
665 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_64000 | \
666 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | \
667 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000)
668
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100669static struct snd_soc_dai_driver wm8804_dai = {
Dimitris Papastamoscb13c6b2010-10-01 09:12:14 +0100670 .name = "wm8804-spdif",
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100671 .playback = {
672 .stream_name = "Playback",
673 .channels_min = 2,
674 .channels_max = 2,
Mark Brown3115ae12011-06-08 18:07:49 +0100675 .rates = WM8804_RATES,
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100676 .formats = WM8804_FORMATS,
677 },
678 .capture = {
679 .stream_name = "Capture",
680 .channels_min = 2,
681 .channels_max = 2,
Mark Brown3115ae12011-06-08 18:07:49 +0100682 .rates = WM8804_RATES,
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100683 .formats = WM8804_FORMATS,
684 },
685 .ops = &wm8804_dai_ops,
686 .symmetric_rates = 1
687};
688
689static struct snd_soc_codec_driver soc_codec_dev_wm8804 = {
690 .probe = wm8804_probe,
691 .remove = wm8804_remove,
692 .suspend = wm8804_suspend,
693 .resume = wm8804_resume,
694 .set_bias_level = wm8804_set_bias_level,
695 .reg_cache_size = ARRAY_SIZE(wm8804_reg_defs),
696 .reg_word_size = sizeof(u8),
697 .reg_cache_default = wm8804_reg_defs,
Mark Brown5a374522011-12-08 16:52:19 +0800698 .volatile_register = wm8804_volatile,
699
700 .controls = wm8804_snd_controls,
701 .num_controls = ARRAY_SIZE(wm8804_snd_controls),
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100702};
703
Mark Brownd2dd0542011-08-29 14:23:05 +0100704static const struct of_device_id wm8804_of_match[] = {
705 { .compatible = "wlf,wm8804", },
706 { }
707};
708MODULE_DEVICE_TABLE(of, wm8804_of_match);
709
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100710#if defined(CONFIG_SPI_MASTER)
711static int __devinit wm8804_spi_probe(struct spi_device *spi)
712{
713 struct wm8804_priv *wm8804;
714 int ret;
715
716 wm8804 = kzalloc(sizeof *wm8804, GFP_KERNEL);
Dan Carpenterfe3e2e72010-10-09 21:31:31 +0200717 if (!wm8804)
718 return -ENOMEM;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100719
720 wm8804->control_type = SND_SOC_SPI;
721 spi_set_drvdata(spi, wm8804);
722
723 ret = snd_soc_register_codec(&spi->dev,
724 &soc_codec_dev_wm8804, &wm8804_dai, 1);
725 if (ret < 0)
726 kfree(wm8804);
727 return ret;
728}
729
730static int __devexit wm8804_spi_remove(struct spi_device *spi)
731{
732 snd_soc_unregister_codec(&spi->dev);
733 kfree(spi_get_drvdata(spi));
734 return 0;
735}
736
737static struct spi_driver wm8804_spi_driver = {
738 .driver = {
739 .name = "wm8804",
740 .owner = THIS_MODULE,
Mark Brownd2dd0542011-08-29 14:23:05 +0100741 .of_match_table = wm8804_of_match,
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100742 },
743 .probe = wm8804_spi_probe,
744 .remove = __devexit_p(wm8804_spi_remove)
745};
746#endif
747
748#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
749static __devinit int wm8804_i2c_probe(struct i2c_client *i2c,
750 const struct i2c_device_id *id)
751{
752 struct wm8804_priv *wm8804;
753 int ret;
754
755 wm8804 = kzalloc(sizeof *wm8804, GFP_KERNEL);
Dan Carpenterfe3e2e72010-10-09 21:31:31 +0200756 if (!wm8804)
757 return -ENOMEM;
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100758
759 wm8804->control_type = SND_SOC_I2C;
760 i2c_set_clientdata(i2c, wm8804);
761
762 ret = snd_soc_register_codec(&i2c->dev,
763 &soc_codec_dev_wm8804, &wm8804_dai, 1);
764 if (ret < 0)
765 kfree(wm8804);
766 return ret;
767}
768
769static __devexit int wm8804_i2c_remove(struct i2c_client *client)
770{
771 snd_soc_unregister_codec(&client->dev);
772 kfree(i2c_get_clientdata(client));
773 return 0;
774}
775
776static const struct i2c_device_id wm8804_i2c_id[] = {
777 { "wm8804", 0 },
778 { }
779};
780MODULE_DEVICE_TABLE(i2c, wm8804_i2c_id);
781
782static struct i2c_driver wm8804_i2c_driver = {
783 .driver = {
784 .name = "wm8804",
785 .owner = THIS_MODULE,
Mark Brownd2dd0542011-08-29 14:23:05 +0100786 .of_match_table = wm8804_of_match,
Dimitris Papastamos33cf45c2010-09-29 11:14:56 +0100787 },
788 .probe = wm8804_i2c_probe,
789 .remove = __devexit_p(wm8804_i2c_remove),
790 .id_table = wm8804_i2c_id
791};
792#endif
793
794static int __init wm8804_modinit(void)
795{
796 int ret = 0;
797
798#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
799 ret = i2c_add_driver(&wm8804_i2c_driver);
800 if (ret) {
801 printk(KERN_ERR "Failed to register wm8804 I2C driver: %d\n",
802 ret);
803 }
804#endif
805#if defined(CONFIG_SPI_MASTER)
806 ret = spi_register_driver(&wm8804_spi_driver);
807 if (ret != 0) {
808 printk(KERN_ERR "Failed to register wm8804 SPI driver: %d\n",
809 ret);
810 }
811#endif
812 return ret;
813}
814module_init(wm8804_modinit);
815
816static void __exit wm8804_exit(void)
817{
818#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
819 i2c_del_driver(&wm8804_i2c_driver);
820#endif
821#if defined(CONFIG_SPI_MASTER)
822 spi_unregister_driver(&wm8804_spi_driver);
823#endif
824}
825module_exit(wm8804_exit);
826
827MODULE_DESCRIPTION("ASoC WM8804 driver");
828MODULE_AUTHOR("Dimitris Papastamos <dp@opensource.wolfsonmicro.com>");
829MODULE_LICENSE("GPL");