blob: 4db4fd56db358f4549f434a3e3712ed450f5776c [file] [log] [blame]
zhengxing86059652015-07-19 19:33:49 +08001/*
2 * Rockchip machine ASoC driver for boards using a RT5645/RT5650 CODEC.
3 *
4 * Copyright (c) 2015, ROCKCHIP CORPORATION. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 */
19
20#include <linux/module.h>
21#include <linux/platform_device.h>
22#include <linux/slab.h>
23#include <linux/gpio.h>
24#include <linux/of_gpio.h>
25#include <linux/delay.h>
26#include <sound/core.h>
27#include <sound/jack.h>
28#include <sound/pcm.h>
29#include <sound/pcm_params.h>
30#include <sound/soc.h>
31#include "rockchip_i2s.h"
Kuninori Morimoto79223bf2018-01-29 03:49:31 +000032#include "../codecs/rt5645.h"
zhengxing86059652015-07-19 19:33:49 +080033
34#define DRV_NAME "rockchip-snd-rt5645"
35
36static struct snd_soc_jack headset_jack;
37
zhengxing86059652015-07-19 19:33:49 +080038static const struct snd_soc_dapm_widget rk_dapm_widgets[] = {
39 SND_SOC_DAPM_HP("Headphones", NULL),
40 SND_SOC_DAPM_SPK("Speakers", NULL),
41 SND_SOC_DAPM_MIC("Headset Mic", NULL),
42 SND_SOC_DAPM_MIC("Int Mic", NULL),
43};
44
45static const struct snd_soc_dapm_route rk_audio_map[] = {
46 /* Input Lines */
47 {"DMIC L2", NULL, "Int Mic"},
48 {"DMIC R2", NULL, "Int Mic"},
49 {"RECMIXL", NULL, "Headset Mic"},
50 {"RECMIXR", NULL, "Headset Mic"},
51
52 /* Output Lines */
53 {"Headphones", NULL, "HPOR"},
54 {"Headphones", NULL, "HPOL"},
55 {"Speakers", NULL, "SPOL"},
56 {"Speakers", NULL, "SPOR"},
57};
58
59static const struct snd_kcontrol_new rk_mc_controls[] = {
60 SOC_DAPM_PIN_SWITCH("Headphones"),
61 SOC_DAPM_PIN_SWITCH("Speakers"),
62 SOC_DAPM_PIN_SWITCH("Headset Mic"),
63 SOC_DAPM_PIN_SWITCH("Int Mic"),
64};
65
66static int rk_aif1_hw_params(struct snd_pcm_substream *substream,
67 struct snd_pcm_hw_params *params)
68{
69 int ret = 0;
70 struct snd_soc_pcm_runtime *rtd = substream->private_data;
71 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
72 struct snd_soc_dai *codec_dai = rtd->codec_dai;
73 int mclk;
74
75 switch (params_rate(params)) {
76 case 8000:
77 case 16000:
Caesar Wang3a3b0702015-11-06 19:38:16 +080078 case 24000:
79 case 32000:
zhengxing86059652015-07-19 19:33:49 +080080 case 48000:
Caesar Wang3a3b0702015-11-06 19:38:16 +080081 case 64000:
zhengxing86059652015-07-19 19:33:49 +080082 case 96000:
83 mclk = 12288000;
84 break;
Caesar Wang3a3b0702015-11-06 19:38:16 +080085 case 11025:
86 case 22050:
zhengxing86059652015-07-19 19:33:49 +080087 case 44100:
Caesar Wang3a3b0702015-11-06 19:38:16 +080088 case 88200:
zhengxing86059652015-07-19 19:33:49 +080089 mclk = 11289600;
90 break;
91 default:
92 return -EINVAL;
93 }
94
95 ret = snd_soc_dai_set_sysclk(cpu_dai, 0, mclk,
96 SND_SOC_CLOCK_OUT);
97 if (ret < 0) {
98 dev_err(codec_dai->dev, "Can't set codec clock %d\n", ret);
99 return ret;
100 }
101
102 ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
103 SND_SOC_CLOCK_IN);
104 if (ret < 0) {
105 dev_err(codec_dai->dev, "Can't set codec clock %d\n", ret);
106 return ret;
107 }
108
109 return ret;
110}
111
112static int rk_init(struct snd_soc_pcm_runtime *runtime)
113{
114 struct snd_soc_card *card = runtime->card;
115 int ret;
116
117 /* Enable Headset and 4 Buttons Jack detection */
118 ret = snd_soc_card_jack_new(card, "Headset Jack",
119 SND_JACK_HEADPHONE | SND_JACK_MICROPHONE |
120 SND_JACK_BTN_0 | SND_JACK_BTN_1 |
121 SND_JACK_BTN_2 | SND_JACK_BTN_3,
122 &headset_jack, NULL, 0);
Xing Zhengf8ce2002015-08-25 15:52:42 +0800123 if (ret) {
zhengxing86059652015-07-19 19:33:49 +0800124 dev_err(card->dev, "New Headset Jack failed! (%d)\n", ret);
125 return ret;
126 }
127
Kuninori Morimoto79223bf2018-01-29 03:49:31 +0000128 return rt5645_set_jack_detect(runtime->codec_dai->component,
zhengxing86059652015-07-19 19:33:49 +0800129 &headset_jack,
130 &headset_jack,
131 &headset_jack);
132}
133
Julia Lawall705e9992016-10-15 16:55:47 +0200134static const struct snd_soc_ops rk_aif1_ops = {
zhengxing86059652015-07-19 19:33:49 +0800135 .hw_params = rk_aif1_hw_params,
136};
137
138static struct snd_soc_dai_link rk_dailink = {
139 .name = "rt5645",
140 .stream_name = "rt5645 PCM",
141 .codec_dai_name = "rt5645-aif1",
142 .init = rk_init,
143 .ops = &rk_aif1_ops,
144 /* set rt5645 as slave */
145 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
146 SND_SOC_DAIFMT_CBS_CFS,
147};
148
149static struct snd_soc_card snd_soc_card_rk = {
150 .name = "I2S-RT5650",
Axel Lin54d86972015-08-21 20:59:21 +0800151 .owner = THIS_MODULE,
zhengxing86059652015-07-19 19:33:49 +0800152 .dai_link = &rk_dailink,
153 .num_links = 1,
154 .dapm_widgets = rk_dapm_widgets,
155 .num_dapm_widgets = ARRAY_SIZE(rk_dapm_widgets),
156 .dapm_routes = rk_audio_map,
157 .num_dapm_routes = ARRAY_SIZE(rk_audio_map),
158 .controls = rk_mc_controls,
159 .num_controls = ARRAY_SIZE(rk_mc_controls),
160};
161
162static int snd_rk_mc_probe(struct platform_device *pdev)
163{
164 int ret = 0;
165 struct snd_soc_card *card = &snd_soc_card_rk;
166 struct device_node *np = pdev->dev.of_node;
167
168 /* register the soc card */
169 card->dev = &pdev->dev;
170
171 rk_dailink.codec_of_node = of_parse_phandle(np,
172 "rockchip,audio-codec", 0);
173 if (!rk_dailink.codec_of_node) {
174 dev_err(&pdev->dev,
175 "Property 'rockchip,audio-codec' missing or invalid\n");
176 return -EINVAL;
177 }
178
179 rk_dailink.cpu_of_node = of_parse_phandle(np,
180 "rockchip,i2s-controller", 0);
181 if (!rk_dailink.cpu_of_node) {
182 dev_err(&pdev->dev,
183 "Property 'rockchip,i2s-controller' missing or invalid\n");
184 return -EINVAL;
185 }
186
187 rk_dailink.platform_of_node = rk_dailink.cpu_of_node;
188
189 ret = snd_soc_of_parse_card_name(card, "rockchip,model");
190 if (ret) {
191 dev_err(&pdev->dev,
192 "Soc parse card name failed %d\n", ret);
193 return ret;
194 }
195
196 ret = devm_snd_soc_register_card(&pdev->dev, card);
197 if (ret) {
198 dev_err(&pdev->dev,
199 "Soc register card failed %d\n", ret);
200 return ret;
201 }
202
203 return ret;
204}
205
206static const struct of_device_id rockchip_rt5645_of_match[] = {
207 { .compatible = "rockchip,rockchip-audio-rt5645", },
208 {},
209};
210
211MODULE_DEVICE_TABLE(of, rockchip_rt5645_of_match);
212
213static struct platform_driver snd_rk_mc_driver = {
214 .probe = snd_rk_mc_probe,
215 .driver = {
216 .name = DRV_NAME,
zhengxing86059652015-07-19 19:33:49 +0800217 .pm = &snd_soc_pm_ops,
218 .of_match_table = rockchip_rt5645_of_match,
219 },
220};
221
222module_platform_driver(snd_rk_mc_driver);
223
224MODULE_AUTHOR("Xing Zheng <zhengxing@rock-chips.com>");
225MODULE_DESCRIPTION("Rockchip rt5645 machine ASoC driver");
226MODULE_LICENSE("GPL v2");
227MODULE_ALIAS("platform:" DRV_NAME);