Home
last modified time | relevance | path

Searched refs:target_uV (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/include/linux/regulator/
Dconsumer.h599 int min_uV, int target_uV, in regulator_set_voltage_triplet() argument
602 if (regulator_set_voltage(regulator, target_uV, max_uV) == 0) in regulator_set_voltage_triplet()
619 int target_uV, int tol_uV) in regulator_is_supported_voltage_tol() argument
622 target_uV - tol_uV, in regulator_is_supported_voltage_tol()
623 target_uV + tol_uV); in regulator_is_supported_voltage_tol()
/Linux-v5.4/drivers/mmc/core/
Dregulator.c136 int min_uV, int target_uV, in mmc_regulator_set_voltage_if_supported() argument
146 return regulator_set_voltage_triplet(regulator, min_uV, target_uV, in mmc_regulator_set_voltage_if_supported()
/Linux-v5.4/include/linux/mfd/
Dtwl.h749 int (*set_voltage)(void *data, int target_uV);
/Linux-v5.4/drivers/regulator/
Dcore.c3505 int highest_min_uV = 0, target_uV, possible_uV; in regulator_get_optimal_voltage() local
3567 target_uV = max(desired_min_uV, highest_min_uV - max_spread); in regulator_get_optimal_voltage()
3589 possible_uV = target_uV; in regulator_get_optimal_voltage()
3595 possible_uV = max(target_uV, max_current_uV - max_spread); in regulator_get_optimal_voltage()
3602 done = (possible_uV == target_uV); in regulator_get_optimal_voltage()