blob: 0c7452f932e73e02b72eb11eae5aa2e5077c259d [file] [log] [blame]
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001/*
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>
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>
48
49#include "tlv320aic3x.h"
50
51#define AUDIO_NAME "aic3x"
Daniel Mack4f9c16c2008-04-30 16:20:19 +020052#define AIC3X_VERSION "0.2"
Vladimir Barinov44d0a872007-11-14 17:07:17 +010053
54/* codec private data */
55struct 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 */
66static 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 */
98static 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 */
110static 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 */
122static 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
Daniel Mack54e7e612008-04-30 16:20:52 +0200141/*
142 * read from the aic3x register space
143 */
144static 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
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100155#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 */
165static 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
218static const char *aic3x_left_dac_mux[] = { "DAC_L1", "DAC_L3", "DAC_L2" };
219static const char *aic3x_right_dac_mux[] = { "DAC_R1", "DAC_R3", "DAC_R2" };
220static const char *aic3x_left_hpcom_mux[] =
221 { "differential of HPLOUT", "constant VCM", "single-ended" };
222static const char *aic3x_right_hpcom_mux[] =
223 { "differential of HPROUT", "constant VCM", "single-ended",
224 "differential of HPLCOM", "external feedback" };
225static 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
236static 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
247static 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 */
298static 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 */
314static const struct snd_kcontrol_new aic3x_left_dac_mux_controls =
315SOC_DAPM_ENUM("Route", aic3x_enum[LDAC_ENUM]);
316
317/* Right DAC Mux */
318static const struct snd_kcontrol_new aic3x_right_dac_mux_controls =
319SOC_DAPM_ENUM("Route", aic3x_enum[RDAC_ENUM]);
320
321/* Left HPCOM Mux */
322static const struct snd_kcontrol_new aic3x_left_hpcom_mux_controls =
323SOC_DAPM_ENUM("Route", aic3x_enum[LHPCOM_ENUM]);
324
325/* Right HPCOM Mux */
326static const struct snd_kcontrol_new aic3x_right_hpcom_mux_controls =
327SOC_DAPM_ENUM("Route", aic3x_enum[RHPCOM_ENUM]);
328
329/* Left DAC_L1 Mixer */
330static 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 */
338static 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 */
346static 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 */
353static 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 */
360static const struct snd_kcontrol_new aic3x_left_line1_mux_controls =
361SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_ENUM]);
362
363/* Right Line1 Mux */
364static const struct snd_kcontrol_new aic3x_right_line1_mux_controls =
365SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_ENUM]);
366
367/* Left Line2 Mux */
368static const struct snd_kcontrol_new aic3x_left_line2_mux_controls =
369SOC_DAPM_ENUM("Route", aic3x_enum[LINE2L_ENUM]);
370
371/* Right Line2 Mux */
372static const struct snd_kcontrol_new aic3x_right_line2_mux_controls =
373SOC_DAPM_ENUM("Route", aic3x_enum[LINE2R_ENUM]);
374
375/* Left PGA Bypass Mixer */
376static 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 */
384static 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 */
392static 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 */
400static 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
407static 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 /* Mic Bias */
Jarkko Nikula0bd72a32008-06-25 14:42:08 +0300459 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2V",
460 MICBIAS_CTRL, 6, 3, 1, 0),
461 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2.5V",
462 MICBIAS_CTRL, 6, 3, 2, 0),
463 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias AVDD",
464 MICBIAS_CTRL, 6, 3, 3, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100465
466 /* Left PGA to Left Output bypass */
467 SND_SOC_DAPM_MIXER("Left PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
468 &aic3x_left_pga_bp_mixer_controls[0],
469 ARRAY_SIZE(aic3x_left_pga_bp_mixer_controls)),
470
471 /* Right PGA to Right Output bypass */
472 SND_SOC_DAPM_MIXER("Right PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
473 &aic3x_right_pga_bp_mixer_controls[0],
474 ARRAY_SIZE(aic3x_right_pga_bp_mixer_controls)),
475
476 /* Left Line2 to Left Output bypass */
477 SND_SOC_DAPM_MIXER("Left Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
478 &aic3x_left_line2_bp_mixer_controls[0],
479 ARRAY_SIZE(aic3x_left_line2_bp_mixer_controls)),
480
481 /* Right Line2 to Right Output bypass */
482 SND_SOC_DAPM_MIXER("Right Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
483 &aic3x_right_line2_bp_mixer_controls[0],
484 ARRAY_SIZE(aic3x_right_line2_bp_mixer_controls)),
485
486 SND_SOC_DAPM_OUTPUT("LLOUT"),
487 SND_SOC_DAPM_OUTPUT("RLOUT"),
488 SND_SOC_DAPM_OUTPUT("MONO_LOUT"),
489 SND_SOC_DAPM_OUTPUT("HPLOUT"),
490 SND_SOC_DAPM_OUTPUT("HPROUT"),
491 SND_SOC_DAPM_OUTPUT("HPLCOM"),
492 SND_SOC_DAPM_OUTPUT("HPRCOM"),
493
494 SND_SOC_DAPM_INPUT("MIC3L"),
495 SND_SOC_DAPM_INPUT("MIC3R"),
496 SND_SOC_DAPM_INPUT("LINE1L"),
497 SND_SOC_DAPM_INPUT("LINE1R"),
498 SND_SOC_DAPM_INPUT("LINE2L"),
499 SND_SOC_DAPM_INPUT("LINE2R"),
500};
501
Mark Brownd0cc0d32008-05-13 14:55:22 +0200502static const struct snd_soc_dapm_route intercon[] = {
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100503 /* Left Output */
504 {"Left DAC Mux", "DAC_L1", "Left DAC"},
505 {"Left DAC Mux", "DAC_L2", "Left DAC"},
506 {"Left DAC Mux", "DAC_L3", "Left DAC"},
507
508 {"Left DAC_L1 Mixer", "Line Switch", "Left DAC Mux"},
509 {"Left DAC_L1 Mixer", "Mono Switch", "Left DAC Mux"},
510 {"Left DAC_L1 Mixer", "HP Switch", "Left DAC Mux"},
511 {"Left DAC_L1 Mixer", "HPCOM Switch", "Left DAC Mux"},
512 {"Left Line Out", NULL, "Left DAC Mux"},
513 {"Left HP Out", NULL, "Left DAC Mux"},
514
515 {"Left HPCOM Mux", "differential of HPLOUT", "Left DAC_L1 Mixer"},
516 {"Left HPCOM Mux", "constant VCM", "Left DAC_L1 Mixer"},
517 {"Left HPCOM Mux", "single-ended", "Left DAC_L1 Mixer"},
518
519 {"Left Line Out", NULL, "Left DAC_L1 Mixer"},
520 {"Mono Out", NULL, "Left DAC_L1 Mixer"},
521 {"Left HP Out", NULL, "Left DAC_L1 Mixer"},
522 {"Left HP Com", NULL, "Left HPCOM Mux"},
523
524 {"LLOUT", NULL, "Left Line Out"},
525 {"LLOUT", NULL, "Left Line Out"},
526 {"HPLOUT", NULL, "Left HP Out"},
527 {"HPLCOM", NULL, "Left HP Com"},
528
529 /* Right Output */
530 {"Right DAC Mux", "DAC_R1", "Right DAC"},
531 {"Right DAC Mux", "DAC_R2", "Right DAC"},
532 {"Right DAC Mux", "DAC_R3", "Right DAC"},
533
534 {"Right DAC_R1 Mixer", "Line Switch", "Right DAC Mux"},
535 {"Right DAC_R1 Mixer", "Mono Switch", "Right DAC Mux"},
536 {"Right DAC_R1 Mixer", "HP Switch", "Right DAC Mux"},
537 {"Right DAC_R1 Mixer", "HPCOM Switch", "Right DAC Mux"},
538 {"Right Line Out", NULL, "Right DAC Mux"},
539 {"Right HP Out", NULL, "Right DAC Mux"},
540
541 {"Right HPCOM Mux", "differential of HPROUT", "Right DAC_R1 Mixer"},
542 {"Right HPCOM Mux", "constant VCM", "Right DAC_R1 Mixer"},
543 {"Right HPCOM Mux", "single-ended", "Right DAC_R1 Mixer"},
544 {"Right HPCOM Mux", "differential of HPLCOM", "Right DAC_R1 Mixer"},
545 {"Right HPCOM Mux", "external feedback", "Right DAC_R1 Mixer"},
546
547 {"Right Line Out", NULL, "Right DAC_R1 Mixer"},
548 {"Mono Out", NULL, "Right DAC_R1 Mixer"},
549 {"Right HP Out", NULL, "Right DAC_R1 Mixer"},
550 {"Right HP Com", NULL, "Right HPCOM Mux"},
551
552 {"RLOUT", NULL, "Right Line Out"},
553 {"RLOUT", NULL, "Right Line Out"},
554 {"HPROUT", NULL, "Right HP Out"},
555 {"HPRCOM", NULL, "Right HP Com"},
556
557 /* Mono Output */
Jarkko Nikula5b006132008-05-09 15:05:41 +0200558 {"MONO_LOUT", NULL, "Mono Out"},
559 {"MONO_LOUT", NULL, "Mono Out"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100560
561 /* Left Input */
562 {"Left Line1L Mux", "single-ended", "LINE1L"},
563 {"Left Line1L Mux", "differential", "LINE1L"},
564
565 {"Left Line2L Mux", "single-ended", "LINE2L"},
566 {"Left Line2L Mux", "differential", "LINE2L"},
567
568 {"Left PGA Mixer", "Line1L Switch", "Left Line1L Mux"},
569 {"Left PGA Mixer", "Line2L Switch", "Left Line2L Mux"},
570 {"Left PGA Mixer", "Mic3L Switch", "MIC3L"},
571
572 {"Left ADC", NULL, "Left PGA Mixer"},
573
574 /* Right Input */
575 {"Right Line1R Mux", "single-ended", "LINE1R"},
576 {"Right Line1R Mux", "differential", "LINE1R"},
577
578 {"Right Line2R Mux", "single-ended", "LINE2R"},
579 {"Right Line2R Mux", "differential", "LINE2R"},
580
581 {"Right PGA Mixer", "Line1R Switch", "Right Line1R Mux"},
582 {"Right PGA Mixer", "Line2R Switch", "Right Line2R Mux"},
583 {"Right PGA Mixer", "Mic3R Switch", "MIC3R"},
584
585 {"Right ADC", NULL, "Right PGA Mixer"},
586
587 /* Left PGA Bypass */
588 {"Left PGA Bypass Mixer", "Line Switch", "Left PGA Mixer"},
589 {"Left PGA Bypass Mixer", "Mono Switch", "Left PGA Mixer"},
590 {"Left PGA Bypass Mixer", "HP Switch", "Left PGA Mixer"},
591 {"Left PGA Bypass Mixer", "HPCOM Switch", "Left PGA Mixer"},
592
593 {"Left HPCOM Mux", "differential of HPLOUT", "Left PGA Bypass Mixer"},
594 {"Left HPCOM Mux", "constant VCM", "Left PGA Bypass Mixer"},
595 {"Left HPCOM Mux", "single-ended", "Left PGA Bypass Mixer"},
596
597 {"Left Line Out", NULL, "Left PGA Bypass Mixer"},
598 {"Mono Out", NULL, "Left PGA Bypass Mixer"},
599 {"Left HP Out", NULL, "Left PGA Bypass Mixer"},
600
601 /* Right PGA Bypass */
602 {"Right PGA Bypass Mixer", "Line Switch", "Right PGA Mixer"},
603 {"Right PGA Bypass Mixer", "Mono Switch", "Right PGA Mixer"},
604 {"Right PGA Bypass Mixer", "HP Switch", "Right PGA Mixer"},
605 {"Right PGA Bypass Mixer", "HPCOM Switch", "Right PGA Mixer"},
606
607 {"Right HPCOM Mux", "differential of HPROUT", "Right PGA Bypass Mixer"},
608 {"Right HPCOM Mux", "constant VCM", "Right PGA Bypass Mixer"},
609 {"Right HPCOM Mux", "single-ended", "Right PGA Bypass Mixer"},
610 {"Right HPCOM Mux", "differential of HPLCOM", "Right PGA Bypass Mixer"},
611 {"Right HPCOM Mux", "external feedback", "Right PGA Bypass Mixer"},
612
613 {"Right Line Out", NULL, "Right PGA Bypass Mixer"},
614 {"Mono Out", NULL, "Right PGA Bypass Mixer"},
615 {"Right HP Out", NULL, "Right PGA Bypass Mixer"},
616
617 /* Left Line2 Bypass */
618 {"Left Line2 Bypass Mixer", "Line Switch", "Left Line2L Mux"},
619 {"Left Line2 Bypass Mixer", "Mono Switch", "Left Line2L Mux"},
620 {"Left Line2 Bypass Mixer", "HP Switch", "Left Line2L Mux"},
621 {"Left Line2 Bypass Mixer", "HPCOM Switch", "Left Line2L Mux"},
622
623 {"Left HPCOM Mux", "differential of HPLOUT", "Left Line2 Bypass Mixer"},
624 {"Left HPCOM Mux", "constant VCM", "Left Line2 Bypass Mixer"},
625 {"Left HPCOM Mux", "single-ended", "Left Line2 Bypass Mixer"},
626
627 {"Left Line Out", NULL, "Left Line2 Bypass Mixer"},
628 {"Mono Out", NULL, "Left Line2 Bypass Mixer"},
629 {"Left HP Out", NULL, "Left Line2 Bypass Mixer"},
630
631 /* Right Line2 Bypass */
632 {"Right Line2 Bypass Mixer", "Line Switch", "Right Line2R Mux"},
633 {"Right Line2 Bypass Mixer", "Mono Switch", "Right Line2R Mux"},
634 {"Right Line2 Bypass Mixer", "HP Switch", "Right Line2R Mux"},
635 {"Right Line2 Bypass Mixer", "HPCOM Switch", "Right Line2R Mux"},
636
637 {"Right HPCOM Mux", "differential of HPROUT", "Right Line2 Bypass Mixer"},
638 {"Right HPCOM Mux", "constant VCM", "Right Line2 Bypass Mixer"},
639 {"Right HPCOM Mux", "single-ended", "Right Line2 Bypass Mixer"},
640 {"Right HPCOM Mux", "differential of HPLCOM", "Right Line2 Bypass Mixer"},
641 {"Right HPCOM Mux", "external feedback", "Right Line2 Bypass Mixer"},
642
643 {"Right Line Out", NULL, "Right Line2 Bypass Mixer"},
644 {"Mono Out", NULL, "Right Line2 Bypass Mixer"},
645 {"Right HP Out", NULL, "Right Line2 Bypass Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100646};
647
648static int aic3x_add_widgets(struct snd_soc_codec *codec)
649{
Mark Brownd0cc0d32008-05-13 14:55:22 +0200650 snd_soc_dapm_new_controls(codec, aic3x_dapm_widgets,
651 ARRAY_SIZE(aic3x_dapm_widgets));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100652
653 /* set up audio path interconnects */
Mark Brownd0cc0d32008-05-13 14:55:22 +0200654 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100655
656 snd_soc_dapm_new_widgets(codec);
657 return 0;
658}
659
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100660static int aic3x_hw_params(struct snd_pcm_substream *substream,
661 struct snd_pcm_hw_params *params)
662{
663 struct snd_soc_pcm_runtime *rtd = substream->private_data;
664 struct snd_soc_device *socdev = rtd->socdev;
665 struct snd_soc_codec *codec = socdev->codec;
666 struct aic3x_priv *aic3x = codec->private_data;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200667 int codec_clk = 0, bypass_pll = 0, fsref, last_clk = 0;
668 u8 data, r, p, pll_q, pll_p = 1, pll_r = 1, pll_j = 1;
669 u16 pll_d = 1;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100670
671 /* select data word length */
672 data =
673 aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & (~(0x3 << 4));
674 switch (params_format(params)) {
675 case SNDRV_PCM_FORMAT_S16_LE:
676 break;
677 case SNDRV_PCM_FORMAT_S20_3LE:
678 data |= (0x01 << 4);
679 break;
680 case SNDRV_PCM_FORMAT_S24_LE:
681 data |= (0x02 << 4);
682 break;
683 case SNDRV_PCM_FORMAT_S32_LE:
684 data |= (0x03 << 4);
685 break;
686 }
687 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, data);
688
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200689 /* Fsref can be 44100 or 48000 */
690 fsref = (params_rate(params) % 11025 == 0) ? 44100 : 48000;
691
692 /* Try to find a value for Q which allows us to bypass the PLL and
693 * generate CODEC_CLK directly. */
694 for (pll_q = 2; pll_q < 18; pll_q++)
695 if (aic3x->sysclk / (128 * pll_q) == fsref) {
696 bypass_pll = 1;
697 break;
698 }
699
700 if (bypass_pll) {
701 pll_q &= 0xf;
702 aic3x_write(codec, AIC3X_PLL_PROGA_REG, pll_q << PLLQ_SHIFT);
703 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_CLKDIV);
704 } else
705 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_PLLDIV);
706
707 /* Route Left DAC to left channel input and
708 * right DAC to right channel input */
709 data = (LDAC2LCH | RDAC2RCH);
710 data |= (fsref == 44100) ? FSREF_44100 : FSREF_48000;
711 if (params_rate(params) >= 64000)
712 data |= DUAL_RATE_MODE;
713 aic3x_write(codec, AIC3X_CODEC_DATAPATH_REG, data);
714
715 /* codec sample rate select */
716 data = (fsref * 20) / params_rate(params);
717 if (params_rate(params) < 64000)
718 data /= 2;
719 data /= 5;
720 data -= 2;
721 data |= (data << 4);
722 aic3x_write(codec, AIC3X_SAMPLE_RATE_SEL_REG, data);
723
724 if (bypass_pll)
725 return 0;
726
727 /* Use PLL
728 * find an apropriate setup for j, d, r and p by iterating over
729 * p and r - j and d are calculated for each fraction.
730 * Up to 128 values are probed, the closest one wins the game.
731 * The sysclk is divided by 1000 to prevent integer overflows.
732 */
733 codec_clk = (2048 * fsref) / (aic3x->sysclk / 1000);
734
735 for (r = 1; r <= 16; r++)
736 for (p = 1; p <= 8; p++) {
737 int clk, tmp = (codec_clk * pll_r * 10) / pll_p;
738 u8 j = tmp / 10000;
739 u16 d = tmp % 10000;
740
741 if (j > 63)
742 continue;
743
744 if (d != 0 && aic3x->sysclk < 10000000)
745 continue;
746
747 /* This is actually 1000 * ((j + (d/10000)) * r) / p
748 * The term had to be converted to get rid of the
749 * division by 10000 */
750 clk = ((10000 * j * r) + (d * r)) / (10 * p);
751
752 /* check whether this values get closer than the best
753 * ones we had before */
754 if (abs(codec_clk - clk) < abs(codec_clk - last_clk)) {
755 pll_j = j; pll_d = d; pll_r = r; pll_p = p;
756 last_clk = clk;
757 }
758
759 /* Early exit for exact matches */
760 if (clk == codec_clk)
761 break;
762 }
763
764 if (last_clk == 0) {
765 printk(KERN_ERR "%s(): unable to setup PLL\n", __func__);
766 return -EINVAL;
767 }
768
769 data = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
770 aic3x_write(codec, AIC3X_PLL_PROGA_REG, data | (pll_p << PLLP_SHIFT));
771 aic3x_write(codec, AIC3X_OVRF_STATUS_AND_PLLR_REG, pll_r << PLLR_SHIFT);
772 aic3x_write(codec, AIC3X_PLL_PROGB_REG, pll_j << PLLJ_SHIFT);
773 aic3x_write(codec, AIC3X_PLL_PROGC_REG, (pll_d >> 6) << PLLD_MSB_SHIFT);
774 aic3x_write(codec, AIC3X_PLL_PROGD_REG,
775 (pll_d & 0x3F) << PLLD_LSB_SHIFT);
776
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100777 return 0;
778}
779
780static int aic3x_mute(struct snd_soc_codec_dai *dai, int mute)
781{
782 struct snd_soc_codec *codec = dai->codec;
783 u8 ldac_reg = aic3x_read_reg_cache(codec, LDAC_VOL) & ~MUTE_ON;
784 u8 rdac_reg = aic3x_read_reg_cache(codec, RDAC_VOL) & ~MUTE_ON;
785
786 if (mute) {
787 aic3x_write(codec, LDAC_VOL, ldac_reg | MUTE_ON);
788 aic3x_write(codec, RDAC_VOL, rdac_reg | MUTE_ON);
789 } else {
790 aic3x_write(codec, LDAC_VOL, ldac_reg);
791 aic3x_write(codec, RDAC_VOL, rdac_reg);
792 }
793
794 return 0;
795}
796
797static int aic3x_set_dai_sysclk(struct snd_soc_codec_dai *codec_dai,
798 int clk_id, unsigned int freq, int dir)
799{
800 struct snd_soc_codec *codec = codec_dai->codec;
801 struct aic3x_priv *aic3x = codec->private_data;
802
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200803 aic3x->sysclk = freq;
804 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100805}
806
807static int aic3x_set_dai_fmt(struct snd_soc_codec_dai *codec_dai,
808 unsigned int fmt)
809{
810 struct snd_soc_codec *codec = codec_dai->codec;
811 struct aic3x_priv *aic3x = codec->private_data;
812 u8 iface_areg = 0;
813 u8 iface_breg = 0;
814
815 /* set master/slave audio interface */
816 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
817 case SND_SOC_DAIFMT_CBM_CFM:
818 aic3x->master = 1;
819 iface_areg |= BIT_CLK_MASTER | WORD_CLK_MASTER;
820 break;
821 case SND_SOC_DAIFMT_CBS_CFS:
822 aic3x->master = 0;
823 break;
824 default:
825 return -EINVAL;
826 }
827
828 /* interface format */
829 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
830 case SND_SOC_DAIFMT_I2S:
831 break;
832 case SND_SOC_DAIFMT_DSP_A:
833 iface_breg |= (0x01 << 6);
834 break;
835 case SND_SOC_DAIFMT_RIGHT_J:
836 iface_breg |= (0x02 << 6);
837 break;
838 case SND_SOC_DAIFMT_LEFT_J:
839 iface_breg |= (0x03 << 6);
840 break;
841 default:
842 return -EINVAL;
843 }
844
845 /* set iface */
846 aic3x_write(codec, AIC3X_ASD_INTF_CTRLA, iface_areg);
847 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, iface_breg);
848
849 return 0;
850}
851
Mark Brown0be98982008-05-19 12:31:28 +0200852static int aic3x_set_bias_level(struct snd_soc_codec *codec,
853 enum snd_soc_bias_level level)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100854{
855 struct aic3x_priv *aic3x = codec->private_data;
856 u8 reg;
857
Mark Brown0be98982008-05-19 12:31:28 +0200858 switch (level) {
859 case SND_SOC_BIAS_ON:
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100860 /* all power is driven by DAPM system */
861 if (aic3x->master) {
862 /* enable pll */
863 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
864 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
865 reg | PLL_ENABLE);
866 }
867 break;
Mark Brown0be98982008-05-19 12:31:28 +0200868 case SND_SOC_BIAS_PREPARE:
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100869 break;
Mark Brown0be98982008-05-19 12:31:28 +0200870 case SND_SOC_BIAS_STANDBY:
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100871 /*
872 * all power is driven by DAPM system,
873 * so output power is safe if bypass was set
874 */
875 if (aic3x->master) {
876 /* disable pll */
877 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
878 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
879 reg & ~PLL_ENABLE);
880 }
881 break;
Mark Brown0be98982008-05-19 12:31:28 +0200882 case SND_SOC_BIAS_OFF:
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100883 /* force all power off */
884 reg = aic3x_read_reg_cache(codec, LINE1L_2_LADC_CTRL);
885 aic3x_write(codec, LINE1L_2_LADC_CTRL, reg & ~LADC_PWR_ON);
886 reg = aic3x_read_reg_cache(codec, LINE1R_2_RADC_CTRL);
887 aic3x_write(codec, LINE1R_2_RADC_CTRL, reg & ~RADC_PWR_ON);
888
889 reg = aic3x_read_reg_cache(codec, DAC_PWR);
890 aic3x_write(codec, DAC_PWR, reg & ~(LDAC_PWR_ON | RDAC_PWR_ON));
891
892 reg = aic3x_read_reg_cache(codec, HPLOUT_CTRL);
893 aic3x_write(codec, HPLOUT_CTRL, reg & ~HPLOUT_PWR_ON);
894 reg = aic3x_read_reg_cache(codec, HPROUT_CTRL);
895 aic3x_write(codec, HPROUT_CTRL, reg & ~HPROUT_PWR_ON);
896
897 reg = aic3x_read_reg_cache(codec, HPLCOM_CTRL);
898 aic3x_write(codec, HPLCOM_CTRL, reg & ~HPLCOM_PWR_ON);
899 reg = aic3x_read_reg_cache(codec, HPRCOM_CTRL);
900 aic3x_write(codec, HPRCOM_CTRL, reg & ~HPRCOM_PWR_ON);
901
902 reg = aic3x_read_reg_cache(codec, MONOLOPM_CTRL);
903 aic3x_write(codec, MONOLOPM_CTRL, reg & ~MONOLOPM_PWR_ON);
904
905 reg = aic3x_read_reg_cache(codec, LLOPM_CTRL);
906 aic3x_write(codec, LLOPM_CTRL, reg & ~LLOPM_PWR_ON);
907 reg = aic3x_read_reg_cache(codec, RLOPM_CTRL);
908 aic3x_write(codec, RLOPM_CTRL, reg & ~RLOPM_PWR_ON);
909
910 if (aic3x->master) {
911 /* disable pll */
912 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
913 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
914 reg & ~PLL_ENABLE);
915 }
916 break;
917 }
Mark Brown0be98982008-05-19 12:31:28 +0200918 codec->bias_level = level;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100919
920 return 0;
921}
922
Daniel Mack54e7e612008-04-30 16:20:52 +0200923void aic3x_set_gpio(struct snd_soc_codec *codec, int gpio, int state)
924{
925 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
926 u8 bit = gpio ? 3: 0;
927 u8 val = aic3x_read_reg_cache(codec, reg) & ~(1 << bit);
928 aic3x_write(codec, reg, val | (!!state << bit));
929}
930EXPORT_SYMBOL_GPL(aic3x_set_gpio);
931
932int aic3x_get_gpio(struct snd_soc_codec *codec, int gpio)
933{
934 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
935 u8 val, bit = gpio ? 2: 1;
936
937 aic3x_read(codec, reg, &val);
938 return (val >> bit) & 1;
939}
940EXPORT_SYMBOL_GPL(aic3x_get_gpio);
941
942int aic3x_headset_detected(struct snd_soc_codec *codec)
943{
944 u8 val;
945 aic3x_read(codec, AIC3X_RT_IRQ_FLAGS_REG, &val);
946 return (val >> 2) & 1;
947}
948EXPORT_SYMBOL_GPL(aic3x_headset_detected);
949
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100950#define AIC3X_RATES SNDRV_PCM_RATE_8000_96000
951#define AIC3X_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
952 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
953
954struct snd_soc_codec_dai aic3x_dai = {
955 .name = "aic3x",
956 .playback = {
957 .stream_name = "Playback",
958 .channels_min = 1,
959 .channels_max = 2,
960 .rates = AIC3X_RATES,
961 .formats = AIC3X_FORMATS,},
962 .capture = {
963 .stream_name = "Capture",
964 .channels_min = 1,
965 .channels_max = 2,
966 .rates = AIC3X_RATES,
967 .formats = AIC3X_FORMATS,},
968 .ops = {
969 .hw_params = aic3x_hw_params,
970 },
971 .dai_ops = {
972 .digital_mute = aic3x_mute,
973 .set_sysclk = aic3x_set_dai_sysclk,
974 .set_fmt = aic3x_set_dai_fmt,
975 }
976};
977EXPORT_SYMBOL_GPL(aic3x_dai);
978
979static int aic3x_suspend(struct platform_device *pdev, pm_message_t state)
980{
981 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
982 struct snd_soc_codec *codec = socdev->codec;
983
Mark Brown0be98982008-05-19 12:31:28 +0200984 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100985
986 return 0;
987}
988
989static int aic3x_resume(struct platform_device *pdev)
990{
991 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
992 struct snd_soc_codec *codec = socdev->codec;
993 int i;
994 u8 data[2];
995 u8 *cache = codec->reg_cache;
996
997 /* Sync reg_cache with the hardware */
998 for (i = 0; i < ARRAY_SIZE(aic3x_reg); i++) {
999 data[0] = i;
1000 data[1] = cache[i];
1001 codec->hw_write(codec->control_data, data, 2);
1002 }
1003
Mark Brown0be98982008-05-19 12:31:28 +02001004 aic3x_set_bias_level(codec, codec->suspend_bias_level);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001005
1006 return 0;
1007}
1008
1009/*
1010 * initialise the AIC3X driver
1011 * register the mixer and dsp interfaces with the kernel
1012 */
1013static int aic3x_init(struct snd_soc_device *socdev)
1014{
1015 struct snd_soc_codec *codec = socdev->codec;
Daniel Mack54e7e612008-04-30 16:20:52 +02001016 struct aic3x_setup_data *setup = socdev->codec_data;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001017 int reg, ret = 0;
1018
1019 codec->name = "aic3x";
1020 codec->owner = THIS_MODULE;
1021 codec->read = aic3x_read_reg_cache;
1022 codec->write = aic3x_write;
Mark Brown0be98982008-05-19 12:31:28 +02001023 codec->set_bias_level = aic3x_set_bias_level;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001024 codec->dai = &aic3x_dai;
1025 codec->num_dai = 1;
Mark Brownae2ff192008-06-11 13:47:08 +01001026 codec->reg_cache_size = ARRAY_SIZE(aic3x_reg);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001027 codec->reg_cache = kmemdup(aic3x_reg, sizeof(aic3x_reg), GFP_KERNEL);
1028 if (codec->reg_cache == NULL)
1029 return -ENOMEM;
1030
1031 aic3x_write(codec, AIC3X_PAGE_SELECT, PAGE0_SELECT);
1032 aic3x_write(codec, AIC3X_RESET, SOFT_RESET);
1033
1034 /* register pcms */
1035 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
1036 if (ret < 0) {
1037 printk(KERN_ERR "aic3x: failed to create pcms\n");
1038 goto pcm_err;
1039 }
1040
1041 /* DAC default volume and mute */
1042 aic3x_write(codec, LDAC_VOL, DEFAULT_VOL | MUTE_ON);
1043 aic3x_write(codec, RDAC_VOL, DEFAULT_VOL | MUTE_ON);
1044
1045 /* DAC to HP default volume and route to Output mixer */
1046 aic3x_write(codec, DACL1_2_HPLOUT_VOL, DEFAULT_VOL | ROUTE_ON);
1047 aic3x_write(codec, DACR1_2_HPROUT_VOL, DEFAULT_VOL | ROUTE_ON);
1048 aic3x_write(codec, DACL1_2_HPLCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1049 aic3x_write(codec, DACR1_2_HPRCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1050 /* DAC to Line Out default volume and route to Output mixer */
1051 aic3x_write(codec, DACL1_2_LLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1052 aic3x_write(codec, DACR1_2_RLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1053 /* DAC to Mono Line Out default volume and route to Output mixer */
1054 aic3x_write(codec, DACL1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1055 aic3x_write(codec, DACR1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1056
1057 /* unmute all outputs */
1058 reg = aic3x_read_reg_cache(codec, LLOPM_CTRL);
1059 aic3x_write(codec, LLOPM_CTRL, reg | UNMUTE);
1060 reg = aic3x_read_reg_cache(codec, RLOPM_CTRL);
1061 aic3x_write(codec, RLOPM_CTRL, reg | UNMUTE);
1062 reg = aic3x_read_reg_cache(codec, MONOLOPM_CTRL);
1063 aic3x_write(codec, MONOLOPM_CTRL, reg | UNMUTE);
1064 reg = aic3x_read_reg_cache(codec, HPLOUT_CTRL);
1065 aic3x_write(codec, HPLOUT_CTRL, reg | UNMUTE);
1066 reg = aic3x_read_reg_cache(codec, HPROUT_CTRL);
1067 aic3x_write(codec, HPROUT_CTRL, reg | UNMUTE);
1068 reg = aic3x_read_reg_cache(codec, HPLCOM_CTRL);
1069 aic3x_write(codec, HPLCOM_CTRL, reg | UNMUTE);
1070 reg = aic3x_read_reg_cache(codec, HPRCOM_CTRL);
1071 aic3x_write(codec, HPRCOM_CTRL, reg | UNMUTE);
1072
1073 /* ADC default volume and unmute */
1074 aic3x_write(codec, LADC_VOL, DEFAULT_GAIN);
1075 aic3x_write(codec, RADC_VOL, DEFAULT_GAIN);
1076 /* By default route Line1 to ADC PGA mixer */
1077 aic3x_write(codec, LINE1L_2_LADC_CTRL, 0x0);
1078 aic3x_write(codec, LINE1R_2_RADC_CTRL, 0x0);
1079
1080 /* PGA to HP Bypass default volume, disconnect from Output Mixer */
1081 aic3x_write(codec, PGAL_2_HPLOUT_VOL, DEFAULT_VOL);
1082 aic3x_write(codec, PGAR_2_HPROUT_VOL, DEFAULT_VOL);
1083 aic3x_write(codec, PGAL_2_HPLCOM_VOL, DEFAULT_VOL);
1084 aic3x_write(codec, PGAR_2_HPRCOM_VOL, DEFAULT_VOL);
1085 /* PGA to Line Out default volume, disconnect from Output Mixer */
1086 aic3x_write(codec, PGAL_2_LLOPM_VOL, DEFAULT_VOL);
1087 aic3x_write(codec, PGAR_2_RLOPM_VOL, DEFAULT_VOL);
1088 /* PGA to Mono Line Out default volume, disconnect from Output Mixer */
1089 aic3x_write(codec, PGAL_2_MONOLOPM_VOL, DEFAULT_VOL);
1090 aic3x_write(codec, PGAR_2_MONOLOPM_VOL, DEFAULT_VOL);
1091
1092 /* Line2 to HP Bypass default volume, disconnect from Output Mixer */
1093 aic3x_write(codec, LINE2L_2_HPLOUT_VOL, DEFAULT_VOL);
1094 aic3x_write(codec, LINE2R_2_HPROUT_VOL, DEFAULT_VOL);
1095 aic3x_write(codec, LINE2L_2_HPLCOM_VOL, DEFAULT_VOL);
1096 aic3x_write(codec, LINE2R_2_HPRCOM_VOL, DEFAULT_VOL);
1097 /* Line2 Line Out default volume, disconnect from Output Mixer */
1098 aic3x_write(codec, LINE2L_2_LLOPM_VOL, DEFAULT_VOL);
1099 aic3x_write(codec, LINE2R_2_RLOPM_VOL, DEFAULT_VOL);
1100 /* Line2 to Mono Out default volume, disconnect from Output Mixer */
1101 aic3x_write(codec, LINE2L_2_MONOLOPM_VOL, DEFAULT_VOL);
1102 aic3x_write(codec, LINE2R_2_MONOLOPM_VOL, DEFAULT_VOL);
1103
1104 /* off, with power on */
Mark Brown0be98982008-05-19 12:31:28 +02001105 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001106
Daniel Mack54e7e612008-04-30 16:20:52 +02001107 /* setup GPIO functions */
1108 aic3x_write(codec, AIC3X_GPIO1_REG, (setup->gpio_func[0] & 0xf) << 4);
1109 aic3x_write(codec, AIC3X_GPIO2_REG, (setup->gpio_func[1] & 0xf) << 4);
1110
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001111 aic3x_add_controls(codec);
1112 aic3x_add_widgets(codec);
1113 ret = snd_soc_register_card(socdev);
1114 if (ret < 0) {
1115 printk(KERN_ERR "aic3x: failed to register card\n");
1116 goto card_err;
1117 }
1118
1119 return ret;
1120
1121card_err:
1122 snd_soc_free_pcms(socdev);
1123 snd_soc_dapm_free(socdev);
1124pcm_err:
1125 kfree(codec->reg_cache);
1126 return ret;
1127}
1128
1129static struct snd_soc_device *aic3x_socdev;
1130
1131#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1132/*
1133 * AIC3X 2 wire address can be up to 4 devices with device addresses
1134 * 0x18, 0x19, 0x1A, 0x1B
1135 */
1136static unsigned short normal_i2c[] = { 0, I2C_CLIENT_END };
1137
1138/* Magic definition of all other variables and things */
1139I2C_CLIENT_INSMOD;
1140
1141static struct i2c_driver aic3x_i2c_driver;
1142static struct i2c_client client_template;
1143
1144/*
1145 * If the i2c layer weren't so broken, we could pass this kind of data
1146 * around
1147 */
1148static int aic3x_codec_probe(struct i2c_adapter *adap, int addr, int kind)
1149{
1150 struct snd_soc_device *socdev = aic3x_socdev;
1151 struct aic3x_setup_data *setup = socdev->codec_data;
1152 struct snd_soc_codec *codec = socdev->codec;
1153 struct i2c_client *i2c;
1154 int ret;
1155
1156 if (addr != setup->i2c_address)
1157 return -ENODEV;
1158
1159 client_template.adapter = adap;
1160 client_template.addr = addr;
1161
1162 i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL);
1163 if (i2c == NULL) {
1164 kfree(codec);
1165 return -ENOMEM;
1166 }
1167 i2c_set_clientdata(i2c, codec);
1168 codec->control_data = i2c;
1169
1170 ret = i2c_attach_client(i2c);
1171 if (ret < 0) {
1172 printk(KERN_ERR "aic3x: failed to attach codec at addr %x\n",
1173 addr);
1174 goto err;
1175 }
1176
1177 ret = aic3x_init(socdev);
1178 if (ret < 0) {
1179 printk(KERN_ERR "aic3x: failed to initialise AIC3X\n");
1180 goto err;
1181 }
1182 return ret;
1183
1184err:
1185 kfree(codec);
1186 kfree(i2c);
1187 return ret;
1188}
1189
1190static int aic3x_i2c_detach(struct i2c_client *client)
1191{
1192 struct snd_soc_codec *codec = i2c_get_clientdata(client);
1193 i2c_detach_client(client);
1194 kfree(codec->reg_cache);
1195 kfree(client);
1196 return 0;
1197}
1198
1199static int aic3x_i2c_attach(struct i2c_adapter *adap)
1200{
1201 return i2c_probe(adap, &addr_data, aic3x_codec_probe);
1202}
1203
1204/* machine i2c codec control layer */
1205static struct i2c_driver aic3x_i2c_driver = {
1206 .driver = {
1207 .name = "aic3x I2C Codec",
1208 .owner = THIS_MODULE,
1209 },
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001210 .attach_adapter = aic3x_i2c_attach,
1211 .detach_client = aic3x_i2c_detach,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001212};
1213
1214static struct i2c_client client_template = {
1215 .name = "AIC3X",
1216 .driver = &aic3x_i2c_driver,
1217};
Daniel Mack54e7e612008-04-30 16:20:52 +02001218
1219static int aic3x_i2c_read(struct i2c_client *client, u8 *value, int len)
1220{
1221 value[0] = i2c_smbus_read_byte_data(client, value[0]);
1222 return (len == 1);
1223}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001224#endif
1225
1226static int aic3x_probe(struct platform_device *pdev)
1227{
1228 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1229 struct aic3x_setup_data *setup;
1230 struct snd_soc_codec *codec;
1231 struct aic3x_priv *aic3x;
1232 int ret = 0;
1233
1234 printk(KERN_INFO "AIC3X Audio Codec %s\n", AIC3X_VERSION);
1235
1236 setup = socdev->codec_data;
1237 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
1238 if (codec == NULL)
1239 return -ENOMEM;
1240
1241 aic3x = kzalloc(sizeof(struct aic3x_priv), GFP_KERNEL);
1242 if (aic3x == NULL) {
1243 kfree(codec);
1244 return -ENOMEM;
1245 }
1246
1247 codec->private_data = aic3x;
1248 socdev->codec = codec;
1249 mutex_init(&codec->mutex);
1250 INIT_LIST_HEAD(&codec->dapm_widgets);
1251 INIT_LIST_HEAD(&codec->dapm_paths);
1252
1253 aic3x_socdev = socdev;
1254#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1255 if (setup->i2c_address) {
1256 normal_i2c[0] = setup->i2c_address;
1257 codec->hw_write = (hw_write_t) i2c_master_send;
Daniel Mack54e7e612008-04-30 16:20:52 +02001258 codec->hw_read = (hw_read_t) aic3x_i2c_read;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001259 ret = i2c_add_driver(&aic3x_i2c_driver);
1260 if (ret != 0)
1261 printk(KERN_ERR "can't add i2c driver");
1262 }
1263#else
1264 /* Add other interfaces here */
1265#endif
1266 return ret;
1267}
1268
1269static int aic3x_remove(struct platform_device *pdev)
1270{
1271 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1272 struct snd_soc_codec *codec = socdev->codec;
1273
1274 /* power down chip */
1275 if (codec->control_data)
Mark Brown0be98982008-05-19 12:31:28 +02001276 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001277
1278 snd_soc_free_pcms(socdev);
1279 snd_soc_dapm_free(socdev);
1280#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1281 i2c_del_driver(&aic3x_i2c_driver);
1282#endif
1283 kfree(codec->private_data);
1284 kfree(codec);
1285
1286 return 0;
1287}
1288
1289struct snd_soc_codec_device soc_codec_dev_aic3x = {
1290 .probe = aic3x_probe,
1291 .remove = aic3x_remove,
1292 .suspend = aic3x_suspend,
1293 .resume = aic3x_resume,
1294};
1295EXPORT_SYMBOL_GPL(soc_codec_dev_aic3x);
1296
1297MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver");
1298MODULE_AUTHOR("Vladimir Barinov");
1299MODULE_LICENSE("GPL");