wm9712.c 23 KB

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