1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (c) 2020 BayLibre, SAS.
4 // Author: Jerome Brunet <jbrunet@baylibre.com>
6 #include <linux/bitfield.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>
15 #include <dt-bindings/sound/meson-aiu.h>
19 #define AIU_I2S_MISC_958_SRC_SHIFT 3
21 static const char * const aiu_spdif_encode_sel_texts[] = {
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);
29 static const struct snd_kcontrol_new aiu_spdif_encode_mux =
30 SOC_DAPM_ENUM("SPDIF Buffer Src", aiu_spdif_encode_sel_enum);
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),
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" },
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)
49 struct snd_soc_dai *dai;
52 if (args->args_count != 2)
55 if (args->args[0] != component_id)
60 if (id < 0 || id >= component->num_dai)
63 for_each_component_dais(component, dai) {
69 *dai_name = dai->driver->name;
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)
78 return aiu_of_xlate_dai_name(component, args, dai_name, AIU_CPU);
81 static int aiu_cpu_component_probe(struct snd_soc_component *component)
83 struct aiu *aiu = snd_soc_component_get_drvdata(component);
85 /* Required for the SPDIF Source control operation */
86 return clk_prepare_enable(aiu->i2s.clks[PCLK].clk);
89 static void aiu_cpu_component_remove(struct snd_soc_component *component)
91 struct aiu *aiu = snd_soc_component_get_drvdata(component);
93 clk_disable_unprepare(aiu->i2s.clks[PCLK].clk);
96 static const struct snd_soc_component_driver aiu_cpu_component = {
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 #ifdef CONFIG_DEBUG_FS
107 .debugfs_prefix = "cpu",
111 static struct snd_soc_dai_driver aiu_cpu_dai_drv[] = {
115 .stream_name = "I2S FIFO Playback",
118 .rates = SNDRV_PCM_RATE_CONTINUOUS,
121 .formats = AIU_FORMATS,
123 .ops = &aiu_fifo_i2s_dai_ops,
124 .pcm_new = aiu_fifo_pcm_new,
125 .probe = aiu_fifo_i2s_dai_probe,
126 .remove = aiu_fifo_dai_remove,
129 .name = "SPDIF FIFO",
131 .stream_name = "SPDIF FIFO Playback",
134 .rates = SNDRV_PCM_RATE_CONTINUOUS,
137 .formats = AIU_FORMATS,
139 .ops = &aiu_fifo_spdif_dai_ops,
140 .pcm_new = aiu_fifo_pcm_new,
141 .probe = aiu_fifo_spdif_dai_probe,
142 .remove = aiu_fifo_dai_remove,
144 [CPU_I2S_ENCODER] = {
145 .name = "I2S Encoder",
147 .stream_name = "I2S Encoder Playback",
150 .rates = SNDRV_PCM_RATE_8000_192000,
151 .formats = AIU_FORMATS,
153 .ops = &aiu_encoder_i2s_dai_ops,
155 [CPU_SPDIF_ENCODER] = {
156 .name = "SPDIF Encoder",
158 .stream_name = "SPDIF Encoder Playback",
161 .rates = (SNDRV_PCM_RATE_32000 |
162 SNDRV_PCM_RATE_44100 |
163 SNDRV_PCM_RATE_48000 |
164 SNDRV_PCM_RATE_88200 |
165 SNDRV_PCM_RATE_96000 |
166 SNDRV_PCM_RATE_176400 |
167 SNDRV_PCM_RATE_192000),
168 .formats = AIU_FORMATS,
170 .ops = &aiu_encoder_spdif_dai_ops,
174 static const struct regmap_config aiu_regmap_cfg = {
178 .max_register = 0x2ac,
181 static int aiu_clk_bulk_get(struct device *dev,
182 const char * const *ids,
184 struct aiu_interface *interface)
186 struct clk_bulk_data *clks;
189 clks = devm_kcalloc(dev, num, sizeof(*clks), GFP_KERNEL);
193 for (i = 0; i < num; i++)
196 ret = devm_clk_bulk_get(dev, num, clks);
200 interface->clks = clks;
201 interface->clk_num = num;
205 static const char * const aiu_i2s_ids[] = {
207 [AOCLK] = "i2s_aoclk",
209 [MIXER] = "i2s_mixer",
212 static const char * const aiu_spdif_ids[] = {
213 [PCLK] = "spdif_pclk",
214 [AOCLK] = "spdif_aoclk",
215 [MCLK] = "spdif_mclk_sel"
218 static int aiu_clk_get(struct device *dev)
220 struct aiu *aiu = dev_get_drvdata(dev);
223 aiu->pclk = devm_clk_get(dev, "pclk");
224 if (IS_ERR(aiu->pclk))
225 return dev_err_probe(dev, PTR_ERR(aiu->pclk), "Can't get the aiu pclk\n");
227 aiu->spdif_mclk = devm_clk_get(dev, "spdif_mclk");
228 if (IS_ERR(aiu->spdif_mclk))
229 return dev_err_probe(dev, PTR_ERR(aiu->spdif_mclk),
230 "Can't get the aiu spdif master clock\n");
232 ret = aiu_clk_bulk_get(dev, aiu_i2s_ids, ARRAY_SIZE(aiu_i2s_ids),
235 return dev_err_probe(dev, ret, "Can't get the i2s clocks\n");
237 ret = aiu_clk_bulk_get(dev, aiu_spdif_ids, ARRAY_SIZE(aiu_spdif_ids),
240 return dev_err_probe(dev, ret, "Can't get the spdif clocks\n");
242 ret = clk_prepare_enable(aiu->pclk);
244 dev_err(dev, "peripheral clock enable failed\n");
248 ret = devm_add_action_or_reset(dev,
249 (void(*)(void *))clk_disable_unprepare,
252 dev_err(dev, "failed to add reset action on pclk");
257 static int aiu_probe(struct platform_device *pdev)
259 struct device *dev = &pdev->dev;
265 aiu = devm_kzalloc(dev, sizeof(*aiu), GFP_KERNEL);
269 aiu->platform = device_get_match_data(dev);
273 platform_set_drvdata(pdev, aiu);
275 ret = device_reset(dev);
277 return dev_err_probe(dev, ret, "Failed to reset device\n");
279 regs = devm_platform_ioremap_resource(pdev, 0);
281 return PTR_ERR(regs);
283 map = devm_regmap_init_mmio(dev, regs, &aiu_regmap_cfg);
285 dev_err(dev, "failed to init regmap: %ld\n",
290 aiu->i2s.irq = platform_get_irq_byname(pdev, "i2s");
291 if (aiu->i2s.irq < 0)
294 aiu->spdif.irq = platform_get_irq_byname(pdev, "spdif");
295 if (aiu->spdif.irq < 0)
296 return aiu->spdif.irq;
298 ret = aiu_clk_get(dev);
302 /* Register the cpu component of the aiu */
303 ret = snd_soc_register_component(dev, &aiu_cpu_component,
305 ARRAY_SIZE(aiu_cpu_dai_drv));
307 dev_err(dev, "Failed to register cpu component\n");
311 /* Register the hdmi codec control component */
312 ret = aiu_hdmi_ctrl_register_component(dev);
314 dev_err(dev, "Failed to register hdmi control component\n");
318 /* Register the internal dac control component on gxl */
319 if (aiu->platform->has_acodec) {
320 ret = aiu_acodec_ctrl_register_component(dev);
323 "Failed to register acodec control component\n");
330 snd_soc_unregister_component(dev);
334 static int aiu_remove(struct platform_device *pdev)
336 snd_soc_unregister_component(&pdev->dev);
341 static const struct aiu_platform_data aiu_gxbb_pdata = {
343 .has_clk_ctrl_more_i2s_div = true,
346 static const struct aiu_platform_data aiu_gxl_pdata = {
348 .has_clk_ctrl_more_i2s_div = true,
351 static const struct aiu_platform_data aiu_meson8_pdata = {
353 .has_clk_ctrl_more_i2s_div = false,
356 static const struct of_device_id aiu_of_match[] = {
357 { .compatible = "amlogic,aiu-gxbb", .data = &aiu_gxbb_pdata },
358 { .compatible = "amlogic,aiu-gxl", .data = &aiu_gxl_pdata },
359 { .compatible = "amlogic,aiu-meson8", .data = &aiu_meson8_pdata },
360 { .compatible = "amlogic,aiu-meson8b", .data = &aiu_meson8_pdata },
363 MODULE_DEVICE_TABLE(of, aiu_of_match);
365 static struct platform_driver aiu_pdrv = {
367 .remove = aiu_remove,
370 .of_match_table = aiu_of_match,
373 module_platform_driver(aiu_pdrv);
375 MODULE_DESCRIPTION("Meson AIU Driver");
376 MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
377 MODULE_LICENSE("GPL v2");