Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * Copyright 2014 Emilio López <emilio@elopez.com.ar>
  3 * Copyright 2014 Jon Smirl <jonsmirl@gmail.com>
  4 * Copyright 2015 Maxime Ripard <maxime.ripard@free-electrons.com>
  5 * Copyright 2015 Adam Sampson <ats@offog.org>
 
  6 *
  7 * Based on the Allwinner SDK driver, released under the GPL.
  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 as published by
 11 * the Free Software Foundation; either version 2 of the License, or
 12 * (at your option) any later version.
 13 *
 14 * This program is distributed in the hope that it will be useful,
 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 17 * GNU General Public License for more details.
 18 */
 19
 20#include <linux/init.h>
 21#include <linux/kernel.h>
 22#include <linux/module.h>
 23#include <linux/platform_device.h>
 24#include <linux/delay.h>
 25#include <linux/slab.h>
 26#include <linux/of.h>
 27#include <linux/of_platform.h>
 28#include <linux/of_address.h>
 
 
 29#include <linux/clk.h>
 30#include <linux/regmap.h>
 
 31#include <linux/gpio/consumer.h>
 32
 33#include <sound/core.h>
 34#include <sound/pcm.h>
 35#include <sound/pcm_params.h>
 36#include <sound/soc.h>
 37#include <sound/tlv.h>
 38#include <sound/initval.h>
 39#include <sound/dmaengine_pcm.h>
 40
 41/* Codec DAC register offsets and bit fields */
 42#define SUN4I_CODEC_DAC_DPC			(0x00)
 43#define SUN4I_CODEC_DAC_DPC_EN_DA			(31)
 44#define SUN4I_CODEC_DAC_DPC_DVOL			(12)
 45#define SUN4I_CODEC_DAC_FIFOC			(0x04)
 46#define SUN4I_CODEC_DAC_FIFOC_DAC_FS			(29)
 47#define SUN4I_CODEC_DAC_FIFOC_FIR_VERSION		(28)
 48#define SUN4I_CODEC_DAC_FIFOC_SEND_LASAT		(26)
 49#define SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE		(24)
 50#define SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT		(21)
 51#define SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL		(8)
 52#define SUN4I_CODEC_DAC_FIFOC_MONO_EN			(6)
 53#define SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS		(5)
 54#define SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN		(4)
 55#define SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH		(0)
 56#define SUN4I_CODEC_DAC_FIFOS			(0x08)
 57#define SUN4I_CODEC_DAC_TXDATA			(0x0c)
 
 
 58#define SUN4I_CODEC_DAC_ACTL			(0x10)
 59#define SUN4I_CODEC_DAC_ACTL_DACAENR			(31)
 60#define SUN4I_CODEC_DAC_ACTL_DACAENL			(30)
 61#define SUN4I_CODEC_DAC_ACTL_MIXEN			(29)
 
 
 
 
 
 
 
 62#define SUN4I_CODEC_DAC_ACTL_LDACLMIXS			(15)
 63#define SUN4I_CODEC_DAC_ACTL_RDACRMIXS			(14)
 64#define SUN4I_CODEC_DAC_ACTL_LDACRMIXS			(13)
 
 
 
 
 65#define SUN4I_CODEC_DAC_ACTL_DACPAS			(8)
 66#define SUN4I_CODEC_DAC_ACTL_MIXPAS			(7)
 67#define SUN4I_CODEC_DAC_ACTL_PA_MUTE			(6)
 68#define SUN4I_CODEC_DAC_ACTL_PA_VOL			(0)
 69#define SUN4I_CODEC_DAC_TUNE			(0x14)
 70#define SUN4I_CODEC_DAC_DEBUG			(0x18)
 71
 72/* Codec ADC register offsets and bit fields */
 73#define SUN4I_CODEC_ADC_FIFOC			(0x1c)
 74#define SUN4I_CODEC_ADC_FIFOC_ADC_FS			(29)
 75#define SUN4I_CODEC_ADC_FIFOC_EN_AD			(28)
 76#define SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE		(24)
 77#define SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL		(8)
 78#define SUN4I_CODEC_ADC_FIFOC_MONO_EN			(7)
 79#define SUN4I_CODEC_ADC_FIFOC_RX_SAMPLE_BITS		(6)
 80#define SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN		(4)
 81#define SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH		(0)
 82#define SUN4I_CODEC_ADC_FIFOS			(0x20)
 83#define SUN4I_CODEC_ADC_RXDATA			(0x24)
 
 
 84#define SUN4I_CODEC_ADC_ACTL			(0x28)
 85#define SUN4I_CODEC_ADC_ACTL_ADC_R_EN			(31)
 86#define SUN4I_CODEC_ADC_ACTL_ADC_L_EN			(30)
 87#define SUN4I_CODEC_ADC_ACTL_PREG1EN			(29)
 88#define SUN4I_CODEC_ADC_ACTL_PREG2EN			(28)
 89#define SUN4I_CODEC_ADC_ACTL_VMICEN			(27)
 
 
 90#define SUN4I_CODEC_ADC_ACTL_VADCG			(20)
 91#define SUN4I_CODEC_ADC_ACTL_ADCIS			(17)
 
 92#define SUN4I_CODEC_ADC_ACTL_PA_EN			(4)
 93#define SUN4I_CODEC_ADC_ACTL_DDE			(3)
 94#define SUN4I_CODEC_ADC_DEBUG			(0x2c)
 95
 96/* Other various ADC registers */
 97#define SUN4I_CODEC_DAC_TXCNT			(0x30)
 98#define SUN4I_CODEC_ADC_RXCNT			(0x34)
 99#define SUN4I_CODEC_AC_SYS_VERI			(0x38)
100#define SUN4I_CODEC_AC_MIC_PHONE_CAL		(0x3c)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
102struct sun4i_codec {
103	struct device	*dev;
104	struct regmap	*regmap;
105	struct clk	*clk_apb;
106	struct clk	*clk_module;
 
107	struct gpio_desc *gpio_pa;
108
 
 
 
109	struct snd_dmaengine_dai_dma_data	capture_dma_data;
110	struct snd_dmaengine_dai_dma_data	playback_dma_data;
111};
112
113static void sun4i_codec_start_playback(struct sun4i_codec *scodec)
114{
115	/* Flush TX FIFO */
116	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
117			   BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH),
118			   BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH));
119
120	/* Enable DAC DRQ */
121	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
122			   BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN),
123			   BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN));
124}
125
126static void sun4i_codec_stop_playback(struct sun4i_codec *scodec)
127{
128	/* Disable DAC DRQ */
129	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
130			   BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN),
131			   0);
132}
133
134static void sun4i_codec_start_capture(struct sun4i_codec *scodec)
135{
136	/* Enable ADC DRQ */
137	regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
138			   BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN),
139			   BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN));
140}
141
142static void sun4i_codec_stop_capture(struct sun4i_codec *scodec)
143{
144	/* Disable ADC DRQ */
145	regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
146			   BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN), 0);
147}
148
149static int sun4i_codec_trigger(struct snd_pcm_substream *substream, int cmd,
150			       struct snd_soc_dai *dai)
151{
152	struct snd_soc_pcm_runtime *rtd = substream->private_data;
153	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
154
155	switch (cmd) {
156	case SNDRV_PCM_TRIGGER_START:
157	case SNDRV_PCM_TRIGGER_RESUME:
158	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
159		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
160			sun4i_codec_start_playback(scodec);
161		else
162			sun4i_codec_start_capture(scodec);
163		break;
164
165	case SNDRV_PCM_TRIGGER_STOP:
166	case SNDRV_PCM_TRIGGER_SUSPEND:
167	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
168		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
169			sun4i_codec_stop_playback(scodec);
170		else
171			sun4i_codec_stop_capture(scodec);
172		break;
173
174	default:
175		return -EINVAL;
176	}
177
178	return 0;
179}
180
181static int sun4i_codec_prepare_capture(struct snd_pcm_substream *substream,
182				       struct snd_soc_dai *dai)
183{
184	struct snd_soc_pcm_runtime *rtd = substream->private_data;
185	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
186
187
188	/* Flush RX FIFO */
189	regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
190			   BIT(SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH),
191			   BIT(SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH));
192
193
194	/* Set RX FIFO trigger level */
195	regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
196			   0xf << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL,
197			   0x7 << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL);
198
199	/*
200	 * FIXME: Undocumented in the datasheet, but
201	 *        Allwinner's code mentions that it is related
202	 *        related to microphone gain
203	 */
204	regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_ACTL,
205			   0x3 << 25,
206			   0x1 << 25);
 
 
 
 
 
207
208	if (of_device_is_compatible(scodec->dev->of_node,
209				    "allwinner,sun7i-a20-codec"))
210		/* FIXME: Undocumented bits */
211		regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_TUNE,
212				   0x3 << 8,
213				   0x1 << 8);
214
215	/* Fill most significant bits with valid data MSB */
216	regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
217			   BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE),
218			   BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE));
219
220	return 0;
221}
222
223static int sun4i_codec_prepare_playback(struct snd_pcm_substream *substream,
224					struct snd_soc_dai *dai)
225{
226	struct snd_soc_pcm_runtime *rtd = substream->private_data;
227	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
228	u32 val;
229
230	/* Flush the TX FIFO */
231	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
232			   BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH),
233			   BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH));
234
235	/* Set TX FIFO Empty Trigger Level */
236	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
237			   0x3f << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL,
238			   0xf << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL);
239
240	if (substream->runtime->rate > 32000)
241		/* Use 64 bits FIR filter */
242		val = 0;
243	else
244		/* Use 32 bits FIR filter */
245		val = BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION);
246
247	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
248			   BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION),
249			   val);
250
251	/* Send zeros when we have an underrun */
252	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
253			   BIT(SUN4I_CODEC_DAC_FIFOC_SEND_LASAT),
254			   0);
255
256	return 0;
257};
258
259static int sun4i_codec_prepare(struct snd_pcm_substream *substream,
260			       struct snd_soc_dai *dai)
261{
262	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
263		return sun4i_codec_prepare_playback(substream, dai);
264
265	return sun4i_codec_prepare_capture(substream, dai);
266}
267
268static unsigned long sun4i_codec_get_mod_freq(struct snd_pcm_hw_params *params)
269{
270	unsigned int rate = params_rate(params);
271
272	switch (rate) {
273	case 176400:
274	case 88200:
275	case 44100:
276	case 33075:
277	case 22050:
278	case 14700:
279	case 11025:
280	case 7350:
281		return 22579200;
282
283	case 192000:
284	case 96000:
285	case 48000:
286	case 32000:
287	case 24000:
288	case 16000:
289	case 12000:
290	case 8000:
291		return 24576000;
292
293	default:
294		return 0;
295	}
296}
297
298static int sun4i_codec_get_hw_rate(struct snd_pcm_hw_params *params)
299{
300	unsigned int rate = params_rate(params);
301
302	switch (rate) {
303	case 192000:
304	case 176400:
305		return 6;
306
307	case 96000:
308	case 88200:
309		return 7;
310
311	case 48000:
312	case 44100:
313		return 0;
314
315	case 32000:
316	case 33075:
317		return 1;
318
319	case 24000:
320	case 22050:
321		return 2;
322
323	case 16000:
324	case 14700:
325		return 3;
326
327	case 12000:
328	case 11025:
329		return 4;
330
331	case 8000:
332	case 7350:
333		return 5;
334
335	default:
336		return -EINVAL;
337	}
338}
339
340static int sun4i_codec_hw_params_capture(struct sun4i_codec *scodec,
341					 struct snd_pcm_hw_params *params,
342					 unsigned int hwrate)
343{
344	/* Set ADC sample rate */
345	regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
346			   7 << SUN4I_CODEC_ADC_FIFOC_ADC_FS,
347			   hwrate << SUN4I_CODEC_ADC_FIFOC_ADC_FS);
348
349	/* Set the number of channels we want to use */
350	if (params_channels(params) == 1)
351		regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
352				   BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN),
353				   BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN));
354	else
355		regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC,
356				   BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN), 0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
358	return 0;
359}
360
361static int sun4i_codec_hw_params_playback(struct sun4i_codec *scodec,
362					  struct snd_pcm_hw_params *params,
363					  unsigned int hwrate)
364{
365	u32 val;
366
367	/* Set DAC sample rate */
368	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
369			   7 << SUN4I_CODEC_DAC_FIFOC_DAC_FS,
370			   hwrate << SUN4I_CODEC_DAC_FIFOC_DAC_FS);
371
372	/* Set the number of channels we want to use */
373	if (params_channels(params) == 1)
374		val = BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN);
375	else
376		val = 0;
377
378	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
379			   BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN),
380			   val);
381
382	/* Set the number of sample bits to either 16 or 24 bits */
383	if (hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS)->min == 32) {
384		regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
385				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS),
386				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS));
387
388		/* Set TX FIFO mode to padding the LSBs with 0 */
389		regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
390				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE),
391				   0);
392
393		scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
394	} else {
395		regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
396				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS),
397				   0);
398
399		/* Set TX FIFO mode to repeat the MSB */
400		regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
401				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE),
402				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE));
403
404		scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
405	}
406
407	return 0;
408}
409
410static int sun4i_codec_hw_params(struct snd_pcm_substream *substream,
411				 struct snd_pcm_hw_params *params,
412				 struct snd_soc_dai *dai)
413{
414	struct snd_soc_pcm_runtime *rtd = substream->private_data;
415	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
416	unsigned long clk_freq;
417	int ret, hwrate;
418
419	clk_freq = sun4i_codec_get_mod_freq(params);
420	if (!clk_freq)
421		return -EINVAL;
422
423	ret = clk_set_rate(scodec->clk_module, clk_freq);
424	if (ret)
425		return ret;
426
427	hwrate = sun4i_codec_get_hw_rate(params);
428	if (hwrate < 0)
429		return hwrate;
430
431	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
432		return sun4i_codec_hw_params_playback(scodec, params,
433						      hwrate);
434
435	return sun4i_codec_hw_params_capture(scodec, params,
436					     hwrate);
437}
438
 
 
 
 
 
 
 
 
 
 
 
 
 
