HomeSort by: relevance | last modified time | path
    Searched refs:min_uvol (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/dev/fdt/
fdt_regulator.c 152 fdtbus_regulator_set_voltage(struct fdtbus_regulator *reg, u_int min_uvol,
160 return rc->rc_funcs->set_voltage(rc->rc_dev, min_uvol, max_uvol);
175 fdtbus_regulator_supports_voltage(struct fdtbus_regulator *reg, u_int min_uvol,
185 if (uvol < min_uvol)
fixedregulator.c 183 fixedregulator_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
187 if (sc->sc_min_uvol > max_uvol || sc->sc_max_uvol < min_uvol)
  /src/sys/dev/i2c/
as3722.c 597 as3722reg_set_voltage_ldo(device_t dev, u_int min_uvol, u_int max_uvol)
609 if (uvol >= min_uvol && uvol <= max_uvol) {
616 if (uvol >= min_uvol && uvol <= max_uvol) {
664 as3722reg_set_voltage_sd0(device_t dev, u_int min_uvol, u_int max_uvol)
677 if (uvol >= min_uvol && uvol <= max_uvol) {
685 if (uvol >= min_uvol && uvol <= max_uvol) {
741 as3722reg_set_voltage_sd4(device_t dev, u_int min_uvol, u_int max_uvol)
754 if (uvol >= min_uvol && uvol <= max_uvol) {
761 if (uvol >= min_uvol && uvol <= max_uvol) {
768 if (uvol >= min_uvol && uvol <= max_uvol)
    [all...]
fan53555.c 165 fan53555_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
179 val |= __SHIFTIN((min_uvol - sc->sc_base) / sc->sc_step, VSEL_NSEL);
186 delay((abs(cur_uvol - min_uvol) / sc->sc_step) * sc->sc_ramp_delay);
sy8106a.c 134 sy8106a_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
148 val = SEL_GO | ((min_uvol - SEL_VOLTAGE_BASE) / SEL_VOLTAGE_STEP);
155 delay((abs(cur_uvol - min_uvol) / SEL_VOLTAGE_STEP) * sc->sc_ramp_delay);
rkpmic.c 570 rkreg_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
580 if (min_uvol < c->base)
583 vsel = (min_uvol - c->base) / c->step;
axppmic.c 1340 axpreg_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
1346 min_uvol / 1000, max_uvol / 1000);
1386 u_int uvol, min_uvol, max_uvol; local in function:axpreg_attach
1407 if (of_getprop_uint32(phandle, "regulator-min-microvolt", &min_uvol) == 0 &&
1409 if (uvol < min_uvol || uvol > max_uvol) {
1411 uvol, min_uvol, max_uvol);
1412 axpreg_set_voltage(self, min_uvol, max_uvol);
axp20x.c 712 axp20xreg_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
716 return axp20x_set_dcdc(device_parent(dev), sc->sc_regdef->dcdc, min_uvol / 1000);
tps65217pmic.c 1013 tps65217reg_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
1024 error = tps65217pmic_set_volt(pmic_sc->sc_dev, regulator->name, min_uvol / 1000);

Completed in 17 milliseconds