]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - sound/soc/codecs/wm8711.c
ASoC: Remove unused variable 'wm9090' in wm9090_probe
[mirror_ubuntu-bionic-kernel.git] / sound / soc / codecs / wm8711.c
CommitLineData
bd6d4177
MA
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>
bb262767 22#include <linux/spi/spi.h>
5a0e3ad6 23#include <linux/slab.h>
1552c8f6 24#include <linux/of_device.h>
bd6d4177
MA
25#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28#include <sound/soc.h>
b5ab887e 29#include <sound/tlv.h>
bd6d4177
MA
30#include <sound/initval.h>
31
32#include "wm8711.h"
33
bd6d4177
MA
34/* codec private data */
35struct wm8711_priv {
f0fba2ad 36 enum snd_soc_control_type bus_type;
bd6d4177
MA
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 */
46static const u16 wm8711_reg[WM8711_CACHEREGNUM] = {
47 0x0079, 0x0079, 0x000a, 0x0008,
48 0x009f, 0x000a, 0x0000, 0x0000
49};
50
d97d2e35 51#define wm8711_reset(c) snd_soc_write(c, WM8711_RESET, 0)
bd6d4177 52
b5ab887e
MB
53static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1);
54
bd6d4177
MA
55static const struct snd_kcontrol_new wm8711_snd_controls[] = {
56
b5ab887e
MB
57SOC_DOUBLE_R_TLV("Master Playback Volume", WM8711_LOUT1V, WM8711_ROUT1V,
58 0, 127, 0, out_tlv),
bd6d4177
MA
59SOC_DOUBLE_R("Master Playback ZC Switch", WM8711_LOUT1V, WM8711_ROUT1V,
60 7, 1, 0),
61
62};
63
bd6d4177
MA
64/* Output Mixer */
65static const struct snd_kcontrol_new wm8711_output_mixer_controls[] = {
66SOC_DAPM_SINGLE("Line Bypass Switch", WM8711_APANA, 3, 1, 0),
67SOC_DAPM_SINGLE("HiFi Playback Switch", WM8711_APANA, 4, 1, 0),
68};
69
70static const struct snd_soc_dapm_widget wm8711_dapm_widgets[] = {
71SND_SOC_DAPM_MIXER("Output Mixer", WM8711_PWR, 4, 1,
72 &wm8711_output_mixer_controls[0],
73 ARRAY_SIZE(wm8711_output_mixer_controls)),
74SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8711_PWR, 3, 1),
75SND_SOC_DAPM_OUTPUT("LOUT"),
76SND_SOC_DAPM_OUTPUT("LHPOUT"),
77SND_SOC_DAPM_OUTPUT("ROUT"),
78SND_SOC_DAPM_OUTPUT("RHPOUT"),
79};
80
20314000 81static const struct snd_soc_dapm_route wm8711_intercon[] = {
bd6d4177
MA
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
bd6d4177
MA
93struct _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 */
103static 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
137static 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
148static 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;
f0fba2ad 153 struct wm8711_priv *wm8711 = snd_soc_codec_get_drvdata(codec);
d97d2e35 154 u16 iface = snd_soc_read(codec, WM8711_IFACE) & 0xfffc;
bd6d4177
MA
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
d97d2e35 159 snd_soc_write(codec, WM8711_SRATE, srate);
bd6d4177
MA
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
d97d2e35 173 snd_soc_write(codec, WM8711_IFACE, iface);
bd6d4177
MA
174 return 0;
175}
176
177static 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 */
d97d2e35 183 snd_soc_write(codec, WM8711_ACTIVE, 0x0001);
bd6d4177
MA
184
185 return 0;
186}
187
188static 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);
d97d2e35 196 snd_soc_write(codec, WM8711_ACTIVE, 0x0);
bd6d4177
MA
197 }
198}
199
200static int wm8711_mute(struct snd_soc_dai *dai, int mute)
201{
202 struct snd_soc_codec *codec = dai->codec;
d97d2e35 203 u16 mute_reg = snd_soc_read(codec, WM8711_APDIGI) & 0xfff7;
bd6d4177
MA
204
205 if (mute)
d97d2e35 206 snd_soc_write(codec, WM8711_APDIGI, mute_reg | 0x8);
bd6d4177 207 else
d97d2e35 208 snd_soc_write(codec, WM8711_APDIGI, mute_reg);
bd6d4177
MA
209
210 return 0;
211}
212
213static 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;
f0fba2ad 217 struct wm8711_priv *wm8711 = snd_soc_codec_get_drvdata(codec);
bd6d4177
MA
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
231static 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 */
d97d2e35 286 snd_soc_write(codec, WM8711_IFACE, iface);
bd6d4177
MA
287 return 0;
288}
289
290
291static int wm8711_set_bias_level(struct snd_soc_codec *codec,
292 enum snd_soc_bias_level level)
293{
d97d2e35 294 u16 reg = snd_soc_read(codec, WM8711_PWR) & 0xff7f;
bd6d4177
MA
295
296 switch (level) {
297 case SND_SOC_BIAS_ON:
d97d2e35 298 snd_soc_write(codec, WM8711_PWR, reg);
bd6d4177
MA
299 break;
300 case SND_SOC_BIAS_PREPARE:
301 break;
302 case SND_SOC_BIAS_STANDBY:
d97d2e35 303 snd_soc_write(codec, WM8711_PWR, reg | 0x0040);
bd6d4177
MA
304 break;
305 case SND_SOC_BIAS_OFF:
d97d2e35
MB
306 snd_soc_write(codec, WM8711_ACTIVE, 0x0);
307 snd_soc_write(codec, WM8711_PWR, 0xffff);
bd6d4177
MA
308 break;
309 }
ce6120cc 310 codec->dapm.bias_level = level;
bd6d4177
MA
311 return 0;
312}
313
431f7771 314#define WM8711_RATES SNDRV_PCM_RATE_8000_96000
bd6d4177
MA
315
316#define WM8711_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
317 SNDRV_PCM_FMTBIT_S24_LE)
318
319static 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
f0fba2ad
LG
328static struct snd_soc_dai_driver wm8711_dai = {
329 .name = "wm8711-hifi",
bd6d4177
MA
330 .playback = {
331 .stream_name = "Playback",
332 .channels_min = 1,
333 .channels_max = 2,
334 .rates = WM8711_RATES,
431f7771
MB
335 .formats = WM8711_FORMATS,
336 },
bd6d4177
MA
337 .ops = &wm8711_ops,
338};
bd6d4177 339
f0fba2ad 340static int wm8711_suspend(struct snd_soc_codec *codec, pm_message_t state)
bd6d4177 341{
d97d2e35 342 snd_soc_write(codec, WM8711_ACTIVE, 0x0);
bd6d4177
MA
343 wm8711_set_bias_level(codec, SND_SOC_BIAS_OFF);
344 return 0;
345}
346
f0fba2ad 347static int wm8711_resume(struct snd_soc_codec *codec)
bd6d4177 348{
bd6d4177
MA
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);
29e189c2 360
bd6d4177
MA
361 return 0;
362}
363
f0fba2ad 364static int wm8711_probe(struct snd_soc_codec *codec)
bd6d4177 365{
f0fba2ad 366 struct wm8711_priv *wm8711 = snd_soc_codec_get_drvdata(codec);
d434bc32 367 int ret;
bd6d4177 368
f0fba2ad 369 ret = snd_soc_codec_set_cache_io(codec, 7, 9, wm8711->bus_type);
d97d2e35
MB
370 if (ret < 0) {
371 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
f0fba2ad 372 return ret;
d97d2e35
MB
373 }
374
318b0b8d 375 ret = wm8711_reset(codec);
bd6d4177 376 if (ret < 0) {
318b0b8d 377 dev_err(codec->dev, "Failed to issue reset\n");
f0fba2ad 378 return ret;
bd6d4177 379 }
bd6d4177 380
318b0b8d
MB
381 wm8711_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
382
383 /* Latch the update bits */
11b9ce62
AL
384 snd_soc_update_bits(codec, WM8711_LOUT1V, 0x0100, 0x0100);
385 snd_soc_update_bits(codec, WM8711_ROUT1V, 0x0100, 0x0100);
318b0b8d 386
f0fba2ad
LG
387 snd_soc_add_controls(codec, wm8711_snd_controls,
388 ARRAY_SIZE(wm8711_snd_controls));
d97d2e35 389
d97d2e35 390 return ret;
f0fba2ad 391
bd6d4177
MA
392}
393
f0fba2ad
LG
394/* power down chip */
395static int wm8711_remove(struct snd_soc_codec *codec)
bd6d4177 396{
f0fba2ad
LG
397 wm8711_set_bias_level(codec, SND_SOC_BIAS_OFF);
398 return 0;
bd6d4177
MA
399}
400
f0fba2ad
LG
401static struct snd_soc_codec_driver soc_codec_dev_wm8711 = {
402 .probe = wm8711_probe,
403 .remove = wm8711_remove,
404 .suspend = wm8711_suspend,
405 .resume = wm8711_resume,
406 .set_bias_level = wm8711_set_bias_level,
e5eec34c 407 .reg_cache_size = ARRAY_SIZE(wm8711_reg),
f0fba2ad
LG
408 .reg_word_size = sizeof(u16),
409 .reg_cache_default = wm8711_reg,
20314000
LG
410 .dapm_widgets = wm8711_dapm_widgets,
411 .num_dapm_widgets = ARRAY_SIZE(wm8711_dapm_widgets),
412 .dapm_routes = wm8711_intercon,
413 .num_dapm_routes = ARRAY_SIZE(wm8711_intercon),
f0fba2ad
LG
414};
415
1552c8f6
MB
416static const struct of_device_id wm8711_of_match[] = {
417 { .compatible = "wlf,wm8711", },
418 { }
419};
420MODULE_DEVICE_TABLE(of, wm8711_of_match);
421
08aff8cd
MB
422#if defined(CONFIG_SPI_MASTER)
423static int __devinit wm8711_spi_probe(struct spi_device *spi)
424{
08aff8cd 425 struct wm8711_priv *wm8711;
f0fba2ad 426 int ret;
08aff8cd
MB
427
428 wm8711 = kzalloc(sizeof(struct wm8711_priv), GFP_KERNEL);
429 if (wm8711 == NULL)
430 return -ENOMEM;
431
f0fba2ad 432 spi_set_drvdata(spi, wm8711);
f0fba2ad 433 wm8711->bus_type = SND_SOC_SPI;
08aff8cd 434
f0fba2ad
LG
435 ret = snd_soc_register_codec(&spi->dev,
436 &soc_codec_dev_wm8711, &wm8711_dai, 1);
437 if (ret < 0)
438 kfree(wm8711);
439 return ret;
08aff8cd
MB
440}
441
442static int __devexit wm8711_spi_remove(struct spi_device *spi)
443{
f0fba2ad
LG
444 snd_soc_unregister_codec(&spi->dev);
445 kfree(spi_get_drvdata(spi));
08aff8cd
MB
446 return 0;
447}
448
08aff8cd
MB
449static struct spi_driver wm8711_spi_driver = {
450 .driver = {
0473e61b 451 .name = "wm8711",
08aff8cd 452 .owner = THIS_MODULE,
1552c8f6 453 .of_match_table = wm8711_of_match,
08aff8cd
MB
454 },
455 .probe = wm8711_spi_probe,
08aff8cd
MB
456 .remove = __devexit_p(wm8711_spi_remove),
457};
458#endif /* CONFIG_SPI_MASTER */
459
318b0b8d 460#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
f0fba2ad 461static __devinit int wm8711_i2c_probe(struct i2c_client *client,
318b0b8d 462 const struct i2c_device_id *id)
bd6d4177 463{
bd6d4177 464 struct wm8711_priv *wm8711;
f0fba2ad 465 int ret;
bd6d4177
MA
466
467 wm8711 = kzalloc(sizeof(struct wm8711_priv), GFP_KERNEL);
318b0b8d 468 if (wm8711 == NULL)
bd6d4177 469 return -ENOMEM;
bd6d4177 470
f0fba2ad 471 i2c_set_clientdata(client, wm8711);
f0fba2ad 472 wm8711->bus_type = SND_SOC_I2C;
bd6d4177 473
f0fba2ad
LG
474 ret = snd_soc_register_codec(&client->dev,
475 &soc_codec_dev_wm8711, &wm8711_dai, 1);
476 if (ret < 0)
477 kfree(wm8711);
478 return ret;
318b0b8d 479}
bd6d4177 480
318b0b8d
MB
481static __devexit int wm8711_i2c_remove(struct i2c_client *client)
482{
f0fba2ad
LG
483 snd_soc_unregister_codec(&client->dev);
484 kfree(i2c_get_clientdata(client));
bd6d4177
MA
485 return 0;
486}
487
318b0b8d
MB
488static const struct i2c_device_id wm8711_i2c_id[] = {
489 { "wm8711", 0 },
490 { }
bd6d4177 491};
318b0b8d
MB
492MODULE_DEVICE_TABLE(i2c, wm8711_i2c_id);
493
494static struct i2c_driver wm8711_i2c_driver = {
495 .driver = {
0473e61b 496 .name = "wm8711",
318b0b8d 497 .owner = THIS_MODULE,
1552c8f6 498 .of_match_table = wm8711_of_match,
318b0b8d
MB
499 },
500 .probe = wm8711_i2c_probe,
501 .remove = __devexit_p(wm8711_i2c_remove),
502 .id_table = wm8711_i2c_id,
503};
504#endif
bd6d4177
MA
505
506static int __init wm8711_modinit(void)
507{
318b0b8d
MB
508 int ret;
509#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
510 ret = i2c_add_driver(&wm8711_i2c_driver);
511 if (ret != 0) {
512 printk(KERN_ERR "Failed to register WM8711 I2C driver: %d\n",
513 ret);
514 }
08aff8cd
MB
515#endif
516#if defined(CONFIG_SPI_MASTER)
bb262767 517 ret = spi_register_driver(&wm8711_spi_driver);
08aff8cd 518 if (ret != 0) {
bb262767 519 printk(KERN_ERR "Failed to register WM8711 SPI driver: %d\n",
08aff8cd
MB
520 ret);
521 }
318b0b8d
MB
522#endif
523 return 0;
bd6d4177
MA
524}
525module_init(wm8711_modinit);
526
527static void __exit wm8711_exit(void)
528{
318b0b8d
MB
529#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
530 i2c_del_driver(&wm8711_i2c_driver);
531#endif
08aff8cd 532#if defined(CONFIG_SPI_MASTER)
bb262767 533 spi_unregister_driver(&wm8711_spi_driver);
08aff8cd 534#endif
bd6d4177
MA
535}
536module_exit(wm8711_exit);
537
538MODULE_DESCRIPTION("ASoC WM8711 driver");
539MODULE_AUTHOR("Mike Arthur");
540MODULE_LICENSE("GPL");