Peter Rosin | 1b3b798 | 2018-08-20 12:14:09 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | // |
| 3 | // TSE-850 audio - ASoC driver for the Axentia TSE-850 with a PCM5142 codec |
| 4 | // |
| 5 | // Copyright (C) 2016 Axentia Technologies AB |
| 6 | // |
| 7 | // Author: Peter Rosin <peda@axentia.se> |
| 8 | // |
| 9 | // loop1 relays |
| 10 | // IN1 +---o +------------+ o---+ OUT1 |
| 11 | // \ / |
| 12 | // + + |
| 13 | // | / | |
| 14 | // +--o +--. | |
| 15 | // | add | | |
| 16 | // | V | |
| 17 | // | .---. | |
| 18 | // DAC +----------->|Sum|---+ |
| 19 | // | '---' | |
| 20 | // | | |
| 21 | // + + |
| 22 | // |
| 23 | // IN2 +---o--+------------+--o---+ OUT2 |
| 24 | // loop2 relays |
| 25 | // |
Gu Shengxian | 55233b2 | 2021-07-06 18:02:30 +0800 | [diff] [blame] | 26 | // The 'loop1' gpio pin controls two relays, which are either in loop |
Peter Rosin | 1b3b798 | 2018-08-20 12:14:09 +0200 | [diff] [blame] | 27 | // position, meaning that input and output are directly connected, or |
| 28 | // they are in mixer position, meaning that the signal is passed through |
| 29 | // the 'Sum' mixer. Similarly for 'loop2'. |
| 30 | // |
| 31 | // In the above, the 'loop1' relays are inactive, thus feeding IN1 to the |
| 32 | // mixer (if 'add' is active) and feeding the mixer output to OUT1. The |
| 33 | // 'loop2' relays are active, short-cutting the TSE-850 from channel 2. |
| 34 | // IN1, IN2, OUT1 and OUT2 are TSE-850 connectors and DAC is the PCB name |
| 35 | // of the (filtered) output from the PCM5142 codec. |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 36 | |
| 37 | #include <linux/clk.h> |
| 38 | #include <linux/gpio.h> |
| 39 | #include <linux/module.h> |
| 40 | #include <linux/of.h> |
| 41 | #include <linux/of_device.h> |
| 42 | #include <linux/of_gpio.h> |
| 43 | #include <linux/regulator/consumer.h> |
| 44 | |
| 45 | #include <sound/soc.h> |
| 46 | #include <sound/pcm_params.h> |
| 47 | |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 48 | struct tse850_priv { |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 49 | struct gpio_desc *add; |
| 50 | struct gpio_desc *loop1; |
| 51 | struct gpio_desc *loop2; |
| 52 | |
| 53 | struct regulator *ana; |
| 54 | |
| 55 | int add_cache; |
| 56 | int loop1_cache; |
| 57 | int loop2_cache; |
| 58 | }; |
| 59 | |
| 60 | static int tse850_get_mux1(struct snd_kcontrol *kctrl, |
| 61 | struct snd_ctl_elem_value *ucontrol) |
| 62 | { |
| 63 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 64 | struct snd_soc_card *card = dapm->card; |
| 65 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 66 | |
| 67 | ucontrol->value.enumerated.item[0] = tse850->loop1_cache; |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static int tse850_put_mux1(struct snd_kcontrol *kctrl, |
| 73 | struct snd_ctl_elem_value *ucontrol) |
| 74 | { |
| 75 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 76 | struct snd_soc_card *card = dapm->card; |
| 77 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 78 | struct soc_enum *e = (struct soc_enum *)kctrl->private_value; |
| 79 | unsigned int val = ucontrol->value.enumerated.item[0]; |
| 80 | |
| 81 | if (val >= e->items) |
| 82 | return -EINVAL; |
| 83 | |
| 84 | gpiod_set_value_cansleep(tse850->loop1, val); |
| 85 | tse850->loop1_cache = val; |
| 86 | |
| 87 | return snd_soc_dapm_put_enum_double(kctrl, ucontrol); |
| 88 | } |
| 89 | |
| 90 | static int tse850_get_mux2(struct snd_kcontrol *kctrl, |
| 91 | struct snd_ctl_elem_value *ucontrol) |
| 92 | { |
| 93 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 94 | struct snd_soc_card *card = dapm->card; |
| 95 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 96 | |
| 97 | ucontrol->value.enumerated.item[0] = tse850->loop2_cache; |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | static int tse850_put_mux2(struct snd_kcontrol *kctrl, |
| 103 | struct snd_ctl_elem_value *ucontrol) |
| 104 | { |
| 105 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 106 | struct snd_soc_card *card = dapm->card; |
| 107 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 108 | struct soc_enum *e = (struct soc_enum *)kctrl->private_value; |
| 109 | unsigned int val = ucontrol->value.enumerated.item[0]; |
| 110 | |
| 111 | if (val >= e->items) |
| 112 | return -EINVAL; |
| 113 | |
| 114 | gpiod_set_value_cansleep(tse850->loop2, val); |
| 115 | tse850->loop2_cache = val; |
| 116 | |
| 117 | return snd_soc_dapm_put_enum_double(kctrl, ucontrol); |
| 118 | } |
| 119 | |
YueHaibing | 6f547c9 | 2019-04-16 22:47:18 +0800 | [diff] [blame] | 120 | static int tse850_get_mix(struct snd_kcontrol *kctrl, |
| 121 | struct snd_ctl_elem_value *ucontrol) |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 122 | { |
| 123 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 124 | struct snd_soc_card *card = dapm->card; |
| 125 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 126 | |
| 127 | ucontrol->value.enumerated.item[0] = tse850->add_cache; |
| 128 | |
| 129 | return 0; |
| 130 | } |
| 131 | |
YueHaibing | 6f547c9 | 2019-04-16 22:47:18 +0800 | [diff] [blame] | 132 | static int tse850_put_mix(struct snd_kcontrol *kctrl, |
| 133 | struct snd_ctl_elem_value *ucontrol) |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 134 | { |
| 135 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 136 | struct snd_soc_card *card = dapm->card; |
| 137 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 138 | int connect = !!ucontrol->value.integer.value[0]; |
| 139 | |
| 140 | if (tse850->add_cache == connect) |
| 141 | return 0; |
| 142 | |
| 143 | /* |
| 144 | * Hmmm, this gpiod_set_value_cansleep call should probably happen |
| 145 | * inside snd_soc_dapm_mixer_update_power in the loop. |
| 146 | */ |
| 147 | gpiod_set_value_cansleep(tse850->add, connect); |
| 148 | tse850->add_cache = connect; |
| 149 | |
| 150 | snd_soc_dapm_mixer_update_power(dapm, kctrl, connect, NULL); |
| 151 | return 1; |
| 152 | } |
| 153 | |
YueHaibing | 6f547c9 | 2019-04-16 22:47:18 +0800 | [diff] [blame] | 154 | static int tse850_get_ana(struct snd_kcontrol *kctrl, |
| 155 | struct snd_ctl_elem_value *ucontrol) |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 156 | { |
| 157 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 158 | struct snd_soc_card *card = dapm->card; |
| 159 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 160 | int ret; |
| 161 | |
| 162 | ret = regulator_get_voltage(tse850->ana); |
| 163 | if (ret < 0) |
| 164 | return ret; |
| 165 | |
| 166 | /* |
| 167 | * Map regulator output values like so: |
| 168 | * -11.5V to "Low" (enum 0) |
| 169 | * 11.5V-12.5V to "12V" (enum 1) |
| 170 | * 12.5V-13.5V to "13V" (enum 2) |
| 171 | * ... |
| 172 | * 18.5V-19.5V to "19V" (enum 8) |
| 173 | * 19.5V- to "20V" (enum 9) |
| 174 | */ |
| 175 | if (ret < 11000000) |
| 176 | ret = 11000000; |
| 177 | else if (ret > 20000000) |
| 178 | ret = 20000000; |
| 179 | ret -= 11000000; |
| 180 | ret = (ret + 500000) / 1000000; |
| 181 | |
| 182 | ucontrol->value.enumerated.item[0] = ret; |
| 183 | |
| 184 | return 0; |
| 185 | } |
| 186 | |
YueHaibing | 6f547c9 | 2019-04-16 22:47:18 +0800 | [diff] [blame] | 187 | static int tse850_put_ana(struct snd_kcontrol *kctrl, |
| 188 | struct snd_ctl_elem_value *ucontrol) |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 189 | { |
| 190 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kctrl); |
| 191 | struct snd_soc_card *card = dapm->card; |
| 192 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 193 | struct soc_enum *e = (struct soc_enum *)kctrl->private_value; |
| 194 | unsigned int uV = ucontrol->value.enumerated.item[0]; |
| 195 | int ret; |
| 196 | |
| 197 | if (uV >= e->items) |
| 198 | return -EINVAL; |
| 199 | |
| 200 | /* |
| 201 | * Map enum zero (Low) to 2 volts on the regulator, do this since |
| 202 | * the ana regulator is supplied by the system 12V voltage and |
| 203 | * requesting anything below the system voltage causes the system |
| 204 | * voltage to be passed through the regulator. Also, the ana |
| 205 | * regulator induces noise when requesting voltages near the |
| 206 | * system voltage. So, by mapping Low to 2V, that noise is |
| 207 | * eliminated when all that is needed is 12V (the system voltage). |
| 208 | */ |
| 209 | if (uV) |
| 210 | uV = 11000000 + (1000000 * uV); |
| 211 | else |
| 212 | uV = 2000000; |
| 213 | |
| 214 | ret = regulator_set_voltage(tse850->ana, uV, uV); |
| 215 | if (ret < 0) |
| 216 | return ret; |
| 217 | |
| 218 | return snd_soc_dapm_put_enum_double(kctrl, ucontrol); |
| 219 | } |
| 220 | |
| 221 | static const char * const mux_text[] = { "Mixer", "Loop" }; |
| 222 | |
| 223 | static const struct soc_enum mux_enum = |
Peter Rosin | a00cebf | 2017-05-31 14:32:33 +0200 | [diff] [blame] | 224 | SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, ARRAY_SIZE(mux_text), mux_text); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 225 | |
| 226 | static const struct snd_kcontrol_new mux1 = |
| 227 | SOC_DAPM_ENUM_EXT("MUX1", mux_enum, tse850_get_mux1, tse850_put_mux1); |
| 228 | |
| 229 | static const struct snd_kcontrol_new mux2 = |
| 230 | SOC_DAPM_ENUM_EXT("MUX2", mux_enum, tse850_get_mux2, tse850_put_mux2); |
| 231 | |
| 232 | #define TSE850_DAPM_SINGLE_EXT(xname, reg, shift, max, invert, xget, xput) \ |
| 233 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 234 | .info = snd_soc_info_volsw, \ |
| 235 | .get = xget, \ |
| 236 | .put = xput, \ |
| 237 | .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) } |
| 238 | |
| 239 | static const struct snd_kcontrol_new mix[] = { |
| 240 | TSE850_DAPM_SINGLE_EXT("IN Switch", SND_SOC_NOPM, 0, 1, 0, |
| 241 | tse850_get_mix, tse850_put_mix), |
| 242 | }; |
| 243 | |
| 244 | static const char * const ana_text[] = { |
| 245 | "Low", "12V", "13V", "14V", "15V", "16V", "17V", "18V", "19V", "20V" |
| 246 | }; |
| 247 | |
| 248 | static const struct soc_enum ana_enum = |
Peter Rosin | a00cebf | 2017-05-31 14:32:33 +0200 | [diff] [blame] | 249 | SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, ARRAY_SIZE(ana_text), ana_text); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 250 | |
| 251 | static const struct snd_kcontrol_new out = |
| 252 | SOC_DAPM_ENUM_EXT("ANA", ana_enum, tse850_get_ana, tse850_put_ana); |
| 253 | |
| 254 | static const struct snd_soc_dapm_widget tse850_dapm_widgets[] = { |
| 255 | SND_SOC_DAPM_LINE("OUT1", NULL), |
| 256 | SND_SOC_DAPM_LINE("OUT2", NULL), |
| 257 | SND_SOC_DAPM_LINE("IN1", NULL), |
| 258 | SND_SOC_DAPM_LINE("IN2", NULL), |
| 259 | SND_SOC_DAPM_INPUT("DAC"), |
| 260 | SND_SOC_DAPM_AIF_IN("AIFINL", "Playback", 0, SND_SOC_NOPM, 0, 0), |
| 261 | SND_SOC_DAPM_AIF_IN("AIFINR", "Playback", 1, SND_SOC_NOPM, 0, 0), |
| 262 | SOC_MIXER_ARRAY("MIX", SND_SOC_NOPM, 0, 0, mix), |
| 263 | SND_SOC_DAPM_MUX("MUX1", SND_SOC_NOPM, 0, 0, &mux1), |
| 264 | SND_SOC_DAPM_MUX("MUX2", SND_SOC_NOPM, 0, 0, &mux2), |
| 265 | SND_SOC_DAPM_OUT_DRV("OUT", SND_SOC_NOPM, 0, 0, &out, 1), |
| 266 | }; |
| 267 | |
| 268 | /* |
| 269 | * These connections are not entirely correct, since both IN1 and IN2 |
| 270 | * are always fed to MIX (if the "IN switch" is set so), i.e. without |
| 271 | * regard to the loop1 and loop2 relays that according to this only |
| 272 | * control MUX1 and MUX2 but in fact also control how the input signals |
| 273 | * are routed. |
| 274 | * But, 1) I don't know how to do it right, and 2) it doesn't seem to |
| 275 | * matter in practice since nothing is powered in those sections anyway. |
| 276 | */ |
| 277 | static const struct snd_soc_dapm_route tse850_intercon[] = { |
| 278 | { "OUT1", NULL, "MUX1" }, |
| 279 | { "OUT2", NULL, "MUX2" }, |
| 280 | |
| 281 | { "MUX1", "Loop", "IN1" }, |
| 282 | { "MUX1", "Mixer", "OUT" }, |
| 283 | |
| 284 | { "MUX2", "Loop", "IN2" }, |
| 285 | { "MUX2", "Mixer", "OUT" }, |
| 286 | |
| 287 | { "OUT", NULL, "MIX" }, |
| 288 | |
| 289 | { "MIX", NULL, "DAC" }, |
| 290 | { "MIX", "IN Switch", "IN1" }, |
| 291 | { "MIX", "IN Switch", "IN2" }, |
| 292 | |
| 293 | /* connect board input to the codec left channel output pin */ |
| 294 | { "DAC", NULL, "OUTL" }, |
| 295 | }; |
| 296 | |
Kuninori Morimoto | 1199dd9 | 2019-06-06 13:13:51 +0900 | [diff] [blame] | 297 | SND_SOC_DAILINK_DEFS(pcm, |
| 298 | DAILINK_COMP_ARRAY(COMP_EMPTY()), |
Kuninori Morimoto | 6910bb9 | 2019-06-28 10:47:10 +0900 | [diff] [blame] | 299 | DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "pcm512x-hifi")), |
| 300 | DAILINK_COMP_ARRAY(COMP_EMPTY())); |
Kuninori Morimoto | 1199dd9 | 2019-06-06 13:13:51 +0900 | [diff] [blame] | 301 | |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 302 | static struct snd_soc_dai_link tse850_dailink = { |
| 303 | .name = "TSE-850", |
| 304 | .stream_name = "TSE-850-PCM", |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 305 | .dai_fmt = SND_SOC_DAIFMT_I2S |
| 306 | | SND_SOC_DAIFMT_NB_NF |
Mark Brown | 4a8cf93 | 2021-09-15 18:30:23 +0100 | [diff] [blame] | 307 | | SND_SOC_DAIFMT_CBP_CFC, |
Kuninori Morimoto | 1199dd9 | 2019-06-06 13:13:51 +0900 | [diff] [blame] | 308 | SND_SOC_DAILINK_REG(pcm), |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 309 | }; |
| 310 | |
| 311 | static struct snd_soc_card tse850_card = { |
| 312 | .name = "TSE-850-ASoC", |
| 313 | .owner = THIS_MODULE, |
| 314 | .dai_link = &tse850_dailink, |
| 315 | .num_links = 1, |
| 316 | .dapm_widgets = tse850_dapm_widgets, |
| 317 | .num_dapm_widgets = ARRAY_SIZE(tse850_dapm_widgets), |
| 318 | .dapm_routes = tse850_intercon, |
| 319 | .num_dapm_routes = ARRAY_SIZE(tse850_intercon), |
| 320 | .fully_routed = true, |
| 321 | }; |
| 322 | |
| 323 | static int tse850_dt_init(struct platform_device *pdev) |
| 324 | { |
| 325 | struct device_node *np = pdev->dev.of_node; |
| 326 | struct device_node *codec_np, *cpu_np; |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 327 | struct snd_soc_dai_link *dailink = &tse850_dailink; |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 328 | |
| 329 | if (!np) { |
| 330 | dev_err(&pdev->dev, "only device tree supported\n"); |
| 331 | return -EINVAL; |
| 332 | } |
| 333 | |
Peter Rosin | ca8c7f2 | 2016-12-06 20:22:37 +0100 | [diff] [blame] | 334 | cpu_np = of_parse_phandle(np, "axentia,cpu-dai", 0); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 335 | if (!cpu_np) { |
Peter Rosin | ca8c7f2 | 2016-12-06 20:22:37 +0100 | [diff] [blame] | 336 | dev_err(&pdev->dev, "failed to get cpu dai\n"); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 337 | return -EINVAL; |
| 338 | } |
Kuninori Morimoto | 1199dd9 | 2019-06-06 13:13:51 +0900 | [diff] [blame] | 339 | dailink->cpus->of_node = cpu_np; |
Kuninori Morimoto | 6910bb9 | 2019-06-28 10:47:10 +0900 | [diff] [blame] | 340 | dailink->platforms->of_node = cpu_np; |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 341 | of_node_put(cpu_np); |
| 342 | |
| 343 | codec_np = of_parse_phandle(np, "axentia,audio-codec", 0); |
| 344 | if (!codec_np) { |
| 345 | dev_err(&pdev->dev, "failed to get codec info\n"); |
| 346 | return -EINVAL; |
| 347 | } |
Kuninori Morimoto | 1199dd9 | 2019-06-06 13:13:51 +0900 | [diff] [blame] | 348 | dailink->codecs->of_node = codec_np; |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 349 | of_node_put(codec_np); |
| 350 | |
| 351 | return 0; |
| 352 | } |
| 353 | |
| 354 | static int tse850_probe(struct platform_device *pdev) |
| 355 | { |
| 356 | struct snd_soc_card *card = &tse850_card; |
| 357 | struct device *dev = card->dev = &pdev->dev; |
| 358 | struct tse850_priv *tse850; |
| 359 | int ret; |
| 360 | |
| 361 | tse850 = devm_kzalloc(dev, sizeof(*tse850), GFP_KERNEL); |
| 362 | if (!tse850) |
| 363 | return -ENOMEM; |
| 364 | |
| 365 | snd_soc_card_set_drvdata(card, tse850); |
| 366 | |
| 367 | ret = tse850_dt_init(pdev); |
| 368 | if (ret) { |
| 369 | dev_err(dev, "failed to init dt info\n"); |
| 370 | return ret; |
| 371 | } |
| 372 | |
| 373 | tse850->add = devm_gpiod_get(dev, "axentia,add", GPIOD_OUT_HIGH); |
Kuninori Morimoto | 0624daf | 2021-12-14 11:08:32 +0900 | [diff] [blame] | 374 | if (IS_ERR(tse850->add)) |
| 375 | return dev_err_probe(dev, PTR_ERR(tse850->add), |
| 376 | "failed to get 'add' gpio\n"); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 377 | tse850->add_cache = 1; |
| 378 | |
| 379 | tse850->loop1 = devm_gpiod_get(dev, "axentia,loop1", GPIOD_OUT_HIGH); |
Kuninori Morimoto | 0624daf | 2021-12-14 11:08:32 +0900 | [diff] [blame] | 380 | if (IS_ERR(tse850->loop1)) |
| 381 | return dev_err_probe(dev, PTR_ERR(tse850->loop1), |
| 382 | "failed to get 'loop1' gpio\n"); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 383 | tse850->loop1_cache = 1; |
| 384 | |
| 385 | tse850->loop2 = devm_gpiod_get(dev, "axentia,loop2", GPIOD_OUT_HIGH); |
Kuninori Morimoto | 0624daf | 2021-12-14 11:08:32 +0900 | [diff] [blame] | 386 | if (IS_ERR(tse850->loop2)) |
| 387 | return dev_err_probe(dev, PTR_ERR(tse850->loop2), |
| 388 | "failed to get 'loop2' gpio\n"); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 389 | tse850->loop2_cache = 1; |
| 390 | |
| 391 | tse850->ana = devm_regulator_get(dev, "axentia,ana"); |
Kuninori Morimoto | 0624daf | 2021-12-14 11:08:32 +0900 | [diff] [blame] | 392 | if (IS_ERR(tse850->ana)) |
| 393 | return dev_err_probe(dev, PTR_ERR(tse850->ana), |
| 394 | "failed to get 'ana' regulator\n"); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 395 | |
| 396 | ret = regulator_enable(tse850->ana); |
| 397 | if (ret < 0) { |
| 398 | dev_err(dev, "failed to enable the 'ana' regulator\n"); |
| 399 | return ret; |
| 400 | } |
| 401 | |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 402 | ret = snd_soc_register_card(card); |
| 403 | if (ret) { |
| 404 | dev_err(dev, "snd_soc_register_card failed\n"); |
Peter Rosin | ca8c7f2 | 2016-12-06 20:22:37 +0100 | [diff] [blame] | 405 | goto err_disable_ana; |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | return 0; |
| 409 | |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 410 | err_disable_ana: |
| 411 | regulator_disable(tse850->ana); |
| 412 | return ret; |
| 413 | } |
| 414 | |
| 415 | static int tse850_remove(struct platform_device *pdev) |
| 416 | { |
| 417 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 418 | struct tse850_priv *tse850 = snd_soc_card_get_drvdata(card); |
| 419 | |
| 420 | snd_soc_unregister_card(card); |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 421 | regulator_disable(tse850->ana); |
| 422 | |
| 423 | return 0; |
| 424 | } |
| 425 | |
| 426 | static const struct of_device_id tse850_dt_ids[] = { |
| 427 | { .compatible = "axentia,tse850-pcm5142", }, |
| 428 | { /* sentinel */ } |
| 429 | }; |
| 430 | MODULE_DEVICE_TABLE(of, tse850_dt_ids); |
| 431 | |
| 432 | static struct platform_driver tse850_driver = { |
| 433 | .driver = { |
| 434 | .name = "axentia-tse850-pcm5142", |
| 435 | .of_match_table = of_match_ptr(tse850_dt_ids), |
| 436 | }, |
| 437 | .probe = tse850_probe, |
| 438 | .remove = tse850_remove, |
| 439 | }; |
| 440 | |
| 441 | module_platform_driver(tse850_driver); |
| 442 | |
| 443 | /* Module information */ |
| 444 | MODULE_AUTHOR("Peter Rosin <peda@axentia.se>"); |
| 445 | MODULE_DESCRIPTION("ALSA SoC driver for TSE-850 with PCM5142 codec"); |
Peter Rosin | 1b3b798 | 2018-08-20 12:14:09 +0200 | [diff] [blame] | 446 | MODULE_LICENSE("GPL v2"); |