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> |
| 29 | #include <sound/soc-dapm.h> |
| 30 | |
| 31 | #include <asm/mach-types.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 32 | #include <mach/tosa.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 33 | #include <mach/audio.h> |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 34 | |
| 35 | #include "../codecs/wm9712.h" |
Liam Girdwood | cb4c048 | 2007-02-02 17:23:11 +0100 | [diff] [blame] | 36 | #include "pxa2xx-ac97.h" |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 37 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 38 | static struct snd_soc_card tosa; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 39 | |
| 40 | #define TOSA_HP 0 |
| 41 | #define TOSA_MIC_INT 1 |
| 42 | #define TOSA_HEADSET 2 |
| 43 | #define TOSA_HP_OFF 3 |
| 44 | #define TOSA_SPK_ON 0 |
| 45 | #define TOSA_SPK_OFF 1 |
| 46 | |
| 47 | static int tosa_jack_func; |
| 48 | static int tosa_spk_func; |
| 49 | |
| 50 | static void tosa_ext_control(struct snd_soc_codec *codec) |
| 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: |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 55 | snd_soc_dapm_disable_pin(codec, "Mic (Internal)"); |
| 56 | snd_soc_dapm_enable_pin(codec, "Headphone Jack"); |
| 57 | snd_soc_dapm_disable_pin(codec, "Headset Jack"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 58 | break; |
| 59 | case TOSA_MIC_INT: |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 60 | snd_soc_dapm_enable_pin(codec, "Mic (Internal)"); |
| 61 | snd_soc_dapm_disable_pin(codec, "Headphone Jack"); |
| 62 | snd_soc_dapm_disable_pin(codec, "Headset Jack"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 63 | break; |
| 64 | case TOSA_HEADSET: |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 65 | snd_soc_dapm_disable_pin(codec, "Mic (Internal)"); |
| 66 | snd_soc_dapm_disable_pin(codec, "Headphone Jack"); |
| 67 | snd_soc_dapm_enable_pin(codec, "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) |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 72 | snd_soc_dapm_enable_pin(codec, "Speaker"); |
| 73 | else |
| 74 | snd_soc_dapm_disable_pin(codec, "Speaker"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 75 | |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 76 | snd_soc_dapm_sync(codec); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static int tosa_startup(struct snd_pcm_substream *substream) |
| 80 | { |
| 81 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Eric Miao | cb99062 | 2010-11-02 05:10:07 +0800 | [diff] [blame] | 82 | struct snd_soc_codec *codec = rtd->codec; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 83 | |
| 84 | /* check the jack status at stream startup */ |
| 85 | tosa_ext_control(codec); |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | static struct snd_soc_ops tosa_ops = { |
| 90 | .startup = tosa_startup, |
| 91 | }; |
| 92 | |
| 93 | static int tosa_get_jack(struct snd_kcontrol *kcontrol, |
| 94 | struct snd_ctl_elem_value *ucontrol) |
| 95 | { |
| 96 | ucontrol->value.integer.value[0] = tosa_jack_func; |
| 97 | return 0; |
| 98 | } |
| 99 | |
| 100 | static int tosa_set_jack(struct snd_kcontrol *kcontrol, |
| 101 | struct snd_ctl_elem_value *ucontrol) |
| 102 | { |
| 103 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 104 | |
| 105 | if (tosa_jack_func == ucontrol->value.integer.value[0]) |
| 106 | return 0; |
| 107 | |
| 108 | tosa_jack_func = ucontrol->value.integer.value[0]; |
| 109 | tosa_ext_control(codec); |
| 110 | return 1; |
| 111 | } |
| 112 | |
| 113 | static int tosa_get_spk(struct snd_kcontrol *kcontrol, |
| 114 | struct snd_ctl_elem_value *ucontrol) |
| 115 | { |
| 116 | ucontrol->value.integer.value[0] = tosa_spk_func; |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | static int tosa_set_spk(struct snd_kcontrol *kcontrol, |
| 121 | struct snd_ctl_elem_value *ucontrol) |
| 122 | { |
| 123 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 124 | |
| 125 | if (tosa_spk_func == ucontrol->value.integer.value[0]) |
| 126 | return 0; |
| 127 | |
| 128 | tosa_spk_func = ucontrol->value.integer.value[0]; |
| 129 | tosa_ext_control(codec); |
| 130 | return 1; |
| 131 | } |
| 132 | |
| 133 | /* tosa dapm event handlers */ |
Jarkko Nikula | 338c7ed | 2008-02-28 12:34:48 +0100 | [diff] [blame] | 134 | static int tosa_hp_event(struct snd_soc_dapm_widget *w, |
| 135 | struct snd_kcontrol *k, int event) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 136 | { |
Dmitry Baryshkov | 4440cbd | 2008-06-14 11:42:57 +0100 | [diff] [blame] | 137 | 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] | 138 | return 0; |
| 139 | } |
| 140 | |
| 141 | /* tosa machine dapm widgets */ |
| 142 | static const struct snd_soc_dapm_widget tosa_dapm_widgets[] = { |
| 143 | SND_SOC_DAPM_HP("Headphone Jack", tosa_hp_event), |
| 144 | SND_SOC_DAPM_HP("Headset Jack", NULL), |
| 145 | SND_SOC_DAPM_MIC("Mic (Internal)", NULL), |
| 146 | SND_SOC_DAPM_SPK("Speaker", NULL), |
| 147 | }; |
| 148 | |
| 149 | /* tosa audio map */ |
Dmitry Baryshkov | 76d39d0 | 2008-07-08 19:45:20 +0400 | [diff] [blame] | 150 | static const struct snd_soc_dapm_route audio_map[] = { |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 151 | |
| 152 | /* headphone connected to HPOUTL, HPOUTR */ |
| 153 | {"Headphone Jack", NULL, "HPOUTL"}, |
| 154 | {"Headphone Jack", NULL, "HPOUTR"}, |
| 155 | |
| 156 | /* ext speaker connected to LOUT2, ROUT2 */ |
| 157 | {"Speaker", NULL, "LOUT2"}, |
| 158 | {"Speaker", NULL, "ROUT2"}, |
| 159 | |
| 160 | /* internal mic is connected to mic1, mic2 differential - with bias */ |
| 161 | {"MIC1", NULL, "Mic Bias"}, |
| 162 | {"MIC2", NULL, "Mic Bias"}, |
| 163 | {"Mic Bias", NULL, "Mic (Internal)"}, |
| 164 | |
| 165 | /* headset is connected to HPOUTR, and LINEINR with bias */ |
| 166 | {"Headset Jack", NULL, "HPOUTR"}, |
| 167 | {"LINEINR", NULL, "Mic Bias"}, |
| 168 | {"Mic Bias", NULL, "Headset Jack"}, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 169 | }; |
| 170 | |
| 171 | static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset", |
| 172 | "Off"}; |
| 173 | static const char *spk_function[] = {"On", "Off"}; |
| 174 | static const struct soc_enum tosa_enum[] = { |
| 175 | SOC_ENUM_SINGLE_EXT(5, jack_function), |
| 176 | SOC_ENUM_SINGLE_EXT(2, spk_function), |
| 177 | }; |
| 178 | |
| 179 | static const struct snd_kcontrol_new tosa_controls[] = { |
| 180 | SOC_ENUM_EXT("Jack Function", tosa_enum[0], tosa_get_jack, |
| 181 | tosa_set_jack), |
| 182 | SOC_ENUM_EXT("Speaker Function", tosa_enum[1], tosa_get_spk, |
| 183 | tosa_set_spk), |
| 184 | }; |
| 185 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 186 | static int tosa_ac97_init(struct snd_soc_pcm_runtime *rtd) |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 187 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 188 | struct snd_soc_codec *codec = rtd->codec; |
Philipp Zabel | eb5f6d75 | 2009-03-12 11:07:54 +0100 | [diff] [blame] | 189 | int err; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 190 | |
Mark Brown | 35f5e54 | 2008-09-27 10:45:09 +0100 | [diff] [blame] | 191 | snd_soc_dapm_nc_pin(codec, "OUT3"); |
| 192 | snd_soc_dapm_nc_pin(codec, "MONOOUT"); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 193 | |
| 194 | /* add tosa specific controls */ |
Philipp Zabel | eb5f6d75 | 2009-03-12 11:07:54 +0100 | [diff] [blame] | 195 | err = snd_soc_add_controls(codec, tosa_controls, |
| 196 | ARRAY_SIZE(tosa_controls)); |
| 197 | if (err < 0) |
| 198 | return err; |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 199 | |
| 200 | /* add tosa specific widgets */ |
Dmitry Baryshkov | 76d39d0 | 2008-07-08 19:45:20 +0400 | [diff] [blame] | 201 | snd_soc_dapm_new_controls(codec, tosa_dapm_widgets, |
Mark Brown | 25191c4 | 2008-05-13 14:55:48 +0200 | [diff] [blame] | 202 | ARRAY_SIZE(tosa_dapm_widgets)); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 203 | |
| 204 | /* set up tosa specific audio path audio_map */ |
Mark Brown | 25191c4 | 2008-05-13 14:55:48 +0200 | [diff] [blame] | 205 | snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 206 | |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 207 | snd_soc_dapm_sync(codec); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | static struct snd_soc_dai_link tosa_dai[] = { |
| 212 | { |
| 213 | .name = "AC97", |
| 214 | .stream_name = "AC97 HiFi", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 215 | .cpu_dai_name = "pxa-ac97.0", |
| 216 | .codec_dai_name = "wm9712-hifi", |
| 217 | .platform_name = "pxa-pcm-audio", |
| 218 | .codec_name = "wm9712-codec", |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 219 | .init = tosa_ac97_init, |
Liam Girdwood | cb4c048 | 2007-02-02 17:23:11 +0100 | [diff] [blame] | 220 | .ops = &tosa_ops, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 221 | }, |
| 222 | { |
| 223 | .name = "AC97 Aux", |
| 224 | .stream_name = "AC97 Aux", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 225 | .cpu_dai_name = "pxa-ac97.1", |
| 226 | .codec_dai_name = "wm9712-aux", |
| 227 | .platform_name = "pxa-pcm-audio", |
| 228 | .codec_name = "wm9712-codec", |
Liam Girdwood | cb4c048 | 2007-02-02 17:23:11 +0100 | [diff] [blame] | 229 | .ops = &tosa_ops, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 230 | }, |
| 231 | }; |
| 232 | |
Dmitry Baryshkov | 5c0d7bb | 2008-11-25 09:35:21 +0300 | [diff] [blame] | 233 | static int tosa_probe(struct platform_device *dev) |
| 234 | { |
| 235 | int ret; |
| 236 | |
| 237 | ret = gpio_request(TOSA_GPIO_L_MUTE, "Headphone Jack"); |
| 238 | if (ret) |
| 239 | return ret; |
| 240 | ret = gpio_direction_output(TOSA_GPIO_L_MUTE, 0); |
| 241 | if (ret) |
| 242 | gpio_free(TOSA_GPIO_L_MUTE); |
| 243 | |
| 244 | return ret; |
| 245 | } |
| 246 | |
| 247 | static int tosa_remove(struct platform_device *dev) |
| 248 | { |
| 249 | gpio_free(TOSA_GPIO_L_MUTE); |
| 250 | return 0; |
| 251 | } |
| 252 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 253 | static struct snd_soc_card tosa = { |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 254 | .name = "Tosa", |
| 255 | .dai_link = tosa_dai, |
| 256 | .num_links = ARRAY_SIZE(tosa_dai), |
Dmitry Baryshkov | 5c0d7bb | 2008-11-25 09:35:21 +0300 | [diff] [blame] | 257 | .probe = tosa_probe, |
| 258 | .remove = tosa_remove, |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 259 | }; |
| 260 | |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 261 | static struct platform_device *tosa_snd_device; |
| 262 | |
| 263 | static int __init tosa_init(void) |
| 264 | { |
| 265 | int ret; |
| 266 | |
| 267 | if (!machine_is_tosa()) |
| 268 | return -ENODEV; |
| 269 | |
| 270 | tosa_snd_device = platform_device_alloc("soc-audio", -1); |
Dmitry Baryshkov | 4440cbd | 2008-06-14 11:42:57 +0100 | [diff] [blame] | 271 | if (!tosa_snd_device) { |
| 272 | ret = -ENOMEM; |
| 273 | goto err_alloc; |
| 274 | } |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 275 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 276 | platform_set_drvdata(tosa_snd_device, &tosa); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 277 | ret = platform_device_add(tosa_snd_device); |
| 278 | |
Dmitry Baryshkov | 4440cbd | 2008-06-14 11:42:57 +0100 | [diff] [blame] | 279 | if (!ret) |
| 280 | return 0; |
| 281 | |
| 282 | platform_device_put(tosa_snd_device); |
| 283 | |
| 284 | err_alloc: |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 285 | return ret; |
| 286 | } |
| 287 | |
| 288 | static void __exit tosa_exit(void) |
| 289 | { |
| 290 | platform_device_unregister(tosa_snd_device); |
Liam Girdwood | 1b49cb9 | 2006-10-12 14:33:09 +0200 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | module_init(tosa_init); |
| 294 | module_exit(tosa_exit); |
| 295 | |
| 296 | /* Module information */ |
| 297 | MODULE_AUTHOR("Richard Purdie"); |
| 298 | MODULE_DESCRIPTION("ALSA SoC Tosa"); |
| 299 | MODULE_LICENSE("GPL"); |