Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1739463

[PATCH v2.1] PM / devfreq: exynos-bus: Register cooling device

From Chanwoo Choi <cw00.choi@samsung.com>
Newsgroups linux.kernel
Subject [PATCH v2.1] PM / devfreq: exynos-bus: Register cooling device
Date 2017-09-26 04:40 +0200
Message-ID <utNWW-6Tq-7@gated-at.bofh.it> (permalink)
References <urXH3-1Ui-3@gated-at.bofh.it> <utNWW-6Tq-9@gated-at.bofh.it> <urXH3-1Ui-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


This patch registers the Exynos Bus-Frequency scaling device
as a cooling device of thermal management.

Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Cc: Kukjin Kim <kgene@kernel.org>
Cc: Krzysztof Kozlowski <krzk@kernel.org>
Cc: linux-samsung-soc@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
---
 drivers/devfreq/exynos-bus.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/drivers/devfreq/exynos-bus.c b/drivers/devfreq/exynos-bus.c
index c25658b26598..fe9ef6a3238b 100644
--- a/drivers/devfreq/exynos-bus.c
+++ b/drivers/devfreq/exynos-bus.c
@@ -15,6 +15,7 @@
 #include <linux/clk.h>
 #include <linux/devfreq.h>
 #include <linux/devfreq-event.h>
+#include <linux/devfreq_cooling.h>
 #include <linux/device.h>
 #include <linux/export.h>
 #include <linux/module.h>
@@ -41,6 +42,8 @@ struct exynos_bus {
 	struct clk *clk;
 	unsigned int voltage_tolerance;
 	unsigned int ratio;
+
+	struct thermal_cooling_device *cdev;
 };
 
 /*
@@ -468,6 +471,13 @@ static int exynos_bus_probe(struct platform_device *pdev)
 		goto err;
 	}
 
+	/* Register devfreq cooling device */
+	bus->cdev = of_devfreq_cooling_register(np, bus->devfreq);
+	if (IS_ERR(bus->cdev)) {
+		dev_err(dev, "running exynos-bus without cooling device\n");
+		bus->cdev = NULL;
+	}
+
 	goto out;
 passive:
 	/* Initialize the struct profile and governor data for passive device */
@@ -514,6 +524,15 @@ static int exynos_bus_probe(struct platform_device *pdev)
 	return ret;
 }
 
+static int exynos_bus_remove(struct platform_device *pdev)
+{
+	struct exynos_bus *bus = platform_get_drvdata(pdev);
+
+	devfreq_cooling_unregister(bus->cdev);
+
+	return 0;
+}
+
 #ifdef CONFIG_PM_SLEEP
 static int exynos_bus_resume(struct device *dev)
 {
@@ -556,6 +575,7 @@ static int exynos_bus_suspend(struct device *dev)
 
 static struct platform_driver exynos_bus_platdrv = {
 	.probe		= exynos_bus_probe,
+	.remove		= exynos_bus_remove,
 	.driver = {
 		.name	= "exynos-bus",
 		.pm	= &exynos_bus_pm,
-- 
1.9.1

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/8] PM / devfreq: Use OPP interface to handle the  frequency Chanwoo Choi <cw00.choi@samsung.com> - 2017-09-21 02:40 +0200
  [PATCH v2 1/8] PM / devfreq: Set min/max_freq when adding the  devfreq device Chanwoo Choi <cw00.choi@samsung.com> - 2017-09-21 02:40 +0200
  [PATCH v2 3/8] PM / devfreq: Show the available min/max frequency  through sysfs node Chanwoo Choi <cw00.choi@samsung.com> - 2017-09-21 02:40 +0200
  [PATCH v2 8/8] PM / devfreq: exynos-bus: Register cooling device Chanwoo Choi <cw00.choi@samsung.com> - 2017-09-21 02:40 +0200
    Re: [PATCH v2 8/8] PM / devfreq: exynos-bus: Register cooling  device Chanwoo Choi <cw00.choi@samsung.com> - 2017-09-21 07:00 +0200
  [PATCH v2 6/8] PM / devfreq: Remove unneeded conditional statement Chanwoo Choi <cw00.choi@samsung.com> - 2017-09-21 02:40 +0200
  [PATCH v2.1] PM / devfreq: exynos-bus: Register cooling device Chanwoo Choi <cw00.choi@samsung.com> - 2017-09-26 04:40 +0200

csiph-web