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> |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 13 | #include <linux/gpio.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 15 | #include <linux/of.h> |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 16 | #include <linux/of_gpio.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 18 | #include <linux/string.h> |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 19 | #include <sound/jack.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 20 | #include <sound/simple_card.h> |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 21 | #include <sound/soc-dai.h> |
| 22 | #include <sound/soc.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 23 | |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 24 | struct simple_card_data { |
| 25 | struct snd_soc_card snd_card; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 26 | struct simple_dai_props { |
| 27 | struct asoc_simple_dai cpu_dai; |
| 28 | struct asoc_simple_dai codec_dai; |
| 29 | } *dai_props; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 30 | unsigned int mclk_fs; |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 31 | int gpio_hp_det; |
Jianqun | 4476159 | 2014-11-01 11:22:18 +0800 | [diff] [blame] | 32 | int gpio_hp_det_invert; |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 33 | int gpio_mic_det; |
Jianqun | 4476159 | 2014-11-01 11:22:18 +0800 | [diff] [blame] | 34 | int gpio_mic_det_invert; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 35 | struct snd_soc_dai_link dai_link[]; /* dynamically allocated */ |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 36 | }; |
| 37 | |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 38 | #define simple_priv_to_dev(priv) ((priv)->snd_card.dev) |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 39 | #define simple_priv_to_link(priv, i) ((priv)->snd_card.dai_link + i) |
| 40 | #define simple_priv_to_props(priv, i) ((priv)->dai_props + i) |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 41 | |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 42 | static int asoc_simple_card_hw_params(struct snd_pcm_substream *substream, |
| 43 | struct snd_pcm_hw_params *params) |
| 44 | { |
| 45 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 46 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 47 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
| 48 | unsigned int mclk; |
| 49 | int ret = 0; |
| 50 | |
| 51 | if (priv->mclk_fs) { |
| 52 | mclk = params_rate(params) * priv->mclk_fs; |
| 53 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk, |
| 54 | SND_SOC_CLOCK_IN); |
| 55 | } |
| 56 | |
| 57 | return ret; |
| 58 | } |
| 59 | |
| 60 | static struct snd_soc_ops asoc_simple_card_ops = { |
| 61 | .hw_params = asoc_simple_card_hw_params, |
| 62 | }; |
| 63 | |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 64 | static struct snd_soc_jack simple_card_hp_jack; |
| 65 | static struct snd_soc_jack_pin simple_card_hp_jack_pins[] = { |
| 66 | { |
| 67 | .pin = "Headphones", |
| 68 | .mask = SND_JACK_HEADPHONE, |
| 69 | }, |
| 70 | }; |
| 71 | static struct snd_soc_jack_gpio simple_card_hp_jack_gpio = { |
| 72 | .name = "Headphone detection", |
| 73 | .report = SND_JACK_HEADPHONE, |
| 74 | .debounce_time = 150, |
| 75 | }; |
| 76 | |
| 77 | static struct snd_soc_jack simple_card_mic_jack; |
| 78 | static struct snd_soc_jack_pin simple_card_mic_jack_pins[] = { |
| 79 | { |
| 80 | .pin = "Mic Jack", |
| 81 | .mask = SND_JACK_MICROPHONE, |
| 82 | }, |
| 83 | }; |
| 84 | static struct snd_soc_jack_gpio simple_card_mic_jack_gpio = { |
| 85 | .name = "Mic detection", |
| 86 | .report = SND_JACK_MICROPHONE, |
| 87 | .debounce_time = 150, |
| 88 | }; |
| 89 | |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 90 | static int __asoc_simple_card_dai_init(struct snd_soc_dai *dai, |
Xiubo Li | 30d0341 | 2014-01-24 15:43:01 +0800 | [diff] [blame] | 91 | struct asoc_simple_dai *set) |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 92 | { |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 93 | int ret; |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 94 | |
Xiubo Li | 30d0341 | 2014-01-24 15:43:01 +0800 | [diff] [blame] | 95 | if (set->fmt) { |
| 96 | ret = snd_soc_dai_set_fmt(dai, set->fmt); |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 97 | if (ret && ret != -ENOTSUPP) { |
| 98 | dev_err(dai->dev, "simple-card: set_fmt error\n"); |
| 99 | goto err; |
| 100 | } |
Kuninori Morimoto | e244bb9 | 2013-10-17 22:46:49 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 103 | if (set->sysclk) { |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 104 | ret = snd_soc_dai_set_sysclk(dai, 0, set->sysclk, 0); |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 105 | if (ret && ret != -ENOTSUPP) { |
| 106 | dev_err(dai->dev, "simple-card: set_sysclk error\n"); |
| 107 | goto err; |
| 108 | } |
| 109 | } |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 110 | |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 111 | if (set->slots) { |
| 112 | ret = snd_soc_dai_set_tdm_slot(dai, 0, 0, |
| 113 | set->slots, |
| 114 | set->slot_width); |
| 115 | if (ret && ret != -ENOTSUPP) { |
| 116 | dev_err(dai->dev, "simple-card: set_tdm_slot error\n"); |
| 117 | goto err; |
| 118 | } |
| 119 | } |
| 120 | |
Xiubo Li | 4763ebe | 2014-01-24 15:43:00 +0800 | [diff] [blame] | 121 | ret = 0; |
| 122 | |
| 123 | err: |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 124 | return ret; |
| 125 | } |
| 126 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 127 | static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd) |
| 128 | { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 129 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 130 | struct snd_soc_dai *codec = rtd->codec_dai; |
| 131 | struct snd_soc_dai *cpu = rtd->cpu_dai; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 132 | struct simple_dai_props *dai_props; |
| 133 | int num, ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 134 | |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 135 | num = rtd - rtd->card->rtd; |
| 136 | dai_props = &priv->dai_props[num]; |
| 137 | ret = __asoc_simple_card_dai_init(codec, &dai_props->codec_dai); |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 138 | if (ret < 0) |
| 139 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 140 | |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 141 | ret = __asoc_simple_card_dai_init(cpu, &dai_props->cpu_dai); |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 142 | if (ret < 0) |
| 143 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 144 | |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 145 | if (gpio_is_valid(priv->gpio_hp_det)) { |
| 146 | snd_soc_jack_new(codec->codec, "Headphones", SND_JACK_HEADPHONE, |
| 147 | &simple_card_hp_jack); |
| 148 | snd_soc_jack_add_pins(&simple_card_hp_jack, |
| 149 | ARRAY_SIZE(simple_card_hp_jack_pins), |
| 150 | simple_card_hp_jack_pins); |
| 151 | |
| 152 | simple_card_hp_jack_gpio.gpio = priv->gpio_hp_det; |
Jianqun | 4476159 | 2014-11-01 11:22:18 +0800 | [diff] [blame] | 153 | simple_card_hp_jack_gpio.invert = priv->gpio_hp_det_invert; |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 154 | snd_soc_jack_add_gpios(&simple_card_hp_jack, 1, |
| 155 | &simple_card_hp_jack_gpio); |
| 156 | } |
| 157 | |
| 158 | if (gpio_is_valid(priv->gpio_mic_det)) { |
| 159 | snd_soc_jack_new(codec->codec, "Mic Jack", SND_JACK_MICROPHONE, |
| 160 | &simple_card_mic_jack); |
| 161 | snd_soc_jack_add_pins(&simple_card_mic_jack, |
| 162 | ARRAY_SIZE(simple_card_mic_jack_pins), |
| 163 | simple_card_mic_jack_pins); |
| 164 | simple_card_mic_jack_gpio.gpio = priv->gpio_mic_det; |
Jianqun | 4476159 | 2014-11-01 11:22:18 +0800 | [diff] [blame] | 165 | simple_card_mic_jack_gpio.invert = priv->gpio_mic_det_invert; |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 166 | snd_soc_jack_add_gpios(&simple_card_mic_jack, 1, |
| 167 | &simple_card_mic_jack_gpio); |
| 168 | } |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 169 | return 0; |
| 170 | } |
| 171 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 172 | static int |
| 173 | asoc_simple_card_sub_parse_of(struct device_node *np, |
| 174 | struct asoc_simple_dai *dai, |
Xiubo Li | 8ea2134 | 2014-08-18 15:00:15 +0800 | [diff] [blame] | 175 | struct device_node **p_node, |
Kuninori Morimoto | 7c7b9cf | 2014-09-02 04:05:30 -0700 | [diff] [blame] | 176 | const char **name, |
| 177 | int *args_count) |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 178 | { |
Kuninori Morimoto | 7c7b9cf | 2014-09-02 04:05:30 -0700 | [diff] [blame] | 179 | struct of_phandle_args args; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 180 | struct clk *clk; |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame] | 181 | u32 val; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 182 | int ret; |
| 183 | |
| 184 | /* |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 185 | * Get node via "sound-dai = <&phandle port>" |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 186 | * it will be used as xxx_of_node on soc_bind_dai_link() |
| 187 | */ |
Kuninori Morimoto | 7c7b9cf | 2014-09-02 04:05:30 -0700 | [diff] [blame] | 188 | ret = of_parse_phandle_with_args(np, "sound-dai", |
| 189 | "#sound-dai-cells", 0, &args); |
| 190 | if (ret) |
| 191 | return ret; |
| 192 | |
| 193 | *p_node = args.np; |
| 194 | |
| 195 | if (args_count) |
| 196 | *args_count = args.args_count; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 197 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 198 | /* Get dai->name */ |
Jean-Francois Moine | 5200847 | 2014-01-15 16:51:48 +0100 | [diff] [blame] | 199 | ret = snd_soc_of_get_dai_name(np, name); |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 200 | if (ret < 0) |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 201 | return ret; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 202 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 203 | /* Parse TDM slot */ |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 204 | ret = snd_soc_of_parse_tdm_slot(np, &dai->slots, &dai->slot_width); |
| 205 | if (ret) |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 206 | return ret; |
Xiubo Li | 6ff62ee | 2014-02-14 09:34:36 +0800 | [diff] [blame] | 207 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 208 | /* |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 209 | * Parse dai->sysclk come from "clocks = <&xxx>" |
| 210 | * (if system has common clock) |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 211 | * or "system-clock-frequency = <xxx>" |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 212 | * or device's module clock. |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 213 | */ |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 214 | if (of_property_read_bool(np, "clocks")) { |
| 215 | clk = of_clk_get(np, 0); |
| 216 | if (IS_ERR(clk)) { |
| 217 | ret = PTR_ERR(clk); |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 218 | return ret; |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | dai->sysclk = clk_get_rate(clk); |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame] | 222 | } else if (!of_property_read_u32(np, "system-clock-frequency", &val)) { |
| 223 | dai->sysclk = val; |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 224 | } else { |
Arnd Bergmann | 88a60e5 | 2014-09-08 13:14:05 +0200 | [diff] [blame] | 225 | clk = of_clk_get(args.np, 0); |
Xiubo Li | e2a19ac | 2014-01-06 12:34:36 +0800 | [diff] [blame] | 226 | if (!IS_ERR(clk)) |
| 227 | dai->sysclk = clk_get_rate(clk); |
Xiubo Li | 71467e4 | 2013-12-23 15:25:38 +0800 | [diff] [blame] | 228 | } |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 229 | |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 230 | return 0; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 231 | } |
| 232 | |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 233 | static int asoc_simple_card_parse_daifmt(struct device_node *node, |
| 234 | struct simple_card_data *priv, |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 235 | struct device_node *codec, |
| 236 | char *prefix, int idx) |
| 237 | { |
| 238 | struct device *dev = simple_priv_to_dev(priv); |
| 239 | struct device_node *bitclkmaster = NULL; |
| 240 | struct device_node *framemaster = NULL; |
| 241 | struct simple_dai_props *dai_props = simple_priv_to_props(priv, idx); |
| 242 | struct asoc_simple_dai *cpu_dai = &dai_props->cpu_dai; |
| 243 | struct asoc_simple_dai *codec_dai = &dai_props->codec_dai; |
| 244 | unsigned int daifmt; |
| 245 | |
| 246 | daifmt = snd_soc_of_parse_daifmt(node, prefix, |
| 247 | &bitclkmaster, &framemaster); |
| 248 | daifmt &= ~SND_SOC_DAIFMT_MASTER_MASK; |
| 249 | |
| 250 | if (strlen(prefix) && !bitclkmaster && !framemaster) { |
| 251 | /* |
| 252 | * No dai-link level and master setting was not found from |
| 253 | * sound node level, revert back to legacy DT parsing and |
| 254 | * take the settings from codec node. |
| 255 | */ |
| 256 | dev_dbg(dev, "Revert to legacy daifmt parsing\n"); |
| 257 | |
| 258 | cpu_dai->fmt = codec_dai->fmt = |
| 259 | snd_soc_of_parse_daifmt(codec, NULL, NULL, NULL) | |
| 260 | (daifmt & ~SND_SOC_DAIFMT_CLOCK_MASK); |
| 261 | } else { |
| 262 | if (codec == bitclkmaster) |
| 263 | daifmt |= (codec == framemaster) ? |
| 264 | SND_SOC_DAIFMT_CBM_CFM : SND_SOC_DAIFMT_CBM_CFS; |
| 265 | else |
| 266 | daifmt |= (codec == framemaster) ? |
| 267 | SND_SOC_DAIFMT_CBS_CFM : SND_SOC_DAIFMT_CBS_CFS; |
| 268 | |
| 269 | cpu_dai->fmt = daifmt; |
| 270 | codec_dai->fmt = daifmt; |
| 271 | } |
| 272 | |
| 273 | of_node_put(bitclkmaster); |
| 274 | of_node_put(framemaster); |
| 275 | |
| 276 | return 0; |
| 277 | } |
| 278 | |
Kuninori Morimoto | 2d82eeb | 2014-08-27 20:07:46 -0700 | [diff] [blame] | 279 | static int asoc_simple_card_dai_link_of(struct device_node *node, |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 280 | struct simple_card_data *priv, |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 281 | int idx, |
Kuninori Morimoto | 2d82eeb | 2014-08-27 20:07:46 -0700 | [diff] [blame] | 282 | bool is_top_level_node) |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 283 | { |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 284 | struct device *dev = simple_priv_to_dev(priv); |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 285 | struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx); |
| 286 | struct simple_dai_props *dai_props = simple_priv_to_props(priv, idx); |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 287 | struct device_node *cpu = NULL; |
| 288 | struct device_node *codec = NULL; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 289 | char *name; |
| 290 | char prop[128]; |
| 291 | char *prefix = ""; |
Kuninori Morimoto | 7c7b9cf | 2014-09-02 04:05:30 -0700 | [diff] [blame] | 292 | int ret, cpu_args; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 293 | |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 294 | /* For single DAI link & old style of DT node */ |
Jyri Sarha | 6487221 | 2014-04-24 19:42:00 +0300 | [diff] [blame] | 295 | if (is_top_level_node) |
| 296 | prefix = "simple-audio-card,"; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 297 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 298 | snprintf(prop, sizeof(prop), "%scpu", prefix); |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 299 | cpu = of_get_child_by_name(node, prop); |
| 300 | |
| 301 | snprintf(prop, sizeof(prop), "%scodec", prefix); |
| 302 | codec = of_get_child_by_name(node, prop); |
| 303 | |
| 304 | if (!cpu || !codec) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 305 | ret = -EINVAL; |
Nicolin Chen | 966b806 | 2014-04-24 19:13:59 +0800 | [diff] [blame] | 306 | 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] | 307 | goto dai_link_of_err; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 308 | } |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 309 | |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 310 | ret = asoc_simple_card_parse_daifmt(node, priv, |
Jean-Francois Moine | 7195d92 | 2014-11-25 13:22:45 +0100 | [diff] [blame] | 311 | codec, prefix, idx); |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 312 | if (ret < 0) |
| 313 | goto dai_link_of_err; |
| 314 | |
| 315 | ret = asoc_simple_card_sub_parse_of(cpu, &dai_props->cpu_dai, |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 316 | &dai_link->cpu_of_node, |
Kuninori Morimoto | 7c7b9cf | 2014-09-02 04:05:30 -0700 | [diff] [blame] | 317 | &dai_link->cpu_dai_name, |
| 318 | &cpu_args); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 319 | if (ret < 0) |
| 320 | goto dai_link_of_err; |
| 321 | |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 322 | ret = asoc_simple_card_sub_parse_of(codec, &dai_props->codec_dai, |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 323 | &dai_link->codec_of_node, |
Kuninori Morimoto | 7c7b9cf | 2014-09-02 04:05:30 -0700 | [diff] [blame] | 324 | &dai_link->codec_dai_name, NULL); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 325 | if (ret < 0) |
| 326 | goto dai_link_of_err; |
| 327 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 328 | if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name) { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 329 | ret = -EINVAL; |
| 330 | goto dai_link_of_err; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 331 | } |
| 332 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 333 | /* Simple Card assumes platform == cpu */ |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 334 | dai_link->platform_of_node = dai_link->cpu_of_node; |
| 335 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 336 | /* DAI link name is created from CPU/CODEC dai name */ |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 337 | name = devm_kzalloc(dev, |
| 338 | strlen(dai_link->cpu_dai_name) + |
| 339 | strlen(dai_link->codec_dai_name) + 2, |
| 340 | GFP_KERNEL); |
| 341 | sprintf(name, "%s-%s", dai_link->cpu_dai_name, |
| 342 | dai_link->codec_dai_name); |
| 343 | dai_link->name = dai_link->stream_name = name; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 344 | dai_link->ops = &asoc_simple_card_ops; |
Kuninori Morimoto | a5960bd | 2014-08-27 20:08:27 -0700 | [diff] [blame] | 345 | dai_link->init = asoc_simple_card_dai_init; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 346 | |
| 347 | dev_dbg(dev, "\tname : %s\n", dai_link->stream_name); |
| 348 | dev_dbg(dev, "\tcpu : %s / %04x / %d\n", |
| 349 | dai_link->cpu_dai_name, |
| 350 | dai_props->cpu_dai.fmt, |
| 351 | dai_props->cpu_dai.sysclk); |
| 352 | dev_dbg(dev, "\tcodec : %s / %04x / %d\n", |
| 353 | dai_link->codec_dai_name, |
| 354 | dai_props->codec_dai.fmt, |
| 355 | dai_props->codec_dai.sysclk); |
| 356 | |
Kuninori Morimoto | 179949b | 2014-08-27 20:08:06 -0700 | [diff] [blame] | 357 | /* |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 358 | * In soc_bind_dai_link() will check cpu name after |
| 359 | * of_node matching if dai_link has cpu_dai_name. |
| 360 | * but, it will never match if name was created by |
| 361 | * fmt_single_name() remove cpu_dai_name if cpu_args |
| 362 | * was 0. See: |
Kuninori Morimoto | 179949b | 2014-08-27 20:08:06 -0700 | [diff] [blame] | 363 | * fmt_single_name() |
| 364 | * fmt_multiple_name() |
| 365 | */ |
Kuninori Morimoto | 7c7b9cf | 2014-09-02 04:05:30 -0700 | [diff] [blame] | 366 | if (!cpu_args) |
| 367 | dai_link->cpu_dai_name = NULL; |
Kuninori Morimoto | 179949b | 2014-08-27 20:08:06 -0700 | [diff] [blame] | 368 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 369 | dai_link_of_err: |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 370 | of_node_put(cpu); |
| 371 | of_node_put(codec); |
| 372 | |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 373 | return ret; |
| 374 | } |
| 375 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 376 | static int asoc_simple_card_parse_of(struct device_node *node, |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 377 | struct simple_card_data *priv) |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 378 | { |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 379 | struct device *dev = simple_priv_to_dev(priv); |
Jianqun | 4476159 | 2014-11-01 11:22:18 +0800 | [diff] [blame] | 380 | enum of_gpio_flags flags; |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame] | 381 | u32 val; |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 382 | int ret; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 383 | |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 384 | if (!node) |
| 385 | return -EINVAL; |
| 386 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 387 | /* Parse the card name from DT */ |
Xiubo Li | 2772555 | 2014-01-24 15:43:02 +0800 | [diff] [blame] | 388 | snd_soc_of_parse_card_name(&priv->snd_card, "simple-audio-card,name"); |
| 389 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 390 | /* The off-codec widgets */ |
Xiubo Li | 9d681f5 | 2014-02-08 15:59:53 +0800 | [diff] [blame] | 391 | if (of_property_read_bool(node, "simple-audio-card,widgets")) { |
| 392 | ret = snd_soc_of_parse_audio_simple_widgets(&priv->snd_card, |
| 393 | "simple-audio-card,widgets"); |
| 394 | if (ret) |
| 395 | return ret; |
| 396 | } |
| 397 | |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 398 | /* DAPM routes */ |
Xiubo Li | 8c0b823 | 2014-01-07 09:15:16 +0800 | [diff] [blame] | 399 | if (of_property_read_bool(node, "simple-audio-card,routing")) { |
Jean-Francois Moine | b367a32 | 2014-01-15 16:52:00 +0100 | [diff] [blame] | 400 | ret = snd_soc_of_parse_audio_routing(&priv->snd_card, |
Xiubo Li | 8c0b823 | 2014-01-07 09:15:16 +0800 | [diff] [blame] | 401 | "simple-audio-card,routing"); |
Xiubo Li | f87a3e8 | 2014-01-07 09:13:42 +0800 | [diff] [blame] | 402 | if (ret) |
| 403 | return ret; |
| 404 | } |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 405 | |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 406 | /* Factor to mclk, used in hw_params() */ |
Jyri Sarha | c7099eb | 2014-06-13 13:04:36 +0300 | [diff] [blame] | 407 | ret = of_property_read_u32(node, "simple-audio-card,mclk-fs", &val); |
| 408 | if (ret == 0) |
| 409 | priv->mclk_fs = val; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 410 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 411 | dev_dbg(dev, "New simple-card: %s\n", priv->snd_card.name ? |
| 412 | priv->snd_card.name : ""); |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 413 | |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 414 | /* Single/Muti DAI link(s) & New style of DT node */ |
| 415 | if (of_get_child_by_name(node, "simple-audio-card,dai-link")) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 416 | struct device_node *np = NULL; |
Kuninori Morimoto | a44a750 | 2014-08-27 20:08:47 -0700 | [diff] [blame] | 417 | int i = 0; |
| 418 | |
| 419 | for_each_child_of_node(node, np) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 420 | dev_dbg(dev, "\tlink %d:\n", i); |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 421 | ret = asoc_simple_card_dai_link_of(np, priv, |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 422 | i, false); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 423 | if (ret < 0) { |
| 424 | of_node_put(np); |
| 425 | return ret; |
| 426 | } |
Kuninori Morimoto | a44a750 | 2014-08-27 20:08:47 -0700 | [diff] [blame] | 427 | i++; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 428 | } |
| 429 | } else { |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 430 | /* For single DAI link & old style of DT node */ |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 431 | ret = asoc_simple_card_dai_link_of(node, priv, 0, true); |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 432 | if (ret < 0) |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 433 | return ret; |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 434 | } |
Xiubo Li | dd41e0c | 2013-12-20 14:39:50 +0800 | [diff] [blame] | 435 | |
Jianqun | 4476159 | 2014-11-01 11:22:18 +0800 | [diff] [blame] | 436 | priv->gpio_hp_det = of_get_named_gpio_flags(node, |
| 437 | "simple-audio-card,hp-det-gpio", 0, &flags); |
| 438 | priv->gpio_hp_det_invert = !!(flags & OF_GPIO_ACTIVE_LOW); |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 439 | if (priv->gpio_hp_det == -EPROBE_DEFER) |
| 440 | return -EPROBE_DEFER; |
| 441 | |
Jianqun | 4476159 | 2014-11-01 11:22:18 +0800 | [diff] [blame] | 442 | priv->gpio_mic_det = of_get_named_gpio_flags(node, |
| 443 | "simple-audio-card,mic-det-gpio", 0, &flags); |
| 444 | priv->gpio_mic_det_invert = !!(flags & OF_GPIO_ACTIVE_LOW); |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 445 | if (priv->gpio_mic_det == -EPROBE_DEFER) |
| 446 | return -EPROBE_DEFER; |
| 447 | |
Xiubo Li | 2772555 | 2014-01-24 15:43:02 +0800 | [diff] [blame] | 448 | if (!priv->snd_card.name) |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 449 | priv->snd_card.name = priv->snd_card.dai_link->name; |
Kuninori Morimoto | f687d90 | 2014-02-27 18:25:24 -0800 | [diff] [blame] | 450 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 451 | return 0; |
| 452 | } |
| 453 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 454 | /* Decrease the reference count of the device nodes */ |
Geert Uytterhoeven | 7ddfdb5 | 2015-01-13 21:03:37 +0100 | [diff] [blame^] | 455 | static int asoc_simple_card_unref(struct snd_soc_card *card) |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 456 | { |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 457 | struct snd_soc_dai_link *dai_link; |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 458 | int num_links; |
| 459 | |
| 460 | for (num_links = 0, dai_link = card->dai_link; |
| 461 | num_links < card->num_links; |
| 462 | num_links++, dai_link++) { |
Jean-Francois Moine | 0099c76 | 2014-11-09 12:38:56 +0100 | [diff] [blame] | 463 | of_node_put(dai_link->cpu_of_node); |
| 464 | of_node_put(dai_link->codec_of_node); |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 465 | } |
| 466 | return 0; |
| 467 | } |
| 468 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 469 | static int asoc_simple_card_probe(struct platform_device *pdev) |
| 470 | { |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 471 | struct simple_card_data *priv; |
Jean-Francois Moine | 5ca8ba4 | 2014-01-15 16:51:45 +0100 | [diff] [blame] | 472 | struct snd_soc_dai_link *dai_link; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 473 | struct device_node *np = pdev->dev.of_node; |
Kuninori Morimoto | f89983e | 2012-12-25 22:52:33 -0800 | [diff] [blame] | 474 | struct device *dev = &pdev->dev; |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 475 | int num_links, ret; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 476 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 477 | /* Get the number of DAI links */ |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 478 | if (np && of_get_child_by_name(np, "simple-audio-card,dai-link")) |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 479 | num_links = of_get_child_count(np); |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 480 | else |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 481 | num_links = 1; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 482 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 483 | /* Allocate the private data and the DAI link array */ |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 484 | priv = devm_kzalloc(dev, |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 485 | sizeof(*priv) + sizeof(*dai_link) * num_links, |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 486 | GFP_KERNEL); |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 487 | if (!priv) |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 488 | return -ENOMEM; |
| 489 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 490 | /* Init snd_soc_card */ |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 491 | priv->snd_card.owner = THIS_MODULE; |
| 492 | priv->snd_card.dev = dev; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 493 | dai_link = priv->dai_link; |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 494 | priv->snd_card.dai_link = dai_link; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 495 | priv->snd_card.num_links = num_links; |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 496 | |
Geert Uytterhoeven | 2dbab97 | 2014-10-07 15:09:26 +0200 | [diff] [blame] | 497 | priv->gpio_hp_det = -ENOENT; |
| 498 | priv->gpio_mic_det = -ENOENT; |
| 499 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 500 | /* Get room for the other properties */ |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 501 | priv->dai_props = devm_kzalloc(dev, |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 502 | sizeof(*priv->dai_props) * num_links, |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 503 | GFP_KERNEL); |
| 504 | if (!priv->dai_props) |
| 505 | return -ENOMEM; |
| 506 | |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 507 | if (np && of_device_is_available(np)) { |
| 508 | |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 509 | ret = asoc_simple_card_parse_of(np, priv); |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 510 | if (ret < 0) { |
| 511 | if (ret != -EPROBE_DEFER) |
| 512 | dev_err(dev, "parse error %d\n", ret); |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 513 | goto err; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 514 | } |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 515 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 516 | } else { |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 517 | struct asoc_simple_card_info *cinfo; |
| 518 | |
| 519 | cinfo = dev->platform_data; |
| 520 | if (!cinfo) { |
Xiubo Li | 34787d0a | 2014-01-09 17:49:40 +0800 | [diff] [blame] | 521 | dev_err(dev, "no info for asoc-simple-card\n"); |
| 522 | return -EINVAL; |
| 523 | } |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 524 | |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 525 | if (!cinfo->name || |
| 526 | !cinfo->codec_dai.name || |
| 527 | !cinfo->codec || |
| 528 | !cinfo->platform || |
Jean-Francois Moine | 7722f83 | 2014-01-15 16:51:33 +0100 | [diff] [blame] | 529 | !cinfo->cpu_dai.name) { |
| 530 | dev_err(dev, "insufficient asoc_simple_card_info settings\n"); |
| 531 | return -EINVAL; |
| 532 | } |
Jean-Francois Moine | 2bee991 | 2014-01-15 16:51:37 +0100 | [diff] [blame] | 533 | |
Kuninori Morimoto | 12ffa6f | 2014-03-09 19:37:56 -0700 | [diff] [blame] | 534 | priv->snd_card.name = (cinfo->card) ? cinfo->card : cinfo->name; |
Jean-Francois Moine | 5ca8ba4 | 2014-01-15 16:51:45 +0100 | [diff] [blame] | 535 | dai_link->name = cinfo->name; |
| 536 | dai_link->stream_name = cinfo->name; |
| 537 | dai_link->platform_name = cinfo->platform; |
| 538 | dai_link->codec_name = cinfo->codec; |
Jean-Francois Moine | 5200847 | 2014-01-15 16:51:48 +0100 | [diff] [blame] | 539 | dai_link->cpu_dai_name = cinfo->cpu_dai.name; |
| 540 | dai_link->codec_dai_name = cinfo->codec_dai.name; |
Kuninori Morimoto | a5960bd | 2014-08-27 20:08:27 -0700 | [diff] [blame] | 541 | dai_link->init = asoc_simple_card_dai_init; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 542 | memcpy(&priv->dai_props->cpu_dai, &cinfo->cpu_dai, |
| 543 | sizeof(priv->dai_props->cpu_dai)); |
| 544 | memcpy(&priv->dai_props->codec_dai, &cinfo->codec_dai, |
| 545 | sizeof(priv->dai_props->codec_dai)); |
Kuninori Morimoto | 81985bd | 2014-03-02 20:32:43 -0800 | [diff] [blame] | 546 | |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 547 | priv->dai_props->cpu_dai.fmt |= cinfo->daifmt; |
| 548 | priv->dai_props->codec_dai.fmt |= cinfo->daifmt; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 551 | snd_soc_card_set_drvdata(&priv->snd_card, priv); |
Xiubo Li | ba194a4 | 2014-01-13 17:08:08 +0800 | [diff] [blame] | 552 | |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 553 | ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card); |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 554 | if (ret >= 0) |
| 555 | return ret; |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 556 | |
| 557 | err: |
Geert Uytterhoeven | 7ddfdb5 | 2015-01-13 21:03:37 +0100 | [diff] [blame^] | 558 | asoc_simple_card_unref(&priv->snd_card); |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 559 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 562 | static int asoc_simple_card_remove(struct platform_device *pdev) |
| 563 | { |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 564 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 565 | struct simple_card_data *priv = snd_soc_card_get_drvdata(card); |
| 566 | |
| 567 | if (gpio_is_valid(priv->gpio_hp_det)) |
| 568 | snd_soc_jack_free_gpios(&simple_card_hp_jack, 1, |
| 569 | &simple_card_hp_jack_gpio); |
| 570 | if (gpio_is_valid(priv->gpio_mic_det)) |
| 571 | snd_soc_jack_free_gpios(&simple_card_mic_jack, 1, |
| 572 | &simple_card_mic_jack_gpio); |
| 573 | |
Geert Uytterhoeven | 7ddfdb5 | 2015-01-13 21:03:37 +0100 | [diff] [blame^] | 574 | return asoc_simple_card_unref(card); |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 575 | } |
| 576 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 577 | static const struct of_device_id asoc_simple_of_match[] = { |
| 578 | { .compatible = "simple-audio-card", }, |
| 579 | {}, |
| 580 | }; |
| 581 | MODULE_DEVICE_TABLE(of, asoc_simple_of_match); |
| 582 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 583 | static struct platform_driver asoc_simple_card = { |
| 584 | .driver = { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 585 | .name = "asoc-simple-card", |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 586 | .of_match_table = asoc_simple_of_match, |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 587 | }, |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 588 | .probe = asoc_simple_card_probe, |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 589 | .remove = asoc_simple_card_remove, |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 590 | }; |
| 591 | |
| 592 | module_platform_driver(asoc_simple_card); |
| 593 | |
Fabio Estevam | c445be3 | 2013-08-23 14:35:17 -0300 | [diff] [blame] | 594 | MODULE_ALIAS("platform:asoc-simple-card"); |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 595 | MODULE_LICENSE("GPL"); |
| 596 | MODULE_DESCRIPTION("ASoC Simple Sound Card"); |
| 597 | MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); |