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 | |
Kuninori Morimoto | 9eac361 | 2016-05-31 08:59:46 +0000 | [diff] [blame] | 24 | struct asoc_simple_jack { |
| 25 | struct snd_soc_jack jack; |
| 26 | struct snd_soc_jack_pin pin; |
| 27 | struct snd_soc_jack_gpio gpio; |
| 28 | }; |
| 29 | |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 30 | struct simple_card_data { |
| 31 | struct snd_soc_card snd_card; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 32 | struct simple_dai_props { |
| 33 | struct asoc_simple_dai cpu_dai; |
| 34 | struct asoc_simple_dai codec_dai; |
Arnaud Pouliquen | 85a4bfd | 2015-06-05 10:19:05 +0200 | [diff] [blame] | 35 | unsigned int mclk_fs; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 36 | } *dai_props; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 37 | unsigned int mclk_fs; |
Kuninori Morimoto | 9eac361 | 2016-05-31 08:59:46 +0000 | [diff] [blame] | 38 | struct asoc_simple_jack hp_jack; |
| 39 | struct asoc_simple_jack mic_jack; |
Kuninori Morimoto | b0133d9 | 2016-08-26 03:10:25 +0000 | [diff] [blame] | 40 | struct snd_soc_dai_link *dai_link; |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 41 | }; |
| 42 | |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 43 | #define simple_priv_to_dev(priv) ((priv)->snd_card.dev) |
Kuninori Morimoto | 7e3353d | 2016-08-26 03:06:23 +0000 | [diff] [blame] | 44 | #define simple_priv_to_link(priv, i) ((priv)->snd_card.dai_link + (i)) |
| 45 | #define simple_priv_to_props(priv, i) ((priv)->dai_props + (i)) |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 46 | |
Kuninori Morimoto | 44c16af | 2016-08-08 06:02:07 +0000 | [diff] [blame] | 47 | #define DAI "sound-dai" |
| 48 | #define CELL "#sound-dai-cells" |
Kuninori Morimoto | 548563f | 2016-05-31 08:59:01 +0000 | [diff] [blame] | 49 | #define PREFIX "simple-audio-card," |
| 50 | |
Kuninori Morimoto | 9eac361 | 2016-05-31 08:59:46 +0000 | [diff] [blame] | 51 | #define asoc_simple_card_init_hp(card, sjack, prefix)\ |
| 52 | asoc_simple_card_init_jack(card, sjack, 1, prefix) |
| 53 | #define asoc_simple_card_init_mic(card, sjack, prefix)\ |
| 54 | asoc_simple_card_init_jack(card, sjack, 0, prefix) |
| 55 | static int asoc_simple_card_init_jack(struct snd_soc_card *card, |
| 56 | struct asoc_simple_jack *sjack, |
| 57 | int is_hp, char *prefix) |
| 58 | { |
| 59 | struct device *dev = card->dev; |
| 60 | enum of_gpio_flags flags; |
| 61 | char prop[128]; |
| 62 | char *pin_name; |
| 63 | char *gpio_name; |
| 64 | int mask; |
| 65 | int det; |
| 66 | |
| 67 | sjack->gpio.gpio = -ENOENT; |
| 68 | |
| 69 | if (is_hp) { |
| 70 | snprintf(prop, sizeof(prop), "%shp-det-gpio", prefix); |
| 71 | pin_name = "Headphones"; |
| 72 | gpio_name = "Headphone detection"; |
| 73 | mask = SND_JACK_HEADPHONE; |
| 74 | } else { |
| 75 | snprintf(prop, sizeof(prop), "%smic-det-gpio", prefix); |
| 76 | pin_name = "Mic Jack"; |
| 77 | gpio_name = "Mic detection"; |
| 78 | mask = SND_JACK_MICROPHONE; |
| 79 | } |
| 80 | |
| 81 | det = of_get_named_gpio_flags(dev->of_node, prop, 0, &flags); |
| 82 | if (det == -EPROBE_DEFER) |
| 83 | return -EPROBE_DEFER; |
| 84 | |
| 85 | if (gpio_is_valid(det)) { |
| 86 | sjack->pin.pin = pin_name; |
| 87 | sjack->pin.mask = mask; |
| 88 | |
| 89 | sjack->gpio.name = gpio_name; |
| 90 | sjack->gpio.report = mask; |
| 91 | sjack->gpio.gpio = det; |
| 92 | sjack->gpio.invert = !!(flags & OF_GPIO_ACTIVE_LOW); |
| 93 | sjack->gpio.debounce_time = 150; |
| 94 | |
| 95 | snd_soc_card_jack_new(card, pin_name, mask, |
| 96 | &sjack->jack, |
| 97 | &sjack->pin, 1); |
| 98 | |
| 99 | snd_soc_jack_add_gpios(&sjack->jack, 1, |
| 100 | &sjack->gpio); |
| 101 | } |
| 102 | |
| 103 | return 0; |
| 104 | } |
| 105 | |
| 106 | static void asoc_simple_card_remove_jack(struct asoc_simple_jack *sjack) |
| 107 | { |
| 108 | if (gpio_is_valid(sjack->gpio.gpio)) |
| 109 | snd_soc_jack_free_gpios(&sjack->jack, 1, &sjack->gpio); |
| 110 | } |
| 111 | |
Jyri Sarha | f991180 | 2015-01-13 21:16:34 +0200 | [diff] [blame] | 112 | static int asoc_simple_card_startup(struct snd_pcm_substream *substream) |
| 113 | { |
| 114 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 115 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
| 116 | struct simple_dai_props *dai_props = |
Kuninori Morimoto | c9a23ea | 2016-08-26 03:06:51 +0000 | [diff] [blame] | 117 | simple_priv_to_props(priv, rtd->num); |
Jyri Sarha | f991180 | 2015-01-13 21:16:34 +0200 | [diff] [blame] | 118 | int ret; |
| 119 | |
| 120 | ret = clk_prepare_enable(dai_props->cpu_dai.clk); |
| 121 | if (ret) |
| 122 | return ret; |
Kuninori Morimoto | 387f582 | 2016-08-26 03:07:59 +0000 | [diff] [blame] | 123 | |
Jyri Sarha | f991180 | 2015-01-13 21:16:34 +0200 | [diff] [blame] | 124 | ret = clk_prepare_enable(dai_props->codec_dai.clk); |
| 125 | if (ret) |
| 126 | clk_disable_unprepare(dai_props->cpu_dai.clk); |
| 127 | |
| 128 | return ret; |
| 129 | } |
| 130 | |
| 131 | static void asoc_simple_card_shutdown(struct snd_pcm_substream *substream) |
| 132 | { |
| 133 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 134 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
| 135 | struct simple_dai_props *dai_props = |
Kuninori Morimoto | c9a23ea | 2016-08-26 03:06:51 +0000 | [diff] [blame] | 136 | simple_priv_to_props(priv, rtd->num); |
Jyri Sarha | f991180 | 2015-01-13 21:16:34 +0200 | [diff] [blame] | 137 | |
| 138 | clk_disable_unprepare(dai_props->cpu_dai.clk); |
| 139 | |
| 140 | clk_disable_unprepare(dai_props->codec_dai.clk); |
| 141 | } |
| 142 | |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 143 | static int asoc_simple_card_hw_params(struct snd_pcm_substream *substream, |
| 144 | struct snd_pcm_hw_params *params) |
| 145 | { |
| 146 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 147 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Arnaud Pouliquen | e225797 | 2015-06-05 10:19:06 +0200 | [diff] [blame] | 148 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 149 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
Kuninori Morimoto | c9a23ea | 2016-08-26 03:06:51 +0000 | [diff] [blame] | 150 | struct simple_dai_props *dai_props = |
| 151 | simple_priv_to_props(priv, rtd->num); |
Arnaud Pouliquen | 85a4bfd | 2015-06-05 10:19:05 +0200 | [diff] [blame] | 152 | unsigned int mclk, mclk_fs = 0; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 153 | int ret = 0; |
| 154 | |
Arnaud Pouliquen | 85a4bfd | 2015-06-05 10:19:05 +0200 | [diff] [blame] | 155 | if (priv->mclk_fs) |
| 156 | mclk_fs = priv->mclk_fs; |
| 157 | else if (dai_props->mclk_fs) |
| 158 | mclk_fs = dai_props->mclk_fs; |
| 159 | |
| 160 | if (mclk_fs) { |
| 161 | mclk = params_rate(params) * mclk_fs; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 162 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, mclk, |
| 163 | SND_SOC_CLOCK_IN); |
Arnaud Pouliquen | e225797 | 2015-06-05 10:19:06 +0200 | [diff] [blame] | 164 | if (ret && ret != -ENOTSUPP) |
| 165 | goto err; |
| 166 | |
| 167 | ret = snd_soc_dai_set_sysclk(cpu_dai, 0, mclk, |
| 168 | SND_SOC_CLOCK_OUT); |
| 169 | if (ret && ret != -ENOTSUPP) |
| 170 | goto err; |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 171 | } |
Aaro Koskinen | ee43a1a | 2016-01-24 00:36:40 +0200 | [diff] [blame] | 172 | return 0; |
Arnaud Pouliquen | e225797 | 2015-06-05 10:19:06 +0200 | [diff] [blame] | 173 | err: |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 174 | return ret; |
| 175 | } |
| 176 | |
Julia Lawall | 9b6fdef | 2016-10-15 16:55:49 +0200 | [diff] [blame^] | 177 | static const struct snd_soc_ops asoc_simple_card_ops = { |
Jyri Sarha | f991180 | 2015-01-13 21:16:34 +0200 | [diff] [blame] | 178 | .startup = asoc_simple_card_startup, |
| 179 | .shutdown = asoc_simple_card_shutdown, |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 180 | .hw_params = asoc_simple_card_hw_params, |
| 181 | }; |
| 182 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 183 | static int asoc_simple_card_dai_init(struct snd_soc_pcm_runtime *rtd) |
| 184 | { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 185 | struct simple_card_data *priv = snd_soc_card_get_drvdata(rtd->card); |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 186 | struct snd_soc_dai *codec = rtd->codec_dai; |
| 187 | struct snd_soc_dai *cpu = rtd->cpu_dai; |
Kuninori Morimoto | c9a23ea | 2016-08-26 03:06:51 +0000 | [diff] [blame] | 188 | struct simple_dai_props *dai_props = |
| 189 | simple_priv_to_props(priv, rtd->num); |
Mengdong Lin | 1a49798 | 2015-11-18 02:34:11 -0500 | [diff] [blame] | 190 | int ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 191 | |
Kuninori Morimoto | d8cb935 | 2016-08-09 05:48:53 +0000 | [diff] [blame] | 192 | ret = asoc_simple_card_init_dai(codec, &dai_props->codec_dai); |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 193 | if (ret < 0) |
| 194 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 195 | |
Kuninori Morimoto | d8cb935 | 2016-08-09 05:48:53 +0000 | [diff] [blame] | 196 | ret = asoc_simple_card_init_dai(cpu, &dai_props->cpu_dai); |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 197 | if (ret < 0) |
| 198 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 199 | |
Kuninori Morimoto | 9eac361 | 2016-05-31 08:59:46 +0000 | [diff] [blame] | 200 | ret = asoc_simple_card_init_hp(rtd->card, &priv->hp_jack, PREFIX); |
| 201 | if (ret < 0) |
| 202 | return ret; |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 203 | |
Kuninori Morimoto | 9eac361 | 2016-05-31 08:59:46 +0000 | [diff] [blame] | 204 | ret = asoc_simple_card_init_mic(rtd->card, &priv->hp_jack, PREFIX); |
| 205 | if (ret < 0) |
| 206 | return ret; |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 207 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
Kuninori Morimoto | 2d82eeb | 2014-08-27 20:07:46 -0700 | [diff] [blame] | 211 | static int asoc_simple_card_dai_link_of(struct device_node *node, |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 212 | struct simple_card_data *priv, |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 213 | int idx, |
Kuninori Morimoto | 2d82eeb | 2014-08-27 20:07:46 -0700 | [diff] [blame] | 214 | bool is_top_level_node) |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 215 | { |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 216 | struct device *dev = simple_priv_to_dev(priv); |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 217 | struct snd_soc_dai_link *dai_link = simple_priv_to_link(priv, idx); |
| 218 | struct simple_dai_props *dai_props = simple_priv_to_props(priv, idx); |
Kuninori Morimoto | 28abd99 | 2016-07-19 02:53:13 +0000 | [diff] [blame] | 219 | struct asoc_simple_dai *cpu_dai = &dai_props->cpu_dai; |
| 220 | struct asoc_simple_dai *codec_dai = &dai_props->codec_dai; |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 221 | struct device_node *cpu = NULL; |
Jun Nie | e0ae225 | 2015-04-29 18:11:07 +0800 | [diff] [blame] | 222 | struct device_node *plat = NULL; |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 223 | struct device_node *codec = NULL; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 224 | char prop[128]; |
| 225 | char *prefix = ""; |
Kuninori Morimoto | 44c16af | 2016-08-08 06:02:07 +0000 | [diff] [blame] | 226 | int ret, single_cpu; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 227 | |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 228 | /* For single DAI link & old style of DT node */ |
Jyri Sarha | 6487221 | 2014-04-24 19:42:00 +0300 | [diff] [blame] | 229 | if (is_top_level_node) |
Kuninori Morimoto | 548563f | 2016-05-31 08:59:01 +0000 | [diff] [blame] | 230 | prefix = PREFIX; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 231 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 232 | snprintf(prop, sizeof(prop), "%scpu", prefix); |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 233 | cpu = of_get_child_by_name(node, prop); |
| 234 | |
Jun Nie | e0ae225 | 2015-04-29 18:11:07 +0800 | [diff] [blame] | 235 | snprintf(prop, sizeof(prop), "%splat", prefix); |
| 236 | plat = of_get_child_by_name(node, prop); |
| 237 | |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 238 | snprintf(prop, sizeof(prop), "%scodec", prefix); |
| 239 | codec = of_get_child_by_name(node, prop); |
| 240 | |
| 241 | if (!cpu || !codec) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 242 | ret = -EINVAL; |
Nicolin Chen | 966b806 | 2014-04-24 19:13:59 +0800 | [diff] [blame] | 243 | 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] | 244 | goto dai_link_of_err; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 245 | } |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 246 | |
Kuninori Morimoto | cecdef3 | 2016-06-30 06:02:46 +0000 | [diff] [blame] | 247 | ret = asoc_simple_card_parse_daifmt(dev, node, codec, |
| 248 | prefix, &dai_link->dai_fmt); |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 249 | if (ret < 0) |
| 250 | goto dai_link_of_err; |
| 251 | |
Kuninori Morimoto | f93b646 | 2016-08-26 03:05:58 +0000 | [diff] [blame] | 252 | of_property_read_u32(node, "mclk-fs", &dai_props->mclk_fs); |
Arnaud Pouliquen | 85a4bfd | 2015-06-05 10:19:05 +0200 | [diff] [blame] | 253 | |
Kuninori Morimoto | 44c16af | 2016-08-08 06:02:07 +0000 | [diff] [blame] | 254 | ret = asoc_simple_card_parse_cpu(cpu, dai_link, |
| 255 | DAI, CELL, &single_cpu); |
| 256 | if (ret < 0) |
| 257 | goto dai_link_of_err; |
| 258 | |
| 259 | ret = asoc_simple_card_parse_codec(codec, dai_link, DAI, CELL); |
| 260 | if (ret < 0) |
| 261 | goto dai_link_of_err; |
| 262 | |
| 263 | ret = asoc_simple_card_parse_platform(plat, dai_link, DAI, CELL); |
| 264 | if (ret < 0) |
| 265 | goto dai_link_of_err; |
| 266 | |
Kuninori Morimoto | c3b19c8 | 2016-08-08 06:03:35 +0000 | [diff] [blame] | 267 | ret = snd_soc_of_parse_tdm_slot(cpu, &cpu_dai->tx_slot_mask, |
| 268 | &cpu_dai->rx_slot_mask, |
| 269 | &cpu_dai->slots, |
| 270 | &cpu_dai->slot_width); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 271 | if (ret < 0) |
| 272 | goto dai_link_of_err; |
| 273 | |
Kuninori Morimoto | c3b19c8 | 2016-08-08 06:03:35 +0000 | [diff] [blame] | 274 | ret = snd_soc_of_parse_tdm_slot(codec, &codec_dai->tx_slot_mask, |
| 275 | &codec_dai->rx_slot_mask, |
| 276 | &codec_dai->slots, |
| 277 | &codec_dai->slot_width); |
Kuninori Morimoto | 5fb9cb1 | 2016-05-20 09:40:41 +0000 | [diff] [blame] | 278 | if (ret < 0) |
| 279 | goto dai_link_of_err; |
| 280 | |
Kuninori Morimoto | 28abd99 | 2016-07-19 02:53:13 +0000 | [diff] [blame] | 281 | ret = asoc_simple_card_parse_clk_cpu(cpu, dai_link, cpu_dai); |
| 282 | if (ret < 0) |
| 283 | goto dai_link_of_err; |
| 284 | |
| 285 | ret = asoc_simple_card_parse_clk_codec(codec, dai_link, codec_dai); |
| 286 | if (ret < 0) |
| 287 | goto dai_link_of_err; |
| 288 | |
Kuninori Morimoto | c958374 | 2016-08-09 05:50:02 +0000 | [diff] [blame] | 289 | ret = asoc_simple_card_canonicalize_dailink(dai_link); |
| 290 | if (ret < 0) |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 291 | goto dai_link_of_err; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 292 | |
Kuninori Morimoto | 2e8d1c7 | 2016-07-11 23:57:34 +0000 | [diff] [blame] | 293 | ret = asoc_simple_card_set_dailink_name(dev, dai_link, |
| 294 | "%s-%s", |
| 295 | dai_link->cpu_dai_name, |
| 296 | dai_link->codec_dai_name); |
| 297 | if (ret < 0) |
Vishal Thanki | 31f3032 | 2015-03-03 18:59:00 +0530 | [diff] [blame] | 298 | goto dai_link_of_err; |
Vishal Thanki | 31f3032 | 2015-03-03 18:59:00 +0530 | [diff] [blame] | 299 | |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 300 | dai_link->ops = &asoc_simple_card_ops; |
Kuninori Morimoto | a5960bd | 2014-08-27 20:08:27 -0700 | [diff] [blame] | 301 | dai_link->init = asoc_simple_card_dai_init; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 302 | |
| 303 | dev_dbg(dev, "\tname : %s\n", dai_link->stream_name); |
Lars-Peter Clausen | 1efb53a | 2015-03-24 01:07:08 +0000 | [diff] [blame] | 304 | dev_dbg(dev, "\tformat : %04x\n", dai_link->dai_fmt); |
| 305 | dev_dbg(dev, "\tcpu : %s / %d\n", |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 306 | dai_link->cpu_dai_name, |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 307 | dai_props->cpu_dai.sysclk); |
Lars-Peter Clausen | 1efb53a | 2015-03-24 01:07:08 +0000 | [diff] [blame] | 308 | dev_dbg(dev, "\tcodec : %s / %d\n", |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 309 | dai_link->codec_dai_name, |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 310 | dai_props->codec_dai.sysclk); |
| 311 | |
Kuninori Morimoto | 16f1de6 | 2016-08-10 02:20:43 +0000 | [diff] [blame] | 312 | asoc_simple_card_canonicalize_cpu(dai_link, single_cpu); |
Kuninori Morimoto | 179949b | 2014-08-27 20:08:06 -0700 | [diff] [blame] | 313 | |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 314 | dai_link_of_err: |
Kuninori Morimoto | 1b5721b | 2014-10-27 18:04:52 -0700 | [diff] [blame] | 315 | of_node_put(cpu); |
| 316 | of_node_put(codec); |
| 317 | |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 318 | return ret; |
| 319 | } |
| 320 | |
Nikita Yushchenko | 899a247 | 2016-09-26 12:56:51 +0300 | [diff] [blame] | 321 | static int asoc_simple_card_parse_aux_devs(struct device_node *node, |
| 322 | struct simple_card_data *priv) |
| 323 | { |
| 324 | struct device *dev = simple_priv_to_dev(priv); |
| 325 | struct device_node *aux_node; |
| 326 | int i, n, len; |
| 327 | |
| 328 | if (!of_find_property(node, PREFIX "aux-devs", &len)) |
| 329 | return 0; /* Ok to have no aux-devs */ |
| 330 | |
| 331 | n = len / sizeof(__be32); |
| 332 | if (n <= 0) |
| 333 | return -EINVAL; |
| 334 | |
| 335 | priv->snd_card.aux_dev = devm_kzalloc(dev, |
| 336 | n * sizeof(*priv->snd_card.aux_dev), GFP_KERNEL); |
| 337 | if (!priv->snd_card.aux_dev) |
| 338 | return -ENOMEM; |
| 339 | |
| 340 | for (i = 0; i < n; i++) { |
| 341 | aux_node = of_parse_phandle(node, PREFIX "aux-devs", i); |
| 342 | if (!aux_node) |
| 343 | return -EINVAL; |
| 344 | priv->snd_card.aux_dev[i].codec_of_node = aux_node; |
| 345 | } |
| 346 | |
| 347 | priv->snd_card.num_aux_devs = n; |
| 348 | return 0; |
| 349 | } |
| 350 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 351 | static int asoc_simple_card_parse_of(struct device_node *node, |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 352 | struct simple_card_data *priv) |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 353 | { |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 354 | struct device *dev = simple_priv_to_dev(priv); |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 355 | struct device_node *dai_link; |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 356 | int ret; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 357 | |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 358 | if (!node) |
| 359 | return -EINVAL; |
| 360 | |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 361 | dai_link = of_get_child_by_name(node, PREFIX "dai-link"); |
| 362 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 363 | /* The off-codec widgets */ |
Kuninori Morimoto | 548563f | 2016-05-31 08:59:01 +0000 | [diff] [blame] | 364 | if (of_property_read_bool(node, PREFIX "widgets")) { |
Xiubo Li | 9d681f5 | 2014-02-08 15:59:53 +0800 | [diff] [blame] | 365 | ret = snd_soc_of_parse_audio_simple_widgets(&priv->snd_card, |
Kuninori Morimoto | 548563f | 2016-05-31 08:59:01 +0000 | [diff] [blame] | 366 | PREFIX "widgets"); |
Xiubo Li | 9d681f5 | 2014-02-08 15:59:53 +0800 | [diff] [blame] | 367 | if (ret) |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 368 | goto card_parse_end; |
Xiubo Li | 9d681f5 | 2014-02-08 15:59:53 +0800 | [diff] [blame] | 369 | } |
| 370 | |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 371 | /* DAPM routes */ |
Kuninori Morimoto | 548563f | 2016-05-31 08:59:01 +0000 | [diff] [blame] | 372 | if (of_property_read_bool(node, PREFIX "routing")) { |
Jean-Francois Moine | b367a32 | 2014-01-15 16:52:00 +0100 | [diff] [blame] | 373 | ret = snd_soc_of_parse_audio_routing(&priv->snd_card, |
Kuninori Morimoto | 548563f | 2016-05-31 08:59:01 +0000 | [diff] [blame] | 374 | PREFIX "routing"); |
Xiubo Li | f87a3e8 | 2014-01-07 09:13:42 +0800 | [diff] [blame] | 375 | if (ret) |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 376 | goto card_parse_end; |
Xiubo Li | f87a3e8 | 2014-01-07 09:13:42 +0800 | [diff] [blame] | 377 | } |
Xiubo Li | d4c2209 | 2013-12-23 12:57:01 +0800 | [diff] [blame] | 378 | |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 379 | /* Factor to mclk, used in hw_params() */ |
Kuninori Morimoto | f93b646 | 2016-08-26 03:05:58 +0000 | [diff] [blame] | 380 | of_property_read_u32(node, PREFIX "mclk-fs", &priv->mclk_fs); |
Andrew Lunn | 2942a0e | 2014-05-22 17:31:49 +0200 | [diff] [blame] | 381 | |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 382 | /* Single/Muti DAI link(s) & New style of DT node */ |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 383 | if (dai_link) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 384 | struct device_node *np = NULL; |
Kuninori Morimoto | a44a750 | 2014-08-27 20:08:47 -0700 | [diff] [blame] | 385 | int i = 0; |
| 386 | |
| 387 | for_each_child_of_node(node, np) { |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 388 | dev_dbg(dev, "\tlink %d:\n", i); |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 389 | ret = asoc_simple_card_dai_link_of(np, priv, |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 390 | i, false); |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 391 | if (ret < 0) { |
| 392 | of_node_put(np); |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 393 | goto card_parse_end; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 394 | } |
Kuninori Morimoto | a44a750 | 2014-08-27 20:08:47 -0700 | [diff] [blame] | 395 | i++; |
Jyri Sarha | b3ca11f | 2014-03-24 12:15:25 +0200 | [diff] [blame] | 396 | } |
| 397 | } else { |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 398 | /* For single DAI link & old style of DT node */ |
Kuninori Morimoto | 9810f53 | 2014-09-09 21:38:24 -0700 | [diff] [blame] | 399 | ret = asoc_simple_card_dai_link_of(node, priv, 0, true); |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 400 | if (ret < 0) |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 401 | goto card_parse_end; |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 402 | } |
Xiubo Li | dd41e0c | 2013-12-20 14:39:50 +0800 | [diff] [blame] | 403 | |
Kuninori Morimoto | 3527d85 | 2016-07-11 23:59:40 +0000 | [diff] [blame] | 404 | ret = asoc_simple_card_parse_card_name(&priv->snd_card, PREFIX); |
Nikita Yushchenko | 899a247 | 2016-09-26 12:56:51 +0300 | [diff] [blame] | 405 | if (ret < 0) |
| 406 | goto card_parse_end; |
| 407 | |
| 408 | ret = asoc_simple_card_parse_aux_devs(node, priv); |
Kuninori Morimoto | f687d90 | 2014-02-27 18:25:24 -0800 | [diff] [blame] | 409 | |
Kuninori Morimoto | a03b054 | 2016-08-26 03:05:16 +0000 | [diff] [blame] | 410 | card_parse_end: |
| 411 | of_node_put(dai_link); |
| 412 | |
| 413 | return ret; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 414 | } |
| 415 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 416 | static int asoc_simple_card_probe(struct platform_device *pdev) |
| 417 | { |
Jean-Francois Moine | 45fce59 | 2014-01-15 16:51:56 +0100 | [diff] [blame] | 418 | struct simple_card_data *priv; |
Jean-Francois Moine | 5ca8ba4 | 2014-01-15 16:51:45 +0100 | [diff] [blame] | 419 | struct snd_soc_dai_link *dai_link; |
Kuninori Morimoto | b0133d9 | 2016-08-26 03:10:25 +0000 | [diff] [blame] | 420 | struct simple_dai_props *dai_props; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 421 | struct device_node *np = pdev->dev.of_node; |
Kuninori Morimoto | f89983e | 2012-12-25 22:52:33 -0800 | [diff] [blame] | 422 | struct device *dev = &pdev->dev; |
Kuninori Morimoto | 2c86dda | 2016-08-26 03:09:38 +0000 | [diff] [blame] | 423 | int num, ret; |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 424 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 425 | /* Get the number of DAI links */ |
Kuninori Morimoto | 548563f | 2016-05-31 08:59:01 +0000 | [diff] [blame] | 426 | if (np && of_get_child_by_name(np, PREFIX "dai-link")) |
Kuninori Morimoto | 2c86dda | 2016-08-26 03:09:38 +0000 | [diff] [blame] | 427 | num = of_get_child_count(np); |
Xiubo Li | 2080437 | 2014-09-03 10:23:39 +0800 | [diff] [blame] | 428 | else |
Kuninori Morimoto | 2c86dda | 2016-08-26 03:09:38 +0000 | [diff] [blame] | 429 | num = 1; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 430 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 431 | /* Allocate the private data and the DAI link array */ |
Kuninori Morimoto | b0133d9 | 2016-08-26 03:10:25 +0000 | [diff] [blame] | 432 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 433 | if (!priv) |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 434 | return -ENOMEM; |
| 435 | |
Kuninori Morimoto | b0133d9 | 2016-08-26 03:10:25 +0000 | [diff] [blame] | 436 | dai_props = devm_kzalloc(dev, sizeof(*dai_props) * num, GFP_KERNEL); |
| 437 | dai_link = devm_kzalloc(dev, sizeof(*dai_link) * num, GFP_KERNEL); |
| 438 | if (!dai_props || !dai_link) |
| 439 | return -ENOMEM; |
| 440 | |
| 441 | priv->dai_props = dai_props; |
| 442 | priv->dai_link = dai_link; |
| 443 | |
Xiubo Li | 0dd4fc3 | 2014-09-10 09:59:55 +0800 | [diff] [blame] | 444 | /* Init snd_soc_card */ |
Kuninori Morimoto | 0a6c7f2 | 2016-08-26 03:08:25 +0000 | [diff] [blame] | 445 | priv->snd_card.owner = THIS_MODULE; |
| 446 | priv->snd_card.dev = dev; |
| 447 | priv->snd_card.dai_link = priv->dai_link; |
Kuninori Morimoto | 2c86dda | 2016-08-26 03:09:38 +0000 | [diff] [blame] | 448 | priv->snd_card.num_links = num; |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 449 | |
Jean-Francois Moine | 201a0ea | 2014-01-15 16:51:41 +0100 | [diff] [blame] | 450 | if (np && of_device_is_available(np)) { |
| 451 | |
Kuninori Morimoto | f531913f | 2014-09-09 21:37:57 -0700 | [diff] [blame] | 452 | ret = asoc_simple_card_parse_of(np, priv); |
Xiubo Li | ca919fe | 2014-01-14 12:35:32 +0800 | [diff] [blame] | 453 | if (ret < 0) { |
| 454 | if (ret != -EPROBE_DEFER) |
| 455 | dev_err(dev, "parse error %d\n", ret); |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 456 | goto err; |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 457 | } |
Jean-Francois Moine | 6a91a17bd | 2014-03-20 11:49:55 +0100 | [diff] [blame] | 458 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 459 | } else { |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 460 | struct asoc_simple_card_info *cinfo; |
| 461 | |
| 462 | cinfo = dev->platform_data; |
| 463 | if (!cinfo) { |
Xiubo Li | 34787d0a | 2014-01-09 17:49:40 +0800 | [diff] [blame] | 464 | dev_err(dev, "no info for asoc-simple-card\n"); |
| 465 | return -EINVAL; |
| 466 | } |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 467 | |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 468 | if (!cinfo->name || |
| 469 | !cinfo->codec_dai.name || |
| 470 | !cinfo->codec || |
| 471 | !cinfo->platform || |
Jean-Francois Moine | 7722f83 | 2014-01-15 16:51:33 +0100 | [diff] [blame] | 472 | !cinfo->cpu_dai.name) { |
| 473 | dev_err(dev, "insufficient asoc_simple_card_info settings\n"); |
| 474 | return -EINVAL; |
| 475 | } |
Jean-Francois Moine | 2bee991 | 2014-01-15 16:51:37 +0100 | [diff] [blame] | 476 | |
Kuninori Morimoto | 12ffa6f | 2014-03-09 19:37:56 -0700 | [diff] [blame] | 477 | priv->snd_card.name = (cinfo->card) ? cinfo->card : cinfo->name; |
Jean-Francois Moine | 5ca8ba4 | 2014-01-15 16:51:45 +0100 | [diff] [blame] | 478 | dai_link->name = cinfo->name; |
| 479 | dai_link->stream_name = cinfo->name; |
| 480 | dai_link->platform_name = cinfo->platform; |
| 481 | dai_link->codec_name = cinfo->codec; |
Jean-Francois Moine | 5200847 | 2014-01-15 16:51:48 +0100 | [diff] [blame] | 482 | dai_link->cpu_dai_name = cinfo->cpu_dai.name; |
| 483 | dai_link->codec_dai_name = cinfo->codec_dai.name; |
Lars-Peter Clausen | 1efb53a | 2015-03-24 01:07:08 +0000 | [diff] [blame] | 484 | dai_link->dai_fmt = cinfo->daifmt; |
Kuninori Morimoto | a5960bd | 2014-08-27 20:08:27 -0700 | [diff] [blame] | 485 | dai_link->init = asoc_simple_card_dai_init; |
Jean-Francois Moine | cf7dc23 | 2014-03-20 10:52:41 +0100 | [diff] [blame] | 486 | memcpy(&priv->dai_props->cpu_dai, &cinfo->cpu_dai, |
| 487 | sizeof(priv->dai_props->cpu_dai)); |
| 488 | memcpy(&priv->dai_props->codec_dai, &cinfo->codec_dai, |
| 489 | sizeof(priv->dai_props->codec_dai)); |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 490 | } |
| 491 | |
Jean-Francois Moine | ca65b49 | 2014-01-15 16:51:52 +0100 | [diff] [blame] | 492 | snd_soc_card_set_drvdata(&priv->snd_card, priv); |
Xiubo Li | ba194a4 | 2014-01-13 17:08:08 +0800 | [diff] [blame] | 493 | |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 494 | ret = devm_snd_soc_register_card(&pdev->dev, &priv->snd_card); |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 495 | if (ret >= 0) |
| 496 | return ret; |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 497 | err: |
Kuninori Morimoto | 885fc05 | 2016-08-10 02:21:42 +0000 | [diff] [blame] | 498 | asoc_simple_card_clean_reference(&priv->snd_card); |
Kuninori Morimoto | 387f582 | 2016-08-26 03:07:59 +0000 | [diff] [blame] | 499 | |
Jean-Francois Moine | e512e00 | 2014-03-11 10:03:40 +0100 | [diff] [blame] | 500 | return ret; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 501 | } |
| 502 | |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 503 | static int asoc_simple_card_remove(struct platform_device *pdev) |
| 504 | { |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 505 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 506 | struct simple_card_data *priv = snd_soc_card_get_drvdata(card); |
| 507 | |
Kuninori Morimoto | 9eac361 | 2016-05-31 08:59:46 +0000 | [diff] [blame] | 508 | asoc_simple_card_remove_jack(&priv->hp_jack); |
| 509 | asoc_simple_card_remove_jack(&priv->mic_jack); |
Dylan Reid | 3fe2403 | 2014-10-01 14:25:20 -0700 | [diff] [blame] | 510 | |
Kuninori Morimoto | 885fc05 | 2016-08-10 02:21:42 +0000 | [diff] [blame] | 511 | return asoc_simple_card_clean_reference(card); |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 512 | } |
| 513 | |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 514 | static const struct of_device_id asoc_simple_of_match[] = { |
| 515 | { .compatible = "simple-audio-card", }, |
| 516 | {}, |
| 517 | }; |
| 518 | MODULE_DEVICE_TABLE(of, asoc_simple_of_match); |
| 519 | |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 520 | static struct platform_driver asoc_simple_card = { |
| 521 | .driver = { |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 522 | .name = "asoc-simple-card", |
Peter Ujfalusi | 7c37671 | 2016-05-09 13:38:10 +0300 | [diff] [blame] | 523 | .pm = &snd_soc_pm_ops, |
Kuninori Morimoto | fa558c2 | 2013-11-20 15:25:02 +0900 | [diff] [blame] | 524 | .of_match_table = asoc_simple_of_match, |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 525 | }, |
Nicolin Chen | 781cbeb | 2014-04-24 19:14:00 +0800 | [diff] [blame] | 526 | .probe = asoc_simple_card_probe, |
Xiubo Li | e3c4a28 | 2014-09-01 14:46:52 +0800 | [diff] [blame] | 527 | .remove = asoc_simple_card_remove, |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 528 | }; |
| 529 | |
| 530 | module_platform_driver(asoc_simple_card); |
| 531 | |
Fabio Estevam | c445be3 | 2013-08-23 14:35:17 -0300 | [diff] [blame] | 532 | MODULE_ALIAS("platform:asoc-simple-card"); |
Kuninori Morimoto | a1dbfd0 | 2016-08-26 03:07:28 +0000 | [diff] [blame] | 533 | MODULE_LICENSE("GPL v2"); |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 534 | MODULE_DESCRIPTION("ASoC Simple Sound Card"); |
| 535 | MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); |