ASoC: es8328: Use single R/W for regmap
[cascardo/linux.git] / sound / soc / codecs / es8328.c
1 /*
2  * es8328.c  --  ES8328 ALSA SoC Audio driver
3  *
4  * Copyright 2014 Sutajio Ko-Usagi PTE LTD
5  *
6  * Author: Sean Cross <xobs@kosagi.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 #include <linux/clk.h>
14 #include <linux/delay.h>
15 #include <linux/of_device.h>
16 #include <linux/module.h>
17 #include <linux/pm.h>
18 #include <linux/regmap.h>
19 #include <linux/slab.h>
20 #include <linux/regulator/consumer.h>
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 #include "es8328.h"
28
29 #define ES8328_SYSCLK_RATE_1X 11289600
30 #define ES8328_SYSCLK_RATE_2X 22579200
31
32 /* Run the codec at 22.5792 or 11.2896 MHz to support these rates */
33 static struct {
34         int rate;
35         u8 ratio;
36 } mclk_ratios[] = {
37         { 8000, 9 },
38         {11025, 7 },
39         {22050, 4 },
40         {44100, 2 },
41 };
42
43 /* regulator supplies for sgtl5000, VDDD is an optional external supply */
44 enum sgtl5000_regulator_supplies {
45         DVDD,
46         AVDD,
47         PVDD,
48         HPVDD,
49         ES8328_SUPPLY_NUM
50 };
51
52 /* vddd is optional supply */
53 static const char * const supply_names[ES8328_SUPPLY_NUM] = {
54         "DVDD",
55         "AVDD",
56         "PVDD",
57         "HPVDD",
58 };
59
60 #define ES8328_RATES (SNDRV_PCM_RATE_44100 | \
61                 SNDRV_PCM_RATE_22050 | \
62                 SNDRV_PCM_RATE_11025)
63 #define ES8328_FORMATS (SNDRV_PCM_FMTBIT_S16_LE)
64
65 struct es8328_priv {
66         struct regmap *regmap;
67         struct clk *clk;
68         int playback_fs;
69         bool deemph;
70         struct regulator_bulk_data supplies[ES8328_SUPPLY_NUM];
71 };
72
73 /*
74  * ES8328 Controls
75  */
76
77 static const char * const adcpol_txt[] = {"Normal", "L Invert", "R Invert",
78                                           "L + R Invert"};
79 static SOC_ENUM_SINGLE_DECL(adcpol,
80                             ES8328_ADCCONTROL6, 6, adcpol_txt);
81
82 static const DECLARE_TLV_DB_SCALE(play_tlv, -3000, 100, 0);
83 static const DECLARE_TLV_DB_SCALE(dac_adc_tlv, -9600, 50, 0);
84 static const DECLARE_TLV_DB_SCALE(pga_tlv, 0, 300, 0);
85 static const DECLARE_TLV_DB_SCALE(bypass_tlv, -1500, 300, 0);
86 static const DECLARE_TLV_DB_SCALE(mic_tlv, 0, 300, 0);
87
88 static const struct {
89         int rate;
90         unsigned int val;
91 } deemph_settings[] = {
92         { 0,     ES8328_DACCONTROL6_DEEMPH_OFF },
93         { 32000, ES8328_DACCONTROL6_DEEMPH_32k },
94         { 44100, ES8328_DACCONTROL6_DEEMPH_44_1k },
95         { 48000, ES8328_DACCONTROL6_DEEMPH_48k },
96 };
97
98 static int es8328_set_deemph(struct snd_soc_codec *codec)
99 {
100         struct es8328_priv *es8328 = snd_soc_codec_get_drvdata(codec);
101         int val, i, best;
102
103         /*
104          * If we're using deemphasis select the nearest available sample
105          * rate.
106          */
107         if (es8328->deemph) {
108                 best = 0;
109                 for (i = 1; i < ARRAY_SIZE(deemph_settings); i++) {
110                         if (abs(deemph_settings[i].rate - es8328->playback_fs) <
111                             abs(deemph_settings[best].rate - es8328->playback_fs))
112                                 best = i;
113                 }
114
115                 val = deemph_settings[best].val;
116         } else {
117                 val = ES8328_DACCONTROL6_DEEMPH_OFF;
118         }
119
120         dev_dbg(codec->dev, "Set deemphasis %d\n", val);
121
122         return snd_soc_update_bits(codec, ES8328_DACCONTROL6,
123                         ES8328_DACCONTROL6_DEEMPH_MASK, val);
124 }
125
126 static int es8328_get_deemph(struct snd_kcontrol *kcontrol,
127                              struct snd_ctl_elem_value *ucontrol)
128 {
129         struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
130         struct es8328_priv *es8328 = snd_soc_codec_get_drvdata(codec);
131
132         ucontrol->value.integer.value[0] = es8328->deemph;
133         return 0;
134 }
135
136 static int es8328_put_deemph(struct snd_kcontrol *kcontrol,
137                              struct snd_ctl_elem_value *ucontrol)
138 {
139         struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol);
140         struct es8328_priv *es8328 = snd_soc_codec_get_drvdata(codec);
141         unsigned int deemph = ucontrol->value.integer.value[0];
142         int ret;
143
144         if (deemph > 1)
145                 return -EINVAL;
146
147         ret = es8328_set_deemph(codec);
148         if (ret < 0)
149                 return ret;
150
151         es8328->deemph = deemph;
152
153         return 0;
154 }
155
156
157
158 static const struct snd_kcontrol_new es8328_snd_controls[] = {
159         SOC_DOUBLE_R_TLV("Capture Digital Volume",
160                 ES8328_ADCCONTROL8, ES8328_ADCCONTROL9,
161                  0, 0xc0, 1, dac_adc_tlv),
162         SOC_SINGLE("Capture ZC Switch", ES8328_ADCCONTROL7, 6, 1, 0),
163
164         SOC_SINGLE_BOOL_EXT("DAC Deemphasis Switch", 0,
165                     es8328_get_deemph, es8328_put_deemph),
166
167         SOC_ENUM("Capture Polarity", adcpol),
168
169         SOC_SINGLE_TLV("Left Mixer Left Bypass Volume",
170                         ES8328_DACCONTROL17, 3, 7, 1, bypass_tlv),
171         SOC_SINGLE_TLV("Left Mixer Right Bypass Volume",
172                         ES8328_DACCONTROL19, 3, 7, 1, bypass_tlv),
173         SOC_SINGLE_TLV("Right Mixer Left Bypass Volume",
174                         ES8328_DACCONTROL18, 3, 7, 1, bypass_tlv),
175         SOC_SINGLE_TLV("Right Mixer Right Bypass Volume",
176                         ES8328_DACCONTROL20, 3, 7, 1, bypass_tlv),
177
178         SOC_DOUBLE_R_TLV("PCM Volume",
179                         ES8328_LDACVOL, ES8328_RDACVOL,
180                         0, ES8328_DACVOL_MAX, 1, dac_adc_tlv),
181
182         SOC_DOUBLE_R_TLV("Output 1 Playback Volume",
183                         ES8328_LOUT1VOL, ES8328_ROUT1VOL,
184                         0, ES8328_OUT1VOL_MAX, 0, play_tlv),
185
186         SOC_DOUBLE_R_TLV("Output 2 Playback Volume",
187                         ES8328_LOUT2VOL, ES8328_ROUT2VOL,
188                         0, ES8328_OUT2VOL_MAX, 0, play_tlv),
189
190         SOC_DOUBLE_TLV("Mic PGA Volume", ES8328_ADCCONTROL1,
191                         4, 0, 8, 0, mic_tlv),
192 };
193
194 /*
195  * DAPM Controls
196  */
197
198 static const char * const es8328_line_texts[] = {
199         "Line 1", "Line 2", "PGA", "Differential"};
200
201 static const struct soc_enum es8328_lline_enum =
202         SOC_ENUM_SINGLE(ES8328_DACCONTROL16, 3,
203                               ARRAY_SIZE(es8328_line_texts),
204                               es8328_line_texts);
205 static const struct snd_kcontrol_new es8328_left_line_controls =
206         SOC_DAPM_ENUM("Route", es8328_lline_enum);
207
208 static const struct soc_enum es8328_rline_enum =
209         SOC_ENUM_SINGLE(ES8328_DACCONTROL16, 0,
210                               ARRAY_SIZE(es8328_line_texts),
211                               es8328_line_texts);
212 static const struct snd_kcontrol_new es8328_right_line_controls =
213         SOC_DAPM_ENUM("Route", es8328_lline_enum);
214
215 /* Left Mixer */
216 static const struct snd_kcontrol_new es8328_left_mixer_controls[] = {
217         SOC_DAPM_SINGLE("Playback Switch", ES8328_DACCONTROL17, 7, 1, 0),
218         SOC_DAPM_SINGLE("Left Bypass Switch", ES8328_DACCONTROL17, 6, 1, 0),
219         SOC_DAPM_SINGLE("Right Playback Switch", ES8328_DACCONTROL18, 7, 1, 0),
220         SOC_DAPM_SINGLE("Right Bypass Switch", ES8328_DACCONTROL18, 6, 1, 0),
221 };
222
223 /* Right Mixer */
224 static const struct snd_kcontrol_new es8328_right_mixer_controls[] = {
225         SOC_DAPM_SINGLE("Left Playback Switch", ES8328_DACCONTROL19, 7, 1, 0),
226         SOC_DAPM_SINGLE("Left Bypass Switch", ES8328_DACCONTROL19, 6, 1, 0),
227         SOC_DAPM_SINGLE("Playback Switch", ES8328_DACCONTROL20, 7, 1, 0),
228         SOC_DAPM_SINGLE("Right Bypass Switch", ES8328_DACCONTROL20, 6, 1, 0),
229 };
230
231 static const char * const es8328_pga_sel[] = {
232         "Line 1", "Line 2", "Line 3", "Differential"};
233
234 /* Left PGA Mux */
235 static const struct soc_enum es8328_lpga_enum =
236         SOC_ENUM_SINGLE(ES8328_ADCCONTROL2, 6,
237                               ARRAY_SIZE(es8328_pga_sel),
238                               es8328_pga_sel);
239 static const struct snd_kcontrol_new es8328_left_pga_controls =
240         SOC_DAPM_ENUM("Route", es8328_lpga_enum);
241
242 /* Right PGA Mux */
243 static const struct soc_enum es8328_rpga_enum =
244         SOC_ENUM_SINGLE(ES8328_ADCCONTROL2, 4,
245                               ARRAY_SIZE(es8328_pga_sel),
246                               es8328_pga_sel);
247 static const struct snd_kcontrol_new es8328_right_pga_controls =
248         SOC_DAPM_ENUM("Route", es8328_rpga_enum);
249
250 /* Differential Mux */
251 static const char * const es8328_diff_sel[] = {"Line 1", "Line 2"};
252 static SOC_ENUM_SINGLE_DECL(diffmux,
253                             ES8328_ADCCONTROL3, 7, es8328_diff_sel);
254 static const struct snd_kcontrol_new es8328_diffmux_controls =
255         SOC_DAPM_ENUM("Route", diffmux);
256
257 /* Mono ADC Mux */
258 static const char * const es8328_mono_mux[] = {"Stereo", "Mono (Left)",
259         "Mono (Right)", "Digital Mono"};
260 static SOC_ENUM_SINGLE_DECL(monomux,
261                             ES8328_ADCCONTROL3, 3, es8328_mono_mux);
262 static const struct snd_kcontrol_new es8328_monomux_controls =
263         SOC_DAPM_ENUM("Route", monomux);
264
265 static const struct snd_soc_dapm_widget es8328_dapm_widgets[] = {
266         SND_SOC_DAPM_MUX("Differential Mux", SND_SOC_NOPM, 0, 0,
267                 &es8328_diffmux_controls),
268         SND_SOC_DAPM_MUX("Left ADC Mux", SND_SOC_NOPM, 0, 0,
269                 &es8328_monomux_controls),
270         SND_SOC_DAPM_MUX("Right ADC Mux", SND_SOC_NOPM, 0, 0,
271                 &es8328_monomux_controls),
272
273         SND_SOC_DAPM_MUX("Left PGA Mux", ES8328_ADCPOWER,
274                         ES8328_ADCPOWER_AINL_OFF, 1,
275                         &es8328_left_pga_controls),
276         SND_SOC_DAPM_MUX("Right PGA Mux", ES8328_ADCPOWER,
277                         ES8328_ADCPOWER_AINR_OFF, 1,
278                         &es8328_right_pga_controls),
279
280         SND_SOC_DAPM_MUX("Left Line Mux", SND_SOC_NOPM, 0, 0,
281                 &es8328_left_line_controls),
282         SND_SOC_DAPM_MUX("Right Line Mux", SND_SOC_NOPM, 0, 0,
283                 &es8328_right_line_controls),
284
285         SND_SOC_DAPM_ADC("Right ADC", "Right Capture", ES8328_ADCPOWER,
286                         ES8328_ADCPOWER_ADCR_OFF, 1),
287         SND_SOC_DAPM_ADC("Left ADC", "Left Capture", ES8328_ADCPOWER,
288                         ES8328_ADCPOWER_ADCL_OFF, 1),
289
290         SND_SOC_DAPM_SUPPLY("Mic Bias", ES8328_ADCPOWER,
291                         ES8328_ADCPOWER_MIC_BIAS_OFF, 1, NULL, 0),
292         SND_SOC_DAPM_SUPPLY("Mic Bias Gen", ES8328_ADCPOWER,
293                         ES8328_ADCPOWER_ADC_BIAS_GEN_OFF, 1, NULL, 0),
294
295         SND_SOC_DAPM_SUPPLY("DAC STM", ES8328_CHIPPOWER,
296                         ES8328_CHIPPOWER_DACSTM_RESET, 1, NULL, 0),
297         SND_SOC_DAPM_SUPPLY("ADC STM", ES8328_CHIPPOWER,
298                         ES8328_CHIPPOWER_ADCSTM_RESET, 1, NULL, 0),
299
300         SND_SOC_DAPM_SUPPLY("DAC DIG", ES8328_CHIPPOWER,
301                         ES8328_CHIPPOWER_DACDIG_OFF, 1, NULL, 0),
302         SND_SOC_DAPM_SUPPLY("ADC DIG", ES8328_CHIPPOWER,
303                         ES8328_CHIPPOWER_ADCDIG_OFF, 1, NULL, 0),
304
305         SND_SOC_DAPM_SUPPLY("DAC DLL", ES8328_CHIPPOWER,
306                         ES8328_CHIPPOWER_DACDLL_OFF, 1, NULL, 0),
307         SND_SOC_DAPM_SUPPLY("ADC DLL", ES8328_CHIPPOWER,
308                         ES8328_CHIPPOWER_ADCDLL_OFF, 1, NULL, 0),
309
310         SND_SOC_DAPM_SUPPLY("ADC Vref", ES8328_CHIPPOWER,
311                         ES8328_CHIPPOWER_ADCVREF_OFF, 1, NULL, 0),
312         SND_SOC_DAPM_SUPPLY("DAC Vref", ES8328_CHIPPOWER,
313                         ES8328_CHIPPOWER_DACVREF_OFF, 1, NULL, 0),
314
315         SND_SOC_DAPM_DAC("Right DAC", "Right Playback", ES8328_DACPOWER,
316                         ES8328_DACPOWER_RDAC_OFF, 1),
317         SND_SOC_DAPM_DAC("Left DAC", "Left Playback", ES8328_DACPOWER,
318                         ES8328_DACPOWER_LDAC_OFF, 1),
319
320         SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0,
321                 &es8328_left_mixer_controls[0],
322                 ARRAY_SIZE(es8328_left_mixer_controls)),
323         SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0,
324                 &es8328_right_mixer_controls[0],
325                 ARRAY_SIZE(es8328_right_mixer_controls)),
326
327         SND_SOC_DAPM_PGA("Right Out 2", ES8328_DACPOWER,
328                         ES8328_DACPOWER_ROUT2_ON, 0, NULL, 0),
329         SND_SOC_DAPM_PGA("Left Out 2", ES8328_DACPOWER,
330                         ES8328_DACPOWER_LOUT2_ON, 0, NULL, 0),
331         SND_SOC_DAPM_PGA("Right Out 1", ES8328_DACPOWER,
332                         ES8328_DACPOWER_ROUT1_ON, 0, NULL, 0),
333         SND_SOC_DAPM_PGA("Left Out 1", ES8328_DACPOWER,
334                         ES8328_DACPOWER_LOUT1_ON, 0, NULL, 0),
335
336         SND_SOC_DAPM_OUTPUT("LOUT1"),
337         SND_SOC_DAPM_OUTPUT("ROUT1"),
338         SND_SOC_DAPM_OUTPUT("LOUT2"),
339         SND_SOC_DAPM_OUTPUT("ROUT2"),
340
341         SND_SOC_DAPM_INPUT("LINPUT1"),
342         SND_SOC_DAPM_INPUT("LINPUT2"),
343         SND_SOC_DAPM_INPUT("RINPUT1"),
344         SND_SOC_DAPM_INPUT("RINPUT2"),
345 };
346
347 static const struct snd_soc_dapm_route es8328_dapm_routes[] = {
348
349         { "Left Line Mux", "Line 1", "LINPUT1" },
350         { "Left Line Mux", "Line 2", "LINPUT2" },
351         { "Left Line Mux", "PGA", "Left PGA Mux" },
352         { "Left Line Mux", "Differential", "Differential Mux" },
353
354         { "Right Line Mux", "Line 1", "RINPUT1" },
355         { "Right Line Mux", "Line 2", "RINPUT2" },
356         { "Right Line Mux", "PGA", "Right PGA Mux" },
357         { "Right Line Mux", "Differential", "Differential Mux" },
358
359         { "Left PGA Mux", "Line 1", "LINPUT1" },
360         { "Left PGA Mux", "Line 2", "LINPUT2" },
361         { "Left PGA Mux", "Differential", "Differential Mux" },
362
363         { "Right PGA Mux", "Line 1", "RINPUT1" },
364         { "Right PGA Mux", "Line 2", "RINPUT2" },
365         { "Right PGA Mux", "Differential", "Differential Mux" },
366
367         { "Differential Mux", "Line 1", "LINPUT1" },
368         { "Differential Mux", "Line 1", "RINPUT1" },
369         { "Differential Mux", "Line 2", "LINPUT2" },
370         { "Differential Mux", "Line 2", "RINPUT2" },
371
372         { "Left ADC Mux", "Stereo", "Left PGA Mux" },
373         { "Left ADC Mux", "Mono (Left)", "Left PGA Mux" },
374         { "Left ADC Mux", "Digital Mono", "Left PGA Mux" },
375
376         { "Right ADC Mux", "Stereo", "Right PGA Mux" },
377         { "Right ADC Mux", "Mono (Right)", "Right PGA Mux" },
378         { "Right ADC Mux", "Digital Mono", "Right PGA Mux" },
379
380         { "Left ADC", NULL, "Left ADC Mux" },
381         { "Right ADC", NULL, "Right ADC Mux" },
382
383         { "ADC DIG", NULL, "ADC STM" },
384         { "ADC DIG", NULL, "ADC Vref" },
385         { "ADC DIG", NULL, "ADC DLL" },
386
387         { "Left ADC", NULL, "ADC DIG" },
388         { "Right ADC", NULL, "ADC DIG" },
389
390         { "Mic Bias", NULL, "Mic Bias Gen" },
391
392         { "Left Line Mux", "Line 1", "LINPUT1" },
393         { "Left Line Mux", "Line 2", "LINPUT2" },
394         { "Left Line Mux", "PGA", "Left PGA Mux" },
395         { "Left Line Mux", "Differential", "Differential Mux" },
396
397         { "Right Line Mux", "Line 1", "RINPUT1" },
398         { "Right Line Mux", "Line 2", "RINPUT2" },
399         { "Right Line Mux", "PGA", "Right PGA Mux" },
400         { "Right Line Mux", "Differential", "Differential Mux" },
401
402         { "Left Out 1", NULL, "Left DAC" },
403         { "Right Out 1", NULL, "Right DAC" },
404         { "Left Out 2", NULL, "Left DAC" },
405         { "Right Out 2", NULL, "Right DAC" },
406
407         { "Left Mixer", "Playback Switch", "Left DAC" },
408         { "Left Mixer", "Left Bypass Switch", "Left Line Mux" },
409         { "Left Mixer", "Right Playback Switch", "Right DAC" },
410         { "Left Mixer", "Right Bypass Switch", "Right Line Mux" },
411
412         { "Right Mixer", "Left Playback Switch", "Left DAC" },
413         { "Right Mixer", "Left Bypass Switch", "Left Line Mux" },
414         { "Right Mixer", "Playback Switch", "Right DAC" },
415         { "Right Mixer", "Right Bypass Switch", "Right Line Mux" },
416
417         { "DAC DIG", NULL, "DAC STM" },
418         { "DAC DIG", NULL, "DAC Vref" },
419         { "DAC DIG", NULL, "DAC DLL" },
420
421         { "Left DAC", NULL, "DAC DIG" },
422         { "Right DAC", NULL, "DAC DIG" },
423
424         { "Left Out 1", NULL, "Left Mixer" },
425         { "LOUT1", NULL, "Left Out 1" },
426         { "Right Out 1", NULL, "Right Mixer" },
427         { "ROUT1", NULL, "Right Out 1" },
428
429         { "Left Out 2", NULL, "Left Mixer" },
430         { "LOUT2", NULL, "Left Out 2" },
431         { "Right Out 2", NULL, "Right Mixer" },
432         { "ROUT2", NULL, "Right Out 2" },
433 };
434
435 static int es8328_mute(struct snd_soc_dai *dai, int mute)
436 {
437         return snd_soc_update_bits(dai->codec, ES8328_DACCONTROL3,
438                         ES8328_DACCONTROL3_DACMUTE,
439                         mute ? ES8328_DACCONTROL3_DACMUTE : 0);
440 }
441
442 static int es8328_hw_params(struct snd_pcm_substream *substream,
443         struct snd_pcm_hw_params *params,
444         struct snd_soc_dai *dai)
445 {
446         struct snd_soc_codec *codec = dai->codec;
447         struct es8328_priv *es8328 = snd_soc_codec_get_drvdata(codec);
448         int clk_rate = clk_get_rate(es8328->clk);
449         int i;
450         int reg;
451         int val;
452         u8 ratio;
453
454         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
455                 reg = ES8328_DACCONTROL2;
456         else
457                 reg = ES8328_ADCCONTROL5;
458
459         switch (clk_rate) {
460         case ES8328_SYSCLK_RATE_1X:
461                 val = 0;
462                 break;
463         case ES8328_SYSCLK_RATE_2X:
464                 val = ES8328_MASTERMODE_MCLKDIV2;
465                 break;
466         default:
467                 dev_err(codec->dev,
468                         "%s: clock is running at %d Hz, not %d or %d Hz\n",
469                          __func__, clk_rate,
470                          ES8328_SYSCLK_RATE_1X, ES8328_SYSCLK_RATE_2X);
471                 return -EINVAL;
472         }
473         ret = snd_soc_update_bits(codec, ES8328_MASTERMODE,
474                         ES8328_MASTERMODE_MCLKDIV2, val);
475         if (ret < 0)
476                 return ret;
477
478         /* find master mode MCLK to sampling frequency ratio */
479         ratio = mclk_ratios[0].rate;
480         for (i = 1; i < ARRAY_SIZE(mclk_ratios); i++)
481                 if (params_rate(params) <= mclk_ratios[i].rate)
482                         ratio = mclk_ratios[i].ratio;
483
484         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
485                 es8328->playback_fs = params_rate(params);
486                 es8328_set_deemph(codec);
487         }
488
489         return snd_soc_update_bits(codec, reg, ES8328_RATEMASK, ratio);
490 }
491
492 static int es8328_set_dai_fmt(struct snd_soc_dai *codec_dai,
493                 unsigned int fmt)
494 {
495         struct snd_soc_codec *codec = codec_dai->codec;
496         u8 dac_mode = ES8328_DACCONTROL1_DACWL_16;
497         u8 adc_mode = ES8328_ADCCONTROL4_ADCWL_16;
498
499         /* set master/slave audio interface */
500         if ((fmt & SND_SOC_DAIFMT_MASTER_MASK) != SND_SOC_DAIFMT_CBM_CFM)
501                 return -EINVAL;
502
503         /* interface format */
504         switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
505         case SND_SOC_DAIFMT_I2S:
506                 dac_mode |= ES8328_DACCONTROL1_DACFORMAT_I2S;
507                 adc_mode |= ES8328_ADCCONTROL4_ADCFORMAT_I2S;
508                 break;
509         case SND_SOC_DAIFMT_RIGHT_J:
510                 dac_mode |= ES8328_DACCONTROL1_DACFORMAT_RJUST;
511                 adc_mode |= ES8328_ADCCONTROL4_ADCFORMAT_RJUST;
512                 break;
513         case SND_SOC_DAIFMT_LEFT_J:
514                 dac_mode |= ES8328_DACCONTROL1_DACFORMAT_LJUST;
515                 adc_mode |= ES8328_ADCCONTROL4_ADCFORMAT_LJUST;
516                 break;
517         default:
518                 return -EINVAL;
519         }
520
521         /* clock inversion */
522         if ((fmt & SND_SOC_DAIFMT_INV_MASK) != SND_SOC_DAIFMT_NB_NF)
523                 return -EINVAL;
524
525         snd_soc_write(codec, ES8328_DACCONTROL1, dac_mode);
526         snd_soc_write(codec, ES8328_ADCCONTROL4, adc_mode);
527
528         /* Master serial port mode, with BCLK generated automatically */
529         snd_soc_update_bits(codec, ES8328_MASTERMODE,
530                         ES8328_MASTERMODE_MSC, ES8328_MASTERMODE_MSC);
531
532         return 0;
533 }
534
535 static int es8328_set_bias_level(struct snd_soc_codec *codec,
536                                  enum snd_soc_bias_level level)
537 {
538         switch (level) {
539         case SND_SOC_BIAS_ON:
540                 break;
541
542         case SND_SOC_BIAS_PREPARE:
543                 /* VREF, VMID=2x50k, digital enabled */
544                 snd_soc_write(codec, ES8328_CHIPPOWER, 0);
545                 snd_soc_update_bits(codec, ES8328_CONTROL1,
546                                 ES8328_CONTROL1_VMIDSEL_MASK |
547                                 ES8328_CONTROL1_ENREF,
548                                 ES8328_CONTROL1_VMIDSEL_50k |
549                                 ES8328_CONTROL1_ENREF);
550                 break;
551
552         case SND_SOC_BIAS_STANDBY:
553                 if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF) {
554                         snd_soc_update_bits(codec, ES8328_CONTROL1,
555                                         ES8328_CONTROL1_VMIDSEL_MASK |
556                                         ES8328_CONTROL1_ENREF,
557                                         ES8328_CONTROL1_VMIDSEL_5k |
558                                         ES8328_CONTROL1_ENREF);
559
560                         /* Charge caps */
561                         msleep(100);
562                 }
563
564                 snd_soc_write(codec, ES8328_CONTROL2,
565                                 ES8328_CONTROL2_OVERCURRENT_ON |
566                                 ES8328_CONTROL2_THERMAL_SHUTDOWN_ON);
567
568                 /* VREF, VMID=2*500k, digital stopped */
569                 snd_soc_update_bits(codec, ES8328_CONTROL1,
570                                 ES8328_CONTROL1_VMIDSEL_MASK |
571                                 ES8328_CONTROL1_ENREF,
572                                 ES8328_CONTROL1_VMIDSEL_500k |
573                                 ES8328_CONTROL1_ENREF);
574                 break;
575
576         case SND_SOC_BIAS_OFF:
577                 snd_soc_update_bits(codec, ES8328_CONTROL1,
578                                 ES8328_CONTROL1_VMIDSEL_MASK |
579                                 ES8328_CONTROL1_ENREF,
580                                 0);
581                 break;
582         }
583         return 0;
584 }
585
586 static const struct snd_soc_dai_ops es8328_dai_ops = {
587         .hw_params      = es8328_hw_params,
588         .digital_mute   = es8328_mute,
589         .set_fmt        = es8328_set_dai_fmt,
590 };
591
592 static struct snd_soc_dai_driver es8328_dai = {
593         .name = "es8328-hifi-analog",
594         .playback = {
595                 .stream_name = "Playback",
596                 .channels_min = 2,
597                 .channels_max = 2,
598                 .rates = ES8328_RATES,
599                 .formats = ES8328_FORMATS,
600         },
601         .capture = {
602                 .stream_name = "Capture",
603                 .channels_min = 2,
604                 .channels_max = 2,
605                 .rates = ES8328_RATES,
606                 .formats = ES8328_FORMATS,
607         },
608         .ops = &es8328_dai_ops,
609 };
610
611 static int es8328_suspend(struct snd_soc_codec *codec)
612 {
613         struct es8328_priv *es8328;
614         int ret;
615
616         es8328 = snd_soc_codec_get_drvdata(codec);
617
618         clk_disable_unprepare(es8328->clk);
619
620         ret = regulator_bulk_disable(ARRAY_SIZE(es8328->supplies),
621                         es8328->supplies);
622         if (ret) {
623                 dev_err(codec->dev, "unable to disable regulators\n");
624                 return ret;
625         }
626         return 0;
627 }
628
629 static int es8328_resume(struct snd_soc_codec *codec)
630 {
631         struct regmap *regmap = dev_get_regmap(codec->dev, NULL);
632         struct es8328_priv *es8328;
633         int ret;
634
635         es8328 = snd_soc_codec_get_drvdata(codec);
636
637         ret = clk_prepare_enable(es8328->clk);
638         if (ret) {
639                 dev_err(codec->dev, "unable to enable clock\n");
640                 return ret;
641         }
642
643         ret = regulator_bulk_enable(ARRAY_SIZE(es8328->supplies),
644                                         es8328->supplies);
645         if (ret) {
646                 dev_err(codec->dev, "unable to enable regulators\n");
647                 return ret;
648         }
649
650         regcache_mark_dirty(regmap);
651         ret = regcache_sync(regmap);
652         if (ret) {
653                 dev_err(codec->dev, "unable to sync regcache\n");
654                 return ret;
655         }
656
657         return 0;
658 }
659
660 static int es8328_codec_probe(struct snd_soc_codec *codec)
661 {
662         struct es8328_priv *es8328;
663         int ret;
664
665         es8328 = snd_soc_codec_get_drvdata(codec);
666
667         ret = regulator_bulk_enable(ARRAY_SIZE(es8328->supplies),
668                                         es8328->supplies);
669         if (ret) {
670                 dev_err(codec->dev, "unable to enable regulators\n");
671                 return ret;
672         }
673
674         /* Setup clocks */
675         es8328->clk = devm_clk_get(codec->dev, NULL);
676         if (IS_ERR(es8328->clk)) {
677                 dev_err(codec->dev, "codec clock missing or invalid\n");
678                 ret = PTR_ERR(es8328->clk);
679                 goto clk_fail;
680         }
681
682         ret = clk_prepare_enable(es8328->clk);
683         if (ret) {
684                 dev_err(codec->dev, "unable to prepare codec clk\n");
685                 goto clk_fail;
686         }
687
688         return 0;
689
690 clk_fail:
691         regulator_bulk_disable(ARRAY_SIZE(es8328->supplies),
692                                es8328->supplies);
693         return ret;
694 }
695
696 static int es8328_remove(struct snd_soc_codec *codec)
697 {
698         struct es8328_priv *es8328;
699
700         es8328 = snd_soc_codec_get_drvdata(codec);
701
702         if (es8328->clk)
703                 clk_disable_unprepare(es8328->clk);
704
705         regulator_bulk_disable(ARRAY_SIZE(es8328->supplies),
706                                es8328->supplies);
707
708         return 0;
709 }
710
711 const struct regmap_config es8328_regmap_config = {
712         .reg_bits       = 8,
713         .val_bits       = 8,
714         .max_register   = ES8328_REG_MAX,
715         .cache_type     = REGCACHE_RBTREE,
716         .use_single_rw  = true,
717 };
718 EXPORT_SYMBOL_GPL(es8328_regmap_config);
719
720 static struct snd_soc_codec_driver es8328_codec_driver = {
721         .probe            = es8328_codec_probe,
722         .suspend          = es8328_suspend,
723         .resume           = es8328_resume,
724         .remove           = es8328_remove,
725         .set_bias_level   = es8328_set_bias_level,
726         .suspend_bias_off = true,
727
728         .controls         = es8328_snd_controls,
729         .num_controls     = ARRAY_SIZE(es8328_snd_controls),
730         .dapm_widgets     = es8328_dapm_widgets,
731         .num_dapm_widgets = ARRAY_SIZE(es8328_dapm_widgets),
732         .dapm_routes      = es8328_dapm_routes,
733         .num_dapm_routes  = ARRAY_SIZE(es8328_dapm_routes),
734 };
735
736 int es8328_probe(struct device *dev, struct regmap *regmap)
737 {
738         struct es8328_priv *es8328;
739         int ret;
740         int i;
741
742         if (IS_ERR(regmap))
743                 return PTR_ERR(regmap);
744
745         es8328 = devm_kzalloc(dev, sizeof(*es8328), GFP_KERNEL);
746         if (es8328 == NULL)
747                 return -ENOMEM;
748
749         es8328->regmap = regmap;
750
751         for (i = 0; i < ARRAY_SIZE(es8328->supplies); i++)
752                 es8328->supplies[i].supply = supply_names[i];
753
754         ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(es8328->supplies),
755                                 es8328->supplies);
756         if (ret) {
757                 dev_err(dev, "unable to get regulators\n");
758                 return ret;
759         }
760
761         dev_set_drvdata(dev, es8328);
762
763         return snd_soc_register_codec(dev,
764                         &es8328_codec_driver, &es8328_dai, 1);
765 }
766 EXPORT_SYMBOL_GPL(es8328_probe);
767
768 MODULE_DESCRIPTION("ASoC ES8328 driver");
769 MODULE_AUTHOR("Sean Cross <xobs@kosagi.com>");
770 MODULE_LICENSE("GPL");