alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ALSA: hda: Make core jack usage unconditional
@ 2012-08-27 18:53 Mark Brown
  2012-08-27 23:27 ` David Henningsson
  0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2012-08-27 18:53 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel, Mark Brown

Currently the HDA drivers have a Kconfig variable SND_HDA_INPUT_JACK
which disables jack reporting via the ALSA core jack API. This is bad
since (modulo the current problems with the HDA-specific reporting
API) it means that all reporting mechanisms will get disabled, not just
input. It's also not good that this is open coded in an individual
driver - if it's useful to have this control it's going to be equally
useful for any driver with jack detection support so should be handled
in the core.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
---
 sound/pci/hda/Kconfig    |    9 +--------
 sound/pci/hda/hda_jack.c |    8 --------
 2 files changed, 1 insertion(+), 16 deletions(-)

diff --git a/sound/pci/hda/Kconfig b/sound/pci/hda/Kconfig
index 194d625..2c7f626 100644
--- a/sound/pci/hda/Kconfig
+++ b/sound/pci/hda/Kconfig
@@ -2,6 +2,7 @@ menuconfig SND_HDA_INTEL
 	tristate "Intel HD Audio"
 	select SND_PCM
 	select SND_VMASTER
+	select SND_JACK if INPUT=y || INPUT=SND
 	select SND_KCTL_JACK
 	help
 	  Say Y here to include support for Intel "High Definition
@@ -62,14 +63,6 @@ config SND_HDA_INPUT_BEEP_MODE
 	  Set 1 to always enable the digital beep interface for HD-audio by
 	  default.
 
-config SND_HDA_INPUT_JACK
-	bool "Support jack plugging notification via input layer"
-	depends on INPUT=y || INPUT=SND
-	select SND_JACK
-	help
-	  Say Y here to enable the jack plugging notification via
-	  input layer.
-
 config SND_HDA_PATCH_LOADER
 	bool "Support initialization patch loading for HD-audio"
 	depends on EXPERIMENTAL
diff --git a/sound/pci/hda/hda_jack.c b/sound/pci/hda/hda_jack.c
index aaccc02..0760d75 100644
--- a/sound/pci/hda/hda_jack.c
+++ b/sound/pci/hda/hda_jack.c
@@ -109,7 +109,6 @@ EXPORT_SYMBOL_HDA(snd_hda_jack_tbl_new);
 
 void snd_hda_jack_tbl_clear(struct hda_codec *codec)
 {
-#ifdef CONFIG_SND_HDA_INPUT_JACK
 	/* free jack instances manually when clearing/reconfiguring */
 	if (!codec->bus->shutdown && codec->jacktbl.list) {
 		struct hda_jack_tbl *jack = codec->jacktbl.list;
@@ -119,7 +118,6 @@ void snd_hda_jack_tbl_clear(struct hda_codec *codec)
 				snd_device_free(codec->bus->card, jack->jack);
 		}
 	}
-#endif
 	snd_array_free(&codec->jacktbl);
 }
 
@@ -225,16 +223,13 @@ void snd_hda_jack_report_sync(struct hda_codec *codec)
 				continue;
 			state = get_jack_plug_state(jack->pin_sense);
 			snd_kctl_jack_report(codec->bus->card, jack->kctl, state);
-#ifdef CONFIG_SND_HDA_INPUT_JACK
 			if (jack->jack)
 				snd_jack_report(jack->jack,
 						state ? jack->type : 0);
-#endif
 		}
 }
 EXPORT_SYMBOL_HDA(snd_hda_jack_report_sync);
 
-#ifdef CONFIG_SND_HDA_INPUT_JACK
 /* guess the jack type from the pin-config */
 static int get_input_jack_type(struct hda_codec *codec, hda_nid_t nid)
 {
@@ -261,7 +256,6 @@ static void hda_free_jack_priv(struct snd_jack *jack)
 	jacks->nid = 0;
 	jacks->jack = NULL;
 }
-#endif
 
 /**
  * snd_hda_jack_add_kctl - Add a kctl for the given pin
@@ -292,7 +286,6 @@ static int __snd_hda_jack_add_kctl(struct hda_codec *codec, hda_nid_t nid,
 
 	state = snd_hda_jack_detect(codec, nid);
 	snd_kctl_jack_report(codec->bus->card, kctl, state);
-#ifdef CONFIG_SND_HDA_INPUT_JACK
 	if (!phantom_jack) {
 		jack->type = get_input_jack_type(codec, nid);
 		err = snd_jack_new(codec->bus->card, name, jack->type,
@@ -303,7 +296,6 @@ static int __snd_hda_jack_add_kctl(struct hda_codec *codec, hda_nid_t nid,
 		jack->jack->private_free = hda_free_jack_priv;
 		snd_jack_report(jack->jack, state ? jack->type : 0);
 	}
-#endif
 	return 0;
 }
 
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ALSA: hda: Make core jack usage unconditional
  2012-08-27 18:53 [PATCH] ALSA: hda: Make core jack usage unconditional Mark Brown
@ 2012-08-27 23:27 ` David Henningsson
  2012-08-28  3:23   ` Mark Brown
  0 siblings, 1 reply; 3+ messages in thread
From: David Henningsson @ 2012-08-27 23:27 UTC (permalink / raw)
  To: Mark Brown; +Cc: Takashi Iwai, alsa-devel

2012-08-27 11:53, Mark Brown skrev:
> Currently the HDA drivers have a Kconfig variable SND_HDA_INPUT_JACK
> which disables jack reporting via the ALSA core jack API. This is bad
> since (modulo the current problems with the HDA-specific reporting
> API) it means that all reporting mechanisms will get disabled, not just
> input.

Can you explain what other "reporting mechanisms" you are referring to?

Anyway, I don't mind this patch. As you said, if we're having a kconfig 
to turn on/off reporting through the input devices, we could just as 
well have it in core so it works for everyone and not just HDA.

> It's also not good that this is open coded in an individual
> driver - if it's useful to have this control it's going to be equally
> useful for any driver with jack detection support so should be handled
> in the core.
>
> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> ---
>   sound/pci/hda/Kconfig    |    9 +--------
>   sound/pci/hda/hda_jack.c |    8 --------
>   2 files changed, 1 insertion(+), 16 deletions(-)
>
> diff --git a/sound/pci/hda/Kconfig b/sound/pci/hda/Kconfig
> index 194d625..2c7f626 100644
> --- a/sound/pci/hda/Kconfig
> +++ b/sound/pci/hda/Kconfig
> @@ -2,6 +2,7 @@ menuconfig SND_HDA_INTEL
>   	tristate "Intel HD Audio"
>   	select SND_PCM
>   	select SND_VMASTER
> +	select SND_JACK if INPUT=y || INPUT=SND
>   	select SND_KCTL_JACK
>   	help
>   	  Say Y here to include support for Intel "High Definition
> @@ -62,14 +63,6 @@ config SND_HDA_INPUT_BEEP_MODE
>   	  Set 1 to always enable the digital beep interface for HD-audio by
>   	  default.
>   
> -config SND_HDA_INPUT_JACK
> -	bool "Support jack plugging notification via input layer"
> -	depends on INPUT=y || INPUT=SND
> -	select SND_JACK
> -	help
> -	  Say Y here to enable the jack plugging notification via
> -	  input layer.
> -
>   config SND_HDA_PATCH_LOADER
>   	bool "Support initialization patch loading for HD-audio"
>   	depends on EXPERIMENTAL
> diff --git a/sound/pci/hda/hda_jack.c b/sound/pci/hda/hda_jack.c
> index aaccc02..0760d75 100644
> --- a/sound/pci/hda/hda_jack.c
> +++ b/sound/pci/hda/hda_jack.c
> @@ -109,7 +109,6 @@ EXPORT_SYMBOL_HDA(snd_hda_jack_tbl_new);
>   
>   void snd_hda_jack_tbl_clear(struct hda_codec *codec)
>   {
> -#ifdef CONFIG_SND_HDA_INPUT_JACK
>   	/* free jack instances manually when clearing/reconfiguring */
>   	if (!codec->bus->shutdown && codec->jacktbl.list) {
>   		struct hda_jack_tbl *jack = codec->jacktbl.list;
> @@ -119,7 +118,6 @@ void snd_hda_jack_tbl_clear(struct hda_codec *codec)
>   				snd_device_free(codec->bus->card, jack->jack);
>   		}
>   	}
> -#endif
>   	snd_array_free(&codec->jacktbl);
>   }
>   
> @@ -225,16 +223,13 @@ void snd_hda_jack_report_sync(struct hda_codec *codec)
>   				continue;
>   			state = get_jack_plug_state(jack->pin_sense);
>   			snd_kctl_jack_report(codec->bus->card, jack->kctl, state);
> -#ifdef CONFIG_SND_HDA_INPUT_JACK
>   			if (jack->jack)
>   				snd_jack_report(jack->jack,
>   						state ? jack->type : 0);
> -#endif
>   		}
>   }
>   EXPORT_SYMBOL_HDA(snd_hda_jack_report_sync);
>   
> -#ifdef CONFIG_SND_HDA_INPUT_JACK
>   /* guess the jack type from the pin-config */
>   static int get_input_jack_type(struct hda_codec *codec, hda_nid_t nid)
>   {
> @@ -261,7 +256,6 @@ static void hda_free_jack_priv(struct snd_jack *jack)
>   	jacks->nid = 0;
>   	jacks->jack = NULL;
>   }
> -#endif
>   
>   /**
>    * snd_hda_jack_add_kctl - Add a kctl for the given pin
> @@ -292,7 +286,6 @@ static int __snd_hda_jack_add_kctl(struct hda_codec *codec, hda_nid_t nid,
>   
>   	state = snd_hda_jack_detect(codec, nid);
>   	snd_kctl_jack_report(codec->bus->card, kctl, state);
> -#ifdef CONFIG_SND_HDA_INPUT_JACK
>   	if (!phantom_jack) {
>   		jack->type = get_input_jack_type(codec, nid);
>   		err = snd_jack_new(codec->bus->card, name, jack->type,
> @@ -303,7 +296,6 @@ static int __snd_hda_jack_add_kctl(struct hda_codec *codec, hda_nid_t nid,
>   		jack->jack->private_free = hda_free_jack_priv;
>   		snd_jack_report(jack->jack, state ? jack->type : 0);
>   	}
> -#endif
>   	return 0;
>   }
>   


-- 
David Henningsson, Canonical Ltd.
https://launchpad.net/~diwic

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ALSA: hda: Make core jack usage unconditional
  2012-08-27 23:27 ` David Henningsson
@ 2012-08-28  3:23   ` Mark Brown
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Brown @ 2012-08-28  3:23 UTC (permalink / raw)
  To: David Henningsson; +Cc: Takashi Iwai, alsa-devel

On Mon, Aug 27, 2012 at 04:27:55PM -0700, David Henningsson wrote:
> 2012-08-27 11:53, Mark Brown skrev:
> >Currently the HDA drivers have a Kconfig variable SND_HDA_INPUT_JACK
> >which disables jack reporting via the ALSA core jack API. This is bad
> >since (modulo the current problems with the HDA-specific reporting
> >API) it means that all reporting mechanisms will get disabled, not just
> >input.

> Can you explain what other "reporting mechanisms" you are referring to?

The ctljack stuff when I wrote it - this is the first part of a patch
set intended to merge the in kernel APIs for this stuff but there's a
bunch of problems with the rest of the series so I never got round to
sending it.  I figured it did no harm in itself and makes things a
little more consistent to userspace.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-08-28  3:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-27 18:53 [PATCH] ALSA: hda: Make core jack usage unconditional Mark Brown
2012-08-27 23:27 ` David Henningsson
2012-08-28  3:23   ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).