PM: runtime: Simplify pm_runtime_get_if_active() usage
authorSakari Ailus <sakari.ailus@linux.intel.com>
Tue, 30 Jan 2024 11:28:05 +0000 (13:28 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 12 Feb 2024 15:57:47 +0000 (16:57 +0100)
There are two ways to opportunistically increment a device's runtime PM
usage count, calling either pm_runtime_get_if_active() or
pm_runtime_get_if_in_use(). The former has an argument to tell whether to
ignore the usage count or not, and the latter simply calls the former with
ign_usage_count set to false. The other users that want to ignore the
usage_count will have to explicitly set that argument to true which is a
bit cumbersome.

To make this function more practical to use, remove the ign_usage_count
argument from the function. The main implementation is in a static
function called pm_runtime_get_conditional() and implementations of
pm_runtime_get_if_active() and pm_runtime_get_if_in_use() are moved to
runtime.c.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Alex Elder <elder@linaro.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Takashi Iwai <tiwai@suse.de> # sound/
Reviewed-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com> # drivers/accel/ivpu/
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com> # drivers/gpu/drm/i915/
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com> # drivers/pci/
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
12 files changed:
Documentation/power/runtime_pm.rst
drivers/accel/ivpu/ivpu_pm.c
drivers/base/power/runtime.c
drivers/gpu/drm/i915/intel_runtime_pm.c
drivers/gpu/drm/xe/xe_pm.c
drivers/media/i2c/ccs/ccs-core.c
drivers/media/i2c/ov64a40.c
drivers/media/i2c/thp7312.c
drivers/net/ipa/ipa_smp2p.c
drivers/pci/pci.c
include/linux/pm_runtime.h
sound/hda/hdac_device.c

index 65b86e487afe00710efc411245b77073b7e96513..da99379071a4faaac7d3da3e02609cefb464f8f7 100644 (file)
@@ -396,10 +396,9 @@ drivers/base/power/runtime.c and include/linux/pm_runtime.h:
       nonzero, increment the counter and return 1; otherwise return 0 without
       changing the counter
 
-  `int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count);`
+  `int pm_runtime_get_if_active(struct device *dev);`
     - return -EINVAL if 'power.disable_depth' is nonzero; otherwise, if the
-      runtime PM status is RPM_ACTIVE, and either ign_usage_count is true
-      or the device's usage_count is non-zero, increment the counter and
+      runtime PM status is RPM_ACTIVE, increment the counter and
       return 1; otherwise return 0 without changing the counter
 
   `void pm_runtime_put_noidle(struct device *dev);`
index f501f27ebafdf6687b5a46ca7e2387faa931af3e..981777c93cf5308ab81a2a9fa3d86580bec61d69 100644 (file)
@@ -304,7 +304,7 @@ int ivpu_rpm_get_if_active(struct ivpu_device *vdev)
 {
        int ret;
 
-       ret = pm_runtime_get_if_active(vdev->drm.dev, false);
+       ret = pm_runtime_get_if_in_use(vdev->drm.dev);
        drm_WARN_ON(&vdev->drm, ret < 0);
 
        return ret;
index 05793c9fbb8499ec18d9584c6a7cb4b3fcc7a8c7..5275a6b2e980bb9ae4ed6e297462769da38613d0 100644 (file)
@@ -1176,7 +1176,7 @@ int __pm_runtime_resume(struct device *dev, int rpmflags)
 EXPORT_SYMBOL_GPL(__pm_runtime_resume);
 
 /**
- * pm_runtime_get_if_active - Conditionally bump up device usage counter.
+ * pm_runtime_get_conditional - Conditionally bump up device usage counter.
  * @dev: Device to handle.
  * @ign_usage_count: Whether or not to look at the current usage counter value.
  *
@@ -1197,7 +1197,7 @@ EXPORT_SYMBOL_GPL(__pm_runtime_resume);
  * The caller is responsible for decrementing the runtime PM usage counter of
  * @dev after this function has returned a positive value for it.
  */
-int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count)
+static int pm_runtime_get_conditional(struct device *dev, bool ign_usage_count)
 {
        unsigned long flags;
        int retval;
@@ -1218,8 +1218,39 @@ int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count)
 
        return retval;
 }
