Lines Matching refs:osci
80 struct stm32_osci_dt_cfg *osci; member
919 struct stm32_osci_dt_cfg *osci = &pdata->osci[OSC_HSE]; in stm32_enable_oscillator_hse() local
920 bool digbyp = osci->digbyp; in stm32_enable_oscillator_hse()
921 bool bypass = osci->bypass; in stm32_enable_oscillator_hse()
922 bool css = osci->css; in stm32_enable_oscillator_hse()
943 struct stm32_osci_dt_cfg *osci = &pdata->osci[OSC_LSE]; in stm32_enable_oscillator_lse() local
944 bool digbyp = osci->digbyp; in stm32_enable_oscillator_lse()
945 bool bypass = osci->bypass; in stm32_enable_oscillator_lse()
946 uint8_t drive = osci->drive; in stm32_enable_oscillator_lse()
1014 struct stm32_osci_dt_cfg *osci = &pdata->osci[OSC_LSE]; in stm32_clk_oscillators_lse_set_css() local
1016 clk_oscillator_set_css(priv, _CK_LSE, osci->css); in stm32_clk_oscillators_lse_set_css()
1996 .osci = mp13_osci,
2108 struct stm32_osci_dt_cfg *osci) in clk_stm32_parse_oscillator_fdt() argument
2113 osci->freq = 0; in clk_stm32_parse_oscillator_fdt()
2135 osci->freq = fdt32_to_cpu(*cuint); in clk_stm32_parse_oscillator_fdt()
2138 osci->bypass = true; in clk_stm32_parse_oscillator_fdt()
2142 osci->digbyp = true; in clk_stm32_parse_oscillator_fdt()
2146 osci->css = true; in clk_stm32_parse_oscillator_fdt()
2149 osci->drive = fdt_read_uint32_default(fdt, subnode, "st,drive", LSEDRV_MEDIUM_HIGH); in clk_stm32_parse_oscillator_fdt()
2176 fdt_err = clk_stm32_parse_oscillator_fdt(fdt, node, name, &pdata->osci[i]); in stm32_clk_parse_fdt_all_oscillator()