Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ASoC simple sound card support |
| 3 | * |
| 4 | * Copyright (C) 2012 Renesas Solutions Corp. |
| 5 | * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 11 | #include <linux/clk.h> |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 12 | #include <linux/device.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 13 | #include <linux/module.h> |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 14 | #include <linux/of.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 15 | #include <linux/platform_device.h> |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 16 | #include <linux/string.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 17 | #include <sound/simple_card.h> |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 18 | #include <sound/soc-dai.h> |
| 19 | #include <sound/soc.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 20 | |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 21 | struct simple_card_data { |
| 22 | struct snd_soc_card snd_card; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 23 | struct simple_dai_props { |
| 24 | struct asoc_simple_dai cpu_dai; |
| 25 | struct asoc_simple_dai codec_dai; |
| 26 | } *dai_props; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 27 | unsigned int mclk_fs; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 28 | struct snd_soc_dai_link dai_link[]; /* dynamically allocated */ |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 29 | }; |
| 30 | |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 31 | static int asoc_simple_card_hw_params(struct snd_pcm_substream *substream, |
| 32 | struct snd_pcm_hw_params *params) |
| 33 | { |
| 34 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 35 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 36 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
| 37 | unsigned int mclk; |
| 38 | int ret = 0; |
| 39 | |
| 40 | if (priv->mclk_fs) { |
| 41 | mclk = params_rate(params) * priv->mclk_fs; |
| 42 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk, |
| 43 | SND_SOC_CLOCK_IN); |
| 44 | } |
| 45 | |
| 46 | return ret; |
| 47 | } |
| 48 | |
| 49 | static struct snd_soc_ops asoc_simple_card_ops = { |
| 50 | .hw_params = asoc_simple_card_hw_params, |
| 51 | }; |
| 52 | |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 53 | static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai, |
Xiubo Li | 30d0341 | 2014-01-24 15:43:01 +0800 | [diff] [blame] | 54 | struct asoc_simple_dai *set) |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 55 | { |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 56 | int ret; |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 57 | |
Xiubo Li | 30d0341 | 2014-01-24 15:43:01 +0800 | [diff] [blame] | 58 | if (set->fmt) { |
| 59 | ret = snd_soc_dai_set_fmt(dai, set->fmt); |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 60 | if (ret && ret != -ENOTSUPP) { |
| 61 | dev_err(dai->dev, "simple-card: set_fmt error\n"); |
| 62 | goto err; |
| 63 | } |
Kuninori Morimoto | e244bb9 | 2013-10-17 22:46:49 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 66 | if (set->sysclk) { |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 67 | ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0); |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 68 | if (ret && ret != -ENOTSUPP) { |
| 69 | dev_err(dai->dev, "simple-card: set_sysclk error\n"); |
| 70 | goto err; |
| 71 | } |
| 72 | } |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 73 | |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 74 | if (set->slots) { |
| 75 | ret = snd_soc_dai_set_tdm_slot(dai, 0, 0, |
| 76 | set->slots, |
| 77 | set->slot_width); |
| 78 | if (ret && ret != -ENOTSUPP) { |
| 79 | dev_err(dai->dev, "simple-card: set_tdm_slot error\n"); |
| 80 | goto err; |
| 81 | } |
| 82 | } |
| 83 | |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 84 | ret = 0; |
| 85 | |
| 86 | err: |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 87 | return ret; |
| 88 | } |
| 89 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 90 | static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd) |
| 91 | { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 92 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 93 | struct snd_soc_dai *codec = rtd->codec_dai; |
| 94 | struct snd_soc_dai *cpu = rtd->cpu_dai; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 95 | struct simple_dai_props *dai_props; |
| 96 | int num, ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 97 | |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 98 | num = rtd - rtd->card->rtd; |
| 99 | dai_props = &priv->dai_props[num]; |
| 100 | ret = __asoc_simple_card_dai_init(codec, &dai_props->codec_dai); |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 101 | if (ret < 0) |
| 102 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 103 | |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 104 | ret = __asoc_simple_card_dai_init(cpu, &dai_props->cpu_dai); |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 105 | if (ret < 0) |
| 106 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 111 | static int |
| 112 | asoc_simple_card_sub_parse_of(struct device_node *np, |
| 113 | struct asoc_simple_dai *dai, |
Jean-Francois Moine | 5200847 | 2014-01-15 16:51:48 +0100 | [diff] [blame] | 114 | const struct device_node **p_node, |
| 115 | const char **name) |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 116 | { |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 117 | struct device_node *node; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 118 | struct clk *clk; |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame^] | 119 | u32 val; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 120 | int ret; |
| 121 | |
| 122 | /* |
| 123 | * get node via "sound-dai = <&phandle port>" |
| 124 | * it will be used as xxx_of_node on soc_bind_dai_link() |
| 125 | */ |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 126 | node = of_parse_phandle(np, "sound-dai", 0); |
| 127 | if (!node) |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 128 | return -ENODEV; |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 129 | *p_node = node; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 130 | |
| 131 | /* get dai->name */ |
Jean-Francois Moine | 5200847 | 2014-01-15 16:51:48 +0100 | [diff] [blame] | 132 | ret = snd_soc_of_get_dai_name(np, name); |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 133 | if (ret < 0) |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 134 | return ret; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 135 | |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 136 | /* parse TDM slot */ |
| 137 | ret = snd_soc_of_parse_tdm_slot(np, &dai->slots, &dai->slot_width); |
| 138 | if (ret) |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 139 | return ret; |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 140 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 141 | /* |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 142 | * dai->sysclk come from |
| 143 | * "clocks = <&xxx>" (if system has common clock) |
| 144 | * or "system-clock-frequency = <xxx>" |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 145 | * or device's module clock. |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 146 | */ |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 147 | if (of_property_read_bool(np, "clocks")) { |
| 148 | clk = of_clk_get(np, 0); |
| 149 | if (IS_ERR(clk)) { |
| 150 | ret = PTR_ERR(clk); |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 151 | return ret; |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | dai->sysclk = clk_get_rate(clk); |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame^] | 155 | } else if (!of_property_read_u32(np, "system-clock-frequency", &val)) { |
| 156 | dai->sysclk = val; |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 157 | } else { |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 158 | clk = of_clk_get(node, 0); |
Xiubo Li | e2a19ac | 2014-01-06 12:34:36 +0800 | [diff] [blame] | 159 | if (!IS_ERR(clk)) |
| 160 | dai->sysclk = clk_get_rate(clk); |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 161 | } |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 162 | |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 163 | return 0; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 164 | } |
| 165 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 166 | static int simple_card_dai_link_of(struct device_node *node, |
| 167 | struct device *dev, |
| 168 | struct snd_soc_dai_link *dai_link, |
Jyri Sarha | 6487221 | 2014-04-24 19:42:00 +0300 | [diff] [blame] | 169 | struct simple_dai_props *dai_props, |
| 170 | bool is_top_level_node) |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 171 | { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 172 | struct device_node *np = NULL; |
| 173 | struct device_node *bitclkmaster = NULL; |
| 174 | struct device_node *framemaster = NULL; |
| 175 | unsigned int daifmt; |
| 176 | char *name; |
| 177 | char prop[128]; |
| 178 | char *prefix = ""; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 179 | int ret; |
| 180 | |
Jyri Sarha | 6487221 | 2014-04-24 19:42:00 +0300 | [diff] [blame] | 181 | if (is_top_level_node) |
| 182 | prefix = "simple-audio-card,"; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 183 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 184 | daifmt = snd_soc_of_parse_daifmt(node, prefix, |
| 185 | &bitclkmaster, &framemaster); |
| 186 | daifmt &= ~SND_SOC_DAIFMT_MASTER_MASK; |
| 187 | |
| 188 | snprintf(prop, sizeof(prop), "%scpu", prefix); |
| 189 | np = of_get_child_by_name(node, prop); |
| 190 | if (!np) { |
| 191 | ret = -EINVAL; |
Nicolin Chen | 966b806 | 2014-04-24 19:13:59 +0800 | [diff] [blame] | 192 | dev_err(dev, "%s: Can't find %s DT node\n", __func__, prop); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 193 | goto dai_link_of_err; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 194 | } |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 195 | |
| 196 | ret = asoc_simple_card_sub_parse_of(np, &dai_props->cpu_dai, |
| 197 | &dai_link->cpu_of_node, |
| 198 | &dai_link->cpu_dai_name); |
| 199 | if (ret < 0) |
| 200 | goto dai_link_of_err; |
| 201 | |
| 202 | dai_props->cpu_dai.fmt = daifmt; |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 203 | switch (((np == bitclkmaster) << 4) | (np == framemaster)) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 204 | case 0x11: |
| 205 | dai_props->cpu_dai.fmt |= SND_SOC_DAIFMT_CBS_CFS; |
| 206 | break; |
| 207 | case 0x10: |
| 208 | dai_props->cpu_dai.fmt |= SND_SOC_DAIFMT_CBS_CFM; |
| 209 | break; |
| 210 | case 0x01: |
| 211 | dai_props->cpu_dai.fmt |= SND_SOC_DAIFMT_CBM_CFS; |
| 212 | break; |
| 213 | default: |
| 214 | dai_props->cpu_dai.fmt |= SND_SOC_DAIFMT_CBM_CFM; |
| 215 | break; |
| 216 | } |
| 217 | |
| 218 | of_node_put(np); |
| 219 | snprintf(prop, sizeof(prop), "%scodec", prefix); |
| 220 | np = of_get_child_by_name(node, prop); |
| 221 | if (!np) { |
| 222 | ret = -EINVAL; |
Nicolin Chen | 966b806 | 2014-04-24 19:13:59 +0800 | [diff] [blame] | 223 | dev_err(dev, "%s: Can't find %s DT node\n", __func__, prop); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 224 | goto dai_link_of_err; |
| 225 | } |
| 226 | |
| 227 | ret = asoc_simple_card_sub_parse_of(np, &dai_props->codec_dai, |
| 228 | &dai_link->codec_of_node, |
| 229 | &dai_link->codec_dai_name); |
| 230 | if (ret < 0) |
| 231 | goto dai_link_of_err; |
| 232 | |
| 233 | if (strlen(prefix) && !bitclkmaster && !framemaster) { |
| 234 | /* No dai-link level and master setting was not found from |
| 235 | sound node level, revert back to legacy DT parsing and |
| 236 | take the settings from codec node. */ |
| 237 | dev_dbg(dev, "%s: Revert to legacy daifmt parsing\n", |
| 238 | __func__); |
| 239 | dai_props->cpu_dai.fmt = dai_props->codec_dai.fmt = |
| 240 | snd_soc_of_parse_daifmt(np, NULL, NULL, NULL) | |
| 241 | (daifmt & ~SND_SOC_DAIFMT_CLOCK_MASK); |
| 242 | } else { |
| 243 | dai_props->codec_dai.fmt = daifmt; |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 244 | switch (((np == bitclkmaster) << 4) | (np == framemaster)) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 245 | case 0x11: |
| 246 | dai_props->codec_dai.fmt |= SND_SOC_DAIFMT_CBM_CFM; |
| 247 | break; |
| 248 | case 0x10: |
| 249 | dai_props->codec_dai.fmt |= SND_SOC_DAIFMT_CBM_CFS; |
| 250 | break; |
| 251 | case 0x01: |
| 252 | dai_props->codec_dai.fmt |= SND_SOC_DAIFMT_CBS_CFM; |
| 253 | break; |
| 254 | default: |
| 255 | dai_props->codec_dai.fmt |= SND_SOC_DAIFMT_CBS_CFS; |
| 256 | break; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name) { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 261 | ret = -EINVAL; |
| 262 | goto dai_link_of_err; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /* simple-card assumes platform == cpu */ |
| 266 | dai_link->platform_of_node = dai_link->cpu_of_node; |
| 267 | |
| 268 | /* Link name is created from CPU/CODEC dai name */ |
| 269 | name = devm_kzalloc(dev, |
| 270 | strlen(dai_link->cpu_dai_name) + |
| 271 | strlen(dai_link->codec_dai_name) + 2, |
| 272 | GFP_KERNEL); |
| 273 | sprintf(name, "%s-%s", dai_link->cpu_dai_name, |
| 274 | dai_link->codec_dai_name); |
| 275 | dai_link->name = dai_link->stream_name = name; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 276 | dai_link->ops = &asoc_simple_card_ops; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 277 | |
| 278 | dev_dbg(dev, "\tname : %s\n", dai_link->stream_name); |
| 279 | dev_dbg(dev, "\tcpu : %s / %04x / %d\n", |
| 280 | dai_link->cpu_dai_name, |
| 281 | dai_props->cpu_dai.fmt, |
| 282 | dai_props->cpu_dai.sysclk); |
| 283 | dev_dbg(dev, "\tcodec : %s / %04x / %d\n", |
| 284 | dai_link->codec_dai_name, |
| 285 | dai_props->codec_dai.fmt, |
| 286 | dai_props->codec_dai.sysclk); |
| 287 | |
| 288 | dai_link_of_err: |
| 289 | if (np) |
| 290 | of_node_put(np); |
| 291 | if (bitclkmaster) |
| 292 | of_node_put(bitclkmaster); |
| 293 | if (framemaster) |
| 294 | of_node_put(framemaster); |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 295 | return ret; |
| 296 | } |
| 297 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 298 | static int asoc_simple_card_parse_of(struct device_node *node, |
Jean-Francois Moine | b367a32 | 2014-01-15 16:52:00 +0100 | [diff] [blame] | 299 | struct simple_card_data *priv, |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 300 | struct device *dev, |
| 301 | int multi) |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 302 | { |
Jean-Francois Moine | b367a32 | 2014-01-15 16:52:00 +0100 | [diff] [blame] | 303 | struct snd_soc_dai_link *dai_link = priv->snd_card.dai_link; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 304 | struct simple_dai_props *dai_props = priv->dai_props; |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame^] | 305 | u32 val; |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 306 | int ret; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 307 | |
Xiubo Li | 2772555 | 2014-01-24 15:43:02 +0800 | [diff] [blame] | 308 | /* parsing the card name from DT */ |
| 309 | snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name"); |
| 310 | |
Xiubo Li | 9d681f5 | 2014-02-08 15:59:53 +0800 | [diff] [blame] | 311 | /* off-codec widgets */ |
| 312 | if (of_property_read_bool(node, "simple-audio-card,widgets")) { |
| 313 | ret = snd_soc_of_parse_audio_simple_widgets(&priv->snd_card, |
| 314 | "simple-audio-card,widgets"); |
| 315 | if (ret) |
| 316 | return ret; |
| 317 | } |
| 318 | |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 319 | /* DAPM routes */ |
Xiubo Li | 8c0b823 | 2014-01-07 09:15:16 +0800 | [diff] [blame] | 320 | if (of_property_read_bool(node, "simple-audio-card,routing")) { |
Jean-Francois Moine | b367a32 | 2014-01-15 16:52:00 +0100 | [diff] [blame] | 321 | ret = snd_soc_of_parse_audio_routing(&priv->snd_card, |
Xiubo Li | 8c0b823 | 2014-01-07 09:15:16 +0800 | [diff] [blame] | 322 | "simple-audio-card,routing"); |
Xiubo Li | f87a3e8 | 2014-01-07 09:13:42 +0800 | [diff] [blame] | 323 | if (ret) |
| 324 | return ret; |
| 325 | } |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 326 | |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 327 | /* Factor to mclk, used in hw_params() */ |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame^] | 328 | ret = of_property_read_u32(node, "simple-audio-card,mclk-fs", &val); |
| 329 | if (ret == 0) |
| 330 | priv->mclk_fs = val; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 331 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 332 | dev_dbg(dev, "New simple-card: %s\n", priv->snd_card.name ? |
| 333 | priv->snd_card.name : ""); |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 334 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 335 | if (multi) { |
| 336 | struct device_node *np = NULL; |
| 337 | int i; |
| 338 | for (i = 0; (np = of_get_next_child(node, np)); i++) { |
| 339 | dev_dbg(dev, "\tlink %d:\n", i); |
| 340 | ret = simple_card_dai_link_of(np, dev, dai_link + i, |
Jyri Sarha | 6487221 | 2014-04-24 19:42:00 +0300 | [diff] [blame] | 341 | dai_props + i, false); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 342 | if (ret < 0) { |
| 343 | of_node_put(np); |
| 344 | return ret; |
| 345 | } |
| 346 | } |
| 347 | } else { |
Jyri Sarha | 6487221 | 2014-04-24 19:42:00 +0300 | [diff] [blame] | 348 | ret = simple_card_dai_link_of(node, dev, dai_link, dai_props, |
| 349 | true); |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 350 | if (ret < 0) |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 351 | return ret; |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 352 | } |
Xiubo Li | dd41e0c | 2013-12-20 14:39:50 +0800 | [diff] [blame] | 353 | |
Xiubo Li | 2772555 | 2014-01-24 15:43:02 +0800 | [diff] [blame] | 354 | if (!priv->snd_card.name) |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 355 | priv->snd_card.name = priv->snd_card.dai_link->name; |
Kuninori Morimoto | f687d90 | 2014-02-27 18:25:24 -0800 | [diff] [blame] | 356 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 357 | return 0; |
| 358 | } |
| 359 | |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 360 | /* update the reference count of the devices nodes at end of probe */ |
| 361 | static int asoc_simple_card_unref(struct platform_device *pdev) |
| 362 | { |
| 363 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 364 | struct snd_soc_dai_link *dai_link; |
| 365 | struct device_node *np; |
| 366 | int num_links; |
| 367 | |
| 368 | for (num_links = 0, dai_link = card->dai_link; |
| 369 | num_links < card->num_links; |
| 370 | num_links++, dai_link++) { |
| 371 | np = (struct device_node *) dai_link->cpu_of_node; |
| 372 | if (np) |
| 373 | of_node_put(np); |
| 374 | np = (struct device_node *) dai_link->codec_of_node; |
| 375 | if (np) |
| 376 | of_node_put(np); |
| 377 | } |
| 378 | return 0; |
| 379 | } |
| 380 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 381 | static int asoc_simple_card_probe(struct platform_device *pdev) |
| 382 | { |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 383 | struct simple_card_data *priv; |
Jean-Francois Moine | 5ca8ba4 | 2014-01-15 16:51:45 +0100 | [diff] [blame] | 384 | struct snd_soc_dai_link *dai_link; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 385 | struct device_node *np = pdev->dev.of_node; |
Kuninori Morimoto | f89983e | 2012-12-25 22:52:33 -0800 | [diff] [blame] | 386 | struct device *dev = &pdev->dev; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 387 | int num_links, multi, ret; |
| 388 | |
| 389 | /* get the number of DAI links */ |
| 390 | if (np && of_get_child_by_name(np, "simple-audio-card,dai-link")) { |
| 391 | num_links = of_get_child_count(np); |
| 392 | multi = 1; |
| 393 | } else { |
| 394 | num_links = 1; |
| 395 | multi = 0; |
| 396 | } |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 397 | |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 398 | /* allocate the private data and the DAI link array */ |
| 399 | priv = devm_kzalloc(dev, |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 400 | sizeof(*priv) + sizeof(*dai_link) * num_links, |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 401 | GFP_KERNEL); |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 402 | if (!priv) |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 403 | return -ENOMEM; |
| 404 | |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 405 | /* |
| 406 | * init snd_soc_card |
| 407 | */ |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 408 | priv->snd_card.owner = THIS_MODULE; |
| 409 | priv->snd_card.dev = dev; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 410 | dai_link = priv->dai_link; |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 411 | priv->snd_card.dai_link = dai_link; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 412 | priv->snd_card.num_links = num_links; |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 413 | |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 414 | /* get room for the other properties */ |
| 415 | priv->dai_props = devm_kzalloc(dev, |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 416 | sizeof(*priv->dai_props) * num_links, |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 417 | GFP_KERNEL); |
| 418 | if (!priv->dai_props) |
| 419 | return -ENOMEM; |
| 420 | |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 421 | if (np && of_device_is_available(np)) { |
| 422 | |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 423 | ret = asoc_simple_card_parse_of(np, priv, dev, multi); |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 424 | if (ret < 0) { |
| 425 | if (ret != -EPROBE_DEFER) |
| 426 | dev_err(dev, "parse error %d\n", ret); |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 427 | goto err; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 428 | } |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 429 | |
| 430 | /* |
| 431 | * soc_bind_dai_link() will check cpu name |
| 432 | * after of_node matching if dai_link has cpu_dai_name. |
| 433 | * but, it will never match if name was created by fmt_single_name() |
| 434 | * remove cpu_dai_name to escape name matching. |
| 435 | * see |
| 436 | * fmt_single_name() |
| 437 | * fmt_multiple_name() |
| 438 | */ |
| 439 | if (num_links == 1) |
| 440 | dai_link->cpu_dai_name = NULL; |
| 441 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 442 | } else { |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 443 | struct asoc_simple_card_info *cinfo; |
| 444 | |
| 445 | cinfo = dev->platform_data; |
| 446 | if (!cinfo) { |
Xiubo Li | 34787d0a | 2014-01-09 17:49:40 +0800 | [diff] [blame] | 447 | dev_err(dev, "no info for asoc-simple-card\n"); |
| 448 | return -EINVAL; |
| 449 | } |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 450 | |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 451 | if (!cinfo->name || |
| 452 | !cinfo->codec_dai.name || |
| 453 | !cinfo->codec || |
| 454 | !cinfo->platform || |
Jean-Francois Moine | 7722f83 | 2014-01-15 16:51:33 +0100 | [diff] [blame] | 455 | !cinfo->cpu_dai.name) { |
| 456 | dev_err(dev, "insufficient asoc_simple_card_info settings\n"); |
| 457 | return -EINVAL; |
| 458 | } |
Jean-Francois Moine | 2bee991 | 2014-01-15 16:51:37 +0100 | [diff] [blame] | 459 | |
Kuninori Morimoto | 12ffa6f | 2014-03-09 19:37:56 -0700 | [diff] [blame] | 460 | priv->snd_card.name = (cinfo->card) ? cinfo->card : cinfo->name; |
Jean-Francois Moine | 5ca8ba4 | 2014-01-15 16:51:45 +0100 | [diff] [blame] | 461 | dai_link->name = cinfo->name; |
| 462 | dai_link->stream_name = cinfo->name; |
| 463 | dai_link->platform_name = cinfo->platform; |
| 464 | dai_link->codec_name = cinfo->codec; |
Jean-Francois Moine | 5200847 | 2014-01-15 16:51:48 +0100 | [diff] [blame] | 465 | dai_link->cpu_dai_name = cinfo->cpu_dai.name; |
| 466 | dai_link->codec_dai_name = cinfo->codec_dai.name; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 467 | memcpy(&priv->dai_props->cpu_dai, &cinfo->cpu_dai, |
| 468 | sizeof(priv->dai_props->cpu_dai)); |
| 469 | memcpy(&priv->dai_props->codec_dai, &cinfo->codec_dai, |
| 470 | sizeof(priv->dai_props->codec_dai)); |
Kuninori Morimoto | 81985bd | 2014-03-02 20:32:43 -0800 | [diff] [blame] | 471 | |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 472 | priv->dai_props->cpu_dai.fmt |= cinfo->daifmt; |
| 473 | priv->dai_props->codec_dai.fmt |= cinfo->daifmt; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | /* |
| 477 | * init snd_soc_dai_link |
| 478 | */ |
Jean-Francois Moine | 5ca8ba4 | 2014-01-15 16:51:45 +0100 | [diff] [blame] | 479 | dai_link->init = asoc_simple_card_dai_init; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 480 | |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 481 | snd_soc_card_set_drvdata(&priv->snd_card, priv); |
Xiubo Li | ba194a4 | 2014-01-13 17:08:08 +0800 | [diff] [blame] | 482 | |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 483 | ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card); |
| 484 | |
| 485 | err: |
| 486 | asoc_simple_card_unref(pdev); |
| 487 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 488 | } |
| 489 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 490 | static const struct of_device_id asoc_simple_of_match[] = { |
| 491 | { .compatible = "simple-audio-card", }, |
| 492 | {}, |
| 493 | }; |
| 494 | MODULE_DEVICE_TABLE(of, asoc_simple_of_match); |
| 495 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 496 | static struct platform_driver asoc_simple_card = { |
| 497 | .driver = { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 498 | .name = "asoc-simple-card", |
Fabio Estevam | c445be3 | 2013-08-23 14:35:17 -0300 | [diff] [blame] | 499 | .owner = THIS_MODULE, |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 500 | .of_match_table = asoc_simple_of_match, |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 501 | }, |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 502 | .probe = asoc_simple_card_probe, |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 503 | }; |
| 504 | |
| 505 | module_platform_driver(asoc_simple_card); |
| 506 | |
Fabio Estevam | c445be3 | 2013-08-23 14:35:17 -0300 | [diff] [blame] | 507 | MODULE_ALIAS("platform:asoc-simple-card"); |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 508 | MODULE_LICENSE("GPL"); |
| 509 | MODULE_DESCRIPTION("ASoC Simple Sound Card"); |
| 510 | MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); |