ti-thermal-common.c 6.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 * OMAP thermal driver interface
 *
 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
 * Contact:
 *   Eduardo Valentin <eduardo.valentin@ti.com>
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#include <linux/device.h>
#include <linux/err.h>
#include <linux/mutex.h>
#include <linux/gfp.h>
#include <linux/kernel.h>
#include <linux/workqueue.h>
#include <linux/thermal.h>
31
#include <linux/cpumask.h>
32
#include <linux/cpu_cooling.h>
33
#include <linux/of.h>
34

35 36
#include "ti-thermal.h"
#include "ti-bandgap.h"
37 38

/* common data structures */
39 40
struct ti_thermal_data {
	struct thermal_zone_device *ti_thermal;
41
	struct thermal_zone_device *pcb_tz;
42
	struct thermal_cooling_device *cool_dev;
43
	struct ti_bandgap *bgp;
44 45 46
	enum thermal_device_mode mode;
	struct work_struct thermal_wq;
	int sensor_id;
47
	bool our_zone;
48 49
};

50
static void ti_thermal_work(struct work_struct *work)
51
{
52 53
	struct ti_thermal_data *data = container_of(work,
					struct ti_thermal_data, thermal_wq);
54

55
	thermal_zone_device_update(data->ti_thermal, THERMAL_EVENT_UNSPECIFIED);
56

57 58
	dev_dbg(&data->ti_thermal->device, "updated thermal zone %s\n",
		data->ti_thermal->type);
59 60 61
}

/**
62
 * ti_thermal_hotspot_temperature - returns sensor extrapolated temperature
63 64 65 66
 * @t:	omap sensor temperature
 * @s:	omap sensor slope value
 * @c:	omap sensor const value
 */
67
static inline int ti_thermal_hotspot_temperature(int t, int s, int c)
68 69 70 71 72 73 74 75 76 77
{
	int delta = t * s / 1000 + c;

	if (delta < 0)
		delta = 0;

	return t + delta;
}

/* thermal zone ops */
P
Pavel Machek 已提交
78
/* Get temperature callback function for thermal zone */
79
static inline int __ti_thermal_get_temp(void *devdata, int *temp)
80
{
81
	struct thermal_zone_device *pcb_tz = NULL;
82
	struct ti_thermal_data *data = devdata;
83
	struct ti_bandgap *bgp;
84
	const struct ti_temp_sensor *s;
85
	int ret, tmp, slope, constant;
86
	int pcb_temp;
87

88 89 90
	if (!data)
		return 0;

91 92
	bgp = data->bgp;
	s = &bgp->conf->sensors[data->sensor_id];
93

94
	ret = ti_bandgap_read_temperature(bgp, data->sensor_id, &tmp);
95 96 97
	if (ret)
		return ret;

98
	/* Default constants */
99 100
	slope = thermal_zone_get_slope(data->ti_thermal);
	constant = thermal_zone_get_offset(data->ti_thermal);
101 102

	pcb_tz = data->pcb_tz;
103
	/* In case pcb zone is available, use the extrapolation rule with it */
104
	if (!IS_ERR(pcb_tz)) {
105 106 107 108 109 110 111 112
		ret = thermal_zone_get_temp(pcb_tz, &pcb_temp);
		if (!ret) {
			tmp -= pcb_temp; /* got a valid PCB temp */
			slope = s->slope_pcb;
			constant = s->constant_pcb;
		} else {
			dev_err(bgp->dev,
				"Failed to read PCB state. Using defaults\n");
113
			ret = 0;
114
		}
115
	}
116
	*temp = ti_thermal_hotspot_temperature(tmp, slope, constant);
117 118 119 120

	return ret;
}

121
static inline int ti_thermal_get_temp(struct thermal_zone_device *thermal,
122
				      int *temp)
123 124 125 126 127 128
{
	struct ti_thermal_data *data = thermal->devdata;

	return __ti_thermal_get_temp(data, temp);
}

129
static int __ti_thermal_get_trend(void *p, int trip, enum thermal_trend *trend)
130
{
131
	struct ti_thermal_data *data = p;
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
	struct ti_bandgap *bgp;
	int id, tr, ret = 0;

	bgp = data->bgp;
	id = data->sensor_id;

	ret = ti_bandgap_get_trend(bgp, id, &tr);
	if (ret)
		return ret;

	if (tr > 0)
		*trend = THERMAL_TREND_RAISING;
	else if (tr < 0)
		*trend = THERMAL_TREND_DROPPING;
	else
		*trend = THERMAL_TREND_STABLE;

	return 0;
}

