x86_pkg_temp_thermal.c 15.0 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
/*
 * x86_pkg_temp_thermal driver
 * Copyright (c) 2013, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope 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.
 *
 */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/module.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/param.h>
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/cpu.h>
#include <linux/smp.h>
#include <linux/slab.h>
#include <linux/pm.h>
#include <linux/thermal.h>
#include <linux/debugfs.h>
#include <asm/cpu_device_id.h>
#include <asm/mce.h>

/*
* Rate control delay: Idea is to introduce denounce effect
* This should be long enough to avoid reduce events, when
* threshold is set to a temperature, which is constantly
* violated, but at the short enough to take any action.
* The action can be remove threshold or change it to next
* interesting setting. Based on experiments, in around
* every 5 seconds under load will give us a significant
* temperature change.
*/
#define PKG_TEMP_THERMAL_NOTIFY_DELAY	5000
static int notify_delay_ms = PKG_TEMP_THERMAL_NOTIFY_DELAY;
module_param(notify_delay_ms, int, 0644);
MODULE_PARM_DESC(notify_delay_ms,
	"User space notification delay in milli seconds.");

/* Number of trip points in thermal zone. Currently it can't
* be more than 2. MSR can allow setting and getting notifications
* for only 2 thresholds. This define enforces this, if there
* is some wrong values returned by cpuid for number of thresholds.
*/
#define MAX_NUMBER_OF_TRIPS	2
57 58
/* Limit number of package temp zones */
#define MAX_PKG_TEMP_ZONE_IDS	256
59

60 61 62 63 64 65 66 67
struct pkg_device {
	struct list_head		list;
	u16				phys_proc_id;
	u16				cpu;
	u32				tj_max;
	u32				msr_pkg_therm_low;
	u32				msr_pkg_therm_high;
	struct thermal_zone_device	*tzone;
68
	struct cpumask			cpumask;
69 70
};

71
static struct thermal_zone_params pkg_temp_tz_params = {
72 73 74
	.no_hwmon	= true,
};

75 76
/* List maintaining number of package instances */
static LIST_HEAD(phy_dev_list);
77 78 79 80
/* Serializes interrupt notification, work and hotplug */
static DEFINE_SPINLOCK(pkg_temp_lock);
/* Protects zone operation in the work function against hotplug removal */
static DEFINE_MUTEX(thermal_zone_mutex);
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

/* Interrupt to work function schedule queue */
static DEFINE_PER_CPU(struct delayed_work, pkg_temp_thermal_threshold_work);

/* To track if the work is already scheduled on a package */
static u8 *pkg_work_scheduled;

static u16 max_phy_id;

/* Debug counters to show using debugfs */
static struct dentry *debugfs;
static unsigned int pkg_interrupt_cnt;
static unsigned int pkg_work_cnt;

static int pkg_temp_debugfs_init(void)
{
	struct dentry *d;

	debugfs = debugfs_create_dir("pkg_temp_thermal", NULL);
	if (!debugfs)
		return -ENOENT;

	d = debugfs_create_u32("pkg_thres_interrupt", S_IRUGO, debugfs,
				(u32 *)&pkg_interrupt_cnt);
	if (!d)
		goto err_out;

	d = debugfs_create_u32("pkg_thres_work", S_IRUGO, debugfs,
				(u32 *)&pkg_work_cnt);
	if (!d)
		goto err_out;

	return 0;

err_out:
	debugfs_remove_recursive(debugfs);
	return -ENOENT;
}

120 121 122 123 124 125 126 127
/*
 * Protection:
 *
 * - cpu hotplug: Read serialized by cpu hotplug lock
 *		  Write must hold pkg_temp_lock
 *
 * - Other callsites: Must hold pkg_temp_lock
 */
128
static struct pkg_device *pkg_temp_thermal_get_dev(unsigned int cpu)
129 130
{
	u16 phys_proc_id = topology_physical_package_id(cpu);
131
	struct pkg_device *pkgdev;
132

133 134
	list_for_each_entry(pkgdev, &phy_dev_list, list) {
		if (pkgdev->phys_proc_id == phys_proc_id)
135
			return pkgdev;
136
	}
137 138 139 140 141 142 143 144 145
	return NULL;
}

/*
* tj-max is is interesting because threshold is set relative to this
* temperature.
*/
static int get_tj_max(int cpu, u32 *tj_max)
{
146
	u32 eax, edx, val;
147 148 149 150
	int err;

	err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &eax, &edx);
	if (err)
