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