soc-dapm.c 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529
  1. /*
  2. * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
  3. *
  4. * Copyright 2005 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. * Features:
  14. * o Changes power status of internal codec blocks depending on the
  15. * dynamic configuration of codec internal audio paths and active
  16. * DAC's/ADC's.
  17. * o Platform power domain - can support external components i.e. amps and
  18. * mic/meadphone insertion events.
  19. * o Automatic Mic Bias support
  20. * o Jack insertion power event initiation - e.g. hp insertion will enable
  21. * sinks, dacs, etc
  22. * o Delayed powerdown of audio susbsystem to reduce pops between a quick
  23. * device reopen.
  24. *
  25. * Todo:
  26. * o DAPM power change sequencing - allow for configurable per
  27. * codec sequences.
  28. * o Support for analogue bias optimisation.
  29. * o Support for reduced codec oversampling rates.
  30. * o Support for reduced codec bias currents.
  31. */
  32. #include <linux/module.h>
  33. #include <linux/moduleparam.h>
  34. #include <linux/init.h>
  35. #include <linux/delay.h>
  36. #include <linux/pm.h>
  37. #include <linux/bitops.h>
  38. #include <linux/platform_device.h>
  39. #include <linux/jiffies.h>
  40. #include <sound/core.h>
  41. #include <sound/pcm.h>
  42. #include <sound/pcm_params.h>
  43. #include <sound/soc-dapm.h>
  44. #include <sound/initval.h>
  45. /* debug */
  46. #ifdef DEBUG
  47. #define dump_dapm(codec, action) dbg_dump_dapm(codec, action)
  48. #else
  49. #define dump_dapm(codec, action)
  50. #endif
  51. /* dapm power sequences - make this per codec in the future */
  52. static int dapm_up_seq[] = {
  53. snd_soc_dapm_pre, snd_soc_dapm_micbias, snd_soc_dapm_mic,
  54. snd_soc_dapm_mux, snd_soc_dapm_dac, snd_soc_dapm_mixer, snd_soc_dapm_pga,
  55. snd_soc_dapm_adc, snd_soc_dapm_hp, snd_soc_dapm_spk, snd_soc_dapm_post
  56. };
  57. static int dapm_down_seq[] = {
  58. snd_soc_dapm_pre, snd_soc_dapm_adc, snd_soc_dapm_hp, snd_soc_dapm_spk,
  59. snd_soc_dapm_pga, snd_soc_dapm_mixer, snd_soc_dapm_dac, snd_soc_dapm_mic,
  60. snd_soc_dapm_micbias, snd_soc_dapm_mux, snd_soc_dapm_post
  61. };
  62. static int dapm_status = 1;
  63. module_param(dapm_status, int, 0);
  64. MODULE_PARM_DESC(dapm_status, "enable DPM sysfs entries");
  65. static unsigned int pop_time;
  66. static void pop_wait(void)
  67. {
  68. if (pop_time)
  69. schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
  70. }
  71. static void pop_dbg(const char *fmt, ...)
  72. {
  73. va_list args;
  74. va_start(args, fmt);
  75. if (pop_time) {
  76. vprintk(fmt, args);
  77. pop_wait();
  78. }
  79. va_end(args);
  80. }
  81. /* create a new dapm widget */
  82. static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
  83. const struct snd_soc_dapm_widget *_widget)
  84. {
  85. return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
  86. }
  87. /* set up initial codec paths */
  88. static void dapm_set_path_status(struct snd_soc_dapm_widget *w,
  89. struct snd_soc_dapm_path *p, int i)
  90. {
  91. switch (w->id) {
  92. case snd_soc_dapm_switch:
  93. case snd_soc_dapm_mixer: {
  94. int val;
  95. int reg = w->kcontrols[i].private_value & 0xff;
  96. int shift = (w->kcontrols[i].private_value >> 8) & 0x0f;
  97. int mask = (w->kcontrols[i].private_value >> 16) & 0xff;
  98. int invert = (w->kcontrols[i].private_value >> 24) & 0x01;
  99. val = snd_soc_read(w->codec, reg);
  100. val = (val >> shift) & mask;
  101. if ((invert && !val) || (!invert && val))
  102. p->connect = 1;
  103. else
  104. p->connect = 0;
  105. }
  106. break;
  107. case snd_soc_dapm_mux: {
  108. struct soc_enum *e = (struct soc_enum *)w->kcontrols[i].private_value;
  109. int val, item, bitmask;
  110. for (bitmask = 1; bitmask < e->mask; bitmask <<= 1)
  111. ;
  112. val = snd_soc_read(w->codec, e->reg);
  113. item = (val >> e->shift_l) & (bitmask - 1);
  114. p->connect = 0;
  115. for (i = 0; i < e->mask; i++) {
  116. if (!(strcmp(p->name, e->texts[i])) && item == i)
  117. p->connect = 1;
  118. }
  119. }
  120. break;
  121. /* does not effect routing - always connected */
  122. case snd_soc_dapm_pga:
  123. case snd_soc_dapm_output:
  124. case snd_soc_dapm_adc:
  125. case snd_soc_dapm_input:
  126. case snd_soc_dapm_dac:
  127. case snd_soc_dapm_micbias:
  128. case snd_soc_dapm_vmid:
  129. p->connect = 1;
  130. break;
  131. /* does effect routing - dynamically connected */
  132. case snd_soc_dapm_hp:
  133. case snd_soc_dapm_mic:
  134. case snd_soc_dapm_spk:
  135. case snd_soc_dapm_line:
  136. case snd_soc_dapm_pre:
  137. case snd_soc_dapm_post:
  138. p->connect = 0;
  139. break;
  140. }
  141. }
  142. /* connect mux widget to it's interconnecting audio paths */
  143. static int dapm_connect_mux(struct snd_soc_codec *codec,
  144. struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
  145. struct snd_soc_dapm_path *path, const char *control_name,
  146. const struct snd_kcontrol_new *kcontrol)
  147. {
  148. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  149. int i;
  150. for (i = 0; i < e->mask; i++) {
  151. if (!(strcmp(control_name, e->texts[i]))) {
  152. list_add(&path->list, &codec->dapm_paths);
  153. list_add(&path->list_sink, &dest->sources);
  154. list_add(&path->list_source, &src->sinks);
  155. path->name = (char*)e->texts[i];
  156. dapm_set_path_status(dest, path, 0);
  157. return 0;
  158. }
  159. }
  160. return -ENODEV;
  161. }
  162. /* connect mixer widget to it's interconnecting audio paths */
  163. static int dapm_connect_mixer(struct snd_soc_codec *codec,
  164. struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
  165. struct snd_soc_dapm_path *path, const char *control_name)
  166. {
  167. int i;
  168. /* search for mixer kcontrol */
  169. for (i = 0; i < dest->num_kcontrols; i++) {
  170. if (!strcmp(control_name, dest->kcontrols[i].name)) {
  171. list_add(&path->list, &codec->dapm_paths);
  172. list_add(&path->list_sink, &dest->sources);
  173. list_add(&path->list_source, &src->sinks);
  174. path->name = dest->kcontrols[i].name;
  175. dapm_set_path_status(dest, path, i);
  176. return 0;
  177. }
  178. }
  179. return -ENODEV;
  180. }
  181. /* update dapm codec register bits */
  182. static int dapm_update_bits(struct snd_soc_dapm_widget *widget)
  183. {
  184. int change, power;
  185. unsigned short old, new;
  186. struct snd_soc_codec *codec = widget->codec;
  187. /* check for valid widgets */
  188. if (widget->reg < 0 || widget->id == snd_soc_dapm_input ||
  189. widget->id == snd_soc_dapm_output ||
  190. widget->id == snd_soc_dapm_hp ||
  191. widget->id == snd_soc_dapm_mic ||
  192. widget->id == snd_soc_dapm_line ||
  193. widget->id == snd_soc_dapm_spk)
  194. return 0;
  195. power = widget->power;
  196. if (widget->invert)
  197. power = (power ? 0:1);
  198. old = snd_soc_read(codec, widget->reg);
  199. new = (old & ~(0x1 << widget->shift)) | (power << widget->shift);
  200. change = old != new;
  201. if (change) {
  202. pop_dbg("pop test %s : %s in %d ms\n", widget->name,
  203. widget->power ? "on" : "off", pop_time);
  204. snd_soc_write(codec, widget->reg, new);
  205. pop_wait();
  206. }
  207. pr_debug("reg %x old %x new %x change %d\n", widget->reg,
  208. old, new, change);
  209. return change;
  210. }
  211. /* ramps the volume up or down to minimise pops before or after a
  212. * DAPM power event */
  213. static int dapm_set_pga(struct snd_soc_dapm_widget *widget, int power)
  214. {
  215. const struct snd_kcontrol_new *k = widget->kcontrols;
  216. if (widget->muted && !power)
  217. return 0;
  218. if (!widget->muted && power)
  219. return 0;
  220. if (widget->num_kcontrols && k) {
  221. int reg = k->private_value & 0xff;
  222. int shift = (k->private_value >> 8) & 0x0f;
  223. int mask = (k->private_value >> 16) & 0xff;
  224. int invert = (k->private_value >> 24) & 0x01;
  225. if (power) {
  226. int i;
  227. /* power up has happended, increase volume to last level */
  228. if (invert) {
  229. for (i = mask; i > widget->saved_value; i--)
  230. snd_soc_update_bits(widget->codec, reg, mask, i);
  231. } else {
  232. for (i = 0; i < widget->saved_value; i++)
  233. snd_soc_update_bits(widget->codec, reg, mask, i);
  234. }
  235. widget->muted = 0;
  236. } else {
  237. /* power down is about to occur, decrease volume to mute */
  238. int val = snd_soc_read(widget->codec, reg);
  239. int i = widget->saved_value = (val >> shift) & mask;
  240. if (invert) {
  241. for (; i < mask; i++)
  242. snd_soc_update_bits(widget->codec, reg, mask, i);
  243. } else {
  244. for (; i > 0; i--)
  245. snd_soc_update_bits(widget->codec, reg, mask, i);
  246. }
  247. widget->muted = 1;
  248. }
  249. }
  250. return 0;
  251. }
  252. /* create new dapm mixer control */
  253. static int dapm_new_mixer(struct snd_soc_codec *codec,
  254. struct snd_soc_dapm_widget *w)
  255. {
  256. int i, ret = 0;
  257. char name[32];
  258. struct snd_soc_dapm_path *path;
  259. /* add kcontrol */
  260. for (i = 0; i < w->num_kcontrols; i++) {
  261. /* match name */
  262. list_for_each_entry(path, &w->sources, list_sink) {
  263. /* mixer/mux paths name must match control name */
  264. if (path->name != (char*)w->kcontrols[i].name)
  265. continue;
  266. /* add dapm control with long name */
  267. snprintf(name, 32, "%s %s", w->name, w->kcontrols[i].name);
  268. path->long_name = kstrdup (name, GFP_KERNEL);
  269. if (path->long_name == NULL)
  270. return -ENOMEM;
  271. path->kcontrol = snd_soc_cnew(&w->kcontrols[i], w,
  272. path->long_name);
  273. ret = snd_ctl_add(codec->card, path->kcontrol);
  274. if (ret < 0) {
  275. printk(KERN_ERR "asoc: failed to add dapm kcontrol %s\n",
  276. path->long_name);
  277. kfree(path->long_name);
  278. path->long_name = NULL;
  279. return ret;
  280. }
  281. }
  282. }
  283. return ret;
  284. }
  285. /* create new dapm mux control */
  286. static int dapm_new_mux(struct snd_soc_codec *codec,
  287. struct snd_soc_dapm_widget *w)
  288. {
  289. struct snd_soc_dapm_path *path = NULL;
  290. struct snd_kcontrol *kcontrol;
  291. int ret = 0;
  292. if (!w->num_kcontrols) {
  293. printk(KERN_ERR "asoc: mux %s has no controls\n", w->name);
  294. return -EINVAL;
  295. }
  296. kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
  297. ret = snd_ctl_add(codec->card, kcontrol);
  298. if (ret < 0)
  299. goto err;
  300. list_for_each_entry(path, &w->sources, list_sink)
  301. path->kcontrol = kcontrol;
  302. return ret;
  303. err:
  304. printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
  305. return ret;
  306. }
  307. /* create new dapm volume control */
  308. static int dapm_new_pga(struct snd_soc_codec *codec,
  309. struct snd_soc_dapm_widget *w)
  310. {
  311. struct snd_kcontrol *kcontrol;
  312. int ret = 0;
  313. if (!w->num_kcontrols)
  314. return -EINVAL;
  315. kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name);
  316. ret = snd_ctl_add(codec->card, kcontrol);
  317. if (ret < 0) {
  318. printk(KERN_ERR "asoc: failed to add kcontrol %s\n", w->name);
  319. return ret;
  320. }
  321. return ret;
  322. }
  323. /* reset 'walked' bit for each dapm path */
  324. static inline void dapm_clear_walk(struct snd_soc_codec *codec)
  325. {
  326. struct snd_soc_dapm_path *p;
  327. list_for_each_entry(p, &codec->dapm_paths, list)
  328. p->walked = 0;
  329. }
  330. /*
  331. * Recursively check for a completed path to an active or physically connected
  332. * output widget. Returns number of complete paths.
  333. */
  334. static int is_connected_output_ep(struct snd_soc_dapm_widget *widget)
  335. {
  336. struct snd_soc_dapm_path *path;
  337. int con = 0;
  338. if (widget->id == snd_soc_dapm_adc && widget->active)
  339. return 1;
  340. if (widget->connected) {
  341. /* connected pin ? */
  342. if (widget->id == snd_soc_dapm_output && !widget->ext)
  343. return 1;
  344. /* connected jack or spk ? */
  345. if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk ||
  346. widget->id == snd_soc_dapm_line)
  347. return 1;
  348. }
  349. list_for_each_entry(path, &widget->sinks, list_source) {
  350. if (path->walked)
  351. continue;
  352. if (path->sink && path->connect) {
  353. path->walked = 1;
  354. con += is_connected_output_ep(path->sink);
  355. }
  356. }
  357. return con;
  358. }
  359. /*
  360. * Recursively check for a completed path to an active or physically connected
  361. * input widget. Returns number of complete paths.
  362. */
  363. static int is_connected_input_ep(struct snd_soc_dapm_widget *widget)
  364. {
  365. struct snd_soc_dapm_path *path;
  366. int con = 0;
  367. /* active stream ? */
  368. if (widget->id == snd_soc_dapm_dac && widget->active)
  369. return 1;
  370. if (widget->connected) {
  371. /* connected pin ? */
  372. if (widget->id == snd_soc_dapm_input && !widget->ext)
  373. return 1;
  374. /* connected VMID/Bias for lower pops */
  375. if (widget->id == snd_soc_dapm_vmid)
  376. return 1;
  377. /* connected jack ? */
  378. if (widget->id == snd_soc_dapm_mic || widget->id == snd_soc_dapm_line)
  379. return 1;
  380. }
  381. list_for_each_entry(path, &widget->sources, list_sink) {
  382. if (path->walked)
  383. continue;
  384. if (path->source && path->connect) {
  385. path->walked = 1;
  386. con += is_connected_input_ep(path->source);
  387. }
  388. }
  389. return con;
  390. }
  391. /*
  392. * Handler for generic register modifier widget.
  393. */
  394. int dapm_reg_event(struct snd_soc_dapm_widget *w,
  395. struct snd_kcontrol *kcontrol, int event)
  396. {
  397. unsigned int val;
  398. if (SND_SOC_DAPM_EVENT_ON(event))
  399. val = w->on_val;
  400. else
  401. val = w->off_val;
  402. snd_soc_update_bits(w->codec, -(w->reg + 1),
  403. w->mask << w->shift, val << w->shift);
  404. return 0;
  405. }
  406. EXPORT_SYMBOL_GPL(dapm_reg_event);
  407. /*
  408. * Scan each dapm widget for complete audio path.
  409. * A complete path is a route that has valid endpoints i.e.:-
  410. *
  411. * o DAC to output pin.
  412. * o Input Pin to ADC.
  413. * o Input pin to Output pin (bypass, sidetone)
  414. * o DAC to ADC (loopback).
  415. */
  416. static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
  417. {
  418. struct snd_soc_dapm_widget *w;
  419. int in, out, i, c = 1, *seq = NULL, ret = 0, power_change, power;
  420. /* do we have a sequenced stream event */
  421. if (event == SND_SOC_DAPM_STREAM_START) {
  422. c = ARRAY_SIZE(dapm_up_seq);
  423. seq = dapm_up_seq;
  424. } else if (event == SND_SOC_DAPM_STREAM_STOP) {
  425. c = ARRAY_SIZE(dapm_down_seq);
  426. seq = dapm_down_seq;
  427. }
  428. for(i = 0; i < c; i++) {
  429. list_for_each_entry(w, &codec->dapm_widgets, list) {
  430. /* is widget in stream order */
  431. if (seq && seq[i] && w->id != seq[i])
  432. continue;
  433. /* vmid - no action */
  434. if (w->id == snd_soc_dapm_vmid)
  435. continue;
  436. /* active ADC */
  437. if (w->id == snd_soc_dapm_adc && w->active) {
  438. in = is_connected_input_ep(w);
  439. dapm_clear_walk(w->codec);
  440. w->power = (in != 0) ? 1 : 0;
  441. dapm_update_bits(w);
  442. continue;
  443. }
  444. /* active DAC */
  445. if (w->id == snd_soc_dapm_dac && w->active) {
  446. out = is_connected_output_ep(w);
  447. dapm_clear_walk(w->codec);
  448. w->power = (out != 0) ? 1 : 0;
  449. dapm_update_bits(w);
  450. continue;
  451. }
  452. /* pre and post event widgets */
  453. if (w->id == snd_soc_dapm_pre) {
  454. if (!w->event)
  455. continue;
  456. if (event == SND_SOC_DAPM_STREAM_START) {
  457. ret = w->event(w,
  458. NULL, SND_SOC_DAPM_PRE_PMU);
  459. if (ret < 0)
  460. return ret;
  461. } else if (event == SND_SOC_DAPM_STREAM_STOP) {
  462. ret = w->event(w,
  463. NULL, SND_SOC_DAPM_PRE_PMD);
  464. if (ret < 0)
  465. return ret;
  466. }
  467. continue;
  468. }
  469. if (w->id == snd_soc_dapm_post) {
  470. if (!w->event)
  471. continue;
  472. if (event == SND_SOC_DAPM_STREAM_START) {
  473. ret = w->event(w,
  474. NULL, SND_SOC_DAPM_POST_PMU);
  475. if (ret < 0)
  476. return ret;
  477. } else if (event == SND_SOC_DAPM_STREAM_STOP) {
  478. ret = w->event(w,
  479. NULL, SND_SOC_DAPM_POST_PMD);
  480. if (ret < 0)
  481. return ret;
  482. }
  483. continue;
  484. }
  485. /* all other widgets */
  486. in = is_connected_input_ep(w);
  487. dapm_clear_walk(w->codec);
  488. out = is_connected_output_ep(w);
  489. dapm_clear_walk(w->codec);
  490. power = (out != 0 && in != 0) ? 1 : 0;
  491. power_change = (w->power == power) ? 0: 1;
  492. w->power = power;
  493. if (!power_change)
  494. continue;
  495. /* call any power change event handlers */
  496. if (w->event)
  497. pr_debug("power %s event for %s flags %x\n",
  498. w->power ? "on" : "off",
  499. w->name, w->event_flags);
  500. /* power up pre event */
  501. if (power && w->event &&
  502. (w->event_flags & SND_SOC_DAPM_PRE_PMU)) {
  503. ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMU);
  504. if (ret < 0)
  505. return ret;
  506. }
  507. /* power down pre event */
  508. if (!power && w->event &&
  509. (w->event_flags & SND_SOC_DAPM_PRE_PMD)) {
  510. ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMD);
  511. if (ret < 0)
  512. return ret;
  513. }
  514. /* Lower PGA volume to reduce pops */
  515. if (w->id == snd_soc_dapm_pga && !power)
  516. dapm_set_pga(w, power);
  517. dapm_update_bits(w);
  518. /* Raise PGA volume to reduce pops */
  519. if (w->id == snd_soc_dapm_pga && power)
  520. dapm_set_pga(w, power);
  521. /* power up post event */
  522. if (power && w->event &&
  523. (w->event_flags & SND_SOC_DAPM_POST_PMU)) {
  524. ret = w->event(w,
  525. NULL, SND_SOC_DAPM_POST_PMU);
  526. if (ret < 0)
  527. return ret;
  528. }
  529. /* power down post event */
  530. if (!power && w->event &&
  531. (w->event_flags & SND_SOC_DAPM_POST_PMD)) {
  532. ret = w->event(w, NULL, SND_SOC_DAPM_POST_PMD);
  533. if (ret < 0)
  534. return ret;
  535. }
  536. }
  537. }
  538. return ret;
  539. }
  540. #ifdef DEBUG
  541. static void dbg_dump_dapm(struct snd_soc_codec* codec, const char *action)
  542. {
  543. struct snd_soc_dapm_widget *w;
  544. struct snd_soc_dapm_path *p = NULL;
  545. int in, out;
  546. printk("DAPM %s %s\n", codec->name, action);
  547. list_for_each_entry(w, &codec->dapm_widgets, list) {
  548. /* only display widgets that effect routing */
  549. switch (w->id) {
  550. case snd_soc_dapm_pre:
  551. case snd_soc_dapm_post:
  552. case snd_soc_dapm_vmid:
  553. continue;
  554. case snd_soc_dapm_mux:
  555. case snd_soc_dapm_output:
  556. case snd_soc_dapm_input:
  557. case snd_soc_dapm_switch:
  558. case snd_soc_dapm_hp:
  559. case snd_soc_dapm_mic:
  560. case snd_soc_dapm_spk:
  561. case snd_soc_dapm_line:
  562. case snd_soc_dapm_micbias:
  563. case snd_soc_dapm_dac:
  564. case snd_soc_dapm_adc:
  565. case snd_soc_dapm_pga:
  566. case snd_soc_dapm_mixer:
  567. if (w->name) {
  568. in = is_connected_input_ep(w);
  569. dapm_clear_walk(w->codec);
  570. out = is_connected_output_ep(w);
  571. dapm_clear_walk(w->codec);
  572. printk("%s: %s in %d out %d\n", w->name,
  573. w->power ? "On":"Off",in, out);
  574. list_for_each_entry(p, &w->sources, list_sink) {
  575. if (p->connect)
  576. printk(" in %s %s\n", p->name ? p->name : "static",
  577. p->source->name);
  578. }
  579. list_for_each_entry(p, &w->sinks, list_source) {
  580. if (p->connect)
  581. printk(" out %s %s\n", p->name ? p->name : "static",
  582. p->sink->name);
  583. }
  584. }
  585. break;
  586. }
  587. }
  588. }
  589. #endif
  590. /* test and update the power status of a mux widget */
  591. static int dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
  592. struct snd_kcontrol *kcontrol, int mask,
  593. int val, struct soc_enum* e)
  594. {
  595. struct snd_soc_dapm_path *path;
  596. int found = 0;
  597. if (widget->id != snd_soc_dapm_mux)
  598. return -ENODEV;
  599. if (!snd_soc_test_bits(widget->codec, e->reg, mask, val))
  600. return 0;
  601. /* find dapm widget path assoc with kcontrol */
  602. list_for_each_entry(path, &widget->codec->dapm_paths, list) {
  603. if (path->kcontrol != kcontrol)
  604. continue;
  605. if (!path->name || ! e->texts[val])
  606. continue;
  607. found = 1;
  608. /* we now need to match the string in the enum to the path */
  609. if (!(strcmp(path->name, e->texts[val])))
  610. path->connect = 1; /* new connection */
  611. else
  612. path->connect = 0; /* old connection must be powered down */
  613. }
  614. if (found) {
  615. dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
  616. dump_dapm(widget->codec, "mux power update");
  617. }
  618. return 0;
  619. }
  620. /* test and update the power status of a mixer or switch widget */
  621. static int dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
  622. struct snd_kcontrol *kcontrol, int reg,
  623. int val_mask, int val, int invert)
  624. {
  625. struct snd_soc_dapm_path *path;
  626. int found = 0;
  627. if (widget->id != snd_soc_dapm_mixer &&
  628. widget->id != snd_soc_dapm_switch)
  629. return -ENODEV;
  630. if (!snd_soc_test_bits(widget->codec, reg, val_mask, val))
  631. return 0;
  632. /* find dapm widget path assoc with kcontrol */
  633. list_for_each_entry(path, &widget->codec->dapm_paths, list) {
  634. if (path->kcontrol != kcontrol)
  635. continue;
  636. /* found, now check type */
  637. found = 1;
  638. if (val)
  639. /* new connection */
  640. path->connect = invert ? 0:1;
  641. else
  642. /* old connection must be powered down */
  643. path->connect = invert ? 1:0;
  644. break;
  645. }
  646. if (found) {
  647. dapm_power_widgets(widget->codec, SND_SOC_DAPM_STREAM_NOP);
  648. dump_dapm(widget->codec, "mixer power update");
  649. }
  650. return 0;
  651. }
  652. /* show dapm widget status in sys fs */
  653. static ssize_t dapm_widget_show(struct device *dev,
  654. struct device_attribute *attr, char *buf)
  655. {
  656. struct snd_soc_device *devdata = dev_get_drvdata(dev);
  657. struct snd_soc_codec *codec = devdata->codec;
  658. struct snd_soc_dapm_widget *w;
  659. int count = 0;
  660. char *state = "not set";
  661. list_for_each_entry(w, &codec->dapm_widgets, list) {
  662. /* only display widgets that burnm power */
  663. switch (w->id) {
  664. case snd_soc_dapm_hp:
  665. case snd_soc_dapm_mic:
  666. case snd_soc_dapm_spk:
  667. case snd_soc_dapm_line:
  668. case snd_soc_dapm_micbias:
  669. case snd_soc_dapm_dac:
  670. case snd_soc_dapm_adc:
  671. case snd_soc_dapm_pga:
  672. case snd_soc_dapm_mixer:
  673. if (w->name)
  674. count += sprintf(buf + count, "%s: %s\n",
  675. w->name, w->power ? "On":"Off");
  676. break;
  677. default:
  678. break;
  679. }
  680. }
  681. switch (codec->bias_level) {
  682. case SND_SOC_BIAS_ON:
  683. state = "On";
  684. break;
  685. case SND_SOC_BIAS_PREPARE:
  686. state = "Prepare";
  687. break;
  688. case SND_SOC_BIAS_STANDBY:
  689. state = "Standby";
  690. break;
  691. case SND_SOC_BIAS_OFF:
  692. state = "Off";
  693. break;
  694. }
  695. count += sprintf(buf + count, "PM State: %s\n", state);
  696. return count;
  697. }
  698. static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
  699. /* pop/click delay times */
  700. static ssize_t dapm_pop_time_show(struct device *dev,
  701. struct device_attribute *attr, char *buf)
  702. {
  703. return sprintf(buf, "%d\n", pop_time);
  704. }
  705. static ssize_t dapm_pop_time_store(struct device *dev,
  706. struct device_attribute *attr,
  707. const char *buf, size_t count)
  708. {
  709. unsigned long val;
  710. if (strict_strtoul(buf, 10, &val) >= 0)
  711. pop_time = val;
  712. else
  713. printk(KERN_ERR "Unable to parse pop_time setting\n");
  714. return count;
  715. }
  716. static DEVICE_ATTR(dapm_pop_time, 0744, dapm_pop_time_show,
  717. dapm_pop_time_store);
  718. int snd_soc_dapm_sys_add(struct device *dev)
  719. {
  720. int ret = 0;
  721. if (dapm_status) {
  722. ret = device_create_file(dev, &dev_attr_dapm_widget);
  723. if (ret == 0)
  724. ret = device_create_file(dev, &dev_attr_dapm_pop_time);
  725. }
  726. return ret;
  727. }
  728. static void snd_soc_dapm_sys_remove(struct device *dev)
  729. {
  730. if (dapm_status) {
  731. device_remove_file(dev, &dev_attr_dapm_pop_time);
  732. device_remove_file(dev, &dev_attr_dapm_widget);
  733. }
  734. }
  735. /* free all dapm widgets and resources */
  736. static void dapm_free_widgets(struct snd_soc_codec *codec)
  737. {
  738. struct snd_soc_dapm_widget *w, *next_w;
  739. struct snd_soc_dapm_path *p, *next_p;
  740. list_for_each_entry_safe(w, next_w, &codec->dapm_widgets, list) {
  741. list_del(&w->list);
  742. kfree(w);
  743. }
  744. list_for_each_entry_safe(p, next_p, &codec->dapm_paths, list) {
  745. list_del(&p->list);
  746. kfree(p->long_name);
  747. kfree(p);
  748. }
  749. }
  750. static int snd_soc_dapm_set_pin(struct snd_soc_codec *codec,
  751. char *pin, int status)
  752. {
  753. struct snd_soc_dapm_widget *w;
  754. list_for_each_entry(w, &codec->dapm_widgets, list) {
  755. if (!strcmp(w->name, pin)) {
  756. pr_debug("dapm: %s: pin %s\n", codec->name, pin);
  757. w->connected = status;
  758. return 0;
  759. }
  760. }
  761. pr_err("dapm: %s: configuring unknown pin %s\n", codec->name, pin);
  762. return -EINVAL;
  763. }
  764. /**
  765. * snd_soc_dapm_sync - scan and power dapm paths
  766. * @codec: audio codec
  767. *
  768. * Walks all dapm audio paths and powers widgets according to their
  769. * stream or path usage.
  770. *
  771. * Returns 0 for success.
  772. */
  773. int snd_soc_dapm_sync(struct snd_soc_codec *codec)
  774. {
  775. int ret = dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
  776. dump_dapm(codec, "sync");
  777. return ret;
  778. }
  779. EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
  780. static int snd_soc_dapm_add_route(struct snd_soc_codec *codec,
  781. const char *sink, const char *control, const char *source)
  782. {
  783. struct snd_soc_dapm_path *path;
  784. struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
  785. int ret = 0;
  786. /* find src and dest widgets */
  787. list_for_each_entry(w, &codec->dapm_widgets, list) {
  788. if (!wsink && !(strcmp(w->name, sink))) {
  789. wsink = w;
  790. continue;
  791. }
  792. if (!wsource && !(strcmp(w->name, source))) {
  793. wsource = w;
  794. }
  795. }
  796. if (wsource == NULL || wsink == NULL)
  797. return -ENODEV;
  798. path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
  799. if (!path)
  800. return -ENOMEM;
  801. path->source = wsource;
  802. path->sink = wsink;
  803. INIT_LIST_HEAD(&path->list);
  804. INIT_LIST_HEAD(&path->list_source);
  805. INIT_LIST_HEAD(&path->list_sink);
  806. /* check for external widgets */
  807. if (wsink->id == snd_soc_dapm_input) {
  808. if (wsource->id == snd_soc_dapm_micbias ||
  809. wsource->id == snd_soc_dapm_mic ||
  810. wsink->id == snd_soc_dapm_line ||
  811. wsink->id == snd_soc_dapm_output)
  812. wsink->ext = 1;
  813. }
  814. if (wsource->id == snd_soc_dapm_output) {
  815. if (wsink->id == snd_soc_dapm_spk ||
  816. wsink->id == snd_soc_dapm_hp ||
  817. wsink->id == snd_soc_dapm_line ||
  818. wsink->id == snd_soc_dapm_input)
  819. wsource->ext = 1;
  820. }
  821. /* connect static paths */
  822. if (control == NULL) {
  823. list_add(&path->list, &codec->dapm_paths);
  824. list_add(&path->list_sink, &wsink->sources);
  825. list_add(&path->list_source, &wsource->sinks);
  826. path->connect = 1;
  827. return 0;
  828. }
  829. /* connect dynamic paths */
  830. switch(wsink->id) {
  831. case snd_soc_dapm_adc:
  832. case snd_soc_dapm_dac:
  833. case snd_soc_dapm_pga:
  834. case snd_soc_dapm_input:
  835. case snd_soc_dapm_output:
  836. case snd_soc_dapm_micbias:
  837. case snd_soc_dapm_vmid:
  838. case snd_soc_dapm_pre:
  839. case snd_soc_dapm_post:
  840. list_add(&path->list, &codec->dapm_paths);
  841. list_add(&path->list_sink, &wsink->sources);
  842. list_add(&path->list_source, &wsource->sinks);
  843. path->connect = 1;
  844. return 0;
  845. case snd_soc_dapm_mux:
  846. ret = dapm_connect_mux(codec, wsource, wsink, path, control,
  847. &wsink->kcontrols[0]);
  848. if (ret != 0)
  849. goto err;
  850. break;
  851. case snd_soc_dapm_switch:
  852. case snd_soc_dapm_mixer:
  853. ret = dapm_connect_mixer(codec, wsource, wsink, path, control);
  854. if (ret != 0)
  855. goto err;
  856. break;
  857. case snd_soc_dapm_hp:
  858. case snd_soc_dapm_mic:
  859. case snd_soc_dapm_line:
  860. case snd_soc_dapm_spk:
  861. list_add(&path->list, &codec->dapm_paths);
  862. list_add(&path->list_sink, &wsink->sources);
  863. list_add(&path->list_source, &wsource->sinks);
  864. path->connect = 0;
  865. return 0;
  866. }
  867. return 0;
  868. err:
  869. printk(KERN_WARNING "asoc: no dapm match for %s --> %s --> %s\n", source,
  870. control, sink);
  871. kfree(path);
  872. return ret;
  873. }
  874. /**
  875. * snd_soc_dapm_connect_input - connect dapm widgets
  876. * @codec: audio codec
  877. * @sink: name of target widget
  878. * @control: mixer control name
  879. * @source: name of source name
  880. *
  881. * Connects 2 dapm widgets together via a named audio path. The sink is
  882. * the widget receiving the audio signal, whilst the source is the sender
  883. * of the audio signal.
  884. *
  885. * This function has been deprecated in favour of snd_soc_dapm_add_routes().
  886. *
  887. * Returns 0 for success else error.
  888. */
  889. int snd_soc_dapm_connect_input(struct snd_soc_codec *codec, const char *sink,
  890. const char *control, const char *source)
  891. {
  892. return snd_soc_dapm_add_route(codec, sink, control, source);
  893. }
  894. EXPORT_SYMBOL_GPL(snd_soc_dapm_connect_input);
  895. /**
  896. * snd_soc_dapm_add_routes - Add routes between DAPM widgets
  897. * @codec: codec
  898. * @route: audio routes
  899. * @num: number of routes
  900. *
  901. * Connects 2 dapm widgets together via a named audio path. The sink is
  902. * the widget receiving the audio signal, whilst the source is the sender
  903. * of the audio signal.
  904. *
  905. * Returns 0 for success else error. On error all resources can be freed
  906. * with a call to snd_soc_card_free().
  907. */
  908. int snd_soc_dapm_add_routes(struct snd_soc_codec *codec,
  909. const struct snd_soc_dapm_route *route, int num)
  910. {
  911. int i, ret;
  912. for (i = 0; i < num; i++) {
  913. ret = snd_soc_dapm_add_route(codec, route->sink,
  914. route->control, route->source);
  915. if (ret < 0) {
  916. printk(KERN_ERR "Failed to add route %s->%s\n",
  917. route->source,
  918. route->sink);
  919. return ret;
  920. }
  921. route++;
  922. }
  923. return 0;
  924. }
  925. EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
  926. /**
  927. * snd_soc_dapm_new_widgets - add new dapm widgets
  928. * @codec: audio codec
  929. *
  930. * Checks the codec for any new dapm widgets and creates them if found.
  931. *
  932. * Returns 0 for success.
  933. */
  934. int snd_soc_dapm_new_widgets(struct snd_soc_codec *codec)
  935. {
  936. struct snd_soc_dapm_widget *w;
  937. list_for_each_entry(w, &codec->dapm_widgets, list)
  938. {
  939. if (w->new)
  940. continue;
  941. switch(w->id) {
  942. case snd_soc_dapm_switch:
  943. case snd_soc_dapm_mixer:
  944. dapm_new_mixer(codec, w);
  945. break;
  946. case snd_soc_dapm_mux:
  947. dapm_new_mux(codec, w);
  948. break;
  949. case snd_soc_dapm_adc:
  950. case snd_soc_dapm_dac:
  951. case snd_soc_dapm_pga:
  952. dapm_new_pga(codec, w);
  953. break;
  954. case snd_soc_dapm_input:
  955. case snd_soc_dapm_output:
  956. case snd_soc_dapm_micbias:
  957. case snd_soc_dapm_spk:
  958. case snd_soc_dapm_hp:
  959. case snd_soc_dapm_mic:
  960. case snd_soc_dapm_line:
  961. case snd_soc_dapm_vmid:
  962. case snd_soc_dapm_pre:
  963. case snd_soc_dapm_post:
  964. break;
  965. }
  966. w->new = 1;
  967. }
  968. dapm_power_widgets(codec, SND_SOC_DAPM_STREAM_NOP);
  969. return 0;
  970. }
  971. EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
  972. /**
  973. * snd_soc_dapm_get_volsw - dapm mixer get callback
  974. * @kcontrol: mixer control
  975. * @uinfo: control element information
  976. *
  977. * Callback to get the value of a dapm mixer control.
  978. *
  979. * Returns 0 for success.
  980. */
  981. int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
  982. struct snd_ctl_elem_value *ucontrol)
  983. {
  984. struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
  985. int reg = kcontrol->private_value & 0xff;
  986. int shift = (kcontrol->private_value >> 8) & 0x0f;
  987. int rshift = (kcontrol->private_value >> 12) & 0x0f;
  988. int max = (kcontrol->private_value >> 16) & 0xff;
  989. int invert = (kcontrol->private_value >> 24) & 0x01;
  990. int mask = (1 << fls(max)) - 1;
  991. /* return the saved value if we are powered down */
  992. if (widget->id == snd_soc_dapm_pga && !widget->power) {
  993. ucontrol->value.integer.value[0] = widget->saved_value;
  994. return 0;
  995. }
  996. ucontrol->value.integer.value[0] =
  997. (snd_soc_read(widget->codec, reg) >> shift) & mask;
  998. if (shift != rshift)
  999. ucontrol->value.integer.value[1] =
  1000. (snd_soc_read(widget->codec, reg) >> rshift) & mask;
  1001. if (invert) {
  1002. ucontrol->value.integer.value[0] =
  1003. max - ucontrol->value.integer.value[0];
  1004. if (shift != rshift)
  1005. ucontrol->value.integer.value[1] =
  1006. max - ucontrol->value.integer.value[1];
  1007. }
  1008. return 0;
  1009. }
  1010. EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
  1011. /**
  1012. * snd_soc_dapm_put_volsw - dapm mixer set callback
  1013. * @kcontrol: mixer control
  1014. * @uinfo: control element information
  1015. *
  1016. * Callback to set the value of a dapm mixer control.
  1017. *
  1018. * Returns 0 for success.
  1019. */
  1020. int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
  1021. struct snd_ctl_elem_value *ucontrol)
  1022. {
  1023. struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
  1024. int reg = kcontrol->private_value & 0xff;
  1025. int shift = (kcontrol->private_value >> 8) & 0x0f;
  1026. int rshift = (kcontrol->private_value >> 12) & 0x0f;
  1027. int max = (kcontrol->private_value >> 16) & 0xff;
  1028. int mask = (1 << fls(max)) - 1;
  1029. int invert = (kcontrol->private_value >> 24) & 0x01;
  1030. unsigned short val, val2, val_mask;
  1031. int ret;
  1032. val = (ucontrol->value.integer.value[0] & mask);
  1033. if (invert)
  1034. val = max - val;
  1035. val_mask = mask << shift;
  1036. val = val << shift;
  1037. if (shift != rshift) {
  1038. val2 = (ucontrol->value.integer.value[1] & mask);
  1039. if (invert)
  1040. val2 = max - val2;
  1041. val_mask |= mask << rshift;
  1042. val |= val2 << rshift;
  1043. }
  1044. mutex_lock(&widget->codec->mutex);
  1045. widget->value = val;
  1046. /* save volume value if the widget is powered down */
  1047. if (widget->id == snd_soc_dapm_pga && !widget->power) {
  1048. widget->saved_value = val;
  1049. mutex_unlock(&widget->codec->mutex);
  1050. return 1;
  1051. }
  1052. dapm_mixer_update_power(widget, kcontrol, reg, val_mask, val, invert);
  1053. if (widget->event) {
  1054. if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
  1055. ret = widget->event(widget, kcontrol,
  1056. SND_SOC_DAPM_PRE_REG);
  1057. if (ret < 0) {
  1058. ret = 1;
  1059. goto out;
  1060. }
  1061. }
  1062. ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
  1063. if (widget->event_flags & SND_SOC_DAPM_POST_REG)
  1064. ret = widget->event(widget, kcontrol,
  1065. SND_SOC_DAPM_POST_REG);
  1066. } else
  1067. ret = snd_soc_update_bits(widget->codec, reg, val_mask, val);
  1068. out:
  1069. mutex_unlock(&widget->codec->mutex);
  1070. return ret;
  1071. }
  1072. EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
  1073. /**
  1074. * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
  1075. * @kcontrol: mixer control
  1076. * @uinfo: control element information
  1077. *
  1078. * Callback to get the value of a dapm enumerated double mixer control.
  1079. *
  1080. * Returns 0 for success.
  1081. */
  1082. int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
  1083. struct snd_ctl_elem_value *ucontrol)
  1084. {
  1085. struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
  1086. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1087. unsigned short val, bitmask;
  1088. for (bitmask = 1; bitmask < e->mask; bitmask <<= 1)
  1089. ;
  1090. val = snd_soc_read(widget->codec, e->reg);
  1091. ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1);
  1092. if (e->shift_l != e->shift_r)
  1093. ucontrol->value.enumerated.item[1] =
  1094. (val >> e->shift_r) & (bitmask - 1);
  1095. return 0;
  1096. }
  1097. EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
  1098. /**
  1099. * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
  1100. * @kcontrol: mixer control
  1101. * @uinfo: control element information
  1102. *
  1103. * Callback to set the value of a dapm enumerated double mixer control.
  1104. *
  1105. * Returns 0 for success.
  1106. */
  1107. int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
  1108. struct snd_ctl_elem_value *ucontrol)
  1109. {
  1110. struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol);
  1111. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1112. unsigned short val, mux;
  1113. unsigned short mask, bitmask;
  1114. int ret = 0;
  1115. for (bitmask = 1; bitmask < e->mask; bitmask <<= 1)
  1116. ;
  1117. if (ucontrol->value.enumerated.item[0] > e->mask - 1)
  1118. return -EINVAL;
  1119. mux = ucontrol->value.enumerated.item[0];
  1120. val = mux << e->shift_l;
  1121. mask = (bitmask - 1) << e->shift_l;
  1122. if (e->shift_l != e->shift_r) {
  1123. if (ucontrol->value.enumerated.item[1] > e->mask - 1)
  1124. return -EINVAL;
  1125. val |= ucontrol->value.enumerated.item[1] << e->shift_r;
  1126. mask |= (bitmask - 1) << e->shift_r;
  1127. }
  1128. mutex_lock(&widget->codec->mutex);
  1129. widget->value = val;
  1130. dapm_mux_update_power(widget, kcontrol, mask, mux, e);
  1131. if (widget->event) {
  1132. if (widget->event_flags & SND_SOC_DAPM_PRE_REG) {
  1133. ret = widget->event(widget,
  1134. kcontrol, SND_SOC_DAPM_PRE_REG);
  1135. if (ret < 0)
  1136. goto out;
  1137. }
  1138. ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
  1139. if (widget->event_flags & SND_SOC_DAPM_POST_REG)
  1140. ret = widget->event(widget,
  1141. kcontrol, SND_SOC_DAPM_POST_REG);
  1142. } else
  1143. ret = snd_soc_update_bits(widget->codec, e->reg, mask, val);
  1144. out:
  1145. mutex_unlock(&widget->codec->mutex);
  1146. return ret;
  1147. }
  1148. EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
  1149. /**
  1150. * snd_soc_dapm_new_control - create new dapm control
  1151. * @codec: audio codec
  1152. * @widget: widget template
  1153. *
  1154. * Creates a new dapm control based upon the template.
  1155. *
  1156. * Returns 0 for success else error.
  1157. */
  1158. int snd_soc_dapm_new_control(struct snd_soc_codec *codec,
  1159. const struct snd_soc_dapm_widget *widget)
  1160. {
  1161. struct snd_soc_dapm_widget *w;
  1162. if ((w = dapm_cnew_widget(widget)) == NULL)
  1163. return -ENOMEM;
  1164. w->codec = codec;
  1165. INIT_LIST_HEAD(&w->sources);
  1166. INIT_LIST_HEAD(&w->sinks);
  1167. INIT_LIST_HEAD(&w->list);
  1168. list_add(&w->list, &codec->dapm_widgets);
  1169. /* machine layer set ups unconnected pins and insertions */
  1170. w->connected = 1;
  1171. return 0;
  1172. }
  1173. EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
  1174. /**
  1175. * snd_soc_dapm_new_controls - create new dapm controls
  1176. * @codec: audio codec
  1177. * @widget: widget array
  1178. * @num: number of widgets
  1179. *
  1180. * Creates new DAPM controls based upon the templates.
  1181. *
  1182. * Returns 0 for success else error.
  1183. */
  1184. int snd_soc_dapm_new_controls(struct snd_soc_codec *codec,
  1185. const struct snd_soc_dapm_widget *widget,
  1186. int num)
  1187. {
  1188. int i, ret;
  1189. for (i = 0; i < num; i++) {
  1190. ret = snd_soc_dapm_new_control(codec, widget);
  1191. if (ret < 0)
  1192. return ret;
  1193. widget++;
  1194. }
  1195. return 0;
  1196. }
  1197. EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
  1198. /**
  1199. * snd_soc_dapm_stream_event - send a stream event to the dapm core
  1200. * @codec: audio codec
  1201. * @stream: stream name
  1202. * @event: stream event
  1203. *
  1204. * Sends a stream event to the dapm core. The core then makes any
  1205. * necessary widget power changes.
  1206. *
  1207. * Returns 0 for success else error.
  1208. */
  1209. int snd_soc_dapm_stream_event(struct snd_soc_codec *codec,
  1210. char *stream, int event)
  1211. {
  1212. struct snd_soc_dapm_widget *w;
  1213. if (stream == NULL)
  1214. return 0;
  1215. mutex_lock(&codec->mutex);
  1216. list_for_each_entry(w, &codec->dapm_widgets, list)
  1217. {
  1218. if (!w->sname)
  1219. continue;
  1220. pr_debug("widget %s\n %s stream %s event %d\n",
  1221. w->name, w->sname, stream, event);
  1222. if (strstr(w->sname, stream)) {
  1223. switch(event) {
  1224. case SND_SOC_DAPM_STREAM_START:
  1225. w->active = 1;
  1226. break;
  1227. case SND_SOC_DAPM_STREAM_STOP:
  1228. w->active = 0;
  1229. break;
  1230. case SND_SOC_DAPM_STREAM_SUSPEND:
  1231. if (w->active)
  1232. w->suspend = 1;
  1233. w->active = 0;
  1234. break;
  1235. case SND_SOC_DAPM_STREAM_RESUME:
  1236. if (w->suspend) {
  1237. w->active = 1;
  1238. w->suspend = 0;
  1239. }
  1240. break;
  1241. case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
  1242. break;
  1243. case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
  1244. break;
  1245. }
  1246. }
  1247. }
  1248. mutex_unlock(&codec->mutex);
  1249. dapm_power_widgets(codec, event);
  1250. dump_dapm(codec, __func__);
  1251. return 0;
  1252. }
  1253. EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event);
  1254. /**
  1255. * snd_soc_dapm_set_bias_level - set the bias level for the system
  1256. * @socdev: audio device
  1257. * @level: level to configure
  1258. *
  1259. * Configure the bias (power) levels for the SoC audio device.
  1260. *
  1261. * Returns 0 for success else error.
  1262. */
  1263. int snd_soc_dapm_set_bias_level(struct snd_soc_device *socdev,
  1264. enum snd_soc_bias_level level)
  1265. {
  1266. struct snd_soc_codec *codec = socdev->codec;
  1267. struct snd_soc_machine *machine = socdev->machine;
  1268. int ret = 0;
  1269. if (machine->set_bias_level)
  1270. ret = machine->set_bias_level(machine, level);
  1271. if (ret == 0 && codec->set_bias_level)
  1272. ret = codec->set_bias_level(codec, level);
  1273. return ret;
  1274. }
  1275. /**
  1276. * snd_soc_dapm_enable_pin - enable pin.
  1277. * @snd_soc_codec: SoC codec
  1278. * @pin: pin name
  1279. *
  1280. * Enables input/output pin and it's parents or children widgets iff there is
  1281. * a valid audio route and active audio stream.
  1282. * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
  1283. * do any widget power switching.
  1284. */
  1285. int snd_soc_dapm_enable_pin(struct snd_soc_codec *codec, char *pin)
  1286. {
  1287. return snd_soc_dapm_set_pin(codec, pin, 1);
  1288. }
  1289. EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
  1290. /**
  1291. * snd_soc_dapm_disable_pin - disable pin.
  1292. * @codec: SoC codec
  1293. * @pin: pin name
  1294. *
  1295. * Disables input/output pin and it's parents or children widgets.
  1296. * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
  1297. * do any widget power switching.
  1298. */
  1299. int snd_soc_dapm_disable_pin(struct snd_soc_codec *codec, char *pin)
  1300. {
  1301. return snd_soc_dapm_set_pin(codec, pin, 0);
  1302. }
  1303. EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
  1304. /**
  1305. * snd_soc_dapm_get_pin_status - get audio pin status
  1306. * @codec: audio codec
  1307. * @pin: audio signal pin endpoint (or start point)
  1308. *
  1309. * Get audio pin status - connected or disconnected.
  1310. *
  1311. * Returns 1 for connected otherwise 0.
  1312. */
  1313. int snd_soc_dapm_get_pin_status(struct snd_soc_codec *codec, char *pin)
  1314. {
  1315. struct snd_soc_dapm_widget *w;
  1316. list_for_each_entry(w, &codec->dapm_widgets, list) {
  1317. if (!strcmp(w->name, pin))
  1318. return w->connected;
  1319. }
  1320. return 0;
  1321. }
  1322. EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
  1323. /**
  1324. * snd_soc_dapm_free - free dapm resources
  1325. * @socdev: SoC device
  1326. *
  1327. * Free all dapm widgets and resources.
  1328. */
  1329. void snd_soc_dapm_free(struct snd_soc_device *socdev)
  1330. {
  1331. struct snd_soc_codec *codec = socdev->codec;
  1332. snd_soc_dapm_sys_remove(socdev->dev);
  1333. dapm_free_widgets(codec);
  1334. }
  1335. EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
  1336. /* Module information */
  1337. MODULE_AUTHOR("Liam Girdwood, liam.girdwood@wolfsonmicro.com, www.wolfsonmicro.com");
  1338. MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
  1339. MODULE_LICENSE("GPL");