blob: 92030f527d39039b5c7326d12aebb6e5f76d29e8 [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 Nikula098b1712010-08-27 16:56:50 +0300295 /*
296 * Output controls that map to output mixer switches. Note these are
297 * only for swapped L-to-R and R-to-L routes. See below stereo controls
298 * for direct L-to-L and R-to-R routes.
299 */
300 SOC_SINGLE_TLV("Left Line Mixer Line2R Bypass Volume",
301 LINE2R_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
302 SOC_SINGLE_TLV("Left Line Mixer PGAR Bypass Volume",
303 PGAR_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
304 SOC_SINGLE_TLV("Left Line Mixer DACR1 Playback Volume",
305 DACR1_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
306
307 SOC_SINGLE_TLV("Right Line Mixer Line2L Bypass Volume",
308 LINE2L_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
309 SOC_SINGLE_TLV("Right Line Mixer PGAL Bypass Volume",
310 PGAL_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
311 SOC_SINGLE_TLV("Right Line Mixer DACL1 Playback Volume",
312 DACL1_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
313
314 SOC_SINGLE_TLV("Left HP Mixer Line2R Bypass Volume",
315 LINE2R_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
316 SOC_SINGLE_TLV("Left HP Mixer PGAR Bypass Volume",
317 PGAR_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
318 SOC_SINGLE_TLV("Left HP Mixer DACR1 Playback Volume",
319 DACR1_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
320
321 SOC_SINGLE_TLV("Right HP Mixer Line2L Bypass Volume",
322 LINE2L_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
323 SOC_SINGLE_TLV("Right HP Mixer PGAL Bypass Volume",
324 PGAL_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
325 SOC_SINGLE_TLV("Right HP Mixer DACL1 Playback Volume",
326 DACL1_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
327
328 SOC_SINGLE_TLV("Left HPCOM Mixer Line2R Bypass Volume",
329 LINE2R_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
330 SOC_SINGLE_TLV("Left HPCOM Mixer PGAR Bypass Volume",
331 PGAR_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
332 SOC_SINGLE_TLV("Left HPCOM Mixer DACR1 Playback Volume",
333 DACR1_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
334
335 SOC_SINGLE_TLV("Right HPCOM Mixer Line2L Bypass Volume",
336 LINE2L_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
337 SOC_SINGLE_TLV("Right HPCOM Mixer PGAL Bypass Volume",
338 PGAL_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
339 SOC_SINGLE_TLV("Right HPCOM Mixer DACL1 Playback Volume",
340 DACL1_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
341
342 /* Stereo output controls for direct L-to-L and R-to-R routes */
343 SOC_DOUBLE_R_TLV("Line Line2 Bypass Volume",
344 LINE2L_2_LLOPM_VOL, LINE2R_2_RLOPM_VOL,
345 0, 118, 1, output_stage_tlv),
346 SOC_DOUBLE_R_TLV("Line PGA Bypass Volume",
347 PGAL_2_LLOPM_VOL, PGAR_2_RLOPM_VOL,
348 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200349 SOC_DOUBLE_R_TLV("Line DAC Playback Volume",
350 DACL1_2_LLOPM_VOL, DACR1_2_RLOPM_VOL,
351 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100352
Jarkko Nikula098b1712010-08-27 16:56:50 +0300353 SOC_DOUBLE_R_TLV("Mono Line2 Bypass Volume",
354 LINE2L_2_MONOLOPM_VOL, LINE2R_2_MONOLOPM_VOL,
355 0, 118, 1, output_stage_tlv),
356 SOC_DOUBLE_R_TLV("Mono PGA Bypass Volume",
357 PGAL_2_MONOLOPM_VOL, PGAR_2_MONOLOPM_VOL,
358 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200359 SOC_DOUBLE_R_TLV("Mono DAC Playback Volume",
360 DACL1_2_MONOLOPM_VOL, DACR1_2_MONOLOPM_VOL,
361 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100362
Jarkko Nikula098b1712010-08-27 16:56:50 +0300363 SOC_DOUBLE_R_TLV("HP Line2 Bypass Volume",
364 LINE2L_2_HPLOUT_VOL, LINE2R_2_HPROUT_VOL,
365 0, 118, 1, output_stage_tlv),
366 SOC_DOUBLE_R_TLV("HP PGA Bypass Volume",
367 PGAL_2_HPLOUT_VOL, PGAR_2_HPROUT_VOL,
368 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200369 SOC_DOUBLE_R_TLV("HP DAC Playback Volume",
370 DACL1_2_HPLOUT_VOL, DACR1_2_HPROUT_VOL,
371 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100372
Jarkko Nikula098b1712010-08-27 16:56:50 +0300373 SOC_DOUBLE_R_TLV("HPCOM Line2 Bypass Volume",
374 LINE2L_2_HPLCOM_VOL, LINE2R_2_HPRCOM_VOL,
375 0, 118, 1, output_stage_tlv),
376 SOC_DOUBLE_R_TLV("HPCOM PGA Bypass Volume",
377 PGAL_2_HPLCOM_VOL, PGAR_2_HPRCOM_VOL,
378 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200379 SOC_DOUBLE_R_TLV("HPCOM DAC Playback Volume",
380 DACL1_2_HPLCOM_VOL, DACR1_2_HPRCOM_VOL,
381 0, 118, 1, output_stage_tlv),
Jarkko Nikula098b1712010-08-27 16:56:50 +0300382
383 /* Output pin mute controls */
384 SOC_DOUBLE_R("Line Playback Switch", LLOPM_CTRL, RLOPM_CTRL, 3,
385 0x01, 0),
386 SOC_SINGLE("Mono Playback Switch", MONOLOPM_CTRL, 3, 0x01, 0),
387 SOC_DOUBLE_R("HP Playback Switch", HPLOUT_CTRL, HPROUT_CTRL, 3,
388 0x01, 0),
Jarkko Nikulaf9bc0292010-08-27 16:56:47 +0300389 SOC_DOUBLE_R("HPCOM Playback Switch", HPLCOM_CTRL, HPRCOM_CTRL, 3,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100390 0x01, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100391
392 /*
393 * Note: enable Automatic input Gain Controller with care. It can
394 * adjust PGA to max value when ADC is on and will never go back.
395 */
396 SOC_DOUBLE_R("AGC Switch", LAGC_CTRL_A, RAGC_CTRL_A, 7, 0x01, 0),
397
398 /* Input */
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200399 SOC_DOUBLE_R_TLV("PGA Capture Volume", LADC_VOL, RADC_VOL,
400 0, 119, 0, adc_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100401 SOC_DOUBLE_R("PGA Capture Switch", LADC_VOL, RADC_VOL, 7, 0x01, 1),
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300402
403 SOC_ENUM("ADC HPF Cut-off", aic3x_enum[ADC_HPF_ENUM]),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100404};
405
Randolph Chung6184f102010-08-20 12:47:53 +0800406/*
407 * Class-D amplifier gain. From 0 to 18 dB in 6 dB steps
408 */
409static DECLARE_TLV_DB_SCALE(classd_amp_tlv, 0, 600, 0);
410
411static const struct snd_kcontrol_new aic3x_classd_amp_gain_ctrl =
412 SOC_DOUBLE_TLV("Class-D Amplifier Gain", CLASSD_CTRL, 6, 4, 3, 0, classd_amp_tlv);
413
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100414/* Left DAC Mux */
415static const struct snd_kcontrol_new aic3x_left_dac_mux_controls =
416SOC_DAPM_ENUM("Route", aic3x_enum[LDAC_ENUM]);
417
418/* Right DAC Mux */
419static const struct snd_kcontrol_new aic3x_right_dac_mux_controls =
420SOC_DAPM_ENUM("Route", aic3x_enum[RDAC_ENUM]);
421
422/* Left HPCOM Mux */
423static const struct snd_kcontrol_new aic3x_left_hpcom_mux_controls =
424SOC_DAPM_ENUM("Route", aic3x_enum[LHPCOM_ENUM]);
425
426/* Right HPCOM Mux */
427static const struct snd_kcontrol_new aic3x_right_hpcom_mux_controls =
428SOC_DAPM_ENUM("Route", aic3x_enum[RHPCOM_ENUM]);
429
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300430/* Left Line Mixer */
431static const struct snd_kcontrol_new aic3x_left_line_mixer_controls[] = {
432 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_LLOPM_VOL, 7, 1, 0),
433 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_LLOPM_VOL, 7, 1, 0),
434 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_LLOPM_VOL, 7, 1, 0),
435 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_LLOPM_VOL, 7, 1, 0),
436 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_LLOPM_VOL, 7, 1, 0),
437 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_LLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100438};
439
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300440/* Right Line Mixer */
441static const struct snd_kcontrol_new aic3x_right_line_mixer_controls[] = {
442 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_RLOPM_VOL, 7, 1, 0),
443 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_RLOPM_VOL, 7, 1, 0),
444 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_RLOPM_VOL, 7, 1, 0),
445 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_RLOPM_VOL, 7, 1, 0),
446 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_RLOPM_VOL, 7, 1, 0),
447 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_RLOPM_VOL, 7, 1, 0),
448};
449
450/* Mono Mixer */
451static const struct snd_kcontrol_new aic3x_mono_mixer_controls[] = {
452 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_MONOLOPM_VOL, 7, 1, 0),
453 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_MONOLOPM_VOL, 7, 1, 0),
454 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_MONOLOPM_VOL, 7, 1, 0),
455 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_MONOLOPM_VOL, 7, 1, 0),
456 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_MONOLOPM_VOL, 7, 1, 0),
457 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_MONOLOPM_VOL, 7, 1, 0),
458};
459
460/* Left HP Mixer */
461static const struct snd_kcontrol_new aic3x_left_hp_mixer_controls[] = {
462 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPLOUT_VOL, 7, 1, 0),
463 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPLOUT_VOL, 7, 1, 0),
464 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPLOUT_VOL, 7, 1, 0),
465 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPLOUT_VOL, 7, 1, 0),
466 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPLOUT_VOL, 7, 1, 0),
467 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPLOUT_VOL, 7, 1, 0),
468};
469
470/* Right HP Mixer */
471static const struct snd_kcontrol_new aic3x_right_hp_mixer_controls[] = {
472 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPROUT_VOL, 7, 1, 0),
473 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPROUT_VOL, 7, 1, 0),
474 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPROUT_VOL, 7, 1, 0),
475 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPROUT_VOL, 7, 1, 0),
476 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPROUT_VOL, 7, 1, 0),
477 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPROUT_VOL, 7, 1, 0),
478};
479
480/* Left HPCOM Mixer */
481static const struct snd_kcontrol_new aic3x_left_hpcom_mixer_controls[] = {
482 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPLCOM_VOL, 7, 1, 0),
483 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPLCOM_VOL, 7, 1, 0),
484 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPLCOM_VOL, 7, 1, 0),
485 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPLCOM_VOL, 7, 1, 0),
486 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPLCOM_VOL, 7, 1, 0),
487 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPLCOM_VOL, 7, 1, 0),
488};
489
490/* Right HPCOM Mixer */
491static const struct snd_kcontrol_new aic3x_right_hpcom_mixer_controls[] = {
492 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPRCOM_VOL, 7, 1, 0),
493 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPRCOM_VOL, 7, 1, 0),
494 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPRCOM_VOL, 7, 1, 0),
495 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPRCOM_VOL, 7, 1, 0),
496 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPRCOM_VOL, 7, 1, 0),
497 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100498};
499
500/* Left PGA Mixer */
501static const struct snd_kcontrol_new aic3x_left_pga_mixer_controls[] = {
502 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_LADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100503 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_LADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100504 SOC_DAPM_SINGLE_AIC3X("Line2L Switch", LINE2L_2_LADC_CTRL, 3, 1, 1),
505 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_LADC_CTRL, 4, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100506 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_LADC_CTRL, 0, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100507};
508
509/* Right PGA Mixer */
510static const struct snd_kcontrol_new aic3x_right_pga_mixer_controls[] = {
511 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100512 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_RADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100513 SOC_DAPM_SINGLE_AIC3X("Line2R Switch", LINE2R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100514 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_RADC_CTRL, 4, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100515 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_RADC_CTRL, 0, 1, 1),
516};
517
518/* Left Line1 Mux */
519static const struct snd_kcontrol_new aic3x_left_line1_mux_controls =
520SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_ENUM]);
521
522/* Right Line1 Mux */
523static const struct snd_kcontrol_new aic3x_right_line1_mux_controls =
524SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_ENUM]);
525
526/* Left Line2 Mux */
527static const struct snd_kcontrol_new aic3x_left_line2_mux_controls =
528SOC_DAPM_ENUM("Route", aic3x_enum[LINE2L_ENUM]);
529
530/* Right Line2 Mux */
531static const struct snd_kcontrol_new aic3x_right_line2_mux_controls =
532SOC_DAPM_ENUM("Route", aic3x_enum[LINE2R_ENUM]);
533
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100534static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
535 /* Left DAC to Left Outputs */
536 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", DAC_PWR, 7, 0),
537 SND_SOC_DAPM_MUX("Left DAC Mux", SND_SOC_NOPM, 0, 0,
538 &aic3x_left_dac_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100539 SND_SOC_DAPM_MUX("Left HPCOM Mux", SND_SOC_NOPM, 0, 0,
540 &aic3x_left_hpcom_mux_controls),
541 SND_SOC_DAPM_PGA("Left Line Out", LLOPM_CTRL, 0, 0, NULL, 0),
542 SND_SOC_DAPM_PGA("Left HP Out", HPLOUT_CTRL, 0, 0, NULL, 0),
543 SND_SOC_DAPM_PGA("Left HP Com", HPLCOM_CTRL, 0, 0, NULL, 0),
544
545 /* Right DAC to Right Outputs */
546 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", DAC_PWR, 6, 0),
547 SND_SOC_DAPM_MUX("Right DAC Mux", SND_SOC_NOPM, 0, 0,
548 &aic3x_right_dac_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100549 SND_SOC_DAPM_MUX("Right HPCOM Mux", SND_SOC_NOPM, 0, 0,
550 &aic3x_right_hpcom_mux_controls),
551 SND_SOC_DAPM_PGA("Right Line Out", RLOPM_CTRL, 0, 0, NULL, 0),
552 SND_SOC_DAPM_PGA("Right HP Out", HPROUT_CTRL, 0, 0, NULL, 0),
553 SND_SOC_DAPM_PGA("Right HP Com", HPRCOM_CTRL, 0, 0, NULL, 0),
554
555 /* Mono Output */
556 SND_SOC_DAPM_PGA("Mono Out", MONOLOPM_CTRL, 0, 0, NULL, 0),
557
Daniel Mack54f01912008-11-26 17:47:36 +0100558 /* Inputs to Left ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100559 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", LINE1L_2_LADC_CTRL, 2, 0),
560 SND_SOC_DAPM_MIXER("Left PGA Mixer", SND_SOC_NOPM, 0, 0,
561 &aic3x_left_pga_mixer_controls[0],
562 ARRAY_SIZE(aic3x_left_pga_mixer_controls)),
563 SND_SOC_DAPM_MUX("Left Line1L Mux", SND_SOC_NOPM, 0, 0,
564 &aic3x_left_line1_mux_controls),
Daniel Mack54f01912008-11-26 17:47:36 +0100565 SND_SOC_DAPM_MUX("Left Line1R Mux", SND_SOC_NOPM, 0, 0,
566 &aic3x_left_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100567 SND_SOC_DAPM_MUX("Left Line2L Mux", SND_SOC_NOPM, 0, 0,
568 &aic3x_left_line2_mux_controls),
569
Daniel Mack54f01912008-11-26 17:47:36 +0100570 /* Inputs to Right ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100571 SND_SOC_DAPM_ADC("Right ADC", "Right Capture",
572 LINE1R_2_RADC_CTRL, 2, 0),
573 SND_SOC_DAPM_MIXER("Right PGA Mixer", SND_SOC_NOPM, 0, 0,
574 &aic3x_right_pga_mixer_controls[0],
575 ARRAY_SIZE(aic3x_right_pga_mixer_controls)),
Daniel Mack54f01912008-11-26 17:47:36 +0100576 SND_SOC_DAPM_MUX("Right Line1L Mux", SND_SOC_NOPM, 0, 0,
577 &aic3x_right_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100578 SND_SOC_DAPM_MUX("Right Line1R Mux", SND_SOC_NOPM, 0, 0,
579 &aic3x_right_line1_mux_controls),
580 SND_SOC_DAPM_MUX("Right Line2R Mux", SND_SOC_NOPM, 0, 0,
581 &aic3x_right_line2_mux_controls),
582
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300583 /*
584 * Not a real mic bias widget but similar function. This is for dynamic
585 * control of GPIO1 digital mic modulator clock output function when
586 * using digital mic.
587 */
588 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "GPIO1 dmic modclk",
589 AIC3X_GPIO1_REG, 4, 0xf,
590 AIC3X_GPIO1_FUNC_DIGITAL_MIC_MODCLK,
591 AIC3X_GPIO1_FUNC_DISABLED),
592
593 /*
594 * Also similar function like mic bias. Selects digital mic with
595 * configurable oversampling rate instead of ADC converter.
596 */
597 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 128",
598 AIC3X_ASD_INTF_CTRLA, 0, 3, 1, 0),
599 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 64",
600 AIC3X_ASD_INTF_CTRLA, 0, 3, 2, 0),
601 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 32",
602 AIC3X_ASD_INTF_CTRLA, 0, 3, 3, 0),
603
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100604 /* Mic Bias */
Jarkko Nikula0bd72a32008-06-25 14:42:08 +0300605 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2V",
606 MICBIAS_CTRL, 6, 3, 1, 0),
607 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2.5V",
608 MICBIAS_CTRL, 6, 3, 2, 0),
609 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias AVDD",
610 MICBIAS_CTRL, 6, 3, 3, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100611
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300612 /* Output mixers */
613 SND_SOC_DAPM_MIXER("Left Line Mixer", SND_SOC_NOPM, 0, 0,
614 &aic3x_left_line_mixer_controls[0],
615 ARRAY_SIZE(aic3x_left_line_mixer_controls)),
616 SND_SOC_DAPM_MIXER("Right Line Mixer", SND_SOC_NOPM, 0, 0,
617 &aic3x_right_line_mixer_controls[0],
618 ARRAY_SIZE(aic3x_right_line_mixer_controls)),
619 SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0,
620 &aic3x_mono_mixer_controls[0],
621 ARRAY_SIZE(aic3x_mono_mixer_controls)),
622 SND_SOC_DAPM_MIXER("Left HP Mixer", SND_SOC_NOPM, 0, 0,
623 &aic3x_left_hp_mixer_controls[0],
624 ARRAY_SIZE(aic3x_left_hp_mixer_controls)),
625 SND_SOC_DAPM_MIXER("Right HP Mixer", SND_SOC_NOPM, 0, 0,
626 &aic3x_right_hp_mixer_controls[0],
627 ARRAY_SIZE(aic3x_right_hp_mixer_controls)),
628 SND_SOC_DAPM_MIXER("Left HPCOM Mixer", SND_SOC_NOPM, 0, 0,
629 &aic3x_left_hpcom_mixer_controls[0],
630 ARRAY_SIZE(aic3x_left_hpcom_mixer_controls)),
631 SND_SOC_DAPM_MIXER("Right HPCOM Mixer", SND_SOC_NOPM, 0, 0,
632 &aic3x_right_hpcom_mixer_controls[0],
633 ARRAY_SIZE(aic3x_right_hpcom_mixer_controls)),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100634
635 SND_SOC_DAPM_OUTPUT("LLOUT"),
636 SND_SOC_DAPM_OUTPUT("RLOUT"),
637 SND_SOC_DAPM_OUTPUT("MONO_LOUT"),
638 SND_SOC_DAPM_OUTPUT("HPLOUT"),
639 SND_SOC_DAPM_OUTPUT("HPROUT"),
640 SND_SOC_DAPM_OUTPUT("HPLCOM"),
641 SND_SOC_DAPM_OUTPUT("HPRCOM"),
642
643 SND_SOC_DAPM_INPUT("MIC3L"),
644 SND_SOC_DAPM_INPUT("MIC3R"),
645 SND_SOC_DAPM_INPUT("LINE1L"),
646 SND_SOC_DAPM_INPUT("LINE1R"),
647 SND_SOC_DAPM_INPUT("LINE2L"),
648 SND_SOC_DAPM_INPUT("LINE2R"),
Jarkko Nikula19f7ac52010-09-17 14:39:01 +0300649
650 /*
651 * Virtual output pin to detection block inside codec. This can be
652 * used to keep codec bias on if gpio or detection features are needed.
653 * Force pin on or construct a path with an input jack and mic bias
654 * widgets.
655 */
656 SND_SOC_DAPM_OUTPUT("Detection"),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100657};
658
Randolph Chung6184f102010-08-20 12:47:53 +0800659static const struct snd_soc_dapm_widget aic3007_dapm_widgets[] = {
660 /* Class-D outputs */
661 SND_SOC_DAPM_PGA("Left Class-D Out", CLASSD_CTRL, 3, 0, NULL, 0),
662 SND_SOC_DAPM_PGA("Right Class-D Out", CLASSD_CTRL, 2, 0, NULL, 0),
663
664 SND_SOC_DAPM_OUTPUT("SPOP"),
665 SND_SOC_DAPM_OUTPUT("SPOM"),
666};
667
Mark Brownd0cc0d32008-05-13 14:55:22 +0200668static const struct snd_soc_dapm_route intercon[] = {
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100669 /* Left Input */
670 {"Left Line1L Mux", "single-ended", "LINE1L"},
671 {"Left Line1L Mux", "differential", "LINE1L"},
672
673 {"Left Line2L Mux", "single-ended", "LINE2L"},
674 {"Left Line2L Mux", "differential", "LINE2L"},
675
676 {"Left PGA Mixer", "Line1L Switch", "Left Line1L Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100677 {"Left PGA Mixer", "Line1R Switch", "Left Line1R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100678 {"Left PGA Mixer", "Line2L Switch", "Left Line2L Mux"},
679 {"Left PGA Mixer", "Mic3L Switch", "MIC3L"},
Daniel Mack54f01912008-11-26 17:47:36 +0100680 {"Left PGA Mixer", "Mic3R Switch", "MIC3R"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100681
682 {"Left ADC", NULL, "Left PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300683 {"Left ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100684
685 /* Right Input */
686 {"Right Line1R Mux", "single-ended", "LINE1R"},
687 {"Right Line1R Mux", "differential", "LINE1R"},
688
689 {"Right Line2R Mux", "single-ended", "LINE2R"},
690 {"Right Line2R Mux", "differential", "LINE2R"},
691
Daniel Mack54f01912008-11-26 17:47:36 +0100692 {"Right PGA Mixer", "Line1L Switch", "Right Line1L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100693 {"Right PGA Mixer", "Line1R Switch", "Right Line1R Mux"},
694 {"Right PGA Mixer", "Line2R Switch", "Right Line2R Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100695 {"Right PGA Mixer", "Mic3L Switch", "MIC3L"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100696 {"Right PGA Mixer", "Mic3R Switch", "MIC3R"},
697
698 {"Right ADC", NULL, "Right PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300699 {"Right ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100700
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300701 /*
702 * Logical path between digital mic enable and GPIO1 modulator clock
703 * output function
704 */
705 {"GPIO1 dmic modclk", NULL, "DMic Rate 128"},
706 {"GPIO1 dmic modclk", NULL, "DMic Rate 64"},
707 {"GPIO1 dmic modclk", NULL, "DMic Rate 32"},
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300708
709 /* Left DAC Output */
710 {"Left DAC Mux", "DAC_L1", "Left DAC"},
711 {"Left DAC Mux", "DAC_L2", "Left DAC"},
712 {"Left DAC Mux", "DAC_L3", "Left DAC"},
713
714 /* Right DAC Output */
715 {"Right DAC Mux", "DAC_R1", "Right DAC"},
716 {"Right DAC Mux", "DAC_R2", "Right DAC"},
717 {"Right DAC Mux", "DAC_R3", "Right DAC"},
718
719 /* Left Line Output */
720 {"Left Line Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
721 {"Left Line Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
722 {"Left Line Mixer", "DACL1 Switch", "Left DAC Mux"},
723 {"Left Line Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
724 {"Left Line Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
725 {"Left Line Mixer", "DACR1 Switch", "Right DAC Mux"},
726
727 {"Left Line Out", NULL, "Left Line Mixer"},
728 {"Left Line Out", NULL, "Left DAC Mux"},
729 {"LLOUT", NULL, "Left Line Out"},
730
731 /* Right Line Output */
732 {"Right Line Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
733 {"Right Line Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
734 {"Right Line Mixer", "DACL1 Switch", "Left DAC Mux"},
735 {"Right Line Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
736 {"Right Line Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
737 {"Right Line Mixer", "DACR1 Switch", "Right DAC Mux"},
738
739 {"Right Line Out", NULL, "Right Line Mixer"},
740 {"Right Line Out", NULL, "Right DAC Mux"},
741 {"RLOUT", NULL, "Right Line Out"},
742
743 /* Mono Output */
744 {"Mono Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
745 {"Mono Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
746 {"Mono Mixer", "DACL1 Switch", "Left DAC Mux"},
747 {"Mono Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
748 {"Mono Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
749 {"Mono Mixer", "DACR1 Switch", "Right DAC Mux"},
750
751 {"Mono Out", NULL, "Mono Mixer"},
752 {"MONO_LOUT", NULL, "Mono Out"},
753
754 /* Left HP Output */
755 {"Left HP Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
756 {"Left HP Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
757 {"Left HP Mixer", "DACL1 Switch", "Left DAC Mux"},
758 {"Left HP Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
759 {"Left HP Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
760 {"Left HP Mixer", "DACR1 Switch", "Right DAC Mux"},
761
762 {"Left HP Out", NULL, "Left HP Mixer"},
763 {"Left HP Out", NULL, "Left DAC Mux"},
764 {"HPLOUT", NULL, "Left HP Out"},
765
766 /* Right HP Output */
767 {"Right HP Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
768 {"Right HP Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
769 {"Right HP Mixer", "DACL1 Switch", "Left DAC Mux"},
770 {"Right HP Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
771 {"Right HP Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
772 {"Right HP Mixer", "DACR1 Switch", "Right DAC Mux"},
773
774 {"Right HP Out", NULL, "Right HP Mixer"},
775 {"Right HP Out", NULL, "Right DAC Mux"},
776 {"HPROUT", NULL, "Right HP Out"},
777
778 /* Left HPCOM Output */
779 {"Left HPCOM Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
780 {"Left HPCOM Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
781 {"Left HPCOM Mixer", "DACL1 Switch", "Left DAC Mux"},
782 {"Left HPCOM Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
783 {"Left HPCOM Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
784 {"Left HPCOM Mixer", "DACR1 Switch", "Right DAC Mux"},
785
786 {"Left HPCOM Mux", "differential of HPLOUT", "Left HP Mixer"},
787 {"Left HPCOM Mux", "constant VCM", "Left HPCOM Mixer"},
788 {"Left HPCOM Mux", "single-ended", "Left HPCOM Mixer"},
789 {"Left HP Com", NULL, "Left HPCOM Mux"},
790 {"HPLCOM", NULL, "Left HP Com"},
791
792 /* Right HPCOM Output */
793 {"Right HPCOM Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
794 {"Right HPCOM Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
795 {"Right HPCOM Mixer", "DACL1 Switch", "Left DAC Mux"},
796 {"Right HPCOM Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
797 {"Right HPCOM Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
798 {"Right HPCOM Mixer", "DACR1 Switch", "Right DAC Mux"},
799
800 {"Right HPCOM Mux", "differential of HPROUT", "Right HP Mixer"},
801 {"Right HPCOM Mux", "constant VCM", "Right HPCOM Mixer"},
802 {"Right HPCOM Mux", "single-ended", "Right HPCOM Mixer"},
803 {"Right HPCOM Mux", "differential of HPLCOM", "Left HPCOM Mixer"},
804 {"Right HPCOM Mux", "external feedback", "Right HPCOM Mixer"},
805 {"Right HP Com", NULL, "Right HPCOM Mux"},
806 {"HPRCOM", NULL, "Right HP Com"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100807};
808
Randolph Chung6184f102010-08-20 12:47:53 +0800809static const struct snd_soc_dapm_route intercon_3007[] = {
810 /* Class-D outputs */
811 {"Left Class-D Out", NULL, "Left Line Out"},
812 {"Right Class-D Out", NULL, "Left Line Out"},
813 {"SPOP", NULL, "Left Class-D Out"},
814 {"SPOM", NULL, "Right Class-D Out"},
815};
816
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100817static int aic3x_add_widgets(struct snd_soc_codec *codec)
818{
Randolph Chung6184f102010-08-20 12:47:53 +0800819 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
820
Mark Brownd0cc0d32008-05-13 14:55:22 +0200821 snd_soc_dapm_new_controls(codec, aic3x_dapm_widgets,
822 ARRAY_SIZE(aic3x_dapm_widgets));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100823
824 /* set up audio path interconnects */
Mark Brownd0cc0d32008-05-13 14:55:22 +0200825 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100826
Randolph Chung6184f102010-08-20 12:47:53 +0800827 if (aic3x->model == AIC3X_MODEL_3007) {
828 snd_soc_dapm_new_controls(codec, aic3007_dapm_widgets,
829 ARRAY_SIZE(aic3007_dapm_widgets));
830 snd_soc_dapm_add_routes(codec, intercon_3007, ARRAY_SIZE(intercon_3007));
831 }
832
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100833 return 0;
834}
835
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100836static int aic3x_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000837 struct snd_pcm_hw_params *params,
838 struct snd_soc_dai *dai)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100839{
840 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000841 struct snd_soc_codec *codec =rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900842 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200843 int codec_clk = 0, bypass_pll = 0, fsref, last_clk = 0;
Peter Meerwald255173b2009-12-14 14:44:56 +0100844 u8 data, j, r, p, pll_q, pll_p = 1, pll_r = 1, pll_j = 1;
845 u16 d, pll_d = 1;
Chaithrika U S06c71282009-07-22 07:45:04 -0400846 u8 reg;
Peter Meerwald255173b2009-12-14 14:44:56 +0100847 int clk;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100848
849 /* select data word length */
850 data =
851 aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & (~(0x3 << 4));
852 switch (params_format(params)) {
853 case SNDRV_PCM_FORMAT_S16_LE:
854 break;
855 case SNDRV_PCM_FORMAT_S20_3LE:
856 data |= (0x01 << 4);
857 break;
858 case SNDRV_PCM_FORMAT_S24_LE:
859 data |= (0x02 << 4);
860 break;
861 case SNDRV_PCM_FORMAT_S32_LE:
862 data |= (0x03 << 4);
863 break;
864 }
865 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, data);
866
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200867 /* Fsref can be 44100 or 48000 */
868 fsref = (params_rate(params) % 11025 == 0) ? 44100 : 48000;
869
870 /* Try to find a value for Q which allows us to bypass the PLL and
871 * generate CODEC_CLK directly. */
872 for (pll_q = 2; pll_q < 18; pll_q++)
873 if (aic3x->sysclk / (128 * pll_q) == fsref) {
874 bypass_pll = 1;
875 break;
876 }
877
878 if (bypass_pll) {
879 pll_q &= 0xf;
880 aic3x_write(codec, AIC3X_PLL_PROGA_REG, pll_q << PLLQ_SHIFT);
881 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_CLKDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400882 /* disable PLL if it is bypassed */
883 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
884 aic3x_write(codec, AIC3X_PLL_PROGA_REG, reg & ~PLL_ENABLE);
885
886 } else {
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200887 aic3x_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_PLLDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400888 /* enable PLL when it is used */
889 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
890 aic3x_write(codec, AIC3X_PLL_PROGA_REG, reg | PLL_ENABLE);
891 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200892
893 /* Route Left DAC to left channel input and
894 * right DAC to right channel input */
895 data = (LDAC2LCH | RDAC2RCH);
896 data |= (fsref == 44100) ? FSREF_44100 : FSREF_48000;
897 if (params_rate(params) >= 64000)
898 data |= DUAL_RATE_MODE;
899 aic3x_write(codec, AIC3X_CODEC_DATAPATH_REG, data);
900
901 /* codec sample rate select */
902 data = (fsref * 20) / params_rate(params);
903 if (params_rate(params) < 64000)
904 data /= 2;
905 data /= 5;
906 data -= 2;
907 data |= (data << 4);
908 aic3x_write(codec, AIC3X_SAMPLE_RATE_SEL_REG, data);
909
910 if (bypass_pll)
911 return 0;
912
Peter Meerwald255173b2009-12-14 14:44:56 +0100913 /* Use PLL, compute apropriate setup for j, d, r and p, the closest
914 * one wins the game. Try with d==0 first, next with d!=0.
915 * Constraints for j are according to the datasheet.
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200916 * The sysclk is divided by 1000 to prevent integer overflows.
917 */
Peter Meerwald255173b2009-12-14 14:44:56 +0100918
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200919 codec_clk = (2048 * fsref) / (aic3x->sysclk / 1000);
920
921 for (r = 1; r <= 16; r++)
922 for (p = 1; p <= 8; p++) {
Peter Meerwald255173b2009-12-14 14:44:56 +0100923 for (j = 4; j <= 55; j++) {
924 /* This is actually 1000*((j+(d/10000))*r)/p
925 * The term had to be converted to get
926 * rid of the division by 10000; d = 0 here
927 */
Mark Brown5baf8312010-01-02 13:13:42 +0000928 int tmp_clk = (1000 * j * r) / p;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200929
Peter Meerwald255173b2009-12-14 14:44:56 +0100930 /* Check whether this values get closer than
931 * the best ones we had before
932 */
Mark Brown5baf8312010-01-02 13:13:42 +0000933 if (abs(codec_clk - tmp_clk) <
Peter Meerwald255173b2009-12-14 14:44:56 +0100934 abs(codec_clk - last_clk)) {
935 pll_j = j; pll_d = 0;
936 pll_r = r; pll_p = p;
Mark Brown5baf8312010-01-02 13:13:42 +0000937 last_clk = tmp_clk;
Peter Meerwald255173b2009-12-14 14:44:56 +0100938 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200939
Peter Meerwald255173b2009-12-14 14:44:56 +0100940 /* Early exit for exact matches */
Mark Brown5baf8312010-01-02 13:13:42 +0000941 if (tmp_clk == codec_clk)
Peter Meerwald255173b2009-12-14 14:44:56 +0100942 goto found;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200943 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200944 }
945
Peter Meerwald255173b2009-12-14 14:44:56 +0100946 /* try with d != 0 */
947 for (p = 1; p <= 8; p++) {
948 j = codec_clk * p / 1000;
949
950 if (j < 4 || j > 11)
951 continue;
952
953 /* do not use codec_clk here since we'd loose precision */
954 d = ((2048 * p * fsref) - j * aic3x->sysclk)
955 * 100 / (aic3x->sysclk/100);
956
957 clk = (10000 * j + d) / (10 * p);
958
959 /* check whether this values get closer than the best
960 * ones we had before */
961 if (abs(codec_clk - clk) < abs(codec_clk - last_clk)) {
962 pll_j = j; pll_d = d; pll_r = 1; pll_p = p;
963 last_clk = clk;
964 }
965
966 /* Early exit for exact matches */
967 if (clk == codec_clk)
968 goto found;
969 }
970
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200971 if (last_clk == 0) {
972 printk(KERN_ERR "%s(): unable to setup PLL\n", __func__);
973 return -EINVAL;
974 }
975
Peter Meerwald255173b2009-12-14 14:44:56 +0100976found:
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200977 data = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
978 aic3x_write(codec, AIC3X_PLL_PROGA_REG, data | (pll_p << PLLP_SHIFT));
979 aic3x_write(codec, AIC3X_OVRF_STATUS_AND_PLLR_REG, pll_r << PLLR_SHIFT);
980 aic3x_write(codec, AIC3X_PLL_PROGB_REG, pll_j << PLLJ_SHIFT);
981 aic3x_write(codec, AIC3X_PLL_PROGC_REG, (pll_d >> 6) << PLLD_MSB_SHIFT);
982 aic3x_write(codec, AIC3X_PLL_PROGD_REG,
983 (pll_d & 0x3F) << PLLD_LSB_SHIFT);
984
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100985 return 0;
986}
987
Liam Girdwoode550e172008-07-07 16:07:52 +0100988static int aic3x_mute(struct snd_soc_dai *dai, int mute)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100989{
990 struct snd_soc_codec *codec = dai->codec;
991 u8 ldac_reg = aic3x_read_reg_cache(codec, LDAC_VOL) & ~MUTE_ON;
992 u8 rdac_reg = aic3x_read_reg_cache(codec, RDAC_VOL) & ~MUTE_ON;
993
994 if (mute) {
995 aic3x_write(codec, LDAC_VOL, ldac_reg | MUTE_ON);
996 aic3x_write(codec, RDAC_VOL, rdac_reg | MUTE_ON);
997 } else {
998 aic3x_write(codec, LDAC_VOL, ldac_reg);
999 aic3x_write(codec, RDAC_VOL, rdac_reg);
1000 }
1001
1002 return 0;
1003}
1004
Liam Girdwoode550e172008-07-07 16:07:52 +01001005static int aic3x_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001006 int clk_id, unsigned int freq, int dir)
1007{
1008 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001009 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001010
Daniel Mack4f9c16c2008-04-30 16:20:19 +02001011 aic3x->sysclk = freq;
1012 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001013}
1014
Liam Girdwoode550e172008-07-07 16:07:52 +01001015static int aic3x_set_dai_fmt(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001016 unsigned int fmt)
1017{
1018 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001019 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Jarkko Nikula81971a12008-06-25 14:58:45 +03001020 u8 iface_areg, iface_breg;
Troy Kiskya24f4f62008-12-19 13:05:22 -07001021 int delay = 0;
Jarkko Nikula81971a12008-06-25 14:58:45 +03001022
1023 iface_areg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLA) & 0x3f;
1024 iface_breg = aic3x_read_reg_cache(codec, AIC3X_ASD_INTF_CTRLB) & 0x3f;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001025
1026 /* set master/slave audio interface */
1027 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1028 case SND_SOC_DAIFMT_CBM_CFM:
1029 aic3x->master = 1;
1030 iface_areg |= BIT_CLK_MASTER | WORD_CLK_MASTER;
1031 break;
1032 case SND_SOC_DAIFMT_CBS_CFS:
1033 aic3x->master = 0;
1034 break;
1035 default:
1036 return -EINVAL;
1037 }
1038
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001039 /*
1040 * match both interface format and signal polarities since they
1041 * are fixed
1042 */
1043 switch (fmt & (SND_SOC_DAIFMT_FORMAT_MASK |
1044 SND_SOC_DAIFMT_INV_MASK)) {
1045 case (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001046 break;
Troy Kiskya24f4f62008-12-19 13:05:22 -07001047 case (SND_SOC_DAIFMT_DSP_A | SND_SOC_DAIFMT_IB_NF):
1048 delay = 1;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001049 case (SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_IB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001050 iface_breg |= (0x01 << 6);
1051 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001052 case (SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001053 iface_breg |= (0x02 << 6);
1054 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001055 case (SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001056 iface_breg |= (0x03 << 6);
1057 break;
1058 default:
1059 return -EINVAL;
1060 }
1061
1062 /* set iface */
1063 aic3x_write(codec, AIC3X_ASD_INTF_CTRLA, iface_areg);
1064 aic3x_write(codec, AIC3X_ASD_INTF_CTRLB, iface_breg);
Troy Kiskya24f4f62008-12-19 13:05:22 -07001065 aic3x_write(codec, AIC3X_ASD_INTF_CTRLC, delay);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001066
1067 return 0;
1068}
1069
Mark Brown0be98982008-05-19 12:31:28 +02001070static int aic3x_set_bias_level(struct snd_soc_codec *codec,
1071 enum snd_soc_bias_level level)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001072{
Mark Brownb2c812e2010-04-14 15:35:19 +09001073 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001074 u8 reg;
1075
Mark Brown0be98982008-05-19 12:31:28 +02001076 switch (level) {
1077 case SND_SOC_BIAS_ON:
Jarkko Nikuladb138022010-04-26 15:49:13 +03001078 break;
1079 case SND_SOC_BIAS_PREPARE:
Jarkko Nikulac23fd752010-09-10 14:23:29 +03001080 if (codec->bias_level == SND_SOC_BIAS_STANDBY &&
1081 aic3x->master) {
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001082 /* enable pll */
1083 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
1084 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
1085 reg | PLL_ENABLE);
1086 }
1087 break;
Mark Brown0be98982008-05-19 12:31:28 +02001088 case SND_SOC_BIAS_STANDBY:
Jarkko Nikulac23fd752010-09-10 14:23:29 +03001089 if (codec->bias_level == SND_SOC_BIAS_PREPARE &&
1090 aic3x->master) {
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001091 /* disable pll */
1092 reg = aic3x_read_reg_cache(codec, AIC3X_PLL_PROGA_REG);
1093 aic3x_write(codec, AIC3X_PLL_PROGA_REG,
1094 reg & ~PLL_ENABLE);
1095 }
1096 break;
Jarkko Nikulac23fd752010-09-10 14:23:29 +03001097 case SND_SOC_BIAS_OFF:
1098 break;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001099 }
Mark Brown0be98982008-05-19 12:31:28 +02001100 codec->bias_level = level;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001101
1102 return 0;
1103}
1104
Daniel Mack54e7e612008-04-30 16:20:52 +02001105void aic3x_set_gpio(struct snd_soc_codec *codec, int gpio, int state)
1106{
1107 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1108 u8 bit = gpio ? 3: 0;
1109 u8 val = aic3x_read_reg_cache(codec, reg) & ~(1 << bit);
1110 aic3x_write(codec, reg, val | (!!state << bit));
1111}
1112EXPORT_SYMBOL_GPL(aic3x_set_gpio);
1113
1114int aic3x_get_gpio(struct snd_soc_codec *codec, int gpio)
1115{
1116 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1117 u8 val, bit = gpio ? 2: 1;
1118
1119 aic3x_read(codec, reg, &val);
1120 return (val >> bit) & 1;
1121}
1122EXPORT_SYMBOL_GPL(aic3x_get_gpio);
1123
Daniel Mack6f2a9742008-12-03 11:44:17 +01001124void aic3x_set_headset_detection(struct snd_soc_codec *codec, int detect,
1125 int headset_debounce, int button_debounce)
1126{
1127 u8 val;
1128
1129 val = ((detect & AIC3X_HEADSET_DETECT_MASK)
1130 << AIC3X_HEADSET_DETECT_SHIFT) |
1131 ((headset_debounce & AIC3X_HEADSET_DEBOUNCE_MASK)
1132 << AIC3X_HEADSET_DEBOUNCE_SHIFT) |
1133 ((button_debounce & AIC3X_BUTTON_DEBOUNCE_MASK)
1134 << AIC3X_BUTTON_DEBOUNCE_SHIFT);
1135
1136 if (detect & AIC3X_HEADSET_DETECT_MASK)
1137 val |= AIC3X_HEADSET_DETECT_ENABLED;
1138
1139 aic3x_write(codec, AIC3X_HEADSET_DETECT_CTRL_A, val);
1140}
1141EXPORT_SYMBOL_GPL(aic3x_set_headset_detection);
1142
Daniel Mack54e7e612008-04-30 16:20:52 +02001143int aic3x_headset_detected(struct snd_soc_codec *codec)
1144{
1145 u8 val;
Daniel Mack6f2a9742008-12-03 11:44:17 +01001146 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1147 return (val >> 4) & 1;
Daniel Mack54e7e612008-04-30 16:20:52 +02001148}
1149EXPORT_SYMBOL_GPL(aic3x_headset_detected);
1150
Daniel Mack6f2a9742008-12-03 11:44:17 +01001151int aic3x_button_pressed(struct snd_soc_codec *codec)
1152{
1153 u8 val;
1154 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1155 return (val >> 5) & 1;
1156}
1157EXPORT_SYMBOL_GPL(aic3x_button_pressed);
1158
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001159#define AIC3X_RATES SNDRV_PCM_RATE_8000_96000
1160#define AIC3X_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
1161 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
1162
Eric Miao6335d052009-03-03 09:41:00 +08001163static struct snd_soc_dai_ops aic3x_dai_ops = {
1164 .hw_params = aic3x_hw_params,
1165 .digital_mute = aic3x_mute,
1166 .set_sysclk = aic3x_set_dai_sysclk,
1167 .set_fmt = aic3x_set_dai_fmt,
1168};
1169
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001170static struct snd_soc_dai_driver aic3x_dai = {
1171 .name = "tlv320aic3x-hifi",
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001172 .playback = {
1173 .stream_name = "Playback",
1174 .channels_min = 1,
1175 .channels_max = 2,
1176 .rates = AIC3X_RATES,
1177 .formats = AIC3X_FORMATS,},
1178 .capture = {
1179 .stream_name = "Capture",
1180 .channels_min = 1,
1181 .channels_max = 2,
1182 .rates = AIC3X_RATES,
1183 .formats = AIC3X_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001184 .ops = &aic3x_dai_ops,
Randolph Chung14017612010-08-19 12:06:17 +01001185 .symmetric_rates = 1,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001186};
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001187
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001188static int aic3x_suspend(struct snd_soc_codec *codec, pm_message_t state)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001189{
Mark Brown0be98982008-05-19 12:31:28 +02001190 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001191
1192 return 0;
1193}
1194
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001195static int aic3x_resume(struct snd_soc_codec *codec)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001196{
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001197 int i;
1198 u8 data[2];
1199 u8 *cache = codec->reg_cache;
1200
1201 /* Sync reg_cache with the hardware */
1202 for (i = 0; i < ARRAY_SIZE(aic3x_reg); i++) {
1203 data[0] = i;
1204 data[1] = cache[i];
1205 codec->hw_write(codec->control_data, data, 2);
1206 }
1207
Mark Brown29e189c2010-05-07 20:30:00 +01001208 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001209
1210 return 0;
1211}
1212
1213/*
1214 * initialise the AIC3X driver
1215 * register the mixer and dsp interfaces with the kernel
1216 */
Ben Dookscb3826f2009-08-20 22:50:41 +01001217static int aic3x_init(struct snd_soc_codec *codec)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001218{
Randolph Chung6184f102010-08-20 12:47:53 +08001219 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001220 int reg;
1221
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001222 aic3x_write(codec, AIC3X_PAGE_SELECT, PAGE0_SELECT);
1223 aic3x_write(codec, AIC3X_RESET, SOFT_RESET);
1224
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001225 /* DAC default volume and mute */
1226 aic3x_write(codec, LDAC_VOL, DEFAULT_VOL | MUTE_ON);
1227 aic3x_write(codec, RDAC_VOL, DEFAULT_VOL | MUTE_ON);
1228
1229 /* DAC to HP default volume and route to Output mixer */
1230 aic3x_write(codec, DACL1_2_HPLOUT_VOL, DEFAULT_VOL | ROUTE_ON);
1231 aic3x_write(codec, DACR1_2_HPROUT_VOL, DEFAULT_VOL | ROUTE_ON);
1232 aic3x_write(codec, DACL1_2_HPLCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1233 aic3x_write(codec, DACR1_2_HPRCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1234 /* DAC to Line Out default volume and route to Output mixer */
1235 aic3x_write(codec, DACL1_2_LLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1236 aic3x_write(codec, DACR1_2_RLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1237 /* DAC to Mono Line Out default volume and route to Output mixer */
1238 aic3x_write(codec, DACL1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1239 aic3x_write(codec, DACR1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1240
1241 /* unmute all outputs */
1242 reg = aic3x_read_reg_cache(codec, LLOPM_CTRL);
1243 aic3x_write(codec, LLOPM_CTRL, reg | UNMUTE);
1244 reg = aic3x_read_reg_cache(codec, RLOPM_CTRL);
1245 aic3x_write(codec, RLOPM_CTRL, reg | UNMUTE);
1246 reg = aic3x_read_reg_cache(codec, MONOLOPM_CTRL);
1247 aic3x_write(codec, MONOLOPM_CTRL, reg | UNMUTE);
1248 reg = aic3x_read_reg_cache(codec, HPLOUT_CTRL);
1249 aic3x_write(codec, HPLOUT_CTRL, reg | UNMUTE);
1250 reg = aic3x_read_reg_cache(codec, HPROUT_CTRL);
1251 aic3x_write(codec, HPROUT_CTRL, reg | UNMUTE);
1252 reg = aic3x_read_reg_cache(codec, HPLCOM_CTRL);
1253 aic3x_write(codec, HPLCOM_CTRL, reg | UNMUTE);
1254 reg = aic3x_read_reg_cache(codec, HPRCOM_CTRL);
1255 aic3x_write(codec, HPRCOM_CTRL, reg | UNMUTE);
1256
1257 /* ADC default volume and unmute */
1258 aic3x_write(codec, LADC_VOL, DEFAULT_GAIN);
1259 aic3x_write(codec, RADC_VOL, DEFAULT_GAIN);
1260 /* By default route Line1 to ADC PGA mixer */
1261 aic3x_write(codec, LINE1L_2_LADC_CTRL, 0x0);
1262 aic3x_write(codec, LINE1R_2_RADC_CTRL, 0x0);
1263
1264 /* PGA to HP Bypass default volume, disconnect from Output Mixer */
1265 aic3x_write(codec, PGAL_2_HPLOUT_VOL, DEFAULT_VOL);
1266 aic3x_write(codec, PGAR_2_HPROUT_VOL, DEFAULT_VOL);
1267 aic3x_write(codec, PGAL_2_HPLCOM_VOL, DEFAULT_VOL);
1268 aic3x_write(codec, PGAR_2_HPRCOM_VOL, DEFAULT_VOL);
1269 /* PGA to Line Out default volume, disconnect from Output Mixer */
1270 aic3x_write(codec, PGAL_2_LLOPM_VOL, DEFAULT_VOL);
1271 aic3x_write(codec, PGAR_2_RLOPM_VOL, DEFAULT_VOL);
1272 /* PGA to Mono Line Out default volume, disconnect from Output Mixer */
1273 aic3x_write(codec, PGAL_2_MONOLOPM_VOL, DEFAULT_VOL);
1274 aic3x_write(codec, PGAR_2_MONOLOPM_VOL, DEFAULT_VOL);
1275
1276 /* Line2 to HP Bypass default volume, disconnect from Output Mixer */
1277 aic3x_write(codec, LINE2L_2_HPLOUT_VOL, DEFAULT_VOL);
1278 aic3x_write(codec, LINE2R_2_HPROUT_VOL, DEFAULT_VOL);
1279 aic3x_write(codec, LINE2L_2_HPLCOM_VOL, DEFAULT_VOL);
1280 aic3x_write(codec, LINE2R_2_HPRCOM_VOL, DEFAULT_VOL);
1281 /* Line2 Line Out default volume, disconnect from Output Mixer */
1282 aic3x_write(codec, LINE2L_2_LLOPM_VOL, DEFAULT_VOL);
1283 aic3x_write(codec, LINE2R_2_RLOPM_VOL, DEFAULT_VOL);
1284 /* Line2 to Mono Out default volume, disconnect from Output Mixer */
1285 aic3x_write(codec, LINE2L_2_MONOLOPM_VOL, DEFAULT_VOL);
1286 aic3x_write(codec, LINE2R_2_MONOLOPM_VOL, DEFAULT_VOL);
1287
Randolph Chung6184f102010-08-20 12:47:53 +08001288 if (aic3x->model == AIC3X_MODEL_3007) {
1289 /* Class-D speaker driver init; datasheet p. 46 */
1290 aic3x_write(codec, AIC3X_PAGE_SELECT, 0x0D);
1291 aic3x_write(codec, 0xD, 0x0D);
1292 aic3x_write(codec, 0x8, 0x5C);
1293 aic3x_write(codec, 0x8, 0x5D);
1294 aic3x_write(codec, 0x8, 0x5C);
1295 aic3x_write(codec, AIC3X_PAGE_SELECT, 0x00);
1296 aic3x_write(codec, CLASSD_CTRL, 0);
1297 }
1298
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001299 /* off, with power on */
Mark Brown0be98982008-05-19 12:31:28 +02001300 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001301
Ben Dookscb3826f2009-08-20 22:50:41 +01001302 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001303}
1304
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001305static int aic3x_probe(struct snd_soc_codec *codec)
Ben Dookscb3826f2009-08-20 22:50:41 +01001306{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001307 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001308
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001309 codec->hw_write = (hw_write_t) i2c_master_send;
1310 codec->control_data = aic3x->control_data;
1311
Jarkko Nikula37b47652010-08-23 10:38:40 +03001312 aic3x_init(codec);
1313
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001314 if (aic3x->setup) {
1315 /* setup GPIO functions */
1316 aic3x_write(codec, AIC3X_GPIO1_REG,
1317 (aic3x->setup->gpio_func[0] & 0xf) << 4);
1318 aic3x_write(codec, AIC3X_GPIO2_REG,
1319 (aic3x->setup->gpio_func[1] & 0xf) << 4);
Ben Dookscb3826f2009-08-20 22:50:41 +01001320 }
1321
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001322 snd_soc_add_controls(codec, aic3x_snd_controls,
1323 ARRAY_SIZE(aic3x_snd_controls));
Randolph Chung6184f102010-08-20 12:47:53 +08001324 if (aic3x->model == AIC3X_MODEL_3007)
1325 snd_soc_add_controls(codec, &aic3x_classd_amp_gain_ctrl, 1);
Ben Dookscb3826f2009-08-20 22:50:41 +01001326
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001327 aic3x_add_widgets(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001328
1329 return 0;
1330}
1331
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001332static int aic3x_remove(struct snd_soc_codec *codec)
Ben Dookscb3826f2009-08-20 22:50:41 +01001333{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001334 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Ben Dookscb3826f2009-08-20 22:50:41 +01001335 return 0;
1336}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001337
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001338static struct snd_soc_codec_driver soc_codec_dev_aic3x = {
1339 .read = aic3x_read_reg_cache,
1340 .write = aic3x_write,
1341 .set_bias_level = aic3x_set_bias_level,
1342 .reg_cache_size = ARRAY_SIZE(aic3x_reg),
1343 .reg_word_size = sizeof(u8),
1344 .reg_cache_default = aic3x_reg,
1345 .probe = aic3x_probe,
1346 .remove = aic3x_remove,
1347 .suspend = aic3x_suspend,
1348 .resume = aic3x_resume,
1349};
1350
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001351#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1352/*
1353 * AIC3X 2 wire address can be up to 4 devices with device addresses
1354 * 0x18, 0x19, 0x1A, 0x1B
1355 */
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001356
Randolph Chung6184f102010-08-20 12:47:53 +08001357static const struct i2c_device_id aic3x_i2c_id[] = {
1358 [AIC3X_MODEL_3X] = { "tlv320aic3x", 0 },
1359 [AIC3X_MODEL_33] = { "tlv320aic33", 0 },
1360 [AIC3X_MODEL_3007] = { "tlv320aic3007", 0 },
1361 { }
1362};
1363MODULE_DEVICE_TABLE(i2c, aic3x_i2c_id);
1364
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001365/*
1366 * If the i2c layer weren't so broken, we could pass this kind of data
1367 * around
1368 */
Jean Delvareba8ed122008-09-22 14:15:53 +02001369static int aic3x_i2c_probe(struct i2c_client *i2c,
1370 const struct i2c_device_id *id)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001371{
Jarkko Nikula5193d622010-05-05 13:02:03 +03001372 struct aic3x_pdata *pdata = i2c->dev.platform_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001373 struct aic3x_priv *aic3x;
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001374 int ret, i;
Randolph Chung6184f102010-08-20 12:47:53 +08001375 const struct i2c_device_id *tbl;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001376
Ben Dookscb3826f2009-08-20 22:50:41 +01001377 aic3x = kzalloc(sizeof(struct aic3x_priv), GFP_KERNEL);
1378 if (aic3x == NULL) {
1379 dev_err(&i2c->dev, "failed to create private data\n");
1380 return -ENOMEM;
1381 }
1382
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001383 aic3x->control_data = i2c;
Ben Dookscb3826f2009-08-20 22:50:41 +01001384 i2c_set_clientdata(i2c, aic3x);
Jarkko Nikulac7763572010-09-05 19:10:22 +03001385 if (pdata) {
1386 aic3x->gpio_reset = pdata->gpio_reset;
1387 aic3x->setup = pdata->setup;
1388 } else {
1389 aic3x->gpio_reset = -1;
1390 }
Ben Dookscb3826f2009-08-20 22:50:41 +01001391
Jarkko Nikulac7763572010-09-05 19:10:22 +03001392 if (aic3x->gpio_reset >= 0) {
1393 ret = gpio_request(aic3x->gpio_reset, "tlv320aic3x reset");
Jarkko Nikula5193d622010-05-05 13:02:03 +03001394 if (ret != 0)
1395 goto err_gpio;
Jarkko Nikula5193d622010-05-05 13:02:03 +03001396 gpio_direction_output(aic3x->gpio_reset, 0);
1397 }
1398
Randolph Chung6184f102010-08-20 12:47:53 +08001399 for (tbl = aic3x_i2c_id; tbl->name[0]; tbl++) {
1400 if (!strcmp(tbl->name, id->name))
1401 break;
1402 }
1403 aic3x->model = tbl - aic3x_i2c_id;
1404
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001405 for (i = 0; i < ARRAY_SIZE(aic3x->supplies); i++)
1406 aic3x->supplies[i].supply = aic3x_supply_names[i];
1407
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001408 ret = regulator_bulk_get(&i2c->dev, ARRAY_SIZE(aic3x->supplies),
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001409 aic3x->supplies);
1410 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001411 dev_err(&i2c->dev, "Failed to request supplies: %d\n", ret);
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001412 goto err_get;
1413 }
1414
1415 ret = regulator_bulk_enable(ARRAY_SIZE(aic3x->supplies),
1416 aic3x->supplies);
1417 if (ret != 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001418 dev_err(&i2c->dev, "Failed to enable supplies: %d\n", ret);
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001419 goto err_enable;
1420 }
1421
Jarkko Nikula5193d622010-05-05 13:02:03 +03001422 if (aic3x->gpio_reset >= 0) {
1423 udelay(1);
1424 gpio_set_value(aic3x->gpio_reset, 1);
1425 }
1426
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001427 ret = snd_soc_register_codec(&i2c->dev,
1428 &soc_codec_dev_aic3x, &aic3x_dai, 1);
1429 if (ret < 0)
1430 goto err_enable;
1431 return ret;
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001432
1433err_enable:
1434 regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1435err_get:
Jarkko Nikula5193d622010-05-05 13:02:03 +03001436 if (aic3x->gpio_reset >= 0)
1437 gpio_free(aic3x->gpio_reset);
1438err_gpio:
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001439 kfree(aic3x);
1440 return ret;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001441}
1442
Jean Delvareba8ed122008-09-22 14:15:53 +02001443static int aic3x_i2c_remove(struct i2c_client *client)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001444{
Ben Dookscb3826f2009-08-20 22:50:41 +01001445 struct aic3x_priv *aic3x = i2c_get_clientdata(client);
1446
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001447 if (aic3x->gpio_reset >= 0) {
1448 gpio_set_value(aic3x->gpio_reset, 0);
1449 gpio_free(aic3x->gpio_reset);
1450 }
1451 regulator_bulk_disable(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1452 regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1453
1454 snd_soc_unregister_codec(&client->dev);
1455 kfree(i2c_get_clientdata(client));
1456 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001457}
1458
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001459/* machine i2c codec control layer */
1460static struct i2c_driver aic3x_i2c_driver = {
1461 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001462 .name = "tlv320aic3x-codec",
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001463 .owner = THIS_MODULE,
1464 },
Ben Dookscb3826f2009-08-20 22:50:41 +01001465 .probe = aic3x_i2c_probe,
Jean Delvareba8ed122008-09-22 14:15:53 +02001466 .remove = aic3x_i2c_remove,
1467 .id_table = aic3x_i2c_id,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001468};
Daniel Mack54e7e612008-04-30 16:20:52 +02001469
Ben Dookscb3826f2009-08-20 22:50:41 +01001470static inline void aic3x_i2c_init(void)
Jean Delvareba8ed122008-09-22 14:15:53 +02001471{
Jean Delvareba8ed122008-09-22 14:15:53 +02001472 int ret;
1473
1474 ret = i2c_add_driver(&aic3x_i2c_driver);
Ben Dookscb3826f2009-08-20 22:50:41 +01001475 if (ret)
1476 printk(KERN_ERR "%s: error regsitering i2c driver, %d\n",
1477 __func__, ret);
Jean Delvareba8ed122008-09-22 14:15:53 +02001478}
Ben Dookscb3826f2009-08-20 22:50:41 +01001479
1480static inline void aic3x_i2c_exit(void)
1481{
1482 i2c_del_driver(&aic3x_i2c_driver);
1483}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001484#endif
1485
Takashi Iwaic9b3a402008-12-10 07:47:22 +01001486static int __init aic3x_modinit(void)
Mark Brown64089b82008-12-08 19:17:58 +00001487{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001488 int ret = 0;
1489#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1490 ret = i2c_add_driver(&aic3x_i2c_driver);
1491 if (ret != 0) {
1492 printk(KERN_ERR "Failed to register TLV320AIC3x I2C driver: %d\n",
1493 ret);
1494 }
1495#endif
1496 return ret;
Mark Brown64089b82008-12-08 19:17:58 +00001497}
1498module_init(aic3x_modinit);
1499
1500static void __exit aic3x_exit(void)
1501{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001502#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1503 i2c_del_driver(&aic3x_i2c_driver);
1504#endif
Mark Brown64089b82008-12-08 19:17:58 +00001505}
1506module_exit(aic3x_exit);
1507
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001508MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver");
1509MODULE_AUTHOR("Vladimir Barinov");
1510MODULE_LICENSE("GPL");