/linux/drivers/mmc/core/ |
H A D | regulator.c | 22 * @max_uV: maximum voltage value (mV) 27 static int mmc_ocrbitnum_to_vdd(int vdd_bit, int *min_uV, int *max_uV) in mmc_ocrbitnum_to_vdd() argument 43 *max_uV = 1950 * 1000; in mmc_ocrbitnum_to_vdd() 46 *max_uV = *min_uV + 100 * 1000; in mmc_ocrbitnum_to_vdd() 111 int min_uV, max_uV; in mmc_regulator_set_ocr() local 117 mmc_ocrbitnum_to_vdd(vdd_bit, &min_uV, &max_uV); in mmc_regulator_set_ocr() 119 result = regulator_set_voltage(supply, min_uV, max_uV); in mmc_regulator_set_ocr() 140 int max_uV) in mmc_regulator_set_voltage_if_supported() argument 148 if (!regulator_is_supported_voltage(regulator, min_uV, max_uV)) in mmc_regulator_set_voltage_if_supported() 160 max_uV); in mmc_regulator_set_voltage_if_supported() [all …]
|
/linux/include/linux/regulator/ |
H A D | coupler.h | 56 int *min_uV, int *max_uV, 59 int *min_uV, int *max_uV); 62 int min_uV, int max_uV, 72 int *min_uV, int *max_uV, in regulator_check_consumers() argument 78 int *min_uV, int *max_uV) in regulator_check_voltage() argument 87 int min_uV, int max_uV, in regulator_set_voltage_rdev() argument
|
H A D | consumer.h | 116 * @max_uV: Max voltage we'll change to. 121 unsigned long max_uV; member 226 int min_uV, int max_uV); 228 int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV); 274 int max_uV, suspend_state_t state); 491 int min_uV, int max_uV) in regulator_set_voltage() argument 513 int min_uV, int max_uV) in regulator_is_supported_voltage() argument 639 int min_uV, int max_uV, in regulator_set_suspend_voltage() argument 713 int max_uV) in regulator_set_voltage_triplet() argument 715 if (regulator_set_voltage(regulator, target_uV, max_uV) == 0) in regulator_set_voltage_triplet() [all …]
|
/linux/drivers/platform/x86/intel/int3472/ |
H A D | tps68470_board_data.c | 47 .max_uV = 1200000, 58 .max_uV = 2815200, 69 .max_uV = 2815200, 81 .max_uV = 1800600, 90 .max_uV = 1800600, 101 .max_uV = 2815200, 112 .max_uV = 1800600,
|
/linux/drivers/regulator/ |
H A D | core.c | 94 int min_uV, int max_uV); 426 int *min_uV, int *max_uV) in regulator_check_voltage() argument 428 BUG_ON(*min_uV > *max_uV); in regulator_check_voltage() 435 if (*max_uV > rdev->constraints->max_uV) in regulator_check_voltage() 436 *max_uV = rdev->constraints->max_uV; in regulator_check_voltage() 440 if (*min_uV > *max_uV) { in regulator_check_voltage() 442 *min_uV, *max_uV); in regulator_check_voltage() 459 int *min_uV, int *max_uV, in regulator_check_consumers() argument 471 if (!voltage->min_uV && !voltage->max_uV) in regulator_check_consumers() 474 if (*max_uV > voltage->max_uV) in regulator_check_consumers() [all …]
|
H A D | vctrl-regulator.c | 23 int max_uV; member 55 (ctrl->max_uV - ctrl->min_uV), in vctrl_calc_ctrl_voltage() 56 out->max_uV - out->min_uV); in vctrl_calc_ctrl_voltage() 72 if (ctrl_uV > ctrl->max_uV) in vctrl_calc_output_voltage() 73 return out->max_uV; in vctrl_calc_output_voltage() 77 (out->max_uV - out->min_uV), in vctrl_calc_output_voltage() 78 ctrl->max_uV - ctrl->min_uV); in vctrl_calc_output_voltage() 292 vctrl->vrange.out.max_uV = pval; in vctrl_parse_dt() 309 vctrl->vrange.ctrl.max_uV = vrange_ctrl[1]; in vctrl_parse_dt() 341 ctrl_uV > vrange_ctrl->max_uV) in vctrl_init_vtable() [all …]
|
H A D | ab8500-ext.c | 53 .max_uV = 1800000, 64 .max_uV = 1360000, 72 .max_uV = 3400000, 287 int max_uV, unsigned *selector) in ab8500_ext_set_voltage() argument 297 regu_constraints->max_uV == max_uV) in ab8500_ext_set_voltage() 302 min_uV, max_uV, in ab8500_ext_set_voltage() 303 regu_constraints->min_uV, regu_constraints->max_uV); in ab8500_ext_set_voltage() 318 if (regu_constraints->min_uV && regu_constraints->max_uV) { in ab8500_ext_list_voltage() 319 if (regu_constraints->min_uV == regu_constraints->max_uV) in ab8500_ext_list_voltage()
|
H A D | helpers.c | 305 * @max_uV: Upper bound for voltage 313 int min_uV, int max_uV) in regulator_map_voltage_iterate() argument 327 if (ret < best_val && ret >= min_uV && ret <= max_uV) { in regulator_map_voltage_iterate() 345 * @max_uV: Upper bound for voltage 351 int min_uV, int max_uV) in regulator_map_voltage_ascend() argument 360 if (ret > max_uV) in regulator_map_voltage_ascend() 363 if (ret >= min_uV && ret <= max_uV) in regulator_map_voltage_ascend() 376 * @max_uV: Upper bound for voltage 382 int min_uV, int max_uV) in regulator_map_voltage_linear() argument 388 if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV) in regulator_map_voltage_linear() [all …]
|
H A D | pwm-regulator.c | 152 int max_uV = rdev->constraints->max_uV; in pwm_regulator_get_voltage() local 153 int diff_uV = max_uV - min_uV; in pwm_regulator_get_voltage() 173 * The dutycycle for min_uV might be greater than the one for max_uV. in pwm_regulator_get_voltage() 199 int max_uV = rdev->constraints->max_uV; in pwm_regulator_set_voltage() local 200 int diff_uV = max_uV - min_uV; in pwm_regulator_set_voltage() 209 * The dutycycle for min_uV might be greater than the one for max_uV. in pwm_regulator_set_voltage()
|
H A D | da903x-regulator.c | 75 int max_uV; member 91 int min_uV, int max_uV) in check_range() argument 93 if (min_uV < info->desc.min_uV || min_uV > info->max_uV) in check_range() 190 int min_uV, int max_uV) in da9030_map_ldo14_voltage() argument 195 if (check_range(info, min_uV, max_uV)) { in da9030_map_ldo14_voltage() 196 pr_err("invalid voltage range (%d, %d) uV\n", min_uV, max_uV); in da9030_map_ldo14_voltage() 200 thresh = (info->max_uV + info->desc.min_uV) / 2; in da9030_map_ldo14_voltage() 221 volt = (info->max_uV + rdev->desc->min_uV) / 2 + in da9030_list_ldo14_voltage() 224 if (volt > info->max_uV) in da9030_list_ldo14_voltage() 321 .max_uV = (max) * 1000, \ [all …]
|
H A D | da9052-regulator.c | 64 int max_uV; member 75 int min_uV, int max_uV) in verify_range() argument 77 if (min_uV > info->max_uV || max_uV < info->min_uV) in verify_range() 168 if (volt_uV > info->max_uV) in da9052_list_voltage() 175 int min_uV, int max_uV) in da9052_map_voltage() argument 182 ret = verify_range(info, min_uV, max_uV); in da9052_map_voltage() 303 .max_uV = (max) * 1000,\ 325 .max_uV = (max) * 1000,\
|
H A D | mc13xxx-regulator-core.c | 113 int max_uV, unsigned *selector) in mc13xxx_fixed_regulator_set_voltage() argument 117 dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n", in mc13xxx_fixed_regulator_set_voltage() 118 __func__, id, min_uV, max_uV); in mc13xxx_fixed_regulator_set_voltage() 121 rdev->desc->volt_table[0] <= max_uV) { in mc13xxx_fixed_regulator_set_voltage()
|
H A D | pv88090-regulator.c | 47 int max_uV; member 74 .max_uV = 1393750, 80 .max_uV = 2193750, 85 .max_uV = 2837500, 365 = ((pv88090_buck_vol[index].max_uV) in pv88090_i2c_probe()
|
H A D | cros-ec-regulator.c | 93 int max_uV, unsigned int *selector) in cros_ec_regulator_set_voltage() argument 97 int max_mV = max_uV / 1000; in cros_ec_regulator_set_voltage() 105 * This can happen when the given range [min_uV, max_uV] doesn't in cros_ec_regulator_set_voltage()
|
H A D | vexpress-regulator.c | 27 int min_uV, int max_uV, unsigned *selector) in vexpress_regulator_set_voltage() argument 68 if (init_data->constraints.min_uV && init_data->constraints.max_uV) in vexpress_regulator_probe()
|
H A D | max8997-regulator.c | 397 int min_uV, int max_uV, unsigned *selector) in max8997_set_voltage_charger_cv() argument 413 if (max_uV < 4000000 || min_uV > 4350000) in max8997_set_voltage_charger_cv() 418 else if (min_uV <= 4200000 && max_uV >= 4200000) in max8997_set_voltage_charger_cv() 422 ub = (max_uV - 4000000) / 20000 + 1; in max8997_set_voltage_charger_cv() 449 int min_uV, int max_uV, unsigned *selector) in max8997_set_voltage_ldobuck() argument 476 i = max8997_get_voltage_proper_val(desc, min_uV, max_uV); in max8997_set_voltage_ldobuck() 616 int min_uV, int max_uV, unsigned *selector) in max8997_set_voltage_buck() argument 643 return max8997_set_voltage_ldobuck(rdev, min_uV, max_uV, in max8997_set_voltage_buck() 647 new_val = max8997_get_voltage_proper_val(desc, min_uV, max_uV); in max8997_set_voltage_buck()
|
H A D | rt5739.c | 103 int max_uV; in rt5739_set_suspend_voltage() local 105 max_uV = desc->min_uV + desc->uV_step * (desc->n_voltages - 1); in rt5739_set_suspend_voltage() 107 if (uV < desc->min_uV || uV > max_uV) in rt5739_set_suspend_voltage()
|
H A D | max1586.c | 34 unsigned int max_uV; member 236 max1586->max_uV = MAX1586_V3_MAX_UV / 1000 * pdata->v3_gain / 1000; in max1586_pmic_probe() 256 (max1586->max_uV - max1586->min_uV) / in max1586_pmic_probe()
|
H A D | qcom_spmi-regulator.c | 368 * @max_uV: Maximum programmable output voltage 380 * (max_uV - min_uV) % step_uV == 0 390 int max_uV; member 472 .max_uV = _max_uV, \ 667 int min_uV, int max_uV) in spmi_regulator_select_voltage() argument 679 if (uV < lim_min_uV && max_uV >= lim_min_uV) in spmi_regulator_select_voltage() 685 min_uV, max_uV, lim_min_uV, lim_max_uV); in spmi_regulator_select_voltage() 706 if (uV > max_uV) { in spmi_regulator_select_voltage() 710 min_uV, max_uV, uV); in spmi_regulator_select_voltage() 804 int min_uV, int max_uV) in spmi_regulator_select_voltage_same_range() argument [all …]
|
H A D | pv88080-regulator.c | 49 int max_uV; member 97 .max_uV = 1393750, 102 .max_uV = 2193750, 479 ((pv88080_buck_vol[conf2].max_uV * (conf5+1)) in pv88080_i2c_probe()
|
H A D | rt4801-regulator.c | 19 #define MAX_UV 6000000 macro 20 #define N_VOLTAGES ((MAX_UV - MIN_UV) / STEP_UV + 1)
|
H A D | ti-abb-regulator.c | 505 int num_entries, min_uV = INT_MAX, max_uV = 0; in ti_abb_init_table() local 568 if (max_uV < *volt_table) in ti_abb_init_table() 569 max_uV = *volt_table; in ti_abb_init_table() 618 c->max_uV = max_uV; in ti_abb_init_table()
|
/linux/drivers/pmdomain/qcom/ |
H A D | cpr.c | 142 int max_uV; member 203 int max_uV; member 215 int max_uV; member 321 if (cpr_is_allowed(drv) && corner->max_uV > corner->min_uV) in cpr_ctl_enable() 495 if (last_uV >= corner->max_uV) { in cpr_scale() 515 new_uV = min(new_uV, corner->max_uV); in cpr_scale() 874 fdata->max_uV = roundup(fdata->max_uV, step_volt); in cpr_fuse_corner_init() 883 fuse->max_uV = fdata->max_uV; in cpr_fuse_corner_init() 884 fuse->uV = clamp(uV, fuse->min_uV, fuse->max_uV); in cpr_fuse_corner_init() 893 end->max_uV = max(end->max_uV, end->uV); in cpr_fuse_corner_init() [all …]
|
/linux/Documentation/power/regulator/ |
H A D | machine.rst | 45 .max_uV = 3300000, 67 .max_uV = 2000000,
|
/linux/drivers/soc/samsung/ |
H A D | exynos-regulator-coupler.c | 21 int *min_uV, int *max_uV, in regulator_get_optimal_voltage() argument 114 *max_uV = desired_max_uV; in regulator_get_optimal_voltage()
|