1 // SPDX-License-Identifier: GPL-2.0
3 * ALSA SoC Texas Instruments TAS6424 Quad-Channel Audio Amplifier
5 * Copyright (C) 2016-2017 Texas Instruments Incorporated - http://www.ti.com/
6 * Author: Andreas Dannenberg <dannenberg@ti.com>
7 * Andrew F. Davis <afd@ti.com>
10 #include <linux/module.h>
11 #include <linux/errno.h>
12 #include <linux/device.h>
13 #include <linux/i2c.h>
14 #include <linux/pm_runtime.h>
15 #include <linux/regmap.h>
16 #include <linux/slab.h>
17 #include <linux/regulator/consumer.h>
18 #include <linux/delay.h>
19 #include <linux/gpio/consumer.h>
21 #include <sound/pcm.h>
22 #include <sound/pcm_params.h>
23 #include <sound/soc.h>
24 #include <sound/soc-dapm.h>
25 #include <sound/tlv.h>
29 /* Define how often to check (and clear) the fault status register (in ms) */
30 #define TAS6424_FAULT_CHECK_INTERVAL 200
32 static const char * const tas6424_supply_names
[] = {
33 "dvdd", /* Digital power supply. Connect to 3.3-V supply. */
34 "vbat", /* Supply used for higher voltage analog circuits. */
35 "pvdd", /* Class-D amp output FETs supply. */
37 #define TAS6424_NUM_SUPPLIES ARRAY_SIZE(tas6424_supply_names)
41 struct regmap
*regmap
;
42 struct regulator_bulk_data supplies
[TAS6424_NUM_SUPPLIES
];
43 struct delayed_work fault_check_work
;
44 unsigned int last_cfault
;
45 unsigned int last_fault1
;
46 unsigned int last_fault2
;
47 unsigned int last_warn
;
48 struct gpio_desc
*standby_gpio
;
49 struct gpio_desc
*mute_gpio
;
53 * DAC digital volumes. From -103.5 to 24 dB in 0.5 dB steps. Note that
54 * setting the gain below -100 dB (register value <0x7) is effectively a MUTE
55 * as per device datasheet.
57 static DECLARE_TLV_DB_SCALE(dac_tlv
, -10350, 50, 0);
59 static const struct snd_kcontrol_new tas6424_snd_controls
[] = {
60 SOC_SINGLE_TLV("Speaker Driver CH1 Playback Volume",
61 TAS6424_CH1_VOL_CTRL
, 0, 0xff, 0, dac_tlv
),
62 SOC_SINGLE_TLV("Speaker Driver CH2 Playback Volume",
63 TAS6424_CH2_VOL_CTRL
, 0, 0xff, 0, dac_tlv
),
64 SOC_SINGLE_TLV("Speaker Driver CH3 Playback Volume",
65 TAS6424_CH3_VOL_CTRL
, 0, 0xff, 0, dac_tlv
),
66 SOC_SINGLE_TLV("Speaker Driver CH4 Playback Volume",
67 TAS6424_CH4_VOL_CTRL
, 0, 0xff, 0, dac_tlv
),
68 SOC_SINGLE_STROBE("Auto Diagnostics Switch", TAS6424_DC_DIAG_CTRL1
,
69 TAS6424_LDGBYPASS_SHIFT
, 1),
72 static int tas6424_dac_event(struct snd_soc_dapm_widget
*w
,
73 struct snd_kcontrol
*kcontrol
, int event
)
75 struct snd_soc_component
*component
= snd_soc_dapm_to_component(w
->dapm
);
76 struct tas6424_data
*tas6424
= snd_soc_component_get_drvdata(component
);
78 dev_dbg(component
->dev
, "%s() event=0x%0x\n", __func__
, event
);
80 if (event
& SND_SOC_DAPM_POST_PMU
) {
81 /* Observe codec shutdown-to-active time */
84 /* Turn on TAS6424 periodic fault checking/handling */
85 tas6424
->last_fault1
= 0;
86 tas6424
->last_fault2
= 0;
87 tas6424
->last_warn
= 0;
88 schedule_delayed_work(&tas6424
->fault_check_work
,
89 msecs_to_jiffies(TAS6424_FAULT_CHECK_INTERVAL
));
90 } else if (event
& SND_SOC_DAPM_PRE_PMD
) {
91 /* Disable TAS6424 periodic fault checking/handling */
92 cancel_delayed_work_sync(&tas6424
->fault_check_work
);
98 static const struct snd_soc_dapm_widget tas6424_dapm_widgets
[] = {
99 SND_SOC_DAPM_AIF_IN("DAC IN", "Playback", 0, SND_SOC_NOPM
, 0, 0),
100 SND_SOC_DAPM_DAC_E("DAC", NULL
, SND_SOC_NOPM
, 0, 0, tas6424_dac_event
,
101 SND_SOC_DAPM_POST_PMU
| SND_SOC_DAPM_PRE_PMD
),
102 SND_SOC_DAPM_OUTPUT("OUT")
105 static const struct snd_soc_dapm_route tas6424_audio_map
[] = {
106 { "DAC", NULL
, "DAC IN" },
107 { "OUT", NULL
, "DAC" },
110 static int tas6424_hw_params(struct snd_pcm_substream
*substream
,
111 struct snd_pcm_hw_params
*params
,
112 struct snd_soc_dai
*dai
)
114 struct snd_soc_component
*component
= dai
->component
;
115 unsigned int rate
= params_rate(params
);
116 unsigned int width
= params_width(params
);
119 dev_dbg(component
->dev
, "%s() rate=%u width=%u\n", __func__
, rate
, width
);
123 sap_ctrl
|= TAS6424_SAP_RATE_44100
;
126 sap_ctrl
|= TAS6424_SAP_RATE_48000
;
129 sap_ctrl
|= TAS6424_SAP_RATE_96000
;
132 dev_err(component
->dev
, "unsupported sample rate: %u\n", rate
);
138 sap_ctrl
|= TAS6424_SAP_TDM_SLOT_SZ_16
;
143 dev_err(component
->dev
, "unsupported sample width: %u\n", width
);
147 snd_soc_component_update_bits(component
, TAS6424_SAP_CTRL
,
148 TAS6424_SAP_RATE_MASK
|
149 TAS6424_SAP_TDM_SLOT_SZ_16
,
155 static int tas6424_set_dai_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
157 struct snd_soc_component
*component
= dai
->component
;
158 u8 serial_format
= 0;
160 dev_dbg(component
->dev
, "%s() fmt=0x%0x\n", __func__
, fmt
);
163 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
164 case SND_SOC_DAIFMT_CBS_CFS
:
167 dev_err(component
->dev
, "Invalid DAI master/slave interface\n");
171 /* signal polarity */
172 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
173 case SND_SOC_DAIFMT_NB_NF
:
176 dev_err(component
->dev
, "Invalid DAI clock signal polarity\n");
180 /* interface format */
181 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
182 case SND_SOC_DAIFMT_I2S
:
183 serial_format
|= TAS6424_SAP_I2S
;
185 case SND_SOC_DAIFMT_DSP_A
:
186 serial_format
|= TAS6424_SAP_DSP
;
188 case SND_SOC_DAIFMT_DSP_B
:
190 * We can use the fact that the TAS6424 does not care about the
191 * LRCLK duty cycle during TDM to receive DSP_B formatted data
192 * in LEFTJ mode (no delaying of the 1st data bit).
194 serial_format
|= TAS6424_SAP_LEFTJ
;
196 case SND_SOC_DAIFMT_LEFT_J
:
197 serial_format
|= TAS6424_SAP_LEFTJ
;
200 dev_err(component
->dev
, "Invalid DAI interface format\n");
204 snd_soc_component_update_bits(component
, TAS6424_SAP_CTRL
,
205 TAS6424_SAP_FMT_MASK
, serial_format
);
210 static int tas6424_set_dai_tdm_slot(struct snd_soc_dai
*dai
,
211 unsigned int tx_mask
, unsigned int rx_mask
,
212 int slots
, int slot_width
)
214 struct snd_soc_component
*component
= dai
->component
;
215 unsigned int first_slot
, last_slot
;
216 bool sap_tdm_slot_last
;
218 dev_dbg(component
->dev
, "%s() tx_mask=%d rx_mask=%d\n", __func__
,
221 if (!tx_mask
|| !rx_mask
)
222 return 0; /* nothing needed to disable TDM mode */
225 * Determine the first slot and last slot that is being requested so
226 * we'll be able to more easily enforce certain constraints as the
227 * TAS6424's TDM interface is not fully configurable.
229 first_slot
= __ffs(tx_mask
);
230 last_slot
= __fls(rx_mask
);
232 if (last_slot
- first_slot
!= 4) {
233 dev_err(component
->dev
, "tdm mask must cover 4 contiguous slots\n");
237 switch (first_slot
) {
239 sap_tdm_slot_last
= false;
242 sap_tdm_slot_last
= true;
245 dev_err(component
->dev
, "tdm mask must start at slot 0 or 4\n");
249 snd_soc_component_update_bits(component
, TAS6424_SAP_CTRL
, TAS6424_SAP_TDM_SLOT_LAST
,
250 sap_tdm_slot_last
? TAS6424_SAP_TDM_SLOT_LAST
: 0);
255 static int tas6424_mute(struct snd_soc_dai
*dai
, int mute
)
257 struct snd_soc_component
*component
= dai
->component
;
258 struct tas6424_data
*tas6424
= snd_soc_component_get_drvdata(component
);
261 dev_dbg(component
->dev
, "%s() mute=%d\n", __func__
, mute
);
263 if (tas6424
->mute_gpio
) {
264 gpiod_set_value_cansleep(tas6424
->mute_gpio
, mute
);
269 val
= TAS6424_ALL_STATE_MUTE
;
271 val
= TAS6424_ALL_STATE_PLAY
;
273 snd_soc_component_write(component
, TAS6424_CH_STATE_CTRL
, val
);
278 static int tas6424_power_off(struct snd_soc_component
*component
)
280 struct tas6424_data
*tas6424
= snd_soc_component_get_drvdata(component
);
283 snd_soc_component_write(component
, TAS6424_CH_STATE_CTRL
, TAS6424_ALL_STATE_HIZ
);
285 regcache_cache_only(tas6424
->regmap
, true);
286 regcache_mark_dirty(tas6424
->regmap
);
288 ret
= regulator_bulk_disable(ARRAY_SIZE(tas6424
->supplies
),
291 dev_err(component
->dev
, "failed to disable supplies: %d\n", ret
);
298 static int tas6424_power_on(struct snd_soc_component
*component
)
300 struct tas6424_data
*tas6424
= snd_soc_component_get_drvdata(component
);
303 int no_auto_diags
= 0;
304 unsigned int reg_val
;
306 if (!regmap_read(tas6424
->regmap
, TAS6424_DC_DIAG_CTRL1
, ®_val
))
307 no_auto_diags
= reg_val
& TAS6424_LDGBYPASS_MASK
;
309 ret
= regulator_bulk_enable(ARRAY_SIZE(tas6424
->supplies
),
312 dev_err(component
->dev
, "failed to enable supplies: %d\n", ret
);
316 regcache_cache_only(tas6424
->regmap
, false);
318 ret
= regcache_sync(tas6424
->regmap
);
320 dev_err(component
->dev
, "failed to sync regcache: %d\n", ret
);
324 if (tas6424
->mute_gpio
) {
325 gpiod_set_value_cansleep(tas6424
->mute_gpio
, 0);
327 * channels are muted via the mute pin. Don't also mute
328 * them via the registers so that subsequent register
329 * access is not necessary to un-mute the channels
331 chan_states
= TAS6424_ALL_STATE_PLAY
;
333 chan_states
= TAS6424_ALL_STATE_MUTE
;
335 snd_soc_component_write(component
, TAS6424_CH_STATE_CTRL
, chan_states
);
337 /* any time we come out of HIZ, the output channels automatically run DC
338 * load diagnostics if autodiagnotics are enabled. wait here until this
347 static int tas6424_set_bias_level(struct snd_soc_component
*component
,
348 enum snd_soc_bias_level level
)
350 dev_dbg(component
->dev
, "%s() level=%d\n", __func__
, level
);
353 case SND_SOC_BIAS_ON
:
354 case SND_SOC_BIAS_PREPARE
:
356 case SND_SOC_BIAS_STANDBY
:
357 if (snd_soc_component_get_bias_level(component
) == SND_SOC_BIAS_OFF
)
358 tas6424_power_on(component
);
360 case SND_SOC_BIAS_OFF
:
361 tas6424_power_off(component
);
368 static struct snd_soc_component_driver soc_codec_dev_tas6424
= {
369 .set_bias_level
= tas6424_set_bias_level
,
370 .controls
= tas6424_snd_controls
,
371 .num_controls
= ARRAY_SIZE(tas6424_snd_controls
),
372 .dapm_widgets
= tas6424_dapm_widgets
,
373 .num_dapm_widgets
= ARRAY_SIZE(tas6424_dapm_widgets
),
374 .dapm_routes
= tas6424_audio_map
,
375 .num_dapm_routes
= ARRAY_SIZE(tas6424_audio_map
),
376 .use_pmdown_time
= 1,
378 .non_legacy_dai_naming
= 1,
381 static const struct snd_soc_dai_ops tas6424_speaker_dai_ops
= {
382 .hw_params
= tas6424_hw_params
,
383 .set_fmt
= tas6424_set_dai_fmt
,
384 .set_tdm_slot
= tas6424_set_dai_tdm_slot
,
385 .digital_mute
= tas6424_mute
,
388 static struct snd_soc_dai_driver tas6424_dai
[] = {
390 .name
= "tas6424-amplifier",
392 .stream_name
= "Playback",
395 .rates
= TAS6424_RATES
,
396 .formats
= TAS6424_FORMATS
,
398 .ops
= &tas6424_speaker_dai_ops
,
402 static void tas6424_fault_check_work(struct work_struct
*work
)
404 struct tas6424_data
*tas6424
= container_of(work
, struct tas6424_data
,
405 fault_check_work
.work
);
406 struct device
*dev
= tas6424
->dev
;
410 ret
= regmap_read(tas6424
->regmap
, TAS6424_CHANNEL_FAULT
, ®
);
412 dev_err(dev
, "failed to read CHANNEL_FAULT register: %d\n", ret
);
417 tas6424
->last_cfault
= reg
;
418 goto check_global_fault1_reg
;
422 * Only flag errors once for a given occurrence. This is needed as
423 * the TAS6424 will take time clearing the fault condition internally
424 * during which we don't want to bombard the system with the same
425 * error message over and over.
427 if ((reg
& TAS6424_FAULT_OC_CH1
) && !(tas6424
->last_cfault
& TAS6424_FAULT_OC_CH1
))
428 dev_crit(dev
, "experienced a channel 1 overcurrent fault\n");
430 if ((reg
& TAS6424_FAULT_OC_CH2
) && !(tas6424
->last_cfault
& TAS6424_FAULT_OC_CH2
))
431 dev_crit(dev
, "experienced a channel 2 overcurrent fault\n");
433 if ((reg
& TAS6424_FAULT_OC_CH3
) && !(tas6424
->last_cfault
& TAS6424_FAULT_OC_CH3
))
434 dev_crit(dev
, "experienced a channel 3 overcurrent fault\n");
436 if ((reg
& TAS6424_FAULT_OC_CH4
) && !(tas6424
->last_cfault
& TAS6424_FAULT_OC_CH4
))
437 dev_crit(dev
, "experienced a channel 4 overcurrent fault\n");
439 if ((reg
& TAS6424_FAULT_DC_CH1
) && !(tas6424
->last_cfault
& TAS6424_FAULT_DC_CH1
))
440 dev_crit(dev
, "experienced a channel 1 DC fault\n");
442 if ((reg
& TAS6424_FAULT_DC_CH2
) && !(tas6424
->last_cfault
& TAS6424_FAULT_DC_CH2
))
443 dev_crit(dev
, "experienced a channel 2 DC fault\n");
445 if ((reg
& TAS6424_FAULT_DC_CH3
) && !(tas6424
->last_cfault
& TAS6424_FAULT_DC_CH3
))
446 dev_crit(dev
, "experienced a channel 3 DC fault\n");
448 if ((reg
& TAS6424_FAULT_DC_CH4
) && !(tas6424
->last_cfault
& TAS6424_FAULT_DC_CH4
))
449 dev_crit(dev
, "experienced a channel 4 DC fault\n");
451 /* Store current fault1 value so we can detect any changes next time */
452 tas6424
->last_cfault
= reg
;
454 check_global_fault1_reg
:
455 ret
= regmap_read(tas6424
->regmap
, TAS6424_GLOB_FAULT1
, ®
);
457 dev_err(dev
, "failed to read GLOB_FAULT1 register: %d\n", ret
);
462 * Ignore any clock faults as there is no clean way to check for them.
463 * We would need to start checking for those faults *after* the SAIF
464 * stream has been setup, and stop checking *before* the stream is
465 * stopped to avoid any false-positives. However there are no
466 * appropriate hooks to monitor these events.
468 reg
&= TAS6424_FAULT_PVDD_OV
|
469 TAS6424_FAULT_VBAT_OV
|
470 TAS6424_FAULT_PVDD_UV
|
471 TAS6424_FAULT_VBAT_UV
;
474 tas6424
->last_fault1
= reg
;
475 goto check_global_fault2_reg
;
478 if ((reg
& TAS6424_FAULT_PVDD_OV
) && !(tas6424
->last_fault1
& TAS6424_FAULT_PVDD_OV
))
479 dev_crit(dev
, "experienced a PVDD overvoltage fault\n");
481 if ((reg
& TAS6424_FAULT_VBAT_OV
) && !(tas6424
->last_fault1
& TAS6424_FAULT_VBAT_OV
))
482 dev_crit(dev
, "experienced a VBAT overvoltage fault\n");
484 if ((reg
& TAS6424_FAULT_PVDD_UV
) && !(tas6424
->last_fault1
& TAS6424_FAULT_PVDD_UV
))
485 dev_crit(dev
, "experienced a PVDD undervoltage fault\n");
487 if ((reg
& TAS6424_FAULT_VBAT_UV
) && !(tas6424
->last_fault1
& TAS6424_FAULT_VBAT_UV
))
488 dev_crit(dev
, "experienced a VBAT undervoltage fault\n");
490 /* Store current fault1 value so we can detect any changes next time */
491 tas6424
->last_fault1
= reg
;
493 check_global_fault2_reg
:
494 ret
= regmap_read(tas6424
->regmap
, TAS6424_GLOB_FAULT2
, ®
);
496 dev_err(dev
, "failed to read GLOB_FAULT2 register: %d\n", ret
);
500 reg
&= TAS6424_FAULT_OTSD
|
501 TAS6424_FAULT_OTSD_CH1
|
502 TAS6424_FAULT_OTSD_CH2
|
503 TAS6424_FAULT_OTSD_CH3
|
504 TAS6424_FAULT_OTSD_CH4
;
507 tas6424
->last_fault2
= reg
;
511 if ((reg
& TAS6424_FAULT_OTSD
) && !(tas6424
->last_fault2
& TAS6424_FAULT_OTSD
))
512 dev_crit(dev
, "experienced a global overtemp shutdown\n");
514 if ((reg
& TAS6424_FAULT_OTSD_CH1
) && !(tas6424
->last_fault2
& TAS6424_FAULT_OTSD_CH1
))
515 dev_crit(dev
, "experienced an overtemp shutdown on CH1\n");
517 if ((reg
& TAS6424_FAULT_OTSD_CH2
) && !(tas6424
->last_fault2
& TAS6424_FAULT_OTSD_CH2
))
518 dev_crit(dev
, "experienced an overtemp shutdown on CH2\n");
520 if ((reg
& TAS6424_FAULT_OTSD_CH3
) && !(tas6424
->last_fault2
& TAS6424_FAULT_OTSD_CH3
))
521 dev_crit(dev
, "experienced an overtemp shutdown on CH3\n");
523 if ((reg
& TAS6424_FAULT_OTSD_CH4
) && !(tas6424
->last_fault2
& TAS6424_FAULT_OTSD_CH4
))
524 dev_crit(dev
, "experienced an overtemp shutdown on CH4\n");
526 /* Store current fault2 value so we can detect any changes next time */
527 tas6424
->last_fault2
= reg
;
530 ret
= regmap_read(tas6424
->regmap
, TAS6424_WARN
, ®
);
532 dev_err(dev
, "failed to read WARN register: %d\n", ret
);
536 reg
&= TAS6424_WARN_VDD_UV
|
537 TAS6424_WARN_VDD_POR
|
538 TAS6424_WARN_VDD_OTW
|
539 TAS6424_WARN_VDD_OTW_CH1
|
540 TAS6424_WARN_VDD_OTW_CH2
|
541 TAS6424_WARN_VDD_OTW_CH3
|
542 TAS6424_WARN_VDD_OTW_CH4
;
545 tas6424
->last_warn
= reg
;
549 if ((reg
& TAS6424_WARN_VDD_UV
) && !(tas6424
->last_warn
& TAS6424_WARN_VDD_UV
))
550 dev_warn(dev
, "experienced a VDD under voltage condition\n");
552 if ((reg
& TAS6424_WARN_VDD_POR
) && !(tas6424
->last_warn
& TAS6424_WARN_VDD_POR
))
553 dev_warn(dev
, "experienced a VDD POR condition\n");
555 if ((reg
& TAS6424_WARN_VDD_OTW
) && !(tas6424
->last_warn
& TAS6424_WARN_VDD_OTW
))
556 dev_warn(dev
, "experienced a global overtemp warning\n");
558 if ((reg
& TAS6424_WARN_VDD_OTW_CH1
) && !(tas6424
->last_warn
& TAS6424_WARN_VDD_OTW_CH1
))
559 dev_warn(dev
, "experienced an overtemp warning on CH1\n");
561 if ((reg
& TAS6424_WARN_VDD_OTW_CH2
) && !(tas6424
->last_warn
& TAS6424_WARN_VDD_OTW_CH2
))
562 dev_warn(dev
, "experienced an overtemp warning on CH2\n");
564 if ((reg
& TAS6424_WARN_VDD_OTW_CH3
) && !(tas6424
->last_warn
& TAS6424_WARN_VDD_OTW_CH3
))
565 dev_warn(dev
, "experienced an overtemp warning on CH3\n");
567 if ((reg
& TAS6424_WARN_VDD_OTW_CH4
) && !(tas6424
->last_warn
& TAS6424_WARN_VDD_OTW_CH4
))
568 dev_warn(dev
, "experienced an overtemp warning on CH4\n");
570 /* Store current warn value so we can detect any changes next time */
571 tas6424
->last_warn
= reg
;
573 /* Clear any warnings by toggling the CLEAR_FAULT control bit */
574 ret
= regmap_write_bits(tas6424
->regmap
, TAS6424_MISC_CTRL3
,
575 TAS6424_CLEAR_FAULT
, TAS6424_CLEAR_FAULT
);
577 dev_err(dev
, "failed to write MISC_CTRL3 register: %d\n", ret
);
579 ret
= regmap_write_bits(tas6424
->regmap
, TAS6424_MISC_CTRL3
,
580 TAS6424_CLEAR_FAULT
, 0);
582 dev_err(dev
, "failed to write MISC_CTRL3 register: %d\n", ret
);
585 /* Schedule the next fault check at the specified interval */
586 schedule_delayed_work(&tas6424
->fault_check_work
,
587 msecs_to_jiffies(TAS6424_FAULT_CHECK_INTERVAL
));
590 static const struct reg_default tas6424_reg_defaults
[] = {
591 { TAS6424_MODE_CTRL
, 0x00 },
592 { TAS6424_MISC_CTRL1
, 0x32 },
593 { TAS6424_MISC_CTRL2
, 0x62 },
594 { TAS6424_SAP_CTRL
, 0x04 },
595 { TAS6424_CH_STATE_CTRL
, 0x55 },
596 { TAS6424_CH1_VOL_CTRL
, 0xcf },
597 { TAS6424_CH2_VOL_CTRL
, 0xcf },
598 { TAS6424_CH3_VOL_CTRL
, 0xcf },
599 { TAS6424_CH4_VOL_CTRL
, 0xcf },
600 { TAS6424_DC_DIAG_CTRL1
, 0x00 },
601 { TAS6424_DC_DIAG_CTRL2
, 0x11 },
602 { TAS6424_DC_DIAG_CTRL3
, 0x11 },
603 { TAS6424_PIN_CTRL
, 0xff },
604 { TAS6424_AC_DIAG_CTRL1
, 0x00 },
605 { TAS6424_MISC_CTRL3
, 0x00 },
606 { TAS6424_CLIP_CTRL
, 0x01 },
607 { TAS6424_CLIP_WINDOW
, 0x14 },
608 { TAS6424_CLIP_WARN
, 0x00 },
609 { TAS6424_CBC_STAT
, 0x00 },
610 { TAS6424_MISC_CTRL4
, 0x40 },
613 static bool tas6424_is_writable_reg(struct device
*dev
, unsigned int reg
)
616 case TAS6424_MODE_CTRL
:
617 case TAS6424_MISC_CTRL1
:
618 case TAS6424_MISC_CTRL2
:
619 case TAS6424_SAP_CTRL
:
620 case TAS6424_CH_STATE_CTRL
:
621 case TAS6424_CH1_VOL_CTRL
:
622 case TAS6424_CH2_VOL_CTRL
:
623 case TAS6424_CH3_VOL_CTRL
:
624 case TAS6424_CH4_VOL_CTRL
:
625 case TAS6424_DC_DIAG_CTRL1
:
626 case TAS6424_DC_DIAG_CTRL2
:
627 case TAS6424_DC_DIAG_CTRL3
:
628 case TAS6424_PIN_CTRL
:
629 case TAS6424_AC_DIAG_CTRL1
:
630 case TAS6424_MISC_CTRL3
:
631 case TAS6424_CLIP_CTRL
:
632 case TAS6424_CLIP_WINDOW
:
633 case TAS6424_CLIP_WARN
:
634 case TAS6424_CBC_STAT
:
635 case TAS6424_MISC_CTRL4
:
642 static bool tas6424_is_volatile_reg(struct device
*dev
, unsigned int reg
)
645 case TAS6424_DC_LOAD_DIAG_REP12
:
646 case TAS6424_DC_LOAD_DIAG_REP34
:
647 case TAS6424_DC_LOAD_DIAG_REPLO
:
648 case TAS6424_CHANNEL_STATE
:
649 case TAS6424_CHANNEL_FAULT
:
650 case TAS6424_GLOB_FAULT1
:
651 case TAS6424_GLOB_FAULT2
:
653 case TAS6424_AC_LOAD_DIAG_REP1
:
654 case TAS6424_AC_LOAD_DIAG_REP2
:
655 case TAS6424_AC_LOAD_DIAG_REP3
:
656 case TAS6424_AC_LOAD_DIAG_REP4
:
663 static const struct regmap_config tas6424_regmap_config
= {
667 .writeable_reg
= tas6424_is_writable_reg
,
668 .volatile_reg
= tas6424_is_volatile_reg
,
670 .max_register
= TAS6424_MAX
,
671 .reg_defaults
= tas6424_reg_defaults
,
672 .num_reg_defaults
= ARRAY_SIZE(tas6424_reg_defaults
),
673 .cache_type
= REGCACHE_RBTREE
,
676 #if IS_ENABLED(CONFIG_OF)
677 static const struct of_device_id tas6424_of_ids
[] = {
678 { .compatible
= "ti,tas6424", },
681 MODULE_DEVICE_TABLE(of
, tas6424_of_ids
);
684 static int tas6424_i2c_probe(struct i2c_client
*client
,
685 const struct i2c_device_id
*id
)
687 struct device
*dev
= &client
->dev
;
688 struct tas6424_data
*tas6424
;
692 tas6424
= devm_kzalloc(dev
, sizeof(*tas6424
), GFP_KERNEL
);
695 dev_set_drvdata(dev
, tas6424
);
699 tas6424
->regmap
= devm_regmap_init_i2c(client
, &tas6424_regmap_config
);
700 if (IS_ERR(tas6424
->regmap
)) {
701 ret
= PTR_ERR(tas6424
->regmap
);
702 dev_err(dev
, "unable to allocate register map: %d\n", ret
);
707 * Get control of the standby pin and set it LOW to take the codec
708 * out of the stand-by mode.
709 * Note: The actual pin polarity is taken care of in the GPIO lib
710 * according the polarity specified in the DTS.
712 tas6424
->standby_gpio
= devm_gpiod_get_optional(dev
, "standby",
714 if (IS_ERR(tas6424
->standby_gpio
)) {
715 if (PTR_ERR(tas6424
->standby_gpio
) == -EPROBE_DEFER
)
716 return -EPROBE_DEFER
;
717 dev_info(dev
, "failed to get standby GPIO: %ld\n",
718 PTR_ERR(tas6424
->standby_gpio
));
719 tas6424
->standby_gpio
= NULL
;
723 * Get control of the mute pin and set it HIGH in order to start with
724 * all the output muted.
725 * Note: The actual pin polarity is taken care of in the GPIO lib
726 * according the polarity specified in the DTS.
728 tas6424
->mute_gpio
= devm_gpiod_get_optional(dev
, "mute",
730 if (IS_ERR(tas6424
->mute_gpio
)) {
731 if (PTR_ERR(tas6424
->mute_gpio
) == -EPROBE_DEFER
)
732 return -EPROBE_DEFER
;
733 dev_info(dev
, "failed to get nmute GPIO: %ld\n",
734 PTR_ERR(tas6424
->mute_gpio
));
735 tas6424
->mute_gpio
= NULL
;
738 for (i
= 0; i
< ARRAY_SIZE(tas6424
->supplies
); i
++)
739 tas6424
->supplies
[i
].supply
= tas6424_supply_names
[i
];
740 ret
= devm_regulator_bulk_get(dev
, ARRAY_SIZE(tas6424
->supplies
),
743 dev_err(dev
, "unable to request supplies: %d\n", ret
);
747 ret
= regulator_bulk_enable(ARRAY_SIZE(tas6424
->supplies
),
750 dev_err(dev
, "unable to enable supplies: %d\n", ret
);
754 /* Reset device to establish well-defined startup state */
755 ret
= regmap_update_bits(tas6424
->regmap
, TAS6424_MODE_CTRL
,
756 TAS6424_RESET
, TAS6424_RESET
);
758 dev_err(dev
, "unable to reset device: %d\n", ret
);
762 INIT_DELAYED_WORK(&tas6424
->fault_check_work
, tas6424_fault_check_work
);
764 ret
= devm_snd_soc_register_component(dev
, &soc_codec_dev_tas6424
,
765 tas6424_dai
, ARRAY_SIZE(tas6424_dai
));
767 dev_err(dev
, "unable to register codec: %d\n", ret
);
774 static int tas6424_i2c_remove(struct i2c_client
*client
)
776 struct device
*dev
= &client
->dev
;
777 struct tas6424_data
*tas6424
= dev_get_drvdata(dev
);
780 cancel_delayed_work_sync(&tas6424
->fault_check_work
);
782 /* put the codec in stand-by */
783 if (tas6424
->standby_gpio
)
784 gpiod_set_value_cansleep(tas6424
->standby_gpio
, 1);
786 ret
= regulator_bulk_disable(ARRAY_SIZE(tas6424
->supplies
),
789 dev_err(dev
, "unable to disable supplies: %d\n", ret
);
796 static const struct i2c_device_id tas6424_i2c_ids
[] = {
800 MODULE_DEVICE_TABLE(i2c
, tas6424_i2c_ids
);
802 static struct i2c_driver tas6424_i2c_driver
= {
805 .of_match_table
= of_match_ptr(tas6424_of_ids
),
807 .probe
= tas6424_i2c_probe
,
808 .remove
= tas6424_i2c_remove
,
809 .id_table
= tas6424_i2c_ids
,
811 module_i2c_driver(tas6424_i2c_driver
);
813 MODULE_AUTHOR("Andreas Dannenberg <dannenberg@ti.com>");
814 MODULE_AUTHOR("Andrew F. Davis <afd@ti.com>");
815 MODULE_DESCRIPTION("TAS6424 Audio amplifier driver");
816 MODULE_LICENSE("GPL v2");