msm-ds2-dap-config.c 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2013-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/err.h>
  6. #include <linux/module.h>
  7. #include <linux/bitops.h>
  8. #include <sound/control.h>
  9. #include <dsp/q6adm-v2.h>
  10. #include <dsp/q6core.h>
  11. #include <dsp/q6common.h>
  12. #include "msm-ds2-dap-config.h"
  13. #include "msm-pcm-routing-v2.h"
  14. /* ramp up/down for 30ms */
  15. #define DOLBY_SOFT_VOLUME_PERIOD 40
  16. /* Step value 0ms or 0us */
  17. #define DOLBY_SOFT_VOLUME_STEP 1000
  18. #define DOLBY_ADDITIONAL_RAMP_WAIT 10
  19. #define SOFT_VOLUME_PARAM_SIZE 3
  20. #define PARAM_PAYLOAD_SIZE 3
  21. enum {
  22. DOLBY_SOFT_VOLUME_CURVE_LINEAR = 0,
  23. DOLBY_SOFT_VOLUME_CURVE_EXP,
  24. DOLBY_SOFT_VOLUME_CURVE_LOG,
  25. };
  26. #define VOLUME_ZERO_GAIN 0x0
  27. #define VOLUME_UNITY_GAIN 0x2000
  28. /* Wait time for module enable/disble */
  29. #define DOLBY_MODULE_ENABLE_PERIOD 50
  30. /* DOLBY device definitions end */
  31. enum {
  32. DOLBY_OFF_CACHE = 0,
  33. DOLBY_SPEAKER_CACHE,
  34. DOLBY_HEADPHONE_CACHE,
  35. DOLBY_HDMI_CACHE,
  36. DOLBY_WFD_CACHE,
  37. DOLBY_FM_CACHE,
  38. DOLBY_MAX_CACHE,
  39. };
  40. enum {
  41. DAP_SOFT_BYPASS = 0,
  42. DAP_HARD_BYPASS,
  43. };
  44. enum {
  45. MODULE_DISABLE = 0,
  46. MODULE_ENABLE,
  47. };
  48. /* dolby param ids to/from dsp */
  49. static uint32_t ds2_dap_params_id[MAX_DS2_PARAMS] = {
  50. DOLBY_PARAM_ID_VDHE, DOLBY_PARAM_ID_VSPE, DOLBY_PARAM_ID_DSSF,
  51. DOLBY_PARAM_ID_DVLI, DOLBY_PARAM_ID_DVLO, DOLBY_PARAM_ID_DVLE,
  52. DOLBY_PARAM_ID_DVMC, DOLBY_PARAM_ID_DVME, DOLBY_PARAM_ID_IENB,
  53. DOLBY_PARAM_ID_IEBF, DOLBY_PARAM_ID_IEON, DOLBY_PARAM_ID_DEON,
  54. DOLBY_PARAM_ID_NGON, DOLBY_PARAM_ID_GEON, DOLBY_PARAM_ID_GENB,
  55. DOLBY_PARAM_ID_GEBF, DOLBY_PARAM_ID_AONB, DOLBY_PARAM_ID_AOBF,
  56. DOLBY_PARAM_ID_AOBG, DOLBY_PARAM_ID_AOON, DOLBY_PARAM_ID_ARNB,
  57. DOLBY_PARAM_ID_ARBF, DOLBY_PARAM_ID_PLB, DOLBY_PARAM_ID_PLMD,
  58. DOLBY_PARAM_ID_DHSB, DOLBY_PARAM_ID_DHRG, DOLBY_PARAM_ID_DSSB,
  59. DOLBY_PARAM_ID_DSSA, DOLBY_PARAM_ID_DVLA, DOLBY_PARAM_ID_IEBT,
  60. DOLBY_PARAM_ID_IEA, DOLBY_PARAM_ID_DEA, DOLBY_PARAM_ID_DED,
  61. DOLBY_PARAM_ID_GEBG, DOLBY_PARAM_ID_AOCC, DOLBY_PARAM_ID_ARBI,
  62. DOLBY_PARAM_ID_ARBL, DOLBY_PARAM_ID_ARBH, DOLBY_PARAM_ID_AROD,
  63. DOLBY_PARAM_ID_ARTP, DOLBY_PARAM_ID_VMON, DOLBY_PARAM_ID_VMB,
  64. DOLBY_PARAM_ID_VCNB, DOLBY_PARAM_ID_VCBF, DOLBY_PARAM_ID_PREG,
  65. DOLBY_PARAM_ID_VEN, DOLBY_PARAM_ID_PSTG, DOLBY_PARAM_ID_INIT_ENDP,
  66. };
  67. /* modifed state: 0x00000000 - Not updated
  68. * > 0x00000000 && < 0x00010000
  69. * Updated and not committed to DSP
  70. * 0x00010001 - Updated and committed to DSP
  71. * > 0x00010001 - Modified the committed value
  72. */
  73. /* param offset */
  74. static uint32_t ds2_dap_params_offset[MAX_DS2_PARAMS] = {
  75. DOLBY_PARAM_VDHE_OFFSET, DOLBY_PARAM_VSPE_OFFSET,
  76. DOLBY_PARAM_DSSF_OFFSET, DOLBY_PARAM_DVLI_OFFSET,
  77. DOLBY_PARAM_DVLO_OFFSET, DOLBY_PARAM_DVLE_OFFSET,
  78. DOLBY_PARAM_DVMC_OFFSET, DOLBY_PARAM_DVME_OFFSET,
  79. DOLBY_PARAM_IENB_OFFSET, DOLBY_PARAM_IEBF_OFFSET,
  80. DOLBY_PARAM_IEON_OFFSET, DOLBY_PARAM_DEON_OFFSET,
  81. DOLBY_PARAM_NGON_OFFSET, DOLBY_PARAM_GEON_OFFSET,
  82. DOLBY_PARAM_GENB_OFFSET, DOLBY_PARAM_GEBF_OFFSET,
  83. DOLBY_PARAM_AONB_OFFSET, DOLBY_PARAM_AOBF_OFFSET,
  84. DOLBY_PARAM_AOBG_OFFSET, DOLBY_PARAM_AOON_OFFSET,
  85. DOLBY_PARAM_ARNB_OFFSET, DOLBY_PARAM_ARBF_OFFSET,
  86. DOLBY_PARAM_PLB_OFFSET, DOLBY_PARAM_PLMD_OFFSET,
  87. DOLBY_PARAM_DHSB_OFFSET, DOLBY_PARAM_DHRG_OFFSET,
  88. DOLBY_PARAM_DSSB_OFFSET, DOLBY_PARAM_DSSA_OFFSET,
  89. DOLBY_PARAM_DVLA_OFFSET, DOLBY_PARAM_IEBT_OFFSET,
  90. DOLBY_PARAM_IEA_OFFSET, DOLBY_PARAM_DEA_OFFSET,
  91. DOLBY_PARAM_DED_OFFSET, DOLBY_PARAM_GEBG_OFFSET,
  92. DOLBY_PARAM_AOCC_OFFSET, DOLBY_PARAM_ARBI_OFFSET,
  93. DOLBY_PARAM_ARBL_OFFSET, DOLBY_PARAM_ARBH_OFFSET,
  94. DOLBY_PARAM_AROD_OFFSET, DOLBY_PARAM_ARTP_OFFSET,
  95. DOLBY_PARAM_VMON_OFFSET, DOLBY_PARAM_VMB_OFFSET,
  96. DOLBY_PARAM_VCNB_OFFSET, DOLBY_PARAM_VCBF_OFFSET,
  97. DOLBY_PARAM_PREG_OFFSET, DOLBY_PARAM_VEN_OFFSET,
  98. DOLBY_PARAM_PSTG_OFFSET, DOLBY_PARAM_INT_ENDP_OFFSET,
  99. };
  100. /* param_length */
  101. static uint32_t ds2_dap_params_length[MAX_DS2_PARAMS] = {
  102. DOLBY_PARAM_VDHE_LENGTH, DOLBY_PARAM_VSPE_LENGTH,
  103. DOLBY_PARAM_DSSF_LENGTH, DOLBY_PARAM_DVLI_LENGTH,
  104. DOLBY_PARAM_DVLO_LENGTH, DOLBY_PARAM_DVLE_LENGTH,
  105. DOLBY_PARAM_DVMC_LENGTH, DOLBY_PARAM_DVME_LENGTH,
  106. DOLBY_PARAM_IENB_LENGTH, DOLBY_PARAM_IEBF_LENGTH,
  107. DOLBY_PARAM_IEON_LENGTH, DOLBY_PARAM_DEON_LENGTH,
  108. DOLBY_PARAM_NGON_LENGTH, DOLBY_PARAM_GEON_LENGTH,
  109. DOLBY_PARAM_GENB_LENGTH, DOLBY_PARAM_GEBF_LENGTH,
  110. DOLBY_PARAM_AONB_LENGTH, DOLBY_PARAM_AOBF_LENGTH,
  111. DOLBY_PARAM_AOBG_LENGTH, DOLBY_PARAM_AOON_LENGTH,
  112. DOLBY_PARAM_ARNB_LENGTH, DOLBY_PARAM_ARBF_LENGTH,
  113. DOLBY_PARAM_PLB_LENGTH, DOLBY_PARAM_PLMD_LENGTH,
  114. DOLBY_PARAM_DHSB_LENGTH, DOLBY_PARAM_DHRG_LENGTH,
  115. DOLBY_PARAM_DSSB_LENGTH, DOLBY_PARAM_DSSA_LENGTH,
  116. DOLBY_PARAM_DVLA_LENGTH, DOLBY_PARAM_IEBT_LENGTH,
  117. DOLBY_PARAM_IEA_LENGTH, DOLBY_PARAM_DEA_LENGTH,
  118. DOLBY_PARAM_DED_LENGTH, DOLBY_PARAM_GEBG_LENGTH,
  119. DOLBY_PARAM_AOCC_LENGTH, DOLBY_PARAM_ARBI_LENGTH,
  120. DOLBY_PARAM_ARBL_LENGTH, DOLBY_PARAM_ARBH_LENGTH,
  121. DOLBY_PARAM_AROD_LENGTH, DOLBY_PARAM_ARTP_LENGTH,
  122. DOLBY_PARAM_VMON_LENGTH, DOLBY_PARAM_VMB_LENGTH,
  123. DOLBY_PARAM_VCNB_LENGTH, DOLBY_PARAM_VCBF_LENGTH,
  124. DOLBY_PARAM_PREG_LENGTH, DOLBY_PARAM_VEN_LENGTH,
  125. DOLBY_PARAM_PSTG_LENGTH, DOLBY_PARAM_INT_ENDP_LENGTH,
  126. };
  127. struct ds2_dap_params_s {
  128. int32_t params_val[TOTAL_LENGTH_DS2_PARAM];
  129. int32_t dap_params_modified[MAX_DS2_PARAMS];
  130. };
  131. struct audio_rx_cal_data {
  132. char aud_proc_data[AUD_PROC_BLOCK_SIZE];
  133. int32_t aud_proc_size;
  134. char aud_vol_data[AUD_VOL_BLOCK_SIZE];
  135. int32_t aud_vol_size;
  136. };
  137. static struct ds2_dap_params_s ds2_dap_params[DOLBY_MAX_CACHE];
  138. struct ds2_device_mapping {
  139. int32_t device_id; /* audio_out_... */
  140. int port_id; /* afe port. constant for a target variant. routing-v2*/
  141. /*Only one Dolby COPP for a specific port*/
  142. int copp_idx; /* idx for the copp port on which ds2 is active */
  143. int cache_dev; /* idx to a shared parameter array dependent on device*/
  144. uint32_t stream_ref_count;
  145. bool active;
  146. void *cal_data;
  147. };
  148. static struct ds2_device_mapping dev_map[DS2_DEVICES_ALL];
  149. struct ds2_dap_params_states_s {
  150. bool use_cache;
  151. bool dap_bypass;
  152. bool dap_bypass_type;
  153. bool node_opened;
  154. int32_t device;
  155. bool custom_stereo_onoff;
  156. };
  157. static struct ds2_dap_params_states_s ds2_dap_params_states = {true, false,
  158. false, DEVICE_NONE};
  159. static int all_supported_devices = EARPIECE|SPEAKER|WIRED_HEADSET|
  160. WIRED_HEADPHONE|BLUETOOTH_SCO|AUX_DIGITAL|
  161. ANLG_DOCK_HEADSET|DGTL_DOCK_HEADSET|
  162. REMOTE_SUBMIX|ANC_HEADSET|ANC_HEADPHONE|
  163. PROXY|FM|FM_TX|DEVICE_NONE|
  164. BLUETOOTH_SCO_HEADSET|BLUETOOTH_SCO_CARKIT;
  165. static void msm_ds2_dap_check_and_update_ramp_wait(int port_id, int copp_idx,
  166. int *ramp_wait)
  167. {
  168. int32_t *update_params_value = NULL;
  169. uint32_t params_length = SOFT_VOLUME_PARAM_SIZE * sizeof(uint32_t);
  170. uint32_t param_payload_len = PARAM_PAYLOAD_SIZE * sizeof(uint32_t);
  171. struct param_hdr_v3 param_hdr;
  172. int rc = 0;
  173. update_params_value = kzalloc(params_length + param_payload_len,
  174. GFP_KERNEL);
  175. if (!update_params_value) {
  176. pr_err("%s: params memory alloc failed\n", __func__);
  177. goto end;
  178. }
  179. memset(&param_hdr, 0, sizeof(param_hdr));
  180. param_hdr.module_id = AUDPROC_MODULE_ID_VOL_CTRL;
  181. param_hdr.instance_id = INSTANCE_ID_0;
  182. param_hdr.param_id = AUDPROC_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
  183. param_hdr.param_size = params_length + param_payload_len;
  184. rc = adm_get_pp_params(port_id, copp_idx, ADM_CLIENT_ID_DEFAULT, NULL,
  185. &param_hdr, (char *) update_params_value);
  186. if (rc == 0) {
  187. pr_debug("%s: params_value [0x%x, 0x%x, 0x%x]\n",
  188. __func__, update_params_value[0],
  189. update_params_value[1],
  190. update_params_value[2]);
  191. *ramp_wait = update_params_value[0];
  192. }
  193. end:
  194. kfree(update_params_value);
  195. /*
  196. * No error returned as we do not need to error out from dap on/dap
  197. * bypass. The default ramp parameter will be used to wait during
  198. * ramp down.
  199. */
  200. }
  201. static int msm_ds2_dap_set_vspe_vdhe(int dev_map_idx,
  202. bool is_custom_stereo_enabled)
  203. {
  204. u8 *packed_param_data = NULL;
  205. u8 *param_data = NULL;
  206. struct param_hdr_v3 param_hdr;
  207. u32 packed_param_size = 0;
  208. u32 param_size = 0;
  209. int cdev;
  210. int rc = 0;
  211. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  212. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  213. rc = -EINVAL;
  214. goto end;
  215. }
  216. if (dev_map[dev_map_idx].port_id == DOLBY_INVALID_PORT_ID) {
  217. pr_err("%s: Invalid port id\n", __func__);
  218. rc = -EINVAL;
  219. goto end;
  220. }
  221. if ((dev_map[dev_map_idx].copp_idx < 0) ||
  222. (dev_map[dev_map_idx].copp_idx >= MAX_COPPS_PER_PORT)) {
  223. pr_err("%s: Invalid copp_idx\n", __func__);
  224. rc = -EINVAL;
  225. goto end;
  226. }
  227. if ((dev_map[dev_map_idx].port_id != SLIMBUS_0_RX) &&
  228. (dev_map[dev_map_idx].port_id != RT_PROXY_PORT_001_RX)) {
  229. pr_debug("%s:No Custom stereo for port:0x%x\n",
  230. __func__, dev_map[dev_map_idx].port_id);
  231. goto end;
  232. }
  233. /* Allocate the max space needed */
  234. packed_param_size = (TOTAL_LENGTH_DOLBY_PARAM * sizeof(uint32_t)) +
  235. (2 * sizeof(union param_hdrs));
  236. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  237. if (!packed_param_data)
  238. return -ENOMEM;
  239. packed_param_size = 0;
  240. memset(&param_hdr, 0, sizeof(param_hdr));
  241. /* Set common values */
  242. cdev = dev_map[dev_map_idx].cache_dev;
  243. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  244. param_hdr.instance_id = INSTANCE_ID_0;
  245. /* Pack VDHE header + data */
  246. param_hdr.param_id = DOLBY_PARAM_ID_VDHE;
  247. param_size = DOLBY_PARAM_VDHE_LENGTH * sizeof(uint32_t);
  248. param_hdr.param_size = param_size;
  249. if (is_custom_stereo_enabled)
  250. param_data = NULL;
  251. else
  252. param_data = (u8 *) &ds2_dap_params[cdev]
  253. .params_val[DOLBY_PARAM_VDHE_OFFSET];
  254. rc = q6common_pack_pp_params(packed_param_data, &param_hdr, param_data,
  255. &param_size);
  256. if (rc) {
  257. pr_err("%s: Failed to pack params for dolby vdhe, error %d\n",
  258. __func__, rc);
  259. goto end;
  260. }
  261. packed_param_size += param_size;
  262. /* Pack VSPE header + data */
  263. param_hdr.param_id = DOLBY_PARAM_ID_VSPE;
  264. param_size = DOLBY_PARAM_VSPE_LENGTH * sizeof(uint32_t);
  265. param_hdr.param_size = param_size;
  266. if (is_custom_stereo_enabled)
  267. param_data = NULL;
  268. else
  269. param_data = (u8 *) &ds2_dap_params[cdev]
  270. .params_val[DOLBY_PARAM_VSPE_OFFSET];
  271. rc = q6common_pack_pp_params(packed_param_data + packed_param_size,
  272. &param_hdr, param_data, &param_size);
  273. if (rc) {
  274. pr_err("%s: Failed to pack params for dolby vspe, error %d\n",
  275. __func__, rc);
  276. goto end;
  277. }
  278. packed_param_size += param_size;
  279. rc = adm_set_pp_params(dev_map[dev_map_idx].port_id,
  280. dev_map[dev_map_idx].copp_idx, NULL,
  281. packed_param_data, packed_param_size);
  282. if (rc) {
  283. pr_err("%s: send vdhe/vspe params failed with rc=%d\n",
  284. __func__, rc);
  285. rc = -EINVAL;
  286. goto end;
  287. }
  288. end:
  289. kfree(packed_param_data);
  290. return rc;
  291. }
  292. int qti_set_custom_stereo_on(int port_id, int copp_idx,
  293. bool is_custom_stereo_on)
  294. {
  295. struct custom_stereo_param custom_stereo;
  296. struct param_hdr_v3 param_hdr;
  297. uint16_t op_FL_ip_FL_weight;
  298. uint16_t op_FL_ip_FR_weight;
  299. uint16_t op_FR_ip_FL_weight;
  300. uint16_t op_FR_ip_FR_weight;
  301. int rc = 0;
  302. if ((port_id != SLIMBUS_0_RX) &&
  303. (port_id != RT_PROXY_PORT_001_RX)) {
  304. pr_debug("%s:No Custom stereo for port:0x%x\n",
  305. __func__, port_id);
  306. return 0;
  307. }
  308. memset(&custom_stereo, 0, sizeof(custom_stereo));
  309. memset(&param_hdr, 0, sizeof(param_hdr));
  310. pr_debug("%s: port 0x%x, copp_idx %d, is_custom_stereo_on %d\n",
  311. __func__, port_id, copp_idx, is_custom_stereo_on);
  312. if (is_custom_stereo_on) {
  313. op_FL_ip_FL_weight =
  314. Q14_GAIN_ZERO_POINT_FIVE;
  315. op_FL_ip_FR_weight =
  316. Q14_GAIN_ZERO_POINT_FIVE;
  317. op_FR_ip_FL_weight =
  318. Q14_GAIN_ZERO_POINT_FIVE;
  319. op_FR_ip_FR_weight =
  320. Q14_GAIN_ZERO_POINT_FIVE;
  321. } else {
  322. op_FL_ip_FL_weight = Q14_GAIN_UNITY;
  323. op_FL_ip_FR_weight = 0;
  324. op_FR_ip_FL_weight = 0;
  325. op_FR_ip_FR_weight = Q14_GAIN_UNITY;
  326. }
  327. param_hdr.module_id = MTMX_MODULE_ID_DEFAULT_CHMIXER;
  328. param_hdr.instance_id = INSTANCE_ID_0;
  329. param_hdr.param_id = DEFAULT_CHMIXER_PARAM_ID_COEFF;
  330. param_hdr.param_size = sizeof(struct custom_stereo_param);
  331. /* index is 32-bit param in little endian*/
  332. custom_stereo.index = CUSTOM_STEREO_INDEX_PARAM;
  333. custom_stereo.reserved = 0;
  334. /* for stereo mixing num out ch*/
  335. custom_stereo.num_out_ch = CUSTOM_STEREO_NUM_OUT_CH;
  336. /* for stereo mixing num in ch*/
  337. custom_stereo.num_in_ch = CUSTOM_STEREO_NUM_IN_CH;
  338. /* Out ch map FL/FR*/
  339. custom_stereo.out_fl = PCM_CHANNEL_FL;
  340. custom_stereo.out_fr = PCM_CHANNEL_FR;
  341. /* In ch map FL/FR*/
  342. custom_stereo.in_fl = PCM_CHANNEL_FL;
  343. custom_stereo.in_fr = PCM_CHANNEL_FR;
  344. /* weighting coefficients as name suggests,
  345. * mixing will be done according to these coefficients
  346. */
  347. custom_stereo.op_FL_ip_FL_weight = op_FL_ip_FL_weight;
  348. custom_stereo.op_FL_ip_FR_weight = op_FL_ip_FR_weight;
  349. custom_stereo.op_FR_ip_FL_weight = op_FR_ip_FL_weight;
  350. custom_stereo.op_FR_ip_FR_weight = op_FR_ip_FR_weight;
  351. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  352. (u8 *) &custom_stereo);
  353. if (rc) {
  354. pr_err("%s: send params failed rc=%d\n", __func__, rc);
  355. return -EINVAL;
  356. }
  357. return 0;
  358. }
  359. static int dap_set_custom_stereo_onoff(int dev_map_idx,
  360. bool is_custom_stereo_enabled)
  361. {
  362. uint32_t enable = is_custom_stereo_enabled ? 1 : 0;
  363. struct param_hdr_v3 param_hdr;
  364. int rc = 0;
  365. if ((dev_map[dev_map_idx].port_id != SLIMBUS_0_RX) &&
  366. (dev_map[dev_map_idx].port_id != RT_PROXY_PORT_001_RX)) {
  367. pr_debug("%s:No Custom stereo for port:0x%x\n",
  368. __func__, dev_map[dev_map_idx].port_id);
  369. goto end;
  370. }
  371. if ((dev_map[dev_map_idx].copp_idx < 0) ||
  372. (dev_map[dev_map_idx].copp_idx >= MAX_COPPS_PER_PORT)) {
  373. rc = -EINVAL;
  374. goto end;
  375. }
  376. memset(&param_hdr, 0, sizeof(param_hdr));
  377. /* DAP custom stereo */
  378. msm_ds2_dap_set_vspe_vdhe(dev_map_idx,
  379. is_custom_stereo_enabled);
  380. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  381. param_hdr.instance_id = INSTANCE_ID_0;
  382. param_hdr.param_id = DOLBY_ENABLE_CUSTOM_STEREO;
  383. param_hdr.param_size = sizeof(enable);
  384. rc = adm_pack_and_set_one_pp_param(dev_map[dev_map_idx].port_id,
  385. dev_map[dev_map_idx].copp_idx,
  386. param_hdr, (u8 *) &enable);
  387. if (rc) {
  388. pr_err("%s: set custom stereo enable failed with rc=%d\n",
  389. __func__, rc);
  390. rc = -EINVAL;
  391. }
  392. end:
  393. return rc;
  394. }
  395. static int set_custom_stereo_onoff(int dev_map_idx,
  396. bool is_custom_stereo_enabled)
  397. {
  398. int rc = 0;
  399. pr_debug("%s: map index %d, custom stereo %d\n", __func__, dev_map_idx,
  400. is_custom_stereo_enabled);
  401. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  402. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  403. rc = -EINVAL;
  404. goto end;
  405. }
  406. if (dev_map[dev_map_idx].port_id == DOLBY_INVALID_PORT_ID) {
  407. pr_err("%s: invalid port id\n", __func__);
  408. rc = -EINVAL;
  409. goto end;
  410. }
  411. if ((dev_map[dev_map_idx].copp_idx < 0) ||
  412. (dev_map[dev_map_idx].copp_idx >= MAX_COPPS_PER_PORT)) {
  413. pr_err("%s: invalid copp idx\n", __func__);
  414. rc = -EINVAL;
  415. goto end;
  416. }
  417. if (ds2_dap_params_states.dap_bypass == true &&
  418. ds2_dap_params_states.dap_bypass_type == DAP_HARD_BYPASS) {
  419. rc = qti_set_custom_stereo_on(dev_map[dev_map_idx].port_id,
  420. dev_map[dev_map_idx].copp_idx,
  421. is_custom_stereo_enabled);
  422. if (rc < 0) {
  423. pr_err("%s:qti_set_custom_stereo_on_copp failed C.S %d",
  424. __func__, is_custom_stereo_enabled);
  425. }
  426. goto end;
  427. }
  428. if (ds2_dap_params_states.dap_bypass == false) {
  429. rc = dap_set_custom_stereo_onoff(dev_map_idx,
  430. is_custom_stereo_enabled);
  431. if (rc < 0) {
  432. pr_err("%s:qti_set_custom_stereo_on_copp failed C.S %d",
  433. __func__, is_custom_stereo_enabled);
  434. }
  435. goto end;
  436. }
  437. end:
  438. return rc;
  439. }
  440. static int msm_ds2_dap_alloc_and_store_cal_data(int dev_map_idx, int path,
  441. int perf_mode)
  442. {
  443. int rc = 0;
  444. struct audio_rx_cal_data *aud_cal_data;
  445. pr_debug("%s: path %d, perf_mode %d, dev_map_idx %d\n",
  446. __func__, path, perf_mode, dev_map_idx);
  447. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  448. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  449. rc = -EINVAL;
  450. goto end;
  451. }
  452. aud_cal_data = kzalloc(sizeof(struct audio_rx_cal_data), GFP_KERNEL);
  453. if (!aud_cal_data) {
  454. rc = -ENOMEM;
  455. goto end;
  456. }
  457. rc = adm_store_cal_data(dev_map[dev_map_idx].port_id,
  458. dev_map[dev_map_idx].copp_idx, path, perf_mode,
  459. ADM_AUDPROC_CAL, aud_cal_data->aud_proc_data,
  460. &aud_cal_data->aud_proc_size);
  461. if (rc < 0) {
  462. pr_err("%s: store cal data err %d\n", __func__, rc);
  463. kfree(aud_cal_data);
  464. goto end;
  465. }
  466. rc = adm_store_cal_data(dev_map[dev_map_idx].port_id,
  467. dev_map[dev_map_idx].copp_idx, path, perf_mode,
  468. ADM_AUDVOL_CAL, aud_cal_data->aud_vol_data,
  469. &aud_cal_data->aud_vol_size);
  470. if (rc < 0) {
  471. pr_err("%s: store cal data err %d\n", __func__, rc);
  472. kfree(aud_cal_data);
  473. goto end;
  474. }
  475. dev_map[dev_map_idx].cal_data = (void *)aud_cal_data;
  476. end:
  477. pr_debug("%s: ret %d\n", __func__, rc);
  478. return rc;
  479. }
  480. static int msm_ds2_dap_free_cal_data(int dev_map_idx)
  481. {
  482. int rc = 0;
  483. struct audio_rx_cal_data *aud_cal_data;
  484. pr_debug("%s: dev_map_idx %d\n", __func__, dev_map_idx);
  485. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  486. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  487. rc = -EINVAL;
  488. goto end;
  489. }
  490. aud_cal_data = (struct audio_rx_cal_data *)
  491. dev_map[dev_map_idx].cal_data;
  492. kfree(aud_cal_data);
  493. dev_map[dev_map_idx].cal_data = NULL;
  494. end:
  495. return rc;
  496. }
  497. static int msm_ds2_dap_send_cal_data(int dev_map_idx)
  498. {
  499. int rc = 0;
  500. struct audio_rx_cal_data *aud_cal_data = NULL;
  501. pr_debug("%s: devmap index %d\n", __func__, dev_map_idx);
  502. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  503. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  504. rc = -EINVAL;
  505. goto end;
  506. }
  507. if (dev_map[dev_map_idx].cal_data == NULL) {
  508. pr_err("%s: No valid calibration data stored for idx %d\n",
  509. __func__, dev_map_idx);
  510. rc = -EINVAL;
  511. goto end;
  512. }
  513. /* send aud proc cal */
  514. aud_cal_data = (struct audio_rx_cal_data *)
  515. dev_map[dev_map_idx].cal_data;
  516. rc = adm_send_calibration(dev_map[dev_map_idx].port_id,
  517. dev_map[dev_map_idx].copp_idx,
  518. ADM_PATH_PLAYBACK, 0,
  519. ADM_AUDPROC_CAL,
  520. aud_cal_data->aud_proc_data,
  521. aud_cal_data->aud_proc_size);
  522. if (rc < 0) {
  523. pr_err("%s: adm_send_calibration failed %d\n", __func__, rc);
  524. goto end;
  525. }
  526. /* send aud volume cal*/
  527. rc = adm_send_calibration(dev_map[dev_map_idx].port_id,
  528. dev_map[dev_map_idx].copp_idx,
  529. ADM_PATH_PLAYBACK, 0,
  530. ADM_AUDVOL_CAL,
  531. aud_cal_data->aud_vol_data,
  532. aud_cal_data->aud_vol_size);
  533. if (rc < 0)
  534. pr_err("%s: adm_send_calibration failed %d\n", __func__, rc);
  535. end:
  536. pr_debug("%s: return %d\n", __func__, rc);
  537. return rc;
  538. }
  539. static inline int msm_ds2_dap_can_enable_module(int32_t module_id)
  540. {
  541. if (module_id == MTMX_MODULE_ID_DEFAULT_CHMIXER ||
  542. module_id == AUDPROC_MODULE_ID_RESAMPLER ||
  543. module_id == AUDPROC_MODULE_ID_VOL_CTRL) {
  544. return false;
  545. }
  546. return true;
  547. }
  548. static int msm_ds2_dap_init_modules_in_topology(int dev_map_idx)
  549. {
  550. int rc = 0, i = 0, port_id, copp_idx;
  551. /* Account for 32 bit integer allocation */
  552. int32_t param_sz =
  553. (ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH / sizeof(uint32_t));
  554. int32_t *update_param_val = NULL;
  555. struct module_instance_info mod_inst_info;
  556. int mod_inst_info_sz = 0;
  557. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  558. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  559. rc = -EINVAL;
  560. goto end;
  561. }
  562. memset(&mod_inst_info, 0, sizeof(mod_inst_info));
  563. port_id = dev_map[dev_map_idx].port_id;
  564. copp_idx = dev_map[dev_map_idx].copp_idx;
  565. pr_debug("%s: port_id 0x%x copp_idx %d\n", __func__, port_id, copp_idx);
  566. update_param_val =
  567. kzalloc(ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH, GFP_KERNEL);
  568. if (!update_param_val) {
  569. pr_err("%s, param memory alloc failed\n", __func__);
  570. rc = -ENOMEM;
  571. goto end;
  572. }
  573. if (!ds2_dap_params_states.dap_bypass) {
  574. /* get modules from dsp */
  575. rc = adm_get_pp_topo_module_list_v2(
  576. port_id, copp_idx,
  577. ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH,
  578. update_param_val);
  579. if (rc < 0) {
  580. pr_err("%s:topo list port %d, err %d,copp_idx %d\n",
  581. __func__, port_id, copp_idx, rc);
  582. goto end;
  583. }
  584. if (update_param_val[0] > (param_sz - 1)) {
  585. pr_err("%s:max modules exp/ret [%d: %d]\n",
  586. __func__, (param_sz - 1),
  587. update_param_val[0]);
  588. rc = -EINVAL;
  589. goto end;
  590. }
  591. mod_inst_info_sz = sizeof(struct module_instance_info) /
  592. sizeof(uint32_t);
  593. /* Turn off modules */
  594. for (i = 1; i < update_param_val[0] * mod_inst_info_sz;
  595. i += mod_inst_info_sz) {
  596. if (!msm_ds2_dap_can_enable_module(
  597. update_param_val[i]) ||
  598. (update_param_val[i] == DS2_MODULE_ID)) {
  599. pr_debug("%s: Do not enable/disable %d\n",
  600. __func__, update_param_val[i]);
  601. continue;
  602. }
  603. pr_debug("%s: param disable %d\n",
  604. __func__, update_param_val[i]);
  605. memcpy(&mod_inst_info, &update_param_val[i],
  606. sizeof(mod_inst_info));
  607. adm_param_enable_v2(port_id, copp_idx,
  608. mod_inst_info,
  609. MODULE_DISABLE);
  610. }
  611. } else {
  612. msm_ds2_dap_send_cal_data(dev_map_idx);
  613. }
  614. mod_inst_info.module_id = DS2_MODULE_ID;
  615. mod_inst_info.instance_id = INSTANCE_ID_0;
  616. adm_param_enable_v2(port_id, copp_idx, mod_inst_info,
  617. !ds2_dap_params_states.dap_bypass);
  618. end:
  619. kfree(update_param_val);
  620. return rc;
  621. }
  622. static bool msm_ds2_dap_check_is_param_modified(int32_t *dap_params_modified,
  623. int32_t idx, int32_t commit)
  624. {
  625. if ((dap_params_modified[idx] == 0) ||
  626. (commit &&
  627. ((dap_params_modified[idx] & 0x00010000) &&
  628. ((dap_params_modified[idx] & 0x0000FFFF) <= 1)))) {
  629. pr_debug("%s: not modified at idx %d\n", __func__, idx);
  630. return false;
  631. }
  632. pr_debug("%s: modified at idx %d\n", __func__, idx);
  633. return true;
  634. }
  635. static int msm_ds2_dap_map_device_to_dolby_cache_devices(int32_t device_id)
  636. {
  637. int32_t cache_dev = -1;
  638. switch (device_id) {
  639. case DEVICE_NONE:
  640. cache_dev = DOLBY_OFF_CACHE;
  641. break;
  642. case EARPIECE:
  643. case SPEAKER:
  644. cache_dev = DOLBY_SPEAKER_CACHE;
  645. break;
  646. case WIRED_HEADSET:
  647. case WIRED_HEADPHONE:
  648. case ANLG_DOCK_HEADSET:
  649. case DGTL_DOCK_HEADSET:
  650. case ANC_HEADSET:
  651. case ANC_HEADPHONE:
  652. case BLUETOOTH_SCO:
  653. case BLUETOOTH_SCO_HEADSET:
  654. case BLUETOOTH_SCO_CARKIT:
  655. cache_dev = DOLBY_HEADPHONE_CACHE;
  656. break;
  657. case FM:
  658. case FM_TX:
  659. cache_dev = DOLBY_FM_CACHE;
  660. break;
  661. case AUX_DIGITAL:
  662. cache_dev = DOLBY_HDMI_CACHE;
  663. break;
  664. case PROXY:
  665. case REMOTE_SUBMIX:
  666. cache_dev = DOLBY_WFD_CACHE;
  667. break;
  668. default:
  669. pr_err("%s: invalid cache device\n", __func__);
  670. }
  671. pr_debug("%s: cache device %d\n", __func__, cache_dev);
  672. return cache_dev;
  673. }
  674. static int msm_ds2_dap_update_num_devices(struct dolby_param_data *dolby_data,
  675. int32_t *num_device, int32_t *dev_arr,
  676. int32_t array_size)
  677. {
  678. int32_t idx = 0;
  679. int supported_devices = 0;
  680. if (!array_size) {
  681. pr_err("%s: array size zero\n", __func__);
  682. return -EINVAL;
  683. }
  684. if (dolby_data->device_id == DEVICE_OUT_ALL ||
  685. dolby_data->device_id == DEVICE_OUT_DEFAULT)
  686. supported_devices = all_supported_devices;
  687. else
  688. supported_devices = dolby_data->device_id;
  689. if ((idx < array_size) && (supported_devices & EARPIECE))
  690. dev_arr[idx++] = EARPIECE;
  691. if ((idx < array_size) && (supported_devices & SPEAKER))
  692. dev_arr[idx++] = SPEAKER;
  693. if ((idx < array_size) && (supported_devices & WIRED_HEADSET))
  694. dev_arr[idx++] = WIRED_HEADSET;
  695. if ((idx < array_size) && (supported_devices & WIRED_HEADPHONE))
  696. dev_arr[idx++] = WIRED_HEADPHONE;
  697. if ((idx < array_size) && (supported_devices & BLUETOOTH_SCO))
  698. dev_arr[idx++] = BLUETOOTH_SCO;
  699. if ((idx < array_size) && (supported_devices & BLUETOOTH_SCO_CARKIT))
  700. dev_arr[idx++] = BLUETOOTH_SCO_CARKIT;
  701. if ((idx < array_size) && (supported_devices & BLUETOOTH_SCO_HEADSET))
  702. dev_arr[idx++] = BLUETOOTH_SCO_HEADSET;
  703. if ((idx < array_size) && (supported_devices & AUX_DIGITAL))
  704. dev_arr[idx++] = AUX_DIGITAL;
  705. if ((idx < array_size) && (supported_devices & ANLG_DOCK_HEADSET))
  706. dev_arr[idx++] = ANLG_DOCK_HEADSET;
  707. if ((idx < array_size) && (supported_devices & DGTL_DOCK_HEADSET))
  708. dev_arr[idx++] = DGTL_DOCK_HEADSET;
  709. if ((idx < array_size) && (supported_devices & REMOTE_SUBMIX))
  710. dev_arr[idx++] = REMOTE_SUBMIX;
  711. if ((idx < array_size) && (supported_devices & ANC_HEADSET))
  712. dev_arr[idx++] = ANC_HEADSET;
  713. if ((idx < array_size) && (supported_devices & ANC_HEADPHONE))
  714. dev_arr[idx++] = ANC_HEADPHONE;
  715. if ((idx < array_size) && (supported_devices & PROXY))
  716. dev_arr[idx++] = PROXY;
  717. if ((idx < array_size) && (supported_devices & FM))
  718. dev_arr[idx++] = FM;
  719. if ((idx < array_size) && (supported_devices & FM_TX))
  720. dev_arr[idx++] = FM_TX;
  721. /* CHECK device none separately */
  722. if ((idx < array_size) && (supported_devices == DEVICE_NONE))
  723. dev_arr[idx++] = DEVICE_NONE;
  724. pr_debug("%s: dev id 0x%x, idx %d\n", __func__,
  725. supported_devices, idx);
  726. *num_device = idx;
  727. return 0;
  728. }
  729. static int msm_ds2_dap_get_port_id(
  730. int32_t device_id, int32_t be_id)
  731. {
  732. struct msm_pcm_routing_bdai_data bedais;
  733. int port_id = DOLBY_INVALID_PORT_ID;
  734. int port_type = 0;
  735. if (be_id < 0) {
  736. port_id = -1;
  737. goto end;
  738. }
  739. msm_pcm_routing_get_bedai_info(be_id, &bedais);
  740. pr_debug("%s: be port_id %d\n", __func__, bedais.port_id);
  741. port_id = bedais.port_id;
  742. port_type = afe_get_port_type(bedais.port_id);
  743. if (port_type != MSM_AFE_PORT_TYPE_RX)
  744. port_id = DOLBY_INVALID_PORT_ID;
  745. end:
  746. pr_debug("%s: device_id 0x%x, be_id %d, port_id %d\n",
  747. __func__, device_id, be_id, port_id);
  748. return port_id;
  749. }
  750. static int msm_ds2_dap_update_dev_map_port_id(int32_t device_id, int port_id)
  751. {
  752. int i;
  753. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  754. if (dev_map[i].device_id == device_id)
  755. dev_map[i].port_id = port_id;
  756. }
  757. pr_debug("%s: port_id %d, device_id 0x%x\n",
  758. __func__, port_id, device_id);
  759. return 0;
  760. }
  761. static int msm_ds2_dap_handle_bypass_wait(int port_id, int copp_idx,
  762. int wait_time)
  763. {
  764. int ret = 0;
  765. adm_set_wait_parameters(port_id, copp_idx);
  766. msm_pcm_routing_release_lock();
  767. ret = adm_wait_timeout(port_id, copp_idx, wait_time);
  768. msm_pcm_routing_acquire_lock();
  769. /* Reset the parameters if wait has timed out */
  770. if (ret == 0)
  771. adm_reset_wait_parameters(port_id, copp_idx);
  772. return ret;
  773. }
  774. static int msm_ds2_dap_handle_bypass(struct dolby_param_data *dolby_data)
  775. {
  776. int rc = 0, i = 0, j = 0;
  777. /*Account for 32 bit integer allocation */
  778. int32_t param_sz =
  779. (ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH / sizeof(uint32_t));
  780. int32_t *mod_list = NULL;
  781. int port_id = 0, copp_idx = -1;
  782. bool cs_onoff = ds2_dap_params_states.custom_stereo_onoff;
  783. int ramp_wait = DOLBY_SOFT_VOLUME_PERIOD;
  784. struct module_instance_info mod_inst_info;
  785. int mod_inst_info_sz = 0;
  786. pr_debug("%s: bypass type %d bypass %d custom stereo %d\n", __func__,
  787. ds2_dap_params_states.dap_bypass_type,
  788. ds2_dap_params_states.dap_bypass,
  789. ds2_dap_params_states.custom_stereo_onoff);
  790. memset(&mod_inst_info, 0, sizeof(mod_inst_info));
  791. mod_list =
  792. kzalloc(ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH, GFP_KERNEL);
  793. if (!mod_list) {
  794. pr_err("%s: param memory alloc failed\n", __func__);
  795. rc = -ENOMEM;
  796. goto end;
  797. }
  798. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  799. pr_debug("%s: active dev %d\n", __func__, dev_map[i].active);
  800. if (dev_map[i].active) {
  801. port_id = dev_map[i].port_id;
  802. copp_idx = dev_map[i].copp_idx;
  803. if (port_id == DOLBY_INVALID_PORT_ID) {
  804. pr_err("%s: invalid port\n", __func__);
  805. rc = 0;
  806. goto end;
  807. }
  808. if ((copp_idx < 0) ||
  809. (copp_idx >= MAX_COPPS_PER_PORT)) {
  810. pr_err("%s: Invalid copp_idx\n", __func__);
  811. rc = 0;
  812. goto end;
  813. }
  814. /* getmodules from dsp */
  815. rc = adm_get_pp_topo_module_list_v2(
  816. port_id, copp_idx,
  817. ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH,
  818. mod_list);
  819. if (rc < 0) {
  820. pr_err("%s:adm get topo list port %d",
  821. __func__, port_id);
  822. pr_err("copp_idx %d, err %d\n",
  823. copp_idx, rc);
  824. goto end;
  825. }
  826. if (mod_list[0] > (param_sz - 1)) {
  827. pr_err("%s:max modules exp/ret [%d: %d]\n",
  828. __func__, (param_sz - 1),
  829. mod_list[0]);
  830. rc = -EINVAL;
  831. goto end;
  832. }
  833. /*
  834. * get ramp parameters
  835. * check for change in ramp parameters
  836. * update ramp wait
  837. */
  838. msm_ds2_dap_check_and_update_ramp_wait(port_id,
  839. copp_idx,
  840. &ramp_wait);
  841. /* Mute before switching modules */
  842. rc = adm_set_volume(port_id, copp_idx,
  843. VOLUME_ZERO_GAIN);
  844. if (rc < 0) {
  845. /*
  846. * Not Fatal can continue bypass operations.
  847. * Do not need to block playback
  848. */
  849. pr_info("%s :Set volume port_id %d",
  850. __func__, port_id);
  851. pr_info("copp_idx %d, error %d\n",
  852. copp_idx, rc);
  853. }
  854. rc = msm_ds2_dap_handle_bypass_wait(port_id, copp_idx,
  855. (ramp_wait +
  856. DOLBY_ADDITIONAL_RAMP_WAIT));
  857. if (rc == -EINTR) {
  858. pr_info("%s:bypass interrupted-ignore,port %d",
  859. __func__, port_id);
  860. pr_info("copp_idx %d\n", copp_idx);
  861. rc = 0;
  862. continue;
  863. }
  864. /* if dap bypass is set */
  865. if (ds2_dap_params_states.dap_bypass) {
  866. /* Turn off dap module */
  867. mod_inst_info.module_id = DS2_MODULE_ID;
  868. mod_inst_info.instance_id = INSTANCE_ID_0;
  869. adm_param_enable_v2(port_id, copp_idx,
  870. mod_inst_info,
  871. MODULE_DISABLE);
  872. /*
  873. * If custom stereo is on at the time of bypass,
  874. * switch off custom stereo on dap and turn on
  875. * custom stereo on qti channel mixer.
  876. */
  877. if (cs_onoff) {
  878. rc = dap_set_custom_stereo_onoff(i,
  879. !cs_onoff);
  880. if (rc < 0) {
  881. pr_info("%s:D_CS i %d,rc %d\n",
  882. __func__, i, rc);
  883. }
  884. rc = qti_set_custom_stereo_on(port_id,
  885. copp_idx,
  886. cs_onoff);
  887. if (rc < 0) {
  888. pr_info("%s:Q_CS port id 0x%x",
  889. __func__, port_id);
  890. pr_info("copp idx %d, rc %d\n",
  891. copp_idx, rc);
  892. }
  893. }
  894. mod_inst_info_sz =
  895. sizeof(struct module_instance_info) /
  896. sizeof(uint32_t);
  897. /* Turn on qti modules */
  898. for (j = 1; j < mod_list[0] * mod_inst_info_sz;
  899. j += mod_inst_info_sz) {
  900. if (!msm_ds2_dap_can_enable_module(
  901. mod_list[j]) ||
  902. mod_list[j] ==
  903. DS2_MODULE_ID)
  904. continue;
  905. pr_debug("%s: param enable %d\n",
  906. __func__, mod_list[j]);
  907. memcpy(&mod_inst_info, &mod_list[j],
  908. sizeof(mod_inst_info));
  909. adm_param_enable_v2(port_id, copp_idx,
  910. mod_inst_info,
  911. MODULE_ENABLE);
  912. }
  913. /* Add adm api to resend calibration on port */
  914. rc = msm_ds2_dap_send_cal_data(i);
  915. if (rc < 0) {
  916. /*
  917. * Not fatal,continue bypass operations.
  918. * Do not need to block playback
  919. */
  920. pr_info("%s:send cal err %d index %d\n",
  921. __func__, rc, i);
  922. }
  923. } else {
  924. /* Turn off qti modules */
  925. for (j = 1; j < mod_list[0] * mod_inst_info_sz;
  926. j += mod_inst_info_sz) {
  927. if (!msm_ds2_dap_can_enable_module(
  928. mod_list[j]) ||
  929. mod_list[j] ==
  930. DS2_MODULE_ID)
  931. continue;
  932. pr_debug("%s: param disable %d\n",
  933. __func__, mod_list[j]);
  934. memcpy(&mod_inst_info, &mod_list[j],
  935. sizeof(mod_inst_info));
  936. adm_param_enable_v2(port_id, copp_idx,
  937. mod_inst_info,
  938. MODULE_DISABLE);
  939. }
  940. /* Enable DAP modules */
  941. pr_debug("%s:DS2 param enable\n", __func__);
  942. mod_inst_info.module_id = DS2_MODULE_ID;
  943. mod_inst_info.instance_id = INSTANCE_ID_0;
  944. adm_param_enable_v2(port_id, copp_idx,
  945. mod_inst_info,
  946. MODULE_ENABLE);
  947. /*
  948. * If custom stereo is on at the time of dap on,
  949. * switch off custom stereo on qti channel mixer
  950. * and turn on custom stereo on DAP.
  951. * mixer(qti).
  952. */
  953. if (cs_onoff) {
  954. rc = qti_set_custom_stereo_on(port_id,
  955. copp_idx,
  956. !cs_onoff);
  957. if (rc < 0) {
  958. pr_info("%s:Q_CS port_id 0x%x",
  959. __func__, port_id);
  960. pr_info("copp_idx %d rc %d\n",
  961. copp_idx, rc);
  962. }
  963. rc = dap_set_custom_stereo_onoff(i,
  964. cs_onoff);
  965. if (rc < 0) {
  966. pr_info("%s:D_CS i %d,rc %d\n",
  967. __func__, i, rc);
  968. }
  969. }
  970. }
  971. rc = msm_ds2_dap_handle_bypass_wait(port_id, copp_idx,
  972. DOLBY_MODULE_ENABLE_PERIOD);
  973. if (rc == -EINTR) {
  974. pr_info("%s:bypass interrupted port_id %d copp_idx %d\n",
  975. __func__, port_id, copp_idx);
  976. /* Interrupted ignore bypass */
  977. rc = 0;
  978. continue;
  979. }
  980. /* set volume to unity gain after module on/off */
  981. rc = adm_set_volume(port_id, copp_idx,
  982. VOLUME_UNITY_GAIN);
  983. if (rc < 0) {
  984. /*
  985. * Not Fatal can continue bypass operations.
  986. * Do not need to block playback
  987. */
  988. pr_info("%s: Set vol port %d copp %d, rc %d\n",
  989. __func__, port_id, copp_idx, rc);
  990. rc = 0;
  991. }
  992. }
  993. }
  994. end:
  995. kfree(mod_list);
  996. pr_debug("%s:return rc=%d\n", __func__, rc);
  997. return rc;
  998. }
  999. static int msm_ds2_dap_send_end_point(int dev_map_idx, int endp_idx)
  1000. {
  1001. uint32_t offset = 0;
  1002. struct param_hdr_v3 param_hdr;
  1003. int cache_device = 0;
  1004. struct ds2_dap_params_s *ds2_ap_params_obj = NULL;
  1005. int32_t *modified_param = NULL;
  1006. int rc = 0;
  1007. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  1008. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  1009. rc = -EINVAL;
  1010. goto end;
  1011. }
  1012. memset(&param_hdr, 0, sizeof(param_hdr));
  1013. cache_device = dev_map[dev_map_idx].cache_dev;
  1014. ds2_ap_params_obj = &ds2_dap_params[cache_device];
  1015. pr_debug("%s: cache dev %d, dev_map_idx %d\n", __func__,
  1016. cache_device, dev_map_idx);
  1017. pr_debug("%s: endp - %pK %pK\n", __func__,
  1018. &ds2_dap_params[cache_device], ds2_ap_params_obj);
  1019. if (dev_map[dev_map_idx].port_id == DOLBY_INVALID_PORT_ID) {
  1020. pr_err("%s: invalid port\n", __func__);
  1021. rc = -EINVAL;
  1022. goto end;
  1023. }
  1024. if ((dev_map[dev_map_idx].copp_idx < 0) ||
  1025. (dev_map[dev_map_idx].copp_idx >= MAX_COPPS_PER_PORT)) {
  1026. pr_err("%s: Invalid copp_idx\n", __func__);
  1027. rc = -EINVAL;
  1028. goto end;
  1029. }
  1030. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  1031. param_hdr.instance_id = INSTANCE_ID_0;
  1032. param_hdr.param_id = DOLBY_PARAM_ID_INIT_ENDP;
  1033. param_hdr.param_size = sizeof(offset);
  1034. offset = ds2_ap_params_obj->params_val[ds2_dap_params_offset[endp_idx]];
  1035. pr_debug("%s: off %d, length %d\n", __func__,
  1036. ds2_dap_params_offset[endp_idx],
  1037. ds2_dap_params_length[endp_idx]);
  1038. pr_debug("%s: param 0x%x, param val %d\n", __func__,
  1039. ds2_dap_params_id[endp_idx], ds2_ap_params_obj->
  1040. params_val[ds2_dap_params_offset[endp_idx]]);
  1041. rc = adm_pack_and_set_one_pp_param(dev_map[dev_map_idx].port_id,
  1042. dev_map[dev_map_idx].copp_idx,
  1043. param_hdr, (u8 *) &offset);
  1044. if (rc) {
  1045. pr_err("%s: send dolby params failed rc %d\n", __func__, rc);
  1046. rc = -EINVAL;
  1047. }
  1048. modified_param = ds2_ap_params_obj->dap_params_modified;
  1049. if (modified_param == NULL) {
  1050. pr_err("%s: modified param structure invalid\n",
  1051. __func__);
  1052. rc = -EINVAL;
  1053. goto end;
  1054. }
  1055. if (msm_ds2_dap_check_is_param_modified(modified_param, endp_idx, 0))
  1056. ds2_ap_params_obj->dap_params_modified[endp_idx] = 0x00010001;
  1057. end:
  1058. return rc;
  1059. }
  1060. static int msm_ds2_dap_send_cached_params(int dev_map_idx,
  1061. int commit)
  1062. {
  1063. uint8_t *packed_params = NULL;
  1064. uint32_t packed_params_size = 0;
  1065. uint32_t param_size = 0;
  1066. struct param_hdr_v3 param_hdr;
  1067. uint32_t idx, i, ret = 0;
  1068. int cache_device = 0;
  1069. struct ds2_dap_params_s *ds2_ap_params_obj = NULL;
  1070. int32_t *modified_param = NULL;
  1071. if (dev_map_idx < 0 || dev_map_idx >= DS2_DEVICES_ALL) {
  1072. pr_err("%s: invalid dev map index %d\n", __func__, dev_map_idx);
  1073. ret = -EINVAL;
  1074. goto end;
  1075. }
  1076. memset(&param_hdr, 0, sizeof(param_hdr));
  1077. cache_device = dev_map[dev_map_idx].cache_dev;
  1078. /* Use off profile cache in only for soft bypass */
  1079. if (ds2_dap_params_states.dap_bypass_type == DAP_SOFT_BYPASS &&
  1080. ds2_dap_params_states.dap_bypass == true) {
  1081. pr_debug("%s: use bypass cache 0\n", __func__);
  1082. cache_device = dev_map[0].cache_dev;
  1083. }
  1084. ds2_ap_params_obj = &ds2_dap_params[cache_device];
  1085. pr_debug("%s: cached param - %pK %pK, cache_device %d\n", __func__,
  1086. &ds2_dap_params[cache_device], ds2_ap_params_obj,
  1087. cache_device);
  1088. /*
  1089. * Allocate the max space needed. This is enough space to hold the
  1090. * header for each param plus the total size of all the params.
  1091. */
  1092. packed_params_size = (sizeof(param_hdr) * (MAX_DS2_PARAMS - 1)) +
  1093. (TOTAL_LENGTH_DOLBY_PARAM * sizeof(uint32_t));
  1094. packed_params = kzalloc(packed_params_size, GFP_KERNEL);
  1095. if (!packed_params)
  1096. return -ENOMEM;
  1097. if (dev_map[dev_map_idx].port_id == DOLBY_INVALID_PORT_ID) {
  1098. pr_err("%s: invalid port id\n", __func__);
  1099. ret = -EINVAL;
  1100. goto end;
  1101. }
  1102. if ((dev_map[dev_map_idx].copp_idx < 0) ||
  1103. (dev_map[dev_map_idx].copp_idx >= MAX_COPPS_PER_PORT)) {
  1104. pr_err("%s: Invalid copp_idx\n", __func__);
  1105. ret = -EINVAL;
  1106. goto end;
  1107. }
  1108. packed_params_size = 0;
  1109. for (i = 0; i < (MAX_DS2_PARAMS-1); i++) {
  1110. /*get the pointer to the param modified array in the cache*/
  1111. modified_param = ds2_ap_params_obj->dap_params_modified;
  1112. if (modified_param == NULL) {
  1113. pr_err("%s: modified param structure invalid\n",
  1114. __func__);
  1115. ret = -EINVAL;
  1116. goto end;
  1117. }
  1118. if (!msm_ds2_dap_check_is_param_modified(modified_param, i,
  1119. commit))
  1120. continue;
  1121. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  1122. param_hdr.instance_id = INSTANCE_ID_0;
  1123. param_hdr.param_id = ds2_dap_params_id[i];
  1124. param_hdr.param_size =
  1125. ds2_dap_params_length[i] * sizeof(uint32_t);
  1126. idx = ds2_dap_params_offset[i];
  1127. ret = q6common_pack_pp_params(
  1128. packed_params + packed_params_size, &param_hdr,
  1129. (u8 *) &ds2_ap_params_obj->params_val[idx],
  1130. &param_size);
  1131. if (ret) {
  1132. pr_err("%s: Failed to pack params, error %d\n",
  1133. __func__, ret);
  1134. goto end;
  1135. }
  1136. packed_params_size += param_size;
  1137. }
  1138. pr_debug("%s: total packed param length: %d\n", __func__,
  1139. packed_params_size);
  1140. if (packed_params_size) {
  1141. ret = adm_set_pp_params(dev_map[dev_map_idx].port_id,
  1142. dev_map[dev_map_idx].copp_idx, NULL,
  1143. packed_params, packed_params_size);
  1144. if (ret) {
  1145. pr_err("%s: send dolby params failed ret %d\n",
  1146. __func__, ret);
  1147. ret = -EINVAL;
  1148. goto end;
  1149. }
  1150. for (i = 0; i < MAX_DS2_PARAMS-1; i++) {
  1151. /*get pointer to the param modified array in the cache*/
  1152. modified_param = ds2_ap_params_obj->dap_params_modified;
  1153. if (modified_param == NULL) {
  1154. pr_err("%s: modified param struct invalid\n",
  1155. __func__);
  1156. ret = -EINVAL;
  1157. goto end;
  1158. }
  1159. if (!msm_ds2_dap_check_is_param_modified(
  1160. modified_param, i, commit))
  1161. continue;
  1162. ds2_ap_params_obj->dap_params_modified[i] = 0x00010001;
  1163. }
  1164. }
  1165. end:
  1166. kfree(packed_params);
  1167. return ret;
  1168. }
  1169. static int msm_ds2_dap_commit_params(struct dolby_param_data *dolby_data,
  1170. int commit)
  1171. {
  1172. int ret = 0, i, idx;
  1173. struct ds2_dap_params_s *ds2_ap_params_obj = NULL;
  1174. int32_t *modified_param = NULL;
  1175. /* Do not commit params if in hard bypass */
  1176. if (ds2_dap_params_states.dap_bypass_type == DAP_HARD_BYPASS &&
  1177. ds2_dap_params_states.dap_bypass == true) {
  1178. pr_debug("%s: called in bypass", __func__);
  1179. ret = -EINVAL;
  1180. goto end;
  1181. }
  1182. for (idx = 0; idx < MAX_DS2_PARAMS; idx++) {
  1183. if (ds2_dap_params_id[idx] == DOLBY_PARAM_ID_INIT_ENDP)
  1184. break;
  1185. }
  1186. if (idx >= MAX_DS2_PARAMS || idx < 0) {
  1187. pr_err("%s: index of DS2 Param not found idx %d\n",
  1188. __func__, idx);
  1189. ret = -EINVAL;
  1190. goto end;
  1191. }
  1192. pr_debug("%s: found endp - idx %d 0x%x\n", __func__, idx,
  1193. ds2_dap_params_id[idx]);
  1194. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  1195. pr_debug("%s:dev[0x%x,0x%x],i:%d,active:%d,bypass:%d,type:%d\n",
  1196. __func__, dolby_data->device_id, dev_map[i].device_id,
  1197. i, dev_map[i].active, ds2_dap_params_states.dap_bypass,
  1198. ds2_dap_params_states.dap_bypass_type);
  1199. if (((dev_map[i].device_id & ds2_dap_params_states.device) ||
  1200. ((ds2_dap_params_states.dap_bypass_type ==
  1201. DAP_SOFT_BYPASS) &&
  1202. (ds2_dap_params_states.dap_bypass == true))) &&
  1203. (dev_map[i].active == true)) {
  1204. /*get ptr to the cache storing the params for device*/
  1205. if ((ds2_dap_params_states.dap_bypass_type ==
  1206. DAP_SOFT_BYPASS) &&
  1207. (ds2_dap_params_states.dap_bypass == true))
  1208. ds2_ap_params_obj =
  1209. &ds2_dap_params[dev_map[0].cache_dev];
  1210. else
  1211. ds2_ap_params_obj =
  1212. &ds2_dap_params[dev_map[i].cache_dev];
  1213. /*get the pointer to the param modified array in cache*/
  1214. modified_param = ds2_ap_params_obj->dap_params_modified;
  1215. if (modified_param == NULL) {
  1216. pr_err("%s: modified_param NULL\n", __func__);
  1217. ret = -EINVAL;
  1218. goto end;
  1219. }
  1220. /*
  1221. * Send the endp param if use cache is set
  1222. * or if param is modified
  1223. */
  1224. if (!commit || msm_ds2_dap_check_is_param_modified(
  1225. modified_param, idx, commit)) {
  1226. msm_ds2_dap_send_end_point(i, idx);
  1227. commit = 0;
  1228. }
  1229. ret = msm_ds2_dap_send_cached_params(i, commit);
  1230. if (ret < 0) {
  1231. pr_err("%s: send cached param %d\n",
  1232. __func__, ret);
  1233. goto end;
  1234. }
  1235. }
  1236. }
  1237. end:
  1238. return ret;
  1239. }
  1240. static int msm_ds2_dap_handle_commands(u32 cmd, void *arg)
  1241. {
  1242. int ret = 0, port_id = 0;
  1243. int32_t data;
  1244. struct dolby_param_data *dolby_data = (struct dolby_param_data *)arg;
  1245. if (get_user(data, &dolby_data->data[0])) {
  1246. pr_debug("%s error getting data\n", __func__);
  1247. ret = -EFAULT;
  1248. goto end;
  1249. }
  1250. pr_debug("%s: param_id %d,be_id %d,device_id 0x%x,length %d,data %d\n",
  1251. __func__, dolby_data->param_id, dolby_data->be_id,
  1252. dolby_data->device_id, dolby_data->length, data);
  1253. switch (dolby_data->param_id) {
  1254. case DAP_CMD_COMMIT_ALL:
  1255. msm_ds2_dap_commit_params(dolby_data, 0);
  1256. break;
  1257. case DAP_CMD_COMMIT_CHANGED:
  1258. msm_ds2_dap_commit_params(dolby_data, 1);
  1259. break;
  1260. case DAP_CMD_USE_CACHE_FOR_INIT:
  1261. ds2_dap_params_states.use_cache = data;
  1262. break;
  1263. case DAP_CMD_SET_BYPASS:
  1264. pr_debug("%s: bypass %d bypass type %d, data %d\n", __func__,
  1265. ds2_dap_params_states.dap_bypass,
  1266. ds2_dap_params_states.dap_bypass_type,
  1267. data);
  1268. /* Do not perform bypass operation if bypass state is same*/
  1269. if (ds2_dap_params_states.dap_bypass == data)
  1270. break;
  1271. ds2_dap_params_states.dap_bypass = data;
  1272. /* hard bypass */
  1273. if (ds2_dap_params_states.dap_bypass_type == DAP_HARD_BYPASS)
  1274. msm_ds2_dap_handle_bypass(dolby_data);
  1275. /* soft bypass */
  1276. msm_ds2_dap_commit_params(dolby_data, 0);
  1277. break;
  1278. case DAP_CMD_SET_BYPASS_TYPE:
  1279. if (data == true)
  1280. ds2_dap_params_states.dap_bypass_type =
  1281. DAP_HARD_BYPASS;
  1282. else
  1283. ds2_dap_params_states.dap_bypass_type =
  1284. DAP_SOFT_BYPASS;
  1285. pr_debug("%s: bypass type %d", __func__,
  1286. ds2_dap_params_states.dap_bypass_type);
  1287. break;
  1288. case DAP_CMD_SET_ACTIVE_DEVICE:
  1289. pr_debug("%s: DAP_CMD_SET_ACTIVE_DEVICE length %d\n",
  1290. __func__, dolby_data->length);
  1291. /* TODO: need to handle multiple instance*/
  1292. ds2_dap_params_states.device |= dolby_data->device_id;
  1293. port_id = msm_ds2_dap_get_port_id(
  1294. dolby_data->device_id,
  1295. dolby_data->be_id);
  1296. pr_debug("%s: device id 0x%x all_dev 0x%x port_id %d\n",
  1297. __func__, dolby_data->device_id,
  1298. ds2_dap_params_states.device, port_id);
  1299. msm_ds2_dap_update_dev_map_port_id(dolby_data->device_id,
  1300. port_id);
  1301. if (port_id == DOLBY_INVALID_PORT_ID) {
  1302. pr_err("%s: invalid port id %d\n", __func__, port_id);
  1303. ret = -EINVAL;
  1304. goto end;
  1305. }
  1306. break;
  1307. }
  1308. end:
  1309. return ret;
  1310. }
  1311. static int msm_ds2_dap_set_param(u32 cmd, void *arg)
  1312. {
  1313. int rc = 0, idx, i, j, off, port_id = 0, cdev = 0;
  1314. int32_t num_device = 0;
  1315. int32_t data = 0;
  1316. int32_t dev_arr[DS2_DSP_SUPPORTED_ENDP_DEVICE] = {0};
  1317. struct dolby_param_data *dolby_data = (struct dolby_param_data *)arg;
  1318. rc = msm_ds2_dap_update_num_devices(dolby_data, &num_device, dev_arr,
  1319. DS2_DSP_SUPPORTED_ENDP_DEVICE);
  1320. if (num_device == 0 || rc < 0) {
  1321. pr_err("%s: num devices 0\n", __func__);
  1322. rc = -EINVAL;
  1323. goto end;
  1324. }
  1325. for (i = 0; i < num_device; i++) {
  1326. port_id = msm_ds2_dap_get_port_id(dev_arr[i],
  1327. dolby_data->be_id);
  1328. if (port_id != DOLBY_INVALID_PORT_ID)
  1329. msm_ds2_dap_update_dev_map_port_id(dev_arr[i], port_id);
  1330. cdev = msm_ds2_dap_map_device_to_dolby_cache_devices(
  1331. dev_arr[i]);
  1332. if (cdev < 0 || cdev >= DOLBY_MAX_CACHE) {
  1333. pr_err("%s: Invalid cache device %d for device 0x%x\n",
  1334. __func__, cdev, dev_arr[i]);
  1335. rc = -EINVAL;
  1336. goto end;
  1337. }
  1338. pr_debug("%s:port:%d,be:%d,dev:0x%x,cdev:%d,param:0x%x,len:%d\n"
  1339. , __func__, port_id, dolby_data->be_id, dev_arr[i],
  1340. cdev, dolby_data->param_id, dolby_data->length);
  1341. for (idx = 0; idx < MAX_DS2_PARAMS; idx++) {
  1342. /*paramid from user space*/
  1343. if (dolby_data->param_id == ds2_dap_params_id[idx])
  1344. break;
  1345. }
  1346. if (idx > MAX_DS2_PARAMS-1) {
  1347. pr_err("%s: invalid param id 0x%x at idx %d\n",
  1348. __func__, dolby_data->param_id, idx);
  1349. rc = -EINVAL;
  1350. goto end;
  1351. }
  1352. off = ds2_dap_params_offset[idx];
  1353. if ((dolby_data->length <= 0) ||
  1354. (dolby_data->length > TOTAL_LENGTH_DS2_PARAM - off)) {
  1355. pr_err("%s: invalid length %d at idx %d\n",
  1356. __func__, dolby_data->length, idx);
  1357. rc = -EINVAL;
  1358. goto end;
  1359. }
  1360. /* cache the parameters */
  1361. ds2_dap_params[cdev].dap_params_modified[idx] += 1;
  1362. for (j = 0; j < dolby_data->length; j++) {
  1363. if (get_user(data, &dolby_data->data[j])) {
  1364. pr_debug("%s:error getting data\n", __func__);
  1365. rc = -EFAULT;
  1366. goto end;
  1367. }
  1368. ds2_dap_params[cdev].params_val[off + j] = data;
  1369. pr_debug("%s:off %d,val[i/p:o/p]-[%d / %d]\n",
  1370. __func__, off, data,
  1371. ds2_dap_params[cdev].
  1372. params_val[off + j]);
  1373. }
  1374. }
  1375. end:
  1376. return rc;
  1377. }
  1378. static int msm_ds2_dap_get_param(u32 cmd, void *arg)
  1379. {
  1380. int rc = 0, i, port_id = 0, copp_idx = -1;
  1381. struct dolby_param_data *dolby_data = (struct dolby_param_data *)arg;
  1382. int32_t *params_value = NULL;
  1383. uint32_t params_length = DOLBY_MAX_LENGTH_INDIVIDUAL_PARAM *
  1384. sizeof(uint32_t);
  1385. uint32_t param_payload_len =
  1386. DOLBY_PARAM_PAYLOAD_SIZE * sizeof(uint32_t);
  1387. struct param_hdr_v3 param_hdr;
  1388. /* Return error on get param in soft or hard bypass */
  1389. if (ds2_dap_params_states.dap_bypass == true) {
  1390. pr_err("%s: called in bypass_type %d bypass %d\n", __func__,
  1391. ds2_dap_params_states.dap_bypass_type,
  1392. ds2_dap_params_states.dap_bypass);
  1393. rc = -EINVAL;
  1394. goto end;
  1395. }
  1396. /* Return if invalid length */
  1397. if ((dolby_data->length >
  1398. (DOLBY_MAX_LENGTH_INDIVIDUAL_PARAM - DOLBY_PARAM_PAYLOAD_SIZE)) ||
  1399. (dolby_data->length <= 0)) {
  1400. pr_err("Invalid length %d", dolby_data->length);
  1401. rc = -EINVAL;
  1402. goto end;
  1403. }
  1404. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  1405. if ((dev_map[i].active) &&
  1406. (dev_map[i].device_id & dolby_data->device_id)) {
  1407. port_id = dev_map[i].port_id;
  1408. copp_idx = dev_map[i].copp_idx;
  1409. break;
  1410. }
  1411. }
  1412. if (port_id == DOLBY_INVALID_PORT_ID) {
  1413. pr_err("%s: Invalid port\n", __func__);
  1414. rc = -EINVAL;
  1415. goto end;
  1416. }
  1417. if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  1418. pr_err("%s: Invalid copp_idx\n", __func__);
  1419. rc = -EINVAL;
  1420. goto end;
  1421. }
  1422. pr_debug("%s: port_id 0x%x, copp_idx %d, dev_map[i].device_id %x\n",
  1423. __func__, port_id, copp_idx, dev_map[i].device_id);
  1424. params_value = kzalloc(params_length + param_payload_len,
  1425. GFP_KERNEL);
  1426. if (!params_value)
  1427. return -ENOMEM;
  1428. memset(&param_hdr, 0, sizeof(param_hdr));
  1429. if (dolby_data->param_id == DOLBY_PARAM_ID_VER) {
  1430. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  1431. param_hdr.instance_id = INSTANCE_ID_0;
  1432. param_hdr.param_id = DOLBY_PARAM_ID_VER;
  1433. param_hdr.param_size = params_length + param_payload_len;
  1434. } else {
  1435. for (i = 0; i < MAX_DS2_PARAMS; i++)
  1436. if (ds2_dap_params_id[i] ==
  1437. dolby_data->param_id)
  1438. break;
  1439. if (i > MAX_DS2_PARAMS-1) {
  1440. pr_err("%s: invalid param id 0x%x at id %d\n", __func__,
  1441. dolby_data->param_id, i);
  1442. rc = -EINVAL;
  1443. goto end;
  1444. } else {
  1445. params_length =
  1446. ds2_dap_params_length[i] * sizeof(uint32_t);
  1447. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  1448. param_hdr.instance_id = INSTANCE_ID_0;
  1449. param_hdr.param_id = ds2_dap_params_id[i];
  1450. param_hdr.param_size =
  1451. params_length + param_payload_len;
  1452. }
  1453. }
  1454. rc = adm_get_pp_params(port_id, copp_idx, ADM_CLIENT_ID_DEFAULT, NULL,
  1455. &param_hdr, (u8 *) params_value);
  1456. if (rc) {
  1457. pr_err("%s: get parameters failed rc %d\n", __func__, rc);
  1458. rc = -EINVAL;
  1459. goto end;
  1460. }
  1461. if (copy_to_user((void __user *) dolby_data->data,
  1462. &params_value[DOLBY_PARAM_PAYLOAD_SIZE],
  1463. (dolby_data->length * sizeof(uint32_t)))) {
  1464. pr_err("%s: error getting param\n", __func__);
  1465. rc = -EFAULT;
  1466. goto end;
  1467. }
  1468. end:
  1469. kfree(params_value);
  1470. return rc;
  1471. }
  1472. static int msm_ds2_dap_param_visualizer_control_get(u32 cmd, void *arg)
  1473. {
  1474. int32_t *visualizer_data = NULL;
  1475. int i = 0, ret = 0, port_id = -1, cache_dev = -1, copp_idx = -1;
  1476. int32_t *update_visualizer_data = NULL;
  1477. struct dolby_param_data *dolby_data = (struct dolby_param_data *)arg;
  1478. uint32_t offset, length, params_length;
  1479. uint32_t param_payload_len =
  1480. DOLBY_PARAM_PAYLOAD_SIZE * sizeof(uint32_t);
  1481. struct param_hdr_v3 param_hdr;
  1482. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  1483. if ((dev_map[i].active)) {
  1484. port_id = dev_map[i].port_id;
  1485. cache_dev = dev_map[i].cache_dev;
  1486. copp_idx = dev_map[i].copp_idx;
  1487. break;
  1488. }
  1489. }
  1490. if (port_id == DOLBY_INVALID_PORT_ID ||
  1491. (copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  1492. ret = 0;
  1493. dolby_data->length = 0;
  1494. pr_err("%s: no device active\n", __func__);
  1495. goto end;
  1496. }
  1497. memset(&param_hdr, 0, sizeof(param_hdr));
  1498. length = ds2_dap_params[cache_dev].params_val[DOLBY_PARAM_VCNB_OFFSET];
  1499. if (length > DOLBY_PARAM_VCNB_MAX_LENGTH || length <= 0) {
  1500. ret = 0;
  1501. dolby_data->length = 0;
  1502. pr_err("%s Incorrect VCNB length", __func__);
  1503. return -EINVAL;
  1504. }
  1505. params_length = (2*length + DOLBY_VIS_PARAM_HEADER_SIZE) *
  1506. sizeof(uint32_t);
  1507. visualizer_data = kzalloc(params_length, GFP_KERNEL);
  1508. if (!visualizer_data) {
  1509. pr_err("%s: params memory alloc failed\n", __func__);
  1510. ret = -ENOMEM;
  1511. dolby_data->length = 0;
  1512. goto end;
  1513. }
  1514. memset(visualizer_data, 0x0, params_length);
  1515. /* Return error on get param in soft or hard bypass */
  1516. if (ds2_dap_params_states.dap_bypass == true) {
  1517. pr_debug("%s: visualizer called in bypass, return 0\n",
  1518. __func__);
  1519. ret = 0;
  1520. dolby_data->length = 0;
  1521. goto end;
  1522. }
  1523. offset = 0;
  1524. params_length = length * sizeof(uint32_t);
  1525. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  1526. param_hdr.instance_id = INSTANCE_ID_0;
  1527. param_hdr.param_id = DOLBY_PARAM_ID_VCBG;
  1528. param_hdr.param_size = length * sizeof(uint32_t) + param_payload_len;
  1529. ret = adm_get_pp_params(port_id, copp_idx, ADM_CLIENT_ID_DEFAULT, NULL,
  1530. &param_hdr,
  1531. (((char *) (visualizer_data)) + offset));
  1532. if (ret) {
  1533. pr_err("%s: get parameters failed ret %d\n", __func__, ret);
  1534. ret = -EINVAL;
  1535. dolby_data->length = 0;
  1536. goto end;
  1537. }
  1538. offset = length * sizeof(uint32_t);
  1539. param_hdr.module_id = DOLBY_BUNDLE_MODULE_ID;
  1540. param_hdr.instance_id = INSTANCE_ID_0;
  1541. param_hdr.param_id = DOLBY_PARAM_ID_VCBE;
  1542. param_hdr.param_size = length * sizeof(uint32_t) + param_payload_len;
  1543. ret = adm_get_pp_params(port_id, copp_idx, ADM_CLIENT_ID_DEFAULT, NULL,
  1544. &param_hdr,
  1545. (((char *) (visualizer_data)) + offset));
  1546. if (ret) {
  1547. pr_err("%s: get parameters failed ret %d\n", __func__, ret);
  1548. ret = -EINVAL;
  1549. dolby_data->length = 0;
  1550. goto end;
  1551. }
  1552. update_visualizer_data = visualizer_data;
  1553. dolby_data->length = 2 * length;
  1554. if (copy_to_user((void *)dolby_data->data,
  1555. (void *)update_visualizer_data,
  1556. (dolby_data->length * sizeof(uint32_t)))) {
  1557. pr_err("%s: copy to user failed for data\n", __func__);
  1558. dolby_data->length = 0;
  1559. ret = -EFAULT;
  1560. goto end;
  1561. }
  1562. end:
  1563. kfree(visualizer_data);
  1564. return ret;
  1565. }
  1566. int msm_ds2_dap_set_security_control(u32 cmd, void *arg)
  1567. {
  1568. struct dolby_param_license *dolby_license =
  1569. ((struct dolby_param_license *)arg);
  1570. pr_debug("%s: dmid %d license key %d\n", __func__,
  1571. dolby_license->dmid, dolby_license->license_key);
  1572. core_set_dolby_manufacturer_id(dolby_license->dmid);
  1573. core_set_license(dolby_license->license_key, DOLBY_DS1_LICENSE_ID);
  1574. return 0;
  1575. }
  1576. int msm_ds2_dap_update_port_parameters(struct snd_hwdep *hw, struct file *file,
  1577. bool open)
  1578. {
  1579. int i = 0, dev_id = 0;
  1580. pr_debug("%s: open %d\n", __func__, open);
  1581. ds2_dap_params_states.node_opened = open;
  1582. ds2_dap_params_states.dap_bypass = true;
  1583. ds2_dap_params_states.dap_bypass_type = 0;
  1584. ds2_dap_params_states.use_cache = 0;
  1585. ds2_dap_params_states.device = 0;
  1586. ds2_dap_params_states.custom_stereo_onoff = 0;
  1587. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  1588. if (i == 0)
  1589. dev_map[i].device_id = 0;
  1590. else {
  1591. dev_id = (1 << (i-1));
  1592. if (all_supported_devices & dev_id)
  1593. dev_map[i].device_id = dev_id;
  1594. else
  1595. continue;
  1596. }
  1597. dev_map[i].cache_dev =
  1598. msm_ds2_dap_map_device_to_dolby_cache_devices(
  1599. dev_map[i].device_id);
  1600. if (dev_map[i].cache_dev < 0 ||
  1601. dev_map[i].cache_dev >= DOLBY_MAX_CACHE)
  1602. pr_err("%s: Invalid cache device %d for device 0x%x\n",
  1603. __func__,
  1604. dev_map[i].cache_dev,
  1605. dev_map[i].device_id);
  1606. dev_map[i].port_id = -1;
  1607. dev_map[i].active = false;
  1608. dev_map[i].stream_ref_count = 0;
  1609. dev_map[i].cal_data = NULL;
  1610. dev_map[i].copp_idx = -1;
  1611. pr_debug("%s: device_id 0x%x, cache_dev %d act %d\n", __func__,
  1612. dev_map[i].device_id, dev_map[i].cache_dev,
  1613. dev_map[i].active);
  1614. }
  1615. return 0;
  1616. }
  1617. int msm_ds2_dap_ioctl_shared(struct snd_hwdep *hw, struct file *file,
  1618. u32 cmd, void *arg)
  1619. {
  1620. int ret = 0;
  1621. pr_debug("%s: cmd: 0x%x\n", __func__, cmd);
  1622. switch (cmd) {
  1623. case SNDRV_DEVDEP_DAP_IOCTL_SET_PARAM:
  1624. ret = msm_ds2_dap_set_param(cmd, arg);
  1625. break;
  1626. case SNDRV_DEVDEP_DAP_IOCTL_GET_PARAM:
  1627. ret = msm_ds2_dap_get_param(cmd, arg);
  1628. break;
  1629. case SNDRV_DEVDEP_DAP_IOCTL_DAP_COMMAND:
  1630. ret = msm_ds2_dap_handle_commands(cmd, arg);
  1631. break;
  1632. case SNDRV_DEVDEP_DAP_IOCTL_DAP_LICENSE:
  1633. ret = msm_ds2_dap_set_security_control(cmd, arg);
  1634. break;
  1635. case SNDRV_DEVDEP_DAP_IOCTL_GET_VISUALIZER:
  1636. ret = msm_ds2_dap_param_visualizer_control_get(cmd, arg);
  1637. break;
  1638. default:
  1639. pr_err("%s: called with invalid control 0x%x\n", __func__, cmd);
  1640. ret = -EINVAL;
  1641. }
  1642. return ret;
  1643. }
  1644. int msm_ds2_dap_ioctl(struct snd_hwdep *hw, struct file *file,
  1645. u32 cmd, void *arg)
  1646. {
  1647. int ret = 0;
  1648. pr_debug("%s: cmd: 0x%x\n", __func__, cmd);
  1649. if (!arg) {
  1650. pr_err("%s: Invalid params event status\n", __func__);
  1651. ret = -EINVAL;
  1652. goto end;
  1653. }
  1654. switch (cmd) {
  1655. case SNDRV_DEVDEP_DAP_IOCTL_SET_PARAM:
  1656. case SNDRV_DEVDEP_DAP_IOCTL_DAP_COMMAND: {
  1657. struct dolby_param_data dolby_data;
  1658. if (copy_from_user((void *)&dolby_data, (void *)arg,
  1659. sizeof(struct dolby_param_data))) {
  1660. pr_err("%s: Copy from user failed\n", __func__);
  1661. ret = -EFAULT;
  1662. goto end;
  1663. }
  1664. ret = msm_ds2_dap_ioctl_shared(hw, file, cmd, &dolby_data);
  1665. break;
  1666. }
  1667. case SNDRV_DEVDEP_DAP_IOCTL_DAP_LICENSE: {
  1668. struct dolby_param_license dolby_license;
  1669. if (copy_from_user((void *)&dolby_license, (void *)arg,
  1670. sizeof(struct dolby_param_license))) {
  1671. pr_err("%s: Copy from user failed\n", __func__);
  1672. ret = -EFAULT;
  1673. goto end;
  1674. }
  1675. ret = msm_ds2_dap_ioctl_shared(hw, file, cmd, &dolby_license);
  1676. break;
  1677. }
  1678. case SNDRV_DEVDEP_DAP_IOCTL_GET_PARAM:
  1679. case SNDRV_DEVDEP_DAP_IOCTL_GET_VISUALIZER: {
  1680. struct dolby_param_data dolby_data;
  1681. if (copy_from_user((void *)&dolby_data, (void *)arg,
  1682. sizeof(struct dolby_param_data))) {
  1683. pr_err("%s: Copy from user failed\n", __func__);
  1684. ret = -EFAULT;
  1685. goto end;
  1686. }
  1687. ret = msm_ds2_dap_ioctl_shared(hw, file, cmd, &dolby_data);
  1688. if (ret < 0)
  1689. pr_err("%s: ioctl cmd %d returned err %d\n",
  1690. __func__, cmd, ret);
  1691. if (copy_to_user((void *)arg, &dolby_data,
  1692. sizeof(struct dolby_param_data))) {
  1693. pr_err("%s: Copy to user failed\n", __func__);
  1694. ret = -EFAULT;
  1695. goto end;
  1696. }
  1697. break;
  1698. }
  1699. default:
  1700. pr_err("%s: called with invalid control 0x%x\n", __func__, cmd);
  1701. ret = -EINVAL;
  1702. }
  1703. end:
  1704. return ret;
  1705. }
  1706. #ifdef CONFIG_COMPAT
  1707. int msm_ds2_dap_compat_ioctl(struct snd_hwdep *hw, struct file *file,
  1708. u32 cmd, void *arg)
  1709. {
  1710. int ret = 0;
  1711. pr_debug("%s: cmd: 0x%x\n", __func__, cmd);
  1712. switch (cmd) {
  1713. case SNDRV_DEVDEP_DAP_IOCTL_SET_PARAM32:
  1714. cmd = SNDRV_DEVDEP_DAP_IOCTL_SET_PARAM;
  1715. goto handle_set_ioctl;
  1716. case SNDRV_DEVDEP_DAP_IOCTL_DAP_COMMAND32:
  1717. cmd = SNDRV_DEVDEP_DAP_IOCTL_DAP_COMMAND;
  1718. handle_set_ioctl:
  1719. {
  1720. struct dolby_param_data32 dolby_data32;
  1721. struct dolby_param_data dolby_data;
  1722. memset(&dolby_data32, 0, sizeof(dolby_data32));
  1723. memset(&dolby_data, 0, sizeof(dolby_data));
  1724. if (copy_from_user(&dolby_data32, (void *)arg,
  1725. sizeof(struct dolby_param_data32))) {
  1726. pr_err("%s: Copy from user failed\n", __func__);
  1727. ret = -EFAULT;
  1728. goto end;
  1729. }
  1730. dolby_data.version = dolby_data32.version;
  1731. dolby_data.device_id = dolby_data32.device_id;
  1732. dolby_data.be_id = dolby_data32.be_id;
  1733. dolby_data.param_id = dolby_data32.param_id;
  1734. dolby_data.length = dolby_data32.length;
  1735. dolby_data.data = compat_ptr(dolby_data32.data);
  1736. ret = msm_ds2_dap_ioctl_shared(hw, file, cmd, &dolby_data);
  1737. break;
  1738. }
  1739. case SNDRV_DEVDEP_DAP_IOCTL_GET_PARAM32:
  1740. cmd = SNDRV_DEVDEP_DAP_IOCTL_GET_PARAM;
  1741. goto handle_get_ioctl;
  1742. case SNDRV_DEVDEP_DAP_IOCTL_GET_VISUALIZER32:
  1743. cmd = SNDRV_DEVDEP_DAP_IOCTL_GET_VISUALIZER;
  1744. handle_get_ioctl:
  1745. {
  1746. struct dolby_param_data32 dolby_data32;
  1747. struct dolby_param_data dolby_data;
  1748. memset(&dolby_data32, 0, sizeof(dolby_data32));
  1749. memset(&dolby_data, 0, sizeof(dolby_data));
  1750. if (copy_from_user(&dolby_data32, (void *)arg,
  1751. sizeof(struct dolby_param_data32))) {
  1752. pr_err("%s: Copy from user failed\n", __func__);
  1753. ret = -EFAULT;
  1754. goto end;
  1755. }
  1756. dolby_data.version = dolby_data32.version;
  1757. dolby_data.device_id = dolby_data32.device_id;
  1758. dolby_data.be_id = dolby_data32.be_id;
  1759. dolby_data.param_id = dolby_data32.param_id;
  1760. dolby_data.length = dolby_data32.length;
  1761. dolby_data.data = compat_ptr(dolby_data32.data);
  1762. ret = msm_ds2_dap_ioctl_shared(hw, file, cmd, &dolby_data);
  1763. if (ret < 0)
  1764. pr_err("%s: ioctl cmd %d, returned err %d\n",
  1765. __func__, cmd, ret);
  1766. dolby_data32.length = dolby_data.length;
  1767. if (copy_to_user((void *)arg, &dolby_data32,
  1768. sizeof(struct dolby_param_data32))) {
  1769. pr_err("%s: Copy to user failed\n", __func__);
  1770. ret = -EFAULT;
  1771. goto end;
  1772. }
  1773. break;
  1774. }
  1775. case SNDRV_DEVDEP_DAP_IOCTL_DAP_LICENSE32: {
  1776. struct dolby_param_license32 dolby_license32;
  1777. struct dolby_param_license dolby_license;
  1778. cmd = SNDRV_DEVDEP_DAP_IOCTL_DAP_LICENSE;
  1779. if (copy_from_user((void *)&dolby_license32, (void *)arg,
  1780. sizeof(struct dolby_param_license32))) {
  1781. pr_err("%s: Copy from user failed\n", __func__);
  1782. ret = -EFAULT;
  1783. goto end;
  1784. }
  1785. dolby_license.dmid = dolby_license32.dmid;
  1786. dolby_license.license_key = dolby_license32.license_key;
  1787. ret = msm_ds2_dap_ioctl_shared(hw, file, cmd, &dolby_license);
  1788. break;
  1789. }
  1790. default:
  1791. pr_err("%s: called with invalid control 0x%x\n",
  1792. __func__, cmd);
  1793. ret = -EINVAL;
  1794. }
  1795. end:
  1796. return ret;
  1797. }
  1798. #endif
  1799. int msm_ds2_dap_init(int port_id, int copp_idx, int channels,
  1800. bool is_custom_stereo_on)
  1801. {
  1802. int ret = 0, idx = -1, i;
  1803. struct dolby_param_data dolby_data;
  1804. struct audproc_softvolume_params softvol = {
  1805. .period = DOLBY_SOFT_VOLUME_PERIOD,
  1806. .step = DOLBY_SOFT_VOLUME_STEP,
  1807. .rampingcurve = DOLBY_SOFT_VOLUME_CURVE_EXP,
  1808. };
  1809. pr_debug("%s: port id %d, copp_idx %d\n", __func__, port_id, copp_idx);
  1810. if (port_id != DOLBY_INVALID_PORT_ID) {
  1811. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  1812. if ((dev_map[i].port_id == port_id) &&
  1813. /* device part of active device */
  1814. (dev_map[i].device_id &
  1815. ds2_dap_params_states.device)) {
  1816. idx = i;
  1817. /* Give priority to headset in case of
  1818. * combo device
  1819. */
  1820. if (dev_map[i].device_id == SPEAKER)
  1821. continue;
  1822. else
  1823. break;
  1824. }
  1825. }
  1826. if (idx < 0) {
  1827. pr_err("%s: invalid index for port %d\n",
  1828. __func__, port_id);
  1829. ret = -EINVAL;
  1830. goto end;
  1831. }
  1832. pr_debug("%s:index %d, dev[0x%x,0x%x]\n", __func__, idx,
  1833. dev_map[idx].device_id, ds2_dap_params_states.device);
  1834. dev_map[idx].active = true;
  1835. dev_map[idx].copp_idx = copp_idx;
  1836. dolby_data.param_id = DOLBY_COMMIT_ALL_TO_DSP;
  1837. dolby_data.length = 0;
  1838. dolby_data.data = NULL;
  1839. dolby_data.device_id = dev_map[idx].device_id;
  1840. pr_debug("%s: idx %d, active %d, dev id 0x%x, ref count %d\n",
  1841. __func__, idx, dev_map[idx].active,
  1842. dev_map[idx].device_id,
  1843. dev_map[idx].stream_ref_count);
  1844. if (dev_map[idx].stream_ref_count == 0) {
  1845. /*perform next 3 func only if hard bypass enabled*/
  1846. if (ds2_dap_params_states.dap_bypass_type ==
  1847. DAP_HARD_BYPASS) {
  1848. ret = msm_ds2_dap_alloc_and_store_cal_data(idx,
  1849. ADM_PATH_PLAYBACK, 0);
  1850. if (ret < 0) {
  1851. pr_err("%s: Failed to alloc and store cal data for idx %d, device %d, copp_idx %d",
  1852. __func__,
  1853. idx, dev_map[idx].device_id,
  1854. dev_map[idx].copp_idx);
  1855. dev_map[idx].active = false;
  1856. dev_map[idx].copp_idx = -1;
  1857. goto end;
  1858. }
  1859. ret = adm_set_softvolume(port_id, copp_idx,
  1860. &softvol);
  1861. if (ret < 0) {
  1862. pr_err("%s: Soft volume ret error %d\n",
  1863. __func__, ret);
  1864. dev_map[idx].active = false;
  1865. dev_map[idx].copp_idx = -1;
  1866. goto end;
  1867. }
  1868. ret = msm_ds2_dap_init_modules_in_topology(
  1869. idx);
  1870. if (ret < 0) {
  1871. pr_err("%s: Failed to init modules in topolofy for idx %d, device %d, copp_idx %d\n",
  1872. __func__, idx,
  1873. dev_map[idx].device_id,
  1874. dev_map[idx].copp_idx);
  1875. dev_map[idx].active = false;
  1876. dev_map[idx].copp_idx = -1;
  1877. goto end;
  1878. }
  1879. }
  1880. ret = msm_ds2_dap_commit_params(&dolby_data, 0);
  1881. if (ret < 0) {
  1882. pr_debug("%s: commit params ret %d\n",
  1883. __func__, ret);
  1884. ret = 0;
  1885. }
  1886. }
  1887. dev_map[idx].stream_ref_count++;
  1888. if (is_custom_stereo_on) {
  1889. ds2_dap_params_states.custom_stereo_onoff =
  1890. is_custom_stereo_on;
  1891. set_custom_stereo_onoff(idx,
  1892. is_custom_stereo_on);
  1893. }
  1894. }
  1895. end:
  1896. return ret;
  1897. }
  1898. void msm_ds2_dap_deinit(int port_id)
  1899. {
  1900. /*
  1901. * Get the active port corrresponding to the active device
  1902. * Check if this is same as incoming port
  1903. * Set it to invalid
  1904. */
  1905. int idx = -1, i;
  1906. pr_debug("%s: port_id %d\n", __func__, port_id);
  1907. if (port_id != DOLBY_INVALID_PORT_ID) {
  1908. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  1909. /* Active port */
  1910. if ((dev_map[i].port_id == port_id) &&
  1911. /* device part of active device */
  1912. (dev_map[i].device_id &
  1913. ds2_dap_params_states.device) &&
  1914. /*
  1915. * Need this check to avoid race condition of
  1916. * active device being set and playback
  1917. * instance opened
  1918. */
  1919. /* active device*/
  1920. dev_map[i].active) {
  1921. idx = i;
  1922. if (dev_map[i].device_id == SPEAKER)
  1923. continue;
  1924. else
  1925. break;
  1926. }
  1927. }
  1928. if (idx < 0) {
  1929. pr_err("%s: invalid index for port %d\n",
  1930. __func__, port_id);
  1931. return;
  1932. }
  1933. pr_debug("%s:index %d, dev [0x%x, 0x%x]\n", __func__, idx,
  1934. dev_map[idx].device_id, ds2_dap_params_states.device);
  1935. dev_map[idx].stream_ref_count--;
  1936. if (dev_map[idx].stream_ref_count == 0) {
  1937. /*perform next func only if hard bypass enabled*/
  1938. if (ds2_dap_params_states.dap_bypass_type ==
  1939. DAP_HARD_BYPASS) {
  1940. msm_ds2_dap_free_cal_data(idx);
  1941. }
  1942. ds2_dap_params_states.device &= ~dev_map[idx].device_id;
  1943. dev_map[idx].active = false;
  1944. dev_map[idx].copp_idx = -1;
  1945. }
  1946. pr_debug("%s:idx %d, active %d, dev id 0x%x ref count %d\n",
  1947. __func__, idx, dev_map[idx].active,
  1948. dev_map[idx].device_id, dev_map[idx].stream_ref_count);
  1949. }
  1950. }
  1951. int msm_ds2_dap_set_custom_stereo_onoff(int port_id, int copp_idx,
  1952. bool is_custom_stereo_enabled)
  1953. {
  1954. int idx = -1, rc = 0, i;
  1955. pr_debug("%s: port_id %d\n", __func__, port_id);
  1956. if (port_id != DOLBY_INVALID_PORT_ID) {
  1957. for (i = 0; i < DS2_DEVICES_ALL; i++) {
  1958. if ((dev_map[i].port_id == port_id) &&
  1959. /* device part of active device */
  1960. (dev_map[i].device_id &
  1961. ds2_dap_params_states.device)) {
  1962. idx = i;
  1963. if (dev_map[i].device_id == SPEAKER)
  1964. continue;
  1965. else
  1966. break;
  1967. }
  1968. }
  1969. if (idx < 0) {
  1970. pr_err("%s: invalid index for port %d\n",
  1971. __func__, port_id);
  1972. return rc;
  1973. }
  1974. ds2_dap_params_states.custom_stereo_onoff =
  1975. is_custom_stereo_enabled;
  1976. rc = set_custom_stereo_onoff(idx,
  1977. is_custom_stereo_enabled);
  1978. if (rc < 0) {
  1979. pr_err("%s: Custom stereo err %d on port %d\n",
  1980. __func__, rc, port_id);
  1981. }
  1982. }
  1983. return rc;
  1984. }