Lines Matching defs:osci
80 struct stm32_osci_dt_cfg *osci;
977 struct stm32_osci_dt_cfg *osci = &pdata->osci[OSC_HSE];
978 bool digbyp = osci->digbyp;
979 bool bypass = osci->bypass;
980 bool css = osci->css;
1001 struct stm32_osci_dt_cfg *osci = &pdata->osci[OSC_LSE];
1002 bool digbyp = osci->digbyp;
1003 bool bypass = osci->bypass;
1004 uint8_t drive = osci->drive;
1067 struct stm32_osci_dt_cfg *osci = &pdata->osci[OSC_LSE];
1069 clk_oscillator_set_css(priv, _CK_LSE, osci->css);
1965 .osci = mp13_osci,
2078 struct stm32_osci_dt_cfg *osci)
2083 osci->freq = 0;
2105 osci->freq = fdt32_to_cpu(*cuint);
2108 osci->bypass = true;
2112 osci->digbyp = true;
2116 osci->css = true;
2119 osci->drive = fdt_read_uint32_default(fdt, subnode, "st,drive", LSEDRV_MEDIUM_HIGH);
2146 fdt_err = clk_stm32_parse_oscillator_fdt(fdt, node, name, &pdata->osci[i]);