blob: 5f8a7c4045c2f3c38b76acb8d54a973d0b98325e [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;
Jarkko Nikula6c1a7d42010-09-20 10:39:12 +030073 int power;
Randolph Chung6184f102010-08-20 12:47:53 +080074#define AIC3X_MODEL_3X 0
75#define AIC3X_MODEL_33 1
76#define AIC3X_MODEL_3007 2
77 u16 model;
Vladimir Barinov44d0a872007-11-14 17:07:17 +010078};
79
80/*
81 * AIC3X register cache
82 * We can't read the AIC3X register space when we are
83 * using 2 wire for device control, so we cache them instead.
84 * There is no point in caching the reset register
85 */
86static const u8 aic3x_reg[AIC3X_CACHEREGNUM] = {
87 0x00, 0x00, 0x00, 0x10, /* 0 */
88 0x04, 0x00, 0x00, 0x00, /* 4 */
89 0x00, 0x00, 0x00, 0x01, /* 8 */
90 0x00, 0x00, 0x00, 0x80, /* 12 */
91 0x80, 0xff, 0xff, 0x78, /* 16 */
92 0x78, 0x78, 0x78, 0x78, /* 20 */
93 0x78, 0x00, 0x00, 0xfe, /* 24 */
94 0x00, 0x00, 0xfe, 0x00, /* 28 */
95 0x18, 0x18, 0x00, 0x00, /* 32 */
96 0x00, 0x00, 0x00, 0x00, /* 36 */
97 0x00, 0x00, 0x00, 0x80, /* 40 */
98 0x80, 0x00, 0x00, 0x00, /* 44 */
99 0x00, 0x00, 0x00, 0x04, /* 48 */
100 0x00, 0x00, 0x00, 0x00, /* 52 */
101 0x00, 0x00, 0x04, 0x00, /* 56 */
102 0x00, 0x00, 0x00, 0x00, /* 60 */
103 0x00, 0x04, 0x00, 0x00, /* 64 */
104 0x00, 0x00, 0x00, 0x00, /* 68 */
105 0x04, 0x00, 0x00, 0x00, /* 72 */
106 0x00, 0x00, 0x00, 0x00, /* 76 */
107 0x00, 0x00, 0x00, 0x00, /* 80 */
108 0x00, 0x00, 0x00, 0x00, /* 84 */
109 0x00, 0x00, 0x00, 0x00, /* 88 */
110 0x00, 0x00, 0x00, 0x00, /* 92 */
111 0x00, 0x00, 0x00, 0x00, /* 96 */
112 0x00, 0x00, 0x02, /* 100 */
113};
114
115/*
Jarkko Nikula9900daa2010-09-14 16:59:47 +0300116 * read from the aic3x register space. Only use for this function is if
117 * wanting to read volatile bits from those registers that has both read-only
118 * and read/write bits. All other cases should use snd_soc_read.
Daniel Mack54e7e612008-04-30 16:20:52 +0200119 */
120static int aic3x_read(struct snd_soc_codec *codec, unsigned int reg,
121 u8 *value)
122{
Jarkko Nikula9900daa2010-09-14 16:59:47 +0300123 u8 *cache = codec->reg_cache;
Mark Brown5f345342009-07-05 17:35:28 +0100124
Jarkko Nikula9900daa2010-09-14 16:59:47 +0300125 if (reg >= AIC3X_CACHEREGNUM)
126 return -1;
Daniel Mack54e7e612008-04-30 16:20:52 +0200127
Jarkko Nikula9900daa2010-09-14 16:59:47 +0300128 *value = codec->hw_read(codec, reg);
129 cache[reg] = *value;
130
Daniel Mack54e7e612008-04-30 16:20:52 +0200131 return 0;
132}
133
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100134#define SOC_DAPM_SINGLE_AIC3X(xname, reg, shift, mask, invert) \
135{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
136 .info = snd_soc_info_volsw, \
137 .get = snd_soc_dapm_get_volsw, .put = snd_soc_dapm_put_volsw_aic3x, \
138 .private_value = SOC_SINGLE_VALUE(reg, shift, mask, invert) }
139
140/*
141 * All input lines are connected when !0xf and disconnected with 0xf bit field,
142 * so we have to use specific dapm_put call for input mixer
143 */
144static int snd_soc_dapm_put_volsw_aic3x(struct snd_kcontrol *kcontrol,
145 struct snd_ctl_elem_value *ucontrol)
146{
147 struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
Eero Nurkkala4453dba2009-02-06 12:01:04 +0200148 struct soc_mixer_control *mc =
149 (struct soc_mixer_control *)kcontrol->private_value;
150 unsigned int reg = mc->reg;
151 unsigned int shift = mc->shift;
152 int max = mc->max;
153 unsigned int mask = (1 << fls(max)) - 1;
154 unsigned int invert = mc->invert;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100155 unsigned short val, val_mask;
156 int ret;
157 struct snd_soc_dapm_path *path;
158 int found = 0;
159
160 val = (ucontrol->value.integer.value[0] & mask);
161
162 mask = 0xf;
163 if (val)
164 val = mask;
165
166 if (invert)
167 val = mask - val;
168 val_mask = mask << shift;
169 val = val << shift;
170
171 mutex_lock(&widget->codec->mutex);
172
173 if (snd_soc_test_bits(widget->codec, reg, val_mask, val)) {
174 /* find dapm widget path assoc with kcontrol */
175 list_for_each_entry(path, &widget->codec->dapm_paths, list) {
176 if (path->kcontrol != kcontrol)
177 continue;
178
179 /* found, now check type */
180 found = 1;
181 if (val)
182 /* new connection */
183 path->connect = invert ? 0 : 1;
184 else
185 /* old connection must be powered down */
186 path->connect = invert ? 1 : 0;
187 break;
188 }
189
190 if (found)
Liam Girdwooda5302182008-07-07 13:35:17 +0100191 snd_soc_dapm_sync(widget->codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100192 }
193
194 ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
195
196 mutex_unlock(&widget->codec->mutex);
197 return ret;
198}
199
200static const char *aic3x_left_dac_mux[] = { "DAC_L1", "DAC_L3", "DAC_L2" };
201static const char *aic3x_right_dac_mux[] = { "DAC_R1", "DAC_R3", "DAC_R2" };
202static const char *aic3x_left_hpcom_mux[] =
203 { "differential of HPLOUT", "constant VCM", "single-ended" };
204static const char *aic3x_right_hpcom_mux[] =
205 { "differential of HPROUT", "constant VCM", "single-ended",
206 "differential of HPLCOM", "external feedback" };
207static const char *aic3x_linein_mode_mux[] = { "single-ended", "differential" };
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300208static const char *aic3x_adc_hpf[] =
209 { "Disabled", "0.0045xFs", "0.0125xFs", "0.025xFs" };
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100210
211#define LDAC_ENUM 0
212#define RDAC_ENUM 1
213#define LHPCOM_ENUM 2
214#define RHPCOM_ENUM 3
215#define LINE1L_ENUM 4
216#define LINE1R_ENUM 5
217#define LINE2L_ENUM 6
218#define LINE2R_ENUM 7
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300219#define ADC_HPF_ENUM 8
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100220
221static const struct soc_enum aic3x_enum[] = {
222 SOC_ENUM_SINGLE(DAC_LINE_MUX, 6, 3, aic3x_left_dac_mux),
223 SOC_ENUM_SINGLE(DAC_LINE_MUX, 4, 3, aic3x_right_dac_mux),
224 SOC_ENUM_SINGLE(HPLCOM_CFG, 4, 3, aic3x_left_hpcom_mux),
225 SOC_ENUM_SINGLE(HPRCOM_CFG, 3, 5, aic3x_right_hpcom_mux),
226 SOC_ENUM_SINGLE(LINE1L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
227 SOC_ENUM_SINGLE(LINE1R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
228 SOC_ENUM_SINGLE(LINE2L_2_LADC_CTRL, 7, 2, aic3x_linein_mode_mux),
229 SOC_ENUM_SINGLE(LINE2R_2_RADC_CTRL, 7, 2, aic3x_linein_mode_mux),
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300230 SOC_ENUM_DOUBLE(AIC3X_CODEC_DFILT_CTRL, 6, 4, 4, aic3x_adc_hpf),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100231};
232
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200233/*
234 * DAC digital volumes. From -63.5 to 0 dB in 0.5 dB steps
235 */
236static DECLARE_TLV_DB_SCALE(dac_tlv, -6350, 50, 0);
237/* ADC PGA gain volumes. From 0 to 59.5 dB in 0.5 dB steps */
238static DECLARE_TLV_DB_SCALE(adc_tlv, 0, 50, 0);
239/*
240 * Output stage volumes. From -78.3 to 0 dB. Muted below -78.3 dB.
241 * Step size is approximately 0.5 dB over most of the scale but increasing
242 * near the very low levels.
243 * Define dB scale so that it is mostly correct for range about -55 to 0 dB
244 * but having increasing dB difference below that (and where it doesn't count
245 * so much). This setting shows -50 dB (actual is -50.3 dB) for register
246 * value 100 and -58.5 dB (actual is -78.3 dB) for register value 117.
247 */
248static DECLARE_TLV_DB_SCALE(output_stage_tlv, -5900, 50, 1);
249
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100250static const struct snd_kcontrol_new aic3x_snd_controls[] = {
251 /* Output */
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200252 SOC_DOUBLE_R_TLV("PCM Playback Volume",
253 LDAC_VOL, RDAC_VOL, 0, 0x7f, 1, dac_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100254
Jarkko Nikula098b1712010-08-27 16:56:50 +0300255 /*
256 * Output controls that map to output mixer switches. Note these are
257 * only for swapped L-to-R and R-to-L routes. See below stereo controls
258 * for direct L-to-L and R-to-R routes.
259 */
260 SOC_SINGLE_TLV("Left Line Mixer Line2R Bypass Volume",
261 LINE2R_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
262 SOC_SINGLE_TLV("Left Line Mixer PGAR Bypass Volume",
263 PGAR_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
264 SOC_SINGLE_TLV("Left Line Mixer DACR1 Playback Volume",
265 DACR1_2_LLOPM_VOL, 0, 118, 1, output_stage_tlv),
266
267 SOC_SINGLE_TLV("Right Line Mixer Line2L Bypass Volume",
268 LINE2L_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
269 SOC_SINGLE_TLV("Right Line Mixer PGAL Bypass Volume",
270 PGAL_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
271 SOC_SINGLE_TLV("Right Line Mixer DACL1 Playback Volume",
272 DACL1_2_RLOPM_VOL, 0, 118, 1, output_stage_tlv),
273
274 SOC_SINGLE_TLV("Left HP Mixer Line2R Bypass Volume",
275 LINE2R_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
276 SOC_SINGLE_TLV("Left HP Mixer PGAR Bypass Volume",
277 PGAR_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
278 SOC_SINGLE_TLV("Left HP Mixer DACR1 Playback Volume",
279 DACR1_2_HPLOUT_VOL, 0, 118, 1, output_stage_tlv),
280
281 SOC_SINGLE_TLV("Right HP Mixer Line2L Bypass Volume",
282 LINE2L_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
283 SOC_SINGLE_TLV("Right HP Mixer PGAL Bypass Volume",
284 PGAL_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
285 SOC_SINGLE_TLV("Right HP Mixer DACL1 Playback Volume",
286 DACL1_2_HPROUT_VOL, 0, 118, 1, output_stage_tlv),
287
288 SOC_SINGLE_TLV("Left HPCOM Mixer Line2R Bypass Volume",
289 LINE2R_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
290 SOC_SINGLE_TLV("Left HPCOM Mixer PGAR Bypass Volume",
291 PGAR_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
292 SOC_SINGLE_TLV("Left HPCOM Mixer DACR1 Playback Volume",
293 DACR1_2_HPLCOM_VOL, 0, 118, 1, output_stage_tlv),
294
295 SOC_SINGLE_TLV("Right HPCOM Mixer Line2L Bypass Volume",
296 LINE2L_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
297 SOC_SINGLE_TLV("Right HPCOM Mixer PGAL Bypass Volume",
298 PGAL_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
299 SOC_SINGLE_TLV("Right HPCOM Mixer DACL1 Playback Volume",
300 DACL1_2_HPRCOM_VOL, 0, 118, 1, output_stage_tlv),
301
302 /* Stereo output controls for direct L-to-L and R-to-R routes */
303 SOC_DOUBLE_R_TLV("Line Line2 Bypass Volume",
304 LINE2L_2_LLOPM_VOL, LINE2R_2_RLOPM_VOL,
305 0, 118, 1, output_stage_tlv),
306 SOC_DOUBLE_R_TLV("Line PGA Bypass Volume",
307 PGAL_2_LLOPM_VOL, PGAR_2_RLOPM_VOL,
308 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200309 SOC_DOUBLE_R_TLV("Line DAC Playback Volume",
310 DACL1_2_LLOPM_VOL, DACR1_2_RLOPM_VOL,
311 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100312
Jarkko Nikula098b1712010-08-27 16:56:50 +0300313 SOC_DOUBLE_R_TLV("Mono Line2 Bypass Volume",
314 LINE2L_2_MONOLOPM_VOL, LINE2R_2_MONOLOPM_VOL,
315 0, 118, 1, output_stage_tlv),
316 SOC_DOUBLE_R_TLV("Mono PGA Bypass Volume",
317 PGAL_2_MONOLOPM_VOL, PGAR_2_MONOLOPM_VOL,
318 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200319 SOC_DOUBLE_R_TLV("Mono DAC Playback Volume",
320 DACL1_2_MONOLOPM_VOL, DACR1_2_MONOLOPM_VOL,
321 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100322
Jarkko Nikula098b1712010-08-27 16:56:50 +0300323 SOC_DOUBLE_R_TLV("HP Line2 Bypass Volume",
324 LINE2L_2_HPLOUT_VOL, LINE2R_2_HPROUT_VOL,
325 0, 118, 1, output_stage_tlv),
326 SOC_DOUBLE_R_TLV("HP PGA Bypass Volume",
327 PGAL_2_HPLOUT_VOL, PGAR_2_HPROUT_VOL,
328 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200329 SOC_DOUBLE_R_TLV("HP DAC Playback Volume",
330 DACL1_2_HPLOUT_VOL, DACR1_2_HPROUT_VOL,
331 0, 118, 1, output_stage_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100332
Jarkko Nikula098b1712010-08-27 16:56:50 +0300333 SOC_DOUBLE_R_TLV("HPCOM Line2 Bypass Volume",
334 LINE2L_2_HPLCOM_VOL, LINE2R_2_HPRCOM_VOL,
335 0, 118, 1, output_stage_tlv),
336 SOC_DOUBLE_R_TLV("HPCOM PGA Bypass Volume",
337 PGAL_2_HPLCOM_VOL, PGAR_2_HPRCOM_VOL,
338 0, 118, 1, output_stage_tlv),
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200339 SOC_DOUBLE_R_TLV("HPCOM DAC Playback Volume",
340 DACL1_2_HPLCOM_VOL, DACR1_2_HPRCOM_VOL,
341 0, 118, 1, output_stage_tlv),
Jarkko Nikula098b1712010-08-27 16:56:50 +0300342
343 /* Output pin mute controls */
344 SOC_DOUBLE_R("Line Playback Switch", LLOPM_CTRL, RLOPM_CTRL, 3,
345 0x01, 0),
346 SOC_SINGLE("Mono Playback Switch", MONOLOPM_CTRL, 3, 0x01, 0),
347 SOC_DOUBLE_R("HP Playback Switch", HPLOUT_CTRL, HPROUT_CTRL, 3,
348 0x01, 0),
Jarkko Nikulaf9bc0292010-08-27 16:56:47 +0300349 SOC_DOUBLE_R("HPCOM Playback Switch", HPLCOM_CTRL, HPRCOM_CTRL, 3,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100350 0x01, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100351
352 /*
353 * Note: enable Automatic input Gain Controller with care. It can
354 * adjust PGA to max value when ADC is on and will never go back.
355 */
356 SOC_DOUBLE_R("AGC Switch", LAGC_CTRL_A, RAGC_CTRL_A, 7, 0x01, 0),
357
358 /* Input */
Jarkko Nikula7565fc32009-02-09 14:27:07 +0200359 SOC_DOUBLE_R_TLV("PGA Capture Volume", LADC_VOL, RADC_VOL,
360 0, 119, 0, adc_tlv),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100361 SOC_DOUBLE_R("PGA Capture Switch", LADC_VOL, RADC_VOL, 7, 0x01, 1),
Jarkko Nikula4d20f702008-06-27 14:07:57 +0300362
363 SOC_ENUM("ADC HPF Cut-off", aic3x_enum[ADC_HPF_ENUM]),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100364};
365
Randolph Chung6184f102010-08-20 12:47:53 +0800366/*
367 * Class-D amplifier gain. From 0 to 18 dB in 6 dB steps
368 */
369static DECLARE_TLV_DB_SCALE(classd_amp_tlv, 0, 600, 0);
370
371static const struct snd_kcontrol_new aic3x_classd_amp_gain_ctrl =
372 SOC_DOUBLE_TLV("Class-D Amplifier Gain", CLASSD_CTRL, 6, 4, 3, 0, classd_amp_tlv);
373
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100374/* Left DAC Mux */
375static const struct snd_kcontrol_new aic3x_left_dac_mux_controls =
376SOC_DAPM_ENUM("Route", aic3x_enum[LDAC_ENUM]);
377
378/* Right DAC Mux */
379static const struct snd_kcontrol_new aic3x_right_dac_mux_controls =
380SOC_DAPM_ENUM("Route", aic3x_enum[RDAC_ENUM]);
381
382/* Left HPCOM Mux */
383static const struct snd_kcontrol_new aic3x_left_hpcom_mux_controls =
384SOC_DAPM_ENUM("Route", aic3x_enum[LHPCOM_ENUM]);
385
386/* Right HPCOM Mux */
387static const struct snd_kcontrol_new aic3x_right_hpcom_mux_controls =
388SOC_DAPM_ENUM("Route", aic3x_enum[RHPCOM_ENUM]);
389
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300390/* Left Line Mixer */
391static const struct snd_kcontrol_new aic3x_left_line_mixer_controls[] = {
392 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_LLOPM_VOL, 7, 1, 0),
393 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_LLOPM_VOL, 7, 1, 0),
394 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_LLOPM_VOL, 7, 1, 0),
395 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_LLOPM_VOL, 7, 1, 0),
396 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_LLOPM_VOL, 7, 1, 0),
397 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_LLOPM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100398};
399
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300400/* Right Line Mixer */
401static const struct snd_kcontrol_new aic3x_right_line_mixer_controls[] = {
402 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_RLOPM_VOL, 7, 1, 0),
403 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_RLOPM_VOL, 7, 1, 0),
404 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_RLOPM_VOL, 7, 1, 0),
405 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_RLOPM_VOL, 7, 1, 0),
406 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_RLOPM_VOL, 7, 1, 0),
407 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_RLOPM_VOL, 7, 1, 0),
408};
409
410/* Mono Mixer */
411static const struct snd_kcontrol_new aic3x_mono_mixer_controls[] = {
412 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_MONOLOPM_VOL, 7, 1, 0),
413 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_MONOLOPM_VOL, 7, 1, 0),
414 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_MONOLOPM_VOL, 7, 1, 0),
415 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_MONOLOPM_VOL, 7, 1, 0),
416 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_MONOLOPM_VOL, 7, 1, 0),
417 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_MONOLOPM_VOL, 7, 1, 0),
418};
419
420/* Left HP Mixer */
421static const struct snd_kcontrol_new aic3x_left_hp_mixer_controls[] = {
422 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPLOUT_VOL, 7, 1, 0),
423 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPLOUT_VOL, 7, 1, 0),
424 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPLOUT_VOL, 7, 1, 0),
425 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPLOUT_VOL, 7, 1, 0),
426 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPLOUT_VOL, 7, 1, 0),
427 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPLOUT_VOL, 7, 1, 0),
428};
429
430/* Right HP Mixer */
431static const struct snd_kcontrol_new aic3x_right_hp_mixer_controls[] = {
432 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPROUT_VOL, 7, 1, 0),
433 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPROUT_VOL, 7, 1, 0),
434 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPROUT_VOL, 7, 1, 0),
435 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPROUT_VOL, 7, 1, 0),
436 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPROUT_VOL, 7, 1, 0),
437 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPROUT_VOL, 7, 1, 0),
438};
439
440/* Left HPCOM Mixer */
441static const struct snd_kcontrol_new aic3x_left_hpcom_mixer_controls[] = {
442 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPLCOM_VOL, 7, 1, 0),
443 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPLCOM_VOL, 7, 1, 0),
444 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPLCOM_VOL, 7, 1, 0),
445 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPLCOM_VOL, 7, 1, 0),
446 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPLCOM_VOL, 7, 1, 0),
447 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPLCOM_VOL, 7, 1, 0),
448};
449
450/* Right HPCOM Mixer */
451static const struct snd_kcontrol_new aic3x_right_hpcom_mixer_controls[] = {
452 SOC_DAPM_SINGLE("Line2L Bypass Switch", LINE2L_2_HPRCOM_VOL, 7, 1, 0),
453 SOC_DAPM_SINGLE("PGAL Bypass Switch", PGAL_2_HPRCOM_VOL, 7, 1, 0),
454 SOC_DAPM_SINGLE("DACL1 Switch", DACL1_2_HPRCOM_VOL, 7, 1, 0),
455 SOC_DAPM_SINGLE("Line2R Bypass Switch", LINE2R_2_HPRCOM_VOL, 7, 1, 0),
456 SOC_DAPM_SINGLE("PGAR Bypass Switch", PGAR_2_HPRCOM_VOL, 7, 1, 0),
457 SOC_DAPM_SINGLE("DACR1 Switch", DACR1_2_HPRCOM_VOL, 7, 1, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100458};
459
460/* Left PGA Mixer */
461static const struct snd_kcontrol_new aic3x_left_pga_mixer_controls[] = {
462 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_LADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100463 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_LADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100464 SOC_DAPM_SINGLE_AIC3X("Line2L Switch", LINE2L_2_LADC_CTRL, 3, 1, 1),
465 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_LADC_CTRL, 4, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100466 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_LADC_CTRL, 0, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100467};
468
469/* Right PGA Mixer */
470static const struct snd_kcontrol_new aic3x_right_pga_mixer_controls[] = {
471 SOC_DAPM_SINGLE_AIC3X("Line1R Switch", LINE1R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100472 SOC_DAPM_SINGLE_AIC3X("Line1L Switch", LINE1L_2_RADC_CTRL, 3, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100473 SOC_DAPM_SINGLE_AIC3X("Line2R Switch", LINE2R_2_RADC_CTRL, 3, 1, 1),
Daniel Mack54f01912008-11-26 17:47:36 +0100474 SOC_DAPM_SINGLE_AIC3X("Mic3L Switch", MIC3LR_2_RADC_CTRL, 4, 1, 1),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100475 SOC_DAPM_SINGLE_AIC3X("Mic3R Switch", MIC3LR_2_RADC_CTRL, 0, 1, 1),
476};
477
478/* Left Line1 Mux */
479static const struct snd_kcontrol_new aic3x_left_line1_mux_controls =
480SOC_DAPM_ENUM("Route", aic3x_enum[LINE1L_ENUM]);
481
482/* Right Line1 Mux */
483static const struct snd_kcontrol_new aic3x_right_line1_mux_controls =
484SOC_DAPM_ENUM("Route", aic3x_enum[LINE1R_ENUM]);
485
486/* Left Line2 Mux */
487static const struct snd_kcontrol_new aic3x_left_line2_mux_controls =
488SOC_DAPM_ENUM("Route", aic3x_enum[LINE2L_ENUM]);
489
490/* Right Line2 Mux */
491static const struct snd_kcontrol_new aic3x_right_line2_mux_controls =
492SOC_DAPM_ENUM("Route", aic3x_enum[LINE2R_ENUM]);
493
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100494static const struct snd_soc_dapm_widget aic3x_dapm_widgets[] = {
495 /* Left DAC to Left Outputs */
496 SND_SOC_DAPM_DAC("Left DAC", "Left Playback", DAC_PWR, 7, 0),
497 SND_SOC_DAPM_MUX("Left DAC Mux", SND_SOC_NOPM, 0, 0,
498 &aic3x_left_dac_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100499 SND_SOC_DAPM_MUX("Left HPCOM Mux", SND_SOC_NOPM, 0, 0,
500 &aic3x_left_hpcom_mux_controls),
501 SND_SOC_DAPM_PGA("Left Line Out", LLOPM_CTRL, 0, 0, NULL, 0),
502 SND_SOC_DAPM_PGA("Left HP Out", HPLOUT_CTRL, 0, 0, NULL, 0),
503 SND_SOC_DAPM_PGA("Left HP Com", HPLCOM_CTRL, 0, 0, NULL, 0),
504
505 /* Right DAC to Right Outputs */
506 SND_SOC_DAPM_DAC("Right DAC", "Right Playback", DAC_PWR, 6, 0),
507 SND_SOC_DAPM_MUX("Right DAC Mux", SND_SOC_NOPM, 0, 0,
508 &aic3x_right_dac_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100509 SND_SOC_DAPM_MUX("Right HPCOM Mux", SND_SOC_NOPM, 0, 0,
510 &aic3x_right_hpcom_mux_controls),
511 SND_SOC_DAPM_PGA("Right Line Out", RLOPM_CTRL, 0, 0, NULL, 0),
512 SND_SOC_DAPM_PGA("Right HP Out", HPROUT_CTRL, 0, 0, NULL, 0),
513 SND_SOC_DAPM_PGA("Right HP Com", HPRCOM_CTRL, 0, 0, NULL, 0),
514
515 /* Mono Output */
516 SND_SOC_DAPM_PGA("Mono Out", MONOLOPM_CTRL, 0, 0, NULL, 0),
517
Daniel Mack54f01912008-11-26 17:47:36 +0100518 /* Inputs to Left ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100519 SND_SOC_DAPM_ADC("Left ADC", "Left Capture", LINE1L_2_LADC_CTRL, 2, 0),
520 SND_SOC_DAPM_MIXER("Left PGA Mixer", SND_SOC_NOPM, 0, 0,
521 &aic3x_left_pga_mixer_controls[0],
522 ARRAY_SIZE(aic3x_left_pga_mixer_controls)),
523 SND_SOC_DAPM_MUX("Left Line1L Mux", SND_SOC_NOPM, 0, 0,
524 &aic3x_left_line1_mux_controls),
Daniel Mack54f01912008-11-26 17:47:36 +0100525 SND_SOC_DAPM_MUX("Left Line1R Mux", SND_SOC_NOPM, 0, 0,
526 &aic3x_left_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100527 SND_SOC_DAPM_MUX("Left Line2L Mux", SND_SOC_NOPM, 0, 0,
528 &aic3x_left_line2_mux_controls),
529
Daniel Mack54f01912008-11-26 17:47:36 +0100530 /* Inputs to Right ADC */
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100531 SND_SOC_DAPM_ADC("Right ADC", "Right Capture",
532 LINE1R_2_RADC_CTRL, 2, 0),
533 SND_SOC_DAPM_MIXER("Right PGA Mixer", SND_SOC_NOPM, 0, 0,
534 &aic3x_right_pga_mixer_controls[0],
535 ARRAY_SIZE(aic3x_right_pga_mixer_controls)),
Daniel Mack54f01912008-11-26 17:47:36 +0100536 SND_SOC_DAPM_MUX("Right Line1L Mux", SND_SOC_NOPM, 0, 0,
537 &aic3x_right_line1_mux_controls),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100538 SND_SOC_DAPM_MUX("Right Line1R Mux", SND_SOC_NOPM, 0, 0,
539 &aic3x_right_line1_mux_controls),
540 SND_SOC_DAPM_MUX("Right Line2R Mux", SND_SOC_NOPM, 0, 0,
541 &aic3x_right_line2_mux_controls),
542
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300543 /*
544 * Not a real mic bias widget but similar function. This is for dynamic
545 * control of GPIO1 digital mic modulator clock output function when
546 * using digital mic.
547 */
548 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "GPIO1 dmic modclk",
549 AIC3X_GPIO1_REG, 4, 0xf,
550 AIC3X_GPIO1_FUNC_DIGITAL_MIC_MODCLK,
551 AIC3X_GPIO1_FUNC_DISABLED),
552
553 /*
554 * Also similar function like mic bias. Selects digital mic with
555 * configurable oversampling rate instead of ADC converter.
556 */
557 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 128",
558 AIC3X_ASD_INTF_CTRLA, 0, 3, 1, 0),
559 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 64",
560 AIC3X_ASD_INTF_CTRLA, 0, 3, 2, 0),
561 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "DMic Rate 32",
562 AIC3X_ASD_INTF_CTRLA, 0, 3, 3, 0),
563
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100564 /* Mic Bias */
Jarkko Nikula0bd72a32008-06-25 14:42:08 +0300565 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2V",
566 MICBIAS_CTRL, 6, 3, 1, 0),
567 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias 2.5V",
568 MICBIAS_CTRL, 6, 3, 2, 0),
569 SND_SOC_DAPM_REG(snd_soc_dapm_micbias, "Mic Bias AVDD",
570 MICBIAS_CTRL, 6, 3, 3, 0),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100571
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300572 /* Output mixers */
573 SND_SOC_DAPM_MIXER("Left Line Mixer", SND_SOC_NOPM, 0, 0,
574 &aic3x_left_line_mixer_controls[0],
575 ARRAY_SIZE(aic3x_left_line_mixer_controls)),
576 SND_SOC_DAPM_MIXER("Right Line Mixer", SND_SOC_NOPM, 0, 0,
577 &aic3x_right_line_mixer_controls[0],
578 ARRAY_SIZE(aic3x_right_line_mixer_controls)),
579 SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0,
580 &aic3x_mono_mixer_controls[0],
581 ARRAY_SIZE(aic3x_mono_mixer_controls)),
582 SND_SOC_DAPM_MIXER("Left HP Mixer", SND_SOC_NOPM, 0, 0,
583 &aic3x_left_hp_mixer_controls[0],
584 ARRAY_SIZE(aic3x_left_hp_mixer_controls)),
585 SND_SOC_DAPM_MIXER("Right HP Mixer", SND_SOC_NOPM, 0, 0,
586 &aic3x_right_hp_mixer_controls[0],
587 ARRAY_SIZE(aic3x_right_hp_mixer_controls)),
588 SND_SOC_DAPM_MIXER("Left HPCOM Mixer", SND_SOC_NOPM, 0, 0,
589 &aic3x_left_hpcom_mixer_controls[0],
590 ARRAY_SIZE(aic3x_left_hpcom_mixer_controls)),
591 SND_SOC_DAPM_MIXER("Right HPCOM Mixer", SND_SOC_NOPM, 0, 0,
592 &aic3x_right_hpcom_mixer_controls[0],
593 ARRAY_SIZE(aic3x_right_hpcom_mixer_controls)),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100594
595 SND_SOC_DAPM_OUTPUT("LLOUT"),
596 SND_SOC_DAPM_OUTPUT("RLOUT"),
597 SND_SOC_DAPM_OUTPUT("MONO_LOUT"),
598 SND_SOC_DAPM_OUTPUT("HPLOUT"),
599 SND_SOC_DAPM_OUTPUT("HPROUT"),
600 SND_SOC_DAPM_OUTPUT("HPLCOM"),
601 SND_SOC_DAPM_OUTPUT("HPRCOM"),
602
603 SND_SOC_DAPM_INPUT("MIC3L"),
604 SND_SOC_DAPM_INPUT("MIC3R"),
605 SND_SOC_DAPM_INPUT("LINE1L"),
606 SND_SOC_DAPM_INPUT("LINE1R"),
607 SND_SOC_DAPM_INPUT("LINE2L"),
608 SND_SOC_DAPM_INPUT("LINE2R"),
Jarkko Nikula19f7ac52010-09-17 14:39:01 +0300609
610 /*
611 * Virtual output pin to detection block inside codec. This can be
612 * used to keep codec bias on if gpio or detection features are needed.
613 * Force pin on or construct a path with an input jack and mic bias
614 * widgets.
615 */
616 SND_SOC_DAPM_OUTPUT("Detection"),
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100617};
618
Randolph Chung6184f102010-08-20 12:47:53 +0800619static const struct snd_soc_dapm_widget aic3007_dapm_widgets[] = {
620 /* Class-D outputs */
621 SND_SOC_DAPM_PGA("Left Class-D Out", CLASSD_CTRL, 3, 0, NULL, 0),
622 SND_SOC_DAPM_PGA("Right Class-D Out", CLASSD_CTRL, 2, 0, NULL, 0),
623
624 SND_SOC_DAPM_OUTPUT("SPOP"),
625 SND_SOC_DAPM_OUTPUT("SPOM"),
626};
627
Mark Brownd0cc0d32008-05-13 14:55:22 +0200628static const struct snd_soc_dapm_route intercon[] = {
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100629 /* Left Input */
630 {"Left Line1L Mux", "single-ended", "LINE1L"},
631 {"Left Line1L Mux", "differential", "LINE1L"},
632
633 {"Left Line2L Mux", "single-ended", "LINE2L"},
634 {"Left Line2L Mux", "differential", "LINE2L"},
635
636 {"Left PGA Mixer", "Line1L Switch", "Left Line1L Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100637 {"Left PGA Mixer", "Line1R Switch", "Left Line1R Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100638 {"Left PGA Mixer", "Line2L Switch", "Left Line2L Mux"},
639 {"Left PGA Mixer", "Mic3L Switch", "MIC3L"},
Daniel Mack54f01912008-11-26 17:47:36 +0100640 {"Left PGA Mixer", "Mic3R Switch", "MIC3R"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100641
642 {"Left ADC", NULL, "Left PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300643 {"Left ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100644
645 /* Right Input */
646 {"Right Line1R Mux", "single-ended", "LINE1R"},
647 {"Right Line1R Mux", "differential", "LINE1R"},
648
649 {"Right Line2R Mux", "single-ended", "LINE2R"},
650 {"Right Line2R Mux", "differential", "LINE2R"},
651
Daniel Mack54f01912008-11-26 17:47:36 +0100652 {"Right PGA Mixer", "Line1L Switch", "Right Line1L Mux"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100653 {"Right PGA Mixer", "Line1R Switch", "Right Line1R Mux"},
654 {"Right PGA Mixer", "Line2R Switch", "Right Line2R Mux"},
Daniel Mack54f01912008-11-26 17:47:36 +0100655 {"Right PGA Mixer", "Mic3L Switch", "MIC3L"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100656 {"Right PGA Mixer", "Mic3R Switch", "MIC3R"},
657
658 {"Right ADC", NULL, "Right PGA Mixer"},
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300659 {"Right ADC", NULL, "GPIO1 dmic modclk"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100660
Jarkko Nikulaee15ffd2008-06-25 14:58:46 +0300661 /*
662 * Logical path between digital mic enable and GPIO1 modulator clock
663 * output function
664 */
665 {"GPIO1 dmic modclk", NULL, "DMic Rate 128"},
666 {"GPIO1 dmic modclk", NULL, "DMic Rate 64"},
667 {"GPIO1 dmic modclk", NULL, "DMic Rate 32"},
Jarkko Nikulac3b79e02010-08-27 16:56:49 +0300668
669 /* Left DAC Output */
670 {"Left DAC Mux", "DAC_L1", "Left DAC"},
671 {"Left DAC Mux", "DAC_L2", "Left DAC"},
672 {"Left DAC Mux", "DAC_L3", "Left DAC"},
673
674 /* Right DAC Output */
675 {"Right DAC Mux", "DAC_R1", "Right DAC"},
676 {"Right DAC Mux", "DAC_R2", "Right DAC"},
677 {"Right DAC Mux", "DAC_R3", "Right DAC"},
678
679 /* Left Line Output */
680 {"Left Line Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
681 {"Left Line Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
682 {"Left Line Mixer", "DACL1 Switch", "Left DAC Mux"},
683 {"Left Line Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
684 {"Left Line Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
685 {"Left Line Mixer", "DACR1 Switch", "Right DAC Mux"},
686
687 {"Left Line Out", NULL, "Left Line Mixer"},
688 {"Left Line Out", NULL, "Left DAC Mux"},
689 {"LLOUT", NULL, "Left Line Out"},
690
691 /* Right Line Output */
692 {"Right Line Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
693 {"Right Line Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
694 {"Right Line Mixer", "DACL1 Switch", "Left DAC Mux"},
695 {"Right Line Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
696 {"Right Line Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
697 {"Right Line Mixer", "DACR1 Switch", "Right DAC Mux"},
698
699 {"Right Line Out", NULL, "Right Line Mixer"},
700 {"Right Line Out", NULL, "Right DAC Mux"},
701 {"RLOUT", NULL, "Right Line Out"},
702
703 /* Mono Output */
704 {"Mono Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
705 {"Mono Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
706 {"Mono Mixer", "DACL1 Switch", "Left DAC Mux"},
707 {"Mono Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
708 {"Mono Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
709 {"Mono Mixer", "DACR1 Switch", "Right DAC Mux"},
710
711 {"Mono Out", NULL, "Mono Mixer"},
712 {"MONO_LOUT", NULL, "Mono Out"},
713
714 /* Left HP Output */
715 {"Left HP Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
716 {"Left HP Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
717 {"Left HP Mixer", "DACL1 Switch", "Left DAC Mux"},
718 {"Left HP Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
719 {"Left HP Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
720 {"Left HP Mixer", "DACR1 Switch", "Right DAC Mux"},
721
722 {"Left HP Out", NULL, "Left HP Mixer"},
723 {"Left HP Out", NULL, "Left DAC Mux"},
724 {"HPLOUT", NULL, "Left HP Out"},
725
726 /* Right HP Output */
727 {"Right HP Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
728 {"Right HP Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
729 {"Right HP Mixer", "DACL1 Switch", "Left DAC Mux"},
730 {"Right HP Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
731 {"Right HP Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
732 {"Right HP Mixer", "DACR1 Switch", "Right DAC Mux"},
733
734 {"Right HP Out", NULL, "Right HP Mixer"},
735 {"Right HP Out", NULL, "Right DAC Mux"},
736 {"HPROUT", NULL, "Right HP Out"},
737
738 /* Left HPCOM Output */
739 {"Left HPCOM Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
740 {"Left HPCOM Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
741 {"Left HPCOM Mixer", "DACL1 Switch", "Left DAC Mux"},
742 {"Left HPCOM Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
743 {"Left HPCOM Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
744 {"Left HPCOM Mixer", "DACR1 Switch", "Right DAC Mux"},
745
746 {"Left HPCOM Mux", "differential of HPLOUT", "Left HP Mixer"},
747 {"Left HPCOM Mux", "constant VCM", "Left HPCOM Mixer"},
748 {"Left HPCOM Mux", "single-ended", "Left HPCOM Mixer"},
749 {"Left HP Com", NULL, "Left HPCOM Mux"},
750 {"HPLCOM", NULL, "Left HP Com"},
751
752 /* Right HPCOM Output */
753 {"Right HPCOM Mixer", "Line2L Bypass Switch", "Left Line2L Mux"},
754 {"Right HPCOM Mixer", "PGAL Bypass Switch", "Left PGA Mixer"},
755 {"Right HPCOM Mixer", "DACL1 Switch", "Left DAC Mux"},
756 {"Right HPCOM Mixer", "Line2R Bypass Switch", "Right Line2R Mux"},
757 {"Right HPCOM Mixer", "PGAR Bypass Switch", "Right PGA Mixer"},
758 {"Right HPCOM Mixer", "DACR1 Switch", "Right DAC Mux"},
759
760 {"Right HPCOM Mux", "differential of HPROUT", "Right HP Mixer"},
761 {"Right HPCOM Mux", "constant VCM", "Right HPCOM Mixer"},
762 {"Right HPCOM Mux", "single-ended", "Right HPCOM Mixer"},
763 {"Right HPCOM Mux", "differential of HPLCOM", "Left HPCOM Mixer"},
764 {"Right HPCOM Mux", "external feedback", "Right HPCOM Mixer"},
765 {"Right HP Com", NULL, "Right HPCOM Mux"},
766 {"HPRCOM", NULL, "Right HP Com"},
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100767};
768
Randolph Chung6184f102010-08-20 12:47:53 +0800769static const struct snd_soc_dapm_route intercon_3007[] = {
770 /* Class-D outputs */
771 {"Left Class-D Out", NULL, "Left Line Out"},
772 {"Right Class-D Out", NULL, "Left Line Out"},
773 {"SPOP", NULL, "Left Class-D Out"},
774 {"SPOM", NULL, "Right Class-D Out"},
775};
776
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100777static int aic3x_add_widgets(struct snd_soc_codec *codec)
778{
Randolph Chung6184f102010-08-20 12:47:53 +0800779 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
780
Mark Brownd0cc0d32008-05-13 14:55:22 +0200781 snd_soc_dapm_new_controls(codec, aic3x_dapm_widgets,
782 ARRAY_SIZE(aic3x_dapm_widgets));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100783
784 /* set up audio path interconnects */
Mark Brownd0cc0d32008-05-13 14:55:22 +0200785 snd_soc_dapm_add_routes(codec, intercon, ARRAY_SIZE(intercon));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100786
Randolph Chung6184f102010-08-20 12:47:53 +0800787 if (aic3x->model == AIC3X_MODEL_3007) {
788 snd_soc_dapm_new_controls(codec, aic3007_dapm_widgets,
789 ARRAY_SIZE(aic3007_dapm_widgets));
790 snd_soc_dapm_add_routes(codec, intercon_3007, ARRAY_SIZE(intercon_3007));
791 }
792
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100793 return 0;
794}
795
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100796static int aic3x_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000797 struct snd_pcm_hw_params *params,
798 struct snd_soc_dai *dai)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100799{
800 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000801 struct snd_soc_codec *codec =rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900802 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200803 int codec_clk = 0, bypass_pll = 0, fsref, last_clk = 0;
Peter Meerwald255173b2009-12-14 14:44:56 +0100804 u8 data, j, r, p, pll_q, pll_p = 1, pll_r = 1, pll_j = 1;
805 u16 d, pll_d = 1;
Chaithrika U S06c71282009-07-22 07:45:04 -0400806 u8 reg;
Peter Meerwald255173b2009-12-14 14:44:56 +0100807 int clk;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100808
809 /* select data word length */
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300810 data = snd_soc_read(codec, AIC3X_ASD_INTF_CTRLB) & (~(0x3 << 4));
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100811 switch (params_format(params)) {
812 case SNDRV_PCM_FORMAT_S16_LE:
813 break;
814 case SNDRV_PCM_FORMAT_S20_3LE:
815 data |= (0x01 << 4);
816 break;
817 case SNDRV_PCM_FORMAT_S24_LE:
818 data |= (0x02 << 4);
819 break;
820 case SNDRV_PCM_FORMAT_S32_LE:
821 data |= (0x03 << 4);
822 break;
823 }
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300824 snd_soc_write(codec, AIC3X_ASD_INTF_CTRLB, data);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100825
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200826 /* Fsref can be 44100 or 48000 */
827 fsref = (params_rate(params) % 11025 == 0) ? 44100 : 48000;
828
829 /* Try to find a value for Q which allows us to bypass the PLL and
830 * generate CODEC_CLK directly. */
831 for (pll_q = 2; pll_q < 18; pll_q++)
832 if (aic3x->sysclk / (128 * pll_q) == fsref) {
833 bypass_pll = 1;
834 break;
835 }
836
837 if (bypass_pll) {
838 pll_q &= 0xf;
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300839 snd_soc_write(codec, AIC3X_PLL_PROGA_REG, pll_q << PLLQ_SHIFT);
840 snd_soc_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_CLKDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400841 /* disable PLL if it is bypassed */
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300842 reg = snd_soc_read(codec, AIC3X_PLL_PROGA_REG);
843 snd_soc_write(codec, AIC3X_PLL_PROGA_REG, reg & ~PLL_ENABLE);
Chaithrika U S06c71282009-07-22 07:45:04 -0400844
845 } else {
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300846 snd_soc_write(codec, AIC3X_GPIOB_REG, CODEC_CLKIN_PLLDIV);
Chaithrika U S06c71282009-07-22 07:45:04 -0400847 /* enable PLL when it is used */
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300848 reg = snd_soc_read(codec, AIC3X_PLL_PROGA_REG);
849 snd_soc_write(codec, AIC3X_PLL_PROGA_REG, reg | PLL_ENABLE);
Chaithrika U S06c71282009-07-22 07:45:04 -0400850 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200851
852 /* Route Left DAC to left channel input and
853 * right DAC to right channel input */
854 data = (LDAC2LCH | RDAC2RCH);
855 data |= (fsref == 44100) ? FSREF_44100 : FSREF_48000;
856 if (params_rate(params) >= 64000)
857 data |= DUAL_RATE_MODE;
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300858 snd_soc_write(codec, AIC3X_CODEC_DATAPATH_REG, data);
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200859
860 /* codec sample rate select */
861 data = (fsref * 20) / params_rate(params);
862 if (params_rate(params) < 64000)
863 data /= 2;
864 data /= 5;
865 data -= 2;
866 data |= (data << 4);
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300867 snd_soc_write(codec, AIC3X_SAMPLE_RATE_SEL_REG, data);
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200868
869 if (bypass_pll)
870 return 0;
871
Peter Meerwald255173b2009-12-14 14:44:56 +0100872 /* Use PLL, compute apropriate setup for j, d, r and p, the closest
873 * one wins the game. Try with d==0 first, next with d!=0.
874 * Constraints for j are according to the datasheet.
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200875 * The sysclk is divided by 1000 to prevent integer overflows.
876 */
Peter Meerwald255173b2009-12-14 14:44:56 +0100877
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200878 codec_clk = (2048 * fsref) / (aic3x->sysclk / 1000);
879
880 for (r = 1; r <= 16; r++)
881 for (p = 1; p <= 8; p++) {
Peter Meerwald255173b2009-12-14 14:44:56 +0100882 for (j = 4; j <= 55; j++) {
883 /* This is actually 1000*((j+(d/10000))*r)/p
884 * The term had to be converted to get
885 * rid of the division by 10000; d = 0 here
886 */
Mark Brown5baf8312010-01-02 13:13:42 +0000887 int tmp_clk = (1000 * j * r) / p;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200888
Peter Meerwald255173b2009-12-14 14:44:56 +0100889 /* Check whether this values get closer than
890 * the best ones we had before
891 */
Mark Brown5baf8312010-01-02 13:13:42 +0000892 if (abs(codec_clk - tmp_clk) <
Peter Meerwald255173b2009-12-14 14:44:56 +0100893 abs(codec_clk - last_clk)) {
894 pll_j = j; pll_d = 0;
895 pll_r = r; pll_p = p;
Mark Brown5baf8312010-01-02 13:13:42 +0000896 last_clk = tmp_clk;
Peter Meerwald255173b2009-12-14 14:44:56 +0100897 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200898
Peter Meerwald255173b2009-12-14 14:44:56 +0100899 /* Early exit for exact matches */
Mark Brown5baf8312010-01-02 13:13:42 +0000900 if (tmp_clk == codec_clk)
Peter Meerwald255173b2009-12-14 14:44:56 +0100901 goto found;
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200902 }
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200903 }
904
Peter Meerwald255173b2009-12-14 14:44:56 +0100905 /* try with d != 0 */
906 for (p = 1; p <= 8; p++) {
907 j = codec_clk * p / 1000;
908
909 if (j < 4 || j > 11)
910 continue;
911
912 /* do not use codec_clk here since we'd loose precision */
913 d = ((2048 * p * fsref) - j * aic3x->sysclk)
914 * 100 / (aic3x->sysclk/100);
915
916 clk = (10000 * j + d) / (10 * p);
917
918 /* check whether this values get closer than the best
919 * ones we had before */
920 if (abs(codec_clk - clk) < abs(codec_clk - last_clk)) {
921 pll_j = j; pll_d = d; pll_r = 1; pll_p = p;
922 last_clk = clk;
923 }
924
925 /* Early exit for exact matches */
926 if (clk == codec_clk)
927 goto found;
928 }
929
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200930 if (last_clk == 0) {
931 printk(KERN_ERR "%s(): unable to setup PLL\n", __func__);
932 return -EINVAL;
933 }
934
Peter Meerwald255173b2009-12-14 14:44:56 +0100935found:
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300936 data = snd_soc_read(codec, AIC3X_PLL_PROGA_REG);
937 snd_soc_write(codec, AIC3X_PLL_PROGA_REG,
938 data | (pll_p << PLLP_SHIFT));
939 snd_soc_write(codec, AIC3X_OVRF_STATUS_AND_PLLR_REG,
940 pll_r << PLLR_SHIFT);
941 snd_soc_write(codec, AIC3X_PLL_PROGB_REG, pll_j << PLLJ_SHIFT);
942 snd_soc_write(codec, AIC3X_PLL_PROGC_REG,
943 (pll_d >> 6) << PLLD_MSB_SHIFT);
944 snd_soc_write(codec, AIC3X_PLL_PROGD_REG,
945 (pll_d & 0x3F) << PLLD_LSB_SHIFT);
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200946
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100947 return 0;
948}
949
Liam Girdwoode550e172008-07-07 16:07:52 +0100950static int aic3x_mute(struct snd_soc_dai *dai, int mute)
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100951{
952 struct snd_soc_codec *codec = dai->codec;
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300953 u8 ldac_reg = snd_soc_read(codec, LDAC_VOL) & ~MUTE_ON;
954 u8 rdac_reg = snd_soc_read(codec, RDAC_VOL) & ~MUTE_ON;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100955
956 if (mute) {
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300957 snd_soc_write(codec, LDAC_VOL, ldac_reg | MUTE_ON);
958 snd_soc_write(codec, RDAC_VOL, rdac_reg | MUTE_ON);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100959 } else {
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300960 snd_soc_write(codec, LDAC_VOL, ldac_reg);
961 snd_soc_write(codec, RDAC_VOL, rdac_reg);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100962 }
963
964 return 0;
965}
966
Liam Girdwoode550e172008-07-07 16:07:52 +0100967static int aic3x_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100968 int clk_id, unsigned int freq, int dir)
969{
970 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900971 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100972
Daniel Mack4f9c16c2008-04-30 16:20:19 +0200973 aic3x->sysclk = freq;
974 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100975}
976
Liam Girdwoode550e172008-07-07 16:07:52 +0100977static int aic3x_set_dai_fmt(struct snd_soc_dai *codec_dai,
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100978 unsigned int fmt)
979{
980 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900981 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Jarkko Nikula81971a12008-06-25 14:58:45 +0300982 u8 iface_areg, iface_breg;
Troy Kiskya24f4f62008-12-19 13:05:22 -0700983 int delay = 0;
Jarkko Nikula81971a12008-06-25 14:58:45 +0300984
Jarkko Nikulae18eca42010-09-14 14:54:47 +0300985 iface_areg = snd_soc_read(codec, AIC3X_ASD_INTF_CTRLA) & 0x3f;
986 iface_breg = snd_soc_read(codec, AIC3X_ASD_INTF_CTRLB) & 0x3f;
Vladimir Barinov44d0a872007-11-14 17:07:17 +0100987
988 /* set master/slave audio interface */
989 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
990 case SND_SOC_DAIFMT_CBM_CFM:
991 aic3x->master = 1;
992 iface_areg |= BIT_CLK_MASTER | WORD_CLK_MASTER;
993 break;
994 case SND_SOC_DAIFMT_CBS_CFS:
995 aic3x->master = 0;
996 break;
997 default:
998 return -EINVAL;
999 }
1000
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001001 /*
1002 * match both interface format and signal polarities since they
1003 * are fixed
1004 */
1005 switch (fmt & (SND_SOC_DAIFMT_FORMAT_MASK |
1006 SND_SOC_DAIFMT_INV_MASK)) {
1007 case (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001008 break;
Troy Kiskya24f4f62008-12-19 13:05:22 -07001009 case (SND_SOC_DAIFMT_DSP_A | SND_SOC_DAIFMT_IB_NF):
1010 delay = 1;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001011 case (SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_IB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001012 iface_breg |= (0x01 << 6);
1013 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001014 case (SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001015 iface_breg |= (0x02 << 6);
1016 break;
Jarkko Nikula4b7d2832008-10-23 14:27:03 +03001017 case (SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_NB_NF):
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001018 iface_breg |= (0x03 << 6);
1019 break;
1020 default:
1021 return -EINVAL;
1022 }
1023
1024 /* set iface */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001025 snd_soc_write(codec, AIC3X_ASD_INTF_CTRLA, iface_areg);
1026 snd_soc_write(codec, AIC3X_ASD_INTF_CTRLB, iface_breg);
1027 snd_soc_write(codec, AIC3X_ASD_INTF_CTRLC, delay);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001028
1029 return 0;
1030}
1031
Jarkko Nikula6c1a7d42010-09-20 10:39:12 +03001032static int aic3x_init_3007(struct snd_soc_codec *codec)
1033{
1034 u8 tmp1, tmp2, *cache = codec->reg_cache;
1035
1036 /*
1037 * There is no need to cache writes to undocumented page 0xD but
1038 * respective page 0 register cache entries must be preserved
1039 */
1040 tmp1 = cache[0xD];
1041 tmp2 = cache[0x8];
1042 /* Class-D speaker driver init; datasheet p. 46 */
1043 snd_soc_write(codec, AIC3X_PAGE_SELECT, 0x0D);
1044 snd_soc_write(codec, 0xD, 0x0D);
1045 snd_soc_write(codec, 0x8, 0x5C);
1046 snd_soc_write(codec, 0x8, 0x5D);
1047 snd_soc_write(codec, 0x8, 0x5C);
1048 snd_soc_write(codec, AIC3X_PAGE_SELECT, 0x00);
1049 cache[0xD] = tmp1;
1050 cache[0x8] = tmp2;
1051
1052 return 0;
1053}
1054
1055static int aic3x_set_power(struct snd_soc_codec *codec, int power)
1056{
1057 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
1058 int i, ret;
1059 u8 *cache = codec->reg_cache;
1060
1061 if (power) {
1062 ret = regulator_bulk_enable(ARRAY_SIZE(aic3x->supplies),
1063 aic3x->supplies);
1064 if (ret)
1065 goto out;
1066 aic3x->power = 1;
1067 if (aic3x->gpio_reset >= 0) {
1068 udelay(1);
1069 gpio_set_value(aic3x->gpio_reset, 1);
1070 }
1071
1072 /* Sync reg_cache with the hardware */
1073 codec->cache_only = 0;
1074 for (i = 0; i < ARRAY_SIZE(aic3x_reg); i++)
1075 snd_soc_write(codec, i, cache[i]);
1076 if (aic3x->model == AIC3X_MODEL_3007)
1077 aic3x_init_3007(codec);
1078 codec->cache_sync = 0;
1079 } else {
1080 aic3x->power = 0;
1081 if (aic3x->gpio_reset >= 0)
1082 gpio_set_value(aic3x->gpio_reset, 0);
1083 ret = regulator_bulk_disable(ARRAY_SIZE(aic3x->supplies),
1084 aic3x->supplies);
1085 }
1086out:
1087 return ret;
1088}
1089
Mark Brown0be98982008-05-19 12:31:28 +02001090static int aic3x_set_bias_level(struct snd_soc_codec *codec,
1091 enum snd_soc_bias_level level)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001092{
Mark Brownb2c812e2010-04-14 15:35:19 +09001093 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001094 u8 reg;
1095
Mark Brown0be98982008-05-19 12:31:28 +02001096 switch (level) {
1097 case SND_SOC_BIAS_ON:
Jarkko Nikuladb138022010-04-26 15:49:13 +03001098 break;
1099 case SND_SOC_BIAS_PREPARE:
Jarkko Nikulac23fd752010-09-10 14:23:29 +03001100 if (codec->bias_level == SND_SOC_BIAS_STANDBY &&
1101 aic3x->master) {
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001102 /* enable pll */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001103 reg = snd_soc_read(codec, AIC3X_PLL_PROGA_REG);
1104 snd_soc_write(codec, AIC3X_PLL_PROGA_REG,
1105 reg | PLL_ENABLE);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001106 }
1107 break;
Mark Brown0be98982008-05-19 12:31:28 +02001108 case SND_SOC_BIAS_STANDBY:
Jarkko Nikula6c1a7d42010-09-20 10:39:12 +03001109 if (!aic3x->power)
1110 aic3x_set_power(codec, 1);
Jarkko Nikulac23fd752010-09-10 14:23:29 +03001111 if (codec->bias_level == SND_SOC_BIAS_PREPARE &&
1112 aic3x->master) {
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001113 /* disable pll */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001114 reg = snd_soc_read(codec, AIC3X_PLL_PROGA_REG);
1115 snd_soc_write(codec, AIC3X_PLL_PROGA_REG,
1116 reg & ~PLL_ENABLE);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001117 }
1118 break;
Jarkko Nikulac23fd752010-09-10 14:23:29 +03001119 case SND_SOC_BIAS_OFF:
Jarkko Nikula6c1a7d42010-09-20 10:39:12 +03001120 if (aic3x->power)
1121 aic3x_set_power(codec, 0);
Jarkko Nikulac23fd752010-09-10 14:23:29 +03001122 break;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001123 }
Mark Brown0be98982008-05-19 12:31:28 +02001124 codec->bias_level = level;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001125
1126 return 0;
1127}
1128
Daniel Mack54e7e612008-04-30 16:20:52 +02001129void aic3x_set_gpio(struct snd_soc_codec *codec, int gpio, int state)
1130{
1131 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1132 u8 bit = gpio ? 3: 0;
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001133 u8 val = snd_soc_read(codec, reg) & ~(1 << bit);
1134 snd_soc_write(codec, reg, val | (!!state << bit));
Daniel Mack54e7e612008-04-30 16:20:52 +02001135}
1136EXPORT_SYMBOL_GPL(aic3x_set_gpio);
1137
1138int aic3x_get_gpio(struct snd_soc_codec *codec, int gpio)
1139{
1140 u8 reg = gpio ? AIC3X_GPIO2_REG : AIC3X_GPIO1_REG;
1141 u8 val, bit = gpio ? 2: 1;
1142
1143 aic3x_read(codec, reg, &val);
1144 return (val >> bit) & 1;
1145}
1146EXPORT_SYMBOL_GPL(aic3x_get_gpio);
1147
Daniel Mack6f2a9742008-12-03 11:44:17 +01001148void aic3x_set_headset_detection(struct snd_soc_codec *codec, int detect,
1149 int headset_debounce, int button_debounce)
1150{
1151 u8 val;
1152
1153 val = ((detect & AIC3X_HEADSET_DETECT_MASK)
1154 << AIC3X_HEADSET_DETECT_SHIFT) |
1155 ((headset_debounce & AIC3X_HEADSET_DEBOUNCE_MASK)
1156 << AIC3X_HEADSET_DEBOUNCE_SHIFT) |
1157 ((button_debounce & AIC3X_BUTTON_DEBOUNCE_MASK)
1158 << AIC3X_BUTTON_DEBOUNCE_SHIFT);
1159
1160 if (detect & AIC3X_HEADSET_DETECT_MASK)
1161 val |= AIC3X_HEADSET_DETECT_ENABLED;
1162
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001163 snd_soc_write(codec, AIC3X_HEADSET_DETECT_CTRL_A, val);
Daniel Mack6f2a9742008-12-03 11:44:17 +01001164}
1165EXPORT_SYMBOL_GPL(aic3x_set_headset_detection);
1166
Daniel Mack54e7e612008-04-30 16:20:52 +02001167int aic3x_headset_detected(struct snd_soc_codec *codec)
1168{
1169 u8 val;
Daniel Mack6f2a9742008-12-03 11:44:17 +01001170 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1171 return (val >> 4) & 1;
Daniel Mack54e7e612008-04-30 16:20:52 +02001172}
1173EXPORT_SYMBOL_GPL(aic3x_headset_detected);
1174
Daniel Mack6f2a9742008-12-03 11:44:17 +01001175int aic3x_button_pressed(struct snd_soc_codec *codec)
1176{
1177 u8 val;
1178 aic3x_read(codec, AIC3X_HEADSET_DETECT_CTRL_B, &val);
1179 return (val >> 5) & 1;
1180}
1181EXPORT_SYMBOL_GPL(aic3x_button_pressed);
1182
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001183#define AIC3X_RATES SNDRV_PCM_RATE_8000_96000
1184#define AIC3X_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
1185 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
1186
Eric Miao6335d052009-03-03 09:41:00 +08001187static struct snd_soc_dai_ops aic3x_dai_ops = {
1188 .hw_params = aic3x_hw_params,
1189 .digital_mute = aic3x_mute,
1190 .set_sysclk = aic3x_set_dai_sysclk,
1191 .set_fmt = aic3x_set_dai_fmt,
1192};
1193
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001194static struct snd_soc_dai_driver aic3x_dai = {
1195 .name = "tlv320aic3x-hifi",
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001196 .playback = {
1197 .stream_name = "Playback",
1198 .channels_min = 1,
1199 .channels_max = 2,
1200 .rates = AIC3X_RATES,
1201 .formats = AIC3X_FORMATS,},
1202 .capture = {
1203 .stream_name = "Capture",
1204 .channels_min = 1,
1205 .channels_max = 2,
1206 .rates = AIC3X_RATES,
1207 .formats = AIC3X_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001208 .ops = &aic3x_dai_ops,
Randolph Chung14017612010-08-19 12:06:17 +01001209 .symmetric_rates = 1,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001210};
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001211
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001212static int aic3x_suspend(struct snd_soc_codec *codec, pm_message_t state)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001213{
Mark Brown0be98982008-05-19 12:31:28 +02001214 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001215
1216 return 0;
1217}
1218
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001219static int aic3x_resume(struct snd_soc_codec *codec)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001220{
Mark Brown29e189c2010-05-07 20:30:00 +01001221 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001222
1223 return 0;
1224}
1225
1226/*
1227 * initialise the AIC3X driver
1228 * register the mixer and dsp interfaces with the kernel
1229 */
Ben Dookscb3826f2009-08-20 22:50:41 +01001230static int aic3x_init(struct snd_soc_codec *codec)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001231{
Randolph Chung6184f102010-08-20 12:47:53 +08001232 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001233 int reg;
1234
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001235 snd_soc_write(codec, AIC3X_PAGE_SELECT, PAGE0_SELECT);
1236 snd_soc_write(codec, AIC3X_RESET, SOFT_RESET);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001237
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001238 /* DAC default volume and mute */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001239 snd_soc_write(codec, LDAC_VOL, DEFAULT_VOL | MUTE_ON);
1240 snd_soc_write(codec, RDAC_VOL, DEFAULT_VOL | MUTE_ON);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001241
1242 /* DAC to HP default volume and route to Output mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001243 snd_soc_write(codec, DACL1_2_HPLOUT_VOL, DEFAULT_VOL | ROUTE_ON);
1244 snd_soc_write(codec, DACR1_2_HPROUT_VOL, DEFAULT_VOL | ROUTE_ON);
1245 snd_soc_write(codec, DACL1_2_HPLCOM_VOL, DEFAULT_VOL | ROUTE_ON);
1246 snd_soc_write(codec, DACR1_2_HPRCOM_VOL, DEFAULT_VOL | ROUTE_ON);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001247 /* DAC to Line Out default volume and route to Output mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001248 snd_soc_write(codec, DACL1_2_LLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1249 snd_soc_write(codec, DACR1_2_RLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001250 /* DAC to Mono Line Out default volume and route to Output mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001251 snd_soc_write(codec, DACL1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
1252 snd_soc_write(codec, DACR1_2_MONOLOPM_VOL, DEFAULT_VOL | ROUTE_ON);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001253
1254 /* unmute all outputs */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001255 reg = snd_soc_read(codec, LLOPM_CTRL);
1256 snd_soc_write(codec, LLOPM_CTRL, reg | UNMUTE);
1257 reg = snd_soc_read(codec, RLOPM_CTRL);
1258 snd_soc_write(codec, RLOPM_CTRL, reg | UNMUTE);
1259 reg = snd_soc_read(codec, MONOLOPM_CTRL);
1260 snd_soc_write(codec, MONOLOPM_CTRL, reg | UNMUTE);
1261 reg = snd_soc_read(codec, HPLOUT_CTRL);
1262 snd_soc_write(codec, HPLOUT_CTRL, reg | UNMUTE);
1263 reg = snd_soc_read(codec, HPROUT_CTRL);
1264 snd_soc_write(codec, HPROUT_CTRL, reg | UNMUTE);
1265 reg = snd_soc_read(codec, HPLCOM_CTRL);
1266 snd_soc_write(codec, HPLCOM_CTRL, reg | UNMUTE);
1267 reg = snd_soc_read(codec, HPRCOM_CTRL);
1268 snd_soc_write(codec, HPRCOM_CTRL, reg | UNMUTE);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001269
1270 /* ADC default volume and unmute */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001271 snd_soc_write(codec, LADC_VOL, DEFAULT_GAIN);
1272 snd_soc_write(codec, RADC_VOL, DEFAULT_GAIN);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001273 /* By default route Line1 to ADC PGA mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001274 snd_soc_write(codec, LINE1L_2_LADC_CTRL, 0x0);
1275 snd_soc_write(codec, LINE1R_2_RADC_CTRL, 0x0);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001276
1277 /* PGA to HP Bypass default volume, disconnect from Output Mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001278 snd_soc_write(codec, PGAL_2_HPLOUT_VOL, DEFAULT_VOL);
1279 snd_soc_write(codec, PGAR_2_HPROUT_VOL, DEFAULT_VOL);
1280 snd_soc_write(codec, PGAL_2_HPLCOM_VOL, DEFAULT_VOL);
1281 snd_soc_write(codec, PGAR_2_HPRCOM_VOL, DEFAULT_VOL);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001282 /* PGA to Line Out default volume, disconnect from Output Mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001283 snd_soc_write(codec, PGAL_2_LLOPM_VOL, DEFAULT_VOL);
1284 snd_soc_write(codec, PGAR_2_RLOPM_VOL, DEFAULT_VOL);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001285 /* PGA to Mono Line Out default volume, disconnect from Output Mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001286 snd_soc_write(codec, PGAL_2_MONOLOPM_VOL, DEFAULT_VOL);
1287 snd_soc_write(codec, PGAR_2_MONOLOPM_VOL, DEFAULT_VOL);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001288
1289 /* Line2 to HP Bypass default volume, disconnect from Output Mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001290 snd_soc_write(codec, LINE2L_2_HPLOUT_VOL, DEFAULT_VOL);
1291 snd_soc_write(codec, LINE2R_2_HPROUT_VOL, DEFAULT_VOL);
1292 snd_soc_write(codec, LINE2L_2_HPLCOM_VOL, DEFAULT_VOL);
1293 snd_soc_write(codec, LINE2R_2_HPRCOM_VOL, DEFAULT_VOL);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001294 /* Line2 Line Out default volume, disconnect from Output Mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001295 snd_soc_write(codec, LINE2L_2_LLOPM_VOL, DEFAULT_VOL);
1296 snd_soc_write(codec, LINE2R_2_RLOPM_VOL, DEFAULT_VOL);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001297 /* Line2 to Mono Out default volume, disconnect from Output Mixer */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001298 snd_soc_write(codec, LINE2L_2_MONOLOPM_VOL, DEFAULT_VOL);
1299 snd_soc_write(codec, LINE2R_2_MONOLOPM_VOL, DEFAULT_VOL);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001300
Randolph Chung6184f102010-08-20 12:47:53 +08001301 if (aic3x->model == AIC3X_MODEL_3007) {
Jarkko Nikula6c1a7d42010-09-20 10:39:12 +03001302 aic3x_init_3007(codec);
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001303 snd_soc_write(codec, CLASSD_CTRL, 0);
Randolph Chung6184f102010-08-20 12:47:53 +08001304 }
1305
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001306 /* off, with power on */
Mark Brown0be98982008-05-19 12:31:28 +02001307 aic3x_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001308
Ben Dookscb3826f2009-08-20 22:50:41 +01001309 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001310}
1311
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001312static int aic3x_probe(struct snd_soc_codec *codec)
Ben Dookscb3826f2009-08-20 22:50:41 +01001313{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001314 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
Jarkko Nikula2f241112010-09-20 10:39:11 +03001315 int ret, i;
Ben Dookscb3826f2009-08-20 22:50:41 +01001316
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001317 codec->control_data = aic3x->control_data;
1318
Jarkko Nikulaa84a4412010-09-14 14:54:48 +03001319 ret = snd_soc_codec_set_cache_io(codec, 8, 8, aic3x->control_type);
1320 if (ret != 0) {
1321 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
1322 return ret;
1323 }
1324
Jarkko Nikula2f241112010-09-20 10:39:11 +03001325 if (aic3x->gpio_reset >= 0) {
1326 ret = gpio_request(aic3x->gpio_reset, "tlv320aic3x reset");
1327 if (ret != 0)
1328 goto err_gpio;
1329 gpio_direction_output(aic3x->gpio_reset, 0);
1330 }
1331
1332 for (i = 0; i < ARRAY_SIZE(aic3x->supplies); i++)
1333 aic3x->supplies[i].supply = aic3x_supply_names[i];
1334
1335 ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(aic3x->supplies),
1336 aic3x->supplies);
1337 if (ret != 0) {
1338 dev_err(codec->dev, "Failed to request supplies: %d\n", ret);
1339 goto err_get;
1340 }
1341
1342 ret = regulator_bulk_enable(ARRAY_SIZE(aic3x->supplies),
1343 aic3x->supplies);
1344 if (ret != 0) {
1345 dev_err(codec->dev, "Failed to enable supplies: %d\n", ret);
1346 goto err_enable;
1347 }
Jarkko Nikula6c1a7d42010-09-20 10:39:12 +03001348 aic3x->power = 1;
Jarkko Nikula2f241112010-09-20 10:39:11 +03001349
1350 if (aic3x->gpio_reset >= 0) {
1351 udelay(1);
1352 gpio_set_value(aic3x->gpio_reset, 1);
1353 }
1354
Jarkko Nikula37b47652010-08-23 10:38:40 +03001355 aic3x_init(codec);
1356
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001357 if (aic3x->setup) {
1358 /* setup GPIO functions */
Jarkko Nikulae18eca42010-09-14 14:54:47 +03001359 snd_soc_write(codec, AIC3X_GPIO1_REG,
1360 (aic3x->setup->gpio_func[0] & 0xf) << 4);
1361 snd_soc_write(codec, AIC3X_GPIO2_REG,
1362 (aic3x->setup->gpio_func[1] & 0xf) << 4);
Ben Dookscb3826f2009-08-20 22:50:41 +01001363 }
1364
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001365 snd_soc_add_controls(codec, aic3x_snd_controls,
1366 ARRAY_SIZE(aic3x_snd_controls));
Randolph Chung6184f102010-08-20 12:47:53 +08001367 if (aic3x->model == AIC3X_MODEL_3007)
1368 snd_soc_add_controls(codec, &aic3x_classd_amp_gain_ctrl, 1);
Ben Dookscb3826f2009-08-20 22:50:41 +01001369
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001370 aic3x_add_widgets(codec);
Ben Dookscb3826f2009-08-20 22:50:41 +01001371
1372 return 0;
Jarkko Nikula2f241112010-09-20 10:39:11 +03001373
1374err_enable:
1375 regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1376err_get:
1377 if (aic3x->gpio_reset >= 0)
1378 gpio_free(aic3x->gpio_reset);
1379err_gpio:
1380 kfree(aic3x);
1381 return ret;
Ben Dookscb3826f2009-08-20 22:50:41 +01001382}
1383
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001384static int aic3x_remove(struct snd_soc_codec *codec)
Ben Dookscb3826f2009-08-20 22:50:41 +01001385{
Jarkko Nikula2f241112010-09-20 10:39:11 +03001386 struct aic3x_priv *aic3x = snd_soc_codec_get_drvdata(codec);
1387
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001388 aic3x_set_bias_level(codec, SND_SOC_BIAS_OFF);
Jarkko Nikula2f241112010-09-20 10:39:11 +03001389 if (aic3x->gpio_reset >= 0) {
1390 gpio_set_value(aic3x->gpio_reset, 0);
1391 gpio_free(aic3x->gpio_reset);
1392 }
1393 regulator_bulk_disable(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1394 regulator_bulk_free(ARRAY_SIZE(aic3x->supplies), aic3x->supplies);
1395
Ben Dookscb3826f2009-08-20 22:50:41 +01001396 return 0;
1397}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001398
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001399static struct snd_soc_codec_driver soc_codec_dev_aic3x = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001400 .set_bias_level = aic3x_set_bias_level,
1401 .reg_cache_size = ARRAY_SIZE(aic3x_reg),
1402 .reg_word_size = sizeof(u8),
1403 .reg_cache_default = aic3x_reg,
1404 .probe = aic3x_probe,
1405 .remove = aic3x_remove,
1406 .suspend = aic3x_suspend,
1407 .resume = aic3x_resume,
1408};
1409
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001410#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1411/*
1412 * AIC3X 2 wire address can be up to 4 devices with device addresses
1413 * 0x18, 0x19, 0x1A, 0x1B
1414 */
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001415
Randolph Chung6184f102010-08-20 12:47:53 +08001416static const struct i2c_device_id aic3x_i2c_id[] = {
1417 [AIC3X_MODEL_3X] = { "tlv320aic3x", 0 },
1418 [AIC3X_MODEL_33] = { "tlv320aic33", 0 },
1419 [AIC3X_MODEL_3007] = { "tlv320aic3007", 0 },
1420 { }
1421};
1422MODULE_DEVICE_TABLE(i2c, aic3x_i2c_id);
1423
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001424/*
1425 * If the i2c layer weren't so broken, we could pass this kind of data
1426 * around
1427 */
Jean Delvareba8ed122008-09-22 14:15:53 +02001428static int aic3x_i2c_probe(struct i2c_client *i2c,
1429 const struct i2c_device_id *id)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001430{
Jarkko Nikula5193d622010-05-05 13:02:03 +03001431 struct aic3x_pdata *pdata = i2c->dev.platform_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001432 struct aic3x_priv *aic3x;
Jarkko Nikula2f241112010-09-20 10:39:11 +03001433 int ret;
Randolph Chung6184f102010-08-20 12:47:53 +08001434 const struct i2c_device_id *tbl;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001435
Ben Dookscb3826f2009-08-20 22:50:41 +01001436 aic3x = kzalloc(sizeof(struct aic3x_priv), GFP_KERNEL);
1437 if (aic3x == NULL) {
1438 dev_err(&i2c->dev, "failed to create private data\n");
1439 return -ENOMEM;
1440 }
1441
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001442 aic3x->control_data = i2c;
Jarkko Nikulaa84a4412010-09-14 14:54:48 +03001443 aic3x->control_type = SND_SOC_I2C;
1444
Ben Dookscb3826f2009-08-20 22:50:41 +01001445 i2c_set_clientdata(i2c, aic3x);
Jarkko Nikulac7763572010-09-05 19:10:22 +03001446 if (pdata) {
1447 aic3x->gpio_reset = pdata->gpio_reset;
1448 aic3x->setup = pdata->setup;
1449 } else {
1450 aic3x->gpio_reset = -1;
1451 }
Ben Dookscb3826f2009-08-20 22:50:41 +01001452
Randolph Chung6184f102010-08-20 12:47:53 +08001453 for (tbl = aic3x_i2c_id; tbl->name[0]; tbl++) {
1454 if (!strcmp(tbl->name, id->name))
1455 break;
1456 }
1457 aic3x->model = tbl - aic3x_i2c_id;
1458
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001459 ret = snd_soc_register_codec(&i2c->dev,
1460 &soc_codec_dev_aic3x, &aic3x_dai, 1);
1461 if (ret < 0)
Jarkko Nikula2f241112010-09-20 10:39:11 +03001462 kfree(aic3x);
Jarkko Nikula07779fd2010-04-26 15:49:14 +03001463 return ret;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001464}
1465
Jean Delvareba8ed122008-09-22 14:15:53 +02001466static int aic3x_i2c_remove(struct i2c_client *client)
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001467{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001468 snd_soc_unregister_codec(&client->dev);
1469 kfree(i2c_get_clientdata(client));
1470 return 0;
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001471}
1472
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001473/* machine i2c codec control layer */
1474static struct i2c_driver aic3x_i2c_driver = {
1475 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001476 .name = "tlv320aic3x-codec",
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001477 .owner = THIS_MODULE,
1478 },
Ben Dookscb3826f2009-08-20 22:50:41 +01001479 .probe = aic3x_i2c_probe,
Jean Delvareba8ed122008-09-22 14:15:53 +02001480 .remove = aic3x_i2c_remove,
1481 .id_table = aic3x_i2c_id,
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001482};
Daniel Mack54e7e612008-04-30 16:20:52 +02001483
Ben Dookscb3826f2009-08-20 22:50:41 +01001484static inline void aic3x_i2c_init(void)
Jean Delvareba8ed122008-09-22 14:15:53 +02001485{
Jean Delvareba8ed122008-09-22 14:15:53 +02001486 int ret;
1487
1488 ret = i2c_add_driver(&aic3x_i2c_driver);
Ben Dookscb3826f2009-08-20 22:50:41 +01001489 if (ret)
1490 printk(KERN_ERR "%s: error regsitering i2c driver, %d\n",
1491 __func__, ret);
Jean Delvareba8ed122008-09-22 14:15:53 +02001492}
Ben Dookscb3826f2009-08-20 22:50:41 +01001493
1494static inline void aic3x_i2c_exit(void)
1495{
1496 i2c_del_driver(&aic3x_i2c_driver);
1497}
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001498#endif
1499
Takashi Iwaic9b3a402008-12-10 07:47:22 +01001500static int __init aic3x_modinit(void)
Mark Brown64089b82008-12-08 19:17:58 +00001501{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001502 int ret = 0;
1503#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1504 ret = i2c_add_driver(&aic3x_i2c_driver);
1505 if (ret != 0) {
1506 printk(KERN_ERR "Failed to register TLV320AIC3x I2C driver: %d\n",
1507 ret);
1508 }
1509#endif
1510 return ret;
Mark Brown64089b82008-12-08 19:17:58 +00001511}
1512module_init(aic3x_modinit);
1513
1514static void __exit aic3x_exit(void)
1515{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001516#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1517 i2c_del_driver(&aic3x_i2c_driver);
1518#endif
Mark Brown64089b82008-12-08 19:17:58 +00001519}
1520module_exit(aic3x_exit);
1521
Vladimir Barinov44d0a872007-11-14 17:07:17 +01001522MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver");
1523MODULE_AUTHOR("Vladimir Barinov");
1524MODULE_LICENSE("GPL");