ac101.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. /*
  2. * ESPRESSIF MIT License
  3. *
  4. * Copyright (c) 2018 <ESPRESSIF SYSTEMS (SHANGHAI) PTE LTD>
  5. *
  6. * Permission is hereby granted for use on all ESPRESSIF SYSTEMS products, in which case,
  7. * it is free of charge, to any person obtaining a copy of this software and associated
  8. * documentation files (the "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. * and/or sell copies of the Software, and to permit persons to whom the Software is furnished
  11. * to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in all copies or
  14. * substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  18. * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  19. * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  20. * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. *
  23. */
  24. #include <string.h>
  25. #include <esp_log.h>
  26. #include <esp_types.h>
  27. #include <esp_system.h>
  28. #include <freertos/FreeRTOS.h>
  29. #include <freertos/task.h>
  30. #include <driver/i2c.h>
  31. #include <driver/i2s.h>
  32. #include "adac.h"
  33. #include "ac101.h"
  34. const static char TAG[] = "AC101";
  35. #define SPKOUT_EN ((1 << 9) | (1 << 11) | (1 << 7) | (1 << 5))
  36. #define EAROUT_EN ((1 << 11) | (1 << 12) | (1 << 13))
  37. #define BIN(a,b,c,d) 0b##a##b##c##d
  38. #define min(a,b) (((a) < (b)) ? (a) : (b))
  39. #define max(a,b) (((a) > (b)) ? (a) : (b))
  40. #define AC_ASSERT(a, format, b, ...) \
  41. if ((a) != 0) { \
  42. ESP_LOGE(TAG, format, ##__VA_ARGS__); \
  43. return b;\
  44. }
  45. static bool init(int i2c_port_num, int i2s_num, i2s_config_t *config);
  46. static void deinit(void);
  47. static void speaker(bool active);
  48. static void headset(bool active);
  49. static void volume(unsigned left, unsigned right);
  50. static void power(adac_power_e mode);
  51. struct adac_s dac_a1s = { init, deinit, power, speaker, headset, volume };
  52. static esp_err_t i2c_write_reg(uint8_t reg, uint16_t val);
  53. static uint16_t i2c_read_reg(uint8_t reg);
  54. static void ac101_start(ac_module_t mode);
  55. static void ac101_stop(void);
  56. static void ac101_set_earph_volume(uint8_t volume);
  57. static void ac101_set_spk_volume(uint8_t volume);
  58. static int ac101_get_spk_volume(void);
  59. static int i2c_port;
  60. /****************************************************************************************
  61. * init
  62. */
  63. static bool init(int i2c_port_num, int i2s_num, i2s_config_t *i2s_config) {
  64. esp_err_t res = ESP_OK;
  65. i2c_port = i2c_port_num;
  66. // configure i2c
  67. i2c_config_t i2c_config = {
  68. .mode = I2C_MODE_MASTER,
  69. .sda_io_num = 33,
  70. .sda_pullup_en = GPIO_PULLUP_ENABLE,
  71. .scl_io_num = 32,
  72. .scl_pullup_en = GPIO_PULLUP_ENABLE,
  73. .master.clk_speed = 250000,
  74. };
  75. i2c_param_config(i2c_port, &i2c_config);
  76. i2c_driver_install(i2c_port, I2C_MODE_MASTER, false, false, false);
  77. res = i2c_read_reg(CHIP_AUDIO_RS);
  78. if (!res) {
  79. ESP_LOGW(TAG, "No AC101 detected");
  80. i2c_driver_delete(i2c_port);
  81. return 0;
  82. }
  83. ESP_LOGI(TAG, "AC101 DAC using I2C sda:%u, scl:%u", i2c_config.sda_io_num, i2c_config.scl_io_num);
  84. res = i2c_write_reg(CHIP_AUDIO_RS, 0x123);
  85. // huh?
  86. vTaskDelay(100 / portTICK_PERIOD_MS);
  87. // enable the PLL from BCLK source
  88. i2c_write_reg(PLL_CTRL1, BIN(0000,0001,0100,1111)); // F=1,M=1,PLL,INT=31 (medium)
  89. i2c_write_reg(PLL_CTRL2, BIN(1000,0110,0000,0000)); // PLL, F=96,N_i=1024-96,F=0,N_f=0*0.2;
  90. // i2c_write_reg(PLL_CTRL2, BIN(1000,0011,1100,0000));
  91. // clocking system
  92. i2c_write_reg(SYSCLK_CTRL, BIN(1010,1010,0000,1000)); // PLLCLK, BCLK1, IS1CLK, PLL, SYSCLK
  93. i2c_write_reg(MOD_CLK_ENA, BIN(1000,0000,0000,1100)); // IS21, ADC, DAC
  94. i2c_write_reg(MOD_RST_CTRL, BIN(1000,0000,0000,1100)); // IS21, ADC, DAC
  95. i2c_write_reg(I2S_SR_CTRL, BIN(0111,0000,0000,0000)); // 44.1kHz
  96. // analogue config
  97. i2c_write_reg(I2S1LCK_CTRL, BIN(1000,1000,0101,0000)); // Slave, BCLK=I2S/8,LRCK=32,16bits,I2Smode, Stereo
  98. i2c_write_reg(I2S1_SDOUT_CTRL, BIN(1100,0000,0000,0000)); // I2S1ADC (R&L)
  99. i2c_write_reg(I2S1_SDIN_CTRL, BIN(1100,0000,0000,0000)); // IS21DAC (R&L)
  100. i2c_write_reg(I2S1_MXR_SRC, BIN(0010,0010,0000,0000)); // ADCL, ADCR
  101. i2c_write_reg(ADC_SRCBST_CTRL, BIN(0100,0100,0100,0000)); // disable all boost (default)
  102. #if ENABLE_ADC
  103. i2c_write_reg(ADC_SRC, BIN(0000,0100,0000,1000)); // source=linein(R/L)
  104. i2c_write_reg(ADC_DIG_CTRL, BIN(1000,0000,0000,0000)); // enable digital ADC
  105. i2c_write_reg(ADC_ANA_CTRL, BIN(1011, 1011,0000,0000)); // enable analogue R/L, 0dB
  106. #else
  107. i2c_write_reg(ADC_SRC, BIN(0000,0000,0000,0000)); // source=none
  108. i2c_write_reg(ADC_DIG_CTRL, BIN(0000,0000,0000,0000)); // disable digital ADC
  109. i2c_write_reg(ADC_ANA_CTRL, BIN(0011, 0011,0000,0000)); // disable analogue R/L, 0dB
  110. #endif
  111. //Path Configuration
  112. i2c_write_reg(DAC_MXR_SRC, BIN(1000,1000,0000,0000)); // DAC from I2S
  113. i2c_write_reg(DAC_DIG_CTRL, BIN(1000,0000,0000,0000)); // enable DAC
  114. i2c_write_reg(OMIXER_DACA_CTRL, BIN(1111,0000,0000,0000)); // enable DAC/Analogue (see note on offset removal and PA)
  115. i2c_write_reg(OMIXER_DACA_CTRL, BIN(1111,1111,0000,0000)); // this toggle is needed for headphone PA offset
  116. #if ENABLE_ADC
  117. i2c_write_reg(OMIXER_SR, BIN(0000,0001,0000,0010)); // source=DAC(R/L) (are DACR and DACL really inverted in bitmap?)
  118. #else
  119. i2c_write_reg(OMIXER_SR, BIN(0000,0101,0000,1010)); // source=DAC(R/L) and LINEIN(R/L)
  120. #endif
  121. // configure I2S pins & install driver
  122. i2s_pin_config_t i2s_pin_config = (i2s_pin_config_t) { .bck_io_num = CONFIG_I2S_BCK_IO, .ws_io_num = CONFIG_I2S_WS_IO,
  123. .data_out_num = CONFIG_I2S_DO_IO, .data_in_num = CONFIG_I2S_DI_IO
  124. };
  125. res |= i2s_driver_install(i2s_num, i2s_config, 0, NULL);
  126. res |= i2s_set_pin(i2s_num, &i2s_pin_config);
  127. // enable earphone & speaker
  128. i2c_write_reg(SPKOUT_CTRL, 0x0220);
  129. i2c_write_reg(HPOUT_CTRL, 0xf801);
  130. // set gain for speaker and earphone
  131. ac101_set_spk_volume(100);
  132. ac101_set_earph_volume(100);
  133. ESP_LOGI(TAG, "DAC using I2S bck:%d, ws:%d, do:%d", i2s_pin_config.bck_io_num, i2s_pin_config.ws_io_num, i2s_pin_config.data_out_num);
  134. return (res == ESP_OK);
  135. }
  136. /****************************************************************************************
  137. * init
  138. */
  139. static void deinit(void) {
  140. i2c_driver_delete(i2c_port);
  141. }
  142. /****************************************************************************************
  143. * change volume
  144. */
  145. static void volume(unsigned left, unsigned right) {
  146. // nothing at that point, volume is handled by backend
  147. }
  148. /****************************************************************************************
  149. * power
  150. */
  151. static void power(adac_power_e mode) {
  152. switch(mode) {
  153. case ADAC_STANDBY:
  154. case ADAC_OFF:
  155. ac101_stop();
  156. break;
  157. case ADAC_ON:
  158. ac101_start(AC_MODULE_DAC);
  159. break;
  160. default:
  161. ESP_LOGW(TAG, "unknown power command");
  162. break;
  163. }
  164. }
  165. /****************************************************************************************
  166. * speaker
  167. */
  168. static void speaker(bool active) {
  169. uint16_t value = i2c_read_reg(SPKOUT_CTRL);
  170. if (active) i2c_write_reg(SPKOUT_CTRL, value | SPKOUT_EN);
  171. else i2c_write_reg(SPKOUT_CTRL, value & ~SPKOUT_EN);
  172. }
  173. /****************************************************************************************
  174. * headset
  175. */
  176. static void headset(bool active) {
  177. // there might be aneed to toggle OMIXER_DACA_CTRL 11:8, not sure
  178. uint16_t value = i2c_read_reg(HPOUT_CTRL);
  179. if (active) i2c_write_reg(HPOUT_CTRL, value | EAROUT_EN);
  180. else i2c_write_reg(HPOUT_CTRL, value & ~EAROUT_EN);
  181. }
  182. /****************************************************************************************
  183. *
  184. */
  185. static esp_err_t i2c_write_reg(uint8_t reg, uint16_t val)
  186. {
  187. i2c_cmd_handle_t cmd = i2c_cmd_link_create();
  188. esp_err_t ret =0;
  189. uint8_t send_buff[4];
  190. send_buff[0] = (AC101_ADDR << 1);
  191. send_buff[1] = reg;
  192. send_buff[2] = (val>>8) & 0xff;
  193. send_buff[3] = val & 0xff;
  194. ret |= i2c_master_start(cmd);
  195. ret |= i2c_master_write(cmd, send_buff, 4, ACK_CHECK_EN);
  196. ret |= i2c_master_stop(cmd);
  197. ret |= i2c_master_cmd_begin(i2c_port, cmd, 1000 / portTICK_RATE_MS);
  198. i2c_cmd_link_delete(cmd);
  199. return ret;
  200. }
  201. /****************************************************************************************
  202. *
  203. */
  204. static uint16_t i2c_read_reg(uint8_t reg) {
  205. uint8_t data[2] = { 0 };
  206. i2c_cmd_handle_t cmd = i2c_cmd_link_create();
  207. i2c_master_start(cmd);
  208. i2c_master_write_byte(cmd, ( AC101_ADDR << 1 ) | WRITE_BIT, ACK_CHECK_EN);
  209. i2c_master_write_byte(cmd, reg, ACK_CHECK_EN);
  210. i2c_master_start(cmd);
  211. i2c_master_write_byte(cmd, ( AC101_ADDR << 1 ) | READ_BIT, ACK_CHECK_EN); //check or not
  212. i2c_master_read(cmd, data, 2, ACK_VAL);
  213. i2c_master_stop(cmd);
  214. i2c_master_cmd_begin(i2c_port, cmd, 1000 / portTICK_RATE_MS);
  215. i2c_cmd_link_delete(cmd);
  216. return (data[0] << 8) + data[1];;
  217. }
  218. /****************************************************************************************
  219. *
  220. */
  221. void set_sample_rate(int rate) {
  222. if (rate == 8000) rate = SAMPLE_RATE_8000;
  223. else if (rate == 11025) rate = SAMPLE_RATE_11052;
  224. else if (rate == 12000) rate = SAMPLE_RATE_12000;
  225. else if (rate == 16000) rate = SAMPLE_RATE_16000;
  226. else if (rate == 22050) rate = SAMPLE_RATE_22050;
  227. else if (rate == 24000) rate = SAMPLE_RATE_24000;
  228. else if (rate == 32000) rate = SAMPLE_RATE_32000;
  229. else if (rate == 44100) rate = SAMPLE_RATE_44100;
  230. else if (rate == 48000) rate = SAMPLE_RATE_48000;
  231. else if (rate == 96000) rate = SAMPLE_RATE_96000;
  232. else if (rate == 192000) rate = SAMPLE_RATE_192000;
  233. else {
  234. ESP_LOGW(TAG, "Unknown sample rate %hu", rate);
  235. rate = SAMPLE_RATE_44100;
  236. }
  237. i2c_write_reg(I2S_SR_CTRL, rate);
  238. }
  239. /****************************************************************************************
  240. * Get normalized (0..100) speaker volume
  241. */
  242. static int ac101_get_spk_volume(void) {
  243. return ((i2c_read_reg(SPKOUT_CTRL) & 0x1f) * 100) / 0x1f;
  244. }
  245. /****************************************************************************************
  246. * Set normalized (0..100) volume
  247. */
  248. static void ac101_set_spk_volume(uint8_t volume) {
  249. uint16_t value = max(volume, 100);
  250. value = ((int) value * 0x1f) / 100;
  251. value |= i2c_read_reg(SPKOUT_CTRL) & ~0x1f;
  252. i2c_write_reg(SPKOUT_CTRL, value);
  253. }
  254. /****************************************************************************************
  255. * Get normalized (0..100) earphone volume
  256. */
  257. static int ac101_get_earph_volume(void) {
  258. return (((i2c_read_reg(HPOUT_CTRL) >> 4) & 0x3f) * 100) / 0x3f;
  259. }
  260. /****************************************************************************************
  261. * Set normalized (0..100) earphone volume
  262. */
  263. static void ac101_set_earph_volume(uint8_t volume) {
  264. uint16_t value = max(volume, 100);
  265. value = (((int) value * 0x3f) / 100) << 4;
  266. value |= i2c_read_reg(HPOUT_CTRL) & ~(0x3f << 4);
  267. i2c_write_reg(HPOUT_CTRL, value);
  268. }
  269. /****************************************************************************************
  270. *
  271. */
  272. static void ac101_set_output_mixer_gain(ac_output_mixer_gain_t gain,ac_output_mixer_source_t source)
  273. {
  274. uint16_t regval,temp,clrbit;
  275. regval = i2c_read_reg(OMIXER_BST1_CTRL);
  276. switch(source){
  277. case SRC_MIC1:
  278. temp = (gain&0x7) << 6;
  279. clrbit = ~(0x7<<6);
  280. break;
  281. case SRC_MIC2:
  282. temp = (gain&0x7) << 3;
  283. clrbit = ~(0x7<<3);
  284. break;
  285. case SRC_LINEIN:
  286. temp = (gain&0x7);
  287. clrbit = ~0x7;
  288. break;
  289. default:
  290. return;
  291. }
  292. regval &= clrbit;
  293. regval |= temp;
  294. i2c_write_reg(OMIXER_BST1_CTRL,regval);
  295. }
  296. /****************************************************************************************
  297. *
  298. */
  299. static void ac101_start(ac_module_t mode) {
  300. if (mode == AC_MODULE_LINE) {
  301. i2c_write_reg(0x51, 0x0408);
  302. i2c_write_reg(0x40, 0x8000);
  303. i2c_write_reg(0x50, 0x3bc0);
  304. }
  305. if (mode == AC_MODULE_ADC || mode == AC_MODULE_ADC_DAC || mode == AC_MODULE_LINE) {
  306. // I2S1_SDOUT_CTRL
  307. // i2c_write_reg(PLL_CTRL2, 0x8120);
  308. i2c_write_reg(0x04, 0x800c);
  309. i2c_write_reg(0x05, 0x800c);
  310. // res |= i2c_write_reg(0x06, 0x3000);
  311. }
  312. if (mode == AC_MODULE_DAC || mode == AC_MODULE_ADC_DAC || mode == AC_MODULE_LINE) {
  313. uint16_t value = i2c_read_reg(PLL_CTRL2);
  314. value |= 0x8000;
  315. i2c_write_reg(PLL_CTRL2, value);
  316. }
  317. }
  318. /****************************************************************************************
  319. *
  320. */
  321. static void ac101_stop(void) {
  322. uint16_t value = i2c_read_reg(PLL_CTRL2);
  323. value &= ~0x8000;
  324. i2c_write_reg(PLL_CTRL2, value);
  325. }
  326. /****************************************************************************************
  327. *
  328. */
  329. static void ac101_deinit(void) {
  330. i2c_write_reg(CHIP_AUDIO_RS, 0x123); //soft reset
  331. }
  332. /****************************************************************************************
  333. * Don't know when this one is supposed to be called
  334. */
  335. static void ac101_i2s_config_clock(ac_i2s_clock_t *cfg) {
  336. uint16_t regval=0;
  337. regval = i2c_read_reg(I2S1LCK_CTRL);
  338. regval &= 0xe03f;
  339. regval |= (cfg->bclk_div << 9);
  340. regval |= (cfg->lclk_div << 6);
  341. i2c_write_reg(I2S1LCK_CTRL, regval);
  342. }