]> Pileus Git - ~andy/linux/blob - sound/soc/codecs/wm8711.c
Merge branch 'topic/remove-irqf_disable' into for-linus
[~andy/linux] / sound / soc / codecs / wm8711.c
1 /*
2  * wm8711.c  --  WM8711 ALSA SoC Audio driver
3  *
4  * Copyright 2006 Wolfson Microelectronics
5  *
6  * Author: Mike Arthur <linux@wolfsonmicro.com>
7  *
8  * Based on wm8731.c by Richard Purdie
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>
22 #include <linux/spi/spi.h>
23 #include <linux/slab.h>
24 #include <linux/of_device.h>
25 #include <sound/core.h>
26 #include <sound/pcm.h>
27 #include <sound/pcm_params.h>
28 #include <sound/soc.h>
29 #include <sound/tlv.h>
30 #include <sound/initval.h>
31
32 #include "wm8711.h"
33
34 /* codec private data */
35 struct wm8711_priv {
36         enum snd_soc_control_type bus_type;
37         unsigned int sysclk;
38 };
39
40 /*
41  * wm8711 register cache
42  * We can't read the WM8711 register space when we are
43  * using 2 wire for device control, so we cache them instead.
44  * There is no point in caching the reset register
45  */
46 static const u16 wm8711_reg[WM8711_CACHEREGNUM] = {
47         0x0079, 0x0079, 0x000a, 0x0008,
48         0x009f, 0x000a, 0x0000, 0x0000
49 };
50
51 #define wm8711_reset(c) snd_soc_write(c, WM8711_RESET, 0)
52
53 static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1);
54
55 static const struct snd_kcontrol_new wm8711_snd_controls[] = {
56
57 SOC_DOUBLE_R_TLV("Master Playback Volume", WM8711_LOUT1V, WM8711_ROUT1V,
58                  0, 127, 0, out_tlv),
59 SOC_DOUBLE_R("Master Playback ZC Switch", WM8711_LOUT1V, WM8711_ROUT1V,
60         7, 1, 0),
61
62 };
63
64 /* Output Mixer */
65 static const struct snd_kcontrol_new wm8711_output_mixer_controls[] = {
66 SOC_DAPM_SINGLE("Line Bypass Switch", WM8711_APANA, 3, 1, 0),
67 SOC_DAPM_SINGLE("HiFi Playback Switch", WM8711_APANA, 4, 1, 0),
68 };
69
70 static const struct snd_soc_dapm_widget wm8711_dapm_widgets[] = {
71 SND_SOC_DAPM_MIXER("Output Mixer", WM8711_PWR, 4, 1,
72         &wm8711_output_mixer_controls[0],
73         ARRAY_SIZE(wm8711_output_mixer_controls)),
74 SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8711_PWR, 3, 1),
75 SND_SOC_DAPM_OUTPUT("LOUT"),
76 SND_SOC_DAPM_OUTPUT("LHPOUT"),
77 SND_SOC_DAPM_OUTPUT("ROUT"),
78 SND_SOC_DAPM_OUTPUT("RHPOUT"),
79 };
80
81 static const struct snd_soc_dapm_route wm8711_intercon[] = {
82         /* output mixer */
83         {"Output Mixer", "Line Bypass Switch", "Line Input"},
84         {"Output Mixer", "HiFi Playback Switch", "DAC"},
85
86         /* outputs */
87         {"RHPOUT", NULL, "Output Mixer"},
88         {"ROUT", NULL, "Output Mixer"},
89         {"LHPOUT", NULL, "Output Mixer"},
90         {"LOUT", NULL, "Output Mixer"},
91 };
92
93 struct _coeff_div {
94         u32 mclk;
95         u32 rate;
96         u16 fs;
97         u8 sr:4;
98         u8 bosr:1;
99         u8 usb:1;
100 };
101
102 /* codec mclk clock divider coefficients */
103 static const struct _coeff_div coeff_div[] = {
104         /* 48k */
105         {12288000, 48000, 256, 0x0, 0x0, 0x0},
106         {18432000, 48000, 384, 0x0, 0x1, 0x0},
107         {12000000, 48000, 250, 0x0, 0x0, 0x1},
108
109         /* 32k */
110         {12288000, 32000, 384, 0x6, 0x0, 0x0},
111         {18432000, 32000, 576, 0x6, 0x1, 0x0},
112         {12000000, 32000, 375, 0x6, 0x0, 0x1},
113
114         /* 8k */
115         {12288000, 8000, 1536, 0x3, 0x0, 0x0},
116         {18432000, 8000, 2304, 0x3, 0x1, 0x0},
117         {11289600, 8000, 1408, 0xb, 0x0, 0x0},
118         {16934400, 8000, 2112, 0xb, 0x1, 0x0},
119         {12000000, 8000, 1500, 0x3, 0x0, 0x1},
120
121         /* 96k */
122         {12288000, 96000, 128, 0x7, 0x0, 0x0},
123         {18432000, 96000, 192, 0x7, 0x1, 0x0},
124         {12000000, 96000, 125, 0x7, 0x0, 0x1},
125
126         /* 44.1k */
127         {11289600, 44100, 256, 0x8, 0x0, 0x0},
128         {16934400, 44100, 384, 0x8, 0x1, 0x0},
129         {12000000, 44100, 272, 0x8, 0x1, 0x1},
130
131         /* 88.2k */
132         {11289600, 88200, 128, 0xf, 0x0, 0x0},
133         {16934400, 88200, 192, 0xf, 0x1, 0x0},
134         {12000000, 88200, 136, 0xf, 0x1, 0x1},
135 };
136
137 static inline int get_coeff(int mclk, int rate)
138 {
139         int i;
140
141         for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
142                 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
143                         return i;
144         }
145         return 0;
146 }
147
148 static int wm8711_hw_params(struct snd_pcm_substream *substream,
149         struct snd_pcm_hw_params *params,
150         struct snd_soc_dai *dai)
151 {
152         struct snd_soc_codec *codec = dai->codec;
153         struct wm8711_priv *wm8711 =  snd_soc_codec_get_drvdata(codec);
154         u16 iface = snd_soc_read(codec, WM8711_IFACE) & 0xfffc;
155         int i = get_coeff(wm8711->sysclk, params_rate(params));
156         u16 srate = (coeff_div[i].sr << 2) |
157                 (coeff_div[i].bosr << 1) | coeff_div[i].usb;
158
159         snd_soc_write(codec, WM8711_SRATE, srate);
160
161         /* bit size */
162         switch (params_format(params)) {
163         case SNDRV_PCM_FORMAT_S16_LE:
164                 break;
165         case SNDRV_PCM_FORMAT_S20_3LE:
166                 iface |= 0x0004;
167                 break;
168         case SNDRV_PCM_FORMAT_S24_LE:
169                 iface |= 0x0008;
170                 break;
171         }
172
173         snd_soc_write(codec, WM8711_IFACE, iface);
174         return 0;
175 }
176
177 static int wm8711_pcm_prepare(struct snd_pcm_substream *substream,
178                               struct snd_soc_dai *dai)
179 {
180         struct snd_soc_codec *codec = dai->codec;
181
182         /* set active */
183         snd_soc_write(codec, WM8711_ACTIVE, 0x0001);
184
185         return 0;
186 }
187
188 static void wm8711_shutdown(struct snd_pcm_substream *substream,
189                             struct snd_soc_dai *dai)
190 {
191         struct snd_soc_codec *codec = dai->codec;
192
193         /* deactivate */
194         if (!codec->active) {
195                 udelay(50);
196                 snd_soc_write(codec, WM8711_ACTIVE, 0x0);
197         }
198 }
199
200 static int wm8711_mute(struct snd_soc_dai *dai, int mute)
201 {
202         struct snd_soc_codec *codec = dai->codec;
203         u16 mute_reg = snd_soc_read(codec, WM8711_APDIGI) & 0xfff7;
204
205         if (mute)
206                 snd_soc_write(codec, WM8711_APDIGI, mute_reg | 0x8);
207         else
208                 snd_soc_write(codec, WM8711_APDIGI, mute_reg);
209
210         return 0;
211 }
212
213 static int wm8711_set_dai_sysclk(struct snd_soc_dai *codec_dai,
214                 int clk_id, unsigned int freq, int dir)
215 {
216         struct snd_soc_codec *codec = codec_dai->codec;
217         struct wm8711_priv *wm8711 =  snd_soc_codec_get_drvdata(codec);
218
219         switch (freq) {
220         case 11289600:
221         case 12000000:
222         case 12288000:
223         case 16934400:
224         case 18432000:
225                 wm8711->sysclk = freq;
226                 return 0;
227         }
228         return -EINVAL;
229 }
230
231 static int wm8711_set_dai_fmt(struct snd_soc_dai *codec_dai,
232                 unsigned int fmt)
233 {
234         struct snd_soc_codec *codec = codec_dai->codec;
235         u16 iface = 0;
236
237         /* set master/slave audio interface */
238         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
239         case SND_SOC_DAIFMT_CBM_CFM:
240                 iface |= 0x0040;
241                 break;
242         case SND_SOC_DAIFMT_CBS_CFS:
243                 break;
244         default:
245                 return -EINVAL;
246         }
247
248         /* interface format */
249         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
250         case SND_SOC_DAIFMT_I2S:
251                 iface |= 0x0002;
252                 break;
253         case SND_SOC_DAIFMT_RIGHT_J:
254                 break;
255         case SND_SOC_DAIFMT_LEFT_J:
256                 iface |= 0x0001;
257                 break;
258         case SND_SOC_DAIFMT_DSP_A:
259                 iface |= 0x0003;
260                 break;
261         case SND_SOC_DAIFMT_DSP_B:
262                 iface |= 0x0013;
263                 break;
264         default:
265                 return -EINVAL;
266         }
267
268         /* clock inversion */
269         switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
270         case SND_SOC_DAIFMT_NB_NF:
271                 break;
272         case SND_SOC_DAIFMT_IB_IF:
273                 iface |= 0x0090;
274                 break;
275         case SND_SOC_DAIFMT_IB_NF:
276                 iface |= 0x0080;
277                 break;
278         case SND_SOC_DAIFMT_NB_IF:
279                 iface |= 0x0010;
280                 break;
281         default:
282                 return -EINVAL;
283         }
284
285         /* set iface */
286         snd_soc_write(codec, WM8711_IFACE, iface);
287         return 0;
288 }
289
290
291 static int wm8711_set_bias_level(struct snd_soc_codec *codec,
292         enum snd_soc_bias_level level)
293 {
294         u16 reg = snd_soc_read(codec, WM8711_PWR) & 0xff7f;
295
296         switch (level) {
297         case SND_SOC_BIAS_ON:
298                 snd_soc_write(codec, WM8711_PWR, reg);
299                 break;
300         case SND_SOC_BIAS_PREPARE:
301                 break;
302         case SND_SOC_BIAS_STANDBY:
303                 snd_soc_write(codec, WM8711_PWR, reg | 0x0040);
304                 break;
305         case SND_SOC_BIAS_OFF:
306                 snd_soc_write(codec, WM8711_ACTIVE, 0x0);
307                 snd_soc_write(codec, WM8711_PWR, 0xffff);
308                 break;
309         }
310         codec->dapm.bias_level = level;
311         return 0;
312 }
313
314 #define WM8711_RATES SNDRV_PCM_RATE_8000_96000
315
316 #define WM8711_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
317         SNDRV_PCM_FMTBIT_S24_LE)
318
319 static struct snd_soc_dai_ops wm8711_ops = {
320         .prepare = wm8711_pcm_prepare,
321         .hw_params = wm8711_hw_params,
322         .shutdown = wm8711_shutdown,
323         .digital_mute = wm8711_mute,
324         .set_sysclk = wm8711_set_dai_sysclk,
325         .set_fmt = wm8711_set_dai_fmt,
326 };
327
328 static struct snd_soc_dai_driver wm8711_dai = {
329         .name = "wm8711-hifi",
330         .playback = {
331                 .stream_name = "Playback",
332                 .channels_min = 1,
333                 .channels_max = 2,
334                 .rates = WM8711_RATES,
335                 .formats = WM8711_FORMATS,
336         },
337         .ops = &wm8711_ops,
338 };
339
340 static int wm8711_suspend(struct snd_soc_codec *codec, pm_message_t state)
341 {
342         snd_soc_write(codec, WM8711_ACTIVE, 0x0);
343         wm8711_set_bias_level(codec, SND_SOC_BIAS_OFF);
344         return 0;
345 }
346
347 static int wm8711_resume(struct snd_soc_codec *codec)
348 {
349         int i;
350         u8 data[2];
351         u16 *cache = codec->reg_cache;
352
353         /* Sync reg_cache with the hardware */
354         for (i = 0; i < ARRAY_SIZE(wm8711_reg); i++) {
355                 data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001);
356                 data[1] = cache[i] & 0x00ff;
357                 codec->hw_write(codec->control_data, data, 2);
358         }
359         wm8711_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
360
361         return 0;
362 }
363
364 static int wm8711_probe(struct snd_soc_codec *codec)
365 {
366         struct wm8711_priv *wm8711 = snd_soc_codec_get_drvdata(codec);
367         int ret, reg;
368
369         ret = snd_soc_codec_set_cache_io(codec, 7, 9, wm8711->bus_type);
370         if (ret < 0) {
371                 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
372                 return ret;
373         }
374
375         ret = wm8711_reset(codec);
376         if (ret < 0) {
377                 dev_err(codec->dev, "Failed to issue reset\n");
378                 return ret;
379         }
380
381         wm8711_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
382
383         /* Latch the update bits */
384         reg = snd_soc_read(codec, WM8711_LOUT1V);
385         snd_soc_write(codec, WM8711_LOUT1V, reg | 0x0100);
386         reg = snd_soc_read(codec, WM8711_ROUT1V);
387         snd_soc_write(codec, WM8711_ROUT1V, reg | 0x0100);
388
389         snd_soc_add_controls(codec, wm8711_snd_controls,
390                              ARRAY_SIZE(wm8711_snd_controls));
391
392         return ret;
393
394 }
395
396 /* power down chip */
397 static int wm8711_remove(struct snd_soc_codec *codec)
398 {
399         wm8711_set_bias_level(codec, SND_SOC_BIAS_OFF);
400         return 0;
401 }
402
403 static struct snd_soc_codec_driver soc_codec_dev_wm8711 = {
404         .probe =        wm8711_probe,
405         .remove =       wm8711_remove,
406         .suspend =      wm8711_suspend,
407         .resume =       wm8711_resume,
408         .set_bias_level = wm8711_set_bias_level,
409         .reg_cache_size = ARRAY_SIZE(wm8711_reg),
410         .reg_word_size = sizeof(u16),
411         .reg_cache_default = wm8711_reg,
412         .dapm_widgets = wm8711_dapm_widgets,
413         .num_dapm_widgets = ARRAY_SIZE(wm8711_dapm_widgets),
414         .dapm_routes = wm8711_intercon,
415         .num_dapm_routes = ARRAY_SIZE(wm8711_intercon),
416 };
417
418 static const struct of_device_id wm8711_of_match[] = {
419         { .compatible = "wlf,wm8711", },
420         { }
421 };
422 MODULE_DEVICE_TABLE(of, wm8711_of_match);
423
424 #if defined(CONFIG_SPI_MASTER)
425 static int __devinit wm8711_spi_probe(struct spi_device *spi)
426 {
427         struct wm8711_priv *wm8711;
428         int ret;
429
430         wm8711 = kzalloc(sizeof(struct wm8711_priv), GFP_KERNEL);
431         if (wm8711 == NULL)
432                 return -ENOMEM;
433
434         spi_set_drvdata(spi, wm8711);
435         wm8711->bus_type = SND_SOC_SPI;
436
437         ret = snd_soc_register_codec(&spi->dev,
438                         &soc_codec_dev_wm8711, &wm8711_dai, 1);
439         if (ret < 0)
440                 kfree(wm8711);
441         return ret;
442 }
443
444 static int __devexit wm8711_spi_remove(struct spi_device *spi)
445 {
446         snd_soc_unregister_codec(&spi->dev);
447         kfree(spi_get_drvdata(spi));
448         return 0;
449 }
450
451 static struct spi_driver wm8711_spi_driver = {
452         .driver = {
453                 .name   = "wm8711",
454                 .owner  = THIS_MODULE,
455                 .of_match_table = wm8711_of_match,
456         },
457         .probe          = wm8711_spi_probe,
458         .remove         = __devexit_p(wm8711_spi_remove),
459 };
460 #endif /* CONFIG_SPI_MASTER */
461
462 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
463 static __devinit int wm8711_i2c_probe(struct i2c_client *client,
464                                       const struct i2c_device_id *id)
465 {
466         struct wm8711_priv *wm8711;
467         int ret;
468
469         wm8711 = kzalloc(sizeof(struct wm8711_priv), GFP_KERNEL);
470         if (wm8711 == NULL)
471                 return -ENOMEM;
472
473         i2c_set_clientdata(client, wm8711);
474         wm8711->bus_type = SND_SOC_I2C;
475
476         ret =  snd_soc_register_codec(&client->dev,
477                         &soc_codec_dev_wm8711, &wm8711_dai, 1);
478         if (ret < 0)
479                 kfree(wm8711);
480         return ret;
481 }
482
483 static __devexit int wm8711_i2c_remove(struct i2c_client *client)
484 {
485         snd_soc_unregister_codec(&client->dev);
486         kfree(i2c_get_clientdata(client));
487         return 0;
488 }
489
490 static const struct i2c_device_id wm8711_i2c_id[] = {
491         { "wm8711", 0 },
492         { }
493 };
494 MODULE_DEVICE_TABLE(i2c, wm8711_i2c_id);
495
496 static struct i2c_driver wm8711_i2c_driver = {
497         .driver = {
498                 .name = "wm8711",
499                 .owner = THIS_MODULE,
500                 .of_match_table = wm8711_of_match,
501         },
502         .probe =    wm8711_i2c_probe,
503         .remove =   __devexit_p(wm8711_i2c_remove),
504         .id_table = wm8711_i2c_id,
505 };
506 #endif
507
508 static int __init wm8711_modinit(void)
509 {
510         int ret;
511 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
512         ret = i2c_add_driver(&wm8711_i2c_driver);
513         if (ret != 0) {
514                 printk(KERN_ERR "Failed to register WM8711 I2C driver: %d\n",
515                        ret);
516         }
517 #endif
518 #if defined(CONFIG_SPI_MASTER)
519         ret = spi_register_driver(&wm8711_spi_driver);
520         if (ret != 0) {
521                 printk(KERN_ERR "Failed to register WM8711 SPI driver: %d\n",
522                        ret);
523         }
524 #endif
525         return 0;
526 }
527 module_init(wm8711_modinit);
528
529 static void __exit wm8711_exit(void)
530 {
531 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
532         i2c_del_driver(&wm8711_i2c_driver);
533 #endif
534 #if defined(CONFIG_SPI_MASTER)
535         spi_unregister_driver(&wm8711_spi_driver);
536 #endif
537 }
538 module_exit(wm8711_exit);
539
540 MODULE_DESCRIPTION("ASoC WM8711 driver");
541 MODULE_AUTHOR("Mike Arthur");
542 MODULE_LICENSE("GPL");