blob: 293cffd9c8adb6d7592044473c46ee70af3f2a6c [file] [log] [blame]
Thomas Gleixner873e65b2019-05-27 08:55:15 +02001// SPDX-License-Identifier: GPL-2.0-only
Durgadoss R1cc807a2012-09-18 11:05:03 +05302/*
3 * user_space.c - A simple user space Thermal events notifier
4 *
5 * Copyright (C) 2012 Intel Corp
6 * Copyright (C) 2012 Durgadoss R <durgadoss.r@intel.com>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
Durgadoss R1cc807a2012-09-18 11:05:03 +053010 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 */
12
Durgadoss R1cc807a2012-09-18 11:05:03 +053013#include <linux/thermal.h>
Srinivas Pandruvada998d9242016-08-26 16:21:17 -070014#include <linux/slab.h>
Willy WOLFF0d76d6e12017-06-24 14:06:03 +010015
Durgadoss R1cc807a2012-09-18 11:05:03 +053016#include "thermal_core.h"
17
18/**
19 * notify_user_space - Notifies user space about thermal events
Amit Kucheria53d256e2019-11-20 21:15:12 +053020 * @tz: thermal_zone_device
21 * @trip: trip point index
Durgadoss R1cc807a2012-09-18 11:05:03 +053022 *
23 * This function notifies the user space through UEvents.
24 */
Sachin Kamate15cb142012-09-27 16:57:54 +053025static int notify_user_space(struct thermal_zone_device *tz, int trip)
Durgadoss R1cc807a2012-09-18 11:05:03 +053026{
Srinivas Pandruvada998d9242016-08-26 16:21:17 -070027 char *thermal_prop[5];
28 int i;
29
Durgadoss R1cc807a2012-09-18 11:05:03 +053030 mutex_lock(&tz->lock);
Srinivas Pandruvada998d9242016-08-26 16:21:17 -070031 thermal_prop[0] = kasprintf(GFP_KERNEL, "NAME=%s", tz->type);
32 thermal_prop[1] = kasprintf(GFP_KERNEL, "TEMP=%d", tz->temperature);
33 thermal_prop[2] = kasprintf(GFP_KERNEL, "TRIP=%d", trip);
34 thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", tz->notify_event);
35 thermal_prop[4] = NULL;
36 kobject_uevent_env(&tz->device.kobj, KOBJ_CHANGE, thermal_prop);
37 for (i = 0; i < 4; ++i)
38 kfree(thermal_prop[i]);
Durgadoss R1cc807a2012-09-18 11:05:03 +053039 mutex_unlock(&tz->lock);
40 return 0;
41}
42
Sachin Kamate15cb142012-09-27 16:57:54 +053043static struct thermal_governor thermal_gov_user_space = {
Durgadoss R1cc807a2012-09-18 11:05:03 +053044 .name = "user_space",
45 .throttle = notify_user_space,
Durgadoss R1cc807a2012-09-18 11:05:03 +053046};
Daniel Lezcano57c5b2e2019-06-12 22:13:25 +020047THERMAL_GOVERNOR_DECLARE(thermal_gov_user_space);