blob: 6b74ad808a09aeac426d1e5b4dff172786d1e33b [file] [log] [blame]
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001/*
2 * ALSA SoC TLV320AIC3X codec driver
3 *
Vladimir Barinovd6b52032008-09-29 23:14:11 +04004 * Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
Vladimir Barinov44d0a872007-11-14 17:07:17 +01005 * 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
Liam Girdwooda5302182008-07-07 13:35:17 +010032 * snd_soc_dapm_disable_pin(codec, "MONO_LOUT"), etc.
Vladimir Barinov44d0a872007-11-14 17:07:17 +010033 */
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>
Vladimir Barinov44d0a872007-11-14 17:07:17 +010042#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>
Jarkko Nikula7565fc32009-02-09 14:27:07 +020048#include <sound/tlv.h>
Vladimir Barinov44d0a872007-11-14 17:07:17 +010049
50#include "tlv320aic3x.h"
51
Vladimir Barinov44d0a872007-11-14 17:07:17 +010052/* codec private data */
53struct aic3x_priv {
Ben Dookscb3826f2009-08-20 22:50:41 +010054 struct snd_soc_codec codec;
Vladimir Barinov44d0a872007-11-14 17:07:17 +010055 unsigned int sysclk;
56 int master;
57};
58
59/*
60 * AIC3X register cache
61 * We can't read the AIC3X register space when we are
62 * using 2 wire for device control, so we cache them instead.
63 * There is no point in caching the reset register
64 */
65static const u8 aic3x_reg[AIC3X_CACHEREGNUM] = {
66 0x00, 0x00, 0x00, 0x10, /* 0 */
67 0x04, 0x00, 0x00, 0x00, /* 4 */
68 0x00, 0x00, 0x00, 0x01, /* 8 */
69 0x00, 0x00, 0x00, 0x80, /* 12 */
70 0x80, 0xff, 0xff, 0x78, /* 16 */
71 0x78, 0x78, 0x78, 0x78, /* 20 */
72 0x78, 0x00, 0x00, 0xfe, /* 24 */
73 0x00, 0x00, 0xfe, 0x00, /* 28 */
74 0x18, 0x18, 0x00, 0x00, /* 32 */
75 0x00, 0x00, 0x00, 0x00, /* 36 */
76 0x00, 0x00, 0x00, 0x80, /* 40 */
77 0x80, 0x00, 0x00, 0x00, /* 44 */
78 0x00, 0x00, 0x00, 0x04, /* 48 */
79 0x00, 0x00, 0x00, 0x00, /* 52 */
80 0x00, 0x00, 0x04, 0x00, /* 56 */
81 0x00, 0x00, 0x00, 0x00, /* 60 */
82 0x00, 0x04, 0x00, 0x00, /* 64 */
83 0x00, 0x00, 0x00, 0x00, /* 68 */
84 0x04, 0x00, 0x00, 0x00, /* 72 */
85 0x00, 0x00, 0x00, 0x00, /* 76 */
86 0x00, 0x00, 0x00, 0x00, /* 80 */
87 0x00, 0x00, 0x00, 0x00, /* 84 */
88 0x00, 0x00, 0x00, 0x00, /* 88 */
89 0x00, 0x00, 0x00, 0x00, /* 92 */
90 0x00, 0x00, 0x00, 0x00, /* 96 */
91 0x00, 0x00, 0x02, /* 100 */
92};
93
94/*
95 * read aic3x register cache
96 */
97static inline unsigned int aic3x_read_reg_cache(struct snd_soc_codec *codec,
98 unsigned int reg)
99{
100 u8 *cache = codec->reg_cache;
101 if (reg >= AIC3X_CACHEREGNUM)
102 return -1;
103 return cache[reg];
104}
105
106/*
107 * write aic3x register cache
108 */
109static inline void aic3x_write_reg_cache(struct snd_soc_codec *codec,
110 u8 reg, u8 value)
111{
112 u8 *cache = codec->reg_cache;
113 if (reg >= AIC3X_CACHEREGNUM)
114 return;
115 cache[reg] = value;
116}
117
118/*
119 * write to the aic3x register space
120 */
121static int aic3x_write(struct snd_soc_codec *codec, unsigned int reg,
122 unsigned int value)
123{
124 u8 data[2];
125
126 /* data is
127 * D15..D8 aic3x register offset
128 * D7...D0 register data
129 */
130 data[0] = reg & 0xff;
131 data[1] = value & 0xff;
132
133 aic3x_write_reg_cache(codec, data[0], data[1]);
134 if (codec->hw_write(codec->control_data, data, 2) == 2)
135 return 0;
136 else
137 return -EIO;
138}
139
Daniel Mack54e7e612008-04-30 16:20:52 +0200140/*
141 * read from the aic3x register space
142 */
143static int aic3x_read(struct snd_soc_codec *codec, unsigned int reg,
144 u8 *value)
145{
146 *value = reg & 0xff;
Mark Brown5f345342009-07-05 17:35:28 +0100147
148 value[0] = i2c_smbus_read_byte_data(codec->control_data, value[0]);
Daniel Mack54e7e612008-04-30 16:20:52 +0200149
150 aic3x_write_reg_cache(codec, reg, *value);
151 return 0;
152}
153
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100154#define SOC_DAPM_SINGLE_AIC3X(xname, reg, shift, mask, invert) \
155{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
156 .info = snd_soc_info_volsw, \
157 .get = snd_soc_dapm_get_volsw, .put = snd_soc_dapm_put_volsw_aic3x, \
158 .private_value = SOC_SINGLE_VALUE(reg, shift, mask, invert) }
159
160/*
161 * All input lines are connected when !0xf and disconnected with 0xf bit field,
162 * so we have to use specific dapm_put call for input mixer
163 */
164static int snd_soc_dapm_put_volsw_aic3x(struct snd_kcontrol *kcontrol,
165 struct snd_ctl_elem_value *ucontrol)
166{
167 struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
Eero Nurkkala4453dba2009-02-06 12:01:04 +0200168 struct soc_mixer_control *mc =
169 (struct soc_mixer_control *)kcontrol->private_value;
170 unsigned int reg = mc->reg;
171 unsigned int shift = mc->shift;
172 int max = mc->max;
173 unsigned int mask = (1 << fls(max)) - 1;
174 unsigned int invert = mc->invert;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100175 unsigned short val, val_mask;
176 int ret;
177 struct snd_soc_dapm_path *path;
178 int found = 0;
179
180 val = (ucontrol->value.integer.value[0] & mask);
181
182 mask = 0xf;
183 if (val)
184 val = mask;
185
186 if (invert)
187 val = mask - val;
188 val_mask = mask << shift;
189 val = val << shift;
190
191 mutex_lock(&widget->codec->mutex);
192
193 if (snd_soc_test_bits(widget->codec, reg, val_mask, val)) {
194 /* find dapm widget path assoc with kcontrol */
195 list_for_each_entry(path, &widget->codec->dapm_paths, list) {
196 if (path->kcontrol != kcontrol)
197 continue;
198
199 /* found, now check type */
200 found = 1;
201 if (val)
202 /* new connection */
203 path->connect = invert ? 0 : 1;
204 else
205 /* old connection must be powered down */
206 path->connect = invert ? 1 : 0;
207 break;
208 }
209
210 if (found)
Liam Girdwooda5302182008-07-07 13:35:17 +0100211 snd_soc_dapm_sync(widget->codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100212 }
213
214 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
215
216 mutex_unlock(&widget->codec->mutex);
217 return ret;
218}
219
220static const char *aic3x_left_dac_mux[] = { "DAC_L1", "DAC_L3", "DAC_L2" };
221static const char *aic3x_right_dac_mux[] = { "DAC_R1", "DAC_R3", "DAC_R2" };
222static const char *aic3x_left_hpcom_mux[] =
223 { "differential of HPLOUT", "constant VCM", "single-ended" };
224static const char *aic3x_right_hpcom_mux[] =
225 { "differential of HPROUT", "constant VCM", "single-ended",
226 "differential of HPLCOM", "external feedback" };
227static const char *aic3x_linein_mode_mux[] = { "single-ended", "differential" };
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300228static const char *aic3x_adc_hpf[] =
229 { "Disabled", "0.0045xFs", "0.0125xFs", "0.025xFs" };
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100230
231#define LDAC_ENUM 0
232#define RDAC_ENUM 1
233#define LHPCOM_ENUM 2
234#define RHPCOM_ENUM 3
235#define LINE1L_ENUM 4
236#define LINE1R_ENUM 5
237#define LINE2L_ENUM 6
238#define LINE2R_ENUM 7
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300239#define ADC_HPF_ENUM 8
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100240
241static const struct soc_enum aic3x_enum[] = {
242 SOC_ENUM_SINGLE(DAC_LINE_MUX, 6, 3, aic3x_left_dac_mux),
243 SOC_ENUM_SINGLE(DAC_LINE_MUX, 4, 3, aic3x_right_dac_mux),
244 SOC_ENUM_SINGLE(HPLCOM_CFG, 4, 3, aic3x_left_hpcom_mux),
245 SOC_ENUM_SINGLE(HPRCOM_CFG, 3, 5, aic3x_right_hpcom_mux),
246 SOC_ENUM_SINGLE(LINE1L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
247 SOC_ENUM_SINGLE(LINE1R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
248 SOC_ENUM_SINGLE(LINE2L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
249 SOC_ENUM_SINGLE(LINE2R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300250 SOC_ENUM_DOUBLE(AIC3X_CODEC_DFILT_CTRL, 6, 4, 4, aic3x_adc_hpf),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100251};
252
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200253/*
254 * DAC digital volumes. From -63.5 to 0 dB in 0.5 dB steps
255 */
256static DECLARE_TLV_DB_SCALE(dac_tlv, -6350, 50, 0);
257/* ADC PGA gain volumes. From 0 to 59.5 dB in 0.5 dB steps */
258static DECLARE_TLV_DB_SCALE(adc_tlv, 0, 50, 0);
259/*
260 * Output stage volumes. From -78.3 to 0 dB. Muted below -78.3 dB.
261 * Step size is approximately 0.5 dB over most of the scale but increasing
262 * near the very low levels.
263 * Define dB scale so that it is mostly correct for range about -55 to 0 dB
264 * but having increasing dB difference below that (and where it doesn't count
265 * so much). This setting shows -50 dB (actual is -50.3 dB) for register
266 * value 100 and -58.5 dB (actual is -78.3 dB) for register value 117.
267 */
268static DECLARE_TLV_DB_SCALE(output_stage_tlv, -5900, 50, 1);
269
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100270static const struct snd_kcontrol_new aic3x_snd_controls[] = {
271 /* Output */
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200272 SOC_DOUBLE_R_TLV("PCM Playback Volume",
273 LDAC_VOL, RDAC_VOL, 0, 0x7f, 1, dac_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100274
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200275 SOC_DOUBLE_R_TLV("Line DAC Playback Volume",
276 DACL1_2_LLOPM_VOL, DACR1_2_RLOPM_VOL,
277 0, 118, 1, output_stage_tlv),
Daniel Mack28a1d862008-12-05 17:31:00 +0100278 SOC_SINGLE("LineL Playback Switch", LLOPM_CTRL, 3, 0x01, 0),
279 SOC_SINGLE("LineR Playback Switch", RLOPM_CTRL, 3, 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200280 SOC_DOUBLE_R_TLV("LineL DAC Playback Volume",
281 DACL1_2_LLOPM_VOL, DACR1_2_LLOPM_VOL,
282 0, 118, 1, output_stage_tlv),
283 SOC_SINGLE_TLV("LineL Left PGA Bypass Playback Volume",
284 PGAL_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
285 SOC_SINGLE_TLV("LineR Right PGA Bypass Playback Volume",
286 PGAR_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
287 SOC_DOUBLE_R_TLV("LineL Line2 Bypass Playback Volume",
288 LINE2L_2_LLOPM_VOL, LINE2R_2_LLOPM_VOL,
289 0, 118, 1, output_stage_tlv),
290 SOC_DOUBLE_R_TLV("LineR Line2 Bypass Playback Volume",
291 LINE2L_2_RLOPM_VOL, LINE2R_2_RLOPM_VOL,
292 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100293
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200294 SOC_DOUBLE_R_TLV("Mono DAC Playback Volume",
295 DACL1_2_MONOLOPM_VOL, DACR1_2_MONOLOPM_VOL,
296 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100297 SOC_SINGLE("Mono DAC Playback Switch", MONOLOPM_CTRL, 3, 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200298 SOC_DOUBLE_R_TLV("Mono PGA Bypass Playback Volume",
299 PGAL_2_MONOLOPM_VOL, PGAR_2_MONOLOPM_VOL,
300 0, 118, 1, output_stage_tlv),
301 SOC_DOUBLE_R_TLV("Mono Line2 Bypass Playback Volume",
302 LINE2L_2_MONOLOPM_VOL, LINE2R_2_MONOLOPM_VOL,
303 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100304
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200305 SOC_DOUBLE_R_TLV("HP DAC Playback Volume",
306 DACL1_2_HPLOUT_VOL, DACR1_2_HPROUT_VOL,
307 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100308 SOC_DOUBLE_R("HP DAC Playback Switch", HPLOUT_CTRL, HPROUT_CTRL, 3,
309 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200310 SOC_DOUBLE_R_TLV("HP Right PGA Bypass Playback Volume",
311 PGAR_2_HPLOUT_VOL, PGAR_2_HPROUT_VOL,
312 0, 118, 1, output_stage_tlv),
313 SOC_SINGLE_TLV("HPL PGA Bypass Playback Volume",
314 PGAL_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
315 SOC_SINGLE_TLV("HPR PGA Bypass Playback Volume",
316 PGAL_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
317 SOC_DOUBLE_R_TLV("HP Line2 Bypass Playback Volume",
318 LINE2L_2_HPLOUT_VOL, LINE2R_2_HPROUT_VOL,
319 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100320
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200321 SOC_DOUBLE_R_TLV("HPCOM DAC Playback Volume",
322 DACL1_2_HPLCOM_VOL, DACR1_2_HPRCOM_VOL,
323 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100324 SOC_DOUBLE_R("HPCOM DAC Playback Switch", HPLCOM_CTRL, HPRCOM_CTRL, 3,
325 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200326 SOC_SINGLE_TLV("HPLCOM PGA Bypass Playback Volume",
327 PGAL_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
328 SOC_SINGLE_TLV("HPRCOM PGA Bypass Playback Volume",
329 PGAL_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
330 SOC_DOUBLE_R_TLV("HPCOM Line2 Bypass Playback Volume",
331 LINE2L_2_HPLCOM_VOL, LINE2R_2_HPRCOM_VOL,
332 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100333
334 /*
335 * Note: enable Automatic input Gain Controller with care. It can
336 * adjust PGA to max value when ADC is on and will never go back.
337 */
338 SOC_DOUBLE_R("AGC Switch", LAGC_CTRL_A, RAGC_CTRL_A, 7, 0x01, 0),
339
340 /* Input */
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200341 SOC_DOUBLE_R_TLV("PGA Capture Volume", LADC_VOL, RADC_VOL,
342 0, 119, 0, adc_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100343 SOC_DOUBLE_R("PGA Capture Switch", LADC_VOL, RADC_VOL, 7, 0x01, 1),
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300344
345 SOC_ENUM("ADC HPF Cut-off", aic3x_enum[ADC_HPF_ENUM]),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100346};
347
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100348/* Left DAC Mux */
349static const struct snd_kcontrol_new aic3x_left_dac_mux_controls =
350SOC_DAPM_ENUM("Route", aic3x_enum[LDAC_ENUM]);
351
352/* Right DAC Mux */
353static const struct snd_kcontrol_new aic3x_right_dac_mux_controls =
354SOC_DAPM_ENUM("Route", aic3x_enum[RDAC_ENUM]);
355
356/* Left HPCOM Mux */
357static const struct snd_kcontrol_new aic3x_left_hpcom_mux_controls =
358SOC_DAPM_ENUM("Route", aic3x_enum[LHPCOM_ENUM]);
359
360/* Right HPCOM Mux */
361static const struct snd_kcontrol_new aic3x_right_hpcom_mux_controls =
362SOC_DAPM_ENUM("Route", aic3x_enum[RHPCOM_ENUM]);
363
364/* Left DAC_L1 Mixer */
365static const struct snd_kcontrol_new aic3x_left_dac_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100366 SOC_DAPM_SINGLE("LineL Switch", DACL1_2_LLOPM_VOL, 7, 1, 0),
367 SOC_DAPM_SINGLE("LineR Switch", DACL1_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100368 SOC_DAPM_SINGLE("Mono Switch", DACL1_2_MONOLOPM_VOL, 7, 1, 0),
369 SOC_DAPM_SINGLE("HP Switch", DACL1_2_HPLOUT_VOL, 7, 1, 0),
370 SOC_DAPM_SINGLE("HPCOM Switch", DACL1_2_HPLCOM_VOL, 7, 1, 0),
371};
372
373/* Right DAC_R1 Mixer */
374static const struct snd_kcontrol_new aic3x_right_dac_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100375 SOC_DAPM_SINGLE("LineL Switch", DACR1_2_LLOPM_VOL, 7, 1, 0),
376 SOC_DAPM_SINGLE("LineR Switch", DACR1_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100377 SOC_DAPM_SINGLE("Mono Switch", DACR1_2_MONOLOPM_VOL, 7, 1, 0),
378 SOC_DAPM_SINGLE("HP Switch", DACR1_2_HPROUT_VOL, 7, 1, 0),
379 SOC_DAPM_SINGLE("HPCOM Switch", DACR1_2_HPRCOM_VOL, 7, 1, 0),
380};
381
382/* Left PGA Mixer */
383static const struct snd_kcontrol_new aic3x_left_pga_mixer_controls[] = {
384 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_LADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100385 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_LADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100386 SOC_DAPM_SINGLE_AIC3X("Line2L Switch", LINE2L_2_LADC_CTRL, 3, 1, 1),
387 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_LADC_CTRL, 4, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100388 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_LADC_CTRL, 0, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100389};
390
391/* Right PGA Mixer */
392static const struct snd_kcontrol_new aic3x_right_pga_mixer_controls[] = {
393 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100394 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_RADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100395 SOC_DAPM_SINGLE_AIC3X("Line2R Switch", LINE2R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100396 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_RADC_CTRL, 4, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100397 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_RADC_CTRL, 0, 1, 1),
398};
399
400/* Left Line1 Mux */
401static const struct snd_kcontrol_new aic3x_left_line1_mux_controls =
402SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_ENUM]);
403
404/* Right Line1 Mux */
405static const struct snd_kcontrol_new aic3x_right_line1_mux_controls =
406SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_ENUM]);
407
408/* Left Line2 Mux */
409static const struct snd_kcontrol_new aic3x_left_line2_mux_controls =
410SOC_DAPM_ENUM("Route", aic3x_enum[LINE2L_ENUM]);
411
412/* Right Line2 Mux */
413static const struct snd_kcontrol_new aic3x_right_line2_mux_controls =
414SOC_DAPM_ENUM("Route", aic3x_enum[LINE2R_ENUM]);
415
416/* Left PGA Bypass Mixer */
417static const struct snd_kcontrol_new aic3x_left_pga_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100418 SOC_DAPM_SINGLE("LineL Switch", PGAL_2_LLOPM_VOL, 7, 1, 0),
419 SOC_DAPM_SINGLE("LineR Switch", PGAL_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100420 SOC_DAPM_SINGLE("Mono Switch", PGAL_2_MONOLOPM_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100421 SOC_DAPM_SINGLE("HPL Switch", PGAL_2_HPLOUT_VOL, 7, 1, 0),
422 SOC_DAPM_SINGLE("HPR Switch", PGAL_2_HPROUT_VOL, 7, 1, 0),
423 SOC_DAPM_SINGLE("HPLCOM Switch", PGAL_2_HPLCOM_VOL, 7, 1, 0),
424 SOC_DAPM_SINGLE("HPRCOM Switch", PGAL_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100425};
426
427/* Right PGA Bypass Mixer */
428static const struct snd_kcontrol_new aic3x_right_pga_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100429 SOC_DAPM_SINGLE("LineL Switch", PGAR_2_LLOPM_VOL, 7, 1, 0),
430 SOC_DAPM_SINGLE("LineR Switch", PGAR_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100431 SOC_DAPM_SINGLE("Mono Switch", PGAR_2_MONOLOPM_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100432 SOC_DAPM_SINGLE("HPL Switch", PGAR_2_HPLOUT_VOL, 7, 1, 0),
433 SOC_DAPM_SINGLE("HPR Switch", PGAR_2_HPROUT_VOL, 7, 1, 0),
434 SOC_DAPM_SINGLE("HPLCOM Switch", PGAR_2_HPLCOM_VOL, 7, 1, 0),
435 SOC_DAPM_SINGLE("HPRCOM Switch", PGAR_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100436};
437
438/* Left Line2 Bypass Mixer */
439static const struct snd_kcontrol_new aic3x_left_line2_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100440 SOC_DAPM_SINGLE("LineL Switch", LINE2L_2_LLOPM_VOL, 7, 1, 0),
441 SOC_DAPM_SINGLE("LineR Switch", LINE2L_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100442 SOC_DAPM_SINGLE("Mono Switch", LINE2L_2_MONOLOPM_VOL, 7, 1, 0),
443 SOC_DAPM_SINGLE("HP Switch", LINE2L_2_HPLOUT_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100444 SOC_DAPM_SINGLE("HPLCOM Switch", LINE2L_2_HPLCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100445};
446
447/* Right Line2 Bypass Mixer */
448static const struct snd_kcontrol_new aic3x_right_line2_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100449 SOC_DAPM_SINGLE("LineL Switch", LINE2R_2_LLOPM_VOL, 7, 1, 0),
450 SOC_DAPM_SINGLE("LineR Switch", LINE2R_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100451 SOC_DAPM_SINGLE("Mono Switch", LINE2R_2_MONOLOPM_VOL, 7, 1, 0),
452 SOC_DAPM_SINGLE("HP Switch", LINE2R_2_HPROUT_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100453 SOC_DAPM_SINGLE("HPRCOM Switch", LINE2R_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100454};
455
456static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
457 /* Left DAC to Left Outputs */
458 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", DAC_PWR, 7, 0),
459 SND_SOC_DAPM_MUX("Left DAC Mux", SND_SOC_NOPM, 0, 0,
460 &aic3x_left_dac_mux_controls),
461 SND_SOC_DAPM_MIXER("Left DAC_L1 Mixer", SND_SOC_NOPM, 0, 0,
462 &aic3x_left_dac_mixer_controls[0],
463 ARRAY_SIZE(aic3x_left_dac_mixer_controls)),
464 SND_SOC_DAPM_MUX("Left HPCOM Mux", SND_SOC_NOPM, 0, 0,
465 &aic3x_left_hpcom_mux_controls),
466 SND_SOC_DAPM_PGA("Left Line Out", LLOPM_CTRL, 0, 0, NULL, 0),
467 SND_SOC_DAPM_PGA("Left HP Out", HPLOUT_CTRL, 0, 0, NULL, 0),
468 SND_SOC_DAPM_PGA("Left HP Com", HPLCOM_CTRL, 0, 0, NULL, 0),
469
470 /* Right DAC to Right Outputs */
471 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", DAC_PWR, 6, 0),
472 SND_SOC_DAPM_MUX("Right DAC Mux", SND_SOC_NOPM, 0, 0,
473 &aic3x_right_dac_mux_controls),
474 SND_SOC_DAPM_MIXER("Right DAC_R1 Mixer", SND_SOC_NOPM, 0, 0,
475 &aic3x_right_dac_mixer_controls[0],
476 ARRAY_SIZE(aic3x_right_dac_mixer_controls)),
477 SND_SOC_DAPM_MUX("Right HPCOM Mux", SND_SOC_NOPM, 0, 0,
478 &aic3x_right_hpcom_mux_controls),
479 SND_SOC_DAPM_PGA("Right Line Out", RLOPM_CTRL, 0, 0, NULL, 0),
480 SND_SOC_DAPM_PGA("Right HP Out", HPROUT_CTRL, 0, 0, NULL, 0),
481 SND_SOC_DAPM_PGA("Right HP Com", HPRCOM_CTRL, 0, 0, NULL, 0),
482
483 /* Mono Output */
484 SND_SOC_DAPM_PGA("Mono Out", MONOLOPM_CTRL, 0, 0, NULL, 0),
485
Daniel Mack54f01912008-11-26 17:47:36 +0100486 /* Inputs to Left ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100487 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", LINE1L_2_LADC_CTRL, 2, 0),
488 SND_SOC_DAPM_MIXER("Left PGA Mixer", SND_SOC_NOPM, 0, 0,
489 &aic3x_left_pga_mixer_controls[0],
490 ARRAY_SIZE(aic3x_left_pga_mixer_controls)),
491 SND_SOC_DAPM_MUX("Left Line1L Mux", SND_SOC_NOPM, 0, 0,
492 &aic3x_left_line1_mux_controls),
Daniel Mack54f01912008-11-26 17:47:36 +0100493 SND_SOC_DAPM_MUX("Left Line1R Mux", SND_SOC_NOPM, 0, 0,
494 &aic3x_left_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100495 SND_SOC_DAPM_MUX("Left Line2L Mux", SND_SOC_NOPM, 0, 0,
496 &aic3x_left_line2_mux_controls),
497
Daniel Mack54f01912008-11-26 17:47:36 +0100498 /* Inputs to Right ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100499 SND_SOC_DAPM_ADC("Right ADC", "Right Capture",
500 LINE1R_2_RADC_CTRL, 2, 0),
501 SND_SOC_DAPM_MIXER("Right PGA Mixer", SND_SOC_NOPM, 0, 0,
502 &aic3x_right_pga_mixer_controls[0],
503 ARRAY_SIZE(aic3x_right_pga_mixer_controls)),
Daniel Mack54f01912008-11-26 17:47:36 +0100504 SND_SOC_DAPM_MUX("Right Line1L Mux", SND_SOC_NOPM, 0, 0,
505 &aic3x_right_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100506 SND_SOC_DAPM_MUX("Right Line1R Mux", SND_SOC_NOPM, 0, 0,
507 &aic3x_right_line1_mux_controls),
508 SND_SOC_DAPM_MUX("Right Line2R Mux", SND_SOC_NOPM, 0, 0,
509 &aic3x_right_line2_mux_controls),
510
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300511 /*
512 * Not a real mic bias widget but similar function. This is for dynamic
513 * control of GPIO1 digital mic modulator clock output function when
514 * using digital mic.
515 */
516 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "GPIO1 dmic modclk",
517 AIC3X_GPIO1_REG, 4, 0xf,
518 AIC3X_GPIO1_FUNC_DIGITAL_MIC_MODCLK,
519 AIC3X_GPIO1_FUNC_DISABLED),
520
521 /*
522 * Also similar function like mic bias. Selects digital mic with
523 * configurable oversampling rate instead of ADC converter.
524 */
525 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 128",
526 AIC3X_ASD_INTF_CTRLA, 0, 3, 1, 0),
527 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 64",
528 AIC3X_ASD_INTF_CTRLA, 0, 3, 2, 0),
529 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 32",
530 AIC3X_ASD_INTF_CTRLA, 0, 3, 3, 0),
531
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100532 /* Mic Bias */
Jarkko Nikula0bd72a32008-06-25 14:42:08 +0300533 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2V",
534 MICBIAS_CTRL, 6, 3, 1, 0),
535 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2.5V",
536 MICBIAS_CTRL, 6, 3, 2, 0),
537 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias AVDD",
538 MICBIAS_CTRL, 6, 3, 3, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100539
540 /* Left PGA to Left Output bypass */
541 SND_SOC_DAPM_MIXER("Left PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
542 &aic3x_left_pga_bp_mixer_controls[0],
543 ARRAY_SIZE(aic3x_left_pga_bp_mixer_controls)),
544
545 /* Right PGA to Right Output bypass */
546 SND_SOC_DAPM_MIXER("Right PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
547 &aic3x_right_pga_bp_mixer_controls[0],
548 ARRAY_SIZE(aic3x_right_pga_bp_mixer_controls)),
549
550 /* Left Line2 to Left Output bypass */
551 SND_SOC_DAPM_MIXER("Left Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
552 &aic3x_left_line2_bp_mixer_controls[0],
553 ARRAY_SIZE(aic3x_left_line2_bp_mixer_controls)),
554
555 /* Right Line2 to Right Output bypass */
556 SND_SOC_DAPM_MIXER("Right Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
557 &aic3x_right_line2_bp_mixer_controls[0],
558 ARRAY_SIZE(aic3x_right_line2_bp_mixer_controls)),
559
560 SND_SOC_DAPM_OUTPUT("LLOUT"),
561 SND_SOC_DAPM_OUTPUT("RLOUT"),
562 SND_SOC_DAPM_OUTPUT("MONO_LOUT"),
563 SND_SOC_DAPM_OUTPUT("HPLOUT"),
564 SND_SOC_DAPM_OUTPUT("HPROUT"),
565 SND_SOC_DAPM_OUTPUT("HPLCOM"),
566 SND_SOC_DAPM_OUTPUT("HPRCOM"),
567
568 SND_SOC_DAPM_INPUT("MIC3L"),
569 SND_SOC_DAPM_INPUT("MIC3R"),
570 SND_SOC_DAPM_INPUT("LINE1L"),
571 SND_SOC_DAPM_INPUT("LINE1R"),
572 SND_SOC_DAPM_INPUT("LINE2L"),
573 SND_SOC_DAPM_INPUT("LINE2R"),
574};
575
Mark Brownd0cc0d32008-05-13 14:55:22 +0200576static const struct snd_soc_dapm_route intercon[] = {
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100577 /* Left Output */
578 {"Left DAC Mux", "DAC_L1", "Left DAC"},
579 {"Left DAC Mux", "DAC_L2", "Left DAC"},
580 {"Left DAC Mux", "DAC_L3", "Left DAC"},
581
Daniel Mack54f01912008-11-26 17:47:36 +0100582 {"Left DAC_L1 Mixer", "LineL Switch", "Left DAC Mux"},
583 {"Left DAC_L1 Mixer", "LineR Switch", "Left DAC Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100584 {"Left DAC_L1 Mixer", "Mono Switch", "Left DAC Mux"},
585 {"Left DAC_L1 Mixer", "HP Switch", "Left DAC Mux"},
586 {"Left DAC_L1 Mixer", "HPCOM Switch", "Left DAC Mux"},
587 {"Left Line Out", NULL, "Left DAC Mux"},
588 {"Left HP Out", NULL, "Left DAC Mux"},
589
590 {"Left HPCOM Mux", "differential of HPLOUT", "Left DAC_L1 Mixer"},
591 {"Left HPCOM Mux", "constant VCM", "Left DAC_L1 Mixer"},
592 {"Left HPCOM Mux", "single-ended", "Left DAC_L1 Mixer"},
593
594 {"Left Line Out", NULL, "Left DAC_L1 Mixer"},
595 {"Mono Out", NULL, "Left DAC_L1 Mixer"},
596 {"Left HP Out", NULL, "Left DAC_L1 Mixer"},
597 {"Left HP Com", NULL, "Left HPCOM Mux"},
598
599 {"LLOUT", NULL, "Left Line Out"},
600 {"LLOUT", NULL, "Left Line Out"},
601 {"HPLOUT", NULL, "Left HP Out"},
602 {"HPLCOM", NULL, "Left HP Com"},
603
604 /* Right Output */
605 {"Right DAC Mux", "DAC_R1", "Right DAC"},
606 {"Right DAC Mux", "DAC_R2", "Right DAC"},
607 {"Right DAC Mux", "DAC_R3", "Right DAC"},
608
Daniel Mack54f01912008-11-26 17:47:36 +0100609 {"Right DAC_R1 Mixer", "LineL Switch", "Right DAC Mux"},
610 {"Right DAC_R1 Mixer", "LineR Switch", "Right DAC Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100611 {"Right DAC_R1 Mixer", "Mono Switch", "Right DAC Mux"},
612 {"Right DAC_R1 Mixer", "HP Switch", "Right DAC Mux"},
613 {"Right DAC_R1 Mixer", "HPCOM Switch", "Right DAC Mux"},
614 {"Right Line Out", NULL, "Right DAC Mux"},
615 {"Right HP Out", NULL, "Right DAC Mux"},
616
617 {"Right HPCOM Mux", "differential of HPROUT", "Right DAC_R1 Mixer"},
618 {"Right HPCOM Mux", "constant VCM", "Right DAC_R1 Mixer"},
619 {"Right HPCOM Mux", "single-ended", "Right DAC_R1 Mixer"},
620 {"Right HPCOM Mux", "differential of HPLCOM", "Right DAC_R1 Mixer"},
621 {"Right HPCOM Mux", "external feedback", "Right DAC_R1 Mixer"},
622
623 {"Right Line Out", NULL, "Right DAC_R1 Mixer"},
624 {"Mono Out", NULL, "Right DAC_R1 Mixer"},
625 {"Right HP Out", NULL, "Right DAC_R1 Mixer"},
626 {"Right HP Com", NULL, "Right HPCOM Mux"},
627
628 {"RLOUT", NULL, "Right Line Out"},
629 {"RLOUT", NULL, "Right Line Out"},
630 {"HPROUT", NULL, "Right HP Out"},
631 {"HPRCOM", NULL, "Right HP Com"},
632
633 /* Mono Output */
Jarkko Nikula5b006132008-05-09 15:05:41 +0200634 {"MONO_LOUT", NULL, "Mono Out"},
635 {"MONO_LOUT", NULL, "Mono Out"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100636
637 /* Left Input */
638 {"Left Line1L Mux", "single-ended", "LINE1L"},
639 {"Left Line1L Mux", "differential", "LINE1L"},
640
641 {"Left Line2L Mux", "single-ended", "LINE2L"},
642 {"Left Line2L Mux", "differential", "LINE2L"},
643
644 {"Left PGA Mixer", "Line1L Switch", "Left Line1L Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100645 {"Left PGA Mixer", "Line1R Switch", "Left Line1R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100646 {"Left PGA Mixer", "Line2L Switch", "Left Line2L Mux"},
647 {"Left PGA Mixer", "Mic3L Switch", "MIC3L"},
Daniel Mack54f01912008-11-26 17:47:36 +0100648 {"Left PGA Mixer", "Mic3R Switch", "MIC3R"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100649
650 {"Left ADC", NULL, "Left PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300651 {"Left ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100652
653 /* Right Input */
654 {"Right Line1R Mux", "single-ended", "LINE1R"},
655 {"Right Line1R Mux", "differential", "LINE1R"},
656
657 {"Right Line2R Mux", "single-ended", "LINE2R"},
658 {"Right Line2R Mux", "differential", "LINE2R"},
659
Daniel Mack54f01912008-11-26 17:47:36 +0100660 {"Right PGA Mixer", "Line1L Switch", "Right Line1L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100661 {"Right PGA Mixer", "Line1R Switch", "Right Line1R Mux"},
662 {"Right PGA Mixer", "Line2R Switch", "Right Line2R Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100663 {"Right PGA Mixer", "Mic3L Switch", "MIC3L"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100664 {"Right PGA Mixer", "Mic3R Switch", "MIC3R"},
665
666 {"Right ADC", NULL, "Right PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300667 {"Right ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100668
669 /* Left PGA Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100670 {"Left PGA Bypass Mixer", "LineL Switch", "Left PGA Mixer"},
671 {"Left PGA Bypass Mixer", "LineR Switch", "Left PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100672 {"Left PGA Bypass Mixer", "Mono Switch", "Left PGA Mixer"},
Daniel Mack54f01912008-11-26 17:47:36 +0100673 {"Left PGA Bypass Mixer", "HPL Switch", "Left PGA Mixer"},
674 {"Left PGA Bypass Mixer", "HPR Switch", "Left PGA Mixer"},
675 {"Left PGA Bypass Mixer", "HPLCOM Switch", "Left PGA Mixer"},
676 {"Left PGA Bypass Mixer", "HPRCOM Switch", "Left PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100677
678 {"Left HPCOM Mux", "differential of HPLOUT", "Left PGA Bypass Mixer"},
679 {"Left HPCOM Mux", "constant VCM", "Left PGA Bypass Mixer"},
680 {"Left HPCOM Mux", "single-ended", "Left PGA Bypass Mixer"},
681
682 {"Left Line Out", NULL, "Left PGA Bypass Mixer"},
683 {"Mono Out", NULL, "Left PGA Bypass Mixer"},
684 {"Left HP Out", NULL, "Left PGA Bypass Mixer"},
685
686 /* Right PGA Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100687 {"Right PGA Bypass Mixer", "LineL Switch", "Right PGA Mixer"},
688 {"Right PGA Bypass Mixer", "LineR Switch", "Right PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100689 {"Right PGA Bypass Mixer", "Mono Switch", "Right PGA Mixer"},
Daniel Mack54f01912008-11-26 17:47:36 +0100690 {"Right PGA Bypass Mixer", "HPL Switch", "Right PGA Mixer"},
691 {"Right PGA Bypass Mixer", "HPR Switch", "Right PGA Mixer"},
692 {"Right PGA Bypass Mixer", "HPLCOM Switch", "Right PGA Mixer"},
693 {"Right PGA Bypass Mixer", "HPRCOM Switch", "Right PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100694
695 {"Right HPCOM Mux", "differential of HPROUT", "Right PGA Bypass Mixer"},
696 {"Right HPCOM Mux", "constant VCM", "Right PGA Bypass Mixer"},
697 {"Right HPCOM Mux", "single-ended", "Right PGA Bypass Mixer"},
698 {"Right HPCOM Mux", "differential of HPLCOM", "Right PGA Bypass Mixer"},
699 {"Right HPCOM Mux", "external feedback", "Right PGA Bypass Mixer"},
700
701 {"Right Line Out", NULL, "Right PGA Bypass Mixer"},
702 {"Mono Out", NULL, "Right PGA Bypass Mixer"},
703 {"Right HP Out", NULL, "Right PGA Bypass Mixer"},
704
705 /* Left Line2 Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100706 {"Left Line2 Bypass Mixer", "LineL Switch", "Left Line2L Mux"},
707 {"Left Line2 Bypass Mixer", "LineR Switch", "Left Line2L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100708 {"Left Line2 Bypass Mixer", "Mono Switch", "Left Line2L Mux"},
709 {"Left Line2 Bypass Mixer", "HP Switch", "Left Line2L Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100710 {"Left Line2 Bypass Mixer", "HPLCOM Switch", "Left Line2L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100711
712 {"Left HPCOM Mux", "differential of HPLOUT", "Left Line2 Bypass Mixer"},
713 {"Left HPCOM Mux", "constant VCM", "Left Line2 Bypass Mixer"},
714 {"Left HPCOM Mux", "single-ended", "Left Line2 Bypass Mixer"},
715
716 {"Left Line Out", NULL, "Left Line2 Bypass Mixer"},
717 {"Mono Out", NULL, "Left Line2 Bypass Mixer"},
718 {"Left HP Out", NULL, "Left Line2 Bypass Mixer"},
719
720 /* Right Line2 Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100721 {"Right Line2 Bypass Mixer", "LineL Switch", "Right Line2R Mux"},
722 {"Right Line2 Bypass Mixer", "LineR Switch", "Right Line2R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100723 {"Right Line2 Bypass Mixer", "Mono Switch", "Right Line2R Mux"},
724 {"Right Line2 Bypass Mixer", "HP Switch", "Right Line2R Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100725 {"Right Line2 Bypass Mixer", "HPRCOM Switch", "Right Line2R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100726
727 {"Right HPCOM Mux", "differential of HPROUT", "Right Line2 Bypass Mixer"},
728 {"Right HPCOM Mux", "constant VCM", "Right Line2 Bypass Mixer"},
729 {"Right HPCOM Mux", "single-ended", "Right Line2 Bypass Mixer"},
730 {"Right HPCOM Mux", "differential of HPLCOM", "Right Line2 Bypass Mixer"},
731 {"Right HPCOM Mux", "external feedback", "Right Line2 Bypass Mixer"},
732
733 {"Right Line Out", NULL, "Right Line2 Bypass Mixer"},
734 {"Mono Out", NULL, "Right Line2 Bypass Mixer"},
735 {"Right HP Out", NULL, "Right Line2 Bypass Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300736
737 /*
738 * Logical path between digital mic enable and GPIO1 modulator clock
739 * output function
740 */
741 {"GPIO1 dmic modclk", NULL, "DMic Rate 128"},
742 {"GPIO1 dmic modclk", NULL, "DMic Rate 64"},
743 {"GPIO1 dmic modclk", NULL, "DMic Rate 32"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100744};
745
746static int aic3x_add_widgets(struct snd_soc_codec *codec)
747{
Mark Brownd0cc0d32008-05-13 14:55:22 +0200748 snd_soc_dapm_new_controls(codec, aic3x_dapm_widgets,
749 ARRAY_SIZE(aic3x_dapm_widgets));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100750
751 /* set up audio path interconnects */
Mark Brownd0cc0d32008-05-13 14:55:22 +0200752 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100753
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100754 return 0;
755}
756
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100757static int aic3x_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000758 struct snd_pcm_hw_params *params,
759 struct snd_soc_dai *dai)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100760{
761 struct snd_soc_pcm_runtime *rtd = substream->private_data;
762 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown6627a652009-01-23 22:55:23 +0000763 struct snd_soc_codec *codec = socdev->card->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900764 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200765 int codec_clk = 0, bypass_pll = 0, fsref, last_clk = 0;
Peter Meerwald255173b2009-12-14 14:44:56 +0100766 u8 data, j, r, p, pll_q, pll_p = 1, pll_r = 1, pll_j = 1;
767 u16 d, pll_d = 1;
Chaithrika U S06c71282009-07-22 07:45:04 -0400768 u8 reg;
Peter Meerwald255173b2009-12-14 14:44:56 +0100769 int clk;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100770
771 /* select data word length */
772 data =
773 aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & (~(0x3 << 4));
774 switch (params_format(params)) {
775 case SNDRV_PCM_FORMAT_S16_LE:
776 break;
777 case SNDRV_PCM_FORMAT_S20_3LE:
778 data |= (0x01 << 4);
779 break;
780 case SNDRV_PCM_FORMAT_S24_LE:
781 data |= (0x02 << 4);
782 break;
783 case SNDRV_PCM_FORMAT_S32_LE:
784 data |= (0x03 << 4);
785 break;
786 }
787 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, data);
788
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200789 /* Fsref can be 44100 or 48000 */
790 fsref = (params_rate(params) % 11025 == 0) ? 44100 : 48000;
791
792 /* Try to find a value for Q which allows us to bypass the PLL and
793 * generate CODEC_CLK directly. */
794 for (pll_q = 2; pll_q < 18; pll_q++)
795 if (aic3x->sysclk / (128 * pll_q) == fsref) {
796 bypass_pll = 1;
797 break;
798 }
799
800 if (bypass_pll) {
801 pll_q &= 0xf;
802 aic3x_write(codec, AIC3X_PLL_PROGA_REG, pll_q << PLLQ_SHIFT);
803 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_CLKDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400804 /* disable PLL if it is bypassed */
805 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
806 aic3x_write(codec, AIC3X_PLL_PROGA_REG, reg & ~PLL_ENABLE);
807
808 } else {
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200809 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_PLLDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400810 /* enable PLL when it is used */
811 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
812 aic3x_write(codec, AIC3X_PLL_PROGA_REG, reg | PLL_ENABLE);
813 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200814
815 /* Route Left DAC to left channel input and
816 * right DAC to right channel input */
817 data = (LDAC2LCH | RDAC2RCH);
818 data |= (fsref == 44100) ? FSREF_44100 : FSREF_48000;
819 if (params_rate(params) >= 64000)
820 data |= DUAL_RATE_MODE;
821 aic3x_write(codec, AIC3X_CODEC_DATAPATH_REG, data);
822
823 /* codec sample rate select */
824 data = (fsref * 20) / params_rate(params);
825 if (params_rate(params) < 64000)
826 data /= 2;
827 data /= 5;
828 data -= 2;
829 data |= (data << 4);
830 aic3x_write(codec, AIC3X_SAMPLE_RATE_SEL_REG, data);
831
832 if (bypass_pll)
833 return 0;
834
Peter Meerwald255173b2009-12-14 14:44:56 +0100835 /* Use PLL, compute apropriate setup for j, d, r and p, the closest
836 * one wins the game. Try with d==0 first, next with d!=0.
837 * Constraints for j are according to the datasheet.
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200838 * The sysclk is divided by 1000 to prevent integer overflows.
839 */
Peter Meerwald255173b2009-12-14 14:44:56 +0100840
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200841 codec_clk = (2048 * fsref) / (aic3x->sysclk / 1000);
842
843 for (r = 1; r <= 16; r++)
844 for (p = 1; p <= 8; p++) {
Peter Meerwald255173b2009-12-14 14:44:56 +0100845 for (j = 4; j <= 55; j++) {
846 /* This is actually 1000*((j+(d/10000))*r)/p
847 * The term had to be converted to get
848 * rid of the division by 10000; d = 0 here
849 */
Mark Brown5baf8312010-01-02 13:13:42 +0000850 int tmp_clk = (1000 * j * r) / p;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200851
Peter Meerwald255173b2009-12-14 14:44:56 +0100852 /* Check whether this values get closer than
853 * the best ones we had before
854 */
Mark Brown5baf8312010-01-02 13:13:42 +0000855 if (abs(codec_clk - tmp_clk) <
Peter Meerwald255173b2009-12-14 14:44:56 +0100856 abs(codec_clk - last_clk)) {
857 pll_j = j; pll_d = 0;
858 pll_r = r; pll_p = p;
Mark Brown5baf8312010-01-02 13:13:42 +0000859 last_clk = tmp_clk;
Peter Meerwald255173b2009-12-14 14:44:56 +0100860 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200861
Peter Meerwald255173b2009-12-14 14:44:56 +0100862 /* Early exit for exact matches */
Mark Brown5baf8312010-01-02 13:13:42 +0000863 if (tmp_clk == codec_clk)
Peter Meerwald255173b2009-12-14 14:44:56 +0100864 goto found;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200865 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200866 }
867
Peter Meerwald255173b2009-12-14 14:44:56 +0100868 /* try with d != 0 */
869 for (p = 1; p <= 8; p++) {
870 j = codec_clk * p / 1000;
871
872 if (j < 4 || j > 11)
873 continue;
874
875 /* do not use codec_clk here since we'd loose precision */
876 d = ((2048 * p * fsref) - j * aic3x->sysclk)
877 * 100 / (aic3x->sysclk/100);
878
879 clk = (10000 * j + d) / (10 * p);
880
881 /* check whether this values get closer than the best
882 * ones we had before */
883 if (abs(codec_clk - clk) < abs(codec_clk - last_clk)) {
884 pll_j = j; pll_d = d; pll_r = 1; pll_p = p;
885 last_clk = clk;
886 }
887
888 /* Early exit for exact matches */
889 if (clk == codec_clk)
890 goto found;
891 }
892
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200893 if (last_clk == 0) {
894 printk(KERN_ERR "%s(): unable to setup PLL\n", __func__);
895 return -EINVAL;
896 }
897
Peter Meerwald255173b2009-12-14 14:44:56 +0100898found:
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200899 data = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
900 aic3x_write(codec, AIC3X_PLL_PROGA_REG, data | (pll_p << PLLP_SHIFT));
901 aic3x_write(codec, AIC3X_OVRF_STATUS_AND_PLLR_REG, pll_r << PLLR_SHIFT);
902 aic3x_write(codec, AIC3X_PLL_PROGB_REG, pll_j << PLLJ_SHIFT);
903 aic3x_write(codec, AIC3X_PLL_PROGC_REG, (pll_d >> 6) << PLLD_MSB_SHIFT);
904 aic3x_write(codec, AIC3X_PLL_PROGD_REG,
905 (pll_d & 0x3F) << PLLD_LSB_SHIFT);
906
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100907 return 0;
908}
909
Liam Girdwoode550e172008-07-07 16:07:52 +0100910static int aic3x_mute(struct snd_soc_dai *dai, int mute)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100911{
912 struct snd_soc_codec *codec = dai->codec;
913 u8 ldac_reg = aic3x_read_reg_cache(codec, LDAC_VOL) & ~MUTE_ON;
914 u8 rdac_reg = aic3x_read_reg_cache(codec, RDAC_VOL) & ~MUTE_ON;
915
916 if (mute) {
917 aic3x_write(codec, LDAC_VOL, ldac_reg | MUTE_ON);
918 aic3x_write(codec, RDAC_VOL, rdac_reg | MUTE_ON);
919 } else {
920 aic3x_write(codec, LDAC_VOL, ldac_reg);
921 aic3x_write(codec, RDAC_VOL, rdac_reg);
922 }
923
924 return 0;
925}
926
Liam Girdwoode550e172008-07-07 16:07:52 +0100927static int aic3x_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100928 int clk_id, unsigned int freq, int dir)
929{
930 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900931 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100932
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200933 aic3x->sysclk = freq;
934 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100935}
936
Liam Girdwoode550e172008-07-07 16:07:52 +0100937static int aic3x_set_dai_fmt(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100938 unsigned int fmt)
939{
940 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900941 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Jarkko Nikula81971a12008-06-25 14:58:45 +0300942 u8 iface_areg, iface_breg;
Troy Kiskya24f4f62008-12-19 13:05:22 -0700943 int delay = 0;
Jarkko Nikula81971a12008-06-25 14:58:45 +0300944
945 iface_areg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLA) & 0x3f;
946 iface_breg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & 0x3f;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100947
948 /* set master/slave audio interface */
949 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
950 case SND_SOC_DAIFMT_CBM_CFM:
951 aic3x->master = 1;
952 iface_areg |= BIT_CLK_MASTER | WORD_CLK_MASTER;
953 break;
954 case SND_SOC_DAIFMT_CBS_CFS:
955 aic3x->master = 0;
956 break;
957 default:
958 return -EINVAL;
959 }
960
Jarkko Nikula4b7d2832008-10-23 14:27:03 +0300961 /*
962 * match both interface format and signal polarities since they
963 * are fixed
964 */
965 switch (fmt & (SND_SOC_DAIFMT_FORMAT_MASK |
966 SND_SOC_DAIFMT_INV_MASK)) {
967 case (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100968 break;
Troy Kiskya24f4f62008-12-19 13:05:22 -0700969 case (SND_SOC_DAIFMT_DSP_A | SND_SOC_DAIFMT_IB_NF):
970 delay = 1;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +0300971 case (SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_IB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100972 iface_breg |= (0x01 << 6);
973 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +0300974 case (SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100975 iface_breg |= (0x02 << 6);
976 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +0300977 case (SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100978 iface_breg |= (0x03 << 6);
979 break;
980 default:
981 return -EINVAL;
982 }
983
984 /* set iface */
985 aic3x_write(codec, AIC3X_ASD_INTF_CTRLA, iface_areg);
986 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, iface_breg);
Troy Kiskya24f4f62008-12-19 13:05:22 -0700987 aic3x_write(codec, AIC3X_ASD_INTF_CTRLC, delay);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100988
989 return 0;
990}
991
Mark Brown0be98982008-05-19 12:31:28 +0200992static int aic3x_set_bias_level(struct snd_soc_codec *codec,
993 enum snd_soc_bias_level level)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100994{
Mark Brownb2c812e2010-04-14 15:35:19 +0900995 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100996 u8 reg;
997
Mark Brown0be98982008-05-19 12:31:28 +0200998 switch (level) {
999 case SND_SOC_BIAS_ON:
Jarkko Nikuladb138022010-04-26 15:49:13 +03001000 break;
1001 case SND_SOC_BIAS_PREPARE:
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001002 if (aic3x->master) {
1003 /* enable pll */
1004 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
1005 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
1006 reg | PLL_ENABLE);
1007 }
1008 break;
Mark Brown0be98982008-05-19 12:31:28 +02001009 case SND_SOC_BIAS_STANDBY:
Jarkko Nikuladb138022010-04-26 15:49:13 +03001010 /* fall through and disable pll */
Mark Brown0be98982008-05-19 12:31:28 +02001011 case SND_SOC_BIAS_OFF:
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001012 if (aic3x->master) {
1013 /* disable pll */
1014 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
1015 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
1016 reg & ~PLL_ENABLE);
1017 }
1018 break;
1019 }
Mark Brown0be98982008-05-19 12:31:28 +02001020 codec->bias_level = level;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001021
1022 return 0;
1023}
1024
Daniel Mack54e7e612008-04-30 16:20:52 +02001025void aic3x_set_gpio(struct snd_soc_codec *codec, int gpio, int state)
1026{
1027 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1028 u8 bit = gpio ? 3: 0;
1029 u8 val = aic3x_read_reg_cache(codec, reg) & ~(1 << bit);
1030 aic3x_write(codec, reg, val | (!!state << bit));
1031}
1032EXPORT_SYMBOL_GPL(aic3x_set_gpio);
1033
1034int aic3x_get_gpio(struct snd_soc_codec *codec, int gpio)
1035{
1036 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1037 u8 val, bit = gpio ? 2: 1;
1038
1039 aic3x_read(codec, reg, &val);
1040 return (val >> bit) & 1;
1041}
1042EXPORT_SYMBOL_GPL(aic3x_get_gpio);
1043
Daniel Mack6f2a9742008-12-03 11:44:17 +01001044void aic3x_set_headset_detection(struct snd_soc_codec *codec, int detect,
1045 int headset_debounce, int button_debounce)
1046{
1047 u8 val;
1048
1049 val = ((detect & AIC3X_HEADSET_DETECT_MASK)
1050 << AIC3X_HEADSET_DETECT_SHIFT) |
1051 ((headset_debounce & AIC3X_HEADSET_DEBOUNCE_MASK)
1052 << AIC3X_HEADSET_DEBOUNCE_SHIFT) |
1053 ((button_debounce & AIC3X_BUTTON_DEBOUNCE_MASK)
1054 << AIC3X_BUTTON_DEBOUNCE_SHIFT);
1055
1056 if (detect & AIC3X_HEADSET_DETECT_MASK)
1057 val |= AIC3X_HEADSET_DETECT_ENABLED;
1058
1059 aic3x_write(codec, AIC3X_HEADSET_DETECT_CTRL_A, val);
1060}
1061EXPORT_SYMBOL_GPL(aic3x_set_headset_detection);
1062
Daniel Mack54e7e612008-04-30 16:20:52 +02001063int aic3x_headset_detected(struct snd_soc_codec *codec)
1064{
1065 u8 val;
Daniel Mack6f2a9742008-12-03 11:44:17 +01001066 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1067 return (val >> 4) & 1;
Daniel Mack54e7e612008-04-30 16:20:52 +02001068}
1069EXPORT_SYMBOL_GPL(aic3x_headset_detected);
1070
Daniel Mack6f2a9742008-12-03 11:44:17 +01001071int aic3x_button_pressed(struct snd_soc_codec *codec)
1072{
1073 u8 val;
1074 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1075 return (val >> 5) & 1;
1076}
1077EXPORT_SYMBOL_GPL(aic3x_button_pressed);
1078
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001079#define AIC3X_RATES SNDRV_PCM_RATE_8000_96000
1080#define AIC3X_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
1081 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
1082
Eric Miao6335d052009-03-03 09:41:00 +08001083static struct snd_soc_dai_ops aic3x_dai_ops = {
1084 .hw_params = aic3x_hw_params,
1085 .digital_mute = aic3x_mute,
1086 .set_sysclk = aic3x_set_dai_sysclk,
1087 .set_fmt = aic3x_set_dai_fmt,
1088};
1089
Liam Girdwoode550e172008-07-07 16:07:52 +01001090struct snd_soc_dai aic3x_dai = {
Jarkko Nikulae78cc182008-10-07 14:49:23 +03001091 .name = "tlv320aic3x",
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001092 .playback = {
1093 .stream_name = "Playback",
1094 .channels_min = 1,
1095 .channels_max = 2,
1096 .rates = AIC3X_RATES,
1097 .formats = AIC3X_FORMATS,},
1098 .capture = {
1099 .stream_name = "Capture",
1100 .channels_min = 1,
1101 .channels_max = 2,
1102 .rates = AIC3X_RATES,
1103 .formats = AIC3X_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001104 .ops = &aic3x_dai_ops,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001105};
1106EXPORT_SYMBOL_GPL(aic3x_dai);
1107
1108static int aic3x_suspend(struct platform_device *pdev, pm_message_t state)
1109{
1110 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +00001111 struct snd_soc_codec *codec = socdev->card->codec;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001112
Mark Brown0be98982008-05-19 12:31:28 +02001113 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001114
1115 return 0;
1116}
1117
1118static int aic3x_resume(struct platform_device *pdev)
1119{
1120 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +00001121 struct snd_soc_codec *codec = socdev->card->codec;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001122 int i;
1123 u8 data[2];
1124 u8 *cache = codec->reg_cache;
1125
1126 /* Sync reg_cache with the hardware */
1127 for (i = 0; i < ARRAY_SIZE(aic3x_reg); i++) {
1128 data[0] = i;
1129 data[1] = cache[i];
1130 codec->hw_write(codec->control_data, data, 2);
1131 }
1132
Mark Brown0be98982008-05-19 12:31:28 +02001133 aic3x_set_bias_level(codec, codec->suspend_bias_level);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001134
1135 return 0;
1136}
1137
1138/*
1139 * initialise the AIC3X driver
1140 * register the mixer and dsp interfaces with the kernel
1141 */
Ben Dookscb3826f2009-08-20 22:50:41 +01001142static int aic3x_init(struct snd_soc_codec *codec)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001143{
Ben Dookscb3826f2009-08-20 22:50:41 +01001144 int reg;
1145
1146 mutex_init(&codec->mutex);
1147 INIT_LIST_HEAD(&codec->dapm_widgets);
1148 INIT_LIST_HEAD(&codec->dapm_paths);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001149
Jarkko Nikulae78cc182008-10-07 14:49:23 +03001150 codec->name = "tlv320aic3x";
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001151 codec->owner = THIS_MODULE;
1152 codec->read = aic3x_read_reg_cache;
1153 codec->write = aic3x_write;
Mark Brown0be98982008-05-19 12:31:28 +02001154 codec->set_bias_level = aic3x_set_bias_level;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001155 codec->dai = &aic3x_dai;
1156 codec->num_dai = 1;
Mark Brownae2ff192008-06-11 13:47:08 +01001157 codec->reg_cache_size = ARRAY_SIZE(aic3x_reg);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001158 codec->reg_cache = kmemdup(aic3x_reg, sizeof(aic3x_reg), GFP_KERNEL);
1159 if (codec->reg_cache == NULL)
1160 return -ENOMEM;
1161
1162 aic3x_write(codec, AIC3X_PAGE_SELECT, PAGE0_SELECT);
1163 aic3x_write(codec, AIC3X_RESET, SOFT_RESET);
1164
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001165 /* DAC default volume and mute */
1166 aic3x_write(codec, LDAC_VOL, DEFAULT_VOL | MUTE_ON);
1167 aic3x_write(codec, RDAC_VOL, DEFAULT_VOL | MUTE_ON);
1168
1169 /* DAC to HP default volume and route to Output mixer */
1170 aic3x_write(codec, DACL1_2_HPLOUT_VOL, DEFAULT_VOL | ROUTE_ON);
1171 aic3x_write(codec, DACR1_2_HPROUT_VOL, DEFAULT_VOL | ROUTE_ON);
1172 aic3x_write(codec, DACL1_2_HPLCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1173 aic3x_write(codec, DACR1_2_HPRCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1174 /* DAC to Line Out default volume and route to Output mixer */
1175 aic3x_write(codec, DACL1_2_LLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1176 aic3x_write(codec, DACR1_2_RLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1177 /* DAC to Mono Line Out default volume and route to Output mixer */
1178 aic3x_write(codec, DACL1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1179 aic3x_write(codec, DACR1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1180
1181 /* unmute all outputs */
1182 reg = aic3x_read_reg_cache(codec, LLOPM_CTRL);
1183 aic3x_write(codec, LLOPM_CTRL, reg | UNMUTE);
1184 reg = aic3x_read_reg_cache(codec, RLOPM_CTRL);
1185 aic3x_write(codec, RLOPM_CTRL, reg | UNMUTE);
1186 reg = aic3x_read_reg_cache(codec, MONOLOPM_CTRL);
1187 aic3x_write(codec, MONOLOPM_CTRL, reg | UNMUTE);
1188 reg = aic3x_read_reg_cache(codec, HPLOUT_CTRL);
1189 aic3x_write(codec, HPLOUT_CTRL, reg | UNMUTE);
1190 reg = aic3x_read_reg_cache(codec, HPROUT_CTRL);
1191 aic3x_write(codec, HPROUT_CTRL, reg | UNMUTE);
1192 reg = aic3x_read_reg_cache(codec, HPLCOM_CTRL);
1193 aic3x_write(codec, HPLCOM_CTRL, reg | UNMUTE);
1194 reg = aic3x_read_reg_cache(codec, HPRCOM_CTRL);
1195 aic3x_write(codec, HPRCOM_CTRL, reg | UNMUTE);
1196
1197 /* ADC default volume and unmute */
1198 aic3x_write(codec, LADC_VOL, DEFAULT_GAIN);
1199 aic3x_write(codec, RADC_VOL, DEFAULT_GAIN);
1200 /* By default route Line1 to ADC PGA mixer */
1201 aic3x_write(codec, LINE1L_2_LADC_CTRL, 0x0);
1202 aic3x_write(codec, LINE1R_2_RADC_CTRL, 0x0);
1203
1204 /* PGA to HP Bypass default volume, disconnect from Output Mixer */
1205 aic3x_write(codec, PGAL_2_HPLOUT_VOL, DEFAULT_VOL);
1206 aic3x_write(codec, PGAR_2_HPROUT_VOL, DEFAULT_VOL);
1207 aic3x_write(codec, PGAL_2_HPLCOM_VOL, DEFAULT_VOL);
1208 aic3x_write(codec, PGAR_2_HPRCOM_VOL, DEFAULT_VOL);
1209 /* PGA to Line Out default volume, disconnect from Output Mixer */
1210 aic3x_write(codec, PGAL_2_LLOPM_VOL, DEFAULT_VOL);
1211 aic3x_write(codec, PGAR_2_RLOPM_VOL, DEFAULT_VOL);
1212 /* PGA to Mono Line Out default volume, disconnect from Output Mixer */
1213 aic3x_write(codec, PGAL_2_MONOLOPM_VOL, DEFAULT_VOL);
1214 aic3x_write(codec, PGAR_2_MONOLOPM_VOL, DEFAULT_VOL);
1215
1216 /* Line2 to HP Bypass default volume, disconnect from Output Mixer */
1217 aic3x_write(codec, LINE2L_2_HPLOUT_VOL, DEFAULT_VOL);
1218 aic3x_write(codec, LINE2R_2_HPROUT_VOL, DEFAULT_VOL);
1219 aic3x_write(codec, LINE2L_2_HPLCOM_VOL, DEFAULT_VOL);
1220 aic3x_write(codec, LINE2R_2_HPRCOM_VOL, DEFAULT_VOL);
1221 /* Line2 Line Out default volume, disconnect from Output Mixer */
1222 aic3x_write(codec, LINE2L_2_LLOPM_VOL, DEFAULT_VOL);
1223 aic3x_write(codec, LINE2R_2_RLOPM_VOL, DEFAULT_VOL);
1224 /* Line2 to Mono Out default volume, disconnect from Output Mixer */
1225 aic3x_write(codec, LINE2L_2_MONOLOPM_VOL, DEFAULT_VOL);
1226 aic3x_write(codec, LINE2R_2_MONOLOPM_VOL, DEFAULT_VOL);
1227
1228 /* off, with power on */
Mark Brown0be98982008-05-19 12:31:28 +02001229 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001230
Ben Dookscb3826f2009-08-20 22:50:41 +01001231 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001232}
1233
Ben Dookscb3826f2009-08-20 22:50:41 +01001234static struct snd_soc_codec *aic3x_codec;
1235
1236static int aic3x_register(struct snd_soc_codec *codec)
1237{
1238 int ret;
1239
1240 ret = aic3x_init(codec);
1241 if (ret < 0) {
1242 dev_err(codec->dev, "Failed to initialise device\n");
1243 return ret;
1244 }
1245
1246 aic3x_codec = codec;
1247
1248 ret = snd_soc_register_codec(codec);
1249 if (ret) {
1250 dev_err(codec->dev, "Failed to register codec\n");
1251 return ret;
1252 }
1253
1254 ret = snd_soc_register_dai(&aic3x_dai);
1255 if (ret) {
1256 dev_err(codec->dev, "Failed to register dai\n");
1257 snd_soc_unregister_codec(codec);
1258 return ret;
1259 }
1260
1261 return 0;
1262}
1263
1264static int aic3x_unregister(struct aic3x_priv *aic3x)
1265{
1266 aic3x_set_bias_level(&aic3x->codec, SND_SOC_BIAS_OFF);
1267
1268 snd_soc_unregister_dai(&aic3x_dai);
1269 snd_soc_unregister_codec(&aic3x->codec);
1270
1271 kfree(aic3x);
1272 aic3x_codec = NULL;
1273
1274 return 0;
1275}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001276
1277#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1278/*
1279 * AIC3X 2 wire address can be up to 4 devices with device addresses
1280 * 0x18, 0x19, 0x1A, 0x1B
1281 */
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001282
1283/*
1284 * If the i2c layer weren't so broken, we could pass this kind of data
1285 * around
1286 */
Jean Delvareba8ed122008-09-22 14:15:53 +02001287static int aic3x_i2c_probe(struct i2c_client *i2c,
1288 const struct i2c_device_id *id)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001289{
Ben Dookscb3826f2009-08-20 22:50:41 +01001290 struct snd_soc_codec *codec;
1291 struct aic3x_priv *aic3x;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001292
Ben Dookscb3826f2009-08-20 22:50:41 +01001293 aic3x = kzalloc(sizeof(struct aic3x_priv), GFP_KERNEL);
1294 if (aic3x == NULL) {
1295 dev_err(&i2c->dev, "failed to create private data\n");
1296 return -ENOMEM;
1297 }
1298
1299 codec = &aic3x->codec;
1300 codec->dev = &i2c->dev;
Mark Brownb2c812e2010-04-14 15:35:19 +09001301 snd_soc_codec_set_drvdata(codec, aic3x);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001302 codec->control_data = i2c;
Ben Dookscb3826f2009-08-20 22:50:41 +01001303 codec->hw_write = (hw_write_t) i2c_master_send;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001304
Ben Dookscb3826f2009-08-20 22:50:41 +01001305 i2c_set_clientdata(i2c, aic3x);
1306
1307 return aic3x_register(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001308}
1309
Jean Delvareba8ed122008-09-22 14:15:53 +02001310static int aic3x_i2c_remove(struct i2c_client *client)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001311{
Ben Dookscb3826f2009-08-20 22:50:41 +01001312 struct aic3x_priv *aic3x = i2c_get_clientdata(client);
1313
1314 return aic3x_unregister(aic3x);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001315}
1316
Jean Delvareba8ed122008-09-22 14:15:53 +02001317static const struct i2c_device_id aic3x_i2c_id[] = {
1318 { "tlv320aic3x", 0 },
Ben Dookscb3826f2009-08-20 22:50:41 +01001319 { "tlv320aic33", 0 },
Jean Delvareba8ed122008-09-22 14:15:53 +02001320 { }
1321};
1322MODULE_DEVICE_TABLE(i2c, aic3x_i2c_id);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001323
1324/* machine i2c codec control layer */
1325static struct i2c_driver aic3x_i2c_driver = {
1326 .driver = {
1327 .name = "aic3x I2C Codec",
1328 .owner = THIS_MODULE,
1329 },
Ben Dookscb3826f2009-08-20 22:50:41 +01001330 .probe = aic3x_i2c_probe,
Jean Delvareba8ed122008-09-22 14:15:53 +02001331 .remove = aic3x_i2c_remove,
1332 .id_table = aic3x_i2c_id,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001333};
Daniel Mack54e7e612008-04-30 16:20:52 +02001334
Ben Dookscb3826f2009-08-20 22:50:41 +01001335static inline void aic3x_i2c_init(void)
Jean Delvareba8ed122008-09-22 14:15:53 +02001336{
Jean Delvareba8ed122008-09-22 14:15:53 +02001337 int ret;
1338
1339 ret = i2c_add_driver(&aic3x_i2c_driver);
Ben Dookscb3826f2009-08-20 22:50:41 +01001340 if (ret)
1341 printk(KERN_ERR "%s: error regsitering i2c driver, %d\n",
1342 __func__, ret);
Jean Delvareba8ed122008-09-22 14:15:53 +02001343}
Ben Dookscb3826f2009-08-20 22:50:41 +01001344
1345static inline void aic3x_i2c_exit(void)
1346{
1347 i2c_del_driver(&aic3x_i2c_driver);
1348}
1349#else
1350static inline void aic3x_i2c_init(void) { }
1351static inline void aic3x_i2c_exit(void) { }
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001352#endif
1353
1354static int aic3x_probe(struct platform_device *pdev)
1355{
1356 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1357 struct aic3x_setup_data *setup;
1358 struct snd_soc_codec *codec;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001359 int ret = 0;
1360
Ben Dookscb3826f2009-08-20 22:50:41 +01001361 codec = aic3x_codec;
1362 if (!codec) {
1363 dev_err(&pdev->dev, "Codec not registered\n");
1364 return -ENODEV;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001365 }
1366
Mark Brown6627a652009-01-23 22:55:23 +00001367 socdev->card->codec = codec;
Ben Dookscb3826f2009-08-20 22:50:41 +01001368 setup = socdev->codec_data;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001369
Mark Brown977d49e2009-08-26 13:05:14 +01001370 if (setup) {
1371 /* setup GPIO functions */
1372 aic3x_write(codec, AIC3X_GPIO1_REG,
1373 (setup->gpio_func[0] & 0xf) << 4);
1374 aic3x_write(codec, AIC3X_GPIO2_REG,
1375 (setup->gpio_func[1] & 0xf) << 4);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001376 }
Jean Delvare3051e412008-08-25 11:49:20 +01001377
Ben Dookscb3826f2009-08-20 22:50:41 +01001378 /* register pcms */
1379 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
1380 if (ret < 0) {
1381 printk(KERN_ERR "aic3x: failed to create pcms\n");
1382 goto pcm_err;
Jean Delvare3051e412008-08-25 11:49:20 +01001383 }
Ben Dookscb3826f2009-08-20 22:50:41 +01001384
1385 snd_soc_add_controls(codec, aic3x_snd_controls,
1386 ARRAY_SIZE(aic3x_snd_controls));
1387
1388 aic3x_add_widgets(codec);
1389
Ben Dookscb3826f2009-08-20 22:50:41 +01001390 return ret;
1391
Ben Dookscb3826f2009-08-20 22:50:41 +01001392pcm_err:
1393 kfree(codec->reg_cache);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001394 return ret;
1395}
1396
1397static int aic3x_remove(struct platform_device *pdev)
1398{
1399 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +00001400 struct snd_soc_codec *codec = socdev->card->codec;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001401
1402 /* power down chip */
1403 if (codec->control_data)
Mark Brown0be98982008-05-19 12:31:28 +02001404 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001405
1406 snd_soc_free_pcms(socdev);
1407 snd_soc_dapm_free(socdev);
Ben Dookscb3826f2009-08-20 22:50:41 +01001408
1409 kfree(codec->reg_cache);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001410
1411 return 0;
1412}
1413
1414struct snd_soc_codec_device soc_codec_dev_aic3x = {
1415 .probe = aic3x_probe,
1416 .remove = aic3x_remove,
1417 .suspend = aic3x_suspend,
1418 .resume = aic3x_resume,
1419};
1420EXPORT_SYMBOL_GPL(soc_codec_dev_aic3x);
1421
Takashi Iwaic9b3a402008-12-10 07:47:22 +01001422static int __init aic3x_modinit(void)
Mark Brown64089b82008-12-08 19:17:58 +00001423{
Ben Dookscb3826f2009-08-20 22:50:41 +01001424 aic3x_i2c_init();
1425
1426 return 0;
Mark Brown64089b82008-12-08 19:17:58 +00001427}
1428module_init(aic3x_modinit);
1429
1430static void __exit aic3x_exit(void)
1431{
Ben Dookscb3826f2009-08-20 22:50:41 +01001432 aic3x_i2c_exit();
Mark Brown64089b82008-12-08 19:17:58 +00001433}
1434module_exit(aic3x_exit);
1435
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001436MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver");
1437MODULE_AUTHOR("Vladimir Barinov");
1438MODULE_LICENSE("GPL");