blob: c07465720cdb2d8c134f6fc84dad96841c64b081 [file] [log] [blame]
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001/*
2 * ALSA SoC TLV320AIC3X codec driver
3 *
Vladimir Barinovd6b52032008-09-29 23:14:11 +04004 * Author: Vladimir Barinov, <vbarinov@embeddedalley.com>
Vladimir Barinov44d0a872007-11-14 17:07:17 +01005 * Copyright: (C) 2007 MontaVista Software, Inc., <source@mvista.com>
6 *
7 * Based on sound/soc/codecs/wm8753.c by Liam Girdwood
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * Notes:
14 * The AIC3X is a driver for a low power stereo audio
Randolph Chung6184f102010-08-20 12:47:53 +080015 * codecs aic31, aic32, aic33, aic3007.
Vladimir Barinov44d0a872007-11-14 17:07:17 +010016 *
17 * It supports full aic33 codec functionality.
Randolph Chung6184f102010-08-20 12:47:53 +080018 * The compatibility with aic32, aic31 and aic3007 is as follows:
19 * aic32/aic3007 | aic31
Vladimir Barinov44d0a872007-11-14 17:07:17 +010020 * ---------------------------------------
21 * MONO_LOUT -> N/A | MONO_LOUT -> N/A
22 * | IN1L -> LINE1L
23 * | IN1R -> LINE1R
24 * | IN2L -> LINE2L
25 * | IN2R -> LINE2R
26 * | MIC3L/R -> N/A
27 * truncated internal functionality in
28 * accordance with documentation
29 * ---------------------------------------
30 *
31 * Hence the machine layer should disable unsupported inputs/outputs by
Liam Girdwooda5302182008-07-07 13:35:17 +010032 * snd_soc_dapm_disable_pin(codec, "MONO_LOUT"), etc.
Vladimir Barinov44d0a872007-11-14 17:07:17 +010033 */
34
35#include <linux/module.h>
36#include <linux/moduleparam.h>
37#include <linux/init.h>
38#include <linux/delay.h>
39#include <linux/pm.h>
40#include <linux/i2c.h>
Jarkko Nikula5193d622010-05-05 13:02:03 +030041#include <linux/gpio.h>
Jarkko Nikula07779fd2010-04-26 15:49:14 +030042#include <linux/regulator/consumer.h>
Vladimir Barinov44d0a872007-11-14 17:07:17 +010043#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Vladimir Barinov44d0a872007-11-14 17:07:17 +010045#include <sound/core.h>
46#include <sound/pcm.h>
47#include <sound/pcm_params.h>
48#include <sound/soc.h>
49#include <sound/soc-dapm.h>
50#include <sound/initval.h>
Jarkko Nikula7565fc32009-02-09 14:27:07 +020051#include <sound/tlv.h>
Jarkko Nikula5193d622010-05-05 13:02:03 +030052#include <sound/tlv320aic3x.h>
Vladimir Barinov44d0a872007-11-14 17:07:17 +010053
54#include "tlv320aic3x.h"
55
Jarkko Nikula07779fd2010-04-26 15:49:14 +030056#define AIC3X_NUM_SUPPLIES 4
57static const char *aic3x_supply_names[AIC3X_NUM_SUPPLIES] = {
58 "IOVDD", /* I/O Voltage */
59 "DVDD", /* Digital Core Voltage */
60 "AVDD", /* Analog DAC Voltage */
61 "DRVDD", /* ADC Analog and Output Driver Voltage */
62};
Vladimir Barinov44d0a872007-11-14 17:07:17 +010063
64/* codec private data */
65struct aic3x_priv {
Jarkko Nikula07779fd2010-04-26 15:49:14 +030066 struct regulator_bulk_data supplies[AIC3X_NUM_SUPPLIES];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000067 enum snd_soc_control_type control_type;
68 struct aic3x_setup_data *setup;
69 void *control_data;
Vladimir Barinov44d0a872007-11-14 17:07:17 +010070 unsigned int sysclk;
71 int master;
Jarkko Nikula5193d622010-05-05 13:02:03 +030072 int gpio_reset;
Randolph Chung6184f102010-08-20 12:47:53 +080073#define AIC3X_MODEL_3X 0
74#define AIC3X_MODEL_33 1
75#define AIC3X_MODEL_3007 2
76 u16 model;
Vladimir Barinov44d0a872007-11-14 17:07:17 +010077};
78
79/*
80 * AIC3X register cache
81 * We can't read the AIC3X register space when we are
82 * using 2 wire for device control, so we cache them instead.
83 * There is no point in caching the reset register
84 */
85static const u8 aic3x_reg[AIC3X_CACHEREGNUM] = {
86 0x00, 0x00, 0x00, 0x10, /* 0 */
87 0x04, 0x00, 0x00, 0x00, /* 4 */
88 0x00, 0x00, 0x00, 0x01, /* 8 */
89 0x00, 0x00, 0x00, 0x80, /* 12 */
90 0x80, 0xff, 0xff, 0x78, /* 16 */
91 0x78, 0x78, 0x78, 0x78, /* 20 */
92 0x78, 0x00, 0x00, 0xfe, /* 24 */
93 0x00, 0x00, 0xfe, 0x00, /* 28 */
94 0x18, 0x18, 0x00, 0x00, /* 32 */
95 0x00, 0x00, 0x00, 0x00, /* 36 */
96 0x00, 0x00, 0x00, 0x80, /* 40 */
97 0x80, 0x00, 0x00, 0x00, /* 44 */
98 0x00, 0x00, 0x00, 0x04, /* 48 */
99 0x00, 0x00, 0x00, 0x00, /* 52 */
100 0x00, 0x00, 0x04, 0x00, /* 56 */
101 0x00, 0x00, 0x00, 0x00, /* 60 */
102 0x00, 0x04, 0x00, 0x00, /* 64 */
103 0x00, 0x00, 0x00, 0x00, /* 68 */
104 0x04, 0x00, 0x00, 0x00, /* 72 */
105 0x00, 0x00, 0x00, 0x00, /* 76 */
106 0x00, 0x00, 0x00, 0x00, /* 80 */
107 0x00, 0x00, 0x00, 0x00, /* 84 */
108 0x00, 0x00, 0x00, 0x00, /* 88 */
109 0x00, 0x00, 0x00, 0x00, /* 92 */
110 0x00, 0x00, 0x00, 0x00, /* 96 */
111 0x00, 0x00, 0x02, /* 100 */
112};
113
114/*
115 * read aic3x register cache
116 */
117static inline unsigned int aic3x_read_reg_cache(struct snd_soc_codec *codec,
118 unsigned int reg)
119{
120 u8 *cache = codec->reg_cache;
121 if (reg >= AIC3X_CACHEREGNUM)
122 return -1;
123 return cache[reg];
124}
125
126/*
127 * write aic3x register cache
128 */
129static inline void aic3x_write_reg_cache(struct snd_soc_codec *codec,
130 u8 reg, u8 value)
131{
132 u8 *cache = codec->reg_cache;
133 if (reg >= AIC3X_CACHEREGNUM)
134 return;
135 cache[reg] = value;
136}
137
138/*
139 * write to the aic3x register space
140 */
141static int aic3x_write(struct snd_soc_codec *codec, unsigned int reg,
142 unsigned int value)
143{
144 u8 data[2];
145
146 /* data is
147 * D15..D8 aic3x register offset
148 * D7...D0 register data
149 */
150 data[0] = reg & 0xff;
151 data[1] = value & 0xff;
152
153 aic3x_write_reg_cache(codec, data[0], data[1]);
154 if (codec->hw_write(codec->control_data, data, 2) == 2)
155 return 0;
156 else
157 return -EIO;
158}
159
Daniel Mack54e7e612008-04-30 16:20:52 +0200160/*
161 * read from the aic3x register space
162 */
163static int aic3x_read(struct snd_soc_codec *codec, unsigned int reg,
164 u8 *value)
165{
166 *value = reg & 0xff;
Mark Brown5f345342009-07-05 17:35:28 +0100167
168 value[0] = i2c_smbus_read_byte_data(codec->control_data, value[0]);
Daniel Mack54e7e612008-04-30 16:20:52 +0200169
170 aic3x_write_reg_cache(codec, reg, *value);
171 return 0;
172}
173
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100174#define SOC_DAPM_SINGLE_AIC3X(xname, reg, shift, mask, invert) \
175{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
176 .info = snd_soc_info_volsw, \
177 .get = snd_soc_dapm_get_volsw, .put = snd_soc_dapm_put_volsw_aic3x, \
178 .private_value = SOC_SINGLE_VALUE(reg, shift, mask, invert) }
179
180/*
181 * All input lines are connected when !0xf and disconnected with 0xf bit field,
182 * so we have to use specific dapm_put call for input mixer
183 */
184static int snd_soc_dapm_put_volsw_aic3x(struct snd_kcontrol *kcontrol,
185 struct snd_ctl_elem_value *ucontrol)
186{
187 struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
Eero Nurkkala4453dba2009-02-06 12:01:04 +0200188 struct soc_mixer_control *mc =
189 (struct soc_mixer_control *)kcontrol->private_value;
190 unsigned int reg = mc->reg;
191 unsigned int shift = mc->shift;
192 int max = mc->max;
193 unsigned int mask = (1 << fls(max)) - 1;
194 unsigned int invert = mc->invert;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100195 unsigned short val, val_mask;
196 int ret;
197 struct snd_soc_dapm_path *path;
198 int found = 0;
199
200 val = (ucontrol->value.integer.value[0] & mask);
201
202 mask = 0xf;
203 if (val)
204 val = mask;
205
206 if (invert)
207 val = mask - val;
208 val_mask = mask << shift;
209 val = val << shift;
210
211 mutex_lock(&widget->codec->mutex);
212
213 if (snd_soc_test_bits(widget->codec, reg, val_mask, val)) {
214 /* find dapm widget path assoc with kcontrol */
215 list_for_each_entry(path, &widget->codec->dapm_paths, list) {
216 if (path->kcontrol != kcontrol)
217 continue;
218
219 /* found, now check type */
220 found = 1;
221 if (val)
222 /* new connection */
223 path->connect = invert ? 0 : 1;
224 else
225 /* old connection must be powered down */
226 path->connect = invert ? 1 : 0;
227 break;
228 }
229
230 if (found)
Liam Girdwooda5302182008-07-07 13:35:17 +0100231 snd_soc_dapm_sync(widget->codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100232 }
233
234 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
235
236 mutex_unlock(&widget->codec->mutex);
237 return ret;
238}
239
240static const char *aic3x_left_dac_mux[] = { "DAC_L1", "DAC_L3", "DAC_L2" };
241static const char *aic3x_right_dac_mux[] = { "DAC_R1", "DAC_R3", "DAC_R2" };
242static const char *aic3x_left_hpcom_mux[] =
243 { "differential of HPLOUT", "constant VCM", "single-ended" };
244static const char *aic3x_right_hpcom_mux[] =
245 { "differential of HPROUT", "constant VCM", "single-ended",
246 "differential of HPLCOM", "external feedback" };
247static const char *aic3x_linein_mode_mux[] = { "single-ended", "differential" };
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300248static const char *aic3x_adc_hpf[] =
249 { "Disabled", "0.0045xFs", "0.0125xFs", "0.025xFs" };
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100250
251#define LDAC_ENUM 0
252#define RDAC_ENUM 1
253#define LHPCOM_ENUM 2
254#define RHPCOM_ENUM 3
255#define LINE1L_ENUM 4
256#define LINE1R_ENUM 5
257#define LINE2L_ENUM 6
258#define LINE2R_ENUM 7
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300259#define ADC_HPF_ENUM 8
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100260
261static const struct soc_enum aic3x_enum[] = {
262 SOC_ENUM_SINGLE(DAC_LINE_MUX, 6, 3, aic3x_left_dac_mux),
263 SOC_ENUM_SINGLE(DAC_LINE_MUX, 4, 3, aic3x_right_dac_mux),
264 SOC_ENUM_SINGLE(HPLCOM_CFG, 4, 3, aic3x_left_hpcom_mux),
265 SOC_ENUM_SINGLE(HPRCOM_CFG, 3, 5, aic3x_right_hpcom_mux),
266 SOC_ENUM_SINGLE(LINE1L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
267 SOC_ENUM_SINGLE(LINE1R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
268 SOC_ENUM_SINGLE(LINE2L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
269 SOC_ENUM_SINGLE(LINE2R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300270 SOC_ENUM_DOUBLE(AIC3X_CODEC_DFILT_CTRL, 6, 4, 4, aic3x_adc_hpf),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100271};
272
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200273/*
274 * DAC digital volumes. From -63.5 to 0 dB in 0.5 dB steps
275 */
276static DECLARE_TLV_DB_SCALE(dac_tlv, -6350, 50, 0);
277/* ADC PGA gain volumes. From 0 to 59.5 dB in 0.5 dB steps */
278static DECLARE_TLV_DB_SCALE(adc_tlv, 0, 50, 0);
279/*
280 * Output stage volumes. From -78.3 to 0 dB. Muted below -78.3 dB.
281 * Step size is approximately 0.5 dB over most of the scale but increasing
282 * near the very low levels.
283 * Define dB scale so that it is mostly correct for range about -55 to 0 dB
284 * but having increasing dB difference below that (and where it doesn't count
285 * so much). This setting shows -50 dB (actual is -50.3 dB) for register
286 * value 100 and -58.5 dB (actual is -78.3 dB) for register value 117.
287 */
288static DECLARE_TLV_DB_SCALE(output_stage_tlv, -5900, 50, 1);
289
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100290static const struct snd_kcontrol_new aic3x_snd_controls[] = {
291 /* Output */
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200292 SOC_DOUBLE_R_TLV("PCM Playback Volume",
293 LDAC_VOL, RDAC_VOL, 0, 0x7f, 1, dac_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100294
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200295 SOC_DOUBLE_R_TLV("Line DAC Playback Volume",
296 DACL1_2_LLOPM_VOL, DACR1_2_RLOPM_VOL,
297 0, 118, 1, output_stage_tlv),
Daniel Mack28a1d862008-12-05 17:31:00 +0100298 SOC_SINGLE("LineL Playback Switch", LLOPM_CTRL, 3, 0x01, 0),
299 SOC_SINGLE("LineR Playback Switch", RLOPM_CTRL, 3, 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200300 SOC_DOUBLE_R_TLV("LineL DAC Playback Volume",
301 DACL1_2_LLOPM_VOL, DACR1_2_LLOPM_VOL,
302 0, 118, 1, output_stage_tlv),
303 SOC_SINGLE_TLV("LineL Left PGA Bypass Playback Volume",
304 PGAL_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
305 SOC_SINGLE_TLV("LineR Right PGA Bypass Playback Volume",
306 PGAR_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
307 SOC_DOUBLE_R_TLV("LineL Line2 Bypass Playback Volume",
308 LINE2L_2_LLOPM_VOL, LINE2R_2_LLOPM_VOL,
309 0, 118, 1, output_stage_tlv),
310 SOC_DOUBLE_R_TLV("LineR Line2 Bypass Playback Volume",
311 LINE2L_2_RLOPM_VOL, LINE2R_2_RLOPM_VOL,
312 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100313
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200314 SOC_DOUBLE_R_TLV("Mono DAC Playback Volume",
315 DACL1_2_MONOLOPM_VOL, DACR1_2_MONOLOPM_VOL,
316 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100317 SOC_SINGLE("Mono DAC Playback Switch", MONOLOPM_CTRL, 3, 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200318 SOC_DOUBLE_R_TLV("Mono PGA Bypass Playback Volume",
319 PGAL_2_MONOLOPM_VOL, PGAR_2_MONOLOPM_VOL,
320 0, 118, 1, output_stage_tlv),
321 SOC_DOUBLE_R_TLV("Mono Line2 Bypass Playback Volume",
322 LINE2L_2_MONOLOPM_VOL, LINE2R_2_MONOLOPM_VOL,
323 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100324
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200325 SOC_DOUBLE_R_TLV("HP DAC Playback Volume",
326 DACL1_2_HPLOUT_VOL, DACR1_2_HPROUT_VOL,
327 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100328 SOC_DOUBLE_R("HP DAC Playback Switch", HPLOUT_CTRL, HPROUT_CTRL, 3,
329 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200330 SOC_DOUBLE_R_TLV("HP Right PGA Bypass Playback Volume",
331 PGAR_2_HPLOUT_VOL, PGAR_2_HPROUT_VOL,
332 0, 118, 1, output_stage_tlv),
333 SOC_SINGLE_TLV("HPL PGA Bypass Playback Volume",
334 PGAL_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
335 SOC_SINGLE_TLV("HPR PGA Bypass Playback Volume",
336 PGAL_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
337 SOC_DOUBLE_R_TLV("HP Line2 Bypass Playback Volume",
338 LINE2L_2_HPLOUT_VOL, LINE2R_2_HPROUT_VOL,
339 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100340
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200341 SOC_DOUBLE_R_TLV("HPCOM DAC Playback Volume",
342 DACL1_2_HPLCOM_VOL, DACR1_2_HPRCOM_VOL,
343 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100344 SOC_DOUBLE_R("HPCOM DAC Playback Switch", HPLCOM_CTRL, HPRCOM_CTRL, 3,
345 0x01, 0),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200346 SOC_SINGLE_TLV("HPLCOM PGA Bypass Playback Volume",
347 PGAL_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
348 SOC_SINGLE_TLV("HPRCOM PGA Bypass Playback Volume",
349 PGAL_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
350 SOC_DOUBLE_R_TLV("HPCOM Line2 Bypass Playback Volume",
351 LINE2L_2_HPLCOM_VOL, LINE2R_2_HPRCOM_VOL,
352 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100353
354 /*
355 * Note: enable Automatic input Gain Controller with care. It can
356 * adjust PGA to max value when ADC is on and will never go back.
357 */
358 SOC_DOUBLE_R("AGC Switch", LAGC_CTRL_A, RAGC_CTRL_A, 7, 0x01, 0),
359
360 /* Input */
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200361 SOC_DOUBLE_R_TLV("PGA Capture Volume", LADC_VOL, RADC_VOL,
362 0, 119, 0, adc_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100363 SOC_DOUBLE_R("PGA Capture Switch", LADC_VOL, RADC_VOL, 7, 0x01, 1),
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300364
365 SOC_ENUM("ADC HPF Cut-off", aic3x_enum[ADC_HPF_ENUM]),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100366};
367
Randolph Chung6184f102010-08-20 12:47:53 +0800368/*
369 * Class-D amplifier gain. From 0 to 18 dB in 6 dB steps
370 */
371static DECLARE_TLV_DB_SCALE(classd_amp_tlv, 0, 600, 0);
372
373static const struct snd_kcontrol_new aic3x_classd_amp_gain_ctrl =
374 SOC_DOUBLE_TLV("Class-D Amplifier Gain", CLASSD_CTRL, 6, 4, 3, 0, classd_amp_tlv);
375
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100376/* Left DAC Mux */
377static const struct snd_kcontrol_new aic3x_left_dac_mux_controls =
378SOC_DAPM_ENUM("Route", aic3x_enum[LDAC_ENUM]);
379
380/* Right DAC Mux */
381static const struct snd_kcontrol_new aic3x_right_dac_mux_controls =
382SOC_DAPM_ENUM("Route", aic3x_enum[RDAC_ENUM]);
383
384/* Left HPCOM Mux */
385static const struct snd_kcontrol_new aic3x_left_hpcom_mux_controls =
386SOC_DAPM_ENUM("Route", aic3x_enum[LHPCOM_ENUM]);
387
388/* Right HPCOM Mux */
389static const struct snd_kcontrol_new aic3x_right_hpcom_mux_controls =
390SOC_DAPM_ENUM("Route", aic3x_enum[RHPCOM_ENUM]);
391
392/* Left DAC_L1 Mixer */
393static const struct snd_kcontrol_new aic3x_left_dac_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100394 SOC_DAPM_SINGLE("LineL Switch", DACL1_2_LLOPM_VOL, 7, 1, 0),
395 SOC_DAPM_SINGLE("LineR Switch", DACL1_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100396 SOC_DAPM_SINGLE("Mono Switch", DACL1_2_MONOLOPM_VOL, 7, 1, 0),
397 SOC_DAPM_SINGLE("HP Switch", DACL1_2_HPLOUT_VOL, 7, 1, 0),
398 SOC_DAPM_SINGLE("HPCOM Switch", DACL1_2_HPLCOM_VOL, 7, 1, 0),
399};
400
401/* Right DAC_R1 Mixer */
402static const struct snd_kcontrol_new aic3x_right_dac_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100403 SOC_DAPM_SINGLE("LineL Switch", DACR1_2_LLOPM_VOL, 7, 1, 0),
404 SOC_DAPM_SINGLE("LineR Switch", DACR1_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100405 SOC_DAPM_SINGLE("Mono Switch", DACR1_2_MONOLOPM_VOL, 7, 1, 0),
406 SOC_DAPM_SINGLE("HP Switch", DACR1_2_HPROUT_VOL, 7, 1, 0),
407 SOC_DAPM_SINGLE("HPCOM Switch", DACR1_2_HPRCOM_VOL, 7, 1, 0),
408};
409
410/* Left PGA Mixer */
411static const struct snd_kcontrol_new aic3x_left_pga_mixer_controls[] = {
412 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_LADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100413 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_LADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100414 SOC_DAPM_SINGLE_AIC3X("Line2L Switch", LINE2L_2_LADC_CTRL, 3, 1, 1),
415 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_LADC_CTRL, 4, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100416 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_LADC_CTRL, 0, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100417};
418
419/* Right PGA Mixer */
420static const struct snd_kcontrol_new aic3x_right_pga_mixer_controls[] = {
421 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100422 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_RADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100423 SOC_DAPM_SINGLE_AIC3X("Line2R Switch", LINE2R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100424 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_RADC_CTRL, 4, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100425 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_RADC_CTRL, 0, 1, 1),
426};
427
428/* Left Line1 Mux */
429static const struct snd_kcontrol_new aic3x_left_line1_mux_controls =
430SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_ENUM]);
431
432/* Right Line1 Mux */
433static const struct snd_kcontrol_new aic3x_right_line1_mux_controls =
434SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_ENUM]);
435
436/* Left Line2 Mux */
437static const struct snd_kcontrol_new aic3x_left_line2_mux_controls =
438SOC_DAPM_ENUM("Route", aic3x_enum[LINE2L_ENUM]);
439
440/* Right Line2 Mux */
441static const struct snd_kcontrol_new aic3x_right_line2_mux_controls =
442SOC_DAPM_ENUM("Route", aic3x_enum[LINE2R_ENUM]);
443
444/* Left PGA Bypass Mixer */
445static const struct snd_kcontrol_new aic3x_left_pga_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100446 SOC_DAPM_SINGLE("LineL Switch", PGAL_2_LLOPM_VOL, 7, 1, 0),
447 SOC_DAPM_SINGLE("LineR Switch", PGAL_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100448 SOC_DAPM_SINGLE("Mono Switch", PGAL_2_MONOLOPM_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100449 SOC_DAPM_SINGLE("HPL Switch", PGAL_2_HPLOUT_VOL, 7, 1, 0),
450 SOC_DAPM_SINGLE("HPR Switch", PGAL_2_HPROUT_VOL, 7, 1, 0),
451 SOC_DAPM_SINGLE("HPLCOM Switch", PGAL_2_HPLCOM_VOL, 7, 1, 0),
452 SOC_DAPM_SINGLE("HPRCOM Switch", PGAL_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100453};
454
455/* Right PGA Bypass Mixer */
456static const struct snd_kcontrol_new aic3x_right_pga_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100457 SOC_DAPM_SINGLE("LineL Switch", PGAR_2_LLOPM_VOL, 7, 1, 0),
458 SOC_DAPM_SINGLE("LineR Switch", PGAR_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100459 SOC_DAPM_SINGLE("Mono Switch", PGAR_2_MONOLOPM_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100460 SOC_DAPM_SINGLE("HPL Switch", PGAR_2_HPLOUT_VOL, 7, 1, 0),
461 SOC_DAPM_SINGLE("HPR Switch", PGAR_2_HPROUT_VOL, 7, 1, 0),
462 SOC_DAPM_SINGLE("HPLCOM Switch", PGAR_2_HPLCOM_VOL, 7, 1, 0),
463 SOC_DAPM_SINGLE("HPRCOM Switch", PGAR_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100464};
465
466/* Left Line2 Bypass Mixer */
467static const struct snd_kcontrol_new aic3x_left_line2_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100468 SOC_DAPM_SINGLE("LineL Switch", LINE2L_2_LLOPM_VOL, 7, 1, 0),
469 SOC_DAPM_SINGLE("LineR Switch", LINE2L_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100470 SOC_DAPM_SINGLE("Mono Switch", LINE2L_2_MONOLOPM_VOL, 7, 1, 0),
471 SOC_DAPM_SINGLE("HP Switch", LINE2L_2_HPLOUT_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100472 SOC_DAPM_SINGLE("HPLCOM Switch", LINE2L_2_HPLCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100473};
474
475/* Right Line2 Bypass Mixer */
476static const struct snd_kcontrol_new aic3x_right_line2_bp_mixer_controls[] = {
Daniel Mack54f01912008-11-26 17:47:36 +0100477 SOC_DAPM_SINGLE("LineL Switch", LINE2R_2_LLOPM_VOL, 7, 1, 0),
478 SOC_DAPM_SINGLE("LineR Switch", LINE2R_2_RLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100479 SOC_DAPM_SINGLE("Mono Switch", LINE2R_2_MONOLOPM_VOL, 7, 1, 0),
480 SOC_DAPM_SINGLE("HP Switch", LINE2R_2_HPROUT_VOL, 7, 1, 0),
Daniel Mack54f01912008-11-26 17:47:36 +0100481 SOC_DAPM_SINGLE("HPRCOM Switch", LINE2R_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100482};
483
484static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
485 /* Left DAC to Left Outputs */
486 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", DAC_PWR, 7, 0),
487 SND_SOC_DAPM_MUX("Left DAC Mux", SND_SOC_NOPM, 0, 0,
488 &aic3x_left_dac_mux_controls),
489 SND_SOC_DAPM_MIXER("Left DAC_L1 Mixer", SND_SOC_NOPM, 0, 0,
490 &aic3x_left_dac_mixer_controls[0],
491 ARRAY_SIZE(aic3x_left_dac_mixer_controls)),
492 SND_SOC_DAPM_MUX("Left HPCOM Mux", SND_SOC_NOPM, 0, 0,
493 &aic3x_left_hpcom_mux_controls),
494 SND_SOC_DAPM_PGA("Left Line Out", LLOPM_CTRL, 0, 0, NULL, 0),
495 SND_SOC_DAPM_PGA("Left HP Out", HPLOUT_CTRL, 0, 0, NULL, 0),
496 SND_SOC_DAPM_PGA("Left HP Com", HPLCOM_CTRL, 0, 0, NULL, 0),
497
498 /* Right DAC to Right Outputs */
499 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", DAC_PWR, 6, 0),
500 SND_SOC_DAPM_MUX("Right DAC Mux", SND_SOC_NOPM, 0, 0,
501 &aic3x_right_dac_mux_controls),
502 SND_SOC_DAPM_MIXER("Right DAC_R1 Mixer", SND_SOC_NOPM, 0, 0,
503 &aic3x_right_dac_mixer_controls[0],
504 ARRAY_SIZE(aic3x_right_dac_mixer_controls)),
505 SND_SOC_DAPM_MUX("Right HPCOM Mux", SND_SOC_NOPM, 0, 0,
506 &aic3x_right_hpcom_mux_controls),
507 SND_SOC_DAPM_PGA("Right Line Out", RLOPM_CTRL, 0, 0, NULL, 0),
508 SND_SOC_DAPM_PGA("Right HP Out", HPROUT_CTRL, 0, 0, NULL, 0),
509 SND_SOC_DAPM_PGA("Right HP Com", HPRCOM_CTRL, 0, 0, NULL, 0),
510
511 /* Mono Output */
512 SND_SOC_DAPM_PGA("Mono Out", MONOLOPM_CTRL, 0, 0, NULL, 0),
513
Daniel Mack54f01912008-11-26 17:47:36 +0100514 /* Inputs to Left ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100515 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", LINE1L_2_LADC_CTRL, 2, 0),
516 SND_SOC_DAPM_MIXER("Left PGA Mixer", SND_SOC_NOPM, 0, 0,
517 &aic3x_left_pga_mixer_controls[0],
518 ARRAY_SIZE(aic3x_left_pga_mixer_controls)),
519 SND_SOC_DAPM_MUX("Left Line1L Mux", SND_SOC_NOPM, 0, 0,
520 &aic3x_left_line1_mux_controls),
Daniel Mack54f01912008-11-26 17:47:36 +0100521 SND_SOC_DAPM_MUX("Left Line1R Mux", SND_SOC_NOPM, 0, 0,
522 &aic3x_left_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100523 SND_SOC_DAPM_MUX("Left Line2L Mux", SND_SOC_NOPM, 0, 0,
524 &aic3x_left_line2_mux_controls),
525
Daniel Mack54f01912008-11-26 17:47:36 +0100526 /* Inputs to Right ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100527 SND_SOC_DAPM_ADC("Right ADC", "Right Capture",
528 LINE1R_2_RADC_CTRL, 2, 0),
529 SND_SOC_DAPM_MIXER("Right PGA Mixer", SND_SOC_NOPM, 0, 0,
530 &aic3x_right_pga_mixer_controls[0],
531 ARRAY_SIZE(aic3x_right_pga_mixer_controls)),
Daniel Mack54f01912008-11-26 17:47:36 +0100532 SND_SOC_DAPM_MUX("Right Line1L Mux", SND_SOC_NOPM, 0, 0,
533 &aic3x_right_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100534 SND_SOC_DAPM_MUX("Right Line1R Mux", SND_SOC_NOPM, 0, 0,
535 &aic3x_right_line1_mux_controls),
536 SND_SOC_DAPM_MUX("Right Line2R Mux", SND_SOC_NOPM, 0, 0,
537 &aic3x_right_line2_mux_controls),
538
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300539 /*
540 * Not a real mic bias widget but similar function. This is for dynamic
541 * control of GPIO1 digital mic modulator clock output function when
542 * using digital mic.
543 */
544 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "GPIO1 dmic modclk",
545 AIC3X_GPIO1_REG, 4, 0xf,
546 AIC3X_GPIO1_FUNC_DIGITAL_MIC_MODCLK,
547 AIC3X_GPIO1_FUNC_DISABLED),
548
549 /*
550 * Also similar function like mic bias. Selects digital mic with
551 * configurable oversampling rate instead of ADC converter.
552 */
553 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 128",
554 AIC3X_ASD_INTF_CTRLA, 0, 3, 1, 0),
555 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 64",
556 AIC3X_ASD_INTF_CTRLA, 0, 3, 2, 0),
557 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 32",
558 AIC3X_ASD_INTF_CTRLA, 0, 3, 3, 0),
559
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100560 /* Mic Bias */
Jarkko Nikula0bd72a32008-06-25 14:42:08 +0300561 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2V",
562 MICBIAS_CTRL, 6, 3, 1, 0),
563 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2.5V",
564 MICBIAS_CTRL, 6, 3, 2, 0),
565 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias AVDD",
566 MICBIAS_CTRL, 6, 3, 3, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100567
568 /* Left PGA to Left Output bypass */
569 SND_SOC_DAPM_MIXER("Left PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
570 &aic3x_left_pga_bp_mixer_controls[0],
571 ARRAY_SIZE(aic3x_left_pga_bp_mixer_controls)),
572
573 /* Right PGA to Right Output bypass */
574 SND_SOC_DAPM_MIXER("Right PGA Bypass Mixer", SND_SOC_NOPM, 0, 0,
575 &aic3x_right_pga_bp_mixer_controls[0],
576 ARRAY_SIZE(aic3x_right_pga_bp_mixer_controls)),
577
578 /* Left Line2 to Left Output bypass */
579 SND_SOC_DAPM_MIXER("Left Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
580 &aic3x_left_line2_bp_mixer_controls[0],
581 ARRAY_SIZE(aic3x_left_line2_bp_mixer_controls)),
582
583 /* Right Line2 to Right Output bypass */
584 SND_SOC_DAPM_MIXER("Right Line2 Bypass Mixer", SND_SOC_NOPM, 0, 0,
585 &aic3x_right_line2_bp_mixer_controls[0],
586 ARRAY_SIZE(aic3x_right_line2_bp_mixer_controls)),
587
588 SND_SOC_DAPM_OUTPUT("LLOUT"),
589 SND_SOC_DAPM_OUTPUT("RLOUT"),
590 SND_SOC_DAPM_OUTPUT("MONO_LOUT"),
591 SND_SOC_DAPM_OUTPUT("HPLOUT"),
592 SND_SOC_DAPM_OUTPUT("HPROUT"),
593 SND_SOC_DAPM_OUTPUT("HPLCOM"),
594 SND_SOC_DAPM_OUTPUT("HPRCOM"),
595
596 SND_SOC_DAPM_INPUT("MIC3L"),
597 SND_SOC_DAPM_INPUT("MIC3R"),
598 SND_SOC_DAPM_INPUT("LINE1L"),
599 SND_SOC_DAPM_INPUT("LINE1R"),
600 SND_SOC_DAPM_INPUT("LINE2L"),
601 SND_SOC_DAPM_INPUT("LINE2R"),
602};
603
Randolph Chung6184f102010-08-20 12:47:53 +0800604static const struct snd_soc_dapm_widget aic3007_dapm_widgets[] = {
605 /* Class-D outputs */
606 SND_SOC_DAPM_PGA("Left Class-D Out", CLASSD_CTRL, 3, 0, NULL, 0),
607 SND_SOC_DAPM_PGA("Right Class-D Out", CLASSD_CTRL, 2, 0, NULL, 0),
608
609 SND_SOC_DAPM_OUTPUT("SPOP"),
610 SND_SOC_DAPM_OUTPUT("SPOM"),
611};
612
Mark Brownd0cc0d32008-05-13 14:55:22 +0200613static const struct snd_soc_dapm_route intercon[] = {
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100614 /* Left Output */
615 {"Left DAC Mux", "DAC_L1", "Left DAC"},
616 {"Left DAC Mux", "DAC_L2", "Left DAC"},
617 {"Left DAC Mux", "DAC_L3", "Left DAC"},
618
Daniel Mack54f01912008-11-26 17:47:36 +0100619 {"Left DAC_L1 Mixer", "LineL Switch", "Left DAC Mux"},
620 {"Left DAC_L1 Mixer", "LineR Switch", "Left DAC Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100621 {"Left DAC_L1 Mixer", "Mono Switch", "Left DAC Mux"},
622 {"Left DAC_L1 Mixer", "HP Switch", "Left DAC Mux"},
623 {"Left DAC_L1 Mixer", "HPCOM Switch", "Left DAC Mux"},
624 {"Left Line Out", NULL, "Left DAC Mux"},
625 {"Left HP Out", NULL, "Left DAC Mux"},
626
627 {"Left HPCOM Mux", "differential of HPLOUT", "Left DAC_L1 Mixer"},
628 {"Left HPCOM Mux", "constant VCM", "Left DAC_L1 Mixer"},
629 {"Left HPCOM Mux", "single-ended", "Left DAC_L1 Mixer"},
630
631 {"Left Line Out", NULL, "Left DAC_L1 Mixer"},
632 {"Mono Out", NULL, "Left DAC_L1 Mixer"},
633 {"Left HP Out", NULL, "Left DAC_L1 Mixer"},
634 {"Left HP Com", NULL, "Left HPCOM Mux"},
635
636 {"LLOUT", NULL, "Left Line Out"},
637 {"LLOUT", NULL, "Left Line Out"},
638 {"HPLOUT", NULL, "Left HP Out"},
639 {"HPLCOM", NULL, "Left HP Com"},
640
641 /* Right Output */
642 {"Right DAC Mux", "DAC_R1", "Right DAC"},
643 {"Right DAC Mux", "DAC_R2", "Right DAC"},
644 {"Right DAC Mux", "DAC_R3", "Right DAC"},
645
Daniel Mack54f01912008-11-26 17:47:36 +0100646 {"Right DAC_R1 Mixer", "LineL Switch", "Right DAC Mux"},
647 {"Right DAC_R1 Mixer", "LineR Switch", "Right DAC Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100648 {"Right DAC_R1 Mixer", "Mono Switch", "Right DAC Mux"},
649 {"Right DAC_R1 Mixer", "HP Switch", "Right DAC Mux"},
650 {"Right DAC_R1 Mixer", "HPCOM Switch", "Right DAC Mux"},
651 {"Right Line Out", NULL, "Right DAC Mux"},
652 {"Right HP Out", NULL, "Right DAC Mux"},
653
654 {"Right HPCOM Mux", "differential of HPROUT", "Right DAC_R1 Mixer"},
655 {"Right HPCOM Mux", "constant VCM", "Right DAC_R1 Mixer"},
656 {"Right HPCOM Mux", "single-ended", "Right DAC_R1 Mixer"},
657 {"Right HPCOM Mux", "differential of HPLCOM", "Right DAC_R1 Mixer"},
658 {"Right HPCOM Mux", "external feedback", "Right DAC_R1 Mixer"},
659
660 {"Right Line Out", NULL, "Right DAC_R1 Mixer"},
661 {"Mono Out", NULL, "Right DAC_R1 Mixer"},
662 {"Right HP Out", NULL, "Right DAC_R1 Mixer"},
663 {"Right HP Com", NULL, "Right HPCOM Mux"},
664
665 {"RLOUT", NULL, "Right Line Out"},
666 {"RLOUT", NULL, "Right Line Out"},
667 {"HPROUT", NULL, "Right HP Out"},
668 {"HPRCOM", NULL, "Right HP Com"},
669
670 /* Mono Output */
Jarkko Nikula5b006132008-05-09 15:05:41 +0200671 {"MONO_LOUT", NULL, "Mono Out"},
672 {"MONO_LOUT", NULL, "Mono Out"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100673
674 /* Left Input */
675 {"Left Line1L Mux", "single-ended", "LINE1L"},
676 {"Left Line1L Mux", "differential", "LINE1L"},
677
678 {"Left Line2L Mux", "single-ended", "LINE2L"},
679 {"Left Line2L Mux", "differential", "LINE2L"},
680
681 {"Left PGA Mixer", "Line1L Switch", "Left Line1L Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100682 {"Left PGA Mixer", "Line1R Switch", "Left Line1R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100683 {"Left PGA Mixer", "Line2L Switch", "Left Line2L Mux"},
684 {"Left PGA Mixer", "Mic3L Switch", "MIC3L"},
Daniel Mack54f01912008-11-26 17:47:36 +0100685 {"Left PGA Mixer", "Mic3R Switch", "MIC3R"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100686
687 {"Left ADC", NULL, "Left PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300688 {"Left ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100689
690 /* Right Input */
691 {"Right Line1R Mux", "single-ended", "LINE1R"},
692 {"Right Line1R Mux", "differential", "LINE1R"},
693
694 {"Right Line2R Mux", "single-ended", "LINE2R"},
695 {"Right Line2R Mux", "differential", "LINE2R"},
696
Daniel Mack54f01912008-11-26 17:47:36 +0100697 {"Right PGA Mixer", "Line1L Switch", "Right Line1L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100698 {"Right PGA Mixer", "Line1R Switch", "Right Line1R Mux"},
699 {"Right PGA Mixer", "Line2R Switch", "Right Line2R Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100700 {"Right PGA Mixer", "Mic3L Switch", "MIC3L"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100701 {"Right PGA Mixer", "Mic3R Switch", "MIC3R"},
702
703 {"Right ADC", NULL, "Right PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300704 {"Right ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100705
706 /* Left PGA Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100707 {"Left PGA Bypass Mixer", "LineL Switch", "Left PGA Mixer"},
708 {"Left PGA Bypass Mixer", "LineR Switch", "Left PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100709 {"Left PGA Bypass Mixer", "Mono Switch", "Left PGA Mixer"},
Daniel Mack54f01912008-11-26 17:47:36 +0100710 {"Left PGA Bypass Mixer", "HPL Switch", "Left PGA Mixer"},
711 {"Left PGA Bypass Mixer", "HPR Switch", "Left PGA Mixer"},
712 {"Left PGA Bypass Mixer", "HPLCOM Switch", "Left PGA Mixer"},
713 {"Left PGA Bypass Mixer", "HPRCOM Switch", "Left PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100714
715 {"Left HPCOM Mux", "differential of HPLOUT", "Left PGA Bypass Mixer"},
716 {"Left HPCOM Mux", "constant VCM", "Left PGA Bypass Mixer"},
717 {"Left HPCOM Mux", "single-ended", "Left PGA Bypass Mixer"},
718
719 {"Left Line Out", NULL, "Left PGA Bypass Mixer"},
720 {"Mono Out", NULL, "Left PGA Bypass Mixer"},
721 {"Left HP Out", NULL, "Left PGA Bypass Mixer"},
722
723 /* Right PGA Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100724 {"Right PGA Bypass Mixer", "LineL Switch", "Right PGA Mixer"},
725 {"Right PGA Bypass Mixer", "LineR Switch", "Right PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100726 {"Right PGA Bypass Mixer", "Mono Switch", "Right PGA Mixer"},
Daniel Mack54f01912008-11-26 17:47:36 +0100727 {"Right PGA Bypass Mixer", "HPL Switch", "Right PGA Mixer"},
728 {"Right PGA Bypass Mixer", "HPR Switch", "Right PGA Mixer"},
729 {"Right PGA Bypass Mixer", "HPLCOM Switch", "Right PGA Mixer"},
730 {"Right PGA Bypass Mixer", "HPRCOM Switch", "Right PGA Mixer"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100731
732 {"Right HPCOM Mux", "differential of HPROUT", "Right PGA Bypass Mixer"},
733 {"Right HPCOM Mux", "constant VCM", "Right PGA Bypass Mixer"},
734 {"Right HPCOM Mux", "single-ended", "Right PGA Bypass Mixer"},
735 {"Right HPCOM Mux", "differential of HPLCOM", "Right PGA Bypass Mixer"},
736 {"Right HPCOM Mux", "external feedback", "Right PGA Bypass Mixer"},
737
738 {"Right Line Out", NULL, "Right PGA Bypass Mixer"},
739 {"Mono Out", NULL, "Right PGA Bypass Mixer"},
740 {"Right HP Out", NULL, "Right PGA Bypass Mixer"},
741
742 /* Left Line2 Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100743 {"Left Line2 Bypass Mixer", "LineL Switch", "Left Line2L Mux"},
744 {"Left Line2 Bypass Mixer", "LineR Switch", "Left Line2L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100745 {"Left Line2 Bypass Mixer", "Mono Switch", "Left Line2L Mux"},
746 {"Left Line2 Bypass Mixer", "HP Switch", "Left Line2L Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100747 {"Left Line2 Bypass Mixer", "HPLCOM Switch", "Left Line2L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100748
749 {"Left HPCOM Mux", "differential of HPLOUT", "Left Line2 Bypass Mixer"},
750 {"Left HPCOM Mux", "constant VCM", "Left Line2 Bypass Mixer"},
751 {"Left HPCOM Mux", "single-ended", "Left Line2 Bypass Mixer"},
752
753 {"Left Line Out", NULL, "Left Line2 Bypass Mixer"},
754 {"Mono Out", NULL, "Left Line2 Bypass Mixer"},
755 {"Left HP Out", NULL, "Left Line2 Bypass Mixer"},
756
757 /* Right Line2 Bypass */
Daniel Mack54f01912008-11-26 17:47:36 +0100758 {"Right Line2 Bypass Mixer", "LineL Switch", "Right Line2R Mux"},
759 {"Right Line2 Bypass Mixer", "LineR Switch", "Right Line2R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100760 {"Right Line2 Bypass Mixer", "Mono Switch", "Right Line2R Mux"},
761 {"Right Line2 Bypass Mixer", "HP Switch", "Right Line2R Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100762 {"Right Line2 Bypass Mixer", "HPRCOM Switch", "Right Line2R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100763
764 {"Right HPCOM Mux", "differential of HPROUT", "Right Line2 Bypass Mixer"},
765 {"Right HPCOM Mux", "constant VCM", "Right Line2 Bypass Mixer"},
766 {"Right HPCOM Mux", "single-ended", "Right Line2 Bypass Mixer"},
767 {"Right HPCOM Mux", "differential of HPLCOM", "Right Line2 Bypass Mixer"},
768 {"Right HPCOM Mux", "external feedback", "Right Line2 Bypass Mixer"},
769
770 {"Right Line Out", NULL, "Right Line2 Bypass Mixer"},
771 {"Mono Out", NULL, "Right Line2 Bypass Mixer"},
772 {"Right HP Out", NULL, "Right Line2 Bypass Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300773
774 /*
775 * Logical path between digital mic enable and GPIO1 modulator clock
776 * output function
777 */
778 {"GPIO1 dmic modclk", NULL, "DMic Rate 128"},
779 {"GPIO1 dmic modclk", NULL, "DMic Rate 64"},
780 {"GPIO1 dmic modclk", NULL, "DMic Rate 32"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100781};
782
Randolph Chung6184f102010-08-20 12:47:53 +0800783static const struct snd_soc_dapm_route intercon_3007[] = {
784 /* Class-D outputs */
785 {"Left Class-D Out", NULL, "Left Line Out"},
786 {"Right Class-D Out", NULL, "Left Line Out"},
787 {"SPOP", NULL, "Left Class-D Out"},
788 {"SPOM", NULL, "Right Class-D Out"},
789};
790
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100791static int aic3x_add_widgets(struct snd_soc_codec *codec)
792{
Randolph Chung6184f102010-08-20 12:47:53 +0800793 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
794
Mark Brownd0cc0d32008-05-13 14:55:22 +0200795 snd_soc_dapm_new_controls(codec, aic3x_dapm_widgets,
796 ARRAY_SIZE(aic3x_dapm_widgets));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100797
798 /* set up audio path interconnects */
Mark Brownd0cc0d32008-05-13 14:55:22 +0200799 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100800
Randolph Chung6184f102010-08-20 12:47:53 +0800801 if (aic3x->model == AIC3X_MODEL_3007) {
802 snd_soc_dapm_new_controls(codec, aic3007_dapm_widgets,
803 ARRAY_SIZE(aic3007_dapm_widgets));
804 snd_soc_dapm_add_routes(codec, intercon_3007, ARRAY_SIZE(intercon_3007));
805 }
806
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100807 return 0;
808}
809
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100810static int aic3x_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000811 struct snd_pcm_hw_params *params,
812 struct snd_soc_dai *dai)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100813{
814 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000815 struct snd_soc_codec *codec =rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900816 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200817 int codec_clk = 0, bypass_pll = 0, fsref, last_clk = 0;
Peter Meerwald255173b2009-12-14 14:44:56 +0100818 u8 data, j, r, p, pll_q, pll_p = 1, pll_r = 1, pll_j = 1;
819 u16 d, pll_d = 1;
Chaithrika U S06c71282009-07-22 07:45:04 -0400820 u8 reg;
Peter Meerwald255173b2009-12-14 14:44:56 +0100821 int clk;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100822
823 /* select data word length */
824 data =
825 aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & (~(0x3 << 4));
826 switch (params_format(params)) {
827 case SNDRV_PCM_FORMAT_S16_LE:
828 break;
829 case SNDRV_PCM_FORMAT_S20_3LE:
830 data |= (0x01 << 4);
831 break;
832 case SNDRV_PCM_FORMAT_S24_LE:
833 data |= (0x02 << 4);
834 break;
835 case SNDRV_PCM_FORMAT_S32_LE:
836 data |= (0x03 << 4);
837 break;
838 }
839 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, data);
840
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200841 /* Fsref can be 44100 or 48000 */
842 fsref = (params_rate(params) % 11025 == 0) ? 44100 : 48000;
843
844 /* Try to find a value for Q which allows us to bypass the PLL and
845 * generate CODEC_CLK directly. */
846 for (pll_q = 2; pll_q < 18; pll_q++)
847 if (aic3x->sysclk / (128 * pll_q) == fsref) {
848 bypass_pll = 1;
849 break;
850 }
851
852 if (bypass_pll) {
853 pll_q &= 0xf;
854 aic3x_write(codec, AIC3X_PLL_PROGA_REG, pll_q << PLLQ_SHIFT);
855 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_CLKDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400856 /* disable PLL if it is bypassed */
857 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
858 aic3x_write(codec, AIC3X_PLL_PROGA_REG, reg & ~PLL_ENABLE);
859
860 } else {
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200861 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_PLLDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400862 /* enable PLL when it is used */
863 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
864 aic3x_write(codec, AIC3X_PLL_PROGA_REG, reg | PLL_ENABLE);
865 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200866
867 /* Route Left DAC to left channel input and
868 * right DAC to right channel input */
869 data = (LDAC2LCH | RDAC2RCH);
870 data |= (fsref == 44100) ? FSREF_44100 : FSREF_48000;
871 if (params_rate(params) >= 64000)
872 data |= DUAL_RATE_MODE;
873 aic3x_write(codec, AIC3X_CODEC_DATAPATH_REG, data);
874
875 /* codec sample rate select */
876 data = (fsref * 20) / params_rate(params);
877 if (params_rate(params) < 64000)
878 data /= 2;
879 data /= 5;
880 data -= 2;
881 data |= (data << 4);
882 aic3x_write(codec, AIC3X_SAMPLE_RATE_SEL_REG, data);
883
884 if (bypass_pll)
885 return 0;
886
Peter Meerwald255173b2009-12-14 14:44:56 +0100887 /* Use PLL, compute apropriate setup for j, d, r and p, the closest
888 * one wins the game. Try with d==0 first, next with d!=0.
889 * Constraints for j are according to the datasheet.
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200890 * The sysclk is divided by 1000 to prevent integer overflows.
891 */
Peter Meerwald255173b2009-12-14 14:44:56 +0100892
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200893 codec_clk = (2048 * fsref) / (aic3x->sysclk / 1000);
894
895 for (r = 1; r <= 16; r++)
896 for (p = 1; p <= 8; p++) {
Peter Meerwald255173b2009-12-14 14:44:56 +0100897 for (j = 4; j <= 55; j++) {
898 /* This is actually 1000*((j+(d/10000))*r)/p
899 * The term had to be converted to get
900 * rid of the division by 10000; d = 0 here
901 */
Mark Brown5baf8312010-01-02 13:13:42 +0000902 int tmp_clk = (1000 * j * r) / p;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200903
Peter Meerwald255173b2009-12-14 14:44:56 +0100904 /* Check whether this values get closer than
905 * the best ones we had before
906 */
Mark Brown5baf8312010-01-02 13:13:42 +0000907 if (abs(codec_clk - tmp_clk) <
Peter Meerwald255173b2009-12-14 14:44:56 +0100908 abs(codec_clk - last_clk)) {
909 pll_j = j; pll_d = 0;
910 pll_r = r; pll_p = p;
Mark Brown5baf8312010-01-02 13:13:42 +0000911 last_clk = tmp_clk;
Peter Meerwald255173b2009-12-14 14:44:56 +0100912 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200913
Peter Meerwald255173b2009-12-14 14:44:56 +0100914 /* Early exit for exact matches */
Mark Brown5baf8312010-01-02 13:13:42 +0000915 if (tmp_clk == codec_clk)
Peter Meerwald255173b2009-12-14 14:44:56 +0100916 goto found;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200917 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200918 }
919
Peter Meerwald255173b2009-12-14 14:44:56 +0100920 /* try with d != 0 */
921 for (p = 1; p <= 8; p++) {
922 j = codec_clk * p / 1000;
923
924 if (j < 4 || j > 11)
925 continue;
926
927 /* do not use codec_clk here since we'd loose precision */
928 d = ((2048 * p * fsref) - j * aic3x->sysclk)
929 * 100 / (aic3x->sysclk/100);
930
931 clk = (10000 * j + d) / (10 * p);
932
933 /* check whether this values get closer than the best
934 * ones we had before */
935 if (abs(codec_clk - clk) < abs(codec_clk - last_clk)) {
936 pll_j = j; pll_d = d; pll_r = 1; pll_p = p;
937 last_clk = clk;
938 }
939
940 /* Early exit for exact matches */
941 if (clk == codec_clk)
942 goto found;
943 }
944
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200945 if (last_clk == 0) {
946 printk(KERN_ERR "%s(): unable to setup PLL\n", __func__);
947 return -EINVAL;
948 }
949
Peter Meerwald255173b2009-12-14 14:44:56 +0100950found:
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200951 data = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
952 aic3x_write(codec, AIC3X_PLL_PROGA_REG, data | (pll_p << PLLP_SHIFT));
953 aic3x_write(codec, AIC3X_OVRF_STATUS_AND_PLLR_REG, pll_r << PLLR_SHIFT);
954 aic3x_write(codec, AIC3X_PLL_PROGB_REG, pll_j << PLLJ_SHIFT);
955 aic3x_write(codec, AIC3X_PLL_PROGC_REG, (pll_d >> 6) << PLLD_MSB_SHIFT);
956 aic3x_write(codec, AIC3X_PLL_PROGD_REG,
957 (pll_d & 0x3F) << PLLD_LSB_SHIFT);
958
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100959 return 0;
960}
961
Liam Girdwoode550e172008-07-07 16:07:52 +0100962static int aic3x_mute(struct snd_soc_dai *dai, int mute)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100963{
964 struct snd_soc_codec *codec = dai->codec;
965 u8 ldac_reg = aic3x_read_reg_cache(codec, LDAC_VOL) & ~MUTE_ON;
966 u8 rdac_reg = aic3x_read_reg_cache(codec, RDAC_VOL) & ~MUTE_ON;
967
968 if (mute) {
969 aic3x_write(codec, LDAC_VOL, ldac_reg | MUTE_ON);
970 aic3x_write(codec, RDAC_VOL, rdac_reg | MUTE_ON);
971 } else {
972 aic3x_write(codec, LDAC_VOL, ldac_reg);
973 aic3x_write(codec, RDAC_VOL, rdac_reg);
974 }
975
976 return 0;
977}
978
Liam Girdwoode550e172008-07-07 16:07:52 +0100979static int aic3x_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100980 int clk_id, unsigned int freq, int dir)
981{
982 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900983 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100984
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200985 aic3x->sysclk = freq;
986 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100987}
988
Liam Girdwoode550e172008-07-07 16:07:52 +0100989static int aic3x_set_dai_fmt(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100990 unsigned int fmt)
991{
992 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900993 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Jarkko Nikula81971a12008-06-25 14:58:45 +0300994 u8 iface_areg, iface_breg;
Troy Kiskya24f4f62008-12-19 13:05:22 -0700995 int delay = 0;
Jarkko Nikula81971a12008-06-25 14:58:45 +0300996
997 iface_areg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLA) & 0x3f;
998 iface_breg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & 0x3f;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100999
1000 /* set master/slave audio interface */
1001 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1002 case SND_SOC_DAIFMT_CBM_CFM:
1003 aic3x->master = 1;
1004 iface_areg |= BIT_CLK_MASTER | WORD_CLK_MASTER;
1005 break;
1006 case SND_SOC_DAIFMT_CBS_CFS:
1007 aic3x->master = 0;
1008 break;
1009 default:
1010 return -EINVAL;
1011 }
1012
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001013 /*
1014 * match both interface format and signal polarities since they
1015 * are fixed
1016 */
1017 switch (fmt & (SND_SOC_DAIFMT_FORMAT_MASK |
1018 SND_SOC_DAIFMT_INV_MASK)) {
1019 case (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001020 break;
Troy Kiskya24f4f62008-12-19 13:05:22 -07001021 case (SND_SOC_DAIFMT_DSP_A | SND_SOC_DAIFMT_IB_NF):
1022 delay = 1;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001023 case (SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_IB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001024 iface_breg |= (0x01 << 6);
1025 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001026 case (SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001027 iface_breg |= (0x02 << 6);
1028 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001029 case (SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001030 iface_breg |= (0x03 << 6);
1031 break;
1032 default:
1033 return -EINVAL;
1034 }
1035
1036 /* set iface */
1037 aic3x_write(codec, AIC3X_ASD_INTF_CTRLA, iface_areg);
1038 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, iface_breg);
Troy Kiskya24f4f62008-12-19 13:05:22 -07001039 aic3x_write(codec, AIC3X_ASD_INTF_CTRLC, delay);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001040
1041 return 0;
1042}
1043
Mark Brown0be98982008-05-19 12:31:28 +02001044static int aic3x_set_bias_level(struct snd_soc_codec *codec,
1045 enum snd_soc_bias_level level)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001046{
Mark Brownb2c812e2010-04-14 15:35:19 +09001047 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001048 u8 reg;
1049
Mark Brown0be98982008-05-19 12:31:28 +02001050 switch (level) {
1051 case SND_SOC_BIAS_ON:
Jarkko Nikuladb138022010-04-26 15:49:13 +03001052 break;
1053 case SND_SOC_BIAS_PREPARE:
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001054 if (aic3x->master) {
1055 /* enable pll */
1056 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
1057 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
1058 reg | PLL_ENABLE);
1059 }
1060 break;
Mark Brown0be98982008-05-19 12:31:28 +02001061 case SND_SOC_BIAS_STANDBY:
Jarkko Nikuladb138022010-04-26 15:49:13 +03001062 /* fall through and disable pll */
Mark Brown0be98982008-05-19 12:31:28 +02001063 case SND_SOC_BIAS_OFF:
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001064 if (aic3x->master) {
1065 /* disable pll */
1066 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
1067 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
1068 reg & ~PLL_ENABLE);
1069 }
1070 break;
1071 }
Mark Brown0be98982008-05-19 12:31:28 +02001072 codec->bias_level = level;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001073
1074 return 0;
1075}
1076
Daniel Mack54e7e612008-04-30 16:20:52 +02001077void aic3x_set_gpio(struct snd_soc_codec *codec, int gpio, int state)
1078{
1079 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1080 u8 bit = gpio ? 3: 0;
1081 u8 val = aic3x_read_reg_cache(codec, reg) & ~(1 << bit);
1082 aic3x_write(codec, reg, val | (!!state << bit));
1083}
1084EXPORT_SYMBOL_GPL(aic3x_set_gpio);
1085
1086int aic3x_get_gpio(struct snd_soc_codec *codec, int gpio)
1087{
1088 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1089 u8 val, bit = gpio ? 2: 1;
1090
1091 aic3x_read(codec, reg, &val);
1092 return (val >> bit) & 1;
1093}
1094EXPORT_SYMBOL_GPL(aic3x_get_gpio);
1095
Daniel Mack6f2a9742008-12-03 11:44:17 +01001096void aic3x_set_headset_detection(struct snd_soc_codec *codec, int detect,
1097 int headset_debounce, int button_debounce)
1098{
1099 u8 val;
1100
1101 val = ((detect & AIC3X_HEADSET_DETECT_MASK)
1102 << AIC3X_HEADSET_DETECT_SHIFT) |
1103 ((headset_debounce & AIC3X_HEADSET_DEBOUNCE_MASK)
1104 << AIC3X_HEADSET_DEBOUNCE_SHIFT) |
1105 ((button_debounce & AIC3X_BUTTON_DEBOUNCE_MASK)
1106 << AIC3X_BUTTON_DEBOUNCE_SHIFT);
1107
1108 if (detect & AIC3X_HEADSET_DETECT_MASK)
1109 val |= AIC3X_HEADSET_DETECT_ENABLED;
1110
1111 aic3x_write(codec, AIC3X_HEADSET_DETECT_CTRL_A, val);
1112}
1113EXPORT_SYMBOL_GPL(aic3x_set_headset_detection);
1114
Daniel Mack54e7e612008-04-30 16:20:52 +02001115int aic3x_headset_detected(struct snd_soc_codec *codec)
1116{
1117 u8 val;
Daniel Mack6f2a9742008-12-03 11:44:17 +01001118 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1119 return (val >> 4) & 1;
Daniel Mack54e7e612008-04-30 16:20:52 +02001120}
1121EXPORT_SYMBOL_GPL(aic3x_headset_detected);
1122
Daniel Mack6f2a9742008-12-03 11:44:17 +01001123int aic3x_button_pressed(struct snd_soc_codec *codec)
1124{
1125 u8 val;
1126 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1127 return (val >> 5) & 1;
1128}
1129EXPORT_SYMBOL_GPL(aic3x_button_pressed);
1130
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001131#define AIC3X_RATES SNDRV_PCM_RATE_8000_96000
1132#define AIC3X_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
1133 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
1134
Eric Miao6335d052009-03-03 09:41:00 +08001135static struct snd_soc_dai_ops aic3x_dai_ops = {
1136 .hw_params = aic3x_hw_params,
1137 .digital_mute = aic3x_mute,
1138 .set_sysclk = aic3x_set_dai_sysclk,
1139 .set_fmt = aic3x_set_dai_fmt,
1140};
1141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001142static struct snd_soc_dai_driver aic3x_dai = {
1143 .name = "tlv320aic3x-hifi",
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001144 .playback = {
1145 .stream_name = "Playback",
1146 .channels_min = 1,
1147 .channels_max = 2,
1148 .rates = AIC3X_RATES,
1149 .formats = AIC3X_FORMATS,},
1150 .capture = {
1151 .stream_name = "Capture",
1152 .channels_min = 1,
1153 .channels_max = 2,
1154 .rates = AIC3X_RATES,
1155 .formats = AIC3X_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001156 .ops = &aic3x_dai_ops,
Randolph Chung14017612010-08-19 12:06:17 +01001157 .symmetric_rates = 1,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001158};
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001159
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001160static int aic3x_suspend(struct snd_soc_codec *codec, pm_message_t state)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001161{
Mark Brown0be98982008-05-19 12:31:28 +02001162 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001163
1164 return 0;
1165}
1166
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001167static int aic3x_resume(struct snd_soc_codec *codec)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001168{
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001169 int i;
1170 u8 data[2];
1171 u8 *cache = codec->reg_cache;
1172
1173 /* Sync reg_cache with the hardware */
1174 for (i = 0; i < ARRAY_SIZE(aic3x_reg); i++) {
1175 data[0] = i;
1176 data[1] = cache[i];
1177 codec->hw_write(codec->control_data, data, 2);
1178 }
1179
Mark Brown29e189c2010-05-07 20:30:00 +01001180 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001181
1182 return 0;
1183}
1184
1185/*
1186 * initialise the AIC3X driver
1187 * register the mixer and dsp interfaces with the kernel
1188 */
Ben Dookscb3826f2009-08-20 22:50:41 +01001189static int aic3x_init(struct snd_soc_codec *codec)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001190{
Randolph Chung6184f102010-08-20 12:47:53 +08001191 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001192 int reg;
1193
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001194 aic3x_write(codec, AIC3X_PAGE_SELECT, PAGE0_SELECT);
1195 aic3x_write(codec, AIC3X_RESET, SOFT_RESET);
1196
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001197 /* DAC default volume and mute */
1198 aic3x_write(codec, LDAC_VOL, DEFAULT_VOL | MUTE_ON);
1199 aic3x_write(codec, RDAC_VOL, DEFAULT_VOL | MUTE_ON);
1200
1201 /* DAC to HP default volume and route to Output mixer */
1202 aic3x_write(codec, DACL1_2_HPLOUT_VOL, DEFAULT_VOL | ROUTE_ON);
1203 aic3x_write(codec, DACR1_2_HPROUT_VOL, DEFAULT_VOL | ROUTE_ON);
1204 aic3x_write(codec, DACL1_2_HPLCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1205 aic3x_write(codec, DACR1_2_HPRCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1206 /* DAC to Line Out default volume and route to Output mixer */
1207 aic3x_write(codec, DACL1_2_LLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1208 aic3x_write(codec, DACR1_2_RLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1209 /* DAC to Mono Line Out default volume and route to Output mixer */
1210 aic3x_write(codec, DACL1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1211 aic3x_write(codec, DACR1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1212
1213 /* unmute all outputs */
1214 reg = aic3x_read_reg_cache(codec, LLOPM_CTRL);
1215 aic3x_write(codec, LLOPM_CTRL, reg | UNMUTE);
1216 reg = aic3x_read_reg_cache(codec, RLOPM_CTRL);
1217 aic3x_write(codec, RLOPM_CTRL, reg | UNMUTE);
1218 reg = aic3x_read_reg_cache(codec, MONOLOPM_CTRL);
1219 aic3x_write(codec, MONOLOPM_CTRL, reg | UNMUTE);
1220 reg = aic3x_read_reg_cache(codec, HPLOUT_CTRL);
1221 aic3x_write(codec, HPLOUT_CTRL, reg | UNMUTE);
1222 reg = aic3x_read_reg_cache(codec, HPROUT_CTRL);
1223 aic3x_write(codec, HPROUT_CTRL, reg | UNMUTE);
1224 reg = aic3x_read_reg_cache(codec, HPLCOM_CTRL);
1225 aic3x_write(codec, HPLCOM_CTRL, reg | UNMUTE);
1226 reg = aic3x_read_reg_cache(codec, HPRCOM_CTRL);
1227 aic3x_write(codec, HPRCOM_CTRL, reg | UNMUTE);
1228
1229 /* ADC default volume and unmute */
1230 aic3x_write(codec, LADC_VOL, DEFAULT_GAIN);
1231 aic3x_write(codec, RADC_VOL, DEFAULT_GAIN);
1232 /* By default route Line1 to ADC PGA mixer */
1233 aic3x_write(codec, LINE1L_2_LADC_CTRL, 0x0);
1234 aic3x_write(codec, LINE1R_2_RADC_CTRL, 0x0);
1235
1236 /* PGA to HP Bypass default volume, disconnect from Output Mixer */
1237 aic3x_write(codec, PGAL_2_HPLOUT_VOL, DEFAULT_VOL);
1238 aic3x_write(codec, PGAR_2_HPROUT_VOL, DEFAULT_VOL);
1239 aic3x_write(codec, PGAL_2_HPLCOM_VOL, DEFAULT_VOL);
1240 aic3x_write(codec, PGAR_2_HPRCOM_VOL, DEFAULT_VOL);
1241 /* PGA to Line Out default volume, disconnect from Output Mixer */
1242 aic3x_write(codec, PGAL_2_LLOPM_VOL, DEFAULT_VOL);
1243 aic3x_write(codec, PGAR_2_RLOPM_VOL, DEFAULT_VOL);
1244 /* PGA to Mono Line Out default volume, disconnect from Output Mixer */
1245 aic3x_write(codec, PGAL_2_MONOLOPM_VOL, DEFAULT_VOL);
1246 aic3x_write(codec, PGAR_2_MONOLOPM_VOL, DEFAULT_VOL);
1247
1248 /* Line2 to HP Bypass default volume, disconnect from Output Mixer */
1249 aic3x_write(codec, LINE2L_2_HPLOUT_VOL, DEFAULT_VOL);
1250 aic3x_write(codec, LINE2R_2_HPROUT_VOL, DEFAULT_VOL);
1251 aic3x_write(codec, LINE2L_2_HPLCOM_VOL, DEFAULT_VOL);
1252 aic3x_write(codec, LINE2R_2_HPRCOM_VOL, DEFAULT_VOL);
1253 /* Line2 Line Out default volume, disconnect from Output Mixer */
1254 aic3x_write(codec, LINE2L_2_LLOPM_VOL, DEFAULT_VOL);
1255 aic3x_write(codec, LINE2R_2_RLOPM_VOL, DEFAULT_VOL);
1256 /* Line2 to Mono Out default volume, disconnect from Output Mixer */
1257 aic3x_write(codec, LINE2L_2_MONOLOPM_VOL, DEFAULT_VOL);
1258 aic3x_write(codec, LINE2R_2_MONOLOPM_VOL, DEFAULT_VOL);
1259
Randolph Chung6184f102010-08-20 12:47:53 +08001260 if (aic3x->model == AIC3X_MODEL_3007) {
1261 /* Class-D speaker driver init; datasheet p. 46 */
1262 aic3x_write(codec, AIC3X_PAGE_SELECT, 0x0D);
1263 aic3x_write(codec, 0xD, 0x0D);
1264 aic3x_write(codec, 0x8, 0x5C);
1265 aic3x_write(codec, 0x8, 0x5D);
1266 aic3x_write(codec, 0x8, 0x5C);
1267 aic3x_write(codec, AIC3X_PAGE_SELECT, 0x00);
1268 aic3x_write(codec, CLASSD_CTRL, 0);
1269 }
1270
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001271 /* off, with power on */
Mark Brown0be98982008-05-19 12:31:28 +02001272 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001273
Ben Dookscb3826f2009-08-20 22:50:41 +01001274 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001275}
1276
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001277static int aic3x_probe(struct snd_soc_codec *codec)
Ben Dookscb3826f2009-08-20 22:50:41 +01001278{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001279 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001280
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001281 codec->hw_write = (hw_write_t) i2c_master_send;
1282 codec->control_data = aic3x->control_data;
1283
1284 if (aic3x->setup) {
1285 /* setup GPIO functions */
1286 aic3x_write(codec, AIC3X_GPIO1_REG,
1287 (aic3x->setup->gpio_func[0] & 0xf) << 4);
1288 aic3x_write(codec, AIC3X_GPIO2_REG,
1289 (aic3x->setup->gpio_func[1] & 0xf) << 4);
Ben Dookscb3826f2009-08-20 22:50:41 +01001290 }
1291
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001292 aic3x_init(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001293
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001294 snd_soc_add_controls(codec, aic3x_snd_controls,
1295 ARRAY_SIZE(aic3x_snd_controls));
Randolph Chung6184f102010-08-20 12:47:53 +08001296 if (aic3x->model == AIC3X_MODEL_3007)
1297 snd_soc_add_controls(codec, &aic3x_classd_amp_gain_ctrl, 1);
Ben Dookscb3826f2009-08-20 22:50:41 +01001298
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001299 aic3x_add_widgets(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001300
1301 return 0;
1302}
1303
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001304static int aic3x_remove(struct snd_soc_codec *codec)
Ben Dookscb3826f2009-08-20 22:50:41 +01001305{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001306 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Ben Dookscb3826f2009-08-20 22:50:41 +01001307 return 0;
1308}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001309
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001310static struct snd_soc_codec_driver soc_codec_dev_aic3x = {
1311 .read = aic3x_read_reg_cache,
1312 .write = aic3x_write,
1313 .set_bias_level = aic3x_set_bias_level,
1314 .reg_cache_size = ARRAY_SIZE(aic3x_reg),
1315 .reg_word_size = sizeof(u8),
1316 .reg_cache_default = aic3x_reg,
1317 .probe = aic3x_probe,
1318 .remove = aic3x_remove,
1319 .suspend = aic3x_suspend,
1320 .resume = aic3x_resume,
1321};
1322
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001323#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1324/*
1325 * AIC3X 2 wire address can be up to 4 devices with device addresses
1326 * 0x18, 0x19, 0x1A, 0x1B
1327 */
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001328
Randolph Chung6184f102010-08-20 12:47:53 +08001329static const struct i2c_device_id aic3x_i2c_id[] = {
1330 [AIC3X_MODEL_3X] = { "tlv320aic3x", 0 },
1331 [AIC3X_MODEL_33] = { "tlv320aic33", 0 },
1332 [AIC3X_MODEL_3007] = { "tlv320aic3007", 0 },
1333 { }
1334};
1335MODULE_DEVICE_TABLE(i2c, aic3x_i2c_id);
1336
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001337/*
1338 * If the i2c layer weren't so broken, we could pass this kind of data
1339 * around
1340 */
Jean Delvareba8ed122008-09-22 14:15:53 +02001341static int aic3x_i2c_probe(struct i2c_client *i2c,
1342 const struct i2c_device_id *id)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001343{
Jarkko Nikula5193d622010-05-05 13:02:03 +03001344 struct aic3x_pdata *pdata = i2c->dev.platform_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001345 struct aic3x_setup_data *setup = pdata->setup;
1346 struct aic3x_priv *aic3x;
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001347 int ret, i;
Randolph Chung6184f102010-08-20 12:47:53 +08001348 const struct i2c_device_id *tbl;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001349
Ben Dookscb3826f2009-08-20 22:50:41 +01001350 aic3x = kzalloc(sizeof(struct aic3x_priv), GFP_KERNEL);
1351 if (aic3x == NULL) {
1352 dev_err(&i2c->dev, "failed to create private data\n");
1353 return -ENOMEM;
1354 }
1355
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001356 aic3x->control_data = i2c;
1357 aic3x->setup = setup;
Ben Dookscb3826f2009-08-20 22:50:41 +01001358 i2c_set_clientdata(i2c, aic3x);
1359
Jarkko Nikula5193d622010-05-05 13:02:03 +03001360 aic3x->gpio_reset = -1;
1361 if (pdata && pdata->gpio_reset >= 0) {
1362 ret = gpio_request(pdata->gpio_reset, "tlv320aic3x reset");
1363 if (ret != 0)
1364 goto err_gpio;
1365 aic3x->gpio_reset = pdata->gpio_reset;
1366 gpio_direction_output(aic3x->gpio_reset, 0);
1367 }
1368
Randolph Chung6184f102010-08-20 12:47:53 +08001369 for (tbl = aic3x_i2c_id; tbl->name[0]; tbl++) {
1370 if (!strcmp(tbl->name, id->name))
1371 break;
1372 }
1373 aic3x->model = tbl - aic3x_i2c_id;
1374
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001375 for (i = 0; i < ARRAY_SIZE(aic3x->supplies); i++)
1376 aic3x->supplies[i].supply = aic3x_supply_names[i];
1377
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001378 ret = regulator_bulk_get(&i2c->dev, ARRAY_SIZE(aic3x->supplies),
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001379 aic3x->supplies);
1380 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001381 dev_err(&i2c->dev, "Failed to request supplies: %d\n", ret);
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001382 goto err_get;
1383 }
1384
1385 ret = regulator_bulk_enable(ARRAY_SIZE(aic3x->supplies),
1386 aic3x->supplies);
1387 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001388 dev_err(&i2c->dev, "Failed to enable supplies: %d\n", ret);
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001389 goto err_enable;
1390 }
1391
Jarkko Nikula5193d622010-05-05 13:02:03 +03001392 if (aic3x->gpio_reset >= 0) {
1393 udelay(1);
1394 gpio_set_value(aic3x->gpio_reset, 1);
1395 }
1396
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001397 ret = snd_soc_register_codec(&i2c->dev,
1398 &soc_codec_dev_aic3x, &aic3x_dai, 1);
1399 if (ret < 0)
1400 goto err_enable;
1401 return ret;
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001402
1403err_enable:
1404 regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1405err_get:
Jarkko Nikula5193d622010-05-05 13:02:03 +03001406 if (aic3x->gpio_reset >= 0)
1407 gpio_free(aic3x->gpio_reset);
1408err_gpio:
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001409 kfree(aic3x);
1410 return ret;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001411}
1412
Jean Delvareba8ed122008-09-22 14:15:53 +02001413static int aic3x_i2c_remove(struct i2c_client *client)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001414{
Ben Dookscb3826f2009-08-20 22:50:41 +01001415 struct aic3x_priv *aic3x = i2c_get_clientdata(client);
1416
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001417 if (aic3x->gpio_reset >= 0) {
1418 gpio_set_value(aic3x->gpio_reset, 0);
1419 gpio_free(aic3x->gpio_reset);
1420 }
1421 regulator_bulk_disable(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1422 regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1423
1424 snd_soc_unregister_codec(&client->dev);
1425 kfree(i2c_get_clientdata(client));
1426 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001427}
1428
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001429/* machine i2c codec control layer */
1430static struct i2c_driver aic3x_i2c_driver = {
1431 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001432 .name = "tlv320aic3x-codec",
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001433 .owner = THIS_MODULE,
1434 },
Ben Dookscb3826f2009-08-20 22:50:41 +01001435 .probe = aic3x_i2c_probe,
Jean Delvareba8ed122008-09-22 14:15:53 +02001436 .remove = aic3x_i2c_remove,
1437 .id_table = aic3x_i2c_id,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001438};
Daniel Mack54e7e612008-04-30 16:20:52 +02001439
Ben Dookscb3826f2009-08-20 22:50:41 +01001440static inline void aic3x_i2c_init(void)
Jean Delvareba8ed122008-09-22 14:15:53 +02001441{
Jean Delvareba8ed122008-09-22 14:15:53 +02001442 int ret;
1443
1444 ret = i2c_add_driver(&aic3x_i2c_driver);
Ben Dookscb3826f2009-08-20 22:50:41 +01001445 if (ret)
1446 printk(KERN_ERR "%s: error regsitering i2c driver, %d\n",
1447 __func__, ret);
Jean Delvareba8ed122008-09-22 14:15:53 +02001448}
Ben Dookscb3826f2009-08-20 22:50:41 +01001449
1450static inline void aic3x_i2c_exit(void)
1451{
1452 i2c_del_driver(&aic3x_i2c_driver);
1453}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001454#endif
1455
Takashi Iwaic9b3a402008-12-10 07:47:22 +01001456static int __init aic3x_modinit(void)
Mark Brown64089b82008-12-08 19:17:58 +00001457{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001458 int ret = 0;
1459#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1460 ret = i2c_add_driver(&aic3x_i2c_driver);
1461 if (ret != 0) {
1462 printk(KERN_ERR "Failed to register TLV320AIC3x I2C driver: %d\n",
1463 ret);
1464 }
1465#endif
1466 return ret;
Mark Brown64089b82008-12-08 19:17:58 +00001467}
1468module_init(aic3x_modinit);
1469
1470static void __exit aic3x_exit(void)
1471{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001472#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1473 i2c_del_driver(&aic3x_i2c_driver);
1474#endif
Mark Brown64089b82008-12-08 19:17:58 +00001475}
1476module_exit(aic3x_exit);
1477
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001478MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver");
1479MODULE_AUTHOR("Vladimir Barinov");
1480MODULE_LICENSE("GPL");