2017-01-06 06:20:32 +00:00
|
|
|
|
/*
|
|
|
|
|
Tests for the spi_master device driver
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <esp_types.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <malloc.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
|
#include "freertos/task.h"
|
|
|
|
|
#include "freertos/semphr.h"
|
|
|
|
|
#include "freertos/queue.h"
|
|
|
|
|
#include "freertos/xtensa_api.h"
|
|
|
|
|
#include "unity.h"
|
|
|
|
|
#include "driver/spi_master.h"
|
2017-09-30 06:36:31 +00:00
|
|
|
|
#include "driver/spi_slave.h"
|
2017-05-03 08:03:28 +00:00
|
|
|
|
#include "esp_heap_caps.h"
|
2017-09-30 06:36:31 +00:00
|
|
|
|
#include "esp_log.h"
|
2018-06-08 07:32:43 +00:00
|
|
|
|
#include "soc/spi_periph.h"
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
#include "test_utils.h"
|
|
|
|
|
#include "test/test_common_spi.h"
|
2018-06-13 04:52:44 +00:00
|
|
|
|
#include "soc/gpio_periph.h"
|
2018-07-18 08:56:19 +00:00
|
|
|
|
#include "sdkconfig.h"
|
2019-01-23 09:07:03 +00:00
|
|
|
|
#include "../cache_utils.h"
|
global: move the soc component out of the common list
This MR removes the common dependency from every IDF components to the SOC component.
Currently, in the ``idf_functions.cmake`` script, we include the header path of SOC component by default for all components.
But for better code organization (or maybe also benifits to the compiling speed), we may remove the dependency to SOC components for most components except the driver and kernel related components.
In CMAKE, we have two kinds of header visibilities (set by include path visibility):
(Assume component A --(depends on)--> B, B is the current component)
1. public (``COMPONENT_ADD_INCLUDEDIRS``): means this path is visible to other depending components (A) (visible to A and B)
2. private (``COMPONENT_PRIV_INCLUDEDIRS``): means this path is only visible to source files inside the component (visible to B only)
and we have two kinds of depending ways:
(Assume component A --(depends on)--> B --(depends on)--> C, B is the current component)
1. public (```COMPONENT_REQUIRES```): means B can access to public include path of C. All other components rely on you (A) will also be available for the public headers. (visible to A, B)
2. private (``COMPONENT_PRIV_REQUIRES``): means B can access to public include path of C, but don't propagate this relation to other components (A). (visible to B)
1. remove the common requirement in ``idf_functions.cmake``, this makes the SOC components invisible to all other components by default.
2. if a component (for example, DRIVER) really needs the dependency to SOC, add a private dependency to SOC for it.
3. some other components that don't really depends on the SOC may still meet some errors saying "can't find header soc/...", this is because it's depended component (DRIVER) incorrectly include the header of SOC in its public headers. Moving all this kind of #include into source files, or private headers
4. Fix the include requirements for some file which miss sufficient #include directives. (Previously they include some headers by the long long long header include link)
This is a breaking change. Previous code may depends on the long include chain.
You may need to include the following headers for some files after this commit:
- soc/soc.h
- soc/soc_memory_layout.h
- driver/gpio.h
- esp_sleep.h
The major broken include chain includes:
1. esp_system.h no longer includes esp_sleep.h. The latter includes driver/gpio.h and driver/touch_pad.h.
2. ets_sys.h no longer includes soc/soc.h
3. freertos/portmacro.h no longer includes soc/soc_memory_layout.h
some peripheral headers no longer includes their hw related headers, e.g. rom/gpio.h no longer includes soc/gpio_pins.h and soc/gpio_reg.h
BREAKING CHANGE
2019-04-03 05:17:38 +00:00
|
|
|
|
#include "soc/soc_memory_layout.h"
|
2019-09-03 06:06:26 +00:00
|
|
|
|
#include "driver/spi_common_internal.h"
|
2017-01-06 06:20:32 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
const static char TAG[] = "test_spi";
|
2017-01-06 06:20:32 +00:00
|
|
|
|
|
2017-01-11 08:13:33 +00:00
|
|
|
|
static void check_spi_pre_n_for(int clk, int pre, int n)
|
|
|
|
|
{
|
|
|
|
|
esp_err_t ret;
|
|
|
|
|
spi_device_handle_t handle;
|
|
|
|
|
|
|
|
|
|
spi_device_interface_config_t devcfg={
|
|
|
|
|
.command_bits=0,
|
|
|
|
|
.address_bits=0,
|
|
|
|
|
.dummy_bits=0,
|
|
|
|
|
.clock_speed_hz=clk,
|
|
|
|
|
.duty_cycle_pos=128,
|
|
|
|
|
.mode=0,
|
|
|
|
|
.spics_io_num=21,
|
|
|
|
|
.queue_size=3
|
|
|
|
|
};
|
|
|
|
|
char sendbuf[16]="";
|
|
|
|
|
spi_transaction_t t;
|
|
|
|
|
memset(&t, 0, sizeof(t));
|
|
|
|
|
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &handle);
|
2017-01-11 08:13:33 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
|
|
|
|
|
t.length=16*8;
|
|
|
|
|
t.tx_buffer=sendbuf;
|
|
|
|
|
ret=spi_device_transmit(handle, &t);
|
|
|
|
|
|
2019-08-06 09:59:26 +00:00
|
|
|
|
spi_dev_t* hw = spi_periph_signal[TEST_SPI_HOST].hw;
|
2017-01-11 08:13:33 +00:00
|
|
|
|
|
2019-08-06 09:59:26 +00:00
|
|
|
|
printf("Checking clk rate %dHz. expect pre %d n %d, got pre %d n %d\n", clk, pre, n, hw->clock.clkdiv_pre+1, hw->clock.clkcnt_n+1);
|
|
|
|
|
|
|
|
|
|
TEST_ASSERT(hw->clock.clkcnt_n+1==n);
|
|
|
|
|
TEST_ASSERT(hw->clock.clkdiv_pre+1==pre);
|
2017-01-11 08:13:33 +00:00
|
|
|
|
|
|
|
|
|
ret=spi_bus_remove_device(handle);
|
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE("SPI Master clockdiv calculation routines", "[spi]")
|
|
|
|
|
{
|
|
|
|
|
spi_bus_config_t buscfg={
|
2019-10-11 08:07:43 +00:00
|
|
|
|
.mosi_io_num=PIN_NUM_MOSI,
|
|
|
|
|
.miso_io_num=PIN_NUM_MISO,
|
|
|
|
|
.sclk_io_num=PIN_NUM_CLK,
|
2017-01-11 08:13:33 +00:00
|
|
|
|
.quadwp_io_num=-1,
|
|
|
|
|
.quadhd_io_num=-1
|
|
|
|
|
};
|
|
|
|
|
esp_err_t ret;
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_initialize(TEST_SPI_HOST, &buscfg, 1);
|
2017-01-11 08:13:33 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
|
2017-03-31 07:05:25 +00:00
|
|
|
|
check_spi_pre_n_for(26000000, 1, 3);
|
|
|
|
|
check_spi_pre_n_for(20000000, 1, 4);
|
2017-01-11 08:13:33 +00:00
|
|
|
|
check_spi_pre_n_for(8000000, 1, 10);
|
|
|
|
|
check_spi_pre_n_for(800000, 2, 50);
|
|
|
|
|
check_spi_pre_n_for(100000, 16, 50);
|
|
|
|
|
check_spi_pre_n_for(333333, 4, 60);
|
2017-04-27 06:50:02 +00:00
|
|
|
|
check_spi_pre_n_for(900000, 2, 44);
|
|
|
|
|
check_spi_pre_n_for(1, 8192, 64); //Actually should generate the minimum clock speed, 152Hz
|
2017-03-31 07:05:25 +00:00
|
|
|
|
check_spi_pre_n_for(26000000, 1, 3);
|
2017-01-11 08:13:33 +00:00
|
|
|
|
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_free(TEST_SPI_HOST);
|
2017-01-11 08:13:33 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-11 08:07:43 +00:00
|
|
|
|
static spi_device_handle_t setup_spi_bus_loopback(int clkspeed, bool dma) {
|
2017-03-31 07:05:25 +00:00
|
|
|
|
spi_bus_config_t buscfg={
|
2019-10-11 08:07:43 +00:00
|
|
|
|
.mosi_io_num=PIN_NUM_MOSI,
|
|
|
|
|
.miso_io_num=PIN_NUM_MOSI,
|
|
|
|
|
.sclk_io_num=PIN_NUM_CLK,
|
2017-03-31 07:05:25 +00:00
|
|
|
|
.quadwp_io_num=-1,
|
|
|
|
|
.quadhd_io_num=-1,
|
|
|
|
|
.max_transfer_sz=4096*3
|
|
|
|
|
};
|
2017-01-06 06:20:32 +00:00
|
|
|
|
spi_device_interface_config_t devcfg={
|
2017-03-31 07:05:25 +00:00
|
|
|
|
.command_bits=0,
|
|
|
|
|
.address_bits=0,
|
2017-01-06 06:20:32 +00:00
|
|
|
|
.dummy_bits=0,
|
2017-03-31 07:05:25 +00:00
|
|
|
|
.clock_speed_hz=clkspeed,
|
2017-01-06 06:20:32 +00:00
|
|
|
|
.duty_cycle_pos=128,
|
|
|
|
|
.mode=0,
|
2019-10-11 08:07:43 +00:00
|
|
|
|
.spics_io_num=PIN_NUM_CS,
|
2017-03-02 10:46:59 +00:00
|
|
|
|
.queue_size=3,
|
2017-01-06 06:20:32 +00:00
|
|
|
|
};
|
2017-03-31 07:05:25 +00:00
|
|
|
|
esp_err_t ret;
|
|
|
|
|
spi_device_handle_t handle;
|
2017-01-06 06:20:32 +00:00
|
|
|
|
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_initialize(TEST_SPI_HOST, &buscfg, dma?1:0);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &handle);
|
2017-01-06 06:20:32 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-07-23 10:47:57 +00:00
|
|
|
|
//connect MOSI to two devices breaks the output, fix it.
|
2019-10-11 08:07:43 +00:00
|
|
|
|
spitest_gpio_output_sel(PIN_NUM_MOSI, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spid_out);
|
2017-01-06 06:20:32 +00:00
|
|
|
|
printf("Bus/dev inited.\n");
|
2017-03-31 07:05:25 +00:00
|
|
|
|
return handle;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 10:47:57 +00:00
|
|
|
|
static int spi_test(spi_device_handle_t handle, int num_bytes) {
|
2017-03-31 07:05:25 +00:00
|
|
|
|
esp_err_t ret;
|
|
|
|
|
int x;
|
2018-07-23 10:47:57 +00:00
|
|
|
|
bool success = true;
|
2017-03-31 07:05:25 +00:00
|
|
|
|
srand(num_bytes);
|
2018-07-23 10:47:57 +00:00
|
|
|
|
char *sendbuf=heap_caps_malloc((num_bytes+3)&(~3), MALLOC_CAP_DMA);
|
|
|
|
|
char *recvbuf=heap_caps_malloc((num_bytes+3)&(~3), MALLOC_CAP_DMA);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
for (x=0; x<num_bytes; x++) {
|
|
|
|
|
sendbuf[x]=rand()&0xff;
|
|
|
|
|
recvbuf[x]=0x55;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-06 06:20:32 +00:00
|
|
|
|
spi_transaction_t t;
|
|
|
|
|
memset(&t, 0, sizeof(t));
|
2017-03-31 07:05:25 +00:00
|
|
|
|
t.length=num_bytes*8;
|
2017-01-06 06:20:32 +00:00
|
|
|
|
t.tx_buffer=sendbuf;
|
|
|
|
|
t.rx_buffer=recvbuf;
|
2017-08-01 08:00:58 +00:00
|
|
|
|
t.addr=0xA00000000000000FL;
|
2017-08-17 11:41:53 +00:00
|
|
|
|
t.cmd=0x55;
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
|
|
|
|
printf("Transmitting %d bytes...\n", num_bytes);
|
2017-01-06 06:20:32 +00:00
|
|
|
|
ret=spi_device_transmit(handle, &t);
|
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
|
2017-03-31 07:05:25 +00:00
|
|
|
|
srand(num_bytes);
|
|
|
|
|
for (x=0; x<num_bytes; x++) {
|
|
|
|
|
if (sendbuf[x]!=(rand()&0xff)) {
|
|
|
|
|
printf("Huh? Sendbuf corrupted at byte %d\n", x);
|
|
|
|
|
TEST_ASSERT(0);
|
|
|
|
|
}
|
|
|
|
|
if (sendbuf[x]!=recvbuf[x]) break;
|
|
|
|
|
}
|
|
|
|
|
if (x!=num_bytes) {
|
|
|
|
|
int from=x-16;
|
|
|
|
|
if (from<0) from=0;
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success = false;
|
2017-03-31 07:05:25 +00:00
|
|
|
|
printf("Error at %d! Sent vs recved: (starting from %d)\n" , x, from);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
for (int i=0; i<32; i++) {
|
|
|
|
|
if (i+from<num_bytes) printf("%02X ", sendbuf[from+i]);
|
|
|
|
|
}
|
|
|
|
|
printf("\n");
|
|
|
|
|
for (int i=0; i<32; i++) {
|
|
|
|
|
if (i+from<num_bytes) printf("%02X ", recvbuf[from+i]);
|
|
|
|
|
}
|
|
|
|
|
printf("\n");
|
2017-03-31 07:05:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 10:47:57 +00:00
|
|
|
|
if (success) printf("Success!\n");
|
2017-03-31 07:05:25 +00:00
|
|
|
|
free(sendbuf);
|
|
|
|
|
free(recvbuf);
|
2018-07-23 10:47:57 +00:00
|
|
|
|
return success;
|
2017-03-31 07:05:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 10:47:57 +00:00
|
|
|
|
TEST_CASE("SPI Master test", "[spi]")
|
2017-03-02 10:46:59 +00:00
|
|
|
|
{
|
2018-07-23 10:47:57 +00:00
|
|
|
|
bool success = true;
|
2017-03-31 07:05:25 +00:00
|
|
|
|
printf("Testing bus at 80KHz\n");
|
2019-10-11 08:07:43 +00:00
|
|
|
|
spi_device_handle_t handle=setup_spi_bus_loopback(80000, true);
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle, 16); //small
|
|
|
|
|
success &= spi_test(handle, 21); //small, unaligned
|
|
|
|
|
success &= spi_test(handle, 36); //aligned
|
|
|
|
|
success &= spi_test(handle, 128); //aligned
|
|
|
|
|
success &= spi_test(handle, 129); //unaligned
|
|
|
|
|
success &= spi_test(handle, 4096-2); //multiple descs, edge case 1
|
|
|
|
|
success &= spi_test(handle, 4096-1); //multiple descs, edge case 2
|
|
|
|
|
success &= spi_test(handle, 4096*3); //multiple descs
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
master_free_device_bus(handle);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
|
|
|
|
printf("Testing bus at 80KHz, non-DMA\n");
|
2019-10-11 08:07:43 +00:00
|
|
|
|
handle=setup_spi_bus_loopback(80000, false);
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle, 4); //aligned
|
|
|
|
|
success &= spi_test(handle, 16); //small
|
|
|
|
|
success &= spi_test(handle, 21); //small, unaligned
|
2018-08-16 07:44:06 +00:00
|
|
|
|
success &= spi_test(handle, 32); //small
|
|
|
|
|
success &= spi_test(handle, 47); //small, unaligned
|
|
|
|
|
success &= spi_test(handle, 63); //small
|
|
|
|
|
success &= spi_test(handle, 64); //small, unaligned
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
master_free_device_bus(handle);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
|
|
|
|
printf("Testing bus at 26MHz\n");
|
2019-10-11 08:07:43 +00:00
|
|
|
|
handle=setup_spi_bus_loopback(20000000, true);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle, 128); //DMA, aligned
|
|
|
|
|
success &= spi_test(handle, 4096*3); //DMA, multiple descs
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
master_free_device_bus(handle);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
|
|
|
|
printf("Testing bus at 900KHz\n");
|
2019-10-11 08:07:43 +00:00
|
|
|
|
handle=setup_spi_bus_loopback(9000000, true);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle, 128); //DMA, aligned
|
|
|
|
|
success &= spi_test(handle, 4096*3); //DMA, multiple descs
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
master_free_device_bus(handle);
|
2018-07-23 10:47:57 +00:00
|
|
|
|
TEST_ASSERT(success);
|
2017-03-31 07:05:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-07-23 10:47:57 +00:00
|
|
|
|
TEST_CASE("SPI Master test, interaction of multiple devs", "[spi]") {
|
2017-03-02 10:46:59 +00:00
|
|
|
|
esp_err_t ret;
|
2018-07-23 10:47:57 +00:00
|
|
|
|
bool success = true;
|
2017-03-31 07:05:25 +00:00
|
|
|
|
spi_device_interface_config_t devcfg={
|
|
|
|
|
.command_bits=0,
|
|
|
|
|
.address_bits=0,
|
|
|
|
|
.dummy_bits=0,
|
|
|
|
|
.clock_speed_hz=1000000,
|
|
|
|
|
.duty_cycle_pos=128,
|
|
|
|
|
.mode=0,
|
2019-10-11 08:07:43 +00:00
|
|
|
|
.spics_io_num=PIN_NUM_CS,
|
2017-03-31 07:05:25 +00:00
|
|
|
|
.queue_size=3,
|
|
|
|
|
};
|
2019-10-11 08:07:43 +00:00
|
|
|
|
spi_device_handle_t handle1=setup_spi_bus_loopback(80000, true);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
spi_device_handle_t handle2;
|
2018-09-30 11:00:06 +00:00
|
|
|
|
spi_bus_add_device(TEST_SPI_HOST, &devcfg, &handle2);
|
2017-03-02 10:46:59 +00:00
|
|
|
|
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 1\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle1, 7);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 1\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle1, 15);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 2\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle2, 15);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 1\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle1, 32);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 2\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle2, 32);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 1\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle1, 63);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 2\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle2, 63);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 1\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle1, 5000);
|
2017-04-13 03:14:35 +00:00
|
|
|
|
printf("Sending to dev 2\n");
|
2018-07-23 10:47:57 +00:00
|
|
|
|
success &= spi_test(handle2, 5000);
|
2017-03-02 10:46:59 +00:00
|
|
|
|
|
|
|
|
|
|
2017-03-31 07:05:25 +00:00
|
|
|
|
ret=spi_bus_remove_device(handle2);
|
2017-04-27 06:50:02 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
master_free_device_bus(handle1);
|
2018-07-23 10:47:57 +00:00
|
|
|
|
TEST_ASSERT(success);
|
2017-03-02 10:46:59 +00:00
|
|
|
|
}
|
2017-03-31 07:05:25 +00:00
|
|
|
|
|
2019-02-11 06:17:31 +00:00
|
|
|
|
static esp_err_t test_master_pins(int mosi, int miso, int sclk, int cs)
|
|
|
|
|
{
|
|
|
|
|
esp_err_t ret;
|
|
|
|
|
spi_bus_config_t cfg = SPI_BUS_TEST_DEFAULT_CONFIG();
|
|
|
|
|
cfg.mosi_io_num = mosi;
|
|
|
|
|
cfg.miso_io_num = miso;
|
|
|
|
|
cfg.sclk_io_num = sclk;
|
|
|
|
|
|
|
|
|
|
spi_device_interface_config_t master_cfg = SPI_DEVICE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
master_cfg.spics_io_num = cs;
|
|
|
|
|
|
|
|
|
|
ret = spi_bus_initialize(TEST_SPI_HOST, &cfg, 1);
|
|
|
|
|
if (ret != ESP_OK) return ret;
|
|
|
|
|
|
|
|
|
|
spi_device_handle_t spi;
|
|
|
|
|
ret = spi_bus_add_device(TEST_SPI_HOST, &master_cfg, &spi);
|
|
|
|
|
if (ret != ESP_OK) {
|
|
|
|
|
spi_bus_free(TEST_SPI_HOST);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
master_free_device_bus(spi);
|
|
|
|
|
return ESP_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static esp_err_t test_slave_pins(int mosi, int miso, int sclk, int cs)
|
|
|
|
|
{
|
|
|
|
|
esp_err_t ret;
|
|
|
|
|
spi_bus_config_t cfg = SPI_BUS_TEST_DEFAULT_CONFIG();
|
|
|
|
|
cfg.mosi_io_num = mosi;
|
|
|
|
|
cfg.miso_io_num = miso;
|
|
|
|
|
cfg.sclk_io_num = sclk;
|
|
|
|
|
|
|
|
|
|
spi_slave_interface_config_t slave_cfg = SPI_SLAVE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
slave_cfg.spics_io_num = cs;
|
|
|
|
|
|
2019-10-11 08:07:43 +00:00
|
|
|
|
ret = spi_slave_initialize(TEST_SLAVE_HOST, &cfg, &slave_cfg, TEST_DMA_CHAN_SLAVE);
|
2019-02-11 06:17:31 +00:00
|
|
|
|
if (ret != ESP_OK) return ret;
|
|
|
|
|
|
|
|
|
|
spi_slave_free(TEST_SLAVE_HOST);
|
|
|
|
|
return ESP_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("spi placed on input-only pins", "[spi]")
|
|
|
|
|
{
|
|
|
|
|
TEST_ESP_OK(test_master_pins(PIN_NUM_MOSI, PIN_NUM_MISO, PIN_NUM_CLK, PIN_NUM_CS));
|
2019-10-11 08:07:43 +00:00
|
|
|
|
TEST_ASSERT(test_master_pins(INPUT_ONLY_PIN, PIN_NUM_MISO, PIN_NUM_CLK, PIN_NUM_CS) != ESP_OK);
|
|
|
|
|
TEST_ESP_OK(test_master_pins(PIN_NUM_MOSI, INPUT_ONLY_PIN, PIN_NUM_CLK, PIN_NUM_CS));
|
|
|
|
|
TEST_ASSERT(test_master_pins(PIN_NUM_MOSI, PIN_NUM_MISO, INPUT_ONLY_PIN, PIN_NUM_CS) != ESP_OK);
|
|
|
|
|
TEST_ASSERT(test_master_pins(PIN_NUM_MOSI, PIN_NUM_MISO, PIN_NUM_CLK, INPUT_ONLY_PIN) != ESP_OK);
|
2019-02-11 06:17:31 +00:00
|
|
|
|
|
|
|
|
|
TEST_ESP_OK(test_slave_pins(PIN_NUM_MOSI, PIN_NUM_MISO, PIN_NUM_CLK, PIN_NUM_CS));
|
2019-10-11 08:07:43 +00:00
|
|
|
|
TEST_ESP_OK(test_slave_pins(INPUT_ONLY_PIN, PIN_NUM_MISO, PIN_NUM_CLK, PIN_NUM_CS));
|
|
|
|
|
TEST_ASSERT(test_slave_pins(PIN_NUM_MOSI, INPUT_ONLY_PIN, PIN_NUM_CLK, PIN_NUM_CS) != ESP_OK);
|
|
|
|
|
TEST_ESP_OK(test_slave_pins(PIN_NUM_MOSI, PIN_NUM_MISO, INPUT_ONLY_PIN, PIN_NUM_CS));
|
|
|
|
|
TEST_ESP_OK(test_slave_pins(PIN_NUM_MOSI, PIN_NUM_MISO, PIN_NUM_CLK, INPUT_ONLY_PIN));
|
2019-02-11 06:17:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_CASE("spi bus setting with different pin configs", "[spi]")
|
|
|
|
|
{
|
|
|
|
|
spi_bus_config_t cfg;
|
|
|
|
|
uint32_t flags_o;
|
|
|
|
|
uint32_t flags_expected;
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-06-05 17:36:01 +00:00
|
|
|
|
ESP_LOGI(TAG, "test 6 iomux output pins...");
|
2019-06-13 06:12:54 +00:00
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO | SPICOMMON_BUSFLAG_IOMUX_PINS | SPICOMMON_BUSFLAG_QUAD;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
2018-06-05 17:36:01 +00:00
|
|
|
|
ESP_LOGI(TAG, "test 4 iomux output pins...");
|
2019-06-13 06:12:54 +00:00
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO | SPICOMMON_BUSFLAG_IOMUX_PINS | SPICOMMON_BUSFLAG_DUAL;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = -1,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "test 6 output pins...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO | SPICOMMON_BUSFLAG_QUAD;
|
|
|
|
|
//swap MOSI and MISO
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "test 4 output pins...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO | SPICOMMON_BUSFLAG_DUAL;
|
|
|
|
|
//swap MOSI and MISO
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = -1,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "test master 5 output pins and MOSI on input-only pin...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO | SPICOMMON_BUSFLAG_WPHD;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = INPUT_ONLY_PIN, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "test slave 5 output pins and MISO on input-only pin...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO | SPICOMMON_BUSFLAG_WPHD;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = INPUT_ONLY_PIN, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-04-19 04:47:29 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "test master 3 output pins and MOSI on input-only pin...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO;
|
|
|
|
|
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = INPUT_ONLY_PIN, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = -1,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "test slave 3 output pins and MISO on input-only pin...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK | SPICOMMON_BUSFLAG_MOSI | SPICOMMON_BUSFLAG_MISO;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = INPUT_ONLY_PIN, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = -1,
|
2018-04-19 04:47:29 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK(spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX32( flags_expected, flags_o );
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "check native flag for 6 output pins...");
|
2019-06-13 06:12:54 +00:00
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_IOMUX_PINS;
|
2018-03-21 12:42:45 +00:00
|
|
|
|
//swap MOSI and MISO
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "check native flag for 4 output pins...");
|
2019-06-13 06:12:54 +00:00
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_IOMUX_PINS;
|
2018-03-21 12:42:45 +00:00
|
|
|
|
//swap MOSI and MISO
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = -1,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "check dual flag for master 5 output pins and MISO/MOSI on input-only pin...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_DUAL;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = INPUT_ONLY_PIN, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = INPUT_ONLY_PIN, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "check dual flag for master 3 output pins and MISO/MOSI on input-only pin...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_DUAL;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = INPUT_ONLY_PIN, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = -1,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = INPUT_ONLY_PIN, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = -1,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "check sclk flag...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_SCLK;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = -1, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-03-21 12:42:45 +00:00
|
|
|
|
ESP_LOGI(TAG, "check mosi flag...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_MOSI;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = -1, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-03-21 12:42:45 +00:00
|
|
|
|
ESP_LOGI(TAG, "check miso flag...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_MISO;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = -1, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "check quad flag...");
|
|
|
|
|
flags_expected = SPICOMMON_BUSFLAG_QUAD;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = -1, .quadwp_io_num = spi_periph_signal[TEST_SPI_HOST].spiwp_iomux_pin,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2019-10-11 08:07:43 +00:00
|
|
|
|
cfg = (spi_bus_config_t){.mosi_io_num = spi_periph_signal[TEST_SPI_HOST].spid_iomux_pin, .miso_io_num = spi_periph_signal[TEST_SPI_HOST].spiq_iomux_pin, .sclk_io_num = spi_periph_signal[TEST_SPI_HOST].spiclk_iomux_pin, .quadhd_io_num = spi_periph_signal[TEST_SPI_HOST].spihd_iomux_pin, .quadwp_io_num = -1,
|
2018-03-21 12:42:45 +00:00
|
|
|
|
.max_transfer_sz = 8, .flags = flags_expected};
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_MASTER, &flags_o));
|
|
|
|
|
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, spicommon_bus_initialize_io(TEST_SPI_HOST, &cfg, 0, flags_expected|SPICOMMON_BUSFLAG_SLAVE, &flags_o));
|
2018-03-21 12:42:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 09:40:57 +00:00
|
|
|
|
TEST_CASE("SPI Master no response when switch from host1 (HSPI) to host2 (VSPI)", "[spi]")
|
|
|
|
|
{
|
2017-09-01 10:49:45 +00:00
|
|
|
|
//spi config
|
|
|
|
|
spi_bus_config_t bus_config;
|
|
|
|
|
spi_device_interface_config_t device_config;
|
|
|
|
|
spi_device_handle_t spi;
|
|
|
|
|
spi_host_device_t host;
|
|
|
|
|
|
|
|
|
|
memset(&bus_config, 0, sizeof(spi_bus_config_t));
|
|
|
|
|
memset(&device_config, 0, sizeof(spi_device_interface_config_t));
|
|
|
|
|
|
|
|
|
|
bus_config.miso_io_num = -1;
|
2019-10-11 08:07:43 +00:00
|
|
|
|
bus_config.mosi_io_num = PIN_NUM_MOSI;
|
|
|
|
|
bus_config.sclk_io_num = PIN_NUM_CLK;
|
2017-09-01 10:49:45 +00:00
|
|
|
|
bus_config.quadwp_io_num = -1;
|
|
|
|
|
bus_config.quadhd_io_num = -1;
|
|
|
|
|
|
|
|
|
|
device_config.clock_speed_hz = 50000;
|
|
|
|
|
device_config.mode = 0;
|
|
|
|
|
device_config.spics_io_num = -1;
|
|
|
|
|
device_config.queue_size = 1;
|
|
|
|
|
device_config.flags = SPI_DEVICE_TXBIT_LSBFIRST | SPI_DEVICE_RXBIT_LSBFIRST;
|
|
|
|
|
|
|
|
|
|
struct spi_transaction_t transaction = {
|
|
|
|
|
.flags = SPI_TRANS_USE_TXDATA | SPI_TRANS_USE_RXDATA,
|
|
|
|
|
.length = 16,
|
|
|
|
|
.rx_buffer = NULL,
|
|
|
|
|
.tx_data = {0x04, 0x00}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//initialize for first host
|
2019-10-11 08:07:43 +00:00
|
|
|
|
host = TEST_SPI_HOST;
|
2017-09-01 10:49:45 +00:00
|
|
|
|
|
2019-10-11 08:07:43 +00:00
|
|
|
|
TEST_ASSERT(spi_bus_initialize(host, &bus_config, GET_DMA_CHAN(host)) == ESP_OK);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
TEST_ASSERT(spi_bus_add_device(host, &device_config, &spi) == ESP_OK);
|
|
|
|
|
|
|
|
|
|
printf("before first xmit\n");
|
|
|
|
|
TEST_ASSERT(spi_device_transmit(spi, &transaction) == ESP_OK);
|
|
|
|
|
printf("after first xmit\n");
|
|
|
|
|
|
|
|
|
|
TEST_ASSERT(spi_bus_remove_device(spi) == ESP_OK);
|
|
|
|
|
TEST_ASSERT(spi_bus_free(host) == ESP_OK);
|
|
|
|
|
|
|
|
|
|
//for second host and failed before
|
2019-10-11 08:07:43 +00:00
|
|
|
|
host = TEST_SLAVE_HOST;
|
2017-09-01 10:49:45 +00:00
|
|
|
|
|
2019-10-11 08:07:43 +00:00
|
|
|
|
TEST_ASSERT(spi_bus_initialize(host, &bus_config, GET_DMA_CHAN(host)) == ESP_OK);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
TEST_ASSERT(spi_bus_add_device(host, &device_config, &spi) == ESP_OK);
|
|
|
|
|
|
|
|
|
|
printf("before second xmit\n");
|
|
|
|
|
// the original version (bit mis-written) stucks here.
|
|
|
|
|
TEST_ASSERT(spi_device_transmit(spi, &transaction) == ESP_OK);
|
|
|
|
|
// test case success when see this.
|
|
|
|
|
printf("after second xmit\n");
|
|
|
|
|
|
|
|
|
|
TEST_ASSERT(spi_bus_remove_device(spi) == ESP_OK);
|
|
|
|
|
TEST_ASSERT(spi_bus_free(host) == ESP_OK);
|
2017-07-17 03:37:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-18 08:56:19 +00:00
|
|
|
|
DRAM_ATTR static uint32_t data_dram[80]={0};
|
2017-07-17 03:37:32 +00:00
|
|
|
|
//force to place in code area.
|
2018-07-18 08:56:19 +00:00
|
|
|
|
static const uint8_t data_drom[320+3] = {
|
|
|
|
|
0xD8, 0xD1, 0x0A, 0xB8, 0xCE, 0x67, 0x1B, 0x11, 0x17, 0xA0, 0xDA, 0x89, 0x55, 0xC1, 0x40, 0x0F, 0x55, 0xEB, 0xF7, 0xEC, 0xF0, 0x3C, 0x0F, 0x4D, 0x2B, 0x9E, 0xBF, 0xCD, 0x57, 0x2C, 0x48, 0x1A,
|
|
|
|
|
0x8B, 0x47, 0xC5, 0x01, 0x0C, 0x05, 0x80, 0x30, 0xF4, 0xEA, 0xE5, 0x92, 0x56, 0x97, 0x98, 0x78, 0x21, 0x34, 0xA1, 0xBC, 0xAE, 0x93, 0x7E, 0x96, 0x08, 0xE6, 0x54, 0x6A, 0x6C, 0x67, 0xCF, 0x58,
|
|
|
|
|
0xEE, 0x15, 0xA8, 0xB6, 0x32, 0x8C, 0x85, 0xF7, 0xE9, 0x88, 0x5E, 0xB1, 0x76, 0xE4, 0xB2, 0xC7, 0x0F, 0x57, 0x51, 0x7A, 0x2F, 0xAB, 0x12, 0xC3, 0x37, 0x99, 0x4E, 0x67, 0x75, 0x28, 0xE4, 0x1D,
|
|
|
|
|
0xF8, 0xBA, 0x22, 0xCB, 0xA1, 0x18, 0x4C, 0xAB, 0x5F, 0xC9, 0xF3, 0xA2, 0x39, 0x92, 0x44, 0xE6, 0x7B, 0xE3, 0xD0, 0x16, 0xC5, 0xC2, 0xCB, 0xD9, 0xC0, 0x7F, 0x06, 0xBF, 0x3E, 0xCE, 0xE1, 0x26,
|
|
|
|
|
0xD5, 0x3C, 0xAD, 0x0E, 0xC1, 0xC7, 0x7D, 0x0D, 0x56, 0x85, 0x6F, 0x32, 0xC8, 0x63, 0x8D, 0x12, 0xAB, 0x1E, 0x81, 0x7B, 0xF4, 0xF1, 0xA9, 0xAF, 0xD9, 0x74, 0x60, 0x05, 0x3D, 0xCC, 0x0C, 0x34,
|
|
|
|
|
0x11, 0x44, 0xAE, 0x2A, 0x13, 0x2F, 0x04, 0xC3, 0x59, 0xF0, 0x54, 0x07, 0xBA, 0x26, 0xD9, 0xFB, 0x80, 0x95, 0xC0, 0x14, 0xFA, 0x27, 0xEF, 0xD3, 0x58, 0xB8, 0xE4, 0xA2, 0xE3, 0x5E, 0x94, 0xB3,
|
|
|
|
|
0xCD, 0x2C, 0x4F, 0xAC, 0x3B, 0xD1, 0xCA, 0xBE, 0x61, 0x71, 0x7B, 0x62, 0xEB, 0xF0, 0xFC, 0xEF, 0x22, 0xB7, 0x3F, 0x56, 0x65, 0x19, 0x61, 0x73, 0x1A, 0x4D, 0xE4, 0x23, 0xE5, 0x3A, 0x91, 0x5C,
|
|
|
|
|
0xE6, 0x1B, 0x5F, 0x0E, 0x10, 0x94, 0x7C, 0x9F, 0xCF, 0x75, 0xB3, 0xEB, 0x42, 0x4C, 0xCF, 0xFE, 0xAF, 0x68, 0x62, 0x3F, 0x9A, 0x3C, 0x81, 0x3E, 0x7A, 0x45, 0x92, 0x79, 0x91, 0x4F, 0xFF, 0xDE,
|
|
|
|
|
0x25, 0x18, 0x33, 0xB9, 0xA9, 0x3A, 0x3F, 0x1F, 0x4F, 0x4B, 0x5C, 0x71, 0x82, 0x75, 0xB0, 0x1F, 0xE9, 0x98, 0xA3, 0xE2, 0x65, 0xBB, 0xCA, 0x4F, 0xB7, 0x1D, 0x23, 0x43, 0x16, 0x73, 0xBD, 0x83,
|
|
|
|
|
0x70, 0x22, 0x7D, 0x0A, 0x6D, 0xD3, 0x77, 0x73, 0xD0, 0xF4, 0x06, 0xB2, 0x19, 0x8C, 0xFF, 0x58, 0xE4, 0xDB, 0xE9, 0xEC, 0x89, 0x6A, 0xF4, 0x0E, 0x67, 0x12, 0xEC, 0x11, 0xD2, 0x1F, 0x8D, 0xD7,
|
|
|
|
|
};
|
2017-07-17 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
TEST_CASE("SPI Master DMA test, TX and RX in different regions", "[spi]")
|
|
|
|
|
{
|
2019-06-05 04:34:19 +00:00
|
|
|
|
#ifdef CONFIG_SPIRAM
|
2018-07-18 08:56:19 +00:00
|
|
|
|
//test psram if enabled
|
|
|
|
|
ESP_LOGI(TAG, "testing PSRAM...");
|
2018-10-19 04:00:16 +00:00
|
|
|
|
uint32_t* data_malloc = (uint32_t*)heap_caps_malloc(324, MALLOC_CAP_SPIRAM);
|
|
|
|
|
TEST_ASSERT(esp_ptr_external_ram(data_malloc));
|
2018-07-18 08:56:19 +00:00
|
|
|
|
#else
|
2018-10-19 04:00:16 +00:00
|
|
|
|
uint32_t* data_malloc = (uint32_t*)heap_caps_malloc(324, MALLOC_CAP_DMA);
|
|
|
|
|
TEST_ASSERT(esp_ptr_in_dram(data_malloc));
|
2018-07-18 08:56:19 +00:00
|
|
|
|
#endif
|
|
|
|
|
TEST_ASSERT(data_malloc != NULL);
|
|
|
|
|
|
2018-10-19 04:00:16 +00:00
|
|
|
|
//refer to soc_memory_layout.c
|
|
|
|
|
uint32_t* data_iram = (uint32_t*)heap_caps_malloc(324, MALLOC_CAP_EXEC);
|
|
|
|
|
TEST_ASSERT(data_iram != NULL);
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "iram: %p, dram: %p", data_iram, data_dram);
|
|
|
|
|
ESP_LOGI(TAG, "drom: %p, malloc: %p", data_drom, data_malloc);
|
|
|
|
|
TEST_ASSERT(esp_ptr_in_dram(data_dram));
|
|
|
|
|
TEST_ASSERT(esp_ptr_in_iram(data_iram));
|
|
|
|
|
TEST_ASSERT(esp_ptr_in_drom(data_drom));
|
|
|
|
|
|
2018-07-18 08:56:19 +00:00
|
|
|
|
srand(52);
|
|
|
|
|
for (int i = 0; i < 320/4; i++) {
|
|
|
|
|
data_iram[i] = rand();
|
|
|
|
|
data_dram[i] = rand();
|
|
|
|
|
data_malloc[i] = rand();
|
|
|
|
|
}
|
2017-07-17 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
esp_err_t ret;
|
|
|
|
|
spi_device_handle_t spi;
|
2018-07-18 08:56:19 +00:00
|
|
|
|
spi_bus_config_t buscfg=SPI_BUS_TEST_DEFAULT_CONFIG();
|
|
|
|
|
buscfg.miso_io_num = PIN_NUM_MOSI;
|
|
|
|
|
spi_device_interface_config_t devcfg=SPI_DEVICE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
|
2017-07-17 03:37:32 +00:00
|
|
|
|
//Initialize the SPI bus
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_initialize(TEST_SPI_HOST, &buscfg, 1);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2017-07-17 03:37:32 +00:00
|
|
|
|
//Attach the LCD to the SPI bus
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &spi);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-07-18 08:56:19 +00:00
|
|
|
|
//connect MOSI to two devices breaks the output, fix it.
|
2018-09-30 11:00:06 +00:00
|
|
|
|
spitest_gpio_output_sel(buscfg.mosi_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spid_out);
|
2017-07-17 03:37:32 +00:00
|
|
|
|
|
2018-07-18 08:56:19 +00:00
|
|
|
|
#define TEST_REGION_SIZE 5
|
|
|
|
|
static spi_transaction_t trans[TEST_REGION_SIZE];
|
2017-07-17 03:37:32 +00:00
|
|
|
|
int x;
|
|
|
|
|
|
|
|
|
|
|
2018-08-28 04:22:40 +00:00
|
|
|
|
memset(trans, 0, sizeof(trans));
|
2017-07-17 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
trans[0].length = 320*8,
|
|
|
|
|
trans[0].tx_buffer = data_iram;
|
2018-07-18 08:56:19 +00:00
|
|
|
|
trans[0].rx_buffer = data_malloc+1;
|
2017-07-13 09:40:57 +00:00
|
|
|
|
|
2017-07-17 03:37:32 +00:00
|
|
|
|
trans[1].length = 320*8,
|
|
|
|
|
trans[1].tx_buffer = data_dram;
|
2018-07-18 08:56:19 +00:00
|
|
|
|
trans[1].rx_buffer = data_iram;
|
2017-07-13 09:40:57 +00:00
|
|
|
|
|
2017-07-17 03:37:32 +00:00
|
|
|
|
trans[2].length = 320*8,
|
2018-07-18 08:56:19 +00:00
|
|
|
|
trans[2].tx_buffer = data_malloc+2;
|
|
|
|
|
trans[2].rx_buffer = data_dram;
|
2017-07-17 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
trans[3].length = 320*8,
|
|
|
|
|
trans[3].tx_buffer = data_drom;
|
|
|
|
|
trans[3].rx_buffer = data_iram;
|
|
|
|
|
|
2018-07-18 08:56:19 +00:00
|
|
|
|
trans[4].length = 4*8,
|
|
|
|
|
trans[4].flags = SPI_TRANS_USE_RXDATA | SPI_TRANS_USE_TXDATA;
|
|
|
|
|
uint32_t* ptr = (uint32_t*)trans[4].rx_data;
|
|
|
|
|
*ptr = 0x54545454;
|
|
|
|
|
ptr = (uint32_t*)trans[4].tx_data;
|
|
|
|
|
*ptr = 0xbc124960;
|
2017-07-17 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
//Queue all transactions.
|
2018-07-18 08:56:19 +00:00
|
|
|
|
for (x=0; x<TEST_REGION_SIZE; x++) {
|
|
|
|
|
ESP_LOGI(TAG, "transmitting %d...", x);
|
|
|
|
|
ret=spi_device_transmit(spi,&trans[x]);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-07-18 08:56:19 +00:00
|
|
|
|
if (trans[x].flags & SPI_TRANS_USE_RXDATA) {
|
|
|
|
|
TEST_ASSERT_EQUAL_HEX8_ARRAY(trans[x].tx_data, trans[x].rx_data, 4);
|
|
|
|
|
} else {
|
|
|
|
|
TEST_ASSERT_EQUAL_HEX32_ARRAY(trans[x].tx_buffer, trans[x].rx_buffer, trans[x].length / 8 /4);
|
|
|
|
|
}
|
2017-09-01 10:49:45 +00:00
|
|
|
|
}
|
|
|
|
|
TEST_ASSERT(spi_bus_remove_device(spi) == ESP_OK);
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT(spi_bus_free(TEST_SPI_HOST) == ESP_OK);
|
2018-07-18 08:56:19 +00:00
|
|
|
|
free(data_malloc);
|
2018-10-19 04:00:16 +00:00
|
|
|
|
free(data_iram);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//this part tests 3 DMA issues in master mode, full-duplex in IDF2.1
|
|
|
|
|
// 1. RX buffer not aligned (start and end)
|
|
|
|
|
// 2. not setting rx_buffer
|
|
|
|
|
// 3. setting rx_length != length
|
|
|
|
|
TEST_CASE("SPI Master DMA test: length, start, not aligned", "[spi]")
|
|
|
|
|
{
|
|
|
|
|
uint8_t tx_buf[320]={0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0, 0xaa, 0xcc, 0xff, 0xee, 0x55, 0x77, 0x88, 0x43};
|
|
|
|
|
uint8_t rx_buf[320];
|
|
|
|
|
|
|
|
|
|
esp_err_t ret;
|
|
|
|
|
spi_device_handle_t spi;
|
|
|
|
|
spi_bus_config_t buscfg={
|
2018-04-19 04:47:29 +00:00
|
|
|
|
.miso_io_num=PIN_NUM_MOSI,
|
2017-09-01 10:49:45 +00:00
|
|
|
|
.mosi_io_num=PIN_NUM_MOSI,
|
|
|
|
|
.sclk_io_num=PIN_NUM_CLK,
|
|
|
|
|
.quadwp_io_num=-1,
|
|
|
|
|
.quadhd_io_num=-1
|
|
|
|
|
};
|
|
|
|
|
spi_device_interface_config_t devcfg={
|
|
|
|
|
.clock_speed_hz=10*1000*1000, //Clock out at 10 MHz
|
|
|
|
|
.mode=0, //SPI mode 0
|
|
|
|
|
.spics_io_num=PIN_NUM_CS, //CS pin
|
|
|
|
|
.queue_size=7, //We want to be able to queue 7 transactions at a time
|
2018-04-19 04:47:29 +00:00
|
|
|
|
.pre_cb=NULL,
|
2017-09-01 10:49:45 +00:00
|
|
|
|
};
|
|
|
|
|
//Initialize the SPI bus
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_initialize(TEST_SPI_HOST, &buscfg, 1);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
//Attach the LCD to the SPI bus
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &spi);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
|
2018-04-19 04:47:29 +00:00
|
|
|
|
//connect MOSI to two devices breaks the output, fix it.
|
2018-09-30 11:00:06 +00:00
|
|
|
|
spitest_gpio_output_sel(buscfg.mosi_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spid_out);
|
2017-09-01 10:49:45 +00:00
|
|
|
|
|
|
|
|
|
memset(rx_buf, 0x66, 320);
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2017-09-01 10:49:45 +00:00
|
|
|
|
for ( int i = 0; i < 8; i ++ ) {
|
|
|
|
|
memset( rx_buf, 0x66, sizeof(rx_buf));
|
|
|
|
|
|
|
|
|
|
spi_transaction_t t = {};
|
|
|
|
|
t.length = 8*(i+1);
|
|
|
|
|
t.rxlength = 0;
|
2018-04-19 04:47:29 +00:00
|
|
|
|
t.tx_buffer = tx_buf+2*i;
|
2017-09-01 10:49:45 +00:00
|
|
|
|
t.rx_buffer = rx_buf + i;
|
|
|
|
|
|
|
|
|
|
if ( i == 1 ) {
|
|
|
|
|
//test set no start
|
|
|
|
|
t.rx_buffer = NULL;
|
|
|
|
|
} else if ( i == 2 ) {
|
|
|
|
|
//test rx length != tx_length
|
|
|
|
|
t.rxlength = t.length - 8;
|
2018-04-19 04:47:29 +00:00
|
|
|
|
}
|
2017-09-01 10:49:45 +00:00
|
|
|
|
spi_device_transmit( spi, &t );
|
|
|
|
|
|
|
|
|
|
for( int i = 0; i < 16; i ++ ) {
|
|
|
|
|
printf("%02X ", rx_buf[i]);
|
|
|
|
|
}
|
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
|
|
if ( i == 1 ) {
|
|
|
|
|
// no rx, skip check
|
|
|
|
|
} else if ( i == 2 ) {
|
|
|
|
|
//test rx length = tx length-1
|
2018-04-19 04:47:29 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX8_ARRAY(t.tx_buffer, t.rx_buffer, t.length/8-1 );
|
2017-09-01 10:49:45 +00:00
|
|
|
|
} else {
|
|
|
|
|
//normal check
|
2018-04-19 04:47:29 +00:00
|
|
|
|
TEST_ASSERT_EQUAL_HEX8_ARRAY(t.tx_buffer, t.rx_buffer, t.length/8 );
|
|
|
|
|
}
|
2017-07-17 03:37:32 +00:00
|
|
|
|
}
|
2017-09-01 10:49:45 +00:00
|
|
|
|
|
|
|
|
|
TEST_ASSERT(spi_bus_remove_device(spi) == ESP_OK);
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ASSERT(spi_bus_free(TEST_SPI_HOST) == ESP_OK);
|
2017-07-13 09:40:57 +00:00
|
|
|
|
}
|
2017-09-30 06:36:31 +00:00
|
|
|
|
|
2018-10-03 16:16:21 +00:00
|
|
|
|
static uint8_t bitswap(uint8_t in)
|
|
|
|
|
{
|
|
|
|
|
uint8_t out = 0;
|
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
|
out = out >> 1;
|
|
|
|
|
if (in&0x80) out |= 0x80;
|
|
|
|
|
in = in << 1;
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
2017-09-30 06:36:31 +00:00
|
|
|
|
|
2018-10-03 16:16:21 +00:00
|
|
|
|
void test_cmd_addr(spi_slave_task_context_t *slave_context, bool lsb_first)
|
|
|
|
|
{
|
2017-09-30 06:36:31 +00:00
|
|
|
|
spi_device_handle_t spi;
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-10-03 16:16:21 +00:00
|
|
|
|
ESP_LOGI(MASTER_TAG, ">>>>>>>>> TEST %s FIRST <<<<<<<<<<<", lsb_first?"LSB":"MSB");
|
|
|
|
|
|
2017-09-30 06:36:31 +00:00
|
|
|
|
//initial master, mode 0, 1MHz
|
2018-04-19 04:47:29 +00:00
|
|
|
|
spi_bus_config_t buscfg=SPI_BUS_TEST_DEFAULT_CONFIG();
|
2019-10-11 08:07:43 +00:00
|
|
|
|
buscfg.quadhd_io_num = UNCONNECTED_PIN;
|
2018-10-03 16:16:21 +00:00
|
|
|
|
TEST_ESP_OK(spi_bus_initialize(TEST_SPI_HOST, &buscfg, 1));
|
2018-04-19 04:47:29 +00:00
|
|
|
|
spi_device_interface_config_t devcfg=SPI_DEVICE_TEST_DEFAULT_CONFIG();
|
2018-10-03 16:16:21 +00:00
|
|
|
|
devcfg.clock_speed_hz = 1*1000*1000;
|
|
|
|
|
if (lsb_first) devcfg.flags |= SPI_DEVICE_BIT_LSBFIRST;
|
|
|
|
|
TEST_ESP_OK(spi_bus_add_device(TEST_SPI_HOST, &devcfg, &spi));
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
|
|
|
|
//connecting pins to two peripherals breaks the output, fix it.
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
spitest_gpio_output_sel(buscfg.mosi_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spid_out);
|
|
|
|
|
spitest_gpio_output_sel(buscfg.miso_io_num, FUNC_GPIO, spi_periph_signal[TEST_SLAVE_HOST].spiq_out);
|
|
|
|
|
spitest_gpio_output_sel(devcfg.spics_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spics_out[0]);
|
|
|
|
|
spitest_gpio_output_sel(buscfg.sclk_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spiclk_out);
|
2017-09-30 06:36:31 +00:00
|
|
|
|
|
2018-10-03 16:16:21 +00:00
|
|
|
|
for (int i= 0; i < 8; i++) {
|
2017-09-30 06:36:31 +00:00
|
|
|
|
//prepare slave tx data
|
2018-10-03 16:16:21 +00:00
|
|
|
|
slave_txdata_t slave_txdata = (slave_txdata_t) {
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
.start = spitest_slave_send + 4*(i%3),
|
2017-09-30 06:36:31 +00:00
|
|
|
|
.len = 256,
|
|
|
|
|
};
|
2018-10-03 16:16:21 +00:00
|
|
|
|
xQueueSend(slave_context->data_to_send, &slave_txdata, portMAX_DELAY);
|
|
|
|
|
|
|
|
|
|
vTaskDelay(50);
|
2017-09-30 06:36:31 +00:00
|
|
|
|
//prepare master tx data
|
2018-10-03 16:16:21 +00:00
|
|
|
|
int cmd_bits = (i+1)*2;
|
|
|
|
|
int addr_bits = 56-8*i;
|
|
|
|
|
int round_up = (cmd_bits+addr_bits+7)/8*8;
|
|
|
|
|
addr_bits = round_up - cmd_bits;
|
|
|
|
|
|
|
|
|
|
spi_transaction_ext_t trans = (spi_transaction_ext_t) {
|
2017-09-30 06:36:31 +00:00
|
|
|
|
.base = {
|
|
|
|
|
.flags = SPI_TRANS_VARIABLE_CMD | SPI_TRANS_VARIABLE_ADDR,
|
2018-10-03 16:16:21 +00:00
|
|
|
|
.addr = 0x456789abcdef0123,
|
2019-10-11 08:07:43 +00:00
|
|
|
|
.cmd = 0x9876,
|
2017-09-30 06:36:31 +00:00
|
|
|
|
},
|
2018-10-03 16:16:21 +00:00
|
|
|
|
.command_bits = cmd_bits,
|
|
|
|
|
.address_bits = addr_bits,
|
2017-09-30 06:36:31 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ESP_LOGI( MASTER_TAG, "===== test%d =====", i );
|
2018-10-03 16:16:21 +00:00
|
|
|
|
ESP_LOGI(MASTER_TAG, "cmd_bits: %d, addr_bits: %d", cmd_bits, addr_bits);
|
|
|
|
|
TEST_ESP_OK(spi_device_transmit(spi, (spi_transaction_t*)&trans));
|
|
|
|
|
//wait for both master and slave end
|
2017-09-30 06:36:31 +00:00
|
|
|
|
|
2018-10-03 16:16:21 +00:00
|
|
|
|
size_t rcv_len;
|
|
|
|
|
slave_rxdata_t *rcv_data = xRingbufferReceive(slave_context->data_received, &rcv_len, portMAX_DELAY);
|
|
|
|
|
rcv_len-=8;
|
2017-09-30 06:36:31 +00:00
|
|
|
|
uint8_t *buffer = rcv_data->data;
|
2018-10-03 16:16:21 +00:00
|
|
|
|
|
2017-09-30 06:36:31 +00:00
|
|
|
|
ESP_LOGI(SLAVE_TAG, "trans_len: %d", rcv_len);
|
2018-10-03 16:16:21 +00:00
|
|
|
|
TEST_ASSERT_EQUAL(rcv_len, (rcv_data->len+7)/8);
|
|
|
|
|
TEST_ASSERT_EQUAL(rcv_data->len, cmd_bits+addr_bits);
|
|
|
|
|
ESP_LOG_BUFFER_HEX("slave rx", buffer, rcv_len);
|
|
|
|
|
|
|
|
|
|
uint16_t cmd_expected = trans.base.cmd & (BIT(cmd_bits) - 1);
|
|
|
|
|
uint64_t addr_expected = trans.base.addr & ((1ULL<<addr_bits) - 1);
|
|
|
|
|
|
|
|
|
|
uint8_t *data_ptr = buffer;
|
|
|
|
|
uint16_t cmd_got = *(uint16_t*)data_ptr;
|
|
|
|
|
data_ptr += cmd_bits/8;
|
|
|
|
|
cmd_got = __builtin_bswap16(cmd_got);
|
|
|
|
|
cmd_got = cmd_got >> (16-cmd_bits);
|
|
|
|
|
int remain_bits = cmd_bits % 8;
|
|
|
|
|
|
|
|
|
|
uint64_t addr_got = *(uint64_t*)data_ptr;
|
|
|
|
|
data_ptr += 8;
|
|
|
|
|
addr_got = __builtin_bswap64(addr_got);
|
|
|
|
|
addr_got = (addr_got << remain_bits);
|
|
|
|
|
addr_got |= (*data_ptr >> (8-remain_bits));
|
|
|
|
|
addr_got = addr_got >> (64-addr_bits);
|
|
|
|
|
|
|
|
|
|
if (lsb_first) {
|
|
|
|
|
cmd_got = __builtin_bswap16(cmd_got);
|
|
|
|
|
addr_got = __builtin_bswap64(addr_got);
|
|
|
|
|
|
|
|
|
|
uint8_t *swap_ptr = (uint8_t*)&cmd_got;
|
|
|
|
|
swap_ptr[0] = bitswap(swap_ptr[0]);
|
|
|
|
|
swap_ptr[1] = bitswap(swap_ptr[1]);
|
|
|
|
|
cmd_got = cmd_got >> (16-cmd_bits);
|
|
|
|
|
|
|
|
|
|
swap_ptr = (uint8_t*)&addr_got;
|
|
|
|
|
for (int j = 0; j < 8; j++) swap_ptr[j] = bitswap(swap_ptr[j]);
|
|
|
|
|
addr_got = addr_got >> (64-addr_bits);
|
2017-09-30 06:36:31 +00:00
|
|
|
|
}
|
2018-10-03 16:16:21 +00:00
|
|
|
|
|
|
|
|
|
ESP_LOGI(SLAVE_TAG, "cmd_got: %04X, addr_got: %08X%08X", cmd_got, (uint32_t)(addr_got>>32), (uint32_t)addr_got);
|
|
|
|
|
|
|
|
|
|
TEST_ASSERT_EQUAL_HEX16(cmd_expected, cmd_got);
|
|
|
|
|
if (addr_bits > 0) {
|
|
|
|
|
TEST_ASSERT_EQUAL_HEX32(addr_expected, addr_got);
|
|
|
|
|
TEST_ASSERT_EQUAL_HEX32(addr_expected >> 8, addr_got >> 8);
|
2017-09-30 06:36:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//clean
|
2018-10-03 16:16:21 +00:00
|
|
|
|
vRingbufferReturnItem(slave_context->data_received, buffer);
|
2017-09-30 06:36:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-03 16:16:21 +00:00
|
|
|
|
TEST_ASSERT(spi_bus_remove_device(spi) == ESP_OK);
|
|
|
|
|
TEST_ASSERT(spi_bus_free(TEST_SPI_HOST) == ESP_OK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("SPI master variable cmd & addr test","[spi]")
|
|
|
|
|
{
|
|
|
|
|
spi_slave_task_context_t slave_context = {};
|
|
|
|
|
esp_err_t err = init_slave_context( &slave_context );
|
|
|
|
|
TEST_ASSERT( err == ESP_OK );
|
|
|
|
|
TaskHandle_t handle_slave;
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
xTaskCreate( spitest_slave_task, "spi_slave", 4096, &slave_context, 0, &handle_slave);
|
2018-10-03 16:16:21 +00:00
|
|
|
|
|
|
|
|
|
//initial slave, mode 0, no dma
|
|
|
|
|
int dma_chan = 0;
|
|
|
|
|
int slave_mode = 0;
|
|
|
|
|
spi_bus_config_t slv_buscfg=SPI_BUS_TEST_DEFAULT_CONFIG();
|
|
|
|
|
spi_slave_interface_config_t slvcfg=SPI_SLAVE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
slvcfg.mode = slave_mode;
|
|
|
|
|
//Initialize SPI slave interface
|
|
|
|
|
TEST_ESP_OK( spi_slave_initialize(TEST_SLAVE_HOST, &slv_buscfg, &slvcfg, dma_chan) );
|
|
|
|
|
|
|
|
|
|
test_cmd_addr(&slave_context, false);
|
|
|
|
|
test_cmd_addr(&slave_context, true);
|
|
|
|
|
|
2017-09-30 06:36:31 +00:00
|
|
|
|
vTaskDelete( handle_slave );
|
|
|
|
|
handle_slave = 0;
|
|
|
|
|
|
|
|
|
|
deinit_slave_context(&slave_context);
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-10-03 16:16:21 +00:00
|
|
|
|
TEST_ASSERT(spi_slave_free(TEST_SLAVE_HOST) == ESP_OK);
|
2017-09-30 06:36:31 +00:00
|
|
|
|
|
|
|
|
|
ESP_LOGI(MASTER_TAG, "test passed.");
|
|
|
|
|
}
|
2018-10-03 16:16:21 +00:00
|
|
|
|
|
2019-02-26 18:09:36 +00:00
|
|
|
|
void test_dummy(spi_device_handle_t spi, int dummy_n, uint8_t* data_to_send, int len)
|
|
|
|
|
{
|
|
|
|
|
ESP_LOGI(TAG, "testing dummy n=%d", dummy_n);
|
|
|
|
|
WORD_ALIGNED_ATTR uint8_t slave_buffer[len+(dummy_n+7)/8];
|
|
|
|
|
spi_slave_transaction_t slave_t = {
|
|
|
|
|
.tx_buffer = slave_buffer,
|
|
|
|
|
.rx_buffer = slave_buffer,
|
|
|
|
|
.length = len*8+((dummy_n+7)&(~8))+32, //receive more bytes to avoid slave discarding data
|
|
|
|
|
};
|
|
|
|
|
TEST_ESP_OK(spi_slave_queue_trans(TEST_SLAVE_HOST, &slave_t, portMAX_DELAY));
|
|
|
|
|
|
|
|
|
|
vTaskDelay(50);
|
|
|
|
|
|
|
|
|
|
spi_transaction_ext_t t = {
|
|
|
|
|
.base = {
|
|
|
|
|
.tx_buffer = data_to_send,
|
|
|
|
|
.length = (len+1)*8, //send one more byte force slave receive all data
|
|
|
|
|
.flags = SPI_TRANS_VARIABLE_DUMMY,
|
|
|
|
|
},
|
|
|
|
|
.dummy_bits = dummy_n,
|
|
|
|
|
};
|
|
|
|
|
TEST_ESP_OK(spi_device_transmit(spi, (spi_transaction_t*)&t));
|
|
|
|
|
|
|
|
|
|
spi_slave_transaction_t *ret_slave;
|
|
|
|
|
TEST_ESP_OK(spi_slave_get_trans_result(TEST_SLAVE_HOST, &ret_slave, portMAX_DELAY));
|
|
|
|
|
TEST_ASSERT(ret_slave == &slave_t);
|
|
|
|
|
|
|
|
|
|
ESP_LOG_BUFFER_HEXDUMP("rcv", slave_buffer, len+4, ESP_LOG_INFO);
|
|
|
|
|
int skip_cnt = dummy_n/8;
|
|
|
|
|
int dummy_remain = dummy_n % 8;
|
|
|
|
|
uint8_t *slave_ptr = slave_buffer;
|
|
|
|
|
if (dummy_remain > 0) {
|
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
|
slave_ptr[0] = (slave_ptr[skip_cnt] << dummy_remain) | (slave_ptr[skip_cnt+1] >> (8-dummy_remain));
|
|
|
|
|
slave_ptr++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
|
slave_ptr[0] = slave_ptr[skip_cnt];
|
|
|
|
|
slave_ptr++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
TEST_ASSERT_EQUAL_HEX8_ARRAY(data_to_send, slave_buffer, len);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("SPI master variable dummy test", "[spi]")
|
|
|
|
|
{
|
|
|
|
|
spi_device_handle_t spi;
|
|
|
|
|
spi_bus_config_t bus_cfg = SPI_BUS_TEST_DEFAULT_CONFIG();
|
|
|
|
|
spi_device_interface_config_t dev_cfg = SPI_DEVICE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
dev_cfg.flags = SPI_DEVICE_HALFDUPLEX;
|
|
|
|
|
|
|
|
|
|
TEST_ESP_OK(spi_bus_initialize(TEST_SPI_HOST, &bus_cfg, 0));
|
|
|
|
|
TEST_ESP_OK(spi_bus_add_device(TEST_SPI_HOST, &dev_cfg, &spi));
|
|
|
|
|
|
|
|
|
|
spi_slave_interface_config_t slave_cfg =SPI_SLAVE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
TEST_ESP_OK(spi_slave_initialize(TEST_SLAVE_HOST, &bus_cfg, &slave_cfg, 0));
|
|
|
|
|
|
|
|
|
|
spitest_gpio_output_sel(bus_cfg.mosi_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spid_out);
|
|
|
|
|
spitest_gpio_output_sel(bus_cfg.miso_io_num, FUNC_GPIO, spi_periph_signal[TEST_SLAVE_HOST].spiq_out);
|
|
|
|
|
spitest_gpio_output_sel(dev_cfg.spics_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spics_out[0]);
|
|
|
|
|
spitest_gpio_output_sel(bus_cfg.sclk_io_num, FUNC_GPIO, spi_periph_signal[TEST_SPI_HOST].spiclk_out);
|
|
|
|
|
|
|
|
|
|
uint8_t data_to_send[] = {0x12, 0x34, 0x56, 0x78};
|
|
|
|
|
|
|
|
|
|
test_dummy(spi, 0, data_to_send, sizeof(data_to_send));
|
|
|
|
|
test_dummy(spi, 1, data_to_send, sizeof(data_to_send));
|
|
|
|
|
test_dummy(spi, 2, data_to_send, sizeof(data_to_send));
|
|
|
|
|
test_dummy(spi, 3, data_to_send, sizeof(data_to_send));
|
|
|
|
|
test_dummy(spi, 4, data_to_send, sizeof(data_to_send));
|
|
|
|
|
test_dummy(spi, 8, data_to_send, sizeof(data_to_send));
|
|
|
|
|
test_dummy(spi, 12, data_to_send, sizeof(data_to_send));
|
|
|
|
|
test_dummy(spi, 16, data_to_send, sizeof(data_to_send));
|
|
|
|
|
|
|
|
|
|
spi_slave_free(TEST_SLAVE_HOST);
|
|
|
|
|
master_free_device_bus(spi);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-19 04:47:29 +00:00
|
|
|
|
/********************************************************************************
|
|
|
|
|
* Test SPI transaction interval
|
|
|
|
|
********************************************************************************/
|
2019-10-20 05:21:23 +00:00
|
|
|
|
//Disabled since the check in portENTER_CRITICAL in esp_intr_enable/disable increase the delay
|
|
|
|
|
#ifndef CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE
|
|
|
|
|
|
2018-02-07 07:45:10 +00:00
|
|
|
|
#define RECORD_TIME_PREPARE() uint32_t __t1, __t2
|
|
|
|
|
#define RECORD_TIME_START() do {__t1 = xthal_get_ccount();}while(0)
|
2019-01-23 09:07:03 +00:00
|
|
|
|
#define RECORD_TIME_END(p_time) do{__t2 = xthal_get_ccount(); *p_time = (__t2-__t1);}while(0)
|
2019-10-11 08:07:43 +00:00
|
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32
|
|
|
|
|
#define GET_US_BY_CCOUNT(t) ((double)t/CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ)
|
2020-01-17 03:47:08 +00:00
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
2019-10-11 08:07:43 +00:00
|
|
|
|
#define GET_US_BY_CCOUNT(t) ((double)t/CONFIG_ESP32S2_DEFAULT_CPU_FREQ_MHZ)
|
|
|
|
|
#endif
|
2018-02-07 07:45:10 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
static void speed_setup(spi_device_handle_t* spi, bool use_dma)
|
2018-02-07 07:45:10 +00:00
|
|
|
|
{
|
|
|
|
|
esp_err_t ret;
|
2018-04-19 04:47:29 +00:00
|
|
|
|
spi_bus_config_t buscfg=SPI_BUS_TEST_DEFAULT_CONFIG();
|
|
|
|
|
spi_device_interface_config_t devcfg=SPI_DEVICE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
devcfg.queue_size=8; //We want to be able to queue 7 transactions at a time
|
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
//Initialize the SPI bus and the device to test
|
2019-10-11 08:07:43 +00:00
|
|
|
|
ret=spi_bus_initialize(TEST_SPI_HOST, &buscfg, (use_dma? GET_DMA_CHAN(TEST_SPI_HOST): 0));
|
2018-02-07 07:45:10 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, spi);
|
2018-02-07 07:45:10 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
}
|
2018-02-07 07:45:10 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
static void sorted_array_insert(uint32_t* array, int* size, uint32_t item)
|
|
|
|
|
{
|
|
|
|
|
int pos;
|
|
|
|
|
for (pos = *size; pos>0; pos--) {
|
|
|
|
|
if (array[pos-1] < item) break;
|
|
|
|
|
array[pos] = array[pos-1];
|
|
|
|
|
}
|
|
|
|
|
array[pos]=item;
|
|
|
|
|
(*size)++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define TEST_TIMES 11
|
2018-02-07 07:45:10 +00:00
|
|
|
|
|
2018-10-22 07:25:41 +00:00
|
|
|
|
static IRAM_ATTR void spi_transmit_measure(spi_device_handle_t spi, spi_transaction_t* trans, uint32_t* t_flight)
|
|
|
|
|
{
|
|
|
|
|
RECORD_TIME_PREPARE();
|
|
|
|
|
spi_device_transmit(spi, trans); // prime the flash cache
|
|
|
|
|
RECORD_TIME_START();
|
|
|
|
|
spi_device_transmit(spi, trans);
|
|
|
|
|
RECORD_TIME_END(t_flight);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static IRAM_ATTR void spi_transmit_polling_measure(spi_device_handle_t spi, spi_transaction_t* trans, uint32_t* t_flight)
|
2018-01-31 03:15:23 +00:00
|
|
|
|
{
|
2019-01-23 09:07:03 +00:00
|
|
|
|
spi_flash_disable_interrupts_caches_and_other_cpu(); //this can test the code are all in the IRAM at the same time
|
2018-04-19 04:47:29 +00:00
|
|
|
|
RECORD_TIME_PREPARE();
|
2018-10-22 07:25:41 +00:00
|
|
|
|
spi_device_polling_transmit(spi, trans); // prime the flash cache
|
|
|
|
|
RECORD_TIME_START();
|
|
|
|
|
spi_device_polling_transmit(spi, trans);
|
|
|
|
|
RECORD_TIME_END(t_flight);
|
2019-01-23 09:07:03 +00:00
|
|
|
|
spi_flash_enable_interrupts_caches_and_other_cpu();
|
2018-10-22 07:25:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("spi_speed","[spi]")
|
|
|
|
|
{
|
2018-01-31 03:15:23 +00:00
|
|
|
|
uint32_t t_flight;
|
|
|
|
|
//to get rid of the influence of randomly interrupts, we measured the performance by median value
|
|
|
|
|
uint32_t t_flight_sorted[TEST_TIMES];
|
2018-01-31 03:15:23 +00:00
|
|
|
|
esp_err_t ret;
|
2018-01-31 03:15:23 +00:00
|
|
|
|
int t_flight_num = 0;
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
spi_device_handle_t spi;
|
|
|
|
|
const bool use_dma = true;
|
|
|
|
|
WORD_ALIGNED_ATTR spi_transaction_t trans = {
|
2018-02-07 07:45:10 +00:00
|
|
|
|
.length = 1*8,
|
|
|
|
|
.flags = SPI_TRANS_USE_TXDATA,
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
//first work with DMA
|
|
|
|
|
speed_setup(&spi, use_dma);
|
2018-02-07 07:45:10 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
//record flight time by isr, with DMA
|
|
|
|
|
t_flight_num = 0;
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2018-10-22 07:25:41 +00:00
|
|
|
|
spi_transmit_measure(spi, &trans, &t_flight);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
sorted_array_insert(t_flight_sorted, &t_flight_num, t_flight);
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2019-01-23 09:07:03 +00:00
|
|
|
|
ESP_LOGI(TAG, "%.2lf", GET_US_BY_CCOUNT(t_flight_sorted[i]));
|
2018-01-31 03:15:23 +00:00
|
|
|
|
}
|
2019-10-20 05:21:23 +00:00
|
|
|
|
TEST_TARGET_PERFORMANCE_LESS_THAN(SPI_PER_TRANS_NO_POLLING, "%d us", (int)GET_US_BY_CCOUNT(t_flight_sorted[(TEST_TIMES+1)/2]));
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
//acquire the bus to send polling transactions faster
|
|
|
|
|
ret = spi_device_acquire_bus(spi, portMAX_DELAY);
|
|
|
|
|
TEST_ESP_OK(ret);
|
|
|
|
|
|
|
|
|
|
//record flight time by polling and with DMA
|
|
|
|
|
t_flight_num = 0;
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2018-10-22 07:25:41 +00:00
|
|
|
|
spi_transmit_polling_measure(spi, &trans, &t_flight);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
sorted_array_insert(t_flight_sorted, &t_flight_num, t_flight);
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2019-01-23 09:07:03 +00:00
|
|
|
|
ESP_LOGI(TAG, "%.2lf", GET_US_BY_CCOUNT(t_flight_sorted[i]));
|
2018-01-31 03:15:23 +00:00
|
|
|
|
}
|
2019-01-23 09:07:03 +00:00
|
|
|
|
TEST_PERFORMANCE_LESS_THAN(SPI_PER_TRANS_POLLING, "%d us", (int)GET_US_BY_CCOUNT(t_flight_sorted[(TEST_TIMES+1)/2]));
|
2018-01-31 03:15:23 +00:00
|
|
|
|
|
|
|
|
|
//release the bus
|
|
|
|
|
spi_device_release_bus(spi);
|
|
|
|
|
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
master_free_device_bus(spi);
|
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
speed_setup(&spi, !use_dma);
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
//record flight time by isr, without DMA
|
|
|
|
|
t_flight_num = 0;
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2018-10-22 07:25:41 +00:00
|
|
|
|
spi_transmit_measure(spi, &trans, &t_flight);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
sorted_array_insert(t_flight_sorted, &t_flight_num, t_flight);
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2019-01-23 09:07:03 +00:00
|
|
|
|
ESP_LOGI(TAG, "%.2lf", GET_US_BY_CCOUNT(t_flight_sorted[i]));
|
2018-04-19 04:47:29 +00:00
|
|
|
|
}
|
2019-10-20 05:21:23 +00:00
|
|
|
|
TEST_TARGET_PERFORMANCE_LESS_THAN(SPI_PER_TRANS_NO_POLLING_NO_DMA, "%d us", (int)GET_US_BY_CCOUNT(t_flight_sorted[(TEST_TIMES+1)/2]));
|
2018-01-31 03:15:23 +00:00
|
|
|
|
|
|
|
|
|
//acquire the bus to send polling transactions faster
|
|
|
|
|
ret = spi_device_acquire_bus(spi, portMAX_DELAY);
|
|
|
|
|
TEST_ESP_OK(ret);
|
|
|
|
|
//record flight time by polling, without DMA
|
|
|
|
|
t_flight_num = 0;
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2018-10-22 07:25:41 +00:00
|
|
|
|
spi_transmit_polling_measure(spi, &trans, &t_flight);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
sorted_array_insert(t_flight_sorted, &t_flight_num, t_flight);
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < TEST_TIMES; i++) {
|
2019-01-23 09:07:03 +00:00
|
|
|
|
ESP_LOGI(TAG, "%.2lf", GET_US_BY_CCOUNT(t_flight_sorted[i]));
|
2018-01-31 03:15:23 +00:00
|
|
|
|
}
|
2019-01-23 09:07:03 +00:00
|
|
|
|
TEST_PERFORMANCE_LESS_THAN(SPI_PER_TRANS_POLLING_NO_DMA, "%d us", (int)GET_US_BY_CCOUNT(t_flight_sorted[(TEST_TIMES+1)/2]));
|
2018-01-31 03:15:23 +00:00
|
|
|
|
|
|
|
|
|
//release the bus
|
|
|
|
|
spi_device_release_bus(spi);
|
spi: add new test for timing and mode
New unit tests added
------------------------
**Local:** Local test uses the GPIO matrix to connect the master and the
slave on the same board. When the master needs the iomux, the master
uses the GPIOs of its own, the slave connect to the pins by GPIO matrix;
When the slave needs the iomux, the slave uses the GPIOs of its own, the
master connects to the pins by GPIO matrix.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
**M & S**: Master & slave tests performs the test with two boards. The
master and slave use iomux or gpio matrix according to the config.
- Provide a new unit test which performs freq scanning in mode 0. It
scans frequency of 1M, 8M, 9M and all frequency steps up to the maximum
frequency allowed.
- Provide a new unit test which performs mode test with significant
frequencies. It tests mode 0,1,2,3 with low frequency, and the maximum
frequency allowed.
2018-09-21 08:48:04 +00:00
|
|
|
|
master_free_device_bus(spi);
|
2018-02-07 07:45:10 +00:00
|
|
|
|
}
|
2019-10-20 05:21:23 +00:00
|
|
|
|
#endif
|
2018-04-19 04:47:29 +00:00
|
|
|
|
|
2018-01-31 03:15:23 +00:00
|
|
|
|
typedef struct {
|
|
|
|
|
spi_device_handle_t handle;
|
|
|
|
|
bool finished;
|
|
|
|
|
} task_context_t;
|
|
|
|
|
|
|
|
|
|
void spi_task1(void* arg)
|
|
|
|
|
{
|
|
|
|
|
//task1 send 50 polling transactions, acquire the bus and send another 50
|
|
|
|
|
int count=0;
|
|
|
|
|
spi_transaction_t t = {
|
|
|
|
|
.flags = SPI_TRANS_USE_TXDATA,
|
|
|
|
|
.tx_data = { 0x80, 0x12, 0x34, 0x56 },
|
|
|
|
|
.length = 4*8,
|
|
|
|
|
};
|
|
|
|
|
spi_device_handle_t handle = ((task_context_t*)arg)->handle;
|
|
|
|
|
for( int j = 0; j < 50; j ++ ) {
|
|
|
|
|
TEST_ESP_OK(spi_device_polling_transmit( handle, &t ));
|
|
|
|
|
ESP_LOGI( TAG, "task1:%d", count++ );
|
|
|
|
|
}
|
|
|
|
|
TEST_ESP_OK(spi_device_acquire_bus( handle, portMAX_DELAY ));
|
|
|
|
|
for( int j = 0; j < 50; j ++ ) {
|
|
|
|
|
TEST_ESP_OK(spi_device_polling_transmit( handle, &t ));
|
|
|
|
|
ESP_LOGI( TAG, "task1:%d", count++ );
|
|
|
|
|
}
|
|
|
|
|
spi_device_release_bus(handle);
|
|
|
|
|
ESP_LOGI(TAG, "task1 terminates");
|
|
|
|
|
((task_context_t*)arg)->finished = true;
|
|
|
|
|
vTaskDelete(NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void spi_task2(void* arg)
|
|
|
|
|
{
|
|
|
|
|
int count=0;
|
|
|
|
|
//task2 acquire the bus, send 50 polling transactions and then 50 non-polling
|
|
|
|
|
spi_transaction_t t = {
|
|
|
|
|
.flags = SPI_TRANS_USE_TXDATA,
|
|
|
|
|
.tx_data = { 0x80, 0x12, 0x34, 0x56 },
|
|
|
|
|
.length = 4*8,
|
|
|
|
|
};
|
|
|
|
|
spi_transaction_t *ret_t;
|
|
|
|
|
spi_device_handle_t handle = ((task_context_t*)arg)->handle;
|
|
|
|
|
TEST_ESP_OK(spi_device_acquire_bus( handle, portMAX_DELAY ));
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 50; i ++) {
|
|
|
|
|
TEST_ESP_OK(spi_device_polling_transmit(handle, &t));
|
|
|
|
|
ESP_LOGI( TAG, "task2: %d", count++ );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for( int j = 0; j < 50; j ++ ) {
|
|
|
|
|
TEST_ESP_OK(spi_device_queue_trans( handle, &t, portMAX_DELAY ));
|
|
|
|
|
}
|
|
|
|
|
for( int j = 0; j < 50; j ++ ) {
|
|
|
|
|
TEST_ESP_OK(spi_device_get_trans_result(handle, &ret_t, portMAX_DELAY));
|
|
|
|
|
assert(ret_t == &t);
|
|
|
|
|
ESP_LOGI( TAG, "task2: %d", count++ );
|
|
|
|
|
}
|
|
|
|
|
spi_device_release_bus(handle);
|
|
|
|
|
vTaskDelay(1);
|
|
|
|
|
ESP_LOGI(TAG, "task2 terminates");
|
|
|
|
|
((task_context_t*)arg)->finished = true;
|
|
|
|
|
vTaskDelete(NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void spi_task3(void* arg)
|
|
|
|
|
{
|
|
|
|
|
//task3 send 30 polling transactions, acquire the bus, send 20 polling transactions and then 50 non-polling
|
|
|
|
|
int count=0;
|
|
|
|
|
spi_transaction_t t = {
|
|
|
|
|
.flags = SPI_TRANS_USE_TXDATA,
|
|
|
|
|
.tx_data = { 0x80, 0x12, 0x34, 0x56 },
|
|
|
|
|
.length = 4*8,
|
|
|
|
|
};
|
|
|
|
|
spi_transaction_t *ret_t;
|
|
|
|
|
spi_device_handle_t handle = ((task_context_t*)arg)->handle;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 30; i ++) {
|
|
|
|
|
TEST_ESP_OK(spi_device_polling_transmit(handle, &t));
|
|
|
|
|
ESP_LOGI( TAG, "task3: %d", count++ );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_ESP_OK(spi_device_acquire_bus( handle, portMAX_DELAY ));
|
|
|
|
|
for (int i = 0; i < 20; i ++) {
|
|
|
|
|
TEST_ESP_OK(spi_device_polling_transmit(handle, &t));
|
|
|
|
|
ESP_LOGI( TAG, "task3: %d", count++ );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int j = 0; j < 50; j++) {
|
|
|
|
|
TEST_ESP_OK(spi_device_queue_trans(handle, &t, portMAX_DELAY));
|
|
|
|
|
}
|
|
|
|
|
for (int j = 0; j < 50; j++) {
|
|
|
|
|
TEST_ESP_OK(spi_device_get_trans_result(handle, &ret_t, portMAX_DELAY));
|
|
|
|
|
assert(ret_t == &t);
|
|
|
|
|
ESP_LOGI(TAG, "task3: %d", count++);
|
|
|
|
|
}
|
|
|
|
|
spi_device_release_bus(handle);
|
|
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "task3 terminates");
|
|
|
|
|
((task_context_t*)arg)->finished = true;
|
|
|
|
|
vTaskDelete(NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE("spi poll tasks","[spi]")
|
|
|
|
|
{
|
|
|
|
|
task_context_t context1={};
|
|
|
|
|
task_context_t context2={};
|
|
|
|
|
task_context_t context3={};
|
|
|
|
|
TaskHandle_t task1, task2, task3;
|
|
|
|
|
esp_err_t ret;
|
|
|
|
|
spi_bus_config_t buscfg=SPI_BUS_TEST_DEFAULT_CONFIG();
|
|
|
|
|
spi_device_interface_config_t devcfg=SPI_DEVICE_TEST_DEFAULT_CONFIG();
|
|
|
|
|
devcfg.queue_size = 100;
|
|
|
|
|
|
|
|
|
|
//Initialize the SPI bus and 3 devices
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_initialize(TEST_SPI_HOST, &buscfg, 1);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &context1.handle);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &context2.handle);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
2018-09-30 11:00:06 +00:00
|
|
|
|
ret=spi_bus_add_device(TEST_SPI_HOST, &devcfg, &context3.handle);
|
2018-01-31 03:15:23 +00:00
|
|
|
|
TEST_ASSERT(ret==ESP_OK);
|
|
|
|
|
|
|
|
|
|
xTaskCreate( spi_task1, "task1", 2048, &context1, 0, &task1 );
|
|
|
|
|
xTaskCreate( spi_task2, "task2", 2048, &context2, 0, &task2 );
|
|
|
|
|
xTaskCreate( spi_task3, "task3", 2048, &context3, 0, &task3 );
|
|
|
|
|
|
|
|
|
|
for(;;){
|
|
|
|
|
vTaskDelay(10);
|
|
|
|
|
if (context1.finished && context2.finished && context3.finished) break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_ESP_OK( spi_bus_remove_device(context1.handle) );
|
|
|
|
|
TEST_ESP_OK( spi_bus_remove_device(context2.handle) );
|
|
|
|
|
TEST_ESP_OK( spi_bus_remove_device(context3.handle) );
|
2018-09-30 11:00:06 +00:00
|
|
|
|
TEST_ESP_OK( spi_bus_free(TEST_SPI_HOST) );
|
2018-01-31 03:15:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-10-25 04:52:32 +00:00
|
|
|
|
//TODO: add a case when a non-polling transaction happened in the bus-acquiring time and then release the bus then queue a new trans
|