+
+/**
+ * pm_runtime_get_if_active - Bump up runtime PM usage counter if the device is
+ *                           in active state
+ * @dev: Target device.
+ *
+ * Increment the runtime PM usage counter of @dev if its runtime PM status is
+ * %RPM_ACTIVE, in which case it returns 1. If the device is in a different
+ * state, 0 is returned. -EINVAL is returned if runtime PM is disabled for the
+ * device, in which case also the usage_count will remain unmodified.
+ */
+int pm_runtime_get_if_active(struct device *dev)
+{
+       return pm_runtime_get_conditional(dev, true);
+}
 EXPORT_SYMBOL_GPL(pm_runtime_get_if_active);
 
+/**
+ * pm_runtime_get_if_in_use - Conditionally bump up runtime PM usage counter.
+ * @dev: Target device.
+ *
+ * Increment the runtime PM usage counter of @dev if its runtime PM status is
+ * %RPM_ACTIVE and its runtime PM usage counter is greater than 0, in which case
+ * it returns 1. If the device is in a different state or its usage_count is 0,
+ * 0 is returned. -EINVAL is returned if runtime PM is disabled for the device,
+ * in which case also the usage_count will remain unmodified.
+ */
+int pm_runtime_get_if_in_use(struct device *dev)
+{
+       return pm_runtime_get_conditional(dev, false);
+}
+EXPORT_SYMBOL_GPL(pm_runtime_get_if_in_use);
+
 /**
  * __pm_runtime_set_status - Set runtime PM status of a device.
  * @dev: Device to handle.
index 860b51b56a92be4a9f99e50a8a1cc524e863d9c1..d4e844128826929167a10a858e8de98ccfb6d951 100644 (file)
@@ -246,7 +246,10 @@ static intel_wakeref_t __intel_runtime_pm_get_if_active(struct intel_runtime_pm
                 * function, since the power state is undefined. This applies
                 * atm to the late/early system suspend/resume handlers.
                 */
-               if (pm_runtime_get_if_active(rpm->kdev, ignore_usecount) <= 0)
+               if ((ignore_usecount &&
+                    pm_runtime_get_if_active(rpm->kdev) <= 0) ||
+                   (!ignore_usecount &&
+                    pm_runtime_get_if_in_use(rpm->kdev) <= 0))
                        return 0;
        }
 
index b429c2876a76405e76f10f21e832adf8df929b9b..dd110058bf74fdb49eedf1212e2d5ac07aa47a44 100644 (file)
@@ -330,7 +330,7 @@ int xe_pm_runtime_put(struct xe_device *xe)
 
 int xe_pm_runtime_get_if_active(struct xe_device *xe)
 {
-       return pm_runtime_get_if_active(xe->drm.dev, true);
+       return pm_runtime_get_if_active(xe->drm.dev);
 }
 
 void xe_pm_assert_unbounded_bridge(struct xe_device *xe)
index e21287d50c15a9b0783ccf8342b8f9ecf1da391a..e1ae0f9fad4326d765e92ae6086843cfd2ce81e7 100644 (file)
@@ -674,7 +674,7 @@ static int ccs_set_ctrl(struct v4l2_ctrl *ctrl)
                break;
        }
 
-       pm_status = pm_runtime_get_if_active(&client->dev, true);
+       pm_status = pm_runtime_get_if_active(&client->dev);
        if (!pm_status)
                return 0;
 
index 4fba4c2cb064bf87c250309f111824e7c6705024..541bf74581d2ab2bf79c79619c6490c79fb8e9f4 100644 (file)
@@ -3287,7 +3287,7 @@ static int ov64a40_set_ctrl(struct v4l2_ctrl *ctrl)
                                         exp_max, 1, exp_val);
        }
 
-       pm_status = pm_runtime_get_if_active(ov64a40->dev, true);
+       pm_status = pm_runtime_get_if_active(ov64a40->dev);
        if (!pm_status)
                return 0;
 