151
		return err;
152

153 154 155 156
	val = (eax >> 16) & 0xff;
	*tj_max = val * 1000;

	return val ? 0 : -EINVAL;
157 158
}

159
static int sys_get_curr_temp(struct thermal_zone_device *tzd, int *temp)
160
{
161
	struct pkg_device *pkgdev = tzd->devdata;
162 163
	u32 eax, edx;

164
	rdmsr_on_cpu(pkgdev->cpu, MSR_IA32_PACKAGE_THERM_STATUS, &eax, &edx);
165
	if (eax & 0x80000000) {
166
		*temp = pkgdev->tj_max - ((eax >> 16) & 0x7f) * 1000;
167
		pr_debug("sys_get_curr_temp %d\n", *temp);
168 169 170 171 172 173
		return 0;
	}
	return -EINVAL;
}

static int sys_get_trip_temp(struct thermal_zone_device *tzd,
174
			     int trip, int *temp)
175
{
176
	struct pkg_device *pkgdev = tzd->devdata;
177
	unsigned long thres_reg_value;
178
	u32 mask, shift, eax, edx;
179 180 181 182 183 184 185 186 187 188 189 190 191
	int ret;

	if (trip >= MAX_NUMBER_OF_TRIPS)
		return -EINVAL;

	if (trip) {
		mask = THERM_MASK_THRESHOLD1;
		shift = THERM_SHIFT_THRESHOLD1;
	} else {
		mask = THERM_MASK_THRESHOLD0;
		shift = THERM_SHIFT_THRESHOLD0;
	}

192
	ret = rdmsr_on_cpu(pkgdev->cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT,
193
			   &eax, &edx);
194
	if (ret < 0)
195
		return ret;
196 197 198

	thres_reg_value = (eax & mask) >> shift;
	if (thres_reg_value)
199
		*temp = pkgdev->tj_max - thres_reg_value * 1000;
200 201
	else
		*temp = 0;
202
	pr_debug("sys_get_trip_temp %d\n", *temp);
203 204 205 206

	return 0;
}

207 208
static int
sys_set_trip_temp(struct thermal_zone_device *tzd, int trip, int temp)
209
{
210 211
	struct pkg_device *pkgdev = tzd->devdata;
	u32 l, h, mask, shift, intr;
212 213
	int ret;

214
	if (trip >= MAX_NUMBER_OF_TRIPS || temp >= pkgdev->tj_max)
215 216
		return -EINVAL;

217
	ret = rdmsr_on_cpu(pkgdev->cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT,
218
			   &l, &h);
219
	if (ret < 0)
220
		return ret;
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235

	if (trip) {
		mask = THERM_MASK_THRESHOLD1;
		shift = THERM_SHIFT_THRESHOLD1;
		intr = THERM_INT_THRESHOLD1_ENABLE;
	} else {
		mask = THERM_MASK_THRESHOLD0;
		shift = THERM_SHIFT_THRESHOLD0;
		intr = THERM_INT_THRESHOLD0_ENABLE;
	}
	l &= ~mask;
	/*
	* When users space sets a trip temperature == 0, which is indication
	* that, it is no longer interested in receiving notifications.
	*/
236
	if (!temp) {
237
		l &= ~intr;
238 239
	} else {
		l |= (pkgdev->tj_max - temp)/1000 << shift;
240 241 242
		l |= intr;
	}

243
	return wrmsr_on_cpu(pkgdev->cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, l, h);
244 245
}

246 247
static int sys_get_trip_type(struct thermal_zone_device *thermal, int trip,
			     enum thermal_trip_type *type)
248 249 250 251 252 253 254 255 256 257 258 259 260
{
	*type = THERMAL_TRIP_PASSIVE;
	return 0;
}

/* Thermal zone callback registry */
static struct thermal_zone_device_ops tzone_ops = {
	.get_temp = sys_get_curr_temp,
	.get_trip_temp = sys_get_trip_temp,
	.get_trip_type = sys_get_trip_type,
	.set_trip_temp = sys_set_trip_temp,
};

261
static bool pkg_thermal_rate_control(void)
262 263 264 265 266 267 268 269
{
	return true;
}

