1 /*
2 * ADAU1977/ADAU1978/ADAU1979 driver
3 *
4 * Copyright 2014 Analog Devices Inc.
5 * Author: Lars-Peter Clausen <lars@metafoo.de>
6 *
7 * Licensed under the GPL-2.
8 */
9
10 #include <linux/delay.h>
11 #include <linux/device.h>
12 #include <linux/gpio/consumer.h>
13 #include <linux/i2c.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/platform_data/adau1977.h>
17 #include <linux/regmap.h>
18 #include <linux/regulator/consumer.h>
19 #include <linux/slab.h>
20
21 #include <sound/core.h>
22 #include <sound/initval.h>
23 #include <sound/pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/tlv.h>
27
28 #include "adau1977.h"
29
30 #define ADAU1977_REG_POWER 0x00
31 #define ADAU1977_REG_PLL 0x01
32 #define ADAU1977_REG_BOOST 0x02
33 #define ADAU1977_REG_MICBIAS 0x03
34 #define ADAU1977_REG_BLOCK_POWER_SAI 0x04
35 #define ADAU1977_REG_SAI_CTRL0 0x05
36 #define ADAU1977_REG_SAI_CTRL1 0x06
37 #define ADAU1977_REG_CMAP12 0x07
38 #define ADAU1977_REG_CMAP34 0x08
39 #define ADAU1977_REG_SAI_OVERTEMP 0x09
40 #define ADAU1977_REG_POST_ADC_GAIN(x) (0x0a + (x))
41 #define ADAU1977_REG_MISC_CONTROL 0x0e
42 #define ADAU1977_REG_DIAG_CONTROL 0x10
43 #define ADAU1977_REG_STATUS(x) (0x11 + (x))
44 #define ADAU1977_REG_DIAG_IRQ1 0x15
45 #define ADAU1977_REG_DIAG_IRQ2 0x16
46 #define ADAU1977_REG_ADJUST1 0x17
47 #define ADAU1977_REG_ADJUST2 0x18
48 #define ADAU1977_REG_ADC_CLIP 0x19
49 #define ADAU1977_REG_DC_HPF_CAL 0x1a
50
51 #define ADAU1977_POWER_RESET BIT(7)
52 #define ADAU1977_POWER_PWUP BIT(0)
53
54 #define ADAU1977_PLL_CLK_S BIT(4)
55 #define ADAU1977_PLL_MCS_MASK 0x7
56
57 #define ADAU1977_MICBIAS_MB_VOLTS_MASK 0xf0
58 #define ADAU1977_MICBIAS_MB_VOLTS_OFFSET 4
59
60 #define ADAU1977_BLOCK_POWER_SAI_LR_POL BIT(7)
61 #define ADAU1977_BLOCK_POWER_SAI_BCLK_EDGE BIT(6)
62 #define ADAU1977_BLOCK_POWER_SAI_LDO_EN BIT(5)
63
64 #define ADAU1977_SAI_CTRL0_FMT_MASK (0x3 << 6)
65 #define ADAU1977_SAI_CTRL0_FMT_I2S (0x0 << 6)
66 #define ADAU1977_SAI_CTRL0_FMT_LJ (0x1 << 6)
67 #define ADAU1977_SAI_CTRL0_FMT_RJ_24BIT (0x2 << 6)
68 #define ADAU1977_SAI_CTRL0_FMT_RJ_16BIT (0x3 << 6)
69
70 #define ADAU1977_SAI_CTRL0_SAI_MASK (0x7 << 3)
71 #define ADAU1977_SAI_CTRL0_SAI_I2S (0x0 << 3)
72 #define ADAU1977_SAI_CTRL0_SAI_TDM_2 (0x1 << 3)
73 #define ADAU1977_SAI_CTRL0_SAI_TDM_4 (0x2 << 3)
74 #define ADAU1977_SAI_CTRL0_SAI_TDM_8 (0x3 << 3)
75 #define ADAU1977_SAI_CTRL0_SAI_TDM_16 (0x4 << 3)
76
77 #define ADAU1977_SAI_CTRL0_FS_MASK (0x7)
78 #define ADAU1977_SAI_CTRL0_FS_8000_12000 (0x0)
79 #define ADAU1977_SAI_CTRL0_FS_16000_24000 (0x1)
80 #define ADAU1977_SAI_CTRL0_FS_32000_48000 (0x2)
81 #define ADAU1977_SAI_CTRL0_FS_64000_96000 (0x3)
82 #define ADAU1977_SAI_CTRL0_FS_128000_192000 (0x4)
83
84 #define ADAU1977_SAI_CTRL1_SLOT_WIDTH_MASK (0x3 << 5)
85 #define ADAU1977_SAI_CTRL1_SLOT_WIDTH_32 (0x0 << 5)
86 #define ADAU1977_SAI_CTRL1_SLOT_WIDTH_24 (0x1 << 5)
87 #define ADAU1977_SAI_CTRL1_SLOT_WIDTH_16 (0x2 << 5)
88 #define ADAU1977_SAI_CTRL1_DATA_WIDTH_MASK (0x1 << 4)
89 #define ADAU1977_SAI_CTRL1_DATA_WIDTH_16BIT (0x1 << 4)
90 #define ADAU1977_SAI_CTRL1_DATA_WIDTH_24BIT (0x0 << 4)
91 #define ADAU1977_SAI_CTRL1_LRCLK_PULSE BIT(3)
92 #define ADAU1977_SAI_CTRL1_MSB BIT(2)
93 #define ADAU1977_SAI_CTRL1_BCLKRATE_16 (0x1 << 1)
94 #define ADAU1977_SAI_CTRL1_BCLKRATE_32 (0x0 << 1)
95 #define ADAU1977_SAI_CTRL1_BCLKRATE_MASK (0x1 << 1)
96 #define ADAU1977_SAI_CTRL1_MASTER BIT(0)
97
98 #define ADAU1977_SAI_OVERTEMP_DRV_C(x) BIT(4 + (x))
99 #define ADAU1977_SAI_OVERTEMP_DRV_HIZ BIT(3)
100
101 #define ADAU1977_MISC_CONTROL_SUM_MODE_MASK (0x3 << 6)
102 #define ADAU1977_MISC_CONTROL_SUM_MODE_1CH (0x2 << 6)
103 #define ADAU1977_MISC_CONTROL_SUM_MODE_2CH (0x1 << 6)
104 #define ADAU1977_MISC_CONTROL_SUM_MODE_4CH (0x0 << 6)
105 #define ADAU1977_MISC_CONTROL_MMUTE BIT(4)
106 #define ADAU1977_MISC_CONTROL_DC_CAL BIT(0)
107
108 #define ADAU1977_CHAN_MAP_SECOND_SLOT_OFFSET 4
109 #define ADAU1977_CHAN_MAP_FIRST_SLOT_OFFSET 0
110
111 struct adau1977 {
112 struct regmap *regmap;
113 bool right_j;
114 unsigned int sysclk;
115 enum adau1977_sysclk_src sysclk_src;
116 struct gpio_desc *reset_gpio;
117 enum adau1977_type type;
118
119 struct regulator *avdd_reg;
120 struct regulator *dvdd_reg;
121
122 struct snd_pcm_hw_constraint_list constraints;
123
124 struct device *dev;
125 void (*switch_mode)(struct device *dev);
126
127 unsigned int max_master_fs;
128 unsigned int slot_width;
129 bool enabled;
130 bool master;
131 };
132
133 static const struct reg_default adau1977_reg_defaults[] = {
134 { 0x00, 0x00 },
135 { 0x01, 0x41 },
136 { 0x02, 0x4a },
137 { 0x03, 0x7d },
138 { 0x04, 0x3d },
139 { 0x05, 0x02 },
140 { 0x06, 0x00 },
141 { 0x07, 0x10 },
142 { 0x08, 0x32 },
143 { 0x09, 0xf0 },
144 { 0x0a, 0xa0 },
145 { 0x0b, 0xa0 },
146 { 0x0c, 0xa0 },
147 { 0x0d, 0xa0 },
148 { 0x0e, 0x02 },
149 { 0x10, 0x0f },
150 { 0x15, 0x20 },
151 { 0x16, 0x00 },
152 { 0x17, 0x00 },
153 { 0x18, 0x00 },
154 { 0x1a, 0x00 },
155 };
156
157 static const DECLARE_TLV_DB_MINMAX_MUTE(adau1977_adc_gain, -3562, 6000);
158
159 static const struct snd_soc_dapm_widget adau1977_micbias_dapm_widgets[] = {
160 SND_SOC_DAPM_SUPPLY("MICBIAS", ADAU1977_REG_MICBIAS,
161 3, 0, NULL, 0)
162 };
163
164 static const struct snd_soc_dapm_widget adau1977_dapm_widgets[] = {
165 SND_SOC_DAPM_SUPPLY("Vref", ADAU1977_REG_BLOCK_POWER_SAI,
166 4, 0, NULL, 0),
167
168 SND_SOC_DAPM_ADC("ADC1", "Capture", ADAU1977_REG_BLOCK_POWER_SAI, 0, 0),
169 SND_SOC_DAPM_ADC("ADC2", "Capture", ADAU1977_REG_BLOCK_POWER_SAI, 1, 0),
170 SND_SOC_DAPM_ADC("ADC3", "Capture", ADAU1977_REG_BLOCK_POWER_SAI, 2, 0),
171 SND_SOC_DAPM_ADC("ADC4", "Capture", ADAU1977_REG_BLOCK_POWER_SAI, 3, 0),
172
173 SND_SOC_DAPM_INPUT("AIN1"),
174 SND_SOC_DAPM_INPUT("AIN2"),
175 SND_SOC_DAPM_INPUT("AIN3"),
176 SND_SOC_DAPM_INPUT("AIN4"),
177
178 SND_SOC_DAPM_OUTPUT("VREF"),
179 };
180
181 static const struct snd_soc_dapm_route adau1977_dapm_routes[] = {
182 { "ADC1", NULL, "AIN1" },
183 { "ADC2", NULL, "AIN2" },
184 { "ADC3", NULL, "AIN3" },
185 { "ADC4", NULL, "AIN4" },
186
187 { "ADC1", NULL, "Vref" },
188 { "ADC2", NULL, "Vref" },
189 { "ADC3", NULL, "Vref" },
190 { "ADC4", NULL, "Vref" },
191
192 { "VREF", NULL, "Vref" },
193 };
194
195 #define ADAU1977_VOLUME(x) \
196 SOC_SINGLE_TLV("ADC" #x " Capture Volume", \
197 ADAU1977_REG_POST_ADC_GAIN((x) - 1), \
198 0, 255, 1, adau1977_adc_gain)
199
200 #define ADAU1977_HPF_SWITCH(x) \
201 SOC_SINGLE("ADC" #x " Highpass-Filter Capture Switch", \
202 ADAU1977_REG_DC_HPF_CAL, (x) - 1, 1, 0)
203
204 #define ADAU1977_DC_SUB_SWITCH(x) \
205 SOC_SINGLE("ADC" #x " DC Subtraction Capture Switch", \
206 ADAU1977_REG_DC_HPF_CAL, (x) + 3, 1, 0)
207
208 static const struct snd_kcontrol_new adau1977_snd_controls[] = {
209 ADAU1977_VOLUME(1),
210 ADAU1977_VOLUME(2),
211 ADAU1977_VOLUME(3),
212 ADAU1977_VOLUME(4),
213
214 ADAU1977_HPF_SWITCH(1),
215 ADAU1977_HPF_SWITCH(2),
216 ADAU1977_HPF_SWITCH(3),
217 ADAU1977_HPF_SWITCH(4),
218
219 ADAU1977_DC_SUB_SWITCH(1),
220 ADAU1977_DC_SUB_SWITCH(2),
221 ADAU1977_DC_SUB_SWITCH(3),
222 ADAU1977_DC_SUB_SWITCH(4),
223 };
224
adau1977_reset(struct adau1977 * adau1977)225 static int adau1977_reset(struct adau1977 *adau1977)
226 {
227 int ret;
228
229 /*
230 * The reset bit is obviously volatile, but we need to be able to cache
231 * the other bits in the register, so we can't just mark the whole
232 * register as volatile. Since this is the only place where we'll ever
233 * touch the reset bit just bypass the cache for this operation.
234 */
235 regcache_cache_bypass(adau1977->regmap, true);
236 ret = regmap_write(adau1977->regmap, ADAU1977_REG_POWER,
237 ADAU1977_POWER_RESET);
238 regcache_cache_bypass(adau1977->regmap, false);
239 if (ret)
240 return ret;
241
242 return ret;
243 }
244
245 /*
246 * Returns the appropriate setting for ths FS field in the CTRL0 register
247 * depending on the rate.
248 */
adau1977_lookup_fs(unsigned int rate)249 static int adau1977_lookup_fs(unsigned int rate)
250 {
251 if (rate >= 8000 && rate <= 12000)
252 return ADAU1977_SAI_CTRL0_FS_8000_12000;
253 else if (rate >= 16000 && rate <= 24000)
254 return ADAU1977_SAI_CTRL0_FS_16000_24000;
255 else if (rate >= 32000 && rate <= 48000)
256 return ADAU1977_SAI_CTRL0_FS_32000_48000;
257 else if (rate >= 64000 && rate <= 96000)
258 return ADAU1977_SAI_CTRL0_FS_64000_96000;
259 else if (rate >= 128000 && rate <= 192000)
260 return ADAU1977_SAI_CTRL0_FS_128000_192000;
261 else
262 return -EINVAL;
263 }
264
adau1977_lookup_mcs(struct adau1977 * adau1977,unsigned int rate,unsigned int fs)265 static int adau1977_lookup_mcs(struct adau1977 *adau1977, unsigned int rate,
266 unsigned int fs)
267 {
268 unsigned int mcs;
269
270 /*
271 * rate = sysclk / (512 * mcs_lut[mcs]) * 2**fs
272 * => mcs_lut[mcs] = sysclk / (512 * rate) * 2**fs
273 * => mcs_lut[mcs] = sysclk / ((512 / 2**fs) * rate)
274 */
275
276 rate *= 512 >> fs;
277
278 if (adau1977->sysclk % rate != 0)
279 return -EINVAL;
280
281 mcs = adau1977->sysclk / rate;
282
283 /* The factors configured by MCS are 1, 2, 3, 4, 6 */
284 if (mcs < 1 || mcs > 6 || mcs == 5)
285 return -EINVAL;
286
287 mcs = mcs - 1;
288 if (mcs == 5)
289 mcs = 4;
290
291 return mcs;
292 }
293
adau1977_hw_params(struct snd_pcm_substream * substream,struct snd_pcm_hw_params * params,struct snd_soc_dai * dai)294 static int adau1977_hw_params(struct snd_pcm_substream *substream,
295 struct snd_pcm_hw_params *params, struct snd_soc_dai *dai)
296 {
297 struct snd_soc_codec *codec = dai->codec;
298 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(codec);
299 unsigned int rate = params_rate(params);
300 unsigned int slot_width;
301 unsigned int ctrl0, ctrl0_mask;
302 unsigned int ctrl1;
303 int mcs, fs;
304 int ret;
305
306 fs = adau1977_lookup_fs(rate);
307 if (fs < 0)
308 return fs;
309
310 if (adau1977->sysclk_src == ADAU1977_SYSCLK_SRC_MCLK) {
311 mcs = adau1977_lookup_mcs(adau1977, rate, fs);
312 if (mcs < 0)
313 return mcs;
314 } else {
315 mcs = 0;
316 }
317
318 ctrl0_mask = ADAU1977_SAI_CTRL0_FS_MASK;
319 ctrl0 = fs;
320
321 if (adau1977->right_j) {
322 switch (params_width(params)) {
323 case 16:
324 ctrl0 |= ADAU1977_SAI_CTRL0_FMT_RJ_16BIT;
325 break;
326 case 24:
327 ctrl0 |= ADAU1977_SAI_CTRL0_FMT_RJ_24BIT;
328 break;
329 default:
330 return -EINVAL;
331 }
332 ctrl0_mask |= ADAU1977_SAI_CTRL0_FMT_MASK;
333 }
334
335 if (adau1977->master) {
336 switch (params_width(params)) {
337 case 16:
338 ctrl1 = ADAU1977_SAI_CTRL1_DATA_WIDTH_16BIT;
339 slot_width = 16;
340 break;
341 case 24:
342 case 32:
343 ctrl1 = ADAU1977_SAI_CTRL1_DATA_WIDTH_24BIT;
344 slot_width = 32;
345 break;
346 default:
347 return -EINVAL;
348 }
349
350 /* In TDM mode there is a fixed slot width */
351 if (adau1977->slot_width)
352 slot_width = adau1977->slot_width;
353
354 if (slot_width == 16)
355 ctrl1 |= ADAU1977_SAI_CTRL1_BCLKRATE_16;
356 else
357 ctrl1 |= ADAU1977_SAI_CTRL1_BCLKRATE_32;
358
359 ret = regmap_update_bits(adau1977->regmap,
360 ADAU1977_REG_SAI_CTRL1,
361 ADAU1977_SAI_CTRL1_DATA_WIDTH_MASK |
362 ADAU1977_SAI_CTRL1_BCLKRATE_MASK,
363 ctrl1);
364 if (ret < 0)
365 return ret;
366 }
367
368 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_SAI_CTRL0,
369 ctrl0_mask, ctrl0);
370 if (ret < 0)
371 return ret;
372
373 return regmap_update_bits(adau1977->regmap, ADAU1977_REG_PLL,
374 ADAU1977_PLL_MCS_MASK, mcs);
375 }
376
adau1977_power_disable(struct adau1977 * adau1977)377 static int adau1977_power_disable(struct adau1977 *adau1977)
378 {
379 int ret = 0;
380
381 if (!adau1977->enabled)
382 return 0;
383
384 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_POWER,
385 ADAU1977_POWER_PWUP, 0);
386 if (ret)
387 return ret;
388
389 regcache_mark_dirty(adau1977->regmap);
390
391 gpiod_set_value_cansleep(adau1977->reset_gpio, 0);
392
393 regcache_cache_only(adau1977->regmap, true);
394
395 regulator_disable(adau1977->avdd_reg);
396 if (adau1977->dvdd_reg)
397 regulator_disable(adau1977->dvdd_reg);
398
399 adau1977->enabled = false;
400
401 return 0;
402 }
403
adau1977_power_enable(struct adau1977 * adau1977)404 static int adau1977_power_enable(struct adau1977 *adau1977)
405 {
406 unsigned int val;
407 int ret = 0;
408
409 if (adau1977->enabled)
410 return 0;
411
412 ret = regulator_enable(adau1977->avdd_reg);
413 if (ret)
414 return ret;
415
416 if (adau1977->dvdd_reg) {
417 ret = regulator_enable(adau1977->dvdd_reg);
418 if (ret)
419 goto err_disable_avdd;
420 }
421
422 gpiod_set_value_cansleep(adau1977->reset_gpio, 1);
423
424 regcache_cache_only(adau1977->regmap, false);
425
426 if (adau1977->switch_mode)
427 adau1977->switch_mode(adau1977->dev);
428
429 ret = adau1977_reset(adau1977);
430 if (ret)
431 goto err_disable_dvdd;
432
433 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_POWER,
434 ADAU1977_POWER_PWUP, ADAU1977_POWER_PWUP);
435 if (ret)
436 goto err_disable_dvdd;
437
438 ret = regcache_sync(adau1977->regmap);
439 if (ret)
440 goto err_disable_dvdd;
441
442 /*
443 * The PLL register is not affected by the software reset. It is
444 * possible that the value of the register was changed to the
445 * default value while we were in cache only mode. In this case
446 * regcache_sync will skip over it and we have to manually sync
447 * it.
448 */
449 ret = regmap_read(adau1977->regmap, ADAU1977_REG_PLL, &val);
450 if (ret)
451 goto err_disable_dvdd;
452
453 if (val == 0x41) {
454 regcache_cache_bypass(adau1977->regmap, true);
455 ret = regmap_write(adau1977->regmap, ADAU1977_REG_PLL,
456 0x41);
457 if (ret)
458 goto err_disable_dvdd;
459 regcache_cache_bypass(adau1977->regmap, false);
460 }
461
462 adau1977->enabled = true;
463
464 return ret;
465
466 err_disable_dvdd:
467 if (adau1977->dvdd_reg)
468 regulator_disable(adau1977->dvdd_reg);
469 err_disable_avdd:
470 regulator_disable(adau1977->avdd_reg);
471 return ret;
472 }
473
adau1977_set_bias_level(struct snd_soc_codec * codec,enum snd_soc_bias_level level)474 static int adau1977_set_bias_level(struct snd_soc_codec *codec,
475 enum snd_soc_bias_level level)
476 {
477 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(codec);
478 int ret = 0;
479
480 switch (level) {
481 case SND_SOC_BIAS_ON:
482 break;
483 case SND_SOC_BIAS_PREPARE:
484 break;
485 case SND_SOC_BIAS_STANDBY:
486 if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF)
487 ret = adau1977_power_enable(adau1977);
488 break;
489 case SND_SOC_BIAS_OFF:
490 ret = adau1977_power_disable(adau1977);
491 break;
492 }
493
494 return ret;
495 }
496
adau1977_set_tdm_slot(struct snd_soc_dai * dai,unsigned int tx_mask,unsigned int rx_mask,int slots,int width)497 static int adau1977_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask,
498 unsigned int rx_mask, int slots, int width)
499 {
500 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(dai->codec);
501 unsigned int ctrl0, ctrl1, drv;
502 unsigned int slot[4];
503 unsigned int i;
504 int ret;
505
506 if (slots == 0) {
507 /* 0 = No fixed slot width */
508 adau1977->slot_width = 0;
509 adau1977->max_master_fs = 192000;
510 return regmap_update_bits(adau1977->regmap,
511 ADAU1977_REG_SAI_CTRL0, ADAU1977_SAI_CTRL0_SAI_MASK,
512 ADAU1977_SAI_CTRL0_SAI_I2S);
513 }
514
515 if (rx_mask == 0 || tx_mask != 0)
516 return -EINVAL;
517
518 drv = 0;
519 for (i = 0; i < 4; i++) {
520 slot[i] = __ffs(rx_mask);
521 drv |= ADAU1977_SAI_OVERTEMP_DRV_C(i);
522 rx_mask &= ~(1 << slot[i]);
523 if (slot[i] >= slots)
524 return -EINVAL;
525 if (rx_mask == 0)
526 break;
527 }
528
529 if (rx_mask != 0)
530 return -EINVAL;
531
532 switch (width) {
533 case 16:
534 ctrl1 = ADAU1977_SAI_CTRL1_SLOT_WIDTH_16;
535 break;
536 case 24:
537 /* We can only generate 16 bit or 32 bit wide slots */
538 if (adau1977->master)
539 return -EINVAL;
540 ctrl1 = ADAU1977_SAI_CTRL1_SLOT_WIDTH_24;
541 break;
542 case 32:
543 ctrl1 = ADAU1977_SAI_CTRL1_SLOT_WIDTH_32;
544 break;
545 default:
546 return -EINVAL;
547 }
548
549 switch (slots) {
550 case 2:
551 ctrl0 = ADAU1977_SAI_CTRL0_SAI_TDM_2;
552 break;
553 case 4:
554 ctrl0 = ADAU1977_SAI_CTRL0_SAI_TDM_4;
555 break;
556 case 8:
557 ctrl0 = ADAU1977_SAI_CTRL0_SAI_TDM_8;
558 break;
559 case 16:
560 ctrl0 = ADAU1977_SAI_CTRL0_SAI_TDM_16;
561 break;
562 default:
563 return -EINVAL;
564 }
565
566 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_SAI_OVERTEMP,
567 ADAU1977_SAI_OVERTEMP_DRV_C(0) |
568 ADAU1977_SAI_OVERTEMP_DRV_C(1) |
569 ADAU1977_SAI_OVERTEMP_DRV_C(2) |
570 ADAU1977_SAI_OVERTEMP_DRV_C(3), drv);
571 if (ret)
572 return ret;
573
574 ret = regmap_write(adau1977->regmap, ADAU1977_REG_CMAP12,
575 (slot[1] << ADAU1977_CHAN_MAP_SECOND_SLOT_OFFSET) |
576 (slot[0] << ADAU1977_CHAN_MAP_FIRST_SLOT_OFFSET));
577 if (ret)
578 return ret;
579
580 ret = regmap_write(adau1977->regmap, ADAU1977_REG_CMAP34,
581 (slot[3] << ADAU1977_CHAN_MAP_SECOND_SLOT_OFFSET) |
582 (slot[2] << ADAU1977_CHAN_MAP_FIRST_SLOT_OFFSET));
583 if (ret)
584 return ret;
585
586 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_SAI_CTRL0,
587 ADAU1977_SAI_CTRL0_SAI_MASK, ctrl0);
588 if (ret)
589 return ret;
590
591 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_SAI_CTRL1,
592 ADAU1977_SAI_CTRL1_SLOT_WIDTH_MASK, ctrl1);
593 if (ret)
594 return ret;
595
596 adau1977->slot_width = width;
597
598 /* In master mode the maximum bitclock is 24.576 MHz */
599 adau1977->max_master_fs = min(192000, 24576000 / width / slots);
600
601 return 0;
602 }
603
adau1977_mute(struct snd_soc_dai * dai,int mute,int stream)604 static int adau1977_mute(struct snd_soc_dai *dai, int mute, int stream)
605 {
606 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(dai->codec);
607 unsigned int val;
608
609 if (mute)
610 val = ADAU1977_MISC_CONTROL_MMUTE;
611 else
612 val = 0;
613
614 return regmap_update_bits(adau1977->regmap, ADAU1977_REG_MISC_CONTROL,
615 ADAU1977_MISC_CONTROL_MMUTE, val);
616 }
617
adau1977_set_dai_fmt(struct snd_soc_dai * dai,unsigned int fmt)618 static int adau1977_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
619 {
620 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(dai->codec);
621 unsigned int ctrl0 = 0, ctrl1 = 0, block_power = 0;
622 bool invert_lrclk;
623 int ret;
624
625 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
626 case SND_SOC_DAIFMT_CBS_CFS:
627 adau1977->master = false;
628 break;
629 case SND_SOC_DAIFMT_CBM_CFM:
630 ctrl1 |= ADAU1977_SAI_CTRL1_MASTER;
631 adau1977->master = true;
632 break;
633 default:
634 return -EINVAL;
635 }
636
637 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
638 case SND_SOC_DAIFMT_NB_NF:
639 invert_lrclk = false;
640 break;
641 case SND_SOC_DAIFMT_IB_NF:
642 block_power |= ADAU1977_BLOCK_POWER_SAI_BCLK_EDGE;
643 invert_lrclk = false;
644 break;
645 case SND_SOC_DAIFMT_NB_IF:
646 invert_lrclk = true;
647 break;
648 case SND_SOC_DAIFMT_IB_IF:
649 block_power |= ADAU1977_BLOCK_POWER_SAI_BCLK_EDGE;
650 invert_lrclk = true;
651 break;
652 default:
653 return -EINVAL;
654 }
655
656 adau1977->right_j = false;
657 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
658 case SND_SOC_DAIFMT_I2S:
659 ctrl0 |= ADAU1977_SAI_CTRL0_FMT_I2S;
660 break;
661 case SND_SOC_DAIFMT_LEFT_J:
662 ctrl0 |= ADAU1977_SAI_CTRL0_FMT_LJ;
663 invert_lrclk = !invert_lrclk;
664 break;
665 case SND_SOC_DAIFMT_RIGHT_J:
666 ctrl0 |= ADAU1977_SAI_CTRL0_FMT_RJ_24BIT;
667 adau1977->right_j = true;
668 invert_lrclk = !invert_lrclk;
669 break;
670 case SND_SOC_DAIFMT_DSP_A:
671 ctrl1 |= ADAU1977_SAI_CTRL1_LRCLK_PULSE;
672 ctrl0 |= ADAU1977_SAI_CTRL0_FMT_I2S;
673 invert_lrclk = false;
674 break;
675 case SND_SOC_DAIFMT_DSP_B:
676 ctrl1 |= ADAU1977_SAI_CTRL1_LRCLK_PULSE;
677 ctrl0 |= ADAU1977_SAI_CTRL0_FMT_LJ;
678 invert_lrclk = false;
679 break;
680 default:
681 return -EINVAL;
682 }
683
684 if (invert_lrclk)
685 block_power |= ADAU1977_BLOCK_POWER_SAI_LR_POL;
686
687 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_BLOCK_POWER_SAI,
688 ADAU1977_BLOCK_POWER_SAI_LR_POL |
689 ADAU1977_BLOCK_POWER_SAI_BCLK_EDGE, block_power);
690 if (ret)
691 return ret;
692
693 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_SAI_CTRL0,
694 ADAU1977_SAI_CTRL0_FMT_MASK,
695 ctrl0);
696 if (ret)
697 return ret;
698
699 return regmap_update_bits(adau1977->regmap, ADAU1977_REG_SAI_CTRL1,
700 ADAU1977_SAI_CTRL1_MASTER | ADAU1977_SAI_CTRL1_LRCLK_PULSE,
701 ctrl1);
702 }
703
adau1977_startup(struct snd_pcm_substream * substream,struct snd_soc_dai * dai)704 static int adau1977_startup(struct snd_pcm_substream *substream,
705 struct snd_soc_dai *dai)
706 {
707 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(dai->codec);
708 u64 formats = 0;
709
710 if (adau1977->slot_width == 16)
711 formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE;
712 else if (adau1977->right_j || adau1977->slot_width == 24)
713 formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
714 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE;
715
716 snd_pcm_hw_constraint_list(substream->runtime, 0,
717 SNDRV_PCM_HW_PARAM_RATE, &adau1977->constraints);
718
719 if (adau1977->master)
720 snd_pcm_hw_constraint_minmax(substream->runtime,
721 SNDRV_PCM_HW_PARAM_RATE, 8000, adau1977->max_master_fs);
722
723 if (formats != 0)
724 snd_pcm_hw_constraint_mask64(substream->runtime,
725 SNDRV_PCM_HW_PARAM_FORMAT, formats);
726
727 return 0;
728 }
729
adau1977_set_tristate(struct snd_soc_dai * dai,int tristate)730 static int adau1977_set_tristate(struct snd_soc_dai *dai, int tristate)
731 {
732 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(dai->codec);
733 unsigned int val;
734
735 if (tristate)
736 val = ADAU1977_SAI_OVERTEMP_DRV_HIZ;
737 else
738 val = 0;
739
740 return regmap_update_bits(adau1977->regmap, ADAU1977_REG_SAI_OVERTEMP,
741 ADAU1977_SAI_OVERTEMP_DRV_HIZ, val);
742 }
743
744 static const struct snd_soc_dai_ops adau1977_dai_ops = {
745 .startup = adau1977_startup,
746 .hw_params = adau1977_hw_params,
747 .mute_stream = adau1977_mute,
748 .set_fmt = adau1977_set_dai_fmt,
749 .set_tdm_slot = adau1977_set_tdm_slot,
750 .set_tristate = adau1977_set_tristate,
751 };
752
753 static struct snd_soc_dai_driver adau1977_dai = {
754 .name = "adau1977-hifi",
755 .capture = {
756 .stream_name = "Capture",
757 .channels_min = 1,
758 .channels_max = 4,
759 .rates = SNDRV_PCM_RATE_KNOT,
760 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE |
761 SNDRV_PCM_FMTBIT_S32_LE,
762 .sig_bits = 24,
763 },
764 .ops = &adau1977_dai_ops,
765 };
766
767 static const unsigned int adau1977_rates[] = {
768 8000, 16000, 32000, 64000, 128000,
769 11025, 22050, 44100, 88200, 172400,
770 12000, 24000, 48000, 96000, 192000,
771 };
772
773 #define ADAU1977_RATE_CONSTRAINT_MASK_32000 0x001f
774 #define ADAU1977_RATE_CONSTRAINT_MASK_44100 0x03e0
775 #define ADAU1977_RATE_CONSTRAINT_MASK_48000 0x7c00
776 /* All rates >= 32000 */
777 #define ADAU1977_RATE_CONSTRAINT_MASK_LRCLK 0x739c
778
adau1977_check_sysclk(unsigned int mclk,unsigned int base_freq)779 static bool adau1977_check_sysclk(unsigned int mclk, unsigned int base_freq)
780 {
781 unsigned int mcs;
782
783 if (mclk % (base_freq * 128) != 0)
784 return false;
785
786 mcs = mclk / (128 * base_freq);
787 if (mcs < 1 || mcs > 6 || mcs == 5)
788 return false;
789
790 return true;
791 }
792
adau1977_set_sysclk(struct snd_soc_codec * codec,int clk_id,int source,unsigned int freq,int dir)793 static int adau1977_set_sysclk(struct snd_soc_codec *codec,
794 int clk_id, int source, unsigned int freq, int dir)
795 {
796 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(codec);
797 unsigned int mask = 0;
798 unsigned int clk_src;
799 unsigned int ret;
800
801 if (dir != SND_SOC_CLOCK_IN)
802 return -EINVAL;
803
804 if (clk_id != ADAU1977_SYSCLK)
805 return -EINVAL;
806
807 switch (source) {
808 case ADAU1977_SYSCLK_SRC_MCLK:
809 clk_src = 0;
810 break;
811 case ADAU1977_SYSCLK_SRC_LRCLK:
812 clk_src = ADAU1977_PLL_CLK_S;
813 break;
814 default:
815 return -EINVAL;
816 }
817
818 if (freq != 0 && source == ADAU1977_SYSCLK_SRC_MCLK) {
819 if (freq < 4000000 || freq > 36864000)
820 return -EINVAL;
821
822 if (adau1977_check_sysclk(freq, 32000))
823 mask |= ADAU1977_RATE_CONSTRAINT_MASK_32000;
824 if (adau1977_check_sysclk(freq, 44100))
825 mask |= ADAU1977_RATE_CONSTRAINT_MASK_44100;
826 if (adau1977_check_sysclk(freq, 48000))
827 mask |= ADAU1977_RATE_CONSTRAINT_MASK_48000;
828
829 if (mask == 0)
830 return -EINVAL;
831 } else if (source == ADAU1977_SYSCLK_SRC_LRCLK) {
832 mask = ADAU1977_RATE_CONSTRAINT_MASK_LRCLK;
833 }
834
835 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_PLL,
836 ADAU1977_PLL_CLK_S, clk_src);
837 if (ret)
838 return ret;
839
840 adau1977->constraints.mask = mask;
841 adau1977->sysclk_src = source;
842 adau1977->sysclk = freq;
843
844 return 0;
845 }
846
adau1977_codec_probe(struct snd_soc_codec * codec)847 static int adau1977_codec_probe(struct snd_soc_codec *codec)
848 {
849 struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
850 struct adau1977 *adau1977 = snd_soc_codec_get_drvdata(codec);
851 int ret;
852
853 switch (adau1977->type) {
854 case ADAU1977:
855 ret = snd_soc_dapm_new_controls(dapm,
856 adau1977_micbias_dapm_widgets,
857 ARRAY_SIZE(adau1977_micbias_dapm_widgets));
858 if (ret < 0)
859 return ret;
860 break;
861 default:
862 break;
863 }
864
865 return 0;
866 }
867
868 static const struct snd_soc_codec_driver adau1977_codec_driver = {
869 .probe = adau1977_codec_probe,
870 .set_bias_level = adau1977_set_bias_level,
871 .set_sysclk = adau1977_set_sysclk,
872 .idle_bias_off = true,
873
874 .component_driver = {
875 .controls = adau1977_snd_controls,
876 .num_controls = ARRAY_SIZE(adau1977_snd_controls),
877 .dapm_widgets = adau1977_dapm_widgets,
878 .num_dapm_widgets = ARRAY_SIZE(adau1977_dapm_widgets),
879 .dapm_routes = adau1977_dapm_routes,
880 .num_dapm_routes = ARRAY_SIZE(adau1977_dapm_routes),
881 },
882 };
883
adau1977_setup_micbias(struct adau1977 * adau1977)884 static int adau1977_setup_micbias(struct adau1977 *adau1977)
885 {
886 struct adau1977_platform_data *pdata = adau1977->dev->platform_data;
887 unsigned int micbias;
888
889 if (pdata) {
890 micbias = pdata->micbias;
891 if (micbias > ADAU1977_MICBIAS_9V0)
892 return -EINVAL;
893
894 } else {
895 micbias = ADAU1977_MICBIAS_8V5;
896 }
897
898 return regmap_update_bits(adau1977->regmap, ADAU1977_REG_MICBIAS,
899 ADAU1977_MICBIAS_MB_VOLTS_MASK,
900 micbias << ADAU1977_MICBIAS_MB_VOLTS_OFFSET);
901 }
902
adau1977_probe(struct device * dev,struct regmap * regmap,enum adau1977_type type,void (* switch_mode)(struct device * dev))903 int adau1977_probe(struct device *dev, struct regmap *regmap,
904 enum adau1977_type type, void (*switch_mode)(struct device *dev))
905 {
906 unsigned int power_off_mask;
907 struct adau1977 *adau1977;
908 int ret;
909
910 if (IS_ERR(regmap))
911 return PTR_ERR(regmap);
912
913 adau1977 = devm_kzalloc(dev, sizeof(*adau1977), GFP_KERNEL);
914 if (adau1977 == NULL)
915 return -ENOMEM;
916
917 adau1977->dev = dev;
918 adau1977->type = type;
919 adau1977->regmap = regmap;
920 adau1977->switch_mode = switch_mode;
921 adau1977->max_master_fs = 192000;
922
923 adau1977->constraints.list = adau1977_rates;
924 adau1977->constraints.count = ARRAY_SIZE(adau1977_rates);
925
926 adau1977->avdd_reg = devm_regulator_get(dev, "AVDD");
927 if (IS_ERR(adau1977->avdd_reg))
928 return PTR_ERR(adau1977->avdd_reg);
929
930 adau1977->dvdd_reg = devm_regulator_get_optional(dev, "DVDD");
931 if (IS_ERR(adau1977->dvdd_reg)) {
932 if (PTR_ERR(adau1977->dvdd_reg) != -ENODEV)
933 return PTR_ERR(adau1977->dvdd_reg);
934 adau1977->dvdd_reg = NULL;
935 }
936
937 adau1977->reset_gpio = devm_gpiod_get_optional(dev, "reset",
938 GPIOD_OUT_LOW);
939 if (IS_ERR(adau1977->reset_gpio))
940 return PTR_ERR(adau1977->reset_gpio);
941
942 dev_set_drvdata(dev, adau1977);
943
944 if (adau1977->reset_gpio)
945 ndelay(100);
946
947 ret = adau1977_power_enable(adau1977);
948 if (ret)
949 return ret;
950
951 if (type == ADAU1977) {
952 ret = adau1977_setup_micbias(adau1977);
953 if (ret)
954 goto err_poweroff;
955 }
956
957 if (adau1977->dvdd_reg)
958 power_off_mask = ~0;
959 else
960 power_off_mask = (unsigned int)~ADAU1977_BLOCK_POWER_SAI_LDO_EN;
961
962 ret = regmap_update_bits(adau1977->regmap, ADAU1977_REG_BLOCK_POWER_SAI,
963 power_off_mask, 0x00);
964 if (ret)
965 goto err_poweroff;
966
967 ret = adau1977_power_disable(adau1977);
968 if (ret)
969 return ret;
970
971 return snd_soc_register_codec(dev, &adau1977_codec_driver,
972 &adau1977_dai, 1);
973
974 err_poweroff:
975 adau1977_power_disable(adau1977);
976 return ret;
977
978 }
979 EXPORT_SYMBOL_GPL(adau1977_probe);
980
adau1977_register_volatile(struct device * dev,unsigned int reg)981 static bool adau1977_register_volatile(struct device *dev, unsigned int reg)
982 {
983 switch (reg) {
984 case ADAU1977_REG_STATUS(0):
985 case ADAU1977_REG_STATUS(1):
986 case ADAU1977_REG_STATUS(2):
987 case ADAU1977_REG_STATUS(3):
988 case ADAU1977_REG_ADC_CLIP:
989 return true;
990 }
991
992 return false;
993 }
994
995 const struct regmap_config adau1977_regmap_config = {
996 .max_register = ADAU1977_REG_DC_HPF_CAL,
997 .volatile_reg = adau1977_register_volatile,
998
999 .cache_type = REGCACHE_RBTREE,
1000 .reg_defaults = adau1977_reg_defaults,
1001 .num_reg_defaults = ARRAY_SIZE(adau1977_reg_defaults),
1002 };
1003 EXPORT_SYMBOL_GPL(adau1977_regmap_config);
1004
1005 MODULE_DESCRIPTION("ASoC ADAU1977/ADAU1978/ADAU1979 driver");
1006 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
1007 MODULE_LICENSE("GPL");
1008