index 2806887514dcf8c176ab20fddd72c5c0b646da95..19bd923a7315bd92919f7cbfb3e3ab8048c15ba4 100644 (file)
@@ -1052,7 +1052,7 @@ static int thp7312_s_ctrl(struct v4l2_ctrl *ctrl)
        if (ctrl->flags & V4L2_CTRL_FLAG_INACTIVE)
                return -EINVAL;
 
-       if (!pm_runtime_get_if_active(thp7312->dev, true))
+       if (!pm_runtime_get_if_active(thp7312->dev))
                return 0;
 
        switch (ctrl->id) {
index 5620dc271fac33faac4b1e9a6bd35f55224d1975..cbf3d4761ce3573630da9fced06cb088630f2c51 100644 (file)
@@ -92,7 +92,7 @@ static void ipa_smp2p_notify(struct ipa_smp2p *smp2p)
                return;
 
        dev = &smp2p->ipa->pdev->dev;
-       smp2p->power_on = pm_runtime_get_if_active(dev, true) > 0;
+       smp2p->power_on = pm_runtime_get_if_active(dev) > 0;
 
        /* Signal whether the IPA power is enabled */
        mask = BIT(smp2p->enabled_bit);
index 9ab9b1008d8b9de897f1a1372f128e849b8a73a2..cb51c4079013b36547f2f3b45f7ee237e169b585 100644 (file)
@@ -2536,7 +2536,7 @@ static void pci_pme_list_scan(struct work_struct *work)
                         * If the device is in a low power state it
                         * should not be polled either.
                         */
-                       pm_status = pm_runtime_get_if_active(dev, true);
+                       pm_status = pm_runtime_get_if_active(dev);
                        if (!pm_status)
                                continue;
 
index 7c9b3544856343d6e7fee275590052abb82f82ba..436baa167498312ca79ba43d21c08cf0f9d46d26 100644 (file)
@@ -72,7 +72,8 @@ extern int pm_runtime_force_resume(struct device *dev);
 extern int __pm_runtime_idle(struct device *dev, int rpmflags);
 extern int __pm_runtime_suspend(struct device *dev, int rpmflags);
 extern int __pm_runtime_resume(struct device *dev, int rpmflags);
-extern int pm_runtime_get_if_active(struct device *dev, bool ign_usage_count);
+extern int pm_runtime_get_if_active(struct device *dev);
+extern int pm_runtime_get_if_in_use(struct device *dev);
 extern int pm_schedule_suspend(struct device *dev, unsigned int delay);
 extern int __pm_runtime_set_status(struct device *dev, unsigned int status);
 extern int pm_runtime_barrier(struct device *dev);
@@ -94,18 +95,6 @@ extern void pm_runtime_release_supplier(struct device_link *link);
 
 extern int devm_pm_runtime_enable(struct device *dev);
 
-/**
- * pm_runtime_get_if_in_use - Conditionally bump up runtime PM usage counter.
- * @dev: Target device.
- *
- * Increment the runtime PM usage counter of @dev if its runtime PM status is
- * %RPM_ACTIVE and its runtime PM usage counter is greater than 0.
- */
-static inline int pm_runtime_get_if_in_use(struct device *dev)
-{
-       return pm_runtime_get_if_active(dev, false);
-}
-
 /**
  * pm_suspend_ignore_children - Set runtime PM behavior regarding children.
  * @dev: Target device.
@@ -275,8 +264,7 @@ static inline int pm_runtime_get_if_in_use(struct device *dev)
 {
        return -EINVAL;
 }
-static inline int pm_runtime_get_if_active(struct device *dev,
-                                          bool ign_usage_count)
+static inline int pm_runtime_get_if_active(struct device *dev)
 {
        return -EINVAL;
 }
index 7f7b67fe1b65f1b731a6e3bf602d3c0d1be2576c..068c16e52dffafe637ae1faab4303796cacd9d36 100644 (file)
@@ -612,7 +612,7 @@ EXPORT_SYMBOL_GPL(snd_hdac_power_up_pm);
 int snd_hdac_keep_power_up(struct hdac_device *codec)
 {
        if (!atomic_inc_not_zero(&codec->in_pm)) {
-               int ret = pm_runtime_get_if_active(&codec->dev, true);
+               int ret = pm_runtime_get_if_active(&codec->dev);
                if (!ret)
                        return -1;
                if (ret < 0)