| Marek Vasut | 74e7220 | 2008-11-03 12:02:12 +0000 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/sound/soc/pxa/palm27x.c | 
|  | 3 | * | 
|  | 4 | * SoC Audio driver for Palm T|X, T5 and LifeDrive | 
|  | 5 | * | 
|  | 6 | * based on tosa.c | 
|  | 7 | * | 
|  | 8 | * Copyright (C) 2008 Marek Vasut <marek.vasut@gmail.com> | 
|  | 9 | * | 
|  | 10 | * This program is free software; you can redistribute it and/or modify | 
|  | 11 | * it under the terms of the GNU General Public License version 2 as | 
|  | 12 | * published by the Free Software Foundation. | 
|  | 13 | * | 
|  | 14 | */ | 
|  | 15 |  | 
|  | 16 | #include <linux/module.h> | 
|  | 17 | #include <linux/moduleparam.h> | 
|  | 18 | #include <linux/device.h> | 
|  | 19 | #include <linux/gpio.h> | 
|  | 20 | #include <linux/interrupt.h> | 
|  | 21 | #include <linux/irq.h> | 
|  | 22 |  | 
|  | 23 | #include <sound/core.h> | 
|  | 24 | #include <sound/pcm.h> | 
|  | 25 | #include <sound/soc.h> | 
|  | 26 | #include <sound/soc-dapm.h> | 
|  | 27 |  | 
|  | 28 | #include <asm/mach-types.h> | 
|  | 29 | #include <mach/audio.h> | 
|  | 30 | #include <mach/palmasoc.h> | 
|  | 31 |  | 
|  | 32 | #include "../codecs/wm9712.h" | 
|  | 33 | #include "pxa2xx-pcm.h" | 
|  | 34 | #include "pxa2xx-ac97.h" | 
|  | 35 |  | 
|  | 36 | static int palm27x_jack_func = 1; | 
|  | 37 | static int palm27x_spk_func = 1; | 
|  | 38 | static int palm27x_ep_gpio = -1; | 
|  | 39 |  | 
|  | 40 | static void palm27x_ext_control(struct snd_soc_codec *codec) | 
|  | 41 | { | 
|  | 42 | if (!palm27x_spk_func) | 
|  | 43 | snd_soc_dapm_enable_pin(codec, "Speaker"); | 
|  | 44 | else | 
|  | 45 | snd_soc_dapm_disable_pin(codec, "Speaker"); | 
|  | 46 |  | 
|  | 47 | if (!palm27x_jack_func) | 
|  | 48 | snd_soc_dapm_enable_pin(codec, "Headphone Jack"); | 
|  | 49 | else | 
|  | 50 | snd_soc_dapm_disable_pin(codec, "Headphone Jack"); | 
|  | 51 |  | 
|  | 52 | snd_soc_dapm_sync(codec); | 
|  | 53 | } | 
|  | 54 |  | 
|  | 55 | static int palm27x_startup(struct snd_pcm_substream *substream) | 
|  | 56 | { | 
|  | 57 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 
| Takashi Iwai | 9e30d77 | 2009-02-11 08:28:04 +0100 | [diff] [blame] | 58 | struct snd_soc_codec *codec = rtd->socdev->card->codec; | 
| Marek Vasut | 74e7220 | 2008-11-03 12:02:12 +0000 | [diff] [blame] | 59 |  | 
|  | 60 | /* check the jack status at stream startup */ | 
|  | 61 | palm27x_ext_control(codec); | 
|  | 62 | return 0; | 
|  | 63 | } | 
|  | 64 |  | 
|  | 65 | static struct snd_soc_ops palm27x_ops = { | 
|  | 66 | .startup = palm27x_startup, | 
|  | 67 | }; | 
|  | 68 |  | 
|  | 69 | static irqreturn_t palm27x_interrupt(int irq, void *v) | 
|  | 70 | { | 
|  | 71 | palm27x_spk_func = gpio_get_value(palm27x_ep_gpio); | 
|  | 72 | palm27x_jack_func = !palm27x_spk_func; | 
|  | 73 | return IRQ_HANDLED; | 
|  | 74 | } | 
|  | 75 |  | 
|  | 76 | static int palm27x_get_jack(struct snd_kcontrol *kcontrol, | 
|  | 77 | struct snd_ctl_elem_value *ucontrol) | 
|  | 78 | { | 
|  | 79 | ucontrol->value.integer.value[0] = palm27x_jack_func; | 
|  | 80 | return 0; | 
|  | 81 | } | 
|  | 82 |  | 
|  | 83 | static int palm27x_set_jack(struct snd_kcontrol *kcontrol, | 
|  | 84 | struct snd_ctl_elem_value *ucontrol) | 
|  | 85 | { | 
|  | 86 | struct snd_soc_codec *codec =  snd_kcontrol_chip(kcontrol); | 
|  | 87 |  | 
|  | 88 | if (palm27x_jack_func == ucontrol->value.integer.value[0]) | 
|  | 89 | return 0; | 
|  | 90 |  | 
|  | 91 | palm27x_jack_func = ucontrol->value.integer.value[0]; | 
|  | 92 | palm27x_ext_control(codec); | 
|  | 93 | return 1; | 
|  | 94 | } | 
|  | 95 |  | 
|  | 96 | static int palm27x_get_spk(struct snd_kcontrol *kcontrol, | 
|  | 97 | struct snd_ctl_elem_value *ucontrol) | 
|  | 98 | { | 
|  | 99 | ucontrol->value.integer.value[0] = palm27x_spk_func; | 
|  | 100 | return 0; | 
|  | 101 | } | 
|  | 102 |  | 
|  | 103 | static int palm27x_set_spk(struct snd_kcontrol *kcontrol, | 
|  | 104 | struct snd_ctl_elem_value *ucontrol) | 
|  | 105 | { | 
|  | 106 | struct snd_soc_codec *codec =  snd_kcontrol_chip(kcontrol); | 
|  | 107 |  | 
|  | 108 | if (palm27x_spk_func == ucontrol->value.integer.value[0]) | 
|  | 109 | return 0; | 
|  | 110 |  | 
|  | 111 | palm27x_spk_func = ucontrol->value.integer.value[0]; | 
|  | 112 | palm27x_ext_control(codec); | 
|  | 113 | return 1; | 
|  | 114 | } | 
|  | 115 |  | 
|  | 116 | /* PalmTX machine dapm widgets */ | 
|  | 117 | static const struct snd_soc_dapm_widget palm27x_dapm_widgets[] = { | 
|  | 118 | SND_SOC_DAPM_HP("Headphone Jack", NULL), | 
|  | 119 | SND_SOC_DAPM_SPK("Speaker", NULL), | 
|  | 120 | }; | 
|  | 121 |  | 
|  | 122 | /* PalmTX audio map */ | 
|  | 123 | static const struct snd_soc_dapm_route audio_map[] = { | 
|  | 124 | /* headphone connected to HPOUTL, HPOUTR */ | 
|  | 125 | {"Headphone Jack", NULL, "HPOUTL"}, | 
|  | 126 | {"Headphone Jack", NULL, "HPOUTR"}, | 
|  | 127 |  | 
|  | 128 | /* ext speaker connected to ROUT2, LOUT2 */ | 
|  | 129 | {"Speaker", NULL, "LOUT2"}, | 
|  | 130 | {"Speaker", NULL, "ROUT2"}, | 
|  | 131 | }; | 
|  | 132 |  | 
|  | 133 | static const char *jack_function[] = {"Headphone", "Off"}; | 
|  | 134 | static const char *spk_function[] = {"On", "Off"}; | 
|  | 135 | static const struct soc_enum palm27x_enum[] = { | 
|  | 136 | SOC_ENUM_SINGLE_EXT(2, jack_function), | 
|  | 137 | SOC_ENUM_SINGLE_EXT(2, spk_function), | 
|  | 138 | }; | 
|  | 139 |  | 
|  | 140 | static const struct snd_kcontrol_new palm27x_controls[] = { | 
|  | 141 | SOC_ENUM_EXT("Jack Function", palm27x_enum[0], palm27x_get_jack, | 
|  | 142 | palm27x_set_jack), | 
|  | 143 | SOC_ENUM_EXT("Speaker Function", palm27x_enum[1], palm27x_get_spk, | 
|  | 144 | palm27x_set_spk), | 
|  | 145 | }; | 
|  | 146 |  | 
|  | 147 | static int palm27x_ac97_init(struct snd_soc_codec *codec) | 
|  | 148 | { | 
| Philipp Zabel | eb5f6d75 | 2009-03-12 11:07:54 +0100 | [diff] [blame] | 149 | int err; | 
| Marek Vasut | 74e7220 | 2008-11-03 12:02:12 +0000 | [diff] [blame] | 150 |  | 
|  | 151 | snd_soc_dapm_nc_pin(codec, "OUT3"); | 
|  | 152 | snd_soc_dapm_nc_pin(codec, "MONOOUT"); | 
|  | 153 |  | 
|  | 154 | /* add palm27x specific controls */ | 
| Philipp Zabel | eb5f6d75 | 2009-03-12 11:07:54 +0100 | [diff] [blame] | 155 | err = snd_soc_add_controls(codec, palm27x_controls, | 
|  | 156 | ARRAY_SIZE(palm27x_controls)); | 
|  | 157 | if (err < 0) | 
|  | 158 | return err; | 
| Marek Vasut | 74e7220 | 2008-11-03 12:02:12 +0000 | [diff] [blame] | 159 |  | 
|  | 160 | /* add palm27x specific widgets */ | 
|  | 161 | snd_soc_dapm_new_controls(codec, palm27x_dapm_widgets, | 
|  | 162 | ARRAY_SIZE(palm27x_dapm_widgets)); | 
|  | 163 |  | 
|  | 164 | /* set up palm27x specific audio path audio_map */ | 
|  | 165 | snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); | 
|  | 166 |  | 
|  | 167 | snd_soc_dapm_sync(codec); | 
|  | 168 | return 0; | 
|  | 169 | } | 
|  | 170 |  | 
|  | 171 | static struct snd_soc_dai_link palm27x_dai[] = { | 
|  | 172 | { | 
|  | 173 | .name = "AC97 HiFi", | 
|  | 174 | .stream_name = "AC97 HiFi", | 
|  | 175 | .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_HIFI], | 
|  | 176 | .codec_dai = &wm9712_dai[WM9712_DAI_AC97_HIFI], | 
|  | 177 | .init = palm27x_ac97_init, | 
|  | 178 | .ops = &palm27x_ops, | 
|  | 179 | }, | 
|  | 180 | { | 
|  | 181 | .name = "AC97 Aux", | 
|  | 182 | .stream_name = "AC97 Aux", | 
|  | 183 | .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_AUX], | 
|  | 184 | .codec_dai = &wm9712_dai[WM9712_DAI_AC97_AUX], | 
|  | 185 | .ops = &palm27x_ops, | 
|  | 186 | }, | 
|  | 187 | }; | 
|  | 188 |  | 
| Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 189 | static struct snd_soc_card palm27x_asoc = { | 
| Marek Vasut | 74e7220 | 2008-11-03 12:02:12 +0000 | [diff] [blame] | 190 | .name = "Palm/PXA27x", | 
| Mark Brown | 87689d5 | 2008-12-02 16:01:14 +0000 | [diff] [blame] | 191 | .platform = &pxa2xx_soc_platform, | 
| Marek Vasut | 74e7220 | 2008-11-03 12:02:12 +0000 | [diff] [blame] | 192 | .dai_link = palm27x_dai, | 
|  | 193 | .num_links = ARRAY_SIZE(palm27x_dai), | 
|  | 194 | }; | 
|  | 195 |  | 
|  | 196 | static struct snd_soc_device palm27x_snd_devdata = { | 
| Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 197 | .card = &palm27x_asoc, | 
| Marek Vasut | 74e7220 | 2008-11-03 12:02:12 +0000 | [diff] [blame] | 198 | .codec_dev = &soc_codec_dev_wm9712, | 
|  | 199 | }; | 
|  | 200 |  | 
|  | 201 | static struct platform_device *palm27x_snd_device; | 
|  | 202 |  | 
|  | 203 | static int __init palm27x_asoc_init(void) | 
|  | 204 | { | 
|  | 205 | int ret; | 
|  | 206 |  | 
|  | 207 | if (!(machine_is_palmtx() || machine_is_palmt5() || | 
|  | 208 | machine_is_palmld())) | 
|  | 209 | return -ENODEV; | 
|  | 210 |  | 
|  | 211 | ret = gpio_request(palm27x_ep_gpio, "Headphone Jack"); | 
|  | 212 | if (ret) | 
|  | 213 | return ret; | 
|  | 214 | ret = gpio_direction_input(palm27x_ep_gpio); | 
|  | 215 | if (ret) | 
|  | 216 | goto err_alloc; | 
|  | 217 |  | 
|  | 218 | if (request_irq(gpio_to_irq(palm27x_ep_gpio), palm27x_interrupt, | 
|  | 219 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, | 
|  | 220 | "Headphone jack", NULL)) | 
|  | 221 | goto err_alloc; | 
|  | 222 |  | 
|  | 223 | palm27x_snd_device = platform_device_alloc("soc-audio", -1); | 
|  | 224 | if (!palm27x_snd_device) { | 
|  | 225 | ret = -ENOMEM; | 
|  | 226 | goto err_dev; | 
|  | 227 | } | 
|  | 228 |  | 
|  | 229 | platform_set_drvdata(palm27x_snd_device, &palm27x_snd_devdata); | 
|  | 230 | palm27x_snd_devdata.dev = &palm27x_snd_device->dev; | 
|  | 231 | ret = platform_device_add(palm27x_snd_device); | 
|  | 232 |  | 
|  | 233 | if (ret != 0) | 
|  | 234 | goto put_device; | 
|  | 235 |  | 
|  | 236 | return 0; | 
|  | 237 |  | 
|  | 238 | put_device: | 
|  | 239 | platform_device_put(palm27x_snd_device); | 
|  | 240 | err_dev: | 
|  | 241 | free_irq(gpio_to_irq(palm27x_ep_gpio), NULL); | 
|  | 242 | err_alloc: | 
|  | 243 | gpio_free(palm27x_ep_gpio); | 
|  | 244 |  | 
|  | 245 | return ret; | 
|  | 246 | } | 
|  | 247 |  | 
|  | 248 | static void __exit palm27x_asoc_exit(void) | 
|  | 249 | { | 
|  | 250 | free_irq(gpio_to_irq(palm27x_ep_gpio), NULL); | 
|  | 251 | gpio_free(palm27x_ep_gpio); | 
|  | 252 | platform_device_unregister(palm27x_snd_device); | 
|  | 253 | } | 
|  | 254 |  | 
|  | 255 | void __init palm27x_asoc_set_pdata(struct palm27x_asoc_info *data) | 
|  | 256 | { | 
|  | 257 | palm27x_ep_gpio = data->jack_gpio; | 
|  | 258 | } | 
|  | 259 |  | 
|  | 260 | module_init(palm27x_asoc_init); | 
|  | 261 | module_exit(palm27x_asoc_exit); | 
|  | 262 |  | 
|  | 263 | /* Module information */ | 
|  | 264 | MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>"); | 
|  | 265 | MODULE_DESCRIPTION("ALSA SoC Palm T|X, T5 and LifeDrive"); | 
|  | 266 | MODULE_LICENSE("GPL"); |