audio_acts_utils.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Common utils for in/out audio drivers
  9. */
  10. #ifndef __AUDIO_ACTS_UTILS_H__
  11. #define __AUDIO_ACTS_UTILS_H__
  12. #include <drivers/audio/audio_common.h>
  13. #include <shell/shell_uart.h>
  14. /***************************************************************************************************
  15. * CMU_DACCLK
  16. */
  17. #define CMU_DACCLK_DACVOLCLKSRC BIT(28)
  18. #define CMU_DACCLK_DACFIFO1CLKEN BIT(25)
  19. #define CMU_DACCLK_DACFIFO0CLKEN BIT(24)
  20. #define CMU_DACCLK_DACCLKSRC (8)
  21. #define CMU_DACCLK_DACOSCCLKDIV (5)
  22. #define CMU_DACCLK_DACCLKPREDIV (4)
  23. #define CMU_DACCLK_DACCLKDIV_SHIFT (0)
  24. #define CMU_DACCLK_DACCLKDIV_MASK (0x7 << CMU_DACCLK_DACCLKDIV_SHIFT)
  25. #define CMU_DACCLK_DACCLKDIV(x) ((x) << CMU_DACCLK_DACCLKDIV_SHIFT)
  26. /***************************************************************************************************
  27. * CMU_ADCCLK
  28. */
  29. #if defined(CONFIG_SOC_SERIES_LARK)
  30. #define CMU_ADCCLK_ADCDEBUGEN BIT(31)
  31. #define CMU_ADCCLK_ADCFIFOCLKEN BIT(24)
  32. #endif
  33. #if defined(CONFIG_SOC_SERIES_LARK)
  34. #define CMU_ADCCLK_ADCFIREN BIT(23)
  35. #define CMU_ADCCLK_ADCCICEN BIT(22)
  36. #define CMU_ADCCLK_ADCANAEN BIT(21)
  37. #define CMU_ADCCLK_ADCDMICEN BIT(20)
  38. #define CMU_ADCCLK_ADCFIRCLKRVS BIT(19)
  39. #define CMU_ADCCLK_ADCCICCLKRVS BIT(18)
  40. #define CMU_ADCCLK_ADCANACLKRVS BIT(17)
  41. #define CMU_ADCCLK_ADCDMICCLKRVS BIT(16)
  42. #define CMU_ADCCLK_ADCFIRCLKDIV BIT(15)
  43. #define CMU_ADCCLK_ADCOVFSCLKDIV_SHIFT (12)
  44. #define CMU_ADCCLK_ADCOVFSCLKDIV_MASK (0x3 << CMU_ADCCLK_ADCOVFSCLKDIV_SHIFT)
  45. #define CMU_ADCCLK_ADCOVFSCLKDIV(x) ((x) << CMU_ADCCLK_ADCOVFSCLKDIV_SHIFT)
  46. #define CMU_ADCCLK_ADCCLKSRC (8)
  47. #define CMU_ADCCLK_ADCCLKPREDIV (4)
  48. #define CMU_ADCCLK_ADCCLKDIV_SHIFT (0)
  49. #define CMU_ADCCLK_ADCCLKDIV_MASK (0x7 << CMU_ADCCLK_ADCCLKDIV_SHIFT)
  50. #define CMU_ADCCLK_ADCCLKDIV(x) ((x) << CMU_ADCCLK_ADCCLKDIV_SHIFT)
  51. /***************************************************************************************************
  52. * CMU_I2STXCLK
  53. */
  54. #define CMU_I2STXCLK_I2STXMCLKOEN BIT(29)
  55. #define CMU_I2STXCLK_I2SG0LRCLKPROC BIT(23)
  56. #define CMU_I2STXCLK_I2SG0LRCLKDIV_SHIFT (20)
  57. #define CMU_I2STXCLK_I2SG0LRCLKDIV_MASK (0x3 << CMU_I2STXCLK_I2SG0LRCLKDIV_SHIFT)
  58. #define CMU_I2STXCLK_I2SG0LRCLKDIV(x) ((x) << CMU_I2STXCLK_I2SG0LRCLKDIV_SHIFT)
  59. #define CMU_I2STXCLK_I2SG0BCLKDIV_SHIFT (18)
  60. #define CMU_I2STXCLK_I2SG0BCLKDIV_MASK (0x3 << CMU_I2STXCLK_I2SG0BCLKDIV_SHIFT)
  61. #define CMU_I2STXCLK_I2SG0BCLKDIV(x) ((x) << CMU_I2STXCLK_I2SG0BCLKDIV_SHIFT)
  62. #define CMU_I2STXCLK_I2SG0BLRCLKSRC BIT(16)
  63. #define CMU_I2STXCLK_I2SG0MCLKEXTREV BIT(14)
  64. #define CMU_I2STXCLK_I2SG0MCLKSRC_SHIFT (12)
  65. #define CMU_I2STXCLK_I2SG0MCLKSRC_MASK (0x3 << CMU_I2STXCLK_I2SG0MCLKSRC_SHIFT)
  66. #define CMU_I2STXCLK_I2SG0MCLKSRC(x) ((x) << CMU_I2STXCLK_I2SG0MCLKSRC_SHIFT)
  67. #define CMU_I2STXCLK_I2SG0CLKSRC (8)
  68. #define CMU_I2STXCLK_I2SG0CLKDIV_SHIFT (0)
  69. #define CMU_I2STXCLK_I2SG0CLKDIV_MASK (0xF << CMU_I2STXCLK_I2SG0CLKDIV_SHIFT)
  70. #define CMU_I2STXCLK_I2SG0CLKDIV(x) ((x) << CMU_I2STXCLK_I2SG0CLKDIV_SHIFT)
  71. /***************************************************************************************************
  72. * CMU_I2SRXCLK
  73. */
  74. #define CMU_I2SRXCLK_I2SRXMCLKOEN BIT(29)
  75. #define CMU_I2SRXCLK_I2SRX0CLKSRC BIT(28)
  76. #define CMU_I2SRXCLK_I2SG1LRCLKPROC BIT(23)
  77. #define CMU_I2SRXCLK_I2SG1LRCLKDIV_SHIFT (20)
  78. #define CMU_I2SRXCLK_I2SG1LRCLKDIV_MASK (0x3 << CMU_I2SRXCLK_I2SG1LRCLKDIV_SHIFT)
  79. #define CMU_I2SRXCLK_I2SG1LRCLKDIV(x) ((x) << CMU_I2SRXCLK_I2SG1LRCLKDIV_SHIFT)
  80. #define CMU_I2SRXCLK_I2SG1BCLKDIV_SHIFT (18)
  81. #define CMU_I2SRXCLK_I2SG1BCLKDIV_MASK (0x3 << CMU_I2SRXCLK_I2SG1BCLKDIV_SHIFT)
  82. #define CMU_I2SRXCLK_I2SG1BCLKDIV(x) ((x) << CMU_I2SRXCLK_I2SG1BCLKDIV_SHIFT)
  83. #define CMU_I2SRXCLK_I2SG1BLRCLKSRC BIT(16)
  84. #define CMU_I2SRXCLK_I2SG1MCLKEXTREV BIT(14)
  85. #define CMU_I2SRXCLK_I2SG1MCLKSRC_SHIFT (12)
  86. #define CMU_I2SRXCLK_I2SG1MCLKSRC_MASK (0x3 << CMU_I2SRXCLK_I2SG1MCLKSRC_SHIFT)
  87. #define CMU_I2SRXCLK_I2SG1MCLKSRC(x) ((x) << CMU_I2SRXCLK_I2SG1MCLKSRC_SHIFT)
  88. #define CMU_I2SRXCLK_I2SG1CLKSRC (8)
  89. #define CMU_I2SRXCLK_I2SG1CLKDIV_SHIFT (0)
  90. #define CMU_I2SRXCLK_I2SG1CLKDIV_MASK (0xF << CMU_I2SRXCLK_I2SG1CLKDIV_SHIFT)
  91. #define CMU_I2SRXCLK_I2SG1CLKDIV(x) ((x) << CMU_I2SRXCLK_I2SG1CLKDIV_SHIFT)
  92. /***************************************************************************************************
  93. * CMU_SPDIFTXCLK
  94. */
  95. #define CMU_SPDIFTXCLK_SPDIFTXCLKSRC_SHIFT (12)
  96. #define CMU_SPDIFTXCLK_SPDIFTXCLKSRC_MASK (0x3 << CMU_SPDIFTXCLK_SPDIFTXCLKSRC_SHIFT)
  97. #define CMU_SPDIFTXCLK_SPDTXCLKSRC (8)
  98. #define CMU_SPDIFTXCLK_SPDTXCLKPREDIV (4)
  99. #define CMU_SPDIFTXCLK_SPDTXCLKDIV_SHIFT (0)
  100. #define CMU_SPDIFTXCLK_SPDTXCLKDIV_MASK (0x7 << CMU_SPDIFTXCLK_SPDTXCLKDIV_SHIFT)
  101. /***************************************************************************************************
  102. * CMU_SPDIFRXCLK
  103. */
  104. #define CMU_SPDIFRXCLK_SPDIFRXCLKSRC_SHIFT (8)
  105. #define CMU_SPDIFRXCLK_SPDIFRXCLKSRC_MASK (0x3 << CMU_SPDIFRXCLK_SPDIFRXCLKSRC_SHIFT)
  106. #define CMU_SPDIFRXCLK_SPDIFRXCLKSRC(x) ((x) << CMU_SPDIFRXCLK_SPDIFRXCLKSRC_SHIFT)
  107. #define CMU_SPDIFRXCLK_SPDIFRXCLKDIV_SHIFT (0)
  108. #define CMU_SPDIFRXCLK_SPDIFRXCLKDIV_MASK (0x3 << CMU_SPDIFRXCLK_SPDIFRXCLKDIV_SHIFT)
  109. #define CMU_SPDIFRXCLK_SPDIFRXCLKDIV(x) ((x) << CMU_SPDIFRXCLK_SPDIFRXCLKDIV_SHIFT)
  110. #endif
  111. /*
  112. * enum a_pll_series_e
  113. * @brief The series of audio pll
  114. */
  115. typedef enum {
  116. AUDIOPLL_44KSR = 0, /* 44.1K sample rate seires */
  117. AUDIOPLL_48KSR /* 48K sample rate series */
  118. } a_pll_series_e;
  119. /*
  120. * enum a_pll_type_e
  121. * @brief The audio pll type selection
  122. */
  123. typedef enum {
  124. AUDIOPLL_TYPE_0 = 0, /* AUDIO_PLL0 */
  125. AUDIOPLL_TYPE_1, /* AUDIO_PLL1 */
  126. } a_pll_type_e;
  127. /*
  128. * enum a_mclk_type_e
  129. * @brief The rate of MCLK in the multiple of sample rate
  130. * @note DAC MCLK is always 256FS, and the I2S MCLK depends on BCLK (MCLK = 4BCLK)
  131. */
  132. typedef enum {
  133. MCLK_128FS = 128,
  134. MCLK_256FS = 256,
  135. MCLK_512FS = 512,
  136. MCLK_768FS = 768,
  137. MCLK_1536FS = 1536,
  138. } a_mclk_type_e;
  139. #define AUDIO_DUMP_MEM(data, len) \
  140. { \
  141. uint32_t i; \
  142. for (i = 0; i < len; i += 4) { \
  143. printk("0x%08x ", *(uint32_t *)&data[i]); \
  144. if (!((i + 4) % 16)) { \
  145. printk("\n"); \
  146. } \
  147. } \
  148. printk("\n"); \
  149. }
  150. uint32_t audio_sr_khz_to_hz(audio_sr_sel_e sr_khz);
  151. audio_sr_sel_e audio_sr_hz_to_Khz(uint32_t sr_hz);
  152. int audio_get_pll_setting(audio_sr_sel_e sr_khz, a_mclk_type_e mclk,
  153. uint8_t *pre_div, uint8_t *clk_div, uint8_t *series);
  154. int audio_get_pll_setting_i2s(uint16_t sr_khz, a_mclk_type_e mclk,
  155. uint8_t *div, uint8_t *series);
  156. int audio_pll_check_config(a_pll_series_e series, uint8_t *index);
  157. int audio_get_pll_sample_rate(a_mclk_type_e mclk, uint8_t pre_div, uint8_t clk_div, a_pll_type_e index);
  158. int audio_get_pll_sample_rate_i2s(a_mclk_type_e mclk, uint8_t clk_div, a_pll_type_e index);
  159. int audio_pll_get_aps(a_pll_type_e index);
  160. int audio_pll_set_aps(a_pll_type_e index, audio_aps_level_e level);
  161. void audio_pll_set(a_pll_type_e index, a_pll_series_e series);
  162. void audio_pll_unset(a_pll_type_e index);
  163. #endif /* __AUDIO_ACTS_UTILS_H__ */