/* Enable threshold interrupt on local package/cpu */
static inline void enable_pkg_thres_interrupt(void)
{
	u8 thres_0, thres_1;
270
	u32 l, h;
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286

	rdmsr(MSR_IA32_PACKAGE_THERM_INTERRUPT, l, h);
	/* only enable/disable if it had valid threshold value */
	thres_0 = (l & THERM_MASK_THRESHOLD0) >> THERM_SHIFT_THRESHOLD0;
	thres_1 = (l & THERM_MASK_THRESHOLD1) >> THERM_SHIFT_THRESHOLD1;
	if (thres_0)
		l |= THERM_INT_THRESHOLD0_ENABLE;
	if (thres_1)
		l |= THERM_INT_THRESHOLD1_ENABLE;
	wrmsr(MSR_IA32_PACKAGE_THERM_INTERRUPT, l, h);
}

/* Disable threshold interrupt on local package/cpu */
static inline void disable_pkg_thres_interrupt(void)
{
	u32 l, h;
287

288
	rdmsr(MSR_IA32_PACKAGE_THERM_INTERRUPT, l, h);
289 290 291

	l &= ~(THERM_INT_THRESHOLD0_ENABLE | THERM_INT_THRESHOLD1_ENABLE);
	wrmsr(MSR_IA32_PACKAGE_THERM_INTERRUPT, l, h);
292 293 294 295
}

static void pkg_temp_thermal_threshold_work_fn(struct work_struct *work)
{
296 297 298
	struct thermal_zone_device *tzone = NULL;
	int phy_id, cpu = smp_processor_id();
	struct pkg_device *pkgdev;
299
	u64 msr_val, wr_val;
300

301 302
	mutex_lock(&thermal_zone_mutex);
	spin_lock_irq(&pkg_temp_lock);
303
	++pkg_work_cnt;
304 305 306 307 308

	pkgdev = pkg_temp_thermal_get_dev(cpu);
	if (!pkgdev) {
		spin_unlock_irq(&pkg_temp_lock);
		mutex_unlock(&thermal_zone_mutex);
309 310
		return;
	}
311

312 313 314
	pkg_work_scheduled[phy_id] = 0;

	rdmsrl(MSR_IA32_PACKAGE_THERM_STATUS, msr_val);
315 316 317
	wr_val = msr_val & ~(THERM_LOG_THRESHOLD0 | THERM_LOG_THRESHOLD1);
	if (wr_val != msr_val) {
		wrmsrl(MSR_IA32_PACKAGE_THERM_STATUS, wr_val);
318
		tzone = pkgdev->tzone;
319
	}
320 321

	enable_pkg_thres_interrupt();
322
	spin_unlock_irq(&pkg_temp_lock);
323

324 325 326 327 328 329 330 331
	/*
	 * If tzone is not NULL, then thermal_zone_mutex will prevent the
	 * concurrent removal in the cpu offline callback.
	 */
	if (tzone)
		thermal_zone_device_update(tzone, THERMAL_EVENT_UNSPECIFIED);

	mutex_unlock(&thermal_zone_mutex);
332 333
}

334
static int pkg_thermal_notify(u64 msr_val)
335 336 337
{
	int cpu = smp_processor_id();
	int phy_id = topology_physical_package_id(cpu);
338
	struct pkg_device *pkgdev;
339
	unsigned long flags;
340

341
	spin_lock_irqsave(&pkg_temp_lock, flags);
342 343 344
	++pkg_interrupt_cnt;

	disable_pkg_thres_interrupt();
345 346 347 348 349 350

	/* Work is per package, so scheduling it once is enough. */
	pkgdev = pkg_temp_thermal_get_dev(cpu);
	if (pkgdev && pkg_work_scheduled && !pkg_work_scheduled[phy_id]) {
		pkg_work_scheduled[phy_id] = 1;
		schedule_delayed_work_on(cpu,
351 352
				&per_cpu(pkg_temp_thermal_threshold_work, cpu),
				msecs_to_jiffies(notify_delay_ms));
353 354 355
	}

	spin_unlock_irqrestore(&pkg_temp_lock, flags);
356 357 358 359 360
	return 0;
}

