cs4265.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #include <string.h>
  12. //#define LOG_LOCAL_LEVEL ESP_LOG_DEBUG
  13. #include "freertos/FreeRTOS.h"
  14. #include "freertos/task.h"
  15. #include "driver/i2s.h"
  16. #include "driver/i2c.h"
  17. #include "driver/gpio.h"
  18. #include "esp_log.h"
  19. #include "adac.h"
  20. #include "stdio.h"
  21. #include "math.h"
  22. #include "Configurator.h"
  23. #define CS4265_PULL_UP (0x4F )
  24. #define CS4265_PULL_DOWN (0x4E )
  25. #ifndef ARRAY_SIZE
  26. #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  27. #endif
  28. static const char TAG[] = "CS4265";
  29. static bool init(char *config, int i2c_port_num, i2s_config_t *i2s_config);
  30. static void speaker(bool active);
  31. static void headset(bool active);
  32. static bool volume(unsigned left, unsigned right);
  33. static void power(adac_power_e mode);
  34. static esp_err_t cs4265_update_bit(uint8_t reg_no,uint8_t mask,uint8_t val );
  35. static esp_err_t set_clock();
  36. const struct adac_s dac_cs4265 = { sys_DACModelEnum_CS4265, init, adac_deinit, power, speaker, headset, volume };
  37. struct cs4265_cmd_s {
  38. uint8_t reg;
  39. uint8_t value;
  40. };
  41. struct cs4265_private {
  42. uint8_t format;
  43. uint32_t sysclk;
  44. i2s_config_t *i2s_config;
  45. int i2c_port;
  46. };
  47. struct cs4265_private cs4265;
  48. #define CS4265_CHIP_ID 0x1
  49. #define CS4265_CHIP_ID_VAL 0xD0
  50. #define CS4265_CHIP_ID_MASK 0xF0
  51. #define CS4265_REV_ID_MASK 0x0F
  52. #define CS4265_PWRCTL 0x02
  53. #define CS4265_PWRCTL_PDN (1 << 0)
  54. #define CS4265_PWRCTL_PDN_DAC (1 << 1)
  55. #define CS4265_PWRCTL_PDN_ADC (1 << 2)
  56. #define CS4265_PWRCTL_PDN_MIC (1 << 3)
  57. #define CS4265_PWRCTL_FREEZE (1 << 7)
  58. #define CS4265_PWRCTL_PDN_ALL CS4265_PWRCTL_PDN | CS4265_PWRCTL_PDN_ADC | CS4265_PWRCTL_PDN_DAC | CS4265_PWRCTL_PDN_MIC
  59. #define CS4265_DAC_CTL 0x3
  60. // De-Emphasis Control (Bit 1)
  61. // The standard 50/15 i2s digital de-emphasis filter response may be implemented for a sample
  62. // rate of 44.1 kHz when the DeEmph bit is set. NOTE: De-emphasis is available only in Single-Speed Mode.
  63. #define CS4265_DAC_CTL_DEEMPH (1 << 1)
  64. // MUTE DAC
  65. // The DAC outputs will mute and the MUTEC pin will become active when this bit is set. Though this bit is
  66. // active high, it should be noted that the MUTEC pin is active low. The common mode voltage on the outputs
  67. // will be retained when this bit is set. The muting function is effected, similar to attenuation changes, by the
  68. // DACSoft and DACZero bits in the DAC Control 2 register.
  69. #define CS4265_DAC_CTL_MUTE (1 << 2)
  70. // The required relationship between LRCK, SCLK and SDIN for the DAC is defined by the DAC Digital Interface
  71. // DAC_DIF1 DAC_DIF0 Description Format Figure
  72. // 0 0 Left Justified, up to 24-bit data (default) 0 5
  73. // 0 1 I²S, up to 24-bit data 1 6
  74. // 1 0 Right-Justified, 16-bit Data 2 7
  75. // 1 1 Right-Justified, 24-bit Data 3 7
  76. #define CS4265_DAC_CTL_DIF0 (1 << 4)
  77. // The required relationship between LRCK, SCLK and SDIN for the DAC is defined by the DAC Digital Interface
  78. // DAC_DIF1 DAC_DIF0 Description Format Figure
  79. // 0 0 Left Justified, up to 24-bit data (default) 0 5
  80. // 0 1 I²S, up to 24-bit data 1 6
  81. // 1 0 Right-Justified, 16-bit Data 2 7
  82. // 1 1 Right-Justified, 24-bit Data 3 7
  83. #define CS4265_DAC_CTL_DIF1 (1 << 5)
  84. #define CS4265_ADC_CTL 0x4
  85. #define CS4265_ADC_MASTER 1
  86. #define CS4265_ADC_CTL_MUTE (1 << 2)
  87. #define CS4265_ADC_DIF (1 << 4)
  88. #define CS4265_ADC_FM (3 << 6)
  89. //Master Clock Dividers (Bits 6:4)
  90. //Sets the frequency of the supplied MCLK signal.
  91. //
  92. //MCLK Divider MCLK Freq2 MCLK Freq1 MCLK Freq0
  93. // ÷ 1 0 0 0
  94. // ÷ 1.5 0 0 1
  95. // ÷ 2 0 1 0
  96. // ÷ 3 0 1 1
  97. // ÷ 4 1 0 0
  98. // NA 1 0 1
  99. // NA 1 1 x
  100. #define CS4265_MCLK_FREQ 0x5
  101. #define CS4265_MCLK_FREQ_1_0X (0b000<<4 )
  102. #define CS4265_MCLK_FREQ_1_5X (0b001<<4 )
  103. #define CS4265_MCLK_FREQ_2_0X (0b010<<4 )
  104. #define CS4265_MCLK_FREQ_3_0X (0b011<<4 )
  105. #define CS4265_MCLK_FREQ_4_0X (0b100<<4 )
  106. #define CS4265_MCLK_FREQ_MASK (7 << 4)
  107. #define CS4265_SIG_SEL 0x6
  108. #define CS4265_SIG_SEL_LOOP (1 << 1)
  109. #define CS4265_SIG_SEL_SDIN2 (1 << 7)
  110. #define CS4265_SIG_SEL_SDIN1 (0 << 7)
  111. // Sets the gain or attenuation for the ADC input PGA stage. The gain may be adjusted from -12 dB to
  112. // +12 dB in 0.5 dB steps. The gain bits are in two’s complement with the Gain0 bit set for a 0.5 dB step.
  113. // Register settings outside of the ±12 dB range are reserved and must not be used. See Table 13 for example settings
  114. #define CS4265_CHB_PGA_CTL 0x7
  115. // Sets the gain or attenuation for the ADC input PGA stage. The gain may be adjusted from -12 dB to
  116. // +12 dB in 0.5 dB steps. The gain bits are in two’s complement with the Gain0 bit set for a 0.5 dB step.
  117. // Register settings outside of the ±12 dB range are reserved and must not be used. See Table 13 for example settings
  118. #define CS4265_CHA_PGA_CTL 0x8
  119. // Gain[5:0] Setting
  120. // 101000 -12 dB
  121. // 000000 0 dB
  122. // 011000 +12 dB
  123. #define CS4265_ADC_CTL2 0x9
  124. // The digital volume control allows the user to attenuate the signal in 0.5 dB increments from 0 to -127 dB.
  125. // The Vol0 bit activates a 0.5 dB attenuation when set, and no attenuation when cleared. The Vol[7:1] bits
  126. // activate attenuation equal to their decimal equivalent (in dB).
  127. //Binary Code Volume Setting
  128. //00000000 0 dB
  129. //00000001 -0.5 dB
  130. //00101000 -20 dB
  131. //00101001 -20.5 dB
  132. //11111110 -127 dB
  133. //11111111 -127.5 dB
  134. #define CS4265_DAC_CHA_VOL 0xA
  135. // The digital volume control allows the user to attenuate the signal in 0.5 dB increments from 0 to -127 dB.
  136. // The Vol0 bit activates a 0.5 dB attenuation when set, and no attenuation when cleared. The Vol[7:1] bits
  137. // activate attenuation equal to their decimal equivalent (in dB).
  138. //Binary Code Volume Setting
  139. //00000000 0 dB
  140. //00000001 -0.5 dB
  141. //00101000 -20 dB
  142. //00101001 -20.5 dB
  143. //11111110 -127 dB
  144. //11111111 -127.5 dB
  145. #define CS4265_DAC_CHB_VOL 0xB
  146. #define CS4265_DAC_VOL_ATT_000_0 0b00000000
  147. #define CS4265_DAC_VOL_ATT_000_5 0b00000001
  148. #define CS4265_DAC_VOL_ATT_020_0 0b00101000
  149. #define CS4265_DAC_VOL_ATT_020_5 0b00101001
  150. #define CS4265_DAC_VOL_ATT_127_0 0b11111110
  151. #define CS4265_DAC_VOL_ATT_127_5 0b11111111
  152. // DAC Soft Ramp or Zero Cross Enable (Bits 7:6)
  153. //
  154. // Soft Ramp Enable
  155. // Soft Ramp allows level changes, both muting and attenuation, to be implemented by incrementally ramping, in 1/8 dB steps, from the current level to the new level at a rate of 1 dB per 8 left/right clock periods.
  156. // See Table 17.
  157. // Zero Cross Enable
  158. // Zero Cross Enable dictates that signal-level changes, either by attenuation changes or muting, will occur
  159. // on a signal zero crossing to minimize audible artifacts. The requested level change will occur after a timeout period between 512 and 1024 sample periods (10.7 ms to 21.3 ms at 48 kHz sample rate) if the signal
  160. // does not encounter a zero crossing. The zero cross function is independently monitored and implemented
  161. // for each channel. See Table 17.
  162. // Soft Ramp and Zero Cross Enable
  163. // Soft Ramp and Zero Cross Enable dictate that signal-level changes, either by attenuation changes or muting, will occur in 1/8 dB steps and be implemented on a signal zero crossing. The 1/8 dB level change will
  164. // occur after a time-out period between 512 and 1024 sample periods (10.7 ms to 21.3 ms at 48 kHz sample rate) if the signal does not encounter a zero crossing. The zero cross function is independently monitored and implemented for each channel
  165. // DACSoft DACZeroCross Mode
  166. // 0 0 Changes to affect immediately
  167. // 0 1 Zero Cross enabled
  168. // 1 0 Soft Ramp enabled
  169. // 1 1 Soft Ramp and Zero Cross enabled (default)
  170. #define CS4265_DAC_CTL2 0xC
  171. #define CS4265_DAC_CTL2_ZERO_CROSS_EN (uint8_t)(0b01 <<7)
  172. #define CS4265_DAC_CTL2_SOFT_RAMP_EN (uint8_t)(0b10 <<7)
  173. #define CS4265_DAC_CTL2_SOFT_RAMP_ZERO_CROSS_EN (uint8_t)(0b11 <<7)
  174. #define CS4265_INT_STATUS 0xD
  175. #define CS4265_INT_STATUS_ADC_UNDF (1<<0)
  176. #define CS4265_INT_STATUS_ADC_OVF (1<<1)
  177. #define CS4265_INT_STATUS_CLKERR (1<<3)
  178. #define CS4265_INT_MASK 0xE
  179. #define CS4265_STATUS_MODE_MSB 0xF
  180. #define CS4265_STATUS_MODE_LSB 0x10
  181. //Transmitter Control 1 - Address 11h
  182. #define CS4265_SPDIF_CTL1 0x11
  183. #define CS4265_SPDIF_CTL2 0x12
  184. // Transmitter Digital Interface Format (Bits 7:6)
  185. // Function:
  186. // The required relationship between LRCK, SCLK and SDIN for the transmitter is defined
  187. // Tx_DIF1 Tx_DIF0 Description Format Figure
  188. // 0 0 Left Justified, up to 24-bit data (default) 0 5
  189. // 0 1 I²S, up to 24-bit data 1 6
  190. // 1 0 Right-Justified, 16-bit Data 2 7
  191. // 1 1 Right-Justified, 24-bit Data 3 7
  192. #define CS4265_SPDIF_CTL2_MMTLR (1<<0)
  193. #define CS4265_SPDIF_CTL2_MMTCS (1<<1)
  194. #define CS4265_SPDIF_CTL2_MMT (1<<2)
  195. #define CS4265_SPDIF_CTL2_V (1<<3)
  196. #define CS4265_SPDIF_CTL2_TXMUTE (1<<4)
  197. #define CS4265_SPDIF_CTL2_TXOFF (1<<5)
  198. #define CS4265_SPDIF_CTL2_MUTE (1 << 4)
  199. #define CS4265_SPDIF_CTL2_DIF (3 << 6)
  200. #define CS4265_SPDIF_CTL2_DIF0 (1 << 6)
  201. #define CS4265_SPDIF_CTL2_DIF1 (1 << 7)
  202. #define CS4265_C_DATA_BUFF 0x13
  203. #define CS4265_MAX_REGISTER 0x2A
  204. struct cs4265_clk_para {
  205. uint32_t mclk;
  206. uint32_t rate;
  207. uint8_t fm_mode; /* values 1, 2, or 4 */
  208. uint8_t mclkdiv;
  209. };
  210. static const struct cs4265_clk_para clk_map_table[] = {
  211. /*32k*/
  212. {8192000, 32000, 0, 0},
  213. {12288000, 32000, 0, 1},
  214. {16384000, 32000, 0, 2},
  215. {24576000, 32000, 0, 3},
  216. {32768000, 32000, 0, 4},
  217. /*44.1k*/
  218. {11289600, 44100, 0, 0},
  219. {16934400, 44100, 0, 1},
  220. {22579200, 44100, 0, 2},
  221. {33868000, 44100, 0, 3},
  222. {45158400, 44100, 0, 4},
  223. /*48k*/
  224. {12288000, 48000, 0, 0},
  225. {18432000, 48000, 0, 1},
  226. {24576000, 48000, 0, 2},
  227. {36864000, 48000, 0, 3},
  228. {49152000, 48000, 0, 4},
  229. /*64k*/
  230. {8192000, 64000, 1, 0},
  231. {12288000, 64000, 1, 1},
  232. {16934400, 64000, 1, 2},
  233. {24576000, 64000, 1, 3},
  234. {32768000, 64000, 1, 4},
  235. /* 88.2k */
  236. {11289600, 88200, 1, 0},
  237. {16934400, 88200, 1, 1},
  238. {22579200, 88200, 1, 2},
  239. {33868000, 88200, 1, 3},
  240. {45158400, 88200, 1, 4},
  241. /* 96k */
  242. {12288000, 96000, 1, 0},
  243. {18432000, 96000, 1, 1},
  244. {24576000, 96000, 1, 2},
  245. {36864000, 96000, 1, 3},
  246. {49152000, 96000, 1, 4},
  247. /* 128k */
  248. {8192000, 128000, 2, 0},
  249. {12288000, 128000, 2, 1},
  250. {16934400, 128000, 2, 2},
  251. {24576000, 128000, 2, 3},
  252. {32768000, 128000, 2, 4},
  253. /* 176.4k */
  254. {11289600, 176400, 2, 0},
  255. {16934400, 176400, 2, 1},
  256. {22579200, 176400, 2, 2},
  257. {33868000, 176400, 2, 3},
  258. {49152000, 176400, 2, 4},
  259. /* 192k */
  260. {12288000, 192000, 2, 0},
  261. {18432000, 192000, 2, 1},
  262. {24576000, 192000, 2, 2},
  263. {36864000, 192000, 2, 3},
  264. {49152000, 192000, 2, 4},
  265. };
  266. static const struct cs4265_cmd_s cs4265_init_sequence[] = {
  267. {CS4265_PWRCTL, CS4265_PWRCTL_PDN_ADC | CS4265_PWRCTL_FREEZE | CS4265_PWRCTL_PDN_DAC | CS4265_PWRCTL_PDN_MIC},
  268. {CS4265_DAC_CTL, CS4265_DAC_CTL_DIF0 | CS4265_DAC_CTL_MUTE},
  269. {CS4265_SIG_SEL, CS4265_SIG_SEL_SDIN1},/// SDIN1
  270. {CS4265_SPDIF_CTL2, CS4265_SPDIF_CTL2_DIF0 },//
  271. {CS4265_ADC_CTL, 0x00 },// // Set the serial audio port in slave mode
  272. {CS4265_MCLK_FREQ, CS4265_MCLK_FREQ_1_0X },// // no divider
  273. {CS4265_CHB_PGA_CTL, 0x00 },// // sets the gain to 0db on channel B
  274. {CS4265_CHA_PGA_CTL, 0x00 },// // sets the gain to 0db on channel A
  275. {CS4265_ADC_CTL2, 0x19 },//
  276. {CS4265_DAC_CHA_VOL,CS4265_DAC_VOL_ATT_000_0 },// Full volume out
  277. {CS4265_DAC_CHB_VOL, CS4265_DAC_VOL_ATT_000_0 },// // Full volume out
  278. {CS4265_DAC_CTL2, CS4265_DAC_CTL2_SOFT_RAMP_ZERO_CROSS_EN },//
  279. {CS4265_SPDIF_CTL1, 0x00 },//
  280. {CS4265_INT_MASK, 0x00 },//
  281. {CS4265_STATUS_MODE_MSB, 0x00 },//
  282. {CS4265_STATUS_MODE_LSB, 0x00 },//
  283. {0xff,0xff}
  284. };
  285. // matching orders
  286. typedef enum { cs4265_ACTIVE = 0, cs4265_STANDBY, cs4265_DOWN, cs4265_ANALOGUE_OFF, cs4265_ANALOGUE_ON, cs4265_VOLUME } dac_cmd_e;
  287. static int cs4265_addr;
  288. static void dac_cmd(dac_cmd_e cmd, ...);
  289. static int cs4265_detect(void);
  290. static uint32_t calc_rnd_mclk_freq(){
  291. float m_scale = (cs4265.i2s_config->sample_rate > 96000 && cs4265.i2s_config->bits_per_sample > 16) ? 4 : 8;
  292. float num_channels = cs4265.i2s_config->channel_format < I2S_CHANNEL_FMT_ONLY_RIGHT ? 2 : 1;
  293. return (uint32_t) round(cs4265.i2s_config->bits_per_sample*i2s_get_clk(cs4265.i2c_port)* m_scale*num_channels/100)*100;
  294. }
  295. static int cs4265_get_clk_index(int mclk, int rate)
  296. {
  297. for (int i = 0; i < ARRAY_SIZE(clk_map_table); i++) {
  298. if (clk_map_table[i].rate == rate &&
  299. clk_map_table[i].mclk == mclk)
  300. return i;
  301. }
  302. return -1;
  303. }
  304. static esp_err_t set_clock(){
  305. esp_err_t err = ESP_OK;
  306. uint32_t mclk = calc_rnd_mclk_freq();
  307. int index = cs4265_get_clk_index(mclk,cs4265.i2s_config->sample_rate );
  308. if (index >= 0) {
  309. ESP_LOGD(TAG, "Setting clock for mclk %u, rate %u (fm mode:%u, clk div:%u))", mclk,cs4265.i2s_config->sample_rate,clk_map_table[index].fm_mode,clk_map_table[index].mclkdiv);
  310. err=cs4265_update_bit(CS4265_ADC_CTL,CS4265_ADC_FM, clk_map_table[index].fm_mode << 6);
  311. err|=cs4265_update_bit( CS4265_MCLK_FREQ,CS4265_MCLK_FREQ_MASK,clk_map_table[index].mclkdiv << 4);
  312. } else {
  313. ESP_LOGE(TAG,"can't get correct mclk for ");
  314. return -1;
  315. }
  316. return err;
  317. }
  318. static void get_status(){
  319. uint8_t sts1= adac_read_byte(cs4265_addr, CS4265_INT_STATUS);
  320. ESP_LOGD(TAG,"Status: %s",sts1&CS4265_INT_STATUS_CLKERR?"CLK Error":"CLK OK");
  321. }
  322. /****************************************************************************************
  323. * init
  324. */
  325. static bool init(char *config, int i2c_port, i2s_config_t *i2s_config) {
  326. // find which TAS we are using (if any)
  327. cs4265_addr = adac_init(config, i2c_port);
  328. cs4265.i2s_config = i2s_config;
  329. cs4265.i2c_port=i2c_port;
  330. if (!cs4265_addr) cs4265_addr = cs4265_detect();
  331. if (!cs4265_addr) {
  332. ESP_LOGE(TAG, "No cs4265 detected");
  333. adac_deinit();
  334. return false;
  335. }
  336. #if BYTES_PER_FRAME == 8
  337. ESP_LOGE(TAG,"The CS4265 does not support 32 bits mode. ");
  338. adac_deinit();
  339. return false;
  340. #endif
  341. // configure MLK
  342. ESP_LOGD(TAG, "Configuring MCLK on GPIO0");
  343. PIN_FUNC_SELECT(PERIPHS_IO_MUX_GPIO0_U, FUNC_GPIO0_CLK_OUT1);
  344. REG_WRITE(PIN_CTRL, 0xFFFFFFF0);
  345. i2c_cmd_handle_t i2c_cmd = i2c_cmd_link_create();
  346. for (int i = 0; cs4265_init_sequence[i].reg != 0xff; i++) {
  347. i2c_master_start(i2c_cmd);
  348. i2c_master_write_byte(i2c_cmd, (cs4265_addr << 1) | I2C_MASTER_WRITE, I2C_MASTER_NACK);
  349. i2c_master_write_byte(i2c_cmd, cs4265_init_sequence[i].reg, I2C_MASTER_NACK);
  350. i2c_master_write_byte(i2c_cmd, cs4265_init_sequence[i].value, I2C_MASTER_NACK);
  351. ESP_LOGD(TAG, "i2c write %x at %u", cs4265_init_sequence[i].reg, cs4265_init_sequence[i].value);
  352. }
  353. i2c_master_stop(i2c_cmd);
  354. esp_err_t res = i2c_master_cmd_begin(i2c_port, i2c_cmd, 500 / portTICK_RATE_MS);
  355. i2c_cmd_link_delete(i2c_cmd);
  356. if (res != ESP_OK) {
  357. ESP_LOGE(TAG, "could not intialize cs4265 %d", res);
  358. return false;
  359. }
  360. return true;
  361. }
  362. static esp_err_t cs4265_update_bit(uint8_t reg_no,uint8_t mask,uint8_t val ){
  363. esp_err_t ret=ESP_OK;
  364. uint8_t old= adac_read_byte(cs4265_addr, reg_no);
  365. uint8_t newval = (old & ~mask) | (val & mask);
  366. bool change = old != newval;
  367. if (change){
  368. ret = adac_write_byte(cs4265_addr, reg_no, newval);
  369. if(ret != ESP_OK){
  370. ESP_LOGE(TAG,"Unable to change dac register 0x%02x [0x%02x->0x%02x] from value 0x%02x, mask 0x%02x ",reg_no,old,newval,val,mask);
  371. }
  372. else {
  373. ESP_LOGD(TAG,"Changed dac register 0x%02x [0x%02x->0x%02x] from value 0x%02x, mask 0x%02x ",reg_no,old,newval,val,mask);
  374. }
  375. }
  376. return ret;
  377. }
  378. /****************************************************************************************
  379. * change volume
  380. */
  381. static bool volume(unsigned left, unsigned right) {
  382. return false;
  383. }
  384. /****************************************************************************************
  385. * power
  386. */
  387. static void power(adac_power_e mode) {
  388. switch(mode) {
  389. case ADAC_STANDBY:
  390. dac_cmd(cs4265_STANDBY);
  391. break;
  392. case ADAC_ON:
  393. dac_cmd(cs4265_ACTIVE);
  394. break;
  395. case ADAC_OFF:
  396. dac_cmd(cs4265_DOWN);
  397. break;
  398. default:
  399. ESP_LOGW(TAG, "unknown DAC command");
  400. break;
  401. }
  402. }
  403. /****************************************************************************************
  404. * speaker
  405. */
  406. static void speaker(bool active) {
  407. if (active) dac_cmd(cs4265_ANALOGUE_ON);
  408. else dac_cmd(cs4265_ANALOGUE_OFF);
  409. }
  410. /****************************************************************************************
  411. * headset
  412. */
  413. static void headset(bool active) { }
  414. /****************************************************************************************
  415. * DAC specific commands
  416. */
  417. void dac_cmd(dac_cmd_e cmd, ...) {
  418. va_list args;
  419. esp_err_t ret = ESP_OK;
  420. va_start(args, cmd);
  421. switch(cmd) {
  422. case cs4265_VOLUME:
  423. ESP_LOGE(TAG, "DAC volume not handled yet");
  424. break;
  425. case cs4265_ACTIVE:
  426. ESP_LOGD(TAG, "Activating DAC");
  427. adac_write_byte(cs4265_addr, CS4265_PWRCTL,0);
  428. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXOFF,0);
  429. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXMUTE,0);
  430. cs4265_update_bit(CS4265_DAC_CTL,CS4265_DAC_CTL_MUTE,0);
  431. break;
  432. case cs4265_STANDBY:
  433. ESP_LOGD(TAG, "DAC Stand-by");
  434. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXOFF,CS4265_SPDIF_CTL2_TXOFF);
  435. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXMUTE,CS4265_SPDIF_CTL2_TXMUTE);
  436. cs4265_update_bit(CS4265_DAC_CTL,CS4265_DAC_CTL_MUTE,CS4265_DAC_CTL_MUTE);
  437. break;
  438. case cs4265_DOWN:
  439. ESP_LOGD(TAG, "DAC Power Down");
  440. adac_write_byte(cs4265_addr, CS4265_PWRCTL,CS4265_PWRCTL_PDN_ALL);
  441. break;
  442. case cs4265_ANALOGUE_OFF:
  443. ESP_LOGD(TAG, "DAC Analog off");
  444. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXOFF,CS4265_SPDIF_CTL2_TXOFF);
  445. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXMUTE,CS4265_SPDIF_CTL2_TXMUTE);
  446. cs4265_update_bit(CS4265_DAC_CTL,CS4265_DAC_CTL_MUTE,CS4265_DAC_CTL_MUTE);
  447. break;
  448. case cs4265_ANALOGUE_ON:
  449. ESP_LOGD(TAG, "DAC Analog on");
  450. adac_write_byte(cs4265_addr, CS4265_PWRCTL,0);
  451. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXOFF,0);
  452. cs4265_update_bit(CS4265_SPDIF_CTL2,CS4265_SPDIF_CTL2_TXMUTE,0);
  453. cs4265_update_bit(CS4265_DAC_CTL,CS4265_DAC_CTL_MUTE,0);
  454. break;
  455. }
  456. if (ret != ESP_OK) {
  457. ESP_LOGE(TAG, "could not use cs4265 %d", ret);
  458. }
  459. get_status();
  460. // now set the clock
  461. ret=set_clock(cs4265.i2s_config,cs4265.i2c_port);
  462. if (ret != ESP_OK) {
  463. ESP_LOGE(TAG, "could not set the cs4265's clock %d", ret);
  464. }
  465. va_end(args);
  466. }
  467. /****************************************************************************************
  468. * TAS57 detection
  469. */
  470. static int cs4265_detect(void) {
  471. uint8_t addr[] = {CS4265_PULL_DOWN,CS4265_PULL_UP};
  472. for (int i = 0; i < sizeof(addr); i++) {
  473. ESP_LOGI(TAG,"Looking for CS4265 @0x%x",addr[i]);
  474. uint8_t reg=adac_read_byte(addr[i], CS4265_CHIP_ID);
  475. if(reg==255){
  476. continue;
  477. }
  478. // found a device at that address
  479. uint8_t devid = reg & CS4265_CHIP_ID_MASK;
  480. if (devid != CS4265_CHIP_ID_VAL) {
  481. ESP_LOGE(TAG,"CS4265 Device ID (%X). Expected %X",devid, CS4265_CHIP_ID);
  482. return 0;
  483. }
  484. ESP_LOGI(TAG,"Found DAC @0x%x, Version %x",addr[i], reg & CS4265_REV_ID_MASK);
  485. return addr[i];
  486. }
  487. return 0;
  488. }