hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/sound/soc/qcom/common.c
....@@ -14,9 +14,13 @@
1414 struct device *dev = card->dev;
1515 struct snd_soc_dai_link *link;
1616 struct of_phandle_args args;
17
+ struct snd_soc_dai_link_component *dlc;
1718 int ret, num_links;
1819
1920 ret = snd_soc_of_parse_card_name(card, "model");
21
+ if (ret == 0 && !card->name)
22
+ /* Deprecated, only for compatibility with old device trees */
23
+ ret = snd_soc_of_parse_card_name(card, "qcom,model");
2024 if (ret) {
2125 dev_err(dev, "Error parsing card name: %d\n", ret);
2226 return ret;
....@@ -24,29 +28,57 @@
2428
2529 /* DAPM routes */
2630 if (of_property_read_bool(dev->of_node, "audio-routing")) {
27
- ret = snd_soc_of_parse_audio_routing(card,
28
- "audio-routing");
31
+ ret = snd_soc_of_parse_audio_routing(card, "audio-routing");
2932 if (ret)
3033 return ret;
3134 }
35
+ /* Deprecated, only for compatibility with old device trees */
36
+ if (of_property_read_bool(dev->of_node, "qcom,audio-routing")) {
37
+ ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
38
+ if (ret)
39
+ return ret;
40
+ }
41
+
42
+ ret = snd_soc_of_parse_aux_devs(card, "aux-devs");
43
+ if (ret)
44
+ return ret;
3245
3346 /* Populate links */
3447 num_links = of_get_child_count(dev->of_node);
3548
3649 /* Allocate the DAI link array */
37
- card->dai_link = kcalloc(num_links, sizeof(*link), GFP_KERNEL);
50
+ card->dai_link = devm_kcalloc(dev, num_links, sizeof(*link), GFP_KERNEL);
3851 if (!card->dai_link)
3952 return -ENOMEM;
4053
4154 card->num_links = num_links;
4255 link = card->dai_link;
56
+
4357 for_each_child_of_node(dev->of_node, np) {
58
+ dlc = devm_kzalloc(dev, 2 * sizeof(*dlc), GFP_KERNEL);
59
+ if (!dlc) {
60
+ ret = -ENOMEM;
61
+ goto err_put_np;
62
+ }
63
+
64
+ link->cpus = &dlc[0];
65
+ link->platforms = &dlc[1];
66
+
67
+ link->num_cpus = 1;
68
+ link->num_platforms = 1;
69
+
70
+ ret = of_property_read_string(np, "link-name", &link->name);
71
+ if (ret) {
72
+ dev_err(card->dev, "error getting codec dai_link name\n");
73
+ goto err_put_np;
74
+ }
75
+
4476 cpu = of_get_child_by_name(np, "cpu");
4577 platform = of_get_child_by_name(np, "platform");
4678 codec = of_get_child_by_name(np, "codec");
4779
4880 if (!cpu) {
49
- dev_err(dev, "Can't find cpu DT node\n");
81
+ dev_err(dev, "%s: Can't find cpu DT node\n", link->name);
5082 ret = -EINVAL;
5183 goto err;
5284 }
....@@ -54,51 +86,70 @@
5486 ret = of_parse_phandle_with_args(cpu, "sound-dai",
5587 "#sound-dai-cells", 0, &args);
5688 if (ret) {
57
- dev_err(card->dev, "error getting cpu phandle\n");
89
+ dev_err(card->dev, "%s: error getting cpu phandle\n", link->name);
5890 goto err;
5991 }
60
- link->cpu_of_node = args.np;
92
+ link->cpus->of_node = args.np;
6193 link->id = args.args[0];
6294
63
- ret = snd_soc_of_get_dai_name(cpu, &link->cpu_dai_name);
95
+ ret = snd_soc_of_get_dai_name(cpu, &link->cpus->dai_name);
6496 if (ret) {
65
- dev_err(card->dev, "error getting cpu dai name\n");
97
+ if (ret != -EPROBE_DEFER)
98
+ dev_err(card->dev, "%s: error getting cpu dai name: %d\n",
99
+ link->name, ret);
66100 goto err;
67101 }
68102
69
- if (codec && platform) {
70
- link->platform_of_node = of_parse_phandle(platform,
103
+ if (platform) {
104
+ link->platforms->of_node = of_parse_phandle(platform,
71105 "sound-dai",
72106 0);
73
- if (!link->platform_of_node) {
74
- dev_err(card->dev, "platform dai not found\n");
107
+ if (!link->platforms->of_node) {
108
+ dev_err(card->dev, "%s: platform dai not found\n", link->name);
75109 ret = -EINVAL;
76110 goto err;
77111 }
112
+ } else {
113
+ link->platforms->of_node = link->cpus->of_node;
114
+ }
78115
116
+ if (codec) {
79117 ret = snd_soc_of_get_dai_link_codecs(dev, codec, link);
80118 if (ret < 0) {
81
- dev_err(card->dev, "codec dai not found\n");
119
+ if (ret != -EPROBE_DEFER)
120
+ dev_err(card->dev, "%s: codec dai not found: %d\n",
121
+ link->name, ret);
82122 goto err;
83123 }
84
- link->no_pcm = 1;
85
- link->ignore_pmdown_time = 1;
124
+
125
+ if (platform) {
126
+ /* DPCM backend */
127
+ link->no_pcm = 1;
128
+ link->ignore_pmdown_time = 1;
129
+ }
86130 } else {
87
- link->platform_of_node = link->cpu_of_node;
88
- link->codec_dai_name = "snd-soc-dummy-dai";
89
- link->codec_name = "snd-soc-dummy";
131
+ /* DPCM frontend */
132
+ dlc = devm_kzalloc(dev, sizeof(*dlc), GFP_KERNEL);
133
+ if (!dlc) {
134
+ ret = -ENOMEM;
135
+ goto err;
136
+ }
137
+
138
+ link->codecs = dlc;
139
+ link->num_codecs = 1;
140
+
141
+ link->codecs->dai_name = "snd-soc-dummy-dai";
142
+ link->codecs->name = "snd-soc-dummy";
90143 link->dynamic = 1;
91144 }
92145
93
- link->ignore_suspend = 1;
94
- ret = of_property_read_string(np, "link-name", &link->name);
95
- if (ret) {
96
- dev_err(card->dev, "error getting codec dai_link name\n");
97
- goto err;
146
+ if (platform || !codec) {
147
+ /* DPCM */
148
+ snd_soc_dai_link_set_capabilities(link);
149
+ link->ignore_suspend = 1;
150
+ link->nonatomic = 1;
98151 }
99152
100
- link->dpcm_playback = 1;
101
- link->dpcm_capture = 1;
102153 link->stream_name = link->name;
103154 link++;
104155
....@@ -109,11 +160,11 @@
109160
110161 return 0;
111162 err:
112
- of_node_put(np);
113163 of_node_put(cpu);
114164 of_node_put(codec);
115165 of_node_put(platform);
116
- kfree(card->dai_link);
166
+err_put_np:
167
+ of_node_put(np);
117168 return ret;
118169 }
119170 EXPORT_SYMBOL(qcom_snd_parse_of);