ctljack.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Helper functions for jack-detection kcontrols
  3. *
  4. * Copyright (c) 2011 Takashi Iwai <tiwai@suse.de>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation; either version 2 of the License, or (at your option)
  9. * any later version.
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/export.h>
  13. #include <sound/core.h>
  14. #include <sound/control.h>
  15. #define jack_detect_kctl_info snd_ctl_boolean_mono_info
  16. static int jack_detect_kctl_get(struct snd_kcontrol *kcontrol,
  17. struct snd_ctl_elem_value *ucontrol)
  18. {
  19. ucontrol->value.integer.value[0] = kcontrol->private_value;
  20. return 0;
  21. }
  22. static struct snd_kcontrol_new jack_detect_kctl = {
  23. /* name is filled later */
  24. .iface = SNDRV_CTL_ELEM_IFACE_CARD,
  25. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  26. .info = jack_detect_kctl_info,
  27. .get = jack_detect_kctl_get,
  28. };
  29. static int get_available_index(struct snd_card *card, const char *name)
  30. {
  31. struct snd_ctl_elem_id sid;
  32. memset(&sid, 0, sizeof(sid));
  33. sid.index = 0;
  34. sid.iface = SNDRV_CTL_ELEM_IFACE_CARD;
  35. strlcpy(sid.name, name, sizeof(sid.name));
  36. while (snd_ctl_find_id(card, &sid)) {
  37. sid.index++;
  38. /* reset numid; otherwise snd_ctl_find_id() hits this again */
  39. sid.numid = 0;
  40. }
  41. return sid.index;
  42. }
  43. static void jack_kctl_name_gen(char *name, const char *src_name, int size)
  44. {
  45. size_t count = strlen(src_name);
  46. bool need_cat = true;
  47. /* remove redundant " Jack" from src_name */
  48. if (count >= 5)
  49. need_cat = strncmp(&src_name[count - 5], " Jack", 5) ? true : false;
  50. snprintf(name, size, need_cat ? "%s Jack" : "%s", src_name);
  51. }
  52. struct snd_kcontrol *
  53. snd_kctl_jack_new(const char *name, struct snd_card *card)
  54. {
  55. struct snd_kcontrol *kctl;
  56. kctl = snd_ctl_new1(&jack_detect_kctl, NULL);
  57. if (!kctl)
  58. return NULL;
  59. jack_kctl_name_gen(kctl->id.name, name, sizeof(kctl->id.name));
  60. kctl->id.index = get_available_index(card, kctl->id.name);
  61. kctl->private_value = 0;
  62. return kctl;
  63. }
  64. void snd_kctl_jack_report(struct snd_card *card,
  65. struct snd_kcontrol *kctl, bool status)
  66. {
  67. if (kctl->private_value == status)
  68. return;
  69. kctl->private_value = status;
  70. snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id);
  71. }