439static int sun4i_codec_startup(struct snd_pcm_substream *substream,
440			       struct snd_soc_dai *dai)
441{
442	struct snd_soc_pcm_runtime *rtd = substream->private_data;
443	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
444
 
 
 
445	/*
446	 * Stop issuing DRQ when we have room for less than 16 samples
447	 * in our TX FIFO
448	 */
449	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
450			   3 << SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT,
451			   3 << SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT);
452
453	return clk_prepare_enable(scodec->clk_module);
454}
455
456static void sun4i_codec_shutdown(struct snd_pcm_substream *substream,
457				 struct snd_soc_dai *dai)
458{
459	struct snd_soc_pcm_runtime *rtd = substream->private_data;
460	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
461
462	clk_disable_unprepare(scodec->clk_module);
463}
464
465static const struct snd_soc_dai_ops sun4i_codec_dai_ops = {
466	.startup	= sun4i_codec_startup,
467	.shutdown	= sun4i_codec_shutdown,
468	.trigger	= sun4i_codec_trigger,
469	.hw_params	= sun4i_codec_hw_params,
470	.prepare	= sun4i_codec_prepare,
471};
472
473static struct snd_soc_dai_driver sun4i_codec_dai = {
474	.name	= "Codec",
475	.ops	= &sun4i_codec_dai_ops,
476	.playback = {
477		.stream_name	= "Codec Playback",
478		.channels_min	= 1,
479		.channels_max	= 2,
480		.rate_min	= 8000,
481		.rate_max	= 192000,
482		.rates		= SNDRV_PCM_RATE_8000_48000 |
483				  SNDRV_PCM_RATE_96000 |
484				  SNDRV_PCM_RATE_192000,
485		.formats	= SNDRV_PCM_FMTBIT_S16_LE |
486				  SNDRV_PCM_FMTBIT_S32_LE,
487		.sig_bits	= 24,
488	},
489	.capture = {
490		.stream_name	= "Codec Capture",
491		.channels_min	= 1,
492		.channels_max	= 2,
493		.rate_min	= 8000,
494		.rate_max	= 192000,
495		.rates		= SNDRV_PCM_RATE_8000_48000 |
496				  SNDRV_PCM_RATE_96000 |
497				  SNDRV_PCM_RATE_192000 |
498				  SNDRV_PCM_RATE_KNOT,
499		.formats	= SNDRV_PCM_FMTBIT_S16_LE |
500				  SNDRV_PCM_FMTBIT_S32_LE,
501		.sig_bits	= 24,
502	},
503};
504
505/*** Codec ***/
506static const struct snd_kcontrol_new sun4i_codec_pa_mute =
507	SOC_DAPM_SINGLE("Switch", SUN4I_CODEC_DAC_ACTL,
508			SUN4I_CODEC_DAC_ACTL_PA_MUTE, 1, 0);
509
510static DECLARE_TLV_DB_SCALE(sun4i_codec_pa_volume_scale, -6300, 100, 1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
512static const struct snd_kcontrol_new sun4i_codec_widgets[] = {
513	SOC_SINGLE_TLV("Power Amplifier Volume", SUN4I_CODEC_DAC_ACTL,
514		       SUN4I_CODEC_DAC_ACTL_PA_VOL, 0x3F, 0,
515		       sun4i_codec_pa_volume_scale),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
516};
517
518static const struct snd_kcontrol_new sun4i_codec_left_mixer_controls[] = {
519	SOC_DAPM_SINGLE("Left DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
520			SUN4I_CODEC_DAC_ACTL_LDACLMIXS, 1, 0),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
521};
522
523static const struct snd_kcontrol_new sun4i_codec_right_mixer_controls[] = {
524	SOC_DAPM_SINGLE("Right DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
525			SUN4I_CODEC_DAC_ACTL_RDACRMIXS, 1, 0),
526	SOC_DAPM_SINGLE("Left DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
 
 
 
 
 
527			SUN4I_CODEC_DAC_ACTL_LDACRMIXS, 1, 0),
 
 
 
 
 
 
 
 
 
 
 
 
528};
529
530static const struct snd_kcontrol_new sun4i_codec_pa_mixer_controls[] = {
531	SOC_DAPM_SINGLE("DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
532			SUN4I_CODEC_DAC_ACTL_DACPAS, 1, 0),
533	SOC_DAPM_SINGLE("Mixer Playback Switch", SUN4I_CODEC_DAC_ACTL,
534			SUN4I_CODEC_DAC_ACTL_MIXPAS, 1, 0),
535};
536
537static const struct snd_soc_dapm_widget sun4i_codec_codec_dapm_widgets[] = {
538	/* Digital parts of the ADCs */
539	SND_SOC_DAPM_SUPPLY("ADC", SUN4I_CODEC_ADC_FIFOC,
540			    SUN4I_CODEC_ADC_FIFOC_EN_AD, 0,
541			    NULL, 0),
542
543	/* Digital parts of the DACs */
544	SND_SOC_DAPM_SUPPLY("DAC", SUN4I_CODEC_DAC_DPC,
545			    SUN4I_CODEC_DAC_DPC_EN_DA, 0,
546			    NULL, 0),
547
548	/* Analog parts of the ADCs */
549	SND_SOC_DAPM_ADC("Left ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL,
550			 SUN4I_CODEC_ADC_ACTL_ADC_L_EN, 0),
551	SND_SOC_DAPM_ADC("Right ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL,
552			 SUN4I_CODEC_ADC_ACTL_ADC_R_EN, 0),
553
554	/* Analog parts of the DACs */
555	SND_SOC_DAPM_DAC("Left DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL,
556			 SUN4I_CODEC_DAC_ACTL_DACAENL, 0),
557	SND_SOC_DAPM_DAC("Right DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL,
558			 SUN4I_CODEC_DAC_ACTL_DACAENR, 0),
559
560	/* Mixers */
561	SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0,
562			   sun4i_codec_left_mixer_controls,
563			   ARRAY_SIZE(sun4i_codec_left_mixer_controls)),
564	SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0,
565			   sun4i_codec_right_mixer_controls,
566			   ARRAY_SIZE(sun4i_codec_right_mixer_controls)),
567
568	/* Global Mixer Enable */
569	SND_SOC_DAPM_SUPPLY("Mixer Enable", SUN4I_CODEC_DAC_ACTL,
570			    SUN4I_CODEC_DAC_ACTL_MIXEN, 0, NULL, 0),
571
572	/* VMIC */
573	SND_SOC_DAPM_SUPPLY("VMIC", SUN4I_CODEC_ADC_ACTL,
574			    SUN4I_CODEC_ADC_ACTL_VMICEN, 0, NULL, 0),
575
576	/* Mic Pre-Amplifiers */
577	SND_SOC_DAPM_PGA("MIC1 Pre-Amplifier", SUN4I_CODEC_ADC_ACTL,
578			 SUN4I_CODEC_ADC_ACTL_PREG1EN, 0, NULL, 0),
 
 
579
580	/* Power Amplifier */
581	SND_SOC_DAPM_MIXER("Power Amplifier", SUN4I_CODEC_ADC_ACTL,
582			   SUN4I_CODEC_ADC_ACTL_PA_EN, 0,
583			   sun4i_codec_pa_mixer_controls,
584			   ARRAY_SIZE(sun4i_codec_pa_mixer_controls)),
585	SND_SOC_DAPM_SWITCH("Power Amplifier Mute", SND_SOC_NOPM, 0, 0,
586			    &sun4i_codec_pa_mute),
587
 
 
 
 
588	SND_SOC_DAPM_INPUT("Mic1"),
 
589
590	SND_SOC_DAPM_OUTPUT("HP Right"),
591	SND_SOC_DAPM_OUTPUT("HP Left"),
592};
593
594static const struct snd_soc_dapm_route sun4i_codec_codec_dapm_routes[] = {
595	/* Left ADC / DAC Routes */
596	{ "Left ADC", NULL, "ADC" },
597	{ "Left DAC", NULL, "DAC" },
598
599	/* Right ADC / DAC Routes */
600	{ "Right ADC", NULL, "ADC" },
601	{ "Right DAC", NULL, "DAC" },
602
603	/* Right Mixer Routes */
604	{ "Right Mixer", NULL, "Mixer Enable" },
605	{ "Right Mixer", "Left DAC Playback Switch", "Left DAC" },
606	{ "Right Mixer", "Right DAC Playback Switch", "Right DAC" },
 
 
 
 
607
608	/* Left Mixer Routes */
609	{ "Left Mixer", NULL, "Mixer Enable" },
610	{ "Left Mixer", "Left DAC Playback Switch", "Left DAC" },
 
 
 
 
611
612	/* Power Amplifier Routes */
613	{ "Power Amplifier", "Mixer Playback Switch", "Left Mixer" },
614	{ "Power Amplifier", "Mixer Playback Switch", "Right Mixer" },
615	{ "Power Amplifier", "DAC Playback Switch", "Left DAC" },
616	{ "Power Amplifier", "DAC Playback Switch", "Right DAC" },
617
618	/* Headphone Output Routes */
619	{ "Power Amplifier Mute", "Switch", "Power Amplifier" },
620	{ "HP Right", NULL, "Power Amplifier Mute" },
621	{ "HP Left", NULL, "Power Amplifier Mute" },
622
623	/* Mic1 Routes */
624	{ "Left ADC", NULL, "MIC1 Pre-Amplifier" },
625	{ "Right ADC", NULL, "MIC1 Pre-Amplifier" },
626	{ "MIC1 Pre-Amplifier", NULL, "Mic1"},
627	{ "Mic1", NULL, "VMIC" },
 
 
 
 
 
 
628};
629
630static struct snd_soc_codec_driver sun4i_codec_codec = {
631	.controls		= sun4i_codec_widgets,
632	.num_controls		= ARRAY_SIZE(sun4i_codec_widgets),
633	.dapm_widgets		= sun4i_codec_codec_dapm_widgets,
634	.num_dapm_widgets	= ARRAY_SIZE(sun4i_codec_codec_dapm_widgets),
635	.dapm_routes		= sun4i_codec_codec_dapm_routes,
636	.num_dapm_routes	= ARRAY_SIZE(sun4i_codec_codec_dapm_routes),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637};
638
639static const struct snd_soc_component_driver sun4i_codec_component = {
640	.name = "sun4i-codec",
 
 
 
 
641};
642
643#define SUN4I_CODEC_RATES	SNDRV_PCM_RATE_8000_192000
644#define SUN4I_CODEC_FORMATS	(SNDRV_PCM_FMTBIT_S16_LE | \
645				 SNDRV_PCM_FMTBIT_S32_LE)
646
647static int sun4i_codec_dai_probe(struct snd_soc_dai *dai)
648{
649	struct snd_soc_card *card = snd_soc_dai_get_drvdata(dai);
650	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card);
651
652	snd_soc_dai_init_dma_data(dai, &scodec->playback_dma_data,
653				  &scodec->capture_dma_data);
654
655	return 0;
656}
657
658static struct snd_soc_dai_driver dummy_cpu_dai = {
659	.name	= "sun4i-codec-cpu-dai",
660	.probe	= sun4i_codec_dai_probe,
661	.playback = {
662		.stream_name	= "Playback",
663		.channels_min	= 1,
664		.channels_max	= 2,
665		.rates		= SUN4I_CODEC_RATES,
666		.formats	= SUN4I_CODEC_FORMATS,
667		.sig_bits	= 24,
668	},
669	.capture = {
670		.stream_name	= "Capture",
671		.channels_min	= 1,
672		.channels_max	= 2,
673		.rates 		= SUN4I_CODEC_RATES,
674		.formats 	= SUN4I_CODEC_FORMATS,
675		.sig_bits	= 24,
676	 },
677};
678
679static const struct regmap_config sun4i_codec_regmap_config = {
680	.reg_bits	= 32,
681	.reg_stride	= 4,
682	.val_bits	= 32,
683	.max_register	= SUN4I_CODEC_AC_MIC_PHONE_CAL,
684};
685
686static const struct of_device_id sun4i_codec_of_match[] = {
687	{ .compatible = "allwinner,sun4i-a10-codec" },
688	{ .compatible = "allwinner,sun7i-a20-codec" },
689	{}
690};
691MODULE_DEVICE_TABLE(of, sun4i_codec_of_match);
692
693static struct snd_soc_dai_link *sun4i_codec_create_link(struct device *dev,
694							int *num_links)
695{
696	struct snd_soc_dai_link *link = devm_kzalloc(dev, sizeof(*link),
697						     GFP_KERNEL);
698	if (!link)
 
 
699		return NULL;
700
 
 
 
 
 
 
 
 
701	link->name		= "cdc";
702	link->stream_name	= "CDC PCM";
703	link->codec_dai_name	= "Codec";
704	link->cpu_dai_name	= dev_name(dev);
705	link->codec_name	= dev_name(dev);
706	link->platform_name	= dev_name(dev);
707	link->dai_fmt		= SND_SOC_DAIFMT_I2S;
708
709	*num_links = 1;
710
711	return link;
712};
713
714static int sun4i_codec_spk_event(struct snd_soc_dapm_widget *w,
715				 struct snd_kcontrol *k, int event)
716{
717	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(w->dapm->card);
718
719	if (scodec->gpio_pa)
720		gpiod_set_value_cansleep(scodec->gpio_pa,
721					 !!SND_SOC_DAPM_EVENT_ON(event));
 
 
 
 
 
 
 
 
722
723	return 0;
724}
725
726static const struct snd_soc_dapm_widget sun4i_codec_card_dapm_widgets[] = {
727	SND_SOC_DAPM_SPK("Speaker", sun4i_codec_spk_event),
728};
729
730static const struct snd_soc_dapm_route sun4i_codec_card_dapm_routes[] = {
731	{ "Speaker", NULL, "HP Right" },
732	{ "Speaker", NULL, "HP Left" },
733};
734
735static struct snd_soc_card *sun4i_codec_create_card(struct device *dev)
736{
737	struct snd_soc_card *card;
738
739	card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
740	if (!card)
741		return NULL;
742
743	card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
744	if (!card->dai_link)
745		return NULL;
746
747	card->dev		= dev;
 
748	card->name		= "sun4i-codec";
749	card->dapm_widgets	= sun4i_codec_card_dapm_widgets;
750	card->num_dapm_widgets	= ARRAY_SIZE(sun4i_codec_card_dapm_widgets);
751	card->dapm_routes	= sun4i_codec_card_dapm_routes;
752	card->num_dapm_routes	= ARRAY_SIZE(sun4i_codec_card_dapm_routes);
753
754	return card;
755};
756
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757static int sun4i_codec_probe(struct platform_device *pdev)
758{
759	struct snd_soc_card *card;
760	struct sun4i_codec *scodec;
 
761	struct resource *res;
762	void __iomem *base;
763	int ret;
764
765	scodec = devm_kzalloc(&pdev->dev, sizeof(*scodec), GFP_KERNEL);
766	if (!scodec)
767		return -ENOMEM;
768
769	scodec->dev = &pdev->dev;
770
771	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
772	base = devm_ioremap_resource(&pdev->dev, res);
773	if (IS_ERR(base)) {
774		dev_err(&pdev->dev, "Failed to map the registers\n");
775		return PTR_ERR(base);
 
 
 
 
 
776	}
777
778	scodec->regmap = devm_regmap_init_mmio(&pdev->dev, base,
779					     &sun4i_codec_regmap_config);
780	if (IS_ERR(scodec->regmap)) {
781		dev_err(&pdev->dev, "Failed to create our regmap\n");
782		return PTR_ERR(scodec->regmap);
783	}
784
785	/* Get the clocks from the DT */
786	scodec->clk_apb = devm_clk_get(&pdev->dev, "apb");
787	if (IS_ERR(scodec->clk_apb)) {
788		dev_err(&pdev->dev, "Failed to get the APB clock\n");
789		return PTR_ERR(scodec->clk_apb);
790	}
791
792	scodec->clk_module = devm_clk_get(&pdev->dev, "codec");
793	if (IS_ERR(scodec->clk_module)) {
794		dev_err(&pdev->dev, "Failed to get the module clock\n");
795		return PTR_ERR(scodec->clk_module);
796	}
797
798	/* Enable the bus clock */
799	if (clk_prepare_enable(scodec->clk_apb)) {
800		dev_err(&pdev->dev, "Failed to enable the APB clock\n");
801		return -EINVAL;
 
 
 
802	}
803
804	scodec->gpio_pa = devm_gpiod_get_optional(&pdev->dev, "allwinner,pa",
805						  GPIOD_OUT_LOW);
806	if (IS_ERR(scodec->gpio_pa)) {
807		ret = PTR_ERR(scodec->gpio_pa);
808		if (ret != -EPROBE_DEFER)
809			dev_err(&pdev->dev, "Failed to get pa gpio: %d\n", ret);
 
 
 
 
 
 
 
 
 
 
810		return ret;
811	}
812
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
813	/* DMA configuration for TX FIFO */
814	scodec->playback_dma_data.addr = res->start + SUN4I_CODEC_DAC_TXDATA;
815	scodec->playback_dma_data.maxburst = 4;
816	scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
817
818	/* DMA configuration for RX FIFO */
819	scodec->capture_dma_data.addr = res->start + SUN4I_CODEC_ADC_RXDATA;
820	scodec->capture_dma_data.maxburst = 4;
821	scodec->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
822
823	ret = snd_soc_register_codec(&pdev->dev, &sun4i_codec_codec,
824				     &sun4i_codec_dai, 1);
825	if (ret) {
826		dev_err(&pdev->dev, "Failed to register our codec\n");
827		goto err_clk_disable;
828	}
829
830	ret = devm_snd_soc_register_component(&pdev->dev,
831					      &sun4i_codec_component,
832					      &dummy_cpu_dai, 1);
833	if (ret) {
834		dev_err(&pdev->dev, "Failed to register our DAI\n");
835		goto err_unregister_codec;
836	}
837
838	ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
839	if (ret) {
840		dev_err(&pdev->dev, "Failed to register against DMAEngine\n");
841		goto err_unregister_codec;
842	}
843
844	card = sun4i_codec_create_card(&pdev->dev);
845	if (!card) {
 
846		dev_err(&pdev->dev, "Failed to create our card\n");
847		goto err_unregister_codec;
848	}
849
850	platform_set_drvdata(pdev, card);
851	snd_soc_card_set_drvdata(card, scodec);
852
853	ret = snd_soc_register_card(card);
854	if (ret) {
855		dev_err(&pdev->dev, "Failed to register our card\n");
856		goto err_unregister_codec;
857	}
858
859	return 0;
860
861err_unregister_codec:
862	snd_soc_unregister_codec(&pdev->dev);
 
863err_clk_disable:
864	clk_disable_unprepare(scodec->clk_apb);
865	return ret;
866}
867
868static int sun4i_codec_remove(struct platform_device *pdev)
869{
870	struct snd_soc_card *card = platform_get_drvdata(pdev);
871	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card);
872
873	snd_soc_unregister_card(card);
874	snd_soc_unregister_codec(&pdev->dev);
 
