2 * cs35l32.c -- CS35L32 ALSA SoC audio driver
4 * Copyright 2014 CirrusLogic, Inc.
6 * Author: Brian Austin <brian.austin@cirrus.com>
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.
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/i2c.h>
20 #include <linux/gpio.h>
21 #include <linux/regmap.h>
22 #include <linux/slab.h>
23 #include <linux/platform_device.h>
24 #include <linux/regulator/consumer.h>
25 #include <linux/gpio/consumer.h>
26 #include <linux/of_device.h>
27 #include <sound/core.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/soc.h>
31 #include <sound/soc-dapm.h>
32 #include <sound/initval.h>
33 #include <sound/tlv.h>
34 #include <dt-bindings/sound/cs35l32.h>
38 #define CS35L32_NUM_SUPPLIES 2
39 static const char *const cs35l32_supply_names
[CS35L32_NUM_SUPPLIES
] = {
44 struct cs35l32_private
{
45 struct regmap
*regmap
;
46 struct snd_soc_codec
*codec
;
47 struct regulator_bulk_data supplies
[CS35L32_NUM_SUPPLIES
];
48 struct cs35l32_platform_data pdata
;
49 struct gpio_desc
*reset_gpio
;
52 static const struct reg_default cs35l32_reg_defaults
[] = {
54 { 0x06, 0x04 }, /* Power Ctl 1 */
55 { 0x07, 0xE8 }, /* Power Ctl 2 */
56 { 0x08, 0x40 }, /* Clock Ctl */
57 { 0x09, 0x20 }, /* Low Battery Threshold */
58 { 0x0A, 0x00 }, /* Voltage Monitor [RO] */
59 { 0x0B, 0x40 }, /* Conv Peak Curr Protection CTL */
60 { 0x0C, 0x07 }, /* IMON Scaling */
61 { 0x0D, 0x03 }, /* Audio/LED Pwr Manager */
62 { 0x0F, 0x20 }, /* Serial Port Control */
63 { 0x10, 0x14 }, /* Class D Amp CTL */
64 { 0x11, 0x00 }, /* Protection Release CTL */
65 { 0x12, 0xFF }, /* Interrupt Mask 1 */
66 { 0x13, 0xFF }, /* Interrupt Mask 2 */
67 { 0x14, 0xFF }, /* Interrupt Mask 3 */
68 { 0x19, 0x00 }, /* LED Flash Mode Current */
69 { 0x1A, 0x00 }, /* LED Movie Mode Current */
70 { 0x1B, 0x20 }, /* LED Flash Timer */
71 { 0x1C, 0x00 }, /* LED Flash Inhibit Current */
74 static bool cs35l32_readable_register(struct device
*dev
, unsigned int reg
)
77 case CS35L32_DEVID_AB
... CS35L32_AUDIO_LED_MNGR
:
78 case CS35L32_ADSP_CTL
... CS35L32_FLASH_INHIBIT
:
85 static bool cs35l32_volatile_register(struct device
*dev
, unsigned int reg
)
88 case CS35L32_DEVID_AB
... CS35L32_REV_ID
:
89 case CS35L32_INT_STATUS_1
... CS35L32_LED_STATUS
:
96 static bool cs35l32_precious_register(struct device
*dev
, unsigned int reg
)
99 case CS35L32_INT_STATUS_1
... CS35L32_LED_STATUS
:
106 static DECLARE_TLV_DB_SCALE(classd_ctl_tlv
, 900, 300, 0);
108 static const struct snd_kcontrol_new imon_ctl
=
109 SOC_DAPM_SINGLE("Switch", CS35L32_PWRCTL2
, 6, 1, 1);
111 static const struct snd_kcontrol_new vmon_ctl
=
112 SOC_DAPM_SINGLE("Switch", CS35L32_PWRCTL2
, 7, 1, 1);
114 static const struct snd_kcontrol_new vpmon_ctl
=
115 SOC_DAPM_SINGLE("Switch", CS35L32_PWRCTL2
, 5, 1, 1);
117 static const struct snd_kcontrol_new cs35l32_snd_controls
[] = {
118 SOC_SINGLE_TLV("Speaker Volume", CS35L32_CLASSD_CTL
,
119 3, 0x04, 1, classd_ctl_tlv
),
120 SOC_SINGLE("Zero Cross Switch", CS35L32_CLASSD_CTL
, 2, 1, 0),
121 SOC_SINGLE("Gain Manager Switch", CS35L32_AUDIO_LED_MNGR
, 3, 1, 0),
124 static const struct snd_soc_dapm_widget cs35l32_dapm_widgets
[] = {
126 SND_SOC_DAPM_SUPPLY("BOOST", CS35L32_PWRCTL1
, 2, 1, NULL
, 0),
127 SND_SOC_DAPM_OUT_DRV("Speaker", CS35L32_PWRCTL1
, 7, 1, NULL
, 0),
129 SND_SOC_DAPM_AIF_OUT("SDOUT", NULL
, 0, CS35L32_PWRCTL2
, 3, 1),
131 SND_SOC_DAPM_INPUT("VP"),
132 SND_SOC_DAPM_INPUT("ISENSE"),
133 SND_SOC_DAPM_INPUT("VSENSE"),
135 SND_SOC_DAPM_SWITCH("VMON ADC", CS35L32_PWRCTL2
, 7, 1, &vmon_ctl
),
136 SND_SOC_DAPM_SWITCH("IMON ADC", CS35L32_PWRCTL2
, 6, 1, &imon_ctl
),
137 SND_SOC_DAPM_SWITCH("VPMON ADC", CS35L32_PWRCTL2
, 5, 1, &vpmon_ctl
),
140 static const struct snd_soc_dapm_route cs35l32_audio_map
[] = {
142 {"Speaker", NULL
, "BOOST"},
144 {"VMON ADC", NULL
, "VSENSE"},
145 {"IMON ADC", NULL
, "ISENSE"},
146 {"VPMON ADC", NULL
, "VP"},
148 {"SDOUT", "Switch", "VMON ADC"},
149 {"SDOUT", "Switch", "IMON ADC"},
150 {"SDOUT", "Switch", "VPMON ADC"},
152 {"Capture", NULL
, "SDOUT"},
155 static int cs35l32_set_dai_fmt(struct snd_soc_dai
*codec_dai
, unsigned int fmt
)
157 struct snd_soc_codec
*codec
= codec_dai
->codec
;
159 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
160 case SND_SOC_DAIFMT_CBM_CFM
:
161 snd_soc_update_bits(codec
, CS35L32_ADSP_CTL
,
162 CS35L32_ADSP_MASTER_MASK
,
163 CS35L32_ADSP_MASTER_MASK
);
165 case SND_SOC_DAIFMT_CBS_CFS
:
166 snd_soc_update_bits(codec
, CS35L32_ADSP_CTL
,
167 CS35L32_ADSP_MASTER_MASK
, 0);
176 static int cs35l32_set_tristate(struct snd_soc_dai
*dai
, int tristate
)
178 struct snd_soc_codec
*codec
= dai
->codec
;
180 return snd_soc_update_bits(codec
, CS35L32_PWRCTL2
,
181 CS35L32_SDOUT_3ST
, tristate
<< 3);
184 static const struct snd_soc_dai_ops cs35l32_ops
= {
185 .set_fmt
= cs35l32_set_dai_fmt
,
186 .set_tristate
= cs35l32_set_tristate
,
189 static struct snd_soc_dai_driver cs35l32_dai
[] = {
191 .name
= "cs35l32-monitor",
194 .stream_name
= "Capture",
197 .rates
= CS35L32_RATES
,
198 .formats
= CS35L32_FORMATS
,
201 .symmetric_rates
= 1,
205 static int cs35l32_codec_set_sysclk(struct snd_soc_codec
*codec
,
206 int clk_id
, int source
, unsigned int freq
, int dir
)
212 val
= CS35L32_MCLK_RATIO
;
215 val
= CS35L32_MCLK_DIV2_MASK
| CS35L32_MCLK_RATIO
;
221 val
= CS35L32_MCLK_DIV2_MASK
;
227 return snd_soc_update_bits(codec
, CS35L32_CLK_CTL
,
228 CS35L32_MCLK_DIV2_MASK
| CS35L32_MCLK_RATIO_MASK
, val
);
231 static const struct snd_soc_codec_driver soc_codec_dev_cs35l32
= {
232 .set_sysclk
= cs35l32_codec_set_sysclk
,
234 .dapm_widgets
= cs35l32_dapm_widgets
,
235 .num_dapm_widgets
= ARRAY_SIZE(cs35l32_dapm_widgets
),
236 .dapm_routes
= cs35l32_audio_map
,
237 .num_dapm_routes
= ARRAY_SIZE(cs35l32_audio_map
),
239 .controls
= cs35l32_snd_controls
,
240 .num_controls
= ARRAY_SIZE(cs35l32_snd_controls
),
243 /* Current and threshold powerup sequence Pg37 in datasheet */
244 static const struct reg_sequence cs35l32_monitor_patch
[] = {
255 static const struct regmap_config cs35l32_regmap
= {
259 .max_register
= CS35L32_MAX_REGISTER
,
260 .reg_defaults
= cs35l32_reg_defaults
,
261 .num_reg_defaults
= ARRAY_SIZE(cs35l32_reg_defaults
),
262 .volatile_reg
= cs35l32_volatile_register
,
263 .readable_reg
= cs35l32_readable_register
,
264 .precious_reg
= cs35l32_precious_register
,
265 .cache_type
= REGCACHE_RBTREE
,
268 static int cs35l32_handle_of_data(struct i2c_client
*i2c_client
,
269 struct cs35l32_platform_data
*pdata
)
271 struct device_node
*np
= i2c_client
->dev
.of_node
;
274 if (of_property_read_u32(np
, "cirrus,sdout-share", &val
) >= 0)
275 pdata
->sdout_share
= val
;
277 of_property_read_u32(np
, "cirrus,boost-manager", &val
);
279 case CS35L32_BOOST_MGR_AUTO
:
280 case CS35L32_BOOST_MGR_AUTO_AUDIO
:
281 case CS35L32_BOOST_MGR_BYPASS
:
282 case CS35L32_BOOST_MGR_FIXED
:
283 pdata
->boost_mng
= val
;
286 dev_err(&i2c_client
->dev
,
287 "Wrong cirrus,boost-manager DT value %d\n", val
);
288 pdata
->boost_mng
= CS35L32_BOOST_MGR_BYPASS
;
291 of_property_read_u32(np
, "cirrus,sdout-datacfg", &val
);
293 case CS35L32_DATA_CFG_LR_VP
:
294 case CS35L32_DATA_CFG_LR_STAT
:
295 case CS35L32_DATA_CFG_LR
:
296 case CS35L32_DATA_CFG_LR_VPSTAT
:
297 pdata
->sdout_datacfg
= val
;
300 dev_err(&i2c_client
->dev
,
301 "Wrong cirrus,sdout-datacfg DT value %d\n", val
);
302 pdata
->sdout_datacfg
= CS35L32_DATA_CFG_LR
;
305 of_property_read_u32(np
, "cirrus,battery-threshold", &val
);
307 case CS35L32_BATT_THRESH_3_1V
:
308 case CS35L32_BATT_THRESH_3_2V
:
309 case CS35L32_BATT_THRESH_3_3V
:
310 case CS35L32_BATT_THRESH_3_4V
:
311 pdata
->batt_thresh
= val
;
314 dev_err(&i2c_client
->dev
,
315 "Wrong cirrus,battery-threshold DT value %d\n", val
);
316 pdata
->batt_thresh
= CS35L32_BATT_THRESH_3_3V
;
319 of_property_read_u32(np
, "cirrus,battery-recovery", &val
);
321 case CS35L32_BATT_RECOV_3_1V
:
322 case CS35L32_BATT_RECOV_3_2V
:
323 case CS35L32_BATT_RECOV_3_3V
:
324 case CS35L32_BATT_RECOV_3_4V
:
325 case CS35L32_BATT_RECOV_3_5V
:
326 case CS35L32_BATT_RECOV_3_6V
:
327 pdata
->batt_recov
= val
;
330 dev_err(&i2c_client
->dev
,
331 "Wrong cirrus,battery-recovery DT value %d\n", val
);
332 pdata
->batt_recov
= CS35L32_BATT_RECOV_3_4V
;
338 static int cs35l32_i2c_probe(struct i2c_client
*i2c_client
,
339 const struct i2c_device_id
*id
)
341 struct cs35l32_private
*cs35l32
;
342 struct cs35l32_platform_data
*pdata
=
343 dev_get_platdata(&i2c_client
->dev
);
345 unsigned int devid
= 0;
349 cs35l32
= devm_kzalloc(&i2c_client
->dev
, sizeof(struct cs35l32_private
),
352 dev_err(&i2c_client
->dev
, "could not allocate codec\n");
356 i2c_set_clientdata(i2c_client
, cs35l32
);
358 cs35l32
->regmap
= devm_regmap_init_i2c(i2c_client
, &cs35l32_regmap
);
359 if (IS_ERR(cs35l32
->regmap
)) {
360 ret
= PTR_ERR(cs35l32
->regmap
);
361 dev_err(&i2c_client
->dev
, "regmap_init() failed: %d\n", ret
);
366 cs35l32
->pdata
= *pdata
;
368 pdata
= devm_kzalloc(&i2c_client
->dev
,
369 sizeof(struct cs35l32_platform_data
),
372 dev_err(&i2c_client
->dev
, "could not allocate pdata\n");
375 if (i2c_client
->dev
.of_node
) {
376 ret
= cs35l32_handle_of_data(i2c_client
,
383 for (i
= 0; i
< ARRAY_SIZE(cs35l32
->supplies
); i
++)
384 cs35l32
->supplies
[i
].supply
= cs35l32_supply_names
[i
];
386 ret
= devm_regulator_bulk_get(&i2c_client
->dev
,
387 ARRAY_SIZE(cs35l32
->supplies
),
390 dev_err(&i2c_client
->dev
,
391 "Failed to request supplies: %d\n", ret
);
395 ret
= regulator_bulk_enable(ARRAY_SIZE(cs35l32
->supplies
),
398 dev_err(&i2c_client
->dev
,
399 "Failed to enable supplies: %d\n", ret
);
403 /* Reset the Device */
404 cs35l32
->reset_gpio
= devm_gpiod_get_optional(&i2c_client
->dev
,
405 "reset", GPIOD_OUT_LOW
);
406 if (IS_ERR(cs35l32
->reset_gpio
))
407 return PTR_ERR(cs35l32
->reset_gpio
);
409 gpiod_set_value_cansleep(cs35l32
->reset_gpio
, 1);
411 /* initialize codec */
412 ret
= regmap_read(cs35l32
->regmap
, CS35L32_DEVID_AB
, ®
);
413 devid
= (reg
& 0xFF) << 12;
415 ret
= regmap_read(cs35l32
->regmap
, CS35L32_DEVID_CD
, ®
);
416 devid
|= (reg
& 0xFF) << 4;
418 ret
= regmap_read(cs35l32
->regmap
, CS35L32_DEVID_E
, ®
);
419 devid
|= (reg
& 0xF0) >> 4;
421 if (devid
!= CS35L32_CHIP_ID
) {
423 dev_err(&i2c_client
->dev
,
424 "CS35L32 Device ID (%X). Expected %X\n",
425 devid
, CS35L32_CHIP_ID
);
429 ret
= regmap_read(cs35l32
->regmap
, CS35L32_REV_ID
, ®
);
431 dev_err(&i2c_client
->dev
, "Get Revision ID failed\n");
435 ret
= regmap_register_patch(cs35l32
->regmap
, cs35l32_monitor_patch
,
436 ARRAY_SIZE(cs35l32_monitor_patch
));
438 dev_err(&i2c_client
->dev
, "Failed to apply errata patch\n");
442 dev_info(&i2c_client
->dev
,
443 "Cirrus Logic CS35L32, Revision: %02X\n", reg
& 0xFF);
445 /* Setup VBOOST Management */
446 if (cs35l32
->pdata
.boost_mng
)
447 regmap_update_bits(cs35l32
->regmap
, CS35L32_AUDIO_LED_MNGR
,
449 cs35l32
->pdata
.boost_mng
);
451 /* Setup ADSP Format Config */
452 if (cs35l32
->pdata
.sdout_share
)
453 regmap_update_bits(cs35l32
->regmap
, CS35L32_ADSP_CTL
,
454 CS35L32_ADSP_SHARE_MASK
,
455 cs35l32
->pdata
.sdout_share
<< 3);
457 /* Setup ADSP Data Configuration */
458 if (cs35l32
->pdata
.sdout_datacfg
)
459 regmap_update_bits(cs35l32
->regmap
, CS35L32_ADSP_CTL
,
460 CS35L32_ADSP_DATACFG_MASK
,
461 cs35l32
->pdata
.sdout_datacfg
<< 4);
463 /* Setup Low Battery Recovery */
464 if (cs35l32
->pdata
.batt_recov
)
465 regmap_update_bits(cs35l32
->regmap
, CS35L32_BATT_THRESHOLD
,
466 CS35L32_BATT_REC_MASK
,
467 cs35l32
->pdata
.batt_recov
<< 1);
469 /* Setup Low Battery Threshold */
470 if (cs35l32
->pdata
.batt_thresh
)
471 regmap_update_bits(cs35l32
->regmap
, CS35L32_BATT_THRESHOLD
,
472 CS35L32_BATT_THRESH_MASK
,
473 cs35l32
->pdata
.batt_thresh
<< 4);
475 /* Power down the AMP */
476 regmap_update_bits(cs35l32
->regmap
, CS35L32_PWRCTL1
, CS35L32_PDN_AMP
,
479 /* Clear MCLK Error Bit since we don't have the clock yet */
480 ret
= regmap_read(cs35l32
->regmap
, CS35L32_INT_STATUS_1
, ®
);
482 ret
= snd_soc_register_codec(&i2c_client
->dev
,
483 &soc_codec_dev_cs35l32
, cs35l32_dai
,
484 ARRAY_SIZE(cs35l32_dai
));
491 regulator_bulk_disable(ARRAY_SIZE(cs35l32
->supplies
),
496 static int cs35l32_i2c_remove(struct i2c_client
*i2c_client
)
498 struct cs35l32_private
*cs35l32
= i2c_get_clientdata(i2c_client
);
500 snd_soc_unregister_codec(&i2c_client
->dev
);
502 /* Hold down reset */
503 gpiod_set_value_cansleep(cs35l32
->reset_gpio
, 0);
509 static int cs35l32_runtime_suspend(struct device
*dev
)
511 struct cs35l32_private
*cs35l32
= dev_get_drvdata(dev
);
513 regcache_cache_only(cs35l32
->regmap
, true);
514 regcache_mark_dirty(cs35l32
->regmap
);
516 /* Hold down reset */
517 gpiod_set_value_cansleep(cs35l32
->reset_gpio
, 0);
520 regulator_bulk_disable(ARRAY_SIZE(cs35l32
->supplies
),
526 static int cs35l32_runtime_resume(struct device
*dev
)
528 struct cs35l32_private
*cs35l32
= dev_get_drvdata(dev
);
532 ret
= regulator_bulk_enable(ARRAY_SIZE(cs35l32
->supplies
),
535 dev_err(dev
, "Failed to enable supplies: %d\n",
540 gpiod_set_value_cansleep(cs35l32
->reset_gpio
, 1);
542 regcache_cache_only(cs35l32
->regmap
, false);
543 regcache_sync(cs35l32
->regmap
);
549 static const struct dev_pm_ops cs35l32_runtime_pm
= {
550 SET_RUNTIME_PM_OPS(cs35l32_runtime_suspend
, cs35l32_runtime_resume
,
554 static const struct of_device_id cs35l32_of_match
[] = {
555 { .compatible
= "cirrus,cs35l32", },
558 MODULE_DEVICE_TABLE(of
, cs35l32_of_match
);
561 static const struct i2c_device_id cs35l32_id
[] = {
566 MODULE_DEVICE_TABLE(i2c
, cs35l32_id
);
568 static struct i2c_driver cs35l32_i2c_driver
= {
571 .pm
= &cs35l32_runtime_pm
,
572 .of_match_table
= cs35l32_of_match
,
574 .id_table
= cs35l32_id
,
575 .probe
= cs35l32_i2c_probe
,
576 .remove
= cs35l32_i2c_remove
,
579 module_i2c_driver(cs35l32_i2c_driver
);
581 MODULE_DESCRIPTION("ASoC CS35L32 driver");
582 MODULE_AUTHOR("Brian Austin, Cirrus Logic Inc, <brian.austin@cirrus.com>");
583 MODULE_LICENSE("GPL");