test_common_spi.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /*
  2. * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include "test/test_common_spi.h"
  7. #include "driver/spi_slave.h"
  8. #include "esp_log.h"
  9. #include "driver/gpio.h"
  10. #include "hal/gpio_hal.h"
  11. #include "esp_rom_gpio.h"
  12. int test_freq_default[]=TEST_FREQ_DEFAULT();
  13. const char MASTER_TAG[] = "test_master";
  14. const char SLAVE_TAG[] = "test_slave";
  15. DRAM_ATTR uint8_t spitest_master_send[] = {
  16. 0x93, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0, 0xaa, 0xcc, 0xff, 0xee, 0x55, 0x77, 0x88, 0x43,
  17. 0x74,
  18. 0x93, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0, 0xaa, 0xcc, 0xff, 0xee, 0x55, 0x77, 0x88, 0x43,
  19. 0x74,
  20. 0x93, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0, 0xaa, 0xcc, 0xff, 0xee, 0x55, 0x77, 0x88, 0x43,
  21. 0x74,
  22. };
  23. DRAM_ATTR uint8_t spitest_slave_send[] = {
  24. 0xaa, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10, 0x13, 0x57, 0x9b, 0xdf, 0x24, 0x68, 0xac, 0xe0,
  25. 0xda,
  26. 0xaa, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10, 0x13, 0x57, 0x9b, 0xdf, 0x24, 0x68, 0xac, 0xe0,
  27. 0xda,
  28. 0xaa, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10, 0x13, 0x57, 0x9b, 0xdf, 0x24, 0x68, 0xac, 0xe0,
  29. 0xda,
  30. };
  31. void spitest_def_param(void* arg)
  32. {
  33. spitest_param_set_t *param_set=(spitest_param_set_t*)arg;
  34. param_set->test_size = 8;
  35. if (param_set->freq_list==NULL) param_set->freq_list = test_freq_default;
  36. }
  37. /**********************************************************************************
  38. * functions for slave task
  39. *********************************************************************************/
  40. esp_err_t init_slave_context(spi_slave_task_context_t *context)
  41. {
  42. context->data_to_send = xQueueCreate( 16, sizeof( slave_txdata_t ));
  43. if ( context->data_to_send == NULL ) {
  44. return ESP_ERR_NO_MEM;
  45. }
  46. context->data_received = xRingbufferCreate( 1024, RINGBUF_TYPE_NOSPLIT );
  47. if ( context->data_received == NULL ) {
  48. return ESP_ERR_NO_MEM;
  49. }
  50. context->spi=TEST_SLAVE_HOST;
  51. return ESP_OK;
  52. }
  53. void deinit_slave_context(spi_slave_task_context_t *context)
  54. {
  55. TEST_ASSERT( context->data_to_send != NULL );
  56. vQueueDelete( context->data_to_send );
  57. context->data_to_send = NULL;
  58. TEST_ASSERT( context->data_received != NULL );
  59. vRingbufferDelete( context->data_received );
  60. context->data_received = NULL;
  61. }
  62. /* The task requires a queue and a ringbuf, which should be initialized before task starts.
  63. Send ``slave_txdata_t`` to the queue to make the task send data;
  64. the task returns data got to the ringbuf, which should have sufficient size.
  65. */
  66. void spitest_slave_task(void* arg)
  67. {
  68. spi_slave_task_context_t* context = (spi_slave_task_context_t*) arg;
  69. QueueHandle_t queue = context->data_to_send;
  70. RingbufHandle_t ringbuf = context->data_received;
  71. uint8_t recvbuf[320+8];
  72. slave_txdata_t txdata;
  73. ESP_LOGI( SLAVE_TAG, "slave up" );
  74. //never quit, but blocked by the queue, waiting to be killed, when no more send from main task.
  75. while( 1 ) {
  76. BaseType_t ret = xQueueReceive( queue, &txdata, portMAX_DELAY );
  77. assert(ret);
  78. spi_slave_transaction_t t = {};
  79. t.length = txdata.len;
  80. t.tx_buffer = txdata.start;
  81. t.rx_buffer = recvbuf+8;
  82. //loop until trans_len != 0 to skip glitches
  83. do {
  84. TEST_ESP_OK( spi_slave_transmit( context->spi, &t, portMAX_DELAY ) );
  85. } while ( t.trans_len <= 2 );
  86. memcpy(recvbuf, &t.trans_len, sizeof(uint32_t));
  87. *(uint8_t**)(recvbuf+4) = (uint8_t*)txdata.start;
  88. ESP_LOGD( SLAVE_TAG, "received: %d", t.trans_len );
  89. xRingbufferSend( ringbuf, recvbuf, 8+(t.trans_len+7)/8, portMAX_DELAY );
  90. }
  91. }
  92. void slave_pull_up(const spi_bus_config_t* cfg, int spics_io_num)
  93. {
  94. gpio_set_pull_mode(cfg->mosi_io_num, GPIO_PULLUP_ONLY);
  95. gpio_set_pull_mode(cfg->sclk_io_num, GPIO_PULLUP_ONLY);
  96. gpio_set_pull_mode(spics_io_num, GPIO_PULLUP_ONLY);
  97. }
  98. /**********************************************************************************
  99. * functions for slave task
  100. *********************************************************************************/
  101. static int test_len[] = {1, 3, 5, 7, 9, 11, 33, 64};
  102. void spitest_init_transactions(const spitest_param_set_t *cfg, spitest_context_t* context)
  103. {
  104. spi_transaction_t* trans = context->master_trans;
  105. uint8_t *rx_buf_ptr = context->master_rxbuf;
  106. const spi_dup_t dup = cfg->dup;
  107. for (int i = 0; i < cfg->test_size; i++) {
  108. const void* tx_buffer = spitest_master_send + i%8;
  109. int length = 8*test_len[i];
  110. if (cfg->length_aligned) length = (length+31)&(~31);
  111. if (dup == HALF_DUPLEX_MISO) {
  112. trans[i] = (spi_transaction_t) {
  113. .rx_buffer = rx_buf_ptr,
  114. .rxlength = length,
  115. };
  116. } else if (dup == HALF_DUPLEX_MOSI) {
  117. trans[i] = (spi_transaction_t) {
  118. .tx_buffer = tx_buffer,
  119. .length = length,
  120. };
  121. } else {
  122. trans[i] = (spi_transaction_t) {
  123. .tx_buffer = tx_buffer,
  124. .length = length,
  125. .rx_buffer = rx_buf_ptr,
  126. };
  127. }
  128. rx_buf_ptr = (uint8_t*)( (uint32_t)(rx_buf_ptr + (length+7)/8 + 3) & (~3));
  129. const void* slave_tx = spitest_slave_send + (cfg->slave_unaligned_addr? i%3: (i%3)*4);
  130. //prepare slave tx data
  131. context->slave_trans[i] = (slave_txdata_t) {
  132. .start = slave_tx,
  133. .len = 512,
  134. };
  135. if (cfg->slave_dma_chan != 0) context->slave_trans[i].len = 1024;
  136. }
  137. }
  138. void spitest_master_print_data(spi_transaction_t *t, int rxlength)
  139. {
  140. if (t->tx_buffer) ESP_LOG_BUFFER_HEX( "master tx", t->tx_buffer, t->length/8 );
  141. if (t->rx_buffer) ESP_LOG_BUFFER_HEX( "master rx", t->rx_buffer, rxlength/8 );
  142. }
  143. void spitest_slave_print_data(slave_rxdata_t *t, bool print_rxdata)
  144. {
  145. int rcv_len = (t->len+7)/8;
  146. ESP_LOGI(SLAVE_TAG, "trans_len: %d", t->len);
  147. ESP_LOG_BUFFER_HEX("slave tx", t->tx_start, rcv_len);
  148. if (print_rxdata) ESP_LOG_BUFFER_HEX("slave rx", t->data, rcv_len);
  149. }
  150. esp_err_t spitest_check_data(int len, spi_transaction_t *master_t, slave_rxdata_t *slave_t, bool check_master_data, bool check_slave_len, bool check_slave_data)
  151. {
  152. esp_err_t ret = ESP_OK;
  153. uint32_t rcv_len = slave_t->len;
  154. //currently the rcv_len can be in range of [t->length-1, t->length+3]
  155. if (check_slave_len &&
  156. (rcv_len < len - 1 || rcv_len > len + 4)) {
  157. ret = ESP_FAIL;
  158. }
  159. if (check_master_data &&
  160. memcmp(slave_t->tx_start, master_t->rx_buffer, (len + 7) / 8) != 0 ) {
  161. ret = ESP_FAIL;
  162. }
  163. if (check_slave_data &&
  164. memcmp(master_t->tx_buffer, slave_t->data, (len + 7) / 8) != 0 ) {
  165. ret = ESP_FAIL;
  166. }
  167. if (ret != ESP_OK) {
  168. ESP_LOGI(SLAVE_TAG, "slave_recv_len: %d", rcv_len);
  169. spitest_master_print_data(master_t, len);
  170. spitest_slave_print_data(slave_t, true);
  171. //already failed, try to use the TEST_ASSERT to output the reason...
  172. if (check_slave_len) {
  173. TEST_ASSERT(rcv_len >= len - 1 && rcv_len <= len + 4);
  174. }
  175. TEST_ASSERT_EQUAL_HEX8_ARRAY(slave_t->tx_start, master_t->rx_buffer, (len + 7) / 8);
  176. TEST_ASSERT_EQUAL_HEX8_ARRAY(master_t->tx_buffer, slave_t->data, (len + 7) / 8);
  177. }
  178. return ESP_OK;
  179. }
  180. void master_free_device_bus(spi_device_handle_t spi)
  181. {
  182. TEST_ESP_OK( spi_bus_remove_device(spi) );
  183. TEST_ESP_OK( spi_bus_free(TEST_SPI_HOST) );
  184. }
  185. void spitest_gpio_output_sel(uint32_t gpio_num, int func, uint32_t signal_idx)
  186. {
  187. gpio_hal_iomux_func_sel(GPIO_PIN_MUX_REG[gpio_num], func);
  188. esp_rom_gpio_connect_out_signal(gpio_num, signal_idx, 0, 0);
  189. }
  190. void spitest_gpio_input_sel(uint32_t gpio_num, int func, uint32_t signal_idx)
  191. {
  192. gpio_hal_iomux_func_sel(GPIO_PIN_MUX_REG[gpio_num], func);
  193. esp_rom_gpio_connect_in_signal(gpio_num, signal_idx, 0);
  194. }
  195. //Note this cs_num is the ID of the connected devices' ID, e.g. if 2 devices are connected to the bus,
  196. //then the cs_num of the 1st and 2nd devices are 0 and 1 respectively.
  197. void same_pin_func_sel(spi_bus_config_t bus, spi_device_interface_config_t dev, uint8_t cs_num)
  198. {
  199. spitest_gpio_output_sel(bus.mosi_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spid_out);
  200. spitest_gpio_input_sel(bus.mosi_io_num, FUNC_GPIO, spi_periph_signal[TEST_SLAVE_HOST].spid_in);
  201. spitest_gpio_output_sel(bus.miso_io_num, FUNC_GPIO, spi_periph_signal[TEST_SLAVE_HOST].spiq_out);
  202. spitest_gpio_input_sel(bus.miso_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spiq_in);
  203. spitest_gpio_output_sel(dev.spics_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spics_out[cs_num]);
  204. spitest_gpio_input_sel(dev.spics_io_num, FUNC_GPIO, spi_periph_signal[TEST_SLAVE_HOST].spics_in);
  205. spitest_gpio_output_sel(bus.sclk_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spiclk_out);
  206. spitest_gpio_input_sel(bus.sclk_io_num, FUNC_GPIO, spi_periph_signal[TEST_SLAVE_HOST].spiclk_in);
  207. #if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
  208. GPIO.func_in_sel_cfg[FSPIQ_IN_IDX].sig_in_sel = 1;
  209. #endif
  210. }
  211. void get_tx_buffer(uint32_t seed, uint8_t *master_send_buf, uint8_t *slave_send_buf, int send_buf_size)
  212. {
  213. srand(seed);
  214. for (int i = 0; i < send_buf_size; i++) {
  215. slave_send_buf[i] = rand();
  216. master_send_buf[i] = rand();
  217. }
  218. }