]> Pileus Git - ~andy/linux/blob - sound/soc/fsl/imx-spdif.c
Merge remote-tracking branch 'asoc/topic/dt' into asoc-next
[~andy/linux] / sound / soc / fsl / imx-spdif.c
1 /*
2  * Copyright (C) 2013 Freescale Semiconductor, Inc.
3  *
4  * The code contained herein is licensed under the GNU General Public
5  * License. You may obtain a copy of the GNU General Public License
6  * Version 2 or later at the following locations:
7  *
8  * http://www.opensource.org/licenses/gpl-license.html
9  * http://www.gnu.org/copyleft/gpl.html
10  */
11
12 #include <linux/module.h>
13 #include <linux/of_platform.h>
14 #include <sound/soc.h>
15
16 struct imx_spdif_data {
17         struct snd_soc_dai_link dai;
18         struct snd_soc_card card;
19 };
20
21 static int imx_spdif_audio_probe(struct platform_device *pdev)
22 {
23         struct device_node *spdif_np, *np = pdev->dev.of_node;
24         struct imx_spdif_data *data;
25         int ret = 0;
26
27         spdif_np = of_parse_phandle(np, "spdif-controller", 0);
28         if (!spdif_np) {
29                 dev_err(&pdev->dev, "failed to find spdif-controller\n");
30                 ret = -EINVAL;
31                 goto end;
32         }
33
34         data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
35         if (!data) {
36                 dev_err(&pdev->dev, "failed to allocate memory\n");
37                 ret = -ENOMEM;
38                 goto end;
39         }
40
41         data->dai.name = "S/PDIF PCM";
42         data->dai.stream_name = "S/PDIF PCM";
43         data->dai.codec_dai_name = "snd-soc-dummy-dai";
44         data->dai.codec_name = "snd-soc-dummy";
45         data->dai.cpu_of_node = spdif_np;
46         data->dai.platform_of_node = spdif_np;
47         data->dai.playback_only = true;
48         data->dai.capture_only = true;
49
50         if (of_property_read_bool(np, "spdif-out"))
51                 data->dai.capture_only = false;
52
53         if (of_property_read_bool(np, "spdif-in"))
54                 data->dai.playback_only = false;
55
56         if (data->dai.playback_only && data->dai.capture_only) {
57                 dev_err(&pdev->dev, "no enabled S/PDIF DAI link\n");
58                 goto end;
59         }
60
61         data->card.dev = &pdev->dev;
62         data->card.dai_link = &data->dai;
63         data->card.num_links = 1;
64
65         ret = snd_soc_of_parse_card_name(&data->card, "model");
66         if (ret)
67                 goto end;
68
69         ret = devm_snd_soc_register_card(&pdev->dev, &data->card);
70         if (ret) {
71                 dev_err(&pdev->dev, "snd_soc_register_card failed: %d\n", ret);
72                 goto end;
73         }
74
75         platform_set_drvdata(pdev, data);
76
77 end:
78         if (spdif_np)
79                 of_node_put(spdif_np);
80
81         return ret;
82 }
83
84 static const struct of_device_id imx_spdif_dt_ids[] = {
85         { .compatible = "fsl,imx-audio-spdif", },
86         { /* sentinel */ }
87 };
88 MODULE_DEVICE_TABLE(of, imx_spdif_dt_ids);
89
90 static struct platform_driver imx_spdif_driver = {
91         .driver = {
92                 .name = "imx-spdif",
93                 .owner = THIS_MODULE,
94                 .of_match_table = imx_spdif_dt_ids,
95         },
96         .probe = imx_spdif_audio_probe,
97 };
98
99 module_platform_driver(imx_spdif_driver);
100
101 MODULE_AUTHOR("Freescale Semiconductor, Inc.");
102 MODULE_DESCRIPTION("Freescale i.MX S/PDIF machine driver");
103 MODULE_LICENSE("GPL v2");
104 MODULE_ALIAS("platform:imx-spdif");