2 * ALSA SoC TLV320AIC23 codec driver
4 * Author: Arun KS, <arunks@mistralsolutions.com>
5 * Copyright: (C) 2008 Mistral Solutions Pvt Ltd.,
7 * Based on sound/soc/codecs/wm8731.c by Richard Purdie
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 * The AIC23 is a driver for a low power stereo audio
17 * The machine layer should disable unsupported inputs/outputs by
18 * snd_soc_dapm_disable_pin(codec, "LHPOUT"), etc.
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
23 #include <linux/init.h>
24 #include <linux/delay.h>
26 #include <linux/i2c.h>
27 #include <linux/platform_device.h>
28 #include <linux/slab.h>
29 #include <sound/core.h>
30 #include <sound/pcm.h>
31 #include <sound/pcm_params.h>
32 #include <sound/soc.h>
33 #include <sound/soc-dapm.h>
34 #include <sound/tlv.h>
35 #include <sound/initval.h>
37 #include "tlv320aic23.h"
39 #define AIC23_VERSION "0.1"
42 * AIC23 register cache
44 static const u16 tlv320aic23_reg
[] = {
45 0x0097, 0x0097, 0x00F9, 0x00F9, /* 0 */
46 0x001A, 0x0004, 0x0007, 0x0001, /* 4 */
47 0x0020, 0x0000, 0x0000, 0x0000, /* 8 */
48 0x0000, 0x0000, 0x0000, 0x0000, /* 12 */
52 * read tlv320aic23 register cache
54 static inline unsigned int tlv320aic23_read_reg_cache(struct snd_soc_codec
55 *codec
, unsigned int reg
)
57 u16
*cache
= codec
->reg_cache
;
58 if (reg
>= ARRAY_SIZE(tlv320aic23_reg
))
64 * write tlv320aic23 register cache
66 static inline void tlv320aic23_write_reg_cache(struct snd_soc_codec
*codec
,
69 u16
*cache
= codec
->reg_cache
;
70 if (reg
>= ARRAY_SIZE(tlv320aic23_reg
))
76 * write to the tlv320aic23 register space
78 static int tlv320aic23_write(struct snd_soc_codec
*codec
, unsigned int reg
,
84 /* TLV320AIC23 has 7 bit address and 9 bits of data
85 * so we need to switch one data bit into reg and rest
89 if (reg
> 9 && reg
!= 15) {
90 printk(KERN_WARNING
"%s Invalid register R%u\n", __func__
, reg
);
94 data
[0] = (reg
<< 1) | (value
>> 8 & 0x01);
95 data
[1] = value
& 0xff;
97 tlv320aic23_write_reg_cache(codec
, reg
, value
);
99 if (codec
->hw_write(codec
->control_data
, data
, 2) == 2)
102 printk(KERN_ERR
"%s cannot write %03x to register R%u\n", __func__
,
108 static const char *rec_src_text
[] = { "Line", "Mic" };
109 static const char *deemph_text
[] = {"None", "32Khz", "44.1Khz", "48Khz"};
111 static const struct soc_enum rec_src_enum
=
112 SOC_ENUM_SINGLE(TLV320AIC23_ANLG
, 2, 2, rec_src_text
);
114 static const struct snd_kcontrol_new tlv320aic23_rec_src_mux_controls
=
115 SOC_DAPM_ENUM("Input Select", rec_src_enum
);
117 static const struct soc_enum tlv320aic23_rec_src
=
118 SOC_ENUM_SINGLE(TLV320AIC23_ANLG
, 2, 2, rec_src_text
);
119 static const struct soc_enum tlv320aic23_deemph
=
120 SOC_ENUM_SINGLE(TLV320AIC23_DIGT
, 1, 4, deemph_text
);
122 static const DECLARE_TLV_DB_SCALE(out_gain_tlv
, -12100, 100, 0);
123 static const DECLARE_TLV_DB_SCALE(input_gain_tlv
, -1725, 75, 0);
124 static const DECLARE_TLV_DB_SCALE(sidetone_vol_tlv
, -1800, 300, 0);
126 static int snd_soc_tlv320aic23_put_volsw(struct snd_kcontrol
*kcontrol
,
127 struct snd_ctl_elem_value
*ucontrol
)
129 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
132 val
= (ucontrol
->value
.integer
.value
[0] & 0x07);
134 /* linear conversion to userspace
141 val
= (val
>= 4) ? 4 : (3 - val
);
143 reg
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_ANLG
) & (~0x1C0);
144 tlv320aic23_write(codec
, TLV320AIC23_ANLG
, reg
| (val
<< 6));
149 static int snd_soc_tlv320aic23_get_volsw(struct snd_kcontrol
*kcontrol
,
150 struct snd_ctl_elem_value
*ucontrol
)
152 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
155 val
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_ANLG
) & (0x1C0);
157 val
= (val
>= 4) ? 4 : (3 - val
);
158 ucontrol
->value
.integer
.value
[0] = val
;
163 #define SOC_TLV320AIC23_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \
164 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
165 .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
166 SNDRV_CTL_ELEM_ACCESS_READWRITE,\
167 .tlv.p = (tlv_array), \
168 .info = snd_soc_info_volsw, .get = snd_soc_tlv320aic23_get_volsw,\
169 .put = snd_soc_tlv320aic23_put_volsw, \
170 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) }
172 static const struct snd_kcontrol_new tlv320aic23_snd_controls
[] = {
173 SOC_DOUBLE_R_TLV("Digital Playback Volume", TLV320AIC23_LCHNVOL
,
174 TLV320AIC23_RCHNVOL
, 0, 127, 0, out_gain_tlv
),
175 SOC_SINGLE("Digital Playback Switch", TLV320AIC23_DIGT
, 3, 1, 1),
176 SOC_DOUBLE_R("Line Input Switch", TLV320AIC23_LINVOL
,
177 TLV320AIC23_RINVOL
, 7, 1, 0),
178 SOC_DOUBLE_R_TLV("Line Input Volume", TLV320AIC23_LINVOL
,
179 TLV320AIC23_RINVOL
, 0, 31, 0, input_gain_tlv
),
180 SOC_SINGLE("Mic Input Switch", TLV320AIC23_ANLG
, 1, 1, 1),
181 SOC_SINGLE("Mic Booster Switch", TLV320AIC23_ANLG
, 0, 1, 0),
182 SOC_TLV320AIC23_SINGLE_TLV("Sidetone Volume", TLV320AIC23_ANLG
,
183 6, 4, 0, sidetone_vol_tlv
),
184 SOC_ENUM("Playback De-emphasis", tlv320aic23_deemph
),
187 /* PGA Mixer controls for Line and Mic switch */
188 static const struct snd_kcontrol_new tlv320aic23_output_mixer_controls
[] = {
189 SOC_DAPM_SINGLE("Line Bypass Switch", TLV320AIC23_ANLG
, 3, 1, 0),
190 SOC_DAPM_SINGLE("Mic Sidetone Switch", TLV320AIC23_ANLG
, 5, 1, 0),
191 SOC_DAPM_SINGLE("Playback Switch", TLV320AIC23_ANLG
, 4, 1, 0),
194 static const struct snd_soc_dapm_widget tlv320aic23_dapm_widgets
[] = {
195 SND_SOC_DAPM_DAC("DAC", "Playback", TLV320AIC23_PWR
, 3, 1),
196 SND_SOC_DAPM_ADC("ADC", "Capture", TLV320AIC23_PWR
, 2, 1),
197 SND_SOC_DAPM_MUX("Capture Source", SND_SOC_NOPM
, 0, 0,
198 &tlv320aic23_rec_src_mux_controls
),
199 SND_SOC_DAPM_MIXER("Output Mixer", TLV320AIC23_PWR
, 4, 1,
200 &tlv320aic23_output_mixer_controls
[0],
201 ARRAY_SIZE(tlv320aic23_output_mixer_controls
)),
202 SND_SOC_DAPM_PGA("Line Input", TLV320AIC23_PWR
, 0, 1, NULL
, 0),
203 SND_SOC_DAPM_PGA("Mic Input", TLV320AIC23_PWR
, 1, 1, NULL
, 0),
205 SND_SOC_DAPM_OUTPUT("LHPOUT"),
206 SND_SOC_DAPM_OUTPUT("RHPOUT"),
207 SND_SOC_DAPM_OUTPUT("LOUT"),
208 SND_SOC_DAPM_OUTPUT("ROUT"),
210 SND_SOC_DAPM_INPUT("LLINEIN"),
211 SND_SOC_DAPM_INPUT("RLINEIN"),
213 SND_SOC_DAPM_INPUT("MICIN"),
216 static const struct snd_soc_dapm_route intercon
[] = {
218 {"Output Mixer", "Line Bypass Switch", "Line Input"},
219 {"Output Mixer", "Playback Switch", "DAC"},
220 {"Output Mixer", "Mic Sidetone Switch", "Mic Input"},
223 {"RHPOUT", NULL
, "Output Mixer"},
224 {"LHPOUT", NULL
, "Output Mixer"},
225 {"LOUT", NULL
, "Output Mixer"},
226 {"ROUT", NULL
, "Output Mixer"},
229 {"Line Input", "NULL", "LLINEIN"},
230 {"Line Input", "NULL", "RLINEIN"},
232 {"Mic Input", "NULL", "MICIN"},
235 {"Capture Source", "Line", "Line Input"},
236 {"Capture Source", "Mic", "Mic Input"},
237 {"ADC", NULL
, "Capture Source"},
241 /* AIC23 driver data */
243 enum snd_soc_control_type control_type
;
251 * Common Crystals used
252 * 11.2896 Mhz /128 = *88.2k /192 = 58.8k
253 * 12.0000 Mhz /125 = *96k /136 = 88.235K
254 * 12.2880 Mhz /128 = *96k /192 = 64k
255 * 16.9344 Mhz /128 = 132.3k /192 = *88.2k
256 * 18.4320 Mhz /128 = 144k /192 = *96k
260 * Normal BOSR 0-256/2 = 128, 1-384/2 = 192
261 * USB BOSR 0-250/2 = 125, 1-272/2 = 136
263 static const int bosr_usb_divisor_table
[] = {
266 #define LOWER_GROUP ((1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<6) | (1<<7))
267 #define UPPER_GROUP ((1<<8) | (1<<9) | (1<<10) | (1<<11) | (1<<15))
268 static const unsigned short sr_valid_mask
[] = {
269 LOWER_GROUP
|UPPER_GROUP
, /* Normal, bosr - 0*/
270 LOWER_GROUP
, /* Usb, bosr - 0*/
271 LOWER_GROUP
|UPPER_GROUP
, /* Normal, bosr - 1*/
272 UPPER_GROUP
, /* Usb, bosr - 1*/
275 * Every divisor is a factor of 11*12
277 #define SR_MULT (11*12)
278 #define A(x) (SR_MULT/x)
279 static const unsigned char sr_adc_mult_table
[] = {
280 A(2), A(2), A(12), A(12), 0, 0, A(3), A(1),
281 A(2), A(2), A(11), A(11), 0, 0, 0, A(1)
283 static const unsigned char sr_dac_mult_table
[] = {
284 A(2), A(12), A(2), A(12), 0, 0, A(3), A(1),
285 A(2), A(11), A(2), A(11), 0, 0, 0, A(1)
288 static unsigned get_score(int adc
, int adc_l
, int adc_h
, int need_adc
,
289 int dac
, int dac_l
, int dac_h
, int need_dac
)
291 if ((adc
>= adc_l
) && (adc
<= adc_h
) &&
292 (dac
>= dac_l
) && (dac
<= dac_h
)) {
293 int diff_adc
= need_adc
- adc
;
294 int diff_dac
= need_dac
- dac
;
295 return abs(diff_adc
) + abs(diff_dac
);
300 static int find_rate(int mclk
, u32 need_adc
, u32 need_dac
)
306 unsigned best_score
= UINT_MAX
;
307 int adc_l
, adc_h
, dac_l
, dac_h
;
312 * rates given are +/- 1/32
314 adc_l
= need_adc
- (need_adc
>> 5);
315 adc_h
= need_adc
+ (need_adc
>> 5);
316 dac_l
= need_dac
- (need_dac
>> 5);
317 dac_h
= need_dac
+ (need_dac
>> 5);
318 for (i
= 0; i
< ARRAY_SIZE(bosr_usb_divisor_table
); i
++) {
319 int base
= mclk
/ bosr_usb_divisor_table
[i
];
320 int mask
= sr_valid_mask
[i
];
321 for (j
= 0; j
< ARRAY_SIZE(sr_adc_mult_table
);
328 adc
= base
* sr_adc_mult_table
[j
];
329 dac
= base
* sr_dac_mult_table
[j
];
330 score
= get_score(adc
, adc_l
, adc_h
, need_adc
,
331 dac
, dac_l
, dac_h
, need_dac
);
332 if (best_score
> score
) {
338 score
= get_score((adc
>> 1), adc_l
, adc_h
, need_adc
,
339 (dac
>> 1), dac_l
, dac_h
, need_dac
);
340 /* prefer to have a /2 */
341 if ((score
!= UINT_MAX
) && (best_score
>= score
)) {
349 return (best_j
<< 2) | best_i
| (best_div
<< TLV320AIC23_CLKIN_SHIFT
);
353 static void get_current_sample_rates(struct snd_soc_codec
*codec
, int mclk
,
354 u32
*sample_rate_adc
, u32
*sample_rate_dac
)
356 int src
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_SRATE
);
357 int sr
= (src
>> 2) & 0x0f;
358 int val
= (mclk
/ bosr_usb_divisor_table
[src
& 3]);
359 int adc
= (val
* sr_adc_mult_table
[sr
]) / SR_MULT
;
360 int dac
= (val
* sr_dac_mult_table
[sr
]) / SR_MULT
;
361 if (src
& TLV320AIC23_CLKIN_HALF
) {
365 *sample_rate_adc
= adc
;
366 *sample_rate_dac
= dac
;
370 static int set_sample_rate_control(struct snd_soc_codec
*codec
, int mclk
,
371 u32 sample_rate_adc
, u32 sample_rate_dac
)
373 /* Search for the right sample rate */
374 int data
= find_rate(mclk
, sample_rate_adc
, sample_rate_dac
);
376 printk(KERN_ERR
"%s:Invalid rate %u,%u requested\n",
377 __func__
, sample_rate_adc
, sample_rate_dac
);
380 tlv320aic23_write(codec
, TLV320AIC23_SRATE
, data
);
384 get_current_sample_rates(codec
, mclk
, &adc
, &dac
);
385 printk(KERN_DEBUG
"actual samplerate = %u,%u reg=%x\n",
392 static int tlv320aic23_add_widgets(struct snd_soc_codec
*codec
)
394 snd_soc_dapm_new_controls(codec
, tlv320aic23_dapm_widgets
,
395 ARRAY_SIZE(tlv320aic23_dapm_widgets
));
397 /* set up audio path interconnects */
398 snd_soc_dapm_add_routes(codec
, intercon
, ARRAY_SIZE(intercon
));
403 static int tlv320aic23_hw_params(struct snd_pcm_substream
*substream
,
404 struct snd_pcm_hw_params
*params
,
405 struct snd_soc_dai
*dai
)
407 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
408 struct snd_soc_codec
*codec
= rtd
->codec
;
411 struct aic23
*aic23
= snd_soc_codec_get_drvdata(codec
);
412 u32 sample_rate_adc
= aic23
->requested_adc
;
413 u32 sample_rate_dac
= aic23
->requested_dac
;
414 u32 sample_rate
= params_rate(params
);
416 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
417 aic23
->requested_dac
= sample_rate_dac
= sample_rate
;
418 if (!sample_rate_adc
)
419 sample_rate_adc
= sample_rate
;
421 aic23
->requested_adc
= sample_rate_adc
= sample_rate
;
422 if (!sample_rate_dac
)
423 sample_rate_dac
= sample_rate
;
425 ret
= set_sample_rate_control(codec
, aic23
->mclk
, sample_rate_adc
,
431 tlv320aic23_read_reg_cache(codec
,
432 TLV320AIC23_DIGT_FMT
) & ~(0x03 << 2);
433 switch (params_format(params
)) {
434 case SNDRV_PCM_FORMAT_S16_LE
:
436 case SNDRV_PCM_FORMAT_S20_3LE
:
437 iface_reg
|= (0x01 << 2);
439 case SNDRV_PCM_FORMAT_S24_LE
:
440 iface_reg
|= (0x02 << 2);
442 case SNDRV_PCM_FORMAT_S32_LE
:
443 iface_reg
|= (0x03 << 2);
446 tlv320aic23_write(codec
, TLV320AIC23_DIGT_FMT
, iface_reg
);
451 static int tlv320aic23_pcm_prepare(struct snd_pcm_substream
*substream
,
452 struct snd_soc_dai
*dai
)
454 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
455 struct snd_soc_codec
*codec
= rtd
->codec
;
458 tlv320aic23_write(codec
, TLV320AIC23_ACTIVE
, 0x0001);
463 static void tlv320aic23_shutdown(struct snd_pcm_substream
*substream
,
464 struct snd_soc_dai
*dai
)
466 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
467 struct snd_soc_codec
*codec
= rtd
->codec
;
468 struct aic23
*aic23
= snd_soc_codec_get_drvdata(codec
);
471 if (!codec
->active
) {
473 tlv320aic23_write(codec
, TLV320AIC23_ACTIVE
, 0x0);
475 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
476 aic23
->requested_dac
= 0;
478 aic23
->requested_adc
= 0;
481 static int tlv320aic23_mute(struct snd_soc_dai
*dai
, int mute
)
483 struct snd_soc_codec
*codec
= dai
->codec
;
486 reg
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_DIGT
);
488 reg
|= TLV320AIC23_DACM_MUTE
;
491 reg
&= ~TLV320AIC23_DACM_MUTE
;
493 tlv320aic23_write(codec
, TLV320AIC23_DIGT
, reg
);
498 static int tlv320aic23_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
501 struct snd_soc_codec
*codec
= codec_dai
->codec
;
505 tlv320aic23_read_reg_cache(codec
, TLV320AIC23_DIGT_FMT
) & (~0x03);
507 /* set master/slave audio interface */
508 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
509 case SND_SOC_DAIFMT_CBM_CFM
:
510 iface_reg
|= TLV320AIC23_MS_MASTER
;
512 case SND_SOC_DAIFMT_CBS_CFS
:
519 /* interface format */
520 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
521 case SND_SOC_DAIFMT_I2S
:
522 iface_reg
|= TLV320AIC23_FOR_I2S
;
524 case SND_SOC_DAIFMT_DSP_A
:
525 iface_reg
|= TLV320AIC23_LRP_ON
;
526 case SND_SOC_DAIFMT_DSP_B
:
527 iface_reg
|= TLV320AIC23_FOR_DSP
;
529 case SND_SOC_DAIFMT_RIGHT_J
:
531 case SND_SOC_DAIFMT_LEFT_J
:
532 iface_reg
|= TLV320AIC23_FOR_LJUST
;
539 tlv320aic23_write(codec
, TLV320AIC23_DIGT_FMT
, iface_reg
);
544 static int tlv320aic23_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
545 int clk_id
, unsigned int freq
, int dir
)
547 struct aic23
*aic23
= snd_soc_dai_get_drvdata(codec_dai
);
552 static int tlv320aic23_set_bias_level(struct snd_soc_codec
*codec
,
553 enum snd_soc_bias_level level
)
555 u16 reg
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_PWR
) & 0xff7f;
558 case SND_SOC_BIAS_ON
:
559 /* vref/mid, osc on, dac unmute */
560 reg
&= ~(TLV320AIC23_DEVICE_PWR_OFF
| TLV320AIC23_OSC_OFF
| \
561 TLV320AIC23_DAC_OFF
);
562 tlv320aic23_write(codec
, TLV320AIC23_PWR
, reg
);
564 case SND_SOC_BIAS_PREPARE
:
566 case SND_SOC_BIAS_STANDBY
:
567 /* everything off except vref/vmid, */
568 tlv320aic23_write(codec
, TLV320AIC23_PWR
, reg
| \
569 TLV320AIC23_CLK_OFF
);
571 case SND_SOC_BIAS_OFF
:
572 /* everything off, dac mute, inactive */
573 tlv320aic23_write(codec
, TLV320AIC23_ACTIVE
, 0x0);
574 tlv320aic23_write(codec
, TLV320AIC23_PWR
, 0xffff);
577 codec
->bias_level
= level
;
581 #define AIC23_RATES SNDRV_PCM_RATE_8000_96000
582 #define AIC23_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
583 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
585 static struct snd_soc_dai_ops tlv320aic23_dai_ops
= {
586 .prepare
= tlv320aic23_pcm_prepare
,
587 .hw_params
= tlv320aic23_hw_params
,
588 .shutdown
= tlv320aic23_shutdown
,
589 .digital_mute
= tlv320aic23_mute
,
590 .set_fmt
= tlv320aic23_set_dai_fmt
,
591 .set_sysclk
= tlv320aic23_set_dai_sysclk
,
594 static struct snd_soc_dai_driver tlv320aic23_dai
= {
595 .name
= "tlv320aic23-hifi",
597 .stream_name
= "Playback",
600 .rates
= AIC23_RATES
,
601 .formats
= AIC23_FORMATS
,},
603 .stream_name
= "Capture",
606 .rates
= AIC23_RATES
,
607 .formats
= AIC23_FORMATS
,},
608 .ops
= &tlv320aic23_dai_ops
,
611 static int tlv320aic23_suspend(struct snd_soc_codec
*codec
,
614 tlv320aic23_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
619 static int tlv320aic23_resume(struct snd_soc_codec
*codec
)
623 /* Sync reg_cache with the hardware */
624 for (reg
= 0; reg
<= TLV320AIC23_ACTIVE
; reg
++) {
625 u16 val
= tlv320aic23_read_reg_cache(codec
, reg
);
626 tlv320aic23_write(codec
, reg
, val
);
628 tlv320aic23_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
633 static int tlv320aic23_probe(struct snd_soc_codec
*codec
)
635 struct aic23
*aic23
= snd_soc_codec_get_drvdata(codec
);
638 printk(KERN_INFO
"AIC23 Audio Codec %s\n", AIC23_VERSION
);
639 codec
->control_data
= aic23
->control_data
;
640 codec
->hw_write
= (hw_write_t
)i2c_master_send
;
641 codec
->hw_read
= NULL
;
644 tlv320aic23_write(codec
, TLV320AIC23_RESET
, 0);
646 /* power on device */
647 tlv320aic23_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
649 tlv320aic23_write(codec
, TLV320AIC23_DIGT
, TLV320AIC23_DEEMP_44K
);
652 reg
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_LINVOL
);
653 tlv320aic23_write(codec
, TLV320AIC23_LINVOL
,
654 (reg
& (~TLV320AIC23_LIM_MUTED
)) |
655 (TLV320AIC23_LRS_ENABLED
));
657 reg
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_RINVOL
);
658 tlv320aic23_write(codec
, TLV320AIC23_RINVOL
,
659 (reg
& (~TLV320AIC23_LIM_MUTED
)) |
660 TLV320AIC23_LRS_ENABLED
);
662 reg
= tlv320aic23_read_reg_cache(codec
, TLV320AIC23_ANLG
);
663 tlv320aic23_write(codec
, TLV320AIC23_ANLG
,
664 (reg
) & (~TLV320AIC23_BYPASS_ON
) &
665 (~TLV320AIC23_MICM_MUTED
));
667 /* Default output volume */
668 tlv320aic23_write(codec
, TLV320AIC23_LCHNVOL
,
669 TLV320AIC23_DEFAULT_OUT_VOL
&
670 TLV320AIC23_OUT_VOL_MASK
);
671 tlv320aic23_write(codec
, TLV320AIC23_RCHNVOL
,
672 TLV320AIC23_DEFAULT_OUT_VOL
&
673 TLV320AIC23_OUT_VOL_MASK
);
675 tlv320aic23_write(codec
, TLV320AIC23_ACTIVE
, 0x1);
677 snd_soc_add_controls(codec
, tlv320aic23_snd_controls
,
678 ARRAY_SIZE(tlv320aic23_snd_controls
));
679 tlv320aic23_add_widgets(codec
);
684 static int tlv320aic23_remove(struct snd_soc_codec
*codec
)
686 tlv320aic23_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
690 static struct snd_soc_codec_driver soc_codec_dev_tlv320aic23
= {
691 .reg_cache_size
= ARRAY_SIZE(tlv320aic23_reg
),
692 .reg_word_size
= sizeof(u16
),
693 .reg_cache_default
= tlv320aic23_reg
,
694 .probe
= tlv320aic23_probe
,
695 .remove
= tlv320aic23_remove
,
696 .suspend
= tlv320aic23_suspend
,
697 .resume
= tlv320aic23_resume
,
698 .read
= tlv320aic23_read_reg_cache
,
699 .write
= tlv320aic23_write
,
700 .set_bias_level
= tlv320aic23_set_bias_level
,
703 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
705 * If the i2c layer weren't so broken, we could pass this kind of data
708 static int tlv320aic23_codec_probe(struct i2c_client
*i2c
,
709 const struct i2c_device_id
*i2c_id
)
714 if (!i2c_check_functionality(i2c
->adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
717 aic23
= kzalloc(sizeof(struct aic23
), GFP_KERNEL
);
721 i2c_set_clientdata(i2c
, aic23
);
722 aic23
->control_data
= i2c
;
723 aic23
->control_type
= SND_SOC_I2C
;
725 ret
= snd_soc_register_codec(&i2c
->dev
,
726 &soc_codec_dev_tlv320aic23
, &tlv320aic23_dai
, 1);
731 static int __exit
tlv320aic23_i2c_remove(struct i2c_client
*i2c
)
733 snd_soc_unregister_codec(&i2c
->dev
);
734 kfree(i2c_get_clientdata(i2c
));
738 static const struct i2c_device_id tlv320aic23_id
[] = {
743 MODULE_DEVICE_TABLE(i2c
, tlv320aic23_id
);
745 static struct i2c_driver tlv320aic23_i2c_driver
= {
747 .name
= "tlv320aic23-codec",
749 .probe
= tlv320aic23_codec_probe
,
750 .remove
= __exit_p(tlv320aic23_i2c_remove
),
751 .id_table
= tlv320aic23_id
,
756 static int __init
tlv320aic23_modinit(void)
759 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
760 ret
= i2c_add_driver(&tlv320aic23_i2c_driver
);
762 printk(KERN_ERR
"Failed to register TLV320AIC23 I2C driver: %d\n",
768 module_init(tlv320aic23_modinit
);
770 static void __exit
tlv320aic23_exit(void)
772 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
773 i2c_del_driver(&tlv320aic23_i2c_driver
);
776 module_exit(tlv320aic23_exit
);
778 MODULE_DESCRIPTION("ASoC TLV320AIC23 codec driver");
779 MODULE_AUTHOR("Arun KS <arunks@mistralsolutions.com>");
780 MODULE_LICENSE("GPL");