]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ENGR00274056-1 thermal: add device cooling for thermal driver
authorAnson Huang <b20788@freescale.com>
Thu, 8 Aug 2013 17:20:40 +0000 (13:20 -0400)
committerJason Liu <r64343@freescale.com>
Wed, 30 Oct 2013 01:54:28 +0000 (09:54 +0800)
cpu cooling is not enough when temperature is
too hot, as some devices may contribute a lot of heat
to SOC, such as GPU, so we need to add device cooling
as well, when system is too hot, devices can also take
their actions to lower SOC temperature.

when temperature cross the passive trip, device cooling
driver will send out notification, those devices who
register this devfreq_cooling notification will take
actions to lower SOC temperature.

Signed-off-by: Anson Huang <b20788@freescale.com>
drivers/thermal/Kconfig
drivers/thermal/Makefile
drivers/thermal/device_cooling.c [new file with mode: 0644]
include/linux/device_cooling.h [new file with mode: 0644]

index e91d78fff430e5c3222c1b33379bd269639edd70..cb7d15c43f871f7fc1c60db62630e42738843662 100644 (file)
@@ -102,6 +102,13 @@ config IMX_THERMAL
          cpufreq is used as the cooling device to throttle CPUs when the
          passive trip is crossed.
 
+config DEVICE_THERMAL
+       tristate "generic device cooling support"
+       help
+         Support for device cooling.
+         It supports notification of crossing passive trip for devices,
+         devices need to do their own actions to cool down the SOC.
+
 config SPEAR_THERMAL
        bool "SPEAr thermal sensor driver"
        depends on PLAT_SPEAR
index 6910b2dfb6673f6330bdce72f75397e8667bf3b2..0177697798fa39d7aa13d6e9a77f92e38ffb414a 100644 (file)
@@ -22,6 +22,7 @@ obj-$(CONFIG_DOVE_THERMAL)    += dove_thermal.o
 obj-$(CONFIG_DB8500_THERMAL)   += db8500_thermal.o
 obj-$(CONFIG_ARMADA_THERMAL)   += armada_thermal.o
 obj-$(CONFIG_IMX_THERMAL)      += imx_thermal.o
+obj-$(CONFIG_DEVICE_THERMAL)   += device_cooling.o
 obj-$(CONFIG_DB8500_CPUFREQ_COOLING)   += db8500_cpufreq_cooling.o
 obj-$(CONFIG_INTEL_POWERCLAMP) += intel_powerclamp.o
 
