wm8993.c 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. /*
  2. * wm8993.c -- WM8993 ALSA SoC audio driver
  3. *
  4. * Copyright 2009, 2010 Wolfson Microelectronics plc
  5. *
  6. * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/moduleparam.h>
  14. #include <linux/init.h>
  15. #include <linux/delay.h>
  16. #include <linux/pm.h>
  17. #include <linux/i2c.h>
  18. #include <linux/regmap.h>
  19. #include <linux/regulator/consumer.h>
  20. #include <linux/spi/spi.h>
  21. #include <linux/slab.h>
  22. #include <sound/core.h>
  23. #include <sound/pcm.h>
  24. #include <sound/pcm_params.h>
  25. #include <sound/tlv.h>
  26. #include <sound/soc.h>
  27. #include <sound/initval.h>
  28. #include <sound/wm8993.h>
  29. #include "wm8993.h"
  30. #include "wm_hubs.h"
  31. #define WM8993_NUM_SUPPLIES 6
  32. static const char *wm8993_supply_names[WM8993_NUM_SUPPLIES] = {
  33. "DCVDD",
  34. "DBVDD",
  35. "AVDD1",
  36. "AVDD2",
  37. "CPVDD",
  38. "SPKVDD",
  39. };
  40. static struct reg_default wm8993_reg_defaults[] = {
  41. { 1, 0x0000 }, /* R1 - Power Management (1) */
  42. { 2, 0x6000 }, /* R2 - Power Management (2) */
  43. { 3, 0x0000 }, /* R3 - Power Management (3) */
  44. { 4, 0x4050 }, /* R4 - Audio Interface (1) */
  45. { 5, 0x4000 }, /* R5 - Audio Interface (2) */
  46. { 6, 0x01C8 }, /* R6 - Clocking 1 */
  47. { 7, 0x0000 }, /* R7 - Clocking 2 */
  48. { 8, 0x0000 }, /* R8 - Audio Interface (3) */
  49. { 9, 0x0040 }, /* R9 - Audio Interface (4) */
  50. { 10, 0x0004 }, /* R10 - DAC CTRL */
  51. { 11, 0x00C0 }, /* R11 - Left DAC Digital Volume */
  52. { 12, 0x00C0 }, /* R12 - Right DAC Digital Volume */
  53. { 13, 0x0000 }, /* R13 - Digital Side Tone */
  54. { 14, 0x0300 }, /* R14 - ADC CTRL */
  55. { 15, 0x00C0 }, /* R15 - Left ADC Digital Volume */
  56. { 16, 0x00C0 }, /* R16 - Right ADC Digital Volume */
  57. { 18, 0x0000 }, /* R18 - GPIO CTRL 1 */
  58. { 19, 0x0010 }, /* R19 - GPIO1 */
  59. { 20, 0x0000 }, /* R20 - IRQ_DEBOUNCE */
  60. { 22, 0x8000 }, /* R22 - GPIOCTRL 2 */
  61. { 23, 0x0800 }, /* R23 - GPIO_POL */
  62. { 24, 0x008B }, /* R24 - Left Line Input 1&2 Volume */
  63. { 25, 0x008B }, /* R25 - Left Line Input 3&4 Volume */
  64. { 26, 0x008B }, /* R26 - Right Line Input 1&2 Volume */
  65. { 27, 0x008B }, /* R27 - Right Line Input 3&4 Volume */
  66. { 28, 0x006D }, /* R28 - Left Output Volume */
  67. { 29, 0x006D }, /* R29 - Right Output Volume */
  68. { 30, 0x0066 }, /* R30 - Line Outputs Volume */
  69. { 31, 0x0020 }, /* R31 - HPOUT2 Volume */
  70. { 32, 0x0079 }, /* R32 - Left OPGA Volume */
  71. { 33, 0x0079 }, /* R33 - Right OPGA Volume */
  72. { 34, 0x0003 }, /* R34 - SPKMIXL Attenuation */
  73. { 35, 0x0003 }, /* R35 - SPKMIXR Attenuation */
  74. { 36, 0x0011 }, /* R36 - SPKOUT Mixers */
  75. { 37, 0x0100 }, /* R37 - SPKOUT Boost */
  76. { 38, 0x0079 }, /* R38 - Speaker Volume Left */
  77. { 39, 0x0079 }, /* R39 - Speaker Volume Right */
  78. { 40, 0x0000 }, /* R40 - Input Mixer2 */
  79. { 41, 0x0000 }, /* R41 - Input Mixer3 */
  80. { 42, 0x0000 }, /* R42 - Input Mixer4 */
  81. { 43, 0x0000 }, /* R43 - Input Mixer5 */
  82. { 44, 0x0000 }, /* R44 - Input Mixer6 */
  83. { 45, 0x0000 }, /* R45 - Output Mixer1 */
  84. { 46, 0x0000 }, /* R46 - Output Mixer2 */
  85. { 47, 0x0000 }, /* R47 - Output Mixer3 */
  86. { 48, 0x0000 }, /* R48 - Output Mixer4 */
  87. { 49, 0x0000 }, /* R49 - Output Mixer5 */
  88. { 50, 0x0000 }, /* R50 - Output Mixer6 */
  89. { 51, 0x0000 }, /* R51 - HPOUT2 Mixer */
  90. { 52, 0x0000 }, /* R52 - Line Mixer1 */
  91. { 53, 0x0000 }, /* R53 - Line Mixer2 */
  92. { 54, 0x0000 }, /* R54 - Speaker Mixer */
  93. { 55, 0x0000 }, /* R55 - Additional Control */
  94. { 56, 0x0000 }, /* R56 - AntiPOP1 */
  95. { 57, 0x0000 }, /* R57 - AntiPOP2 */
  96. { 58, 0x0000 }, /* R58 - MICBIAS */
  97. { 60, 0x0000 }, /* R60 - FLL Control 1 */
  98. { 61, 0x0000 }, /* R61 - FLL Control 2 */
  99. { 62, 0x0000 }, /* R62 - FLL Control 3 */
  100. { 63, 0x2EE0 }, /* R63 - FLL Control 4 */
  101. { 64, 0x0002 }, /* R64 - FLL Control 5 */
  102. { 65, 0x2287 }, /* R65 - Clocking 3 */
  103. { 66, 0x025F }, /* R66 - Clocking 4 */
  104. { 67, 0x0000 }, /* R67 - MW Slave Control */
  105. { 69, 0x0002 }, /* R69 - Bus Control 1 */
  106. { 70, 0x0000 }, /* R70 - Write Sequencer 0 */
  107. { 71, 0x0000 }, /* R71 - Write Sequencer 1 */
  108. { 72, 0x0000 }, /* R72 - Write Sequencer 2 */
  109. { 73, 0x0000 }, /* R73 - Write Sequencer 3 */
  110. { 74, 0x0000 }, /* R74 - Write Sequencer 4 */
  111. { 75, 0x0000 }, /* R75 - Write Sequencer 5 */
  112. { 76, 0x1F25 }, /* R76 - Charge Pump 1 */
  113. { 81, 0x0000 }, /* R81 - Class W 0 */
  114. { 85, 0x054A }, /* R85 - DC Servo 1 */
  115. { 87, 0x0000 }, /* R87 - DC Servo 3 */
  116. { 96, 0x0100 }, /* R96 - Analogue HP 0 */
  117. { 98, 0x0000 }, /* R98 - EQ1 */
  118. { 99, 0x000C }, /* R99 - EQ2 */
  119. { 100, 0x000C }, /* R100 - EQ3 */
  120. { 101, 0x000C }, /* R101 - EQ4 */
  121. { 102, 0x000C }, /* R102 - EQ5 */
  122. { 103, 0x000C }, /* R103 - EQ6 */
  123. { 104, 0x0FCA }, /* R104 - EQ7 */
  124. { 105, 0x0400 }, /* R105 - EQ8 */
  125. { 106, 0x00D8 }, /* R106 - EQ9 */
  126. { 107, 0x1EB5 }, /* R107 - EQ10 */
  127. { 108, 0xF145 }, /* R108 - EQ11 */
  128. { 109, 0x0B75 }, /* R109 - EQ12 */
  129. { 110, 0x01C5 }, /* R110 - EQ13 */
  130. { 111, 0x1C58 }, /* R111 - EQ14 */
  131. { 112, 0xF373 }, /* R112 - EQ15 */
  132. { 113, 0x0A54 }, /* R113 - EQ16 */
  133. { 114, 0x0558 }, /* R114 - EQ17 */
  134. { 115, 0x168E }, /* R115 - EQ18 */
  135. { 116, 0xF829 }, /* R116 - EQ19 */
  136. { 117, 0x07AD }, /* R117 - EQ20 */
  137. { 118, 0x1103 }, /* R118 - EQ21 */
  138. { 119, 0x0564 }, /* R119 - EQ22 */
  139. { 120, 0x0559 }, /* R120 - EQ23 */
  140. { 121, 0x4000 }, /* R121 - EQ24 */
  141. { 122, 0x0000 }, /* R122 - Digital Pulls */
  142. { 123, 0x0F08 }, /* R123 - DRC Control 1 */
  143. { 124, 0x0000 }, /* R124 - DRC Control 2 */
  144. { 125, 0x0080 }, /* R125 - DRC Control 3 */
  145. { 126, 0x0000 }, /* R126 - DRC Control 4 */
  146. };
  147. static struct {
  148. int ratio;
  149. int clk_sys_rate;
  150. } clk_sys_rates[] = {
  151. { 64, 0 },
  152. { 128, 1 },
  153. { 192, 2 },
  154. { 256, 3 },
  155. { 384, 4 },
  156. { 512, 5 },
  157. { 768, 6 },
  158. { 1024, 7 },
  159. { 1408, 8 },
  160. { 1536, 9 },
  161. };
  162. static struct {
  163. int rate;
  164. int sample_rate;
  165. } sample_rates[] = {
  166. { 8000, 0 },
  167. { 11025, 1 },
  168. { 12000, 1 },
  169. { 16000, 2 },
  170. { 22050, 3 },
  171. { 24000, 3 },
  172. { 32000, 4 },
  173. { 44100, 5 },
  174. { 48000, 5 },
  175. };
  176. static struct {
  177. int div; /* *10 due to .5s */
  178. int bclk_div;
  179. } bclk_divs[] = {
  180. { 10, 0 },
  181. { 15, 1 },
  182. { 20, 2 },
  183. { 30, 3 },
  184. { 40, 4 },
  185. { 55, 5 },
  186. { 60, 6 },
  187. { 80, 7 },
  188. { 110, 8 },
  189. { 120, 9 },
  190. { 160, 10 },
  191. { 220, 11 },
  192. { 240, 12 },
  193. { 320, 13 },
  194. { 440, 14 },
  195. { 480, 15 },
  196. };
  197. struct wm8993_priv {
  198. struct wm_hubs_data hubs_data;
  199. struct device *dev;
  200. struct regmap *regmap;
  201. struct regulator_bulk_data supplies[WM8993_NUM_SUPPLIES];
  202. struct wm8993_platform_data pdata;
  203. struct completion fll_lock;
  204. int master;
  205. int sysclk_source;
  206. int tdm_slots;
  207. int tdm_width;
  208. unsigned int mclk_rate;
  209. unsigned int sysclk_rate;
  210. unsigned int fs;
  211. unsigned int bclk;
  212. int class_w_users;
  213. unsigned int fll_fref;
  214. unsigned int fll_fout;
  215. int fll_src;
  216. };
  217. static bool wm8993_volatile(struct device *dev, unsigned int reg)
  218. {
  219. switch (reg) {
  220. case WM8993_SOFTWARE_RESET:
  221. case WM8993_GPIO_CTRL_1:
  222. case WM8993_DC_SERVO_0:
  223. case WM8993_DC_SERVO_READBACK_0:
  224. case WM8993_DC_SERVO_READBACK_1:
  225. case WM8993_DC_SERVO_READBACK_2:
  226. return true;
  227. default:
  228. return false;
  229. }
  230. }
  231. static bool wm8993_readable(struct device *dev, unsigned int reg)
  232. {
  233. switch (reg) {
  234. case WM8993_SOFTWARE_RESET:
  235. case WM8993_POWER_MANAGEMENT_1:
  236. case WM8993_POWER_MANAGEMENT_2:
  237. case WM8993_POWER_MANAGEMENT_3:
  238. case WM8993_AUDIO_INTERFACE_1:
  239. case WM8993_AUDIO_INTERFACE_2:
  240. case WM8993_CLOCKING_1:
  241. case WM8993_CLOCKING_2:
  242. case WM8993_AUDIO_INTERFACE_3:
  243. case WM8993_AUDIO_INTERFACE_4:
  244. case WM8993_DAC_CTRL:
  245. case WM8993_LEFT_DAC_DIGITAL_VOLUME:
  246. case WM8993_RIGHT_DAC_DIGITAL_VOLUME:
  247. case WM8993_DIGITAL_SIDE_TONE:
  248. case WM8993_ADC_CTRL:
  249. case WM8993_LEFT_ADC_DIGITAL_VOLUME:
  250. case WM8993_RIGHT_ADC_DIGITAL_VOLUME:
  251. case WM8993_GPIO_CTRL_1:
  252. case WM8993_GPIO1:
  253. case WM8993_IRQ_DEBOUNCE:
  254. case WM8993_GPIOCTRL_2:
  255. case WM8993_GPIO_POL:
  256. case WM8993_LEFT_LINE_INPUT_1_2_VOLUME:
  257. case WM8993_LEFT_LINE_INPUT_3_4_VOLUME:
  258. case WM8993_RIGHT_LINE_INPUT_1_2_VOLUME:
  259. case WM8993_RIGHT_LINE_INPUT_3_4_VOLUME:
  260. case WM8993_LEFT_OUTPUT_VOLUME:
  261. case WM8993_RIGHT_OUTPUT_VOLUME:
  262. case WM8993_LINE_OUTPUTS_VOLUME:
  263. case WM8993_HPOUT2_VOLUME:
  264. case WM8993_LEFT_OPGA_VOLUME:
  265. case WM8993_RIGHT_OPGA_VOLUME:
  266. case WM8993_SPKMIXL_ATTENUATION:
  267. case WM8993_SPKMIXR_ATTENUATION:
  268. case WM8993_SPKOUT_MIXERS:
  269. case WM8993_SPKOUT_BOOST:
  270. case WM8993_SPEAKER_VOLUME_LEFT:
  271. case WM8993_SPEAKER_VOLUME_RIGHT:
  272. case WM8993_INPUT_MIXER2:
  273. case WM8993_INPUT_MIXER3:
  274. case WM8993_INPUT_MIXER4:
  275. case WM8993_INPUT_MIXER5:
  276. case WM8993_INPUT_MIXER6:
  277. case WM8993_OUTPUT_MIXER1:
  278. case WM8993_OUTPUT_MIXER2:
  279. case WM8993_OUTPUT_MIXER3:
  280. case WM8993_OUTPUT_MIXER4:
  281. case WM8993_OUTPUT_MIXER5:
  282. case WM8993_OUTPUT_MIXER6:
  283. case WM8993_HPOUT2_MIXER:
  284. case WM8993_LINE_MIXER1:
  285. case WM8993_LINE_MIXER2:
  286. case WM8993_SPEAKER_MIXER:
  287. case WM8993_ADDITIONAL_CONTROL:
  288. case WM8993_ANTIPOP1:
  289. case WM8993_ANTIPOP2:
  290. case WM8993_MICBIAS:
  291. case WM8993_FLL_CONTROL_1:
  292. case WM8993_FLL_CONTROL_2:
  293. case WM8993_FLL_CONTROL_3:
  294. case WM8993_FLL_CONTROL_4:
  295. case WM8993_FLL_CONTROL_5:
  296. case WM8993_CLOCKING_3:
  297. case WM8993_CLOCKING_4:
  298. case WM8993_MW_SLAVE_CONTROL:
  299. case WM8993_BUS_CONTROL_1:
  300. case WM8993_WRITE_SEQUENCER_0:
  301. case WM8993_WRITE_SEQUENCER_1:
  302. case WM8993_WRITE_SEQUENCER_2:
  303. case WM8993_WRITE_SEQUENCER_3:
  304. case WM8993_WRITE_SEQUENCER_4:
  305. case WM8993_WRITE_SEQUENCER_5:
  306. case WM8993_CHARGE_PUMP_1:
  307. case WM8993_CLASS_W_0:
  308. case WM8993_DC_SERVO_0:
  309. case WM8993_DC_SERVO_1:
  310. case WM8993_DC_SERVO_3:
  311. case WM8993_DC_SERVO_READBACK_0:
  312. case WM8993_DC_SERVO_READBACK_1:
  313. case WM8993_DC_SERVO_READBACK_2:
  314. case WM8993_ANALOGUE_HP_0:
  315. case WM8993_EQ1:
  316. case WM8993_EQ2:
  317. case WM8993_EQ3:
  318. case WM8993_EQ4:
  319. case WM8993_EQ5:
  320. case WM8993_EQ6:
  321. case WM8993_EQ7:
  322. case WM8993_EQ8:
  323. case WM8993_EQ9:
  324. case WM8993_EQ10:
  325. case WM8993_EQ11:
  326. case WM8993_EQ12:
  327. case WM8993_EQ13:
  328. case WM8993_EQ14:
  329. case WM8993_EQ15:
  330. case WM8993_EQ16:
  331. case WM8993_EQ17:
  332. case WM8993_EQ18:
  333. case WM8993_EQ19:
  334. case WM8993_EQ20:
  335. case WM8993_EQ21:
  336. case WM8993_EQ22:
  337. case WM8993_EQ23:
  338. case WM8993_EQ24:
  339. case WM8993_DIGITAL_PULLS:
  340. case WM8993_DRC_CONTROL_1:
  341. case WM8993_DRC_CONTROL_2:
  342. case WM8993_DRC_CONTROL_3:
  343. case WM8993_DRC_CONTROL_4:
  344. return true;
  345. default:
  346. return false;
  347. }
  348. }
  349. struct _fll_div {
  350. u16 fll_fratio;
  351. u16 fll_outdiv;
  352. u16 fll_clk_ref_div;
  353. u16 n;
  354. u16 k;
  355. };
  356. /* The size in bits of the FLL divide multiplied by 10
  357. * to allow rounding later */
  358. #define FIXED_FLL_SIZE ((1 << 16) * 10)
  359. static struct {
  360. unsigned int min;
  361. unsigned int max;
  362. u16 fll_fratio;
  363. int ratio;
  364. } fll_fratios[] = {
  365. { 0, 64000, 4, 16 },
  366. { 64000, 128000, 3, 8 },
  367. { 128000, 256000, 2, 4 },
  368. { 256000, 1000000, 1, 2 },
  369. { 1000000, 13500000, 0, 1 },
  370. };
  371. static int fll_factors(struct _fll_div *fll_div, unsigned int Fref,
  372. unsigned int Fout)
  373. {
  374. u64 Kpart;
  375. unsigned int K, Ndiv, Nmod, target;
  376. unsigned int div;
  377. int i;
  378. /* Fref must be <=13.5MHz */
  379. div = 1;
  380. fll_div->fll_clk_ref_div = 0;
  381. while ((Fref / div) > 13500000) {
  382. div *= 2;
  383. fll_div->fll_clk_ref_div++;
  384. if (div > 8) {
  385. pr_err("Can't scale %dMHz input down to <=13.5MHz\n",
  386. Fref);
  387. return -EINVAL;
  388. }
  389. }
  390. pr_debug("Fref=%u Fout=%u\n", Fref, Fout);
  391. /* Apply the division for our remaining calculations */
  392. Fref /= div;
  393. /* Fvco should be 90-100MHz; don't check the upper bound */
  394. div = 0;
  395. target = Fout * 2;
  396. while (target < 90000000) {
  397. div++;
  398. target *= 2;
  399. if (div > 7) {
  400. pr_err("Unable to find FLL_OUTDIV for Fout=%uHz\n",
  401. Fout);
  402. return -EINVAL;
  403. }
  404. }
  405. fll_div->fll_outdiv = div;
  406. pr_debug("Fvco=%dHz\n", target);
  407. /* Find an appropriate FLL_FRATIO and factor it out of the target */
  408. for (i = 0; i < ARRAY_SIZE(fll_fratios); i++) {
  409. if (fll_fratios[i].min <= Fref && Fref <= fll_fratios[i].max) {
  410. fll_div->fll_fratio = fll_fratios[i].fll_fratio;
  411. target /= fll_fratios[i].ratio;
  412. break;
  413. }
  414. }
  415. if (i == ARRAY_SIZE(fll_fratios)) {
  416. pr_err("Unable to find FLL_FRATIO for Fref=%uHz\n", Fref);
  417. return -EINVAL;
  418. }
  419. /* Now, calculate N.K */
  420. Ndiv = target / Fref;
  421. fll_div->n = Ndiv;
  422. Nmod = target % Fref;
  423. pr_debug("Nmod=%d\n", Nmod);
  424. /* Calculate fractional part - scale up so we can round. */
  425. Kpart = FIXED_FLL_SIZE * (long long)Nmod;
  426. do_div(Kpart, Fref);
  427. K = Kpart & 0xFFFFFFFF;
  428. if ((K % 10) >= 5)
  429. K += 5;
  430. /* Move down to proper range now rounding is done */
  431. fll_div->k = K / 10;
  432. pr_debug("N=%x K=%x FLL_FRATIO=%x FLL_OUTDIV=%x FLL_CLK_REF_DIV=%x\n",
  433. fll_div->n, fll_div->k,
  434. fll_div->fll_fratio, fll_div->fll_outdiv,
  435. fll_div->fll_clk_ref_div);
  436. return 0;
  437. }
  438. static int _wm8993_set_fll(struct snd_soc_codec *codec, int fll_id, int source,
  439. unsigned int Fref, unsigned int Fout)
  440. {
  441. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  442. struct i2c_client *i2c = to_i2c_client(codec->dev);
  443. u16 reg1, reg4, reg5;
  444. struct _fll_div fll_div;
  445. unsigned int timeout;
  446. int ret;
  447. /* Any change? */
  448. if (Fref == wm8993->fll_fref && Fout == wm8993->fll_fout)
  449. return 0;
  450. /* Disable the FLL */
  451. if (Fout == 0) {
  452. dev_dbg(codec->dev, "FLL disabled\n");
  453. wm8993->fll_fref = 0;
  454. wm8993->fll_fout = 0;
  455. reg1 = snd_soc_read(codec, WM8993_FLL_CONTROL_1);
  456. reg1 &= ~WM8993_FLL_ENA;
  457. snd_soc_write(codec, WM8993_FLL_CONTROL_1, reg1);
  458. return 0;
  459. }
  460. ret = fll_factors(&fll_div, Fref, Fout);
  461. if (ret != 0)
  462. return ret;
  463. reg5 = snd_soc_read(codec, WM8993_FLL_CONTROL_5);
  464. reg5 &= ~WM8993_FLL_CLK_SRC_MASK;
  465. switch (fll_id) {
  466. case WM8993_FLL_MCLK:
  467. break;
  468. case WM8993_FLL_LRCLK:
  469. reg5 |= 1;
  470. break;
  471. case WM8993_FLL_BCLK:
  472. reg5 |= 2;
  473. break;
  474. default:
  475. dev_err(codec->dev, "Unknown FLL ID %d\n", fll_id);
  476. return -EINVAL;
  477. }
  478. /* Any FLL configuration change requires that the FLL be
  479. * disabled first. */
  480. reg1 = snd_soc_read(codec, WM8993_FLL_CONTROL_1);
  481. reg1 &= ~WM8993_FLL_ENA;
  482. snd_soc_write(codec, WM8993_FLL_CONTROL_1, reg1);
  483. /* Apply the configuration */
  484. if (fll_div.k)
  485. reg1 |= WM8993_FLL_FRAC_MASK;
  486. else
  487. reg1 &= ~WM8993_FLL_FRAC_MASK;
  488. snd_soc_write(codec, WM8993_FLL_CONTROL_1, reg1);
  489. snd_soc_write(codec, WM8993_FLL_CONTROL_2,
  490. (fll_div.fll_outdiv << WM8993_FLL_OUTDIV_SHIFT) |
  491. (fll_div.fll_fratio << WM8993_FLL_FRATIO_SHIFT));
  492. snd_soc_write(codec, WM8993_FLL_CONTROL_3, fll_div.k);
  493. reg4 = snd_soc_read(codec, WM8993_FLL_CONTROL_4);
  494. reg4 &= ~WM8993_FLL_N_MASK;
  495. reg4 |= fll_div.n << WM8993_FLL_N_SHIFT;
  496. snd_soc_write(codec, WM8993_FLL_CONTROL_4, reg4);
  497. reg5 &= ~WM8993_FLL_CLK_REF_DIV_MASK;
  498. reg5 |= fll_div.fll_clk_ref_div << WM8993_FLL_CLK_REF_DIV_SHIFT;
  499. snd_soc_write(codec, WM8993_FLL_CONTROL_5, reg5);
  500. /* If we've got an interrupt wired up make sure we get it */
  501. if (i2c->irq)
  502. timeout = msecs_to_jiffies(20);
  503. else if (Fref < 1000000)
  504. timeout = msecs_to_jiffies(3);
  505. else
  506. timeout = msecs_to_jiffies(1);
  507. try_wait_for_completion(&wm8993->fll_lock);
  508. /* Enable the FLL */
  509. snd_soc_write(codec, WM8993_FLL_CONTROL_1, reg1 | WM8993_FLL_ENA);
  510. timeout = wait_for_completion_timeout(&wm8993->fll_lock, timeout);
  511. if (i2c->irq && !timeout)
  512. dev_warn(codec->dev, "Timed out waiting for FLL\n");
  513. dev_dbg(codec->dev, "FLL enabled at %dHz->%dHz\n", Fref, Fout);
  514. wm8993->fll_fref = Fref;
  515. wm8993->fll_fout = Fout;
  516. wm8993->fll_src = source;
  517. return 0;
  518. }
  519. static int wm8993_set_fll(struct snd_soc_dai *dai, int fll_id, int source,
  520. unsigned int Fref, unsigned int Fout)
  521. {
  522. return _wm8993_set_fll(dai->codec, fll_id, source, Fref, Fout);
  523. }
  524. static int configure_clock(struct snd_soc_codec *codec)
  525. {
  526. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  527. unsigned int reg;
  528. /* This should be done on init() for bypass paths */
  529. switch (wm8993->sysclk_source) {
  530. case WM8993_SYSCLK_MCLK:
  531. dev_dbg(codec->dev, "Using %dHz MCLK\n", wm8993->mclk_rate);
  532. reg = snd_soc_read(codec, WM8993_CLOCKING_2);
  533. reg &= ~(WM8993_MCLK_DIV | WM8993_SYSCLK_SRC);
  534. if (wm8993->mclk_rate > 13500000) {
  535. reg |= WM8993_MCLK_DIV;
  536. wm8993->sysclk_rate = wm8993->mclk_rate / 2;
  537. } else {
  538. reg &= ~WM8993_MCLK_DIV;
  539. wm8993->sysclk_rate = wm8993->mclk_rate;
  540. }
  541. snd_soc_write(codec, WM8993_CLOCKING_2, reg);
  542. break;
  543. case WM8993_SYSCLK_FLL:
  544. dev_dbg(codec->dev, "Using %dHz FLL clock\n",
  545. wm8993->fll_fout);
  546. reg = snd_soc_read(codec, WM8993_CLOCKING_2);
  547. reg |= WM8993_SYSCLK_SRC;
  548. if (wm8993->fll_fout > 13500000) {
  549. reg |= WM8993_MCLK_DIV;
  550. wm8993->sysclk_rate = wm8993->fll_fout / 2;
  551. } else {
  552. reg &= ~WM8993_MCLK_DIV;
  553. wm8993->sysclk_rate = wm8993->fll_fout;
  554. }
  555. snd_soc_write(codec, WM8993_CLOCKING_2, reg);
  556. break;
  557. default:
  558. dev_err(codec->dev, "System clock not configured\n");
  559. return -EINVAL;
  560. }
  561. dev_dbg(codec->dev, "CLK_SYS is %dHz\n", wm8993->sysclk_rate);
  562. return 0;
  563. }
  564. static const DECLARE_TLV_DB_SCALE(sidetone_tlv, -3600, 300, 0);
  565. static const DECLARE_TLV_DB_SCALE(drc_comp_threash, -4500, 75, 0);
  566. static const DECLARE_TLV_DB_SCALE(drc_comp_amp, -2250, 75, 0);
  567. static const DECLARE_TLV_DB_SCALE(drc_min_tlv, -1800, 600, 0);
  568. static const unsigned int drc_max_tlv[] = {
  569. TLV_DB_RANGE_HEAD(2),
  570. 0, 2, TLV_DB_SCALE_ITEM(1200, 600, 0),
  571. 3, 3, TLV_DB_SCALE_ITEM(3600, 0, 0),
  572. };
  573. static const DECLARE_TLV_DB_SCALE(drc_qr_tlv, 1200, 600, 0);
  574. static const DECLARE_TLV_DB_SCALE(drc_startup_tlv, -1800, 300, 0);
  575. static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0);
  576. static const DECLARE_TLV_DB_SCALE(digital_tlv, -7200, 75, 1);
  577. static const DECLARE_TLV_DB_SCALE(dac_boost_tlv, 0, 600, 0);
  578. static const char *dac_deemph_text[] = {
  579. "None",
  580. "32kHz",
  581. "44.1kHz",
  582. "48kHz",
  583. };
  584. static const struct soc_enum dac_deemph =
  585. SOC_ENUM_SINGLE(WM8993_DAC_CTRL, 4, 4, dac_deemph_text);
  586. static const char *adc_hpf_text[] = {
  587. "Hi-Fi",
  588. "Voice 1",
  589. "Voice 2",
  590. "Voice 3",
  591. };
  592. static const struct soc_enum adc_hpf =
  593. SOC_ENUM_SINGLE(WM8993_ADC_CTRL, 5, 4, adc_hpf_text);
  594. static const char *drc_path_text[] = {
  595. "ADC",
  596. "DAC"
  597. };
  598. static const struct soc_enum drc_path =
  599. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_1, 14, 2, drc_path_text);
  600. static const char *drc_r0_text[] = {
  601. "1",
  602. "1/2",
  603. "1/4",
  604. "1/8",
  605. "1/16",
  606. "0",
  607. };
  608. static const struct soc_enum drc_r0 =
  609. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_3, 8, 6, drc_r0_text);
  610. static const char *drc_r1_text[] = {
  611. "1",
  612. "1/2",
  613. "1/4",
  614. "1/8",
  615. "0",
  616. };
  617. static const struct soc_enum drc_r1 =
  618. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_4, 13, 5, drc_r1_text);
  619. static const char *drc_attack_text[] = {
  620. "Reserved",
  621. "181us",
  622. "363us",
  623. "726us",
  624. "1.45ms",
  625. "2.9ms",
  626. "5.8ms",
  627. "11.6ms",
  628. "23.2ms",
  629. "46.4ms",
  630. "92.8ms",
  631. "185.6ms",
  632. };
  633. static const struct soc_enum drc_attack =
  634. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_2, 12, 12, drc_attack_text);
  635. static const char *drc_decay_text[] = {
  636. "186ms",
  637. "372ms",
  638. "743ms",
  639. "1.49s",
  640. "2.97ms",
  641. "5.94ms",
  642. "11.89ms",
  643. "23.78ms",
  644. "47.56ms",
  645. };
  646. static const struct soc_enum drc_decay =
  647. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_2, 8, 9, drc_decay_text);
  648. static const char *drc_ff_text[] = {
  649. "5 samples",
  650. "9 samples",
  651. };
  652. static const struct soc_enum drc_ff =
  653. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_3, 7, 2, drc_ff_text);
  654. static const char *drc_qr_rate_text[] = {
  655. "0.725ms",
  656. "1.45ms",
  657. "5.8ms",
  658. };
  659. static const struct soc_enum drc_qr_rate =
  660. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_3, 0, 3, drc_qr_rate_text);
  661. static const char *drc_smooth_text[] = {
  662. "Low",
  663. "Medium",
  664. "High",
  665. };
  666. static const struct soc_enum drc_smooth =
  667. SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_1, 4, 3, drc_smooth_text);
  668. static const struct snd_kcontrol_new wm8993_snd_controls[] = {
  669. SOC_DOUBLE_TLV("Digital Sidetone Volume", WM8993_DIGITAL_SIDE_TONE,
  670. 5, 9, 12, 0, sidetone_tlv),
  671. SOC_SINGLE("DRC Switch", WM8993_DRC_CONTROL_1, 15, 1, 0),
  672. SOC_ENUM("DRC Path", drc_path),
  673. SOC_SINGLE_TLV("DRC Compressor Threshold Volume", WM8993_DRC_CONTROL_2,
  674. 2, 60, 1, drc_comp_threash),
  675. SOC_SINGLE_TLV("DRC Compressor Amplitude Volume", WM8993_DRC_CONTROL_3,
  676. 11, 30, 1, drc_comp_amp),
  677. SOC_ENUM("DRC R0", drc_r0),
  678. SOC_ENUM("DRC R1", drc_r1),
  679. SOC_SINGLE_TLV("DRC Minimum Volume", WM8993_DRC_CONTROL_1, 2, 3, 1,
  680. drc_min_tlv),
  681. SOC_SINGLE_TLV("DRC Maximum Volume", WM8993_DRC_CONTROL_1, 0, 3, 0,
  682. drc_max_tlv),
  683. SOC_ENUM("DRC Attack Rate", drc_attack),
  684. SOC_ENUM("DRC Decay Rate", drc_decay),
  685. SOC_ENUM("DRC FF Delay", drc_ff),
  686. SOC_SINGLE("DRC Anti-clip Switch", WM8993_DRC_CONTROL_1, 9, 1, 0),
  687. SOC_SINGLE("DRC Quick Release Switch", WM8993_DRC_CONTROL_1, 10, 1, 0),
  688. SOC_SINGLE_TLV("DRC Quick Release Volume", WM8993_DRC_CONTROL_3, 2, 3, 0,
  689. drc_qr_tlv),
  690. SOC_ENUM("DRC Quick Release Rate", drc_qr_rate),
  691. SOC_SINGLE("DRC Smoothing Switch", WM8993_DRC_CONTROL_1, 11, 1, 0),
  692. SOC_SINGLE("DRC Smoothing Hysteresis Switch", WM8993_DRC_CONTROL_1, 8, 1, 0),
  693. SOC_ENUM("DRC Smoothing Hysteresis Threshold", drc_smooth),
  694. SOC_SINGLE_TLV("DRC Startup Volume", WM8993_DRC_CONTROL_4, 8, 18, 0,
  695. drc_startup_tlv),
  696. SOC_SINGLE("EQ Switch", WM8993_EQ1, 0, 1, 0),
  697. SOC_DOUBLE_R_TLV("Capture Volume", WM8993_LEFT_ADC_DIGITAL_VOLUME,
  698. WM8993_RIGHT_ADC_DIGITAL_VOLUME, 1, 96, 0, digital_tlv),
  699. SOC_SINGLE("ADC High Pass Filter Switch", WM8993_ADC_CTRL, 8, 1, 0),
  700. SOC_ENUM("ADC High Pass Filter Mode", adc_hpf),
  701. SOC_DOUBLE_R_TLV("Playback Volume", WM8993_LEFT_DAC_DIGITAL_VOLUME,
  702. WM8993_RIGHT_DAC_DIGITAL_VOLUME, 1, 96, 0, digital_tlv),
  703. SOC_SINGLE_TLV("Playback Boost Volume", WM8993_AUDIO_INTERFACE_2, 10, 3, 0,
  704. dac_boost_tlv),
  705. SOC_ENUM("DAC Deemphasis", dac_deemph),
  706. SOC_SINGLE_TLV("SPKL DAC Volume", WM8993_SPKMIXL_ATTENUATION,
  707. 2, 1, 1, wm_hubs_spkmix_tlv),
  708. SOC_SINGLE_TLV("SPKR DAC Volume", WM8993_SPKMIXR_ATTENUATION,
  709. 2, 1, 1, wm_hubs_spkmix_tlv),
  710. };
  711. static const struct snd_kcontrol_new wm8993_eq_controls[] = {
  712. SOC_SINGLE_TLV("EQ1 Volume", WM8993_EQ2, 0, 24, 0, eq_tlv),
  713. SOC_SINGLE_TLV("EQ2 Volume", WM8993_EQ3, 0, 24, 0, eq_tlv),
  714. SOC_SINGLE_TLV("EQ3 Volume", WM8993_EQ4, 0, 24, 0, eq_tlv),
  715. SOC_SINGLE_TLV("EQ4 Volume", WM8993_EQ5, 0, 24, 0, eq_tlv),
  716. SOC_SINGLE_TLV("EQ5 Volume", WM8993_EQ6, 0, 24, 0, eq_tlv),
  717. };
  718. static int clk_sys_event(struct snd_soc_dapm_widget *w,
  719. struct snd_kcontrol *kcontrol, int event)
  720. {
  721. struct snd_soc_codec *codec = w->codec;
  722. switch (event) {
  723. case SND_SOC_DAPM_PRE_PMU:
  724. return configure_clock(codec);
  725. case SND_SOC_DAPM_POST_PMD:
  726. break;
  727. }
  728. return 0;
  729. }
  730. /*
  731. * When used with DAC outputs only the WM8993 charge pump supports
  732. * operation in class W mode, providing very low power consumption
  733. * when used with digital sources. Enable and disable this mode
  734. * automatically depending on the mixer configuration.
  735. *
  736. * Currently the only supported paths are the direct DAC->headphone
  737. * paths (which provide minimum power consumption anyway).
  738. */
  739. static int class_w_put(struct snd_kcontrol *kcontrol,
  740. struct snd_ctl_elem_value *ucontrol)
  741. {
  742. struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
  743. struct snd_soc_dapm_widget *widget = wlist->widgets[0];
  744. struct snd_soc_codec *codec = widget->codec;
  745. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  746. int ret;
  747. /* Turn it off if we're using the main output mixer */
  748. if (ucontrol->value.integer.value[0] == 0) {
  749. if (wm8993->class_w_users == 0) {
  750. dev_dbg(codec->dev, "Disabling Class W\n");
  751. snd_soc_update_bits(codec, WM8993_CLASS_W_0,
  752. WM8993_CP_DYN_FREQ |
  753. WM8993_CP_DYN_V,
  754. 0);
  755. }
  756. wm8993->class_w_users++;
  757. wm8993->hubs_data.class_w = true;
  758. }
  759. /* Implement the change */
  760. ret = snd_soc_dapm_put_enum_double(kcontrol, ucontrol);
  761. /* Enable it if we're using the direct DAC path */
  762. if (ucontrol->value.integer.value[0] == 1) {
  763. if (wm8993->class_w_users == 1) {
  764. dev_dbg(codec->dev, "Enabling Class W\n");
  765. snd_soc_update_bits(codec, WM8993_CLASS_W_0,
  766. WM8993_CP_DYN_FREQ |
  767. WM8993_CP_DYN_V,
  768. WM8993_CP_DYN_FREQ |
  769. WM8993_CP_DYN_V);
  770. }
  771. wm8993->class_w_users--;
  772. wm8993->hubs_data.class_w = false;
  773. }
  774. dev_dbg(codec->dev, "Indirect DAC use count now %d\n",
  775. wm8993->class_w_users);
  776. return ret;
  777. }
  778. #define SOC_DAPM_ENUM_W(xname, xenum) \
  779. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  780. .info = snd_soc_info_enum_double, \
  781. .get = snd_soc_dapm_get_enum_double, \
  782. .put = class_w_put, \
  783. .private_value = (unsigned long)&xenum }
  784. static const char *hp_mux_text[] = {
  785. "Mixer",
  786. "DAC",
  787. };
  788. static const struct soc_enum hpl_enum =
  789. SOC_ENUM_SINGLE(WM8993_OUTPUT_MIXER1, 8, 2, hp_mux_text);
  790. static const struct snd_kcontrol_new hpl_mux =
  791. SOC_DAPM_ENUM_W("Left Headphone Mux", hpl_enum);
  792. static const struct soc_enum hpr_enum =
  793. SOC_ENUM_SINGLE(WM8993_OUTPUT_MIXER2, 8, 2, hp_mux_text);
  794. static const struct snd_kcontrol_new hpr_mux =
  795. SOC_DAPM_ENUM_W("Right Headphone Mux", hpr_enum);
  796. static const struct snd_kcontrol_new left_speaker_mixer[] = {
  797. SOC_DAPM_SINGLE("Input Switch", WM8993_SPEAKER_MIXER, 7, 1, 0),
  798. SOC_DAPM_SINGLE("IN1LP Switch", WM8993_SPEAKER_MIXER, 5, 1, 0),
  799. SOC_DAPM_SINGLE("Output Switch", WM8993_SPEAKER_MIXER, 3, 1, 0),
  800. SOC_DAPM_SINGLE("DAC Switch", WM8993_SPEAKER_MIXER, 6, 1, 0),
  801. };
  802. static const struct snd_kcontrol_new right_speaker_mixer[] = {
  803. SOC_DAPM_SINGLE("Input Switch", WM8993_SPEAKER_MIXER, 6, 1, 0),
  804. SOC_DAPM_SINGLE("IN1RP Switch", WM8993_SPEAKER_MIXER, 4, 1, 0),
  805. SOC_DAPM_SINGLE("Output Switch", WM8993_SPEAKER_MIXER, 2, 1, 0),
  806. SOC_DAPM_SINGLE("DAC Switch", WM8993_SPEAKER_MIXER, 0, 1, 0),
  807. };
  808. static const char *aif_text[] = {
  809. "Left", "Right"
  810. };
  811. static const struct soc_enum aifoutl_enum =
  812. SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_1, 15, 2, aif_text);
  813. static const struct snd_kcontrol_new aifoutl_mux =
  814. SOC_DAPM_ENUM("AIFOUTL Mux", aifoutl_enum);
  815. static const struct soc_enum aifoutr_enum =
  816. SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_1, 14, 2, aif_text);
  817. static const struct snd_kcontrol_new aifoutr_mux =
  818. SOC_DAPM_ENUM("AIFOUTR Mux", aifoutr_enum);
  819. static const struct soc_enum aifinl_enum =
  820. SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_2, 15, 2, aif_text);
  821. static const struct snd_kcontrol_new aifinl_mux =
  822. SOC_DAPM_ENUM("AIFINL Mux", aifinl_enum);
  823. static const struct soc_enum aifinr_enum =
  824. SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_2, 14, 2, aif_text);
  825. static const struct snd_kcontrol_new aifinr_mux =
  826. SOC_DAPM_ENUM("AIFINR Mux", aifinr_enum);
  827. static const char *sidetone_text[] = {
  828. "None", "Left", "Right"
  829. };
  830. static const struct soc_enum sidetonel_enum =
  831. SOC_ENUM_SINGLE(WM8993_DIGITAL_SIDE_TONE, 2, 3, sidetone_text);
  832. static const struct snd_kcontrol_new sidetonel_mux =
  833. SOC_DAPM_ENUM("Left Sidetone", sidetonel_enum);
  834. static const struct soc_enum sidetoner_enum =
  835. SOC_ENUM_SINGLE(WM8993_DIGITAL_SIDE_TONE, 0, 3, sidetone_text);
  836. static const struct snd_kcontrol_new sidetoner_mux =
  837. SOC_DAPM_ENUM("Right Sidetone", sidetoner_enum);
  838. static const struct snd_soc_dapm_widget wm8993_dapm_widgets[] = {
  839. SND_SOC_DAPM_SUPPLY("CLK_SYS", WM8993_BUS_CONTROL_1, 1, 0, clk_sys_event,
  840. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  841. SND_SOC_DAPM_SUPPLY("TOCLK", WM8993_CLOCKING_1, 14, 0, NULL, 0),
  842. SND_SOC_DAPM_SUPPLY("CLK_DSP", WM8993_CLOCKING_3, 0, 0, NULL, 0),
  843. SND_SOC_DAPM_SUPPLY("VMID", SND_SOC_NOPM, 0, 0, NULL, 0),
  844. SND_SOC_DAPM_ADC("ADCL", NULL, WM8993_POWER_MANAGEMENT_2, 1, 0),
  845. SND_SOC_DAPM_ADC("ADCR", NULL, WM8993_POWER_MANAGEMENT_2, 0, 0),
  846. SND_SOC_DAPM_MUX("AIFOUTL Mux", SND_SOC_NOPM, 0, 0, &aifoutl_mux),
  847. SND_SOC_DAPM_MUX("AIFOUTR Mux", SND_SOC_NOPM, 0, 0, &aifoutr_mux),
  848. SND_SOC_DAPM_AIF_OUT("AIFOUTL", "Capture", 0, SND_SOC_NOPM, 0, 0),
  849. SND_SOC_DAPM_AIF_OUT("AIFOUTR", "Capture", 1, SND_SOC_NOPM, 0, 0),
  850. SND_SOC_DAPM_AIF_IN("AIFINL", "Playback", 0, SND_SOC_NOPM, 0, 0),
  851. SND_SOC_DAPM_AIF_IN("AIFINR", "Playback", 1, SND_SOC_NOPM, 0, 0),
  852. SND_SOC_DAPM_MUX("DACL Mux", SND_SOC_NOPM, 0, 0, &aifinl_mux),
  853. SND_SOC_DAPM_MUX("DACR Mux", SND_SOC_NOPM, 0, 0, &aifinr_mux),
  854. SND_SOC_DAPM_MUX("DACL Sidetone", SND_SOC_NOPM, 0, 0, &sidetonel_mux),
  855. SND_SOC_DAPM_MUX("DACR Sidetone", SND_SOC_NOPM, 0, 0, &sidetoner_mux),
  856. SND_SOC_DAPM_DAC("DACL", NULL, WM8993_POWER_MANAGEMENT_3, 1, 0),
  857. SND_SOC_DAPM_DAC("DACR", NULL, WM8993_POWER_MANAGEMENT_3, 0, 0),
  858. SND_SOC_DAPM_MUX("Left Headphone Mux", SND_SOC_NOPM, 0, 0, &hpl_mux),
  859. SND_SOC_DAPM_MUX("Right Headphone Mux", SND_SOC_NOPM, 0, 0, &hpr_mux),
  860. SND_SOC_DAPM_MIXER("SPKL", WM8993_POWER_MANAGEMENT_3, 8, 0,
  861. left_speaker_mixer, ARRAY_SIZE(left_speaker_mixer)),
  862. SND_SOC_DAPM_MIXER("SPKR", WM8993_POWER_MANAGEMENT_3, 9, 0,
  863. right_speaker_mixer, ARRAY_SIZE(right_speaker_mixer)),
  864. SND_SOC_DAPM_PGA("Direct Voice", SND_SOC_NOPM, 0, 0, NULL, 0),
  865. };
  866. static const struct snd_soc_dapm_route routes[] = {
  867. { "MICBIAS1", NULL, "VMID" },
  868. { "MICBIAS2", NULL, "VMID" },
  869. { "ADCL", NULL, "CLK_SYS" },
  870. { "ADCL", NULL, "CLK_DSP" },
  871. { "ADCR", NULL, "CLK_SYS" },
  872. { "ADCR", NULL, "CLK_DSP" },
  873. { "AIFOUTL Mux", "Left", "ADCL" },
  874. { "AIFOUTL Mux", "Right", "ADCR" },
  875. { "AIFOUTR Mux", "Left", "ADCL" },
  876. { "AIFOUTR Mux", "Right", "ADCR" },
  877. { "AIFOUTL", NULL, "AIFOUTL Mux" },
  878. { "AIFOUTR", NULL, "AIFOUTR Mux" },
  879. { "DACL Mux", "Left", "AIFINL" },
  880. { "DACL Mux", "Right", "AIFINR" },
  881. { "DACR Mux", "Left", "AIFINL" },
  882. { "DACR Mux", "Right", "AIFINR" },
  883. { "DACL Sidetone", "Left", "ADCL" },
  884. { "DACL Sidetone", "Right", "ADCR" },
  885. { "DACR Sidetone", "Left", "ADCL" },
  886. { "DACR Sidetone", "Right", "ADCR" },
  887. { "DACL", NULL, "CLK_SYS" },
  888. { "DACL", NULL, "CLK_DSP" },
  889. { "DACL", NULL, "DACL Mux" },
  890. { "DACL", NULL, "DACL Sidetone" },
  891. { "DACR", NULL, "CLK_SYS" },
  892. { "DACR", NULL, "CLK_DSP" },
  893. { "DACR", NULL, "DACR Mux" },
  894. { "DACR", NULL, "DACR Sidetone" },
  895. { "Left Output Mixer", "DAC Switch", "DACL" },
  896. { "Right Output Mixer", "DAC Switch", "DACR" },
  897. { "Left Output PGA", NULL, "CLK_SYS" },
  898. { "Right Output PGA", NULL, "CLK_SYS" },
  899. { "SPKL", "DAC Switch", "DACL" },
  900. { "SPKL", NULL, "CLK_SYS" },
  901. { "SPKR", "DAC Switch", "DACR" },
  902. { "SPKR", NULL, "CLK_SYS" },
  903. { "Left Headphone Mux", "DAC", "DACL" },
  904. { "Right Headphone Mux", "DAC", "DACR" },
  905. };
  906. static int wm8993_set_bias_level(struct snd_soc_codec *codec,
  907. enum snd_soc_bias_level level)
  908. {
  909. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  910. int ret;
  911. switch (level) {
  912. case SND_SOC_BIAS_ON:
  913. case SND_SOC_BIAS_PREPARE:
  914. /* VMID=2*40k */
  915. snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1,
  916. WM8993_VMID_SEL_MASK, 0x2);
  917. snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_2,
  918. WM8993_TSHUT_ENA, WM8993_TSHUT_ENA);
  919. break;
  920. case SND_SOC_BIAS_STANDBY:
  921. if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) {
  922. ret = regulator_bulk_enable(ARRAY_SIZE(wm8993->supplies),
  923. wm8993->supplies);
  924. if (ret != 0)
  925. return ret;
  926. regcache_cache_only(wm8993->regmap, false);
  927. regcache_sync(wm8993->regmap);
  928. /* Bring up VMID with fast soft start */
  929. snd_soc_update_bits(codec, WM8993_ANTIPOP2,
  930. WM8993_STARTUP_BIAS_ENA |
  931. WM8993_VMID_BUF_ENA |
  932. WM8993_VMID_RAMP_MASK |
  933. WM8993_BIAS_SRC,
  934. WM8993_STARTUP_BIAS_ENA |
  935. WM8993_VMID_BUF_ENA |
  936. WM8993_VMID_RAMP_MASK |
  937. WM8993_BIAS_SRC);
  938. /* If either line output is single ended we
  939. * need the VMID buffer */
  940. if (!wm8993->pdata.lineout1_diff ||
  941. !wm8993->pdata.lineout2_diff)
  942. snd_soc_update_bits(codec, WM8993_ANTIPOP1,
  943. WM8993_LINEOUT_VMID_BUF_ENA,
  944. WM8993_LINEOUT_VMID_BUF_ENA);
  945. /* VMID=2*40k */
  946. snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1,
  947. WM8993_VMID_SEL_MASK |
  948. WM8993_BIAS_ENA,
  949. WM8993_BIAS_ENA | 0x2);
  950. msleep(32);
  951. /* Switch to normal bias */
  952. snd_soc_update_bits(codec, WM8993_ANTIPOP2,
  953. WM8993_BIAS_SRC |
  954. WM8993_STARTUP_BIAS_ENA, 0);
  955. }
  956. /* VMID=2*240k */
  957. snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1,
  958. WM8993_VMID_SEL_MASK, 0x4);
  959. snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_2,
  960. WM8993_TSHUT_ENA, 0);
  961. break;
  962. case SND_SOC_BIAS_OFF:
  963. snd_soc_update_bits(codec, WM8993_ANTIPOP1,
  964. WM8993_LINEOUT_VMID_BUF_ENA, 0);
  965. snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1,
  966. WM8993_VMID_SEL_MASK | WM8993_BIAS_ENA,
  967. 0);
  968. snd_soc_update_bits(codec, WM8993_ANTIPOP2,
  969. WM8993_STARTUP_BIAS_ENA |
  970. WM8993_VMID_BUF_ENA |
  971. WM8993_VMID_RAMP_MASK |
  972. WM8993_BIAS_SRC, 0);
  973. regcache_cache_only(wm8993->regmap, true);
  974. regcache_mark_dirty(wm8993->regmap);
  975. regulator_bulk_disable(ARRAY_SIZE(wm8993->supplies),
  976. wm8993->supplies);
  977. break;
  978. }
  979. codec->dapm.bias_level = level;
  980. return 0;
  981. }
  982. static int wm8993_set_sysclk(struct snd_soc_dai *codec_dai,
  983. int clk_id, unsigned int freq, int dir)
  984. {
  985. struct snd_soc_codec *codec = codec_dai->codec;
  986. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  987. switch (clk_id) {
  988. case WM8993_SYSCLK_MCLK:
  989. wm8993->mclk_rate = freq;
  990. case WM8993_SYSCLK_FLL:
  991. wm8993->sysclk_source = clk_id;
  992. break;
  993. default:
  994. return -EINVAL;
  995. }
  996. return 0;
  997. }
  998. static int wm8993_set_dai_fmt(struct snd_soc_dai *dai,
  999. unsigned int fmt)
  1000. {
  1001. struct snd_soc_codec *codec = dai->codec;
  1002. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  1003. unsigned int aif1 = snd_soc_read(codec, WM8993_AUDIO_INTERFACE_1);
  1004. unsigned int aif4 = snd_soc_read(codec, WM8993_AUDIO_INTERFACE_4);
  1005. aif1 &= ~(WM8993_BCLK_DIR | WM8993_AIF_BCLK_INV |
  1006. WM8993_AIF_LRCLK_INV | WM8993_AIF_FMT_MASK);
  1007. aif4 &= ~WM8993_LRCLK_DIR;
  1008. switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
  1009. case SND_SOC_DAIFMT_CBS_CFS:
  1010. wm8993->master = 0;
  1011. break;
  1012. case SND_SOC_DAIFMT_CBS_CFM:
  1013. aif4 |= WM8993_LRCLK_DIR;
  1014. wm8993->master = 1;
  1015. break;
  1016. case SND_SOC_DAIFMT_CBM_CFS:
  1017. aif1 |= WM8993_BCLK_DIR;
  1018. wm8993->master = 1;
  1019. break;
  1020. case SND_SOC_DAIFMT_CBM_CFM:
  1021. aif1 |= WM8993_BCLK_DIR;
  1022. aif4 |= WM8993_LRCLK_DIR;
  1023. wm8993->master = 1;
  1024. break;
  1025. default:
  1026. return -EINVAL;
  1027. }
  1028. switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
  1029. case SND_SOC_DAIFMT_DSP_B:
  1030. aif1 |= WM8993_AIF_LRCLK_INV;
  1031. case SND_SOC_DAIFMT_DSP_A:
  1032. aif1 |= 0x18;
  1033. break;
  1034. case SND_SOC_DAIFMT_I2S:
  1035. aif1 |= 0x10;
  1036. break;
  1037. case SND_SOC_DAIFMT_RIGHT_J:
  1038. break;
  1039. case SND_SOC_DAIFMT_LEFT_J:
  1040. aif1 |= 0x8;
  1041. break;
  1042. default:
  1043. return -EINVAL;
  1044. }
  1045. switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
  1046. case SND_SOC_DAIFMT_DSP_A:
  1047. case SND_SOC_DAIFMT_DSP_B:
  1048. /* frame inversion not valid for DSP modes */
  1049. switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
  1050. case SND_SOC_DAIFMT_NB_NF:
  1051. break;
  1052. case SND_SOC_DAIFMT_IB_NF:
  1053. aif1 |= WM8993_AIF_BCLK_INV;
  1054. break;
  1055. default:
  1056. return -EINVAL;
  1057. }
  1058. break;
  1059. case SND_SOC_DAIFMT_I2S:
  1060. case SND_SOC_DAIFMT_RIGHT_J:
  1061. case SND_SOC_DAIFMT_LEFT_J:
  1062. switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
  1063. case SND_SOC_DAIFMT_NB_NF:
  1064. break;
  1065. case SND_SOC_DAIFMT_IB_IF:
  1066. aif1 |= WM8993_AIF_BCLK_INV | WM8993_AIF_LRCLK_INV;
  1067. break;
  1068. case SND_SOC_DAIFMT_IB_NF:
  1069. aif1 |= WM8993_AIF_BCLK_INV;
  1070. break;
  1071. case SND_SOC_DAIFMT_NB_IF:
  1072. aif1 |= WM8993_AIF_LRCLK_INV;
  1073. break;
  1074. default:
  1075. return -EINVAL;
  1076. }
  1077. break;
  1078. default:
  1079. return -EINVAL;
  1080. }
  1081. snd_soc_write(codec, WM8993_AUDIO_INTERFACE_1, aif1);
  1082. snd_soc_write(codec, WM8993_AUDIO_INTERFACE_4, aif4);
  1083. return 0;
  1084. }
  1085. static int wm8993_hw_params(struct snd_pcm_substream *substream,
  1086. struct snd_pcm_hw_params *params,
  1087. struct snd_soc_dai *dai)
  1088. {
  1089. struct snd_soc_codec *codec = dai->codec;
  1090. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  1091. int ret, i, best, best_val, cur_val;
  1092. unsigned int clocking1, clocking3, aif1, aif4;
  1093. clocking1 = snd_soc_read(codec, WM8993_CLOCKING_1);
  1094. clocking1 &= ~WM8993_BCLK_DIV_MASK;
  1095. clocking3 = snd_soc_read(codec, WM8993_CLOCKING_3);
  1096. clocking3 &= ~(WM8993_CLK_SYS_RATE_MASK | WM8993_SAMPLE_RATE_MASK);
  1097. aif1 = snd_soc_read(codec, WM8993_AUDIO_INTERFACE_1);
  1098. aif1 &= ~WM8993_AIF_WL_MASK;
  1099. aif4 = snd_soc_read(codec, WM8993_AUDIO_INTERFACE_4);
  1100. aif4 &= ~WM8993_LRCLK_RATE_MASK;
  1101. /* What BCLK do we need? */
  1102. wm8993->fs = params_rate(params);
  1103. wm8993->bclk = 2 * wm8993->fs;
  1104. if (wm8993->tdm_slots) {
  1105. dev_dbg(codec->dev, "Configuring for %d %d bit TDM slots\n",
  1106. wm8993->tdm_slots, wm8993->tdm_width);
  1107. wm8993->bclk *= wm8993->tdm_width * wm8993->tdm_slots;
  1108. } else {
  1109. switch (params_format(params)) {
  1110. case SNDRV_PCM_FORMAT_S16_LE:
  1111. wm8993->bclk *= 16;
  1112. break;
  1113. case SNDRV_PCM_FORMAT_S20_3LE:
  1114. wm8993->bclk *= 20;
  1115. aif1 |= 0x8;
  1116. break;
  1117. case SNDRV_PCM_FORMAT_S24_LE:
  1118. wm8993->bclk *= 24;
  1119. aif1 |= 0x10;
  1120. break;
  1121. case SNDRV_PCM_FORMAT_S32_LE:
  1122. wm8993->bclk *= 32;
  1123. aif1 |= 0x18;
  1124. break;
  1125. default:
  1126. return -EINVAL;
  1127. }
  1128. }
  1129. dev_dbg(codec->dev, "Target BCLK is %dHz\n", wm8993->bclk);
  1130. ret = configure_clock(codec);
  1131. if (ret != 0)
  1132. return ret;
  1133. /* Select nearest CLK_SYS_RATE */
  1134. best = 0;
  1135. best_val = abs((wm8993->sysclk_rate / clk_sys_rates[0].ratio)
  1136. - wm8993->fs);
  1137. for (i = 1; i < ARRAY_SIZE(clk_sys_rates); i++) {
  1138. cur_val = abs((wm8993->sysclk_rate /
  1139. clk_sys_rates[i].ratio) - wm8993->fs);
  1140. if (cur_val < best_val) {
  1141. best = i;
  1142. best_val = cur_val;
  1143. }
  1144. }
  1145. dev_dbg(codec->dev, "Selected CLK_SYS_RATIO of %d\n",
  1146. clk_sys_rates[best].ratio);
  1147. clocking3 |= (clk_sys_rates[best].clk_sys_rate
  1148. << WM8993_CLK_SYS_RATE_SHIFT);
  1149. /* SAMPLE_RATE */
  1150. best = 0;
  1151. best_val = abs(wm8993->fs - sample_rates[0].rate);
  1152. for (i = 1; i < ARRAY_SIZE(sample_rates); i++) {
  1153. /* Closest match */
  1154. cur_val = abs(wm8993->fs - sample_rates[i].rate);
  1155. if (cur_val < best_val) {
  1156. best = i;
  1157. best_val = cur_val;
  1158. }
  1159. }
  1160. dev_dbg(codec->dev, "Selected SAMPLE_RATE of %dHz\n",
  1161. sample_rates[best].rate);
  1162. clocking3 |= (sample_rates[best].sample_rate
  1163. << WM8993_SAMPLE_RATE_SHIFT);
  1164. /* BCLK_DIV */
  1165. best = 0;
  1166. best_val = INT_MAX;
  1167. for (i = 0; i < ARRAY_SIZE(bclk_divs); i++) {
  1168. cur_val = ((wm8993->sysclk_rate * 10) / bclk_divs[i].div)
  1169. - wm8993->bclk;
  1170. if (cur_val < 0) /* Table is sorted */
  1171. break;
  1172. if (cur_val < best_val) {
  1173. best = i;
  1174. best_val = cur_val;
  1175. }
  1176. }
  1177. wm8993->bclk = (wm8993->sysclk_rate * 10) / bclk_divs[best].div;
  1178. dev_dbg(codec->dev, "Selected BCLK_DIV of %d for %dHz BCLK\n",
  1179. bclk_divs[best].div, wm8993->bclk);
  1180. clocking1 |= bclk_divs[best].bclk_div << WM8993_BCLK_DIV_SHIFT;
  1181. /* LRCLK is a simple fraction of BCLK */
  1182. dev_dbg(codec->dev, "LRCLK_RATE is %d\n", wm8993->bclk / wm8993->fs);
  1183. aif4 |= wm8993->bclk / wm8993->fs;
  1184. snd_soc_write(codec, WM8993_CLOCKING_1, clocking1);
  1185. snd_soc_write(codec, WM8993_CLOCKING_3, clocking3);
  1186. snd_soc_write(codec, WM8993_AUDIO_INTERFACE_1, aif1);
  1187. snd_soc_write(codec, WM8993_AUDIO_INTERFACE_4, aif4);
  1188. /* ReTune Mobile? */
  1189. if (wm8993->pdata.num_retune_configs) {
  1190. u16 eq1 = snd_soc_read(codec, WM8993_EQ1);
  1191. struct wm8993_retune_mobile_setting *s;
  1192. best = 0;
  1193. best_val = abs(wm8993->pdata.retune_configs[0].rate
  1194. - wm8993->fs);
  1195. for (i = 0; i < wm8993->pdata.num_retune_configs; i++) {
  1196. cur_val = abs(wm8993->pdata.retune_configs[i].rate
  1197. - wm8993->fs);
  1198. if (cur_val < best_val) {
  1199. best_val = cur_val;
  1200. best = i;
  1201. }
  1202. }
  1203. s = &wm8993->pdata.retune_configs[best];
  1204. dev_dbg(codec->dev, "ReTune Mobile %s tuned for %dHz\n",
  1205. s->name, s->rate);
  1206. /* Disable EQ while we reconfigure */
  1207. snd_soc_update_bits(codec, WM8993_EQ1, WM8993_EQ_ENA, 0);
  1208. for (i = 1; i < ARRAY_SIZE(s->config); i++)
  1209. snd_soc_write(codec, WM8993_EQ1 + i, s->config[i]);
  1210. snd_soc_update_bits(codec, WM8993_EQ1, WM8993_EQ_ENA, eq1);
  1211. }
  1212. return 0;
  1213. }
  1214. static int wm8993_digital_mute(struct snd_soc_dai *codec_dai, int mute)
  1215. {
  1216. struct snd_soc_codec *codec = codec_dai->codec;
  1217. unsigned int reg;
  1218. reg = snd_soc_read(codec, WM8993_DAC_CTRL);
  1219. if (mute)
  1220. reg |= WM8993_DAC_MUTE;
  1221. else
  1222. reg &= ~WM8993_DAC_MUTE;
  1223. snd_soc_write(codec, WM8993_DAC_CTRL, reg);
  1224. return 0;
  1225. }
  1226. static int wm8993_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask,
  1227. unsigned int rx_mask, int slots, int slot_width)
  1228. {
  1229. struct snd_soc_codec *codec = dai->codec;
  1230. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  1231. int aif1 = 0;
  1232. int aif2 = 0;
  1233. /* Don't need to validate anything if we're turning off TDM */
  1234. if (slots == 0) {
  1235. wm8993->tdm_slots = 0;
  1236. goto out;
  1237. }
  1238. /* Note that we allow configurations we can't handle ourselves -
  1239. * for example, we can generate clocks for slots 2 and up even if
  1240. * we can't use those slots ourselves.
  1241. */
  1242. aif1 |= WM8993_AIFADC_TDM;
  1243. aif2 |= WM8993_AIFDAC_TDM;
  1244. switch (rx_mask) {
  1245. case 3:
  1246. break;
  1247. case 0xc:
  1248. aif1 |= WM8993_AIFADC_TDM_CHAN;
  1249. break;
  1250. default:
  1251. return -EINVAL;
  1252. }
  1253. switch (tx_mask) {
  1254. case 3:
  1255. break;
  1256. case 0xc:
  1257. aif2 |= WM8993_AIFDAC_TDM_CHAN;
  1258. break;
  1259. default:
  1260. return -EINVAL;
  1261. }
  1262. out:
  1263. wm8993->tdm_width = slot_width;
  1264. wm8993->tdm_slots = slots / 2;
  1265. snd_soc_update_bits(codec, WM8993_AUDIO_INTERFACE_1,
  1266. WM8993_AIFADC_TDM | WM8993_AIFADC_TDM_CHAN, aif1);
  1267. snd_soc_update_bits(codec, WM8993_AUDIO_INTERFACE_2,
  1268. WM8993_AIFDAC_TDM | WM8993_AIFDAC_TDM_CHAN, aif2);
  1269. return 0;
  1270. }
  1271. static irqreturn_t wm8993_irq(int irq, void *data)
  1272. {
  1273. struct wm8993_priv *wm8993 = data;
  1274. int mask, val, ret;
  1275. ret = regmap_read(wm8993->regmap, WM8993_GPIO_CTRL_1, &val);
  1276. if (ret != 0) {
  1277. dev_err(wm8993->dev, "Failed to read interrupt status: %d\n",
  1278. ret);
  1279. return IRQ_NONE;
  1280. }
  1281. ret = regmap_read(wm8993->regmap, WM8993_GPIOCTRL_2, &mask);
  1282. if (ret != 0) {
  1283. dev_err(wm8993->dev, "Failed to read interrupt mask: %d\n",
  1284. ret);
  1285. return IRQ_NONE;
  1286. }
  1287. /* The IRQ pin status is visible in the register too */
  1288. val &= ~(mask | WM8993_IRQ);
  1289. if (!val)
  1290. return IRQ_NONE;
  1291. if (val & WM8993_TEMPOK_EINT)
  1292. dev_crit(wm8993->dev, "Thermal warning\n");
  1293. if (val & WM8993_FLL_LOCK_EINT) {
  1294. dev_dbg(wm8993->dev, "FLL locked\n");
  1295. complete(&wm8993->fll_lock);
  1296. }
  1297. ret = regmap_write(wm8993->regmap, WM8993_GPIO_CTRL_1, val);
  1298. if (ret != 0)
  1299. dev_err(wm8993->dev, "Failed to ack interrupt: %d\n", ret);
  1300. return IRQ_HANDLED;
  1301. }
  1302. static const struct snd_soc_dai_ops wm8993_ops = {
  1303. .set_sysclk = wm8993_set_sysclk,
  1304. .set_fmt = wm8993_set_dai_fmt,
  1305. .hw_params = wm8993_hw_params,
  1306. .digital_mute = wm8993_digital_mute,
  1307. .set_pll = wm8993_set_fll,
  1308. .set_tdm_slot = wm8993_set_tdm_slot,
  1309. };
  1310. #define WM8993_RATES SNDRV_PCM_RATE_8000_48000
  1311. #define WM8993_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
  1312. SNDRV_PCM_FMTBIT_S20_3LE |\
  1313. SNDRV_PCM_FMTBIT_S24_LE |\
  1314. SNDRV_PCM_FMTBIT_S32_LE)
  1315. static struct snd_soc_dai_driver wm8993_dai = {
  1316. .name = "wm8993-hifi",
  1317. .playback = {
  1318. .stream_name = "Playback",
  1319. .channels_min = 1,
  1320. .channels_max = 2,
  1321. .rates = WM8993_RATES,
  1322. .formats = WM8993_FORMATS,
  1323. .sig_bits = 24,
  1324. },
  1325. .capture = {
  1326. .stream_name = "Capture",
  1327. .channels_min = 1,
  1328. .channels_max = 2,
  1329. .rates = WM8993_RATES,
  1330. .formats = WM8993_FORMATS,
  1331. .sig_bits = 24,
  1332. },
  1333. .ops = &wm8993_ops,
  1334. .symmetric_rates = 1,
  1335. };
  1336. static int wm8993_probe(struct snd_soc_codec *codec)
  1337. {
  1338. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  1339. struct snd_soc_dapm_context *dapm = &codec->dapm;
  1340. int ret;
  1341. wm8993->hubs_data.hp_startup_mode = 1;
  1342. wm8993->hubs_data.dcs_codes_l = -2;
  1343. wm8993->hubs_data.dcs_codes_r = -2;
  1344. wm8993->hubs_data.series_startup = 1;
  1345. codec->control_data = wm8993->regmap;
  1346. ret = snd_soc_codec_set_cache_io(codec, 8, 16, SND_SOC_REGMAP);
  1347. if (ret != 0) {
  1348. dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
  1349. return ret;
  1350. }
  1351. /* By default we're using the output mixers */
  1352. wm8993->class_w_users = 2;
  1353. /* Latch volume update bits and default ZC on */
  1354. snd_soc_update_bits(codec, WM8993_RIGHT_DAC_DIGITAL_VOLUME,
  1355. WM8993_DAC_VU, WM8993_DAC_VU);
  1356. snd_soc_update_bits(codec, WM8993_RIGHT_ADC_DIGITAL_VOLUME,
  1357. WM8993_ADC_VU, WM8993_ADC_VU);
  1358. /* Manualy manage the HPOUT sequencing for independent stereo
  1359. * control. */
  1360. snd_soc_update_bits(codec, WM8993_ANALOGUE_HP_0,
  1361. WM8993_HPOUT1_AUTO_PU, 0);
  1362. /* Use automatic clock configuration */
  1363. snd_soc_update_bits(codec, WM8993_CLOCKING_4, WM8993_SR_MODE, 0);
  1364. wm_hubs_handle_analogue_pdata(codec, wm8993->pdata.lineout1_diff,
  1365. wm8993->pdata.lineout2_diff,
  1366. wm8993->pdata.lineout1fb,
  1367. wm8993->pdata.lineout2fb,
  1368. wm8993->pdata.jd_scthr,
  1369. wm8993->pdata.jd_thr,
  1370. wm8993->pdata.micbias1_lvl,
  1371. wm8993->pdata.micbias2_lvl);
  1372. ret = wm8993_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
  1373. if (ret != 0)
  1374. return ret;
  1375. snd_soc_add_codec_controls(codec, wm8993_snd_controls,
  1376. ARRAY_SIZE(wm8993_snd_controls));
  1377. if (wm8993->pdata.num_retune_configs != 0) {
  1378. dev_dbg(codec->dev, "Using ReTune Mobile\n");
  1379. } else {
  1380. dev_dbg(codec->dev, "No ReTune Mobile, using normal EQ\n");
  1381. snd_soc_add_codec_controls(codec, wm8993_eq_controls,
  1382. ARRAY_SIZE(wm8993_eq_controls));
  1383. }
  1384. snd_soc_dapm_new_controls(dapm, wm8993_dapm_widgets,
  1385. ARRAY_SIZE(wm8993_dapm_widgets));
  1386. wm_hubs_add_analogue_controls(codec);
  1387. snd_soc_dapm_add_routes(dapm, routes, ARRAY_SIZE(routes));
  1388. wm_hubs_add_analogue_routes(codec, wm8993->pdata.lineout1_diff,
  1389. wm8993->pdata.lineout2_diff);
  1390. /* If the line outputs are differential then we aren't presenting
  1391. * VMID as an output and can disable it.
  1392. */
  1393. if (wm8993->pdata.lineout1_diff && wm8993->pdata.lineout2_diff)
  1394. codec->dapm.idle_bias_off = 1;
  1395. return 0;
  1396. }
  1397. static int wm8993_remove(struct snd_soc_codec *codec)
  1398. {
  1399. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  1400. wm8993_set_bias_level(codec, SND_SOC_BIAS_OFF);
  1401. regulator_bulk_free(ARRAY_SIZE(wm8993->supplies), wm8993->supplies);
  1402. return 0;
  1403. }
  1404. #ifdef CONFIG_PM
  1405. static int wm8993_suspend(struct snd_soc_codec *codec)
  1406. {
  1407. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  1408. int fll_fout = wm8993->fll_fout;
  1409. int fll_fref = wm8993->fll_fref;
  1410. int ret;
  1411. /* Stop the FLL in an orderly fashion */
  1412. ret = _wm8993_set_fll(codec, 0, 0, 0, 0);
  1413. if (ret != 0) {
  1414. dev_err(codec->dev, "Failed to stop FLL\n");
  1415. return ret;
  1416. }
  1417. wm8993->fll_fout = fll_fout;
  1418. wm8993->fll_fref = fll_fref;
  1419. wm8993_set_bias_level(codec, SND_SOC_BIAS_OFF);
  1420. return 0;
  1421. }
  1422. static int wm8993_resume(struct snd_soc_codec *codec)
  1423. {
  1424. struct wm8993_priv *wm8993 = snd_soc_codec_get_drvdata(codec);
  1425. int ret;
  1426. wm8993_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
  1427. /* Restart the FLL? */
  1428. if (wm8993->fll_fout) {
  1429. int fll_fout = wm8993->fll_fout;
  1430. int fll_fref = wm8993->fll_fref;
  1431. wm8993->fll_fref = 0;
  1432. wm8993->fll_fout = 0;
  1433. ret = _wm8993_set_fll(codec, 0, wm8993->fll_src,
  1434. fll_fref, fll_fout);
  1435. if (ret != 0)
  1436. dev_err(codec->dev, "Failed to restart FLL\n");
  1437. }
  1438. return 0;
  1439. }
  1440. #else
  1441. #define wm8993_suspend NULL
  1442. #define wm8993_resume NULL
  1443. #endif
  1444. /* Tune DC servo configuration */
  1445. static struct reg_default wm8993_regmap_patch[] = {
  1446. { 0x44, 3 },
  1447. { 0x56, 3 },
  1448. { 0x44, 0 },
  1449. };
  1450. static const struct regmap_config wm8993_regmap = {
  1451. .reg_bits = 8,
  1452. .val_bits = 16,
  1453. .max_register = WM8993_MAX_REGISTER,
  1454. .volatile_reg = wm8993_volatile,
  1455. .readable_reg = wm8993_readable,
  1456. .cache_type = REGCACHE_RBTREE,
  1457. .reg_defaults = wm8993_reg_defaults,
  1458. .num_reg_defaults = ARRAY_SIZE(wm8993_reg_defaults),
  1459. };
  1460. static struct snd_soc_codec_driver soc_codec_dev_wm8993 = {
  1461. .probe = wm8993_probe,
  1462. .remove = wm8993_remove,
  1463. .suspend = wm8993_suspend,
  1464. .resume = wm8993_resume,
  1465. .set_bias_level = wm8993_set_bias_level,
  1466. };
  1467. static __devinit int wm8993_i2c_probe(struct i2c_client *i2c,
  1468. const struct i2c_device_id *id)
  1469. {
  1470. struct wm8993_priv *wm8993;
  1471. unsigned int reg;
  1472. int ret, i;
  1473. wm8993 = devm_kzalloc(&i2c->dev, sizeof(struct wm8993_priv),
  1474. GFP_KERNEL);
  1475. if (wm8993 == NULL)
  1476. return -ENOMEM;
  1477. wm8993->dev = &i2c->dev;
  1478. init_completion(&wm8993->fll_lock);
  1479. wm8993->regmap = regmap_init_i2c(i2c, &wm8993_regmap);
  1480. if (IS_ERR(wm8993->regmap)) {
  1481. ret = PTR_ERR(wm8993->regmap);
  1482. dev_err(&i2c->dev, "Failed to allocate regmap: %d\n", ret);
  1483. return ret;
  1484. }
  1485. i2c_set_clientdata(i2c, wm8993);
  1486. for (i = 0; i < ARRAY_SIZE(wm8993->supplies); i++)
  1487. wm8993->supplies[i].supply = wm8993_supply_names[i];
  1488. ret = regulator_bulk_get(&i2c->dev, ARRAY_SIZE(wm8993->supplies),
  1489. wm8993->supplies);
  1490. if (ret != 0) {
  1491. dev_err(&i2c->dev, "Failed to request supplies: %d\n", ret);
  1492. goto err;
  1493. }
  1494. ret = regulator_bulk_enable(ARRAY_SIZE(wm8993->supplies),
  1495. wm8993->supplies);
  1496. if (ret != 0) {
  1497. dev_err(&i2c->dev, "Failed to enable supplies: %d\n", ret);
  1498. goto err_get;
  1499. }
  1500. ret = regmap_read(wm8993->regmap, WM8993_SOFTWARE_RESET, &reg);
  1501. if (ret != 0) {
  1502. dev_err(&i2c->dev, "Failed to read chip ID: %d\n", ret);
  1503. goto err_enable;
  1504. }
  1505. if (reg != 0x8993) {
  1506. dev_err(&i2c->dev, "Invalid ID register value %x\n", reg);
  1507. ret = -EINVAL;
  1508. goto err_enable;
  1509. }
  1510. ret = regmap_write(wm8993->regmap, WM8993_SOFTWARE_RESET, 0xffff);
  1511. if (ret != 0)
  1512. goto err_enable;
  1513. ret = regmap_register_patch(wm8993->regmap, wm8993_regmap_patch,
  1514. ARRAY_SIZE(wm8993_regmap_patch));
  1515. if (ret != 0)
  1516. dev_warn(wm8993->dev, "Failed to apply regmap patch: %d\n",
  1517. ret);
  1518. if (i2c->irq) {
  1519. /* Put GPIO1 into interrupt mode (only GPIO1 can output IRQ) */
  1520. ret = regmap_update_bits(wm8993->regmap, WM8993_GPIO1,
  1521. WM8993_GPIO1_PD |
  1522. WM8993_GPIO1_SEL_MASK, 7);
  1523. if (ret != 0)
  1524. goto err_enable;
  1525. ret = request_threaded_irq(i2c->irq, NULL, wm8993_irq,
  1526. IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
  1527. "wm8993", wm8993);
  1528. if (ret != 0)
  1529. goto err_enable;
  1530. }
  1531. regulator_bulk_disable(ARRAY_SIZE(wm8993->supplies), wm8993->supplies);
  1532. regcache_cache_only(wm8993->regmap, true);
  1533. ret = snd_soc_register_codec(&i2c->dev,
  1534. &soc_codec_dev_wm8993, &wm8993_dai, 1);
  1535. if (ret != 0) {
  1536. dev_err(&i2c->dev, "Failed to register CODEC: %d\n", ret);
  1537. goto err_irq;
  1538. }
  1539. return 0;
  1540. err_irq:
  1541. if (i2c->irq)
  1542. free_irq(i2c->irq, wm8993);
  1543. err_enable:
  1544. regulator_bulk_disable(ARRAY_SIZE(wm8993->supplies), wm8993->supplies);
  1545. err_get:
  1546. regulator_bulk_free(ARRAY_SIZE(wm8993->supplies), wm8993->supplies);
  1547. err:
  1548. regmap_exit(wm8993->regmap);
  1549. return ret;
  1550. }
  1551. static __devexit int wm8993_i2c_remove(struct i2c_client *i2c)
  1552. {
  1553. struct wm8993_priv *wm8993 = i2c_get_clientdata(i2c);
  1554. snd_soc_unregister_codec(&i2c->dev);
  1555. if (i2c->irq)
  1556. free_irq(i2c->irq, wm8993);
  1557. regmap_exit(wm8993->regmap);
  1558. regulator_bulk_disable(ARRAY_SIZE(wm8993->supplies), wm8993->supplies);
  1559. regulator_bulk_free(ARRAY_SIZE(wm8993->supplies), wm8993->supplies);
  1560. return 0;
  1561. }
  1562. static const struct i2c_device_id wm8993_i2c_id[] = {
  1563. { "wm8993", 0 },
  1564. { }
  1565. };
  1566. MODULE_DEVICE_TABLE(i2c, wm8993_i2c_id);
  1567. static struct i2c_driver wm8993_i2c_driver = {
  1568. .driver = {
  1569. .name = "wm8993",
  1570. .owner = THIS_MODULE,
  1571. },
  1572. .probe = wm8993_i2c_probe,
  1573. .remove = __devexit_p(wm8993_i2c_remove),
  1574. .id_table = wm8993_i2c_id,
  1575. };
  1576. static int __init wm8993_modinit(void)
  1577. {
  1578. int ret = 0;
  1579. ret = i2c_add_driver(&wm8993_i2c_driver);
  1580. if (ret != 0) {
  1581. pr_err("WM8993: Unable to register I2C driver: %d\n",
  1582. ret);
  1583. }
  1584. return ret;
  1585. }
  1586. module_init(wm8993_modinit);
  1587. static void __exit wm8993_exit(void)
  1588. {
  1589. i2c_del_driver(&wm8993_i2c_driver);
  1590. }
  1591. module_exit(wm8993_exit);
  1592. MODULE_DESCRIPTION("ASoC WM8993 driver");
  1593. MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
  1594. MODULE_LICENSE("GPL");