blob: b0cc61178a41615bfd4ecb1ca0e477cb7bcf0863 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Miguel Aguilarb56e9722010-03-11 09:32:59 -06002/*
3 * ALSA SoC CQ0093 Voice Codec Driver for DaVinci platforms
4 *
5 * Copyright (C) 2010 Texas Instruments, Inc
6 *
7 * Author: Miguel Aguilar <miguel.aguilar@ridgerun.com>
Miguel Aguilarb56e9722010-03-11 09:32:59 -06008 */
9#include <linux/module.h>
10#include <linux/moduleparam.h>
11#include <linux/init.h>
12#include <linux/io.h>
13#include <linux/delay.h>
14#include <linux/pm.h>
15#include <linux/platform_device.h>
16#include <linux/device.h>
Tejun Heo923a0042010-03-30 02:52:29 +090017#include <linux/slab.h>
Miguel Aguilarb56e9722010-03-11 09:32:59 -060018#include <linux/clk.h>
19#include <linux/mfd/davinci_voicecodec.h>
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000020#include <linux/spi/spi.h>
Miguel Aguilarb56e9722010-03-11 09:32:59 -060021
22#include <sound/core.h>
23#include <sound/pcm.h>
24#include <sound/pcm_params.h>
25#include <sound/soc.h>
Miguel Aguilarb56e9722010-03-11 09:32:59 -060026#include <sound/initval.h>
27
Miguel Aguilarb56e9722010-03-11 09:32:59 -060028static const struct snd_kcontrol_new cq93vc_snd_controls[] = {
29 SOC_SINGLE("PGA Capture Volume", DAVINCI_VC_REG05, 0, 0x03, 0),
30 SOC_SINGLE("Mono DAC Playback Volume", DAVINCI_VC_REG09, 0, 0x3f, 0),
31};
32
33static int cq93vc_mute(struct snd_soc_dai *dai, int mute)
34{
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000035 struct snd_soc_component *component = dai->component;
Mark Brown12019392013-08-31 13:38:16 +010036 u8 reg;
Miguel Aguilarb56e9722010-03-11 09:32:59 -060037
38 if (mute)
Mark Brown12019392013-08-31 13:38:16 +010039 reg = DAVINCI_VC_REG09_MUTE;
Miguel Aguilarb56e9722010-03-11 09:32:59 -060040 else
Mark Brown12019392013-08-31 13:38:16 +010041 reg = 0;
42
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000043 snd_soc_component_update_bits(component, DAVINCI_VC_REG09, DAVINCI_VC_REG09_MUTE,
Mark Brown12019392013-08-31 13:38:16 +010044 reg);
Miguel Aguilarb56e9722010-03-11 09:32:59 -060045
46 return 0;
47}
48
49static int cq93vc_set_dai_sysclk(struct snd_soc_dai *codec_dai,
50 int clk_id, unsigned int freq, int dir)
51{
Miguel Aguilarb56e9722010-03-11 09:32:59 -060052 switch (freq) {
53 case 22579200:
54 case 27000000:
55 case 33868800:
Miguel Aguilarb56e9722010-03-11 09:32:59 -060056 return 0;
57 }
58
59 return -EINVAL;
60}
61
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000062static int cq93vc_set_bias_level(struct snd_soc_component *component,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060063 enum snd_soc_bias_level level)
64{
65 switch (level) {
66 case SND_SOC_BIAS_ON:
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000067 snd_soc_component_write(component, DAVINCI_VC_REG12,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060068 DAVINCI_VC_REG12_POWER_ALL_ON);
69 break;
70 case SND_SOC_BIAS_PREPARE:
71 break;
72 case SND_SOC_BIAS_STANDBY:
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000073 snd_soc_component_write(component, DAVINCI_VC_REG12,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060074 DAVINCI_VC_REG12_POWER_ALL_OFF);
75 break;
76 case SND_SOC_BIAS_OFF:
77 /* force all power off */
Kuninori Morimoto4f404f32018-01-29 04:42:49 +000078 snd_soc_component_write(component, DAVINCI_VC_REG12,
Miguel Aguilarb56e9722010-03-11 09:32:59 -060079 DAVINCI_VC_REG12_POWER_ALL_OFF);
80 break;
81 }
Miguel Aguilarb56e9722010-03-11 09:32:59 -060082
83 return 0;
84}
85
86#define CQ93VC_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000)
87#define CQ93VC_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE)
88
Lars-Peter Clausen85e76522011-11-23 11:40:40 +010089static const struct snd_soc_dai_ops cq93vc_dai_ops = {
Miguel Aguilarb56e9722010-03-11 09:32:59 -060090 .digital_mute = cq93vc_mute,
91 .set_sysclk = cq93vc_set_dai_sysclk,
92};
93
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000094static struct snd_soc_dai_driver cq93vc_dai = {
95 .name = "cq93vc-hifi",
Miguel Aguilarb56e9722010-03-11 09:32:59 -060096 .playback = {
97 .stream_name = "Playback",
98 .channels_min = 1,
99 .channels_max = 2,
100 .rates = CQ93VC_RATES,
101 .formats = CQ93VC_FORMATS,},
102 .capture = {
103 .stream_name = "Capture",
104 .channels_min = 1,
105 .channels_max = 2,
106 .rates = CQ93VC_RATES,
107 .formats = CQ93VC_FORMATS,},
108 .ops = &cq93vc_dai_ops,
109};
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600110
Kuninori Morimoto60e17802017-11-28 06:05:46 +0000111static int cq93vc_probe(struct snd_soc_component *component)
Xiubo Li49101a22014-03-26 13:40:25 +0800112{
Kuninori Morimoto60e17802017-11-28 06:05:46 +0000113 struct davinci_vc *davinci_vc = component->dev->platform_data;
Xiubo Li49101a22014-03-26 13:40:25 +0800114
Kuninori Morimoto60e17802017-11-28 06:05:46 +0000115 snd_soc_component_init_regmap(component, davinci_vc->regmap);
116
117 return 0;
Xiubo Li49101a22014-03-26 13:40:25 +0800118}
119
Kuninori Morimoto4f404f32018-01-29 04:42:49 +0000120static const struct snd_soc_component_driver soc_component_dev_cq93vc = {
121 .set_bias_level = cq93vc_set_bias_level,
122 .probe = cq93vc_probe,
123 .controls = cq93vc_snd_controls,
124 .num_controls = ARRAY_SIZE(cq93vc_snd_controls),
125 .idle_bias_on = 1,
126 .use_pmdown_time = 1,
127 .endianness = 1,
128 .non_legacy_dai_naming = 1,
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600129};
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600130
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000131static int cq93vc_platform_probe(struct platform_device *pdev)
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600132{
Kuninori Morimoto4f404f32018-01-29 04:42:49 +0000133 return devm_snd_soc_register_component(&pdev->dev,
134 &soc_component_dev_cq93vc, &cq93vc_dai, 1);
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600135}
136
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000137static int cq93vc_platform_remove(struct platform_device *pdev)
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600138{
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600139 return 0;
140}
141
142static struct platform_driver cq93vc_codec_driver = {
143 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000144 .name = "cq93vc-codec",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000145 },
146
147 .probe = cq93vc_platform_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500148 .remove = cq93vc_platform_remove,
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600149};
150
Mark Brown5bbcc3c2011-11-23 22:52:08 +0000151module_platform_driver(cq93vc_codec_driver);
Miguel Aguilarb56e9722010-03-11 09:32:59 -0600152
153MODULE_DESCRIPTION("Texas Instruments DaVinci ASoC CQ0093 Voice Codec Driver");
154MODULE_AUTHOR("Miguel Aguilar");
155MODULE_LICENSE("GPL");