Searched refs:vco_freq (Results 1 – 5 of 5) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/hardware_pll/ |
D | pll.c | 13 void pll_init(PLL pll, uint refdiv, uint vco_freq, uint post_div1, uint post_div2) { in pll_init() argument 17 assert(vco_freq >= PICO_PLL_VCO_MIN_FREQ_HZ && vco_freq <= PICO_PLL_VCO_MAX_FREQ_HZ); in pll_init() 21 uint32_t fbdiv = vco_freq / ref_freq; in pll_init() 35 assert(ref_freq <= (vco_freq / 16)); in pll_init()
|
/hal_rpi_pico-latest/src/host/pico_stdlib/ |
D | stdlib.c | 24 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/ |
D | pll.h | 62 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/ |
D | clocks.c | 366 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/ |
D | clocks.h | 436 void set_sys_clock_pll(uint32_t vco_freq, uint post_div1, uint post_div2);
|