]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
regulator: core: introduce function to lock regulators and its supplies
authorSascha Hauer <s.hauer@pengutronix.de>
Wed, 30 Sep 2015 14:05:42 +0000 (16:05 +0200)
committerMark Brown <broonie@kernel.org>
Thu, 1 Oct 2015 11:28:42 +0000 (12:28 +0100)
Each regulator_dev is locked with its own mutex. This is fine as long
as only one regulator_dev is locked, but makes lockdep unhappy when we
have to walk up the supply chain like it can happen in
regulator_get_voltage:

regulator_get_voltage ->
 mutex_lock(&regulator->rdev->mutex) ->
_regulator_get_voltage(regulator->rdev) ->
regulator_get_voltage(rdev->supply) ->
mutex_lock(&regulator->rdev->mutex);

This causes lockdep to issue a possible deadlock warning.

There are at least two ways to work around this:

- We can always lock the whole supply chain using the functions
  introduced with this patch.
- We could store the current voltage in struct regulator_rdev so
  that we do not have to walk up the supply chain for the
  _regulator_get_voltage case.

Anyway, regulator_lock_supply/regulator_unlock_supply will be needed
once we allow regulator_set_voltage to optimize the supply voltages.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/core.c

index 7a85ac9e32c5da9168c1e79d3ae82d230d9dd628..1f9ff55b362021d78bd782a6d322e0fe0a14a91b 100644 (file)
@@ -131,6 +131,45 @@ static bool have_full_constraints(void)
        return has_full_constraints || of_have_populated_dt();
 }
 
+/**
+ * regulator_lock_supply - lock a regulator and its supplies
+ * @rdev:         regulator source
+ */
+static void regulator_lock_supply(struct regulator_dev *rdev)
+{
+       struct regulator *supply;
+       int i = 0;
+
+       while (1) {
+               mutex_lock_nested(&rdev->mutex, i++);
+               supply = rdev->supply;
+
+               if (!rdev->supply)
+                       return;
+
+               rdev = supply->rdev;
+       }
+}
+
+/**
+ * regulator_unlock_supply - unlock a regulator and its supplies
+ * @rdev:         regulator source
+ */
+static void regulator_unlock_supply(struct regulator_dev *rdev)
+{
+       struct regulator *supply;
+
+       while (1) {
+               mutex_unlock(&rdev->mutex);
+               supply = rdev->supply;
+
+               if (!rdev->supply)
+                       return;
+
+               rdev = supply->rdev;
+       }
+}
+
 /**
  * of_get_regulator - get a regulator device node based on supply name
  * @dev: Device pointer for the consumer (of regulator) device