ac97_patch.h 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
  3. * Universal interface for Audio Codec '97
  4. *
  5. * For more details look to AC '97 component specification revision 2.2
  6. * by Intel Corporation (http://developer.intel.com).
  7. *
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. *
  23. */
  24. #define AC97_SINGLE_VALUE(reg,shift,mask,invert) \
  25. ((reg) | ((shift) << 8) | ((shift) << 12) | ((mask) << 16) | \
  26. ((invert) << 24))
  27. #define AC97_PAGE_SINGLE_VALUE(reg,shift,mask,invert,page) \
  28. (AC97_SINGLE_VALUE(reg,shift,mask,invert) | (1<<25) | ((page) << 26))
  29. #define AC97_SINGLE(xname, reg, shift, mask, invert) \
  30. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  31. .info = snd_ac97_info_volsw, \
  32. .get = snd_ac97_get_volsw, .put = snd_ac97_put_volsw, \
  33. .private_value = AC97_SINGLE_VALUE(reg, shift, mask, invert) }
  34. #define AC97_PAGE_SINGLE(xname, reg, shift, mask, invert, page) \
  35. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  36. .info = snd_ac97_info_volsw, \
  37. .get = snd_ac97_get_volsw, .put = snd_ac97_put_volsw, \
  38. .private_value = AC97_PAGE_SINGLE_VALUE(reg, shift, mask, invert, page) }
  39. #define AC97_DOUBLE(xname, reg, shift_left, shift_right, mask, invert) \
  40. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
  41. .info = snd_ac97_info_volsw, \
  42. .get = snd_ac97_get_volsw, .put = snd_ac97_put_volsw, \
  43. .private_value = (reg) | ((shift_left) << 8) | ((shift_right) << 12) | ((mask) << 16) | ((invert) << 24) }
  44. /* enum control */
  45. struct ac97_enum {
  46. unsigned char reg;
  47. unsigned char shift_l;
  48. unsigned char shift_r;
  49. unsigned short mask;
  50. const char * const *texts;
  51. };
  52. #define AC97_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xtexts) \
  53. { .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
  54. .mask = xmask, .texts = xtexts }
  55. #define AC97_ENUM_SINGLE(xreg, xshift, xmask, xtexts) \
  56. AC97_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xtexts)
  57. #define AC97_ENUM(xname, xenum) \
  58. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  59. .info = snd_ac97_info_enum_double, \
  60. .get = snd_ac97_get_enum_double, .put = snd_ac97_put_enum_double, \
  61. .private_value = (unsigned long)&xenum }
  62. /* ac97_codec.c */
  63. static const struct snd_kcontrol_new snd_ac97_controls_3d[];
  64. static const struct snd_kcontrol_new snd_ac97_controls_spdif[];
  65. static struct snd_kcontrol *snd_ac97_cnew(const struct snd_kcontrol_new *_template,
  66. struct snd_ac97 * ac97);
  67. static int snd_ac97_info_volsw(struct snd_kcontrol *kcontrol,
  68. struct snd_ctl_elem_info *uinfo);
  69. static int snd_ac97_get_volsw(struct snd_kcontrol *kcontrol,
  70. struct snd_ctl_elem_value *ucontrol);
  71. static int snd_ac97_put_volsw(struct snd_kcontrol *kcontrol,
  72. struct snd_ctl_elem_value *ucontrol);
  73. static int snd_ac97_try_bit(struct snd_ac97 * ac97, int reg, int bit);
  74. static int snd_ac97_remove_ctl(struct snd_ac97 *ac97, const char *name,
  75. const char *suffix);
  76. static int snd_ac97_rename_ctl(struct snd_ac97 *ac97, const char *src,
  77. const char *dst, const char *suffix);
  78. static int snd_ac97_swap_ctl(struct snd_ac97 *ac97, const char *s1,
  79. const char *s2, const char *suffix);
  80. static void snd_ac97_rename_vol_ctl(struct snd_ac97 *ac97, const char *src,
  81. const char *dst);
  82. #ifdef CONFIG_PM
  83. static void snd_ac97_restore_status(struct snd_ac97 *ac97);
  84. static void snd_ac97_restore_iec958(struct snd_ac97 *ac97);
  85. #endif
  86. static int snd_ac97_info_enum_double(struct snd_kcontrol *kcontrol,
  87. struct snd_ctl_elem_info *uinfo);
  88. static int snd_ac97_get_enum_double(struct snd_kcontrol *kcontrol,
  89. struct snd_ctl_elem_value *ucontrol);
  90. static int snd_ac97_put_enum_double(struct snd_kcontrol *kcontrol,
  91. struct snd_ctl_elem_value *ucontrol);