blob: a10251f4932e3ed12308cd2fc991301c408ed139 [file] [log] [blame]
Emilio López45fb6b62015-09-12 15:26:24 +02001/*
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>
Adam Sampson474d1472015-10-27 21:00:45 +00005 * Copyright 2015 Adam Sampson <ats@offog.org>
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08006 * Copyright 2016 Chen-Yu Tsai <wens@csie.org>
Emilio López45fb6b62015-09-12 15:26:24 +02007 *
8 * Based on the Allwinner SDK driver, released under the GPL.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 */
20
21#include <linux/init.h>
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/delay.h>
26#include <linux/slab.h>
27#include <linux/of.h>
Emilio López45fb6b62015-09-12 15:26:24 +020028#include <linux/of_address.h>
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +080029#include <linux/of_device.h>
30#include <linux/of_platform.h>
Emilio López45fb6b62015-09-12 15:26:24 +020031#include <linux/clk.h>
32#include <linux/regmap.h>
Hans de Goede40592622015-12-11 19:43:57 +010033#include <linux/gpio/consumer.h>
Emilio López45fb6b62015-09-12 15:26:24 +020034
35#include <sound/core.h>
36#include <sound/pcm.h>
37#include <sound/pcm_params.h>
38#include <sound/soc.h>
39#include <sound/tlv.h>
40#include <sound/initval.h>
41#include <sound/dmaengine_pcm.h>
42
Chen-Yu Tsaibd720ec2016-11-03 15:55:45 +080043/* Codec DAC digital controls and FIFO registers */
Emilio López45fb6b62015-09-12 15:26:24 +020044#define SUN4I_CODEC_DAC_DPC (0x00)
45#define SUN4I_CODEC_DAC_DPC_EN_DA (31)
46#define SUN4I_CODEC_DAC_DPC_DVOL (12)
47#define SUN4I_CODEC_DAC_FIFOC (0x04)
48#define SUN4I_CODEC_DAC_FIFOC_DAC_FS (29)
49#define SUN4I_CODEC_DAC_FIFOC_FIR_VERSION (28)
50#define SUN4I_CODEC_DAC_FIFOC_SEND_LASAT (26)
51#define SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE (24)
52#define SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT (21)
53#define SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL (8)
54#define SUN4I_CODEC_DAC_FIFOC_MONO_EN (6)
55#define SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS (5)
56#define SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN (4)
57#define SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH (0)
58#define SUN4I_CODEC_DAC_FIFOS (0x08)
59#define SUN4I_CODEC_DAC_TXDATA (0x0c)
Chen-Yu Tsaibd720ec2016-11-03 15:55:45 +080060
61/* Codec DAC side analog signal controls */
Emilio López45fb6b62015-09-12 15:26:24 +020062#define SUN4I_CODEC_DAC_ACTL (0x10)
63#define SUN4I_CODEC_DAC_ACTL_DACAENR (31)
64#define SUN4I_CODEC_DAC_ACTL_DACAENL (30)
65#define SUN4I_CODEC_DAC_ACTL_MIXEN (29)
66#define SUN4I_CODEC_DAC_ACTL_LDACLMIXS (15)
67#define SUN4I_CODEC_DAC_ACTL_RDACRMIXS (14)
68#define SUN4I_CODEC_DAC_ACTL_LDACRMIXS (13)
69#define SUN4I_CODEC_DAC_ACTL_DACPAS (8)
70#define SUN4I_CODEC_DAC_ACTL_MIXPAS (7)
71#define SUN4I_CODEC_DAC_ACTL_PA_MUTE (6)
72#define SUN4I_CODEC_DAC_ACTL_PA_VOL (0)
73#define SUN4I_CODEC_DAC_TUNE (0x14)
74#define SUN4I_CODEC_DAC_DEBUG (0x18)
75
Chen-Yu Tsaibd720ec2016-11-03 15:55:45 +080076/* Codec ADC digital controls and FIFO registers */
Emilio López45fb6b62015-09-12 15:26:24 +020077#define SUN4I_CODEC_ADC_FIFOC (0x1c)
Maxime Ripard1fb34b42015-11-30 16:37:47 +010078#define SUN4I_CODEC_ADC_FIFOC_ADC_FS (29)
Emilio López45fb6b62015-09-12 15:26:24 +020079#define SUN4I_CODEC_ADC_FIFOC_EN_AD (28)
80#define SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE (24)
81#define SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL (8)
82#define SUN4I_CODEC_ADC_FIFOC_MONO_EN (7)
83#define SUN4I_CODEC_ADC_FIFOC_RX_SAMPLE_BITS (6)
84#define SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN (4)
85#define SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH (0)
86#define SUN4I_CODEC_ADC_FIFOS (0x20)
87#define SUN4I_CODEC_ADC_RXDATA (0x24)
Chen-Yu Tsaibd720ec2016-11-03 15:55:45 +080088
89/* Codec ADC side analog signal controls */
Emilio López45fb6b62015-09-12 15:26:24 +020090#define SUN4I_CODEC_ADC_ACTL (0x28)
91#define SUN4I_CODEC_ADC_ACTL_ADC_R_EN (31)
92#define SUN4I_CODEC_ADC_ACTL_ADC_L_EN (30)
93#define SUN4I_CODEC_ADC_ACTL_PREG1EN (29)
94#define SUN4I_CODEC_ADC_ACTL_PREG2EN (28)
95#define SUN4I_CODEC_ADC_ACTL_VMICEN (27)
96#define SUN4I_CODEC_ADC_ACTL_VADCG (20)
97#define SUN4I_CODEC_ADC_ACTL_ADCIS (17)
98#define SUN4I_CODEC_ADC_ACTL_PA_EN (4)
99#define SUN4I_CODEC_ADC_ACTL_DDE (3)
100#define SUN4I_CODEC_ADC_DEBUG (0x2c)
101
Chen-Yu Tsaibd720ec2016-11-03 15:55:45 +0800102/* FIFO counters */
Emilio López45fb6b62015-09-12 15:26:24 +0200103#define SUN4I_CODEC_DAC_TXCNT (0x30)
104#define SUN4I_CODEC_ADC_RXCNT (0x34)
Chen-Yu Tsaibd720ec2016-11-03 15:55:45 +0800105
106/* Calibration register (sun7i only) */
Danny Milosavljevic4f0c4e92016-09-22 09:13:12 +0200107#define SUN7I_CODEC_AC_DAC_CAL (0x38)
Chen-Yu Tsaibd720ec2016-11-03 15:55:45 +0800108
109/* Microphone controls (sun7i only) */
Danny Milosavljevic4f0c4e92016-09-22 09:13:12 +0200110#define SUN7I_CODEC_AC_MIC_PHONE_CAL (0x3c)
Emilio López45fb6b62015-09-12 15:26:24 +0200111
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800112/*
113 * sun6i specific registers
114 *
115 * sun6i shares the same digital control and FIFO registers as sun4i,
116 * but only the DAC digital controls are at the same offset. The others
117 * have been moved around to accommodate extra analog controls.
118 */
119
120/* Codec DAC digital controls and FIFO registers */
121#define SUN6I_CODEC_ADC_FIFOC (0x10)
122#define SUN6I_CODEC_ADC_FIFOC_EN_AD (28)
123#define SUN6I_CODEC_ADC_FIFOS (0x14)
124#define SUN6I_CODEC_ADC_RXDATA (0x18)
125
126/* Output mixer and gain controls */
127#define SUN6I_CODEC_OM_DACA_CTRL (0x20)
128#define SUN6I_CODEC_OM_DACA_CTRL_DACAREN (31)
129#define SUN6I_CODEC_OM_DACA_CTRL_DACALEN (30)
130#define SUN6I_CODEC_OM_DACA_CTRL_RMIXEN (29)
131#define SUN6I_CODEC_OM_DACA_CTRL_LMIXEN (28)
132#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_MIC1 (23)
133#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_MIC2 (22)
134#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_PHONE (21)
135#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_PHONEP (20)
136#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_LINEINR (19)
137#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACR (18)
138#define SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACL (17)
139#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_MIC1 (16)
140#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_MIC2 (15)
141#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_PHONE (14)
142#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_PHONEN (13)
143#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_LINEINL (12)
144#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACL (11)
145#define SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACR (10)
146#define SUN6I_CODEC_OM_DACA_CTRL_RHPIS (9)
147#define SUN6I_CODEC_OM_DACA_CTRL_LHPIS (8)
148#define SUN6I_CODEC_OM_DACA_CTRL_RHPPAMUTE (7)
149#define SUN6I_CODEC_OM_DACA_CTRL_LHPPAMUTE (6)
150#define SUN6I_CODEC_OM_DACA_CTRL_HPVOL (0)
151#define SUN6I_CODEC_OM_PA_CTRL (0x24)
152#define SUN6I_CODEC_OM_PA_CTRL_HPPAEN (31)
153#define SUN6I_CODEC_OM_PA_CTRL_HPCOM_CTL (29)
154#define SUN6I_CODEC_OM_PA_CTRL_COMPTEN (28)
155#define SUN6I_CODEC_OM_PA_CTRL_MIC1G (15)
156#define SUN6I_CODEC_OM_PA_CTRL_MIC2G (12)
157#define SUN6I_CODEC_OM_PA_CTRL_LINEING (9)
158#define SUN6I_CODEC_OM_PA_CTRL_PHONEG (6)
159#define SUN6I_CODEC_OM_PA_CTRL_PHONEPG (3)
160#define SUN6I_CODEC_OM_PA_CTRL_PHONENG (0)
161
162/* Microphone, line out and phone out controls */
163#define SUN6I_CODEC_MIC_CTRL (0x28)
164#define SUN6I_CODEC_MIC_CTRL_HBIASEN (31)
165#define SUN6I_CODEC_MIC_CTRL_MBIASEN (30)
166#define SUN6I_CODEC_MIC_CTRL_MIC1AMPEN (28)
167#define SUN6I_CODEC_MIC_CTRL_MIC1BOOST (25)
168#define SUN6I_CODEC_MIC_CTRL_MIC2AMPEN (24)
169#define SUN6I_CODEC_MIC_CTRL_MIC2BOOST (21)
170#define SUN6I_CODEC_MIC_CTRL_MIC2SLT (20)
171#define SUN6I_CODEC_MIC_CTRL_LINEOUTLEN (19)
172#define SUN6I_CODEC_MIC_CTRL_LINEOUTREN (18)
173#define SUN6I_CODEC_MIC_CTRL_LINEOUTLSRC (17)
174#define SUN6I_CODEC_MIC_CTRL_LINEOUTRSRC (16)
175#define SUN6I_CODEC_MIC_CTRL_LINEOUTVC (11)
176#define SUN6I_CODEC_MIC_CTRL_PHONEPREG (8)
177
178/* ADC mixer controls */
179#define SUN6I_CODEC_ADC_ACTL (0x2c)
180#define SUN6I_CODEC_ADC_ACTL_ADCREN (31)
181#define SUN6I_CODEC_ADC_ACTL_ADCLEN (30)
182#define SUN6I_CODEC_ADC_ACTL_ADCRG (27)
183#define SUN6I_CODEC_ADC_ACTL_ADCLG (24)
184#define SUN6I_CODEC_ADC_ACTL_RADCMIX_MIC1 (13)
185#define SUN6I_CODEC_ADC_ACTL_RADCMIX_MIC2 (12)
186#define SUN6I_CODEC_ADC_ACTL_RADCMIX_PHONE (11)
187#define SUN6I_CODEC_ADC_ACTL_RADCMIX_PHONEP (10)
188#define SUN6I_CODEC_ADC_ACTL_RADCMIX_LINEINR (9)
189#define SUN6I_CODEC_ADC_ACTL_RADCMIX_OMIXR (8)
190#define SUN6I_CODEC_ADC_ACTL_RADCMIX_OMIXL (7)
191#define SUN6I_CODEC_ADC_ACTL_LADCMIX_MIC1 (6)
192#define SUN6I_CODEC_ADC_ACTL_LADCMIX_MIC2 (5)
193#define SUN6I_CODEC_ADC_ACTL_LADCMIX_PHONE (4)
194#define SUN6I_CODEC_ADC_ACTL_LADCMIX_PHONEN (3)
195#define SUN6I_CODEC_ADC_ACTL_LADCMIX_LINEINL (2)
196#define SUN6I_CODEC_ADC_ACTL_LADCMIX_OMIXL (1)
197#define SUN6I_CODEC_ADC_ACTL_LADCMIX_OMIXR (0)
198
199/* Analog performance tuning controls */
200#define SUN6I_CODEC_ADDA_TUNE (0x30)
201
202/* Calibration controls */
203#define SUN6I_CODEC_CALIBRATION (0x34)
204
205/* FIFO counters */
206#define SUN6I_CODEC_DAC_TXCNT (0x40)
207#define SUN6I_CODEC_ADC_RXCNT (0x44)
208
209/* headset jack detection and button support registers */
210#define SUN6I_CODEC_HMIC_CTL (0x50)
211#define SUN6I_CODEC_HMIC_DATA (0x54)
212
213/* TODO sun6i DAP (Digital Audio Processing) bits */
214
Emilio López45fb6b62015-09-12 15:26:24 +0200215struct sun4i_codec {
216 struct device *dev;
217 struct regmap *regmap;
218 struct clk *clk_apb;
219 struct clk *clk_module;
Hans de Goede40592622015-12-11 19:43:57 +0100220 struct gpio_desc *gpio_pa;
Emilio López45fb6b62015-09-12 15:26:24 +0200221
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800222 /* ADC_FIFOC register is at different offset on different SoCs */
223 struct regmap_field *reg_adc_fifoc;
224
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100225 struct snd_dmaengine_dai_dma_data capture_dma_data;
Emilio López45fb6b62015-09-12 15:26:24 +0200226 struct snd_dmaengine_dai_dma_data playback_dma_data;
227};
228
229static void sun4i_codec_start_playback(struct sun4i_codec *scodec)
230{
Emilio López45fb6b62015-09-12 15:26:24 +0200231 /* Flush TX FIFO */
232 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
233 BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH),
234 BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH));
235
236 /* Enable DAC DRQ */
237 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
238 BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN),
239 BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN));
240}
241
242static void sun4i_codec_stop_playback(struct sun4i_codec *scodec)
243{
Emilio López45fb6b62015-09-12 15:26:24 +0200244 /* Disable DAC DRQ */
245 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
246 BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN),
247 0);
248}
249
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100250static void sun4i_codec_start_capture(struct sun4i_codec *scodec)
251{
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100252 /* Enable ADC DRQ */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800253 regmap_field_update_bits(scodec->reg_adc_fifoc,
254 BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN),
255 BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN));
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100256}
257
258static void sun4i_codec_stop_capture(struct sun4i_codec *scodec)
259{
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100260 /* Disable ADC DRQ */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800261 regmap_field_update_bits(scodec->reg_adc_fifoc,
262 BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN), 0);
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100263}
264
Emilio López45fb6b62015-09-12 15:26:24 +0200265static int sun4i_codec_trigger(struct snd_pcm_substream *substream, int cmd,
266 struct snd_soc_dai *dai)
267{
268 struct snd_soc_pcm_runtime *rtd = substream->private_data;
269 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
270
Emilio López45fb6b62015-09-12 15:26:24 +0200271 switch (cmd) {
272 case SNDRV_PCM_TRIGGER_START:
273 case SNDRV_PCM_TRIGGER_RESUME:
274 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100275 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
276 sun4i_codec_start_playback(scodec);
277 else
278 sun4i_codec_start_capture(scodec);
Emilio López45fb6b62015-09-12 15:26:24 +0200279 break;
280
281 case SNDRV_PCM_TRIGGER_STOP:
282 case SNDRV_PCM_TRIGGER_SUSPEND:
283 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100284 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
285 sun4i_codec_stop_playback(scodec);
286 else
287 sun4i_codec_stop_capture(scodec);
Emilio López45fb6b62015-09-12 15:26:24 +0200288 break;
289
290 default:
291 return -EINVAL;
292 }
293
294 return 0;
295}
296
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100297static int sun4i_codec_prepare_capture(struct snd_pcm_substream *substream,
298 struct snd_soc_dai *dai)
299{
300 struct snd_soc_pcm_runtime *rtd = substream->private_data;
301 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
302
303
304 /* Flush RX FIFO */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800305 regmap_field_update_bits(scodec->reg_adc_fifoc,
306 BIT(SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH),
307 BIT(SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH));
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100308
309
310 /* Set RX FIFO trigger level */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800311 regmap_field_update_bits(scodec->reg_adc_fifoc,
312 0xf << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL,
313 0x7 << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL);
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100314
315 /*
316 * FIXME: Undocumented in the datasheet, but
317 * Allwinner's code mentions that it is related
318 * related to microphone gain
319 */
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800320 if (of_device_is_compatible(scodec->dev->of_node,
321 "allwinner,sun4i-a10-codec") ||
322 of_device_is_compatible(scodec->dev->of_node,
323 "allwinner,sun7i-a20-codec")) {
324 regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_ACTL,
325 0x3 << 25,
326 0x1 << 25);
327 }
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100328
329 if (of_device_is_compatible(scodec->dev->of_node,
330 "allwinner,sun7i-a20-codec"))
331 /* FIXME: Undocumented bits */
332 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_TUNE,
333 0x3 << 8,
334 0x1 << 8);
335
336 /* Fill most significant bits with valid data MSB */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800337 regmap_field_update_bits(scodec->reg_adc_fifoc,
338 BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE),
339 BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE));
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100340
341 return 0;
342}
343
344static int sun4i_codec_prepare_playback(struct snd_pcm_substream *substream,
345 struct snd_soc_dai *dai)
Emilio López45fb6b62015-09-12 15:26:24 +0200346{
347 struct snd_soc_pcm_runtime *rtd = substream->private_data;
348 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
349 u32 val;
350
Emilio López45fb6b62015-09-12 15:26:24 +0200351 /* Flush the TX FIFO */
352 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
353 BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH),
354 BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH));
355
356 /* Set TX FIFO Empty Trigger Level */
357 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
358 0x3f << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL,
359 0xf << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL);
360
361 if (substream->runtime->rate > 32000)
362 /* Use 64 bits FIR filter */
363 val = 0;
364 else
365 /* Use 32 bits FIR filter */
366 val = BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION);
367
368 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
369 BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION),
370 val);
371
372 /* Send zeros when we have an underrun */
373 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
374 BIT(SUN4I_CODEC_DAC_FIFOC_SEND_LASAT),
375 0);
376
377 return 0;
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100378};
379
380static int sun4i_codec_prepare(struct snd_pcm_substream *substream,
381 struct snd_soc_dai *dai)
382{
383 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
384 return sun4i_codec_prepare_playback(substream, dai);
385
386 return sun4i_codec_prepare_capture(substream, dai);
Emilio López45fb6b62015-09-12 15:26:24 +0200387}
388
389static unsigned long sun4i_codec_get_mod_freq(struct snd_pcm_hw_params *params)
390{
391 unsigned int rate = params_rate(params);
392
393 switch (rate) {
394 case 176400:
395 case 88200:
396 case 44100:
397 case 33075:
398 case 22050:
399 case 14700:
400 case 11025:
401 case 7350:
402 return 22579200;
403
404 case 192000:
405 case 96000:
406 case 48000:
407 case 32000:
408 case 24000:
409 case 16000:
410 case 12000:
411 case 8000:
412 return 24576000;
413
414 default:
415 return 0;
416 }
417}
418
419static int sun4i_codec_get_hw_rate(struct snd_pcm_hw_params *params)
420{
421 unsigned int rate = params_rate(params);
422
423 switch (rate) {
424 case 192000:
425 case 176400:
426 return 6;
427
428 case 96000:
429 case 88200:
430 return 7;
431
432 case 48000:
433 case 44100:
434 return 0;
435
436 case 32000:
437 case 33075:
438 return 1;
439
440 case 24000:
441 case 22050:
442 return 2;
443
444 case 16000:
445 case 14700:
446 return 3;
447
448 case 12000:
449 case 11025:
450 return 4;
451
452 case 8000:
453 case 7350:
454 return 5;
455
456 default:
457 return -EINVAL;
458 }
459}
460
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100461static int sun4i_codec_hw_params_capture(struct sun4i_codec *scodec,
462 struct snd_pcm_hw_params *params,
463 unsigned int hwrate)
Emilio López45fb6b62015-09-12 15:26:24 +0200464{
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100465 /* Set ADC sample rate */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800466 regmap_field_update_bits(scodec->reg_adc_fifoc,
467 7 << SUN4I_CODEC_ADC_FIFOC_ADC_FS,
468 hwrate << SUN4I_CODEC_ADC_FIFOC_ADC_FS);
Emilio López45fb6b62015-09-12 15:26:24 +0200469
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100470 /* Set the number of channels we want to use */
471 if (params_channels(params) == 1)
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800472 regmap_field_update_bits(scodec->reg_adc_fifoc,
473 BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN),
474 BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN));
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100475 else
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +0800476 regmap_field_update_bits(scodec->reg_adc_fifoc,
477 BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN),
478 0);
Emilio López45fb6b62015-09-12 15:26:24 +0200479
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100480 return 0;
481}
Emilio López45fb6b62015-09-12 15:26:24 +0200482
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100483static int sun4i_codec_hw_params_playback(struct sun4i_codec *scodec,
484 struct snd_pcm_hw_params *params,
485 unsigned int hwrate)
486{
487 u32 val;
Emilio López45fb6b62015-09-12 15:26:24 +0200488
489 /* Set DAC sample rate */
490 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
491 7 << SUN4I_CODEC_DAC_FIFOC_DAC_FS,
492 hwrate << SUN4I_CODEC_DAC_FIFOC_DAC_FS);
493
494 /* Set the number of channels we want to use */
495 if (params_channels(params) == 1)
496 val = BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN);
497 else
498 val = 0;
499
500 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
501 BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN),
502 val);
503
504 /* Set the number of sample bits to either 16 or 24 bits */
505 if (hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS)->min == 32) {
506 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
507 BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS),
508 BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS));
509
510 /* Set TX FIFO mode to padding the LSBs with 0 */
511 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
512 BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE),
513 0);
514
515 scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
516 } else {
517 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
518 BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS),
519 0);
520
521 /* Set TX FIFO mode to repeat the MSB */
522 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
523 BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE),
524 BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE));
525
526 scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
527 }
528
529 return 0;
530}
531
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100532static int sun4i_codec_hw_params(struct snd_pcm_substream *substream,
533 struct snd_pcm_hw_params *params,
534 struct snd_soc_dai *dai)
535{
536 struct snd_soc_pcm_runtime *rtd = substream->private_data;
537 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
538 unsigned long clk_freq;
Maxime Ripard8400ddf2015-12-01 12:06:47 +0100539 int ret, hwrate;
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100540
541 clk_freq = sun4i_codec_get_mod_freq(params);
542 if (!clk_freq)
543 return -EINVAL;
544
Maxime Ripard8400ddf2015-12-01 12:06:47 +0100545 ret = clk_set_rate(scodec->clk_module, clk_freq);
546 if (ret)
547 return ret;
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100548
549 hwrate = sun4i_codec_get_hw_rate(params);
550 if (hwrate < 0)
551 return hwrate;
552
553 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
554 return sun4i_codec_hw_params_playback(scodec, params,
555 hwrate);
556
557 return sun4i_codec_hw_params_capture(scodec, params,
558 hwrate);
559}
560
Emilio López45fb6b62015-09-12 15:26:24 +0200561static int sun4i_codec_startup(struct snd_pcm_substream *substream,
562 struct snd_soc_dai *dai)
563{
564 struct snd_soc_pcm_runtime *rtd = substream->private_data;
565 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
566
567 /*
568 * Stop issuing DRQ when we have room for less than 16 samples
569 * in our TX FIFO
570 */
571 regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC,
572 3 << SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT,
573 3 << SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT);
574
575 return clk_prepare_enable(scodec->clk_module);
576}
577
578static void sun4i_codec_shutdown(struct snd_pcm_substream *substream,
579 struct snd_soc_dai *dai)
580{
581 struct snd_soc_pcm_runtime *rtd = substream->private_data;
582 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card);
583
584 clk_disable_unprepare(scodec->clk_module);
585}
586
587static const struct snd_soc_dai_ops sun4i_codec_dai_ops = {
588 .startup = sun4i_codec_startup,
589 .shutdown = sun4i_codec_shutdown,
590 .trigger = sun4i_codec_trigger,
591 .hw_params = sun4i_codec_hw_params,
592 .prepare = sun4i_codec_prepare,
593};
594
595static struct snd_soc_dai_driver sun4i_codec_dai = {
596 .name = "Codec",
597 .ops = &sun4i_codec_dai_ops,
598 .playback = {
599 .stream_name = "Codec Playback",
600 .channels_min = 1,
601 .channels_max = 2,
602 .rate_min = 8000,
603 .rate_max = 192000,
604 .rates = SNDRV_PCM_RATE_8000_48000 |
605 SNDRV_PCM_RATE_96000 |
Maxime Riparddebb9722015-09-29 21:43:18 +0200606 SNDRV_PCM_RATE_192000,
Emilio López45fb6b62015-09-12 15:26:24 +0200607 .formats = SNDRV_PCM_FMTBIT_S16_LE |
608 SNDRV_PCM_FMTBIT_S32_LE,
609 .sig_bits = 24,
610 },
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100611 .capture = {
612 .stream_name = "Codec Capture",
613 .channels_min = 1,
614 .channels_max = 2,
615 .rate_min = 8000,
616 .rate_max = 192000,
617 .rates = SNDRV_PCM_RATE_8000_48000 |
618 SNDRV_PCM_RATE_96000 |
619 SNDRV_PCM_RATE_192000 |
620 SNDRV_PCM_RATE_KNOT,
621 .formats = SNDRV_PCM_FMTBIT_S16_LE |
622 SNDRV_PCM_FMTBIT_S32_LE,
623 .sig_bits = 24,
624 },
Emilio López45fb6b62015-09-12 15:26:24 +0200625};
626
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800627/*** sun4i Codec ***/
Emilio López45fb6b62015-09-12 15:26:24 +0200628static const struct snd_kcontrol_new sun4i_codec_pa_mute =
629 SOC_DAPM_SINGLE("Switch", SUN4I_CODEC_DAC_ACTL,
630 SUN4I_CODEC_DAC_ACTL_PA_MUTE, 1, 0);
631
632static DECLARE_TLV_DB_SCALE(sun4i_codec_pa_volume_scale, -6300, 100, 1);
633
Danny Milosavljevicc9e902f2016-09-24 22:05:01 +0200634static const struct snd_kcontrol_new sun4i_codec_controls[] = {
Adam Sampson474d1472015-10-27 21:00:45 +0000635 SOC_SINGLE_TLV("Power Amplifier Volume", SUN4I_CODEC_DAC_ACTL,
Emilio López45fb6b62015-09-12 15:26:24 +0200636 SUN4I_CODEC_DAC_ACTL_PA_VOL, 0x3F, 0,
637 sun4i_codec_pa_volume_scale),
638};
639
640static const struct snd_kcontrol_new sun4i_codec_left_mixer_controls[] = {
641 SOC_DAPM_SINGLE("Left DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
642 SUN4I_CODEC_DAC_ACTL_LDACLMIXS, 1, 0),
643};
644
645static const struct snd_kcontrol_new sun4i_codec_right_mixer_controls[] = {
646 SOC_DAPM_SINGLE("Right DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
647 SUN4I_CODEC_DAC_ACTL_RDACRMIXS, 1, 0),
648 SOC_DAPM_SINGLE("Left DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
649 SUN4I_CODEC_DAC_ACTL_LDACRMIXS, 1, 0),
650};
651
652static const struct snd_kcontrol_new sun4i_codec_pa_mixer_controls[] = {
653 SOC_DAPM_SINGLE("DAC Playback Switch", SUN4I_CODEC_DAC_ACTL,
654 SUN4I_CODEC_DAC_ACTL_DACPAS, 1, 0),
655 SOC_DAPM_SINGLE("Mixer Playback Switch", SUN4I_CODEC_DAC_ACTL,
656 SUN4I_CODEC_DAC_ACTL_MIXPAS, 1, 0),
657};
658
Hans de Goedee6415b42015-12-11 19:43:56 +0100659static const struct snd_soc_dapm_widget sun4i_codec_codec_dapm_widgets[] = {
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100660 /* Digital parts of the ADCs */
661 SND_SOC_DAPM_SUPPLY("ADC", SUN4I_CODEC_ADC_FIFOC,
662 SUN4I_CODEC_ADC_FIFOC_EN_AD, 0,
663 NULL, 0),
664
Emilio López45fb6b62015-09-12 15:26:24 +0200665 /* Digital parts of the DACs */
666 SND_SOC_DAPM_SUPPLY("DAC", SUN4I_CODEC_DAC_DPC,
667 SUN4I_CODEC_DAC_DPC_EN_DA, 0,
668 NULL, 0),
669
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100670 /* Analog parts of the ADCs */
671 SND_SOC_DAPM_ADC("Left ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL,
672 SUN4I_CODEC_ADC_ACTL_ADC_L_EN, 0),
673 SND_SOC_DAPM_ADC("Right ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL,
674 SUN4I_CODEC_ADC_ACTL_ADC_R_EN, 0),
675
Emilio López45fb6b62015-09-12 15:26:24 +0200676 /* Analog parts of the DACs */
677 SND_SOC_DAPM_DAC("Left DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL,
678 SUN4I_CODEC_DAC_ACTL_DACAENL, 0),
679 SND_SOC_DAPM_DAC("Right DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL,
680 SUN4I_CODEC_DAC_ACTL_DACAENR, 0),
681
682 /* Mixers */
683 SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0,
684 sun4i_codec_left_mixer_controls,
685 ARRAY_SIZE(sun4i_codec_left_mixer_controls)),
686 SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0,
687 sun4i_codec_right_mixer_controls,
688 ARRAY_SIZE(sun4i_codec_right_mixer_controls)),
689
690 /* Global Mixer Enable */
691 SND_SOC_DAPM_SUPPLY("Mixer Enable", SUN4I_CODEC_DAC_ACTL,
692 SUN4I_CODEC_DAC_ACTL_MIXEN, 0, NULL, 0),
693
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100694 /* VMIC */
695 SND_SOC_DAPM_SUPPLY("VMIC", SUN4I_CODEC_ADC_ACTL,
696 SUN4I_CODEC_ADC_ACTL_VMICEN, 0, NULL, 0),
697
698 /* Mic Pre-Amplifiers */
699 SND_SOC_DAPM_PGA("MIC1 Pre-Amplifier", SUN4I_CODEC_ADC_ACTL,
700 SUN4I_CODEC_ADC_ACTL_PREG1EN, 0, NULL, 0),
701
Adam Sampson474d1472015-10-27 21:00:45 +0000702 /* Power Amplifier */
703 SND_SOC_DAPM_MIXER("Power Amplifier", SUN4I_CODEC_ADC_ACTL,
Emilio López45fb6b62015-09-12 15:26:24 +0200704 SUN4I_CODEC_ADC_ACTL_PA_EN, 0,
705 sun4i_codec_pa_mixer_controls,
706 ARRAY_SIZE(sun4i_codec_pa_mixer_controls)),
Adam Sampson474d1472015-10-27 21:00:45 +0000707 SND_SOC_DAPM_SWITCH("Power Amplifier Mute", SND_SOC_NOPM, 0, 0,
Emilio López45fb6b62015-09-12 15:26:24 +0200708 &sun4i_codec_pa_mute),
709
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100710 SND_SOC_DAPM_INPUT("Mic1"),
711
Emilio López45fb6b62015-09-12 15:26:24 +0200712 SND_SOC_DAPM_OUTPUT("HP Right"),
713 SND_SOC_DAPM_OUTPUT("HP Left"),
714};
715
Hans de Goedee6415b42015-12-11 19:43:56 +0100716static const struct snd_soc_dapm_route sun4i_codec_codec_dapm_routes[] = {
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100717 /* Left ADC / DAC Routes */
718 { "Left ADC", NULL, "ADC" },
Emilio López45fb6b62015-09-12 15:26:24 +0200719 { "Left DAC", NULL, "DAC" },
720
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100721 /* Right ADC / DAC Routes */
722 { "Right ADC", NULL, "ADC" },
Emilio López45fb6b62015-09-12 15:26:24 +0200723 { "Right DAC", NULL, "DAC" },
724
725 /* Right Mixer Routes */
726 { "Right Mixer", NULL, "Mixer Enable" },
727 { "Right Mixer", "Left DAC Playback Switch", "Left DAC" },
728 { "Right Mixer", "Right DAC Playback Switch", "Right DAC" },
729
730 /* Left Mixer Routes */
731 { "Left Mixer", NULL, "Mixer Enable" },
732 { "Left Mixer", "Left DAC Playback Switch", "Left DAC" },
733
Adam Sampson474d1472015-10-27 21:00:45 +0000734 /* Power Amplifier Routes */
735 { "Power Amplifier", "Mixer Playback Switch", "Left Mixer" },
736 { "Power Amplifier", "Mixer Playback Switch", "Right Mixer" },
737 { "Power Amplifier", "DAC Playback Switch", "Left DAC" },
738 { "Power Amplifier", "DAC Playback Switch", "Right DAC" },
Emilio López45fb6b62015-09-12 15:26:24 +0200739
Adam Sampson474d1472015-10-27 21:00:45 +0000740 /* Headphone Output Routes */
741 { "Power Amplifier Mute", "Switch", "Power Amplifier" },
742 { "HP Right", NULL, "Power Amplifier Mute" },
743 { "HP Left", NULL, "Power Amplifier Mute" },
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100744
745 /* Mic1 Routes */
746 { "Left ADC", NULL, "MIC1 Pre-Amplifier" },
747 { "Right ADC", NULL, "MIC1 Pre-Amplifier" },
748 { "MIC1 Pre-Amplifier", NULL, "Mic1"},
749 { "Mic1", NULL, "VMIC" },
Emilio López45fb6b62015-09-12 15:26:24 +0200750};
751
752static struct snd_soc_codec_driver sun4i_codec_codec = {
Kuninori Morimoto180f58f2016-08-08 08:46:41 +0000753 .component_driver = {
Danny Milosavljevicc9e902f2016-09-24 22:05:01 +0200754 .controls = sun4i_codec_controls,
755 .num_controls = ARRAY_SIZE(sun4i_codec_controls),
Kuninori Morimoto180f58f2016-08-08 08:46:41 +0000756 .dapm_widgets = sun4i_codec_codec_dapm_widgets,
757 .num_dapm_widgets = ARRAY_SIZE(sun4i_codec_codec_dapm_widgets),
758 .dapm_routes = sun4i_codec_codec_dapm_routes,
759 .num_dapm_routes = ARRAY_SIZE(sun4i_codec_codec_dapm_routes),
760 },
Emilio López45fb6b62015-09-12 15:26:24 +0200761};
762
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800763/*** sun6i Codec ***/
764
765/* mixer controls */
766static const struct snd_kcontrol_new sun6i_codec_mixer_controls[] = {
767 SOC_DAPM_DOUBLE("DAC Playback Switch",
768 SUN6I_CODEC_OM_DACA_CTRL,
769 SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACL,
770 SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACR, 1, 0),
771 SOC_DAPM_DOUBLE("DAC Reversed Playback Switch",
772 SUN6I_CODEC_OM_DACA_CTRL,
773 SUN6I_CODEC_OM_DACA_CTRL_LMIX_DACR,
774 SUN6I_CODEC_OM_DACA_CTRL_RMIX_DACL, 1, 0),
Chen-Yu Tsaidff50512016-11-03 15:55:49 +0800775 SOC_DAPM_DOUBLE("Line In Playback Switch",
776 SUN6I_CODEC_OM_DACA_CTRL,
777 SUN6I_CODEC_OM_DACA_CTRL_LMIX_LINEINL,
778 SUN6I_CODEC_OM_DACA_CTRL_RMIX_LINEINR, 1, 0),
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800779};
780
781/* headphone controls */
782static const char * const sun6i_codec_hp_src_enum_text[] = {
783 "DAC", "Mixer",
784};
785
786static SOC_ENUM_DOUBLE_DECL(sun6i_codec_hp_src_enum,
787 SUN6I_CODEC_OM_DACA_CTRL,
788 SUN6I_CODEC_OM_DACA_CTRL_LHPIS,
789 SUN6I_CODEC_OM_DACA_CTRL_RHPIS,
790 sun6i_codec_hp_src_enum_text);
791
792static const struct snd_kcontrol_new sun6i_codec_hp_src[] = {
793 SOC_DAPM_ENUM("Headphone Source Playback Route",
794 sun6i_codec_hp_src_enum),
795};
796
Chen-Yu Tsai0f909f92016-11-03 15:55:50 +0800797/* line out controls */
798static const char * const sun6i_codec_lineout_src_enum_text[] = {
799 "Stereo", "Mono Differential",
800};
801
802static SOC_ENUM_DOUBLE_DECL(sun6i_codec_lineout_src_enum,
803 SUN6I_CODEC_MIC_CTRL,
804 SUN6I_CODEC_MIC_CTRL_LINEOUTLSRC,
805 SUN6I_CODEC_MIC_CTRL_LINEOUTRSRC,
806 sun6i_codec_lineout_src_enum_text);
807
808static const struct snd_kcontrol_new sun6i_codec_lineout_src[] = {
809 SOC_DAPM_ENUM("Line Out Source Playback Route",
810 sun6i_codec_lineout_src_enum),
811};
812
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800813/* volume / mute controls */
814static const DECLARE_TLV_DB_SCALE(sun6i_codec_dvol_scale, -7308, 116, 0);
815static const DECLARE_TLV_DB_SCALE(sun6i_codec_hp_vol_scale, -6300, 100, 1);
Chen-Yu Tsaidff50512016-11-03 15:55:49 +0800816static const DECLARE_TLV_DB_SCALE(sun6i_codec_out_mixer_pregain_scale,
817 -450, 150, 0);
Chen-Yu Tsai0f909f92016-11-03 15:55:50 +0800818static const DECLARE_TLV_DB_RANGE(sun6i_codec_lineout_vol_scale,
819 0, 1, TLV_DB_SCALE_ITEM(TLV_DB_GAIN_MUTE, 0, 1),
820 2, 31, TLV_DB_SCALE_ITEM(-4350, 150, 0),
821);
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800822
823static const struct snd_kcontrol_new sun6i_codec_codec_widgets[] = {
824 SOC_SINGLE_TLV("DAC Playback Volume", SUN4I_CODEC_DAC_DPC,
825 SUN4I_CODEC_DAC_DPC_DVOL, 0x3f, 1,
826 sun6i_codec_dvol_scale),
827 SOC_SINGLE_TLV("Headphone Playback Volume",
828 SUN6I_CODEC_OM_DACA_CTRL,
829 SUN6I_CODEC_OM_DACA_CTRL_HPVOL, 0x3f, 0,
830 sun6i_codec_hp_vol_scale),
Chen-Yu Tsai0f909f92016-11-03 15:55:50 +0800831 SOC_SINGLE_TLV("Line Out Playback Volume",
832 SUN6I_CODEC_MIC_CTRL,
833 SUN6I_CODEC_MIC_CTRL_LINEOUTVC, 0x1f, 0,
834 sun6i_codec_lineout_vol_scale),
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800835 SOC_DOUBLE("Headphone Playback Switch",
836 SUN6I_CODEC_OM_DACA_CTRL,
837 SUN6I_CODEC_OM_DACA_CTRL_LHPPAMUTE,
838 SUN6I_CODEC_OM_DACA_CTRL_RHPPAMUTE, 1, 0),
Chen-Yu Tsai0f909f92016-11-03 15:55:50 +0800839 SOC_DOUBLE("Line Out Playback Switch",
840 SUN6I_CODEC_MIC_CTRL,
841 SUN6I_CODEC_MIC_CTRL_LINEOUTLEN,
842 SUN6I_CODEC_MIC_CTRL_LINEOUTREN, 1, 0),
Chen-Yu Tsaidff50512016-11-03 15:55:49 +0800843 /* Mixer pre-gains */
844 SOC_SINGLE_TLV("Line In Playback Volume",
845 SUN6I_CODEC_OM_PA_CTRL, SUN6I_CODEC_OM_PA_CTRL_LINEING,
846 0x7, 0, sun6i_codec_out_mixer_pregain_scale),
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800847};
848
849static const struct snd_soc_dapm_widget sun6i_codec_codec_dapm_widgets[] = {
Chen-Yu Tsaidff50512016-11-03 15:55:49 +0800850 /* Line In */
851 SND_SOC_DAPM_INPUT("LINEIN"),
852
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800853 /* Digital parts of the DACs */
854 SND_SOC_DAPM_SUPPLY("DAC Enable", SUN4I_CODEC_DAC_DPC,
855 SUN4I_CODEC_DAC_DPC_EN_DA, 0,
856 NULL, 0),
857
858 /* Analog parts of the DACs */
859 SND_SOC_DAPM_DAC("Left DAC", "Codec Playback",
860 SUN6I_CODEC_OM_DACA_CTRL,
861 SUN6I_CODEC_OM_DACA_CTRL_DACALEN, 0),
862 SND_SOC_DAPM_DAC("Right DAC", "Codec Playback",
863 SUN6I_CODEC_OM_DACA_CTRL,
864 SUN6I_CODEC_OM_DACA_CTRL_DACAREN, 0),
865
866 /* Mixers */
867 SOC_MIXER_ARRAY("Left Mixer", SUN6I_CODEC_OM_DACA_CTRL,
868 SUN6I_CODEC_OM_DACA_CTRL_LMIXEN, 0,
869 sun6i_codec_mixer_controls),
870 SOC_MIXER_ARRAY("Right Mixer", SUN6I_CODEC_OM_DACA_CTRL,
871 SUN6I_CODEC_OM_DACA_CTRL_RMIXEN, 0,
872 sun6i_codec_mixer_controls),
873
874 /* Headphone output path */
875 SND_SOC_DAPM_MUX("Headphone Source Playback Route",
876 SND_SOC_NOPM, 0, 0, sun6i_codec_hp_src),
877 SND_SOC_DAPM_OUT_DRV("Headphone Amp", SUN6I_CODEC_OM_PA_CTRL,
878 SUN6I_CODEC_OM_PA_CTRL_HPPAEN, 0, NULL, 0),
879 SND_SOC_DAPM_SUPPLY("HPCOM Protection", SUN6I_CODEC_OM_PA_CTRL,
880 SUN6I_CODEC_OM_PA_CTRL_COMPTEN, 0, NULL, 0),
881 SND_SOC_DAPM_REG(snd_soc_dapm_supply, "HPCOM", SUN6I_CODEC_OM_PA_CTRL,
882 SUN6I_CODEC_OM_PA_CTRL_HPCOM_CTL, 0x3, 0x3, 0),
883 SND_SOC_DAPM_OUTPUT("HP"),
Chen-Yu Tsai0f909f92016-11-03 15:55:50 +0800884
885 /* Line Out path */
886 SND_SOC_DAPM_MUX("Line Out Source Playback Route",
887 SND_SOC_NOPM, 0, 0, sun6i_codec_lineout_src),
888 SND_SOC_DAPM_OUTPUT("LINEOUT"),
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800889};
890
891static const struct snd_soc_dapm_route sun6i_codec_codec_dapm_routes[] = {
892 /* DAC Routes */
893 { "Left DAC", NULL, "DAC Enable" },
894 { "Right DAC", NULL, "DAC Enable" },
895
896 /* Left Mixer Routes */
897 { "Left Mixer", "DAC Playback Switch", "Left DAC" },
898 { "Left Mixer", "DAC Reversed Playback Switch", "Right DAC" },
Chen-Yu Tsaidff50512016-11-03 15:55:49 +0800899 { "Left Mixer", "Line In Playback Switch", "LINEIN" },
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800900
901 /* Right Mixer Routes */
902 { "Right Mixer", "DAC Playback Switch", "Right DAC" },
903 { "Right Mixer", "DAC Reversed Playback Switch", "Left DAC" },
Chen-Yu Tsaidff50512016-11-03 15:55:49 +0800904 { "Right Mixer", "Line In Playback Switch", "LINEIN" },
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800905
906 /* Headphone Routes */
907 { "Headphone Source Playback Route", "DAC", "Left DAC" },
908 { "Headphone Source Playback Route", "DAC", "Right DAC" },
909 { "Headphone Source Playback Route", "Mixer", "Left Mixer" },
910 { "Headphone Source Playback Route", "Mixer", "Right Mixer" },
911 { "Headphone Amp", NULL, "Headphone Source Playback Route" },
912 { "HP", NULL, "Headphone Amp" },
913 { "HPCOM", NULL, "HPCOM Protection" },
Chen-Yu Tsai0f909f92016-11-03 15:55:50 +0800914
915 /* Line Out Routes */
916 { "Line Out Source Playback Route", "Stereo", "Left Mixer" },
917 { "Line Out Source Playback Route", "Stereo", "Right Mixer" },
918 { "Line Out Source Playback Route", "Mono Differential", "Left Mixer" },
919 { "LINEOUT", NULL, "Line Out Source Playback Route" },
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +0800920};
921
922static struct snd_soc_codec_driver sun6i_codec_codec = {
923 .component_driver = {
924 .controls = sun6i_codec_codec_widgets,
925 .num_controls = ARRAY_SIZE(sun6i_codec_codec_widgets),
926 .dapm_widgets = sun6i_codec_codec_dapm_widgets,
927 .num_dapm_widgets = ARRAY_SIZE(sun6i_codec_codec_dapm_widgets),
928 .dapm_routes = sun6i_codec_codec_dapm_routes,
929 .num_dapm_routes = ARRAY_SIZE(sun6i_codec_codec_dapm_routes),
930 },
931};
932
Emilio López45fb6b62015-09-12 15:26:24 +0200933static const struct snd_soc_component_driver sun4i_codec_component = {
934 .name = "sun4i-codec",
935};
936
937#define SUN4I_CODEC_RATES SNDRV_PCM_RATE_8000_192000
938#define SUN4I_CODEC_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \
939 SNDRV_PCM_FMTBIT_S32_LE)
940
941static int sun4i_codec_dai_probe(struct snd_soc_dai *dai)
942{
943 struct snd_soc_card *card = snd_soc_dai_get_drvdata(dai);
944 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card);
945
946 snd_soc_dai_init_dma_data(dai, &scodec->playback_dma_data,
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100947 &scodec->capture_dma_data);
Emilio López45fb6b62015-09-12 15:26:24 +0200948
949 return 0;
950}
951
952static struct snd_soc_dai_driver dummy_cpu_dai = {
953 .name = "sun4i-codec-cpu-dai",
954 .probe = sun4i_codec_dai_probe,
955 .playback = {
956 .stream_name = "Playback",
957 .channels_min = 1,
958 .channels_max = 2,
959 .rates = SUN4I_CODEC_RATES,
960 .formats = SUN4I_CODEC_FORMATS,
961 .sig_bits = 24,
962 },
Maxime Ripard1fb34b42015-11-30 16:37:47 +0100963 .capture = {
964 .stream_name = "Capture",
965 .channels_min = 1,
966 .channels_max = 2,
967 .rates = SUN4I_CODEC_RATES,
968 .formats = SUN4I_CODEC_FORMATS,
969 .sig_bits = 24,
970 },
Emilio López45fb6b62015-09-12 15:26:24 +0200971};
972
Emilio López45fb6b62015-09-12 15:26:24 +0200973static struct snd_soc_dai_link *sun4i_codec_create_link(struct device *dev,
974 int *num_links)
975{
976 struct snd_soc_dai_link *link = devm_kzalloc(dev, sizeof(*link),
977 GFP_KERNEL);
978 if (!link)
979 return NULL;
980
981 link->name = "cdc";
982 link->stream_name = "CDC PCM";
983 link->codec_dai_name = "Codec";
984 link->cpu_dai_name = dev_name(dev);
985 link->codec_name = dev_name(dev);
986 link->platform_name = dev_name(dev);
987 link->dai_fmt = SND_SOC_DAIFMT_I2S;
988
989 *num_links = 1;
990
991 return link;
992};
993
Hans de Goede40592622015-12-11 19:43:57 +0100994static int sun4i_codec_spk_event(struct snd_soc_dapm_widget *w,
995 struct snd_kcontrol *k, int event)
996{
997 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(w->dapm->card);
998
999 if (scodec->gpio_pa)
1000 gpiod_set_value_cansleep(scodec->gpio_pa,
1001 !!SND_SOC_DAPM_EVENT_ON(event));
1002
1003 return 0;
1004}
1005
1006static const struct snd_soc_dapm_widget sun4i_codec_card_dapm_widgets[] = {
1007 SND_SOC_DAPM_SPK("Speaker", sun4i_codec_spk_event),
1008};
1009
1010static const struct snd_soc_dapm_route sun4i_codec_card_dapm_routes[] = {
Hans de Goede6b803c62015-12-22 23:00:17 +01001011 { "Speaker", NULL, "HP Right" },
1012 { "Speaker", NULL, "HP Left" },
Hans de Goede40592622015-12-11 19:43:57 +01001013};
1014
Emilio López45fb6b62015-09-12 15:26:24 +02001015static struct snd_soc_card *sun4i_codec_create_card(struct device *dev)
1016{
1017 struct snd_soc_card *card;
Emilio López45fb6b62015-09-12 15:26:24 +02001018
1019 card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
1020 if (!card)
Chen-Yu Tsai85915b62016-10-31 14:42:09 +08001021 return ERR_PTR(-ENOMEM);
Emilio López45fb6b62015-09-12 15:26:24 +02001022
1023 card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
1024 if (!card->dai_link)
Chen-Yu Tsai85915b62016-10-31 14:42:09 +08001025 return ERR_PTR(-ENOMEM);
Emilio López45fb6b62015-09-12 15:26:24 +02001026
1027 card->dev = dev;
1028 card->name = "sun4i-codec";
Hans de Goede40592622015-12-11 19:43:57 +01001029 card->dapm_widgets = sun4i_codec_card_dapm_widgets;
1030 card->num_dapm_widgets = ARRAY_SIZE(sun4i_codec_card_dapm_widgets);
1031 card->dapm_routes = sun4i_codec_card_dapm_routes;
1032 card->num_dapm_routes = ARRAY_SIZE(sun4i_codec_card_dapm_routes);
Emilio López45fb6b62015-09-12 15:26:24 +02001033
Emilio López45fb6b62015-09-12 15:26:24 +02001034 return card;
1035};
1036
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +08001037static struct snd_soc_card *sun6i_codec_create_card(struct device *dev)
1038{
1039 struct snd_soc_card *card;
1040
1041 card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
1042 if (!card)
1043 return ERR_PTR(-ENOMEM);
1044
1045 card->dai_link = sun4i_codec_create_link(dev, &card->num_links);
1046 if (!card->dai_link)
1047 return ERR_PTR(-ENOMEM);
1048
1049 card->dev = dev;
1050 card->name = "A31 Audio Codec";
1051
1052 return card;
1053};
1054
Chen-Yu Tsai2f2a3462016-11-03 15:55:43 +08001055static const struct regmap_config sun4i_codec_regmap_config = {
1056 .reg_bits = 32,
1057 .reg_stride = 4,
1058 .val_bits = 32,
1059 .max_register = SUN4I_CODEC_ADC_RXCNT,
1060};
1061
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +08001062static const struct regmap_config sun6i_codec_regmap_config = {
1063 .reg_bits = 32,
1064 .reg_stride = 4,
1065 .val_bits = 32,
1066 .max_register = SUN6I_CODEC_HMIC_DATA,
1067};
1068
Chen-Yu Tsai2f2a3462016-11-03 15:55:43 +08001069static const struct regmap_config sun7i_codec_regmap_config = {
1070 .reg_bits = 32,
1071 .reg_stride = 4,
1072 .val_bits = 32,
1073 .max_register = SUN7I_CODEC_AC_MIC_PHONE_CAL,
1074};
1075
1076struct sun4i_codec_quirks {
1077 const struct regmap_config *regmap_config;
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001078 const struct snd_soc_codec_driver *codec;
1079 struct snd_soc_card * (*create_card)(struct device *dev);
1080 struct reg_field reg_adc_fifoc; /* used for regmap_field */
1081 unsigned int reg_dac_txdata; /* TX FIFO offset for DMA config */
1082 unsigned int reg_adc_rxdata; /* RX FIFO offset for DMA config */
Chen-Yu Tsai2f2a3462016-11-03 15:55:43 +08001083};
1084
1085static const struct sun4i_codec_quirks sun4i_codec_quirks = {
1086 .regmap_config = &sun4i_codec_regmap_config,
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001087 .codec = &sun4i_codec_codec,
1088 .create_card = sun4i_codec_create_card,
1089 .reg_adc_fifoc = REG_FIELD(SUN4I_CODEC_ADC_FIFOC, 0, 31),
1090 .reg_dac_txdata = SUN4I_CODEC_DAC_TXDATA,
1091 .reg_adc_rxdata = SUN4I_CODEC_ADC_RXDATA,
Chen-Yu Tsai2f2a3462016-11-03 15:55:43 +08001092};
1093
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +08001094static const struct sun4i_codec_quirks sun6i_a31_codec_quirks = {
1095 .regmap_config = &sun6i_codec_regmap_config,
1096 .codec = &sun6i_codec_codec,
1097 .create_card = sun6i_codec_create_card,
1098 .reg_adc_fifoc = REG_FIELD(SUN6I_CODEC_ADC_FIFOC, 0, 31),
1099 .reg_dac_txdata = SUN4I_CODEC_DAC_TXDATA,
1100 .reg_adc_rxdata = SUN6I_CODEC_ADC_RXDATA,
1101 .has_reset = true,
1102};
1103
Chen-Yu Tsai2f2a3462016-11-03 15:55:43 +08001104static const struct sun4i_codec_quirks sun7i_codec_quirks = {
1105 .regmap_config = &sun7i_codec_regmap_config,
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001106 .codec = &sun4i_codec_codec,
1107 .create_card = sun4i_codec_create_card,
1108 .reg_adc_fifoc = REG_FIELD(SUN4I_CODEC_ADC_FIFOC, 0, 31),
1109 .reg_dac_txdata = SUN4I_CODEC_DAC_TXDATA,
1110 .reg_adc_rxdata = SUN4I_CODEC_ADC_RXDATA,
Chen-Yu Tsai2f2a3462016-11-03 15:55:43 +08001111};
1112
1113static const struct of_device_id sun4i_codec_of_match[] = {
1114 {
1115 .compatible = "allwinner,sun4i-a10-codec",
1116 .data = &sun4i_codec_quirks,
1117 },
1118 {
Chen-Yu Tsai8d9e4c9e2016-11-03 15:55:48 +08001119 .compatible = "allwinner,sun6i-a31-codec",
1120 .data = &sun6i_a31_codec_quirks,
1121 },
1122 {
Chen-Yu Tsai2f2a3462016-11-03 15:55:43 +08001123 .compatible = "allwinner,sun7i-a20-codec",
1124 .data = &sun7i_codec_quirks,
1125 },
1126 {}
1127};
1128MODULE_DEVICE_TABLE(of, sun4i_codec_of_match);
1129
Emilio López45fb6b62015-09-12 15:26:24 +02001130static int sun4i_codec_probe(struct platform_device *pdev)
1131{
1132 struct snd_soc_card *card;
1133 struct sun4i_codec *scodec;
Danny Milosavljevicc1d50652016-09-22 09:13:13 +02001134 const struct sun4i_codec_quirks *quirks;
Emilio López45fb6b62015-09-12 15:26:24 +02001135 struct resource *res;
1136 void __iomem *base;
1137 int ret;
1138
1139 scodec = devm_kzalloc(&pdev->dev, sizeof(*scodec), GFP_KERNEL);
1140 if (!scodec)
1141 return -ENOMEM;
1142
1143 scodec->dev = &pdev->dev;
1144
1145 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1146 base = devm_ioremap_resource(&pdev->dev, res);
1147 if (IS_ERR(base)) {
1148 dev_err(&pdev->dev, "Failed to map the registers\n");
1149 return PTR_ERR(base);
1150 }
1151
Danny Milosavljevicc1d50652016-09-22 09:13:13 +02001152 quirks = of_device_get_match_data(&pdev->dev);
1153 if (quirks == NULL) {
1154 dev_err(&pdev->dev, "Failed to determine the quirks to use\n");
1155 return -ENODEV;
1156 }
1157
Emilio López45fb6b62015-09-12 15:26:24 +02001158 scodec->regmap = devm_regmap_init_mmio(&pdev->dev, base,
Danny Milosavljevicc1d50652016-09-22 09:13:13 +02001159 quirks->regmap_config);
Emilio López45fb6b62015-09-12 15:26:24 +02001160 if (IS_ERR(scodec->regmap)) {
1161 dev_err(&pdev->dev, "Failed to create our regmap\n");
1162 return PTR_ERR(scodec->regmap);
1163 }
1164
1165 /* Get the clocks from the DT */
1166 scodec->clk_apb = devm_clk_get(&pdev->dev, "apb");
1167 if (IS_ERR(scodec->clk_apb)) {
1168 dev_err(&pdev->dev, "Failed to get the APB clock\n");
1169 return PTR_ERR(scodec->clk_apb);
1170 }
1171
1172 scodec->clk_module = devm_clk_get(&pdev->dev, "codec");
1173 if (IS_ERR(scodec->clk_module)) {
1174 dev_err(&pdev->dev, "Failed to get the module clock\n");
1175 return PTR_ERR(scodec->clk_module);
1176 }
1177
Hans de Goede40592622015-12-11 19:43:57 +01001178 scodec->gpio_pa = devm_gpiod_get_optional(&pdev->dev, "allwinner,pa",
1179 GPIOD_OUT_LOW);
1180 if (IS_ERR(scodec->gpio_pa)) {
1181 ret = PTR_ERR(scodec->gpio_pa);
1182 if (ret != -EPROBE_DEFER)
1183 dev_err(&pdev->dev, "Failed to get pa gpio: %d\n", ret);
1184 return ret;
1185 }
1186
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001187 /* reg_field setup */
1188 scodec->reg_adc_fifoc = devm_regmap_field_alloc(&pdev->dev,
1189 scodec->regmap,
1190 quirks->reg_adc_fifoc);
1191 if (IS_ERR(scodec->reg_adc_fifoc)) {
1192 ret = PTR_ERR(scodec->reg_adc_fifoc);
1193 dev_err(&pdev->dev, "Failed to create regmap fields: %d\n",
1194 ret);
1195 return ret;
1196 }
1197
Chen-Yu Tsai3716a892016-11-01 14:31:55 +08001198 /* Enable the bus clock */
1199 if (clk_prepare_enable(scodec->clk_apb)) {
1200 dev_err(&pdev->dev, "Failed to enable the APB clock\n");
1201 return -EINVAL;
1202 }
1203
Emilio López45fb6b62015-09-12 15:26:24 +02001204 /* DMA configuration for TX FIFO */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001205 scodec->playback_dma_data.addr = res->start + quirks->reg_dac_txdata;
Chen-Yu Tsai730e2dd2016-11-03 15:55:46 +08001206 scodec->playback_dma_data.maxburst = 8;
Emilio López45fb6b62015-09-12 15:26:24 +02001207 scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1208
Maxime Ripard1fb34b42015-11-30 16:37:47 +01001209 /* DMA configuration for RX FIFO */
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001210 scodec->capture_dma_data.addr = res->start + quirks->reg_adc_rxdata;
Chen-Yu Tsai730e2dd2016-11-03 15:55:46 +08001211 scodec->capture_dma_data.maxburst = 8;
Maxime Ripard1fb34b42015-11-30 16:37:47 +01001212 scodec->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1213
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001214 ret = snd_soc_register_codec(&pdev->dev, quirks->codec,
Emilio López45fb6b62015-09-12 15:26:24 +02001215 &sun4i_codec_dai, 1);
1216 if (ret) {
1217 dev_err(&pdev->dev, "Failed to register our codec\n");
1218 goto err_clk_disable;
1219 }
1220
1221 ret = devm_snd_soc_register_component(&pdev->dev,
1222 &sun4i_codec_component,
1223 &dummy_cpu_dai, 1);
1224 if (ret) {
1225 dev_err(&pdev->dev, "Failed to register our DAI\n");
1226 goto err_unregister_codec;
1227 }
1228
1229 ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
1230 if (ret) {
1231 dev_err(&pdev->dev, "Failed to register against DMAEngine\n");
1232 goto err_unregister_codec;
1233 }
1234
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001235 card = quirks->create_card(&pdev->dev);
Chen-Yu Tsai85915b62016-10-31 14:42:09 +08001236 if (IS_ERR(card)) {
1237 ret = PTR_ERR(card);
Emilio López45fb6b62015-09-12 15:26:24 +02001238 dev_err(&pdev->dev, "Failed to create our card\n");
1239 goto err_unregister_codec;
1240 }
1241
1242 platform_set_drvdata(pdev, card);
1243 snd_soc_card_set_drvdata(card, scodec);
1244
1245 ret = snd_soc_register_card(card);
1246 if (ret) {
1247 dev_err(&pdev->dev, "Failed to register our card\n");
1248 goto err_unregister_codec;
1249 }
1250
1251 return 0;
1252
1253err_unregister_codec:
1254 snd_soc_unregister_codec(&pdev->dev);
1255err_clk_disable:
1256 clk_disable_unprepare(scodec->clk_apb);
1257 return ret;
1258}
1259
1260static int sun4i_codec_remove(struct platform_device *pdev)
1261{
1262 struct snd_soc_card *card = platform_get_drvdata(pdev);
1263 struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card);
1264
1265 snd_soc_unregister_card(card);
1266 snd_soc_unregister_codec(&pdev->dev);
1267 clk_disable_unprepare(scodec->clk_apb);
1268
1269 return 0;
1270}
1271
1272static struct platform_driver sun4i_codec_driver = {
1273 .driver = {
1274 .name = "sun4i-codec",
Emilio López45fb6b62015-09-12 15:26:24 +02001275 .of_match_table = sun4i_codec_of_match,
1276 },
1277 .probe = sun4i_codec_probe,
1278 .remove = sun4i_codec_remove,
1279};
1280module_platform_driver(sun4i_codec_driver);
1281
1282MODULE_DESCRIPTION("Allwinner A10 codec driver");
1283MODULE_AUTHOR("Emilio López <emilio@elopez.com.ar>");
1284MODULE_AUTHOR("Jon Smirl <jonsmirl@gmail.com>");
1285MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
Chen-Yu Tsaibc03f0d2016-11-03 15:55:44 +08001286MODULE_AUTHOR("Chen-Yu Tsai <wens@csie.org>");
Emilio López45fb6b62015-09-12 15:26:24 +02001287MODULE_LICENSE("GPL");