static int pkg_temp_thermal_device_add(unsigned int cpu)
{
361 362 363
	u32 tj_max, eax, ebx, ecx, edx;
	struct pkg_device *pkgdev;
	int thres_count, err;
364
	unsigned long flags;
365
	u8 *temp;
366 367 368 369 370 371

	cpuid(6, &eax, &ebx, &ecx, &edx);
	thres_count = ebx & 0x07;
	if (!thres_count)
		return -ENODEV;

372 373 374
	if (topology_physical_package_id(cpu) > MAX_PKG_TEMP_ZONE_IDS)
		return -ENODEV;

375 376 377 378
	thres_count = clamp_val(thres_count, 0, MAX_NUMBER_OF_TRIPS);

	err = get_tj_max(cpu, &tj_max);
	if (err)
379
		return err;
380

381
	pkgdev = kzalloc(sizeof(*pkgdev), GFP_KERNEL);
382 383
	if (!pkgdev)
		return -ENOMEM;
384

385
	spin_lock_irqsave(&pkg_temp_lock, flags);
386 387
	if (topology_physical_package_id(cpu) > max_phy_id)
		max_phy_id = topology_physical_package_id(cpu);
388 389 390
	temp = krealloc(pkg_work_scheduled,
			(max_phy_id+1) * sizeof(u8), GFP_ATOMIC);
	if (!temp) {
391 392 393
		spin_unlock_irqrestore(&pkg_temp_lock, flags);
		kfree(pkgdev);
		return -ENOMEM;
394
	}
395
	pkg_work_scheduled = temp;
396
	pkg_work_scheduled[topology_physical_package_id(cpu)] = 0;
397
	spin_unlock_irqrestore(&pkg_temp_lock, flags);
398

399 400 401 402
	pkgdev->phys_proc_id = topology_physical_package_id(cpu);
	pkgdev->cpu = cpu;
	pkgdev->tj_max = tj_max;
	pkgdev->tzone = thermal_zone_device_register("x86_pkg_temp",
403
			thres_count,
404 405 406 407
			(thres_count == MAX_NUMBER_OF_TRIPS) ? 0x03 : 0x01,
			pkgdev, &tzone_ops, &pkg_temp_tz_params, 0, 0);
	if (IS_ERR(pkgdev->tzone)) {
		err = PTR_ERR(pkgdev->tzone);
408 409
		kfree(pkgdev);
		return err;
410 411 412
	}
	/* Store MSR value for package thermal interrupt, to restore at exit */
	rdmsr_on_cpu(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT,
413 414
		     &pkgdev->msr_pkg_therm_low,
		     &pkgdev->msr_pkg_therm_high);
415

416 417
	cpumask_set_cpu(cpu, &pkgdev->cpumask);
	spin_lock_irq(&pkg_temp_lock);
418
	list_add_tail(&pkgdev->list, &phy_dev_list);
419
	spin_unlock_irq(&pkg_temp_lock);
420 421 422
	return 0;
}

423
static void put_core_offline(unsigned int cpu)
424
{
425
	struct pkg_device *pkgdev = pkg_temp_thermal_get_dev(cpu);
426
	bool lastcpu;
427
	int target;
428

429
	if (!pkgdev)
430 431 432 433 434 435 436 437 438 439 440
		return;

	target = cpumask_any_but(&pkgdev->cpumask, cpu);
	cpumask_clear_cpu(cpu, &pkgdev->cpumask);
	lastcpu = target >= nr_cpu_ids;
	/*
	 * Remove the sysfs files, if this is the last cpu in the package
	 * before doing further cleanups.
	 */
	if (lastcpu) {
		struct thermal_zone_device *tzone = pkgdev->tzone;
441

442 443 444 445 446 447 448 449 450
		/*
		 * We must protect against a work function calling
		 * thermal_zone_update, after/while unregister. We null out
		 * the pointer under the zone mutex, so the worker function
		 * won't try to call.
		 */
		mutex_lock(&thermal_zone_mutex);
		pkgdev->tzone = NULL;
		mutex_unlock(&thermal_zone_mutex);
451

452 453 454 455 456 457 458 459 460 461 462
		thermal_zone_device_unregister(tzone);
	}

	/*
	 * If this is the last CPU in the package, restore the interrupt
	 * MSR and remove the package reference from the array.
	 */
	if (lastcpu) {
		/* Protect against work and interrupts */
		spin_lock_irq(&pkg_temp_lock);
		list_del(&pkgdev->list);
463
		/*
464 465 466
		 * After this point nothing touches the MSR anymore. We
		 * must drop the lock to make the cross cpu call. This goes
		 * away once we move that code to the hotplug state machine.
467
		 */
468
		spin_unlock_irq(&pkg_temp_lock);
469
		wrmsr_on_cpu(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT,
470 471 472
			     pkgdev->msr_pkg_therm_low,
			     pkgdev->msr_pkg_therm_high);
		kfree(pkgdev);
473
	}
474

475 476 477 478 479 480 481 482
	/*
	 * Note, this is broken when work was really scheduled on the
	 * outgoing cpu because this will leave the work_scheduled flag set
	 * and the thermal interrupts disabled. Will be fixed in the next
	 * step as there is no way to fix it in a sane way with the per cpu
	 * work nonsense.
	 */
	cancel_delayed_work_sync(&per_cpu(pkg_temp_thermal_threshold_work, cpu));
483 484 485 486
}

