wm9712.c 25 KB

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