Lines Matching refs:periph
24 void periph_module_enable(periph_module_t periph) in periph_module_enable() argument
26 assert(periph < PERIPH_MODULE_MAX); in periph_module_enable()
28 if (ref_counts[periph] == 0) { in periph_module_enable()
29 periph_ll_enable_clk_clear_rst(periph); in periph_module_enable()
31 ref_counts[periph]++; in periph_module_enable()
35 void periph_module_disable(periph_module_t periph) in periph_module_disable() argument
37 assert(periph < PERIPH_MODULE_MAX); in periph_module_disable()
39 ref_counts[periph]--; in periph_module_disable()
40 if (ref_counts[periph] == 0) { in periph_module_disable()
41 periph_ll_disable_clk_set_rst(periph); in periph_module_disable()
46 void periph_module_reset(periph_module_t periph) in periph_module_reset() argument
48 assert(periph < PERIPH_MODULE_MAX); in periph_module_reset()
50 periph_ll_reset(periph); in periph_module_reset()