blob: 3301861d35025ac5777c250638c17de851bdbed1 [file] [log] [blame]
Miguel Aguilarb56e9722010-03-11 09:32:59 -06001/*
2 * ALSA SoC CQ0093 Voice Codec Driver for DaVinci platforms
3 *
4 * Copyright (C) 2010 Texas Instruments, Inc
5 *
6 * Author: Miguel Aguilar <miguel.aguilar@ridgerun.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
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.
17 *
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
21 */
22#include <linux/module.h>
23#include <linux/moduleparam.h>
24#include <linux/init.h>
25#include <linux/io.h>
26#include <linux/delay.h>
27#include <linux/pm.h>
28#include <linux/platform_device.h>
29#include <linux/device.h>
Tejun Heo923a0042010-03-30 02:52:29 +090030#include <linux/slab.h>
Miguel Aguilarb56e9722010-03-11 09:32:59 -060031#include <linux/clk.h>
32#include <linux/mfd/davinci_voicecodec.h>
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000033#include <linux/spi/spi.h>
Miguel Aguilarb56e9722010-03-11 09:32:59 -060034
35#include <sound/core.h>
36#include <sound/pcm.h>
37#include <sound/pcm_params.h>
38#include <sound/soc.h>
Miguel Aguilarb56e9722010-03-11 09:32:59 -060039#include <sound/initval.h>
40
Miguel Aguilarb56e9722010-03-11 09:32:59 -060041static 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),
44};
45
46static int cq93vc_mute(struct snd_soc_dai *dai, int mute)
47{
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000048 struct snd_soc_component *component = dai->component;
Mark Brown12019392013-08-31 13:38:16 +010049 u8 reg;
Miguel Aguilarb56e9722010-03-11 09:32:59 -060050
51 if (mute)
Mark Brown12019392013-08-31 13:38:16 +010052 reg = DAVINCI_VC_REG09_MUTE;
Miguel Aguilarb56e9722010-03-11 09:32:59 -060053 else
Mark Brown12019392013-08-31 13:38:16 +010054 reg = 0;
55
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000056 snd_soc_component_update_bits(component, DAVINCI_VC_REG09, DAVINCI_VC_REG09_MUTE,
Mark Brown12019392013-08-31 13:38:16 +010057 reg);
Miguel Aguilarb56e9722010-03-11 09:32:59 -060058
59 return 0;
60}
61
62static int cq93vc_set_dai_sysclk(struct snd_soc_dai *codec_dai,
63 int clk_id, unsigned int freq, int dir)
64{
Miguel Aguilarb56e9722010-03-11 09:32:59 -060065 switch (freq) {
66 case 22579200:
67 case 27000000:
68 case 33868800:
Miguel Aguilarb56e9722010-03-11 09:32:59 -060069 return 0;
70 }
71
72 return -EINVAL;
73}
74
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000075static int cq93vc_set_bias_level(struct snd_soc_component *component,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060076 enum snd_soc_bias_level level)
77{
78 switch (level) {
79 case SND_SOC_BIAS_ON:
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000080 snd_soc_component_write(component, DAVINCI_VC_REG12,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060081 DAVINCI_VC_REG12_POWER_ALL_ON);
82 break;
83 case SND_SOC_BIAS_PREPARE:
84 break;
85 case SND_SOC_BIAS_STANDBY:
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000086 snd_soc_component_write(component, DAVINCI_VC_REG12,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060087 DAVINCI_VC_REG12_POWER_ALL_OFF);
88 break;
89 case SND_SOC_BIAS_OFF:
90 /* force all power off */
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000091 snd_soc_component_write(component, DAVINCI_VC_REG12,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060092 DAVINCI_VC_REG12_POWER_ALL_OFF);
93 break;
94 }
Miguel Aguilarb56e9722010-03-11 09:32:59 -060095
96 return 0;
97}
98
99#define CQ93VC_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000)
100#define CQ93VC_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE)
101
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100102static const struct snd_soc_dai_ops cq93vc_dai_ops = {
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600103 .digital_mute = cq93vc_mute,
104 .set_sysclk = cq93vc_set_dai_sysclk,
105};
106
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000107static struct snd_soc_dai_driver cq93vc_dai = {
108 .name = "cq93vc-hifi",
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600109 .playback = {
110 .stream_name = "Playback",
111 .channels_min = 1,
112 .channels_max = 2,
113 .rates = CQ93VC_RATES,
114 .formats = CQ93VC_FORMATS,},
115 .capture = {
116 .stream_name = "Capture",
117 .channels_min = 1,
118 .channels_max = 2,
119 .rates = CQ93VC_RATES,
120 .formats = CQ93VC_FORMATS,},
121 .ops = &cq93vc_dai_ops,
122};
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600123
Kuninori Morimoto60e17802017-11-28 06:05:46 +0000124static int cq93vc_probe(struct snd_soc_component *component)
Xiubo Li49101a22014-03-26 13:40:25 +0800125{
Kuninori Morimoto60e17802017-11-28 06:05:46 +0000126 struct davinci_vc *davinci_vc = component->dev->platform_data;
Xiubo Li49101a22014-03-26 13:40:25 +0800127
Kuninori Morimoto60e17802017-11-28 06:05:46 +0000128 snd_soc_component_init_regmap(component, davinci_vc->regmap);
129
130 return 0;
Xiubo Li49101a22014-03-26 13:40:25 +0800131}
132
Kuninori Morimoto4f404f32018-01-29 04:42:49 +0000133static const struct snd_soc_component_driver soc_component_dev_cq93vc = {
134 .set_bias_level = cq93vc_set_bias_level,
135 .probe = cq93vc_probe,
136 .controls = cq93vc_snd_controls,
137 .num_controls = ARRAY_SIZE(cq93vc_snd_controls),
138 .idle_bias_on = 1,
139 .use_pmdown_time = 1,
140 .endianness = 1,
141 .non_legacy_dai_naming = 1,
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600142};
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600143
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000144static int cq93vc_platform_probe(struct platform_device *pdev)
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600145{
Kuninori Morimoto4f404f32018-01-29 04:42:49 +0000146 return devm_snd_soc_register_component(&pdev->dev,
147 &soc_component_dev_cq93vc, &cq93vc_dai, 1);
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600148}
149
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000150static int cq93vc_platform_remove(struct platform_device *pdev)
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600151{
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600152 return 0;
153}
154
155static struct platform_driver cq93vc_codec_driver = {
156 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000157 .name = "cq93vc-codec",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000158 },
159
160 .probe = cq93vc_platform_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500161 .remove = cq93vc_platform_remove,
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600162};
163
Mark Brown5bbcc3c2011-11-23 22:52:08 +0000164module_platform_driver(cq93vc_codec_driver);
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600165
166MODULE_DESCRIPTION("Texas Instruments DaVinci ASoC CQ0093 Voice Codec Driver");
167MODULE_AUTHOR("Miguel Aguilar");
168MODULE_LICENSE("GPL");