Home
last modified time | relevance | path

Searched refs:LLDESC_MAX_NUM_PER_DESC (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-latest/components/soc/include/soc/
Dlldesc.h16 #define LLDESC_MAX_NUM_PER_DESC (4096-4) macro
47 …e, isrx) lldesc_setup_link_constrained(out_desc_array, buffer, size, LLDESC_MAX_NUM_PER_DESC, isrx)
78 …get_required_num(data_size) lldesc_get_required_num_constrained(data_size, LLDESC_MAX_NUM_PER_DESC)
/hal_espressif-latest/components/hal/
Dspi_slave_hd_hal.c124 return hal->dma_desc_num * LLDESC_MAX_NUM_PER_DESC; in spi_salve_hd_hal_get_max_bus_size()
130 int dma_desc_ct = (bus_size + LLDESC_MAX_NUM_PER_DESC - 1) / LLDESC_MAX_NUM_PER_DESC; in spi_slave_hd_hal_get_total_desc_size()
293 …HAL_ASSERT(len <= LLDESC_MAX_NUM_PER_DESC); //TODO: Add support for transaction with length la… in spi_slave_hd_hal_link_append_desc()
297 if (dmachunklen > LLDESC_MAX_NUM_PER_DESC) { in spi_slave_hd_hal_link_append_desc()
298 dmachunklen = LLDESC_MAX_NUM_PER_DESC; in spi_slave_hd_hal_link_append_desc()
325 int num_required = (len + LLDESC_MAX_NUM_PER_DESC - 1) / LLDESC_MAX_NUM_PER_DESC; in spi_slave_hd_hal_txdma_append()
365 int num_required = (len + LLDESC_MAX_NUM_PER_DESC - 1) / LLDESC_MAX_NUM_PER_DESC; in spi_slave_hd_hal_rxdma_append()
/hal_espressif-latest/components/mbedtls/port/aes/
Desp_aes_gcm.c695 if (aad_len > LLDESC_MAX_NUM_PER_DESC) { in esp_aes_gcm_crypt_and_tag()
/hal_espressif-latest/components/driver/spi/gpspi/
Dspi_common.c808 bus_attr->max_transfer_sz = dma_desc_ct * LLDESC_MAX_NUM_PER_DESC; in spi_bus_initialize()