875	clk_disable_unprepare(scodec->clk_apb);
876
877	return 0;
878}
879
880static struct platform_driver sun4i_codec_driver = {
881	.driver = {
882		.name = "sun4i-codec",
883		.of_match_table = sun4i_codec_of_match,
884	},
885	.probe = sun4i_codec_probe,
886	.remove = sun4i_codec_remove,
887};
888module_platform_driver(sun4i_codec_driver);
889
890MODULE_DESCRIPTION("Allwinner A10 codec driver");
891MODULE_AUTHOR("Emilio López <emilio@elopez.com.ar>");
892MODULE_AUTHOR("Jon Smirl <jonsmirl@gmail.com>");
893MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
 
894MODULE_LICENSE("GPL");
v6.2
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * Copyright 2014 Emilio López <emilio@elopez.com.ar>
   4 * Copyright 2014 Jon Smirl <jonsmirl@gmail.com>
   5 * Copyright 2015 Maxime Ripard <maxime.ripard@free-electrons.com>
   6 * Copyright 2015 Adam Sampson <ats@offog.org>
   7 * Copyright 2016 Chen-Yu Tsai <wens@csie.org>
   8 *
   9 * Based on the Allwinner SDK driver, released under the GPL.
 
 
 
 
 
 
 
 
 
 
  10 */
  11
  12#include <linux/init.h>
  13#include <linux/kernel.h>
  14#include <linux/module.h>
  15#include <linux/platform_device.h>
  16#include <linux/delay.h>
  17#include <linux/slab.h>
  18#include <linux/of.h>
 
  19#include <linux/of_address.h>
  20#include <linux/of_device.h>
  21#include <linux/of_platform.h>
  22#include <linux/clk.h>
  23#include <linux/regmap.h>
  24#include <linux/reset.h>
  25#include <linux/gpio/consumer.h>
  26
  27#include <sound/core.h>
  28#include <sound/pcm.h>
  29#include <sound/pcm_params.h>
  30#include <sound/soc.h>
  31#include <sound/tlv.h>
  32#include <sound/initval.h>
  33#include <sound/dmaengine_pcm.h>
  34
  35/* Codec DAC digital controls and FIFO registers */
  36#define SUN4I_CODEC_DAC_DPC			(0x00)
  37#define SUN4I_CODEC_DAC_DPC_EN_DA			(31)
  38#define SUN4I_CODEC_DAC_DPC_DVOL			(12)
  39#define SUN4I_CODEC_DAC_FIFOC			(0x04)
  40#define SUN4I_CODEC_DAC_FIFOC_DAC_FS			(29)
  41#define SUN4I_CODEC_DAC_FIFOC_FIR_VERSION		(28)
  42#define SUN4I_CODEC_DAC_FIFOC_SEND_LASAT		(26)
  43#define SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE		(24)
  44#define SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT		(21)
  45#define SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL		(8)
  46#define SUN4I_CODEC_DAC_FIFOC_MONO_EN			(6)
  47#define SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS		(5)
  48#define SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN		(4)
  49#define SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH		(0)
  50#define SUN4I_CODEC_DAC_FIFOS			(0x08)
  51#define SUN4I_CODEC_DAC_TXDATA			(0x0c)
  52
  53/* Codec DAC side analog signal controls */
  54#define SUN4I_CODEC_DAC_ACTL			(0x10)
  55#define SUN4I_CODEC_DAC_ACTL_DACAENR			(31)
  56#define SUN4I_CODEC_DAC_ACTL_DACAENL			(30)
  57#define SUN4I_CODEC_DAC_ACTL_MIXEN			(29)
  58#define SUN4I_CODEC_DAC_ACTL_LNG			(26)
  59#define SUN4I_CODEC_DAC_ACTL_FMG			(23)
  60#define SUN4I_CODEC_DAC_ACTL_MICG			(20)
  61#define SUN4I_CODEC_DAC_ACTL_LLNS			(19)
  62#define SUN4I_CODEC_DAC_ACTL_RLNS			(18)
  63#define SUN4I_CODEC_DAC_ACTL_LFMS			(17)
  64#define SUN4I_CODEC_DAC_ACTL_RFMS			(16)
  65#define SUN4I_CODEC_DAC_ACTL_LDACLMIXS			(15)
  66#define SUN4I_CODEC_DAC_ACTL_RDACRMIXS			(14)
  67#define SUN4I_CODEC_DAC_ACTL_LDACRMIXS			(13)
  68#define SUN4I_CODEC_DAC_ACTL_MIC1LS			(12)
  69#define SUN4I_CODEC_DAC_ACTL_MIC1RS			(11)
  70#define SUN4I_CODEC_DAC_ACTL_MIC2LS			(10)
  71#define SUN4I_CODEC_DAC_ACTL_MIC2RS			(9)
  72#define SUN4I_CODEC_DAC_ACTL_DACPAS			(8)
  73#define SUN4I_CODEC_DAC_ACTL_MIXPAS			(7)
  74#define SUN4I_CODEC_DAC_ACTL_PA_MUTE			(6)
  75#define SUN4I_CODEC_DAC_ACTL_PA_VOL			(0)
  76#define SUN4I_CODEC_DAC_TUNE			(0x14)
  77#define SUN4I_CODEC_DAC_DEBUG			(0x18)
  78
  79/* Codec ADC digital controls and FIFO registers */
  80#define SUN4I_CODEC_ADC_FIFOC			(0x1c)
  81#define SUN4I_CODEC_ADC_FIFOC_ADC_FS			(29)
  82#define SUN4I_CODEC_ADC_FIFOC_EN_AD			(28)
  83#define SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE		(24)
  84#define SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL		(8)
  85#define SUN4I_CODEC_ADC_FIFOC_MONO_EN			(7)
  86#define SUN4I_CODEC_ADC_FIFOC_RX_SAMPLE_BITS		(6)
  87#define SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN		(4)
  88#define SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH		(0)
  89#define SUN4I_CODEC_ADC_FIFOS			(0x20)
  90#define SUN4I_CODEC_ADC_RXDATA			(0x24)
  91
  92/* Codec ADC side analog signal controls */
  93#define SUN4I_CODEC_ADC_ACTL			(0x28)
  94#define SUN4I_CODEC_ADC_ACTL_ADC_R_EN			(31)
  95#define SUN4I_CODEC_ADC_ACTL_ADC_L_EN			(30)
  96#define SUN4I_CODEC_ADC_ACTL_PREG1EN			(29)
  97#define SUN4I_CODEC_ADC_ACTL_PREG2EN			(28)
  98#define SUN4I_CODEC_ADC_ACTL_VMICEN			(27)
  99#define SUN4I_CODEC_ADC_ACTL_PREG1			(25)
 100#define SUN4I_CODEC_ADC_ACTL_PREG2			(23)
 101#define SUN4I_CODEC_ADC_ACTL_VADCG			(20)
 102#define SUN4I_CODEC_ADC_ACTL_ADCIS			(17)
 103#define SUN4I_CODEC_ADC_ACTL_LNPREG			(13)
 104#define SUN4I_CODEC_ADC_ACTL_PA_EN			(4)
 105#define SUN4I_CODEC_ADC_ACTL_DDE			(3)
 106#define SUN4I_CODEC_ADC_DEBUG			(0x2c)
 107
 108/* FIFO counters */
 109#define SUN4I_CODEC_DAC_TXCNT			(0x30)
 110#define SUN4I_CODEC_ADC_RXCNT			(0x34)
 111
 112/* Calibration register (sun7i only) */
 113#define SUN7I_CODEC_AC_DAC_CAL			(0x38)
 114
 115/* Microphone controls (sun7i only) */
 116#define SUN7I_CODEC_AC_MIC_PHONE_CAL		(0x3c)
 117
 118#define SUN7I_CODEC_AC_MIC_PHONE_CAL_PREG1		(29)
 119#define SUN7I_CODEC_AC_MIC_PHONE_CAL_PREG2		(26)
 120
 121/*
 122 * sun6i specific registers
 123 *
 124 * sun6i shares the same digital control and FIFO registers as sun4i,
 125 * but only the DAC digital controls are at the same offset. The others
 126 * have been moved around to accommodate extra analog controls.
 127 */
 128
 129/* Codec DAC digital controls and FIFO registers */
 130#define SUN6I_CODEC_ADC_FIFOC			(0x10)
 131#define SUN6I_CODEC_ADC_FIFOC_EN_AD			(28)
 132#define SUN6I_CODEC_ADC_FIFOS			(0x14)
 133#define SUN6I_CODEC_ADC_RXDATA			(0x18)
 134
 135/* Output mixer and gain controls */
 136#define SUN6I_CODEC_OM_DACA_CTRL		(0x20)
 137#define SUN6I_CODEC_OM_DACA_CTRL_DACAREN		(31)
 138#define SUN6I_CODEC_OM_DACA_CTRL_DACALEN		(30)
 139#define SUN6I_CODEC_OM_DACA_CTRL_RMIXEN			(29)
 140#define SUN6I_CODEC_OM_DACA_CTRL_LMIXEN			(28)
 141#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_MIC1		(23)
 142#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_MIC2		(22)
 143#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_PHONE		(21)
 144#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_PHONEP		(20)
 145#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_LINEINR		(19)
 146#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACR		(18)
 147#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACL		(17)
 148#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_MIC1		(16)
 149#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_MIC2		(15)
 150#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_PHONE		(14)
 151#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_PHONEN		(13)
 152#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_LINEINL		(12)
 153#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACL		(11)
 154#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACR		(10)
 155#define SUN6I_CODEC_OM_DACA_CTRL_RHPIS			(9)
 156#define SUN6I_CODEC_OM_DACA_CTRL_LHPIS			(8)
 157#define SUN6I_CODEC_OM_DACA_CTRL_RHPPAMUTE		(7)
 158#define SUN6I_CODEC_OM_DACA_CTRL_LHPPAMUTE		(6)
 159#define SUN6I_CODEC_OM_DACA_CTRL_HPVOL			(0)
 160#define SUN6I_CODEC_OM_PA_CTRL			(0x24)
 161#define SUN6I_CODEC_OM_PA_CTRL_HPPAEN			(31)
 162#define SUN6I_CODEC_OM_PA_CTRL_HPCOM_CTL		(29)
 163#define SUN6I_CODEC_OM_PA_CTRL_COMPTEN			(28)
 164#define SUN6I_CODEC_OM_PA_CTRL_MIC1G			(15)
 165#define SUN6I_CODEC_OM_PA_CTRL_MIC2G			(12)
 166#define SUN6I_CODEC_OM_PA_CTRL_LINEING			(9)
 167#define SUN6I_CODEC_OM_PA_CTRL_PHONEG			(6)
 168#define SUN6I_CODEC_OM_PA_CTRL_PHONEPG			(3)
 169#define SUN6I_CODEC_OM_PA_CTRL_PHONENG			(0)
 170
 171/* Microphone, line out and phone out controls */
 172#define SUN6I_CODEC_MIC_CTRL			(0x28)
 173#define SUN6I_CODEC_MIC_CTRL_HBIASEN			(31)
 174#define SUN6I_CODEC_MIC_CTRL_MBIASEN			(30)
 175#define SUN6I_CODEC_MIC_CTRL_MIC1AMPEN			(28)
 176#define SUN6I_CODEC_MIC_CTRL_MIC1BOOST			(25)
 177#define SUN6I_CODEC_MIC_CTRL_MIC2AMPEN			(24)
 178#define SUN6I_CODEC_MIC_CTRL_MIC2BOOST			(21)
 179#define SUN6I_CODEC_MIC_CTRL_MIC2SLT			(20)
 180#define SUN6I_CODEC_MIC_CTRL_LINEOUTLEN			(19)
 181#define SUN6I_CODEC_MIC_CTRL_LINEOUTREN			(18)
 182#define SUN6I_CODEC_MIC_CTRL_LINEOUTLSRC		(17)
 183#define SUN6I_CODEC_MIC_CTRL_LINEOUTRSRC		(16)
 184#define SUN6I_CODEC_MIC_CTRL_LINEOUTVC			(11)
 185#define SUN6I_CODEC_MIC_CTRL_PHONEPREG			(8)
 186
 187/* ADC mixer controls */
 188#define SUN6I_CODEC_ADC_ACTL			(0x2c)
 189#define SUN6I_CODEC_ADC_ACTL_ADCREN			(31)
 190#define SUN6I_CODEC_ADC_ACTL_ADCLEN			(30)
 191#define SUN6I_CODEC_ADC_ACTL_ADCRG			(27)
 192#define SUN6I_CODEC_ADC_ACTL_ADCLG			(24)
 193#define SUN6I_CODEC_ADC_ACTL_RADCMIX_MIC1		(13)
 194#define SUN6I_CODEC_ADC_ACTL_RADCMIX_MIC2		(12)
 195#define SUN6I_CODEC_ADC_ACTL_RADCMIX_PHONE		(11)
 196#define SUN6I_CODEC_ADC_ACTL_RADCMIX_PHONEP		(10)
 197#define SUN6I_CODEC_ADC_ACTL_RADCMIX_LINEINR		(9)
 198#define SUN6I_CODEC_ADC_ACTL_RADCMIX_OMIXR		(8)
 199#define SUN6I_CODEC_ADC_ACTL_RADCMIX_OMIXL		(7)
 200#define SUN6I_CODEC_ADC_ACTL_LADCMIX_MIC1		(6)
 201#define SUN6I_CODEC_ADC_ACTL_LADCMIX_MIC2		(5)
 202#define SUN6I_CODEC_ADC_ACTL_LADCMIX_PHONE		(4)
 203#define SUN6I_CODEC_ADC_ACTL_LADCMIX_PHONEN		(3)
 204#define SUN6I_CODEC_ADC_ACTL_LADCMIX_LINEINL		(2)
 205#define SUN6I_CODEC_ADC_ACTL_LADCMIX_OMIXL		(1)
 206#define SUN6I_CODEC_ADC_ACTL_LADCMIX_OMIXR		(0)
 207
 208/* Analog performance tuning controls */
 209#define SUN6I_CODEC_ADDA_TUNE			(0x30)
 210
 211/* Calibration controls */
 212#define SUN6I_CODEC_CALIBRATION			(0x34)
 213
 214/* FIFO counters */
 215#define SUN6I_CODEC_DAC_TXCNT			(0x40)
 216#define SUN6I_CODEC_ADC_RXCNT			(0x44)
 217
 218/* headset jack detection and button support registers */
 219#define SUN6I_CODEC_HMIC_CTL			(0x50)
 220#define SUN6I_CODEC_HMIC_DATA			(0x54)
 221
 222/* TODO sun6i DAP (Digital Audio Processing) bits */
 223
 224/* FIFO counters moved on A23 */
 225#define SUN8I_A23_CODEC_DAC_TXCNT		(0x1c)
 226#define SUN8I_A23_CODEC_ADC_RXCNT		(0x20)
 227
 228/* TX FIFO moved on H3 */
 229#define SUN8I_H3_CODEC_DAC_TXDATA		(0x20)
 230#define SUN8I_H3_CODEC_DAC_DBG			(0x48)
 231#define SUN8I_H3_CODEC_ADC_DBG			(0x4c)
 232
 233/* TODO H3 DAP (Digital Audio Processing) bits */
 234
 235struct sun4i_codec {
 236	struct device	*dev;
 237	struct regmap	*regmap;
 238	struct clk	*clk_apb;
 239	struct clk	*clk_module;
 240	struct reset_control *rst;
 241	struct gpio_desc *gpio_pa;
 242
 243	/* ADC_FIFOC register is at different offset on different SoCs */
 244	struct regmap_field *reg_adc_fifoc;
 245
 246	struct snd_dmaengine_dai_dma_data	capture_dma_data;
 247	struct snd_dmaengine_dai_dma_data	playback_dma_data;
 248};
 249
 250static void sun4i_codec_start_playback(struct sun4i_codec *scodec)
 251{
 252	/* Flush TX FIFO */
 253	regmap_set_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 254			BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH));
 
 255
 256	/* Enable DAC DRQ */
 257	regmap_set_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 258			BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN));
 
 259}
 260
 261static void sun4i_codec_stop_playback(struct sun4i_codec *scodec)
 262{
 263	/* Disable DAC DRQ */
 264	regmap_clear_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 265			  BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN));
 
 266}
 267
 268static void sun4i_codec_start_capture(struct sun4i_codec *scodec)
 269{
 270	/* Enable ADC DRQ */
 271	regmap_field_set_bits(scodec->reg_adc_fifoc,
 272			      BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN));
 
 273}
 274
 275static void sun4i_codec_stop_capture(struct sun4i_codec *scodec)
 276{
 277	/* Disable ADC DRQ */
 278	regmap_field_clear_bits(scodec->reg_adc_fifoc,
 279				 BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN));
 280}
 281
 282static int sun4i_codec_trigger(struct snd_pcm_substream *substream, int cmd,
 283			       struct snd_soc_dai *dai)
 284{
 285	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
 286	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
 287
 288	switch (cmd) {
 289	case SNDRV_PCM_TRIGGER_START:
 290	case SNDRV_PCM_TRIGGER_RESUME:
 291	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
 292		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
 293			sun4i_codec_start_playback(scodec);
 294		else
 295			sun4i_codec_start_capture(scodec);
 296		break;
 297
 298	case SNDRV_PCM_TRIGGER_STOP:
 299	case SNDRV_PCM_TRIGGER_SUSPEND:
 300	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
 301		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
 302			sun4i_codec_stop_playback(scodec);
 303		else
 304			sun4i_codec_stop_capture(scodec);
 305		break;
 306
 307	default:
 308		return -EINVAL;
 309	}
 310
 311	return 0;
 312}
 313
 314static int sun4i_codec_prepare_capture(struct snd_pcm_substream *substream,
 315				       struct snd_soc_dai *dai)
 316{
 317	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
 318	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
 319
 320
 321	/* Flush RX FIFO */
 322	regmap_field_set_bits(scodec->reg_adc_fifoc,
 323				 BIT(SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH));
 
 324
 325
 326	/* Set RX FIFO trigger level */
 327	regmap_field_update_bits(scodec->reg_adc_fifoc,
 328				 0xf << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL,
 329				 0x7 << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL);
 330
 331	/*
 332	 * FIXME: Undocumented in the datasheet, but
 333	 *        Allwinner's code mentions that it is
 334	 *        related to microphone gain
 335	 */
 336	if (of_device_is_compatible(scodec->dev->of_node,
 337				    "allwinner,sun4i-a10-codec") ||
 338	    of_device_is_compatible(scodec->dev->of_node,
 339				    "allwinner,sun7i-a20-codec")) {
 340		regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_ACTL,
 341				   0x3 << 25,
 342				   0x1 << 25);
 343	}
 344
 345	if (of_device_is_compatible(scodec->dev->of_node,
 346				    "allwinner,sun7i-a20-codec"))
 347		/* FIXME: Undocumented bits */
 348		regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_TUNE,
 349				   0x3 << 8,
 350				   0x1 << 8);
 351
 
 
 
 
 
 352	return 0;
 353}
 354
 355static int sun4i_codec_prepare_playback(struct snd_pcm_substream *substream,
 356					struct snd_soc_dai *dai)
 357{
 358	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
 359	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
 360	u32 val;
 361
 362	/* Flush the TX FIFO */
 363	regmap_set_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 
 364			   BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH));
 365
 366	/* Set TX FIFO Empty Trigger Level */
 367	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 368			   0x3f << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL,
 369			   0xf << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL);
 370
 371	if (substream->runtime->rate > 32000)
 372		/* Use 64 bits FIR filter */
 373		val = 0;
 374	else
 375		/* Use 32 bits FIR filter */
 376		val = BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION);
 377
 378	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 379			   BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION),
 380			   val);
 381
 382	/* Send zeros when we have an underrun */
 383	regmap_clear_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 384			   BIT(SUN4I_CODEC_DAC_FIFOC_SEND_LASAT));
 
 385
 386	return 0;
 387};
 388
 389static int sun4i_codec_prepare(struct snd_pcm_substream *substream,
 390			       struct snd_soc_dai *dai)
 391{
 392	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
 393		return sun4i_codec_prepare_playback(substream, dai);
 394
 395	return sun4i_codec_prepare_capture(substream, dai);
 396}
 397
 398static unsigned long sun4i_codec_get_mod_freq(struct snd_pcm_hw_params *params)
 399{
 400	unsigned int rate = params_rate(params);
 401
 402	switch (rate) {
 403	case 176400:
 404	case 88200:
 405	case 44100:
 406	case 33075:
 407	case 22050:
 408	case 14700:
 409	case 11025:
 410	case 7350:
 411		return 22579200;
 412
 413	case 192000:
 414	case 96000:
 415	case 48000:
 416	case 32000:
 417	case 24000:
 418	case 16000:
 419	case 12000:
 420	case 8000:
 421		return 24576000;
 422
 423	default:
 424		return 0;
 425	}
 426}
 427
 428static int sun4i_codec_get_hw_rate(struct snd_pcm_hw_params *params)
 429{
 430	unsigned int rate = params_rate(params);
 431
 432	switch (rate) {
 433	case 192000:
 434	case 176400:
 435		return 6;
 436
 437	case 96000:
 438	case 88200:
 439		return 7;
 440
 441	case 48000:
 442	case 44100:
 443		return 0;
 444
 445	case 32000:
 446	case 33075:
 447		return 1;
 448
 449	case 24000:
 450	case 22050:
 451		return 2;
 452
 453	case 16000:
 454	case 14700:
 455		return 3;
 456
 457	case 12000:
 458	case 11025:
 459		return 4;
 460
 461	case 8000:
 462	case 7350:
 463		return 5;
 464
 465	default:
 466		return -EINVAL;
 467	}
 468}
 469
 470static int sun4i_codec_hw_params_capture(struct sun4i_codec *scodec,
 471					 struct snd_pcm_hw_params *params,
 472					 unsigned int hwrate)
 473{
 474	/* Set ADC sample rate */
 475	regmap_field_update_bits(scodec->reg_adc_fifoc,
 476				 7 << SUN4I_CODEC_ADC_FIFOC_ADC_FS,
 477				 hwrate << SUN4I_CODEC_ADC_FIFOC_ADC_FS);
 478
 479	/* Set the number of channels we want to use */
 480	if (params_channels(params) == 1)
 481		regmap_field_set_bits(scodec->reg_adc_fifoc,
 482					 BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN));
 
 483	else
 484		regmap_field_clear_bits(scodec->reg_adc_fifoc,
 485					 BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN));
 486
 487	/* Set the number of sample bits to either 16 or 24 bits */
 488	if (hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS)->min == 32) {
 489		regmap_field_set_bits(scodec->reg_adc_fifoc,
 490				   BIT(SUN4I_CODEC_ADC_FIFOC_RX_SAMPLE_BITS));
 491
 492		regmap_field_clear_bits(scodec->reg_adc_fifoc,
 493				   BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE));
 494
 495		scodec->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
 496	} else {
 497		regmap_field_clear_bits(scodec->reg_adc_fifoc,
 498				   BIT(SUN4I_CODEC_ADC_FIFOC_RX_SAMPLE_BITS));
 499
 500		/* Fill most significant bits with valid data MSB */
 501		regmap_field_set_bits(scodec->reg_adc_fifoc,
 502				   BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE));
 503
 504		scodec->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
 505	}
 506
 507	return 0;
 508}
 509
 510static int sun4i_codec_hw_params_playback(struct sun4i_codec *scodec,
 511					  struct snd_pcm_hw_params *params,
 512					  unsigned int hwrate)
 513{
 514	u32 val;
 515
 516	/* Set DAC sample rate */
 517	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 518			   7 << SUN4I_CODEC_DAC_FIFOC_DAC_FS,
 519			   hwrate << SUN4I_CODEC_DAC_FIFOC_DAC_FS);
 520
 521	/* Set the number of channels we want to use */
 522	if (params_channels(params) == 1)
 523		val = BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN);
 524	else
 525		val = 0;
 526
 527	regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 528			   BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN),
 529			   val);
 530
 531	/* Set the number of sample bits to either 16 or 24 bits */
 532	if (hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS)->min == 32) {
 533		regmap_set_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 
 534				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS));
 535
 536		/* Set TX FIFO mode to padding the LSBs with 0 */
 537		regmap_clear_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 538				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE));
 
 539
 540		scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
 541	} else {
 542		regmap_clear_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 543				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS));
 
 544
 545		/* Set TX FIFO mode to repeat the MSB */
 546		regmap_set_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 
 547				   BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE));
 548
 549		scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
 550	}
 551
 552	return 0;
 553}
 554
 555static int sun4i_codec_hw_params(struct snd_pcm_substream *substream,
 556				 struct snd_pcm_hw_params *params,
 557				 struct snd_soc_dai *dai)
 558{
 559	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
 560	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
 561	unsigned long clk_freq;
 562	int ret, hwrate;
 563
 564	clk_freq = sun4i_codec_get_mod_freq(params);
 565	if (!clk_freq)
 566		return -EINVAL;
 567
 568	ret = clk_set_rate(scodec->clk_module, clk_freq);
 569	if (ret)
 570		return ret;
 571
 572	hwrate = sun4i_codec_get_hw_rate(params);
 573	if (hwrate < 0)
 574		return hwrate;
 575
 576	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
 577		return sun4i_codec_hw_params_playback(scodec, params,
 578						      hwrate);
 579
 580	return sun4i_codec_hw_params_capture(scodec, params,
 581					     hwrate);
 582}
 583
 584
 585static unsigned int sun4i_codec_src_rates[] = {
 586	8000, 11025, 12000, 16000, 22050, 24000, 32000,
 587	44100, 48000, 96000, 192000
 588};
 589
 590
 591static struct snd_pcm_hw_constraint_list sun4i_codec_constraints = {
 592	.count  = ARRAY_SIZE(sun4i_codec_src_rates),
 593	.list   = sun4i_codec_src_rates,
 594};
 595
 596
 597static int sun4i_codec_startup(struct snd_pcm_substream *substream,
 598			       struct snd_soc_dai *dai)
 599{
 600	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
 601	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
 602
 603	snd_pcm_hw_constraint_list(substream->runtime, 0,
 604				SNDRV_PCM_HW_PARAM_RATE, &sun4i_codec_constraints);
 605
 606	/*
 607	 * Stop issuing DRQ when we have room for less than 16 samples
 608	 * in our TX FIFO
 609	 */
 610	regmap_set_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
 
 611			   3 << SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT);
 612
 613	return clk_prepare_enable(scodec->clk_module);
 614}
 615
 616static void sun4i_codec_shutdown(struct snd_pcm_substream *substream,
 617				 struct snd_soc_dai *dai)
 618{
 619	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
 620	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
 621
 622	clk_disable_unprepare(scodec->clk_module);
 623}
 624
 625static const struct snd_soc_dai_ops sun4i_codec_dai_ops = {
 626	.startup	= sun4i_codec_startup,
 627	.shutdown	= sun4i_codec_shutdown,
 628	.trigger	= sun4i_codec_trigger,
 629	.hw_params	= sun4i_codec_hw_params,
 630	.prepare	= sun4i_codec_prepare,
 631};
 632
 633static struct snd_soc_dai_driver sun4i_codec_dai = {
 634	.name	= "Codec",
 635	.ops	= &sun4i_codec_dai_ops,
 636	.playback = {
 637		.stream_name	= "Codec Playback",
 638		.channels_min	= 1,
 639		.channels_max	= 2,
 640		.rate_min	= 8000,
 641		.rate_max	= 192000,
 642		.rates		= SNDRV_PCM_RATE_CONTINUOUS,
 
 
 643		.formats	= SNDRV_PCM_FMTBIT_S16_LE |
 644				  SNDRV_PCM_FMTBIT_S32_LE,
 645		.sig_bits	= 24,
 646	},
 647	.capture = {
 648		.stream_name	= "Codec Capture",
 649		.channels_min	= 1,
 650		.channels_max	= 2,
 651		.rate_min	= 8000,
 652		.rate_max	= 48000,
 653		.rates		= SNDRV_PCM_RATE_CONTINUOUS,
 
 
 
 654		.formats	= SNDRV_PCM_FMTBIT_S16_LE |
 655				  SNDRV_PCM_FMTBIT_S32_LE,
 656		.sig_bits	= 24,
 657	},
 658};
 659
 660/*** sun4i Codec ***/
 661static const struct snd_kcontrol_new sun4i_codec_pa_mute =
 662	SOC_DAPM_SINGLE("Switch", SUN4I_CODEC_DAC_ACTL,
 663			SUN4I_CODEC_DAC_ACTL_PA_MUTE, 1, 0);
 664
 665static DECLARE_TLV_DB_SCALE(sun4i_codec_pa_volume_scale, -6300, 100, 1);
 666static DECLARE_TLV_DB_SCALE(sun4i_codec_linein_loopback_gain_scale, -150, 150,
 667			    0);
 668static DECLARE_TLV_DB_SCALE(sun4i_codec_linein_preamp_gain_scale, -1200, 300,
 669			    0);
 670static DECLARE_TLV_DB_SCALE(sun4i_codec_fmin_loopback_gain_scale, -450, 150,
 671			    0);
 672static DECLARE_TLV_DB_SCALE(sun4i_codec_micin_loopback_gain_scale, -450, 150,
 673			    0);
 674static DECLARE_TLV_DB_RANGE(sun4i_codec_micin_preamp_gain_scale,
 675			    0, 0, TLV_DB_SCALE_ITEM(0, 0, 0),
 676			    1, 7, TLV_DB_SCALE_ITEM(3500, 300, 0));
 677static DECLARE_TLV_DB_RANGE(sun7i_codec_micin_preamp_gain_scale,
 678			    0, 0, TLV_DB_SCALE_ITEM(0, 0, 0),
 679			    1, 7, TLV_DB_SCALE_ITEM(2400, 300, 0));
 680
 681static const struct snd_kcontrol_new sun4i_codec_controls[] = {
 682	SOC_SINGLE_TLV("Power Amplifier Volume", SUN4I_CODEC_DAC_ACTL,
 683		       SUN4I_CODEC_DAC_ACTL_PA_VOL, 0x3F, 0,
 684		       sun4i_codec_pa_volume_scale),
 685	SOC_SINGLE_TLV("Line Playback Volume", SUN4I_CODEC_DAC_ACTL,
 686		       SUN4I_CODEC_DAC_ACTL_LNG, 1, 0,
 687		       sun4i_codec_linein_loopback_gain_scale),
 688	SOC_SINGLE_TLV("Line Boost Volume", SUN4I_CODEC_ADC_ACTL,
 689		       SUN4I_CODEC_ADC_ACTL_LNPREG, 7, 0,
 690		       sun4i_codec_linein_preamp_gain_scale),
 691	SOC_SINGLE_TLV("FM Playback Volume", SUN4I_CODEC_DAC_ACTL,
 692		       SUN4I_CODEC_DAC_ACTL_FMG, 3, 0,
 693		       sun4i_codec_fmin_loopback_gain_scale),
 694	SOC_SINGLE_TLV("Mic Playback Volume", SUN4I_CODEC_DAC_ACTL,
 695		       SUN4I_CODEC_DAC_ACTL_MICG, 7, 0,
 696		       sun4i_codec_micin_loopback_gain_scale),
 697	SOC_SINGLE_TLV("Mic1 Boost Volume", SUN4I_CODEC_ADC_ACTL,
 698		       SUN4I_CODEC_ADC_ACTL_PREG1, 3, 0,
 699		       sun4i_codec_micin_preamp_gain_scale),
 700	SOC_SINGLE_TLV("Mic2 Boost Volume", SUN4I_CODEC_ADC_ACTL,
 701		       SUN4I_CODEC_ADC_ACTL_PREG2, 3, 0,
 702		       sun4i_codec_micin_preamp_gain_scale),
 703};
 704
 705static const struct snd_kcontrol_new sun7i_codec_controls[] = {
 706	SOC_SINGLE_TLV("Power Amplifier Volume", SUN4I_CODEC_DAC_ACTL,
 707		       SUN4I_CODEC_DAC_ACTL_PA_VOL, 0x3F, 0,
 708		       sun4i_codec_pa_volume_scale),
 709	SOC_SINGLE_TLV("Line Playback Volume", SUN4I_CODEC_DAC_ACTL,
 710		       SUN4I_CODEC_DAC_ACTL_LNG, 1, 0,
 711		       sun4i_codec_linein_loopback_gain_scale),
 712	SOC_SINGLE_TLV("Line Boost Volume", SUN4I_CODEC_ADC_ACTL,
 713		       SUN4I_CODEC_ADC_ACTL_LNPREG, 7, 0,
 714		       sun4i_codec_linein_preamp_gain_scale),
 715	SOC_SINGLE_TLV("FM Playback Volume", SUN4I_CODEC_DAC_ACTL,
 716		       SUN4I_CODEC_DAC_ACTL_FMG, 3, 0,
 717		       sun4i_codec_fmin_loopback_gain_scale),
 718	SOC_SINGLE_TLV("Mic Playback Volume", SUN4I_CODEC_DAC_ACTL,
 719		       SUN4I_CODEC_DAC_ACTL_MICG, 7, 0,
 720		       sun4i_codec_micin_loopback_gain_scale),
 721	SOC_SINGLE_TLV("Mic1 Boost Volume", SUN7I_CODEC_AC_MIC_PHONE_CAL,
 722		       SUN7I_CODEC_AC_MIC_PHONE_CAL_PREG1, 7, 0,
 723		       sun7i_codec_micin_preamp_gain_scale),
 724	SOC_SINGLE_TLV("Mic2 Boost Volume", SUN7I_CODEC_AC_MIC_PHONE_CAL,
 725		       SUN7I_CODEC_AC_MIC_PHONE_CAL_PREG2, 7, 0,
 726		       sun7i_codec_micin_preamp_gain_scale),
 727};
 728
 729static const struct snd_kcontrol_new sun4i_codec_mixer_controls[] = {
 730	SOC_DAPM_SINGLE("Left Mixer Left DAC Playback Switch",
 731			SUN4I_CODEC_DAC_ACTL, SUN4I_CODEC_DAC_ACTL_LDACLMIXS,
 732			1, 0),
 733	SOC_DAPM_SINGLE("Right Mixer Right DAC Playback Switch",
 734			SUN4I_CODEC_DAC_ACTL, SUN4I_CODEC_DAC_ACTL_RDACRMIXS,
 735			1, 0),
 736	SOC_DAPM_SINGLE("Right Mixer Left DAC Playback Switch",
 737			SUN4I_CODEC_DAC_ACTL,
 738			SUN4I_CODEC_DAC_ACTL_LDACRMIXS, 1, 0),
 739	SOC_DAPM_DOUBLE("Line Playback Switch", SUN4I_CODEC_DAC_ACTL,
 740			SUN4I_CODEC_DAC_ACTL_LLNS,
 741			SUN4I_CODEC_DAC_ACTL_RLNS, 1, 0),
 742	SOC_DAPM_DOUBLE("FM Playback Switch", SUN4I_CODEC_DAC_ACTL,
 743			SUN4I_CODEC_DAC_ACTL_LFMS,
 744			SUN4I_CODEC_DAC_ACTL_RFMS, 1, 0),
 745	SOC_DAPM_DOUBLE("Mic1 Playback Switch", SUN4I_CODEC_DAC_ACTL,
 746			SUN4I_CODEC_DAC_ACTL_MIC1LS,
 747			SUN4I_CODEC_DAC_ACTL_MIC1RS, 1, 0),
 748	SOC_DAPM_DOUBLE("Mic2 Playback Switch", SUN4I_CODEC_DAC_ACTL,
 749			SUN4I_CODEC_DAC_ACTL_MIC2LS,
 750			SUN4I_CODEC_DAC_ACTL_MIC2RS, 1, 0),
 751};
 752
 753static const struct snd_kcontrol_new sun4i_codec_pa_mixer_controls[] = {
 754	SOC_DAPM_SINGLE("DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
 755			SUN4I_CODEC_DAC_ACTL_DACPAS, 1, 0),
 756	SOC_DAPM_SINGLE("Mixer Playback Switch", SUN4I_CODEC_DAC_ACTL,
 757			SUN4I_CODEC_DAC_ACTL_MIXPAS, 1, 0),
 758};
 759
 760static const struct snd_soc_dapm_widget sun4i_codec_codec_dapm_widgets[] = {
 761	/* Digital parts of the ADCs */
 762	SND_SOC_DAPM_SUPPLY("ADC", SUN4I_CODEC_ADC_FIFOC,
 763			    SUN4I_CODEC_ADC_FIFOC_EN_AD, 0,
 764			    NULL, 0),
 765
 766	/* Digital parts of the DACs */
 767	SND_SOC_DAPM_SUPPLY("DAC", SUN4I_CODEC_DAC_DPC,
 768			    SUN4I_CODEC_DAC_DPC_EN_DA, 0,
 769			    NULL, 0),
 770
 771	/* Analog parts of the ADCs */
 772	SND_SOC_DAPM_ADC("Left ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL,
 773			 SUN4I_CODEC_ADC_ACTL_ADC_L_EN, 0),
 774	SND_SOC_DAPM_ADC("Right ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL,
 775			 SUN4I_CODEC_ADC_ACTL_ADC_R_EN, 0),
 776
 777	/* Analog parts of the DACs */
 778	SND_SOC_DAPM_DAC("Left DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL,
 779			 SUN4I_CODEC_DAC_ACTL_DACAENL, 0),
 780	SND_SOC_DAPM_DAC("Right DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL,
 781			 SUN4I_CODEC_DAC_ACTL_DACAENR, 0),
 782
 783	/* Mixers */
 784	SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0,
 785			   sun4i_codec_mixer_controls,
 786			   ARRAY_SIZE(sun4i_codec_mixer_controls)),
 787	SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0,
 788			   sun4i_codec_mixer_controls,
 789			   ARRAY_SIZE(sun4i_codec_mixer_controls)),
 790
 791	/* Global Mixer Enable */
 792	SND_SOC_DAPM_SUPPLY("Mixer Enable", SUN4I_CODEC_DAC_ACTL,
 793			    SUN4I_CODEC_DAC_ACTL_MIXEN, 0, NULL, 0),
 794
 795	/* VMIC */
 796	SND_SOC_DAPM_SUPPLY("VMIC", SUN4I_CODEC_ADC_ACTL,
 797			    SUN4I_CODEC_ADC_ACTL_VMICEN, 0, NULL, 0),
 798
 799	/* Mic Pre-Amplifiers */
 800	SND_SOC_DAPM_PGA("MIC1 Pre-Amplifier", SUN4I_CODEC_ADC_ACTL,
 801			 SUN4I_CODEC_ADC_ACTL_PREG1EN, 0, NULL, 0),
 802	SND_SOC_DAPM_PGA("MIC2 Pre-Amplifier", SUN4I_CODEC_ADC_ACTL,
 803			 SUN4I_CODEC_ADC_ACTL_PREG2EN, 0, NULL, 0),
 804
 805	/* Power Amplifier */
 806	SND_SOC_DAPM_MIXER("Power Amplifier", SUN4I_CODEC_ADC_ACTL,
 807			   SUN4I_CODEC_ADC_ACTL_PA_EN, 0,
 808			   sun4i_codec_pa_mixer_controls,
 809			   ARRAY_SIZE(sun4i_codec_pa_mixer_controls)),
 810	SND_SOC_DAPM_SWITCH("Power Amplifier Mute", SND_SOC_NOPM, 0, 0,
 811			    &sun4i_codec_pa_mute),
 812
 813	SND_SOC_DAPM_INPUT("Line Right"),
 814	SND_SOC_DAPM_INPUT("Line Left"),
 815	SND_SOC_DAPM_INPUT("FM Right"),
 816	SND_SOC_DAPM_INPUT("FM Left"),
 817	SND_SOC_DAPM_INPUT("Mic1"),
 818	SND_SOC_DAPM_INPUT("Mic2"),
 819
 820	SND_SOC_DAPM_OUTPUT("HP Right"),
 821	SND_SOC_DAPM_OUTPUT("HP Left"),
 822};
 823
 824static const struct snd_soc_dapm_route sun4i_codec_codec_dapm_routes[] = {
 825	/* Left ADC / DAC Routes */
 826	{ "Left ADC", NULL, "ADC" },
 827	{ "Left DAC", NULL, "DAC" },
 828
 829	/* Right ADC / DAC Routes */
 830	{ "Right ADC", NULL, "ADC" },
 831	{ "Right DAC", NULL, "DAC" },
 832
 833	/* Right Mixer Routes */
 834	{ "Right Mixer", NULL, "Mixer Enable" },
 835	{ "Right Mixer", "Right Mixer Left DAC Playback Switch", "Left DAC" },
 836	{ "Right Mixer", "Right Mixer Right DAC Playback Switch", "Right DAC" },
 837	{ "Right Mixer", "Line Playback Switch", "Line Right" },
 838	{ "Right Mixer", "FM Playback Switch", "FM Right" },
 839	{ "Right Mixer", "Mic1 Playback Switch", "MIC1 Pre-Amplifier" },
 840	{ "Right Mixer", "Mic2 Playback Switch", "MIC2 Pre-Amplifier" },
 841
 842	/* Left Mixer Routes */
 843	{ "Left Mixer", NULL, "Mixer Enable" },
 844	{ "Left Mixer", "Left Mixer Left DAC Playback Switch", "Left DAC" },
 845	{ "Left Mixer", "Line Playback Switch", "Line Left" },
 846	{ "Left Mixer", "FM Playback Switch", "FM Left" },
 847	{ "Left Mixer", "Mic1 Playback Switch", "MIC1 Pre-Amplifier" },
 848	{ "Left Mixer", "Mic2 Playback Switch", "MIC2 Pre-Amplifier" },
 849
 850	/* Power Amplifier Routes */
 851	{ "Power Amplifier", "Mixer Playback Switch", "Left Mixer" },
 852	{ "Power Amplifier", "Mixer Playback Switch", "Right Mixer" },
 853	{ "Power Amplifier", "DAC Playback Switch", "Left DAC" },
 854	{ "Power Amplifier", "DAC Playback Switch", "Right DAC" },
 855
 856	/* Headphone Output Routes */
 857	{ "Power Amplifier Mute", "Switch", "Power Amplifier" },
 858	{ "HP Right", NULL, "Power Amplifier Mute" },
 859	{ "HP Left", NULL, "Power Amplifier Mute" },
 860
 861	/* Mic1 Routes */
 862	{ "Left ADC", NULL, "MIC1 Pre-Amplifier" },
 863	{ "Right ADC", NULL, "MIC1 Pre-Amplifier" },
 864	{ "MIC1 Pre-Amplifier", NULL, "Mic1"},
 865	{ "Mic1", NULL, "VMIC" },
 866
 867	/* Mic2 Routes */
 868	{ "Left ADC", NULL, "MIC2 Pre-Amplifier" },
 869	{ "Right ADC", NULL, "MIC2 Pre-Amplifier" },
 870	{ "MIC2 Pre-Amplifier", NULL, "Mic2"},
 871	{ "Mic2", NULL, "VMIC" },
 872};
 873
 874static const struct snd_soc_component_driver sun4i_codec_codec = {
 875	.controls		= sun4i_codec_controls,
 876	.num_controls		= ARRAY_SIZE(sun4i_codec_controls),
 877	.dapm_widgets		= sun4i_codec_codec_dapm_widgets,
 878	.num_dapm_widgets	= ARRAY_SIZE(sun4i_codec_codec_dapm_widgets),
 879	.dapm_routes		= sun4i_codec_codec_dapm_routes,
 880	.num_dapm_routes	= ARRAY_SIZE(sun4i_codec_codec_dapm_routes),
 881	.idle_bias_on		= 1,
 882	.use_pmdown_time	= 1,
 883	.endianness		= 1,
 884};
 885
 886static const struct snd_soc_component_driver sun7i_codec_codec = {
 887	.controls		= sun7i_codec_controls,
 888	.num_controls		= ARRAY_SIZE(sun7i_codec_controls),
 889	.dapm_widgets		= sun4i_codec_codec_dapm_widgets,
 890	.num_dapm_widgets	= ARRAY_SIZE(sun4i_codec_codec_dapm_widgets),
 891	.dapm_routes		= sun4i_codec_codec_dapm_routes,
 892	.num_dapm_routes	= ARRAY_SIZE(sun4i_codec_codec_dapm_routes),
 893	.idle_bias_on		= 1,
 894	.use_pmdown_time	= 1,
 895	.endianness		= 1,
 896};
 897
 898/*** sun6i Codec ***/
 899
 900/* mixer controls */
 901static const struct snd_kcontrol_new sun6i_codec_mixer_controls[] = {
 902	SOC_DAPM_DOUBLE("DAC Playback Switch",
 903			SUN6I_CODEC_OM_DACA_CTRL,
 904			SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACL,
 905			SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACR, 1, 0),
 906	SOC_DAPM_DOUBLE("DAC Reversed Playback Switch",
 907			SUN6I_CODEC_OM_DACA_CTRL,
 908			SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACR,
 909			SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACL, 1, 0),
 910	SOC_DAPM_DOUBLE("Line In Playback Switch",
 911			SUN6I_CODEC_OM_DACA_CTRL,
 912			SUN6I_CODEC_OM_DACA_CTRL_LMIX_LINEINL,
 913			SUN6I_CODEC_OM_DACA_CTRL_RMIX_LINEINR, 1, 0),
 914	SOC_DAPM_DOUBLE("Mic1 Playback Switch",
 915			SUN6I_CODEC_OM_DACA_CTRL,
 916			SUN6I_CODEC_OM_DACA_CTRL_LMIX_MIC1,
 917			SUN6I_CODEC_OM_DACA_CTRL_RMIX_MIC1, 1, 0),
 918	SOC_DAPM_DOUBLE("Mic2 Playback Switch",
 919			SUN6I_CODEC_OM_DACA_CTRL,
 920			SUN6I_CODEC_OM_DACA_CTRL_LMIX_MIC2,
 921			SUN6I_CODEC_OM_DACA_CTRL_RMIX_MIC2, 1, 0),
 922};
 923
 924/* ADC mixer controls */
 925static const struct snd_kcontrol_new sun6i_codec_adc_mixer_controls[] = {
 926	SOC_DAPM_DOUBLE("Mixer Capture Switch",
 927			SUN6I_CODEC_ADC_ACTL,
 928			SUN6I_CODEC_ADC_ACTL_LADCMIX_OMIXL,
 929			SUN6I_CODEC_ADC_ACTL_RADCMIX_OMIXR, 1, 0),
 930	SOC_DAPM_DOUBLE("Mixer Reversed Capture Switch",
 931			SUN6I_CODEC_ADC_ACTL,
 932			SUN6I_CODEC_ADC_ACTL_LADCMIX_OMIXR,
 933			SUN6I_CODEC_ADC_ACTL_RADCMIX_OMIXL, 1, 0),
 934	SOC_DAPM_DOUBLE("Line In Capture Switch",
 935			SUN6I_CODEC_ADC_ACTL,
 936			SUN6I_CODEC_ADC_ACTL_LADCMIX_LINEINL,
 937			SUN6I_CODEC_ADC_ACTL_RADCMIX_LINEINR, 1, 0),
 938	SOC_DAPM_DOUBLE("Mic1 Capture Switch",
 939			SUN6I_CODEC_ADC_ACTL,
 940			SUN6I_CODEC_ADC_ACTL_LADCMIX_MIC1,
 941			SUN6I_CODEC_ADC_ACTL_RADCMIX_MIC1, 1, 0),
 942	SOC_DAPM_DOUBLE("Mic2 Capture Switch",
 943			SUN6I_CODEC_ADC_ACTL,
 944			SUN6I_CODEC_ADC_ACTL_LADCMIX_MIC2,
 945			SUN6I_CODEC_ADC_ACTL_RADCMIX_MIC2, 1, 0),
 946};
 947
 948/* headphone controls */
 949static const char * const sun6i_codec_hp_src_enum_text[] = {
 950	"DAC", "Mixer",
 951};
 952
 953static SOC_ENUM_DOUBLE_DECL(sun6i_codec_hp_src_enum,
 954			    SUN6I_CODEC_OM_DACA_CTRL,
 955			    SUN6I_CODEC_OM_DACA_CTRL_LHPIS,
 956			    SUN6I_CODEC_OM_DACA_CTRL_RHPIS,
 957			    sun6i_codec_hp_src_enum_text);
 958
 959static const struct snd_kcontrol_new sun6i_codec_hp_src[] = {
 960	SOC_DAPM_ENUM("Headphone Source Playback Route",
 961		      sun6i_codec_hp_src_enum),
 962};
 963
 964/* microphone controls */
 965static const char * const sun6i_codec_mic2_src_enum_text[] = {
 966	"Mic2", "Mic3",
 967};
 968
 969static SOC_ENUM_SINGLE_DECL(sun6i_codec_mic2_src_enum,
 970			    SUN6I_CODEC_MIC_CTRL,
 971			    SUN6I_CODEC_MIC_CTRL_MIC2SLT,
 972			    sun6i_codec_mic2_src_enum_text);
 973
 974static const struct snd_kcontrol_new sun6i_codec_mic2_src[] = {
 975	SOC_DAPM_ENUM("Mic2 Amplifier Source Route",
 976		      sun6i_codec_mic2_src_enum),
 977};
 978
 979/* line out controls */
 980static const char * const sun6i_codec_lineout_src_enum_text[] = {
 981	"Stereo", "Mono Differential",
 982};
 983
 984static SOC_ENUM_DOUBLE_DECL(sun6i_codec_lineout_src_enum,
 985			    SUN6I_CODEC_MIC_CTRL,
 986			    SUN6I_CODEC_MIC_CTRL_LINEOUTLSRC,
 987			    SUN6I_CODEC_MIC_CTRL_LINEOUTRSRC,
 988			    sun6i_codec_lineout_src_enum_text);
 989
 990static const struct snd_kcontrol_new sun6i_codec_lineout_src[] = {
 991	SOC_DAPM_ENUM("Line Out Source Playback Route",
 992		      sun6i_codec_lineout_src_enum),
 993};
 994
 995/* volume / mute controls */
 996static const DECLARE_TLV_DB_SCALE(sun6i_codec_dvol_scale, -7308, 116, 0);
 997static const DECLARE_TLV_DB_SCALE(sun6i_codec_hp_vol_scale, -6300, 100, 1);
 998static const DECLARE_TLV_DB_SCALE(sun6i_codec_out_mixer_pregain_scale,
 999				  -450, 150, 0);
