ASoC: rockchip: fix platform_no_drv_owner.cocci warnings
[linux-drm-fsl-dcu.git] / sound / soc / rockchip / rockchip_rt5645.c
1 /*
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"
32
33 #define DRV_NAME "rockchip-snd-rt5645"
34
35 static struct snd_soc_jack headset_jack;
36
37 /* Jack detect via rt5645 driver. */
38 extern int rt5645_set_jack_detect(struct snd_soc_codec *codec,
39         struct snd_soc_jack *hp_jack, struct snd_soc_jack *mic_jack,
40         struct snd_soc_jack *btn_jack);
41
42 static const struct snd_soc_dapm_widget rk_dapm_widgets[] = {
43         SND_SOC_DAPM_HP("Headphones", NULL),
44         SND_SOC_DAPM_SPK("Speakers", NULL),
45         SND_SOC_DAPM_MIC("Headset Mic", NULL),
46         SND_SOC_DAPM_MIC("Int Mic", NULL),
47 };
48
49 static const struct snd_soc_dapm_route rk_audio_map[] = {
50         /* Input Lines */
51         {"DMIC L2", NULL, "Int Mic"},
52         {"DMIC R2", NULL, "Int Mic"},
53         {"RECMIXL", NULL, "Headset Mic"},
54         {"RECMIXR", NULL, "Headset Mic"},
55
56         /* Output Lines */
57         {"Headphones", NULL, "HPOR"},
58         {"Headphones", NULL, "HPOL"},
59         {"Speakers", NULL, "SPOL"},
60         {"Speakers", NULL, "SPOR"},
61 };
62
63 static const struct snd_kcontrol_new rk_mc_controls[] = {
64         SOC_DAPM_PIN_SWITCH("Headphones"),
65         SOC_DAPM_PIN_SWITCH("Speakers"),
66         SOC_DAPM_PIN_SWITCH("Headset Mic"),
67         SOC_DAPM_PIN_SWITCH("Int Mic"),
68 };
69
70 static int rk_aif1_hw_params(struct snd_pcm_substream *substream,
71                              struct snd_pcm_hw_params *params)
72 {
73         int ret = 0;
74         struct snd_soc_pcm_runtime *rtd = substream->private_data;
75         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
76         struct snd_soc_dai *codec_dai = rtd->codec_dai;
77         int mclk;
78
79         switch (params_rate(params)) {
80         case 8000:
81         case 16000:
82         case 48000:
83         case 96000:
84                 mclk = 12288000;
85                 break;
86         case 44100:
87                 mclk = 11289600;
88                 break;
89         default:
90                 return -EINVAL;
91         }
92
93         ret = snd_soc_dai_set_sysclk(cpu_dai, 0, mclk,
94                                      SND_SOC_CLOCK_OUT);
95         if (ret < 0) {
96                 dev_err(codec_dai->dev, "Can't set codec clock %d\n", ret);
97                 return ret;
98         }
99
100         ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk,
101                                      SND_SOC_CLOCK_IN);
102         if (ret < 0) {
103                 dev_err(codec_dai->dev, "Can't set codec clock %d\n", ret);
104                 return ret;
105         }
106
107         return ret;
108 }
109
110 static int rk_init(struct snd_soc_pcm_runtime *runtime)
111 {
112         struct snd_soc_card *card = runtime->card;
113         int ret;
114
115         /* Enable Headset and 4 Buttons Jack detection */
116         ret = snd_soc_card_jack_new(card, "Headset Jack",
117                                     SND_JACK_HEADPHONE | SND_JACK_MICROPHONE |
118                                     SND_JACK_BTN_0 | SND_JACK_BTN_1 |
119                                     SND_JACK_BTN_2 | SND_JACK_BTN_3,
120                                     &headset_jack, NULL, 0);
121         if (ret) {
122                 dev_err(card->dev, "New Headset Jack failed! (%d)\n", ret);
123                 return ret;
124         }
125
126         return rt5645_set_jack_detect(runtime->codec,
127                                      &headset_jack,
128                                      &headset_jack,
129                                      &headset_jack);
130 }
131
132 static struct snd_soc_ops rk_aif1_ops = {
133         .hw_params = rk_aif1_hw_params,
134 };
135
136 static struct snd_soc_dai_link rk_dailink = {
137         .name = "rt5645",
138         .stream_name = "rt5645 PCM",
139         .codec_dai_name = "rt5645-aif1",
140         .init = rk_init,
141         .ops = &rk_aif1_ops,
142         /* set rt5645 as slave */
143         .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
144                 SND_SOC_DAIFMT_CBS_CFS,
145 };
146
147 static struct snd_soc_card snd_soc_card_rk = {
148         .name = "I2S-RT5650",
149         .dai_link = &rk_dailink,
150         .num_links = 1,
151         .dapm_widgets = rk_dapm_widgets,
152         .num_dapm_widgets = ARRAY_SIZE(rk_dapm_widgets),
153         .dapm_routes = rk_audio_map,
154         .num_dapm_routes = ARRAY_SIZE(rk_audio_map),
155         .controls = rk_mc_controls,
156         .num_controls = ARRAY_SIZE(rk_mc_controls),
157 };
158
159 static int snd_rk_mc_probe(struct platform_device *pdev)
160 {
161         int ret = 0;
162         struct snd_soc_card *card = &snd_soc_card_rk;
163         struct device_node *np = pdev->dev.of_node;
164
165         /* register the soc card */
166         card->dev = &pdev->dev;
167
168         rk_dailink.codec_of_node = of_parse_phandle(np,
169                         "rockchip,audio-codec", 0);
170         if (!rk_dailink.codec_of_node) {
171                 dev_err(&pdev->dev,
172                         "Property 'rockchip,audio-codec' missing or invalid\n");
173                 return -EINVAL;
174         }
175
176         rk_dailink.cpu_of_node = of_parse_phandle(np,
177                         "rockchip,i2s-controller", 0);
178         if (!rk_dailink.cpu_of_node) {
179                 dev_err(&pdev->dev,
180                         "Property 'rockchip,i2s-controller' missing or invalid\n");
181                 return -EINVAL;
182         }
183
184         rk_dailink.platform_of_node = rk_dailink.cpu_of_node;
185
186         ret = snd_soc_of_parse_card_name(card, "rockchip,model");
187         if (ret) {
188                 dev_err(&pdev->dev,
189                         "Soc parse card name failed %d\n", ret);
190                 return ret;
191         }
192
193         ret = devm_snd_soc_register_card(&pdev->dev, card);
194         if (ret) {
195                 dev_err(&pdev->dev,
196                         "Soc register card failed %d\n", ret);
197                 return ret;
198         }
199
200         return ret;
201 }
202
203 static const struct of_device_id rockchip_rt5645_of_match[] = {
204         { .compatible = "rockchip,rockchip-audio-rt5645", },
205         {},
206 };
207
208 MODULE_DEVICE_TABLE(of, rockchip_rt5645_of_match);
209
210 static struct platform_driver snd_rk_mc_driver = {
211         .probe = snd_rk_mc_probe,
212         .driver = {
213                 .name = DRV_NAME,
214                 .pm = &snd_soc_pm_ops,
215                 .of_match_table = rockchip_rt5645_of_match,
216         },
217 };
218
219 module_platform_driver(snd_rk_mc_driver);
220
221 MODULE_AUTHOR("Xing Zheng <zhengxing@rock-chips.com>");
222 MODULE_DESCRIPTION("Rockchip rt5645 machine ASoC driver");
223 MODULE_LICENSE("GPL v2");
224 MODULE_ALIAS("platform:" DRV_NAME);