2 * wm8523.c -- WM8523 ALSA SoC Audio driver
4 * Copyright 2009 Wolfson Microelectronics plc
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
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.
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/delay.h>
19 #include <linux/i2c.h>
20 #include <linux/regmap.h>
21 #include <linux/regulator/consumer.h>
22 #include <linux/slab.h>
23 #include <linux/of_device.h>
24 #include <sound/core.h>
25 #include <sound/pcm.h>
26 #include <sound/pcm_params.h>
27 #include <sound/soc.h>
28 #include <sound/initval.h>
29 #include <sound/tlv.h>
33 #define WM8523_NUM_SUPPLIES 2
34 static const char *wm8523_supply_names
[WM8523_NUM_SUPPLIES
] = {
39 #define WM8523_NUM_RATES 7
41 /* codec private data */
43 struct regmap
*regmap
;
44 struct regulator_bulk_data supplies
[WM8523_NUM_SUPPLIES
];
46 unsigned int rate_constraint_list
[WM8523_NUM_RATES
];
47 struct snd_pcm_hw_constraint_list rate_constraint
;
50 static const struct reg_default wm8523_reg_defaults
[] = {
51 { 2, 0x0000 }, /* R2 - PSCTRL1 */
52 { 3, 0x1812 }, /* R3 - AIF_CTRL1 */
53 { 4, 0x0000 }, /* R4 - AIF_CTRL2 */
54 { 5, 0x0001 }, /* R5 - DAC_CTRL3 */
55 { 6, 0x0190 }, /* R6 - DAC_GAINL */
56 { 7, 0x0190 }, /* R7 - DAC_GAINR */
57 { 8, 0x0000 }, /* R8 - ZERO_DETECT */
60 static bool wm8523_volatile_register(struct device
*dev
, unsigned int reg
)
63 case WM8523_DEVICE_ID
:
71 static const DECLARE_TLV_DB_SCALE(dac_tlv
, -10000, 25, 0);
73 static const char *wm8523_zd_count_text
[] = {
78 static SOC_ENUM_SINGLE_DECL(wm8523_zc_count
, WM8523_ZERO_DETECT
, 0,
79 wm8523_zd_count_text
);
81 static const struct snd_kcontrol_new wm8523_controls
[] = {
82 SOC_DOUBLE_R_TLV("Playback Volume", WM8523_DAC_GAINL
, WM8523_DAC_GAINR
,
84 SOC_SINGLE("ZC Switch", WM8523_DAC_CTRL3
, 4, 1, 0),
85 SOC_SINGLE("Playback Deemphasis Switch", WM8523_AIF_CTRL1
, 8, 1, 0),
86 SOC_DOUBLE("Playback Switch", WM8523_DAC_CTRL3
, 2, 3, 1, 1),
87 SOC_SINGLE("Volume Ramp Up Switch", WM8523_DAC_CTRL3
, 1, 1, 0),
88 SOC_SINGLE("Volume Ramp Down Switch", WM8523_DAC_CTRL3
, 0, 1, 0),
89 SOC_ENUM("Zero Detect Count", wm8523_zc_count
),
92 static const struct snd_soc_dapm_widget wm8523_dapm_widgets
[] = {
93 SND_SOC_DAPM_DAC("DAC", "Playback", SND_SOC_NOPM
, 0, 0),
94 SND_SOC_DAPM_OUTPUT("LINEVOUTL"),
95 SND_SOC_DAPM_OUTPUT("LINEVOUTR"),
98 static const struct snd_soc_dapm_route wm8523_dapm_routes
[] = {
99 { "LINEVOUTL", NULL
, "DAC" },
100 { "LINEVOUTR", NULL
, "DAC" },
103 static const struct {
106 } lrclk_ratios
[WM8523_NUM_RATES
] = {
116 static const struct {
125 static int wm8523_startup(struct snd_pcm_substream
*substream
,
126 struct snd_soc_dai
*dai
)
128 struct snd_soc_codec
*codec
= dai
->codec
;
129 struct wm8523_priv
*wm8523
= snd_soc_codec_get_drvdata(codec
);
131 /* The set of sample rates that can be supported depends on the
132 * MCLK supplied to the CODEC - enforce this.
134 if (!wm8523
->sysclk
) {
136 "No MCLK configured, call set_sysclk() on init\n");
140 snd_pcm_hw_constraint_list(substream
->runtime
, 0,
141 SNDRV_PCM_HW_PARAM_RATE
,
142 &wm8523
->rate_constraint
);
147 static int wm8523_hw_params(struct snd_pcm_substream
*substream
,
148 struct snd_pcm_hw_params
*params
,
149 struct snd_soc_dai
*dai
)
151 struct snd_soc_codec
*codec
= dai
->codec
;
152 struct wm8523_priv
*wm8523
= snd_soc_codec_get_drvdata(codec
);
154 u16 aifctrl1
= snd_soc_read(codec
, WM8523_AIF_CTRL1
);
155 u16 aifctrl2
= snd_soc_read(codec
, WM8523_AIF_CTRL2
);
157 /* Find a supported LRCLK ratio */
158 for (i
= 0; i
< ARRAY_SIZE(lrclk_ratios
); i
++) {
159 if (wm8523
->sysclk
/ params_rate(params
) ==
160 lrclk_ratios
[i
].ratio
)
164 /* Should never happen, should be handled by constraints */
165 if (i
== ARRAY_SIZE(lrclk_ratios
)) {
166 dev_err(codec
->dev
, "MCLK/fs ratio %d unsupported\n",
167 wm8523
->sysclk
/ params_rate(params
));
171 aifctrl2
&= ~WM8523_SR_MASK
;
172 aifctrl2
|= lrclk_ratios
[i
].value
;
174 if (aifctrl1
& WM8523_AIF_MSTR
) {
175 /* Find a fs->bclk ratio */
176 for (i
= 0; i
< ARRAY_SIZE(bclk_ratios
); i
++)
177 if (params_width(params
) * 2 <= bclk_ratios
[i
].ratio
)
180 if (i
== ARRAY_SIZE(bclk_ratios
)) {
182 "No matching BCLK/fs ratio for word length %d\n",
183 params_width(params
));
187 aifctrl2
&= ~WM8523_BCLKDIV_MASK
;
188 aifctrl2
|= bclk_ratios
[i
].value
<< WM8523_BCLKDIV_SHIFT
;
191 aifctrl1
&= ~WM8523_WL_MASK
;
192 switch (params_width(params
)) {
206 snd_soc_write(codec
, WM8523_AIF_CTRL1
, aifctrl1
);
207 snd_soc_write(codec
, WM8523_AIF_CTRL2
, aifctrl2
);
212 static int wm8523_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
213 int clk_id
, unsigned int freq
, int dir
)
215 struct snd_soc_codec
*codec
= codec_dai
->codec
;
216 struct wm8523_priv
*wm8523
= snd_soc_codec_get_drvdata(codec
);
220 wm8523
->sysclk
= freq
;
222 wm8523
->rate_constraint
.count
= 0;
223 for (i
= 0; i
< ARRAY_SIZE(lrclk_ratios
); i
++) {
224 val
= freq
/ lrclk_ratios
[i
].ratio
;
225 /* Check that it's a standard rate since core can't
226 * cope with others and having the odd rates confuses
227 * constraint matching.
242 dev_dbg(codec
->dev
, "Supported sample rate: %dHz\n",
244 wm8523
->rate_constraint_list
[i
] = val
;
245 wm8523
->rate_constraint
.count
++;
248 dev_dbg(codec
->dev
, "Skipping sample rate: %dHz\n",
253 /* Need at least one supported rate... */
254 if (wm8523
->rate_constraint
.count
== 0)
261 static int wm8523_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
264 struct snd_soc_codec
*codec
= codec_dai
->codec
;
265 u16 aifctrl1
= snd_soc_read(codec
, WM8523_AIF_CTRL1
);
267 aifctrl1
&= ~(WM8523_BCLK_INV_MASK
| WM8523_LRCLK_INV_MASK
|
268 WM8523_FMT_MASK
| WM8523_AIF_MSTR_MASK
);
270 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
271 case SND_SOC_DAIFMT_CBM_CFM
:
272 aifctrl1
|= WM8523_AIF_MSTR
;
274 case SND_SOC_DAIFMT_CBS_CFS
:
280 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
281 case SND_SOC_DAIFMT_I2S
:
284 case SND_SOC_DAIFMT_RIGHT_J
:
286 case SND_SOC_DAIFMT_LEFT_J
:
289 case SND_SOC_DAIFMT_DSP_A
:
292 case SND_SOC_DAIFMT_DSP_B
:
299 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
300 case SND_SOC_DAIFMT_NB_NF
:
302 case SND_SOC_DAIFMT_IB_IF
:
303 aifctrl1
|= WM8523_BCLK_INV
| WM8523_LRCLK_INV
;
305 case SND_SOC_DAIFMT_IB_NF
:
306 aifctrl1
|= WM8523_BCLK_INV
;
308 case SND_SOC_DAIFMT_NB_IF
:
309 aifctrl1
|= WM8523_LRCLK_INV
;
315 snd_soc_write(codec
, WM8523_AIF_CTRL1
, aifctrl1
);
320 static int wm8523_set_bias_level(struct snd_soc_codec
*codec
,
321 enum snd_soc_bias_level level
)
323 struct wm8523_priv
*wm8523
= snd_soc_codec_get_drvdata(codec
);
327 case SND_SOC_BIAS_ON
:
330 case SND_SOC_BIAS_PREPARE
:
332 snd_soc_update_bits(codec
, WM8523_PSCTRL1
,
333 WM8523_SYS_ENA_MASK
, 3);
336 case SND_SOC_BIAS_STANDBY
:
337 if (snd_soc_codec_get_bias_level(codec
) == SND_SOC_BIAS_OFF
) {
338 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8523
->supplies
),
342 "Failed to enable supplies: %d\n",
347 /* Sync back default/cached values */
348 regcache_sync(wm8523
->regmap
);
350 /* Initial power up */
351 snd_soc_update_bits(codec
, WM8523_PSCTRL1
,
352 WM8523_SYS_ENA_MASK
, 1);
357 /* Power up to mute */
358 snd_soc_update_bits(codec
, WM8523_PSCTRL1
,
359 WM8523_SYS_ENA_MASK
, 2);
363 case SND_SOC_BIAS_OFF
:
364 /* The chip runs through the power down sequence for us. */
365 snd_soc_update_bits(codec
, WM8523_PSCTRL1
,
366 WM8523_SYS_ENA_MASK
, 0);
369 regulator_bulk_disable(ARRAY_SIZE(wm8523
->supplies
),
376 #define WM8523_RATES SNDRV_PCM_RATE_8000_192000
378 #define WM8523_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
379 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
381 static const struct snd_soc_dai_ops wm8523_dai_ops
= {
382 .startup
= wm8523_startup
,
383 .hw_params
= wm8523_hw_params
,
384 .set_sysclk
= wm8523_set_dai_sysclk
,
385 .set_fmt
= wm8523_set_dai_fmt
,
388 static struct snd_soc_dai_driver wm8523_dai
= {
389 .name
= "wm8523-hifi",
391 .stream_name
= "Playback",
392 .channels_min
= 2, /* Mono modes not yet supported */
394 .rates
= WM8523_RATES
,
395 .formats
= WM8523_FORMATS
,
397 .ops
= &wm8523_dai_ops
,
400 static int wm8523_probe(struct snd_soc_codec
*codec
)
402 struct wm8523_priv
*wm8523
= snd_soc_codec_get_drvdata(codec
);
404 wm8523
->rate_constraint
.list
= &wm8523
->rate_constraint_list
[0];
405 wm8523
->rate_constraint
.count
=
406 ARRAY_SIZE(wm8523
->rate_constraint_list
);
408 /* Change some default settings - latch VU and enable ZC */
409 snd_soc_update_bits(codec
, WM8523_DAC_GAINR
,
410 WM8523_DACR_VU
, WM8523_DACR_VU
);
411 snd_soc_update_bits(codec
, WM8523_DAC_CTRL3
, WM8523_ZC
, WM8523_ZC
);
416 static const struct snd_soc_codec_driver soc_codec_dev_wm8523
= {
417 .probe
= wm8523_probe
,
418 .set_bias_level
= wm8523_set_bias_level
,
419 .suspend_bias_off
= true,
421 .component_driver
= {
422 .controls
= wm8523_controls
,
423 .num_controls
= ARRAY_SIZE(wm8523_controls
),
424 .dapm_widgets
= wm8523_dapm_widgets
,
425 .num_dapm_widgets
= ARRAY_SIZE(wm8523_dapm_widgets
),
426 .dapm_routes
= wm8523_dapm_routes
,
427 .num_dapm_routes
= ARRAY_SIZE(wm8523_dapm_routes
),
431 static const struct of_device_id wm8523_of_match
[] = {
432 { .compatible
= "wlf,wm8523" },
435 MODULE_DEVICE_TABLE(of
, wm8523_of_match
);
437 static const struct regmap_config wm8523_regmap
= {
440 .max_register
= WM8523_ZERO_DETECT
,
442 .reg_defaults
= wm8523_reg_defaults
,
443 .num_reg_defaults
= ARRAY_SIZE(wm8523_reg_defaults
),
444 .cache_type
= REGCACHE_RBTREE
,
446 .volatile_reg
= wm8523_volatile_register
,
449 static int wm8523_i2c_probe(struct i2c_client
*i2c
,
450 const struct i2c_device_id
*id
)
452 struct wm8523_priv
*wm8523
;
456 wm8523
= devm_kzalloc(&i2c
->dev
, sizeof(struct wm8523_priv
),
461 wm8523
->regmap
= devm_regmap_init_i2c(i2c
, &wm8523_regmap
);
462 if (IS_ERR(wm8523
->regmap
)) {
463 ret
= PTR_ERR(wm8523
->regmap
);
464 dev_err(&i2c
->dev
, "Failed to create regmap: %d\n", ret
);
468 for (i
= 0; i
< ARRAY_SIZE(wm8523
->supplies
); i
++)
469 wm8523
->supplies
[i
].supply
= wm8523_supply_names
[i
];
471 ret
= devm_regulator_bulk_get(&i2c
->dev
, ARRAY_SIZE(wm8523
->supplies
),
474 dev_err(&i2c
->dev
, "Failed to request supplies: %d\n", ret
);
478 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8523
->supplies
),
481 dev_err(&i2c
->dev
, "Failed to enable supplies: %d\n", ret
);
485 ret
= regmap_read(wm8523
->regmap
, WM8523_DEVICE_ID
, &val
);
487 dev_err(&i2c
->dev
, "Failed to read ID register\n");
491 dev_err(&i2c
->dev
, "Device is not a WM8523, ID is %x\n", ret
);
496 ret
= regmap_read(wm8523
->regmap
, WM8523_REVISION
, &val
);
498 dev_err(&i2c
->dev
, "Failed to read revision register\n");
501 dev_info(&i2c
->dev
, "revision %c\n",
502 (val
& WM8523_CHIP_REV_MASK
) + 'A');
504 ret
= regmap_write(wm8523
->regmap
, WM8523_DEVICE_ID
, 0x8523);
506 dev_err(&i2c
->dev
, "Failed to reset device: %d\n", ret
);
510 regulator_bulk_disable(ARRAY_SIZE(wm8523
->supplies
), wm8523
->supplies
);
512 i2c_set_clientdata(i2c
, wm8523
);
514 ret
= snd_soc_register_codec(&i2c
->dev
,
515 &soc_codec_dev_wm8523
, &wm8523_dai
, 1);
520 regulator_bulk_disable(ARRAY_SIZE(wm8523
->supplies
), wm8523
->supplies
);
524 static int wm8523_i2c_remove(struct i2c_client
*client
)
526 snd_soc_unregister_codec(&client
->dev
);
530 static const struct i2c_device_id wm8523_i2c_id
[] = {
534 MODULE_DEVICE_TABLE(i2c
, wm8523_i2c_id
);
536 static struct i2c_driver wm8523_i2c_driver
= {
539 .of_match_table
= wm8523_of_match
,
541 .probe
= wm8523_i2c_probe
,
542 .remove
= wm8523_i2c_remove
,
543 .id_table
= wm8523_i2c_id
,
546 module_i2c_driver(wm8523_i2c_driver
);
548 MODULE_DESCRIPTION("ASoC WM8523 driver");
549 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
550 MODULE_LICENSE("GPL");