Home
last modified time | relevance | path

Searched refs:eff_clk (Results 1 – 12 of 12) sorted by relevance

/hal_espressif-latest/components/hal/
Dspi_hal.c123 void spi_hal_cal_timing(int source_freq_hz, int eff_clk, bool gpio_is_used, int input_delay_ns, int… in spi_hal_cal_timing() argument
127 const int spiclk_apb_n = source_freq_hz / eff_clk; in spi_hal_cal_timing()
151 …HAL_LOGD(SPI_HAL_TAG, "eff: %d, limit: %dk(/%d), %d dummy, %d delay", eff_clk / 1000, apbclk_kHz /… in spi_hal_cal_timing()
Dspi_flash_hal.c58 static inline int get_dummy_n(bool gpio_is_used, int input_delay_ns, int eff_clk) in get_dummy_n() argument
62 const int apbclk_n = APB_CLK_FREQ / eff_clk; in get_dummy_n()
/hal_espressif-latest/components/hal/esp32/include/hal/
Dspi_ll.h566 int eff_clk; in spi_ll_master_cal_clock() local
576 eff_clk = fapb; in spi_ll_master_cal_clock()
619 eff_clk = spi_ll_freq_for_pre_n(fapb, pre, n); in spi_ll_master_cal_clock()
624 return eff_clk; in spi_ll_master_cal_clock()
/hal_espressif-latest/components/hal/include/hal/
Dspi_hal.h256 void spi_hal_cal_timing(int source_freq_hz, int eff_clk, bool gpio_is_used, int input_delay_ns, int…
/hal_espressif-latest/components/driver/spi/include/driver/
Dspi_master.h381 void spi_get_timing(bool gpio_is_used, int input_delay_ns, int eff_clk, int *dummy_o, int *cycles_r…
/hal_espressif-latest/components/hal/esp32s3/include/hal/
Dspi_ll.h693 int eff_clk; in spi_ll_master_cal_clock() local
703 eff_clk = fapb; in spi_ll_master_cal_clock()
746 eff_clk = spi_ll_freq_for_pre_n(fapb, pre, n); in spi_ll_master_cal_clock()
751 return eff_clk; in spi_ll_master_cal_clock()
/hal_espressif-latest/components/hal/esp32c6/include/hal/
Dspi_ll.h683 int eff_clk; in spi_ll_master_cal_clock() local
693 eff_clk = fapb; in spi_ll_master_cal_clock()
736 eff_clk = spi_ll_freq_for_pre_n(fapb, pre, n); in spi_ll_master_cal_clock()
741 return eff_clk; in spi_ll_master_cal_clock()
/hal_espressif-latest/components/hal/esp32c2/include/hal/
Dspi_ll.h679 int eff_clk; in spi_ll_master_cal_clock() local
689 eff_clk = fapb; in spi_ll_master_cal_clock()
732 eff_clk = spi_ll_freq_for_pre_n(fapb, pre, n); in spi_ll_master_cal_clock()
737 return eff_clk; in spi_ll_master_cal_clock()
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Dspi_ll.h679 int eff_clk; in spi_ll_master_cal_clock() local
689 eff_clk = fapb; in spi_ll_master_cal_clock()
732 eff_clk = spi_ll_freq_for_pre_n(fapb, pre, n); in spi_ll_master_cal_clock()
737 return eff_clk; in spi_ll_master_cal_clock()
/hal_espressif-latest/components/hal/esp32h2/include/hal/
Dspi_ll.h685 int eff_clk; in spi_ll_master_cal_clock() local
695 eff_clk = fapb; in spi_ll_master_cal_clock()
738 eff_clk = spi_ll_freq_for_pre_n(fapb, pre, n); in spi_ll_master_cal_clock()
743 return eff_clk; in spi_ll_master_cal_clock()
/hal_espressif-latest/components/hal/esp32s2/include/hal/
Dspi_ll.h641 int eff_clk; in spi_ll_master_cal_clock() local
651 eff_clk = fapb; in spi_ll_master_cal_clock()
694 eff_clk = spi_ll_freq_for_pre_n(fapb, pre, n); in spi_ll_master_cal_clock()
699 return eff_clk; in spi_ll_master_cal_clock()
/hal_espressif-latest/components/driver/spi/gpspi/
Dspi_master.c310 void spi_get_timing(bool gpio_is_used, int input_delay_ns, int eff_clk, int* dummy_o, int* cycles_r… in spi_get_timing() argument
316 …spi_hal_cal_timing(APB_CLK_FREQ, eff_clk, gpio_is_used, input_delay_ns, &timing_dummy, &timing_mis… in spi_get_timing()