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