wm8766.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. #ifndef __SOUND_WM8766_H
  2. #define __SOUND_WM8766_H
  3. /*
  4. * ALSA driver for ICEnsemble VT17xx
  5. *
  6. * Lowlevel functions for WM8766 codec
  7. *
  8. * Copyright (c) 2012 Ondrej Zary <linux@rainbow-software.org>
  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 as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. *
  24. */
  25. #define WM8766_REG_DACL1 0x00
  26. #define WM8766_REG_DACR1 0x01
  27. #define WM8766_VOL_MASK 0x1ff /* incl. update bit */
  28. #define WM8766_VOL_UPDATE (1 << 8) /* update volume */
  29. #define WM8766_REG_DACCTRL1 0x02
  30. #define WM8766_DAC_MUTEALL (1 << 0)
  31. #define WM8766_DAC_DEEMPALL (1 << 1)
  32. #define WM8766_DAC_PDWN (1 << 2)
  33. #define WM8766_DAC_ATC (1 << 3)
  34. #define WM8766_DAC_IZD (1 << 4)
  35. #define WM8766_DAC_PL_MASK 0x1e0
  36. #define WM8766_DAC_PL_LL (1 << 5) /* L chan: L signal */
  37. #define WM8766_DAC_PL_LR (2 << 5) /* L chan: R signal */
  38. #define WM8766_DAC_PL_LB (3 << 5) /* L chan: both */
  39. #define WM8766_DAC_PL_RL (1 << 7) /* R chan: L signal */
  40. #define WM8766_DAC_PL_RR (2 << 7) /* R chan: R signal */
  41. #define WM8766_DAC_PL_RB (3 << 7) /* R chan: both */
  42. #define WM8766_REG_IFCTRL 0x03
  43. #define WM8766_IF_FMT_RIGHTJ (0 << 0)
  44. #define WM8766_IF_FMT_LEFTJ (1 << 0)
  45. #define WM8766_IF_FMT_I2S (2 << 0)
  46. #define WM8766_IF_FMT_DSP (3 << 0)
  47. #define WM8766_IF_DSP_LATE (1 << 2) /* in DSP mode */
  48. #define WM8766_IF_LRC_INVERTED (1 << 2) /* in other modes */
  49. #define WM8766_IF_BCLK_INVERTED (1 << 3)
  50. #define WM8766_IF_IWL_16BIT (0 << 4)
  51. #define WM8766_IF_IWL_20BIT (1 << 4)
  52. #define WM8766_IF_IWL_24BIT (2 << 4)
  53. #define WM8766_IF_IWL_32BIT (3 << 4)
  54. #define WM8766_IF_MASK 0x3f
  55. #define WM8766_PHASE_INVERT1 (1 << 6)
  56. #define WM8766_PHASE_INVERT2 (1 << 7)
  57. #define WM8766_PHASE_INVERT3 (1 << 8)
  58. #define WM8766_REG_DACL2 0x04
  59. #define WM8766_REG_DACR2 0x05
  60. #define WM8766_REG_DACL3 0x06
  61. #define WM8766_REG_DACR3 0x07
  62. #define WM8766_REG_MASTDA 0x08
  63. #define WM8766_REG_DACCTRL2 0x09
  64. #define WM8766_DAC2_ZCD (1 << 0)
  65. #define WM8766_DAC2_ZFLAG_ALL (0 << 1)
  66. #define WM8766_DAC2_ZFLAG_1 (1 << 1)
  67. #define WM8766_DAC2_ZFLAG_2 (2 << 1)
  68. #define WM8766_DAC2_ZFLAG_3 (3 << 1)
  69. #define WM8766_DAC2_MUTE1 (1 << 3)
  70. #define WM8766_DAC2_MUTE2 (1 << 4)
  71. #define WM8766_DAC2_MUTE3 (1 << 5)
  72. #define WM8766_DAC2_DEEMP1 (1 << 6)
  73. #define WM8766_DAC2_DEEMP2 (1 << 7)
  74. #define WM8766_DAC2_DEEMP3 (1 << 8)
  75. #define WM8766_REG_DACCTRL3 0x0a
  76. #define WM8766_DAC3_DACPD1 (1 << 1)
  77. #define WM8766_DAC3_DACPD2 (1 << 2)
  78. #define WM8766_DAC3_DACPD3 (1 << 3)
  79. #define WM8766_DAC3_PWRDNALL (1 << 4)
  80. #define WM8766_DAC3_POWER_MASK 0x1e
  81. #define WM8766_DAC3_MASTER (1 << 5)
  82. #define WM8766_DAC3_DAC128FS (0 << 6)
  83. #define WM8766_DAC3_DAC192FS (1 << 6)
  84. #define WM8766_DAC3_DAC256FS (2 << 6)
  85. #define WM8766_DAC3_DAC384FS (3 << 6)
  86. #define WM8766_DAC3_DAC512FS (4 << 6)
  87. #define WM8766_DAC3_DAC768FS (5 << 6)
  88. #define WM8766_DAC3_MSTR_MASK 0x1e0
  89. #define WM8766_REG_MUTE1 0x0c
  90. #define WM8766_MUTE1_MPD (1 << 6)
  91. #define WM8766_REG_MUTE2 0x0f
  92. #define WM8766_MUTE2_MPD (1 << 5)
  93. #define WM8766_REG_RESET 0x1f
  94. #define WM8766_REG_COUNT 0x10 /* don't cache the RESET register */
  95. struct snd_wm8766;
  96. struct snd_wm8766_ops {
  97. void (*write)(struct snd_wm8766 *wm, u16 addr, u16 data);
  98. };
  99. enum snd_wm8766_ctl_id {
  100. WM8766_CTL_CH1_VOL,
  101. WM8766_CTL_CH2_VOL,
  102. WM8766_CTL_CH3_VOL,
  103. WM8766_CTL_CH1_SW,
  104. WM8766_CTL_CH2_SW,
  105. WM8766_CTL_CH3_SW,
  106. WM8766_CTL_PHASE1_SW,
  107. WM8766_CTL_PHASE2_SW,
  108. WM8766_CTL_PHASE3_SW,
  109. WM8766_CTL_DEEMPH1_SW,
  110. WM8766_CTL_DEEMPH2_SW,
  111. WM8766_CTL_DEEMPH3_SW,
  112. WM8766_CTL_IZD_SW,
  113. WM8766_CTL_ZC_SW,
  114. WM8766_CTL_COUNT,
  115. };
  116. #define WM8766_ENUM_MAX 16
  117. #define WM8766_FLAG_STEREO (1 << 0)
  118. #define WM8766_FLAG_VOL_UPDATE (1 << 1)
  119. #define WM8766_FLAG_INVERT (1 << 2)
  120. #define WM8766_FLAG_LIM (1 << 3)
  121. #define WM8766_FLAG_ALC (1 << 4)
  122. struct snd_wm8766_ctl {
  123. struct snd_kcontrol *kctl;
  124. const char *name;
  125. snd_ctl_elem_type_t type;
  126. const char *const enum_names[WM8766_ENUM_MAX];
  127. const unsigned int *tlv;
  128. u16 reg1, reg2, mask1, mask2, min, max, flags;
  129. void (*set)(struct snd_wm8766 *wm, u16 ch1, u16 ch2);
  130. void (*get)(struct snd_wm8766 *wm, u16 *ch1, u16 *ch2);
  131. };
  132. enum snd_wm8766_agc_mode { WM8766_AGC_OFF, WM8766_AGC_LIM, WM8766_AGC_ALC };
  133. struct snd_wm8766 {
  134. struct snd_card *card;
  135. struct snd_wm8766_ctl ctl[WM8766_CTL_COUNT];
  136. enum snd_wm8766_agc_mode agc_mode;
  137. struct snd_wm8766_ops ops;
  138. u16 regs[WM8766_REG_COUNT]; /* 9-bit registers */
  139. };
  140. void snd_wm8766_init(struct snd_wm8766 *wm);
  141. void snd_wm8766_resume(struct snd_wm8766 *wm);
  142. void snd_wm8766_set_if(struct snd_wm8766 *wm, u16 dac);
  143. void snd_wm8766_volume_restore(struct snd_wm8766 *wm);
  144. int snd_wm8766_build_controls(struct snd_wm8766 *wm);
  145. #endif /* __SOUND_WM8766_H */