soc-core.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562
  1. /*
  2. * soc-core.c -- ALSA SoC Audio Layer
  3. *
  4. * Copyright 2005 Wolfson Microelectronics PLC.
  5. * Copyright 2005 Openedhand Ltd.
  6. *
  7. * Author: Liam Girdwood <lrg@slimlogic.co.uk>
  8. * with code, comments and ideas from :-
  9. * Richard Purdie <richard@openedhand.com>
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2 of the License, or (at your
  14. * option) any later version.
  15. *
  16. * TODO:
  17. * o Add hw rules to enforce rates, etc.
  18. * o More testing with other codecs/machines.
  19. * o Add more codecs and platforms to ensure good API coverage.
  20. * o Support TDM on PCM and I2S
  21. */
  22. #include <linux/module.h>
  23. #include <linux/moduleparam.h>
  24. #include <linux/init.h>
  25. #include <linux/delay.h>
  26. #include <linux/pm.h>
  27. #include <linux/bitops.h>
  28. #include <linux/debugfs.h>
  29. #include <linux/platform_device.h>
  30. #include <sound/ac97_codec.h>
  31. #include <sound/core.h>
  32. #include <sound/pcm.h>
  33. #include <sound/pcm_params.h>
  34. #include <sound/soc.h>
  35. #include <sound/soc-dapm.h>
  36. #include <sound/initval.h>
  37. static DEFINE_MUTEX(pcm_mutex);
  38. static DEFINE_MUTEX(io_mutex);
  39. static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
  40. #ifdef CONFIG_DEBUG_FS
  41. static struct dentry *debugfs_root;
  42. #endif
  43. static DEFINE_MUTEX(client_mutex);
  44. static LIST_HEAD(card_list);
  45. static LIST_HEAD(dai_list);
  46. static LIST_HEAD(platform_list);
  47. static LIST_HEAD(codec_list);
  48. static int snd_soc_register_card(struct snd_soc_card *card);
  49. static int snd_soc_unregister_card(struct snd_soc_card *card);
  50. /*
  51. * This is a timeout to do a DAPM powerdown after a stream is closed().
  52. * It can be used to eliminate pops between different playback streams, e.g.
  53. * between two audio tracks.
  54. */
  55. static int pmdown_time = 5000;
  56. module_param(pmdown_time, int, 0);
  57. MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
  58. /*
  59. * This function forces any delayed work to be queued and run.
  60. */
  61. static int run_delayed_work(struct delayed_work *dwork)
  62. {
  63. int ret;
  64. /* cancel any work waiting to be queued. */
  65. ret = cancel_delayed_work(dwork);
  66. /* if there was any work waiting then we run it now and
  67. * wait for it's completion */
  68. if (ret) {
  69. schedule_delayed_work(dwork, 0);
  70. flush_scheduled_work();
  71. }
  72. return ret;
  73. }
  74. #ifdef CONFIG_SND_SOC_AC97_BUS
  75. /* unregister ac97 codec */
  76. static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
  77. {
  78. if (codec->ac97->dev.bus)
  79. device_unregister(&codec->ac97->dev);
  80. return 0;
  81. }
  82. /* stop no dev release warning */
  83. static void soc_ac97_device_release(struct device *dev){}
  84. /* register ac97 codec to bus */
  85. static int soc_ac97_dev_register(struct snd_soc_codec *codec)
  86. {
  87. int err;
  88. codec->ac97->dev.bus = &ac97_bus_type;
  89. codec->ac97->dev.parent = codec->card->dev;
  90. codec->ac97->dev.release = soc_ac97_device_release;
  91. dev_set_name(&codec->ac97->dev, "%d-%d:%s",
  92. codec->card->number, 0, codec->name);
  93. err = device_register(&codec->ac97->dev);
  94. if (err < 0) {
  95. snd_printk(KERN_ERR "Can't register ac97 bus\n");
  96. codec->ac97->dev.bus = NULL;
  97. return err;
  98. }
  99. return 0;
  100. }
  101. #endif
  102. static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
  103. {
  104. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  105. struct snd_soc_device *socdev = rtd->socdev;
  106. struct snd_soc_card *card = socdev->card;
  107. struct snd_soc_dai_link *machine = rtd->dai;
  108. struct snd_soc_dai *cpu_dai = machine->cpu_dai;
  109. struct snd_soc_dai *codec_dai = machine->codec_dai;
  110. int ret;
  111. if (codec_dai->symmetric_rates || cpu_dai->symmetric_rates ||
  112. machine->symmetric_rates) {
  113. dev_dbg(card->dev, "Symmetry forces %dHz rate\n",
  114. machine->rate);
  115. ret = snd_pcm_hw_constraint_minmax(substream->runtime,
  116. SNDRV_PCM_HW_PARAM_RATE,
  117. machine->rate,
  118. machine->rate);
  119. if (ret < 0) {
  120. dev_err(card->dev,
  121. "Unable to apply rate symmetry constraint: %d\n", ret);
  122. return ret;
  123. }
  124. }
  125. return 0;
  126. }
  127. /*
  128. * Called by ALSA when a PCM substream is opened, the runtime->hw record is
  129. * then initialized and any private data can be allocated. This also calls
  130. * startup for the cpu DAI, platform, machine and codec DAI.
  131. */
  132. static int soc_pcm_open(struct snd_pcm_substream *substream)
  133. {
  134. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  135. struct snd_soc_device *socdev = rtd->socdev;
  136. struct snd_soc_card *card = socdev->card;
  137. struct snd_pcm_runtime *runtime = substream->runtime;
  138. struct snd_soc_dai_link *machine = rtd->dai;
  139. struct snd_soc_platform *platform = card->platform;
  140. struct snd_soc_dai *cpu_dai = machine->cpu_dai;
  141. struct snd_soc_dai *codec_dai = machine->codec_dai;
  142. int ret = 0;
  143. mutex_lock(&pcm_mutex);
  144. /* startup the audio subsystem */
  145. if (cpu_dai->ops->startup) {
  146. ret = cpu_dai->ops->startup(substream, cpu_dai);
  147. if (ret < 0) {
  148. printk(KERN_ERR "asoc: can't open interface %s\n",
  149. cpu_dai->name);
  150. goto out;
  151. }
  152. }
  153. if (platform->pcm_ops->open) {
  154. ret = platform->pcm_ops->open(substream);
  155. if (ret < 0) {
  156. printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
  157. goto platform_err;
  158. }
  159. }
  160. if (codec_dai->ops->startup) {
  161. ret = codec_dai->ops->startup(substream, codec_dai);
  162. if (ret < 0) {
  163. printk(KERN_ERR "asoc: can't open codec %s\n",
  164. codec_dai->name);
  165. goto codec_dai_err;
  166. }
  167. }
  168. if (machine->ops && machine->ops->startup) {
  169. ret = machine->ops->startup(substream);
  170. if (ret < 0) {
  171. printk(KERN_ERR "asoc: %s startup failed\n", machine->name);
  172. goto machine_err;
  173. }
  174. }
  175. /* Check that the codec and cpu DAI's are compatible */
  176. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  177. runtime->hw.rate_min =
  178. max(codec_dai->playback.rate_min,
  179. cpu_dai->playback.rate_min);
  180. runtime->hw.rate_max =
  181. min(codec_dai->playback.rate_max,
  182. cpu_dai->playback.rate_max);
  183. runtime->hw.channels_min =
  184. max(codec_dai->playback.channels_min,
  185. cpu_dai->playback.channels_min);
  186. runtime->hw.channels_max =
  187. min(codec_dai->playback.channels_max,
  188. cpu_dai->playback.channels_max);
  189. runtime->hw.formats =
  190. codec_dai->playback.formats & cpu_dai->playback.formats;
  191. runtime->hw.rates =
  192. codec_dai->playback.rates & cpu_dai->playback.rates;
  193. } else {
  194. runtime->hw.rate_min =
  195. max(codec_dai->capture.rate_min,
  196. cpu_dai->capture.rate_min);
  197. runtime->hw.rate_max =
  198. min(codec_dai->capture.rate_max,
  199. cpu_dai->capture.rate_max);
  200. runtime->hw.channels_min =
  201. max(codec_dai->capture.channels_min,
  202. cpu_dai->capture.channels_min);
  203. runtime->hw.channels_max =
  204. min(codec_dai->capture.channels_max,
  205. cpu_dai->capture.channels_max);
  206. runtime->hw.formats =
  207. codec_dai->capture.formats & cpu_dai->capture.formats;
  208. runtime->hw.rates =
  209. codec_dai->capture.rates & cpu_dai->capture.rates;
  210. }
  211. snd_pcm_limit_hw_rates(runtime);
  212. if (!runtime->hw.rates) {
  213. printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
  214. codec_dai->name, cpu_dai->name);
  215. goto machine_err;
  216. }
  217. if (!runtime->hw.formats) {
  218. printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
  219. codec_dai->name, cpu_dai->name);
  220. goto machine_err;
  221. }
  222. if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
  223. printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
  224. codec_dai->name, cpu_dai->name);
  225. goto machine_err;
  226. }
  227. /* Symmetry only applies if we've already got an active stream. */
  228. if (cpu_dai->active || codec_dai->active) {
  229. ret = soc_pcm_apply_symmetry(substream);
  230. if (ret != 0)
  231. goto machine_err;
  232. }
  233. pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name);
  234. pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
  235. pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
  236. runtime->hw.channels_max);
  237. pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
  238. runtime->hw.rate_max);
  239. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  240. cpu_dai->playback.active = codec_dai->playback.active = 1;
  241. else
  242. cpu_dai->capture.active = codec_dai->capture.active = 1;
  243. cpu_dai->active = codec_dai->active = 1;
  244. cpu_dai->runtime = runtime;
  245. card->codec->active++;
  246. mutex_unlock(&pcm_mutex);
  247. return 0;
  248. machine_err:
  249. if (machine->ops && machine->ops->shutdown)
  250. machine->ops->shutdown(substream);
  251. codec_dai_err:
  252. if (platform->pcm_ops->close)
  253. platform->pcm_ops->close(substream);
  254. platform_err:
  255. if (cpu_dai->ops->shutdown)
  256. cpu_dai->ops->shutdown(substream, cpu_dai);
  257. out:
  258. mutex_unlock(&pcm_mutex);
  259. return ret;
  260. }
  261. /*
  262. * Power down the audio subsystem pmdown_time msecs after close is called.
  263. * This is to ensure there are no pops or clicks in between any music tracks
  264. * due to DAPM power cycling.
  265. */
  266. static void close_delayed_work(struct work_struct *work)
  267. {
  268. struct snd_soc_card *card = container_of(work, struct snd_soc_card,
  269. delayed_work.work);
  270. struct snd_soc_codec *codec = card->codec;
  271. struct snd_soc_dai *codec_dai;
  272. int i;
  273. mutex_lock(&pcm_mutex);
  274. for (i = 0; i < codec->num_dai; i++) {
  275. codec_dai = &codec->dai[i];
  276. pr_debug("pop wq checking: %s status: %s waiting: %s\n",
  277. codec_dai->playback.stream_name,
  278. codec_dai->playback.active ? "active" : "inactive",
  279. codec_dai->pop_wait ? "yes" : "no");
  280. /* are we waiting on this codec DAI stream */
  281. if (codec_dai->pop_wait == 1) {
  282. codec_dai->pop_wait = 0;
  283. snd_soc_dapm_stream_event(codec,
  284. codec_dai->playback.stream_name,
  285. SND_SOC_DAPM_STREAM_STOP);
  286. }
  287. }
  288. mutex_unlock(&pcm_mutex);
  289. }
  290. /*
  291. * Called by ALSA when a PCM substream is closed. Private data can be
  292. * freed here. The cpu DAI, codec DAI, machine and platform are also
  293. * shutdown.
  294. */
  295. static int soc_codec_close(struct snd_pcm_substream *substream)
  296. {
  297. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  298. struct snd_soc_device *socdev = rtd->socdev;
  299. struct snd_soc_card *card = socdev->card;
  300. struct snd_soc_dai_link *machine = rtd->dai;
  301. struct snd_soc_platform *platform = card->platform;
  302. struct snd_soc_dai *cpu_dai = machine->cpu_dai;
  303. struct snd_soc_dai *codec_dai = machine->codec_dai;
  304. struct snd_soc_codec *codec = card->codec;
  305. mutex_lock(&pcm_mutex);
  306. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  307. cpu_dai->playback.active = codec_dai->playback.active = 0;
  308. else
  309. cpu_dai->capture.active = codec_dai->capture.active = 0;
  310. if (codec_dai->playback.active == 0 &&
  311. codec_dai->capture.active == 0) {
  312. cpu_dai->active = codec_dai->active = 0;
  313. }
  314. codec->active--;
  315. /* Muting the DAC suppresses artifacts caused during digital
  316. * shutdown, for example from stopping clocks.
  317. */
  318. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  319. snd_soc_dai_digital_mute(codec_dai, 1);
  320. if (cpu_dai->ops->shutdown)
  321. cpu_dai->ops->shutdown(substream, cpu_dai);
  322. if (codec_dai->ops->shutdown)
  323. codec_dai->ops->shutdown(substream, codec_dai);
  324. if (machine->ops && machine->ops->shutdown)
  325. machine->ops->shutdown(substream);
  326. if (platform->pcm_ops->close)
  327. platform->pcm_ops->close(substream);
  328. cpu_dai->runtime = NULL;
  329. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  330. /* start delayed pop wq here for playback streams */
  331. codec_dai->pop_wait = 1;
  332. schedule_delayed_work(&card->delayed_work,
  333. msecs_to_jiffies(pmdown_time));
  334. } else {
  335. /* capture streams can be powered down now */
  336. snd_soc_dapm_stream_event(codec,
  337. codec_dai->capture.stream_name,
  338. SND_SOC_DAPM_STREAM_STOP);
  339. }
  340. mutex_unlock(&pcm_mutex);
  341. return 0;
  342. }
  343. /*
  344. * Called by ALSA when the PCM substream is prepared, can set format, sample
  345. * rate, etc. This function is non atomic and can be called multiple times,
  346. * it can refer to the runtime info.
  347. */
  348. static int soc_pcm_prepare(struct snd_pcm_substream *substream)
  349. {
  350. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  351. struct snd_soc_device *socdev = rtd->socdev;
  352. struct snd_soc_card *card = socdev->card;
  353. struct snd_soc_dai_link *machine = rtd->dai;
  354. struct snd_soc_platform *platform = card->platform;
  355. struct snd_soc_dai *cpu_dai = machine->cpu_dai;
  356. struct snd_soc_dai *codec_dai = machine->codec_dai;
  357. struct snd_soc_codec *codec = card->codec;
  358. int ret = 0;
  359. mutex_lock(&pcm_mutex);
  360. if (machine->ops && machine->ops->prepare) {
  361. ret = machine->ops->prepare(substream);
  362. if (ret < 0) {
  363. printk(KERN_ERR "asoc: machine prepare error\n");
  364. goto out;
  365. }
  366. }
  367. if (platform->pcm_ops->prepare) {
  368. ret = platform->pcm_ops->prepare(substream);
  369. if (ret < 0) {
  370. printk(KERN_ERR "asoc: platform prepare error\n");
  371. goto out;
  372. }
  373. }
  374. if (codec_dai->ops->prepare) {
  375. ret = codec_dai->ops->prepare(substream, codec_dai);
  376. if (ret < 0) {
  377. printk(KERN_ERR "asoc: codec DAI prepare error\n");
  378. goto out;
  379. }
  380. }
  381. if (cpu_dai->ops->prepare) {
  382. ret = cpu_dai->ops->prepare(substream, cpu_dai);
  383. if (ret < 0) {
  384. printk(KERN_ERR "asoc: cpu DAI prepare error\n");
  385. goto out;
  386. }
  387. }
  388. /* cancel any delayed stream shutdown that is pending */
  389. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
  390. codec_dai->pop_wait) {
  391. codec_dai->pop_wait = 0;
  392. cancel_delayed_work(&card->delayed_work);
  393. }
  394. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  395. snd_soc_dapm_stream_event(codec,
  396. codec_dai->playback.stream_name,
  397. SND_SOC_DAPM_STREAM_START);
  398. else
  399. snd_soc_dapm_stream_event(codec,
  400. codec_dai->capture.stream_name,
  401. SND_SOC_DAPM_STREAM_START);
  402. snd_soc_dai_digital_mute(codec_dai, 0);
  403. out:
  404. mutex_unlock(&pcm_mutex);
  405. return ret;
  406. }
  407. /*
  408. * Called by ALSA when the hardware params are set by application. This
  409. * function can also be called multiple times and can allocate buffers
  410. * (using snd_pcm_lib_* ). It's non-atomic.
  411. */
  412. static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
  413. struct snd_pcm_hw_params *params)
  414. {
  415. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  416. struct snd_soc_device *socdev = rtd->socdev;
  417. struct snd_soc_dai_link *machine = rtd->dai;
  418. struct snd_soc_card *card = socdev->card;
  419. struct snd_soc_platform *platform = card->platform;
  420. struct snd_soc_dai *cpu_dai = machine->cpu_dai;
  421. struct snd_soc_dai *codec_dai = machine->codec_dai;
  422. int ret = 0;
  423. mutex_lock(&pcm_mutex);
  424. if (machine->ops && machine->ops->hw_params) {
  425. ret = machine->ops->hw_params(substream, params);
  426. if (ret < 0) {
  427. printk(KERN_ERR "asoc: machine hw_params failed\n");
  428. goto out;
  429. }
  430. }
  431. if (codec_dai->ops->hw_params) {
  432. ret = codec_dai->ops->hw_params(substream, params, codec_dai);
  433. if (ret < 0) {
  434. printk(KERN_ERR "asoc: can't set codec %s hw params\n",
  435. codec_dai->name);
  436. goto codec_err;
  437. }
  438. }
  439. if (cpu_dai->ops->hw_params) {
  440. ret = cpu_dai->ops->hw_params(substream, params, cpu_dai);
  441. if (ret < 0) {
  442. printk(KERN_ERR "asoc: interface %s hw params failed\n",
  443. cpu_dai->name);
  444. goto interface_err;
  445. }
  446. }
  447. if (platform->pcm_ops->hw_params) {
  448. ret = platform->pcm_ops->hw_params(substream, params);
  449. if (ret < 0) {
  450. printk(KERN_ERR "asoc: platform %s hw params failed\n",
  451. platform->name);
  452. goto platform_err;
  453. }
  454. }
  455. machine->rate = params_rate(params);
  456. out:
  457. mutex_unlock(&pcm_mutex);
  458. return ret;
  459. platform_err:
  460. if (cpu_dai->ops->hw_free)
  461. cpu_dai->ops->hw_free(substream, cpu_dai);
  462. interface_err:
  463. if (codec_dai->ops->hw_free)
  464. codec_dai->ops->hw_free(substream, codec_dai);
  465. codec_err:
  466. if (machine->ops && machine->ops->hw_free)
  467. machine->ops->hw_free(substream);
  468. mutex_unlock(&pcm_mutex);
  469. return ret;
  470. }
  471. /*
  472. * Free's resources allocated by hw_params, can be called multiple times
  473. */
  474. static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
  475. {
  476. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  477. struct snd_soc_device *socdev = rtd->socdev;
  478. struct snd_soc_dai_link *machine = rtd->dai;
  479. struct snd_soc_card *card = socdev->card;
  480. struct snd_soc_platform *platform = card->platform;
  481. struct snd_soc_dai *cpu_dai = machine->cpu_dai;
  482. struct snd_soc_dai *codec_dai = machine->codec_dai;
  483. struct snd_soc_codec *codec = card->codec;
  484. mutex_lock(&pcm_mutex);
  485. /* apply codec digital mute */
  486. if (!codec->active)
  487. snd_soc_dai_digital_mute(codec_dai, 1);
  488. /* free any machine hw params */
  489. if (machine->ops && machine->ops->hw_free)
  490. machine->ops->hw_free(substream);
  491. /* free any DMA resources */
  492. if (platform->pcm_ops->hw_free)
  493. platform->pcm_ops->hw_free(substream);
  494. /* now free hw params for the DAI's */
  495. if (codec_dai->ops->hw_free)
  496. codec_dai->ops->hw_free(substream, codec_dai);
  497. if (cpu_dai->ops->hw_free)
  498. cpu_dai->ops->hw_free(substream, cpu_dai);
  499. mutex_unlock(&pcm_mutex);
  500. return 0;
  501. }
  502. static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  503. {
  504. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  505. struct snd_soc_device *socdev = rtd->socdev;
  506. struct snd_soc_card *card= socdev->card;
  507. struct snd_soc_dai_link *machine = rtd->dai;
  508. struct snd_soc_platform *platform = card->platform;
  509. struct snd_soc_dai *cpu_dai = machine->cpu_dai;
  510. struct snd_soc_dai *codec_dai = machine->codec_dai;
  511. int ret;
  512. if (codec_dai->ops->trigger) {
  513. ret = codec_dai->ops->trigger(substream, cmd, codec_dai);
  514. if (ret < 0)
  515. return ret;
  516. }
  517. if (platform->pcm_ops->trigger) {
  518. ret = platform->pcm_ops->trigger(substream, cmd);
  519. if (ret < 0)
  520. return ret;
  521. }
  522. if (cpu_dai->ops->trigger) {
  523. ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai);
  524. if (ret < 0)
  525. return ret;
  526. }
  527. return 0;
  528. }
  529. /* ASoC PCM operations */
  530. static struct snd_pcm_ops soc_pcm_ops = {
  531. .open = soc_pcm_open,
  532. .close = soc_codec_close,
  533. .hw_params = soc_pcm_hw_params,
  534. .hw_free = soc_pcm_hw_free,
  535. .prepare = soc_pcm_prepare,
  536. .trigger = soc_pcm_trigger,
  537. };
  538. #ifdef CONFIG_PM
  539. /* powers down audio subsystem for suspend */
  540. static int soc_suspend(struct device *dev)
  541. {
  542. struct platform_device *pdev = to_platform_device(dev);
  543. struct snd_soc_device *socdev = platform_get_drvdata(pdev);
  544. struct snd_soc_card *card = socdev->card;
  545. struct snd_soc_platform *platform = card->platform;
  546. struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
  547. struct snd_soc_codec *codec = card->codec;
  548. int i;
  549. /* If the initialization of this soc device failed, there is no codec
  550. * associated with it. Just bail out in this case.
  551. */
  552. if (!codec)
  553. return 0;
  554. /* Due to the resume being scheduled into a workqueue we could
  555. * suspend before that's finished - wait for it to complete.
  556. */
  557. snd_power_lock(codec->card);
  558. snd_power_wait(codec->card, SNDRV_CTL_POWER_D0);
  559. snd_power_unlock(codec->card);
  560. /* we're going to block userspace touching us until resume completes */
  561. snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot);
  562. /* mute any active DAC's */
  563. for (i = 0; i < card->num_links; i++) {
  564. struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
  565. if (dai->ops->digital_mute && dai->playback.active)
  566. dai->ops->digital_mute(dai, 1);
  567. }
  568. /* suspend all pcms */
  569. for (i = 0; i < card->num_links; i++)
  570. snd_pcm_suspend_all(card->dai_link[i].pcm);
  571. if (card->suspend_pre)
  572. card->suspend_pre(pdev, PMSG_SUSPEND);
  573. for (i = 0; i < card->num_links; i++) {
  574. struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
  575. if (cpu_dai->suspend && !cpu_dai->ac97_control)
  576. cpu_dai->suspend(cpu_dai);
  577. if (platform->suspend)
  578. platform->suspend(cpu_dai);
  579. }
  580. /* close any waiting streams and save state */
  581. run_delayed_work(&card->delayed_work);
  582. codec->suspend_bias_level = codec->bias_level;
  583. for (i = 0; i < codec->num_dai; i++) {
  584. char *stream = codec->dai[i].playback.stream_name;
  585. if (stream != NULL)
  586. snd_soc_dapm_stream_event(codec, stream,
  587. SND_SOC_DAPM_STREAM_SUSPEND);
  588. stream = codec->dai[i].capture.stream_name;
  589. if (stream != NULL)
  590. snd_soc_dapm_stream_event(codec, stream,
  591. SND_SOC_DAPM_STREAM_SUSPEND);
  592. }
  593. if (codec_dev->suspend)
  594. codec_dev->suspend(pdev, PMSG_SUSPEND);
  595. for (i = 0; i < card->num_links; i++) {
  596. struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
  597. if (cpu_dai->suspend && cpu_dai->ac97_control)
  598. cpu_dai->suspend(cpu_dai);
  599. }
  600. if (card->suspend_post)
  601. card->suspend_post(pdev, PMSG_SUSPEND);
  602. return 0;
  603. }
  604. /* deferred resume work, so resume can complete before we finished
  605. * setting our codec back up, which can be very slow on I2C
  606. */
  607. static void soc_resume_deferred(struct work_struct *work)
  608. {
  609. struct snd_soc_card *card = container_of(work,
  610. struct snd_soc_card,
  611. deferred_resume_work);
  612. struct snd_soc_device *socdev = card->socdev;
  613. struct snd_soc_platform *platform = card->platform;
  614. struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
  615. struct snd_soc_codec *codec = card->codec;
  616. struct platform_device *pdev = to_platform_device(socdev->dev);
  617. int i;
  618. /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
  619. * so userspace apps are blocked from touching us
  620. */
  621. dev_dbg(socdev->dev, "starting resume work\n");
  622. if (card->resume_pre)
  623. card->resume_pre(pdev);
  624. for (i = 0; i < card->num_links; i++) {
  625. struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
  626. if (cpu_dai->resume && cpu_dai->ac97_control)
  627. cpu_dai->resume(cpu_dai);
  628. }
  629. if (codec_dev->resume)
  630. codec_dev->resume(pdev);
  631. for (i = 0; i < codec->num_dai; i++) {
  632. char *stream = codec->dai[i].playback.stream_name;
  633. if (stream != NULL)
  634. snd_soc_dapm_stream_event(codec, stream,
  635. SND_SOC_DAPM_STREAM_RESUME);
  636. stream = codec->dai[i].capture.stream_name;
  637. if (stream != NULL)
  638. snd_soc_dapm_stream_event(codec, stream,
  639. SND_SOC_DAPM_STREAM_RESUME);
  640. }
  641. /* unmute any active DACs */
  642. for (i = 0; i < card->num_links; i++) {
  643. struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
  644. if (dai->ops->digital_mute && dai->playback.active)
  645. dai->ops->digital_mute(dai, 0);
  646. }
  647. for (i = 0; i < card->num_links; i++) {
  648. struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
  649. if (cpu_dai->resume && !cpu_dai->ac97_control)
  650. cpu_dai->resume(cpu_dai);
  651. if (platform->resume)
  652. platform->resume(cpu_dai);
  653. }
  654. if (card->resume_post)
  655. card->resume_post(pdev);
  656. dev_dbg(socdev->dev, "resume work completed\n");
  657. /* userspace can access us now we are back as we were before */
  658. snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
  659. }
  660. /* powers up audio subsystem after a suspend */
  661. static int soc_resume(struct device *dev)
  662. {
  663. struct platform_device *pdev = to_platform_device(dev);
  664. struct snd_soc_device *socdev = platform_get_drvdata(pdev);
  665. struct snd_soc_card *card = socdev->card;
  666. struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
  667. /* AC97 devices might have other drivers hanging off them so
  668. * need to resume immediately. Other drivers don't have that
  669. * problem and may take a substantial amount of time to resume
  670. * due to I/O costs and anti-pop so handle them out of line.
  671. */
  672. if (cpu_dai->ac97_control) {
  673. dev_dbg(socdev->dev, "Resuming AC97 immediately\n");
  674. soc_resume_deferred(&card->deferred_resume_work);
  675. } else {
  676. dev_dbg(socdev->dev, "Scheduling resume work\n");
  677. if (!schedule_work(&card->deferred_resume_work))
  678. dev_err(socdev->dev, "resume work item may be lost\n");
  679. }
  680. return 0;
  681. }
  682. /**
  683. * snd_soc_suspend_device: Notify core of device suspend
  684. *
  685. * @dev: Device being suspended.
  686. *
  687. * In order to ensure that the entire audio subsystem is suspended in a
  688. * coordinated fashion ASoC devices should suspend themselves when
  689. * called by ASoC. When the standard kernel suspend process asks the
  690. * device to suspend it should call this function to initiate a suspend
  691. * of the entire ASoC card.
  692. *
  693. * \note Currently this function is stubbed out.
  694. */
  695. int snd_soc_suspend_device(struct device *dev)
  696. {
  697. return 0;
  698. }
  699. EXPORT_SYMBOL_GPL(snd_soc_suspend_device);
  700. /**
  701. * snd_soc_resume_device: Notify core of device resume
  702. *
  703. * @dev: Device being resumed.
  704. *
  705. * In order to ensure that the entire audio subsystem is resumed in a
  706. * coordinated fashion ASoC devices should resume themselves when called
  707. * by ASoC. When the standard kernel resume process asks the device
  708. * to resume it should call this function. Once all the components of
  709. * the card have notified that they are ready to be resumed the card
  710. * will be resumed.
  711. *
  712. * \note Currently this function is stubbed out.
  713. */
  714. int snd_soc_resume_device(struct device *dev)
  715. {
  716. return 0;
  717. }
  718. EXPORT_SYMBOL_GPL(snd_soc_resume_device);
  719. #else
  720. #define soc_suspend NULL
  721. #define soc_resume NULL
  722. #endif
  723. static void snd_soc_instantiate_card(struct snd_soc_card *card)
  724. {
  725. struct platform_device *pdev = container_of(card->dev,
  726. struct platform_device,
  727. dev);
  728. struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
  729. struct snd_soc_platform *platform;
  730. struct snd_soc_dai *dai;
  731. int i, found, ret, ac97;
  732. if (card->instantiated)
  733. return;
  734. found = 0;
  735. list_for_each_entry(platform, &platform_list, list)
  736. if (card->platform == platform) {
  737. found = 1;
  738. break;
  739. }
  740. if (!found) {
  741. dev_dbg(card->dev, "Platform %s not registered\n",
  742. card->platform->name);
  743. return;
  744. }
  745. ac97 = 0;
  746. for (i = 0; i < card->num_links; i++) {
  747. found = 0;
  748. list_for_each_entry(dai, &dai_list, list)
  749. if (card->dai_link[i].cpu_dai == dai) {
  750. found = 1;
  751. break;
  752. }
  753. if (!found) {
  754. dev_dbg(card->dev, "DAI %s not registered\n",
  755. card->dai_link[i].cpu_dai->name);
  756. return;
  757. }
  758. if (card->dai_link[i].cpu_dai->ac97_control)
  759. ac97 = 1;
  760. }
  761. /* If we have AC97 in the system then don't wait for the
  762. * codec. This will need revisiting if we have to handle
  763. * systems with mixed AC97 and non-AC97 parts. Only check for
  764. * DAIs currently; we can't do this per link since some AC97
  765. * codecs have non-AC97 DAIs.
  766. */
  767. if (!ac97)
  768. for (i = 0; i < card->num_links; i++) {
  769. found = 0;
  770. list_for_each_entry(dai, &dai_list, list)
  771. if (card->dai_link[i].codec_dai == dai) {
  772. found = 1;
  773. break;
  774. }
  775. if (!found) {
  776. dev_dbg(card->dev, "DAI %s not registered\n",
  777. card->dai_link[i].codec_dai->name);
  778. return;
  779. }
  780. }
  781. /* Note that we do not current check for codec components */
  782. dev_dbg(card->dev, "All components present, instantiating\n");
  783. /* Found everything, bring it up */
  784. if (card->probe) {
  785. ret = card->probe(pdev);
  786. if (ret < 0)
  787. return;
  788. }
  789. for (i = 0; i < card->num_links; i++) {
  790. struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
  791. if (cpu_dai->probe) {
  792. ret = cpu_dai->probe(pdev, cpu_dai);
  793. if (ret < 0)
  794. goto cpu_dai_err;
  795. }
  796. }
  797. if (codec_dev->probe) {
  798. ret = codec_dev->probe(pdev);
  799. if (ret < 0)
  800. goto cpu_dai_err;
  801. }
  802. if (platform->probe) {
  803. ret = platform->probe(pdev);
  804. if (ret < 0)
  805. goto platform_err;
  806. }
  807. /* DAPM stream work */
  808. INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
  809. #ifdef CONFIG_PM
  810. /* deferred resume work */
  811. INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
  812. #endif
  813. card->instantiated = 1;
  814. return;
  815. platform_err:
  816. if (codec_dev->remove)
  817. codec_dev->remove(pdev);
  818. cpu_dai_err:
  819. for (i--; i >= 0; i--) {
  820. struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
  821. if (cpu_dai->remove)
  822. cpu_dai->remove(pdev, cpu_dai);
  823. }
  824. if (card->remove)
  825. card->remove(pdev);
  826. }
  827. /*
  828. * Attempt to initialise any uninitalised cards. Must be called with
  829. * client_mutex.
  830. */
  831. static void snd_soc_instantiate_cards(void)
  832. {
  833. struct snd_soc_card *card;
  834. list_for_each_entry(card, &card_list, list)
  835. snd_soc_instantiate_card(card);
  836. }
  837. /* probes a new socdev */
  838. static int soc_probe(struct platform_device *pdev)
  839. {
  840. int ret = 0;
  841. struct snd_soc_device *socdev = platform_get_drvdata(pdev);
  842. struct snd_soc_card *card = socdev->card;
  843. /* Bodge while we push things out of socdev */
  844. card->socdev = socdev;
  845. /* Bodge while we unpick instantiation */
  846. card->dev = &pdev->dev;
  847. ret = snd_soc_register_card(card);
  848. if (ret != 0) {
  849. dev_err(&pdev->dev, "Failed to register card\n");
  850. return ret;
  851. }
  852. return 0;
  853. }
  854. /* removes a socdev */
  855. static int soc_remove(struct platform_device *pdev)
  856. {
  857. int i;
  858. struct snd_soc_device *socdev = platform_get_drvdata(pdev);
  859. struct snd_soc_card *card = socdev->card;
  860. struct snd_soc_platform *platform = card->platform;
  861. struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
  862. if (!card->instantiated)
  863. return 0;
  864. run_delayed_work(&card->delayed_work);
  865. if (platform->remove)
  866. platform->remove(pdev);
  867. if (codec_dev->remove)
  868. codec_dev->remove(pdev);
  869. for (i = 0; i < card->num_links; i++) {
  870. struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
  871. if (cpu_dai->remove)
  872. cpu_dai->remove(pdev, cpu_dai);
  873. }
  874. if (card->remove)
  875. card->remove(pdev);
  876. snd_soc_unregister_card(card);
  877. return 0;
  878. }
  879. static int soc_poweroff(struct device *dev)
  880. {
  881. struct platform_device *pdev = to_platform_device(dev);
  882. struct snd_soc_device *socdev = platform_get_drvdata(pdev);
  883. struct snd_soc_card *card = socdev->card;
  884. if (!card->instantiated)
  885. return 0;
  886. /* Flush out pmdown_time work - we actually do want to run it
  887. * now, we're shutting down so no imminent restart. */
  888. run_delayed_work(&card->delayed_work);
  889. snd_soc_dapm_shutdown(socdev);
  890. return 0;
  891. }
  892. static struct dev_pm_ops soc_pm_ops = {
  893. .suspend = soc_suspend,
  894. .resume = soc_resume,
  895. .poweroff = soc_poweroff,
  896. };
  897. /* ASoC platform driver */
  898. static struct platform_driver soc_driver = {
  899. .driver = {
  900. .name = "soc-audio",
  901. .owner = THIS_MODULE,
  902. .pm = &soc_pm_ops,
  903. },
  904. .probe = soc_probe,
  905. .remove = soc_remove,
  906. };
  907. /* create a new pcm */
  908. static int soc_new_pcm(struct snd_soc_device *socdev,
  909. struct snd_soc_dai_link *dai_link, int num)
  910. {
  911. struct snd_soc_card *card = socdev->card;
  912. struct snd_soc_codec *codec = card->codec;
  913. struct snd_soc_platform *platform = card->platform;
  914. struct snd_soc_dai *codec_dai = dai_link->codec_dai;
  915. struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
  916. struct snd_soc_pcm_runtime *rtd;
  917. struct snd_pcm *pcm;
  918. char new_name[64];
  919. int ret = 0, playback = 0, capture = 0;
  920. rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
  921. if (rtd == NULL)
  922. return -ENOMEM;
  923. rtd->dai = dai_link;
  924. rtd->socdev = socdev;
  925. codec_dai->codec = card->codec;
  926. /* check client and interface hw capabilities */
  927. sprintf(new_name, "%s %s-%d", dai_link->stream_name, codec_dai->name,
  928. num);
  929. if (codec_dai->playback.channels_min)
  930. playback = 1;
  931. if (codec_dai->capture.channels_min)
  932. capture = 1;
  933. ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
  934. capture, &pcm);
  935. if (ret < 0) {
  936. printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
  937. codec->name);
  938. kfree(rtd);
  939. return ret;
  940. }
  941. dai_link->pcm = pcm;
  942. pcm->private_data = rtd;
  943. soc_pcm_ops.mmap = platform->pcm_ops->mmap;
  944. soc_pcm_ops.pointer = platform->pcm_ops->pointer;
  945. soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
  946. soc_pcm_ops.copy = platform->pcm_ops->copy;
  947. soc_pcm_ops.silence = platform->pcm_ops->silence;
  948. soc_pcm_ops.ack = platform->pcm_ops->ack;
  949. soc_pcm_ops.page = platform->pcm_ops->page;
  950. if (playback)
  951. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
  952. if (capture)
  953. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
  954. ret = platform->pcm_new(codec->card, codec_dai, pcm);
  955. if (ret < 0) {
  956. printk(KERN_ERR "asoc: platform pcm constructor failed\n");
  957. kfree(rtd);
  958. return ret;
  959. }
  960. pcm->private_free = platform->pcm_free;
  961. printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
  962. cpu_dai->name);
  963. return ret;
  964. }
  965. /**
  966. * snd_soc_codec_volatile_register: Report if a register is volatile.
  967. *
  968. * @codec: CODEC to query.
  969. * @reg: Register to query.
  970. *
  971. * Boolean function indiciating if a CODEC register is volatile.
  972. */
  973. int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
  974. {
  975. if (codec->volatile_register)
  976. return codec->volatile_register(reg);
  977. else
  978. return 0;
  979. }
  980. EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
  981. /* codec register dump */
  982. static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
  983. {
  984. int i, step = 1, count = 0;
  985. if (!codec->reg_cache_size)
  986. return 0;
  987. if (codec->reg_cache_step)
  988. step = codec->reg_cache_step;
  989. count += sprintf(buf, "%s registers\n", codec->name);
  990. for (i = 0; i < codec->reg_cache_size; i += step) {
  991. if (codec->readable_register && !codec->readable_register(i))
  992. continue;
  993. count += sprintf(buf + count, "%2x: ", i);
  994. if (count >= PAGE_SIZE - 1)
  995. break;
  996. if (codec->display_register)
  997. count += codec->display_register(codec, buf + count,
  998. PAGE_SIZE - count, i);
  999. else
  1000. count += snprintf(buf + count, PAGE_SIZE - count,
  1001. "%4x", codec->read(codec, i));
  1002. if (count >= PAGE_SIZE - 1)
  1003. break;
  1004. count += snprintf(buf + count, PAGE_SIZE - count, "\n");
  1005. if (count >= PAGE_SIZE - 1)
  1006. break;
  1007. }
  1008. /* Truncate count; min() would cause a warning */
  1009. if (count >= PAGE_SIZE)
  1010. count = PAGE_SIZE - 1;
  1011. return count;
  1012. }
  1013. static ssize_t codec_reg_show(struct device *dev,
  1014. struct device_attribute *attr, char *buf)
  1015. {
  1016. struct snd_soc_device *devdata = dev_get_drvdata(dev);
  1017. return soc_codec_reg_show(devdata->card->codec, buf);
  1018. }
  1019. static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
  1020. #ifdef CONFIG_DEBUG_FS
  1021. static int codec_reg_open_file(struct inode *inode, struct file *file)
  1022. {
  1023. file->private_data = inode->i_private;
  1024. return 0;
  1025. }
  1026. static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
  1027. size_t count, loff_t *ppos)
  1028. {
  1029. ssize_t ret;
  1030. struct snd_soc_codec *codec = file->private_data;
  1031. char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
  1032. if (!buf)
  1033. return -ENOMEM;
  1034. ret = soc_codec_reg_show(codec, buf);
  1035. if (ret >= 0)
  1036. ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
  1037. kfree(buf);
  1038. return ret;
  1039. }
  1040. static ssize_t codec_reg_write_file(struct file *file,
  1041. const char __user *user_buf, size_t count, loff_t *ppos)
  1042. {
  1043. char buf[32];
  1044. int buf_size;
  1045. char *start = buf;
  1046. unsigned long reg, value;
  1047. int step = 1;
  1048. struct snd_soc_codec *codec = file->private_data;
  1049. buf_size = min(count, (sizeof(buf)-1));
  1050. if (copy_from_user(buf, user_buf, buf_size))
  1051. return -EFAULT;
  1052. buf[buf_size] = 0;
  1053. if (codec->reg_cache_step)
  1054. step = codec->reg_cache_step;
  1055. while (*start == ' ')
  1056. start++;
  1057. reg = simple_strtoul(start, &start, 16);
  1058. if ((reg >= codec->reg_cache_size) || (reg % step))
  1059. return -EINVAL;
  1060. while (*start == ' ')
  1061. start++;
  1062. if (strict_strtoul(start, 16, &value))
  1063. return -EINVAL;
  1064. codec->write(codec, reg, value);
  1065. return buf_size;
  1066. }
  1067. static const struct file_operations codec_reg_fops = {
  1068. .open = codec_reg_open_file,
  1069. .read = codec_reg_read_file,
  1070. .write = codec_reg_write_file,
  1071. };
  1072. static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
  1073. {
  1074. codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
  1075. debugfs_root, codec,
  1076. &codec_reg_fops);
  1077. if (!codec->debugfs_reg)
  1078. printk(KERN_WARNING
  1079. "ASoC: Failed to create codec register debugfs file\n");
  1080. codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
  1081. debugfs_root,
  1082. &codec->pop_time);
  1083. if (!codec->debugfs_pop_time)
  1084. printk(KERN_WARNING
  1085. "Failed to create pop time debugfs file\n");
  1086. }
  1087. static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
  1088. {
  1089. debugfs_remove(codec->debugfs_pop_time);
  1090. debugfs_remove(codec->debugfs_reg);
  1091. }
  1092. #else
  1093. static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
  1094. {
  1095. }
  1096. static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
  1097. {
  1098. }
  1099. #endif
  1100. /**
  1101. * snd_soc_new_ac97_codec - initailise AC97 device
  1102. * @codec: audio codec
  1103. * @ops: AC97 bus operations
  1104. * @num: AC97 codec number
  1105. *
  1106. * Initialises AC97 codec resources for use by ad-hoc devices only.
  1107. */
  1108. int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
  1109. struct snd_ac97_bus_ops *ops, int num)
  1110. {
  1111. mutex_lock(&codec->mutex);
  1112. codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
  1113. if (codec->ac97 == NULL) {
  1114. mutex_unlock(&codec->mutex);
  1115. return -ENOMEM;
  1116. }
  1117. codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
  1118. if (codec->ac97->bus == NULL) {
  1119. kfree(codec->ac97);
  1120. codec->ac97 = NULL;
  1121. mutex_unlock(&codec->mutex);
  1122. return -ENOMEM;
  1123. }
  1124. codec->ac97->bus->ops = ops;
  1125. codec->ac97->num = num;
  1126. mutex_unlock(&codec->mutex);
  1127. return 0;
  1128. }
  1129. EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
  1130. /**
  1131. * snd_soc_free_ac97_codec - free AC97 codec device
  1132. * @codec: audio codec
  1133. *
  1134. * Frees AC97 codec device resources.
  1135. */
  1136. void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
  1137. {
  1138. mutex_lock(&codec->mutex);
  1139. kfree(codec->ac97->bus);
  1140. kfree(codec->ac97);
  1141. codec->ac97 = NULL;
  1142. mutex_unlock(&codec->mutex);
  1143. }
  1144. EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
  1145. /**
  1146. * snd_soc_update_bits - update codec register bits
  1147. * @codec: audio codec
  1148. * @reg: codec register
  1149. * @mask: register mask
  1150. * @value: new value
  1151. *
  1152. * Writes new register value.
  1153. *
  1154. * Returns 1 for change else 0.
  1155. */
  1156. int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
  1157. unsigned int mask, unsigned int value)
  1158. {
  1159. int change;
  1160. unsigned int old, new;
  1161. mutex_lock(&io_mutex);
  1162. old = snd_soc_read(codec, reg);
  1163. new = (old & ~mask) | value;
  1164. change = old != new;
  1165. if (change)
  1166. snd_soc_write(codec, reg, new);
  1167. mutex_unlock(&io_mutex);
  1168. return change;
  1169. }
  1170. EXPORT_SYMBOL_GPL(snd_soc_update_bits);
  1171. /**
  1172. * snd_soc_test_bits - test register for change
  1173. * @codec: audio codec
  1174. * @reg: codec register
  1175. * @mask: register mask
  1176. * @value: new value
  1177. *
  1178. * Tests a register with a new value and checks if the new value is
  1179. * different from the old value.
  1180. *
  1181. * Returns 1 for change else 0.
  1182. */
  1183. int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
  1184. unsigned int mask, unsigned int value)
  1185. {
  1186. int change;
  1187. unsigned int old, new;
  1188. mutex_lock(&io_mutex);
  1189. old = snd_soc_read(codec, reg);
  1190. new = (old & ~mask) | value;
  1191. change = old != new;
  1192. mutex_unlock(&io_mutex);
  1193. return change;
  1194. }
  1195. EXPORT_SYMBOL_GPL(snd_soc_test_bits);
  1196. /**
  1197. * snd_soc_new_pcms - create new sound card and pcms
  1198. * @socdev: the SoC audio device
  1199. * @idx: ALSA card index
  1200. * @xid: card identification
  1201. *
  1202. * Create a new sound card based upon the codec and interface pcms.
  1203. *
  1204. * Returns 0 for success, else error.
  1205. */
  1206. int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
  1207. {
  1208. struct snd_soc_card *card = socdev->card;
  1209. struct snd_soc_codec *codec = card->codec;
  1210. int ret, i;
  1211. mutex_lock(&codec->mutex);
  1212. /* register a sound card */
  1213. ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
  1214. if (ret < 0) {
  1215. printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
  1216. codec->name);
  1217. mutex_unlock(&codec->mutex);
  1218. return ret;
  1219. }
  1220. codec->socdev = socdev;
  1221. codec->card->dev = socdev->dev;
  1222. codec->card->private_data = codec;
  1223. strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
  1224. /* create the pcms */
  1225. for (i = 0; i < card->num_links; i++) {
  1226. ret = soc_new_pcm(socdev, &card->dai_link[i], i);
  1227. if (ret < 0) {
  1228. printk(KERN_ERR "asoc: can't create pcm %s\n",
  1229. card->dai_link[i].stream_name);
  1230. mutex_unlock(&codec->mutex);
  1231. return ret;
  1232. }
  1233. }
  1234. mutex_unlock(&codec->mutex);
  1235. return ret;
  1236. }
  1237. EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
  1238. /**
  1239. * snd_soc_init_card - register sound card
  1240. * @socdev: the SoC audio device
  1241. *
  1242. * Register a SoC sound card. Also registers an AC97 device if the
  1243. * codec is AC97 for ad hoc devices.
  1244. *
  1245. * Returns 0 for success, else error.
  1246. */
  1247. int snd_soc_init_card(struct snd_soc_device *socdev)
  1248. {
  1249. struct snd_soc_card *card = socdev->card;
  1250. struct snd_soc_codec *codec = card->codec;
  1251. int ret = 0, i, ac97 = 0, err = 0;
  1252. for (i = 0; i < card->num_links; i++) {
  1253. if (card->dai_link[i].init) {
  1254. err = card->dai_link[i].init(codec);
  1255. if (err < 0) {
  1256. printk(KERN_ERR "asoc: failed to init %s\n",
  1257. card->dai_link[i].stream_name);
  1258. continue;
  1259. }
  1260. }
  1261. if (card->dai_link[i].codec_dai->ac97_control) {
  1262. ac97 = 1;
  1263. snd_ac97_dev_add_pdata(codec->ac97,
  1264. card->dai_link[i].cpu_dai->ac97_pdata);
  1265. }
  1266. }
  1267. snprintf(codec->card->shortname, sizeof(codec->card->shortname),
  1268. "%s", card->name);
  1269. snprintf(codec->card->longname, sizeof(codec->card->longname),
  1270. "%s (%s)", card->name, codec->name);
  1271. /* Make sure all DAPM widgets are instantiated */
  1272. snd_soc_dapm_new_widgets(codec);
  1273. ret = snd_card_register(codec->card);
  1274. if (ret < 0) {
  1275. printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
  1276. codec->name);
  1277. goto out;
  1278. }
  1279. mutex_lock(&codec->mutex);
  1280. #ifdef CONFIG_SND_SOC_AC97_BUS
  1281. /* Only instantiate AC97 if not already done by the adaptor
  1282. * for the generic AC97 subsystem.
  1283. */
  1284. if (ac97 && strcmp(codec->name, "AC97") != 0) {
  1285. ret = soc_ac97_dev_register(codec);
  1286. if (ret < 0) {
  1287. printk(KERN_ERR "asoc: AC97 device register failed\n");
  1288. snd_card_free(codec->card);
  1289. mutex_unlock(&codec->mutex);
  1290. goto out;
  1291. }
  1292. }
  1293. #endif
  1294. err = snd_soc_dapm_sys_add(socdev->dev);
  1295. if (err < 0)
  1296. printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
  1297. err = device_create_file(socdev->dev, &dev_attr_codec_reg);
  1298. if (err < 0)
  1299. printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
  1300. soc_init_codec_debugfs(codec);
  1301. mutex_unlock(&codec->mutex);
  1302. out:
  1303. return ret;
  1304. }
  1305. EXPORT_SYMBOL_GPL(snd_soc_init_card);
  1306. /**
  1307. * snd_soc_free_pcms - free sound card and pcms
  1308. * @socdev: the SoC audio device
  1309. *
  1310. * Frees sound card and pcms associated with the socdev.
  1311. * Also unregister the codec if it is an AC97 device.
  1312. */
  1313. void snd_soc_free_pcms(struct snd_soc_device *socdev)
  1314. {
  1315. struct snd_soc_codec *codec = socdev->card->codec;
  1316. #ifdef CONFIG_SND_SOC_AC97_BUS
  1317. struct snd_soc_dai *codec_dai;
  1318. int i;
  1319. #endif
  1320. mutex_lock(&codec->mutex);
  1321. soc_cleanup_codec_debugfs(codec);
  1322. #ifdef CONFIG_SND_SOC_AC97_BUS
  1323. for (i = 0; i < codec->num_dai; i++) {
  1324. codec_dai = &codec->dai[i];
  1325. if (codec_dai->ac97_control && codec->ac97 &&
  1326. strcmp(codec->name, "AC97") != 0) {
  1327. soc_ac97_dev_unregister(codec);
  1328. goto free_card;
  1329. }
  1330. }
  1331. free_card:
  1332. #endif
  1333. if (codec->card)
  1334. snd_card_free(codec->card);
  1335. device_remove_file(socdev->dev, &dev_attr_codec_reg);
  1336. mutex_unlock(&codec->mutex);
  1337. }
  1338. EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
  1339. /**
  1340. * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
  1341. * @substream: the pcm substream
  1342. * @hw: the hardware parameters
  1343. *
  1344. * Sets the substream runtime hardware parameters.
  1345. */
  1346. int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
  1347. const struct snd_pcm_hardware *hw)
  1348. {
  1349. struct snd_pcm_runtime *runtime = substream->runtime;
  1350. runtime->hw.info = hw->info;
  1351. runtime->hw.formats = hw->formats;
  1352. runtime->hw.period_bytes_min = hw->period_bytes_min;
  1353. runtime->hw.period_bytes_max = hw->period_bytes_max;
  1354. runtime->hw.periods_min = hw->periods_min;
  1355. runtime->hw.periods_max = hw->periods_max;
  1356. runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
  1357. runtime->hw.fifo_size = hw->fifo_size;
  1358. return 0;
  1359. }
  1360. EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
  1361. /**
  1362. * snd_soc_cnew - create new control
  1363. * @_template: control template
  1364. * @data: control private data
  1365. * @long_name: control long name
  1366. *
  1367. * Create a new mixer control from a template control.
  1368. *
  1369. * Returns 0 for success, else error.
  1370. */
  1371. struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
  1372. void *data, char *long_name)
  1373. {
  1374. struct snd_kcontrol_new template;
  1375. memcpy(&template, _template, sizeof(template));
  1376. if (long_name)
  1377. template.name = long_name;
  1378. template.index = 0;
  1379. return snd_ctl_new1(&template, data);
  1380. }
  1381. EXPORT_SYMBOL_GPL(snd_soc_cnew);
  1382. /**
  1383. * snd_soc_add_controls - add an array of controls to a codec.
  1384. * Convienience function to add a list of controls. Many codecs were
  1385. * duplicating this code.
  1386. *
  1387. * @codec: codec to add controls to
  1388. * @controls: array of controls to add
  1389. * @num_controls: number of elements in the array
  1390. *
  1391. * Return 0 for success, else error.
  1392. */
  1393. int snd_soc_add_controls(struct snd_soc_codec *codec,
  1394. const struct snd_kcontrol_new *controls, int num_controls)
  1395. {
  1396. struct snd_card *card = codec->card;
  1397. int err, i;
  1398. for (i = 0; i < num_controls; i++) {
  1399. const struct snd_kcontrol_new *control = &controls[i];
  1400. err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
  1401. if (err < 0) {
  1402. dev_err(codec->dev, "%s: Failed to add %s\n",
  1403. codec->name, control->name);
  1404. return err;
  1405. }
  1406. }
  1407. return 0;
  1408. }
  1409. EXPORT_SYMBOL_GPL(snd_soc_add_controls);
  1410. /**
  1411. * snd_soc_info_enum_double - enumerated double mixer info callback
  1412. * @kcontrol: mixer control
  1413. * @uinfo: control element information
  1414. *
  1415. * Callback to provide information about a double enumerated
  1416. * mixer control.
  1417. *
  1418. * Returns 0 for success.
  1419. */
  1420. int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
  1421. struct snd_ctl_elem_info *uinfo)
  1422. {
  1423. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1424. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1425. uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
  1426. uinfo->value.enumerated.items = e->max;
  1427. if (uinfo->value.enumerated.item > e->max - 1)
  1428. uinfo->value.enumerated.item = e->max - 1;
  1429. strcpy(uinfo->value.enumerated.name,
  1430. e->texts[uinfo->value.enumerated.item]);
  1431. return 0;
  1432. }
  1433. EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
  1434. /**
  1435. * snd_soc_get_enum_double - enumerated double mixer get callback
  1436. * @kcontrol: mixer control
  1437. * @ucontrol: control element information
  1438. *
  1439. * Callback to get the value of a double enumerated mixer.
  1440. *
  1441. * Returns 0 for success.
  1442. */
  1443. int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
  1444. struct snd_ctl_elem_value *ucontrol)
  1445. {
  1446. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1447. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1448. unsigned int val, bitmask;
  1449. for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
  1450. ;
  1451. val = snd_soc_read(codec, e->reg);
  1452. ucontrol->value.enumerated.item[0]
  1453. = (val >> e->shift_l) & (bitmask - 1);
  1454. if (e->shift_l != e->shift_r)
  1455. ucontrol->value.enumerated.item[1] =
  1456. (val >> e->shift_r) & (bitmask - 1);
  1457. return 0;
  1458. }
  1459. EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
  1460. /**
  1461. * snd_soc_put_enum_double - enumerated double mixer put callback
  1462. * @kcontrol: mixer control
  1463. * @ucontrol: control element information
  1464. *
  1465. * Callback to set the value of a double enumerated mixer.
  1466. *
  1467. * Returns 0 for success.
  1468. */
  1469. int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
  1470. struct snd_ctl_elem_value *ucontrol)
  1471. {
  1472. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1473. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1474. unsigned int val;
  1475. unsigned int mask, bitmask;
  1476. for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
  1477. ;
  1478. if (ucontrol->value.enumerated.item[0] > e->max - 1)
  1479. return -EINVAL;
  1480. val = ucontrol->value.enumerated.item[0] << e->shift_l;
  1481. mask = (bitmask - 1) << e->shift_l;
  1482. if (e->shift_l != e->shift_r) {
  1483. if (ucontrol->value.enumerated.item[1] > e->max - 1)
  1484. return -EINVAL;
  1485. val |= ucontrol->value.enumerated.item[1] << e->shift_r;
  1486. mask |= (bitmask - 1) << e->shift_r;
  1487. }
  1488. return snd_soc_update_bits(codec, e->reg, mask, val);
  1489. }
  1490. EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
  1491. /**
  1492. * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
  1493. * @kcontrol: mixer control
  1494. * @ucontrol: control element information
  1495. *
  1496. * Callback to get the value of a double semi enumerated mixer.
  1497. *
  1498. * Semi enumerated mixer: the enumerated items are referred as values. Can be
  1499. * used for handling bitfield coded enumeration for example.
  1500. *
  1501. * Returns 0 for success.
  1502. */
  1503. int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
  1504. struct snd_ctl_elem_value *ucontrol)
  1505. {
  1506. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1507. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1508. unsigned int reg_val, val, mux;
  1509. reg_val = snd_soc_read(codec, e->reg);
  1510. val = (reg_val >> e->shift_l) & e->mask;
  1511. for (mux = 0; mux < e->max; mux++) {
  1512. if (val == e->values[mux])
  1513. break;
  1514. }
  1515. ucontrol->value.enumerated.item[0] = mux;
  1516. if (e->shift_l != e->shift_r) {
  1517. val = (reg_val >> e->shift_r) & e->mask;
  1518. for (mux = 0; mux < e->max; mux++) {
  1519. if (val == e->values[mux])
  1520. break;
  1521. }
  1522. ucontrol->value.enumerated.item[1] = mux;
  1523. }
  1524. return 0;
  1525. }
  1526. EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
  1527. /**
  1528. * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
  1529. * @kcontrol: mixer control
  1530. * @ucontrol: control element information
  1531. *
  1532. * Callback to set the value of a double semi enumerated mixer.
  1533. *
  1534. * Semi enumerated mixer: the enumerated items are referred as values. Can be
  1535. * used for handling bitfield coded enumeration for example.
  1536. *
  1537. * Returns 0 for success.
  1538. */
  1539. int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
  1540. struct snd_ctl_elem_value *ucontrol)
  1541. {
  1542. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1543. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1544. unsigned int val;
  1545. unsigned int mask;
  1546. if (ucontrol->value.enumerated.item[0] > e->max - 1)
  1547. return -EINVAL;
  1548. val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
  1549. mask = e->mask << e->shift_l;
  1550. if (e->shift_l != e->shift_r) {
  1551. if (ucontrol->value.enumerated.item[1] > e->max - 1)
  1552. return -EINVAL;
  1553. val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
  1554. mask |= e->mask << e->shift_r;
  1555. }
  1556. return snd_soc_update_bits(codec, e->reg, mask, val);
  1557. }
  1558. EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
  1559. /**
  1560. * snd_soc_info_enum_ext - external enumerated single mixer info callback
  1561. * @kcontrol: mixer control
  1562. * @uinfo: control element information
  1563. *
  1564. * Callback to provide information about an external enumerated
  1565. * single mixer.
  1566. *
  1567. * Returns 0 for success.
  1568. */
  1569. int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
  1570. struct snd_ctl_elem_info *uinfo)
  1571. {
  1572. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1573. uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
  1574. uinfo->count = 1;
  1575. uinfo->value.enumerated.items = e->max;
  1576. if (uinfo->value.enumerated.item > e->max - 1)
  1577. uinfo->value.enumerated.item = e->max - 1;
  1578. strcpy(uinfo->value.enumerated.name,
  1579. e->texts[uinfo->value.enumerated.item]);
  1580. return 0;
  1581. }
  1582. EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
  1583. /**
  1584. * snd_soc_info_volsw_ext - external single mixer info callback
  1585. * @kcontrol: mixer control
  1586. * @uinfo: control element information
  1587. *
  1588. * Callback to provide information about a single external mixer control.
  1589. *
  1590. * Returns 0 for success.
  1591. */
  1592. int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
  1593. struct snd_ctl_elem_info *uinfo)
  1594. {
  1595. int max = kcontrol->private_value;
  1596. if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
  1597. uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
  1598. else
  1599. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1600. uinfo->count = 1;
  1601. uinfo->value.integer.min = 0;
  1602. uinfo->value.integer.max = max;
  1603. return 0;
  1604. }
  1605. EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
  1606. /**
  1607. * snd_soc_info_volsw - single mixer info callback
  1608. * @kcontrol: mixer control
  1609. * @uinfo: control element information
  1610. *
  1611. * Callback to provide information about a single mixer control.
  1612. *
  1613. * Returns 0 for success.
  1614. */
  1615. int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
  1616. struct snd_ctl_elem_info *uinfo)
  1617. {
  1618. struct soc_mixer_control *mc =
  1619. (struct soc_mixer_control *)kcontrol->private_value;
  1620. int max = mc->max;
  1621. unsigned int shift = mc->shift;
  1622. unsigned int rshift = mc->rshift;
  1623. if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
  1624. uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
  1625. else
  1626. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1627. uinfo->count = shift == rshift ? 1 : 2;
  1628. uinfo->value.integer.min = 0;
  1629. uinfo->value.integer.max = max;
  1630. return 0;
  1631. }
  1632. EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
  1633. /**
  1634. * snd_soc_get_volsw - single mixer get callback
  1635. * @kcontrol: mixer control
  1636. * @ucontrol: control element information
  1637. *
  1638. * Callback to get the value of a single mixer control.
  1639. *
  1640. * Returns 0 for success.
  1641. */
  1642. int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
  1643. struct snd_ctl_elem_value *ucontrol)
  1644. {
  1645. struct soc_mixer_control *mc =
  1646. (struct soc_mixer_control *)kcontrol->private_value;
  1647. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1648. unsigned int reg = mc->reg;
  1649. unsigned int shift = mc->shift;
  1650. unsigned int rshift = mc->rshift;
  1651. int max = mc->max;
  1652. unsigned int mask = (1 << fls(max)) - 1;
  1653. unsigned int invert = mc->invert;
  1654. ucontrol->value.integer.value[0] =
  1655. (snd_soc_read(codec, reg) >> shift) & mask;
  1656. if (shift != rshift)
  1657. ucontrol->value.integer.value[1] =
  1658. (snd_soc_read(codec, reg) >> rshift) & mask;
  1659. if (invert) {
  1660. ucontrol->value.integer.value[0] =
  1661. max - ucontrol->value.integer.value[0];
  1662. if (shift != rshift)
  1663. ucontrol->value.integer.value[1] =
  1664. max - ucontrol->value.integer.value[1];
  1665. }
  1666. return 0;
  1667. }
  1668. EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
  1669. /**
  1670. * snd_soc_put_volsw - single mixer put callback
  1671. * @kcontrol: mixer control
  1672. * @ucontrol: control element information
  1673. *
  1674. * Callback to set the value of a single mixer control.
  1675. *
  1676. * Returns 0 for success.
  1677. */
  1678. int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
  1679. struct snd_ctl_elem_value *ucontrol)
  1680. {
  1681. struct soc_mixer_control *mc =
  1682. (struct soc_mixer_control *)kcontrol->private_value;
  1683. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1684. unsigned int reg = mc->reg;
  1685. unsigned int shift = mc->shift;
  1686. unsigned int rshift = mc->rshift;
  1687. int max = mc->max;
  1688. unsigned int mask = (1 << fls(max)) - 1;
  1689. unsigned int invert = mc->invert;
  1690. unsigned int val, val2, val_mask;
  1691. val = (ucontrol->value.integer.value[0] & mask);
  1692. if (invert)
  1693. val = max - val;
  1694. val_mask = mask << shift;
  1695. val = val << shift;
  1696. if (shift != rshift) {
  1697. val2 = (ucontrol->value.integer.value[1] & mask);
  1698. if (invert)
  1699. val2 = max - val2;
  1700. val_mask |= mask << rshift;
  1701. val |= val2 << rshift;
  1702. }
  1703. return snd_soc_update_bits(codec, reg, val_mask, val);
  1704. }
  1705. EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
  1706. /**
  1707. * snd_soc_info_volsw_2r - double mixer info callback
  1708. * @kcontrol: mixer control
  1709. * @uinfo: control element information
  1710. *
  1711. * Callback to provide information about a double mixer control that
  1712. * spans 2 codec registers.
  1713. *
  1714. * Returns 0 for success.
  1715. */
  1716. int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
  1717. struct snd_ctl_elem_info *uinfo)
  1718. {
  1719. struct soc_mixer_control *mc =
  1720. (struct soc_mixer_control *)kcontrol->private_value;
  1721. int max = mc->max;
  1722. if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
  1723. uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
  1724. else
  1725. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1726. uinfo->count = 2;
  1727. uinfo->value.integer.min = 0;
  1728. uinfo->value.integer.max = max;
  1729. return 0;
  1730. }
  1731. EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
  1732. /**
  1733. * snd_soc_get_volsw_2r - double mixer get callback
  1734. * @kcontrol: mixer control
  1735. * @ucontrol: control element information
  1736. *
  1737. * Callback to get the value of a double mixer control that spans 2 registers.
  1738. *
  1739. * Returns 0 for success.
  1740. */
  1741. int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
  1742. struct snd_ctl_elem_value *ucontrol)
  1743. {
  1744. struct soc_mixer_control *mc =
  1745. (struct soc_mixer_control *)kcontrol->private_value;
  1746. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1747. unsigned int reg = mc->reg;
  1748. unsigned int reg2 = mc->rreg;
  1749. unsigned int shift = mc->shift;
  1750. int max = mc->max;
  1751. unsigned int mask = (1 << fls(max)) - 1;
  1752. unsigned int invert = mc->invert;
  1753. ucontrol->value.integer.value[0] =
  1754. (snd_soc_read(codec, reg) >> shift) & mask;
  1755. ucontrol->value.integer.value[1] =
  1756. (snd_soc_read(codec, reg2) >> shift) & mask;
  1757. if (invert) {
  1758. ucontrol->value.integer.value[0] =
  1759. max - ucontrol->value.integer.value[0];
  1760. ucontrol->value.integer.value[1] =
  1761. max - ucontrol->value.integer.value[1];
  1762. }
  1763. return 0;
  1764. }
  1765. EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
  1766. /**
  1767. * snd_soc_put_volsw_2r - double mixer set callback
  1768. * @kcontrol: mixer control
  1769. * @ucontrol: control element information
  1770. *
  1771. * Callback to set the value of a double mixer control that spans 2 registers.
  1772. *
  1773. * Returns 0 for success.
  1774. */
  1775. int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
  1776. struct snd_ctl_elem_value *ucontrol)
  1777. {
  1778. struct soc_mixer_control *mc =
  1779. (struct soc_mixer_control *)kcontrol->private_value;
  1780. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1781. unsigned int reg = mc->reg;
  1782. unsigned int reg2 = mc->rreg;
  1783. unsigned int shift = mc->shift;
  1784. int max = mc->max;
  1785. unsigned int mask = (1 << fls(max)) - 1;
  1786. unsigned int invert = mc->invert;
  1787. int err;
  1788. unsigned int val, val2, val_mask;
  1789. val_mask = mask << shift;
  1790. val = (ucontrol->value.integer.value[0] & mask);
  1791. val2 = (ucontrol->value.integer.value[1] & mask);
  1792. if (invert) {
  1793. val = max - val;
  1794. val2 = max - val2;
  1795. }
  1796. val = val << shift;
  1797. val2 = val2 << shift;
  1798. err = snd_soc_update_bits(codec, reg, val_mask, val);
  1799. if (err < 0)
  1800. return err;
  1801. err = snd_soc_update_bits(codec, reg2, val_mask, val2);
  1802. return err;
  1803. }
  1804. EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
  1805. /**
  1806. * snd_soc_info_volsw_s8 - signed mixer info callback
  1807. * @kcontrol: mixer control
  1808. * @uinfo: control element information
  1809. *
  1810. * Callback to provide information about a signed mixer control.
  1811. *
  1812. * Returns 0 for success.
  1813. */
  1814. int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
  1815. struct snd_ctl_elem_info *uinfo)
  1816. {
  1817. struct soc_mixer_control *mc =
  1818. (struct soc_mixer_control *)kcontrol->private_value;
  1819. int max = mc->max;
  1820. int min = mc->min;
  1821. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  1822. uinfo->count = 2;
  1823. uinfo->value.integer.min = 0;
  1824. uinfo->value.integer.max = max-min;
  1825. return 0;
  1826. }
  1827. EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
  1828. /**
  1829. * snd_soc_get_volsw_s8 - signed mixer get callback
  1830. * @kcontrol: mixer control
  1831. * @ucontrol: control element information
  1832. *
  1833. * Callback to get the value of a signed mixer control.
  1834. *
  1835. * Returns 0 for success.
  1836. */
  1837. int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
  1838. struct snd_ctl_elem_value *ucontrol)
  1839. {
  1840. struct soc_mixer_control *mc =
  1841. (struct soc_mixer_control *)kcontrol->private_value;
  1842. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1843. unsigned int reg = mc->reg;
  1844. int min = mc->min;
  1845. int val = snd_soc_read(codec, reg);
  1846. ucontrol->value.integer.value[0] =
  1847. ((signed char)(val & 0xff))-min;
  1848. ucontrol->value.integer.value[1] =
  1849. ((signed char)((val >> 8) & 0xff))-min;
  1850. return 0;
  1851. }
  1852. EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
  1853. /**
  1854. * snd_soc_put_volsw_sgn - signed mixer put callback
  1855. * @kcontrol: mixer control
  1856. * @ucontrol: control element information
  1857. *
  1858. * Callback to set the value of a signed mixer control.
  1859. *
  1860. * Returns 0 for success.
  1861. */
  1862. int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
  1863. struct snd_ctl_elem_value *ucontrol)
  1864. {
  1865. struct soc_mixer_control *mc =
  1866. (struct soc_mixer_control *)kcontrol->private_value;
  1867. struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
  1868. unsigned int reg = mc->reg;
  1869. int min = mc->min;
  1870. unsigned int val;
  1871. val = (ucontrol->value.integer.value[0]+min) & 0xff;
  1872. val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
  1873. return snd_soc_update_bits(codec, reg, 0xffff, val);
  1874. }
  1875. EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
  1876. /**
  1877. * snd_soc_dai_set_sysclk - configure DAI system or master clock.
  1878. * @dai: DAI
  1879. * @clk_id: DAI specific clock ID
  1880. * @freq: new clock frequency in Hz
  1881. * @dir: new clock direction - input/output.
  1882. *
  1883. * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
  1884. */
  1885. int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
  1886. unsigned int freq, int dir)
  1887. {
  1888. if (dai->ops && dai->ops->set_sysclk)
  1889. return dai->ops->set_sysclk(dai, clk_id, freq, dir);
  1890. else
  1891. return -EINVAL;
  1892. }
  1893. EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
  1894. /**
  1895. * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
  1896. * @dai: DAI
  1897. * @div_id: DAI specific clock divider ID
  1898. * @div: new clock divisor.
  1899. *
  1900. * Configures the clock dividers. This is used to derive the best DAI bit and
  1901. * frame clocks from the system or master clock. It's best to set the DAI bit
  1902. * and frame clocks as low as possible to save system power.
  1903. */
  1904. int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
  1905. int div_id, int div)
  1906. {
  1907. if (dai->ops && dai->ops->set_clkdiv)
  1908. return dai->ops->set_clkdiv(dai, div_id, div);
  1909. else
  1910. return -EINVAL;
  1911. }
  1912. EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
  1913. /**
  1914. * snd_soc_dai_set_pll - configure DAI PLL.
  1915. * @dai: DAI
  1916. * @pll_id: DAI specific PLL ID
  1917. * @freq_in: PLL input clock frequency in Hz
  1918. * @freq_out: requested PLL output clock frequency in Hz
  1919. *
  1920. * Configures and enables PLL to generate output clock based on input clock.
  1921. */
  1922. int snd_soc_dai_set_pll(struct snd_soc_dai *dai,
  1923. int pll_id, unsigned int freq_in, unsigned int freq_out)
  1924. {
  1925. if (dai->ops && dai->ops->set_pll)
  1926. return dai->ops->set_pll(dai, pll_id, freq_in, freq_out);
  1927. else
  1928. return -EINVAL;
  1929. }
  1930. EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
  1931. /**
  1932. * snd_soc_dai_set_fmt - configure DAI hardware audio format.
  1933. * @dai: DAI
  1934. * @fmt: SND_SOC_DAIFMT_ format value.
  1935. *
  1936. * Configures the DAI hardware format and clocking.
  1937. */
  1938. int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
  1939. {
  1940. if (dai->ops && dai->ops->set_fmt)
  1941. return dai->ops->set_fmt(dai, fmt);
  1942. else
  1943. return -EINVAL;
  1944. }
  1945. EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
  1946. /**
  1947. * snd_soc_dai_set_tdm_slot - configure DAI TDM.
  1948. * @dai: DAI
  1949. * @tx_mask: bitmask representing active TX slots.
  1950. * @rx_mask: bitmask representing active RX slots.
  1951. * @slots: Number of slots in use.
  1952. * @slot_width: Width in bits for each slot.
  1953. *
  1954. * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
  1955. * specific.
  1956. */
  1957. int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
  1958. unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
  1959. {
  1960. if (dai->ops && dai->ops->set_tdm_slot)
  1961. return dai->ops->set_tdm_slot(dai, tx_mask, rx_mask,
  1962. slots, slot_width);
  1963. else
  1964. return -EINVAL;
  1965. }
  1966. EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
  1967. /**
  1968. * snd_soc_dai_set_tristate - configure DAI system or master clock.
  1969. * @dai: DAI
  1970. * @tristate: tristate enable
  1971. *
  1972. * Tristates the DAI so that others can use it.
  1973. */
  1974. int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
  1975. {
  1976. if (dai->ops && dai->ops->set_tristate)
  1977. return dai->ops->set_tristate(dai, tristate);
  1978. else
  1979. return -EINVAL;
  1980. }
  1981. EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
  1982. /**
  1983. * snd_soc_dai_digital_mute - configure DAI system or master clock.
  1984. * @dai: DAI
  1985. * @mute: mute enable
  1986. *
  1987. * Mutes the DAI DAC.
  1988. */
  1989. int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
  1990. {
  1991. if (dai->ops && dai->ops->digital_mute)
  1992. return dai->ops->digital_mute(dai, mute);
  1993. else
  1994. return -EINVAL;
  1995. }
  1996. EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
  1997. /**
  1998. * snd_soc_register_card - Register a card with the ASoC core
  1999. *
  2000. * @card: Card to register
  2001. *
  2002. * Note that currently this is an internal only function: it will be
  2003. * exposed to machine drivers after further backporting of ASoC v2
  2004. * registration APIs.
  2005. */
  2006. static int snd_soc_register_card(struct snd_soc_card *card)
  2007. {
  2008. if (!card->name || !card->dev)
  2009. return -EINVAL;
  2010. INIT_LIST_HEAD(&card->list);
  2011. card->instantiated = 0;
  2012. mutex_lock(&client_mutex);
  2013. list_add(&card->list, &card_list);
  2014. snd_soc_instantiate_cards();
  2015. mutex_unlock(&client_mutex);
  2016. dev_dbg(card->dev, "Registered card '%s'\n", card->name);
  2017. return 0;
  2018. }
  2019. /**
  2020. * snd_soc_unregister_card - Unregister a card with the ASoC core
  2021. *
  2022. * @card: Card to unregister
  2023. *
  2024. * Note that currently this is an internal only function: it will be
  2025. * exposed to machine drivers after further backporting of ASoC v2
  2026. * registration APIs.
  2027. */
  2028. static int snd_soc_unregister_card(struct snd_soc_card *card)
  2029. {
  2030. mutex_lock(&client_mutex);
  2031. list_del(&card->list);
  2032. mutex_unlock(&client_mutex);
  2033. dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
  2034. return 0;
  2035. }
  2036. static struct snd_soc_dai_ops null_dai_ops = {
  2037. };
  2038. /**
  2039. * snd_soc_register_dai - Register a DAI with the ASoC core
  2040. *
  2041. * @dai: DAI to register
  2042. */
  2043. int snd_soc_register_dai(struct snd_soc_dai *dai)
  2044. {
  2045. if (!dai->name)
  2046. return -EINVAL;
  2047. /* The device should become mandatory over time */
  2048. if (!dai->dev)
  2049. printk(KERN_WARNING "No device for DAI %s\n", dai->name);
  2050. if (!dai->ops)
  2051. dai->ops = &null_dai_ops;
  2052. INIT_LIST_HEAD(&dai->list);
  2053. mutex_lock(&client_mutex);
  2054. list_add(&dai->list, &dai_list);
  2055. snd_soc_instantiate_cards();
  2056. mutex_unlock(&client_mutex);
  2057. pr_debug("Registered DAI '%s'\n", dai->name);
  2058. return 0;
  2059. }
  2060. EXPORT_SYMBOL_GPL(snd_soc_register_dai);
  2061. /**
  2062. * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
  2063. *
  2064. * @dai: DAI to unregister
  2065. */
  2066. void snd_soc_unregister_dai(struct snd_soc_dai *dai)
  2067. {
  2068. mutex_lock(&client_mutex);
  2069. list_del(&dai->list);
  2070. mutex_unlock(&client_mutex);
  2071. pr_debug("Unregistered DAI '%s'\n", dai->name);
  2072. }
  2073. EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
  2074. /**
  2075. * snd_soc_register_dais - Register multiple DAIs with the ASoC core
  2076. *
  2077. * @dai: Array of DAIs to register
  2078. * @count: Number of DAIs
  2079. */
  2080. int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
  2081. {
  2082. int i, ret;
  2083. for (i = 0; i < count; i++) {
  2084. ret = snd_soc_register_dai(&dai[i]);
  2085. if (ret != 0)
  2086. goto err;
  2087. }
  2088. return 0;
  2089. err:
  2090. for (i--; i >= 0; i--)
  2091. snd_soc_unregister_dai(&dai[i]);
  2092. return ret;
  2093. }
  2094. EXPORT_SYMBOL_GPL(snd_soc_register_dais);
  2095. /**
  2096. * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
  2097. *
  2098. * @dai: Array of DAIs to unregister
  2099. * @count: Number of DAIs
  2100. */
  2101. void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
  2102. {
  2103. int i;
  2104. for (i = 0; i < count; i++)
  2105. snd_soc_unregister_dai(&dai[i]);
  2106. }
  2107. EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
  2108. /**
  2109. * snd_soc_register_platform - Register a platform with the ASoC core
  2110. *
  2111. * @platform: platform to register
  2112. */
  2113. int snd_soc_register_platform(struct snd_soc_platform *platform)
  2114. {
  2115. if (!platform->name)
  2116. return -EINVAL;
  2117. INIT_LIST_HEAD(&platform->list);
  2118. mutex_lock(&client_mutex);
  2119. list_add(&platform->list, &platform_list);
  2120. snd_soc_instantiate_cards();
  2121. mutex_unlock(&client_mutex);
  2122. pr_debug("Registered platform '%s'\n", platform->name);
  2123. return 0;
  2124. }
  2125. EXPORT_SYMBOL_GPL(snd_soc_register_platform);
  2126. /**
  2127. * snd_soc_unregister_platform - Unregister a platform from the ASoC core
  2128. *
  2129. * @platform: platform to unregister
  2130. */
  2131. void snd_soc_unregister_platform(struct snd_soc_platform *platform)
  2132. {
  2133. mutex_lock(&client_mutex);
  2134. list_del(&platform->list);
  2135. mutex_unlock(&client_mutex);
  2136. pr_debug("Unregistered platform '%s'\n", platform->name);
  2137. }
  2138. EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
  2139. static u64 codec_format_map[] = {
  2140. SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
  2141. SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
  2142. SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
  2143. SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
  2144. SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
  2145. SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
  2146. SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
  2147. SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
  2148. SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
  2149. SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
  2150. SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
  2151. SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
  2152. SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
  2153. SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
  2154. SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
  2155. | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
  2156. };
  2157. /* Fix up the DAI formats for endianness: codecs don't actually see
  2158. * the endianness of the data but we're using the CPU format
  2159. * definitions which do need to include endianness so we ensure that
  2160. * codec DAIs always have both big and little endian variants set.
  2161. */
  2162. static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
  2163. {
  2164. int i;
  2165. for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
  2166. if (stream->formats & codec_format_map[i])
  2167. stream->formats |= codec_format_map[i];
  2168. }
  2169. /**
  2170. * snd_soc_register_codec - Register a codec with the ASoC core
  2171. *
  2172. * @codec: codec to register
  2173. */
  2174. int snd_soc_register_codec(struct snd_soc_codec *codec)
  2175. {
  2176. int i;
  2177. if (!codec->name)
  2178. return -EINVAL;
  2179. /* The device should become mandatory over time */
  2180. if (!codec->dev)
  2181. printk(KERN_WARNING "No device for codec %s\n", codec->name);
  2182. INIT_LIST_HEAD(&codec->list);
  2183. for (i = 0; i < codec->num_dai; i++) {
  2184. fixup_codec_formats(&codec->dai[i].playback);
  2185. fixup_codec_formats(&codec->dai[i].capture);
  2186. }
  2187. mutex_lock(&client_mutex);
  2188. list_add(&codec->list, &codec_list);
  2189. snd_soc_instantiate_cards();
  2190. mutex_unlock(&client_mutex);
  2191. pr_debug("Registered codec '%s'\n", codec->name);
  2192. return 0;
  2193. }
  2194. EXPORT_SYMBOL_GPL(snd_soc_register_codec);
  2195. /**
  2196. * snd_soc_unregister_codec - Unregister a codec from the ASoC core
  2197. *
  2198. * @codec: codec to unregister
  2199. */
  2200. void snd_soc_unregister_codec(struct snd_soc_codec *codec)
  2201. {
  2202. mutex_lock(&client_mutex);
  2203. list_del(&codec->list);
  2204. mutex_unlock(&client_mutex);
  2205. pr_debug("Unregistered codec '%s'\n", codec->name);
  2206. }
  2207. EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
  2208. static int __init snd_soc_init(void)
  2209. {
  2210. #ifdef CONFIG_DEBUG_FS
  2211. debugfs_root = debugfs_create_dir("asoc", NULL);
  2212. if (IS_ERR(debugfs_root) || !debugfs_root) {
  2213. printk(KERN_WARNING
  2214. "ASoC: Failed to create debugfs directory\n");
  2215. debugfs_root = NULL;
  2216. }
  2217. #endif
  2218. return platform_driver_register(&soc_driver);
  2219. }
  2220. static void __exit snd_soc_exit(void)
  2221. {
  2222. #ifdef CONFIG_DEBUG_FS
  2223. debugfs_remove_recursive(debugfs_root);
  2224. #endif
  2225. platform_driver_unregister(&soc_driver);
  2226. }
  2227. module_init(snd_soc_init);
  2228. module_exit(snd_soc_exit);
  2229. /* Module information */
  2230. MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
  2231. MODULE_DESCRIPTION("ALSA SoC Core");
  2232. MODULE_LICENSE("GPL");
  2233. MODULE_ALIAS("platform:soc-audio");