wm9712.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  1. /*
  2. * wm9712.c -- ALSA Soc WM9712 codec support
  3. *
  4. * Copyright 2006 Wolfson Microelectronics PLC.
  5. * Author: Liam Girdwood <lrg@slimlogic.co.uk>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/slab.h>
  14. #include <linux/module.h>
  15. #include <linux/kernel.h>
  16. #include <linux/device.h>
  17. #include <sound/core.h>
  18. #include <sound/pcm.h>
  19. #include <sound/ac97_codec.h>
  20. #include <sound/initval.h>
  21. #include <sound/soc.h>
  22. #include <sound/soc-dapm.h>
  23. #include "wm9712.h"
  24. #define WM9712_VERSION "0.4"
  25. static unsigned int ac97_read(struct snd_soc_codec *codec,
  26. unsigned int reg);
  27. static int ac97_write(struct snd_soc_codec *codec,
  28. unsigned int reg, unsigned int val);
  29. /*
  30. * WM9712 register cache
  31. */
  32. static const u16 wm9712_reg[] = {
  33. 0x6174, 0x8000, 0x8000, 0x8000, /* 6 */
  34. 0x0f0f, 0xaaa0, 0xc008, 0x6808, /* e */
  35. 0xe808, 0xaaa0, 0xad00, 0x8000, /* 16 */
  36. 0xe808, 0x3000, 0x8000, 0x0000, /* 1e */
  37. 0x0000, 0x0000, 0x0000, 0x000f, /* 26 */
  38. 0x0405, 0x0410, 0xbb80, 0xbb80, /* 2e */
  39. 0x0000, 0xbb80, 0x0000, 0x0000, /* 36 */
  40. 0x0000, 0x2000, 0x0000, 0x0000, /* 3e */
  41. 0x0000, 0x0000, 0x0000, 0x0000, /* 46 */
  42. 0x0000, 0x0000, 0xf83e, 0xffff, /* 4e */
  43. 0x0000, 0x0000, 0x0000, 0xf83e, /* 56 */
  44. 0x0008, 0x0000, 0x0000, 0x0000, /* 5e */
  45. 0xb032, 0x3e00, 0x0000, 0x0000, /* 66 */
  46. 0x0000, 0x0000, 0x0000, 0x0000, /* 6e */
  47. 0x0000, 0x0000, 0x0000, 0x0006, /* 76 */
  48. 0x0001, 0x0000, 0x574d, 0x4c12, /* 7e */
  49. 0x0000, 0x0000 /* virtual hp mixers */
  50. };
  51. /* virtual HP mixers regs */
  52. #define HPL_MIXER 0x80
  53. #define HPR_MIXER 0x82
  54. static const char *wm9712_alc_select[] = {"None", "Left", "Right", "Stereo"};
  55. static const char *wm9712_alc_mux[] = {"Stereo", "Left", "Right", "None"};
  56. static const char *wm9712_out3_src[] = {"Left", "VREF", "Left + Right",
  57. "Mono"};
  58. static const char *wm9712_spk_src[] = {"Speaker Mix", "Headphone Mix"};
  59. static const char *wm9712_rec_adc[] = {"Stereo", "Left", "Right", "Mute"};
  60. static const char *wm9712_base[] = {"Linear Control", "Adaptive Boost"};
  61. static const char *wm9712_rec_gain[] = {"+1.5dB Steps", "+0.75dB Steps"};
  62. static const char *wm9712_mic[] = {"Mic 1", "Differential", "Mic 2",
  63. "Stereo"};
  64. static const char *wm9712_rec_sel[] = {"Mic", "NC", "NC", "Speaker Mixer",
  65. "Line", "Headphone Mixer", "Phone Mixer", "Phone"};
  66. static const char *wm9712_ng_type[] = {"Constant Gain", "Mute"};
  67. static const char *wm9712_diff_sel[] = {"Mic", "Line"};
  68. static const struct soc_enum wm9712_enum[] = {
  69. SOC_ENUM_SINGLE(AC97_PCI_SVID, 14, 4, wm9712_alc_select),
  70. SOC_ENUM_SINGLE(AC97_VIDEO, 12, 4, wm9712_alc_mux),
  71. SOC_ENUM_SINGLE(AC97_AUX, 9, 4, wm9712_out3_src),
  72. SOC_ENUM_SINGLE(AC97_AUX, 8, 2, wm9712_spk_src),
  73. SOC_ENUM_SINGLE(AC97_REC_SEL, 12, 4, wm9712_rec_adc),
  74. SOC_ENUM_SINGLE(AC97_MASTER_TONE, 15, 2, wm9712_base),
  75. SOC_ENUM_DOUBLE(AC97_REC_GAIN, 14, 6, 2, wm9712_rec_gain),
  76. SOC_ENUM_SINGLE(AC97_MIC, 5, 4, wm9712_mic),
  77. SOC_ENUM_SINGLE(AC97_REC_SEL, 8, 8, wm9712_rec_sel),
  78. SOC_ENUM_SINGLE(AC97_REC_SEL, 0, 8, wm9712_rec_sel),
  79. SOC_ENUM_SINGLE(AC97_PCI_SVID, 5, 2, wm9712_ng_type),
  80. SOC_ENUM_SINGLE(0x5c, 8, 2, wm9712_diff_sel),
  81. };
  82. static const struct snd_kcontrol_new wm9712_snd_ac97_controls[] = {
  83. SOC_DOUBLE("Speaker Playback Volume", AC97_MASTER, 8, 0, 31, 1),
  84. SOC_SINGLE("Speaker Playback Switch", AC97_MASTER, 15, 1, 1),
  85. SOC_DOUBLE("Headphone Playback Volume", AC97_HEADPHONE, 8, 0, 31, 1),
  86. SOC_SINGLE("Headphone Playback Switch", AC97_HEADPHONE, 15, 1, 1),
  87. SOC_DOUBLE("PCM Playback Volume", AC97_PCM, 8, 0, 31, 1),
  88. SOC_SINGLE("Speaker Playback ZC Switch", AC97_MASTER, 7, 1, 0),
  89. SOC_SINGLE("Speaker Playback Invert Switch", AC97_MASTER, 6, 1, 0),
  90. SOC_SINGLE("Headphone Playback ZC Switch", AC97_HEADPHONE, 7, 1, 0),
  91. SOC_SINGLE("Mono Playback ZC Switch", AC97_MASTER_MONO, 7, 1, 0),
  92. SOC_SINGLE("Mono Playback Volume", AC97_MASTER_MONO, 0, 31, 1),
  93. SOC_SINGLE("Mono Playback Switch", AC97_MASTER_MONO, 15, 1, 1),
  94. SOC_SINGLE("ALC Target Volume", AC97_CODEC_CLASS_REV, 12, 15, 0),
  95. SOC_SINGLE("ALC Hold Time", AC97_CODEC_CLASS_REV, 8, 15, 0),
  96. SOC_SINGLE("ALC Decay Time", AC97_CODEC_CLASS_REV, 4, 15, 0),
  97. SOC_SINGLE("ALC Attack Time", AC97_CODEC_CLASS_REV, 0, 15, 0),
  98. SOC_ENUM("ALC Function", wm9712_enum[0]),
  99. SOC_SINGLE("ALC Max Volume", AC97_PCI_SVID, 11, 7, 0),
  100. SOC_SINGLE("ALC ZC Timeout", AC97_PCI_SVID, 9, 3, 1),
  101. SOC_SINGLE("ALC ZC Switch", AC97_PCI_SVID, 8, 1, 0),
  102. SOC_SINGLE("ALC NG Switch", AC97_PCI_SVID, 7, 1, 0),
  103. SOC_ENUM("ALC NG Type", wm9712_enum[10]),
  104. SOC_SINGLE("ALC NG Threshold", AC97_PCI_SVID, 0, 31, 1),
  105. SOC_SINGLE("Mic Headphone Volume", AC97_VIDEO, 12, 7, 1),
  106. SOC_SINGLE("ALC Headphone Volume", AC97_VIDEO, 7, 7, 1),
  107. SOC_SINGLE("Out3 Switch", AC97_AUX, 15, 1, 1),
  108. SOC_SINGLE("Out3 ZC Switch", AC97_AUX, 7, 1, 1),
  109. SOC_SINGLE("Out3 Volume", AC97_AUX, 0, 31, 1),
  110. SOC_SINGLE("PCBeep Bypass Headphone Volume", AC97_PC_BEEP, 12, 7, 1),
  111. SOC_SINGLE("PCBeep Bypass Speaker Volume", AC97_PC_BEEP, 8, 7, 1),
  112. SOC_SINGLE("PCBeep Bypass Phone Volume", AC97_PC_BEEP, 4, 7, 1),
  113. SOC_SINGLE("Aux Playback Headphone Volume", AC97_CD, 12, 7, 1),
  114. SOC_SINGLE("Aux Playback Speaker Volume", AC97_CD, 8, 7, 1),
  115. SOC_SINGLE("Aux Playback Phone Volume", AC97_CD, 4, 7, 1),
  116. SOC_SINGLE("Phone Volume", AC97_PHONE, 0, 15, 1),
  117. SOC_DOUBLE("Line Capture Volume", AC97_LINE, 8, 0, 31, 1),
  118. SOC_SINGLE("Capture 20dB Boost Switch", AC97_REC_SEL, 14, 1, 0),
  119. SOC_SINGLE("Capture to Phone 20dB Boost Switch", AC97_REC_SEL, 11, 1, 1),
  120. SOC_SINGLE("3D Upper Cut-off Switch", AC97_3D_CONTROL, 5, 1, 1),
  121. SOC_SINGLE("3D Lower Cut-off Switch", AC97_3D_CONTROL, 4, 1, 1),
  122. SOC_SINGLE("3D Playback Volume", AC97_3D_CONTROL, 0, 15, 0),
  123. SOC_ENUM("Bass Control", wm9712_enum[5]),
  124. SOC_SINGLE("Bass Cut-off Switch", AC97_MASTER_TONE, 12, 1, 1),
  125. SOC_SINGLE("Tone Cut-off Switch", AC97_MASTER_TONE, 4, 1, 1),
  126. SOC_SINGLE("Playback Attenuate (-6dB) Switch", AC97_MASTER_TONE, 6, 1, 0),
  127. SOC_SINGLE("Bass Volume", AC97_MASTER_TONE, 8, 15, 1),
  128. SOC_SINGLE("Treble Volume", AC97_MASTER_TONE, 0, 15, 1),
  129. SOC_SINGLE("Capture ADC Switch", AC97_REC_GAIN, 15, 1, 1),
  130. SOC_ENUM("Capture Volume Steps", wm9712_enum[6]),
  131. SOC_DOUBLE("Capture Volume", AC97_REC_GAIN, 8, 0, 63, 1),
  132. SOC_SINGLE("Capture ZC Switch", AC97_REC_GAIN, 7, 1, 0),
  133. SOC_SINGLE("Mic 1 Volume", AC97_MIC, 8, 31, 1),
  134. SOC_SINGLE("Mic 2 Volume", AC97_MIC, 0, 31, 1),
  135. SOC_SINGLE("Mic 20dB Boost Switch", AC97_MIC, 7, 1, 0),
  136. };
  137. /* We have to create a fake left and right HP mixers because
  138. * the codec only has a single control that is shared by both channels.
  139. * This makes it impossible to determine the audio path.
  140. */
  141. static int mixer_event(struct snd_soc_dapm_widget *w,
  142. struct snd_kcontrol *k, int event)
  143. {
  144. u16 l, r, beep, line, phone, mic, pcm, aux;
  145. l = ac97_read(w->codec, HPL_MIXER);
  146. r = ac97_read(w->codec, HPR_MIXER);
  147. beep = ac97_read(w->codec, AC97_PC_BEEP);
  148. mic = ac97_read(w->codec, AC97_VIDEO);
  149. phone = ac97_read(w->codec, AC97_PHONE);
  150. line = ac97_read(w->codec, AC97_LINE);
  151. pcm = ac97_read(w->codec, AC97_PCM);
  152. aux = ac97_read(w->codec, AC97_CD);
  153. if (l & 0x1 || r & 0x1)
  154. ac97_write(w->codec, AC97_VIDEO, mic & 0x7fff);
  155. else
  156. ac97_write(w->codec, AC97_VIDEO, mic | 0x8000);
  157. if (l & 0x2 || r & 0x2)
  158. ac97_write(w->codec, AC97_PCM, pcm & 0x7fff);
  159. else
  160. ac97_write(w->codec, AC97_PCM, pcm | 0x8000);
  161. if (l & 0x4 || r & 0x4)
  162. ac97_write(w->codec, AC97_LINE, line & 0x7fff);
  163. else
  164. ac97_write(w->codec, AC97_LINE, line | 0x8000);
  165. if (l & 0x8 || r & 0x8)
  166. ac97_write(w->codec, AC97_PHONE, phone & 0x7fff);
  167. else
  168. ac97_write(w->codec, AC97_PHONE, phone | 0x8000);
  169. if (l & 0x10 || r & 0x10)
  170. ac97_write(w->codec, AC97_CD, aux & 0x7fff);
  171. else
  172. ac97_write(w->codec, AC97_CD, aux | 0x8000);
  173. if (l & 0x20 || r & 0x20)
  174. ac97_write(w->codec, AC97_PC_BEEP, beep & 0x7fff);
  175. else
  176. ac97_write(w->codec, AC97_PC_BEEP, beep | 0x8000);
  177. return 0;
  178. }
  179. /* Left Headphone Mixers */
  180. static const struct snd_kcontrol_new wm9712_hpl_mixer_controls[] = {
  181. SOC_DAPM_SINGLE("PCBeep Bypass Switch", HPL_MIXER, 5, 1, 0),
  182. SOC_DAPM_SINGLE("Aux Playback Switch", HPL_MIXER, 4, 1, 0),
  183. SOC_DAPM_SINGLE("Phone Bypass Switch", HPL_MIXER, 3, 1, 0),
  184. SOC_DAPM_SINGLE("Line Bypass Switch", HPL_MIXER, 2, 1, 0),
  185. SOC_DAPM_SINGLE("PCM Playback Switch", HPL_MIXER, 1, 1, 0),
  186. SOC_DAPM_SINGLE("Mic Sidetone Switch", HPL_MIXER, 0, 1, 0),
  187. };
  188. /* Right Headphone Mixers */
  189. static const struct snd_kcontrol_new wm9712_hpr_mixer_controls[] = {
  190. SOC_DAPM_SINGLE("PCBeep Bypass Switch", HPR_MIXER, 5, 1, 0),
  191. SOC_DAPM_SINGLE("Aux Playback Switch", HPR_MIXER, 4, 1, 0),
  192. SOC_DAPM_SINGLE("Phone Bypass Switch", HPR_MIXER, 3, 1, 0),
  193. SOC_DAPM_SINGLE("Line Bypass Switch", HPR_MIXER, 2, 1, 0),
  194. SOC_DAPM_SINGLE("PCM Playback Switch", HPR_MIXER, 1, 1, 0),
  195. SOC_DAPM_SINGLE("Mic Sidetone Switch", HPR_MIXER, 0, 1, 0),
  196. };
  197. /* Speaker Mixer */
  198. static const struct snd_kcontrol_new wm9712_speaker_mixer_controls[] = {
  199. SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 11, 1, 1),
  200. SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 11, 1, 1),
  201. SOC_DAPM_SINGLE("Phone Bypass Switch", AC97_PHONE, 14, 1, 1),
  202. SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 14, 1, 1),
  203. SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 14, 1, 1),
  204. };
  205. /* Phone Mixer */
  206. static const struct snd_kcontrol_new wm9712_phone_mixer_controls[] = {
  207. SOC_DAPM_SINGLE("PCBeep Bypass Switch", AC97_PC_BEEP, 7, 1, 1),
  208. SOC_DAPM_SINGLE("Aux Playback Switch", AC97_CD, 7, 1, 1),
  209. SOC_DAPM_SINGLE("Line Bypass Switch", AC97_LINE, 13, 1, 1),
  210. SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PCM, 13, 1, 1),
  211. SOC_DAPM_SINGLE("Mic 1 Sidetone Switch", AC97_MIC, 14, 1, 1),
  212. SOC_DAPM_SINGLE("Mic 2 Sidetone Switch", AC97_MIC, 13, 1, 1),
  213. };
  214. /* ALC headphone mux */
  215. static const struct snd_kcontrol_new wm9712_alc_mux_controls =
  216. SOC_DAPM_ENUM("Route", wm9712_enum[1]);
  217. /* out 3 mux */
  218. static const struct snd_kcontrol_new wm9712_out3_mux_controls =
  219. SOC_DAPM_ENUM("Route", wm9712_enum[2]);
  220. /* spk mux */
  221. static const struct snd_kcontrol_new wm9712_spk_mux_controls =
  222. SOC_DAPM_ENUM("Route", wm9712_enum[3]);
  223. /* Capture to Phone mux */
  224. static const struct snd_kcontrol_new wm9712_capture_phone_mux_controls =
  225. SOC_DAPM_ENUM("Route", wm9712_enum[4]);
  226. /* Capture left select */
  227. static const struct snd_kcontrol_new wm9712_capture_selectl_controls =
  228. SOC_DAPM_ENUM("Route", wm9712_enum[8]);
  229. /* Capture right select */
  230. static const struct snd_kcontrol_new wm9712_capture_selectr_controls =
  231. SOC_DAPM_ENUM("Route", wm9712_enum[9]);
  232. /* Mic select */
  233. static const struct snd_kcontrol_new wm9712_mic_src_controls =
  234. SOC_DAPM_ENUM("Route", wm9712_enum[7]);
  235. /* diff select */
  236. static const struct snd_kcontrol_new wm9712_diff_sel_controls =
  237. SOC_DAPM_ENUM("Route", wm9712_enum[11]);
  238. static const struct snd_soc_dapm_widget wm9712_dapm_widgets[] = {
  239. SND_SOC_DAPM_MUX("ALC Sidetone Mux", SND_SOC_NOPM, 0, 0,
  240. &wm9712_alc_mux_controls),
  241. SND_SOC_DAPM_MUX("Out3 Mux", SND_SOC_NOPM, 0, 0,
  242. &wm9712_out3_mux_controls),
  243. SND_SOC_DAPM_MUX("Speaker Mux", SND_SOC_NOPM, 0, 0,
  244. &wm9712_spk_mux_controls),
  245. SND_SOC_DAPM_MUX("Capture Phone Mux", SND_SOC_NOPM, 0, 0,
  246. &wm9712_capture_phone_mux_controls),
  247. SND_SOC_DAPM_MUX("Left Capture Select", SND_SOC_NOPM, 0, 0,
  248. &wm9712_capture_selectl_controls),
  249. SND_SOC_DAPM_MUX("Right Capture Select", SND_SOC_NOPM, 0, 0,
  250. &wm9712_capture_selectr_controls),
  251. SND_SOC_DAPM_MUX("Mic Select Source", SND_SOC_NOPM, 0, 0,
  252. &wm9712_mic_src_controls),
  253. SND_SOC_DAPM_MUX("Differential Source", SND_SOC_NOPM, 0, 0,
  254. &wm9712_diff_sel_controls),
  255. SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
  256. SND_SOC_DAPM_MIXER_E("Left HP Mixer", AC97_INT_PAGING, 9, 1,
  257. &wm9712_hpl_mixer_controls[0], ARRAY_SIZE(wm9712_hpl_mixer_controls),
  258. mixer_event, SND_SOC_DAPM_POST_REG),
  259. SND_SOC_DAPM_MIXER_E("Right HP Mixer", AC97_INT_PAGING, 8, 1,
  260. &wm9712_hpr_mixer_controls[0], ARRAY_SIZE(wm9712_hpr_mixer_controls),
  261. mixer_event, SND_SOC_DAPM_POST_REG),
  262. SND_SOC_DAPM_MIXER("Phone Mixer", AC97_INT_PAGING, 6, 1,
  263. &wm9712_phone_mixer_controls[0], ARRAY_SIZE(wm9712_phone_mixer_controls)),
  264. SND_SOC_DAPM_MIXER("Speaker Mixer", AC97_INT_PAGING, 7, 1,
  265. &wm9712_speaker_mixer_controls[0],
  266. ARRAY_SIZE(wm9712_speaker_mixer_controls)),
  267. SND_SOC_DAPM_MIXER("Mono Mixer", SND_SOC_NOPM, 0, 0, NULL, 0),
  268. SND_SOC_DAPM_DAC("Left DAC", "Left HiFi Playback", AC97_INT_PAGING, 14, 1),
  269. SND_SOC_DAPM_DAC("Right DAC", "Right HiFi Playback", AC97_INT_PAGING, 13, 1),
  270. SND_SOC_DAPM_DAC("Aux DAC", "Aux Playback", SND_SOC_NOPM, 0, 0),
  271. SND_SOC_DAPM_ADC("Left ADC", "Left HiFi Capture", AC97_INT_PAGING, 12, 1),
  272. SND_SOC_DAPM_ADC("Right ADC", "Right HiFi Capture", AC97_INT_PAGING, 11, 1),
  273. SND_SOC_DAPM_PGA("Headphone PGA", AC97_INT_PAGING, 4, 1, NULL, 0),
  274. SND_SOC_DAPM_PGA("Speaker PGA", AC97_INT_PAGING, 3, 1, NULL, 0),
  275. SND_SOC_DAPM_PGA("Out 3 PGA", AC97_INT_PAGING, 5, 1, NULL, 0),
  276. SND_SOC_DAPM_PGA("Line PGA", AC97_INT_PAGING, 2, 1, NULL, 0),
  277. SND_SOC_DAPM_PGA("Phone PGA", AC97_INT_PAGING, 1, 1, NULL, 0),
  278. SND_SOC_DAPM_PGA("Mic PGA", AC97_INT_PAGING, 0, 1, NULL, 0),
  279. SND_SOC_DAPM_MICBIAS("Mic Bias", AC97_INT_PAGING, 10, 1),
  280. SND_SOC_DAPM_OUTPUT("MONOOUT"),
  281. SND_SOC_DAPM_OUTPUT("HPOUTL"),
  282. SND_SOC_DAPM_OUTPUT("HPOUTR"),
  283. SND_SOC_DAPM_OUTPUT("LOUT2"),
  284. SND_SOC_DAPM_OUTPUT("ROUT2"),
  285. SND_SOC_DAPM_OUTPUT("OUT3"),
  286. SND_SOC_DAPM_INPUT("LINEINL"),
  287. SND_SOC_DAPM_INPUT("LINEINR"),
  288. SND_SOC_DAPM_INPUT("PHONE"),
  289. SND_SOC_DAPM_INPUT("PCBEEP"),
  290. SND_SOC_DAPM_INPUT("MIC1"),
  291. SND_SOC_DAPM_INPUT("MIC2"),
  292. };
  293. static const struct snd_soc_dapm_route audio_map[] = {
  294. /* virtual mixer - mixes left & right channels for spk and mono */
  295. {"AC97 Mixer", NULL, "Left DAC"},
  296. {"AC97 Mixer", NULL, "Right DAC"},
  297. /* Left HP mixer */
  298. {"Left HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
  299. {"Left HP Mixer", "Aux Playback Switch", "Aux DAC"},
  300. {"Left HP Mixer", "Phone Bypass Switch", "Phone PGA"},
  301. {"Left HP Mixer", "Line Bypass Switch", "Line PGA"},
  302. {"Left HP Mixer", "PCM Playback Switch", "Left DAC"},
  303. {"Left HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
  304. {"Left HP Mixer", NULL, "ALC Sidetone Mux"},
  305. /* Right HP mixer */
  306. {"Right HP Mixer", "PCBeep Bypass Switch", "PCBEEP"},
  307. {"Right HP Mixer", "Aux Playback Switch", "Aux DAC"},
  308. {"Right HP Mixer", "Phone Bypass Switch", "Phone PGA"},
  309. {"Right HP Mixer", "Line Bypass Switch", "Line PGA"},
  310. {"Right HP Mixer", "PCM Playback Switch", "Right DAC"},
  311. {"Right HP Mixer", "Mic Sidetone Switch", "Mic PGA"},
  312. {"Right HP Mixer", NULL, "ALC Sidetone Mux"},
  313. /* speaker mixer */
  314. {"Speaker Mixer", "PCBeep Bypass Switch", "PCBEEP"},
  315. {"Speaker Mixer", "Line Bypass Switch", "Line PGA"},
  316. {"Speaker Mixer", "PCM Playback Switch", "AC97 Mixer"},
  317. {"Speaker Mixer", "Phone Bypass Switch", "Phone PGA"},
  318. {"Speaker Mixer", "Aux Playback Switch", "Aux DAC"},
  319. /* Phone mixer */
  320. {"Phone Mixer", "PCBeep Bypass Switch", "PCBEEP"},
  321. {"Phone Mixer", "Line Bypass Switch", "Line PGA"},
  322. {"Phone Mixer", "Aux Playback Switch", "Aux DAC"},
  323. {"Phone Mixer", "PCM Playback Switch", "AC97 Mixer"},
  324. {"Phone Mixer", "Mic 1 Sidetone Switch", "Mic PGA"},
  325. {"Phone Mixer", "Mic 2 Sidetone Switch", "Mic PGA"},
  326. /* inputs */
  327. {"Line PGA", NULL, "LINEINL"},
  328. {"Line PGA", NULL, "LINEINR"},
  329. {"Phone PGA", NULL, "PHONE"},
  330. {"Mic PGA", NULL, "MIC1"},
  331. {"Mic PGA", NULL, "MIC2"},
  332. /* left capture selector */
  333. {"Left Capture Select", "Mic", "MIC1"},
  334. {"Left Capture Select", "Speaker Mixer", "Speaker Mixer"},
  335. {"Left Capture Select", "Line", "LINEINL"},
  336. {"Left Capture Select", "Headphone Mixer", "Left HP Mixer"},
  337. {"Left Capture Select", "Phone Mixer", "Phone Mixer"},
  338. {"Left Capture Select", "Phone", "PHONE"},
  339. /* right capture selector */
  340. {"Right Capture Select", "Mic", "MIC2"},
  341. {"Right Capture Select", "Speaker Mixer", "Speaker Mixer"},
  342. {"Right Capture Select", "Line", "LINEINR"},
  343. {"Right Capture Select", "Headphone Mixer", "Right HP Mixer"},
  344. {"Right Capture Select", "Phone Mixer", "Phone Mixer"},
  345. {"Right Capture Select", "Phone", "PHONE"},
  346. /* ALC Sidetone */
  347. {"ALC Sidetone Mux", "Stereo", "Left Capture Select"},
  348. {"ALC Sidetone Mux", "Stereo", "Right Capture Select"},
  349. {"ALC Sidetone Mux", "Left", "Left Capture Select"},
  350. {"ALC Sidetone Mux", "Right", "Right Capture Select"},
  351. /* ADC's */
  352. {"Left ADC", NULL, "Left Capture Select"},
  353. {"Right ADC", NULL, "Right Capture Select"},
  354. /* outputs */
  355. {"MONOOUT", NULL, "Phone Mixer"},
  356. {"HPOUTL", NULL, "Headphone PGA"},
  357. {"Headphone PGA", NULL, "Left HP Mixer"},
  358. {"HPOUTR", NULL, "Headphone PGA"},
  359. {"Headphone PGA", NULL, "Right HP Mixer"},
  360. /* mono mixer */
  361. {"Mono Mixer", NULL, "Left HP Mixer"},
  362. {"Mono Mixer", NULL, "Right HP Mixer"},
  363. /* Out3 Mux */
  364. {"Out3 Mux", "Left", "Left HP Mixer"},
  365. {"Out3 Mux", "Mono", "Phone Mixer"},
  366. {"Out3 Mux", "Left + Right", "Mono Mixer"},
  367. {"Out 3 PGA", NULL, "Out3 Mux"},
  368. {"OUT3", NULL, "Out 3 PGA"},
  369. /* speaker Mux */
  370. {"Speaker Mux", "Speaker Mix", "Speaker Mixer"},
  371. {"Speaker Mux", "Headphone Mix", "Mono Mixer"},
  372. {"Speaker PGA", NULL, "Speaker Mux"},
  373. {"LOUT2", NULL, "Speaker PGA"},
  374. {"ROUT2", NULL, "Speaker PGA"},
  375. };
  376. static int wm9712_add_widgets(struct snd_soc_codec *codec)
  377. {
  378. snd_soc_dapm_new_controls(codec, wm9712_dapm_widgets,
  379. ARRAY_SIZE(wm9712_dapm_widgets));
  380. snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
  381. return 0;
  382. }
  383. static unsigned int ac97_read(struct snd_soc_codec *codec,
  384. unsigned int reg)
  385. {
  386. u16 *cache = codec->reg_cache;
  387. if (reg == AC97_RESET || reg == AC97_GPIO_STATUS ||
  388. reg == AC97_VENDOR_ID1 || reg == AC97_VENDOR_ID2 ||
  389. reg == AC97_REC_GAIN)
  390. return soc_ac97_ops.read(codec->ac97, reg);
  391. else {
  392. reg = reg >> 1;
  393. if (reg >= (ARRAY_SIZE(wm9712_reg)))
  394. return -EIO;
  395. return cache[reg];
  396. }
  397. }
  398. static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
  399. unsigned int val)
  400. {
  401. u16 *cache = codec->reg_cache;
  402. if (reg < 0x7c)
  403. soc_ac97_ops.write(codec->ac97, reg, val);
  404. reg = reg >> 1;
  405. if (reg < (ARRAY_SIZE(wm9712_reg)))
  406. cache[reg] = val;
  407. return 0;
  408. }
  409. static int ac97_prepare(struct snd_pcm_substream *substream,
  410. struct snd_soc_dai *dai)
  411. {
  412. struct snd_pcm_runtime *runtime = substream->runtime;
  413. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  414. struct snd_soc_codec *codec =rtd->codec;
  415. int reg;
  416. u16 vra;
  417. vra = ac97_read(codec, AC97_EXTENDED_STATUS);
  418. ac97_write(codec, AC97_EXTENDED_STATUS, vra | 0x1);
  419. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  420. reg = AC97_PCM_FRONT_DAC_RATE;
  421. else
  422. reg = AC97_PCM_LR_ADC_RATE;
  423. return ac97_write(codec, reg, runtime->rate);
  424. }
  425. static int ac97_aux_prepare(struct snd_pcm_substream *substream,
  426. struct snd_soc_dai *dai)
  427. {
  428. struct snd_pcm_runtime *runtime = substream->runtime;
  429. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  430. struct snd_soc_codec *codec = rtd->codec;
  431. u16 vra, xsle;
  432. vra = ac97_read(codec, AC97_EXTENDED_STATUS);
  433. ac97_write(codec, AC97_EXTENDED_STATUS, vra | 0x1);
  434. xsle = ac97_read(codec, AC97_PCI_SID);
  435. ac97_write(codec, AC97_PCI_SID, xsle | 0x8000);
  436. if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
  437. return -ENODEV;
  438. return ac97_write(codec, AC97_PCM_SURR_DAC_RATE, runtime->rate);
  439. }
  440. #define WM9712_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
  441. SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
  442. SNDRV_PCM_RATE_48000)
  443. static struct snd_soc_dai_ops wm9712_dai_ops_hifi = {
  444. .prepare = ac97_prepare,
  445. };
  446. static struct snd_soc_dai_ops wm9712_dai_ops_aux = {
  447. .prepare = ac97_aux_prepare,
  448. };
  449. static struct snd_soc_dai_driver wm9712_dai[] = {
  450. {
  451. .name = "wm9712-hifi",
  452. .ac97_control = 1,
  453. .playback = {
  454. .stream_name = "HiFi Playback",
  455. .channels_min = 1,
  456. .channels_max = 2,
  457. .rates = WM9712_AC97_RATES,
  458. .formats = SND_SOC_STD_AC97_FMTS,},
  459. .capture = {
  460. .stream_name = "HiFi Capture",
  461. .channels_min = 1,
  462. .channels_max = 2,
  463. .rates = WM9712_AC97_RATES,
  464. .formats = SND_SOC_STD_AC97_FMTS,},
  465. .ops = &wm9712_dai_ops_hifi,
  466. },
  467. {
  468. .name = "wm9712-aux",
  469. .playback = {
  470. .stream_name = "Aux Playback",
  471. .channels_min = 1,
  472. .channels_max = 1,
  473. .rates = WM9712_AC97_RATES,
  474. .formats = SND_SOC_STD_AC97_FMTS,},
  475. .ops = &wm9712_dai_ops_aux,
  476. }
  477. };
  478. static int wm9712_set_bias_level(struct snd_soc_codec *codec,
  479. enum snd_soc_bias_level level)
  480. {
  481. switch (level) {
  482. case SND_SOC_BIAS_ON:
  483. case SND_SOC_BIAS_PREPARE:
  484. break;
  485. case SND_SOC_BIAS_STANDBY:
  486. ac97_write(codec, AC97_POWERDOWN, 0x0000);
  487. break;
  488. case SND_SOC_BIAS_OFF:
  489. /* disable everything including AC link */
  490. ac97_write(codec, AC97_EXTENDED_MSTATUS, 0xffff);
  491. ac97_write(codec, AC97_POWERDOWN, 0xffff);
  492. break;
  493. }
  494. codec->bias_level = level;
  495. return 0;
  496. }
  497. static int wm9712_reset(struct snd_soc_codec *codec, int try_warm)
  498. {
  499. if (try_warm && soc_ac97_ops.warm_reset) {
  500. soc_ac97_ops.warm_reset(codec->ac97);
  501. if (ac97_read(codec, 0) == wm9712_reg[0])
  502. return 1;
  503. }
  504. soc_ac97_ops.reset(codec->ac97);
  505. if (soc_ac97_ops.warm_reset)
  506. soc_ac97_ops.warm_reset(codec->ac97);
  507. if (ac97_read(codec, 0) != wm9712_reg[0])
  508. goto err;
  509. return 0;
  510. err:
  511. printk(KERN_ERR "WM9712 AC97 reset failed\n");
  512. return -EIO;
  513. }
  514. static int wm9712_soc_suspend(struct snd_soc_codec *codec,
  515. pm_message_t state)
  516. {
  517. wm9712_set_bias_level(codec, SND_SOC_BIAS_OFF);
  518. return 0;
  519. }
  520. static int wm9712_soc_resume(struct snd_soc_codec *codec)
  521. {
  522. int i, ret;
  523. u16 *cache = codec->reg_cache;
  524. ret = wm9712_reset(codec, 1);
  525. if (ret < 0) {
  526. printk(KERN_ERR "could not reset AC97 codec\n");
  527. return ret;
  528. }
  529. wm9712_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
  530. if (ret == 0) {
  531. /* Sync reg_cache with the hardware after cold reset */
  532. for (i = 2; i < ARRAY_SIZE(wm9712_reg) << 1; i += 2) {
  533. if (i == AC97_INT_PAGING || i == AC97_POWERDOWN ||
  534. (i > 0x58 && i != 0x5c))
  535. continue;
  536. soc_ac97_ops.write(codec->ac97, i, cache[i>>1]);
  537. }
  538. }
  539. return ret;
  540. }
  541. static int wm9712_soc_probe(struct snd_soc_codec *codec)
  542. {
  543. int ret = 0;
  544. printk(KERN_INFO "WM9711/WM9712 SoC Audio Codec %s\n", WM9712_VERSION);
  545. ret = snd_soc_new_ac97_codec(codec, &soc_ac97_ops, 0);
  546. if (ret < 0) {
  547. printk(KERN_ERR "wm9712: failed to register AC97 codec\n");
  548. return ret;
  549. }
  550. ret = wm9712_reset(codec, 0);
  551. if (ret < 0) {
  552. printk(KERN_ERR "Failed to reset WM9712: AC97 link error\n");
  553. goto reset_err;
  554. }
  555. /* set alc mux to none */
  556. ac97_write(codec, AC97_VIDEO, ac97_read(codec, AC97_VIDEO) | 0x3000);
  557. wm9712_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
  558. snd_soc_add_controls(codec, wm9712_snd_ac97_controls,
  559. ARRAY_SIZE(wm9712_snd_ac97_controls));
  560. wm9712_add_widgets(codec);
  561. return 0;
  562. reset_err:
  563. snd_soc_free_ac97_codec(codec);
  564. return ret;
  565. }
  566. static int wm9712_soc_remove(struct snd_soc_codec *codec)
  567. {
  568. snd_soc_free_ac97_codec(codec);
  569. return 0;
  570. }
  571. static struct snd_soc_codec_driver soc_codec_dev_wm9712 = {
  572. .probe = wm9712_soc_probe,
  573. .remove = wm9712_soc_remove,
  574. .suspend = wm9712_soc_suspend,
  575. .resume = wm9712_soc_resume,
  576. .read = ac97_read,
  577. .write = ac97_write,
  578. .set_bias_level = wm9712_set_bias_level,
  579. .reg_cache_size = ARRAY_SIZE(wm9712_reg),
  580. .reg_word_size = sizeof(u16),
  581. .reg_cache_step = 2,
  582. .reg_cache_default = wm9712_reg,
  583. };
  584. static __devinit int wm9712_probe(struct platform_device *pdev)
  585. {
  586. return snd_soc_register_codec(&pdev->dev,
  587. &soc_codec_dev_wm9712, wm9712_dai, ARRAY_SIZE(wm9712_dai));
  588. }
  589. static int __devexit wm9712_remove(struct platform_device *pdev)
  590. {
  591. snd_soc_unregister_codec(&pdev->dev);
  592. return 0;
  593. }
  594. static struct platform_driver wm9712_codec_driver = {
  595. .driver = {
  596. .name = "wm9712-codec",
  597. .owner = THIS_MODULE,
  598. },
  599. .probe = wm9712_probe,
  600. .remove = __devexit_p(wm9712_remove),
  601. };
  602. static int __init wm9712_init(void)
  603. {
  604. return platform_driver_register(&wm9712_codec_driver);
  605. }
  606. module_init(wm9712_init);
  607. static void __exit wm9712_exit(void)
  608. {
  609. platform_driver_unregister(&wm9712_codec_driver);
  610. }
  611. module_exit(wm9712_exit);
  612. MODULE_DESCRIPTION("ASoC WM9711/WM9712 driver");
  613. MODULE_AUTHOR("Liam Girdwood");
  614. MODULE_LICENSE("GPL");