2 * Rockchip machine ASoC driver for boards using MAX98357A/RT5514/DA7219
4 * Copyright (c) 2016, ROCKCHIP CORPORATION. All rights reserved.
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.
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
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/>.
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
22 #include <linux/gpio.h>
23 #include <linux/of_gpio.h>
24 #include <linux/delay.h>
25 #include <linux/spi/spi.h>
26 #include <linux/i2c.h>
27 #include <linux/input.h>
28 #include <sound/core.h>
29 #include <sound/jack.h>
30 #include <sound/pcm.h>
31 #include <sound/pcm_params.h>
32 #include <sound/soc.h>
33 #include "rockchip_i2s.h"
34 #include "../codecs/da7219.h"
35 #include "../codecs/da7219-aad.h"
36 #include "../codecs/rt5514.h"
38 #define DRV_NAME "rk3399-gru-sound"
42 static unsigned int dmic_wakeup_delay
;
44 static struct snd_soc_jack rockchip_sound_jack
;
46 static const struct snd_soc_dapm_widget rockchip_dapm_widgets
[] = {
47 SND_SOC_DAPM_HP("Headphones", NULL
),
48 SND_SOC_DAPM_SPK("Speakers", NULL
),
49 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
50 SND_SOC_DAPM_MIC("Int Mic", NULL
),
51 SND_SOC_DAPM_LINE("HDMI", NULL
),
54 static const struct snd_kcontrol_new rockchip_controls
[] = {
55 SOC_DAPM_PIN_SWITCH("Headphones"),
56 SOC_DAPM_PIN_SWITCH("Speakers"),
57 SOC_DAPM_PIN_SWITCH("Headset Mic"),
58 SOC_DAPM_PIN_SWITCH("Int Mic"),
59 SOC_DAPM_PIN_SWITCH("HDMI"),
62 static int rockchip_sound_max98357a_hw_params(struct snd_pcm_substream
*substream
,
63 struct snd_pcm_hw_params
*params
)
65 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
69 /* max98357a supports these sample rates */
70 switch (params_rate(params
)) {
75 mclk
= params_rate(params
) * SOUND_FS
;
78 dev_err(rtd
->card
->dev
, "%s() doesn't support this sample rate: %d\n",
79 __func__
, params_rate(params
));
83 ret
= snd_soc_dai_set_sysclk(rtd
->cpu_dai
, 0, mclk
, 0);
85 dev_err(rtd
->card
->dev
, "%s() error setting sysclk to %u: %d\n",
93 static int rockchip_sound_rt5514_hw_params(struct snd_pcm_substream
*substream
,
94 struct snd_pcm_hw_params
*params
)
96 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
97 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
98 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
102 mclk
= params_rate(params
) * SOUND_FS
;
104 ret
= snd_soc_dai_set_sysclk(cpu_dai
, 0, mclk
,
107 dev_err(rtd
->card
->dev
, "Can't set cpu clock out %d\n", ret
);
111 ret
= snd_soc_dai_set_sysclk(codec_dai
, RT5514_SCLK_S_MCLK
,
112 mclk
, SND_SOC_CLOCK_IN
);
114 dev_err(rtd
->card
->dev
, "%s() error setting sysclk to %u: %d\n",
115 __func__
, params_rate(params
) * 512, ret
);
119 /* Wait for DMIC stable */
120 msleep(dmic_wakeup_delay
);
125 static int rockchip_sound_da7219_hw_params(struct snd_pcm_substream
*substream
,
126 struct snd_pcm_hw_params
*params
)
128 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
129 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
130 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
133 /* in bypass mode, the mclk has to be one of the frequencies below */
134 switch (params_rate(params
)) {
154 ret
= snd_soc_dai_set_sysclk(cpu_dai
, 0, mclk
,
157 dev_err(codec_dai
->dev
, "Can't set cpu clock out %d\n", ret
);
161 ret
= snd_soc_dai_set_sysclk(codec_dai
, 0, mclk
,
164 dev_err(codec_dai
->dev
, "Can't set codec clock in %d\n", ret
);
168 ret
= snd_soc_dai_set_pll(codec_dai
, 0, DA7219_SYSCLK_MCLK
, 0, 0);
170 dev_err(codec_dai
->dev
, "Can't set pll sysclk mclk %d\n", ret
);
177 static int rockchip_sound_da7219_init(struct snd_soc_pcm_runtime
*rtd
)
179 struct snd_soc_codec
*codec
= rtd
->codec_dais
[0]->codec
;
180 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
183 /* We need default MCLK and PLL settings for the accessory detection */
184 ret
= snd_soc_dai_set_sysclk(codec_dai
, 0, 12288000,
187 dev_err(codec_dai
->dev
, "Init can't set codec clock in %d\n", ret
);
191 ret
= snd_soc_dai_set_pll(codec_dai
, 0, DA7219_SYSCLK_MCLK
, 0, 0);
193 dev_err(codec_dai
->dev
, "Init can't set pll sysclk mclk %d\n", ret
);
197 /* Enable Headset and 4 Buttons Jack detection */
198 ret
= snd_soc_card_jack_new(rtd
->card
, "Headset Jack",
199 SND_JACK_HEADSET
| SND_JACK_LINEOUT
|
200 SND_JACK_BTN_0
| SND_JACK_BTN_1
|
201 SND_JACK_BTN_2
| SND_JACK_BTN_3
,
202 &rockchip_sound_jack
, NULL
, 0);
205 dev_err(rtd
->card
->dev
, "New Headset Jack failed! (%d)\n", ret
);
210 rockchip_sound_jack
.jack
, SND_JACK_BTN_0
, KEY_PLAYPAUSE
);
212 rockchip_sound_jack
.jack
, SND_JACK_BTN_1
, KEY_VOLUMEUP
);
214 rockchip_sound_jack
.jack
, SND_JACK_BTN_2
, KEY_VOLUMEDOWN
);
216 rockchip_sound_jack
.jack
, SND_JACK_BTN_3
, KEY_VOICECOMMAND
);
218 da7219_aad_jack_det(codec
, &rockchip_sound_jack
);
223 static int rockchip_sound_cdndp_hw_params(struct snd_pcm_substream
*substream
,
224 struct snd_pcm_hw_params
*params
)
226 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
227 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
228 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
231 /* in bypass mode, the mclk has to be one of the frequencies below */
232 switch (params_rate(params
)) {
252 ret
= snd_soc_dai_set_sysclk(cpu_dai
, 0, mclk
,
255 dev_err(codec_dai
->dev
, "Can't set cpu clock out %d\n", ret
);
262 static int rockchip_sound_dmic_hw_params(struct snd_pcm_substream
*substream
,
263 struct snd_pcm_hw_params
*params
)
265 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
269 mclk
= params_rate(params
) * SOUND_FS
;
271 ret
= snd_soc_dai_set_sysclk(rtd
->cpu_dai
, 0, mclk
, 0);
273 dev_err(rtd
->card
->dev
, "%s() error setting sysclk to %u: %d\n",
274 __func__
, mclk
, ret
);
278 /* Wait for DMIC stable */
279 msleep(dmic_wakeup_delay
);
284 static const struct snd_soc_ops rockchip_sound_max98357a_ops
= {
285 .hw_params
= rockchip_sound_max98357a_hw_params
,
288 static const struct snd_soc_ops rockchip_sound_rt5514_ops
= {
289 .hw_params
= rockchip_sound_rt5514_hw_params
,
292 static const struct snd_soc_ops rockchip_sound_da7219_ops
= {
293 .hw_params
= rockchip_sound_da7219_hw_params
,
296 static const struct snd_soc_ops rockchip_sound_cdndp_ops
= {
297 .hw_params
= rockchip_sound_cdndp_hw_params
,
300 static const struct snd_soc_ops rockchip_sound_dmic_ops
= {
301 .hw_params
= rockchip_sound_dmic_hw_params
,
304 static struct snd_soc_card rockchip_sound_card
= {
305 .name
= "rk3399-gru-sound",
306 .owner
= THIS_MODULE
,
307 .dapm_widgets
= rockchip_dapm_widgets
,
308 .num_dapm_widgets
= ARRAY_SIZE(rockchip_dapm_widgets
),
309 .controls
= rockchip_controls
,
310 .num_controls
= ARRAY_SIZE(rockchip_controls
),
322 static const struct snd_soc_dai_link rockchip_dais
[] = {
325 .stream_name
= "DP PCM",
326 .codec_dai_name
= "i2s-hifi",
327 .ops
= &rockchip_sound_cdndp_ops
,
328 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
329 SND_SOC_DAIFMT_CBS_CFS
,
333 .stream_name
= "DA7219 PCM",
334 .codec_dai_name
= "da7219-hifi",
335 .init
= rockchip_sound_da7219_init
,
336 .ops
= &rockchip_sound_da7219_ops
,
337 /* set da7219 as slave */
338 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
339 SND_SOC_DAIFMT_CBS_CFS
,
343 .stream_name
= "DMIC PCM",
344 .codec_dai_name
= "dmic-hifi",
345 .ops
= &rockchip_sound_dmic_ops
,
346 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
347 SND_SOC_DAIFMT_CBS_CFS
,
349 [DAILINK_MAX98357A
] = {
351 .stream_name
= "MAX98357A PCM",
352 .codec_dai_name
= "HiFi",
353 .ops
= &rockchip_sound_max98357a_ops
,
354 /* set max98357a as slave */
355 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
356 SND_SOC_DAIFMT_CBS_CFS
,
360 .stream_name
= "RT5514 PCM",
361 .codec_dai_name
= "rt5514-aif1",
362 .ops
= &rockchip_sound_rt5514_ops
,
363 /* set rt5514 as slave */
364 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
365 SND_SOC_DAIFMT_CBS_CFS
,
367 /* RT5514 DSP for voice wakeup via spi bus */
368 [DAILINK_RT5514_DSP
] = {
369 .name
= "RT5514 DSP",
370 .stream_name
= "Wake on Voice",
371 .codec_name
= "snd-soc-dummy",
372 .codec_dai_name
= "snd-soc-dummy-dai",
376 static const struct snd_soc_dapm_route rockchip_sound_cdndp_routes
[] = {
378 {"HDMI", NULL
, "TX"},
381 static const struct snd_soc_dapm_route rockchip_sound_da7219_routes
[] = {
383 {"Headphones", NULL
, "HPL"},
384 {"Headphones", NULL
, "HPR"},
387 {"MIC", NULL
, "Headset Mic"},
390 static const struct snd_soc_dapm_route rockchip_sound_dmic_routes
[] = {
392 {"DMic", NULL
, "Int Mic"},
395 static const struct snd_soc_dapm_route rockchip_sound_max98357a_routes
[] = {
397 {"Speakers", NULL
, "Speaker"},
400 static const struct snd_soc_dapm_route rockchip_sound_rt5514_routes
[] = {
402 {"DMIC1L", NULL
, "Int Mic"},
403 {"DMIC1R", NULL
, "Int Mic"},
406 struct rockchip_sound_route
{
407 const struct snd_soc_dapm_route
*routes
;
411 static const struct rockchip_sound_route rockchip_routes
[] = {
413 .routes
= rockchip_sound_cdndp_routes
,
414 .num_routes
= ARRAY_SIZE(rockchip_sound_cdndp_routes
),
417 .routes
= rockchip_sound_da7219_routes
,
418 .num_routes
= ARRAY_SIZE(rockchip_sound_da7219_routes
),
421 .routes
= rockchip_sound_dmic_routes
,
422 .num_routes
= ARRAY_SIZE(rockchip_sound_dmic_routes
),
424 [DAILINK_MAX98357A
] = {
425 .routes
= rockchip_sound_max98357a_routes
,
426 .num_routes
= ARRAY_SIZE(rockchip_sound_max98357a_routes
),
429 .routes
= rockchip_sound_rt5514_routes
,
430 .num_routes
= ARRAY_SIZE(rockchip_sound_rt5514_routes
),
432 [DAILINK_RT5514_DSP
] = {},
435 struct dailink_match_data
{
436 const char *compatible
;
437 struct bus_type
*bus_type
;
440 static const struct dailink_match_data dailink_match
[] = {
442 .compatible
= "rockchip,rk3399-cdn-dp",
445 .compatible
= "dlg,da7219",
448 .compatible
= "dmic-codec",
450 [DAILINK_MAX98357A
] = {
451 .compatible
= "maxim,max98357a",
454 .compatible
= "realtek,rt5514",
455 .bus_type
= &i2c_bus_type
,
457 [DAILINK_RT5514_DSP
] = {
458 .compatible
= "realtek,rt5514",
459 .bus_type
= &spi_bus_type
,
463 static int of_dev_node_match(struct device
*dev
, void *data
)
465 return dev
->of_node
== data
;
468 static int rockchip_sound_codec_node_match(struct device_node
*np_codec
)
473 for (i
= 0; i
< ARRAY_SIZE(dailink_match
); i
++) {
474 if (!of_device_is_compatible(np_codec
,
475 dailink_match
[i
].compatible
))
478 if (dailink_match
[i
].bus_type
) {
479 dev
= bus_find_device(dailink_match
[i
].bus_type
, NULL
,
480 np_codec
, of_dev_node_match
);
491 static int rockchip_sound_of_parse_dais(struct device
*dev
,
492 struct snd_soc_card
*card
)
494 struct device_node
*np_cpu
, *np_cpu0
, *np_cpu1
;
495 struct device_node
*np_codec
;
496 struct snd_soc_dai_link
*dai
;
497 struct snd_soc_dapm_route
*routes
;
501 card
->dai_link
= devm_kzalloc(dev
, sizeof(rockchip_dais
),
507 for (i
= 0; i
< ARRAY_SIZE(rockchip_routes
); i
++)
508 num_routes
+= rockchip_routes
[i
].num_routes
;
509 routes
= devm_kzalloc(dev
, num_routes
* sizeof(*routes
),
513 card
->dapm_routes
= routes
;
515 np_cpu0
= of_parse_phandle(dev
->of_node
, "rockchip,cpu", 0);
516 np_cpu1
= of_parse_phandle(dev
->of_node
, "rockchip,cpu", 1);
518 card
->num_dapm_routes
= 0;
520 for (i
= 0; i
< ARRAY_SIZE(rockchip_dais
); i
++) {
521 np_codec
= of_parse_phandle(dev
->of_node
,
522 "rockchip,codec", i
);
526 if (!of_device_is_available(np_codec
))
529 index
= rockchip_sound_codec_node_match(np_codec
);
537 case DAILINK_RT5514_DSP
:
546 dev_err(dev
, "Missing 'rockchip,cpu' for %s\n",
547 rockchip_dais
[index
].name
);
551 dai
= &card
->dai_link
[card
->num_links
++];
552 *dai
= rockchip_dais
[index
];
554 if (!dai
->codec_name
)
555 dai
->codec_of_node
= np_codec
;
556 dai
->platform_of_node
= np_cpu
;
557 dai
->cpu_of_node
= np_cpu
;
559 if (card
->num_dapm_routes
+ rockchip_routes
[index
].num_routes
>
561 dev_err(dev
, "Too many routes\n");
565 memcpy(routes
+ card
->num_dapm_routes
,
566 rockchip_routes
[index
].routes
,
567 rockchip_routes
[index
].num_routes
* sizeof(*routes
));
568 card
->num_dapm_routes
+= rockchip_routes
[index
].num_routes
;
574 static int rockchip_sound_probe(struct platform_device
*pdev
)
576 struct snd_soc_card
*card
= &rockchip_sound_card
;
579 ret
= rockchip_sound_of_parse_dais(&pdev
->dev
, card
);
581 dev_err(&pdev
->dev
, "Failed to parse dais: %d\n", ret
);
585 /* Set DMIC wakeup delay */
586 ret
= device_property_read_u32(&pdev
->dev
, "dmic-wakeup-delay-ms",
589 dmic_wakeup_delay
= 0;
591 "no optional property 'dmic-wakeup-delay-ms' found, default: no delay\n");
594 card
->dev
= &pdev
->dev
;
595 return devm_snd_soc_register_card(&pdev
->dev
, card
);
598 static const struct of_device_id rockchip_sound_of_match
[] = {
599 { .compatible
= "rockchip,rk3399-gru-sound", },
603 static struct platform_driver rockchip_sound_driver
= {
604 .probe
= rockchip_sound_probe
,
607 .of_match_table
= rockchip_sound_of_match
,
609 .pm
= &snd_soc_pm_ops
,
614 module_platform_driver(rockchip_sound_driver
);
616 MODULE_AUTHOR("Xing Zheng <zhengxing@rock-chips.com>");
617 MODULE_DESCRIPTION("Rockchip ASoC Machine Driver");
618 MODULE_LICENSE("GPL v2");
619 MODULE_ALIAS("platform:" DRV_NAME
);
620 MODULE_DEVICE_TABLE(of
, rockchip_sound_of_match
);