diff --git a/drivers/thermal/device_cooling.c b/drivers/thermal/device_cooling.c
new file mode 100644 (file)
index 0000000..1c223a8
--- /dev/null
@@ -0,0 +1,151 @@
+/*
+ * Copyright (C) 2013 Freescale Semiconductor, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ */
+
+#include <linux/module.h>
+#include <linux/thermal.h>
+#include <linux/err.h>
+#include <linux/slab.h>
+
+struct devfreq_cooling_device {
+       int id;
+       struct thermal_cooling_device *cool_dev;
+       unsigned int devfreq_state;
+};
+
+static DEFINE_IDR(devfreq_idr);
+static DEFINE_MUTEX(devfreq_cooling_lock);
+
+#define        MAX_STATE       1
+
+static BLOCKING_NOTIFIER_HEAD(devfreq_cooling_chain_head);
+
+int register_devfreq_cooling_notifier(struct notifier_block *nb)
+{
+       return blocking_notifier_chain_register(
+               &devfreq_cooling_chain_head, nb);
+}
+EXPORT_SYMBOL_GPL(register_devfreq_cooling_notifier);
+
+int unregister_devfreq_cooling_notifier(struct notifier_block *nb)
+{
+       return blocking_notifier_chain_unregister(
+               &devfreq_cooling_chain_head, nb);
+}
+EXPORT_SYMBOL_GPL(unregister_devfreq_cooling_notifier);
+
+static int devfreq_cooling_notifier_call_chain(unsigned long val)
+{
+       return (blocking_notifier_call_chain(
+               &devfreq_cooling_chain_head, val, NULL)
+               == NOTIFY_BAD) ? -EINVAL : 0;
+}
+
+static int devfreq_set_cur_state(struct thermal_cooling_device *cdev,
+                                unsigned long state)
+{
+       struct devfreq_cooling_device *devfreq_device = cdev->devdata;
+       int ret;
+
+       ret = devfreq_cooling_notifier_call_chain(state);
+       if (ret)
+               return -EINVAL;
+       devfreq_device->devfreq_state = state;
+
+       return 0;
+}
+
+static int devfreq_get_max_state(struct thermal_cooling_device *cdev,
+                                unsigned long *state)
+{
+       *state = MAX_STATE;
+
+       return 0;
+}
+
+static int devfreq_get_cur_state(struct thermal_cooling_device *cdev,
+                                unsigned long *state)
+{
+       struct devfreq_cooling_device *devfreq_device = cdev->devdata;
+
+       *state = devfreq_device->devfreq_state;
+
+       return 0;
+}
+
+static struct thermal_cooling_device_ops const devfreq_cooling_ops = {
+       .get_max_state = devfreq_get_max_state,
+       .get_cur_state = devfreq_get_cur_state,
+       .set_cur_state = devfreq_set_cur_state,
+};
+
+static int get_idr(struct idr *idr, int *id)
+{
+       int ret;
+
+       mutex_lock(&devfreq_cooling_lock);
+       ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL);
+       mutex_unlock(&devfreq_cooling_lock);
+       if (unlikely(ret < 0))
+               return ret;
+       *id = ret;
+
+       return 0;
+}
+
+static void release_idr(struct idr *idr, int id)
+{
+       mutex_lock(&devfreq_cooling_lock);
+       idr_remove(idr, id);
+       mutex_unlock(&devfreq_cooling_lock);
+}
+
+struct thermal_cooling_device *devfreq_cooling_register(void)
+{
+       struct thermal_cooling_device *cool_dev;
+       struct devfreq_cooling_device *devfreq_dev = NULL;
+       char dev_name[THERMAL_NAME_LENGTH];
+       int ret = 0;
+
+       devfreq_dev = kzalloc(sizeof(struct devfreq_cooling_device),
+                             GFP_KERNEL);
+       if (!devfreq_dev)
+               return ERR_PTR(-ENOMEM);
+
+       ret = get_idr(&devfreq_idr, &devfreq_dev->id);
+       if (ret) {
+               kfree(devfreq_dev);
+               return ERR_PTR(-EINVAL);
+       }
+
+       snprintf(dev_name, sizeof(dev_name), "thermal-devfreq-%d",
+                devfreq_dev->id);
+
+       cool_dev = thermal_cooling_device_register(dev_name, devfreq_dev,
+                                                  &devfreq_cooling_ops);
+       if (!cool_dev) {
+               release_idr(&devfreq_idr, devfreq_dev->id);
+               kfree(devfreq_dev);
+               return ERR_PTR(-EINVAL);
+       }
+       devfreq_dev->cool_dev = cool_dev;
+       devfreq_dev->devfreq_state = 0;
+
+       return cool_dev;
+}
+EXPORT_SYMBOL_GPL(devfreq_cooling_register);
+
+void devfreq_cooling_unregister(struct thermal_cooling_device *cdev)
+{
+       struct devfreq_cooling_device *devfreq_dev = cdev->devdata;
+
+       thermal_cooling_device_unregister(devfreq_dev->cool_dev);
+       release_idr(&devfreq_idr, devfreq_dev->id);
+       kfree(devfreq_dev);
+}
+EXPORT_SYMBOL_GPL(devfreq_cooling_unregister);
diff --git a/include/linux/device_cooling.h b/include/linux/device_cooling.h
new file mode 100644 (file)
index 0000000..ae40a45
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2013 Freescale Semiconductor, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ */
+
+#ifndef __DEVICE_THERMAL_H__
+#define __DEVICE_THERMAL_H__
+
+#include <linux/thermal.h>
+
+#ifdef CONFIG_DEVICE_THERMAL
+int register_devfreq_cooling_notifier(struct notifier_block *nb);
+int unregister_devfreq_cooling_notifier(struct notifier_block *nb);
+struct thermal_cooling_device *devfreq_cooling_register(void);
+void devfreq_cooling_unregister(struct thermal_cooling_device *cdev);
+#else
+static inline
+int register_devfreq_cooling_notifier(struct notifier_block *nb)
+{
+       return 0;
+}
+
+static inline
+int unregister_devfreq_cooling_notifier(struct notifier_block *nb)
+{
+       return 0;
+}
+
+static inline
+struct thermal_cooling_device *devfreq_cooling_register(void)
+{
+       return NULL;
+}
+
+static inline
+void devfreq_cooling_unregister(struct thermal_cooling_device *cdev)
+{
+       return;
+}
+#endif
+#endif /* __DEVICE_THERMAL_H__ */