1000static const DECLARE_TLV_DB_RANGE(sun6i_codec_lineout_vol_scale,
1001	0, 1, TLV_DB_SCALE_ITEM(TLV_DB_GAIN_MUTE, 0, 1),
1002	2, 31, TLV_DB_SCALE_ITEM(-4350, 150, 0),
1003);
1004static const DECLARE_TLV_DB_RANGE(sun6i_codec_mic_gain_scale,
1005	0, 0, TLV_DB_SCALE_ITEM(0, 0, 0),
1006	1, 7, TLV_DB_SCALE_ITEM(2400, 300, 0),
1007);
1008
1009static const struct snd_kcontrol_new sun6i_codec_codec_widgets[] = {
1010	SOC_SINGLE_TLV("DAC Playback Volume", SUN4I_CODEC_DAC_DPC,
1011		       SUN4I_CODEC_DAC_DPC_DVOL, 0x3f, 1,
1012		       sun6i_codec_dvol_scale),
1013	SOC_SINGLE_TLV("Headphone Playback Volume",
1014		       SUN6I_CODEC_OM_DACA_CTRL,
1015		       SUN6I_CODEC_OM_DACA_CTRL_HPVOL, 0x3f, 0,
1016		       sun6i_codec_hp_vol_scale),
1017	SOC_SINGLE_TLV("Line Out Playback Volume",
1018		       SUN6I_CODEC_MIC_CTRL,
1019		       SUN6I_CODEC_MIC_CTRL_LINEOUTVC, 0x1f, 0,
1020		       sun6i_codec_lineout_vol_scale),
1021	SOC_DOUBLE("Headphone Playback Switch",
1022		   SUN6I_CODEC_OM_DACA_CTRL,
1023		   SUN6I_CODEC_OM_DACA_CTRL_LHPPAMUTE,
1024		   SUN6I_CODEC_OM_DACA_CTRL_RHPPAMUTE, 1, 0),
1025	SOC_DOUBLE("Line Out Playback Switch",
1026		   SUN6I_CODEC_MIC_CTRL,
1027		   SUN6I_CODEC_MIC_CTRL_LINEOUTLEN,
1028		   SUN6I_CODEC_MIC_CTRL_LINEOUTREN, 1, 0),
1029	/* Mixer pre-gains */
1030	SOC_SINGLE_TLV("Line In Playback Volume",
1031		       SUN6I_CODEC_OM_PA_CTRL, SUN6I_CODEC_OM_PA_CTRL_LINEING,
1032		       0x7, 0, sun6i_codec_out_mixer_pregain_scale),
1033	SOC_SINGLE_TLV("Mic1 Playback Volume",
1034		       SUN6I_CODEC_OM_PA_CTRL, SUN6I_CODEC_OM_PA_CTRL_MIC1G,
1035		       0x7, 0, sun6i_codec_out_mixer_pregain_scale),
1036	SOC_SINGLE_TLV("Mic2 Playback Volume",
1037		       SUN6I_CODEC_OM_PA_CTRL, SUN6I_CODEC_OM_PA_CTRL_MIC2G,
1038		       0x7, 0, sun6i_codec_out_mixer_pregain_scale),
1039
1040	/* Microphone Amp boost gains */
1041	SOC_SINGLE_TLV("Mic1 Boost Volume", SUN6I_CODEC_MIC_CTRL,
1042		       SUN6I_CODEC_MIC_CTRL_MIC1BOOST, 0x7, 0,
1043		       sun6i_codec_mic_gain_scale),
1044	SOC_SINGLE_TLV("Mic2 Boost Volume", SUN6I_CODEC_MIC_CTRL,
1045		       SUN6I_CODEC_MIC_CTRL_MIC2BOOST, 0x7, 0,
1046		       sun6i_codec_mic_gain_scale),
1047	SOC_DOUBLE_TLV("ADC Capture Volume",
1048		       SUN6I_CODEC_ADC_ACTL, SUN6I_CODEC_ADC_ACTL_ADCLG,
1049		       SUN6I_CODEC_ADC_ACTL_ADCRG, 0x7, 0,
1050		       sun6i_codec_out_mixer_pregain_scale),
1051};
1052
1053static const struct snd_soc_dapm_widget sun6i_codec_codec_dapm_widgets[] = {
1054	/* Microphone inputs */
1055	SND_SOC_DAPM_INPUT("MIC1"),
1056	SND_SOC_DAPM_INPUT("MIC2"),
1057	SND_SOC_DAPM_INPUT("MIC3"),
1058
1059	/* Microphone Bias */
1060	SND_SOC_DAPM_SUPPLY("HBIAS", SUN6I_CODEC_MIC_CTRL,
1061			    SUN6I_CODEC_MIC_CTRL_HBIASEN, 0, NULL, 0),
1062	SND_SOC_DAPM_SUPPLY("MBIAS", SUN6I_CODEC_MIC_CTRL,
1063			    SUN6I_CODEC_MIC_CTRL_MBIASEN, 0, NULL, 0),
1064
1065	/* Mic input path */
1066	SND_SOC_DAPM_MUX("Mic2 Amplifier Source Route",
1067			 SND_SOC_NOPM, 0, 0, sun6i_codec_mic2_src),
1068	SND_SOC_DAPM_PGA("Mic1 Amplifier", SUN6I_CODEC_MIC_CTRL,
1069			 SUN6I_CODEC_MIC_CTRL_MIC1AMPEN, 0, NULL, 0),
1070	SND_SOC_DAPM_PGA("Mic2 Amplifier", SUN6I_CODEC_MIC_CTRL,
1071			 SUN6I_CODEC_MIC_CTRL_MIC2AMPEN, 0, NULL, 0),
1072
1073	/* Line In */
1074	SND_SOC_DAPM_INPUT("LINEIN"),
1075
1076	/* Digital parts of the ADCs */
1077	SND_SOC_DAPM_SUPPLY("ADC Enable", SUN6I_CODEC_ADC_FIFOC,
1078			    SUN6I_CODEC_ADC_FIFOC_EN_AD, 0,
1079			    NULL, 0),
1080
1081	/* Analog parts of the ADCs */
1082	SND_SOC_DAPM_ADC("Left ADC", "Codec Capture", SUN6I_CODEC_ADC_ACTL,
1083			 SUN6I_CODEC_ADC_ACTL_ADCLEN, 0),
1084	SND_SOC_DAPM_ADC("Right ADC", "Codec Capture", SUN6I_CODEC_ADC_ACTL,
1085			 SUN6I_CODEC_ADC_ACTL_ADCREN, 0),
1086
1087	/* ADC Mixers */
1088	SOC_MIXER_ARRAY("Left ADC Mixer", SND_SOC_NOPM, 0, 0,
1089			sun6i_codec_adc_mixer_controls),
1090	SOC_MIXER_ARRAY("Right ADC Mixer", SND_SOC_NOPM, 0, 0,
1091			sun6i_codec_adc_mixer_controls),
1092
1093	/* Digital parts of the DACs */
1094	SND_SOC_DAPM_SUPPLY("DAC Enable", SUN4I_CODEC_DAC_DPC,
1095			    SUN4I_CODEC_DAC_DPC_EN_DA, 0,
1096			    NULL, 0),
1097
1098	/* Analog parts of the DACs */
1099	SND_SOC_DAPM_DAC("Left DAC", "Codec Playback",
1100			 SUN6I_CODEC_OM_DACA_CTRL,
1101			 SUN6I_CODEC_OM_DACA_CTRL_DACALEN, 0),
1102	SND_SOC_DAPM_DAC("Right DAC", "Codec Playback",
1103			 SUN6I_CODEC_OM_DACA_CTRL,
1104			 SUN6I_CODEC_OM_DACA_CTRL_DACAREN, 0),
1105
1106	/* Mixers */
1107	SOC_MIXER_ARRAY("Left Mixer", SUN6I_CODEC_OM_DACA_CTRL,
1108			SUN6I_CODEC_OM_DACA_CTRL_LMIXEN, 0,
1109			sun6i_codec_mixer_controls),
1110	SOC_MIXER_ARRAY("Right Mixer", SUN6I_CODEC_OM_DACA_CTRL,
1111			SUN6I_CODEC_OM_DACA_CTRL_RMIXEN, 0,
1112			sun6i_codec_mixer_controls),
1113
1114	/* Headphone output path */
1115	SND_SOC_DAPM_MUX("Headphone Source Playback Route",
1116			 SND_SOC_NOPM, 0, 0, sun6i_codec_hp_src),
1117	SND_SOC_DAPM_OUT_DRV("Headphone Amp", SUN6I_CODEC_OM_PA_CTRL,
1118			     SUN6I_CODEC_OM_PA_CTRL_HPPAEN, 0, NULL, 0),
1119	SND_SOC_DAPM_SUPPLY("HPCOM Protection", SUN6I_CODEC_OM_PA_CTRL,
1120			    SUN6I_CODEC_OM_PA_CTRL_COMPTEN, 0, NULL, 0),
1121	SND_SOC_DAPM_REG(snd_soc_dapm_supply, "HPCOM", SUN6I_CODEC_OM_PA_CTRL,
1122			 SUN6I_CODEC_OM_PA_CTRL_HPCOM_CTL, 0x3, 0x3, 0),
1123	SND_SOC_DAPM_OUTPUT("HP"),
1124
1125	/* Line Out path */
1126	SND_SOC_DAPM_MUX("Line Out Source Playback Route",
1127			 SND_SOC_NOPM, 0, 0, sun6i_codec_lineout_src),
1128	SND_SOC_DAPM_OUTPUT("LINEOUT"),
1129};
1130
1131static const struct snd_soc_dapm_route sun6i_codec_codec_dapm_routes[] = {
1132	/* DAC Routes */
1133	{ "Left DAC", NULL, "DAC Enable" },
1134	{ "Right DAC", NULL, "DAC Enable" },
1135
1136	/* Microphone Routes */
1137	{ "Mic1 Amplifier", NULL, "MIC1"},
1138	{ "Mic2 Amplifier Source Route", "Mic2", "MIC2" },
1139	{ "Mic2 Amplifier Source Route", "Mic3", "MIC3" },
1140	{ "Mic2 Amplifier", NULL, "Mic2 Amplifier Source Route"},
1141
1142	/* Left Mixer Routes */
1143	{ "Left Mixer", "DAC Playback Switch", "Left DAC" },
1144	{ "Left Mixer", "DAC Reversed Playback Switch", "Right DAC" },
1145	{ "Left Mixer", "Line In Playback Switch", "LINEIN" },
1146	{ "Left Mixer", "Mic1 Playback Switch", "Mic1 Amplifier" },
1147	{ "Left Mixer", "Mic2 Playback Switch", "Mic2 Amplifier" },
1148
1149	/* Right Mixer Routes */
1150	{ "Right Mixer", "DAC Playback Switch", "Right DAC" },
1151	{ "Right Mixer", "DAC Reversed Playback Switch", "Left DAC" },
1152	{ "Right Mixer", "Line In Playback Switch", "LINEIN" },
1153	{ "Right Mixer", "Mic1 Playback Switch", "Mic1 Amplifier" },
1154	{ "Right Mixer", "Mic2 Playback Switch", "Mic2 Amplifier" },
1155
1156	/* Left ADC Mixer Routes */
1157	{ "Left ADC Mixer", "Mixer Capture Switch", "Left Mixer" },
1158	{ "Left ADC Mixer", "Mixer Reversed Capture Switch", "Right Mixer" },
1159	{ "Left ADC Mixer", "Line In Capture Switch", "LINEIN" },
1160	{ "Left ADC Mixer", "Mic1 Capture Switch", "Mic1 Amplifier" },
1161	{ "Left ADC Mixer", "Mic2 Capture Switch", "Mic2 Amplifier" },
1162
1163	/* Right ADC Mixer Routes */
1164	{ "Right ADC Mixer", "Mixer Capture Switch", "Right Mixer" },
1165	{ "Right ADC Mixer", "Mixer Reversed Capture Switch", "Left Mixer" },
1166	{ "Right ADC Mixer", "Line In Capture Switch", "LINEIN" },
1167	{ "Right ADC Mixer", "Mic1 Capture Switch", "Mic1 Amplifier" },
1168	{ "Right ADC Mixer", "Mic2 Capture Switch", "Mic2 Amplifier" },
1169
1170	/* Headphone Routes */
1171	{ "Headphone Source Playback Route", "DAC", "Left DAC" },
1172	{ "Headphone Source Playback Route", "DAC", "Right DAC" },
1173	{ "Headphone Source Playback Route", "Mixer", "Left Mixer" },
1174	{ "Headphone Source Playback Route", "Mixer", "Right Mixer" },
1175	{ "Headphone Amp", NULL, "Headphone Source Playback Route" },
1176	{ "HP", NULL, "Headphone Amp" },
1177	{ "HPCOM", NULL, "HPCOM Protection" },
1178
1179	/* Line Out Routes */
1180	{ "Line Out Source Playback Route", "Stereo", "Left Mixer" },
1181	{ "Line Out Source Playback Route", "Stereo", "Right Mixer" },
1182	{ "Line Out Source Playback Route", "Mono Differential", "Left Mixer" },
1183	{ "Line Out Source Playback Route", "Mono Differential", "Right Mixer" },
1184	{ "LINEOUT", NULL, "Line Out Source Playback Route" },
1185
1186	/* ADC Routes */
1187	{ "Left ADC", NULL, "ADC Enable" },
1188	{ "Right ADC", NULL, "ADC Enable" },
1189	{ "Left ADC", NULL, "Left ADC Mixer" },
1190	{ "Right ADC", NULL, "Right ADC Mixer" },
1191};
1192
1193static const struct snd_soc_component_driver sun6i_codec_codec = {
1194	.controls		= sun6i_codec_codec_widgets,
1195	.num_controls		= ARRAY_SIZE(sun6i_codec_codec_widgets),
1196	.dapm_widgets		= sun6i_codec_codec_dapm_widgets,
1197	.num_dapm_widgets	= ARRAY_SIZE(sun6i_codec_codec_dapm_widgets),
1198	.dapm_routes		= sun6i_codec_codec_dapm_routes,
1199	.num_dapm_routes	= ARRAY_SIZE(sun6i_codec_codec_dapm_routes),
1200	.idle_bias_on		= 1,
1201	.use_pmdown_time	= 1,
1202	.endianness		= 1,
1203};
1204
1205/* sun8i A23 codec */
1206static const struct snd_kcontrol_new sun8i_a23_codec_codec_controls[] = {
1207	SOC_SINGLE_TLV("DAC Playback Volume", SUN4I_CODEC_DAC_DPC,
1208		       SUN4I_CODEC_DAC_DPC_DVOL, 0x3f, 1,
1209		       sun6i_codec_dvol_scale),
1210};
1211
1212static const struct snd_soc_dapm_widget sun8i_a23_codec_codec_widgets[] = {
1213	/* Digital parts of the ADCs */
1214	SND_SOC_DAPM_SUPPLY("ADC Enable", SUN6I_CODEC_ADC_FIFOC,
1215			    SUN6I_CODEC_ADC_FIFOC_EN_AD, 0, NULL, 0),
1216	/* Digital parts of the DACs */
1217	SND_SOC_DAPM_SUPPLY("DAC Enable", SUN4I_CODEC_DAC_DPC,
1218			    SUN4I_CODEC_DAC_DPC_EN_DA, 0, NULL, 0),
1219
1220};
1221
1222static const struct snd_soc_component_driver sun8i_a23_codec_codec = {
1223	.controls		= sun8i_a23_codec_codec_controls,
1224	.num_controls		= ARRAY_SIZE(sun8i_a23_codec_codec_controls),
1225	.dapm_widgets		= sun8i_a23_codec_codec_widgets,
1226	.num_dapm_widgets	= ARRAY_SIZE(sun8i_a23_codec_codec_widgets),
1227	.idle_bias_on		= 1,
1228	.use_pmdown_time	= 1,
1229	.endianness		= 1,
1230};
1231
1232static const struct snd_soc_component_driver sun4i_codec_component = {
1233	.name			= "sun4i-codec",
1234	.legacy_dai_naming	= 1,
1235#ifdef CONFIG_DEBUG_FS
1236	.debugfs_prefix		= "cpu",
1237#endif
1238};
1239
1240#define SUN4I_CODEC_RATES	SNDRV_PCM_RATE_CONTINUOUS
1241#define SUN4I_CODEC_FORMATS	(SNDRV_PCM_FMTBIT_S16_LE | \
1242				 SNDRV_PCM_FMTBIT_S32_LE)
1243
1244static int sun4i_codec_dai_probe(struct snd_soc_dai *dai)
1245{
1246	struct snd_soc_card *card = snd_soc_dai_get_drvdata(dai);
1247	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card);
1248
1249	snd_soc_dai_init_dma_data(dai, &scodec->playback_dma_data,
1250				  &scodec->capture_dma_data);
1251
1252	return 0;
1253}
1254
1255static struct snd_soc_dai_driver dummy_cpu_dai = {
1256	.name	= "sun4i-codec-cpu-dai",
1257	.probe	= sun4i_codec_dai_probe,
1258	.playback = {
1259		.stream_name	= "Playback",
1260		.channels_min	= 1,
1261		.channels_max	= 2,
1262		.rates		= SUN4I_CODEC_RATES,
1263		.formats	= SUN4I_CODEC_FORMATS,
1264		.sig_bits	= 24,
1265	},
1266	.capture = {
1267		.stream_name	= "Capture",
1268		.channels_min	= 1,
1269		.channels_max	= 2,
1270		.rates 		= SUN4I_CODEC_RATES,
1271		.formats 	= SUN4I_CODEC_FORMATS,
1272		.sig_bits	= 24,
1273	 },
1274};
1275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1276static struct snd_soc_dai_link *sun4i_codec_create_link(struct device *dev,
1277							int *num_links)
1278{
1279	struct snd_soc_dai_link *link = devm_kzalloc(dev, sizeof(*link),
1280						     GFP_KERNEL);
1281	struct snd_soc_dai_link_component *dlc = devm_kzalloc(dev,
1282						3 * sizeof(*dlc), GFP_KERNEL);
1283	if (!link || !dlc)
1284		return NULL;
1285
1286	link->cpus	= &dlc[0];
1287	link->codecs	= &dlc[1];
1288	link->platforms	= &dlc[2];
1289
1290	link->num_cpus		= 1;
1291	link->num_codecs	= 1;
1292	link->num_platforms	= 1;
1293
1294	link->name		= "cdc";
1295	link->stream_name	= "CDC PCM";
1296	link->codecs->dai_name	= "Codec";
1297	link->cpus->dai_name	= dev_name(dev);
1298	link->codecs->name	= dev_name(dev);
1299	link->platforms->name	= dev_name(dev);
1300	link->dai_fmt		= SND_SOC_DAIFMT_I2S;
1301
1302	*num_links = 1;
1303
1304	return link;
1305};
1306
1307static int sun4i_codec_spk_event(struct snd_soc_dapm_widget *w,
1308				 struct snd_kcontrol *k, int event)
1309{
1310	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(w->dapm->card);
1311
1312	gpiod_set_value_cansleep(scodec->gpio_pa,
1313				 !!SND_SOC_DAPM_EVENT_ON(event));
1314
1315	if (SND_SOC_DAPM_EVENT_ON(event)) {
1316		/*
1317		 * Need a delay to wait for DAC to push the data. 700ms seems
1318		 * to be the best compromise not to feel this delay while
1319		 * playing a sound.
1320		 */
1321		msleep(700);
1322	}
1323
1324	return 0;
1325}
1326
1327static const struct snd_soc_dapm_widget sun4i_codec_card_dapm_widgets[] = {
1328	SND_SOC_DAPM_SPK("Speaker", sun4i_codec_spk_event),
1329};
1330
1331static const struct snd_soc_dapm_route sun4i_codec_card_dapm_routes[] = {
1332	{ "Speaker", NULL, "HP Right" },
1333	{ "Speaker", NULL, "HP Left" },
1334};
1335
1336static struct snd_soc_card *sun4i_codec_create_card(struct device *dev)
1337{
1338	struct snd_soc_card *card;
1339
1340	card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
1341	if (!card)
1342		return ERR_PTR(-ENOMEM);
1343
1344	card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
1345	if (!card->dai_link)
1346		return ERR_PTR(-ENOMEM);
1347
1348	card->dev		= dev;
1349	card->owner		= THIS_MODULE;
1350	card->name		= "sun4i-codec";
1351	card->dapm_widgets	= sun4i_codec_card_dapm_widgets;
1352	card->num_dapm_widgets	= ARRAY_SIZE(sun4i_codec_card_dapm_widgets);
1353	card->dapm_routes	= sun4i_codec_card_dapm_routes;
1354	card->num_dapm_routes	= ARRAY_SIZE(sun4i_codec_card_dapm_routes);
1355
1356	return card;
1357};
1358
1359static const struct snd_soc_dapm_widget sun6i_codec_card_dapm_widgets[] = {
1360	SND_SOC_DAPM_HP("Headphone", NULL),
1361	SND_SOC_DAPM_LINE("Line In", NULL),
1362	SND_SOC_DAPM_LINE("Line Out", NULL),
1363	SND_SOC_DAPM_MIC("Headset Mic", NULL),
1364	SND_SOC_DAPM_MIC("Mic", NULL),
1365	SND_SOC_DAPM_SPK("Speaker", sun4i_codec_spk_event),
1366};
1367
1368static struct snd_soc_card *sun6i_codec_create_card(struct device *dev)
1369{
1370	struct snd_soc_card *card;
1371	int ret;
1372
1373	card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
1374	if (!card)
1375		return ERR_PTR(-ENOMEM);
1376
1377	card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
1378	if (!card->dai_link)
1379		return ERR_PTR(-ENOMEM);
1380
1381	card->dev		= dev;
1382	card->owner		= THIS_MODULE;
1383	card->name		= "A31 Audio Codec";
1384	card->dapm_widgets	= sun6i_codec_card_dapm_widgets;
1385	card->num_dapm_widgets	= ARRAY_SIZE(sun6i_codec_card_dapm_widgets);
1386	card->fully_routed	= true;
1387
1388	ret = snd_soc_of_parse_audio_routing(card, "allwinner,audio-routing");
1389	if (ret)
1390		dev_warn(dev, "failed to parse audio-routing: %d\n", ret);
1391
1392	return card;
1393};
1394
1395/* Connect digital side enables to analog side widgets */
1396static const struct snd_soc_dapm_route sun8i_codec_card_routes[] = {
1397	/* ADC Routes */
1398	{ "Left ADC", NULL, "ADC Enable" },
1399	{ "Right ADC", NULL, "ADC Enable" },
1400	{ "Codec Capture", NULL, "Left ADC" },
1401	{ "Codec Capture", NULL, "Right ADC" },
1402
1403	/* DAC Routes */
1404	{ "Left DAC", NULL, "DAC Enable" },
1405	{ "Right DAC", NULL, "DAC Enable" },
1406	{ "Left DAC", NULL, "Codec Playback" },
1407	{ "Right DAC", NULL, "Codec Playback" },
1408};
1409
1410static struct snd_soc_aux_dev aux_dev = {
1411	.dlc = COMP_EMPTY(),
1412};
1413
1414static struct snd_soc_card *sun8i_a23_codec_create_card(struct device *dev)
1415{
1416	struct snd_soc_card *card;
1417	int ret;
1418
1419	card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
1420	if (!card)
1421		return ERR_PTR(-ENOMEM);
1422
1423	aux_dev.dlc.of_node = of_parse_phandle(dev->of_node,
1424						 "allwinner,codec-analog-controls",
1425						 0);
1426	if (!aux_dev.dlc.of_node) {
1427		dev_err(dev, "Can't find analog controls for codec.\n");
1428		return ERR_PTR(-EINVAL);
1429	}
1430
1431	card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
1432	if (!card->dai_link)
1433		return ERR_PTR(-ENOMEM);
1434
1435	card->dev		= dev;
1436	card->owner		= THIS_MODULE;
1437	card->name		= "A23 Audio Codec";
1438	card->dapm_widgets	= sun6i_codec_card_dapm_widgets;
1439	card->num_dapm_widgets	= ARRAY_SIZE(sun6i_codec_card_dapm_widgets);
1440	card->dapm_routes	= sun8i_codec_card_routes;
1441	card->num_dapm_routes	= ARRAY_SIZE(sun8i_codec_card_routes);
1442	card->aux_dev		= &aux_dev;
1443	card->num_aux_devs	= 1;
1444	card->fully_routed	= true;
1445
1446	ret = snd_soc_of_parse_audio_routing(card, "allwinner,audio-routing");
1447	if (ret)
1448		dev_warn(dev, "failed to parse audio-routing: %d\n", ret);
1449
1450	return card;
1451};
1452
1453static struct snd_soc_card *sun8i_h3_codec_create_card(struct device *dev)
1454{
1455	struct snd_soc_card *card;
1456	int ret;
1457
1458	card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
1459	if (!card)
1460		return ERR_PTR(-ENOMEM);
1461
1462	aux_dev.dlc.of_node = of_parse_phandle(dev->of_node,
1463						 "allwinner,codec-analog-controls",
1464						 0);
1465	if (!aux_dev.dlc.of_node) {
1466		dev_err(dev, "Can't find analog controls for codec.\n");
1467		return ERR_PTR(-EINVAL);
1468	}
1469
1470	card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
1471	if (!card->dai_link)
1472		return ERR_PTR(-ENOMEM);
1473
1474	card->dev		= dev;
1475	card->owner		= THIS_MODULE;
1476	card->name		= "H3 Audio Codec";
1477	card->dapm_widgets	= sun6i_codec_card_dapm_widgets;
1478	card->num_dapm_widgets	= ARRAY_SIZE(sun6i_codec_card_dapm_widgets);
1479	card->dapm_routes	= sun8i_codec_card_routes;
1480	card->num_dapm_routes	= ARRAY_SIZE(sun8i_codec_card_routes);
1481	card->aux_dev		= &aux_dev;
1482	card->num_aux_devs	= 1;
1483	card->fully_routed	= true;
1484
1485	ret = snd_soc_of_parse_audio_routing(card, "allwinner,audio-routing");
1486	if (ret)
1487		dev_warn(dev, "failed to parse audio-routing: %d\n", ret);
1488
1489	return card;
1490};
1491
1492static struct snd_soc_card *sun8i_v3s_codec_create_card(struct device *dev)
1493{
1494	struct snd_soc_card *card;
1495	int ret;
1496
1497	card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
1498	if (!card)
1499		return ERR_PTR(-ENOMEM);
1500
1501	aux_dev.dlc.of_node = of_parse_phandle(dev->of_node,
1502						 "allwinner,codec-analog-controls",
1503						 0);
1504	if (!aux_dev.dlc.of_node) {
1505		dev_err(dev, "Can't find analog controls for codec.\n");
1506		return ERR_PTR(-EINVAL);
1507	}
1508
1509	card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
1510	if (!card->dai_link)
1511		return ERR_PTR(-ENOMEM);
1512
1513	card->dev		= dev;
1514	card->owner		= THIS_MODULE;
1515	card->name		= "V3s Audio Codec";
1516	card->dapm_widgets	= sun6i_codec_card_dapm_widgets;
1517	card->num_dapm_widgets	= ARRAY_SIZE(sun6i_codec_card_dapm_widgets);
1518	card->dapm_routes	= sun8i_codec_card_routes;
1519	card->num_dapm_routes	= ARRAY_SIZE(sun8i_codec_card_routes);
1520	card->aux_dev		= &aux_dev;
1521	card->num_aux_devs	= 1;
1522	card->fully_routed	= true;
1523
1524	ret = snd_soc_of_parse_audio_routing(card, "allwinner,audio-routing");
1525	if (ret)
1526		dev_warn(dev, "failed to parse audio-routing: %d\n", ret);
1527
1528	return card;
1529};
1530
1531static const struct regmap_config sun4i_codec_regmap_config = {
1532	.reg_bits	= 32,
1533	.reg_stride	= 4,
1534	.val_bits	= 32,
1535	.max_register	= SUN4I_CODEC_ADC_RXCNT,
1536};
1537
1538static const struct regmap_config sun6i_codec_regmap_config = {
1539	.reg_bits	= 32,
1540	.reg_stride	= 4,
1541	.val_bits	= 32,
1542	.max_register	= SUN6I_CODEC_HMIC_DATA,
1543};
1544
1545static const struct regmap_config sun7i_codec_regmap_config = {
1546	.reg_bits	= 32,
1547	.reg_stride	= 4,
1548	.val_bits	= 32,
1549	.max_register	= SUN7I_CODEC_AC_MIC_PHONE_CAL,
1550};
1551
1552static const struct regmap_config sun8i_a23_codec_regmap_config = {
1553	.reg_bits	= 32,
1554	.reg_stride	= 4,
1555	.val_bits	= 32,
1556	.max_register	= SUN8I_A23_CODEC_ADC_RXCNT,
1557};
1558
1559static const struct regmap_config sun8i_h3_codec_regmap_config = {
1560	.reg_bits	= 32,
1561	.reg_stride	= 4,
1562	.val_bits	= 32,
1563	.max_register	= SUN8I_H3_CODEC_ADC_DBG,
1564};
1565
1566static const struct regmap_config sun8i_v3s_codec_regmap_config = {
1567	.reg_bits	= 32,
1568	.reg_stride	= 4,
1569	.val_bits	= 32,
1570	.max_register	= SUN8I_H3_CODEC_ADC_DBG,
1571};
1572
1573struct sun4i_codec_quirks {
1574	const struct regmap_config *regmap_config;
1575	const struct snd_soc_component_driver *codec;
1576	struct snd_soc_card * (*create_card)(struct device *dev);
1577	struct reg_field reg_adc_fifoc;	/* used for regmap_field */
1578	unsigned int reg_dac_txdata;	/* TX FIFO offset for DMA config */
1579	unsigned int reg_adc_rxdata;	/* RX FIFO offset for DMA config */
1580	bool has_reset;
1581};
1582
1583static const struct sun4i_codec_quirks sun4i_codec_quirks = {
1584	.regmap_config	= &sun4i_codec_regmap_config,
1585	.codec		= &sun4i_codec_codec,
1586	.create_card	= sun4i_codec_create_card,
1587	.reg_adc_fifoc	= REG_FIELD(SUN4I_CODEC_ADC_FIFOC, 0, 31),
1588	.reg_dac_txdata	= SUN4I_CODEC_DAC_TXDATA,
1589	.reg_adc_rxdata	= SUN4I_CODEC_ADC_RXDATA,
1590};
1591
1592static const struct sun4i_codec_quirks sun6i_a31_codec_quirks = {
1593	.regmap_config	= &sun6i_codec_regmap_config,
1594	.codec		= &sun6i_codec_codec,
1595	.create_card	= sun6i_codec_create_card,
1596	.reg_adc_fifoc	= REG_FIELD(SUN6I_CODEC_ADC_FIFOC, 0, 31),
1597	.reg_dac_txdata	= SUN4I_CODEC_DAC_TXDATA,
1598	.reg_adc_rxdata	= SUN6I_CODEC_ADC_RXDATA,
1599	.has_reset	= true,
1600};
1601
1602static const struct sun4i_codec_quirks sun7i_codec_quirks = {
1603	.regmap_config	= &sun7i_codec_regmap_config,
1604	.codec		= &sun7i_codec_codec,
1605	.create_card	= sun4i_codec_create_card,
1606	.reg_adc_fifoc	= REG_FIELD(SUN4I_CODEC_ADC_FIFOC, 0, 31),
1607	.reg_dac_txdata	= SUN4I_CODEC_DAC_TXDATA,
1608	.reg_adc_rxdata	= SUN4I_CODEC_ADC_RXDATA,
1609};
1610
1611static const struct sun4i_codec_quirks sun8i_a23_codec_quirks = {
1612	.regmap_config	= &sun8i_a23_codec_regmap_config,
1613	.codec		= &sun8i_a23_codec_codec,
1614	.create_card	= sun8i_a23_codec_create_card,
1615	.reg_adc_fifoc	= REG_FIELD(SUN6I_CODEC_ADC_FIFOC, 0, 31),
1616	.reg_dac_txdata	= SUN4I_CODEC_DAC_TXDATA,
1617	.reg_adc_rxdata	= SUN6I_CODEC_ADC_RXDATA,
1618	.has_reset	= true,
1619};
1620
1621static const struct sun4i_codec_quirks sun8i_h3_codec_quirks = {
1622	.regmap_config	= &sun8i_h3_codec_regmap_config,
1623	/*
1624	 * TODO Share the codec structure with A23 for now.
1625	 * This should be split out when adding digital audio
1626	 * processing support for the H3.
1627	 */
1628	.codec		= &sun8i_a23_codec_codec,
1629	.create_card	= sun8i_h3_codec_create_card,
1630	.reg_adc_fifoc	= REG_FIELD(SUN6I_CODEC_ADC_FIFOC, 0, 31),
1631	.reg_dac_txdata	= SUN8I_H3_CODEC_DAC_TXDATA,
1632	.reg_adc_rxdata	= SUN6I_CODEC_ADC_RXDATA,
1633	.has_reset	= true,
1634};
1635
1636static const struct sun4i_codec_quirks sun8i_v3s_codec_quirks = {
1637	.regmap_config	= &sun8i_v3s_codec_regmap_config,
1638	/*
1639	 * TODO The codec structure should be split out, like
1640	 * H3, when adding digital audio processing support.
1641	 */
1642	.codec		= &sun8i_a23_codec_codec,
1643	.create_card	= sun8i_v3s_codec_create_card,
1644	.reg_adc_fifoc	= REG_FIELD(SUN6I_CODEC_ADC_FIFOC, 0, 31),
1645	.reg_dac_txdata	= SUN8I_H3_CODEC_DAC_TXDATA,
1646	.reg_adc_rxdata	= SUN6I_CODEC_ADC_RXDATA,
1647	.has_reset	= true,
1648};
1649
1650static const struct of_device_id sun4i_codec_of_match[] = {
1651	{
1652		.compatible = "allwinner,sun4i-a10-codec",
1653		.data = &sun4i_codec_quirks,
1654	},
1655	{
1656		.compatible = "allwinner,sun6i-a31-codec",
1657		.data = &sun6i_a31_codec_quirks,
1658	},
1659	{
1660		.compatible = "allwinner,sun7i-a20-codec",
1661		.data = &sun7i_codec_quirks,
1662	},
1663	{
1664		.compatible = "allwinner,sun8i-a23-codec",
1665		.data = &sun8i_a23_codec_quirks,
1666	},
1667	{
1668		.compatible = "allwinner,sun8i-h3-codec",
1669		.data = &sun8i_h3_codec_quirks,
1670	},
1671	{
1672		.compatible = "allwinner,sun8i-v3s-codec",
1673		.data = &sun8i_v3s_codec_quirks,
1674	},
1675	{}
1676};
1677MODULE_DEVICE_TABLE(of, sun4i_codec_of_match);
1678
1679static int sun4i_codec_probe(struct platform_device *pdev)
1680{
1681	struct snd_soc_card *card;
1682	struct sun4i_codec *scodec;
1683	const struct sun4i_codec_quirks *quirks;
1684	struct resource *res;
1685	void __iomem *base;
1686	int ret;
1687
1688	scodec = devm_kzalloc(&pdev->dev, sizeof(*scodec), GFP_KERNEL);
1689	if (!scodec)
1690		return -ENOMEM;
1691
1692	scodec->dev = &pdev->dev;
1693
1694	base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
1695	if (IS_ERR(base))
 
 
1696		return PTR_ERR(base);
1697
1698	quirks = of_device_get_match_data(&pdev->dev);
1699	if (quirks == NULL) {
1700		dev_err(&pdev->dev, "Failed to determine the quirks to use\n");
1701		return -ENODEV;
1702	}
1703
1704	scodec->regmap = devm_regmap_init_mmio(&pdev->dev, base,
1705					       quirks->regmap_config);
1706	if (IS_ERR(scodec->regmap)) {
1707		dev_err(&pdev->dev, "Failed to create our regmap\n");
1708		return PTR_ERR(scodec->regmap);
1709	}
1710
1711	/* Get the clocks from the DT */
1712	scodec->clk_apb = devm_clk_get(&pdev->dev, "apb");
1713	if (IS_ERR(scodec->clk_apb)) {
1714		dev_err(&pdev->dev, "Failed to get the APB clock\n");
1715		return PTR_ERR(scodec->clk_apb);
1716	}
1717
1718	scodec->clk_module = devm_clk_get(&pdev->dev, "codec");
1719	if (IS_ERR(scodec->clk_module)) {
1720		dev_err(&pdev->dev, "Failed to get the module clock\n");
1721		return PTR_ERR(scodec->clk_module);
1722	}
1723
1724	if (quirks->has_reset) {
1725		scodec->rst = devm_reset_control_get_exclusive(&pdev->dev,
1726							       NULL);
1727		if (IS_ERR(scodec->rst)) {
1728			dev_err(&pdev->dev, "Failed to get reset control\n");
1729			return PTR_ERR(scodec->rst);
1730		}
1731	}
1732
1733	scodec->gpio_pa = devm_gpiod_get_optional(&pdev->dev, "allwinner,pa",
1734						  GPIOD_OUT_LOW);
1735	if (IS_ERR(scodec->gpio_pa)) {
1736		ret = PTR_ERR(scodec->gpio_pa);
1737		dev_err_probe(&pdev->dev, ret, "Failed to get pa gpio\n");
1738		return ret;
1739	}
1740
1741	/* reg_field setup */
1742	scodec->reg_adc_fifoc = devm_regmap_field_alloc(&pdev->dev,
1743							scodec->regmap,
1744							quirks->reg_adc_fifoc);
1745	if (IS_ERR(scodec->reg_adc_fifoc)) {
1746		ret = PTR_ERR(scodec->reg_adc_fifoc);
1747		dev_err(&pdev->dev, "Failed to create regmap fields: %d\n",
1748			ret);
1749		return ret;
1750	}
1751
1752	/* Enable the bus clock */
1753	if (clk_prepare_enable(scodec->clk_apb)) {
1754		dev_err(&pdev->dev, "Failed to enable the APB clock\n");
1755		return -EINVAL;
1756	}
1757
1758	/* Deassert the reset control */
1759	if (scodec->rst) {
1760		ret = reset_control_deassert(scodec->rst);
1761		if (ret) {
1762			dev_err(&pdev->dev,
1763				"Failed to deassert the reset control\n");
1764			goto err_clk_disable;
1765		}
1766	}
1767
1768	/* DMA configuration for TX FIFO */
1769	scodec->playback_dma_data.addr = res->start + quirks->reg_dac_txdata;
1770	scodec->playback_dma_data.maxburst = 8;
1771	scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1772
1773	/* DMA configuration for RX FIFO */
1774	scodec->capture_dma_data.addr = res->start + quirks->reg_adc_rxdata;
1775	scodec->capture_dma_data.maxburst = 8;
1776	scodec->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1777
1778	ret = devm_snd_soc_register_component(&pdev->dev, quirks->codec,
1779				     &sun4i_codec_dai, 1);
1780	if (ret) {
1781		dev_err(&pdev->dev, "Failed to register our codec\n");
1782		goto err_assert_reset;
1783	}
1784
1785	ret = devm_snd_soc_register_component(&pdev->dev,
1786					      &sun4i_codec_component,
1787					      &dummy_cpu_dai, 1);
1788	if (ret) {
1789		dev_err(&pdev->dev, "Failed to register our DAI\n");
1790		goto err_assert_reset;
1791	}
1792
1793	ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
1794	if (ret) {
1795		dev_err(&pdev->dev, "Failed to register against DMAEngine\n");
1796		goto err_assert_reset;
1797	}
1798
1799	card = quirks->create_card(&pdev->dev);
1800	if (IS_ERR(card)) {
1801		ret = PTR_ERR(card);
1802		dev_err(&pdev->dev, "Failed to create our card\n");
1803		goto err_assert_reset;
1804	}
1805
 
1806	snd_soc_card_set_drvdata(card, scodec);
1807
1808	ret = snd_soc_register_card(card);
1809	if (ret) {
1810		dev_err_probe(&pdev->dev, ret, "Failed to register our card\n");
1811		goto err_assert_reset;
1812	}
1813
1814	return 0;
1815
1816err_assert_reset:
1817	if (scodec->rst)
1818		reset_control_assert(scodec->rst);
1819err_clk_disable:
1820	clk_disable_unprepare(scodec->clk_apb);
1821	return ret;
1822}
1823
1824static int sun4i_codec_remove(struct platform_device *pdev)
1825{
1826	struct snd_soc_card *card = platform_get_drvdata(pdev);
1827	struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card);
1828
1829	snd_soc_unregister_card(card);
1830	if (scodec->rst)
1831		reset_control_assert(scodec->rst);
1832	clk_disable_unprepare(scodec->clk_apb);
1833
1834	return 0;
1835}
1836
1837static struct platform_driver sun4i_codec_driver = {
1838	.driver = {
1839		.name = "sun4i-codec",
1840		.of_match_table = sun4i_codec_of_match,
1841	},
1842	.probe = sun4i_codec_probe,
1843	.remove = sun4i_codec_remove,
1844};
1845module_platform_driver(sun4i_codec_driver);
1846
1847MODULE_DESCRIPTION("Allwinner A10 codec driver");
1848MODULE_AUTHOR("Emilio López <emilio@elopez.com.ar>");
1849MODULE_AUTHOR("Jon Smirl <jonsmirl@gmail.com>");
1850MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
1851MODULE_AUTHOR("Chen-Yu Tsai <wens@csie.org>");
1852MODULE_LICENSE("GPL");