static int get_core_online(unsigned int cpu)
{
487
	struct pkg_device *pkgdev = pkg_temp_thermal_get_dev(cpu);
488 489
	struct cpuinfo_x86 *c = &cpu_data(cpu);

490 491 492
	/* Paranoia check */
	if (!cpu_has(c, X86_FEATURE_DTHERM) || !cpu_has(c, X86_FEATURE_PTS))
		return -ENODEV;
493

494
	INIT_DELAYED_WORK(&per_cpu(pkg_temp_thermal_threshold_work, cpu),
495
			  pkg_temp_thermal_threshold_work_fn);
496

497
	/* If the package exists, nothing to do */
498 499
	if (pkgdev) {
		cpumask_set_cpu(cpu, &pkgdev->cpumask);
500
		return 0;
501
	}
502
	return pkg_temp_thermal_device_add(cpu);
503 504 505 506 507 508 509
}

static int pkg_temp_thermal_cpu_callback(struct notifier_block *nfb,
				 unsigned long action, void *hcpu)
{
	unsigned int cpu = (unsigned long) hcpu;

510
	switch (action & ~CPU_TASKS_FROZEN) {
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
	case CPU_ONLINE:
	case CPU_DOWN_FAILED:
		get_core_online(cpu);
		break;
	case CPU_DOWN_PREPARE:
		put_core_offline(cpu);
		break;
	}
	return NOTIFY_OK;
}

static struct notifier_block pkg_temp_thermal_notifier __refdata = {
	.notifier_call = pkg_temp_thermal_cpu_callback,
};

static const struct x86_cpu_id __initconst pkg_temp_thermal_ids[] = {
527
	{ X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, X86_FEATURE_PTS },
528 529 530 531 532 533 534 535 536 537 538
	{}
};
MODULE_DEVICE_TABLE(x86cpu, pkg_temp_thermal_ids);

static int __init pkg_temp_thermal_init(void)
{
	int i;

	if (!x86_match_cpu(pkg_temp_thermal_ids))
		return -ENODEV;

539
	cpu_notifier_register_begin();
540 541 542
	for_each_online_cpu(i)
		if (get_core_online(i))
			goto err_ret;
543 544
	__register_hotcpu_notifier(&pkg_temp_thermal_notifier);
	cpu_notifier_register_done();
545

546 547 548
	platform_thermal_package_notify = pkg_thermal_notify;
	platform_thermal_package_rate_control = pkg_thermal_rate_control;

549 550
	 /* Don't care if it fails */
	pkg_temp_debugfs_init();
551 552 553 554 555
	return 0;

err_ret:
	for_each_online_cpu(i)
		put_core_offline(i);
556
	cpu_notifier_register_done();
557 558 559
	kfree(pkg_work_scheduled);
	return -ENODEV;
}
560
module_init(pkg_temp_thermal_init)
561 562 563 564 565

static void __exit pkg_temp_thermal_exit(void)
{
	int i;

566 567 568
	platform_thermal_package_notify = NULL;
	platform_thermal_package_rate_control = NULL;

569 570
	cpu_notifier_register_begin();
	__unregister_hotcpu_notifier(&pkg_temp_thermal_notifier);
571
	for_each_online_cpu(i)
572
		put_core_offline(i);
573
	cpu_notifier_register_done();
574 575 576 577 578 579 580 581 582 583

	kfree(pkg_work_scheduled);

	debugfs_remove_recursive(debugfs);
}
module_exit(pkg_temp_thermal_exit)

MODULE_DESCRIPTION("X86 PKG TEMP Thermal Driver");
MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
MODULE_LICENSE("GPL v2");