hpm_wm8960.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * Copyright (c) 2015, Freescale Semiconductor, Inc.
  3. * Copyright 2016-2021 NXP
  4. * Copyright (c) 2022 HPMicro
  5. *
  6. * SPDX-License-Identifier: BSD-3-Clause
  7. *
  8. */
  9. #ifndef _HPM_WM8960_H_
  10. #define _HPM_WM8960_H_
  11. //#include "hpm_i2c_drv.h"
  12. //#include "hpm_common.h"
  13. #include <rtthread.h>
  14. #include <rtdevice.h>
  15. #include "rtt_board.h"
  16. #include "drivers/dev_i2c.h"
  17. #include "hpm_wm8960_regs.h"
  18. #define WM8960_I2C_ADDR 0x1A
  19. typedef enum wm8960_module {
  20. wm8960_module_adc = 0, /* ADC module in WM8960 */
  21. wm8960_module_dac = 1, /* DAC module in WM8960 */
  22. wm8960_module_vref = 2, /* VREF module */
  23. wm8960_module_headphone = 3, /* Headphone */
  24. wm8960_module_micbais = 4, /* Mic bias */
  25. wm8960_module_ana_in = 6, /* Analog in PGA */
  26. wm8960_module_lineout = 7, /* Line out module */
  27. wm8960_module_speaker = 8, /* Speaker module */
  28. wm8960_module_output_mixer = 9, /* Output mixer */
  29. } wm8960_module_t;
  30. /* wm8960 play source for output mixer */
  31. typedef enum wm8960_play_source {
  32. wm8960_play_source_input_mixer = 1, /* Input Boost Mixer to Output Mixer */
  33. wm8960_play_source_input3 = 2, /* L/RINPUT3 to Output Mixer */
  34. wm8960_play_source_dac = 4, /* DAC to Output Mixer */
  35. } wm8960_play_source_t;
  36. /* WM8960 data route */
  37. typedef enum wm8960_route {
  38. wm8960_route_bypass = 0, /* ANA_IN->Headphone. */
  39. wm8960_route_playback = 1, /* I2SIN->DAC->Headphone. */
  40. wm8960_route_playback_and_record = 2, /* I2SIN->DAC->Headphone, ANA_IN->ADC->I2SOUT. */
  41. wm8960_route_record = 5 /* ANA_IN->ADC->I2SOUT. */
  42. } wm8960_route_t;
  43. /* The audio data transfer protocol choice */
  44. typedef enum wm8960_protocol {
  45. wm8960_bus_i2s = 2, /* I2S type */
  46. wm8960_bus_left_justified = 1, /* Left justified mode */
  47. wm8960_bus_right_justified = 0, /* Right justified mode */
  48. wm8960_bus_pcma = 3, /* PCM A mode */
  49. wm8960_bus_pcmb = 3 | (1 << 4) /* PCM B mode */
  50. } wm8960_protocol_t;
  51. /* wm8960 input source */
  52. typedef enum wm8960_input {
  53. wm8960_input_closed = 0, /* Input device is closed */
  54. wm8960_input_single_ended_mic = 1, /* Input as single ended mic, only use L/RINPUT1 */
  55. wm8960_input_differential_mic_input2 = 2, /* Input as differential mic, use L/RINPUT1 and L/RINPUT2 */
  56. wm8960_input_differential_mic_input3 = 3, /* Input as differential mic, use L/RINPUT1 and L/RINPUT3*/
  57. wm8960_input_line_input2 = 4, /* Input as line input, only use L/RINPUT2 */
  58. wm8960_input_line_input3 = 5 /* Input as line input, only use L/RINPUT3 */
  59. } wm8960_input_t;
  60. /* wm8960 audio format */
  61. typedef struct wm8960_audio_format {
  62. uint32_t mclk_hz; /* master clock frequency */
  63. uint32_t sample_rate; /* sample rate */
  64. uint32_t bit_width; /* bit width */
  65. } wm8960_audio_format_t;
  66. /* configure structure of WM8960 */
  67. typedef struct wm8960_config {
  68. wm8960_route_t route; /* Audio data route.*/
  69. wm8960_protocol_t bus; /* Audio transfer protocol */
  70. bool enable_speaker; /* True means enable class D speaker as output, false means no */
  71. wm8960_input_t left_input; /* Left input source for WM8960 */
  72. wm8960_input_t right_input; /* Right input source for wm8960 */
  73. wm8960_play_source_t play_source; /* play source */
  74. wm8960_audio_format_t format; /* Audio format */
  75. } wm8960_config_t;
  76. typedef struct {
  77. struct rt_i2c_bus_device *i2c_bus; /* I2C bus device */
  78. uint8_t slave_address; /* code device address */
  79. } wm8960_control_t;
  80. #if defined(__cplusplus)
  81. extern "C" {
  82. #endif
  83. /**
  84. * @brief WM8960 initialize function.
  85. *
  86. * @param control WM8960 control structure.
  87. * @param config WM8960 configuration structure.
  88. */
  89. hpm_stat_t wm8960_init(wm8960_control_t *control, wm8960_config_t *config);
  90. /**
  91. * @brief Deinit the WM8960 codec.
  92. *
  93. * This function close all modules in WM8960 to save power.
  94. *
  95. * @param control WM8960 control structure pointer.
  96. */
  97. hpm_stat_t wm8960_deinit(wm8960_control_t *control);
  98. /**
  99. * @brief Set audio data route in WM8960.
  100. *
  101. * This function would set the data route according to route.
  102. *
  103. * @param control WM8960 control structure.
  104. * @param config Audio configure structure in WM8960.
  105. */
  106. hpm_stat_t wm8960_set_data_route(wm8960_control_t *control, wm8960_config_t *config);
  107. /**
  108. * @brief Set left audio input source in WM8960.
  109. *
  110. * @param control WM8960 control structure.
  111. * @param input Audio input source.
  112. */
  113. hpm_stat_t wm8960_set_left_input(wm8960_control_t *control, wm8960_input_t input);
  114. /**
  115. * @brief Set right audio input source in WM8960.
  116. *
  117. * @param control WM8960 control structure.
  118. * @param input Audio input source.
  119. */
  120. hpm_stat_t wm8960_set_right_input(wm8960_control_t *control, wm8960_input_t input);
  121. /**
  122. * @brief Set the audio transfer protocol.
  123. *
  124. * @param control WM8960 control structure.
  125. * @param protocol Audio data transfer protocol.
  126. */
  127. hpm_stat_t wm8960_set_protocol(wm8960_control_t *control, wm8960_protocol_t protocol);
  128. /**
  129. * @brief Set the volume of different modules in WM8960.
  130. *
  131. * This function would set the volume of WM8960 modules. Uses need to appoint the module.
  132. * The function assume that left channel and right channel has the same volume.
  133. *
  134. * Module:wm8960_module_adc, volume range value: 0 is mute, 1-255 is -97db to 30db
  135. * Module:wm8960_module_dac, volume range value: 0 is mute, 1-255 is -127db to 0db
  136. * Module:wm8960_module_headphone, volume range value: 0 - 2F is mute, 0x30 - 0x7F is -73db to 6db
  137. * Module:wm8960_module_ana_in, volume range value: 0 - 0x3F is -17.25db to 30db
  138. * Module:wm8960_module_speaker, volume range value: 0 - 2F is mute, 0x30 - 0x7F is -73db to 6db
  139. *
  140. *
  141. * @param control WM8960 control structure.
  142. * @param module Module to set volume, it can be ADC, DAC, Headphone and so on.
  143. * @param volume Volume value need to be set.
  144. */
  145. hpm_stat_t wm8960_set_volume(wm8960_control_t *control, wm8960_module_t module, uint32_t volume);
  146. /**
  147. * @brief Enable/disable expected module.
  148. *
  149. * @param control WM8960 control structure.
  150. * @param module Module expected to enable.
  151. * @param enable Enable or disable moudles.
  152. */
  153. hpm_stat_t wm8960_set_module(wm8960_control_t *control, wm8960_module_t module, bool enable);
  154. /**
  155. * @brief SET the WM8960 play source.
  156. *
  157. * @param control WM8960 control structure.
  158. * @param play_source play source
  159. *
  160. * @return kStatus_WM8904_Success if successful, different code otherwise..
  161. */
  162. hpm_stat_t wm8960_config_input_to_output_mixer(wm8960_control_t *control, uint32_t play_source);
  163. /**
  164. * @brief Configure the data format of audio data.
  165. *
  166. * This function would configure the registers about the sample rate, bit depths.
  167. *
  168. * @param control WM8960 control structure pointer.
  169. * @param sysclk system clock of the codec which can be generated by MCLK or PLL output.
  170. * @param sample_rate Sample rate of audio file running in WM8960. WM8960 now
  171. * supports 8k, 11.025k, 12k, 16k, 22.05k, 24k, 32k, 44.1k, 48k and 96k sample rate.
  172. * @param bits Bit depth of audio file (WM8960 only supports 16bit, 20bit, 24bit
  173. * and 32 bit in HW).
  174. */
  175. hpm_stat_t wm8960_set_data_format(wm8960_control_t *control, uint32_t sysclk, uint32_t sample_rate, uint32_t bits);
  176. /**
  177. * @brief Write register to WM8960 using I2C.
  178. *
  179. * @param control WM8960 control structure.
  180. * @param reg The register address in WM8960.
  181. * @param val Value needs to write into the register.
  182. */
  183. hpm_stat_t wm8960_write_reg(wm8960_control_t *control, uint8_t reg, uint16_t val);
  184. /**
  185. * @brief Read register from WM8960 using I2C.
  186. * @param reg The register address in WM8960.
  187. * @param val Value written to.
  188. */
  189. hpm_stat_t wm8960_read_reg(uint8_t reg, uint16_t *val);
  190. /**
  191. * @brief Modify some bits in the register using I2C.
  192. * @param control WM8960 control structure.
  193. * @param reg The register address in WM8960.
  194. * @param mask The mask code for the bits want to write. The bit you want to write should be 0.
  195. * @param val Value needs to write into the register.
  196. */
  197. hpm_stat_t wm8960_modify_reg(wm8960_control_t *control, uint8_t reg, uint16_t mask, uint16_t val);
  198. #endif /* _HPM_WM8960_H_ */