152 153 154 155 156
static const struct thermal_zone_of_device_ops ti_of_thermal_ops = {
	.get_temp = __ti_thermal_get_temp,
	.get_trend = __ti_thermal_get_trend,
};

157 158
static struct ti_thermal_data
*ti_thermal_build_data(struct ti_bandgap *bgp, int id)
159
{
160
	struct ti_thermal_data *data;
161

162
	data = devm_kzalloc(bgp->dev, sizeof(*data), GFP_KERNEL);
163
	if (!data) {
164
		dev_err(bgp->dev, "kzalloc fail\n");
165
		return NULL;
166 167
	}
	data->sensor_id = id;
168
	data->bgp = bgp;
169
	data->mode = THERMAL_DEVICE_ENABLED;
170
	/* pcb_tz will be either valid or PTR_ERR() */
171
	data->pcb_tz = thermal_zone_get_zone_by_name("pcb");
172
	INIT_WORK(&data->thermal_wq, ti_thermal_work);
173

174 175 176
	return data;
}

177 178
int ti_thermal_expose_sensor(struct ti_bandgap *bgp, int id,
			     char *domain)
179
{
180
	struct ti_thermal_data *data;
181

182
	data = ti_bandgap_get_sensor_data(bgp, id);
183

184
	if (!data || IS_ERR(data))
185
		data = ti_thermal_build_data(bgp, id);
186 187 188 189

	if (!data)
		return -EINVAL;

190
	/* in case this is specified by DT */
191
	data->ti_thermal = devm_thermal_zone_of_sensor_register(bgp->dev, id,
192
					data, &ti_of_thermal_ops);
193
	if (IS_ERR(data->ti_thermal)) {
194 195
		dev_err(bgp->dev, "thermal zone device is NULL\n");
		return PTR_ERR(data->ti_thermal);
196
	}
197

198
	ti_bandgap_set_sensor_data(bgp, id, data);
199 200
	ti_bandgap_write_update_interval(bgp, data->sensor_id,
					data->ti_thermal->polling_delay);
201 202 203 204

	return 0;
}

205
int ti_thermal_remove_sensor(struct ti_bandgap *bgp, int id)
206
{
207
	struct ti_thermal_data *data;
208

209
	data = ti_bandgap_get_sensor_data(bgp, id);
210

211 212 213 214
	if (data && data->ti_thermal) {
		if (data->our_zone)
			thermal_zone_device_unregister(data->ti_thermal);
	}
215 216 217 218

	return 0;
}

219
int ti_thermal_report_sensor_temperature(struct ti_bandgap *bgp, int id)
220
{
221
	struct ti_thermal_data *data;
222

223
	data = ti_bandgap_get_sensor_data(bgp, id);
224 225 226 227 228 229

	schedule_work(&data->thermal_wq);

	return 0;
}

230
int ti_thermal_register_cpu_cooling(struct ti_bandgap *bgp, int id)
231
{
232
	struct ti_thermal_data *data;
233 234 235 236 237 238 239 240 241
	struct device_node *np = bgp->dev->of_node;

	/*
	 * We are assuming here that if one deploys the zone
	 * using DT, then it must be aware that the cooling device
	 * loading has to happen via cpufreq driver.
	 */
	if (of_find_property(np, "#thermal-sensor-cells", NULL))
		return 0;
242

243
	data = ti_bandgap_get_sensor_data(bgp, id);
244
	if (!data || IS_ERR(data))
245
		data = ti_thermal_build_data(bgp, id);
246 247 248

	if (!data)
		return -EINVAL;
249 250

	/* Register cooling device */
251
	data->cool_dev = cpufreq_cooling_register(cpu_present_mask);
252
	if (IS_ERR(data->cool_dev)) {
253 254 255 256 257 258 259 260
		int ret = PTR_ERR(data->cool_dev);

		if (ret != -EPROBE_DEFER)
			dev_err(bgp->dev,
				"Failed to register cpu cooling device %d\n",
				ret);

		return ret;
261
	}
262
	ti_bandgap_set_sensor_data(bgp, id, data);
263 264 265 266

	return 0;
}

267
int ti_thermal_unregister_cpu_cooling(struct ti_bandgap *bgp, int id)
268
{
269
	struct ti_thermal_data *data;
270

271
	data = ti_bandgap_get_sensor_data(bgp, id);
272

273
	if (data)
274
		cpufreq_cooling_unregister(data->cool_dev);
275 276 277

	return 0;
}