blob: 6f3eeb7bc834b5844748bdaa98da9ac11c28be78 [file] [log] [blame]
Sylwester Nawrocki64301242019-04-19 12:21:55 +02001// SPDX-License-Identifier: GPL-2.0+
2//
3// smdk_spdif.c - S/PDIF audio for SMDK
4//
5// Copyright (C) 2010 Samsung Electronics Co., Ltd.
Seungwhan Younb67089e2010-10-12 20:58:52 +09006
Seungwhan Younb67089e2010-10-12 20:58:52 +09007#include <linux/clk.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -04008#include <linux/module.h>
Seungwhan Younb67089e2010-10-12 20:58:52 +09009
Seungwhan Younb67089e2010-10-12 20:58:52 +090010#include <sound/soc.h>
11
Seungwhan Younb67089e2010-10-12 20:58:52 +090012#include "spdif.h"
13
14/* Audio clock settings are belonged to board specific part. Every
15 * board can set audio source clock setting which is matched with H/W
16 * like this function-'set_audio_clock_heirachy'.
17 */
18static int set_audio_clock_heirachy(struct platform_device *pdev)
19{
20 struct clk *fout_epll, *mout_epll, *sclk_audio0, *sclk_spdif;
Seungwhan Younb0d8bef42010-12-06 07:56:59 +090021 int ret = 0;
Seungwhan Younb67089e2010-10-12 20:58:52 +090022
23 fout_epll = clk_get(NULL, "fout_epll");
24 if (IS_ERR(fout_epll)) {
25 printk(KERN_WARNING "%s: Cannot find fout_epll.\n",
26 __func__);
27 return -EINVAL;
28 }
29
30 mout_epll = clk_get(NULL, "mout_epll");
Vasiliy Kulikov8575d932010-11-21 20:40:21 +030031 if (IS_ERR(mout_epll)) {
Seungwhan Younb67089e2010-10-12 20:58:52 +090032 printk(KERN_WARNING "%s: Cannot find mout_epll.\n",
33 __func__);
34 ret = -EINVAL;
35 goto out1;
36 }
37
38 sclk_audio0 = clk_get(&pdev->dev, "sclk_audio");
39 if (IS_ERR(sclk_audio0)) {
40 printk(KERN_WARNING "%s: Cannot find sclk_audio.\n",
41 __func__);
42 ret = -EINVAL;
43 goto out2;
44 }
45
46 sclk_spdif = clk_get(NULL, "sclk_spdif");
Vasiliy Kulikov8575d932010-11-21 20:40:21 +030047 if (IS_ERR(sclk_spdif)) {
Seungwhan Younb67089e2010-10-12 20:58:52 +090048 printk(KERN_WARNING "%s: Cannot find sclk_spdif.\n",
49 __func__);
50 ret = -EINVAL;
51 goto out3;
52 }
53
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040054 /* Set audio clock hierarchy for S/PDIF */
Seungwhan Younb67089e2010-10-12 20:58:52 +090055 clk_set_parent(mout_epll, fout_epll);
56 clk_set_parent(sclk_audio0, mout_epll);
57 clk_set_parent(sclk_spdif, sclk_audio0);
58
59 clk_put(sclk_spdif);
60out3:
61 clk_put(sclk_audio0);
62out2:
63 clk_put(mout_epll);
64out1:
65 clk_put(fout_epll);
66
67 return ret;
68}
69
70/* We should haved to set clock directly on this part because of clock
71 * scheme of Samsudng SoCs did not support to set rates from abstrct
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040072 * clock of it's hierarchy.
Seungwhan Younb67089e2010-10-12 20:58:52 +090073 */
74static int set_audio_clock_rate(unsigned long epll_rate,
75 unsigned long audio_rate)
76{
77 struct clk *fout_epll, *sclk_spdif;
78
79 fout_epll = clk_get(NULL, "fout_epll");
80 if (IS_ERR(fout_epll)) {
81 printk(KERN_ERR "%s: failed to get fout_epll\n", __func__);
82 return -ENOENT;
83 }
84
85 clk_set_rate(fout_epll, epll_rate);
86 clk_put(fout_epll);
87
88 sclk_spdif = clk_get(NULL, "sclk_spdif");
89 if (IS_ERR(sclk_spdif)) {
90 printk(KERN_ERR "%s: failed to get sclk_spdif\n", __func__);
91 return -ENOENT;
92 }
93
94 clk_set_rate(sclk_spdif, audio_rate);
95 clk_put(sclk_spdif);
96
97 return 0;
98}
99
100static int smdk_hw_params(struct snd_pcm_substream *substream,
101 struct snd_pcm_hw_params *params)
102{
Kuninori Morimotoc101ce82020-07-20 10:18:14 +0900103 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimoto7de6b6b2020-03-23 14:20:20 +0900104 struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
Seungwhan Younb67089e2010-10-12 20:58:52 +0900105 unsigned long pll_out, rclk_rate;
106 int ret, ratio;
107
108 switch (params_rate(params)) {
109 case 44100:
110 pll_out = 45158400;
111 break;
112 case 32000:
113 case 48000:
114 case 96000:
115 pll_out = 49152000;
116 break;
117 default:
118 return -EINVAL;
119 }
120
121 /* Setting ratio to 512fs helps to use S/PDIF with HDMI without
122 * modify S/PDIF ASoC machine driver.
123 */
124 ratio = 512;
125 rclk_rate = params_rate(params) * ratio;
126
127 /* Set audio source clock rates */
128 ret = set_audio_clock_rate(pll_out, rclk_rate);
129 if (ret < 0)
130 return ret;
131
132 /* Set S/PDIF uses internal source clock */
133 ret = snd_soc_dai_set_sysclk(cpu_dai, SND_SOC_SPDIF_INT_MCLK,
134 rclk_rate, SND_SOC_CLOCK_IN);
135 if (ret < 0)
136 return ret;
137
138 return ret;
139}
140
Bhumika Goyal2af23632017-08-16 22:29:29 +0530141static const struct snd_soc_ops smdk_spdif_ops = {
Seungwhan Younb67089e2010-10-12 20:58:52 +0900142 .hw_params = smdk_hw_params,
143};
144
Kuninori Morimotoe076cc12019-06-06 13:09:19 +0900145SND_SOC_DAILINK_DEFS(spdif,
146 DAILINK_COMP_ARRAY(COMP_CPU("samsung-spdif")),
147 DAILINK_COMP_ARRAY(COMP_CODEC("spdif-dit", "dit-hifi")),
148 DAILINK_COMP_ARRAY(COMP_PLATFORM("samsung-spdif")));
149
Seungwhan Younb67089e2010-10-12 20:58:52 +0900150static struct snd_soc_dai_link smdk_dai = {
151 .name = "S/PDIF",
152 .stream_name = "S/PDIF PCM Playback",
Seungwhan Younb67089e2010-10-12 20:58:52 +0900153 .ops = &smdk_spdif_ops,
Kuninori Morimotoe076cc12019-06-06 13:09:19 +0900154 SND_SOC_DAILINK_REG(spdif),
Seungwhan Younb67089e2010-10-12 20:58:52 +0900155};
156
157static struct snd_soc_card smdk = {
158 .name = "SMDK-S/PDIF",
Axel Lin095d79d2011-12-22 10:53:15 +0800159 .owner = THIS_MODULE,
Seungwhan Younb67089e2010-10-12 20:58:52 +0900160 .dai_link = &smdk_dai,
161 .num_links = 1,
162};
163
164static struct platform_device *smdk_snd_spdif_dit_device;
165static struct platform_device *smdk_snd_spdif_device;
166
167static int __init smdk_init(void)
168{
169 int ret;
170
171 smdk_snd_spdif_dit_device = platform_device_alloc("spdif-dit", -1);
172 if (!smdk_snd_spdif_dit_device)
173 return -ENOMEM;
174
175 ret = platform_device_add(smdk_snd_spdif_dit_device);
176 if (ret)
Axel Lind482337e2010-11-26 14:54:42 +0800177 goto err1;
Seungwhan Younb67089e2010-10-12 20:58:52 +0900178
179 smdk_snd_spdif_device = platform_device_alloc("soc-audio", -1);
180 if (!smdk_snd_spdif_device) {
181 ret = -ENOMEM;
182 goto err2;
183 }
184
185 platform_set_drvdata(smdk_snd_spdif_device, &smdk);
186
187 ret = platform_device_add(smdk_snd_spdif_device);
188 if (ret)
Axel Lind482337e2010-11-26 14:54:42 +0800189 goto err3;
Seungwhan Younb67089e2010-10-12 20:58:52 +0900190
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400191 /* Set audio clock hierarchy manually */
Seungwhan Younb67089e2010-10-12 20:58:52 +0900192 ret = set_audio_clock_heirachy(smdk_snd_spdif_device);
193 if (ret)
Axel Lind482337e2010-11-26 14:54:42 +0800194 goto err4;
Seungwhan Younb67089e2010-10-12 20:58:52 +0900195
196 return 0;
Axel Lind482337e2010-11-26 14:54:42 +0800197err4:
198 platform_device_del(smdk_snd_spdif_device);
199err3:
Seungwhan Younb67089e2010-10-12 20:58:52 +0900200 platform_device_put(smdk_snd_spdif_device);
201err2:
Axel Lind482337e2010-11-26 14:54:42 +0800202 platform_device_del(smdk_snd_spdif_dit_device);
203err1:
Seungwhan Younb67089e2010-10-12 20:58:52 +0900204 platform_device_put(smdk_snd_spdif_dit_device);
205 return ret;
206}
207
208static void __exit smdk_exit(void)
209{
210 platform_device_unregister(smdk_snd_spdif_device);
Axel Lind482337e2010-11-26 14:54:42 +0800211 platform_device_unregister(smdk_snd_spdif_dit_device);
Seungwhan Younb67089e2010-10-12 20:58:52 +0900212}
213
214module_init(smdk_init);
215module_exit(smdk_exit);
216
217MODULE_AUTHOR("Seungwhan Youn, <sw.youn@samsung.com>");
218MODULE_DESCRIPTION("ALSA SoC SMDK+S/PDIF");
219MODULE_LICENSE("GPL");