aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/regulator
diff options
context:
space:
mode:
authorJerome Neanne <jneanne@baylibre.com>2022-09-29 15:25:25 +0200
committerMark Brown <broonie@kernel.org>2022-09-29 15:20:14 +0100
commitadfdfcbdbd32b356323a3db6d3a683270051a7e6 (patch)
tree5a9a2a98a86588ae3898c8a20d9bda1d574bca62 /include/linux/regulator
parentregulator: tps65219: Fix is_enabled checking in tps65219_set_bypass (diff)
downloadlinux-dev-adfdfcbdbd32b356323a3db6d3a683270051a7e6.tar.xz
linux-dev-adfdfcbdbd32b356323a3db6d3a683270051a7e6.zip
regulator: gpio: Add input_supply support in gpio_regulator_config
This is simillar as fixed-regulator. Used to extract regulator parent from the device tree. Without that property used, the parent regulator can be shut down (if not an always on). Thus leading to inappropriate behavior: On am62-SP-SK this fix is required to avoid tps65219 ldo1 (SDMMC rail) to be shut down after boot completion. Signed-off-by: Jerome Neanne <jneanne@baylibre.com> Link: https://lore.kernel.org/r/20220929132526.29427-2-jneanne@baylibre.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/regulator')
-rw-r--r--include/linux/regulator/gpio-regulator.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/regulator/gpio-regulator.h b/include/linux/regulator/gpio-regulator.h
index fdeb312cdabd..c223e50ff9f7 100644
--- a/include/linux/regulator/gpio-regulator.h
+++ b/include/linux/regulator/gpio-regulator.h
@@ -42,6 +42,7 @@ struct gpio_regulator_state {
/**
* struct gpio_regulator_config - config structure
* @supply_name: Name of the regulator supply
+ * @input_supply: Name of the input regulator supply
* @enabled_at_boot: Whether regulator has been enabled at
* boot or not. 1 = Yes, 0 = No
* This is used to keep the regulator at
@@ -62,6 +63,7 @@ struct gpio_regulator_state {
*/
struct gpio_regulator_config {
const char *supply_name;
+ const char *input_supply;
unsigned enabled_at_boot:1;
unsigned startup_delay;