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-2009 Philipp Zabel <philipp.zabel@gmail.com>
10 * Modified by Richard Purdie <richard@openedhand.com> to fit into SoC
13 * Copyright (c) 2005 Giorgio Padrin <giorgio@mandarinlogiq.org>
14 * Copyright 2005 Openedhand Ltd.
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/types.h>
20 #include <linux/slab.h>
21 #include <linux/errno.h>
22 #include <linux/gpio.h>
23 #include <linux/delay.h>
24 #include <linux/i2c.h>
25 #include <linux/workqueue.h>
26 #include <sound/core.h>
27 #include <sound/control.h>
28 #include <sound/initval.h>
29 #include <sound/soc.h>
30 #include <sound/soc-dapm.h>
31 #include <sound/tlv.h>
32 #include <sound/uda1380.h>
36 static struct snd_soc_codec
*uda1380_codec
;
38 /* codec private data */
40 struct snd_soc_codec codec
;
41 u16 reg_cache
[UDA1380_CACHEREGNUM
];
43 struct work_struct work
;
47 * uda1380 register cache
49 static const u16 uda1380_reg
[UDA1380_CACHEREGNUM
] = {
50 0x0502, 0x0000, 0x0000, 0x3f3f,
51 0x0202, 0x0000, 0x0000, 0x0000,
52 0x0000, 0x0000, 0x0000, 0x0000,
53 0x0000, 0x0000, 0x0000, 0x0000,
54 0x0000, 0xff00, 0x0000, 0x4800,
55 0x0000, 0x0000, 0x0000, 0x0000,
56 0x0000, 0x0000, 0x0000, 0x0000,
57 0x0000, 0x0000, 0x0000, 0x0000,
58 0x0000, 0x8000, 0x0002, 0x0000,
61 static unsigned long uda1380_cache_dirty
;
64 * read uda1380 register cache
66 static inline unsigned int uda1380_read_reg_cache(struct snd_soc_codec
*codec
,
69 u16
*cache
= codec
->reg_cache
;
70 if (reg
== UDA1380_RESET
)
72 if (reg
>= UDA1380_CACHEREGNUM
)
78 * write uda1380 register cache
80 static inline void uda1380_write_reg_cache(struct snd_soc_codec
*codec
,
81 u16 reg
, unsigned int value
)
83 u16
*cache
= codec
->reg_cache
;
85 if (reg
>= UDA1380_CACHEREGNUM
)
87 if ((reg
>= 0x10) && (cache
[reg
] != value
))
88 set_bit(reg
- 0x10, &uda1380_cache_dirty
);
93 * write to the UDA1380 register space
95 static int uda1380_write(struct snd_soc_codec
*codec
, unsigned int reg
,
101 * data[0] is register offset
106 data
[1] = (value
& 0xff00) >> 8;
107 data
[2] = value
& 0x00ff;
109 uda1380_write_reg_cache(codec
, reg
, value
);
111 /* the interpolator & decimator regs must only be written when the
112 * codec DAI is active.
114 if (!codec
->active
&& (reg
>= UDA1380_MVOL
))
116 pr_debug("uda1380: hw write %x val %x\n", reg
, value
);
117 if (codec
->hw_write(codec
->control_data
, data
, 3) == 3) {
119 i2c_master_send(codec
->control_data
, data
, 1);
120 i2c_master_recv(codec
->control_data
, data
, 2);
121 val
= (data
[0]<<8) | data
[1];
123 pr_debug("uda1380: READ BACK VAL %x\n",
124 (data
[0]<<8) | data
[1]);
128 clear_bit(reg
- 0x10, &uda1380_cache_dirty
);
134 #define uda1380_reset(c) uda1380_write(c, UDA1380_RESET, 0)
136 static void uda1380_flush_work(struct work_struct
*work
)
140 for_each_bit(bit
, &uda1380_cache_dirty
, UDA1380_CACHEREGNUM
- 0x10) {
142 pr_debug("uda1380: flush reg %x val %x:\n", reg
,
143 uda1380_read_reg_cache(uda1380_codec
, reg
));
144 uda1380_write(uda1380_codec
, reg
,
145 uda1380_read_reg_cache(uda1380_codec
, reg
));
146 clear_bit(bit
, &uda1380_cache_dirty
);
150 /* declarations of ALSA reg_elem_REAL controls */
151 static const char *uda1380_deemp
[] = {
158 static const char *uda1380_input_sel
[] = {
164 static const char *uda1380_output_sel
[] = {
168 static const char *uda1380_spf_mode
[] = {
174 static const char *uda1380_capture_sel
[] = {
178 static const char *uda1380_sel_ns
[] = {
182 static const char *uda1380_mix_control
[] = {
185 "before sound processing",
186 "after sound processing"
188 static const char *uda1380_sdet_setting
[] = {
194 static const char *uda1380_os_setting
[] = {
196 "double-speed (no mixing)",
197 "quad-speed (no mixing)"
200 static const struct soc_enum uda1380_deemp_enum
[] = {
201 SOC_ENUM_SINGLE(UDA1380_DEEMP
, 8, 5, uda1380_deemp
),
202 SOC_ENUM_SINGLE(UDA1380_DEEMP
, 0, 5, uda1380_deemp
),
204 static const struct soc_enum uda1380_input_sel_enum
=
205 SOC_ENUM_SINGLE(UDA1380_ADC
, 2, 4, uda1380_input_sel
); /* SEL_MIC, SEL_LNA */
206 static const struct soc_enum uda1380_output_sel_enum
=
207 SOC_ENUM_SINGLE(UDA1380_PM
, 7, 2, uda1380_output_sel
); /* R02_EN_AVC */
208 static const struct soc_enum uda1380_spf_enum
=
209 SOC_ENUM_SINGLE(UDA1380_MODE
, 14, 4, uda1380_spf_mode
); /* M */
210 static const struct soc_enum uda1380_capture_sel_enum
=
211 SOC_ENUM_SINGLE(UDA1380_IFACE
, 6, 2, uda1380_capture_sel
); /* SEL_SOURCE */
212 static const struct soc_enum uda1380_sel_ns_enum
=
213 SOC_ENUM_SINGLE(UDA1380_MIXER
, 14, 2, uda1380_sel_ns
); /* SEL_NS */
214 static const struct soc_enum uda1380_mix_enum
=
215 SOC_ENUM_SINGLE(UDA1380_MIXER
, 12, 4, uda1380_mix_control
); /* MIX, MIX_POS */
216 static const struct soc_enum uda1380_sdet_enum
=
217 SOC_ENUM_SINGLE(UDA1380_MIXER
, 4, 4, uda1380_sdet_setting
); /* SD_VALUE */
218 static const struct soc_enum uda1380_os_enum
=
219 SOC_ENUM_SINGLE(UDA1380_MIXER
, 0, 3, uda1380_os_setting
); /* OS */
222 * from -48 dB in 1.5 dB steps (mute instead of -49.5 dB)
224 static DECLARE_TLV_DB_SCALE(amix_tlv
, -4950, 150, 1);
227 * from -78 dB in 1 dB steps (3 dB steps, really. LSB are ignored),
228 * from -66 dB in 0.5 dB steps (2 dB steps, really) and
229 * from -52 dB in 0.25 dB steps
231 static const unsigned int mvol_tlv
[] = {
232 TLV_DB_RANGE_HEAD(3),
233 0, 15, TLV_DB_SCALE_ITEM(-8200, 100, 1),
234 16, 43, TLV_DB_SCALE_ITEM(-6600, 50, 0),
235 44, 252, TLV_DB_SCALE_ITEM(-5200, 25, 0),
239 * from -72 dB in 1.5 dB steps (6 dB steps really),
240 * from -66 dB in 0.75 dB steps (3 dB steps really),
241 * from -60 dB in 0.5 dB steps (2 dB steps really) and
242 * from -46 dB in 0.25 dB steps
244 static const unsigned int vc_tlv
[] = {
245 TLV_DB_RANGE_HEAD(4),
246 0, 7, TLV_DB_SCALE_ITEM(-7800, 150, 1),
247 8, 15, TLV_DB_SCALE_ITEM(-6600, 75, 0),
248 16, 43, TLV_DB_SCALE_ITEM(-6000, 50, 0),
249 44, 228, TLV_DB_SCALE_ITEM(-4600, 25, 0),
252 /* from 0 to 6 dB in 2 dB steps if SPF mode != flat */
253 static DECLARE_TLV_DB_SCALE(tr_tlv
, 0, 200, 0);
255 /* from 0 to 24 dB in 2 dB steps, if SPF mode == maximum, otherwise cuts
256 * off at 18 dB max) */
257 static DECLARE_TLV_DB_SCALE(bb_tlv
, 0, 200, 0);
259 /* from -63 to 24 dB in 0.5 dB steps (-128...48) */
260 static DECLARE_TLV_DB_SCALE(dec_tlv
, -6400, 50, 1);
262 /* from 0 to 24 dB in 3 dB steps */
263 static DECLARE_TLV_DB_SCALE(pga_tlv
, 0, 300, 0);
265 /* from 0 to 30 dB in 2 dB steps */
266 static DECLARE_TLV_DB_SCALE(vga_tlv
, 0, 200, 0);
268 static const struct snd_kcontrol_new uda1380_snd_controls
[] = {
269 SOC_DOUBLE_TLV("Analog Mixer Volume", UDA1380_AMIX
, 0, 8, 44, 1, amix_tlv
), /* AVCR, AVCL */
270 SOC_DOUBLE_TLV("Master Playback Volume", UDA1380_MVOL
, 0, 8, 252, 1, mvol_tlv
), /* MVCL, MVCR */
271 SOC_SINGLE_TLV("ADC Playback Volume", UDA1380_MIXVOL
, 8, 228, 1, vc_tlv
), /* VC2 */
272 SOC_SINGLE_TLV("PCM Playback Volume", UDA1380_MIXVOL
, 0, 228, 1, vc_tlv
), /* VC1 */
273 SOC_ENUM("Sound Processing Filter", uda1380_spf_enum
), /* M */
274 SOC_DOUBLE_TLV("Tone Control - Treble", UDA1380_MODE
, 4, 12, 3, 0, tr_tlv
), /* TRL, TRR */
275 SOC_DOUBLE_TLV("Tone Control - Bass", UDA1380_MODE
, 0, 8, 15, 0, bb_tlv
), /* BBL, BBR */
276 /**/ SOC_SINGLE("Master Playback Switch", UDA1380_DEEMP
, 14, 1, 1), /* MTM */
277 SOC_SINGLE("ADC Playback Switch", UDA1380_DEEMP
, 11, 1, 1), /* MT2 from decimation filter */
278 SOC_ENUM("ADC Playback De-emphasis", uda1380_deemp_enum
[0]), /* DE2 */
279 SOC_SINGLE("PCM Playback Switch", UDA1380_DEEMP
, 3, 1, 1), /* MT1, from digital data input */
280 SOC_ENUM("PCM Playback De-emphasis", uda1380_deemp_enum
[1]), /* DE1 */
281 SOC_SINGLE("DAC Polarity inverting Switch", UDA1380_MIXER
, 15, 1, 0), /* DA_POL_INV */
282 SOC_ENUM("Noise Shaper", uda1380_sel_ns_enum
), /* SEL_NS */
283 SOC_ENUM("Digital Mixer Signal Control", uda1380_mix_enum
), /* MIX_POS, MIX */
284 SOC_SINGLE("Silence Detector Switch", UDA1380_MIXER
, 6, 1, 0), /* SDET_ON */
285 SOC_ENUM("Silence Detector Setting", uda1380_sdet_enum
), /* SD_VALUE */
286 SOC_ENUM("Oversampling Input", uda1380_os_enum
), /* OS */
287 SOC_DOUBLE_S8_TLV("ADC Capture Volume", UDA1380_DEC
, -128, 48, dec_tlv
), /* ML_DEC, MR_DEC */
288 /**/ SOC_SINGLE("ADC Capture Switch", UDA1380_PGA
, 15, 1, 1), /* MT_ADC */
289 SOC_DOUBLE_TLV("Line Capture Volume", UDA1380_PGA
, 0, 8, 8, 0, pga_tlv
), /* PGA_GAINCTRLL, PGA_GAINCTRLR */
290 SOC_SINGLE("ADC Polarity inverting Switch", UDA1380_ADC
, 12, 1, 0), /* ADCPOL_INV */
291 SOC_SINGLE_TLV("Mic Capture Volume", UDA1380_ADC
, 8, 15, 0, vga_tlv
), /* VGA_CTRL */
292 SOC_SINGLE("DC Filter Bypass Switch", UDA1380_ADC
, 1, 1, 0), /* SKIP_DCFIL (before decimator) */
293 SOC_SINGLE("DC Filter Enable Switch", UDA1380_ADC
, 0, 1, 0), /* EN_DCFIL (at output of decimator) */
294 SOC_SINGLE("AGC Timing", UDA1380_AGC
, 8, 7, 0), /* TODO: enum, see table 62 */
295 SOC_SINGLE("AGC Target level", UDA1380_AGC
, 2, 3, 1), /* AGC_LEVEL */
296 /* -5.5, -8, -11.5, -14 dBFS */
297 SOC_SINGLE("AGC Switch", UDA1380_AGC
, 0, 1, 0),
301 static const struct snd_kcontrol_new uda1380_input_mux_control
=
302 SOC_DAPM_ENUM("Route", uda1380_input_sel_enum
);
305 static const struct snd_kcontrol_new uda1380_output_mux_control
=
306 SOC_DAPM_ENUM("Route", uda1380_output_sel_enum
);
309 static const struct snd_kcontrol_new uda1380_capture_mux_control
=
310 SOC_DAPM_ENUM("Route", uda1380_capture_sel_enum
);
313 static const struct snd_soc_dapm_widget uda1380_dapm_widgets
[] = {
314 SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM
, 0, 0,
315 &uda1380_input_mux_control
),
316 SND_SOC_DAPM_MUX("Output Mux", SND_SOC_NOPM
, 0, 0,
317 &uda1380_output_mux_control
),
318 SND_SOC_DAPM_MUX("Capture Mux", SND_SOC_NOPM
, 0, 0,
319 &uda1380_capture_mux_control
),
320 SND_SOC_DAPM_PGA("Left PGA", UDA1380_PM
, 3, 0, NULL
, 0),
321 SND_SOC_DAPM_PGA("Right PGA", UDA1380_PM
, 1, 0, NULL
, 0),
322 SND_SOC_DAPM_PGA("Mic LNA", UDA1380_PM
, 4, 0, NULL
, 0),
323 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", UDA1380_PM
, 2, 0),
324 SND_SOC_DAPM_ADC("Right ADC", "Right Capture", UDA1380_PM
, 0, 0),
325 SND_SOC_DAPM_INPUT("VINM"),
326 SND_SOC_DAPM_INPUT("VINL"),
327 SND_SOC_DAPM_INPUT("VINR"),
328 SND_SOC_DAPM_MIXER("Analog Mixer", UDA1380_PM
, 6, 0, NULL
, 0),
329 SND_SOC_DAPM_OUTPUT("VOUTLHP"),
330 SND_SOC_DAPM_OUTPUT("VOUTRHP"),
331 SND_SOC_DAPM_OUTPUT("VOUTL"),
332 SND_SOC_DAPM_OUTPUT("VOUTR"),
333 SND_SOC_DAPM_DAC("DAC", "Playback", UDA1380_PM
, 10, 0),
334 SND_SOC_DAPM_PGA("HeadPhone Driver", UDA1380_PM
, 13, 0, NULL
, 0),
337 static const struct snd_soc_dapm_route audio_map
[] = {
340 {"HeadPhone Driver", NULL
, "Output Mux"},
341 {"VOUTR", NULL
, "Output Mux"},
342 {"VOUTL", NULL
, "Output Mux"},
344 {"Analog Mixer", NULL
, "VINR"},
345 {"Analog Mixer", NULL
, "VINL"},
346 {"Analog Mixer", NULL
, "DAC"},
348 {"Output Mux", "DAC", "DAC"},
349 {"Output Mux", "Analog Mixer", "Analog Mixer"},
351 /* {"DAC", "Digital Mixer", "I2S" } */
353 /* headphone driver */
354 {"VOUTLHP", NULL
, "HeadPhone Driver"},
355 {"VOUTRHP", NULL
, "HeadPhone Driver"},
358 {"Left ADC", NULL
, "Input Mux"},
359 {"Input Mux", "Mic", "Mic LNA"},
360 {"Input Mux", "Mic + Line R", "Mic LNA"},
361 {"Input Mux", "Line L", "Left PGA"},
362 {"Input Mux", "Line", "Left PGA"},
365 {"Right ADC", "Mic + Line R", "Right PGA"},
366 {"Right ADC", "Line", "Right PGA"},
369 {"Mic LNA", NULL
, "VINM"},
370 {"Left PGA", NULL
, "VINL"},
371 {"Right PGA", NULL
, "VINR"},
374 static int uda1380_add_widgets(struct snd_soc_codec
*codec
)
376 snd_soc_dapm_new_controls(codec
, uda1380_dapm_widgets
,
377 ARRAY_SIZE(uda1380_dapm_widgets
));
379 snd_soc_dapm_add_routes(codec
, audio_map
, ARRAY_SIZE(audio_map
));
381 snd_soc_dapm_new_widgets(codec
);
385 static int uda1380_set_dai_fmt_both(struct snd_soc_dai
*codec_dai
,
388 struct snd_soc_codec
*codec
= codec_dai
->codec
;
391 /* set up DAI based upon fmt */
392 iface
= uda1380_read_reg_cache(codec
, UDA1380_IFACE
);
393 iface
&= ~(R01_SFORI_MASK
| R01_SIM
| R01_SFORO_MASK
);
395 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
396 case SND_SOC_DAIFMT_I2S
:
397 iface
|= R01_SFORI_I2S
| R01_SFORO_I2S
;
399 case SND_SOC_DAIFMT_LSB
:
400 iface
|= R01_SFORI_LSB16
| R01_SFORO_LSB16
;
402 case SND_SOC_DAIFMT_MSB
:
403 iface
|= R01_SFORI_MSB
| R01_SFORO_MSB
;
406 /* DATAI is slave only, so in single-link mode, this has to be slave */
407 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) != SND_SOC_DAIFMT_CBS_CFS
)
410 uda1380_write(codec
, UDA1380_IFACE
, iface
);
415 static int uda1380_set_dai_fmt_playback(struct snd_soc_dai
*codec_dai
,
418 struct snd_soc_codec
*codec
= codec_dai
->codec
;
421 /* set up DAI based upon fmt */
422 iface
= uda1380_read_reg_cache(codec
, UDA1380_IFACE
);
423 iface
&= ~R01_SFORI_MASK
;
425 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
426 case SND_SOC_DAIFMT_I2S
:
427 iface
|= R01_SFORI_I2S
;
429 case SND_SOC_DAIFMT_LSB
:
430 iface
|= R01_SFORI_LSB16
;
432 case SND_SOC_DAIFMT_MSB
:
433 iface
|= R01_SFORI_MSB
;
436 /* DATAI is slave only, so this has to be slave */
437 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) != SND_SOC_DAIFMT_CBS_CFS
)
440 uda1380_write(codec
, UDA1380_IFACE
, iface
);
445 static int uda1380_set_dai_fmt_capture(struct snd_soc_dai
*codec_dai
,
448 struct snd_soc_codec
*codec
= codec_dai
->codec
;
451 /* set up DAI based upon fmt */
452 iface
= uda1380_read_reg_cache(codec
, UDA1380_IFACE
);
453 iface
&= ~(R01_SIM
| R01_SFORO_MASK
);
455 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
456 case SND_SOC_DAIFMT_I2S
:
457 iface
|= R01_SFORO_I2S
;
459 case SND_SOC_DAIFMT_LSB
:
460 iface
|= R01_SFORO_LSB16
;
462 case SND_SOC_DAIFMT_MSB
:
463 iface
|= R01_SFORO_MSB
;
466 if ((fmt
& SND_SOC_DAIFMT_MASTER_MASK
) == SND_SOC_DAIFMT_CBM_CFM
)
469 uda1380_write(codec
, UDA1380_IFACE
, iface
);
474 static int uda1380_trigger(struct snd_pcm_substream
*substream
, int cmd
,
475 struct snd_soc_dai
*dai
)
477 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
478 struct snd_soc_device
*socdev
= rtd
->socdev
;
479 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
480 struct uda1380_priv
*uda1380
= codec
->private_data
;
481 int mixer
= uda1380_read_reg_cache(codec
, UDA1380_MIXER
);
484 case SNDRV_PCM_TRIGGER_START
:
485 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
486 uda1380_write_reg_cache(codec
, UDA1380_MIXER
,
487 mixer
& ~R14_SILENCE
);
488 schedule_work(&uda1380
->work
);
490 case SNDRV_PCM_TRIGGER_STOP
:
491 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
492 uda1380_write_reg_cache(codec
, UDA1380_MIXER
,
493 mixer
| R14_SILENCE
);
494 schedule_work(&uda1380
->work
);
500 static int uda1380_pcm_hw_params(struct snd_pcm_substream
*substream
,
501 struct snd_pcm_hw_params
*params
,
502 struct snd_soc_dai
*dai
)
504 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
505 struct snd_soc_device
*socdev
= rtd
->socdev
;
506 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
507 u16 clk
= uda1380_read_reg_cache(codec
, UDA1380_CLK
);
509 /* set WSPLL power and divider if running from this clock */
510 if (clk
& R00_DAC_CLK
) {
511 int rate
= params_rate(params
);
512 u16 pm
= uda1380_read_reg_cache(codec
, UDA1380_PM
);
513 clk
&= ~0x3; /* clear SEL_LOOP_DIV */
518 case 12501 ... 25000:
521 case 25001 ... 50000:
524 case 50001 ... 100000:
528 uda1380_write(codec
, UDA1380_PM
, R02_PON_PLL
| pm
);
531 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
532 clk
|= R00_EN_DAC
| R00_EN_INT
;
534 clk
|= R00_EN_ADC
| R00_EN_DEC
;
536 uda1380_write(codec
, UDA1380_CLK
, clk
);
540 static void uda1380_pcm_shutdown(struct snd_pcm_substream
*substream
,
541 struct snd_soc_dai
*dai
)
543 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
544 struct snd_soc_device
*socdev
= rtd
->socdev
;
545 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
546 u16 clk
= uda1380_read_reg_cache(codec
, UDA1380_CLK
);
548 /* shut down WSPLL power if running from this clock */
549 if (clk
& R00_DAC_CLK
) {
550 u16 pm
= uda1380_read_reg_cache(codec
, UDA1380_PM
);
551 uda1380_write(codec
, UDA1380_PM
, ~R02_PON_PLL
& pm
);
554 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
555 clk
&= ~(R00_EN_DAC
| R00_EN_INT
);
557 clk
&= ~(R00_EN_ADC
| R00_EN_DEC
);
559 uda1380_write(codec
, UDA1380_CLK
, clk
);
562 static int uda1380_set_bias_level(struct snd_soc_codec
*codec
,
563 enum snd_soc_bias_level level
)
565 int pm
= uda1380_read_reg_cache(codec
, UDA1380_PM
);
568 case SND_SOC_BIAS_ON
:
569 case SND_SOC_BIAS_PREPARE
:
570 uda1380_write(codec
, UDA1380_PM
, R02_PON_BIAS
| pm
);
572 case SND_SOC_BIAS_STANDBY
:
573 uda1380_write(codec
, UDA1380_PM
, R02_PON_BIAS
);
575 case SND_SOC_BIAS_OFF
:
576 uda1380_write(codec
, UDA1380_PM
, 0x0);
579 codec
->bias_level
= level
;
583 #define UDA1380_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
584 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\
585 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000)
587 static struct snd_soc_dai_ops uda1380_dai_ops
= {
588 .hw_params
= uda1380_pcm_hw_params
,
589 .shutdown
= uda1380_pcm_shutdown
,
590 .trigger
= uda1380_trigger
,
591 .set_fmt
= uda1380_set_dai_fmt_both
,
594 static struct snd_soc_dai_ops uda1380_dai_ops_playback
= {
595 .hw_params
= uda1380_pcm_hw_params
,
596 .shutdown
= uda1380_pcm_shutdown
,
597 .trigger
= uda1380_trigger
,
598 .set_fmt
= uda1380_set_dai_fmt_playback
,
601 static struct snd_soc_dai_ops uda1380_dai_ops_capture
= {
602 .hw_params
= uda1380_pcm_hw_params
,
603 .shutdown
= uda1380_pcm_shutdown
,
604 .trigger
= uda1380_trigger
,
605 .set_fmt
= uda1380_set_dai_fmt_capture
,
608 struct snd_soc_dai uda1380_dai
[] = {
612 .stream_name
= "Playback",
615 .rates
= UDA1380_RATES
,
616 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
618 .stream_name
= "Capture",
621 .rates
= UDA1380_RATES
,
622 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
623 .ops
= &uda1380_dai_ops
,
625 { /* playback only - dual interface */
628 .stream_name
= "Playback",
631 .rates
= UDA1380_RATES
,
632 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
634 .ops
= &uda1380_dai_ops_playback
,
636 { /* capture only - dual interface*/
639 .stream_name
= "Capture",
642 .rates
= UDA1380_RATES
,
643 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
645 .ops
= &uda1380_dai_ops_capture
,
648 EXPORT_SYMBOL_GPL(uda1380_dai
);
650 static int uda1380_suspend(struct platform_device
*pdev
, pm_message_t state
)
652 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
653 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
655 uda1380_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
659 static int uda1380_resume(struct platform_device
*pdev
)
661 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
662 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
665 u16
*cache
= codec
->reg_cache
;
667 /* Sync reg_cache with the hardware */
668 for (i
= 0; i
< ARRAY_SIZE(uda1380_reg
); i
++) {
669 data
[0] = (i
<< 1) | ((cache
[i
] >> 8) & 0x0001);
670 data
[1] = cache
[i
] & 0x00ff;
671 codec
->hw_write(codec
->control_data
, data
, 2);
673 uda1380_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
674 uda1380_set_bias_level(codec
, codec
->suspend_bias_level
);
678 static int uda1380_probe(struct platform_device
*pdev
)
680 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
681 struct snd_soc_codec
*codec
;
682 struct uda1380_platform_data
*pdata
;
685 if (uda1380_codec
== NULL
) {
686 dev_err(&pdev
->dev
, "Codec device not registered\n");
690 socdev
->card
->codec
= uda1380_codec
;
691 codec
= uda1380_codec
;
692 pdata
= codec
->dev
->platform_data
;
695 ret
= snd_soc_new_pcms(socdev
, SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
);
697 dev_err(codec
->dev
, "failed to create pcms: %d\n", ret
);
701 /* power on device */
702 uda1380_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
703 /* set clock input */
704 switch (pdata
->dac_clk
) {
705 case UDA1380_DAC_CLK_SYSCLK
:
706 uda1380_write(codec
, UDA1380_CLK
, 0);
708 case UDA1380_DAC_CLK_WSPLL
:
709 uda1380_write(codec
, UDA1380_CLK
, R00_DAC_CLK
);
713 snd_soc_add_controls(codec
, uda1380_snd_controls
,
714 ARRAY_SIZE(uda1380_snd_controls
));
715 uda1380_add_widgets(codec
);
716 ret
= snd_soc_init_card(socdev
);
718 dev_err(codec
->dev
, "failed to register card: %d\n", ret
);
725 snd_soc_free_pcms(socdev
);
726 snd_soc_dapm_free(socdev
);
731 /* power down chip */
732 static int uda1380_remove(struct platform_device
*pdev
)
734 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
735 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
737 if (codec
->control_data
)
738 uda1380_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
740 snd_soc_free_pcms(socdev
);
741 snd_soc_dapm_free(socdev
);
746 struct snd_soc_codec_device soc_codec_dev_uda1380
= {
747 .probe
= uda1380_probe
,
748 .remove
= uda1380_remove
,
749 .suspend
= uda1380_suspend
,
750 .resume
= uda1380_resume
,
752 EXPORT_SYMBOL_GPL(soc_codec_dev_uda1380
);
754 static int uda1380_register(struct uda1380_priv
*uda1380
)
757 struct snd_soc_codec
*codec
= &uda1380
->codec
;
758 struct uda1380_platform_data
*pdata
= codec
->dev
->platform_data
;
761 dev_err(codec
->dev
, "Another UDA1380 is registered\n");
765 if (!pdata
|| !pdata
->gpio_power
|| !pdata
->gpio_reset
)
768 ret
= gpio_request(pdata
->gpio_power
, "uda1380 power");
771 ret
= gpio_request(pdata
->gpio_reset
, "uda1380 reset");
775 gpio_direction_output(pdata
->gpio_power
, 1);
777 /* we may need to have the clock running here - pH5 */
778 gpio_direction_output(pdata
->gpio_reset
, 1);
780 gpio_set_value(pdata
->gpio_reset
, 0);
782 mutex_init(&codec
->mutex
);
783 INIT_LIST_HEAD(&codec
->dapm_widgets
);
784 INIT_LIST_HEAD(&codec
->dapm_paths
);
786 codec
->private_data
= uda1380
;
787 codec
->name
= "UDA1380";
788 codec
->owner
= THIS_MODULE
;
789 codec
->read
= uda1380_read_reg_cache
;
790 codec
->write
= uda1380_write
;
791 codec
->bias_level
= SND_SOC_BIAS_OFF
;
792 codec
->set_bias_level
= uda1380_set_bias_level
;
793 codec
->dai
= uda1380_dai
;
794 codec
->num_dai
= ARRAY_SIZE(uda1380_dai
);
795 codec
->reg_cache_size
= ARRAY_SIZE(uda1380_reg
);
796 codec
->reg_cache
= &uda1380
->reg_cache
;
797 codec
->reg_cache_step
= 1;
799 memcpy(codec
->reg_cache
, uda1380_reg
, sizeof(uda1380_reg
));
801 ret
= uda1380_reset(codec
);
803 dev_err(codec
->dev
, "Failed to issue reset\n");
807 INIT_WORK(&uda1380
->work
, uda1380_flush_work
);
809 for (i
= 0; i
< ARRAY_SIZE(uda1380_dai
); i
++)
810 uda1380_dai
[i
].dev
= codec
->dev
;
812 uda1380_codec
= codec
;
814 ret
= snd_soc_register_codec(codec
);
816 dev_err(codec
->dev
, "Failed to register codec: %d\n", ret
);
820 ret
= snd_soc_register_dais(uda1380_dai
, ARRAY_SIZE(uda1380_dai
));
822 dev_err(codec
->dev
, "Failed to register DAIs: %d\n", ret
);
829 snd_soc_unregister_codec(codec
);
831 gpio_set_value(pdata
->gpio_power
, 0);
832 gpio_free(pdata
->gpio_reset
);
834 gpio_free(pdata
->gpio_power
);
839 static void uda1380_unregister(struct uda1380_priv
*uda1380
)
841 struct snd_soc_codec
*codec
= &uda1380
->codec
;
842 struct uda1380_platform_data
*pdata
= codec
->dev
->platform_data
;
844 snd_soc_unregister_dais(uda1380_dai
, ARRAY_SIZE(uda1380_dai
));
845 snd_soc_unregister_codec(&uda1380
->codec
);
847 gpio_set_value(pdata
->gpio_power
, 0);
848 gpio_free(pdata
->gpio_reset
);
849 gpio_free(pdata
->gpio_power
);
852 uda1380_codec
= NULL
;
855 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
856 static __devinit
int uda1380_i2c_probe(struct i2c_client
*i2c
,
857 const struct i2c_device_id
*id
)
859 struct uda1380_priv
*uda1380
;
860 struct snd_soc_codec
*codec
;
863 uda1380
= kzalloc(sizeof(struct uda1380_priv
), GFP_KERNEL
);
867 codec
= &uda1380
->codec
;
868 codec
->hw_write
= (hw_write_t
)i2c_master_send
;
870 i2c_set_clientdata(i2c
, uda1380
);
871 codec
->control_data
= i2c
;
873 codec
->dev
= &i2c
->dev
;
875 ret
= uda1380_register(uda1380
);
882 static int __devexit
uda1380_i2c_remove(struct i2c_client
*i2c
)
884 struct uda1380_priv
*uda1380
= i2c_get_clientdata(i2c
);
885 uda1380_unregister(uda1380
);
889 static const struct i2c_device_id uda1380_i2c_id
[] = {
893 MODULE_DEVICE_TABLE(i2c
, uda1380_i2c_id
);
895 static struct i2c_driver uda1380_i2c_driver
= {
897 .name
= "UDA1380 I2C Codec",
898 .owner
= THIS_MODULE
,
900 .probe
= uda1380_i2c_probe
,
901 .remove
= __devexit_p(uda1380_i2c_remove
),
902 .id_table
= uda1380_i2c_id
,
906 static int __init
uda1380_modinit(void)
909 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
910 ret
= i2c_add_driver(&uda1380_i2c_driver
);
912 pr_err("Failed to register UDA1380 I2C driver: %d\n", ret
);
916 module_init(uda1380_modinit
);
918 static void __exit
uda1380_exit(void)
920 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
921 i2c_del_driver(&uda1380_i2c_driver
);
924 module_exit(uda1380_exit
);
926 MODULE_AUTHOR("Giorgio Padrin");
927 MODULE_DESCRIPTION("Audio support for codec Philips UDA1380");
928 MODULE_LICENSE("GPL");