audio_policy.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. /*
  2. * Copyright (c) 2016 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief audio policy.
  9. */
  10. #include <os_common_api.h>
  11. #include <mem_manager.h>
  12. #include <msg_manager.h>
  13. #include <audio_system.h>
  14. #include <audio_policy.h>
  15. #include <string.h>
  16. #include <stdlib.h>
  17. #include <stdio.h>
  18. #include <audio_device.h>
  19. #include <media_type.h>
  20. #define SYS_LOG_NO_NEWLINE
  21. #ifdef SYS_LOG_DOMAIN
  22. #undef SYS_LOG_DOMAIN
  23. #endif
  24. #define SYS_LOG_DOMAIN "audio policy"
  25. static const struct audio_policy_t *user_policy;
  26. int audio_policy_get_out_channel_type(uint8_t stream_type)
  27. {
  28. int out_channel = AUDIO_CHANNEL_DAC;
  29. if (user_policy)
  30. out_channel = user_policy->audio_out_channel;
  31. return out_channel;
  32. }
  33. int audio_policy_get_out_channel_id(uint8_t stream_type)
  34. {
  35. int out_channel_id = AOUT_FIFO_DAC0;
  36. return out_channel_id;
  37. }
  38. int audio_policy_get_out_channel_mode(uint8_t stream_type)
  39. {
  40. int out_channel_mode = AUDIO_DMA_MODE;
  41. switch (stream_type) {
  42. case AUDIO_STREAM_TTS:
  43. case AUDIO_STREAM_TIP:
  44. case AUDIO_STREAM_LINEIN:
  45. case AUDIO_STREAM_SPDIF_IN:
  46. case AUDIO_STREAM_FM:
  47. case AUDIO_STREAM_I2SRX_IN:
  48. case AUDIO_STREAM_MIC_IN:
  49. case AUDIO_STREAM_MUSIC:
  50. case AUDIO_STREAM_LOCAL_MUSIC:
  51. case AUDIO_STREAM_USOUND:
  52. case AUDIO_STREAM_VOICE:
  53. out_channel_mode = AUDIO_DMA_MODE;
  54. break;
  55. }
  56. return out_channel_mode;
  57. }
  58. int audio_policy_get_out_pcm_channel_num(uint8_t stream_type)
  59. {
  60. int channel_num = 0;
  61. switch (stream_type) {
  62. case AUDIO_STREAM_TTS:
  63. case AUDIO_STREAM_TIP:
  64. break;
  65. case AUDIO_STREAM_VOICE:
  66. break;
  67. case AUDIO_STREAM_MIC_IN:
  68. break;
  69. default: /* decoder decided */
  70. channel_num = 1;
  71. break;
  72. }
  73. if ((user_policy && (user_policy->audio_out_channel & AUDIO_CHANNEL_I2STX))
  74. || (user_policy && (user_policy->audio_out_channel & AUDIO_CHANNEL_SPDIFTX))) {
  75. channel_num = 2;
  76. }
  77. return channel_num;
  78. }
  79. int audio_policy_get_out_pcm_frame_size(uint8_t stream_type)
  80. {
  81. int frame_size = 512;
  82. switch (stream_type) {
  83. case AUDIO_STREAM_TTS:
  84. case AUDIO_STREAM_TIP:
  85. frame_size = 4 * 960;
  86. break;
  87. case AUDIO_STREAM_USOUND:
  88. case AUDIO_STREAM_LINEIN:
  89. case AUDIO_STREAM_FM:
  90. case AUDIO_STREAM_I2SRX_IN:
  91. case AUDIO_STREAM_MIC_IN:
  92. case AUDIO_STREAM_SPDIF_IN:
  93. case AUDIO_STREAM_MUSIC:
  94. case AUDIO_STREAM_LOCAL_MUSIC:
  95. frame_size = 2048;
  96. break;
  97. case AUDIO_STREAM_VOICE:
  98. frame_size = 512;
  99. break;
  100. default:
  101. break;
  102. }
  103. return frame_size;
  104. }
  105. int audio_policy_get_out_input_start_threshold(uint8_t stream_type, uint8_t exf_stream_type, uint8_t sample_rate, uint8_t channels, uint8_t tws_mode, uint8_t format)
  106. {
  107. switch (stream_type) {
  108. case AUDIO_STREAM_MUSIC:
  109. if (system_check_low_latencey_mode())
  110. return 40;
  111. else
  112. return 150;
  113. case AUDIO_STREAM_VOICE:
  114. if (system_check_low_latencey_mode()) {
  115. return 0;
  116. } else {
  117. return 60;
  118. }
  119. case AUDIO_STREAM_USOUND:
  120. case AUDIO_STREAM_LINEIN:
  121. case AUDIO_STREAM_I2SRX_IN:
  122. case AUDIO_STREAM_SPDIF_IN:
  123. case AUDIO_STREAM_FM:
  124. return 0;
  125. case AUDIO_STREAM_TTS:
  126. case AUDIO_STREAM_TIP:
  127. default:
  128. return 0;
  129. }
  130. }
  131. int audio_policy_get_out_input_stop_threshold(uint8_t stream_type, uint8_t exf_stream_type, uint8_t sample_rate, uint8_t channels, uint8_t tws_mode)
  132. {
  133. switch (stream_type) {
  134. case AUDIO_STREAM_MUSIC:
  135. return 2;
  136. case AUDIO_STREAM_VOICE:
  137. case AUDIO_STREAM_TTS:
  138. case AUDIO_STREAM_TIP:
  139. default:
  140. return 0;
  141. }
  142. }
  143. int audio_policy_get_out_audio_mode(uint8_t stream_type)
  144. {
  145. int audio_mode = AUDIO_MODE_STEREO;
  146. switch (stream_type) {
  147. /**283D tts is mono ,but zs285A tts is stereo*/
  148. /* case AUDIO_STREAM_TTS: */
  149. case AUDIO_STREAM_VOICE:
  150. case AUDIO_STREAM_LOCAL_RECORD:
  151. case AUDIO_STREAM_GMA_RECORD:
  152. case AUDIO_STREAM_MIC_IN:
  153. audio_mode = AUDIO_MODE_MONO;
  154. break;
  155. }
  156. return audio_mode;
  157. }
  158. uint8_t audio_policy_get_out_effect_type(uint8_t stream_type,
  159. uint8_t efx_stream_type, bool is_tws)
  160. {
  161. switch (stream_type) {
  162. case AUDIO_STREAM_LOCAL_MUSIC:
  163. if (is_tws)
  164. efx_stream_type = AUDIO_STREAM_TWS;
  165. break;
  166. case AUDIO_STREAM_MUSIC:
  167. if (is_tws && efx_stream_type == AUDIO_STREAM_LINEIN) {
  168. efx_stream_type = AUDIO_STREAM_LINEIN;
  169. }
  170. break;
  171. default:
  172. break;
  173. }
  174. return efx_stream_type;
  175. }
  176. uint8_t audio_policy_get_record_effect_type(uint8_t stream_type,
  177. uint8_t efx_stream_type)
  178. {
  179. return efx_stream_type;
  180. }
  181. int audio_policy_get_record_audio_mode(uint8_t stream_type)
  182. {
  183. int audio_mode = AUDIO_MODE_STEREO;
  184. switch (stream_type) {
  185. case AUDIO_STREAM_VOICE:
  186. case AUDIO_STREAM_AI:
  187. case AUDIO_STREAM_LOCAL_RECORD:
  188. case AUDIO_STREAM_GMA_RECORD:
  189. case AUDIO_STREAM_MIC_IN:
  190. audio_mode = AUDIO_MODE_MONO;
  191. break;
  192. }
  193. return audio_mode;
  194. }
  195. int audio_policy_get_record_channel_id(uint8_t stream_type)
  196. {
  197. int channel_id = AUDIO_ANALOG_MIC0;
  198. switch (stream_type) {
  199. case AUDIO_STREAM_USOUND:
  200. case AUDIO_STREAM_VOICE:
  201. case AUDIO_STREAM_LOCAL_RECORD:
  202. case AUDIO_STREAM_GMA_RECORD:
  203. case AUDIO_STREAM_MIC_IN:
  204. case AUDIO_STREAM_MUSIC:
  205. case AUDIO_STREAM_LOCAL_MUSIC:
  206. case AUDIO_STREAM_AI:
  207. channel_id = AUDIO_ANALOG_MIC0;
  208. break;
  209. case AUDIO_STREAM_LINEIN:
  210. channel_id = AUDIO_LINE_IN0;
  211. break;
  212. case AUDIO_STREAM_FM:
  213. channel_id = AUDIO_ANALOG_FM0;
  214. break;
  215. }
  216. return channel_id;
  217. }
  218. int audio_policy_is_master_mix_channel(uint8_t stream_type)
  219. {
  220. if(stream_type == AUDIO_STREAM_LINEIN_MIX
  221. || stream_type == AUDIO_STREAM_USOUND_MIX){
  222. return true;
  223. }else{
  224. return false;
  225. }
  226. }
  227. int audio_policy_get_record_aec_block_size(uint8_t format_type)
  228. {
  229. int block_size = 0;
  230. /* if (format_type == MSBC_TYPE) {
  231. block_size = 256 * 2 - 192;
  232. }else if (format_type == CVSD_TYPE){
  233. block_size = 256 * 2 - 128;
  234. }*/
  235. return block_size;
  236. }
  237. int audio_policy_get_record_channel_mix_channel(uint8_t stream_type)
  238. {
  239. int mix_channel = false;
  240. switch (stream_type){
  241. case AUDIO_STREAM_LINEIN_MIX:
  242. mix_channel = true;
  243. break;
  244. case AUDIO_STREAM_USOUND_MIX:
  245. mix_channel = true;
  246. break;
  247. }
  248. return mix_channel;
  249. }
  250. int audio_policy_get_record_adc_gain(uint8_t stream_type)
  251. {
  252. int gain = 0;
  253. return gain;
  254. }
  255. int audio_policy_get_record_input_gain(uint8_t stream_type)
  256. {
  257. int gain = 0;/* odb */
  258. switch (stream_type) {
  259. case AUDIO_STREAM_LINEIN:
  260. if (user_policy)
  261. gain = user_policy->audio_in_linein_gain;
  262. break;
  263. case AUDIO_STREAM_FM:
  264. if (user_policy)
  265. gain = user_policy->audio_in_fm_gain;
  266. break;
  267. break;
  268. case AUDIO_STREAM_USOUND:
  269. case AUDIO_STREAM_VOICE:
  270. case AUDIO_STREAM_LOCAL_RECORD:
  271. case AUDIO_STREAM_GMA_RECORD:
  272. case AUDIO_STREAM_MIC_IN:
  273. if (user_policy)
  274. gain = user_policy->audio_in_mic_gain;
  275. break;
  276. case AUDIO_STREAM_AI:
  277. if (user_policy)
  278. gain = user_policy->audio_in_mic_gain;
  279. break;
  280. }
  281. return gain;
  282. }
  283. int audio_policy_get_record_channel_mode(uint8_t stream_type)
  284. {
  285. int channel_mode = AUDIO_DMA_MODE | AUDIO_DMA_RELOAD_MODE;
  286. switch (stream_type) {
  287. }
  288. return channel_mode;
  289. }
  290. int audio_policy_get_record_channel_support_aec(uint8_t stream_type)
  291. {
  292. int support_aec = false;
  293. switch (stream_type) {
  294. case AUDIO_STREAM_VOICE:
  295. support_aec = true;
  296. break;
  297. }
  298. return support_aec;
  299. }
  300. int audio_policy_get_record_channel_aec_tail_length(uint8_t stream_type, uint8_t sample_rate, bool in_debug)
  301. {
  302. switch (stream_type) {
  303. case AUDIO_STREAM_VOICE:
  304. if (in_debug) {
  305. return (sample_rate > 8) ? 32 : 64;
  306. } else if (user_policy) {
  307. return (sample_rate > 8) ?
  308. user_policy->voice_aec_tail_length_16k :
  309. user_policy->voice_aec_tail_length_8k;
  310. } else {
  311. return (sample_rate > 8) ? 48 : 96;
  312. }
  313. default:
  314. return 0;
  315. }
  316. }
  317. int audio_policy_is_out_channel_aec_reference(uint8_t stream_type)
  318. {
  319. if(stream_type == AUDIO_STREAM_VOICE){
  320. return true;
  321. }else{
  322. return false;
  323. }
  324. }
  325. int audio_policy_get_out_channel_aec_reference_stream_type(uint8_t stream_type)
  326. {
  327. if(stream_type == AUDIO_STREAM_VOICE){
  328. return AUDIO_MODE_MONO;
  329. }else{
  330. return 0;
  331. }
  332. }
  333. int audio_policy_get_channel_resample(uint8_t stream_type)
  334. {
  335. int resample = false;
  336. switch (stream_type) {
  337. case AUDIO_STREAM_MUSIC:
  338. /* resample = true; */
  339. break;
  340. }
  341. return resample;
  342. }
  343. int audio_policy_get_output_support_multi_track(uint8_t stream_type)
  344. {
  345. int support_multi_track = false;
  346. #ifdef CONFIG_AUDIO_SUBWOOFER
  347. switch (stream_type) {
  348. case AUDIO_STREAM_MUSIC:
  349. case AUDIO_STREAM_LINEIN:
  350. case AUDIO_STREAM_MIC_IN:
  351. case AUDIO_STREAM_USOUND:
  352. support_multi_track = true;
  353. break;
  354. }
  355. #endif
  356. return support_multi_track;
  357. }
  358. int audio_policy_get_record_channel_type(uint8_t stream_type)
  359. {
  360. int channel_type = AUDIO_CHANNEL_ADC;
  361. switch (stream_type) {
  362. case AUDIO_STREAM_SPDIF_IN:
  363. channel_type = AUDIO_CHANNEL_SPDIFRX;
  364. break;
  365. case AUDIO_STREAM_I2SRX_IN:
  366. channel_type = AUDIO_CHANNEL_I2SRX;
  367. break;
  368. }
  369. return channel_type;
  370. }
  371. int audio_policy_get_pa_volume(uint8_t stream_type, uint8_t volume_level)
  372. {
  373. int pa_volume = volume_level;
  374. if (!user_policy)
  375. goto exit;
  376. if (volume_level > user_policy->audio_out_volume_level) {
  377. volume_level = user_policy->audio_out_volume_level;
  378. }
  379. switch (stream_type) {
  380. case AUDIO_STREAM_VOICE:
  381. pa_volume = user_policy->voice_pa_table[volume_level];
  382. break;
  383. case AUDIO_STREAM_LINEIN:
  384. case AUDIO_STREAM_FM:
  385. case AUDIO_STREAM_I2SRX_IN:
  386. case AUDIO_STREAM_MIC_IN:
  387. case AUDIO_STREAM_MUSIC:
  388. case AUDIO_STREAM_LOCAL_MUSIC:
  389. case AUDIO_STREAM_SPDIF_IN:
  390. pa_volume = user_policy->music_pa_table[volume_level];
  391. break;
  392. case AUDIO_STREAM_TTS:
  393. case AUDIO_STREAM_TIP:
  394. pa_volume = user_policy->tts_pa_table[volume_level];
  395. break;
  396. }
  397. exit:
  398. return pa_volume;
  399. }
  400. int audio_policy_get_da_volume(uint8_t stream_type, uint8_t volume_level)
  401. {
  402. int da_volume = volume_level;
  403. if (!user_policy)
  404. goto exit;
  405. if (volume_level > user_policy->audio_out_volume_level) {
  406. volume_level = user_policy->audio_out_volume_level;
  407. }
  408. switch (stream_type) {
  409. case AUDIO_STREAM_VOICE:
  410. da_volume = user_policy->voice_da_table[volume_level];
  411. break;
  412. case AUDIO_STREAM_LINEIN:
  413. case AUDIO_STREAM_FM:
  414. case AUDIO_STREAM_I2SRX_IN:
  415. case AUDIO_STREAM_MIC_IN:
  416. case AUDIO_STREAM_SPDIF_IN:
  417. case AUDIO_STREAM_MUSIC:
  418. case AUDIO_STREAM_LOCAL_MUSIC:
  419. da_volume = user_policy->music_da_table[volume_level];
  420. break;
  421. case AUDIO_STREAM_TTS:
  422. case AUDIO_STREAM_TIP:
  423. da_volume = user_policy->tts_da_table[volume_level];
  424. break;
  425. }
  426. exit:
  427. return da_volume;
  428. }
  429. int audio_policy_get_volume_level_by_db(uint8_t stream_type, int volume_db)
  430. {
  431. int volume_level = 0;
  432. int max_level = 0;
  433. const int *volume_table = NULL;
  434. if (!user_policy)
  435. goto exit;
  436. max_level = user_policy->audio_out_volume_level;
  437. volume_table = user_policy->music_pa_table;
  438. switch (stream_type) {
  439. case AUDIO_STREAM_VOICE:
  440. volume_table = user_policy->voice_pa_table;
  441. break;
  442. case AUDIO_STREAM_LINEIN:
  443. case AUDIO_STREAM_FM:
  444. case AUDIO_STREAM_I2SRX_IN:
  445. case AUDIO_STREAM_MIC_IN:
  446. case AUDIO_STREAM_SPDIF_IN:
  447. case AUDIO_STREAM_MUSIC:
  448. case AUDIO_STREAM_LOCAL_MUSIC:
  449. volume_table = user_policy->music_pa_table;
  450. break;
  451. case AUDIO_STREAM_TTS:
  452. case AUDIO_STREAM_TIP:
  453. volume_table = user_policy->tts_pa_table;
  454. break;
  455. }
  456. /* to 0.001 dB */
  457. volume_db *= 100;
  458. if (volume_db == volume_table[max_level - 1]) {
  459. volume_level = max_level;
  460. } else {
  461. for (int i = 0; i < max_level; i++) {
  462. if (volume_db < volume_table[i]) {
  463. volume_level = i;
  464. break;
  465. }
  466. }
  467. }
  468. exit:
  469. return volume_level;
  470. }
  471. int audio_policy_get_aec_reference_type(void)
  472. {
  473. #ifdef CONFIG_AUDIO_VOICE_HARDWARE_REFERENCE
  474. return 2;
  475. #else
  476. return 1;
  477. #endif
  478. }
  479. int audio_policy_get_volume_level(void)
  480. {
  481. if (user_policy)
  482. return user_policy->audio_out_volume_level;
  483. return 16;
  484. }
  485. int audio_policy_check_tts_fixed_volume(void)
  486. {
  487. if (user_policy)
  488. return user_policy->tts_fixed_volume;
  489. return 1;
  490. }
  491. aset_volume_table_v2_t *audio_policy_get_aset_volume_table(void)
  492. {
  493. if (user_policy)
  494. return user_policy->aset_volume_table;
  495. return NULL;
  496. }
  497. int audio_policy_check_save_volume_to_nvram(void)
  498. {
  499. if (user_policy)
  500. return user_policy->volume_saveto_nvram;
  501. return 1;
  502. }
  503. int audio_policy_get_reduce_threshold(int format)
  504. {
  505. if (system_check_low_latencey_mode()) {
  506. if (format == MSBC_TYPE || format == CVSD_TYPE) {
  507. return 5;
  508. } else {
  509. return 15;
  510. }
  511. } else {
  512. if (format == MSBC_TYPE || format == CVSD_TYPE) {
  513. return 30;
  514. } else if (format == PCM_TYPE) {
  515. return 16;
  516. } else {
  517. return 100;
  518. }
  519. }
  520. }
  521. int audio_policy_get_increase_threshold(int format)
  522. {
  523. if (system_check_low_latencey_mode()) {
  524. if (format == MSBC_TYPE || format == CVSD_TYPE) {
  525. return 15;
  526. } else {
  527. return 50;
  528. }
  529. } else {
  530. if (format == MSBC_TYPE || format == CVSD_TYPE) {
  531. return 34;
  532. } else if (format == PCM_TYPE) {
  533. return 32;
  534. } else {
  535. return 200;
  536. }
  537. }
  538. }
  539. int audio_policy_check_snoop_tws_support(void)
  540. {
  541. #ifdef CONFIG_SNOOP_LINK_TWS
  542. return 1;
  543. #else
  544. return 0;
  545. #endif
  546. }
  547. int audio_policy_register(const struct audio_policy_t *policy)
  548. {
  549. user_policy = policy;
  550. return 0;
  551. }