2 * uda1380.c - Philips UDA1380 ALSA SoC audio driver
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Copyright (c) 2007 Philipp Zabel <philipp.zabel@gmail.com>
9 * Improved support for DAPM and audio routing/mixing capabilities,
12 * Modified by Richard Purdie <richard@openedhand.com> to fit into SoC
15 * Copyright (c) 2005 Giorgio Padrin <giorgio@mandarinlogiq.org>
16 * Copyright 2005 Openedhand Ltd.
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/types.h>
22 #include <linux/string.h>
23 #include <linux/slab.h>
24 #include <linux/errno.h>
25 #include <linux/ioctl.h>
26 #include <linux/delay.h>
27 #include <linux/i2c.h>
28 #include <linux/workqueue.h>
29 #include <sound/core.h>
30 #include <sound/control.h>
31 #include <sound/initval.h>
32 #include <sound/info.h>
33 #include <sound/soc.h>
34 #include <sound/soc-dapm.h>
35 #include <sound/tlv.h>
39 static struct work_struct uda1380_work
;
40 static struct snd_soc_codec
*uda1380_codec
;
43 * uda1380 register cache
45 static const u16 uda1380_reg
[UDA1380_CACHEREGNUM
] = {
46 0x0502, 0x0000, 0x0000, 0x3f3f,
47 0x0202, 0x0000, 0x0000, 0x0000,
48 0x0000, 0x0000, 0x0000, 0x0000,
49 0x0000, 0x0000, 0x0000, 0x0000,
50 0x0000, 0xff00, 0x0000, 0x4800,
51 0x0000, 0x0000, 0x0000, 0x0000,
52 0x0000, 0x0000, 0x0000, 0x0000,
53 0x0000, 0x0000, 0x0000, 0x0000,
54 0x0000, 0x8000, 0x0002, 0x0000,
57 static unsigned long uda1380_cache_dirty
;
60 * read uda1380 register cache
62 static inline unsigned int uda1380_read_reg_cache(struct snd_soc_codec
*codec
,
65 u16
*cache
= codec
->reg_cache
;
66 if (reg
== UDA1380_RESET
)
68 if (reg
>= UDA1380_CACHEREGNUM
)
74 * write uda1380 register cache
76 static inline void uda1380_write_reg_cache(struct snd_soc_codec
*codec
,
77 u16 reg
, unsigned int value
)
79 u16
*cache
= codec
->reg_cache
;
81 if (reg
>= UDA1380_CACHEREGNUM
)
83 if ((reg
>= 0x10) && (cache
[reg
] != value
))
84 set_bit(reg
- 0x10, &uda1380_cache_dirty
);
89 * write to the UDA1380 register space
91 static int uda1380_write(struct snd_soc_codec
*codec
, unsigned int reg
,
97 * data[0] is register offset
102 data
[1] = (value
& 0xff00) >> 8;
103 data
[2] = value
& 0x00ff;
105 uda1380_write_reg_cache(codec
, reg
, value
);
107 /* the interpolator & decimator regs must only be written when the
108 * codec DAI is active.
110 if (!codec
->active
&& (reg
>= UDA1380_MVOL
))
112 pr_debug("uda1380: hw write %x val %x\n", reg
, value
);
113 if (codec
->hw_write(codec
->control_data
, data
, 3) == 3) {
115 i2c_master_send(codec
->control_data
, data
, 1);
116 i2c_master_recv(codec
->control_data
, data
, 2);
117 val
= (data
[0]<<8) | data
[1];
119 pr_debug("uda1380: READ BACK VAL %x\n",
120 (data
[0]<<8) | data
[1]);
124 clear_bit(reg
- 0x10, &uda1380_cache_dirty
);
130 #define uda1380_reset(c) uda1380_write(c, UDA1380_RESET, 0)
132 static void uda1380_flush_work(struct work_struct
*work
)
136 for_each_bit(bit
, &uda1380_cache_dirty
, UDA1380_CACHEREGNUM
- 0x10) {
138 pr_debug("uda1380: flush reg %x val %x:\n", reg
,
139 uda1380_read_reg_cache(uda1380_codec
, reg
));
140 uda1380_write(uda1380_codec
, reg
,
141 uda1380_read_reg_cache(uda1380_codec
, reg
));
142 clear_bit(bit
, &uda1380_cache_dirty
);
146 /* declarations of ALSA reg_elem_REAL controls */
147 static const char *uda1380_deemp
[] = {
154 static const char *uda1380_input_sel
[] = {
160 static const char *uda1380_output_sel
[] = {
164 static const char *uda1380_spf_mode
[] = {
170 static const char *uda1380_capture_sel
[] = {
174 static const char *uda1380_sel_ns
[] = {
178 static const char *uda1380_mix_control
[] = {
181 "before sound processing",
182 "after sound processing"
184 static const char *uda1380_sdet_setting
[] = {
190 static const char *uda1380_os_setting
[] = {
192 "double-speed (no mixing)",
193 "quad-speed (no mixing)"
196 static const struct soc_enum uda1380_deemp_enum
[] = {
197 SOC_ENUM_SINGLE(UDA1380_DEEMP
, 8, 5, uda1380_deemp
),
198 SOC_ENUM_SINGLE(UDA1380_DEEMP
, 0, 5, uda1380_deemp
),
200 static const struct soc_enum uda1380_input_sel_enum
=
201 SOC_ENUM_SINGLE(UDA1380_ADC
, 2, 4, uda1380_input_sel
); /* SEL_MIC, SEL_LNA */
202 static const struct soc_enum uda1380_output_sel_enum
=
203 SOC_ENUM_SINGLE(UDA1380_PM
, 7, 2, uda1380_output_sel
); /* R02_EN_AVC */
204 static const struct soc_enum uda1380_spf_enum
=
205 SOC_ENUM_SINGLE(UDA1380_MODE
, 14, 4, uda1380_spf_mode
); /* M */
206 static const struct soc_enum uda1380_capture_sel_enum
=
207 SOC_ENUM_SINGLE(UDA1380_IFACE
, 6, 2, uda1380_capture_sel
); /* SEL_SOURCE */
208 static const struct soc_enum uda1380_sel_ns_enum
=
209 SOC_ENUM_SINGLE(UDA1380_MIXER
, 14, 2, uda1380_sel_ns
); /* SEL_NS */
210 static const struct soc_enum uda1380_mix_enum
=
211 SOC_ENUM_SINGLE(UDA1380_MIXER
, 12, 4, uda1380_mix_control
); /* MIX, MIX_POS */
212 static const struct soc_enum uda1380_sdet_enum
=
213 SOC_ENUM_SINGLE(UDA1380_MIXER
, 4, 4, uda1380_sdet_setting
); /* SD_VALUE */
214 static const struct soc_enum uda1380_os_enum
=
215 SOC_ENUM_SINGLE(UDA1380_MIXER
, 0, 3, uda1380_os_setting
); /* OS */
218 * from -48 dB in 1.5 dB steps (mute instead of -49.5 dB)
220 static DECLARE_TLV_DB_SCALE(amix_tlv
, -4950, 150, 1);
223 * from -78 dB in 1 dB steps (3 dB steps, really. LSB are ignored),
224 * from -66 dB in 0.5 dB steps (2 dB steps, really) and
225 * from -52 dB in 0.25 dB steps
227 static const unsigned int mvol_tlv
[] = {
228 TLV_DB_RANGE_HEAD(3),
229 0, 15, TLV_DB_SCALE_ITEM(-8200, 100, 1),
230 16, 43, TLV_DB_SCALE_ITEM(-6600, 50, 0),
231 44, 252, TLV_DB_SCALE_ITEM(-5200, 25, 0),
235 * from -72 dB in 1.5 dB steps (6 dB steps really),
236 * from -66 dB in 0.75 dB steps (3 dB steps really),
237 * from -60 dB in 0.5 dB steps (2 dB steps really) and
238 * from -46 dB in 0.25 dB steps
240 static const unsigned int vc_tlv
[] = {
241 TLV_DB_RANGE_HEAD(4),
242 0, 7, TLV_DB_SCALE_ITEM(-7800, 150, 1),
243 8, 15, TLV_DB_SCALE_ITEM(-6600, 75, 0),
244 16, 43, TLV_DB_SCALE_ITEM(-6000, 50, 0),
245 44, 228, TLV_DB_SCALE_ITEM(-4600, 25, 0),
248 /* from 0 to 6 dB in 2 dB steps if SPF mode != flat */
249 static DECLARE_TLV_DB_SCALE(tr_tlv
, 0, 200, 0);
251 /* from 0 to 24 dB in 2 dB steps, if SPF mode == maximum, otherwise cuts
252 * off at 18 dB max) */
253 static DECLARE_TLV_DB_SCALE(bb_tlv
, 0, 200, 0);
255 /* from -63 to 24 dB in 0.5 dB steps (-128...48) */
256 static DECLARE_TLV_DB_SCALE(dec_tlv
, -6400, 50, 1);
258 /* from 0 to 24 dB in 3 dB steps */
259 static DECLARE_TLV_DB_SCALE(pga_tlv
, 0, 300, 0);
261 /* from 0 to 30 dB in 2 dB steps */
262 static DECLARE_TLV_DB_SCALE(vga_tlv
, 0, 200, 0);
264 static const struct snd_kcontrol_new uda1380_snd_controls
[] = {
265 SOC_DOUBLE_TLV("Analog Mixer Volume", UDA1380_AMIX
, 0, 8, 44, 1, amix_tlv
), /* AVCR, AVCL */
266 SOC_DOUBLE_TLV("Master Playback Volume", UDA1380_MVOL
, 0, 8, 252, 1, mvol_tlv
), /* MVCL, MVCR */
267 SOC_SINGLE_TLV("ADC Playback Volume", UDA1380_MIXVOL
, 8, 228, 1, vc_tlv
), /* VC2 */
268 SOC_SINGLE_TLV("PCM Playback Volume", UDA1380_MIXVOL
, 0, 228, 1, vc_tlv
), /* VC1 */
269 SOC_ENUM("Sound Processing Filter", uda1380_spf_enum
), /* M */
270 SOC_DOUBLE_TLV("Tone Control - Treble", UDA1380_MODE
, 4, 12, 3, 0, tr_tlv
), /* TRL, TRR */
271 SOC_DOUBLE_TLV("Tone Control - Bass", UDA1380_MODE
, 0, 8, 15, 0, bb_tlv
), /* BBL, BBR */
272 /**/ SOC_SINGLE("Master Playback Switch", UDA1380_DEEMP
, 14, 1, 1), /* MTM */
273 SOC_SINGLE("ADC Playback Switch", UDA1380_DEEMP
, 11, 1, 1), /* MT2 from decimation filter */
274 SOC_ENUM("ADC Playback De-emphasis", uda1380_deemp_enum
[0]), /* DE2 */
275 SOC_SINGLE("PCM Playback Switch", UDA1380_DEEMP
, 3, 1, 1), /* MT1, from digital data input */
276 SOC_ENUM("PCM Playback De-emphasis", uda1380_deemp_enum
[1]), /* DE1 */
277 SOC_SINGLE("DAC Polarity inverting Switch", UDA1380_MIXER
, 15, 1, 0), /* DA_POL_INV */
278 SOC_ENUM("Noise Shaper", uda1380_sel_ns_enum
), /* SEL_NS */
279 SOC_ENUM("Digital Mixer Signal Control", uda1380_mix_enum
), /* MIX_POS, MIX */
280 SOC_SINGLE("Silence Detector Switch", UDA1380_MIXER
, 6, 1, 0), /* SDET_ON */
281 SOC_ENUM("Silence Detector Setting", uda1380_sdet_enum
), /* SD_VALUE */
282 SOC_ENUM("Oversampling Input", uda1380_os_enum
), /* OS */
283 SOC_DOUBLE_S8_TLV("ADC Capture Volume", UDA1380_DEC
, -128, 48, dec_tlv
), /* ML_DEC, MR_DEC */
284 /**/ SOC_SINGLE("ADC Capture Switch", UDA1380_PGA
, 15, 1, 1), /* MT_ADC */
285 SOC_DOUBLE_TLV("Line Capture Volume", UDA1380_PGA
, 0, 8, 8, 0, pga_tlv
), /* PGA_GAINCTRLL, PGA_GAINCTRLR */
286 SOC_SINGLE("ADC Polarity inverting Switch", UDA1380_ADC
, 12, 1, 0), /* ADCPOL_INV */
287 SOC_SINGLE_TLV("Mic Capture Volume", UDA1380_ADC
, 8, 15, 0, vga_tlv
), /* VGA_CTRL */
288 SOC_SINGLE("DC Filter Bypass Switch", UDA1380_ADC
, 1, 1, 0), /* SKIP_DCFIL (before decimator) */
289 SOC_SINGLE("DC Filter Enable Switch", UDA1380_ADC
, 0, 1, 0), /* EN_DCFIL (at output of decimator) */
290 SOC_SINGLE("AGC Timing", UDA1380_AGC
, 8, 7, 0), /* TODO: enum, see table 62 */
291 SOC_SINGLE("AGC Target level", UDA1380_AGC
, 2, 3, 1), /* AGC_LEVEL */
292 /* -5.5, -8, -11.5, -14 dBFS */
293 SOC_SINGLE("AGC Switch", UDA1380_AGC
, 0, 1, 0),
297 static const struct snd_kcontrol_new uda1380_input_mux_control
=
298 SOC_DAPM_ENUM("Route", uda1380_input_sel_enum
);
301 static const struct snd_kcontrol_new uda1380_output_mux_control
=
302 SOC_DAPM_ENUM("Route", uda1380_output_sel_enum
);
305 static const struct snd_kcontrol_new uda1380_capture_mux_control
=
306 SOC_DAPM_ENUM("Route", uda1380_capture_sel_enum
);
309 static const struct snd_soc_dapm_widget uda1380_dapm_widgets
[] = {
310 SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM
, 0, 0,
311 &uda1380_input_mux_control
),
312 SND_SOC_DAPM_MUX("Output Mux", SND_SOC_NOPM
, 0, 0,
313 &uda1380_output_mux_control
),
314 SND_SOC_DAPM_MUX("Capture Mux", SND_SOC_NOPM
, 0, 0,
315 &uda1380_capture_mux_control
),
316 SND_SOC_DAPM_PGA("Left PGA", UDA1380_PM
, 3, 0, NULL
, 0),
317 SND_SOC_DAPM_PGA("Right PGA", UDA1380_PM
, 1, 0, NULL
, 0),
318 SND_SOC_DAPM_PGA("Mic LNA", UDA1380_PM
, 4, 0, NULL
, 0),
319 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", UDA1380_PM
, 2, 0),
320 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", UDA1380_PM
, 0, 0),
321 SND_SOC_DAPM_INPUT("VINM"),
322 SND_SOC_DAPM_INPUT("VINL"),
323 SND_SOC_DAPM_INPUT("VINR"),
324 SND_SOC_DAPM_MIXER("Analog Mixer", UDA1380_PM
, 6, 0, NULL
, 0),
325 SND_SOC_DAPM_OUTPUT("VOUTLHP"),
326 SND_SOC_DAPM_OUTPUT("VOUTRHP"),
327 SND_SOC_DAPM_OUTPUT("VOUTL"),
328 SND_SOC_DAPM_OUTPUT("VOUTR"),
329 SND_SOC_DAPM_DAC("DAC", "Playback", UDA1380_PM
, 10, 0),
330 SND_SOC_DAPM_PGA("HeadPhone Driver", UDA1380_PM
, 13, 0, NULL
, 0),
333 static const struct snd_soc_dapm_route audio_map
[] = {
336 {"HeadPhone Driver", NULL
, "Output Mux"},
337 {"VOUTR", NULL
, "Output Mux"},
338 {"VOUTL", NULL
, "Output Mux"},
340 {"Analog Mixer", NULL
, "VINR"},
341 {"Analog Mixer", NULL
, "VINL"},
342 {"Analog Mixer", NULL
, "DAC"},
344 {"Output Mux", "DAC", "DAC"},
345 {"Output Mux", "Analog Mixer", "Analog Mixer"},
347 /* {"DAC", "Digital Mixer", "I2S" } */
349 /* headphone driver */
350 {"VOUTLHP", NULL
, "HeadPhone Driver"},
351 {"VOUTRHP", NULL
, "HeadPhone Driver"},
354 {"Left ADC", NULL
, "Input Mux"},
355 {"Input Mux", "Mic", "Mic LNA"},
356 {"Input Mux", "Mic + Line R", "Mic LNA"},
357 {"Input Mux", "Line L", "Left PGA"},
358 {"Input Mux", "Line", "Left PGA"},
361 {"Right ADC", "Mic + Line R", "Right PGA"},
362 {"Right ADC", "Line", "Right PGA"},
365 {"Mic LNA", NULL
, "VINM"},
366 {"Left PGA", NULL
, "VINL"},
367 {"Right PGA", NULL
, "VINR"},
370 static int uda1380_add_widgets(struct snd_soc_codec
*codec
)
372 snd_soc_dapm_new_controls(codec
, uda1380_dapm_widgets
,
373 ARRAY_SIZE(uda1380_dapm_widgets
));
375 snd_soc_dapm_add_routes(codec
, audio_map
, ARRAY_SIZE(audio_map
));
377 snd_soc_dapm_new_widgets(codec
);
381 static int uda1380_set_dai_fmt_both(struct snd_soc_dai
*codec_dai
,
384 struct snd_soc_codec
*codec
= codec_dai
->codec
;
387 /* set up DAI based upon fmt */
388 iface
= uda1380_read_reg_cache(codec
, UDA1380_IFACE
);
389 iface
&= ~(R01_SFORI_MASK
| R01_SIM
| R01_SFORO_MASK
);
391 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
392 case SND_SOC_DAIFMT_I2S
:
393 iface
|= R01_SFORI_I2S
| R01_SFORO_I2S
;
395 case SND_SOC_DAIFMT_LSB
:
396 iface
|= R01_SFORI_LSB16
| R01_SFORO_LSB16
;
398 case SND_SOC_DAIFMT_MSB
:
399 iface
|= R01_SFORI_MSB
| R01_SFORO_MSB
;
402 /* DATAI is slave only, so in single-link mode, this has to be slave */
403 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) != SND_SOC_DAIFMT_CBS_CFS
)
406 uda1380_write(codec
, UDA1380_IFACE
, iface
);
411 static int uda1380_set_dai_fmt_playback(struct snd_soc_dai
*codec_dai
,
414 struct snd_soc_codec
*codec
= codec_dai
->codec
;
417 /* set up DAI based upon fmt */
418 iface
= uda1380_read_reg_cache(codec
, UDA1380_IFACE
);
419 iface
&= ~R01_SFORI_MASK
;
421 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
422 case SND_SOC_DAIFMT_I2S
:
423 iface
|= R01_SFORI_I2S
;
425 case SND_SOC_DAIFMT_LSB
:
426 iface
|= R01_SFORI_LSB16
;
428 case SND_SOC_DAIFMT_MSB
:
429 iface
|= R01_SFORI_MSB
;
432 /* DATAI is slave only, so this has to be slave */
433 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) != SND_SOC_DAIFMT_CBS_CFS
)
436 uda1380_write(codec
, UDA1380_IFACE
, iface
);
441 static int uda1380_set_dai_fmt_capture(struct snd_soc_dai
*codec_dai
,
444 struct snd_soc_codec
*codec
= codec_dai
->codec
;
447 /* set up DAI based upon fmt */
448 iface
= uda1380_read_reg_cache(codec
, UDA1380_IFACE
);
449 iface
&= ~(R01_SIM
| R01_SFORO_MASK
);
451 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
452 case SND_SOC_DAIFMT_I2S
:
453 iface
|= R01_SFORO_I2S
;
455 case SND_SOC_DAIFMT_LSB
:
456 iface
|= R01_SFORO_LSB16
;
458 case SND_SOC_DAIFMT_MSB
:
459 iface
|= R01_SFORO_MSB
;
462 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) == SND_SOC_DAIFMT_CBM_CFM
)
465 uda1380_write(codec
, UDA1380_IFACE
, iface
);
470 static int uda1380_trigger(struct snd_pcm_substream
*substream
, int cmd
,
471 struct snd_soc_dai
*dai
)
473 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
474 struct snd_soc_device
*socdev
= rtd
->socdev
;
475 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
476 int mixer
= uda1380_read_reg_cache(codec
, UDA1380_MIXER
);
479 case SNDRV_PCM_TRIGGER_START
:
480 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
481 uda1380_write_reg_cache(codec
, UDA1380_MIXER
,
482 mixer
& ~R14_SILENCE
);
483 schedule_work(&uda1380_work
);
485 case SNDRV_PCM_TRIGGER_STOP
:
486 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
487 uda1380_write_reg_cache(codec
, UDA1380_MIXER
,
488 mixer
| R14_SILENCE
);
489 schedule_work(&uda1380_work
);
495 static int uda1380_pcm_hw_params(struct snd_pcm_substream
*substream
,
496 struct snd_pcm_hw_params
*params
,
497 struct snd_soc_dai
*dai
)
499 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
500 struct snd_soc_device
*socdev
= rtd
->socdev
;
501 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
502 u16 clk
= uda1380_read_reg_cache(codec
, UDA1380_CLK
);
504 /* set WSPLL power and divider if running from this clock */
505 if (clk
& R00_DAC_CLK
) {
506 int rate
= params_rate(params
);
507 u16 pm
= uda1380_read_reg_cache(codec
, UDA1380_PM
);
508 clk
&= ~0x3; /* clear SEL_LOOP_DIV */
513 case 12501 ... 25000:
516 case 25001 ... 50000:
519 case 50001 ... 100000:
523 uda1380_write(codec
, UDA1380_PM
, R02_PON_PLL
| pm
);
526 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
527 clk
|= R00_EN_DAC
| R00_EN_INT
;
529 clk
|= R00_EN_ADC
| R00_EN_DEC
;
531 uda1380_write(codec
, UDA1380_CLK
, clk
);
535 static void uda1380_pcm_shutdown(struct snd_pcm_substream
*substream
,
536 struct snd_soc_dai
*dai
)
538 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
539 struct snd_soc_device
*socdev
= rtd
->socdev
;
540 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
541 u16 clk
= uda1380_read_reg_cache(codec
, UDA1380_CLK
);
543 /* shut down WSPLL power if running from this clock */
544 if (clk
& R00_DAC_CLK
) {
545 u16 pm
= uda1380_read_reg_cache(codec
, UDA1380_PM
);
546 uda1380_write(codec
, UDA1380_PM
, ~R02_PON_PLL
& pm
);
549 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
550 clk
&= ~(R00_EN_DAC
| R00_EN_INT
);
552 clk
&= ~(R00_EN_ADC
| R00_EN_DEC
);
554 uda1380_write(codec
, UDA1380_CLK
, clk
);
557 static int uda1380_set_bias_level(struct snd_soc_codec
*codec
,
558 enum snd_soc_bias_level level
)
560 int pm
= uda1380_read_reg_cache(codec
, UDA1380_PM
);
563 case SND_SOC_BIAS_ON
:
564 case SND_SOC_BIAS_PREPARE
:
565 uda1380_write(codec
, UDA1380_PM
, R02_PON_BIAS
| pm
);
567 case SND_SOC_BIAS_STANDBY
:
568 uda1380_write(codec
, UDA1380_PM
, R02_PON_BIAS
);
570 case SND_SOC_BIAS_OFF
:
571 uda1380_write(codec
, UDA1380_PM
, 0x0);
574 codec
->bias_level
= level
;
578 #define UDA1380_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
579 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\
580 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000)
582 static struct snd_soc_dai_ops uda1380_dai_ops
= {
583 .hw_params
= uda1380_pcm_hw_params
,
584 .shutdown
= uda1380_pcm_shutdown
,
585 .trigger
= uda1380_trigger
,
586 .set_fmt
= uda1380_set_dai_fmt_both
,
589 static struct snd_soc_dai_ops uda1380_dai_ops_playback
= {
590 .hw_params
= uda1380_pcm_hw_params
,
591 .shutdown
= uda1380_pcm_shutdown
,
592 .trigger
= uda1380_trigger
,
593 .set_fmt
= uda1380_set_dai_fmt_playback
,
596 static struct snd_soc_dai_ops uda1380_dai_ops_capture
= {
597 .hw_params
= uda1380_pcm_hw_params
,
598 .shutdown
= uda1380_pcm_shutdown
,
599 .trigger
= uda1380_trigger
,
600 .set_fmt
= uda1380_set_dai_fmt_capture
,
603 struct snd_soc_dai uda1380_dai
[] = {
607 .stream_name
= "Playback",
610 .rates
= UDA1380_RATES
,
611 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
613 .stream_name
= "Capture",
616 .rates
= UDA1380_RATES
,
617 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
618 .ops
= &uda1380_dai_ops
,
620 { /* playback only - dual interface */
623 .stream_name
= "Playback",
626 .rates
= UDA1380_RATES
,
627 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
629 .ops
= &uda1380_dai_ops_playback
,
631 { /* capture only - dual interface*/
634 .stream_name
= "Capture",
637 .rates
= UDA1380_RATES
,
638 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
640 .ops
= &uda1380_dai_ops_capture
,
643 EXPORT_SYMBOL_GPL(uda1380_dai
);
645 static int uda1380_suspend(struct platform_device
*pdev
, pm_message_t state
)
647 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
648 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
650 uda1380_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
654 static int uda1380_resume(struct platform_device
*pdev
)
656 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
657 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
660 u16
*cache
= codec
->reg_cache
;
662 /* Sync reg_cache with the hardware */
663 for (i
= 0; i
< ARRAY_SIZE(uda1380_reg
); i
++) {
664 data
[0] = (i
<< 1) | ((cache
[i
] >> 8) & 0x0001);
665 data
[1] = cache
[i
] & 0x00ff;
666 codec
->hw_write(codec
->control_data
, data
, 2);
668 uda1380_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
669 uda1380_set_bias_level(codec
, codec
->suspend_bias_level
);
674 * initialise the UDA1380 driver
675 * register mixer and dsp interfaces with the kernel
677 static int uda1380_init(struct snd_soc_device
*socdev
, int dac_clk
)
679 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
682 codec
->name
= "UDA1380";
683 codec
->owner
= THIS_MODULE
;
684 codec
->read
= uda1380_read_reg_cache
;
685 codec
->write
= uda1380_write
;
686 codec
->set_bias_level
= uda1380_set_bias_level
;
687 codec
->dai
= uda1380_dai
;
688 codec
->num_dai
= ARRAY_SIZE(uda1380_dai
);
689 codec
->reg_cache
= kmemdup(uda1380_reg
, sizeof(uda1380_reg
),
691 if (codec
->reg_cache
== NULL
)
693 codec
->reg_cache_size
= ARRAY_SIZE(uda1380_reg
);
694 codec
->reg_cache_step
= 1;
695 uda1380_reset(codec
);
697 uda1380_codec
= codec
;
698 INIT_WORK(&uda1380_work
, uda1380_flush_work
);
701 ret
= snd_soc_new_pcms(socdev
, SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
);
703 pr_err("uda1380: failed to create pcms\n");
707 /* power on device */
708 uda1380_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
709 /* set clock input */
711 case UDA1380_DAC_CLK_SYSCLK
:
712 uda1380_write(codec
, UDA1380_CLK
, 0);
714 case UDA1380_DAC_CLK_WSPLL
:
715 uda1380_write(codec
, UDA1380_CLK
, R00_DAC_CLK
);
720 snd_soc_add_controls(codec
, uda1380_snd_controls
,
721 ARRAY_SIZE(uda1380_snd_controls
));
722 uda1380_add_widgets(codec
);
723 ret
= snd_soc_init_card(socdev
);
725 pr_err("uda1380: failed to register card\n");
732 snd_soc_free_pcms(socdev
);
733 snd_soc_dapm_free(socdev
);
735 kfree(codec
->reg_cache
);
739 static struct snd_soc_device
*uda1380_socdev
;
741 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
743 static int uda1380_i2c_probe(struct i2c_client
*i2c
,
744 const struct i2c_device_id
*id
)
746 struct snd_soc_device
*socdev
= uda1380_socdev
;
747 struct uda1380_setup_data
*setup
= socdev
->codec_data
;
748 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
751 i2c_set_clientdata(i2c
, codec
);
752 codec
->control_data
= i2c
;
754 ret
= uda1380_init(socdev
, setup
->dac_clk
);
756 pr_err("uda1380: failed to initialise UDA1380\n");
761 static int uda1380_i2c_remove(struct i2c_client
*client
)
763 struct snd_soc_codec
*codec
= i2c_get_clientdata(client
);
764 kfree(codec
->reg_cache
);
768 static const struct i2c_device_id uda1380_i2c_id
[] = {
772 MODULE_DEVICE_TABLE(i2c
, uda1380_i2c_id
);
774 static struct i2c_driver uda1380_i2c_driver
= {
776 .name
= "UDA1380 I2C Codec",
777 .owner
= THIS_MODULE
,
779 .probe
= uda1380_i2c_probe
,
780 .remove
= uda1380_i2c_remove
,
781 .id_table
= uda1380_i2c_id
,
784 static int uda1380_add_i2c_device(struct platform_device
*pdev
,
785 const struct uda1380_setup_data
*setup
)
787 struct i2c_board_info info
;
788 struct i2c_adapter
*adapter
;
789 struct i2c_client
*client
;
792 ret
= i2c_add_driver(&uda1380_i2c_driver
);
794 dev_err(&pdev
->dev
, "can't add i2c driver\n");
798 memset(&info
, 0, sizeof(struct i2c_board_info
));
799 info
.addr
= setup
->i2c_address
;
800 strlcpy(info
.type
, "uda1380", I2C_NAME_SIZE
);
802 adapter
= i2c_get_adapter(setup
->i2c_bus
);
804 dev_err(&pdev
->dev
, "can't get i2c adapter %d\n",
809 client
= i2c_new_device(adapter
, &info
);
810 i2c_put_adapter(adapter
);
812 dev_err(&pdev
->dev
, "can't add i2c device at 0x%x\n",
813 (unsigned int)info
.addr
);
820 i2c_del_driver(&uda1380_i2c_driver
);
825 static int uda1380_probe(struct platform_device
*pdev
)
827 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
828 struct uda1380_setup_data
*setup
;
829 struct snd_soc_codec
*codec
;
832 setup
= socdev
->codec_data
;
833 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
837 socdev
->card
->codec
= codec
;
838 mutex_init(&codec
->mutex
);
839 INIT_LIST_HEAD(&codec
->dapm_widgets
);
840 INIT_LIST_HEAD(&codec
->dapm_paths
);
842 uda1380_socdev
= socdev
;
845 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
846 if (setup
->i2c_address
) {
847 codec
->hw_write
= (hw_write_t
)i2c_master_send
;
848 ret
= uda1380_add_i2c_device(pdev
, setup
);
857 /* power down chip */
858 static int uda1380_remove(struct platform_device
*pdev
)
860 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
861 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
863 if (codec
->control_data
)
864 uda1380_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
866 snd_soc_free_pcms(socdev
);
867 snd_soc_dapm_free(socdev
);
868 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
869 i2c_unregister_device(codec
->control_data
);
870 i2c_del_driver(&uda1380_i2c_driver
);
877 struct snd_soc_codec_device soc_codec_dev_uda1380
= {
878 .probe
= uda1380_probe
,
879 .remove
= uda1380_remove
,
880 .suspend
= uda1380_suspend
,
881 .resume
= uda1380_resume
,
883 EXPORT_SYMBOL_GPL(soc_codec_dev_uda1380
);
885 static int __init
uda1380_modinit(void)
887 return snd_soc_register_dais(uda1380_dai
, ARRAY_SIZE(uda1380_dai
));
889 module_init(uda1380_modinit
);
891 static void __exit
uda1380_exit(void)
893 snd_soc_unregister_dais(uda1380_dai
, ARRAY_SIZE(uda1380_dai
));
895 module_exit(uda1380_exit
);
897 MODULE_AUTHOR("Giorgio Padrin");
898 MODULE_DESCRIPTION("Audio support for codec Philips UDA1380");
899 MODULE_LICENSE("GPL");