Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 1 | /* |
| 2 | * tosa.c -- SoC audio for Tosa |
| 3 | * |
| 4 | * Copyright 2005 Wolfson Microelectronics PLC. |
| 5 | * Copyright 2005 Openedhand Ltd. |
| 6 | * |
Liam Girdwood | d331124 | 2008-10-12 13:17:36 +0100 | [diff] [blame] | 7 | * Authors: Liam Girdwood <lrg@slimlogic.co.uk> |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 8 | * Richard Purdie <richard@openedhand.com> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License as published by the |
| 12 | * Free Software Foundation; either version 2 of the License, or (at your |
| 13 | * option) any later version. |
| 14 | * |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 15 | * GPIO's |
| 16 | * 1 - Jack Insertion |
| 17 | * 5 - Hookswitch (headset answer/hang up switch) |
| 18 | * |
| 19 | */ |
| 20 | |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/moduleparam.h> |
| 23 | #include <linux/device.h> |
Dmitry Baryshkov | 4440cbd | 2008-06-14 11:42:57 +0100 | [diff] [blame] | 24 | #include <linux/gpio.h> |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 25 | |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 26 | #include <sound/core.h> |
| 27 | #include <sound/pcm.h> |
| 28 | #include <sound/soc.h> |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 29 | |
| 30 | #include <asm/mach-types.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 31 | #include <mach/tosa.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 32 | #include <mach/audio.h> |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 33 | |
| 34 | #include "../codecs/wm9712.h" |
Liam Girdwood | cb4c048 | 2007-02-02 17:23:11 +0100 | [diff] [blame] | 35 | #include "pxa2xx-ac97.h" |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 36 | |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 37 | #define TOSA_HP 0 |
| 38 | #define TOSA_MIC_INT 1 |
| 39 | #define TOSA_HEADSET 2 |
| 40 | #define TOSA_HP_OFF 3 |
| 41 | #define TOSA_SPK_ON 0 |
| 42 | #define TOSA_SPK_OFF 1 |
| 43 | |
| 44 | static int tosa_jack_func; |
| 45 | static int tosa_spk_func; |
| 46 | |
Lars-Peter Clausen | 079942a | 2014-03-12 15:27:39 +0100 | [diff] [blame] | 47 | static void tosa_ext_control(struct snd_soc_dapm_context *dapm) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 48 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 49 | |
Charles Keepax | 26e24dd | 2014-02-18 15:22:28 +0000 | [diff] [blame] | 50 | snd_soc_dapm_mutex_lock(dapm); |
| 51 | |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 52 | /* set up jack connection */ |
| 53 | switch (tosa_jack_func) { |
| 54 | case TOSA_HP: |
Charles Keepax | 26e24dd | 2014-02-18 15:22:28 +0000 | [diff] [blame] | 55 | snd_soc_dapm_disable_pin_unlocked(dapm, "Mic (Internal)"); |
| 56 | snd_soc_dapm_enable_pin_unlocked(dapm, "Headphone Jack"); |
| 57 | snd_soc_dapm_disable_pin_unlocked(dapm, "Headset Jack"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 58 | break; |
| 59 | case TOSA_MIC_INT: |
Charles Keepax | 26e24dd | 2014-02-18 15:22:28 +0000 | [diff] [blame] | 60 | snd_soc_dapm_enable_pin_unlocked(dapm, "Mic (Internal)"); |
| 61 | snd_soc_dapm_disable_pin_unlocked(dapm, "Headphone Jack"); |
| 62 | snd_soc_dapm_disable_pin_unlocked(dapm, "Headset Jack"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 63 | break; |
| 64 | case TOSA_HEADSET: |
Charles Keepax | 26e24dd | 2014-02-18 15:22:28 +0000 | [diff] [blame] | 65 | snd_soc_dapm_disable_pin_unlocked(dapm, "Mic (Internal)"); |
| 66 | snd_soc_dapm_disable_pin_unlocked(dapm, "Headphone Jack"); |
| 67 | snd_soc_dapm_enable_pin_unlocked(dapm, "Headset Jack"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 68 | break; |
| 69 | } |
| 70 | |
| 71 | if (tosa_spk_func == TOSA_SPK_ON) |
Charles Keepax | 26e24dd | 2014-02-18 15:22:28 +0000 | [diff] [blame] | 72 | snd_soc_dapm_enable_pin_unlocked(dapm, "Speaker"); |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 73 | else |
Charles Keepax | 26e24dd | 2014-02-18 15:22:28 +0000 | [diff] [blame] | 74 | snd_soc_dapm_disable_pin_unlocked(dapm, "Speaker"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 75 | |
Charles Keepax | 26e24dd | 2014-02-18 15:22:28 +0000 | [diff] [blame] | 76 | snd_soc_dapm_sync_unlocked(dapm); |
| 77 | |
| 78 | snd_soc_dapm_mutex_unlock(dapm); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static int tosa_startup(struct snd_pcm_substream *substream) |
| 82 | { |
| 83 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 84 | |
| 85 | /* check the jack status at stream startup */ |
Lars-Peter Clausen | 079942a | 2014-03-12 15:27:39 +0100 | [diff] [blame] | 86 | tosa_ext_control(&rtd->card->dapm); |
Mark Brown | 71a2956 | 2010-11-05 13:50:48 -0400 | [diff] [blame] | 87 | |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | static struct snd_soc_ops tosa_ops = { |
| 92 | .startup = tosa_startup, |
| 93 | }; |
| 94 | |
| 95 | static int tosa_get_jack(struct snd_kcontrol *kcontrol, |
| 96 | struct snd_ctl_elem_value *ucontrol) |
| 97 | { |
Takashi Iwai | 419396d | 2016-02-29 17:23:53 +0100 | [diff] [blame] | 98 | ucontrol->value.enumerated.item[0] = tosa_jack_func; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | static int tosa_set_jack(struct snd_kcontrol *kcontrol, |
| 103 | struct snd_ctl_elem_value *ucontrol) |
| 104 | { |
Lars-Peter Clausen | 079942a | 2014-03-12 15:27:39 +0100 | [diff] [blame] | 105 | struct snd_soc_card *card = snd_kcontrol_chip(kcontrol); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 106 | |
Takashi Iwai | 419396d | 2016-02-29 17:23:53 +0100 | [diff] [blame] | 107 | if (tosa_jack_func == ucontrol->value.enumerated.item[0]) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 108 | return 0; |
| 109 | |
Takashi Iwai | 419396d | 2016-02-29 17:23:53 +0100 | [diff] [blame] | 110 | tosa_jack_func = ucontrol->value.enumerated.item[0]; |
Lars-Peter Clausen | 079942a | 2014-03-12 15:27:39 +0100 | [diff] [blame] | 111 | tosa_ext_control(&card->dapm); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 112 | return 1; |
| 113 | } |
| 114 | |
| 115 | static int tosa_get_spk(struct snd_kcontrol *kcontrol, |
| 116 | struct snd_ctl_elem_value *ucontrol) |
| 117 | { |
Takashi Iwai | 419396d | 2016-02-29 17:23:53 +0100 | [diff] [blame] | 118 | ucontrol->value.enumerated.item[0] = tosa_spk_func; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | static int tosa_set_spk(struct snd_kcontrol *kcontrol, |
| 123 | struct snd_ctl_elem_value *ucontrol) |
| 124 | { |
Lars-Peter Clausen | 079942a | 2014-03-12 15:27:39 +0100 | [diff] [blame] | 125 | struct snd_soc_card *card = snd_kcontrol_chip(kcontrol); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 126 | |
Takashi Iwai | 419396d | 2016-02-29 17:23:53 +0100 | [diff] [blame] | 127 | if (tosa_spk_func == ucontrol->value.enumerated.item[0]) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 128 | return 0; |
| 129 | |
Takashi Iwai | 419396d | 2016-02-29 17:23:53 +0100 | [diff] [blame] | 130 | tosa_spk_func = ucontrol->value.enumerated.item[0]; |
Lars-Peter Clausen | 079942a | 2014-03-12 15:27:39 +0100 | [diff] [blame] | 131 | tosa_ext_control(&card->dapm); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 132 | return 1; |
| 133 | } |
| 134 | |
| 135 | /* tosa dapm event handlers */ |
Jarkko Nikula | 338c7ed | 2008-02-28 12:34:48 +0100 | [diff] [blame] | 136 | static int tosa_hp_event(struct snd_soc_dapm_widget *w, |
| 137 | struct snd_kcontrol *k, int event) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 138 | { |
Dmitry Baryshkov | 4440cbd | 2008-06-14 11:42:57 +0100 | [diff] [blame] | 139 | gpio_set_value(TOSA_GPIO_L_MUTE, SND_SOC_DAPM_EVENT_ON(event) ? 1 :0); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 140 | return 0; |
| 141 | } |
| 142 | |
| 143 | /* tosa machine dapm widgets */ |
| 144 | static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = { |
| 145 | SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event), |
| 146 | SND_SOC_DAPM_HP("Headset Jack", NULL), |
| 147 | SND_SOC_DAPM_MIC("Mic (Internal)", NULL), |
| 148 | SND_SOC_DAPM_SPK("Speaker", NULL), |
| 149 | }; |
| 150 | |
| 151 | /* tosa audio map */ |
Dmitry Baryshkov | 76d39d0 | 2008-07-08 19:45:20 +0400 | [diff] [blame] | 152 | static const struct snd_soc_dapm_route audio_map[] = { |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 153 | |
| 154 | /* headphone connected to HPOUTL, HPOUTR */ |
| 155 | {"Headphone Jack", NULL, "HPOUTL"}, |
| 156 | {"Headphone Jack", NULL, "HPOUTR"}, |
| 157 | |
| 158 | /* ext speaker connected to LOUT2, ROUT2 */ |
| 159 | {"Speaker", NULL, "LOUT2"}, |
| 160 | {"Speaker", NULL, "ROUT2"}, |
| 161 | |
| 162 | /* internal mic is connected to mic1, mic2 differential - with bias */ |
| 163 | {"MIC1", NULL, "Mic Bias"}, |
| 164 | {"MIC2", NULL, "Mic Bias"}, |
| 165 | {"Mic Bias", NULL, "Mic (Internal)"}, |
| 166 | |
| 167 | /* headset is connected to HPOUTR, and LINEINR with bias */ |
| 168 | {"Headset Jack", NULL, "HPOUTR"}, |
| 169 | {"LINEINR", NULL, "Mic Bias"}, |
| 170 | {"Mic Bias", NULL, "Headset Jack"}, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset", |
| 174 | "Off"}; |
| 175 | static const char *spk_function[] = {"On", "Off"}; |
| 176 | static const struct soc_enum tosa_enum[] = { |
| 177 | SOC_ENUM_SINGLE_EXT(5, jack_function), |
| 178 | SOC_ENUM_SINGLE_EXT(2, spk_function), |
| 179 | }; |
| 180 | |
| 181 | static const struct snd_kcontrol_new tosa_controls[] = { |
| 182 | SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack, |
| 183 | tosa_set_jack), |
| 184 | SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk, |
| 185 | tosa_set_spk), |
| 186 | }; |
| 187 | |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 188 | static struct snd_soc_dai_link tosa_dai[] = { |
| 189 | { |
| 190 | .name = "AC97", |
| 191 | .stream_name = "AC97 HiFi", |
Dmitry Eremin-Solenikov | 4bfc4e2 | 2011-02-23 02:29:11 +0300 | [diff] [blame] | 192 | .cpu_dai_name = "pxa2xx-ac97", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 193 | .codec_dai_name = "wm9712-hifi", |
| 194 | .platform_name = "pxa-pcm-audio", |
| 195 | .codec_name = "wm9712-codec", |
Liam Girdwood | cb4c048 | 2007-02-02 17:23:11 +0100 | [diff] [blame] | 196 | .ops = &tosa_ops, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 197 | }, |
| 198 | { |
| 199 | .name = "AC97 Aux", |
| 200 | .stream_name = "AC97 Aux", |
Dmitry Eremin-Solenikov | 4bfc4e2 | 2011-02-23 02:29:11 +0300 | [diff] [blame] | 201 | .cpu_dai_name = "pxa2xx-ac97-aux", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 202 | .codec_dai_name = "wm9712-aux", |
| 203 | .platform_name = "pxa-pcm-audio", |
| 204 | .codec_name = "wm9712-codec", |
Liam Girdwood | cb4c048 | 2007-02-02 17:23:11 +0100 | [diff] [blame] | 205 | .ops = &tosa_ops, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 206 | }, |
| 207 | }; |
| 208 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 209 | static struct snd_soc_card tosa = { |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 210 | .name = "Tosa", |
Axel Lin | 561c6a1 | 2011-12-22 09:44:43 +0800 | [diff] [blame] | 211 | .owner = THIS_MODULE, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 212 | .dai_link = tosa_dai, |
| 213 | .num_links = ARRAY_SIZE(tosa_dai), |
Lars-Peter Clausen | 079942a | 2014-03-12 15:27:39 +0100 | [diff] [blame] | 214 | |
| 215 | .controls = tosa_controls, |
| 216 | .num_controls = ARRAY_SIZE(tosa_controls), |
| 217 | .dapm_widgets = tosa_dapm_widgets, |
| 218 | .num_dapm_widgets = ARRAY_SIZE(tosa_dapm_widgets), |
| 219 | .dapm_routes = audio_map, |
| 220 | .num_dapm_routes = ARRAY_SIZE(audio_map), |
Lars-Peter Clausen | c02e723 | 2015-05-07 21:27:48 +0200 | [diff] [blame] | 221 | .fully_routed = true, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 222 | }; |
| 223 | |
Bill Pemberton | 570f6fe | 2012-12-07 09:26:17 -0500 | [diff] [blame] | 224 | static int tosa_probe(struct platform_device *pdev) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 225 | { |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 226 | struct snd_soc_card *card = ⤩ |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 227 | int ret; |
| 228 | |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 229 | ret = gpio_request_one(TOSA_GPIO_L_MUTE, GPIOF_OUT_INIT_LOW, |
| 230 | "Headphone Jack"); |
| 231 | if (ret) |
| 232 | return ret; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 233 | |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 234 | card->dev = &pdev->dev; |
| 235 | |
Axel Lin | 2fd7076 | 2015-09-01 10:32:59 +0800 | [diff] [blame] | 236 | ret = devm_snd_soc_register_card(&pdev->dev, card); |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 237 | if (ret) { |
| 238 | dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n", |
| 239 | ret); |
| 240 | gpio_free(TOSA_GPIO_L_MUTE); |
Dmitry Baryshkov | 4440cbd | 2008-06-14 11:42:57 +0100 | [diff] [blame] | 241 | } |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 242 | return ret; |
| 243 | } |
| 244 | |
Bill Pemberton | 570f6fe | 2012-12-07 09:26:17 -0500 | [diff] [blame] | 245 | static int tosa_remove(struct platform_device *pdev) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 246 | { |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 247 | gpio_free(TOSA_GPIO_L_MUTE); |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 248 | return 0; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 249 | } |
| 250 | |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 251 | static struct platform_driver tosa_driver = { |
| 252 | .driver = { |
| 253 | .name = "tosa-audio", |
Dmitry Eremin-Solenikov | 7db1698 | 2013-10-17 14:01:37 +0400 | [diff] [blame] | 254 | .pm = &snd_soc_pm_ops, |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 255 | }, |
| 256 | .probe = tosa_probe, |
Bill Pemberton | 570f6fe | 2012-12-07 09:26:17 -0500 | [diff] [blame] | 257 | .remove = tosa_remove, |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 258 | }; |
| 259 | |
| 260 | module_platform_driver(tosa_driver); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 261 | |
| 262 | /* Module information */ |
| 263 | MODULE_AUTHOR("Richard Purdie"); |
| 264 | MODULE_DESCRIPTION("ALSA SoC Tosa"); |
| 265 | MODULE_LICENSE("GPL"); |
Axel Lin | f285b8c | 2011-12-15 10:57:22 +0800 | [diff] [blame] | 266 | MODULE_ALIAS("platform:tosa-audio"); |