[PATCH 0/6] regulator: add enable GPIO property to pwm-regulator

From: Alexandre Courbot
Date: Wed Jun 22 2016 - 04:27:40 EST


This series adds the ability for the pwm-regulator driver to have an enable-gpio
property, a feature that is required for the VDD_GPU regulator of Jetson TX1.

Before doing that though, it goes through a few required changes/improvements
in the regulator framework.

Patch 1 allows the regulator core to use both an enable GPIO and an enable
callback for a given driver. This is required for our use-case since the PWM
also needs to be enabled/disabled in pwm-regulator regardless of whether we are
using an enable GPIO or not.

Patches 2-4 factorize the enable GPIO DT parsing code. With fixed and GPIO
regulators already using that feature, and PWM to do the same, it probably
makes sense to only have one function doing this. The parsing function supports
more properties than individual drivers require, but the DT binding is the
authority on which properties are valid, not the implementation.

Finally patches 5-6 add support for the enable GPIO in pwm-regulator and the
corresponding DT binding. The binding is kept minimal (active-high and
open-drain properties can be specified in the GPIO phandle) on purpose.

Alexandre Courbot (6):
regulator: core: Allow simultaneous use of enable op and GPIO
regulator: of: Add enable GPIO configuration function
regulator: fixed: Use of_get_regulator_gpio_config
regulator: gpio: Use of_get_regulator_gpio_config
pwm-regulator: Support for enable GPIO
dt-bindings: pwm-regulator: Document enable-gpio property

.../bindings/regulator/pwm-regulator.txt | 7 ++-
drivers/regulator/core.c | 34 ++++++++------
drivers/regulator/fixed.c | 52 +++++++++++-----------
drivers/regulator/gpio-regulator.c | 47 ++++++++++---------
drivers/regulator/of_regulator.c | 52 ++++++++++++++++++++++
drivers/regulator/pwm-regulator.c | 5 +++
include/linux/regulator/of_regulator.h | 14 ++++++
7 files changed, 149 insertions(+), 62 deletions(-)

--
2.8.3