blob: 16ca2ad9242648436ee5a0e2ca40d67e5e47deaf [file] [log] [blame]
Thomas Gleixner9952f692019-05-28 10:10:04 -07001// SPDX-License-Identifier: GPL-2.0-only
zhengxing86059652015-07-19 19:33:49 +08002/*
3 * Rockchip machine ASoC driver for boards using a RT5645/RT5650 CODEC.
4 *
5 * Copyright (c) 2015, ROCKCHIP CORPORATION. All rights reserved.
zhengxing86059652015-07-19 19:33:49 +08006 */
7
8#include <linux/module.h>
9#include <linux/platform_device.h>
10#include <linux/slab.h>
11#include <linux/gpio.h>
12#include <linux/of_gpio.h>
13#include <linux/delay.h>
14#include <sound/core.h>
15#include <sound/jack.h>
16#include <sound/pcm.h>
17#include <sound/pcm_params.h>
18#include <sound/soc.h>
19#include "rockchip_i2s.h"
Kuninori Morimoto79223bf2018-01-29 03:49:31 +000020#include "../codecs/rt5645.h"
zhengxing86059652015-07-19 19:33:49 +080021
22#define DRV_NAME "rockchip-snd-rt5645"
23
24static struct snd_soc_jack headset_jack;
25
zhengxing86059652015-07-19 19:33:49 +080026static const struct snd_soc_dapm_widget rk_dapm_widgets[] = {
27 SND_SOC_DAPM_HP("Headphones", NULL),
28 SND_SOC_DAPM_SPK("Speakers", NULL),
29 SND_SOC_DAPM_MIC("Headset Mic", NULL),
30 SND_SOC_DAPM_MIC("Int Mic", NULL),
31};
32
33static const struct snd_soc_dapm_route rk_audio_map[] = {
34 /* Input Lines */
35 {"DMIC L2", NULL, "Int Mic"},
36 {"DMIC R2", NULL, "Int Mic"},
37 {"RECMIXL", NULL, "Headset Mic"},
38 {"RECMIXR", NULL, "Headset Mic"},
39
40 /* Output Lines */
41 {"Headphones", NULL, "HPOR"},
42 {"Headphones", NULL, "HPOL"},
43 {"Speakers", NULL, "SPOL"},
44 {"Speakers", NULL, "SPOR"},
45};
46
47static const struct snd_kcontrol_new rk_mc_controls[] = {
48 SOC_DAPM_PIN_SWITCH("Headphones"),
49 SOC_DAPM_PIN_SWITCH("Speakers"),
50 SOC_DAPM_PIN_SWITCH("Headset Mic"),
51 SOC_DAPM_PIN_SWITCH("Int Mic"),
52};
53
54static int rk_aif1_hw_params(struct snd_pcm_substream *substream,
55 struct snd_pcm_hw_params *params)
56{
57 int ret = 0;
Kuninori Morimoto5c5eb292020-07-20 10:18:28 +090058 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimotoa7ff5262020-03-23 14:20:09 +090059 struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
60 struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
zhengxing86059652015-07-19 19:33:49 +080061 int mclk;
62
63 switch (params_rate(params)) {
64 case 8000:
65 case 16000:
Caesar Wang3a3b0702015-11-06 19:38:16 +080066 case 24000:
67 case 32000:
zhengxing86059652015-07-19 19:33:49 +080068 case 48000:
Caesar Wang3a3b0702015-11-06 19:38:16 +080069 case 64000:
zhengxing86059652015-07-19 19:33:49 +080070 case 96000:
71 mclk = 12288000;
72 break;
Caesar Wang3a3b0702015-11-06 19:38:16 +080073 case 11025:
74 case 22050:
zhengxing86059652015-07-19 19:33:49 +080075 case 44100:
Caesar Wang3a3b0702015-11-06 19:38:16 +080076 case 88200:
zhengxing86059652015-07-19 19:33:49 +080077 mclk = 11289600;
78 break;
79 default:
80 return -EINVAL;
81 }
82
83 ret = snd_soc_dai_set_sysclk(cpu_dai, 0, mclk,
84 SND_SOC_CLOCK_OUT);
85 if (ret < 0) {
86 dev_err(codec_dai->dev, "Can't set codec clock %d\n", ret);
87 return ret;
88 }
89
90 ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
91 SND_SOC_CLOCK_IN);
92 if (ret < 0) {
93 dev_err(codec_dai->dev, "Can't set codec clock %d\n", ret);
94 return ret;
95 }
96
97 return ret;
98}
99
100static int rk_init(struct snd_soc_pcm_runtime *runtime)
101{
102 struct snd_soc_card *card = runtime->card;
103 int ret;
104
105 /* Enable Headset and 4 Buttons Jack detection */
106 ret = snd_soc_card_jack_new(card, "Headset Jack",
107 SND_JACK_HEADPHONE | SND_JACK_MICROPHONE |
108 SND_JACK_BTN_0 | SND_JACK_BTN_1 |
109 SND_JACK_BTN_2 | SND_JACK_BTN_3,
110 &headset_jack, NULL, 0);
Xing Zhengf8ce2002015-08-25 15:52:42 +0800111 if (ret) {
zhengxing86059652015-07-19 19:33:49 +0800112 dev_err(card->dev, "New Headset Jack failed! (%d)\n", ret);
113 return ret;
114 }
115
Kuninori Morimotoa7ff5262020-03-23 14:20:09 +0900116 return rt5645_set_jack_detect(asoc_rtd_to_codec(runtime, 0)->component,
zhengxing86059652015-07-19 19:33:49 +0800117 &headset_jack,
118 &headset_jack,
119 &headset_jack);
120}
121
Julia Lawall705e9992016-10-15 16:55:47 +0200122static const struct snd_soc_ops rk_aif1_ops = {
zhengxing86059652015-07-19 19:33:49 +0800123 .hw_params = rk_aif1_hw_params,
124};
125
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900126SND_SOC_DAILINK_DEFS(pcm,
127 DAILINK_COMP_ARRAY(COMP_EMPTY()),
Kuninori Morimotof94d7b62019-06-28 10:48:01 +0900128 DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "rt5645-aif1")),
129 DAILINK_COMP_ARRAY(COMP_EMPTY()));
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900130
zhengxing86059652015-07-19 19:33:49 +0800131static struct snd_soc_dai_link rk_dailink = {
132 .name = "rt5645",
133 .stream_name = "rt5645 PCM",
zhengxing86059652015-07-19 19:33:49 +0800134 .init = rk_init,
135 .ops = &rk_aif1_ops,
136 /* set rt5645 as slave */
137 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
138 SND_SOC_DAIFMT_CBS_CFS,
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900139 SND_SOC_DAILINK_REG(pcm),
zhengxing86059652015-07-19 19:33:49 +0800140};
141
142static struct snd_soc_card snd_soc_card_rk = {
143 .name = "I2S-RT5650",
Axel Lin54d86972015-08-21 20:59:21 +0800144 .owner = THIS_MODULE,
zhengxing86059652015-07-19 19:33:49 +0800145 .dai_link = &rk_dailink,
146 .num_links = 1,
147 .dapm_widgets = rk_dapm_widgets,
148 .num_dapm_widgets = ARRAY_SIZE(rk_dapm_widgets),
149 .dapm_routes = rk_audio_map,
150 .num_dapm_routes = ARRAY_SIZE(rk_audio_map),
151 .controls = rk_mc_controls,
152 .num_controls = ARRAY_SIZE(rk_mc_controls),
153};
154
155static int snd_rk_mc_probe(struct platform_device *pdev)
156{
157 int ret = 0;
158 struct snd_soc_card *card = &snd_soc_card_rk;
159 struct device_node *np = pdev->dev.of_node;
160
161 /* register the soc card */
162 card->dev = &pdev->dev;
163
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900164 rk_dailink.codecs->of_node = of_parse_phandle(np,
zhengxing86059652015-07-19 19:33:49 +0800165 "rockchip,audio-codec", 0);
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900166 if (!rk_dailink.codecs->of_node) {
zhengxing86059652015-07-19 19:33:49 +0800167 dev_err(&pdev->dev,
168 "Property 'rockchip,audio-codec' missing or invalid\n");
169 return -EINVAL;
170 }
171
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900172 rk_dailink.cpus->of_node = of_parse_phandle(np,
zhengxing86059652015-07-19 19:33:49 +0800173 "rockchip,i2s-controller", 0);
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900174 if (!rk_dailink.cpus->of_node) {
zhengxing86059652015-07-19 19:33:49 +0800175 dev_err(&pdev->dev,
176 "Property 'rockchip,i2s-controller' missing or invalid\n");
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300177 ret = -EINVAL;
178 goto put_codec_of_node;
zhengxing86059652015-07-19 19:33:49 +0800179 }
180
Kuninori Morimotof94d7b62019-06-28 10:48:01 +0900181 rk_dailink.platforms->of_node = rk_dailink.cpus->of_node;
182
zhengxing86059652015-07-19 19:33:49 +0800183 ret = snd_soc_of_parse_card_name(card, "rockchip,model");
184 if (ret) {
185 dev_err(&pdev->dev,
186 "Soc parse card name failed %d\n", ret);
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300187 goto put_cpu_of_node;
zhengxing86059652015-07-19 19:33:49 +0800188 }
189
190 ret = devm_snd_soc_register_card(&pdev->dev, card);
191 if (ret) {
192 dev_err(&pdev->dev,
193 "Soc register card failed %d\n", ret);
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300194 goto put_cpu_of_node;
zhengxing86059652015-07-19 19:33:49 +0800195 }
196
197 return ret;
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300198
199put_cpu_of_node:
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900200 of_node_put(rk_dailink.cpus->of_node);
201 rk_dailink.cpus->of_node = NULL;
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300202put_codec_of_node:
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900203 of_node_put(rk_dailink.codecs->of_node);
204 rk_dailink.codecs->of_node = NULL;
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300205
206 return ret;
207}
208
209static int snd_rk_mc_remove(struct platform_device *pdev)
210{
Kuninori Morimoto0209bf22019-06-06 13:17:37 +0900211 of_node_put(rk_dailink.cpus->of_node);
212 rk_dailink.cpus->of_node = NULL;
213 of_node_put(rk_dailink.codecs->of_node);
214 rk_dailink.codecs->of_node = NULL;
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300215
216 return 0;
zhengxing86059652015-07-19 19:33:49 +0800217}
218
219static const struct of_device_id rockchip_rt5645_of_match[] = {
220 { .compatible = "rockchip,rockchip-audio-rt5645", },
221 {},
222};
223
224MODULE_DEVICE_TABLE(of, rockchip_rt5645_of_match);
225
226static struct platform_driver snd_rk_mc_driver = {
227 .probe = snd_rk_mc_probe,
Alexey Khoroshilova56df732018-06-10 01:20:54 +0300228 .remove = snd_rk_mc_remove,
zhengxing86059652015-07-19 19:33:49 +0800229 .driver = {
230 .name = DRV_NAME,
zhengxing86059652015-07-19 19:33:49 +0800231 .pm = &snd_soc_pm_ops,
232 .of_match_table = rockchip_rt5645_of_match,
233 },
234};
235
236module_platform_driver(snd_rk_mc_driver);
237
238MODULE_AUTHOR("Xing Zheng <zhengxing@rock-chips.com>");
239MODULE_DESCRIPTION("Rockchip rt5645 machine ASoC driver");
240MODULE_LICENSE("GPL v2");
241MODULE_ALIAS("platform:" DRV_NAME);