aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/samsung/h1940_uda1380.c
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2014-05-30 14:42:57 -0400
committerMark Brown <broonie@linaro.org>2014-06-03 05:41:16 -0400
commite1d4d3c854f25cff6c6c139588570e124d5e8fa4 (patch)
treed3fcf11a7912943e8924dae0ef82cb0a81f23be7 /sound/soc/samsung/h1940_uda1380.c
parenta2fbbbf10d7a11a949c32625e7088ad46f3c4bbc (diff)
ASoC: free jack GPIOs before the sound card is freed
This is the same change as commit fb6b8e71448a "ASoC: tegra: free jack GPIOs before the sound card is freed", but applied to all other ASoC machine drivers where code inspection indicates the same problem exists. That commit's description is: ========== snd_soc_jack_add_gpios() schedules a work queue item to poll the GPIO to generate an initial jack status report. If sound card initialization fails, that work item needs to be cancelled, so it doesn't run after the card has been freed. Specifically, freeing the card calls snd_jack_dev_free() which calls snd_jack_dev_disconnect() which sets jack->input_dev = NULL, and input_dev is used by snd_jack_report(), which is called from the work queue item. snd_soc_jack_free_gpios() cancels the work item. The Tegra ASoC machine drivers do call this function in the platform driver remove() callback. However, this happens after the sound card is freed, at least when the card is freed due to errors late during snd_soc_instantiate_card(). This leaves a window where the work item can execute after the card is freed. In next-20140522, sound card initialization does fail for unrelated reasons, and hits the problem described above. To solve this, fix the Tegra ASoC machine drivers to clean up the Jack GPIOs during the snd_soc_card's .remove() callback, which is executed before the overall card object is freed. also, guard the cleanup call based on whether we actually setup up the GPIOs in the first place. Ideally, we'd do the cleanup in a struct snd_soc_dai_link .fini/remove function to match where the GPIOs get set up. However, there is no such callback. ========== Note that I have not even compile-tested this in most cases, since most of the drivers rely on specific mach-* support I don't have enabled, and don't support COMPILE_TEST. Testing by the relevant board maintainers would be useful. Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/samsung/h1940_uda1380.c')
-rw-r--r--sound/soc/samsung/h1940_uda1380.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/sound/soc/samsung/h1940_uda1380.c b/sound/soc/samsung/h1940_uda1380.c
index 9f2fb69dbaae..720357f11a7f 100644
--- a/sound/soc/samsung/h1940_uda1380.c
+++ b/sound/soc/samsung/h1940_uda1380.c
@@ -189,6 +189,14 @@ static int h1940_uda1380_init(struct snd_soc_pcm_runtime *rtd)
189 return 0; 189 return 0;
190} 190}
191 191
192static int h1940_uda1380_card_remove(struct snd_soc_pcm_runtime *rtd)
193{
194 snd_soc_jack_free_gpios(&hp_jack, ARRAY_SIZE(hp_jack_gpios),
195 hp_jack_gpios);
196
197 return 0;
198}
199
192/* s3c24xx digital audio interface glue - connects codec <--> CPU */ 200/* s3c24xx digital audio interface glue - connects codec <--> CPU */
193static struct snd_soc_dai_link h1940_uda1380_dai[] = { 201static struct snd_soc_dai_link h1940_uda1380_dai[] = {
194 { 202 {
@@ -206,6 +214,7 @@ static struct snd_soc_dai_link h1940_uda1380_dai[] = {
206static struct snd_soc_card h1940_asoc = { 214static struct snd_soc_card h1940_asoc = {
207 .name = "h1940", 215 .name = "h1940",
208 .owner = THIS_MODULE, 216 .owner = THIS_MODULE,
217 .remove = h1940_uda1380_card_remove,
209 .dai_link = h1940_uda1380_dai, 218 .dai_link = h1940_uda1380_dai,
210 .num_links = ARRAY_SIZE(h1940_uda1380_dai), 219 .num_links = ARRAY_SIZE(h1940_uda1380_dai),
211 220
@@ -257,8 +266,6 @@ err_out:
257static void __exit h1940_exit(void) 266static void __exit h1940_exit(void)
258{ 267{
259 platform_device_unregister(s3c24xx_snd_device); 268 platform_device_unregister(s3c24xx_snd_device);
260 snd_soc_jack_free_gpios(&hp_jack, ARRAY_SIZE(hp_jack_gpios),
261 hp_jack_gpios);
262 gpio_free(S3C_GPIO_END + 9); 269 gpio_free(S3C_GPIO_END + 9);
263} 270}
264 271