]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
regulator: Introduce property to flag set-load support
authorBjorn Andersson <bjorn.andersson@sonymobile.com>
Tue, 18 Aug 2015 22:14:06 +0000 (15:14 -0700)
committerMark Brown <broonie@kernel.org>
Thu, 17 Sep 2015 11:14:12 +0000 (12:14 +0100)
Introduce "regulator-allow-set-load" property to make it possible to
flag in the board configuration that a regulator is allowed to have the
load requirements changed.

Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Documentation/devicetree/bindings/regulator/regulator.txt
drivers/regulator/of_regulator.c

index 24bd422cecd5857c7fcf07403f5b600fd6310f3c..1d112fc456aa9e0ecf31a8e5d796001e24ce20b5 100644 (file)
@@ -11,6 +11,7 @@ Optional properties:
 - regulator-always-on: boolean, regulator should never be disabled
 - regulator-boot-on: bootloader/firmware enabled regulator
 - regulator-allow-bypass: allow the regulator to go into bypass mode
+- regulator-allow-set-load: allow the regulator performance level to be configured
 - <name>-supply: phandle to the parent supply/regulator node
 - regulator-ramp-delay: ramp delay for regulator(in uV/uS)
   For hardware which supports disabling ramp rate, it should be explicitly
index 250700c853bfa524991f6721256fb02876f54799..499e437c7e919f2576c694ef6b6466898d006dbf 100644 (file)
@@ -76,6 +76,9 @@ static void of_get_regulation_constraints(struct device_node *np,
        if (of_property_read_bool(np, "regulator-allow-bypass"))
                constraints->valid_ops_mask |= REGULATOR_CHANGE_BYPASS;
 
+       if (of_property_read_bool(np, "regulator-allow-set-load"))
+               constraints->valid_ops_mask |= REGULATOR_CHANGE_DRMS;
+
        ret = of_property_read_u32(np, "regulator-ramp-delay", &pval);
        if (!ret) {
                if (pval)