aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/da7210.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/da7210.c')
-rw-r--r--sound/soc/codecs/da7210.c650
1 files changed, 516 insertions, 134 deletions
diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c
index 92fd9d7a922..b545b7d3722 100644
--- a/sound/soc/codecs/da7210.c
+++ b/sound/soc/codecs/da7210.c
@@ -19,6 +19,7 @@
19#include <linux/i2c.h> 19#include <linux/i2c.h>
20#include <linux/platform_device.h> 20#include <linux/platform_device.h>
21#include <linux/slab.h> 21#include <linux/slab.h>
22#include <linux/module.h>
22#include <sound/pcm.h> 23#include <sound/pcm.h>
23#include <sound/pcm_params.h> 24#include <sound/pcm_params.h>
24#include <sound/soc.h> 25#include <sound/soc.h>
@@ -26,23 +27,41 @@
26#include <sound/tlv.h> 27#include <sound/tlv.h>
27 28
28/* DA7210 register space */ 29/* DA7210 register space */
30#define DA7210_CONTROL 0x01
29#define DA7210_STATUS 0x02 31#define DA7210_STATUS 0x02
30#define DA7210_STARTUP1 0x03 32#define DA7210_STARTUP1 0x03
33#define DA7210_STARTUP2 0x04
34#define DA7210_STARTUP3 0x05
31#define DA7210_MIC_L 0x07 35#define DA7210_MIC_L 0x07
32#define DA7210_MIC_R 0x08 36#define DA7210_MIC_R 0x08
37#define DA7210_AUX1_L 0x09
38#define DA7210_AUX1_R 0x0A
39#define DA7210_AUX2 0x0B
40#define DA7210_IN_GAIN 0x0C
33#define DA7210_INMIX_L 0x0D 41#define DA7210_INMIX_L 0x0D
34#define DA7210_INMIX_R 0x0E 42#define DA7210_INMIX_R 0x0E
35#define DA7210_ADC_HPF 0x0F 43#define DA7210_ADC_HPF 0x0F
36#define DA7210_ADC 0x10 44#define DA7210_ADC 0x10
45#define DA7210_ADC_EQ1_2 0X11
46#define DA7210_ADC_EQ3_4 0x12
47#define DA7210_ADC_EQ5 0x13
37#define DA7210_DAC_HPF 0x14 48#define DA7210_DAC_HPF 0x14
38#define DA7210_DAC_L 0x15 49#define DA7210_DAC_L 0x15
39#define DA7210_DAC_R 0x16 50#define DA7210_DAC_R 0x16
40#define DA7210_DAC_SEL 0x17 51#define DA7210_DAC_SEL 0x17
52#define DA7210_SOFTMUTE 0x18
53#define DA7210_DAC_EQ1_2 0x19
54#define DA7210_DAC_EQ3_4 0x1A
55#define DA7210_DAC_EQ5 0x1B
41#define DA7210_OUTMIX_L 0x1C 56#define DA7210_OUTMIX_L 0x1C
42#define DA7210_OUTMIX_R 0x1D 57#define DA7210_OUTMIX_R 0x1D
58#define DA7210_OUT1_L 0x1E
59#define DA7210_OUT1_R 0x1F
60#define DA7210_OUT2 0x20
43#define DA7210_HP_L_VOL 0x21 61#define DA7210_HP_L_VOL 0x21
44#define DA7210_HP_R_VOL 0x22 62#define DA7210_HP_R_VOL 0x22
45#define DA7210_HP_CFG 0x23 63#define DA7210_HP_CFG 0x23
64#define DA7210_ZERO_CROSS 0x24
46#define DA7210_DAI_SRC_SEL 0x25 65#define DA7210_DAI_SRC_SEL 0x25
47#define DA7210_DAI_CFG1 0x26 66#define DA7210_DAI_CFG1 0x26
48#define DA7210_DAI_CFG3 0x28 67#define DA7210_DAI_CFG3 0x28
@@ -50,6 +69,12 @@
50#define DA7210_PLL_DIV2 0x2A 69#define DA7210_PLL_DIV2 0x2A
51#define DA7210_PLL_DIV3 0x2B 70#define DA7210_PLL_DIV3 0x2B
52#define DA7210_PLL 0x2C 71#define DA7210_PLL 0x2C
72#define DA7210_ALC_MAX 0x83
73#define DA7210_ALC_MIN 0x84
74#define DA7210_ALC_NOIS 0x85
75#define DA7210_ALC_ATT 0x86
76#define DA7210_ALC_REL 0x87
77#define DA7210_ALC_DEL 0x88
53#define DA7210_A_HID_UNLOCK 0x8A 78#define DA7210_A_HID_UNLOCK 0x8A
54#define DA7210_A_TEST_UNLOCK 0x8B 79#define DA7210_A_TEST_UNLOCK 0x8B
55#define DA7210_A_PLL1 0x90 80#define DA7210_A_PLL1 0x90
@@ -72,6 +97,7 @@
72#define DA7210_IN_R_EN (1 << 7) 97#define DA7210_IN_R_EN (1 << 7)
73 98
74/* ADC bit fields */ 99/* ADC bit fields */
100#define DA7210_ADC_ALC_EN (1 << 0)
75#define DA7210_ADC_L_EN (1 << 3) 101#define DA7210_ADC_L_EN (1 << 3)
76#define DA7210_ADC_R_EN (1 << 7) 102#define DA7210_ADC_R_EN (1 << 7)
77 103
@@ -105,12 +131,17 @@
105 131
106/* DAI_CFG1 bit fields */ 132/* DAI_CFG1 bit fields */
107#define DA7210_DAI_WORD_S16_LE (0 << 0) 133#define DA7210_DAI_WORD_S16_LE (0 << 0)
134#define DA7210_DAI_WORD_S20_3LE (1 << 0)
108#define DA7210_DAI_WORD_S24_LE (2 << 0) 135#define DA7210_DAI_WORD_S24_LE (2 << 0)
136#define DA7210_DAI_WORD_S32_LE (3 << 0)
109#define DA7210_DAI_FLEN_64BIT (1 << 2) 137#define DA7210_DAI_FLEN_64BIT (1 << 2)
138#define DA7210_DAI_MODE_SLAVE (0 << 7)
110#define DA7210_DAI_MODE_MASTER (1 << 7) 139#define DA7210_DAI_MODE_MASTER (1 << 7)
111 140
112/* DAI_CFG3 bit fields */ 141/* DAI_CFG3 bit fields */
113#define DA7210_DAI_FORMAT_I2SMODE (0 << 0) 142#define DA7210_DAI_FORMAT_I2SMODE (0 << 0)
143#define DA7210_DAI_FORMAT_LEFT_J (1 << 0)
144#define DA7210_DAI_FORMAT_RIGHT_J (2 << 0)
114#define DA7210_DAI_OE (1 << 3) 145#define DA7210_DAI_OE (1 << 3)
115#define DA7210_DAI_EN (1 << 7) 146#define DA7210_DAI_EN (1 << 7)
116 147
@@ -133,6 +164,43 @@
133#define DA7210_PLL_FS_96000 (0xF << 0) 164#define DA7210_PLL_FS_96000 (0xF << 0)
134#define DA7210_PLL_EN (0x1 << 7) 165#define DA7210_PLL_EN (0x1 << 7)
135 166
167/* SOFTMUTE bit fields */
168#define DA7210_RAMP_EN (1 << 6)
169
170/* CONTROL bit fields */
171#define DA7210_NOISE_SUP_EN (1 << 3)
172
173/* IN_GAIN bit fields */
174#define DA7210_INPGA_L_VOL (0x0F << 0)
175#define DA7210_INPGA_R_VOL (0xF0 << 0)
176
177/* ZERO_CROSS bit fields */
178#define DA7210_AUX1_L_ZC (1 << 0)
179#define DA7210_AUX1_R_ZC (1 << 1)
180#define DA7210_HP_L_ZC (1 << 6)
181#define DA7210_HP_R_ZC (1 << 7)
182
183/* AUX1_L bit fields */
184#define DA7210_AUX1_L_VOL (0x3F << 0)
185
186/* AUX1_R bit fields */
187#define DA7210_AUX1_R_VOL (0x3F << 0)
188
189/* Minimum INPGA and AUX1 volume to enable noise suppression */
190#define DA7210_INPGA_MIN_VOL_NS 0x0A /* 10.5dB */
191#define DA7210_AUX1_MIN_VOL_NS 0x35 /* 6dB */
192
193/* OUT1_L bit fields */
194#define DA7210_OUT1_L_EN (1 << 7)
195
196/* OUT1_R bit fields */
197#define DA7210_OUT1_R_EN (1 << 7)
198
199/* OUT2 bit fields */
200#define DA7210_OUT2_OUTMIX_R (1 << 5)
201#define DA7210_OUT2_OUTMIX_L (1 << 6)
202#define DA7210_OUT2_EN (1 << 7)
203
136#define DA7210_VERSION "0.0.1" 204#define DA7210_VERSION "0.0.1"
137 205
138/* 206/*
@@ -144,24 +212,351 @@
144 * mute : 0x10 212 * mute : 0x10
145 * reserved : 0x00 - 0x0F 213 * reserved : 0x00 - 0x0F
146 * 214 *
147 * ** FIXME **
148 *
149 * Reserved area are considered as "mute". 215 * Reserved area are considered as "mute".
150 * -> min = -79.5 dB
151 */ 216 */
152static const DECLARE_TLV_DB_SCALE(hp_out_tlv, -7950, 150, 1); 217static const unsigned int hp_out_tlv[] = {
218 TLV_DB_RANGE_HEAD(2),
219 0x0, 0x10, TLV_DB_SCALE_ITEM(TLV_DB_GAIN_MUTE, 0, 1),
220 /* -54 dB to +15 dB */
221 0x11, 0x3f, TLV_DB_SCALE_ITEM(-5400, 150, 0),
222};
223
224static const unsigned int lineout_vol_tlv[] = {
225 TLV_DB_RANGE_HEAD(2),
226 0x0, 0x10, TLV_DB_SCALE_ITEM(TLV_DB_GAIN_MUTE, 0, 1),
227 /* -54dB to 15dB */
228 0x11, 0x3f, TLV_DB_SCALE_ITEM(-5400, 150, 0)
229};
230
231static const unsigned int mono_vol_tlv[] = {
232 TLV_DB_RANGE_HEAD(2),
233 0x0, 0x2, TLV_DB_SCALE_ITEM(-1800, 0, 1),
234 /* -18dB to 6dB */
235 0x3, 0x7, TLV_DB_SCALE_ITEM(-1800, 600, 0)
236};
237
238static const DECLARE_TLV_DB_SCALE(eq_gain_tlv, -1050, 150, 0);
239static const DECLARE_TLV_DB_SCALE(adc_eq_master_gain_tlv, -1800, 600, 1);
240static const DECLARE_TLV_DB_SCALE(dac_gain_tlv, -7725, 75, 0);
241
242/* ADC and DAC high pass filter f0 value */
243static const char const *da7210_hpf_cutoff_txt[] = {
244 "Fs/8192*pi", "Fs/4096*pi", "Fs/2048*pi", "Fs/1024*pi"
245};
246
247static const struct soc_enum da7210_dac_hpf_cutoff =
248 SOC_ENUM_SINGLE(DA7210_DAC_HPF, 0, 4, da7210_hpf_cutoff_txt);
249
250static const struct soc_enum da7210_adc_hpf_cutoff =
251 SOC_ENUM_SINGLE(DA7210_ADC_HPF, 0, 4, da7210_hpf_cutoff_txt);
252
253/* ADC and DAC voice (8kHz) high pass cutoff value */
254static const char const *da7210_vf_cutoff_txt[] = {
255 "2.5Hz", "25Hz", "50Hz", "100Hz", "150Hz", "200Hz", "300Hz", "400Hz"
256};
257
258static const struct soc_enum da7210_dac_vf_cutoff =
259 SOC_ENUM_SINGLE(DA7210_DAC_HPF, 4, 8, da7210_vf_cutoff_txt);
260
261static const struct soc_enum da7210_adc_vf_cutoff =
262 SOC_ENUM_SINGLE(DA7210_ADC_HPF, 4, 8, da7210_vf_cutoff_txt);
263
264static const char *da7210_hp_mode_txt[] = {
265 "Class H", "Class G"
266};
267
268static const struct soc_enum da7210_hp_mode_sel =
269 SOC_ENUM_SINGLE(DA7210_HP_CFG, 0, 2, da7210_hp_mode_txt);
270
271/* ALC can be enabled only if noise suppression is disabled */
272static int da7210_put_alc_sw(struct snd_kcontrol *kcontrol,
273 struct snd_ctl_elem_value *ucontrol)
274{
275 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
276
277 if (ucontrol->value.integer.value[0]) {
278 /* Check if noise suppression is enabled */
279 if (snd_soc_read(codec, DA7210_CONTROL) & DA7210_NOISE_SUP_EN) {
280 dev_dbg(codec->dev,
281 "Disable noise suppression to enable ALC\n");
282 return -EINVAL;
283 }
284 }
285 /* If all conditions are met or we are actually disabling ALC */
286 return snd_soc_put_volsw(kcontrol, ucontrol);
287}
288
289/* Noise suppression can be enabled only if following conditions are met
290 * ALC disabled
291 * ZC enabled for HP and AUX1 PGA
292 * INPGA_L_VOL and INPGA_R_VOL >= 10.5 dB
293 * AUX1_L_VOL and AUX1_R_VOL >= 6 dB
294 */
295static int da7210_put_noise_sup_sw(struct snd_kcontrol *kcontrol,
296 struct snd_ctl_elem_value *ucontrol)
297{
298 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
299 u8 val;
300
301 if (ucontrol->value.integer.value[0]) {
302 /* Check if ALC is enabled */
303 if (snd_soc_read(codec, DA7210_ADC) & DA7210_ADC_ALC_EN)
304 goto err;
305
306 /* Check ZC for HP and AUX1 PGA */
307 if ((snd_soc_read(codec, DA7210_ZERO_CROSS) &
308 (DA7210_AUX1_L_ZC | DA7210_AUX1_R_ZC | DA7210_HP_L_ZC |
309 DA7210_HP_R_ZC)) != (DA7210_AUX1_L_ZC |
310 DA7210_AUX1_R_ZC | DA7210_HP_L_ZC | DA7210_HP_R_ZC))
311 goto err;
312
313 /* Check INPGA_L_VOL and INPGA_R_VOL */
314 val = snd_soc_read(codec, DA7210_IN_GAIN);
315 if (((val & DA7210_INPGA_L_VOL) < DA7210_INPGA_MIN_VOL_NS) ||
316 (((val & DA7210_INPGA_R_VOL) >> 4) <
317 DA7210_INPGA_MIN_VOL_NS))
318 goto err;
319
320 /* Check AUX1_L_VOL and AUX1_R_VOL */
321 if (((snd_soc_read(codec, DA7210_AUX1_L) & DA7210_AUX1_L_VOL) <
322 DA7210_AUX1_MIN_VOL_NS) ||
323 ((snd_soc_read(codec, DA7210_AUX1_R) & DA7210_AUX1_R_VOL) <
324 DA7210_AUX1_MIN_VOL_NS))
325 goto err;
326 }
327 /* If all conditions are met or we are actually disabling Noise sup */
328 return snd_soc_put_volsw(kcontrol, ucontrol);
329
330err:
331 return -EINVAL;
332}
153 333
154static const struct snd_kcontrol_new da7210_snd_controls[] = { 334static const struct snd_kcontrol_new da7210_snd_controls[] = {
155 335
156 SOC_DOUBLE_R_TLV("HeadPhone Playback Volume", 336 SOC_DOUBLE_R_TLV("HeadPhone Playback Volume",
157 DA7210_HP_L_VOL, DA7210_HP_R_VOL, 337 DA7210_HP_L_VOL, DA7210_HP_R_VOL,
158 0, 0x3F, 0, hp_out_tlv), 338 0, 0x3F, 0, hp_out_tlv),
339 SOC_DOUBLE_R_TLV("Digital Playback Volume",
340 DA7210_DAC_L, DA7210_DAC_R,
341 0, 0x77, 1, dac_gain_tlv),
342 SOC_DOUBLE_R_TLV("Lineout Playback Volume",
343 DA7210_OUT1_L, DA7210_OUT1_R,
344 0, 0x3f, 0, lineout_vol_tlv),
345 SOC_SINGLE_TLV("Mono Playback Volume", DA7210_OUT2, 0, 0x7, 0,
346 mono_vol_tlv),
347
348 /* DAC Equalizer controls */
349 SOC_SINGLE("DAC EQ Switch", DA7210_DAC_EQ5, 7, 1, 0),
350 SOC_SINGLE_TLV("DAC EQ1 Volume", DA7210_DAC_EQ1_2, 0, 0xf, 1,
351 eq_gain_tlv),
352 SOC_SINGLE_TLV("DAC EQ2 Volume", DA7210_DAC_EQ1_2, 4, 0xf, 1,
353 eq_gain_tlv),
354 SOC_SINGLE_TLV("DAC EQ3 Volume", DA7210_DAC_EQ3_4, 0, 0xf, 1,
355 eq_gain_tlv),
356 SOC_SINGLE_TLV("DAC EQ4 Volume", DA7210_DAC_EQ3_4, 4, 0xf, 1,
357 eq_gain_tlv),
358 SOC_SINGLE_TLV("DAC EQ5 Volume", DA7210_DAC_EQ5, 0, 0xf, 1,
359 eq_gain_tlv),
360
361 /* ADC Equalizer controls */
362 SOC_SINGLE("ADC EQ Switch", DA7210_ADC_EQ5, 7, 1, 0),
363 SOC_SINGLE_TLV("ADC EQ Master Volume", DA7210_ADC_EQ5, 4, 0x3,
364 1, adc_eq_master_gain_tlv),
365 SOC_SINGLE_TLV("ADC EQ1 Volume", DA7210_ADC_EQ1_2, 0, 0xf, 1,
366 eq_gain_tlv),
367 SOC_SINGLE_TLV("ADC EQ2 Volume", DA7210_ADC_EQ1_2, 4, 0xf, 1,
368 eq_gain_tlv),
369 SOC_SINGLE_TLV("ADC EQ3 Volume", DA7210_ADC_EQ3_4, 0, 0xf, 1,
370 eq_gain_tlv),
371 SOC_SINGLE_TLV("ADC EQ4 Volume", DA7210_ADC_EQ3_4, 4, 0xf, 1,
372 eq_gain_tlv),
373 SOC_SINGLE_TLV("ADC EQ5 Volume", DA7210_ADC_EQ5, 0, 0xf, 1,
374 eq_gain_tlv),
375
376 SOC_SINGLE("DAC HPF Switch", DA7210_DAC_HPF, 3, 1, 0),
377 SOC_ENUM("DAC HPF Cutoff", da7210_dac_hpf_cutoff),
378 SOC_SINGLE("DAC Voice Mode Switch", DA7210_DAC_HPF, 7, 1, 0),
379 SOC_ENUM("DAC Voice Cutoff", da7210_dac_vf_cutoff),
380
381 SOC_SINGLE("ADC HPF Switch", DA7210_ADC_HPF, 3, 1, 0),
382 SOC_ENUM("ADC HPF Cutoff", da7210_adc_hpf_cutoff),
383 SOC_SINGLE("ADC Voice Mode Switch", DA7210_ADC_HPF, 7, 1, 0),
384 SOC_ENUM("ADC Voice Cutoff", da7210_adc_vf_cutoff),
385
386 /* Mute controls */
387 SOC_DOUBLE_R("Mic Capture Switch", DA7210_MIC_L, DA7210_MIC_R, 3, 1, 0),
388 SOC_SINGLE("Aux2 Capture Switch", DA7210_AUX2, 2, 1, 0),
389 SOC_DOUBLE("ADC Capture Switch", DA7210_ADC, 2, 6, 1, 0),
390 SOC_SINGLE("Digital Soft Mute Switch", DA7210_SOFTMUTE, 7, 1, 0),
391 SOC_SINGLE("Digital Soft Mute Rate", DA7210_SOFTMUTE, 0, 0x7, 0),
392
393 /* Zero cross controls */
394 SOC_DOUBLE("Aux1 ZC Switch", DA7210_ZERO_CROSS, 0, 1, 1, 0),
395 SOC_DOUBLE("In PGA ZC Switch", DA7210_ZERO_CROSS, 2, 3, 1, 0),
396 SOC_DOUBLE("Lineout ZC Switch", DA7210_ZERO_CROSS, 4, 5, 1, 0),
397 SOC_DOUBLE("Headphone ZC Switch", DA7210_ZERO_CROSS, 6, 7, 1, 0),
398
399 SOC_ENUM("Headphone Class", da7210_hp_mode_sel),
400
401 /* ALC controls */
402 SOC_SINGLE_EXT("ALC Enable Switch", DA7210_ADC, 0, 1, 0,
403 snd_soc_get_volsw, da7210_put_alc_sw),
404 SOC_SINGLE("ALC Capture Max Volume", DA7210_ALC_MAX, 0, 0x3F, 0),
405 SOC_SINGLE("ALC Capture Min Volume", DA7210_ALC_MIN, 0, 0x3F, 0),
406 SOC_SINGLE("ALC Capture Noise Volume", DA7210_ALC_NOIS, 0, 0x3F, 0),
407 SOC_SINGLE("ALC Capture Attack Rate", DA7210_ALC_ATT, 0, 0xFF, 0),
408 SOC_SINGLE("ALC Capture Release Rate", DA7210_ALC_REL, 0, 0xFF, 0),
409 SOC_SINGLE("ALC Capture Release Delay", DA7210_ALC_DEL, 0, 0xFF, 0),
410
411 SOC_SINGLE_EXT("Noise Suppression Enable Switch", DA7210_CONTROL, 3, 1,
412 0, snd_soc_get_volsw, da7210_put_noise_sup_sw),
413};
414
415/*
416 * DAPM Controls
417 *
418 * Current DAPM implementation covers almost all codec components e.g. IOs,
419 * mixers, PGAs,ADC and DAC.
420 */
421/* In Mixer Left */
422static const struct snd_kcontrol_new da7210_dapm_inmixl_controls[] = {
423 SOC_DAPM_SINGLE("Mic Left Switch", DA7210_INMIX_L, 0, 1, 0),
424 SOC_DAPM_SINGLE("Mic Right Switch", DA7210_INMIX_L, 1, 1, 0),
425};
426
427/* In Mixer Right */
428static const struct snd_kcontrol_new da7210_dapm_inmixr_controls[] = {
429 SOC_DAPM_SINGLE("Mic Right Switch", DA7210_INMIX_R, 0, 1, 0),
430 SOC_DAPM_SINGLE("Mic Left Switch", DA7210_INMIX_R, 1, 1, 0),
431};
432
433/* Out Mixer Left */
434static const struct snd_kcontrol_new da7210_dapm_outmixl_controls[] = {
435 SOC_DAPM_SINGLE("DAC Left Switch", DA7210_OUTMIX_L, 4, 1, 0),
436};
437
438/* Out Mixer Right */
439static const struct snd_kcontrol_new da7210_dapm_outmixr_controls[] = {
440 SOC_DAPM_SINGLE("DAC Right Switch", DA7210_OUTMIX_R, 4, 1, 0),
441};
442
443/* Mono Mixer */
444static const struct snd_kcontrol_new da7210_dapm_monomix_controls[] = {
445 SOC_DAPM_SINGLE("Outmix Right Switch", DA7210_OUT2, 5, 1, 0),
446 SOC_DAPM_SINGLE("Outmix Left Switch", DA7210_OUT2, 6, 1, 0),
447};
448
449/* DAPM widgets */
450static const struct snd_soc_dapm_widget da7210_dapm_widgets[] = {
451 /* Input Side */
452 /* Input Lines */
453 SND_SOC_DAPM_INPUT("MICL"),
454 SND_SOC_DAPM_INPUT("MICR"),
455
456 /* Input PGAs */
457 SND_SOC_DAPM_PGA("Mic Left", DA7210_STARTUP3, 0, 1, NULL, 0),
458 SND_SOC_DAPM_PGA("Mic Right", DA7210_STARTUP3, 1, 1, NULL, 0),
459
460 SND_SOC_DAPM_PGA("INPGA Left", DA7210_INMIX_L, 7, 0, NULL, 0),
461 SND_SOC_DAPM_PGA("INPGA Right", DA7210_INMIX_R, 7, 0, NULL, 0),
462
463 /* Input Mixers */
464 SND_SOC_DAPM_MIXER("In Mixer Left", SND_SOC_NOPM, 0, 0,
465 &da7210_dapm_inmixl_controls[0],
466 ARRAY_SIZE(da7210_dapm_inmixl_controls)),
467
468 SND_SOC_DAPM_MIXER("In Mixer Right", SND_SOC_NOPM, 0, 0,
469 &da7210_dapm_inmixr_controls[0],
470 ARRAY_SIZE(da7210_dapm_inmixr_controls)),
471
472 /* ADCs */
473 SND_SOC_DAPM_ADC("ADC Left", "Capture", DA7210_STARTUP3, 5, 1),
474 SND_SOC_DAPM_ADC("ADC Right", "Capture", DA7210_STARTUP3, 6, 1),
475
476 /* Output Side */
477 /* DACs */
478 SND_SOC_DAPM_DAC("DAC Left", "Playback", DA7210_STARTUP2, 5, 1),
479 SND_SOC_DAPM_DAC("DAC Right", "Playback", DA7210_STARTUP2, 6, 1),
480
481 /* Output Mixers */
482 SND_SOC_DAPM_MIXER("Out Mixer Left", SND_SOC_NOPM, 0, 0,
483 &da7210_dapm_outmixl_controls[0],
484 ARRAY_SIZE(da7210_dapm_outmixl_controls)),
485
486 SND_SOC_DAPM_MIXER("Out Mixer Right", SND_SOC_NOPM, 0, 0,
487 &da7210_dapm_outmixr_controls[0],
488 ARRAY_SIZE(da7210_dapm_outmixr_controls)),
489
490 SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0,
491 &da7210_dapm_monomix_controls[0],
492 ARRAY_SIZE(da7210_dapm_monomix_controls)),
493
494 /* Output PGAs */
495 SND_SOC_DAPM_PGA("OUTPGA Left Enable", DA7210_OUTMIX_L, 7, 0, NULL, 0),
496 SND_SOC_DAPM_PGA("OUTPGA Right Enable", DA7210_OUTMIX_R, 7, 0, NULL, 0),
497
498 SND_SOC_DAPM_PGA("Out1 Left", DA7210_STARTUP2, 0, 1, NULL, 0),
499 SND_SOC_DAPM_PGA("Out1 Right", DA7210_STARTUP2, 1, 1, NULL, 0),
500 SND_SOC_DAPM_PGA("Out2 Mono", DA7210_STARTUP2, 2, 1, NULL, 0),
501 SND_SOC_DAPM_PGA("Headphone Left", DA7210_STARTUP2, 3, 1, NULL, 0),
502 SND_SOC_DAPM_PGA("Headphone Right", DA7210_STARTUP2, 4, 1, NULL, 0),
503
504 /* Output Lines */
505 SND_SOC_DAPM_OUTPUT("OUT1L"),
506 SND_SOC_DAPM_OUTPUT("OUT1R"),
507 SND_SOC_DAPM_OUTPUT("HPL"),
508 SND_SOC_DAPM_OUTPUT("HPR"),
509 SND_SOC_DAPM_OUTPUT("OUT2"),
510};
511
512/* DAPM audio route definition */
513static const struct snd_soc_dapm_route da7210_audio_map[] = {
514 /* Dest Connecting Widget source */
515 /* Input path */
516 {"Mic Left", NULL, "MICL"},
517 {"Mic Right", NULL, "MICR"},
518
519 {"In Mixer Left", "Mic Left Switch", "Mic Left"},
520 {"In Mixer Left", "Mic Right Switch", "Mic Right"},
521
522 {"In Mixer Right", "Mic Right Switch", "Mic Right"},
523 {"In Mixer Right", "Mic Left Switch", "Mic Left"},
524
525 {"INPGA Left", NULL, "In Mixer Left"},
526 {"ADC Left", NULL, "INPGA Left"},
527
528 {"INPGA Right", NULL, "In Mixer Right"},
529 {"ADC Right", NULL, "INPGA Right"},
530
531 /* Output path */
532 {"Out Mixer Left", "DAC Left Switch", "DAC Left"},
533 {"Out Mixer Right", "DAC Right Switch", "DAC Right"},
534
535 {"Mono Mixer", "Outmix Right Switch", "Out Mixer Right"},
536 {"Mono Mixer", "Outmix Left Switch", "Out Mixer Left"},
537
538 {"OUTPGA Left Enable", NULL, "Out Mixer Left"},
539 {"OUTPGA Right Enable", NULL, "Out Mixer Right"},
540
541 {"Out1 Left", NULL, "OUTPGA Left Enable"},
542 {"OUT1L", NULL, "Out1 Left"},
543
544 {"Out1 Right", NULL, "OUTPGA Right Enable"},
545 {"OUT1R", NULL, "Out1 Right"},
546
547 {"Headphone Left", NULL, "OUTPGA Left Enable"},
548 {"HPL", NULL, "Headphone Left"},
549
550 {"Headphone Right", NULL, "OUTPGA Right Enable"},
551 {"HPR", NULL, "Headphone Right"},
552
553 {"Out2 Mono", NULL, "Mono Mixer"},
554 {"OUT2", NULL, "Out2 Mono"},
159}; 555};
160 556
161/* Codec private data */ 557/* Codec private data */
162struct da7210_priv { 558struct da7210_priv {
163 enum snd_soc_control_type control_type; 559 enum snd_soc_control_type control_type;
164 void *control_data;
165}; 560};
166 561
167/* 562/*
@@ -188,72 +583,15 @@ static const u8 da7210_reg[] = {
188 0x00, /* R88 */ 583 0x00, /* R88 */
189}; 584};
190 585
191/* 586static int da7210_volatile_register(struct snd_soc_codec *codec,
192 * Read da7210 register cache 587 unsigned int reg)
193 */
194static inline u32 da7210_read_reg_cache(struct snd_soc_codec *codec, u32 reg)
195{
196 u8 *cache = codec->reg_cache;
197 BUG_ON(reg >= ARRAY_SIZE(da7210_reg));
198 return cache[reg];
199}
200
201/*
202 * Write to the da7210 register space
203 */
204static int da7210_write(struct snd_soc_codec *codec, u32 reg, u32 value)
205{ 588{
206 u8 *cache = codec->reg_cache; 589 switch (reg) {
207 u8 data[2]; 590 case DA7210_STATUS:
208 591 return 1;
209 BUG_ON(codec->driver->volatile_register); 592 default:
210 593 return 0;
211 data[0] = reg & 0xff;
212 data[1] = value & 0xff;
213
214 if (reg >= codec->driver->reg_cache_size)
215 return -EIO;
216
217 if (2 != codec->hw_write(codec->control_data, data, 2))
218 return -EIO;
219
220 cache[reg] = value;
221 return 0;
222}
223
224/*
225 * Read from the da7210 register space.
226 */
227static inline u32 da7210_read(struct snd_soc_codec *codec, u32 reg)
228{
229 if (DA7210_STATUS == reg)
230 return i2c_smbus_read_byte_data(codec->control_data, reg);
231
232 return da7210_read_reg_cache(codec, reg);
233}
234
235static int da7210_startup(struct snd_pcm_substream *substream,
236 struct snd_soc_dai *dai)
237{
238 int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
239 struct snd_soc_codec *codec = dai->codec;
240
241 if (is_play) {
242 /* Enable Out */
243 snd_soc_update_bits(codec, DA7210_OUTMIX_L, 0x1F, 0x10);
244 snd_soc_update_bits(codec, DA7210_OUTMIX_R, 0x1F, 0x10);
245
246 } else {
247 /* Volume 7 */
248 snd_soc_update_bits(codec, DA7210_MIC_L, 0x7, 0x7);
249 snd_soc_update_bits(codec, DA7210_MIC_R, 0x7, 0x7);
250
251 /* Enable Mic */
252 snd_soc_update_bits(codec, DA7210_INMIX_L, 0x1F, 0x1);
253 snd_soc_update_bits(codec, DA7210_INMIX_R, 0x1F, 0x1);
254 } 594 }
255
256 return 0;
257} 595}
258 596
259/* 597/*
@@ -266,93 +604,75 @@ static int da7210_hw_params(struct snd_pcm_substream *substream,
266 struct snd_soc_pcm_runtime *rtd = substream->private_data; 604 struct snd_soc_pcm_runtime *rtd = substream->private_data;
267 struct snd_soc_codec *codec = rtd->codec; 605 struct snd_soc_codec *codec = rtd->codec;
268 u32 dai_cfg1; 606 u32 dai_cfg1;
269 u32 hpf_reg, hpf_mask, hpf_value;
270 u32 fs, bypass; 607 u32 fs, bypass;
271 608
272 /* set DAI source to Left and Right ADC */ 609 /* set DAI source to Left and Right ADC */
273 da7210_write(codec, DA7210_DAI_SRC_SEL, 610 snd_soc_write(codec, DA7210_DAI_SRC_SEL,
274 DA7210_DAI_OUT_R_SRC | DA7210_DAI_OUT_L_SRC); 611 DA7210_DAI_OUT_R_SRC | DA7210_DAI_OUT_L_SRC);
275 612
276 /* Enable DAI */ 613 /* Enable DAI */
277 da7210_write(codec, DA7210_DAI_CFG3, DA7210_DAI_OE | DA7210_DAI_EN); 614 snd_soc_write(codec, DA7210_DAI_CFG3, DA7210_DAI_OE | DA7210_DAI_EN);
278 615
279 dai_cfg1 = 0xFC & da7210_read(codec, DA7210_DAI_CFG1); 616 dai_cfg1 = 0xFC & snd_soc_read(codec, DA7210_DAI_CFG1);
280 617
281 switch (params_format(params)) { 618 switch (params_format(params)) {
282 case SNDRV_PCM_FORMAT_S16_LE: 619 case SNDRV_PCM_FORMAT_S16_LE:
283 dai_cfg1 |= DA7210_DAI_WORD_S16_LE; 620 dai_cfg1 |= DA7210_DAI_WORD_S16_LE;
284 break; 621 break;
622 case SNDRV_PCM_FORMAT_S20_3LE:
623 dai_cfg1 |= DA7210_DAI_WORD_S20_3LE;
624 break;
285 case SNDRV_PCM_FORMAT_S24_LE: 625 case SNDRV_PCM_FORMAT_S24_LE:
286 dai_cfg1 |= DA7210_DAI_WORD_S24_LE; 626 dai_cfg1 |= DA7210_DAI_WORD_S24_LE;
287 break; 627 break;
628 case SNDRV_PCM_FORMAT_S32_LE:
629 dai_cfg1 |= DA7210_DAI_WORD_S32_LE;
630 break;
288 default: 631 default:
289 return -EINVAL; 632 return -EINVAL;
290 } 633 }
291 634
292 da7210_write(codec, DA7210_DAI_CFG1, dai_cfg1); 635 snd_soc_write(codec, DA7210_DAI_CFG1, dai_cfg1);
293
294 hpf_reg = (SNDRV_PCM_STREAM_PLAYBACK == substream->stream) ?
295 DA7210_DAC_HPF : DA7210_ADC_HPF;
296 636
297 switch (params_rate(params)) { 637 switch (params_rate(params)) {
298 case 8000: 638 case 8000:
299 fs = DA7210_PLL_FS_8000; 639 fs = DA7210_PLL_FS_8000;
300 hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN;
301 hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN;
302 bypass = DA7210_PLL_BYP; 640 bypass = DA7210_PLL_BYP;
303 break; 641 break;
304 case 11025: 642 case 11025:
305 fs = DA7210_PLL_FS_11025; 643 fs = DA7210_PLL_FS_11025;
306 hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN;
307 hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN;
308 bypass = 0; 644 bypass = 0;
309 break; 645 break;
310 case 12000: 646 case 12000:
311 fs = DA7210_PLL_FS_12000; 647 fs = DA7210_PLL_FS_12000;
312 hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN;
313 hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN;
314 bypass = DA7210_PLL_BYP; 648 bypass = DA7210_PLL_BYP;
315 break; 649 break;
316 case 16000: 650 case 16000:
317 fs = DA7210_PLL_FS_16000; 651 fs = DA7210_PLL_FS_16000;
318 hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN;
319 hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN;
320 bypass = DA7210_PLL_BYP; 652 bypass = DA7210_PLL_BYP;
321 break; 653 break;
322 case 22050: 654 case 22050:
323 fs = DA7210_PLL_FS_22050; 655 fs = DA7210_PLL_FS_22050;
324 hpf_mask = DA7210_VOICE_EN;
325 hpf_value = 0;
326 bypass = 0; 656 bypass = 0;
327 break; 657 break;
328 case 32000: 658 case 32000:
329 fs = DA7210_PLL_FS_32000; 659 fs = DA7210_PLL_FS_32000;
330 hpf_mask = DA7210_VOICE_EN;
331 hpf_value = 0;
332 bypass = DA7210_PLL_BYP; 660 bypass = DA7210_PLL_BYP;
333 break; 661 break;
334 case 44100: 662 case 44100:
335 fs = DA7210_PLL_FS_44100; 663 fs = DA7210_PLL_FS_44100;
336 hpf_mask = DA7210_VOICE_EN;
337 hpf_value = 0;
338 bypass = 0; 664 bypass = 0;
339 break; 665 break;
340 case 48000: 666 case 48000:
341 fs = DA7210_PLL_FS_48000; 667 fs = DA7210_PLL_FS_48000;
342 hpf_mask = DA7210_VOICE_EN;
343 hpf_value = 0;
344 bypass = DA7210_PLL_BYP; 668 bypass = DA7210_PLL_BYP;
345 break; 669 break;
346 case 88200: 670 case 88200:
347 fs = DA7210_PLL_FS_88200; 671 fs = DA7210_PLL_FS_88200;
348 hpf_mask = DA7210_VOICE_EN;
349 hpf_value = 0;
350 bypass = 0; 672 bypass = 0;
351 break; 673 break;
352 case 96000: 674 case 96000:
353 fs = DA7210_PLL_FS_96000; 675 fs = DA7210_PLL_FS_96000;
354 hpf_mask = DA7210_VOICE_EN;
355 hpf_value = 0;
356 bypass = DA7210_PLL_BYP; 676 bypass = DA7210_PLL_BYP;
357 break; 677 break;
358 default: 678 default:
@@ -362,7 +682,6 @@ static int da7210_hw_params(struct snd_pcm_substream *substream,
362 /* Disable active mode */ 682 /* Disable active mode */
363 snd_soc_update_bits(codec, DA7210_STARTUP1, DA7210_SC_MST_EN, 0); 683 snd_soc_update_bits(codec, DA7210_STARTUP1, DA7210_SC_MST_EN, 0);
364 684
365 snd_soc_update_bits(codec, hpf_reg, hpf_mask, hpf_value);
366 snd_soc_update_bits(codec, DA7210_PLL, DA7210_PLL_FS_MASK, fs); 685 snd_soc_update_bits(codec, DA7210_PLL, DA7210_PLL_FS_MASK, fs);
367 snd_soc_update_bits(codec, DA7210_PLL_DIV3, DA7210_PLL_BYP, bypass); 686 snd_soc_update_bits(codec, DA7210_PLL_DIV3, DA7210_PLL_BYP, bypass);
368 687
@@ -382,13 +701,16 @@ static int da7210_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt)
382 u32 dai_cfg1; 701 u32 dai_cfg1;
383 u32 dai_cfg3; 702 u32 dai_cfg3;
384 703
385 dai_cfg1 = 0x7f & da7210_read(codec, DA7210_DAI_CFG1); 704 dai_cfg1 = 0x7f & snd_soc_read(codec, DA7210_DAI_CFG1);
386 dai_cfg3 = 0xfc & da7210_read(codec, DA7210_DAI_CFG3); 705 dai_cfg3 = 0xfc & snd_soc_read(codec, DA7210_DAI_CFG3);
387 706
388 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { 707 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
389 case SND_SOC_DAIFMT_CBM_CFM: 708 case SND_SOC_DAIFMT_CBM_CFM:
390 dai_cfg1 |= DA7210_DAI_MODE_MASTER; 709 dai_cfg1 |= DA7210_DAI_MODE_MASTER;
391 break; 710 break;
711 case SND_SOC_DAIFMT_CBS_CFS:
712 dai_cfg1 |= DA7210_DAI_MODE_SLAVE;
713 break;
392 default: 714 default:
393 return -EINVAL; 715 return -EINVAL;
394 } 716 }
@@ -401,6 +723,12 @@ static int da7210_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt)
401 case SND_SOC_DAIFMT_I2S: 723 case SND_SOC_DAIFMT_I2S:
402 dai_cfg3 |= DA7210_DAI_FORMAT_I2SMODE; 724 dai_cfg3 |= DA7210_DAI_FORMAT_I2SMODE;
403 break; 725 break;
726 case SND_SOC_DAIFMT_LEFT_J:
727 dai_cfg3 |= DA7210_DAI_FORMAT_LEFT_J;
728 break;
729 case SND_SOC_DAIFMT_RIGHT_J:
730 dai_cfg3 |= DA7210_DAI_FORMAT_RIGHT_J;
731 break;
404 default: 732 default:
405 return -EINVAL; 733 return -EINVAL;
406 } 734 }
@@ -411,19 +739,32 @@ static int da7210_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt)
411 */ 739 */
412 dai_cfg1 |= DA7210_DAI_FLEN_64BIT; 740 dai_cfg1 |= DA7210_DAI_FLEN_64BIT;
413 741
414 da7210_write(codec, DA7210_DAI_CFG1, dai_cfg1); 742 snd_soc_write(codec, DA7210_DAI_CFG1, dai_cfg1);
415 da7210_write(codec, DA7210_DAI_CFG3, dai_cfg3); 743 snd_soc_write(codec, DA7210_DAI_CFG3, dai_cfg3);
744
745 return 0;
746}
747
748static int da7210_mute(struct snd_soc_dai *dai, int mute)
749{
750 struct snd_soc_codec *codec = dai->codec;
751 u8 mute_reg = snd_soc_read(codec, DA7210_DAC_HPF) & 0xFB;
416 752
753 if (mute)
754 snd_soc_write(codec, DA7210_DAC_HPF, mute_reg | 0x4);
755 else
756 snd_soc_write(codec, DA7210_DAC_HPF, mute_reg);
417 return 0; 757 return 0;
418} 758}
419 759
420#define DA7210_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE) 760#define DA7210_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
761 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
421 762
422/* DAI operations */ 763/* DAI operations */
423static struct snd_soc_dai_ops da7210_dai_ops = { 764static struct snd_soc_dai_ops da7210_dai_ops = {
424 .startup = da7210_startup,
425 .hw_params = da7210_hw_params, 765 .hw_params = da7210_hw_params,
426 .set_fmt = da7210_set_dai_fmt, 766 .set_fmt = da7210_set_dai_fmt,
767 .digital_mute = da7210_mute,
427}; 768};
428 769
429static struct snd_soc_dai_driver da7210_dai = { 770static struct snd_soc_dai_driver da7210_dai = {
@@ -451,11 +792,15 @@ static struct snd_soc_dai_driver da7210_dai = {
451static int da7210_probe(struct snd_soc_codec *codec) 792static int da7210_probe(struct snd_soc_codec *codec)
452{ 793{
453 struct da7210_priv *da7210 = snd_soc_codec_get_drvdata(codec); 794 struct da7210_priv *da7210 = snd_soc_codec_get_drvdata(codec);
795 int ret;
454 796
455 dev_info(codec->dev, "DA7210 Audio Codec %s\n", DA7210_VERSION); 797 dev_info(codec->dev, "DA7210 Audio Codec %s\n", DA7210_VERSION);
456 798
457 codec->control_data = da7210->control_data; 799 ret = snd_soc_codec_set_cache_io(codec, 8, 8, da7210->control_type);
458 codec->hw_write = (hw_write_t)i2c_master_send; 800 if (ret < 0) {
801 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
802 return ret;
803 }
459 804
460 /* FIXME 805 /* FIXME
461 * 806 *
@@ -472,8 +817,8 @@ static int da7210_probe(struct snd_soc_codec *codec)
472 /* 817 /*
473 * make sure that DA7210 use bypass mode before start up 818 * make sure that DA7210 use bypass mode before start up
474 */ 819 */
475 da7210_write(codec, DA7210_STARTUP1, 0); 820 snd_soc_write(codec, DA7210_STARTUP1, 0);
476 da7210_write(codec, DA7210_PLL_DIV3, 821 snd_soc_write(codec, DA7210_PLL_DIV3,
477 DA7210_MCLK_RANGE_10_20_MHZ | DA7210_PLL_BYP); 822 DA7210_MCLK_RANGE_10_20_MHZ | DA7210_PLL_BYP);
478 823
479 /* 824 /*
@@ -481,36 +826,70 @@ static int da7210_probe(struct snd_soc_codec *codec)
481 */ 826 */
482 827
483 /* Enable Left & Right MIC PGA and Mic Bias */ 828 /* Enable Left & Right MIC PGA and Mic Bias */
484 da7210_write(codec, DA7210_MIC_L, DA7210_MIC_L_EN | DA7210_MICBIAS_EN); 829 snd_soc_write(codec, DA7210_MIC_L, DA7210_MIC_L_EN | DA7210_MICBIAS_EN);
485 da7210_write(codec, DA7210_MIC_R, DA7210_MIC_R_EN); 830 snd_soc_write(codec, DA7210_MIC_R, DA7210_MIC_R_EN);
486 831
487 /* Enable Left and Right input PGA */ 832 /* Enable Left and Right input PGA */
488 da7210_write(codec, DA7210_INMIX_L, DA7210_IN_L_EN); 833 snd_soc_write(codec, DA7210_INMIX_L, DA7210_IN_L_EN);
489 da7210_write(codec, DA7210_INMIX_R, DA7210_IN_R_EN); 834 snd_soc_write(codec, DA7210_INMIX_R, DA7210_IN_R_EN);
490 835
491 /* Enable Left and Right ADC */ 836 /* Enable Left and Right ADC */
492 da7210_write(codec, DA7210_ADC, DA7210_ADC_L_EN | DA7210_ADC_R_EN); 837 snd_soc_write(codec, DA7210_ADC, DA7210_ADC_L_EN | DA7210_ADC_R_EN);
493 838
494 /* 839 /*
495 * DAC settings 840 * DAC settings
496 */ 841 */
497 842
498 /* Enable Left and Right DAC */ 843 /* Enable Left and Right DAC */
499 da7210_write(codec, DA7210_DAC_SEL, 844 snd_soc_write(codec, DA7210_DAC_SEL,
500 DA7210_DAC_L_SRC_DAI_L | DA7210_DAC_L_EN | 845 DA7210_DAC_L_SRC_DAI_L | DA7210_DAC_L_EN |
501 DA7210_DAC_R_SRC_DAI_R | DA7210_DAC_R_EN); 846 DA7210_DAC_R_SRC_DAI_R | DA7210_DAC_R_EN);
502 847
503 /* Enable Left and Right out PGA */ 848 /* Enable Left and Right out PGA */
504 da7210_write(codec, DA7210_OUTMIX_L, DA7210_OUT_L_EN); 849 snd_soc_write(codec, DA7210_OUTMIX_L, DA7210_OUT_L_EN);
505 da7210_write(codec, DA7210_OUTMIX_R, DA7210_OUT_R_EN); 850 snd_soc_write(codec, DA7210_OUTMIX_R, DA7210_OUT_R_EN);
506 851
507 /* Enable Left and Right HeadPhone PGA */ 852 /* Enable Left and Right HeadPhone PGA */
508 da7210_write(codec, DA7210_HP_CFG, 853 snd_soc_write(codec, DA7210_HP_CFG,
509 DA7210_HP_2CAP_MODE | DA7210_HP_SENSE_EN | 854 DA7210_HP_2CAP_MODE | DA7210_HP_SENSE_EN |
510 DA7210_HP_L_EN | DA7210_HP_MODE | DA7210_HP_R_EN); 855 DA7210_HP_L_EN | DA7210_HP_MODE | DA7210_HP_R_EN);
511 856
857 /* Enable ramp mode for DAC gain update */
858 snd_soc_write(codec, DA7210_SOFTMUTE, DA7210_RAMP_EN);
859
860 /*
861 * For DA7210 codec, there are two ways to enable/disable analog IOs
862 * and ADC/DAC,
863 * (1) Using "Enable Bit" of register associated with that IO
864 * (or ADC/DAC)
865 * e.g. Mic Left can be enabled using bit 7 of MIC_L(0x7) reg
866 *
867 * (2) Using "Standby Bit" of STARTUP2 or STARTUP3 register
868 * e.g. Mic left can be put to STANDBY using bit 0 of STARTUP3(0x5)
869 *
870 * Out of these two methods, the one using STANDBY bits is preferred
871 * way to enable/disable individual blocks. This is because STANDBY
872 * registers are part of system controller which allows system power
873 * up/down in a controlled, pop-free manner. Also, as per application
874 * note of DA7210, STANDBY register bits are only effective if a
875 * particular IO (or ADC/DAC) is already enabled using enable/disable
876 * register bits. Keeping these things in mind, current DAPM
877 * implementation manipulates only STANDBY bits.
878 *
879 * Overall implementation can be outlined as below,
880 *
881 * - "Enable bit" of an IO or ADC/DAC is used to enable it in probe()
882 * - "STANDBY bit" is controlled by DAPM
883 */
884
885 /* Enable Line out amplifiers */
886 snd_soc_write(codec, DA7210_OUT1_L, DA7210_OUT1_L_EN);
887 snd_soc_write(codec, DA7210_OUT1_R, DA7210_OUT1_R_EN);
888 snd_soc_write(codec, DA7210_OUT2, DA7210_OUT2_EN |
889 DA7210_OUT2_OUTMIX_L | DA7210_OUT2_OUTMIX_R);
890
512 /* Diable PLL and bypass it */ 891 /* Diable PLL and bypass it */
513 da7210_write(codec, DA7210_PLL, DA7210_PLL_FS_48000); 892 snd_soc_write(codec, DA7210_PLL, DA7210_PLL_FS_48000);
514 893
515 /* 894 /*
516 * If 48kHz sound came, it use bypass mode, 895 * If 48kHz sound came, it use bypass mode,
@@ -521,25 +900,22 @@ static int da7210_probe(struct snd_soc_codec *codec)
521 * DA7210_PLL_DIV3 :: DA7210_PLL_BYP bit. 900 * DA7210_PLL_DIV3 :: DA7210_PLL_BYP bit.
522 * see da7210_hw_params 901 * see da7210_hw_params
523 */ 902 */
524 da7210_write(codec, DA7210_PLL_DIV1, 0xE5); /* MCLK = 12.288MHz */ 903 snd_soc_write(codec, DA7210_PLL_DIV1, 0xE5); /* MCLK = 12.288MHz */
525 da7210_write(codec, DA7210_PLL_DIV2, 0x99); 904 snd_soc_write(codec, DA7210_PLL_DIV2, 0x99);
526 da7210_write(codec, DA7210_PLL_DIV3, 0x0A | 905 snd_soc_write(codec, DA7210_PLL_DIV3, 0x0A |
527 DA7210_MCLK_RANGE_10_20_MHZ | DA7210_PLL_BYP); 906 DA7210_MCLK_RANGE_10_20_MHZ | DA7210_PLL_BYP);
528 snd_soc_update_bits(codec, DA7210_PLL, DA7210_PLL_EN, DA7210_PLL_EN); 907 snd_soc_update_bits(codec, DA7210_PLL, DA7210_PLL_EN, DA7210_PLL_EN);
529 908
530 /* As suggested by Dialog */ 909 /* As suggested by Dialog */
531 da7210_write(codec, DA7210_A_HID_UNLOCK, 0x8B); /* unlock */ 910 snd_soc_write(codec, DA7210_A_HID_UNLOCK, 0x8B); /* unlock */
532 da7210_write(codec, DA7210_A_TEST_UNLOCK, 0xB4); 911 snd_soc_write(codec, DA7210_A_TEST_UNLOCK, 0xB4);
533 da7210_write(codec, DA7210_A_PLL1, 0x01); 912 snd_soc_write(codec, DA7210_A_PLL1, 0x01);
534 da7210_write(codec, DA7210_A_CP_MODE, 0x7C); 913 snd_soc_write(codec, DA7210_A_CP_MODE, 0x7C);
535 da7210_write(codec, DA7210_A_HID_UNLOCK, 0x00); /* re-lock */ 914 snd_soc_write(codec, DA7210_A_HID_UNLOCK, 0x00); /* re-lock */
536 da7210_write(codec, DA7210_A_TEST_UNLOCK, 0x00); 915 snd_soc_write(codec, DA7210_A_TEST_UNLOCK, 0x00);
537 916
538 /* Activate all enabled subsystem */ 917 /* Activate all enabled subsystem */
539 da7210_write(codec, DA7210_STARTUP1, DA7210_SC_MST_EN); 918 snd_soc_write(codec, DA7210_STARTUP1, DA7210_SC_MST_EN);
540
541 snd_soc_add_controls(codec, da7210_snd_controls,
542 ARRAY_SIZE(da7210_snd_controls));
543 919
544 dev_info(codec->dev, "DA7210 Audio Codec %s\n", DA7210_VERSION); 920 dev_info(codec->dev, "DA7210 Audio Codec %s\n", DA7210_VERSION);
545 921
@@ -548,11 +924,18 @@ static int da7210_probe(struct snd_soc_codec *codec)
548 924
549static struct snd_soc_codec_driver soc_codec_dev_da7210 = { 925static struct snd_soc_codec_driver soc_codec_dev_da7210 = {
550 .probe = da7210_probe, 926 .probe = da7210_probe,
551 .read = da7210_read,
552 .write = da7210_write,
553 .reg_cache_size = ARRAY_SIZE(da7210_reg), 927 .reg_cache_size = ARRAY_SIZE(da7210_reg),
554 .reg_word_size = sizeof(u8), 928 .reg_word_size = sizeof(u8),
555 .reg_cache_default = da7210_reg, 929 .reg_cache_default = da7210_reg,
930 .volatile_register = da7210_volatile_register,
931
932 .controls = da7210_snd_controls,
933 .num_controls = ARRAY_SIZE(da7210_snd_controls),
934
935 .dapm_widgets = da7210_dapm_widgets,
936 .num_dapm_widgets = ARRAY_SIZE(da7210_dapm_widgets),
937 .dapm_routes = da7210_audio_map,
938 .num_dapm_routes = ARRAY_SIZE(da7210_audio_map),
556}; 939};
557 940
558#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) 941#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
@@ -567,7 +950,6 @@ static int __devinit da7210_i2c_probe(struct i2c_client *i2c,
567 return -ENOMEM; 950 return -ENOMEM;
568 951
569 i2c_set_clientdata(i2c, da7210); 952 i2c_set_clientdata(i2c, da7210);
570 da7210->control_data = i2c;
571 da7210->control_type = SND_SOC_I2C; 953 da7210->control_type = SND_SOC_I2C;
572 954
573 ret = snd_soc_register_codec(&i2c->dev, 955 ret = snd_soc_register_codec(&i2c->dev,