blob: ac0d3b4844a84b311853a639b78de83598c66317 [file] [log] [blame]
Alexander Sverdlin67b22512011-01-19 21:22:06 +03001/*
2 * CS4271 ASoC codec driver
3 *
4 * Copyright (c) 2010 Alexander Sverdlin <subaparts@yandex.ru>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * This driver support CS4271 codec being master or slave, working
17 * in control port mode, connected either via SPI or I2C.
18 * The data format accepted is I2S or left-justified.
19 * DAPM support not implemented.
20 */
21
22#include <linux/module.h>
23#include <linux/slab.h>
24#include <linux/delay.h>
Alexander Sverdlin67b22512011-01-19 21:22:06 +030025#include <linux/gpio.h>
26#include <linux/i2c.h>
27#include <linux/spi/spi.h>
Daniel Macka31ebc32012-09-28 01:36:44 +020028#include <linux/of_device.h>
29#include <linux/of_gpio.h>
30#include <sound/pcm.h>
31#include <sound/soc.h>
32#include <sound/tlv.h>
Alexander Sverdlin67b22512011-01-19 21:22:06 +030033#include <sound/cs4271.h>
34
35#define CS4271_PCM_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \
36 SNDRV_PCM_FMTBIT_S24_LE | \
37 SNDRV_PCM_FMTBIT_S32_LE)
Alexander Sverdlin383f8462011-03-07 20:29:36 +030038#define CS4271_PCM_RATES SNDRV_PCM_RATE_8000_192000
Alexander Sverdlin67b22512011-01-19 21:22:06 +030039
40/*
41 * CS4271 registers
Alexander Sverdlin67b22512011-01-19 21:22:06 +030042 */
Daniel Mack1b1861e2013-03-07 23:53:12 +010043#define CS4271_MODE1 0x01 /* Mode Control 1 */
44#define CS4271_DACCTL 0x02 /* DAC Control */
45#define CS4271_DACVOL 0x03 /* DAC Volume & Mixing Control */
46#define CS4271_VOLA 0x04 /* DAC Channel A Volume Control */
47#define CS4271_VOLB 0x05 /* DAC Channel B Volume Control */
48#define CS4271_ADCCTL 0x06 /* ADC Control */
49#define CS4271_MODE2 0x07 /* Mode Control 2 */
50#define CS4271_CHIPID 0x08 /* Chip ID */
Alexander Sverdlin67b22512011-01-19 21:22:06 +030051
52#define CS4271_FIRSTREG CS4271_MODE1
53#define CS4271_LASTREG CS4271_MODE2
54#define CS4271_NR_REGS ((CS4271_LASTREG & 0xFF) + 1)
55
56/* Bit masks for the CS4271 registers */
57#define CS4271_MODE1_MODE_MASK 0xC0
58#define CS4271_MODE1_MODE_1X 0x00
59#define CS4271_MODE1_MODE_2X 0x80
60#define CS4271_MODE1_MODE_4X 0xC0
61
62#define CS4271_MODE1_DIV_MASK 0x30
63#define CS4271_MODE1_DIV_1 0x00
64#define CS4271_MODE1_DIV_15 0x10
65#define CS4271_MODE1_DIV_2 0x20
66#define CS4271_MODE1_DIV_3 0x30
67
68#define CS4271_MODE1_MASTER 0x08
69
70#define CS4271_MODE1_DAC_DIF_MASK 0x07
71#define CS4271_MODE1_DAC_DIF_LJ 0x00
72#define CS4271_MODE1_DAC_DIF_I2S 0x01
73#define CS4271_MODE1_DAC_DIF_RJ16 0x02
74#define CS4271_MODE1_DAC_DIF_RJ24 0x03
75#define CS4271_MODE1_DAC_DIF_RJ20 0x04
76#define CS4271_MODE1_DAC_DIF_RJ18 0x05
77
78#define CS4271_DACCTL_AMUTE 0x80
79#define CS4271_DACCTL_IF_SLOW 0x40
80
81#define CS4271_DACCTL_DEM_MASK 0x30
82#define CS4271_DACCTL_DEM_DIS 0x00
83#define CS4271_DACCTL_DEM_441 0x10
84#define CS4271_DACCTL_DEM_48 0x20
85#define CS4271_DACCTL_DEM_32 0x30
86
87#define CS4271_DACCTL_SVRU 0x08
88#define CS4271_DACCTL_SRD 0x04
89#define CS4271_DACCTL_INVA 0x02
90#define CS4271_DACCTL_INVB 0x01
91
92#define CS4271_DACVOL_BEQUA 0x40
93#define CS4271_DACVOL_SOFT 0x20
94#define CS4271_DACVOL_ZEROC 0x10
95
96#define CS4271_DACVOL_ATAPI_MASK 0x0F
97#define CS4271_DACVOL_ATAPI_M_M 0x00
98#define CS4271_DACVOL_ATAPI_M_BR 0x01
99#define CS4271_DACVOL_ATAPI_M_BL 0x02
100#define CS4271_DACVOL_ATAPI_M_BLR2 0x03
101#define CS4271_DACVOL_ATAPI_AR_M 0x04
102#define CS4271_DACVOL_ATAPI_AR_BR 0x05
103#define CS4271_DACVOL_ATAPI_AR_BL 0x06
104#define CS4271_DACVOL_ATAPI_AR_BLR2 0x07
105#define CS4271_DACVOL_ATAPI_AL_M 0x08
106#define CS4271_DACVOL_ATAPI_AL_BR 0x09
107#define CS4271_DACVOL_ATAPI_AL_BL 0x0A
108#define CS4271_DACVOL_ATAPI_AL_BLR2 0x0B
109#define CS4271_DACVOL_ATAPI_ALR2_M 0x0C
110#define CS4271_DACVOL_ATAPI_ALR2_BR 0x0D
111#define CS4271_DACVOL_ATAPI_ALR2_BL 0x0E
112#define CS4271_DACVOL_ATAPI_ALR2_BLR2 0x0F
113
114#define CS4271_VOLA_MUTE 0x80
115#define CS4271_VOLA_VOL_MASK 0x7F
116#define CS4271_VOLB_MUTE 0x80
117#define CS4271_VOLB_VOL_MASK 0x7F
118
119#define CS4271_ADCCTL_DITHER16 0x20
120
121#define CS4271_ADCCTL_ADC_DIF_MASK 0x10
122#define CS4271_ADCCTL_ADC_DIF_LJ 0x00
123#define CS4271_ADCCTL_ADC_DIF_I2S 0x10
124
125#define CS4271_ADCCTL_MUTEA 0x08
126#define CS4271_ADCCTL_MUTEB 0x04
127#define CS4271_ADCCTL_HPFDA 0x02
128#define CS4271_ADCCTL_HPFDB 0x01
129
130#define CS4271_MODE2_LOOP 0x10
131#define CS4271_MODE2_MUTECAEQUB 0x08
132#define CS4271_MODE2_FREEZE 0x04
133#define CS4271_MODE2_CPEN 0x02
134#define CS4271_MODE2_PDN 0x01
135
136#define CS4271_CHIPID_PART_MASK 0xF0
137#define CS4271_CHIPID_REV_MASK 0x0F
138
139/*
140 * Default CS4271 power-up configuration
141 * Array contains non-existing in hw register at address 0
142 * Array do not include Chip ID, as codec driver does not use
143 * registers read operations at all
144 */
Daniel Mack1b1861e2013-03-07 23:53:12 +0100145static const struct reg_default cs4271_reg_defaults[] = {
146 { CS4271_MODE1, 0, },
147 { CS4271_DACCTL, CS4271_DACCTL_AMUTE, },
148 { CS4271_DACVOL, CS4271_DACVOL_SOFT | CS4271_DACVOL_ATAPI_AL_BR, },
149 { CS4271_VOLA, 0, },
150 { CS4271_VOLB, 0, },
151 { CS4271_ADCCTL, 0, },
152 { CS4271_MODE2, 0, },
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300153};
154
Daniel Mack1b1861e2013-03-07 23:53:12 +0100155static bool cs4271_volatile_reg(struct device *dev, unsigned int reg)
156{
157 return reg == CS4271_CHIPID;
158}
159
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300160struct cs4271_private {
161 /* SND_SOC_I2C or SND_SOC_SPI */
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300162 unsigned int mclk;
163 bool master;
164 bool deemph;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100165 struct regmap *regmap;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300166 /* Current sample rate for de-emphasis control */
167 int rate;
168 /* GPIO driving Reset pin, if any */
169 int gpio_nreset;
170 /* GPIO that disable serial bus, if any */
171 int gpio_disable;
Daniel Mackfd23fb92012-12-10 10:30:04 +0100172 /* enable soft reset workaround */
173 bool enable_soft_reset;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300174};
175
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300176/*
177 * @freq is the desired MCLK rate
178 * MCLK rate should (c) be the sample rate, multiplied by one of the
179 * ratios listed in cs4271_mclk_fs_ratios table
180 */
181static int cs4271_set_dai_sysclk(struct snd_soc_dai *codec_dai,
182 int clk_id, unsigned int freq, int dir)
183{
184 struct snd_soc_codec *codec = codec_dai->codec;
185 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
186
187 cs4271->mclk = freq;
188 return 0;
189}
190
191static int cs4271_set_dai_fmt(struct snd_soc_dai *codec_dai,
192 unsigned int format)
193{
194 struct snd_soc_codec *codec = codec_dai->codec;
195 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
196 unsigned int val = 0;
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300197 int ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300198
199 switch (format & SND_SOC_DAIFMT_MASTER_MASK) {
200 case SND_SOC_DAIFMT_CBS_CFS:
201 cs4271->master = 0;
202 break;
203 case SND_SOC_DAIFMT_CBM_CFM:
204 cs4271->master = 1;
205 val |= CS4271_MODE1_MASTER;
206 break;
207 default:
208 dev_err(codec->dev, "Invalid DAI format\n");
209 return -EINVAL;
210 }
211
212 switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
213 case SND_SOC_DAIFMT_LEFT_J:
214 val |= CS4271_MODE1_DAC_DIF_LJ;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100215 ret = regmap_update_bits(cs4271->regmap, CS4271_ADCCTL,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300216 CS4271_ADCCTL_ADC_DIF_MASK, CS4271_ADCCTL_ADC_DIF_LJ);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300217 if (ret < 0)
218 return ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300219 break;
220 case SND_SOC_DAIFMT_I2S:
221 val |= CS4271_MODE1_DAC_DIF_I2S;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100222 ret = regmap_update_bits(cs4271->regmap, CS4271_ADCCTL,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300223 CS4271_ADCCTL_ADC_DIF_MASK, CS4271_ADCCTL_ADC_DIF_I2S);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300224 if (ret < 0)
225 return ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300226 break;
227 default:
228 dev_err(codec->dev, "Invalid DAI format\n");
229 return -EINVAL;
230 }
231
Daniel Mack1b1861e2013-03-07 23:53:12 +0100232 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE1,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300233 CS4271_MODE1_DAC_DIF_MASK | CS4271_MODE1_MASTER, val);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300234 if (ret < 0)
235 return ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300236 return 0;
237}
238
239static int cs4271_deemph[] = {0, 44100, 48000, 32000};
240
241static int cs4271_set_deemph(struct snd_soc_codec *codec)
242{
243 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300244 int i, ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300245 int val = CS4271_DACCTL_DEM_DIS;
246
247 if (cs4271->deemph) {
248 /* Find closest de-emphasis freq */
249 val = 1;
250 for (i = 2; i < ARRAY_SIZE(cs4271_deemph); i++)
251 if (abs(cs4271_deemph[i] - cs4271->rate) <
252 abs(cs4271_deemph[val] - cs4271->rate))
253 val = i;
254 val <<= 4;
255 }
256
Daniel Mack1b1861e2013-03-07 23:53:12 +0100257 ret = regmap_update_bits(cs4271->regmap, CS4271_DACCTL,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300258 CS4271_DACCTL_DEM_MASK, val);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300259 if (ret < 0)
260 return ret;
261 return 0;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300262}
263
264static int cs4271_get_deemph(struct snd_kcontrol *kcontrol,
265 struct snd_ctl_elem_value *ucontrol)
266{
267 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
268 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
269
270 ucontrol->value.enumerated.item[0] = cs4271->deemph;
271 return 0;
272}
273
274static int cs4271_put_deemph(struct snd_kcontrol *kcontrol,
275 struct snd_ctl_elem_value *ucontrol)
276{
277 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
278 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
279
280 cs4271->deemph = ucontrol->value.enumerated.item[0];
281 return cs4271_set_deemph(codec);
282}
283
Alexander Sverdlin5c3a12e2011-03-07 20:29:45 +0300284struct cs4271_clk_cfg {
285 bool master; /* codec mode */
286 u8 speed_mode; /* codec speed mode: 1x, 2x, 4x */
287 unsigned short ratio; /* MCLK / sample rate */
288 u8 ratio_mask; /* ratio bit mask for Master mode */
289};
290
291static struct cs4271_clk_cfg cs4271_clk_tab[] = {
292 {1, CS4271_MODE1_MODE_1X, 256, CS4271_MODE1_DIV_1},
293 {1, CS4271_MODE1_MODE_1X, 384, CS4271_MODE1_DIV_15},
294 {1, CS4271_MODE1_MODE_1X, 512, CS4271_MODE1_DIV_2},
295 {1, CS4271_MODE1_MODE_1X, 768, CS4271_MODE1_DIV_3},
296 {1, CS4271_MODE1_MODE_2X, 128, CS4271_MODE1_DIV_1},
297 {1, CS4271_MODE1_MODE_2X, 192, CS4271_MODE1_DIV_15},
298 {1, CS4271_MODE1_MODE_2X, 256, CS4271_MODE1_DIV_2},
299 {1, CS4271_MODE1_MODE_2X, 384, CS4271_MODE1_DIV_3},
300 {1, CS4271_MODE1_MODE_4X, 64, CS4271_MODE1_DIV_1},
301 {1, CS4271_MODE1_MODE_4X, 96, CS4271_MODE1_DIV_15},
302 {1, CS4271_MODE1_MODE_4X, 128, CS4271_MODE1_DIV_2},
303 {1, CS4271_MODE1_MODE_4X, 192, CS4271_MODE1_DIV_3},
304 {0, CS4271_MODE1_MODE_1X, 256, CS4271_MODE1_DIV_1},
305 {0, CS4271_MODE1_MODE_1X, 384, CS4271_MODE1_DIV_1},
306 {0, CS4271_MODE1_MODE_1X, 512, CS4271_MODE1_DIV_1},
307 {0, CS4271_MODE1_MODE_1X, 768, CS4271_MODE1_DIV_2},
308 {0, CS4271_MODE1_MODE_1X, 1024, CS4271_MODE1_DIV_2},
309 {0, CS4271_MODE1_MODE_2X, 128, CS4271_MODE1_DIV_1},
310 {0, CS4271_MODE1_MODE_2X, 192, CS4271_MODE1_DIV_1},
311 {0, CS4271_MODE1_MODE_2X, 256, CS4271_MODE1_DIV_1},
312 {0, CS4271_MODE1_MODE_2X, 384, CS4271_MODE1_DIV_2},
313 {0, CS4271_MODE1_MODE_2X, 512, CS4271_MODE1_DIV_2},
314 {0, CS4271_MODE1_MODE_4X, 64, CS4271_MODE1_DIV_1},
315 {0, CS4271_MODE1_MODE_4X, 96, CS4271_MODE1_DIV_1},
316 {0, CS4271_MODE1_MODE_4X, 128, CS4271_MODE1_DIV_1},
317 {0, CS4271_MODE1_MODE_4X, 192, CS4271_MODE1_DIV_2},
318 {0, CS4271_MODE1_MODE_4X, 256, CS4271_MODE1_DIV_2},
319};
320
321#define CS4171_NR_RATIOS ARRAY_SIZE(cs4271_clk_tab)
322
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300323static int cs4271_hw_params(struct snd_pcm_substream *substream,
324 struct snd_pcm_hw_params *params,
325 struct snd_soc_dai *dai)
326{
Mark Browne6968a12012-04-04 15:58:16 +0100327 struct snd_soc_codec *codec = dai->codec;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300328 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300329 int i, ret;
330 unsigned int ratio, val;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300331
Daniel Mackfd23fb92012-12-10 10:30:04 +0100332 if (cs4271->enable_soft_reset) {
333 /*
334 * Put the codec in soft reset and back again in case it's not
335 * currently streaming data. This way of bringing the codec in
336 * sync to the current clocks is not explicitly documented in
337 * the data sheet, but it seems to work fine, and in contrast
338 * to a read hardware reset, we don't have to sync back all
339 * registers every time.
340 */
341
342 if ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
343 !dai->capture_active) ||
344 (substream->stream == SNDRV_PCM_STREAM_CAPTURE &&
345 !dai->playback_active)) {
Daniel Mack1b1861e2013-03-07 23:53:12 +0100346 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,
347 CS4271_MODE2_PDN,
348 CS4271_MODE2_PDN);
Daniel Mackfd23fb92012-12-10 10:30:04 +0100349 if (ret < 0)
350 return ret;
351
Daniel Mack1b1861e2013-03-07 23:53:12 +0100352 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,
353 CS4271_MODE2_PDN, 0);
Daniel Mackfd23fb92012-12-10 10:30:04 +0100354 if (ret < 0)
355 return ret;
356 }
357 }
358
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300359 cs4271->rate = params_rate(params);
Alexander Sverdlin5c3a12e2011-03-07 20:29:45 +0300360
361 /* Configure DAC */
362 if (cs4271->rate < 50000)
363 val = CS4271_MODE1_MODE_1X;
364 else if (cs4271->rate < 100000)
365 val = CS4271_MODE1_MODE_2X;
366 else
367 val = CS4271_MODE1_MODE_4X;
368
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300369 ratio = cs4271->mclk / cs4271->rate;
370 for (i = 0; i < CS4171_NR_RATIOS; i++)
Alexander Sverdlin5c3a12e2011-03-07 20:29:45 +0300371 if ((cs4271_clk_tab[i].master == cs4271->master) &&
372 (cs4271_clk_tab[i].speed_mode == val) &&
373 (cs4271_clk_tab[i].ratio == ratio))
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300374 break;
375
Alexander Sverdlin5c3a12e2011-03-07 20:29:45 +0300376 if (i == CS4171_NR_RATIOS) {
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300377 dev_err(codec->dev, "Invalid sample rate\n");
378 return -EINVAL;
379 }
380
Alexander Sverdlin5c3a12e2011-03-07 20:29:45 +0300381 val |= cs4271_clk_tab[i].ratio_mask;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300382
Daniel Mack1b1861e2013-03-07 23:53:12 +0100383 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE1,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300384 CS4271_MODE1_MODE_MASK | CS4271_MODE1_DIV_MASK, val);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300385 if (ret < 0)
386 return ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300387
388 return cs4271_set_deemph(codec);
389}
390
391static int cs4271_digital_mute(struct snd_soc_dai *dai, int mute)
392{
393 struct snd_soc_codec *codec = dai->codec;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100394 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300395 int ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300396 int val_a = 0;
397 int val_b = 0;
398
399 if (mute) {
400 val_a = CS4271_VOLA_MUTE;
401 val_b = CS4271_VOLB_MUTE;
402 }
403
Daniel Mack1b1861e2013-03-07 23:53:12 +0100404 ret = regmap_update_bits(cs4271->regmap, CS4271_VOLA,
405 CS4271_VOLA_MUTE, val_a);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300406 if (ret < 0)
407 return ret;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100408
409 ret = regmap_update_bits(cs4271->regmap, CS4271_VOLB,
410 CS4271_VOLB_MUTE, val_b);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300411 if (ret < 0)
412 return ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300413
414 return 0;
415}
416
417/* CS4271 controls */
418static DECLARE_TLV_DB_SCALE(cs4271_dac_tlv, -12700, 100, 0);
419
420static const struct snd_kcontrol_new cs4271_snd_controls[] = {
421 SOC_DOUBLE_R_TLV("Master Playback Volume", CS4271_VOLA, CS4271_VOLB,
422 0, 0x7F, 1, cs4271_dac_tlv),
423 SOC_SINGLE("Digital Loopback Switch", CS4271_MODE2, 4, 1, 0),
424 SOC_SINGLE("Soft Ramp Switch", CS4271_DACVOL, 5, 1, 0),
425 SOC_SINGLE("Zero Cross Switch", CS4271_DACVOL, 4, 1, 0),
426 SOC_SINGLE_BOOL_EXT("De-emphasis Switch", 0,
427 cs4271_get_deemph, cs4271_put_deemph),
428 SOC_SINGLE("Auto-Mute Switch", CS4271_DACCTL, 7, 1, 0),
429 SOC_SINGLE("Slow Roll Off Filter Switch", CS4271_DACCTL, 6, 1, 0),
430 SOC_SINGLE("Soft Volume Ramp-Up Switch", CS4271_DACCTL, 3, 1, 0),
431 SOC_SINGLE("Soft Ramp-Down Switch", CS4271_DACCTL, 2, 1, 0),
432 SOC_SINGLE("Left Channel Inversion Switch", CS4271_DACCTL, 1, 1, 0),
433 SOC_SINGLE("Right Channel Inversion Switch", CS4271_DACCTL, 0, 1, 0),
434 SOC_DOUBLE("Master Capture Switch", CS4271_ADCCTL, 3, 2, 1, 1),
435 SOC_SINGLE("Dither 16-Bit Data Switch", CS4271_ADCCTL, 5, 1, 0),
436 SOC_DOUBLE("High Pass Filter Switch", CS4271_ADCCTL, 1, 0, 1, 1),
437 SOC_DOUBLE_R("Master Playback Switch", CS4271_VOLA, CS4271_VOLB,
438 7, 1, 1),
439};
440
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100441static const struct snd_soc_dai_ops cs4271_dai_ops = {
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300442 .hw_params = cs4271_hw_params,
443 .set_sysclk = cs4271_set_dai_sysclk,
444 .set_fmt = cs4271_set_dai_fmt,
445 .digital_mute = cs4271_digital_mute,
446};
447
Mark Brown16af7d62011-01-26 11:35:28 +0000448static struct snd_soc_dai_driver cs4271_dai = {
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300449 .name = "cs4271-hifi",
450 .playback = {
451 .stream_name = "Playback",
452 .channels_min = 2,
453 .channels_max = 2,
Alexander Sverdlin383f8462011-03-07 20:29:36 +0300454 .rates = CS4271_PCM_RATES,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300455 .formats = CS4271_PCM_FORMATS,
456 },
457 .capture = {
458 .stream_name = "Capture",
459 .channels_min = 2,
460 .channels_max = 2,
Alexander Sverdlin383f8462011-03-07 20:29:36 +0300461 .rates = CS4271_PCM_RATES,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300462 .formats = CS4271_PCM_FORMATS,
463 },
464 .ops = &cs4271_dai_ops,
465 .symmetric_rates = 1,
466};
467
468#ifdef CONFIG_PM
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100469static int cs4271_soc_suspend(struct snd_soc_codec *codec)
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300470{
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300471 int ret;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100472 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
473
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300474 /* Set power-down bit */
Daniel Mack1b1861e2013-03-07 23:53:12 +0100475 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,
476 CS4271_MODE2_PDN, CS4271_MODE2_PDN);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300477 if (ret < 0)
478 return ret;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100479
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300480 return 0;
481}
482
483static int cs4271_soc_resume(struct snd_soc_codec *codec)
484{
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300485 int ret;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100486 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
487
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300488 /* Restore codec state */
Daniel Mack1b1861e2013-03-07 23:53:12 +0100489 ret = regcache_sync(cs4271->regmap);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300490 if (ret < 0)
491 return ret;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100492
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300493 /* then disable the power-down bit */
Daniel Mack1b1861e2013-03-07 23:53:12 +0100494 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,
495 CS4271_MODE2_PDN, 0);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300496 if (ret < 0)
497 return ret;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100498
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300499 return 0;
500}
501#else
502#define cs4271_soc_suspend NULL
503#define cs4271_soc_resume NULL
504#endif /* CONFIG_PM */
505
Daniel Macka31ebc32012-09-28 01:36:44 +0200506#ifdef CONFIG_OF
507static const struct of_device_id cs4271_dt_ids[] = {
508 { .compatible = "cirrus,cs4271", },
509 { }
510};
511MODULE_DEVICE_TABLE(of, cs4271_dt_ids);
512#endif
513
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300514static int cs4271_probe(struct snd_soc_codec *codec)
515{
516 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
517 struct cs4271_platform_data *cs4271plat = codec->dev->platform_data;
518 int ret;
519 int gpio_nreset = -EINVAL;
Daniel Mack26047e22012-11-30 11:28:55 +0100520 bool amutec_eq_bmutec = false;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300521
Daniel Macka31ebc32012-09-28 01:36:44 +0200522#ifdef CONFIG_OF
Daniel Mack293750f2012-10-04 14:03:23 +0200523 if (of_match_device(cs4271_dt_ids, codec->dev)) {
Daniel Macka31ebc32012-09-28 01:36:44 +0200524 gpio_nreset = of_get_named_gpio(codec->dev->of_node,
525 "reset-gpio", 0);
Daniel Mack293750f2012-10-04 14:03:23 +0200526
Daniel Mackb8455c92012-11-30 11:28:56 +0100527 if (of_get_property(codec->dev->of_node,
Daniel Mack293750f2012-10-04 14:03:23 +0200528 "cirrus,amutec-eq-bmutec", NULL))
Daniel Mack26047e22012-11-30 11:28:55 +0100529 amutec_eq_bmutec = true;
Daniel Mackfd23fb92012-12-10 10:30:04 +0100530
531 if (of_get_property(codec->dev->of_node,
532 "cirrus,enable-soft-reset", NULL))
533 cs4271->enable_soft_reset = true;
Daniel Mack293750f2012-10-04 14:03:23 +0200534 }
Daniel Macka31ebc32012-09-28 01:36:44 +0200535#endif
536
Daniel Mack293750f2012-10-04 14:03:23 +0200537 if (cs4271plat) {
538 if (gpio_is_valid(cs4271plat->gpio_nreset))
539 gpio_nreset = cs4271plat->gpio_nreset;
540
541 amutec_eq_bmutec = cs4271plat->amutec_eq_bmutec;
Daniel Mackfd23fb92012-12-10 10:30:04 +0100542 cs4271->enable_soft_reset = cs4271plat->enable_soft_reset;
Daniel Mack293750f2012-10-04 14:03:23 +0200543 }
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300544
545 if (gpio_nreset >= 0)
Daniel Mack5574f772012-11-10 19:52:50 +0100546 if (devm_gpio_request(codec->dev, gpio_nreset, "CS4271 Reset"))
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300547 gpio_nreset = -EINVAL;
548 if (gpio_nreset >= 0) {
549 /* Reset codec */
550 gpio_direction_output(gpio_nreset, 0);
551 udelay(1);
552 gpio_set_value(gpio_nreset, 1);
553 /* Give the codec time to wake up */
554 udelay(1);
555 }
556
557 cs4271->gpio_nreset = gpio_nreset;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300558
Daniel Mack1b1861e2013-03-07 23:53:12 +0100559 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,
560 CS4271_MODE2_PDN | CS4271_MODE2_CPEN,
561 CS4271_MODE2_PDN | CS4271_MODE2_CPEN);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300562 if (ret < 0)
563 return ret;
Daniel Mack1b1861e2013-03-07 23:53:12 +0100564 ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,
565 CS4271_MODE2_PDN, 0);
Alexander Sverdlin0d42e6e2011-01-21 22:22:07 +0300566 if (ret < 0)
567 return ret;
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300568 /* Power-up sequence requires 85 uS */
569 udelay(85);
570
Daniel Mack293750f2012-10-04 14:03:23 +0200571 if (amutec_eq_bmutec)
Daniel Mack1b1861e2013-03-07 23:53:12 +0100572 regmap_update_bits(cs4271->regmap, CS4271_MODE2,
573 CS4271_MODE2_MUTECAEQUB,
574 CS4271_MODE2_MUTECAEQUB);
Daniel Mack293750f2012-10-04 14:03:23 +0200575
Liam Girdwood022658b2012-02-03 17:43:09 +0000576 return snd_soc_add_codec_controls(codec, cs4271_snd_controls,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300577 ARRAY_SIZE(cs4271_snd_controls));
578}
579
580static int cs4271_remove(struct snd_soc_codec *codec)
581{
582 struct cs4271_private *cs4271 = snd_soc_codec_get_drvdata(codec);
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300583
Daniel Mack5574f772012-11-10 19:52:50 +0100584 if (gpio_is_valid(cs4271->gpio_nreset))
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300585 /* Set codec to the reset state */
Daniel Mack5574f772012-11-10 19:52:50 +0100586 gpio_set_value(cs4271->gpio_nreset, 0);
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300587
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300588 return 0;
589};
590
Mark Brown16af7d62011-01-26 11:35:28 +0000591static struct snd_soc_codec_driver soc_codec_dev_cs4271 = {
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300592 .probe = cs4271_probe,
593 .remove = cs4271_remove,
594 .suspend = cs4271_soc_suspend,
595 .resume = cs4271_soc_resume,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300596};
597
598#if defined(CONFIG_SPI_MASTER)
Daniel Mack1b1861e2013-03-07 23:53:12 +0100599
600static const struct regmap_config cs4271_spi_regmap = {
601 .reg_bits = 16,
602 .val_bits = 8,
603 .max_register = CS4271_LASTREG,
604 .read_flag_mask = 0x21,
605 .write_flag_mask = 0x20,
606
607 .reg_defaults = cs4271_reg_defaults,
608 .num_reg_defaults = ARRAY_SIZE(cs4271_reg_defaults),
609 .cache_type = REGCACHE_RBTREE,
610
611 .volatile_reg = cs4271_volatile_reg,
612};
613
Bill Pemberton7a79e942012-12-07 09:26:37 -0500614static int cs4271_spi_probe(struct spi_device *spi)
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300615{
616 struct cs4271_private *cs4271;
617
618 cs4271 = devm_kzalloc(&spi->dev, sizeof(*cs4271), GFP_KERNEL);
619 if (!cs4271)
620 return -ENOMEM;
621
622 spi_set_drvdata(spi, cs4271);
Daniel Mack1b1861e2013-03-07 23:53:12 +0100623 cs4271->regmap = devm_regmap_init_spi(spi, &cs4271_spi_regmap);
624 if (IS_ERR(cs4271->regmap))
625 return PTR_ERR(cs4271->regmap);
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300626
627 return snd_soc_register_codec(&spi->dev, &soc_codec_dev_cs4271,
628 &cs4271_dai, 1);
629}
630
Bill Pemberton7a79e942012-12-07 09:26:37 -0500631static int cs4271_spi_remove(struct spi_device *spi)
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300632{
633 snd_soc_unregister_codec(&spi->dev);
634 return 0;
635}
636
637static struct spi_driver cs4271_spi_driver = {
638 .driver = {
639 .name = "cs4271",
640 .owner = THIS_MODULE,
Daniel Macka31ebc32012-09-28 01:36:44 +0200641 .of_match_table = of_match_ptr(cs4271_dt_ids),
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300642 },
643 .probe = cs4271_spi_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500644 .remove = cs4271_spi_remove,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300645};
646#endif /* defined(CONFIG_SPI_MASTER) */
647
648#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
Axel Lin79a54ea2011-03-04 15:22:03 +0800649static const struct i2c_device_id cs4271_i2c_id[] = {
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300650 {"cs4271", 0},
651 {}
652};
653MODULE_DEVICE_TABLE(i2c, cs4271_i2c_id);
654
Daniel Mack1b1861e2013-03-07 23:53:12 +0100655static const struct regmap_config cs4271_i2c_regmap = {
656 .reg_bits = 8,
657 .val_bits = 8,
658 .max_register = CS4271_LASTREG,
659
660 .reg_defaults = cs4271_reg_defaults,
661 .num_reg_defaults = ARRAY_SIZE(cs4271_reg_defaults),
662 .cache_type = REGCACHE_RBTREE,
663
664 .volatile_reg = cs4271_volatile_reg,
665};
666
Bill Pemberton7a79e942012-12-07 09:26:37 -0500667static int cs4271_i2c_probe(struct i2c_client *client,
668 const struct i2c_device_id *id)
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300669{
670 struct cs4271_private *cs4271;
671
672 cs4271 = devm_kzalloc(&client->dev, sizeof(*cs4271), GFP_KERNEL);
673 if (!cs4271)
674 return -ENOMEM;
675
676 i2c_set_clientdata(client, cs4271);
Daniel Mack1b1861e2013-03-07 23:53:12 +0100677 cs4271->regmap = devm_regmap_init_i2c(client, &cs4271_i2c_regmap);
678 if (IS_ERR(cs4271->regmap))
679 return PTR_ERR(cs4271->regmap);
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300680
681 return snd_soc_register_codec(&client->dev, &soc_codec_dev_cs4271,
682 &cs4271_dai, 1);
683}
684
Bill Pemberton7a79e942012-12-07 09:26:37 -0500685static int cs4271_i2c_remove(struct i2c_client *client)
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300686{
687 snd_soc_unregister_codec(&client->dev);
688 return 0;
689}
690
691static struct i2c_driver cs4271_i2c_driver = {
692 .driver = {
693 .name = "cs4271",
694 .owner = THIS_MODULE,
Daniel Macka31ebc32012-09-28 01:36:44 +0200695 .of_match_table = of_match_ptr(cs4271_dt_ids),
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300696 },
697 .id_table = cs4271_i2c_id,
698 .probe = cs4271_i2c_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500699 .remove = cs4271_i2c_remove,
Alexander Sverdlin67b22512011-01-19 21:22:06 +0300700};
701#endif /* defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) */
702
703/*
704 * We only register our serial bus driver here without
705 * assignment to particular chip. So if any of the below
706 * fails, there is some problem with I2C or SPI subsystem.
707 * In most cases this module will be compiled with support
708 * of only one serial bus.
709 */
710static int __init cs4271_modinit(void)
711{
712 int ret;
713
714#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
715 ret = i2c_add_driver(&cs4271_i2c_driver);
716 if (ret) {
717 pr_err("Failed to register CS4271 I2C driver: %d\n", ret);
718 return ret;
719 }
720#endif
721
722#if defined(CONFIG_SPI_MASTER)
723 ret = spi_register_driver(&cs4271_spi_driver);
724 if (ret) {
725 pr_err("Failed to register CS4271 SPI driver: %d\n", ret);
726 return ret;
727 }
728#endif
729
730 return 0;
731}
732module_init(cs4271_modinit);
733
734static void __exit cs4271_modexit(void)
735{
736#if defined(CONFIG_SPI_MASTER)
737 spi_unregister_driver(&cs4271_spi_driver);
738#endif
739
740#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
741 i2c_del_driver(&cs4271_i2c_driver);
742#endif
743}
744module_exit(cs4271_modexit);
745
746MODULE_AUTHOR("Alexander Sverdlin <subaparts@yandex.ru>");
747MODULE_DESCRIPTION("Cirrus Logic CS4271 ALSA SoC Codec Driver");
748MODULE_LICENSE("GPL");