Home
last modified time | relevance | path

Searched refs:SPI_CTRL2_REG (Results 1 – 3 of 3) sorted by relevance

/device/soc/esp/esp32/components/bootloader_support/src/
Dbootloader_flash_config_esp32.c46 SET_PERI_REG_BITS(SPI_CTRL2_REG(0), SPI_HOLD_TIME_V, 1, SPI_HOLD_TIME_S); in bootloader_flash_cs_timing_config()
47 SET_PERI_REG_BITS(SPI_CTRL2_REG(0), SPI_SETUP_TIME_V, 0, SPI_SETUP_TIME_S); in bootloader_flash_cs_timing_config()
49 SET_PERI_REG_BITS(SPI_CTRL2_REG(1), SPI_HOLD_TIME_V, 1, SPI_HOLD_TIME_S); in bootloader_flash_cs_timing_config()
50 SET_PERI_REG_BITS(SPI_CTRL2_REG(1), SPI_SETUP_TIME_V, 0, SPI_SETUP_TIME_S); in bootloader_flash_cs_timing_config()
/device/soc/esp/esp32/components/esp32/
Dspiram_psram.c657 SET_PERI_REG_BITS(SPI_CTRL2_REG(spi_num), SPI_HOLD_TIME_V, 1, SPI_HOLD_TIME_S); in psram_set_cs_timing()
658 SET_PERI_REG_BITS(SPI_CTRL2_REG(spi_num), SPI_SETUP_TIME_V, 0, SPI_SETUP_TIME_S); in psram_set_cs_timing()
/device/soc/esp/esp32/components/soc/esp32/include/soc/
Dspi_reg.h260 #define SPI_CTRL2_REG(i) (REG_SPI_BASE(i) + 0x14) macro