2 * ALSA SoC CQ0093 Voice Codec Driver for DaVinci platforms
4 * Copyright (C) 2010 Texas Instruments, Inc
6 * Author: Miguel Aguilar <miguel.aguilar@ridgerun.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/init.h>
26 #include <linux/delay.h>
28 #include <linux/platform_device.h>
29 #include <linux/device.h>
30 #include <linux/slab.h>
31 #include <linux/clk.h>
32 #include <linux/mfd/davinci_voicecodec.h>
33 #include <linux/spi/spi.h>
35 #include <sound/core.h>
36 #include <sound/pcm.h>
37 #include <sound/pcm_params.h>
38 #include <sound/soc.h>
39 #include <sound/initval.h>
41 static const struct snd_kcontrol_new cq93vc_snd_controls
[] = {
42 SOC_SINGLE("PGA Capture Volume", DAVINCI_VC_REG05
, 0, 0x03, 0),
43 SOC_SINGLE("Mono DAC Playback Volume", DAVINCI_VC_REG09
, 0, 0x3f, 0),
46 static int cq93vc_mute(struct snd_soc_dai
*dai
, int mute
)
48 struct snd_soc_codec
*codec
= dai
->codec
;
52 reg
= DAVINCI_VC_REG09_MUTE
;
56 snd_soc_update_bits(codec
, DAVINCI_VC_REG09
, DAVINCI_VC_REG09_MUTE
,
62 static int cq93vc_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
63 int clk_id
, unsigned int freq
, int dir
)
65 struct snd_soc_codec
*codec
= codec_dai
->codec
;
66 struct davinci_vc
*davinci_vc
= codec
->dev
->platform_data
;
72 davinci_vc
->cq93vc
.sysclk
= freq
;
79 static int cq93vc_set_bias_level(struct snd_soc_codec
*codec
,
80 enum snd_soc_bias_level level
)
84 snd_soc_write(codec
, DAVINCI_VC_REG12
,
85 DAVINCI_VC_REG12_POWER_ALL_ON
);
87 case SND_SOC_BIAS_PREPARE
:
89 case SND_SOC_BIAS_STANDBY
:
90 snd_soc_write(codec
, DAVINCI_VC_REG12
,
91 DAVINCI_VC_REG12_POWER_ALL_OFF
);
93 case SND_SOC_BIAS_OFF
:
94 /* force all power off */
95 snd_soc_write(codec
, DAVINCI_VC_REG12
,
96 DAVINCI_VC_REG12_POWER_ALL_OFF
);
99 codec
->dapm
.bias_level
= level
;
104 #define CQ93VC_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000)
105 #define CQ93VC_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE)
107 static const struct snd_soc_dai_ops cq93vc_dai_ops
= {
108 .digital_mute
= cq93vc_mute
,
109 .set_sysclk
= cq93vc_set_dai_sysclk
,
112 static struct snd_soc_dai_driver cq93vc_dai
= {
113 .name
= "cq93vc-hifi",
115 .stream_name
= "Playback",
118 .rates
= CQ93VC_RATES
,
119 .formats
= CQ93VC_FORMATS
,},
121 .stream_name
= "Capture",
124 .rates
= CQ93VC_RATES
,
125 .formats
= CQ93VC_FORMATS
,},
126 .ops
= &cq93vc_dai_ops
,
129 static int cq93vc_resume(struct snd_soc_codec
*codec
)
131 cq93vc_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
136 static int cq93vc_probe(struct snd_soc_codec
*codec
)
138 struct davinci_vc
*davinci_vc
= codec
->dev
->platform_data
;
140 davinci_vc
->cq93vc
.codec
= codec
;
141 codec
->control_data
= davinci_vc
->regmap
;
143 snd_soc_codec_set_cache_io(codec
, 32, 32, SND_SOC_REGMAP
);
145 /* Off, with power on */
146 cq93vc_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
151 static int cq93vc_remove(struct snd_soc_codec
*codec
)
153 cq93vc_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
158 static struct snd_soc_codec_driver soc_codec_dev_cq93vc
= {
159 .set_bias_level
= cq93vc_set_bias_level
,
160 .probe
= cq93vc_probe
,
161 .remove
= cq93vc_remove
,
162 .resume
= cq93vc_resume
,
163 .controls
= cq93vc_snd_controls
,
164 .num_controls
= ARRAY_SIZE(cq93vc_snd_controls
),
167 static int cq93vc_platform_probe(struct platform_device
*pdev
)
169 return snd_soc_register_codec(&pdev
->dev
,
170 &soc_codec_dev_cq93vc
, &cq93vc_dai
, 1);
173 static int cq93vc_platform_remove(struct platform_device
*pdev
)
175 snd_soc_unregister_codec(&pdev
->dev
);
179 static struct platform_driver cq93vc_codec_driver
= {
181 .name
= "cq93vc-codec",
182 .owner
= THIS_MODULE
,
185 .probe
= cq93vc_platform_probe
,
186 .remove
= cq93vc_platform_remove
,
189 module_platform_driver(cq93vc_codec_driver
);
191 MODULE_DESCRIPTION("Texas Instruments DaVinci ASoC CQ0093 Voice Codec Driver");
192 MODULE_AUTHOR("Miguel Aguilar");
193 MODULE_LICENSE("GPL");