Home
last modified time | relevance | path

Searched refs:post_div2 (Results 1 – 5 of 5) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/hardware_pll/
Dpll.c13 void pll_init(PLL pll, uint refdiv, uint vco_freq, uint post_div1, uint post_div2) { in pll_init() argument
28 assert((post_div1 >= 1 && post_div1 <= 7) && (post_div2 >= 1 && post_div2 <= 7)); in pll_init()
39 (post_div2 << PLL_PRIM_POSTDIV2_LSB); in pll_init()
/hal_rpi_pico-latest/src/host/pico_stdlib/
Dstdlib.c24 void set_sys_clock_pll(__unused uint32_t vco_freq, __unused uint post_div1, __unused uint post_div2 in set_sys_clock_pll() argument
/hal_rpi_pico-latest/src/rp2_common/hardware_pll/include/hardware/
Dpll.h62 void pll_init(PLL pll, uint ref_div, uint vco_freq, uint post_div1, uint post_div2);
/hal_rpi_pico-latest/src/rp2_common/hardware_clocks/
Dclocks.c366 void set_sys_clock_pll(uint32_t vco_freq, uint post_div1, uint post_div2) { in set_sys_clock_pll() argument
373 pll_init(pll_sys, PLL_SYS_REFDIV, vco_freq, post_div1, post_div2); in set_sys_clock_pll()
374 uint32_t freq = vco_freq / (post_div1 * post_div2); in set_sys_clock_pll()
/hal_rpi_pico-latest/src/rp2_common/hardware_clocks/include/hardware/
Dclocks.h436 void set_sys_clock_pll(uint32_t vco_freq, uint post_div1, uint post_div2);