Merge remote-tracking branches 'regulator/topic/dbx500', 'regulator/topic/load-op', 'regulator/topic/max77693' and 'regulator/topic/max8660' into regulator-next
This commit is contained in:
@@ -648,10 +648,12 @@ static int drms_uA_update(struct regulator_dev *rdev)
|
||||
if (err < 0)
|
||||
return 0;
|
||||
|
||||
if (!rdev->desc->ops->get_optimum_mode)
|
||||
if (!rdev->desc->ops->get_optimum_mode &&
|
||||
!rdev->desc->ops->set_load)
|
||||
return 0;
|
||||
|
||||
if (!rdev->desc->ops->set_mode)
|
||||
if (!rdev->desc->ops->set_mode &&
|
||||
!rdev->desc->ops->set_load)
|
||||
return -EINVAL;
|
||||
|
||||
/* get output voltage */
|
||||
@@ -676,22 +678,29 @@ static int drms_uA_update(struct regulator_dev *rdev)
|
||||
list_for_each_entry(sibling, &rdev->consumer_list, list)
|
||||
current_uA += sibling->uA_load;
|
||||
|
||||
/* now get the optimum mode for our new total regulator load */
|
||||
mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
|
||||
output_uV, current_uA);
|
||||
if (rdev->desc->ops->set_load) {
|
||||
/* set the optimum mode for our new total regulator load */
|
||||
err = rdev->desc->ops->set_load(rdev, current_uA);
|
||||
if (err < 0)
|
||||
rdev_err(rdev, "failed to set load %d\n", current_uA);
|
||||
} else {
|
||||
/* now get the optimum mode for our new total regulator load */
|
||||
mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
|
||||
output_uV, current_uA);
|
||||
|
||||
/* check the new mode is allowed */
|
||||
err = regulator_mode_constrain(rdev, &mode);
|
||||
if (err < 0) {
|
||||
rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
|
||||
current_uA, input_uV, output_uV);
|
||||
return err;
|
||||
/* check the new mode is allowed */
|
||||
err = regulator_mode_constrain(rdev, &mode);
|
||||
if (err < 0) {
|
||||
rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
|
||||
current_uA, input_uV, output_uV);
|
||||
return err;
|
||||
}
|
||||
|
||||
err = rdev->desc->ops->set_mode(rdev, mode);
|
||||
if (err < 0)
|
||||
rdev_err(rdev, "failed to set optimum mode %x\n", mode);
|
||||
}
|
||||
|
||||
err = rdev->desc->ops->set_mode(rdev, mode);
|
||||
if (err < 0)
|
||||
rdev_err(rdev, "failed to set optimum mode %x\n", mode);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user