···99- regulator-max-microamp: largest current consumers may set1010- regulator-always-on: boolean, regulator should never be disabled1111- regulator-boot-on: bootloader/firmware enabled regulator1212+- regulator-allow-bypass: allow the regulator to go into bypass mode1213- <name>-supply: phandle to the parent supply/regulator node1314- regulator-ramp-delay: ramp delay for regulator(in uV/uS)1415
+3
drivers/regulator/of_regulator.c
···6161 else /* status change should be possible if not always on. */6262 constraints->valid_ops_mask |= REGULATOR_CHANGE_STATUS;63636464+ if (of_property_read_bool(np, "regulator-allow-bypass"))6565+ constraints->valid_ops_mask |= REGULATOR_CHANGE_BYPASS;6666+6467 ramp_delay = of_get_property(np, "regulator-ramp-delay", NULL);6568 if (ramp_delay)6669 constraints->ramp_delay = be32_to_cpu(*ramp_delay);