Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * cs42l51.c
  4 *
  5 * ASoC Driver for Cirrus Logic CS42L51 codecs
  6 *
  7 * Copyright (c) 2010 Arnaud Patard <apatard@mandriva.com>
  8 *
  9 * Based on cs4270.c - Copyright (c) Freescale Semiconductor
 10 *
 
 
 
 
 
 
 
 
 
 11 * For now:
 12 *  - Only I2C is support. Not SPI
 13 *  - master mode *NOT* supported
 14 */
 15
 16#include <linux/clk.h>
 17#include <linux/module.h>
 
 18#include <linux/slab.h>
 19#include <sound/core.h>
 20#include <sound/soc.h>
 21#include <sound/tlv.h>
 22#include <sound/initval.h>
 23#include <sound/pcm_params.h>
 24#include <sound/pcm.h>
 25#include <linux/gpio/consumer.h>
 26#include <linux/regmap.h>
 27#include <linux/regulator/consumer.h>
 28
 29#include "cs42l51.h"
 30
 31enum master_slave_mode {
 32	MODE_SLAVE,
 33	MODE_SLAVE_AUTO,
 34	MODE_MASTER,
 35};
 36
 37static const char * const cs42l51_supply_names[] = {
 38	"VL",
 39	"VD",
 40	"VA",
 41	"VAHP",
 42};
 43
 44struct cs42l51_private {
 
 
 45	unsigned int mclk;
 46	struct clk *mclk_handle;
 47	unsigned int audio_mode;	/* The mode (I2S or left-justified) */
 48	enum master_slave_mode func;
 49	struct regulator_bulk_data supplies[ARRAY_SIZE(cs42l51_supply_names)];
 50	struct gpio_desc *reset_gpio;
 51	struct regmap *regmap;
 52};
 53
 54#define CS42L51_FORMATS (SNDRV_PCM_FMTBIT_S16_LE  | SNDRV_PCM_FMTBIT_S18_3LE | \
 55			 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S24_LE)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 56
 57static int cs42l51_get_chan_mix(struct snd_kcontrol *kcontrol,
 58			struct snd_ctl_elem_value *ucontrol)
 59{
 60	struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
 61	unsigned long value = snd_soc_component_read(component, CS42L51_PCM_MIXER)&3;
 62
 63	switch (value) {
 64	default:
 65	case 0:
 66		ucontrol->value.enumerated.item[0] = 0;
 67		break;
 68	/* same value : (L+R)/2 and (R+L)/2 */
 69	case 1:
 70	case 2:
 71		ucontrol->value.enumerated.item[0] = 1;
 72		break;
 73	case 3:
 74		ucontrol->value.enumerated.item[0] = 2;
 75		break;
 76	}
 77
 78	return 0;
 79}
 80
 81#define CHAN_MIX_NORMAL	0x00
 82#define CHAN_MIX_BOTH	0x55
 83#define CHAN_MIX_SWAP	0xFF
 84
 85static int cs42l51_set_chan_mix(struct snd_kcontrol *kcontrol,
 86			struct snd_ctl_elem_value *ucontrol)
 87{
 88	struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
 89	unsigned char val;
 90
 91	switch (ucontrol->value.enumerated.item[0]) {
 92	default:
 93	case 0:
 94		val = CHAN_MIX_NORMAL;
 95		break;
 96	case 1:
 97		val = CHAN_MIX_BOTH;
 98		break;
 99	case 2:
100		val = CHAN_MIX_SWAP;
101		break;
102	}
103
104	snd_soc_component_write(component, CS42L51_PCM_MIXER, val);
105
106	return 1;
107}
108
109static const DECLARE_TLV_DB_SCALE(adc_pcm_tlv, -5150, 50, 0);
110static const DECLARE_TLV_DB_SCALE(tone_tlv, -1050, 150, 0);
111
112static const DECLARE_TLV_DB_SCALE(aout_tlv, -10200, 50, 0);
 
