ACPI / property: Document RS485 _DSD properties
[linux-2.6-microblaze.git] / sound / soc / meson / aiu.c
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Copyright (c) 2020 BayLibre, SAS.
4 // Author: Jerome Brunet <jbrunet@baylibre.com>
5
6 #include <linux/bitfield.h>
7 #include <linux/clk.h>
8 #include <linux/module.h>
9 #include <linux/of_platform.h>
10 #include <linux/regmap.h>
11 #include <linux/reset.h>
12 #include <sound/soc.h>
13 #include <sound/soc-dai.h>
14
15 #include <dt-bindings/sound/meson-aiu.h>
16 #include "aiu.h"
17 #include "aiu-fifo.h"
18
19 #define AIU_I2S_MISC_958_SRC_SHIFT 3
20
21 static const char * const aiu_spdif_encode_sel_texts[] = {
22         "SPDIF", "I2S",
23 };
24
25 static SOC_ENUM_SINGLE_DECL(aiu_spdif_encode_sel_enum, AIU_I2S_MISC,
26                             AIU_I2S_MISC_958_SRC_SHIFT,
27                             aiu_spdif_encode_sel_texts);
28
29 static const struct snd_kcontrol_new aiu_spdif_encode_mux =
30         SOC_DAPM_ENUM("SPDIF Buffer Src", aiu_spdif_encode_sel_enum);
31
32 static const struct snd_soc_dapm_widget aiu_cpu_dapm_widgets[] = {
33         SND_SOC_DAPM_MUX("SPDIF SRC SEL", SND_SOC_NOPM, 0, 0,
34                          &aiu_spdif_encode_mux),
35 };
36
37 static const struct snd_soc_dapm_route aiu_cpu_dapm_routes[] = {
38         { "I2S Encoder Playback", NULL, "I2S FIFO Playback" },
39         { "SPDIF SRC SEL", "SPDIF", "SPDIF FIFO Playback" },
40         { "SPDIF SRC SEL", "I2S", "I2S FIFO Playback" },
41         { "SPDIF Encoder Playback", NULL, "SPDIF SRC SEL" },
42 };
43
44 int aiu_of_xlate_dai_name(struct snd_soc_component *component,
45                           const struct of_phandle_args *args,
46                           const char **dai_name,
47                           unsigned int component_id)
48 {
49         struct snd_soc_dai *dai;
50         int id;
51
52         if (args->args_count != 2)
53                 return -EINVAL;
54
55         if (args->args[0] != component_id)
56                 return -EINVAL;
57
58         id = args->args[1];
59
60         if (id < 0 || id >= component->num_dai)
61                 return -EINVAL;
62
63         for_each_component_dais(component, dai) {
64                 if (id == 0)
65                         break;
66                 id--;
67         }
68
69         *dai_name = dai->driver->name;
70
71         return 0;
72 }
73
74 static int aiu_cpu_of_xlate_dai_name(struct snd_soc_component *component,
75                                      const struct of_phandle_args *args,
76                                      const char **dai_name)
77 {
78         return aiu_of_xlate_dai_name(component, args, dai_name, AIU_CPU);
79 }
80
81 static int aiu_cpu_component_probe(struct snd_soc_component *component)
82 {
83         struct aiu *aiu = snd_soc_component_get_drvdata(component);
84
85         /* Required for the SPDIF Source control operation */
86         return clk_prepare_enable(aiu->i2s.clks[PCLK].clk);
87 }
88
89 static void aiu_cpu_component_remove(struct snd_soc_component *component)
90 {
91         struct aiu *aiu = snd_soc_component_get_drvdata(component);
92
93         clk_disable_unprepare(aiu->i2s.clks[PCLK].clk);
94 }
95
96 static const struct snd_soc_component_driver aiu_cpu_component = {
97         .name                   = "AIU CPU",
98         .dapm_widgets           = aiu_cpu_dapm_widgets,
99         .num_dapm_widgets       = ARRAY_SIZE(aiu_cpu_dapm_widgets),
100         .dapm_routes            = aiu_cpu_dapm_routes,
101         .num_dapm_routes        = ARRAY_SIZE(aiu_cpu_dapm_routes),
102         .of_xlate_dai_name      = aiu_cpu_of_xlate_dai_name,
103         .pointer                = aiu_fifo_pointer,
104         .probe                  = aiu_cpu_component_probe,
105         .remove                 = aiu_cpu_component_remove,
106 };
107
108 static struct snd_soc_dai_driver aiu_cpu_dai_drv[] = {
109         [CPU_I2S_FIFO] = {
110                 .name = "I2S FIFO",
111                 .playback = {
112                         .stream_name    = "I2S FIFO Playback",
113                         .channels_min   = 2,
114                         .channels_max   = 8,
115                         .rates          = SNDRV_PCM_RATE_CONTINUOUS,
116                         .rate_min       = 5512,
117                         .rate_max       = 192000,
118                         .formats        = AIU_FORMATS,
119                 },
120                 .ops            = &aiu_fifo_i2s_dai_ops,
121                 .pcm_new        = aiu_fifo_pcm_new,
122                 .probe          = aiu_fifo_i2s_dai_probe,
123                 .remove         = aiu_fifo_dai_remove,
124         },
125         [CPU_SPDIF_FIFO] = {
126                 .name = "SPDIF FIFO",
127                 .playback = {
128                         .stream_name    = "SPDIF FIFO Playback",
129                         .channels_min   = 2,
130                         .channels_max   = 2,
131                         .rates          = SNDRV_PCM_RATE_CONTINUOUS,
132                         .rate_min       = 5512,
133                         .rate_max       = 192000,
134                         .formats        = AIU_FORMATS,
135                 },
136                 .ops            = &aiu_fifo_spdif_dai_ops,
137                 .pcm_new        = aiu_fifo_pcm_new,
138                 .probe          = aiu_fifo_spdif_dai_probe,
139                 .remove         = aiu_fifo_dai_remove,
140         },
141         [CPU_I2S_ENCODER] = {
142                 .name = "I2S Encoder",
143                 .playback = {
144                         .stream_name = "I2S Encoder Playback",
145                         .channels_min = 2,
146                         .channels_max = 8,
147                         .rates = SNDRV_PCM_RATE_8000_192000,
148                         .formats = AIU_FORMATS,
149                 },
150                 .ops = &aiu_encoder_i2s_dai_ops,
151         },
152         [CPU_SPDIF_ENCODER] = {
153                 .name = "SPDIF Encoder",
154                 .playback = {
155                         .stream_name = "SPDIF Encoder Playback",
156                         .channels_min = 2,
157                         .channels_max = 2,
158                         .rates = (SNDRV_PCM_RATE_32000  |
159                                   SNDRV_PCM_RATE_44100  |
160                                   SNDRV_PCM_RATE_48000  |
161                                   SNDRV_PCM_RATE_88200  |
162                                   SNDRV_PCM_RATE_96000  |
163                                   SNDRV_PCM_RATE_176400 |
164                                   SNDRV_PCM_RATE_192000),
165                         .formats = AIU_FORMATS,
166                 },
167                 .ops = &aiu_encoder_spdif_dai_ops,
168         }
169 };
170
171 static const struct regmap_config aiu_regmap_cfg = {
172         .reg_bits       = 32,
173         .val_bits       = 32,
174         .reg_stride     = 4,
175         .max_register   = 0x2ac,
176 };
177
178 static int aiu_clk_bulk_get(struct device *dev,
179                             const char * const *ids,
180                             unsigned int num,
181                             struct aiu_interface *interface)
182 {
183         struct clk_bulk_data *clks;
184         int i, ret;
185
186         clks = devm_kcalloc(dev, num, sizeof(*clks), GFP_KERNEL);
187         if (!clks)
188                 return -ENOMEM;
189
190         for (i = 0; i < num; i++)
191                 clks[i].id = ids[i];
192
193         ret = devm_clk_bulk_get(dev, num, clks);
194         if (ret < 0)
195                 return ret;
196
197         interface->clks = clks;
198         interface->clk_num = num;
199         return 0;
200 }
201
202 static const char * const aiu_i2s_ids[] = {
203         [PCLK]  = "i2s_pclk",
204         [AOCLK] = "i2s_aoclk",
205         [MCLK]  = "i2s_mclk",
206         [MIXER] = "i2s_mixer",
207 };
208
209 static const char * const aiu_spdif_ids[] = {
210         [PCLK]  = "spdif_pclk",
211         [AOCLK] = "spdif_aoclk",
212         [MCLK]  = "spdif_mclk_sel"
213 };
214
215 static int aiu_clk_get(struct device *dev)
216 {
217         struct aiu *aiu = dev_get_drvdata(dev);
218         int ret;
219
220         aiu->pclk = devm_clk_get(dev, "pclk");
221         if (IS_ERR(aiu->pclk))
222                 return dev_err_probe(dev, PTR_ERR(aiu->pclk), "Can't get the aiu pclk\n");
223
224         aiu->spdif_mclk = devm_clk_get(dev, "spdif_mclk");
225         if (IS_ERR(aiu->spdif_mclk))
226                 return dev_err_probe(dev, PTR_ERR(aiu->spdif_mclk),
227                                      "Can't get the aiu spdif master clock\n");
228
229         ret = aiu_clk_bulk_get(dev, aiu_i2s_ids, ARRAY_SIZE(aiu_i2s_ids),
230                                &aiu->i2s);
231         if (ret)
232                 return dev_err_probe(dev, ret, "Can't get the i2s clocks\n");
233
234         ret = aiu_clk_bulk_get(dev, aiu_spdif_ids, ARRAY_SIZE(aiu_spdif_ids),
235                                &aiu->spdif);
236         if (ret)
237                 return dev_err_probe(dev, ret, "Can't get the spdif clocks\n");
238
239         ret = clk_prepare_enable(aiu->pclk);
240         if (ret) {
241                 dev_err(dev, "peripheral clock enable failed\n");
242                 return ret;
243         }
244
245         ret = devm_add_action_or_reset(dev,
246                                        (void(*)(void *))clk_disable_unprepare,
247                                        aiu->pclk);
248         if (ret)
249                 dev_err(dev, "failed to add reset action on pclk");
250
251         return ret;
252 }
253
254 static int aiu_probe(struct platform_device *pdev)
255 {
256         struct device *dev = &pdev->dev;
257         void __iomem *regs;
258         struct regmap *map;
259         struct aiu *aiu;
260         int ret;
261
262         aiu = devm_kzalloc(dev, sizeof(*aiu), GFP_KERNEL);
263         if (!aiu)
264                 return -ENOMEM;
265
266         aiu->platform = device_get_match_data(dev);
267         if (!aiu->platform)
268                 return -ENODEV;
269
270         platform_set_drvdata(pdev, aiu);
271
272         ret = device_reset(dev);
273         if (ret)
274                 return dev_err_probe(dev, ret, "Failed to reset device\n");
275
276         regs = devm_platform_ioremap_resource(pdev, 0);
277         if (IS_ERR(regs))
278                 return PTR_ERR(regs);
279
280         map = devm_regmap_init_mmio(dev, regs, &aiu_regmap_cfg);
281         if (IS_ERR(map)) {
282                 dev_err(dev, "failed to init regmap: %ld\n",
283                         PTR_ERR(map));
284                 return PTR_ERR(map);
285         }
286
287         aiu->i2s.irq = platform_get_irq_byname(pdev, "i2s");
288         if (aiu->i2s.irq < 0)
289                 return aiu->i2s.irq;
290
291         aiu->spdif.irq = platform_get_irq_byname(pdev, "spdif");
292         if (aiu->spdif.irq < 0)
293                 return aiu->spdif.irq;
294
295         ret = aiu_clk_get(dev);
296         if (ret)
297                 return ret;
298
299         /* Register the cpu component of the aiu */
300         ret = snd_soc_register_component(dev, &aiu_cpu_component,
301                                          aiu_cpu_dai_drv,
302                                          ARRAY_SIZE(aiu_cpu_dai_drv));
303         if (ret) {
304                 dev_err(dev, "Failed to register cpu component\n");
305                 return ret;
306         }
307
308         /* Register the hdmi codec control component */
309         ret = aiu_hdmi_ctrl_register_component(dev);
310         if (ret) {
311                 dev_err(dev, "Failed to register hdmi control component\n");
312                 goto err;
313         }
314
315         /* Register the internal dac control component on gxl */
316         if (aiu->platform->has_acodec) {
317                 ret = aiu_acodec_ctrl_register_component(dev);
318                 if (ret) {
319                         dev_err(dev,
320                             "Failed to register acodec control component\n");
321                         goto err;
322                 }
323         }
324
325         return 0;
326 err:
327         snd_soc_unregister_component(dev);
328         return ret;
329 }
330
331 static int aiu_remove(struct platform_device *pdev)
332 {
333         snd_soc_unregister_component(&pdev->dev);
334
335         return 0;
336 }
337
338 static const struct aiu_platform_data aiu_gxbb_pdata = {
339         .has_acodec = false,
340         .has_clk_ctrl_more_i2s_div = true,
341 };
342
343 static const struct aiu_platform_data aiu_gxl_pdata = {
344         .has_acodec = true,
345         .has_clk_ctrl_more_i2s_div = true,
346 };
347
348 static const struct aiu_platform_data aiu_meson8_pdata = {
349         .has_acodec = false,
350         .has_clk_ctrl_more_i2s_div = false,
351 };
352
353 static const struct of_device_id aiu_of_match[] = {
354         { .compatible = "amlogic,aiu-gxbb", .data = &aiu_gxbb_pdata },
355         { .compatible = "amlogic,aiu-gxl", .data = &aiu_gxl_pdata },
356         { .compatible = "amlogic,aiu-meson8", .data = &aiu_meson8_pdata },
357         { .compatible = "amlogic,aiu-meson8b", .data = &aiu_meson8_pdata },
358         {}
359 };
360 MODULE_DEVICE_TABLE(of, aiu_of_match);
361
362 static struct platform_driver aiu_pdrv = {
363         .probe = aiu_probe,
364         .remove = aiu_remove,
365         .driver = {
366                 .name = "meson-aiu",
367                 .of_match_table = aiu_of_match,
368         },
369 };
370 module_platform_driver(aiu_pdrv);
371
372 MODULE_DESCRIPTION("Meson AIU Driver");
373 MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
374 MODULE_LICENSE("GPL v2");