Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * ASoC audio graph sound card support |
| 3 | * |
| 4 | * Copyright (C) 2016 Renesas Solutions Corp. |
| 5 | * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
| 6 | * |
| 7 | * based on ${LINUX}/sound/soc/generic/simple-card.c |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | #include <linux/clk.h> |
| 14 | #include <linux/device.h> |
| 15 | #include <linux/gpio.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/of.h> |
| 18 | #include <linux/of_device.h> |
| 19 | #include <linux/of_gpio.h> |
| 20 | #include <linux/of_graph.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <sound/jack.h> |
| 24 | #include <sound/simple_card_utils.h> |
| 25 | |
| 26 | struct graph_card_data { |
| 27 | struct snd_soc_card snd_card; |
| 28 | struct graph_dai_props { |
| 29 | struct asoc_simple_dai cpu_dai; |
| 30 | struct asoc_simple_dai codec_dai; |
| 31 | } *dai_props; |
| 32 | struct snd_soc_dai_link *dai_link; |
| 33 | }; |
| 34 | |
| 35 | #define graph_priv_to_card(priv) (&(priv)->snd_card) |
| 36 | #define graph_priv_to_props(priv, i) ((priv)->dai_props + (i)) |
| 37 | #define graph_priv_to_dev(priv) (graph_priv_to_card(priv)->dev) |
| 38 | #define graph_priv_to_link(priv, i) (graph_priv_to_card(priv)->dai_link + (i)) |
| 39 | |
| 40 | static int asoc_graph_card_startup(struct snd_pcm_substream *substream) |
| 41 | { |
| 42 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 43 | struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
| 44 | struct graph_dai_props *dai_props = graph_priv_to_props(priv, rtd->num); |
| 45 | int ret; |
| 46 | |
Kuninori Morimoto | d471d55 | 2017-06-09 00:45:23 +0000 | [diff] [blame] | 47 | ret = asoc_simple_card_clk_enable(&dai_props->cpu_dai); |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 48 | if (ret) |
| 49 | return ret; |
| 50 | |
Kuninori Morimoto | d471d55 | 2017-06-09 00:45:23 +0000 | [diff] [blame] | 51 | ret = asoc_simple_card_clk_enable(&dai_props->codec_dai); |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 52 | if (ret) |
Kuninori Morimoto | d471d55 | 2017-06-09 00:45:23 +0000 | [diff] [blame] | 53 | asoc_simple_card_clk_disable(&dai_props->cpu_dai); |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 54 | |
| 55 | return ret; |
| 56 | } |
| 57 | |
| 58 | static void asoc_graph_card_shutdown(struct snd_pcm_substream *substream) |
| 59 | { |
| 60 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 61 | struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
| 62 | struct graph_dai_props *dai_props = graph_priv_to_props(priv, rtd->num); |
| 63 | |
Kuninori Morimoto | d471d55 | 2017-06-09 00:45:23 +0000 | [diff] [blame] | 64 | asoc_simple_card_clk_disable(&dai_props->cpu_dai); |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 65 | |
Kuninori Morimoto | d471d55 | 2017-06-09 00:45:23 +0000 | [diff] [blame] | 66 | asoc_simple_card_clk_disable(&dai_props->codec_dai); |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | static struct snd_soc_ops asoc_graph_card_ops = { |
| 70 | .startup = asoc_graph_card_startup, |
| 71 | .shutdown = asoc_graph_card_shutdown, |
| 72 | }; |
| 73 | |
| 74 | static int asoc_graph_card_dai_init(struct snd_soc_pcm_runtime *rtd) |
| 75 | { |
| 76 | struct graph_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
| 77 | struct snd_soc_dai *codec = rtd->codec_dai; |
| 78 | struct snd_soc_dai *cpu = rtd->cpu_dai; |
| 79 | struct graph_dai_props *dai_props = |
| 80 | graph_priv_to_props(priv, rtd->num); |
| 81 | int ret; |
| 82 | |
| 83 | ret = asoc_simple_card_init_dai(codec, &dai_props->codec_dai); |
| 84 | if (ret < 0) |
| 85 | return ret; |
| 86 | |
| 87 | ret = asoc_simple_card_init_dai(cpu, &dai_props->cpu_dai); |
| 88 | if (ret < 0) |
| 89 | return ret; |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | static int asoc_graph_card_dai_link_of(struct device_node *cpu_port, |
| 95 | struct graph_card_data *priv, |
| 96 | int idx) |
| 97 | { |
| 98 | struct device *dev = graph_priv_to_dev(priv); |
| 99 | struct snd_soc_dai_link *dai_link = graph_priv_to_link(priv, idx); |
| 100 | struct graph_dai_props *dai_props = graph_priv_to_props(priv, idx); |
| 101 | struct asoc_simple_dai *cpu_dai = &dai_props->cpu_dai; |
| 102 | struct asoc_simple_dai *codec_dai = &dai_props->codec_dai; |
| 103 | struct snd_soc_card *card = graph_priv_to_card(priv); |
| 104 | struct device_node *cpu_ep = of_get_next_child(cpu_port, NULL); |
| 105 | struct device_node *codec_ep = of_graph_get_remote_endpoint(cpu_ep); |
| 106 | struct device_node *rcpu_ep = of_graph_get_remote_endpoint(codec_ep); |
| 107 | int ret; |
| 108 | |
| 109 | if (rcpu_ep != cpu_ep) { |
Colin Ian King | a619f04 | 2017-05-18 08:48:15 +0100 | [diff] [blame] | 110 | dev_err(dev, "remote-endpoint mismatch (%s/%s/%s)\n", |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 111 | cpu_ep->name, codec_ep->name, rcpu_ep->name); |
| 112 | ret = -EINVAL; |
| 113 | goto dai_link_of_err; |
| 114 | } |
| 115 | |
| 116 | ret = asoc_simple_card_parse_daifmt(dev, cpu_ep, codec_ep, |
| 117 | NULL, &dai_link->dai_fmt); |
| 118 | if (ret < 0) |
| 119 | goto dai_link_of_err; |
| 120 | |
| 121 | /* |
| 122 | * we need to consider "mclk-fs" around here |
| 123 | * see simple-card |
| 124 | */ |
| 125 | |
| 126 | ret = asoc_simple_card_parse_graph_cpu(cpu_ep, dai_link); |
| 127 | if (ret < 0) |
| 128 | goto dai_link_of_err; |
| 129 | |
| 130 | ret = asoc_simple_card_parse_graph_codec(codec_ep, dai_link); |
| 131 | if (ret < 0) |
| 132 | goto dai_link_of_err; |
| 133 | |
Kuninori Morimoto | c98907d | 2017-06-14 00:35:30 +0000 | [diff] [blame^] | 134 | ret = asoc_simple_card_of_parse_tdm(cpu_ep, cpu_dai); |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 135 | if (ret < 0) |
| 136 | goto dai_link_of_err; |
| 137 | |
Kuninori Morimoto | c98907d | 2017-06-14 00:35:30 +0000 | [diff] [blame^] | 138 | ret = asoc_simple_card_of_parse_tdm(codec_ep, codec_dai); |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 139 | if (ret < 0) |
| 140 | goto dai_link_of_err; |
| 141 | |
| 142 | ret = asoc_simple_card_parse_clk_cpu(dev, cpu_ep, dai_link, cpu_dai); |
| 143 | if (ret < 0) |
| 144 | goto dai_link_of_err; |
| 145 | |
| 146 | ret = asoc_simple_card_parse_clk_codec(dev, codec_ep, dai_link, codec_dai); |
| 147 | if (ret < 0) |
| 148 | goto dai_link_of_err; |
| 149 | |
| 150 | ret = asoc_simple_card_canonicalize_dailink(dai_link); |
| 151 | if (ret < 0) |
| 152 | goto dai_link_of_err; |
| 153 | |
| 154 | ret = asoc_simple_card_set_dailink_name(dev, dai_link, |
| 155 | "%s-%s", |
| 156 | dai_link->cpu_dai_name, |
| 157 | dai_link->codec_dai_name); |
| 158 | if (ret < 0) |
| 159 | goto dai_link_of_err; |
| 160 | |
| 161 | dai_link->ops = &asoc_graph_card_ops; |
| 162 | dai_link->init = asoc_graph_card_dai_init; |
| 163 | |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 164 | asoc_simple_card_canonicalize_cpu(dai_link, |
| 165 | card->num_links == 1); |
| 166 | |
| 167 | dai_link_of_err: |
| 168 | of_node_put(cpu_ep); |
| 169 | of_node_put(rcpu_ep); |
| 170 | of_node_put(codec_ep); |
| 171 | |
| 172 | return ret; |
| 173 | } |
| 174 | |
| 175 | static int asoc_graph_card_parse_of(struct graph_card_data *priv) |
| 176 | { |
| 177 | struct of_phandle_iterator it; |
| 178 | struct device *dev = graph_priv_to_dev(priv); |
| 179 | struct snd_soc_card *card = graph_priv_to_card(priv); |
| 180 | struct device_node *node = dev->of_node; |
| 181 | int rc, idx = 0; |
| 182 | int ret; |
| 183 | |
| 184 | /* |
| 185 | * we need to consider "widgets", "routing", "mclk-fs" around here |
| 186 | * see simple-card |
| 187 | */ |
| 188 | |
| 189 | of_for_each_phandle(&it, rc, node, "dais", NULL, 0) { |
| 190 | ret = asoc_graph_card_dai_link_of(it.node, priv, idx++); |
| 191 | of_node_put(it.node); |
| 192 | if (ret < 0) |
| 193 | return ret; |
| 194 | } |
| 195 | |
| 196 | return asoc_simple_card_parse_card_name(card, NULL); |
| 197 | } |
| 198 | |
| 199 | static int asoc_graph_get_dais_count(struct device *dev) |
| 200 | { |
| 201 | struct of_phandle_iterator it; |
| 202 | struct device_node *node = dev->of_node; |
| 203 | int count = 0; |
| 204 | int rc; |
| 205 | |
| 206 | of_for_each_phandle(&it, rc, node, "dais", NULL, 0) { |
| 207 | count++; |
| 208 | of_node_put(it.node); |
| 209 | } |
| 210 | |
| 211 | return count; |
| 212 | } |
| 213 | |
| 214 | static int asoc_graph_card_probe(struct platform_device *pdev) |
| 215 | { |
| 216 | struct graph_card_data *priv; |
| 217 | struct snd_soc_dai_link *dai_link; |
| 218 | struct graph_dai_props *dai_props; |
| 219 | struct device *dev = &pdev->dev; |
| 220 | struct snd_soc_card *card; |
| 221 | int num, ret; |
| 222 | |
| 223 | /* Allocate the private data and the DAI link array */ |
| 224 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |
| 225 | if (!priv) |
| 226 | return -ENOMEM; |
| 227 | |
| 228 | num = asoc_graph_get_dais_count(dev); |
| 229 | if (num == 0) |
| 230 | return -EINVAL; |
| 231 | |
| 232 | dai_props = devm_kzalloc(dev, sizeof(*dai_props) * num, GFP_KERNEL); |
| 233 | dai_link = devm_kzalloc(dev, sizeof(*dai_link) * num, GFP_KERNEL); |
| 234 | if (!dai_props || !dai_link) |
| 235 | return -ENOMEM; |
| 236 | |
| 237 | priv->dai_props = dai_props; |
| 238 | priv->dai_link = dai_link; |
| 239 | |
| 240 | /* Init snd_soc_card */ |
| 241 | card = graph_priv_to_card(priv); |
| 242 | card->owner = THIS_MODULE; |
| 243 | card->dev = dev; |
| 244 | card->dai_link = dai_link; |
| 245 | card->num_links = num; |
| 246 | |
| 247 | ret = asoc_graph_card_parse_of(priv); |
| 248 | if (ret < 0) { |
| 249 | if (ret != -EPROBE_DEFER) |
| 250 | dev_err(dev, "parse error %d\n", ret); |
| 251 | goto err; |
| 252 | } |
| 253 | |
| 254 | snd_soc_card_set_drvdata(card, priv); |
| 255 | |
| 256 | ret = devm_snd_soc_register_card(dev, card); |
Kuninori Morimoto | ecea931 | 2017-05-19 00:58:00 +0000 | [diff] [blame] | 257 | if (ret < 0) |
| 258 | goto err; |
| 259 | |
| 260 | return 0; |
Kuninori Morimoto | 2692c1c | 2017-04-20 01:36:08 +0000 | [diff] [blame] | 261 | err: |
| 262 | asoc_simple_card_clean_reference(card); |
| 263 | |
| 264 | return ret; |
| 265 | } |
| 266 | |
| 267 | static int asoc_graph_card_remove(struct platform_device *pdev) |
| 268 | { |
| 269 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 270 | |
| 271 | return asoc_simple_card_clean_reference(card); |
| 272 | } |
| 273 | |
| 274 | static const struct of_device_id asoc_graph_of_match[] = { |
| 275 | { .compatible = "audio-graph-card", }, |
| 276 | {}, |
| 277 | }; |
| 278 | MODULE_DEVICE_TABLE(of, asoc_graph_of_match); |
| 279 | |
| 280 | static struct platform_driver asoc_graph_card = { |
| 281 | .driver = { |
| 282 | .name = "asoc-audio-graph-card", |
| 283 | .of_match_table = asoc_graph_of_match, |
| 284 | }, |
| 285 | .probe = asoc_graph_card_probe, |
| 286 | .remove = asoc_graph_card_remove, |
| 287 | }; |
| 288 | module_platform_driver(asoc_graph_card); |
| 289 | |
| 290 | MODULE_ALIAS("platform:asoc-audio-graph-card"); |
| 291 | MODULE_LICENSE("GPL v2"); |
| 292 | MODULE_DESCRIPTION("ASoC Audio Graph Sound Card"); |
| 293 | MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); |