2 * ak4535.c -- AK4535 ALSA Soc Audio driver
4 * Copyright 2005 Openedhand Ltd.
6 * Author: Richard Purdie <richard@openedhand.com>
8 * Based on wm8753.c by Liam Girdwood
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.
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
20 #include <linux/i2c.h>
21 #include <linux/platform_device.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/soc-dapm.h>
27 #include <sound/initval.h>
31 #define AK4535_VERSION "0.3"
33 struct snd_soc_codec_device soc_codec_dev_ak4535
;
35 /* codec private data */
41 * ak4535 register cache
43 static const u16 ak4535_reg
[AK4535_CACHEREGNUM
] = {
44 0x0000, 0x0080, 0x0000, 0x0003,
45 0x0002, 0x0000, 0x0011, 0x0001,
46 0x0000, 0x0040, 0x0036, 0x0010,
47 0x0000, 0x0000, 0x0057, 0x0000,
51 * read ak4535 register cache
53 static inline unsigned int ak4535_read_reg_cache(struct snd_soc_codec
*codec
,
56 u16
*cache
= codec
->reg_cache
;
57 if (reg
>= AK4535_CACHEREGNUM
)
62 static inline unsigned int ak4535_read(struct snd_soc_codec
*codec
,
68 if (codec
->hw_write(codec
->control_data
, &data
, 1) != 1)
71 if (codec
->hw_read(codec
->control_data
, &data
, 1) != 1)
78 * write ak4535 register cache
80 static inline void ak4535_write_reg_cache(struct snd_soc_codec
*codec
,
81 u16 reg
, unsigned int value
)
83 u16
*cache
= codec
->reg_cache
;
84 if (reg
>= AK4535_CACHEREGNUM
)
90 * write to the AK4535 register space
92 static int ak4535_write(struct snd_soc_codec
*codec
, unsigned int reg
,
98 * D15..D8 AK4535 register offset
99 * D7...D0 register data
101 data
[0] = reg
& 0xff;
102 data
[1] = value
& 0xff;
104 ak4535_write_reg_cache(codec
, reg
, value
);
105 if (codec
->hw_write(codec
->control_data
, data
, 2) == 2)
111 static int ak4535_sync(struct snd_soc_codec
*codec
)
113 u16
*cache
= codec
->reg_cache
;
116 for (i
= 0; i
< AK4535_CACHEREGNUM
; i
++)
117 r
|= ak4535_write(codec
, i
, cache
[i
]);
122 static const char *ak4535_mono_gain
[] = {"+6dB", "-17dB"};
123 static const char *ak4535_mono_out
[] = {"(L + R)/2", "Hi-Z"};
124 static const char *ak4535_hp_out
[] = {"Stereo", "Mono"};
125 static const char *ak4535_deemp
[] = {"44.1kHz", "Off", "48kHz", "32kHz"};
126 static const char *ak4535_mic_select
[] = {"Internal", "External"};
128 static const struct soc_enum ak4535_enum
[] = {
129 SOC_ENUM_SINGLE(AK4535_SIG1
, 7, 2, ak4535_mono_gain
),
130 SOC_ENUM_SINGLE(AK4535_SIG1
, 6, 2, ak4535_mono_out
),
131 SOC_ENUM_SINGLE(AK4535_MODE2
, 2, 2, ak4535_hp_out
),
132 SOC_ENUM_SINGLE(AK4535_DAC
, 0, 4, ak4535_deemp
),
133 SOC_ENUM_SINGLE(AK4535_MIC
, 1, 2, ak4535_mic_select
),
136 static const struct snd_kcontrol_new ak4535_snd_controls
[] = {
137 SOC_SINGLE("ALC2 Switch", AK4535_SIG1
, 1, 1, 0),
138 SOC_ENUM("Mono 1 Output", ak4535_enum
[1]),
139 SOC_ENUM("Mono 1 Gain", ak4535_enum
[0]),
140 SOC_ENUM("Headphone Output", ak4535_enum
[2]),
141 SOC_ENUM("Playback Deemphasis", ak4535_enum
[3]),
142 SOC_SINGLE("Bass Volume", AK4535_DAC
, 2, 3, 0),
143 SOC_SINGLE("Mic Boost (+20dB) Switch", AK4535_MIC
, 0, 1, 0),
144 SOC_ENUM("Mic Select", ak4535_enum
[4]),
145 SOC_SINGLE("ALC Operation Time", AK4535_TIMER
, 0, 3, 0),
146 SOC_SINGLE("ALC Recovery Time", AK4535_TIMER
, 2, 3, 0),
147 SOC_SINGLE("ALC ZC Time", AK4535_TIMER
, 4, 3, 0),
148 SOC_SINGLE("ALC 1 Switch", AK4535_ALC1
, 5, 1, 0),
149 SOC_SINGLE("ALC 2 Switch", AK4535_ALC1
, 6, 1, 0),
150 SOC_SINGLE("ALC Volume", AK4535_ALC2
, 0, 127, 0),
151 SOC_SINGLE("Capture Volume", AK4535_PGA
, 0, 127, 0),
152 SOC_SINGLE("Left Playback Volume", AK4535_LATT
, 0, 127, 1),
153 SOC_SINGLE("Right Playback Volume", AK4535_RATT
, 0, 127, 1),
154 SOC_SINGLE("AUX Bypass Volume", AK4535_VOL
, 0, 15, 0),
155 SOC_SINGLE("Mic Sidetone Volume", AK4535_VOL
, 4, 7, 0),
158 /* add non dapm controls */
159 static int ak4535_add_controls(struct snd_soc_codec
*codec
)
163 for (i
= 0; i
< ARRAY_SIZE(ak4535_snd_controls
); i
++) {
164 err
= snd_ctl_add(codec
->card
,
165 snd_soc_cnew(&ak4535_snd_controls
[i
], codec
, NULL
));
174 static const struct snd_kcontrol_new ak4535_mono1_mixer_controls
[] = {
175 SOC_DAPM_SINGLE("Mic Sidetone Switch", AK4535_SIG1
, 4, 1, 0),
176 SOC_DAPM_SINGLE("Mono Playback Switch", AK4535_SIG1
, 5, 1, 0),
180 static const struct snd_kcontrol_new ak4535_stereo_mixer_controls
[] = {
181 SOC_DAPM_SINGLE("Mic Sidetone Switch", AK4535_SIG2
, 4, 1, 0),
182 SOC_DAPM_SINGLE("Playback Switch", AK4535_SIG2
, 7, 1, 0),
183 SOC_DAPM_SINGLE("Aux Bypass Switch", AK4535_SIG2
, 5, 1, 0),
187 static const struct snd_kcontrol_new ak4535_input_mixer_controls
[] = {
188 SOC_DAPM_SINGLE("Mic Capture Switch", AK4535_MIC
, 2, 1, 0),
189 SOC_DAPM_SINGLE("Aux Capture Switch", AK4535_MIC
, 5, 1, 0),
193 static const struct snd_kcontrol_new ak4535_input_mux_control
=
194 SOC_DAPM_ENUM("Input Select", ak4535_enum
[4]);
197 static const struct snd_kcontrol_new ak4535_hpl_control
=
198 SOC_DAPM_SINGLE("Switch", AK4535_SIG2
, 1, 1, 1);
201 static const struct snd_kcontrol_new ak4535_hpr_control
=
202 SOC_DAPM_SINGLE("Switch", AK4535_SIG2
, 0, 1, 1);
205 static const struct snd_kcontrol_new ak4535_mono2_control
=
206 SOC_DAPM_SINGLE("Switch", AK4535_SIG1
, 0, 1, 0);
208 /* Line out switch */
209 static const struct snd_kcontrol_new ak4535_line_control
=
210 SOC_DAPM_SINGLE("Switch", AK4535_SIG2
, 6, 1, 0);
212 /* ak4535 dapm widgets */
213 static const struct snd_soc_dapm_widget ak4535_dapm_widgets
[] = {
214 SND_SOC_DAPM_MIXER("Stereo Mixer", SND_SOC_NOPM
, 0, 0,
215 &ak4535_stereo_mixer_controls
[0],
216 ARRAY_SIZE(ak4535_stereo_mixer_controls
)),
217 SND_SOC_DAPM_MIXER("Mono1 Mixer", SND_SOC_NOPM
, 0, 0,
218 &ak4535_mono1_mixer_controls
[0],
219 ARRAY_SIZE(ak4535_mono1_mixer_controls
)),
220 SND_SOC_DAPM_MIXER("Input Mixer", SND_SOC_NOPM
, 0, 0,
221 &ak4535_input_mixer_controls
[0],
222 ARRAY_SIZE(ak4535_input_mixer_controls
)),
223 SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM
, 0, 0,
224 &ak4535_input_mux_control
),
225 SND_SOC_DAPM_DAC("DAC", "Playback", AK4535_PM2
, 0, 0),
226 SND_SOC_DAPM_SWITCH("Mono 2 Enable", SND_SOC_NOPM
, 0, 0,
227 &ak4535_mono2_control
),
228 /* speaker powersave bit */
229 SND_SOC_DAPM_PGA("Speaker Enable", AK4535_MODE2
, 0, 0, NULL
, 0),
230 SND_SOC_DAPM_SWITCH("Line Out Enable", SND_SOC_NOPM
, 0, 0,
231 &ak4535_line_control
),
232 SND_SOC_DAPM_SWITCH("Left HP Enable", SND_SOC_NOPM
, 0, 0,
233 &ak4535_hpl_control
),
234 SND_SOC_DAPM_SWITCH("Right HP Enable", SND_SOC_NOPM
, 0, 0,
235 &ak4535_hpr_control
),
236 SND_SOC_DAPM_OUTPUT("LOUT"),
237 SND_SOC_DAPM_OUTPUT("HPL"),
238 SND_SOC_DAPM_OUTPUT("ROUT"),
239 SND_SOC_DAPM_OUTPUT("HPR"),
240 SND_SOC_DAPM_OUTPUT("SPP"),
241 SND_SOC_DAPM_OUTPUT("SPN"),
242 SND_SOC_DAPM_OUTPUT("MOUT1"),
243 SND_SOC_DAPM_OUTPUT("MOUT2"),
244 SND_SOC_DAPM_OUTPUT("MICOUT"),
245 SND_SOC_DAPM_ADC("ADC", "Capture", AK4535_PM1
, 0, 0),
246 SND_SOC_DAPM_PGA("Spk Amp", AK4535_PM2
, 3, 0, NULL
, 0),
247 SND_SOC_DAPM_PGA("HP R Amp", AK4535_PM2
, 1, 0, NULL
, 0),
248 SND_SOC_DAPM_PGA("HP L Amp", AK4535_PM2
, 2, 0, NULL
, 0),
249 SND_SOC_DAPM_PGA("Mic", AK4535_PM1
, 1, 0, NULL
, 0),
250 SND_SOC_DAPM_PGA("Line Out", AK4535_PM1
, 4, 0, NULL
, 0),
251 SND_SOC_DAPM_PGA("Mono Out", AK4535_PM1
, 3, 0, NULL
, 0),
252 SND_SOC_DAPM_PGA("AUX In", AK4535_PM1
, 2, 0, NULL
, 0),
254 SND_SOC_DAPM_MICBIAS("Mic Int Bias", AK4535_MIC
, 3, 0),
255 SND_SOC_DAPM_MICBIAS("Mic Ext Bias", AK4535_MIC
, 4, 0),
256 SND_SOC_DAPM_INPUT("MICIN"),
257 SND_SOC_DAPM_INPUT("MICEXT"),
258 SND_SOC_DAPM_INPUT("AUX"),
259 SND_SOC_DAPM_INPUT("MIN"),
260 SND_SOC_DAPM_INPUT("AIN"),
263 static const struct snd_soc_dapm_route audio_map
[] = {
265 {"Stereo Mixer", "Playback Switch", "DAC"},
266 {"Stereo Mixer", "Mic Sidetone Switch", "Mic"},
267 {"Stereo Mixer", "Aux Bypass Switch", "AUX In"},
270 {"Mono1 Mixer", "Mic Sidetone Switch", "Mic"},
271 {"Mono1 Mixer", "Mono Playback Switch", "DAC"},
274 {"Mic", NULL
, "AIN"},
275 {"Input Mux", "Internal", "Mic Int Bias"},
276 {"Input Mux", "External", "Mic Ext Bias"},
277 {"Mic Int Bias", NULL
, "MICIN"},
278 {"Mic Ext Bias", NULL
, "MICEXT"},
279 {"MICOUT", NULL
, "Input Mux"},
282 {"LOUT", NULL
, "Line Out Enable"},
283 {"ROUT", NULL
, "Line Out Enable"},
284 {"Line Out Enable", "Switch", "Line Out"},
285 {"Line Out", NULL
, "Stereo Mixer"},
288 {"MOUT1", NULL
, "Mono Out"},
289 {"Mono Out", NULL
, "Mono1 Mixer"},
292 {"HPL", NULL
, "Left HP Enable"},
293 {"Left HP Enable", "Switch", "HP L Amp"},
294 {"HP L Amp", NULL
, "Stereo Mixer"},
297 {"HPR", NULL
, "Right HP Enable"},
298 {"Right HP Enable", "Switch", "HP R Amp"},
299 {"HP R Amp", NULL
, "Stereo Mixer"},
302 {"SPP", NULL
, "Speaker Enable"},
303 {"SPN", NULL
, "Speaker Enable"},
304 {"Speaker Enable", "Switch", "Spk Amp"},
305 {"Spk Amp", NULL
, "MIN"},
308 {"MOUT2", NULL
, "Mono 2 Enable"},
309 {"Mono 2 Enable", "Switch", "Stereo Mixer"},
312 {"Aux In", NULL
, "AUX"},
315 {"ADC", NULL
, "Input Mixer"},
316 {"Input Mixer", "Mic Capture Switch", "Mic"},
317 {"Input Mixer", "Aux Capture Switch", "Aux In"},
320 static int ak4535_add_widgets(struct snd_soc_codec
*codec
)
322 snd_soc_dapm_new_controls(codec
, ak4535_dapm_widgets
,
323 ARRAY_SIZE(ak4535_dapm_widgets
));
325 snd_soc_dapm_add_routes(codec
, audio_map
, ARRAY_SIZE(audio_map
));
327 snd_soc_dapm_new_widgets(codec
);
331 static int ak4535_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
332 int clk_id
, unsigned int freq
, int dir
)
334 struct snd_soc_codec
*codec
= codec_dai
->codec
;
335 struct ak4535_priv
*ak4535
= codec
->private_data
;
337 ak4535
->sysclk
= freq
;
341 static int ak4535_hw_params(struct snd_pcm_substream
*substream
,
342 struct snd_pcm_hw_params
*params
,
343 struct snd_soc_dai
*dai
)
345 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
346 struct snd_soc_device
*socdev
= rtd
->socdev
;
347 struct snd_soc_codec
*codec
= socdev
->codec
;
348 struct ak4535_priv
*ak4535
= codec
->private_data
;
349 u8 mode2
= ak4535_read_reg_cache(codec
, AK4535_MODE2
) & ~(0x3 << 5);
350 int rate
= params_rate(params
), fs
= 256;
353 fs
= ak4535
->sysclk
/ rate
;
368 ak4535_write(codec
, AK4535_MODE2
, mode2
);
372 static int ak4535_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
375 struct snd_soc_codec
*codec
= codec_dai
->codec
;
378 /* interface format */
379 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
380 case SND_SOC_DAIFMT_I2S
:
383 case SND_SOC_DAIFMT_LEFT_J
:
390 /* use 32 fs for BCLK to save power */
393 ak4535_write(codec
, AK4535_MODE1
, mode1
);
397 static int ak4535_mute(struct snd_soc_dai
*dai
, int mute
)
399 struct snd_soc_codec
*codec
= dai
->codec
;
400 u16 mute_reg
= ak4535_read_reg_cache(codec
, AK4535_DAC
) & 0xffdf;
402 ak4535_write(codec
, AK4535_DAC
, mute_reg
);
404 ak4535_write(codec
, AK4535_DAC
, mute_reg
| 0x20);
408 static int ak4535_set_bias_level(struct snd_soc_codec
*codec
,
409 enum snd_soc_bias_level level
)
414 case SND_SOC_BIAS_ON
:
415 ak4535_mute(codec
->dai
, 0);
417 case SND_SOC_BIAS_PREPARE
:
418 ak4535_mute(codec
->dai
, 1);
420 case SND_SOC_BIAS_STANDBY
:
421 i
= ak4535_read_reg_cache(codec
, AK4535_PM1
);
422 ak4535_write(codec
, AK4535_PM1
, i
| 0x80);
423 i
= ak4535_read_reg_cache(codec
, AK4535_PM2
);
424 ak4535_write(codec
, AK4535_PM2
, i
& (~0x80));
426 case SND_SOC_BIAS_OFF
:
427 i
= ak4535_read_reg_cache(codec
, AK4535_PM1
);
428 ak4535_write(codec
, AK4535_PM1
, i
& (~0x80));
431 codec
->bias_level
= level
;
435 #define AK4535_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
436 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\
437 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000)
439 struct snd_soc_dai ak4535_dai
= {
442 .stream_name
= "Playback",
445 .rates
= AK4535_RATES
,
446 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
448 .stream_name
= "Capture",
451 .rates
= AK4535_RATES
,
452 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
454 .hw_params
= ak4535_hw_params
,
455 .set_fmt
= ak4535_set_dai_fmt
,
456 .digital_mute
= ak4535_mute
,
457 .set_sysclk
= ak4535_set_dai_sysclk
,
460 EXPORT_SYMBOL_GPL(ak4535_dai
);
462 static int ak4535_suspend(struct platform_device
*pdev
, pm_message_t state
)
464 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
465 struct snd_soc_codec
*codec
= socdev
->codec
;
467 ak4535_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
471 static int ak4535_resume(struct platform_device
*pdev
)
473 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
474 struct snd_soc_codec
*codec
= socdev
->codec
;
476 ak4535_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
477 ak4535_set_bias_level(codec
, codec
->suspend_bias_level
);
482 * initialise the AK4535 driver
483 * register the mixer and dsp interfaces with the kernel
485 static int ak4535_init(struct snd_soc_device
*socdev
)
487 struct snd_soc_codec
*codec
= socdev
->codec
;
490 codec
->name
= "AK4535";
491 codec
->owner
= THIS_MODULE
;
492 codec
->read
= ak4535_read_reg_cache
;
493 codec
->write
= ak4535_write
;
494 codec
->set_bias_level
= ak4535_set_bias_level
;
495 codec
->dai
= &ak4535_dai
;
497 codec
->reg_cache_size
= ARRAY_SIZE(ak4535_reg
);
498 codec
->reg_cache
= kmemdup(ak4535_reg
, sizeof(ak4535_reg
), GFP_KERNEL
);
500 if (codec
->reg_cache
== NULL
)
504 ret
= snd_soc_new_pcms(socdev
, SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
);
506 printk(KERN_ERR
"ak4535: failed to create pcms\n");
510 /* power on device */
511 ak4535_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
513 ak4535_add_controls(codec
);
514 ak4535_add_widgets(codec
);
515 ret
= snd_soc_init_card(socdev
);
517 printk(KERN_ERR
"ak4535: failed to register card\n");
524 snd_soc_free_pcms(socdev
);
525 snd_soc_dapm_free(socdev
);
527 kfree(codec
->reg_cache
);
532 static struct snd_soc_device
*ak4535_socdev
;
534 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
536 static int ak4535_i2c_probe(struct i2c_client
*i2c
,
537 const struct i2c_device_id
*id
)
539 struct snd_soc_device
*socdev
= ak4535_socdev
;
540 struct snd_soc_codec
*codec
= socdev
->codec
;
543 i2c_set_clientdata(i2c
, codec
);
544 codec
->control_data
= i2c
;
546 ret
= ak4535_init(socdev
);
548 printk(KERN_ERR
"failed to initialise AK4535\n");
553 static int ak4535_i2c_remove(struct i2c_client
*client
)
555 struct snd_soc_codec
*codec
= i2c_get_clientdata(client
);
556 kfree(codec
->reg_cache
);
560 static const struct i2c_device_id ak4535_i2c_id
[] = {
564 MODULE_DEVICE_TABLE(i2c
, ak4535_i2c_id
);
566 static struct i2c_driver ak4535_i2c_driver
= {
568 .name
= "AK4535 I2C Codec",
569 .owner
= THIS_MODULE
,
571 .probe
= ak4535_i2c_probe
,
572 .remove
= ak4535_i2c_remove
,
573 .id_table
= ak4535_i2c_id
,
576 static int ak4535_add_i2c_device(struct platform_device
*pdev
,
577 const struct ak4535_setup_data
*setup
)
579 struct i2c_board_info info
;
580 struct i2c_adapter
*adapter
;
581 struct i2c_client
*client
;
584 ret
= i2c_add_driver(&ak4535_i2c_driver
);
586 dev_err(&pdev
->dev
, "can't add i2c driver\n");
590 memset(&info
, 0, sizeof(struct i2c_board_info
));
591 info
.addr
= setup
->i2c_address
;
592 strlcpy(info
.type
, "ak4535", I2C_NAME_SIZE
);
594 adapter
= i2c_get_adapter(setup
->i2c_bus
);
596 dev_err(&pdev
->dev
, "can't get i2c adapter %d\n",
601 client
= i2c_new_device(adapter
, &info
);
602 i2c_put_adapter(adapter
);
604 dev_err(&pdev
->dev
, "can't add i2c device at 0x%x\n",
605 (unsigned int)info
.addr
);
612 i2c_del_driver(&ak4535_i2c_driver
);
617 static int ak4535_probe(struct platform_device
*pdev
)
619 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
620 struct ak4535_setup_data
*setup
;
621 struct snd_soc_codec
*codec
;
622 struct ak4535_priv
*ak4535
;
625 printk(KERN_INFO
"AK4535 Audio Codec %s", AK4535_VERSION
);
627 setup
= socdev
->codec_data
;
628 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
632 ak4535
= kzalloc(sizeof(struct ak4535_priv
), GFP_KERNEL
);
633 if (ak4535
== NULL
) {
638 codec
->private_data
= ak4535
;
639 socdev
->codec
= codec
;
640 mutex_init(&codec
->mutex
);
641 INIT_LIST_HEAD(&codec
->dapm_widgets
);
642 INIT_LIST_HEAD(&codec
->dapm_paths
);
644 ak4535_socdev
= socdev
;
647 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
648 if (setup
->i2c_address
) {
649 codec
->hw_write
= (hw_write_t
)i2c_master_send
;
650 codec
->hw_read
= (hw_read_t
)i2c_master_recv
;
651 ret
= ak4535_add_i2c_device(pdev
, setup
);
656 kfree(codec
->private_data
);
662 /* power down chip */
663 static int ak4535_remove(struct platform_device
*pdev
)
665 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
666 struct snd_soc_codec
*codec
= socdev
->codec
;
668 if (codec
->control_data
)
669 ak4535_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
671 snd_soc_free_pcms(socdev
);
672 snd_soc_dapm_free(socdev
);
673 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
674 i2c_unregister_device(codec
->control_data
);
675 i2c_del_driver(&ak4535_i2c_driver
);
677 kfree(codec
->private_data
);
683 struct snd_soc_codec_device soc_codec_dev_ak4535
= {
684 .probe
= ak4535_probe
,
685 .remove
= ak4535_remove
,
686 .suspend
= ak4535_suspend
,
687 .resume
= ak4535_resume
,
689 EXPORT_SYMBOL_GPL(soc_codec_dev_ak4535
);
691 static int __init
ak4535_modinit(void)
693 return snd_soc_register_dai(&ak4535_dai
);
695 module_init(ak4535_modinit
);
697 static void __exit
ak4535_exit(void)
699 snd_soc_unregister_dai(&ak4535_dai
);
701 module_exit(ak4535_exit
);
703 MODULE_DESCRIPTION("Soc AK4535 driver");
704 MODULE_AUTHOR("Richard Purdie");
705 MODULE_LICENSE("GPL");