113
114static const DECLARE_TLV_DB_SCALE(boost_tlv, 1600, 1600, 0);
115static const DECLARE_TLV_DB_SCALE(adc_boost_tlv, 2000, 2000, 0);
116static const char *chan_mix[] = {
117	"L R",
118	"L+R",
119	"R L",
120};
121
122static const DECLARE_TLV_DB_SCALE(pga_tlv, -300, 50, 0);
123static const DECLARE_TLV_DB_SCALE(adc_att_tlv, -9600, 100, 0);
124
125static SOC_ENUM_SINGLE_EXT_DECL(cs42l51_chan_mix, chan_mix);
126
127static const struct snd_kcontrol_new cs42l51_snd_controls[] = {
128	SOC_DOUBLE_R_SX_TLV("PCM Playback Volume",
129			CS42L51_PCMA_VOL, CS42L51_PCMB_VOL,
130			0, 0x19, 0x7F, adc_pcm_tlv),
131	SOC_DOUBLE_R("PCM Playback Switch",
132			CS42L51_PCMA_VOL, CS42L51_PCMB_VOL, 7, 1, 1),
133	SOC_DOUBLE_R_SX_TLV("Analog Playback Volume",
134			CS42L51_AOUTA_VOL, CS42L51_AOUTB_VOL,
135			0, 0x34, 0xE4, aout_tlv),
136	SOC_DOUBLE_R_SX_TLV("ADC Mixer Volume",
137			CS42L51_ADCA_VOL, CS42L51_ADCB_VOL,
138			0, 0x19, 0x7F, adc_pcm_tlv),
139	SOC_DOUBLE_R("ADC Mixer Switch",
140			CS42L51_ADCA_VOL, CS42L51_ADCB_VOL, 7, 1, 1),
141	SOC_DOUBLE_R_SX_TLV("ADC Attenuator Volume",
142			CS42L51_ADCA_ATT, CS42L51_ADCB_ATT,
143			0, 0xA0, 96, adc_att_tlv),
144	SOC_DOUBLE_R_SX_TLV("PGA Volume",
145			CS42L51_ALC_PGA_CTL, CS42L51_ALC_PGB_CTL,
146			0, 0x1A, 30, pga_tlv),
147	SOC_SINGLE("Playback Deemphasis Switch", CS42L51_DAC_CTL, 3, 1, 0),
148	SOC_SINGLE("Auto-Mute Switch", CS42L51_DAC_CTL, 2, 1, 0),
149	SOC_SINGLE("Soft Ramp Switch", CS42L51_DAC_CTL, 1, 1, 0),
150	SOC_SINGLE("Zero Cross Switch", CS42L51_DAC_CTL, 0, 0, 0),
151	SOC_DOUBLE_TLV("Mic Boost Volume",
152			CS42L51_MIC_CTL, 0, 1, 1, 0, boost_tlv),
153	SOC_DOUBLE_TLV("ADC Boost Volume",
154		       CS42L51_MIC_CTL, 5, 6, 1, 0, adc_boost_tlv),
155	SOC_SINGLE_TLV("Bass Volume", CS42L51_TONE_CTL, 0, 0xf, 1, tone_tlv),
156	SOC_SINGLE_TLV("Treble Volume", CS42L51_TONE_CTL, 4, 0xf, 1, tone_tlv),
157	SOC_ENUM_EXT("PCM channel mixer",
158			cs42l51_chan_mix,
159			cs42l51_get_chan_mix, cs42l51_set_chan_mix),
160};
161
162/*
163 * to power down, one must:
164 * 1.) Enable the PDN bit
165 * 2.) enable power-down for the select channels
166 * 3.) disable the PDN bit.
167 */
168static int cs42l51_pdn_event(struct snd_soc_dapm_widget *w,
169		struct snd_kcontrol *kcontrol, int event)
170{
171	struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
 
 
 
172
173	switch (event) {
174	case SND_SOC_DAPM_PRE_PMD:
175		snd_soc_component_update_bits(component, CS42L51_POWER_CTL1,
176				    CS42L51_POWER_CTL1_PDN,
177				    CS42L51_POWER_CTL1_PDN);
178		break;
179	default:
180	case SND_SOC_DAPM_POST_PMD:
181		snd_soc_component_update_bits(component, CS42L51_POWER_CTL1,
182				    CS42L51_POWER_CTL1_PDN, 0);
183		break;
184	}
 
 
185
186	return 0;
187}
188
189static const char *cs42l51_dac_names[] = {"Direct PCM",
190	"DSP PCM", "ADC"};
191static SOC_ENUM_SINGLE_DECL(cs42l51_dac_mux_enum,
192			    CS42L51_DAC_CTL, 6, cs42l51_dac_names);
193static const struct snd_kcontrol_new cs42l51_dac_mux_controls =
194	SOC_DAPM_ENUM("Route", cs42l51_dac_mux_enum);
195
196static const char *cs42l51_adcl_names[] = {"AIN1 Left", "AIN2 Left",
197	"MIC Left", "MIC+preamp Left"};
198static SOC_ENUM_SINGLE_DECL(cs42l51_adcl_mux_enum,
199			    CS42L51_ADC_INPUT, 4, cs42l51_adcl_names);
200static const struct snd_kcontrol_new cs42l51_adcl_mux_controls =
201	SOC_DAPM_ENUM("Route", cs42l51_adcl_mux_enum);
202
203static const char *cs42l51_adcr_names[] = {"AIN1 Right", "AIN2 Right",
204	"MIC Right", "MIC+preamp Right"};
205static SOC_ENUM_SINGLE_DECL(cs42l51_adcr_mux_enum,
206			    CS42L51_ADC_INPUT, 6, cs42l51_adcr_names);
207static const struct snd_kcontrol_new cs42l51_adcr_mux_controls =
208	SOC_DAPM_ENUM("Route", cs42l51_adcr_mux_enum);
209
210static const struct snd_soc_dapm_widget cs42l51_dapm_widgets[] = {
211	SND_SOC_DAPM_SUPPLY("Mic Bias", CS42L51_MIC_POWER_CTL, 1, 1, NULL,
212			    SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
213	SND_SOC_DAPM_PGA_E("Left PGA", CS42L51_POWER_CTL1, 3, 1, NULL, 0,
214		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
215	SND_SOC_DAPM_PGA_E("Right PGA", CS42L51_POWER_CTL1, 4, 1, NULL, 0,
216		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
217	SND_SOC_DAPM_ADC_E("Left ADC", "Left HiFi Capture",
218		CS42L51_POWER_CTL1, 1, 1,
219		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
220	SND_SOC_DAPM_ADC_E("Right ADC", "Right HiFi Capture",
221		CS42L51_POWER_CTL1, 2, 1,
222		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
223	SND_SOC_DAPM_DAC_E("Left DAC", NULL, CS42L51_POWER_CTL1, 5, 1,
224			   cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
225	SND_SOC_DAPM_DAC_E("Right DAC", NULL, CS42L51_POWER_CTL1, 6, 1,
226			   cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
 
 
227
228	/* analog/mic */
229	SND_SOC_DAPM_INPUT("AIN1L"),
230	SND_SOC_DAPM_INPUT("AIN1R"),
231	SND_SOC_DAPM_INPUT("AIN2L"),
232	SND_SOC_DAPM_INPUT("AIN2R"),
233	SND_SOC_DAPM_INPUT("MICL"),
234	SND_SOC_DAPM_INPUT("MICR"),
235
236	SND_SOC_DAPM_MIXER("Mic Preamp Left",
237		CS42L51_MIC_POWER_CTL, 2, 1, NULL, 0),
238	SND_SOC_DAPM_MIXER("Mic Preamp Right",
239		CS42L51_MIC_POWER_CTL, 3, 1, NULL, 0),
240
241	/* HP */
242	SND_SOC_DAPM_OUTPUT("HPL"),
243	SND_SOC_DAPM_OUTPUT("HPR"),
244
245	/* mux */
246	SND_SOC_DAPM_MUX("DAC Mux", SND_SOC_NOPM, 0, 0,
247		&cs42l51_dac_mux_controls),
248	SND_SOC_DAPM_MUX("PGA-ADC Mux Left", SND_SOC_NOPM, 0, 0,
249		&cs42l51_adcl_mux_controls),
250	SND_SOC_DAPM_MUX("PGA-ADC Mux Right", SND_SOC_NOPM, 0, 0,
251		&cs42l51_adcr_mux_controls),
252};
253
254static int mclk_event(struct snd_soc_dapm_widget *w,
255		      struct snd_kcontrol *kcontrol, int event)
256{
257	struct snd_soc_component *comp = snd_soc_dapm_to_component(w->dapm);
258	struct cs42l51_private *cs42l51 = snd_soc_component_get_drvdata(comp);
259
260	switch (event) {
261	case SND_SOC_DAPM_PRE_PMU:
262		return clk_prepare_enable(cs42l51->mclk_handle);
263	case SND_SOC_DAPM_POST_PMD:
264		/* Delay mclk shutdown to fulfill power-down sequence requirements */
265		msleep(20);
266		clk_disable_unprepare(cs42l51->mclk_handle);
267		break;
268	}
269
270	return 0;
271}
272
273static const struct snd_soc_dapm_widget cs42l51_dapm_mclk_widgets[] = {
274	SND_SOC_DAPM_SUPPLY("MCLK", SND_SOC_NOPM, 0, 0, mclk_event,
275			    SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
276};
277
278static const struct snd_soc_dapm_route cs42l51_routes[] = {
279	{"HPL", NULL, "Left DAC"},
280	{"HPR", NULL, "Right DAC"},
281
282	{"Right DAC", NULL, "DAC Mux"},
283	{"Left DAC", NULL, "DAC Mux"},
284
285	{"DAC Mux", "Direct PCM", "Playback"},
286	{"DAC Mux", "DSP PCM", "Playback"},
287
288	{"Left ADC", NULL, "Left PGA"},
289	{"Right ADC", NULL, "Right PGA"},
290
291	{"Mic Preamp Left",  NULL,  "MICL"},
292	{"Mic Preamp Right", NULL,  "MICR"},
293
294	{"PGA-ADC Mux Left",  "AIN1 Left",        "AIN1L" },
295	{"PGA-ADC Mux Left",  "AIN2 Left",        "AIN2L" },
296	{"PGA-ADC Mux Left",  "MIC Left",         "MICL"  },
297	{"PGA-ADC Mux Left",  "MIC+preamp Left",  "Mic Preamp Left" },
298	{"PGA-ADC Mux Right", "AIN1 Right",       "AIN1R" },
299	{"PGA-ADC Mux Right", "AIN2 Right",       "AIN2R" },
300	{"PGA-ADC Mux Right", "MIC Right",        "MICR" },
301	{"PGA-ADC Mux Right", "MIC+preamp Right", "Mic Preamp Right" },
302
303	{"Left PGA", NULL, "PGA-ADC Mux Left"},
304	{"Right PGA", NULL, "PGA-ADC Mux Right"},
305};
306
307static int cs42l51_set_dai_fmt(struct snd_soc_dai *codec_dai,
308		unsigned int format)
309{
310	struct snd_soc_component *component = codec_dai->component;
311	struct cs42l51_private *cs42l51 = snd_soc_component_get_drvdata(component);
 
312
313	switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
314	case SND_SOC_DAIFMT_I2S:
315	case SND_SOC_DAIFMT_LEFT_J:
316	case SND_SOC_DAIFMT_RIGHT_J:
317		cs42l51->audio_mode = format & SND_SOC_DAIFMT_FORMAT_MASK;
318		break;
319	default:
320		dev_err(component->dev, "invalid DAI format\n");
321		return -EINVAL;
322	}
323
324	switch (format & SND_SOC_DAIFMT_MASTER_MASK) {
325	case SND_SOC_DAIFMT_CBM_CFM:
326		cs42l51->func = MODE_MASTER;
327		break;
328	case SND_SOC_DAIFMT_CBS_CFS:
329		cs42l51->func = MODE_SLAVE_AUTO;
330		break;
331	default:
332		dev_err(component->dev, "Unknown master/slave configuration\n");
333		return -EINVAL;
334	}
335
336	return 0;
337}
338
339struct cs42l51_ratios {
340	unsigned int ratio;
341	unsigned char speed_mode;
342	unsigned char mclk;
343};
344
345static struct cs42l51_ratios slave_ratios[] = {
346	{  512, CS42L51_QSM_MODE, 0 }, {  768, CS42L51_QSM_MODE, 0 },
347	{ 1024, CS42L51_QSM_MODE, 0 }, { 1536, CS42L51_QSM_MODE, 0 },
348	{ 2048, CS42L51_QSM_MODE, 0 }, { 3072, CS42L51_QSM_MODE, 0 },
349	{  256, CS42L51_HSM_MODE, 0 }, {  384, CS42L51_HSM_MODE, 0 },
350	{  512, CS42L51_HSM_MODE, 0 }, {  768, CS42L51_HSM_MODE, 0 },
351	{ 1024, CS42L51_HSM_MODE, 0 }, { 1536, CS42L51_HSM_MODE, 0 },
352	{  128, CS42L51_SSM_MODE, 0 }, {  192, CS42L51_SSM_MODE, 0 },
353	{  256, CS42L51_SSM_MODE, 0 }, {  384, CS42L51_SSM_MODE, 0 },
354	{  512, CS42L51_SSM_MODE, 0 }, {  768, CS42L51_SSM_MODE, 0 },
355	{  128, CS42L51_DSM_MODE, 0 }, {  192, CS42L51_DSM_MODE, 0 },
356	{  256, CS42L51_DSM_MODE, 0 }, {  384, CS42L51_DSM_MODE, 0 },
357};
358
359static struct cs42l51_ratios slave_auto_ratios[] = {
360	{ 1024, CS42L51_QSM_MODE, 0 }, { 1536, CS42L51_QSM_MODE, 0 },
361	{ 2048, CS42L51_QSM_MODE, 1 }, { 3072, CS42L51_QSM_MODE, 1 },
362	{  512, CS42L51_HSM_MODE, 0 }, {  768, CS42L51_HSM_MODE, 0 },
363	{ 1024, CS42L51_HSM_MODE, 1 }, { 1536, CS42L51_HSM_MODE, 1 },
364	{  256, CS42L51_SSM_MODE, 0 }, {  384, CS42L51_SSM_MODE, 0 },
365	{  512, CS42L51_SSM_MODE, 1 }, {  768, CS42L51_SSM_MODE, 1 },
366	{  128, CS42L51_DSM_MODE, 0 }, {  192, CS42L51_DSM_MODE, 0 },
367	{  256, CS42L51_DSM_MODE, 1 }, {  384, CS42L51_DSM_MODE, 1 },
368};
369
370/*
371 * Master mode mclk/fs ratios.
372 * Recommended configurations are SSM for 4-50khz and DSM for 50-100kHz ranges
373 * The table below provides support of following ratios:
374 * 128: SSM (%128) with div2 disabled
375 * 256: SSM (%128) with div2 enabled
376 * In both cases, if sampling rate is above 50kHz, SSM is overridden
377 * with DSM (%128) configuration
378 */
379static struct cs42l51_ratios master_ratios[] = {
380	{ 128, CS42L51_SSM_MODE, 0 }, { 256, CS42L51_SSM_MODE, 1 },
381};
382
383static int cs42l51_set_dai_sysclk(struct snd_soc_dai *codec_dai,
384		int clk_id, unsigned int freq, int dir)
385{
386	struct snd_soc_component *component = codec_dai->component;
387	struct cs42l51_private *cs42l51 = snd_soc_component_get_drvdata(component);
388
389	cs42l51->mclk = freq;
390	return 0;
391}
392
393static int cs42l51_hw_params(struct snd_pcm_substream *substream,
394		struct snd_pcm_hw_params *params,
395		struct snd_soc_dai *dai)
396{
397	struct snd_soc_component *component = dai->component;
398	struct cs42l51_private *cs42l51 = snd_soc_component_get_drvdata(component);
 
399	int ret;
400	unsigned int i;
401	unsigned int rate;
402	unsigned int ratio;
403	struct cs42l51_ratios *ratios = NULL;
404	int nr_ratios = 0;
405	int intf_ctl, power_ctl, fmt, mode;
406
407	switch (cs42l51->func) {
408	case MODE_MASTER:
409		ratios = master_ratios;
410		nr_ratios = ARRAY_SIZE(master_ratios);
411		break;
412	case MODE_SLAVE:
413		ratios = slave_ratios;
414		nr_ratios = ARRAY_SIZE(slave_ratios);
415		break;
416	case MODE_SLAVE_AUTO:
417		ratios = slave_auto_ratios;
418		nr_ratios = ARRAY_SIZE(slave_auto_ratios);
419		break;
420	}
421
422	/* Figure out which MCLK/LRCK ratio to use */
423	rate = params_rate(params);     /* Sampling rate, in Hz */
424	ratio = cs42l51->mclk / rate;    /* MCLK/LRCK ratio */
425	for (i = 0; i < nr_ratios; i++) {
426		if (ratios[i].ratio == ratio)
427			break;
428	}
429
430	if (i == nr_ratios) {
431		/* We did not find a matching ratio */
432		dev_err(component->dev, "could not find matching ratio\n");
433		return -EINVAL;
434	}
435
436	intf_ctl = snd_soc_component_read(component, CS42L51_INTF_CTL);
437	power_ctl = snd_soc_component_read(component, CS42L51_MIC_POWER_CTL);
438
439	intf_ctl &= ~(CS42L51_INTF_CTL_MASTER | CS42L51_INTF_CTL_ADC_I2S
440			| CS42L51_INTF_CTL_DAC_FORMAT(7));
441	power_ctl &= ~(CS42L51_MIC_POWER_CTL_SPEED(3)
442			| CS42L51_MIC_POWER_CTL_MCLK_DIV2);
443
444	switch (cs42l51->func) {
445	case MODE_MASTER:
446		intf_ctl |= CS42L51_INTF_CTL_MASTER;
447		mode = ratios[i].speed_mode;
448		/* Force DSM mode if sampling rate is above 50kHz */
449		if (rate > 50000)
450			mode = CS42L51_DSM_MODE;
451		power_ctl |= CS42L51_MIC_POWER_CTL_SPEED(mode);
452		/*
453		 * Auto detect mode is not applicable for master mode and has to
454		 * be disabled. Otherwise SPEED[1:0] bits will be ignored.
455		 */
456		power_ctl &= ~CS42L51_MIC_POWER_CTL_AUTO;
457		break;
458	case MODE_SLAVE:
459		power_ctl |= CS42L51_MIC_POWER_CTL_SPEED(ratios[i].speed_mode);
460		break;
461	case MODE_SLAVE_AUTO:
462		power_ctl |= CS42L51_MIC_POWER_CTL_AUTO;
463		break;
464	}
465
466	switch (cs42l51->audio_mode) {
467	case SND_SOC_DAIFMT_I2S:
468		intf_ctl |= CS42L51_INTF_CTL_ADC_I2S;
469		intf_ctl |= CS42L51_INTF_CTL_DAC_FORMAT(CS42L51_DAC_DIF_I2S);
470		break;
471	case SND_SOC_DAIFMT_LEFT_J:
472		intf_ctl |= CS42L51_INTF_CTL_DAC_FORMAT(CS42L51_DAC_DIF_LJ24);
473		break;
474	case SND_SOC_DAIFMT_RIGHT_J:
475		switch (params_width(params)) {
476		case 16:
 
477			fmt = CS42L51_DAC_DIF_RJ16;
478			break;
479		case 18:
 
480			fmt = CS42L51_DAC_DIF_RJ18;
481			break;
482		case 20:
 
483			fmt = CS42L51_DAC_DIF_RJ20;
484			break;
485		case 24:
 
486			fmt = CS42L51_DAC_DIF_RJ24;
487			break;
488		default:
489			dev_err(component->dev, "unknown format\n");
490			return -EINVAL;
491		}
492		intf_ctl |= CS42L51_INTF_CTL_DAC_FORMAT(fmt);
493		break;
494	default:
495		dev_err(component->dev, "unknown format\n");
496		return -EINVAL;
497	}
498
499	if (ratios[i].mclk)
500		power_ctl |= CS42L51_MIC_POWER_CTL_MCLK_DIV2;
501
502	ret = snd_soc_component_write(component, CS42L51_INTF_CTL, intf_ctl);
503	if (ret < 0)
504		return ret;
505
506	ret = snd_soc_component_write(component, CS42L51_MIC_POWER_CTL, power_ctl);
507	if (ret < 0)
508		return ret;
509
510	return 0;
511}
512
513static int cs42l51_dai_mute(struct snd_soc_dai *dai, int mute, int direction)
514{
515	struct snd_soc_component *component = dai->component;
516	int reg;
517	int mask = CS42L51_DAC_OUT_CTL_DACA_MUTE|CS42L51_DAC_OUT_CTL_DACB_MUTE;
518
519	reg = snd_soc_component_read(component, CS42L51_DAC_OUT_CTL);
520
521	if (mute)
522		reg |= mask;
523	else
524		reg &= ~mask;
525
526	return snd_soc_component_write(component, CS42L51_DAC_OUT_CTL, reg);
527}
528
529static int cs42l51_of_xlate_dai_id(struct snd_soc_component *component,
530				   struct device_node *endpoint)
531{
532	/* return dai id 0, whatever the endpoint index */
533	return 0;
534}
535
536static const struct snd_soc_dai_ops cs42l51_dai_ops = {
537	.hw_params      = cs42l51_hw_params,
538	.set_sysclk     = cs42l51_set_dai_sysclk,
539	.set_fmt        = cs42l51_set_dai_fmt,
540	.mute_stream    = cs42l51_dai_mute,
541	.no_capture_mute = 1,
542};
543
544static struct snd_soc_dai_driver cs42l51_dai = {
545	.name = "cs42l51-hifi",
546	.playback = {
547		.stream_name = "Playback",
548		.channels_min = 1,
549		.channels_max = 2,
550		.rates = SNDRV_PCM_RATE_8000_96000,
551		.formats = CS42L51_FORMATS,
552	},
553	.capture = {
554		.stream_name = "Capture",
555		.channels_min = 1,
556		.channels_max = 2,
557		.rates = SNDRV_PCM_RATE_8000_96000,
558		.formats = CS42L51_FORMATS,
559	},
560	.ops = &cs42l51_dai_ops,
561};
562
563static int cs42l51_component_probe(struct snd_soc_component *component)
564{
 
 
565	int ret, reg;
566	struct snd_soc_dapm_context *dapm;
567	struct cs42l51_private *cs42l51;
568
569	cs42l51 = snd_soc_component_get_drvdata(component);
570	dapm = snd_soc_component_get_dapm(component);
571
572	if (cs42l51->mclk_handle)
573		snd_soc_dapm_new_controls(dapm, cs42l51_dapm_mclk_widgets, 1);
 
 
 
 
 
 
 
 
 
574
575	/*
576	 * DAC configuration
577	 * - Use signal processor
578	 * - auto mute
579	 * - vol changes immediate
580	 * - no de-emphasize
581	 */
582	reg = CS42L51_DAC_CTL_DATA_SEL(1)
583		| CS42L51_DAC_CTL_AMUTE | CS42L51_DAC_CTL_DACSZ(0);
584	ret = snd_soc_component_write(component, CS42L51_DAC_CTL, reg);
585	if (ret < 0)
586		return ret;
587
588	return 0;
589}
 
 
 
 
590
591static const struct snd_soc_component_driver soc_component_device_cs42l51 = {
592	.probe			= cs42l51_component_probe,
593	.controls		= cs42l51_snd_controls,
594	.num_controls		= ARRAY_SIZE(cs42l51_snd_controls),
595	.dapm_widgets		= cs42l51_dapm_widgets,
596	.num_dapm_widgets	= ARRAY_SIZE(cs42l51_dapm_widgets),
597	.dapm_routes		= cs42l51_routes,
598	.num_dapm_routes	= ARRAY_SIZE(cs42l51_routes),
599	.of_xlate_dai_id	= cs42l51_of_xlate_dai_id,
600	.idle_bias_on		= 1,
601	.use_pmdown_time	= 1,
602	.endianness		= 1,
603};
604
605static bool cs42l51_writeable_reg(struct device *dev, unsigned int reg)
606{
607	switch (reg) {
608	case CS42L51_POWER_CTL1:
609	case CS42L51_MIC_POWER_CTL:
610	case CS42L51_INTF_CTL:
611	case CS42L51_MIC_CTL:
612	case CS42L51_ADC_CTL:
613	case CS42L51_ADC_INPUT:
614	case CS42L51_DAC_OUT_CTL:
615	case CS42L51_DAC_CTL:
616	case CS42L51_ALC_PGA_CTL:
617	case CS42L51_ALC_PGB_CTL:
618	case CS42L51_ADCA_ATT:
619	case CS42L51_ADCB_ATT:
620	case CS42L51_ADCA_VOL:
621	case CS42L51_ADCB_VOL:
622	case CS42L51_PCMA_VOL:
623	case CS42L51_PCMB_VOL:
624	case CS42L51_BEEP_FREQ:
625	case CS42L51_BEEP_VOL:
626	case CS42L51_BEEP_CONF:
627	case CS42L51_TONE_CTL:
628	case CS42L51_AOUTA_VOL:
629	case CS42L51_AOUTB_VOL:
630	case CS42L51_PCM_MIXER:
631	case CS42L51_LIMIT_THRES_DIS:
632	case CS42L51_LIMIT_REL:
633	case CS42L51_LIMIT_ATT:
634	case CS42L51_ALC_EN:
635	case CS42L51_ALC_REL:
636	case CS42L51_ALC_THRES:
637	case CS42L51_NOISE_CONF:
638	case CS42L51_CHARGE_FREQ:
639		return true;
640	default:
641		return false;
642	}
643}
644
645static bool cs42l51_volatile_reg(struct device *dev, unsigned int reg)
646{
647	switch (reg) {
648	case CS42L51_STATUS:
649		return true;
650	default:
651		return false;
652	}
653}
654
655static bool cs42l51_readable_reg(struct device *dev, unsigned int reg)
656{
657	switch (reg) {
658	case CS42L51_CHIP_REV_ID:
659	case CS42L51_POWER_CTL1:
660	case CS42L51_MIC_POWER_CTL:
661	case CS42L51_INTF_CTL:
662	case CS42L51_MIC_CTL:
663	case CS42L51_ADC_CTL:
664	case CS42L51_ADC_INPUT:
665	case CS42L51_DAC_OUT_CTL:
666	case CS42L51_DAC_CTL:
667	case CS42L51_ALC_PGA_CTL:
668	case CS42L51_ALC_PGB_CTL:
669	case CS42L51_ADCA_ATT:
670	case CS42L51_ADCB_ATT:
671	case CS42L51_ADCA_VOL:
672	case CS42L51_ADCB_VOL:
673	case CS42L51_PCMA_VOL:
674	case CS42L51_PCMB_VOL:
675	case CS42L51_BEEP_FREQ:
676	case CS42L51_BEEP_VOL:
677	case CS42L51_BEEP_CONF:
678	case CS42L51_TONE_CTL:
679	case CS42L51_AOUTA_VOL:
680	case CS42L51_AOUTB_VOL:
681	case CS42L51_PCM_MIXER:
682	case CS42L51_LIMIT_THRES_DIS:
683	case CS42L51_LIMIT_REL:
684	case CS42L51_LIMIT_ATT:
685	case CS42L51_ALC_EN:
686	case CS42L51_ALC_REL:
687	case CS42L51_ALC_THRES:
688	case CS42L51_NOISE_CONF:
689	case CS42L51_STATUS:
690	case CS42L51_CHARGE_FREQ:
691		return true;
692	default:
693		return false;
694	}
695}
696
697const struct regmap_config cs42l51_regmap = {
698	.reg_bits = 8,
699	.reg_stride = 1,
700	.val_bits = 8,
701	.use_single_write = true,
702	.readable_reg = cs42l51_readable_reg,
703	.volatile_reg = cs42l51_volatile_reg,
704	.writeable_reg = cs42l51_writeable_reg,
705	.max_register = CS42L51_CHARGE_FREQ,
706	.cache_type = REGCACHE_MAPLE,
707};
708EXPORT_SYMBOL_GPL(cs42l51_regmap);
709
710int cs42l51_probe(struct device *dev, struct regmap *regmap)
 
711{
712	struct cs42l51_private *cs42l51;
713	unsigned int val;
714	int ret, i;
715
716	if (IS_ERR(regmap))
717		return PTR_ERR(regmap);
718
719	cs42l51 = devm_kzalloc(dev, sizeof(struct cs42l51_private),
720			       GFP_KERNEL);
721	if (!cs42l51)
722		return -ENOMEM;
723
724	dev_set_drvdata(dev, cs42l51);
725	cs42l51->regmap = regmap;
726
727	cs42l51->mclk_handle = devm_clk_get_optional(dev, "MCLK");
728	if (IS_ERR(cs42l51->mclk_handle))
729		return PTR_ERR(cs42l51->mclk_handle);
730
731	for (i = 0; i < ARRAY_SIZE(cs42l51->supplies); i++)
732		cs42l51->supplies[i].supply = cs42l51_supply_names[i];
733
734	ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(cs42l51->supplies),
735				      cs42l51->supplies);
736	if (ret != 0) {
737		dev_err(dev, "Failed to request supplies: %d\n", ret);
738		return ret;
739	}
740
741	ret = regulator_bulk_enable(ARRAY_SIZE(cs42l51->supplies),
742				    cs42l51->supplies);
743	if (ret != 0) {
744		dev_err(dev, "Failed to enable supplies: %d\n", ret);
745		return ret;
746	}
747
748	cs42l51->reset_gpio = devm_gpiod_get_optional(dev, "reset",
749						      GPIOD_OUT_LOW);
750	if (IS_ERR(cs42l51->reset_gpio)) {
751		ret = PTR_ERR(cs42l51->reset_gpio);
752		goto error;
753	}
754
755	if (cs42l51->reset_gpio) {
756		dev_dbg(dev, "Release reset gpio\n");
757		gpiod_set_value_cansleep(cs42l51->reset_gpio, 0);
758		mdelay(2);
759	}
760
761	/* Verify that we have a CS42L51 */
762	ret = regmap_read(regmap, CS42L51_CHIP_REV_ID, &val);
763	if (ret < 0) {
764		dev_err(dev, "failed to read I2C\n");
765		goto error;
766	}
767
768	if ((val != CS42L51_MK_CHIP_REV(CS42L51_CHIP_ID, CS42L51_CHIP_REV_A)) &&
769	    (val != CS42L51_MK_CHIP_REV(CS42L51_CHIP_ID, CS42L51_CHIP_REV_B))) {
770		dev_err(dev, "Invalid chip id: %x\n", val);
771		ret = -ENODEV;
772		goto error;
773	}
774	dev_info(dev, "Cirrus Logic CS42L51, Revision: %02X\n",
775		 val & CS42L51_CHIP_REV_MASK);
776
777	ret = devm_snd_soc_register_component(dev,
778			&soc_component_device_cs42l51, &cs42l51_dai, 1);
779	if (ret < 0)
780		goto error;
781
782	return 0;
 
 
 
 
783
 
 
 
 
 
 
 
 
784error:
785	gpiod_set_value_cansleep(cs42l51->reset_gpio, 1);
786	regulator_bulk_disable(ARRAY_SIZE(cs42l51->supplies),
787			       cs42l51->supplies);
788	return ret;
789}
790EXPORT_SYMBOL_GPL(cs42l51_probe);
791
792void cs42l51_remove(struct device *dev)
793{
794	struct cs42l51_private *cs42l51 = dev_get_drvdata(dev);
795	int ret;
796
797	gpiod_set_value_cansleep(cs42l51->reset_gpio, 1);
798
799	ret = regulator_bulk_disable(ARRAY_SIZE(cs42l51->supplies),
800				     cs42l51->supplies);
801	if (ret)
802		dev_warn(dev, "Failed to disable all regulators (%pe)\n",
803			 ERR_PTR(ret));
804
 
 
 
805}
806EXPORT_SYMBOL_GPL(cs42l51_remove);
807
808int __maybe_unused cs42l51_suspend(struct device *dev)
809{
810	struct cs42l51_private *cs42l51 = dev_get_drvdata(dev);
 
 
 
 
 
 
 
 
 
 
 
 
811
812	regcache_cache_only(cs42l51->regmap, true);
813	regcache_mark_dirty(cs42l51->regmap);
 
814
 
 
 
 
 
815	return 0;
816}
817EXPORT_SYMBOL_GPL(cs42l51_suspend);
818
819int __maybe_unused cs42l51_resume(struct device *dev)
820{
821	struct cs42l51_private *cs42l51 = dev_get_drvdata(dev);
822
823	regcache_cache_only(cs42l51->regmap, false);
824
825	return regcache_sync(cs42l51->regmap);
826}
827EXPORT_SYMBOL_GPL(cs42l51_resume);
828
829MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
830MODULE_DESCRIPTION("Cirrus Logic CS42L51 ALSA SoC Codec Driver");
831MODULE_LICENSE("GPL");
v3.1
 
  1/*
  2 * cs42l51.c
  3 *
  4 * ASoC Driver for Cirrus Logic CS42L51 codecs
  5 *
  6 * Copyright (c) 2010 Arnaud Patard <apatard@mandriva.com>
  7 *
  8 * Based on cs4270.c - Copyright (c) Freescale Semiconductor
  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 version 2 as
 12 * published by the Free Software Foundation.
 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 * For now:
 20 *  - Only I2C is support. Not SPI
 21 *  - master mode *NOT* supported
 22 */
 23
 
 24#include <linux/module.h>
 25#include <linux/platform_device.h>
 26#include <linux/slab.h>
 27#include <sound/core.h>
 28#include <sound/soc.h>
 29#include <sound/tlv.h>
 30#include <sound/initval.h>
 31#include <sound/pcm_params.h>
 32#include <sound/pcm.h>
 33#include <linux/i2c.h>
 
 
 34
 35#include "cs42l51.h"
 36
 37enum master_slave_mode {
 38	MODE_SLAVE,
 39	MODE_SLAVE_AUTO,
 40	MODE_MASTER,
 41};
 42
 
 
 
 
 
 
 
 43struct cs42l51_private {
 44	enum snd_soc_control_type control_type;
 45	void *control_data;
 46	unsigned int mclk;
 
 47	unsigned int audio_mode;	/* The mode (I2S or left-justified) */
 48	enum master_slave_mode func;
 
 
 
 49};
 50
 51#define CS42L51_FORMATS ( \
 52		SNDRV_PCM_FMTBIT_S16_LE  | SNDRV_PCM_FMTBIT_S16_BE  | \
 53		SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE | \
 54		SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE | \
 55		SNDRV_PCM_FMTBIT_S24_LE  | SNDRV_PCM_FMTBIT_S24_BE)
 56
 57static int cs42l51_fill_cache(struct snd_soc_codec *codec)
 58{
 59	u8 *cache = codec->reg_cache + 1;
 60	struct i2c_client *i2c_client = codec->control_data;
 61	s32 length;
 62
 63	length = i2c_smbus_read_i2c_block_data(i2c_client,
 64			CS42L51_FIRSTREG | 0x80, CS42L51_NUMREGS, cache);
 65	if (length != CS42L51_NUMREGS) {
 66		dev_err(&i2c_client->dev,
 67				"I2C read failure, addr=0x%x (ret=%d vs %d)\n",
 68				i2c_client->addr, length, CS42L51_NUMREGS);
 69		return -EIO;
 70	}
 71
 72	return 0;
 73}
 74
 75static int cs42l51_get_chan_mix(struct snd_kcontrol *kcontrol,
 76			struct snd_ctl_elem_value *ucontrol)
 77{
 78	struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
 79	unsigned long value = snd_soc_read(codec, CS42L51_PCM_MIXER)&3;
 80
 81	switch (value) {
 82	default:
 83	case 0:
 84		ucontrol->value.integer.value[0] = 0;
 85		break;
 86	/* same value : (L+R)/2 and (R+L)/2 */
 87	case 1:
 88	case 2:
 89		ucontrol->value.integer.value[0] = 1;
 90		break;
 91	case 3:
 92		ucontrol->value.integer.value[0] = 2;
 93		break;
 94	}
 95
 96	return 0;
 97}
 98
 99#define CHAN_MIX_NORMAL	0x00
100#define CHAN_MIX_BOTH	0x55
101#define CHAN_MIX_SWAP	0xFF
102
103static int cs42l51_set_chan_mix(struct snd_kcontrol *kcontrol,
104			struct snd_ctl_elem_value *ucontrol)
105{
106	struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
107	unsigned char val;
108
109	switch (ucontrol->value.integer.value[0]) {
110	default:
111	case 0:
112		val = CHAN_MIX_NORMAL;
113		break;
114	case 1:
115		val = CHAN_MIX_BOTH;
116		break;
117	case 2:
118		val = CHAN_MIX_SWAP;
119		break;
120	}
121
122	snd_soc_write(codec, CS42L51_PCM_MIXER, val);
123
124	return 1;
125}
126
127static const DECLARE_TLV_DB_SCALE(adc_pcm_tlv, -5150, 50, 0);
128static const DECLARE_TLV_DB_SCALE(tone_tlv, -1050, 150, 0);
129/* This is a lie. after -102 db, it stays at -102 */
130/* maybe a range would be better */
131static const DECLARE_TLV_DB_SCALE(aout_tlv, -11550, 50, 0);
132
133static const DECLARE_TLV_DB_SCALE(boost_tlv, 1600, 1600, 0);
 
134static const char *chan_mix[] = {
135	"L R",
136	"L+R",
137	"R L",
138};
139
140static const struct soc_enum cs42l51_chan_mix =
141	SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(chan_mix), chan_mix);
 
 
142
143static const struct snd_kcontrol_new cs42l51_snd_controls[] = {
144	SOC_DOUBLE_R_SX_TLV("PCM Playback Volume",
145			CS42L51_PCMA_VOL, CS42L51_PCMB_VOL,
146			7, 0xffffff99, 0x18, adc_pcm_tlv),
147	SOC_DOUBLE_R("PCM Playback Switch",
148			CS42L51_PCMA_VOL, CS42L51_PCMB_VOL, 7, 1, 1),
149	SOC_DOUBLE_R_SX_TLV("Analog Playback Volume",
150			CS42L51_AOUTA_VOL, CS42L51_AOUTB_VOL,
151			8, 0xffffff19, 0x18, aout_tlv),
152	SOC_DOUBLE_R_SX_TLV("ADC Mixer Volume",
153			CS42L51_ADCA_VOL, CS42L51_ADCB_VOL,
154			7, 0xffffff99, 0x18, adc_pcm_tlv),
155	SOC_DOUBLE_R("ADC Mixer Switch",
156			CS42L51_ADCA_VOL, CS42L51_ADCB_VOL, 7, 1, 1),
 
 
 
 
 
 
157	SOC_SINGLE("Playback Deemphasis Switch", CS42L51_DAC_CTL, 3, 1, 0),
158	SOC_SINGLE("Auto-Mute Switch", CS42L51_DAC_CTL, 2, 1, 0),
159	SOC_SINGLE("Soft Ramp Switch", CS42L51_DAC_CTL, 1, 1, 0),
160	SOC_SINGLE("Zero Cross Switch", CS42L51_DAC_CTL, 0, 0, 0),
161	SOC_DOUBLE_TLV("Mic Boost Volume",
162			CS42L51_MIC_CTL, 0, 1, 1, 0, boost_tlv),
 
 
163	SOC_SINGLE_TLV("Bass Volume", CS42L51_TONE_CTL, 0, 0xf, 1, tone_tlv),
164	SOC_SINGLE_TLV("Treble Volume", CS42L51_TONE_CTL, 4, 0xf, 1, tone_tlv),
165	SOC_ENUM_EXT("PCM channel mixer",
166			cs42l51_chan_mix,
167			cs42l51_get_chan_mix, cs42l51_set_chan_mix),
168};
169
170/*
171 * to power down, one must:
172 * 1.) Enable the PDN bit
173 * 2.) enable power-down for the select channels
174 * 3.) disable the PDN bit.
175 */
176static int cs42l51_pdn_event(struct snd_soc_dapm_widget *w,
177		struct snd_kcontrol *kcontrol, int event)
178{
179	unsigned long value;
180
181	value = snd_soc_read(w->codec, CS42L51_POWER_CTL1);
182	value &= ~CS42L51_POWER_CTL1_PDN;
183
184	switch (event) {
185	case SND_SOC_DAPM_PRE_PMD:
186		value |= CS42L51_POWER_CTL1_PDN;
 
 
187		break;
188	default:
189	case SND_SOC_DAPM_POST_PMD:
 
 
190		break;
191	}
192	snd_soc_update_bits(w->codec, CS42L51_POWER_CTL1,
193		CS42L51_POWER_CTL1_PDN, value);
194
195	return 0;
196}
197
198static const char *cs42l51_dac_names[] = {"Direct PCM",
199	"DSP PCM", "ADC"};
200static const struct soc_enum cs42l51_dac_mux_enum =
201	SOC_ENUM_SINGLE(CS42L51_DAC_CTL, 6, 3, cs42l51_dac_names);
202static const struct snd_kcontrol_new cs42l51_dac_mux_controls =
203	SOC_DAPM_ENUM("Route", cs42l51_dac_mux_enum);
204
205static const char *cs42l51_adcl_names[] = {"AIN1 Left", "AIN2 Left",
206	"MIC Left", "MIC+preamp Left"};
207static const struct soc_enum cs42l51_adcl_mux_enum =
208	SOC_ENUM_SINGLE(CS42L51_ADC_INPUT, 4, 4, cs42l51_adcl_names);
209static const struct snd_kcontrol_new cs42l51_adcl_mux_controls =
210	SOC_DAPM_ENUM("Route", cs42l51_adcl_mux_enum);
211
212static const char *cs42l51_adcr_names[] = {"AIN1 Right", "AIN2 Right",
213	"MIC Right", "MIC+preamp Right"};
214static const struct soc_enum cs42l51_adcr_mux_enum =
215	SOC_ENUM_SINGLE(CS42L51_ADC_INPUT, 6, 4, cs42l51_adcr_names);
216static const struct snd_kcontrol_new cs42l51_adcr_mux_controls =
217	SOC_DAPM_ENUM("Route", cs42l51_adcr_mux_enum);
218
219static const struct snd_soc_dapm_widget cs42l51_dapm_widgets[] = {
220	SND_SOC_DAPM_MICBIAS("Mic Bias", CS42L51_MIC_POWER_CTL, 1, 1),
 
221	SND_SOC_DAPM_PGA_E("Left PGA", CS42L51_POWER_CTL1, 3, 1, NULL, 0,
222		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
223	SND_SOC_DAPM_PGA_E("Right PGA", CS42L51_POWER_CTL1, 4, 1, NULL, 0,
224		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
225	SND_SOC_DAPM_ADC_E("Left ADC", "Left HiFi Capture",
226		CS42L51_POWER_CTL1, 1, 1,
227		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
228	SND_SOC_DAPM_ADC_E("Right ADC", "Right HiFi Capture",
229		CS42L51_POWER_CTL1, 2, 1,
230		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
231	SND_SOC_DAPM_DAC_E("Left DAC", "Left HiFi Playback",
232		CS42L51_POWER_CTL1, 5, 1,
233		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
234	SND_SOC_DAPM_DAC_E("Right DAC", "Right HiFi Playback",
235		CS42L51_POWER_CTL1, 6, 1,
236		cs42l51_pdn_event, SND_SOC_DAPM_PRE_POST_PMD),
237
238	/* analog/mic */
239	SND_SOC_DAPM_INPUT("AIN1L"),
240	SND_SOC_DAPM_INPUT("AIN1R"),
241	SND_SOC_DAPM_INPUT("AIN2L"),
242	SND_SOC_DAPM_INPUT("AIN2R"),
243	SND_SOC_DAPM_INPUT("MICL"),
244	SND_SOC_DAPM_INPUT("MICR"),
245
246	SND_SOC_DAPM_MIXER("Mic Preamp Left",
247		CS42L51_MIC_POWER_CTL, 2, 1, NULL, 0),
248	SND_SOC_DAPM_MIXER("Mic Preamp Right",
249		CS42L51_MIC_POWER_CTL, 3, 1, NULL, 0),
250
251	/* HP */
252	SND_SOC_DAPM_OUTPUT("HPL"),
253	SND_SOC_DAPM_OUTPUT("HPR"),
254
255	/* mux */
256	SND_SOC_DAPM_MUX("DAC Mux", SND_SOC_NOPM, 0, 0,
257		&cs42l51_dac_mux_controls),
258	SND_SOC_DAPM_MUX("PGA-ADC Mux Left", SND_SOC_NOPM, 0, 0,
259		&cs42l51_adcl_mux_controls),
260	SND_SOC_DAPM_MUX("PGA-ADC Mux Right", SND_SOC_NOPM, 0, 0,
261		&cs42l51_adcr_mux_controls),
262};
263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264static const struct snd_soc_dapm_route cs42l51_routes[] = {
265	{"HPL", NULL, "Left DAC"},
266	{"HPR", NULL, "Right DAC"},
267
 
 
 
 
 
 
268	{"Left ADC", NULL, "Left PGA"},
269	{"Right ADC", NULL, "Right PGA"},
270
271	{"Mic Preamp Left",  NULL,  "MICL"},
272	{"Mic Preamp Right", NULL,  "MICR"},
273
274	{"PGA-ADC Mux Left",  "AIN1 Left",        "AIN1L" },
275	{"PGA-ADC Mux Left",  "AIN2 Left",        "AIN2L" },
276	{"PGA-ADC Mux Left",  "MIC Left",         "MICL"  },
277	{"PGA-ADC Mux Left",  "MIC+preamp Left",  "Mic Preamp Left" },
278	{"PGA-ADC Mux Right", "AIN1 Right",       "AIN1R" },
279	{"PGA-ADC Mux Right", "AIN2 Right",       "AIN2R" },
280	{"PGA-ADC Mux Right", "MIC Right",        "MICR" },
281	{"PGA-ADC Mux Right", "MIC+preamp Right", "Mic Preamp Right" },
282
283	{"Left PGA", NULL, "PGA-ADC Mux Left"},
284	{"Right PGA", NULL, "PGA-ADC Mux Right"},
285};
286
287static int cs42l51_set_dai_fmt(struct snd_soc_dai *codec_dai,
288		unsigned int format)
289{
290	struct snd_soc_codec *codec = codec_dai->codec;
291	struct cs42l51_private *cs42l51 = snd_soc_codec_get_drvdata(codec);
292	int ret = 0;
293
294	switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
295	case SND_SOC_DAIFMT_I2S:
296	case SND_SOC_DAIFMT_LEFT_J:
297	case SND_SOC_DAIFMT_RIGHT_J:
298		cs42l51->audio_mode = format & SND_SOC_DAIFMT_FORMAT_MASK;
299		break;
300	default:
301		dev_err(codec->dev, "invalid DAI format\n");
302		ret = -EINVAL;
303	}
304
305	switch (format & SND_SOC_DAIFMT_MASTER_MASK) {
306	case SND_SOC_DAIFMT_CBM_CFM:
307		cs42l51->func = MODE_MASTER;
308		break;
309	case SND_SOC_DAIFMT_CBS_CFS:
310		cs42l51->func = MODE_SLAVE_AUTO;
311		break;
312	default:
313		ret = -EINVAL;
314		break;
315	}
316
317	return ret;
318}
319
320struct cs42l51_ratios {
321	unsigned int ratio;
322	unsigned char speed_mode;
323	unsigned char mclk;
324};
325
326static struct cs42l51_ratios slave_ratios[] = {
327	{  512, CS42L51_QSM_MODE, 0 }, {  768, CS42L51_QSM_MODE, 0 },
328	{ 1024, CS42L51_QSM_MODE, 0 }, { 1536, CS42L51_QSM_MODE, 0 },
329	{ 2048, CS42L51_QSM_MODE, 0 }, { 3072, CS42L51_QSM_MODE, 0 },
330	{  256, CS42L51_HSM_MODE, 0 }, {  384, CS42L51_HSM_MODE, 0 },
331	{  512, CS42L51_HSM_MODE, 0 }, {  768, CS42L51_HSM_MODE, 0 },
332	{ 1024, CS42L51_HSM_MODE, 0 }, { 1536, CS42L51_HSM_MODE, 0 },
333	{  128, CS42L51_SSM_MODE, 0 }, {  192, CS42L51_SSM_MODE, 0 },
334	{  256, CS42L51_SSM_MODE, 0 }, {  384, CS42L51_SSM_MODE, 0 },
335	{  512, CS42L51_SSM_MODE, 0 }, {  768, CS42L51_SSM_MODE, 0 },
336	{  128, CS42L51_DSM_MODE, 0 }, {  192, CS42L51_DSM_MODE, 0 },
337	{  256, CS42L51_DSM_MODE, 0 }, {  384, CS42L51_DSM_MODE, 0 },
338};
339
340static struct cs42l51_ratios slave_auto_ratios[] = {
341	{ 1024, CS42L51_QSM_MODE, 0 }, { 1536, CS42L51_QSM_MODE, 0 },
342	{ 2048, CS42L51_QSM_MODE, 1 }, { 3072, CS42L51_QSM_MODE, 1 },
343	{  512, CS42L51_HSM_MODE, 0 }, {  768, CS42L51_HSM_MODE, 0 },
344	{ 1024, CS42L51_HSM_MODE, 1 }, { 1536, CS42L51_HSM_MODE, 1 },
345	{  256, CS42L51_SSM_MODE, 0 }, {  384, CS42L51_SSM_MODE, 0 },
346	{  512, CS42L51_SSM_MODE, 1 }, {  768, CS42L51_SSM_MODE, 1 },
347	{  128, CS42L51_DSM_MODE, 0 }, {  192, CS42L51_DSM_MODE, 0 },
348	{  256, CS42L51_DSM_MODE, 1 }, {  384, CS42L51_DSM_MODE, 1 },
349};
350
 
 
 
 
 
 
 
 
 
 
 
 
 
351static int cs42l51_set_dai_sysclk(struct snd_soc_dai *codec_dai,
352		int clk_id, unsigned int freq, int dir)
353{
354	struct snd_soc_codec *codec = codec_dai->codec;
355	struct cs42l51_private *cs42l51 = snd_soc_codec_get_drvdata(codec);
356
357	cs42l51->mclk = freq;
358	return 0;
359}
360
361static int cs42l51_hw_params(struct snd_pcm_substream *substream,
362		struct snd_pcm_hw_params *params,
363		struct snd_soc_dai *dai)
364{
365	struct snd_soc_pcm_runtime *rtd = substream->private_data;
366	struct snd_soc_codec *codec = rtd->codec;
367	struct cs42l51_private *cs42l51 = snd_soc_codec_get_drvdata(codec);
368	int ret;
369	unsigned int i;
370	unsigned int rate;
371	unsigned int ratio;
372	struct cs42l51_ratios *ratios = NULL;
373	int nr_ratios = 0;
374	int intf_ctl, power_ctl, fmt;
375
376	switch (cs42l51->func) {
377	case MODE_MASTER:
378		return -EINVAL;
 
 
379	case MODE_SLAVE:
380		ratios = slave_ratios;
381		nr_ratios = ARRAY_SIZE(slave_ratios);
382		break;
383	case MODE_SLAVE_AUTO:
384		ratios = slave_auto_ratios;
385		nr_ratios = ARRAY_SIZE(slave_auto_ratios);
386		break;
387	}
388
389	/* Figure out which MCLK/LRCK ratio to use */
390	rate = params_rate(params);     /* Sampling rate, in Hz */
391	ratio = cs42l51->mclk / rate;    /* MCLK/LRCK ratio */
392	for (i = 0; i < nr_ratios; i++) {
393		if (ratios[i].ratio == ratio)
394			break;
395	}
396
397	if (i == nr_ratios) {
398		/* We did not find a matching ratio */
399		dev_err(codec->dev, "could not find matching ratio\n");
400		return -EINVAL;
401	}
402
403	intf_ctl = snd_soc_read(codec, CS42L51_INTF_CTL);
404	power_ctl = snd_soc_read(codec, CS42L51_MIC_POWER_CTL);
405
406	intf_ctl &= ~(CS42L51_INTF_CTL_MASTER | CS42L51_INTF_CTL_ADC_I2S
407			| CS42L51_INTF_CTL_DAC_FORMAT(7));
408	power_ctl &= ~(CS42L51_MIC_POWER_CTL_SPEED(3)
409			| CS42L51_MIC_POWER_CTL_MCLK_DIV2);
410
411	switch (cs42l51->func) {
412	case MODE_MASTER:
413		intf_ctl |= CS42L51_INTF_CTL_MASTER;
414		power_ctl |= CS42L51_MIC_POWER_CTL_SPEED(ratios[i].speed_mode);
 
 
 
 
 
 
 
 
 
415		break;
416	case MODE_SLAVE:
417		power_ctl |= CS42L51_MIC_POWER_CTL_SPEED(ratios[i].speed_mode);
418		break;
419	case MODE_SLAVE_AUTO:
420		power_ctl |= CS42L51_MIC_POWER_CTL_AUTO;
421		break;
422	}
423
424	switch (cs42l51->audio_mode) {
425	case SND_SOC_DAIFMT_I2S:
426		intf_ctl |= CS42L51_INTF_CTL_ADC_I2S;
427		intf_ctl |= CS42L51_INTF_CTL_DAC_FORMAT(CS42L51_DAC_DIF_I2S);
428		break;
429	case SND_SOC_DAIFMT_LEFT_J:
430		intf_ctl |= CS42L51_INTF_CTL_DAC_FORMAT(CS42L51_DAC_DIF_LJ24);
431		break;
432	case SND_SOC_DAIFMT_RIGHT_J:
433		switch (params_format(params)) {
434		case SNDRV_PCM_FORMAT_S16_LE:
435		case SNDRV_PCM_FORMAT_S16_BE:
436			fmt = CS42L51_DAC_DIF_RJ16;
437			break;
438		case SNDRV_PCM_FORMAT_S18_3LE:
439		case SNDRV_PCM_FORMAT_S18_3BE:
440			fmt = CS42L51_DAC_DIF_RJ18;
441			break;
442		case SNDRV_PCM_FORMAT_S20_3LE:
443		case SNDRV_PCM_FORMAT_S20_3BE:
444			fmt = CS42L51_DAC_DIF_RJ20;
445			break;
446		case SNDRV_PCM_FORMAT_S24_LE:
447		case SNDRV_PCM_FORMAT_S24_BE:
448			fmt = CS42L51_DAC_DIF_RJ24;
449			break;
450		default:
451			dev_err(codec->dev, "unknown format\n");
452			return -EINVAL;
453		}
454		intf_ctl |= CS42L51_INTF_CTL_DAC_FORMAT(fmt);
455		break;
456	default:
457		dev_err(codec->dev, "unknown format\n");
458		return -EINVAL;
459	}
460
461	if (ratios[i].mclk)
462		power_ctl |= CS42L51_MIC_POWER_CTL_MCLK_DIV2;
463
464	ret = snd_soc_write(codec, CS42L51_INTF_CTL, intf_ctl);
465	if (ret < 0)
466		return ret;
467
468	ret = snd_soc_write(codec, CS42L51_MIC_POWER_CTL, power_ctl);
469	if (ret < 0)
470		return ret;
471
472	return 0;
473}
474
475static int cs42l51_dai_mute(struct snd_soc_dai *dai, int mute)
476{
477	struct snd_soc_codec *codec = dai->codec;
478	int reg;
479	int mask = CS42L51_DAC_OUT_CTL_DACA_MUTE|CS42L51_DAC_OUT_CTL_DACB_MUTE;
480
481	reg = snd_soc_read(codec, CS42L51_DAC_OUT_CTL);
482
483	if (mute)
484		reg |= mask;
485	else
486		reg &= ~mask;
487
488	return snd_soc_write(codec, CS42L51_DAC_OUT_CTL, reg);
489}
490
491static struct snd_soc_dai_ops cs42l51_dai_ops = {
 
 
 
 
 
 
 
492	.hw_params      = cs42l51_hw_params,
493	.set_sysclk     = cs42l51_set_dai_sysclk,
494	.set_fmt        = cs42l51_set_dai_fmt,
495	.digital_mute   = cs42l51_dai_mute,
 
496};
497
498static struct snd_soc_dai_driver cs42l51_dai = {
499	.name = "cs42l51-hifi",
500	.playback = {
501		.stream_name = "Playback",
502		.channels_min = 1,
503		.channels_max = 2,
504		.rates = SNDRV_PCM_RATE_8000_96000,
505		.formats = CS42L51_FORMATS,
506	},
507	.capture = {
508		.stream_name = "Capture",
509		.channels_min = 1,
510		.channels_max = 2,
511		.rates = SNDRV_PCM_RATE_8000_96000,
512		.formats = CS42L51_FORMATS,
513	},
514	.ops = &cs42l51_dai_ops,
515};
516
517static int cs42l51_probe(struct snd_soc_codec *codec)
518{
519	struct cs42l51_private *cs42l51 = snd_soc_codec_get_drvdata(codec);
520	struct snd_soc_dapm_context *dapm = &codec->dapm;
521	int ret, reg;
 
 
522
523	codec->control_data = cs42l51->control_data;
 
524
525	ret = cs42l51_fill_cache(codec);
526	if (ret < 0) {
527		dev_err(codec->dev, "failed to fill register cache\n");
528		return ret;
529	}
530
531	ret = snd_soc_codec_set_cache_io(codec, 8, 8, cs42l51->control_type);
532	if (ret < 0) {
533		dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
534		return ret;
535	}
536
537	/*
538	 * DAC configuration
539	 * - Use signal processor
540	 * - auto mute
541	 * - vol changes immediate
542	 * - no de-emphasize
543	 */
544	reg = CS42L51_DAC_CTL_DATA_SEL(1)
545		| CS42L51_DAC_CTL_AMUTE | CS42L51_DAC_CTL_DACSZ(0);
546	ret = snd_soc_write(codec, CS42L51_DAC_CTL, reg);
547	if (ret < 0)
548		return ret;
549
550	snd_soc_add_controls(codec, cs42l51_snd_controls,
551		ARRAY_SIZE(cs42l51_snd_controls));
552	snd_soc_dapm_new_controls(dapm, cs42l51_dapm_widgets,
553		ARRAY_SIZE(cs42l51_dapm_widgets));
554	snd_soc_dapm_add_routes(dapm, cs42l51_routes,
555		ARRAY_SIZE(cs42l51_routes));
556
557	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558}
559
560static struct snd_soc_codec_driver soc_codec_device_cs42l51 = {
561	.probe =	cs42l51_probe,
562	.reg_cache_size = CS42L51_NUMREGS,
563	.reg_word_size = sizeof(u8),
 
 
 
 
 
 
564};
 
565
566static int cs42l51_i2c_probe(struct i2c_client *i2c_client,
567	const struct i2c_device_id *id)
568{
569	struct cs42l51_private *cs42l51;
570	int ret;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571
572	/* Verify that we have a CS42L51 */
573	ret = i2c_smbus_read_byte_data(i2c_client, CS42L51_CHIP_REV_ID);
574	if (ret < 0) {
575		dev_err(&i2c_client->dev, "failed to read I2C\n");
576		goto error;
577	}
578
579	if ((ret != CS42L51_MK_CHIP_REV(CS42L51_CHIP_ID, CS42L51_CHIP_REV_A)) &&
580	    (ret != CS42L51_MK_CHIP_REV(CS42L51_CHIP_ID, CS42L51_CHIP_REV_B))) {
581		dev_err(&i2c_client->dev, "Invalid chip id\n");
582		ret = -ENODEV;
583		goto error;
584	}
 
 
585
586	dev_info(&i2c_client->dev, "found device cs42l51 rev %d\n",
587				ret & 7);
 
 
588
589	cs42l51 = kzalloc(sizeof(struct cs42l51_private), GFP_KERNEL);
590	if (!cs42l51) {
591		dev_err(&i2c_client->dev, "could not allocate codec\n");
592		return -ENOMEM;
593	}
594
595	i2c_set_clientdata(i2c_client, cs42l51);
596	cs42l51->control_data = i2c_client;
597	cs42l51->control_type = SND_SOC_I2C;
598
599	ret =  snd_soc_register_codec(&i2c_client->dev,
600			&soc_codec_device_cs42l51, &cs42l51_dai, 1);
601	if (ret < 0)
602		kfree(cs42l51);
603error:
 
 
 
604	return ret;
605}
 
606
607static int cs42l51_i2c_remove(struct i2c_client *client)
608{
609	struct cs42l51_private *cs42l51 = i2c_get_clientdata(client);
 
 
 
 
 
 
 
 
 
610
611	snd_soc_unregister_codec(&client->dev);
612	kfree(cs42l51);
613	return 0;
614}
 
615
616static const struct i2c_device_id cs42l51_id[] = {
617	{"cs42l51", 0},
618	{}
619};
620MODULE_DEVICE_TABLE(i2c, cs42l51_id);
621
622static struct i2c_driver cs42l51_i2c_driver = {
623	.driver = {
624		.name = "cs42l51-codec",
625		.owner = THIS_MODULE,
626	},
627	.id_table = cs42l51_id,
628	.probe = cs42l51_i2c_probe,
629	.remove = cs42l51_i2c_remove,
630};
631
632static int __init cs42l51_init(void)
633{
634	int ret;
635
636	ret = i2c_add_driver(&cs42l51_i2c_driver);
637	if (ret != 0) {
638		printk(KERN_ERR "%s: can't add i2c driver\n", __func__);
639		return ret;
640	}
641	return 0;
642}
643module_init(cs42l51_init);
644
645static void __exit cs42l51_exit(void)
646{
647	i2c_del_driver(&cs42l51_i2c_driver);
 
 
 
 
648}
649module_exit(cs42l51_exit);
650
651MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
652MODULE_DESCRIPTION("Cirrus Logic CS42L51 ALSA SoC Codec Driver");
653MODULE_LICENSE("GPL");