ac101.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  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. static const 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(char *config, int i2c_port_num, i2s_config_t *i2s_config);
  46. static void deinit(void);
  47. static void speaker(bool active);
  48. static void headset(bool active);
  49. static bool volume(unsigned left, unsigned right);
  50. static void power(adac_power_e mode);
  51. const struct adac_s dac_ac101 = { "AC101", 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 i2c_port;
  59. /****************************************************************************************
  60. * init
  61. */
  62. static bool init(char *config, int i2c_port_num, i2s_config_t *i2s_config) {
  63. esp_err_t res = ESP_OK;
  64. char *p;
  65. // configure i2c
  66. i2c_config_t i2c_config = {
  67. .mode = I2C_MODE_MASTER,
  68. .sda_io_num = -1,
  69. .sda_pullup_en = GPIO_PULLUP_ENABLE,
  70. .scl_io_num = -1,
  71. .scl_pullup_en = GPIO_PULLUP_ENABLE,
  72. .master.clk_speed = 250000,
  73. };
  74. if ((p = strcasestr(config, "sda")) != NULL) i2c_config.sda_io_num = atoi(strchr(p, '=') + 1);
  75. if ((p = strcasestr(config, "scl")) != NULL) i2c_config.scl_io_num = atoi(strchr(p, '=') + 1);
  76. i2c_port = i2c_port_num;
  77. i2c_param_config(i2c_port, &i2c_config);
  78. i2c_driver_install(i2c_port, I2C_MODE_MASTER, false, false, false);
  79. res = i2c_read_reg(CHIP_AUDIO_RS);
  80. if (!res) {
  81. ESP_LOGW(TAG, "No AC101 detected");
  82. i2c_driver_delete(i2c_port);
  83. return 0;
  84. }
  85. res = i2c_write_reg(CHIP_AUDIO_RS, 0x123);
  86. // huh?
  87. vTaskDelay(100 / portTICK_PERIOD_MS);
  88. // enable the PLL from BCLK source
  89. i2c_write_reg(PLL_CTRL1, BIN(0000,0001,0100,1111)); // F=1,M=1,PLL,INT=31 (medium)
  90. i2c_write_reg(PLL_CTRL2, BIN(1000,0110,0000,0000)); // PLL, F=96,N_i=1024-96,F=0,N_f=0*0.2;
  91. // i2c_write_reg(PLL_CTRL2, BIN(1000,0011,1100,0000));
  92. // clocking system
  93. i2c_write_reg(SYSCLK_CTRL, BIN(1010,1010,0000,1000)); // PLLCLK, BCLK1, IS1CLK, PLL, SYSCLK
  94. i2c_write_reg(MOD_CLK_ENA, BIN(1000,0000,0000,1100)); // IS21, ADC, DAC
  95. i2c_write_reg(MOD_RST_CTRL, BIN(1000,0000,0000,1100)); // IS21, ADC, DAC
  96. i2c_write_reg(I2S_SR_CTRL, BIN(0111,0000,0000,0000)); // 44.1kHz
  97. // analogue config
  98. i2c_write_reg(I2S1LCK_CTRL, BIN(1000,1000,0101,0000)); // Slave, BCLK=I2S/8,LRCK=32,16bits,I2Smode, Stereo
  99. i2c_write_reg(I2S1_SDOUT_CTRL, BIN(1100,0000,0000,0000)); // I2S1ADC (R&L)
  100. i2c_write_reg(I2S1_SDIN_CTRL, BIN(1100,0000,0000,0000)); // IS21DAC (R&L)
  101. i2c_write_reg(I2S1_MXR_SRC, BIN(0010,0010,0000,0000)); // ADCL, ADCR
  102. i2c_write_reg(ADC_SRCBST_CTRL, BIN(0100,0100,0100,0000)); // disable all boost (default)
  103. #if ENABLE_ADC
  104. i2c_write_reg(ADC_SRC, BIN(0000,0100,0000,1000)); // source=linein(R/L)
  105. i2c_write_reg(ADC_DIG_CTRL, BIN(1000,0000,0000,0000)); // enable digital ADC
  106. i2c_write_reg(ADC_ANA_CTRL, BIN(1011, 1011,0000,0000)); // enable analogue R/L, 0dB
  107. #else
  108. i2c_write_reg(ADC_SRC, BIN(0000,0000,0000,0000)); // source=none
  109. i2c_write_reg(ADC_DIG_CTRL, BIN(0000,0000,0000,0000)); // disable digital ADC
  110. i2c_write_reg(ADC_ANA_CTRL, BIN(0011, 0011,0000,0000)); // disable analogue R/L, 0dB
  111. #endif
  112. //Path Configuration
  113. i2c_write_reg(DAC_MXR_SRC, BIN(1000,1000,0000,0000)); // DAC from I2S
  114. i2c_write_reg(DAC_DIG_CTRL, BIN(1000,0000,0000,0000)); // enable DAC
  115. i2c_write_reg(OMIXER_DACA_CTRL, BIN(1111,0000,0000,0000)); // enable DAC/Analogue (see note on offset removal and PA)
  116. i2c_write_reg(OMIXER_DACA_CTRL, BIN(1111,1111,0000,0000)); // this toggle is needed for headphone PA offset
  117. #if ENABLE_ADC
  118. i2c_write_reg(OMIXER_SR, BIN(0000,0001,0000,0010)); // source=DAC(R/L) (are DACR and DACL really inverted in bitmap?)
  119. #else
  120. i2c_write_reg(OMIXER_SR, BIN(0000,0101,0000,1010)); // source=DAC(R/L) and LINEIN(R/L)
  121. #endif
  122. // enable earphone & speaker
  123. i2c_write_reg(SPKOUT_CTRL, 0x0220);
  124. i2c_write_reg(HPOUT_CTRL, 0xf801);
  125. // set gain for speaker and earphone
  126. ac101_set_spk_volume(100);
  127. ac101_set_earph_volume(100);
  128. ESP_LOGI(TAG, "AC101 uses I2C sda:%d, scl:%d", i2c_config.sda_io_num, i2c_config.scl_io_num);
  129. return (res == ESP_OK);
  130. }
  131. /****************************************************************************************
  132. * init
  133. */
  134. static void deinit(void) {
  135. i2c_driver_delete(i2c_port);
  136. }
  137. /****************************************************************************************
  138. * change volume
  139. */
  140. static bool volume(unsigned left, unsigned right) {
  141. // nothing at that point, volume is handled by backend
  142. return false;
  143. }
  144. /****************************************************************************************
  145. * power
  146. */
  147. static void power(adac_power_e mode) {
  148. switch(mode) {
  149. case ADAC_STANDBY:
  150. case ADAC_OFF:
  151. ac101_stop();
  152. break;
  153. case ADAC_ON:
  154. ac101_start(AC_MODULE_DAC);
  155. break;
  156. default:
  157. ESP_LOGW(TAG, "unknown power command");
  158. break;
  159. }
  160. }
  161. /****************************************************************************************
  162. * speaker
  163. */
  164. static void speaker(bool active) {
  165. uint16_t value = i2c_read_reg(SPKOUT_CTRL);
  166. if (active) i2c_write_reg(SPKOUT_CTRL, value | SPKOUT_EN);
  167. else i2c_write_reg(SPKOUT_CTRL, value & ~SPKOUT_EN);
  168. }
  169. /****************************************************************************************
  170. * headset
  171. */
  172. static void headset(bool active) {
  173. // there might be aneed to toggle OMIXER_DACA_CTRL 11:8, not sure
  174. uint16_t value = i2c_read_reg(HPOUT_CTRL);
  175. if (active) i2c_write_reg(HPOUT_CTRL, value | EAROUT_EN);
  176. else i2c_write_reg(HPOUT_CTRL, value & ~EAROUT_EN);
  177. }
  178. /****************************************************************************************
  179. *
  180. */
  181. static esp_err_t i2c_write_reg(uint8_t reg, uint16_t val)
  182. {
  183. i2c_cmd_handle_t cmd = i2c_cmd_link_create();
  184. esp_err_t ret =0;
  185. uint8_t send_buff[4];
  186. send_buff[0] = (AC101_ADDR << 1);
  187. send_buff[1] = reg;
  188. send_buff[2] = (val>>8) & 0xff;
  189. send_buff[3] = val & 0xff;
  190. ret |= i2c_master_start(cmd);
  191. ret |= i2c_master_write(cmd, send_buff, 4, ACK_CHECK_EN);
  192. ret |= i2c_master_stop(cmd);
  193. ret |= i2c_master_cmd_begin(i2c_port, cmd, 1000 / portTICK_RATE_MS);
  194. i2c_cmd_link_delete(cmd);
  195. return ret;
  196. }
  197. /****************************************************************************************
  198. *
  199. */
  200. static uint16_t i2c_read_reg(uint8_t reg) {
  201. uint8_t data[2] = { 0 };
  202. i2c_cmd_handle_t cmd = i2c_cmd_link_create();
  203. i2c_master_start(cmd);
  204. i2c_master_write_byte(cmd, ( AC101_ADDR << 1 ) | WRITE_BIT, ACK_CHECK_EN);
  205. i2c_master_write_byte(cmd, reg, ACK_CHECK_EN);
  206. i2c_master_start(cmd);
  207. i2c_master_write_byte(cmd, ( AC101_ADDR << 1 ) | READ_BIT, ACK_CHECK_EN); //check or not
  208. i2c_master_read(cmd, data, 2, ACK_VAL);
  209. i2c_master_stop(cmd);
  210. i2c_master_cmd_begin(i2c_port, cmd, 1000 / portTICK_RATE_MS);
  211. i2c_cmd_link_delete(cmd);
  212. return (data[0] << 8) + data[1];;
  213. }
  214. /****************************************************************************************
  215. *
  216. */
  217. void set_sample_rate(int rate) {
  218. if (rate == 8000) rate = SAMPLE_RATE_8000;
  219. else if (rate == 11025) rate = SAMPLE_RATE_11052;
  220. else if (rate == 12000) rate = SAMPLE_RATE_12000;
  221. else if (rate == 16000) rate = SAMPLE_RATE_16000;
  222. else if (rate == 22050) rate = SAMPLE_RATE_22050;
  223. else if (rate == 24000) rate = SAMPLE_RATE_24000;
  224. else if (rate == 32000) rate = SAMPLE_RATE_32000;
  225. else if (rate == 44100) rate = SAMPLE_RATE_44100;
  226. else if (rate == 48000) rate = SAMPLE_RATE_48000;
  227. else if (rate == 96000) rate = SAMPLE_RATE_96000;
  228. else if (rate == 192000) rate = SAMPLE_RATE_192000;
  229. else {
  230. ESP_LOGW(TAG, "Unknown sample rate %hu", rate);
  231. rate = SAMPLE_RATE_44100;
  232. }
  233. i2c_write_reg(I2S_SR_CTRL, rate);
  234. }
  235. /****************************************************************************************
  236. * Set normalized (0..100) volume
  237. */
  238. static void ac101_set_spk_volume(uint8_t volume) {
  239. uint16_t value = max(volume, 100);
  240. value = ((int) value * 0x1f) / 100;
  241. value |= i2c_read_reg(SPKOUT_CTRL) & ~0x1f;
  242. i2c_write_reg(SPKOUT_CTRL, value);
  243. }
  244. /****************************************************************************************
  245. * Set normalized (0..100) earphone volume
  246. */
  247. static void ac101_set_earph_volume(uint8_t volume) {
  248. uint16_t value = max(volume, 100);
  249. value = (((int) value * 0x3f) / 100) << 4;
  250. value |= i2c_read_reg(HPOUT_CTRL) & ~(0x3f << 4);
  251. i2c_write_reg(HPOUT_CTRL, value);
  252. }
  253. #if 0
  254. /****************************************************************************************
  255. * Get normalized (0..100) speaker volume
  256. */
  257. static int ac101_get_spk_volume(void) {
  258. return ((i2c_read_reg(SPKOUT_CTRL) & 0x1f) * 100) / 0x1f;
  259. }
  260. /****************************************************************************************
  261. * Get normalized (0..100) earphone volume
  262. */
  263. static int ac101_get_earph_volume(void) {
  264. return (((i2c_read_reg(HPOUT_CTRL) >> 4) & 0x3f) * 100) / 0x3f;
  265. }
  266. /****************************************************************************************
  267. *
  268. */
  269. static void ac101_set_output_mixer_gain(ac_output_mixer_gain_t gain,ac_output_mixer_source_t source)
  270. {
  271. uint16_t regval,temp,clrbit;
  272. regval = i2c_read_reg(OMIXER_BST1_CTRL);
  273. switch(source){
  274. case SRC_MIC1:
  275. temp = (gain&0x7) << 6;
  276. clrbit = ~(0x7<<6);
  277. break;
  278. case SRC_MIC2:
  279. temp = (gain&0x7) << 3;
  280. clrbit = ~(0x7<<3);
  281. break;
  282. case SRC_LINEIN:
  283. temp = (gain&0x7);
  284. clrbit = ~0x7;
  285. break;
  286. default:
  287. return;
  288. }
  289. regval &= clrbit;
  290. regval |= temp;
  291. i2c_write_reg(OMIXER_BST1_CTRL,regval);
  292. }
  293. /****************************************************************************************
  294. *
  295. */
  296. static void ac101_deinit(void) {
  297. i2c_write_reg(CHIP_AUDIO_RS, 0x123); //soft reset
  298. }
  299. /****************************************************************************************
  300. * Don't know when this one is supposed to be called
  301. */
  302. static void ac101_i2s_config_clock(ac_i2s_clock_t *cfg) {
  303. uint16_t regval=0;
  304. regval = i2c_read_reg(I2S1LCK_CTRL);
  305. regval &= 0xe03f;
  306. regval |= (cfg->bclk_div << 9);
  307. regval |= (cfg->lclk_div << 6);
  308. i2c_write_reg(I2S1LCK_CTRL, regval);
  309. }
  310. #endif
  311. /****************************************************************************************
  312. *
  313. */
  314. static void ac101_start(ac_module_t mode) {
  315. if (mode == AC_MODULE_LINE) {
  316. i2c_write_reg(0x51, 0x0408);
  317. i2c_write_reg(0x40, 0x8000);
  318. i2c_write_reg(0x50, 0x3bc0);
  319. }
  320. if (mode == AC_MODULE_ADC || mode == AC_MODULE_ADC_DAC || mode == AC_MODULE_LINE) {
  321. // I2S1_SDOUT_CTRL
  322. // i2c_write_reg(PLL_CTRL2, 0x8120);
  323. i2c_write_reg(0x04, 0x800c);
  324. i2c_write_reg(0x05, 0x800c);
  325. // res |= i2c_write_reg(0x06, 0x3000);
  326. }
  327. if (mode == AC_MODULE_DAC || mode == AC_MODULE_ADC_DAC || mode == AC_MODULE_LINE) {
  328. uint16_t value = i2c_read_reg(PLL_CTRL2);
  329. value |= 0x8000;
  330. i2c_write_reg(PLL_CTRL2, value);
  331. }
  332. }
  333. /****************************************************************************************
  334. *
  335. */
  336. static void ac101_stop(void) {
  337. uint16_t value = i2c_read_reg(PLL_CTRL2);
  338. value &= ~0x8000;
  339. i2c_write_reg(PLL_CTRL2, value);
  340. }