]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - sound/soc/codecs/tlv320aic3x.c
4f0bf26f170bd696d9f2ce9d6e608631645ef371
[linux-2.6-omap-h63xx.git] / sound / soc / codecs / tlv320aic3x.c
1 /*
2  * ALSA SoC TLV320AIC3X codec driver
3  *
4  * Author:      Vladimir Barinov, <vbarinov@ru.mvista.com>
5  * Copyright:   (C) 2007 MontaVista Software, Inc., <source@mvista.com>
6  *
7  * Based on sound/soc/codecs/wm8753.c by Liam Girdwood
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  *
13  * Notes:
14  *  The AIC3X is a driver for a low power stereo audio
15  *  codecs aic31, aic32, aic33.
16  *
17  *  It supports full aic33 codec functionality.
18  *  The compatibility with aic32, aic31 is as follows:
19  *        aic32        |        aic31
20  *  ---------------------------------------
21  *   MONO_LOUT -> N/A  |  MONO_LOUT -> N/A
22  *                     |  IN1L -> LINE1L
23  *                     |  IN1R -> LINE1R
24  *                     |  IN2L -> LINE2L
25  *                     |  IN2R -> LINE2R
26  *                     |  MIC3L/R -> N/A
27  *   truncated internal functionality in
28  *   accordance with documentation
29  *  ---------------------------------------
30  *
31  *  Hence the machine layer should disable unsupported inputs/outputs by
32  *  snd_soc_dapm_set_endpoint(codec, "MONO_LOUT", 0), etc.
33  */
34
35 #include <linux/module.h>
36 #include <linux/moduleparam.h>
37 #include <linux/init.h>
38 #include <linux/delay.h>
39 #include <linux/pm.h>
40 #include <linux/i2c.h>
41 #include <linux/platform_device.h>
42 #include <sound/core.h>
43 #include <sound/pcm.h>
44 #include <sound/pcm_params.h>
45 #include <sound/soc.h>
46 #include <sound/soc-dapm.h>
47 #include <sound/initval.h>
48
49 #include "tlv320aic3x.h"
50
51 #define AUDIO_NAME "aic3x"
52 #define AIC3X_VERSION "0.2"
53
54 /* codec private data */
55 struct aic3x_priv {
56         unsigned int sysclk;
57         int master;
58 };
59
60 /*
61  * AIC3X register cache
62  * We can't read the AIC3X register space when we are
63  * using 2 wire for device control, so we cache them instead.
64  * There is no point in caching the reset register
65  */
66 static const u8 aic3x_reg[AIC3X_CACHEREGNUM] = {
67         0x00, 0x00, 0x00, 0x10, /* 0 */
68         0x04, 0x00, 0x00, 0x00, /* 4 */
69         0x00, 0x00, 0x00, 0x01, /* 8 */
70         0x00, 0x00, 0x00, 0x80, /* 12 */
71         0x80, 0xff, 0xff, 0x78, /* 16 */
72         0x78, 0x78, 0x78, 0x78, /* 20 */
73         0x78, 0x00, 0x00, 0xfe, /* 24 */
74         0x00, 0x00, 0xfe, 0x00, /* 28 */
75         0x18, 0x18, 0x00, 0x00, /* 32 */
76         0x00, 0x00, 0x00, 0x00, /* 36 */
77         0x00, 0x00, 0x00, 0x80, /* 40 */
78         0x80, 0x00, 0x00, 0x00, /* 44 */
79         0x00, 0x00, 0x00, 0x04, /* 48 */
80         0x00, 0x00, 0x00, 0x00, /* 52 */
81         0x00, 0x00, 0x04, 0x00, /* 56 */
82         0x00, 0x00, 0x00, 0x00, /* 60 */
83         0x00, 0x04, 0x00, 0x00, /* 64 */
84         0x00, 0x00, 0x00, 0x00, /* 68 */
85         0x04, 0x00, 0x00, 0x00, /* 72 */
86         0x00, 0x00, 0x00, 0x00, /* 76 */
87         0x00, 0x00, 0x00, 0x00, /* 80 */
88         0x00, 0x00, 0x00, 0x00, /* 84 */
89         0x00, 0x00, 0x00, 0x00, /* 88 */
90         0x00, 0x00, 0x00, 0x00, /* 92 */
91         0x00, 0x00, 0x00, 0x00, /* 96 */
92         0x00, 0x00, 0x02,       /* 100 */
93 };
94
95 /*
96  * read aic3x register cache
97  */
98 static inline unsigned int aic3x_read_reg_cache(struct snd_soc_codec *codec,
99                                                 unsigned int reg)
100 {
101         u8 *cache = codec->reg_cache;
102         if (reg >= AIC3X_CACHEREGNUM)
103                 return -1;
104         return cache[reg];
105 }
106
107 /*
108  * write aic3x register cache
109  */
110 static inline void aic3x_write_reg_cache(struct snd_soc_codec *codec,
111                                          u8 reg, u8 value)
112 {
113         u8 *cache = codec->reg_cache;
114         if (reg >= AIC3X_CACHEREGNUM)
115                 return;
116         cache[reg] = value;
117 }
118
119 /*
120  * write to the aic3x register space
121  */
122 static int aic3x_write(struct snd_soc_codec *codec, unsigned int reg,
123                        unsigned int value)
124 {
125         u8 data[2];
126
127         /* data is
128          *   D15..D8 aic3x register offset
129          *   D7...D0 register data
130          */
131         data[0] = reg & 0xff;
132         data[1] = value & 0xff;
133
134         aic3x_write_reg_cache(codec, data[0], data[1]);
135         if (codec->hw_write(codec->control_data, data, 2) == 2)
136                 return 0;
137         else
138                 return -EIO;
139 }
140
141 /*
142  * read from the aic3x register space
143  */
144 static int aic3x_read(struct snd_soc_codec *codec, unsigned int reg,
145                       u8 *value)
146 {
147         *value = reg & 0xff;
148         if (codec->hw_read(codec->control_data, value, 1) != 1)
149                 return -EIO;
150
151         aic3x_write_reg_cache(codec, reg, *value);
152         return 0;
153 }
154
155 #define SOC_DAPM_SINGLE_AIC3X(xname, reg, shift, mask, invert) \
156 {       .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
157         .info = snd_soc_info_volsw, \
158         .get = snd_soc_dapm_get_volsw, .put = snd_soc_dapm_put_volsw_aic3x, \
159         .private_value =  SOC_SINGLE_VALUE(reg, shift, mask, invert) }
160
161 /*
162  * All input lines are connected when !0xf and disconnected with 0xf bit field,
163  * so we have to use specific dapm_put call for input mixer
164  */
165 static int snd_soc_dapm_put_volsw_aic3x(struct snd_kcontrol *kcontrol,
166                                         struct snd_ctl_elem_value *ucontrol)
167 {
168         struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
169         int reg = kcontrol->private_value & 0xff;
170         int shift = (kcontrol->private_value >> 8) & 0x0f;
171         int mask = (kcontrol->private_value >> 16) & 0xff;
172         int invert = (kcontrol->private_value >> 24) & 0x01;
173         unsigned short val, val_mask;
174         int ret;
175         struct snd_soc_dapm_path *path;
176         int found = 0;
177
178         val = (ucontrol->value.integer.value[0] & mask);
179
180         mask = 0xf;
181         if (val)
182                 val = mask;
183
184         if (invert)
185                 val = mask - val;
186         val_mask = mask << shift;
187         val = val << shift;
188
189         mutex_lock(&widget->codec->mutex);
190
191         if (snd_soc_test_bits(widget->codec, reg, val_mask, val)) {
192                 /* find dapm widget path assoc with kcontrol */
193                 list_for_each_entry(path, &widget->codec->dapm_paths, list) {
194                         if (path->kcontrol != kcontrol)
195                                 continue;
196
197                         /* found, now check type */
198                         found = 1;
199                         if (val)
200                                 /* new connection */
201                                 path->connect = invert ? 0 : 1;
202                         else
203                                 /* old connection must be powered down */
204                                 path->connect = invert ? 1 : 0;
205                         break;
206                 }
207
208                 if (found)
209                         snd_soc_dapm_sync_endpoints(widget->codec);
210         }
211
212         ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
213
214         mutex_unlock(&widget->codec->mutex);
215         return ret;
216 }
217
218 static const char *aic3x_left_dac_mux[] = { "DAC_L1", "DAC_L3", "DAC_L2" };
219 static const char *aic3x_right_dac_mux[] = { "DAC_R1", "DAC_R3", "DAC_R2" };
220 static const char *aic3x_left_hpcom_mux[] =
221     { "differential of HPLOUT", "constant VCM", "single-ended" };
222 static const char *aic3x_right_hpcom_mux[] =
223     { "differential of HPROUT", "constant VCM", "single-ended",
224       "differential of HPLCOM", "external feedback" };
225 static const char *aic3x_linein_mode_mux[] = { "single-ended", "differential" };
226
227 #define LDAC_ENUM       0
228 #define RDAC_ENUM       1
229 #define LHPCOM_ENUM     2
230 #define RHPCOM_ENUM     3
231 #define LINE1L_ENUM     4
232 #define LINE1R_ENUM     5
233 #define LINE2L_ENUM     6
234 #define LINE2R_ENUM     7
235
236 static const struct soc_enum aic3x_enum[] = {
237         SOC_ENUM_SINGLE(DAC_LINE_MUX, 6, 3, aic3x_left_dac_mux),
238         SOC_ENUM_SINGLE(DAC_LINE_MUX, 4, 3, aic3x_right_dac_mux),
239         SOC_ENUM_SINGLE(HPLCOM_CFG, 4, 3, aic3x_left_hpcom_mux),
240         SOC_ENUM_SINGLE(HPRCOM_CFG, 3, 5, aic3x_right_hpcom_mux),
241         SOC_ENUM_SINGLE(LINE1L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
242         SOC_ENUM_SINGLE(LINE1R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
243         SOC_ENUM_SINGLE(LINE2L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
244         SOC_ENUM_SINGLE(LINE2R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
245 };
246
247 static const struct snd_kcontrol_new aic3x_snd_controls[] = {
248         /* Output */
249         SOC_DOUBLE_R("PCM Playback Volume", LDAC_VOL, RDAC_VOL, 0, 0x7f, 1),
250
251         SOC_DOUBLE_R("Line DAC Playback Volume", DACL1_2_LLOPM_VOL,
252                      DACR1_2_RLOPM_VOL, 0, 0x7f, 1),
253         SOC_DOUBLE_R("Line DAC Playback Switch", LLOPM_CTRL, RLOPM_CTRL, 3,
254                      0x01, 0),
255         SOC_DOUBLE_R("Line PGA Bypass Playback Volume", PGAL_2_LLOPM_VOL,
256                      PGAR_2_RLOPM_VOL, 0, 0x7f, 1),
257         SOC_DOUBLE_R("Line Line2 Bypass Playback Volume", LINE2L_2_LLOPM_VOL,
258                      LINE2R_2_RLOPM_VOL, 0, 0x7f, 1),
259
260         SOC_DOUBLE_R("Mono DAC Playback Volume", DACL1_2_MONOLOPM_VOL,
261                      DACR1_2_MONOLOPM_VOL, 0, 0x7f, 1),
262         SOC_SINGLE("Mono DAC Playback Switch", MONOLOPM_CTRL, 3, 0x01, 0),
263         SOC_DOUBLE_R("Mono PGA Bypass Playback Volume", PGAL_2_MONOLOPM_VOL,
264                      PGAR_2_MONOLOPM_VOL, 0, 0x7f, 1),
265         SOC_DOUBLE_R("Mono Line2 Bypass Playback Volume", LINE2L_2_MONOLOPM_VOL,
266                      LINE2R_2_MONOLOPM_VOL, 0, 0x7f, 1),
267
268         SOC_DOUBLE_R("HP DAC Playback Volume", DACL1_2_HPLOUT_VOL,
269                      DACR1_2_HPROUT_VOL, 0, 0x7f, 1),
270         SOC_DOUBLE_R("HP DAC Playback Switch", HPLOUT_CTRL, HPROUT_CTRL, 3,
271                      0x01, 0),
272         SOC_DOUBLE_R("HP PGA Bypass Playback Volume", PGAL_2_HPLOUT_VOL,
273                      PGAR_2_HPROUT_VOL, 0, 0x7f, 1),
274         SOC_DOUBLE_R("HP Line2 Bypass Playback Volume", LINE2L_2_HPLOUT_VOL,
275                      LINE2R_2_HPROUT_VOL, 0, 0x7f, 1),
276
277         SOC_DOUBLE_R("HPCOM DAC Playback Volume", DACL1_2_HPLCOM_VOL,
278                      DACR1_2_HPRCOM_VOL, 0, 0x7f, 1),
279         SOC_DOUBLE_R("HPCOM DAC Playback Switch", HPLCOM_CTRL, HPRCOM_CTRL, 3,
280                      0x01, 0),
281         SOC_DOUBLE_R("HPCOM PGA Bypass Playback Volume", PGAL_2_HPLCOM_VOL,
282                      PGAR_2_HPRCOM_VOL, 0, 0x7f, 1),
283         SOC_DOUBLE_R("HPCOM Line2 Bypass Playback Volume", LINE2L_2_HPLCOM_VOL,
284                      LINE2R_2_HPRCOM_VOL, 0, 0x7f, 1),
285
286         /*
287          * Note: enable Automatic input Gain Controller with care. It can
288          * adjust PGA to max value when ADC is on and will never go back.
289         */
290         SOC_DOUBLE_R("AGC Switch", LAGC_CTRL_A, RAGC_CTRL_A, 7, 0x01, 0),
291
292         /* Input */
293         SOC_DOUBLE_R("PGA Capture Volume", LADC_VOL, RADC_VOL, 0, 0x7f, 0),
294         SOC_DOUBLE_R("PGA Capture Switch", LADC_VOL, RADC_VOL, 7, 0x01, 1),
295 };
296
297 /* add non dapm controls */
298 static int aic3x_add_controls(struct snd_soc_codec *codec)
299 {
300         int err, i;
301
302         for (i = 0; i < ARRAY_SIZE(aic3x_snd_controls); i++) {
303                 err = snd_ctl_add(codec->card,
304                                   snd_soc_cnew(&aic3x_snd_controls[i],
305                                                codec, NULL));
306                 if (err < 0)
307                         return err;
308         }
309
310         return 0;
311 }
312
313 /* Left DAC Mux */
314 static const struct snd_kcontrol_new aic3x_left_dac_mux_controls =
315 SOC_DAPM_ENUM("Route", aic3x_enum[LDAC_ENUM]);
316
317 /* Right DAC Mux */
318 static const struct snd_kcontrol_new aic3x_right_dac_mux_controls =
319 SOC_DAPM_ENUM("Route", aic3x_enum[RDAC_ENUM]);
320
321 /* Left HPCOM Mux */
322 static const struct snd_kcontrol_new aic3x_left_hpcom_mux_controls =
323 SOC_DAPM_ENUM("Route", aic3x_enum[LHPCOM_ENUM]);
324
325 /* Right HPCOM Mux */
326 static const struct snd_kcontrol_new aic3x_right_hpcom_mux_controls =
327 SOC_DAPM_ENUM("Route", aic3x_enum[RHPCOM_ENUM]);
328
329 /* Left DAC_L1 Mixer */
330 static const struct snd_kcontrol_new aic3x_left_dac_mixer_controls[] = {
331         SOC_DAPM_SINGLE("Line Switch", DACL1_2_LLOPM_VOL, 7, 1, 0),
332         SOC_DAPM_SINGLE("Mono Switch", DACL1_2_MONOLOPM_VOL, 7, 1, 0),
333         SOC_DAPM_SINGLE("HP Switch", DACL1_2_HPLOUT_VOL, 7, 1, 0),
334         SOC_DAPM_SINGLE("HPCOM Switch", DACL1_2_HPLCOM_VOL, 7, 1, 0),
335 };
336
337 /* Right DAC_R1 Mixer */
338 static const struct snd_kcontrol_new aic3x_right_dac_mixer_controls[] = {
339         SOC_DAPM_SINGLE("Line Switch", DACR1_2_RLOPM_VOL, 7, 1, 0),
340         SOC_DAPM_SINGLE("Mono Switch", DACR1_2_MONOLOPM_VOL, 7, 1, 0),
341         SOC_DAPM_SINGLE("HP Switch", DACR1_2_HPROUT_VOL, 7, 1, 0),
342         SOC_DAPM_SINGLE("HPCOM Switch", DACR1_2_HPRCOM_VOL, 7, 1, 0),
343 };
344
345 /* Left PGA Mixer */
346 static const struct snd_kcontrol_new aic3x_left_pga_mixer_controls[] = {
347         SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_LADC_CTRL, 3, 1, 1),
348         SOC_DAPM_SINGLE_AIC3X("Line2L Switch", LINE2L_2_LADC_CTRL, 3, 1, 1),
349         SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_LADC_CTRL, 4, 1, 1),
350 };
351
352 /* Right PGA Mixer */
353 static const struct snd_kcontrol_new aic3x_right_pga_mixer_controls[] = {
354         SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_RADC_CTRL, 3, 1, 1),
355         SOC_DAPM_SINGLE_AIC3X("Line2R Switch", LINE2R_2_RADC_CTRL, 3, 1, 1),
356         SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_RADC_CTRL, 0, 1, 1),
357 };
358
359 /* Left Line1 Mux */
360 static const struct snd_kcontrol_new aic3x_left_line1_mux_controls =
361 SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_ENUM]);
362
363 /* Right Line1 Mux */
364 static const struct snd_kcontrol_new aic3x_right_line1_mux_controls =
365 SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_ENUM]);
366
367 /* Left Line2 Mux */
368 static const struct snd_kcontrol_new aic3x_left_line2_mux_controls =
369 SOC_DAPM_ENUM("Route", aic3x_enum[LINE2L_ENUM]);
370
371 /* Right Line2 Mux */
372 static const struct snd_kcontrol_new aic3x_right_line2_mux_controls =
373 SOC_DAPM_ENUM("Route", aic3x_enum[LINE2R_ENUM]);
374
375 /* Left PGA Bypass Mixer */
376 static const struct snd_kcontrol_new aic3x_left_pga_bp_mixer_controls[] = {
377         SOC_DAPM_SINGLE("Line Switch", PGAL_2_LLOPM_VOL, 7, 1, 0),
378         SOC_DAPM_SINGLE("Mono Switch", PGAL_2_MONOLOPM_VOL, 7, 1, 0),
379         SOC_DAPM_SINGLE("HP Switch", PGAL_2_HPLOUT_VOL, 7, 1, 0),
380         SOC_DAPM_SINGLE("HPCOM Switch", PGAL_2_HPLCOM_VOL, 7, 1, 0),
381 };
382
383 /* Right PGA Bypass Mixer */
384 static const struct snd_kcontrol_new aic3x_right_pga_bp_mixer_controls[] = {
385         SOC_DAPM_SINGLE("Line Switch", PGAR_2_RLOPM_VOL, 7, 1, 0),
386         SOC_DAPM_SINGLE("Mono Switch", PGAR_2_MONOLOPM_VOL, 7, 1, 0),
387         SOC_DAPM_SINGLE("HP Switch", PGAR_2_HPROUT_VOL, 7, 1, 0),
388         SOC_DAPM_SINGLE("HPCOM Switch", PGAR_2_HPRCOM_VOL, 7, 1, 0),
389 };
390
391 /* Left Line2 Bypass Mixer */
392 static const struct snd_kcontrol_new aic3x_left_line2_bp_mixer_controls[] = {
393         SOC_DAPM_SINGLE("Line Switch", LINE2L_2_LLOPM_VOL, 7, 1, 0),
394         SOC_DAPM_SINGLE("Mono Switch", LINE2L_2_MONOLOPM_VOL, 7, 1, 0),
395         SOC_DAPM_SINGLE("HP Switch", LINE2L_2_HPLOUT_VOL, 7, 1, 0),
396         SOC_DAPM_SINGLE("HPCOM Switch", LINE2L_2_HPLCOM_VOL, 7, 1, 0),
397 };
398
399 /* Right Line2 Bypass Mixer */
400 static const struct snd_kcontrol_new aic3x_right_line2_bp_mixer_controls[] = {
401         SOC_DAPM_SINGLE("Line Switch", LINE2R_2_RLOPM_VOL, 7, 1, 0),
402         SOC_DAPM_SINGLE("Mono Switch", LINE2R_2_MONOLOPM_VOL, 7, 1, 0),
403         SOC_DAPM_SINGLE("HP Switch", LINE2R_2_HPROUT_VOL, 7, 1, 0),
404         SOC_DAPM_SINGLE("HPCOM Switch", LINE2R_2_HPRCOM_VOL, 7, 1, 0),
405 };
406
407 static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
408         /* Left DAC to Left Outputs */
409         SND_SOC_DAPM_DAC("Left DAC", "Left Playback", DAC_PWR, 7, 0),
410         SND_SOC_DAPM_MUX("Left DAC Mux", SND_SOC_NOPM, 0, 0,
411                          &aic3x_left_dac_mux_controls),
412         SND_SOC_DAPM_MIXER("Left DAC_L1 Mixer", SND_SOC_NOPM, 0, 0,
413                            &aic3x_left_dac_mixer_controls[0],
414                            ARRAY_SIZE(aic3x_left_dac_mixer_controls)),
415         SND_SOC_DAPM_MUX("Left HPCOM Mux", SND_SOC_NOPM, 0, 0,
416                          &aic3x_left_hpcom_mux_controls),
417         SND_SOC_DAPM_PGA("Left Line Out", LLOPM_CTRL, 0, 0, NULL, 0),
418         SND_SOC_DAPM_PGA("Left HP Out", HPLOUT_CTRL, 0, 0, NULL, 0),
419         SND_SOC_DAPM_PGA("Left HP Com", HPLCOM_CTRL, 0, 0, NULL, 0),
420
421         /* Right DAC to Right Outputs */
422         SND_SOC_DAPM_DAC("Right DAC", "Right Playback", DAC_PWR, 6, 0),
423         SND_SOC_DAPM_MUX("Right DAC Mux", SND_SOC_NOPM, 0, 0,
424                          &aic3x_right_dac_mux_controls),
425         SND_SOC_DAPM_MIXER("Right DAC_R1 Mixer", SND_SOC_NOPM, 0, 0,
426                            &aic3x_right_dac_mixer_controls[0],
427                            ARRAY_SIZE(aic3x_right_dac_mixer_controls)),
428         SND_SOC_DAPM_MUX("Right HPCOM Mux", SND_SOC_NOPM, 0, 0,
429                          &aic3x_right_hpcom_mux_controls),
430         SND_SOC_DAPM_PGA("Right Line Out", RLOPM_CTRL, 0, 0, NULL, 0),
431         SND_SOC_DAPM_PGA("Right HP Out", HPROUT_CTRL, 0, 0, NULL, 0),
432         SND_SOC_DAPM_PGA("Right HP Com", HPRCOM_CTRL, 0, 0, NULL, 0),
433
434         /* Mono Output */
435         SND_SOC_DAPM_PGA("Mono Out", MONOLOPM_CTRL, 0, 0, NULL, 0),
436
437         /* Left Inputs to Left ADC */
438         SND_SOC_DAPM_ADC("Left ADC", "Left Capture", LINE1L_2_LADC_CTRL, 2, 0),
439         SND_SOC_DAPM_MIXER("Left PGA Mixer", SND_SOC_NOPM, 0, 0,
440                            &aic3x_left_pga_mixer_controls[0],
441                            ARRAY_SIZE(aic3x_left_pga_mixer_controls)),
442         SND_SOC_DAPM_MUX("Left Line1L Mux", SND_SOC_NOPM, 0, 0,
443                          &aic3x_left_line1_mux_controls),
444         SND_SOC_DAPM_MUX("Left Line2L Mux", SND_SOC_NOPM, 0, 0,
445                          &aic3x_left_line2_mux_controls),
446
447         /* Right Inputs to Right ADC */
448         SND_SOC_DAPM_ADC("Right ADC", "Right Capture",
449                          LINE1R_2_RADC_CTRL, 2, 0),
450         SND_SOC_DAPM_MIXER("Right PGA Mixer", SND_SOC_NOPM, 0, 0,
451                            &aic3x_right_pga_mixer_controls[0],
452                            ARRAY_SIZE(aic3x_right_pga_mixer_controls)),
453         SND_SOC_DAPM_MUX("Right Line1R Mux", SND_SOC_NOPM, 0, 0,
454                          &aic3x_right_line1_mux_controls),
455         SND_SOC_DAPM_MUX("Right Line2R Mux", SND_SOC_NOPM, 0, 0,
456                          &aic3x_right_line2_mux_controls),
457
458         /*
459          * Not a real mic bias widget but similar function. This is for dynamic
460          * control of GPIO1 digital mic modulator clock output function when
461          * using digital mic.
462          */
463         SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "GPIO1 dmic modclk",
464                          AIC3X_GPIO1_REG, 4, 0xf,
465                          AIC3X_GPIO1_FUNC_DIGITAL_MIC_MODCLK,
466                          AIC3X_GPIO1_FUNC_DISABLED),
467
468         /*
469          * Also similar function like mic bias. Selects digital mic with
470          * configurable oversampling rate instead of ADC converter.
471          */
472         SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 128",
473                          AIC3X_ASD_INTF_CTRLA, 0, 3, 1, 0),
474         SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 64",
475                          AIC3X_ASD_INTF_CTRLA, 0, 3, 2, 0),
476         SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 32",
477                          AIC3X_ASD_INTF_CTRLA, 0, 3, 3, 0),
478
479         /* Mic Bias */
480         SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2V",
481                          MICBIAS_CTRL, 6, 3, 1, 0),
482         SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2.5V",
483                          MICBIAS_CTRL, 6, 3, 2, 0),
484         SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias AVDD",
485                          MICBIAS_CTRL, 6, 3, 3, 0),
486
487         /* Left PGA to Left Output bypass */
488         SND_SOC_DAPM_MIXER("Left PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
489                            &aic3x_left_pga_bp_mixer_controls[0],
490                            ARRAY_SIZE(aic3x_left_pga_bp_mixer_controls)),
491
492         /* Right PGA to Right Output bypass */
493         SND_SOC_DAPM_MIXER("Right PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
494                            &aic3x_right_pga_bp_mixer_controls[0],
495                            ARRAY_SIZE(aic3x_right_pga_bp_mixer_controls)),
496
497         /* Left Line2 to Left Output bypass */
498         SND_SOC_DAPM_MIXER("Left Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
499                            &aic3x_left_line2_bp_mixer_controls[0],
500                            ARRAY_SIZE(aic3x_left_line2_bp_mixer_controls)),
501
502         /* Right Line2 to Right Output bypass */
503         SND_SOC_DAPM_MIXER("Right Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
504                            &aic3x_right_line2_bp_mixer_controls[0],
505                            ARRAY_SIZE(aic3x_right_line2_bp_mixer_controls)),
506
507         SND_SOC_DAPM_OUTPUT("LLOUT"),
508         SND_SOC_DAPM_OUTPUT("RLOUT"),
509         SND_SOC_DAPM_OUTPUT("MONO_LOUT"),
510         SND_SOC_DAPM_OUTPUT("HPLOUT"),
511         SND_SOC_DAPM_OUTPUT("HPROUT"),
512         SND_SOC_DAPM_OUTPUT("HPLCOM"),
513         SND_SOC_DAPM_OUTPUT("HPRCOM"),
514
515         SND_SOC_DAPM_INPUT("MIC3L"),
516         SND_SOC_DAPM_INPUT("MIC3R"),
517         SND_SOC_DAPM_INPUT("LINE1L"),
518         SND_SOC_DAPM_INPUT("LINE1R"),
519         SND_SOC_DAPM_INPUT("LINE2L"),
520         SND_SOC_DAPM_INPUT("LINE2R"),
521 };
522
523 static const struct snd_soc_dapm_route intercon[] = {
524         /* Left Output */
525         {"Left DAC Mux", "DAC_L1", "Left DAC"},
526         {"Left DAC Mux", "DAC_L2", "Left DAC"},
527         {"Left DAC Mux", "DAC_L3", "Left DAC"},
528
529         {"Left DAC_L1 Mixer", "Line Switch", "Left DAC Mux"},
530         {"Left DAC_L1 Mixer", "Mono Switch", "Left DAC Mux"},
531         {"Left DAC_L1 Mixer", "HP Switch", "Left DAC Mux"},
532         {"Left DAC_L1 Mixer", "HPCOM Switch", "Left DAC Mux"},
533         {"Left Line Out", NULL, "Left DAC Mux"},
534         {"Left HP Out", NULL, "Left DAC Mux"},
535
536         {"Left HPCOM Mux", "differential of HPLOUT", "Left DAC_L1 Mixer"},
537         {"Left HPCOM Mux", "constant VCM", "Left DAC_L1 Mixer"},
538         {"Left HPCOM Mux", "single-ended", "Left DAC_L1 Mixer"},
539
540         {"Left Line Out", NULL, "Left DAC_L1 Mixer"},
541         {"Mono Out", NULL, "Left DAC_L1 Mixer"},
542         {"Left HP Out", NULL, "Left DAC_L1 Mixer"},
543         {"Left HP Com", NULL, "Left HPCOM Mux"},
544
545         {"LLOUT", NULL, "Left Line Out"},
546         {"LLOUT", NULL, "Left Line Out"},
547         {"HPLOUT", NULL, "Left HP Out"},
548         {"HPLCOM", NULL, "Left HP Com"},
549
550         /* Right Output */
551         {"Right DAC Mux", "DAC_R1", "Right DAC"},
552         {"Right DAC Mux", "DAC_R2", "Right DAC"},
553         {"Right DAC Mux", "DAC_R3", "Right DAC"},
554
555         {"Right DAC_R1 Mixer", "Line Switch", "Right DAC Mux"},
556         {"Right DAC_R1 Mixer", "Mono Switch", "Right DAC Mux"},
557         {"Right DAC_R1 Mixer", "HP Switch", "Right DAC Mux"},
558         {"Right DAC_R1 Mixer", "HPCOM Switch", "Right DAC Mux"},
559         {"Right Line Out", NULL, "Right DAC Mux"},
560         {"Right HP Out", NULL, "Right DAC Mux"},
561
562         {"Right HPCOM Mux", "differential of HPROUT", "Right DAC_R1 Mixer"},
563         {"Right HPCOM Mux", "constant VCM", "Right DAC_R1 Mixer"},
564         {"Right HPCOM Mux", "single-ended", "Right DAC_R1 Mixer"},
565         {"Right HPCOM Mux", "differential of HPLCOM", "Right DAC_R1 Mixer"},
566         {"Right HPCOM Mux", "external feedback", "Right DAC_R1 Mixer"},
567
568         {"Right Line Out", NULL, "Right DAC_R1 Mixer"},
569         {"Mono Out", NULL, "Right DAC_R1 Mixer"},
570         {"Right HP Out", NULL, "Right DAC_R1 Mixer"},
571         {"Right HP Com", NULL, "Right HPCOM Mux"},
572
573         {"RLOUT", NULL, "Right Line Out"},
574         {"RLOUT", NULL, "Right Line Out"},
575         {"HPROUT", NULL, "Right HP Out"},
576         {"HPRCOM", NULL, "Right HP Com"},
577
578         /* Mono Output */
579         {"MONO_LOUT", NULL, "Mono Out"},
580         {"MONO_LOUT", NULL, "Mono Out"},
581
582         /* Left Input */
583         {"Left Line1L Mux", "single-ended", "LINE1L"},
584         {"Left Line1L Mux", "differential", "LINE1L"},
585
586         {"Left Line2L Mux", "single-ended", "LINE2L"},
587         {"Left Line2L Mux", "differential", "LINE2L"},
588
589         {"Left PGA Mixer", "Line1L Switch", "Left Line1L Mux"},
590         {"Left PGA Mixer", "Line2L Switch", "Left Line2L Mux"},
591         {"Left PGA Mixer", "Mic3L Switch", "MIC3L"},
592
593         {"Left ADC", NULL, "Left PGA Mixer"},
594         {"Left ADC", NULL, "GPIO1 dmic modclk"},
595
596         /* Right Input */
597         {"Right Line1R Mux", "single-ended", "LINE1R"},
598         {"Right Line1R Mux", "differential", "LINE1R"},
599
600         {"Right Line2R Mux", "single-ended", "LINE2R"},
601         {"Right Line2R Mux", "differential", "LINE2R"},
602
603         {"Right PGA Mixer", "Line1R Switch", "Right Line1R Mux"},
604         {"Right PGA Mixer", "Line2R Switch", "Right Line2R Mux"},
605         {"Right PGA Mixer", "Mic3R Switch", "MIC3R"},
606
607         {"Right ADC", NULL, "Right PGA Mixer"},
608         {"Right ADC", NULL, "GPIO1 dmic modclk"},
609
610         /* Left PGA Bypass */
611         {"Left PGA Bypass Mixer", "Line Switch", "Left PGA Mixer"},
612         {"Left PGA Bypass Mixer", "Mono Switch", "Left PGA Mixer"},
613         {"Left PGA Bypass Mixer", "HP Switch", "Left PGA Mixer"},
614         {"Left PGA Bypass Mixer", "HPCOM Switch", "Left PGA Mixer"},
615
616         {"Left HPCOM Mux", "differential of HPLOUT", "Left PGA Bypass Mixer"},
617         {"Left HPCOM Mux", "constant VCM", "Left PGA Bypass Mixer"},
618         {"Left HPCOM Mux", "single-ended", "Left PGA Bypass Mixer"},
619
620         {"Left Line Out", NULL, "Left PGA Bypass Mixer"},
621         {"Mono Out", NULL, "Left PGA Bypass Mixer"},
622         {"Left HP Out", NULL, "Left PGA Bypass Mixer"},
623
624         /* Right PGA Bypass */
625         {"Right PGA Bypass Mixer", "Line Switch", "Right PGA Mixer"},
626         {"Right PGA Bypass Mixer", "Mono Switch", "Right PGA Mixer"},
627         {"Right PGA Bypass Mixer", "HP Switch", "Right PGA Mixer"},
628         {"Right PGA Bypass Mixer", "HPCOM Switch", "Right PGA Mixer"},
629
630         {"Right HPCOM Mux", "differential of HPROUT", "Right PGA Bypass Mixer"},
631         {"Right HPCOM Mux", "constant VCM", "Right PGA Bypass Mixer"},
632         {"Right HPCOM Mux", "single-ended", "Right PGA Bypass Mixer"},
633         {"Right HPCOM Mux", "differential of HPLCOM", "Right PGA Bypass Mixer"},
634         {"Right HPCOM Mux", "external feedback", "Right PGA Bypass Mixer"},
635
636         {"Right Line Out", NULL, "Right PGA Bypass Mixer"},
637         {"Mono Out", NULL, "Right PGA Bypass Mixer"},
638         {"Right HP Out", NULL, "Right PGA Bypass Mixer"},
639
640         /* Left Line2 Bypass */
641         {"Left Line2 Bypass Mixer", "Line Switch", "Left Line2L Mux"},
642         {"Left Line2 Bypass Mixer", "Mono Switch", "Left Line2L Mux"},
643         {"Left Line2 Bypass Mixer", "HP Switch", "Left Line2L Mux"},
644         {"Left Line2 Bypass Mixer", "HPCOM Switch", "Left Line2L Mux"},
645
646         {"Left HPCOM Mux", "differential of HPLOUT", "Left Line2 Bypass Mixer"},
647         {"Left HPCOM Mux", "constant VCM", "Left Line2 Bypass Mixer"},
648         {"Left HPCOM Mux", "single-ended", "Left Line2 Bypass Mixer"},
649
650         {"Left Line Out", NULL, "Left Line2 Bypass Mixer"},
651         {"Mono Out", NULL, "Left Line2 Bypass Mixer"},
652         {"Left HP Out", NULL, "Left Line2 Bypass Mixer"},
653
654         /* Right Line2 Bypass */
655         {"Right Line2 Bypass Mixer", "Line Switch", "Right Line2R Mux"},
656         {"Right Line2 Bypass Mixer", "Mono Switch", "Right Line2R Mux"},
657         {"Right Line2 Bypass Mixer", "HP Switch", "Right Line2R Mux"},
658         {"Right Line2 Bypass Mixer", "HPCOM Switch", "Right Line2R Mux"},
659
660         {"Right HPCOM Mux", "differential of HPROUT", "Right Line2 Bypass Mixer"},
661         {"Right HPCOM Mux", "constant VCM", "Right Line2 Bypass Mixer"},
662         {"Right HPCOM Mux", "single-ended", "Right Line2 Bypass Mixer"},
663         {"Right HPCOM Mux", "differential of HPLCOM", "Right Line2 Bypass Mixer"},
664         {"Right HPCOM Mux", "external feedback", "Right Line2 Bypass Mixer"},
665
666         {"Right Line Out", NULL, "Right Line2 Bypass Mixer"},
667         {"Mono Out", NULL, "Right Line2 Bypass Mixer"},
668         {"Right HP Out", NULL, "Right Line2 Bypass Mixer"},
669
670         /*
671          * Logical path between digital mic enable and GPIO1 modulator clock
672          * output function
673          */
674         {"GPIO1 dmic modclk", NULL, "DMic Rate 128"},
675         {"GPIO1 dmic modclk", NULL, "DMic Rate 64"},
676         {"GPIO1 dmic modclk", NULL, "DMic Rate 32"},
677 };
678
679 static int aic3x_add_widgets(struct snd_soc_codec *codec)
680 {
681         snd_soc_dapm_new_controls(codec, aic3x_dapm_widgets,
682                                   ARRAY_SIZE(aic3x_dapm_widgets));
683
684         /* set up audio path interconnects */
685         snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
686
687         snd_soc_dapm_new_widgets(codec);
688         return 0;
689 }
690
691 static int aic3x_hw_params(struct snd_pcm_substream *substream,
692                            struct snd_pcm_hw_params *params)
693 {
694         struct snd_soc_pcm_runtime *rtd = substream->private_data;
695         struct snd_soc_device *socdev = rtd->socdev;
696         struct snd_soc_codec *codec = socdev->codec;
697         struct aic3x_priv *aic3x = codec->private_data;
698         int codec_clk = 0, bypass_pll = 0, fsref, last_clk = 0;
699         u8 data, r, p, pll_q, pll_p = 1, pll_r = 1, pll_j = 1;
700         u16 pll_d = 1;
701
702         /* select data word length */
703         data =
704             aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & (~(0x3 << 4));
705         switch (params_format(params)) {
706         case SNDRV_PCM_FORMAT_S16_LE:
707                 break;
708         case SNDRV_PCM_FORMAT_S20_3LE:
709                 data |= (0x01 << 4);
710                 break;
711         case SNDRV_PCM_FORMAT_S24_LE:
712                 data |= (0x02 << 4);
713                 break;
714         case SNDRV_PCM_FORMAT_S32_LE:
715                 data |= (0x03 << 4);
716                 break;
717         }
718         aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, data);
719
720         /* Fsref can be 44100 or 48000 */
721         fsref = (params_rate(params) % 11025 == 0) ? 44100 : 48000;
722
723         /* Try to find a value for Q which allows us to bypass the PLL and
724          * generate CODEC_CLK directly. */
725         for (pll_q = 2; pll_q < 18; pll_q++)
726                 if (aic3x->sysclk / (128 * pll_q) == fsref) {
727                         bypass_pll = 1;
728                         break;
729                 }
730
731         if (bypass_pll) {
732                 pll_q &= 0xf;
733                 aic3x_write(codec, AIC3X_PLL_PROGA_REG, pll_q << PLLQ_SHIFT);
734                 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_CLKDIV);
735         } else
736                 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_PLLDIV);
737
738         /* Route Left DAC to left channel input and
739          * right DAC to right channel input */
740         data = (LDAC2LCH | RDAC2RCH);
741         data |= (fsref == 44100) ? FSREF_44100 : FSREF_48000;
742         if (params_rate(params) >= 64000)
743                 data |= DUAL_RATE_MODE;
744         aic3x_write(codec, AIC3X_CODEC_DATAPATH_REG, data);
745
746         /* codec sample rate select */
747         data = (fsref * 20) / params_rate(params);
748         if (params_rate(params) < 64000)
749                 data /= 2;
750         data /= 5;
751         data -= 2;
752         data |= (data << 4);
753         aic3x_write(codec, AIC3X_SAMPLE_RATE_SEL_REG, data);
754
755         if (bypass_pll)
756                 return 0;
757
758         /* Use PLL
759          * find an apropriate setup for j, d, r and p by iterating over
760          * p and r - j and d are calculated for each fraction.
761          * Up to 128 values are probed, the closest one wins the game.
762          * The sysclk is divided by 1000 to prevent integer overflows.
763          */
764         codec_clk = (2048 * fsref) / (aic3x->sysclk / 1000);
765
766         for (r = 1; r <= 16; r++)
767                 for (p = 1; p <= 8; p++) {
768                         int clk, tmp = (codec_clk * pll_r * 10) / pll_p;
769                         u8 j = tmp / 10000;
770                         u16 d = tmp % 10000;
771
772                         if (j > 63)
773                                 continue;
774
775                         if (d != 0 && aic3x->sysclk < 10000000)
776                                 continue;
777
778                         /* This is actually 1000 * ((j + (d/10000)) * r) / p
779                          * The term had to be converted to get rid of the
780                          * division by 10000 */
781                         clk = ((10000 * j * r) + (d * r)) / (10 * p);
782
783                         /* check whether this values get closer than the best
784                          * ones we had before */
785                         if (abs(codec_clk - clk) < abs(codec_clk - last_clk)) {
786                                 pll_j = j; pll_d = d; pll_r = r; pll_p = p;
787                                 last_clk = clk;
788                         }
789
790                         /* Early exit for exact matches */
791                         if (clk == codec_clk)
792                                 break;
793                 }
794
795         if (last_clk == 0) {
796                 printk(KERN_ERR "%s(): unable to setup PLL\n", __func__);
797                 return -EINVAL;
798         }
799
800         data = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
801         aic3x_write(codec, AIC3X_PLL_PROGA_REG, data | (pll_p << PLLP_SHIFT));
802         aic3x_write(codec, AIC3X_OVRF_STATUS_AND_PLLR_REG, pll_r << PLLR_SHIFT);
803         aic3x_write(codec, AIC3X_PLL_PROGB_REG, pll_j << PLLJ_SHIFT);
804         aic3x_write(codec, AIC3X_PLL_PROGC_REG, (pll_d >> 6) << PLLD_MSB_SHIFT);
805         aic3x_write(codec, AIC3X_PLL_PROGD_REG,
806                     (pll_d & 0x3F) << PLLD_LSB_SHIFT);
807
808         return 0;
809 }
810
811 static int aic3x_mute(struct snd_soc_codec_dai *dai, int mute)
812 {
813         struct snd_soc_codec *codec = dai->codec;
814         u8 ldac_reg = aic3x_read_reg_cache(codec, LDAC_VOL) & ~MUTE_ON;
815         u8 rdac_reg = aic3x_read_reg_cache(codec, RDAC_VOL) & ~MUTE_ON;
816
817         if (mute) {
818                 aic3x_write(codec, LDAC_VOL, ldac_reg | MUTE_ON);
819                 aic3x_write(codec, RDAC_VOL, rdac_reg | MUTE_ON);
820         } else {
821                 aic3x_write(codec, LDAC_VOL, ldac_reg);
822                 aic3x_write(codec, RDAC_VOL, rdac_reg);
823         }
824
825         return 0;
826 }
827
828 static int aic3x_set_dai_sysclk(struct snd_soc_codec_dai *codec_dai,
829                                 int clk_id, unsigned int freq, int dir)
830 {
831         struct snd_soc_codec *codec = codec_dai->codec;
832         struct aic3x_priv *aic3x = codec->private_data;
833
834         aic3x->sysclk = freq;
835         return 0;
836 }
837
838 static int aic3x_set_dai_fmt(struct snd_soc_codec_dai *codec_dai,
839                              unsigned int fmt)
840 {
841         struct snd_soc_codec *codec = codec_dai->codec;
842         struct aic3x_priv *aic3x = codec->private_data;
843         u8 iface_areg, iface_breg;
844
845         iface_areg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLA) & 0x3f;
846         iface_breg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & 0x3f;
847
848         /* set master/slave audio interface */
849         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
850         case SND_SOC_DAIFMT_CBM_CFM:
851                 aic3x->master = 1;
852                 iface_areg |= BIT_CLK_MASTER | WORD_CLK_MASTER;
853                 break;
854         case SND_SOC_DAIFMT_CBS_CFS:
855                 aic3x->master = 0;
856                 break;
857         default:
858                 return -EINVAL;
859         }
860
861         /* interface format */
862         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
863         case SND_SOC_DAIFMT_I2S:
864                 break;
865         case SND_SOC_DAIFMT_DSP_A:
866                 iface_breg |= (0x01 << 6);
867                 break;
868         case SND_SOC_DAIFMT_RIGHT_J:
869                 iface_breg |= (0x02 << 6);
870                 break;
871         case SND_SOC_DAIFMT_LEFT_J:
872                 iface_breg |= (0x03 << 6);
873                 break;
874         default:
875                 return -EINVAL;
876         }
877
878         /* set iface */
879         aic3x_write(codec, AIC3X_ASD_INTF_CTRLA, iface_areg);
880         aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, iface_breg);
881
882         return 0;
883 }
884
885 static int aic3x_set_bias_level(struct snd_soc_codec *codec,
886                                 enum snd_soc_bias_level level)
887 {
888         struct aic3x_priv *aic3x = codec->private_data;
889         u8 reg;
890
891         switch (level) {
892         case SND_SOC_BIAS_ON:
893                 /* all power is driven by DAPM system */
894                 if (aic3x->master) {
895                         /* enable pll */
896                         reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
897                         aic3x_write(codec, AIC3X_PLL_PROGA_REG,
898                                     reg | PLL_ENABLE);
899                 }
900                 break;
901         case SND_SOC_BIAS_PREPARE:
902                 break;
903         case SND_SOC_BIAS_STANDBY:
904                 /*
905                  * all power is driven by DAPM system,
906                  * so output power is safe if bypass was set
907                  */
908                 if (aic3x->master) {
909                         /* disable pll */
910                         reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
911                         aic3x_write(codec, AIC3X_PLL_PROGA_REG,
912                                     reg & ~PLL_ENABLE);
913                 }
914                 break;
915         case SND_SOC_BIAS_OFF:
916                 /* force all power off */
917                 reg = aic3x_read_reg_cache(codec, LINE1L_2_LADC_CTRL);
918                 aic3x_write(codec, LINE1L_2_LADC_CTRL, reg & ~LADC_PWR_ON);
919                 reg = aic3x_read_reg_cache(codec, LINE1R_2_RADC_CTRL);
920                 aic3x_write(codec, LINE1R_2_RADC_CTRL, reg & ~RADC_PWR_ON);
921
922                 reg = aic3x_read_reg_cache(codec, DAC_PWR);
923                 aic3x_write(codec, DAC_PWR, reg & ~(LDAC_PWR_ON | RDAC_PWR_ON));
924
925                 reg = aic3x_read_reg_cache(codec, HPLOUT_CTRL);
926                 aic3x_write(codec, HPLOUT_CTRL, reg & ~HPLOUT_PWR_ON);
927                 reg = aic3x_read_reg_cache(codec, HPROUT_CTRL);
928                 aic3x_write(codec, HPROUT_CTRL, reg & ~HPROUT_PWR_ON);
929
930                 reg = aic3x_read_reg_cache(codec, HPLCOM_CTRL);
931                 aic3x_write(codec, HPLCOM_CTRL, reg & ~HPLCOM_PWR_ON);
932                 reg = aic3x_read_reg_cache(codec, HPRCOM_CTRL);
933                 aic3x_write(codec, HPRCOM_CTRL, reg & ~HPRCOM_PWR_ON);
934
935                 reg = aic3x_read_reg_cache(codec, MONOLOPM_CTRL);
936                 aic3x_write(codec, MONOLOPM_CTRL, reg & ~MONOLOPM_PWR_ON);
937
938                 reg = aic3x_read_reg_cache(codec, LLOPM_CTRL);
939                 aic3x_write(codec, LLOPM_CTRL, reg & ~LLOPM_PWR_ON);
940                 reg = aic3x_read_reg_cache(codec, RLOPM_CTRL);
941                 aic3x_write(codec, RLOPM_CTRL, reg & ~RLOPM_PWR_ON);
942
943                 if (aic3x->master) {
944                         /* disable pll */
945                         reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
946                         aic3x_write(codec, AIC3X_PLL_PROGA_REG,
947                                     reg & ~PLL_ENABLE);
948                 }
949                 break;
950         }
951         codec->bias_level = level;
952
953         return 0;
954 }
955
956 void aic3x_set_gpio(struct snd_soc_codec *codec, int gpio, int state)
957 {
958         u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
959         u8 bit = gpio ? 3: 0;
960         u8 val = aic3x_read_reg_cache(codec, reg) & ~(1 << bit);
961         aic3x_write(codec, reg, val | (!!state << bit));
962 }
963 EXPORT_SYMBOL_GPL(aic3x_set_gpio);
964
965 int aic3x_get_gpio(struct snd_soc_codec *codec, int gpio)
966 {
967         u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
968         u8 val, bit = gpio ? 2: 1;
969
970         aic3x_read(codec, reg, &val);
971         return (val >> bit) & 1;
972 }
973 EXPORT_SYMBOL_GPL(aic3x_get_gpio);
974
975 int aic3x_headset_detected(struct snd_soc_codec *codec)
976 {
977         u8 val;
978         aic3x_read(codec, AIC3X_RT_IRQ_FLAGS_REG, &val);
979         return (val >> 2) & 1;
980 }
981 EXPORT_SYMBOL_GPL(aic3x_headset_detected);
982
983 #define AIC3X_RATES     SNDRV_PCM_RATE_8000_96000
984 #define AIC3X_FORMATS   (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
985                          SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
986
987 struct snd_soc_codec_dai aic3x_dai = {
988         .name = "aic3x",
989         .playback = {
990                 .stream_name = "Playback",
991                 .channels_min = 1,
992                 .channels_max = 2,
993                 .rates = AIC3X_RATES,
994                 .formats = AIC3X_FORMATS,},
995         .capture = {
996                 .stream_name = "Capture",
997                 .channels_min = 1,
998                 .channels_max = 2,
999                 .rates = AIC3X_RATES,
1000                 .formats = AIC3X_FORMATS,},
1001         .ops = {
1002                 .hw_params = aic3x_hw_params,
1003         },
1004         .dai_ops = {
1005                 .digital_mute = aic3x_mute,
1006                 .set_sysclk = aic3x_set_dai_sysclk,
1007                 .set_fmt = aic3x_set_dai_fmt,
1008         }
1009 };
1010 EXPORT_SYMBOL_GPL(aic3x_dai);
1011
1012 static int aic3x_suspend(struct platform_device *pdev, pm_message_t state)
1013 {
1014         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1015         struct snd_soc_codec *codec = socdev->codec;
1016
1017         aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
1018
1019         return 0;
1020 }
1021
1022 static int aic3x_resume(struct platform_device *pdev)
1023 {
1024         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1025         struct snd_soc_codec *codec = socdev->codec;
1026         int i;
1027         u8 data[2];
1028         u8 *cache = codec->reg_cache;
1029
1030         /* Sync reg_cache with the hardware */
1031         for (i = 0; i < ARRAY_SIZE(aic3x_reg); i++) {
1032                 data[0] = i;
1033                 data[1] = cache[i];
1034                 codec->hw_write(codec->control_data, data, 2);
1035         }
1036
1037         aic3x_set_bias_level(codec, codec->suspend_bias_level);
1038
1039         return 0;
1040 }
1041
1042 /*
1043  * initialise the AIC3X driver
1044  * register the mixer and dsp interfaces with the kernel
1045  */
1046 static int aic3x_init(struct snd_soc_device *socdev)
1047 {
1048         struct snd_soc_codec *codec = socdev->codec;
1049         struct aic3x_setup_data *setup = socdev->codec_data;
1050         int reg, ret = 0;
1051
1052         codec->name = "aic3x";
1053         codec->owner = THIS_MODULE;
1054         codec->read = aic3x_read_reg_cache;
1055         codec->write = aic3x_write;
1056         codec->set_bias_level = aic3x_set_bias_level;
1057         codec->dai = &aic3x_dai;
1058         codec->num_dai = 1;
1059         codec->reg_cache_size = ARRAY_SIZE(aic3x_reg);
1060         codec->reg_cache = kmemdup(aic3x_reg, sizeof(aic3x_reg), GFP_KERNEL);
1061         if (codec->reg_cache == NULL)
1062                 return -ENOMEM;
1063
1064         aic3x_write(codec, AIC3X_PAGE_SELECT, PAGE0_SELECT);
1065         aic3x_write(codec, AIC3X_RESET, SOFT_RESET);
1066
1067         /* register pcms */
1068         ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
1069         if (ret < 0) {
1070                 printk(KERN_ERR "aic3x: failed to create pcms\n");
1071                 goto pcm_err;
1072         }
1073
1074         /* DAC default volume and mute */
1075         aic3x_write(codec, LDAC_VOL, DEFAULT_VOL | MUTE_ON);
1076         aic3x_write(codec, RDAC_VOL, DEFAULT_VOL | MUTE_ON);
1077
1078         /* DAC to HP default volume and route to Output mixer */
1079         aic3x_write(codec, DACL1_2_HPLOUT_VOL, DEFAULT_VOL | ROUTE_ON);
1080         aic3x_write(codec, DACR1_2_HPROUT_VOL, DEFAULT_VOL | ROUTE_ON);
1081         aic3x_write(codec, DACL1_2_HPLCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1082         aic3x_write(codec, DACR1_2_HPRCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1083         /* DAC to Line Out default volume and route to Output mixer */
1084         aic3x_write(codec, DACL1_2_LLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1085         aic3x_write(codec, DACR1_2_RLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1086         /* DAC to Mono Line Out default volume and route to Output mixer */
1087         aic3x_write(codec, DACL1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1088         aic3x_write(codec, DACR1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1089
1090         /* unmute all outputs */
1091         reg = aic3x_read_reg_cache(codec, LLOPM_CTRL);
1092         aic3x_write(codec, LLOPM_CTRL, reg | UNMUTE);
1093         reg = aic3x_read_reg_cache(codec, RLOPM_CTRL);
1094         aic3x_write(codec, RLOPM_CTRL, reg | UNMUTE);
1095         reg = aic3x_read_reg_cache(codec, MONOLOPM_CTRL);
1096         aic3x_write(codec, MONOLOPM_CTRL, reg | UNMUTE);
1097         reg = aic3x_read_reg_cache(codec, HPLOUT_CTRL);
1098         aic3x_write(codec, HPLOUT_CTRL, reg | UNMUTE);
1099         reg = aic3x_read_reg_cache(codec, HPROUT_CTRL);
1100         aic3x_write(codec, HPROUT_CTRL, reg | UNMUTE);
1101         reg = aic3x_read_reg_cache(codec, HPLCOM_CTRL);
1102         aic3x_write(codec, HPLCOM_CTRL, reg | UNMUTE);
1103         reg = aic3x_read_reg_cache(codec, HPRCOM_CTRL);
1104         aic3x_write(codec, HPRCOM_CTRL, reg | UNMUTE);
1105
1106         /* ADC default volume and unmute */
1107         aic3x_write(codec, LADC_VOL, DEFAULT_GAIN);
1108         aic3x_write(codec, RADC_VOL, DEFAULT_GAIN);
1109         /* By default route Line1 to ADC PGA mixer */
1110         aic3x_write(codec, LINE1L_2_LADC_CTRL, 0x0);
1111         aic3x_write(codec, LINE1R_2_RADC_CTRL, 0x0);
1112
1113         /* PGA to HP Bypass default volume, disconnect from Output Mixer */
1114         aic3x_write(codec, PGAL_2_HPLOUT_VOL, DEFAULT_VOL);
1115         aic3x_write(codec, PGAR_2_HPROUT_VOL, DEFAULT_VOL);
1116         aic3x_write(codec, PGAL_2_HPLCOM_VOL, DEFAULT_VOL);
1117         aic3x_write(codec, PGAR_2_HPRCOM_VOL, DEFAULT_VOL);
1118         /* PGA to Line Out default volume, disconnect from Output Mixer */
1119         aic3x_write(codec, PGAL_2_LLOPM_VOL, DEFAULT_VOL);
1120         aic3x_write(codec, PGAR_2_RLOPM_VOL, DEFAULT_VOL);
1121         /* PGA to Mono Line Out default volume, disconnect from Output Mixer */
1122         aic3x_write(codec, PGAL_2_MONOLOPM_VOL, DEFAULT_VOL);
1123         aic3x_write(codec, PGAR_2_MONOLOPM_VOL, DEFAULT_VOL);
1124
1125         /* Line2 to HP Bypass default volume, disconnect from Output Mixer */
1126         aic3x_write(codec, LINE2L_2_HPLOUT_VOL, DEFAULT_VOL);
1127         aic3x_write(codec, LINE2R_2_HPROUT_VOL, DEFAULT_VOL);
1128         aic3x_write(codec, LINE2L_2_HPLCOM_VOL, DEFAULT_VOL);
1129         aic3x_write(codec, LINE2R_2_HPRCOM_VOL, DEFAULT_VOL);
1130         /* Line2 Line Out default volume, disconnect from Output Mixer */
1131         aic3x_write(codec, LINE2L_2_LLOPM_VOL, DEFAULT_VOL);
1132         aic3x_write(codec, LINE2R_2_RLOPM_VOL, DEFAULT_VOL);
1133         /* Line2 to Mono Out default volume, disconnect from Output Mixer */
1134         aic3x_write(codec, LINE2L_2_MONOLOPM_VOL, DEFAULT_VOL);
1135         aic3x_write(codec, LINE2R_2_MONOLOPM_VOL, DEFAULT_VOL);
1136
1137         /* off, with power on */
1138         aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
1139
1140         /* setup GPIO functions */
1141         aic3x_write(codec, AIC3X_GPIO1_REG, (setup->gpio_func[0] & 0xf) << 4);
1142         aic3x_write(codec, AIC3X_GPIO2_REG, (setup->gpio_func[1] & 0xf) << 4);
1143
1144         aic3x_add_controls(codec);
1145         aic3x_add_widgets(codec);
1146         ret = snd_soc_register_card(socdev);
1147         if (ret < 0) {
1148                 printk(KERN_ERR "aic3x: failed to register card\n");
1149                 goto card_err;
1150         }
1151
1152         return ret;
1153
1154 card_err:
1155         snd_soc_free_pcms(socdev);
1156         snd_soc_dapm_free(socdev);
1157 pcm_err:
1158         kfree(codec->reg_cache);
1159         return ret;
1160 }
1161
1162 static struct snd_soc_device *aic3x_socdev;
1163
1164 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1165 /*
1166  * AIC3X 2 wire address can be up to 4 devices with device addresses
1167  * 0x18, 0x19, 0x1A, 0x1B
1168  */
1169 static unsigned short normal_i2c[] = { 0, I2C_CLIENT_END };
1170
1171 /* Magic definition of all other variables and things */
1172 I2C_CLIENT_INSMOD;
1173
1174 static struct i2c_driver aic3x_i2c_driver;
1175 static struct i2c_client client_template;
1176
1177 /*
1178  * If the i2c layer weren't so broken, we could pass this kind of data
1179  * around
1180  */
1181 static int aic3x_codec_probe(struct i2c_adapter *adap, int addr, int kind)
1182 {
1183         struct snd_soc_device *socdev = aic3x_socdev;
1184         struct aic3x_setup_data *setup = socdev->codec_data;
1185         struct snd_soc_codec *codec = socdev->codec;
1186         struct i2c_client *i2c;
1187         int ret;
1188
1189         if (addr != setup->i2c_address)
1190                 return -ENODEV;
1191
1192         client_template.adapter = adap;
1193         client_template.addr = addr;
1194
1195         i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL);
1196         if (i2c == NULL) {
1197                 kfree(codec);
1198                 return -ENOMEM;
1199         }
1200         i2c_set_clientdata(i2c, codec);
1201         codec->control_data = i2c;
1202
1203         ret = i2c_attach_client(i2c);
1204         if (ret < 0) {
1205                 printk(KERN_ERR "aic3x: failed to attach codec at addr %x\n",
1206                        addr);
1207                 goto err;
1208         }
1209
1210         ret = aic3x_init(socdev);
1211         if (ret < 0) {
1212                 printk(KERN_ERR "aic3x: failed to initialise AIC3X\n");
1213                 goto err;
1214         }
1215         return ret;
1216
1217 err:
1218         kfree(codec);
1219         kfree(i2c);
1220         return ret;
1221 }
1222
1223 static int aic3x_i2c_detach(struct i2c_client *client)
1224 {
1225         struct snd_soc_codec *codec = i2c_get_clientdata(client);
1226         i2c_detach_client(client);
1227         kfree(codec->reg_cache);
1228         kfree(client);
1229         return 0;
1230 }
1231
1232 static int aic3x_i2c_attach(struct i2c_adapter *adap)
1233 {
1234         return i2c_probe(adap, &addr_data, aic3x_codec_probe);
1235 }
1236
1237 /* machine i2c codec control layer */
1238 static struct i2c_driver aic3x_i2c_driver = {
1239         .driver = {
1240                 .name = "aic3x I2C Codec",
1241                 .owner = THIS_MODULE,
1242         },
1243         .attach_adapter = aic3x_i2c_attach,
1244         .detach_client = aic3x_i2c_detach,
1245 };
1246
1247 static struct i2c_client client_template = {
1248         .name = "AIC3X",
1249         .driver = &aic3x_i2c_driver,
1250 };
1251
1252 static int aic3x_i2c_read(struct i2c_client *client, u8 *value, int len)
1253 {
1254         value[0] = i2c_smbus_read_byte_data(client, value[0]);
1255         return (len == 1);
1256 }
1257 #endif
1258
1259 static int aic3x_probe(struct platform_device *pdev)
1260 {
1261         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1262         struct aic3x_setup_data *setup;
1263         struct snd_soc_codec *codec;
1264         struct aic3x_priv *aic3x;
1265         int ret = 0;
1266
1267         printk(KERN_INFO "AIC3X Audio Codec %s\n", AIC3X_VERSION);
1268
1269         setup = socdev->codec_data;
1270         codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
1271         if (codec == NULL)
1272                 return -ENOMEM;
1273
1274         aic3x = kzalloc(sizeof(struct aic3x_priv), GFP_KERNEL);
1275         if (aic3x == NULL) {
1276                 kfree(codec);
1277                 return -ENOMEM;
1278         }
1279
1280         codec->private_data = aic3x;
1281         socdev->codec = codec;
1282         mutex_init(&codec->mutex);
1283         INIT_LIST_HEAD(&codec->dapm_widgets);
1284         INIT_LIST_HEAD(&codec->dapm_paths);
1285
1286         aic3x_socdev = socdev;
1287 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1288         if (setup->i2c_address) {
1289                 normal_i2c[0] = setup->i2c_address;
1290                 codec->hw_write = (hw_write_t) i2c_master_send;
1291                 codec->hw_read = (hw_read_t) aic3x_i2c_read;
1292                 ret = i2c_add_driver(&aic3x_i2c_driver);
1293                 if (ret != 0)
1294                         printk(KERN_ERR "can't add i2c driver");
1295         }
1296 #else
1297         /* Add other interfaces here */
1298 #endif
1299         return ret;
1300 }
1301
1302 static int aic3x_remove(struct platform_device *pdev)
1303 {
1304         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1305         struct snd_soc_codec *codec = socdev->codec;
1306
1307         /* power down chip */
1308         if (codec->control_data)
1309                 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
1310
1311         snd_soc_free_pcms(socdev);
1312         snd_soc_dapm_free(socdev);
1313 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1314         i2c_del_driver(&aic3x_i2c_driver);
1315 #endif
1316         kfree(codec->private_data);
1317         kfree(codec);
1318
1319         return 0;
1320 }
1321
1322 struct snd_soc_codec_device soc_codec_dev_aic3x = {
1323         .probe = aic3x_probe,
1324         .remove = aic3x_remove,
1325         .suspend = aic3x_suspend,
1326         .resume = aic3x_resume,
1327 };
1328 EXPORT_SYMBOL_GPL(soc_codec_dev_aic3x);
1329
1330 MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver");
1331 MODULE_AUTHOR("Vladimir Barinov");
1332 MODULE_LICENSE("GPL");