Linux Audio

Check our new training course

Loading...
v5.9
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * A hwmon driver for ACPI 4.0 power meters
   4 * Copyright (C) 2009 IBM
   5 *
   6 * Author: Darrick J. Wong <darrick.wong@oracle.com>
   7 */
   8
   9#include <linux/module.h>
  10#include <linux/hwmon.h>
  11#include <linux/hwmon-sysfs.h>
  12#include <linux/jiffies.h>
  13#include <linux/mutex.h>
  14#include <linux/dmi.h>
  15#include <linux/slab.h>
  16#include <linux/kdev_t.h>
  17#include <linux/sched.h>
  18#include <linux/time.h>
  19#include <linux/err.h>
  20#include <linux/acpi.h>
  21
  22#define ACPI_POWER_METER_NAME		"power_meter"
  23ACPI_MODULE_NAME(ACPI_POWER_METER_NAME);
  24#define ACPI_POWER_METER_DEVICE_NAME	"Power Meter"
  25#define ACPI_POWER_METER_CLASS		"pwr_meter_resource"
  26
  27#define NUM_SENSORS			17
  28
  29#define POWER_METER_CAN_MEASURE	(1 << 0)
  30#define POWER_METER_CAN_TRIP	(1 << 1)
  31#define POWER_METER_CAN_CAP	(1 << 2)
  32#define POWER_METER_CAN_NOTIFY	(1 << 3)
  33#define POWER_METER_IS_BATTERY	(1 << 8)
  34#define UNKNOWN_HYSTERESIS	0xFFFFFFFF
  35
  36#define METER_NOTIFY_CONFIG	0x80
  37#define METER_NOTIFY_TRIP	0x81
  38#define METER_NOTIFY_CAP	0x82
  39#define METER_NOTIFY_CAPPING	0x83
  40#define METER_NOTIFY_INTERVAL	0x84
  41
  42#define POWER_AVERAGE_NAME	"power1_average"
  43#define POWER_CAP_NAME		"power1_cap"
  44#define POWER_AVG_INTERVAL_NAME	"power1_average_interval"
  45#define POWER_ALARM_NAME	"power1_alarm"
  46
  47static int cap_in_hardware;
  48static bool force_cap_on;
  49
  50static int can_cap_in_hardware(void)
  51{
  52	return force_cap_on || cap_in_hardware;
  53}
  54
  55static const struct acpi_device_id power_meter_ids[] = {
  56	{"ACPI000D", 0},
  57	{"", 0},
  58};
  59MODULE_DEVICE_TABLE(acpi, power_meter_ids);
  60
  61struct acpi_power_meter_capabilities {
  62	u64		flags;
  63	u64		units;
  64	u64		type;
  65	u64		accuracy;
  66	u64		sampling_time;
  67	u64		min_avg_interval;
  68	u64		max_avg_interval;
  69	u64		hysteresis;
  70	u64		configurable_cap;
  71	u64		min_cap;
  72	u64		max_cap;
  73};
  74
  75struct acpi_power_meter_resource {
  76	struct acpi_device	*acpi_dev;
  77	acpi_bus_id		name;
  78	struct mutex		lock;
  79	struct device		*hwmon_dev;
  80	struct acpi_power_meter_capabilities	caps;
  81	acpi_string		model_number;
  82	acpi_string		serial_number;
  83	acpi_string		oem_info;
  84	u64		power;
  85	u64		cap;
  86	u64		avg_interval;
  87	int			sensors_valid;
  88	unsigned long		sensors_last_updated;
  89	struct sensor_device_attribute	sensors[NUM_SENSORS];
  90	int			num_sensors;
  91	s64			trip[2];
  92	int			num_domain_devices;
  93	struct acpi_device	**domain_devices;
  94	struct kobject		*holders_dir;
  95};
  96
  97struct sensor_template {
  98	char *label;
  99	ssize_t (*show)(struct device *dev,
 100			struct device_attribute *devattr,
 101			char *buf);
 102	ssize_t (*set)(struct device *dev,
 103		       struct device_attribute *devattr,
 104		       const char *buf, size_t count);
 105	int index;
 106};
 107
 108/* Averaging interval */
 109static int update_avg_interval(struct acpi_power_meter_resource *resource)
 110{
 111	unsigned long long data;
 112	acpi_status status;
 113
 114	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_GAI",
 115				       NULL, &data);
 116	if (ACPI_FAILURE(status)) {
 117		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _GAI"));
 
 118		return -ENODEV;
 119	}
 120
 121	resource->avg_interval = data;
 122	return 0;
 123}
 124
 125static ssize_t show_avg_interval(struct device *dev,
 126				 struct device_attribute *devattr,
 127				 char *buf)
 128{
 129	struct acpi_device *acpi_dev = to_acpi_device(dev);
 130	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 131
 132	mutex_lock(&resource->lock);
 133	update_avg_interval(resource);
 134	mutex_unlock(&resource->lock);
 135
 136	return sprintf(buf, "%llu\n", resource->avg_interval);
 137}
 138
 139static ssize_t set_avg_interval(struct device *dev,
 140				struct device_attribute *devattr,
 141				const char *buf, size_t count)
 142{
 143	struct acpi_device *acpi_dev = to_acpi_device(dev);
 144	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 145	union acpi_object arg0 = { ACPI_TYPE_INTEGER };
 146	struct acpi_object_list args = { 1, &arg0 };
 147	int res;
 148	unsigned long temp;
 149	unsigned long long data;
 150	acpi_status status;
 151
 152	res = kstrtoul(buf, 10, &temp);
 153	if (res)
 154		return res;
 155
 156	if (temp > resource->caps.max_avg_interval ||
 157	    temp < resource->caps.min_avg_interval)
 158		return -EINVAL;
 159	arg0.integer.value = temp;
 160
 161	mutex_lock(&resource->lock);
 162	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PAI",
 163				       &args, &data);
 164	if (!ACPI_FAILURE(status))
 165		resource->avg_interval = temp;
 166	mutex_unlock(&resource->lock);
 167
 168	if (ACPI_FAILURE(status)) {
 169		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PAI"));
 
 170		return -EINVAL;
 171	}
 172
 173	/* _PAI returns 0 on success, nonzero otherwise */
 174	if (data)
 175		return -EINVAL;
 176
 177	return count;
 178}
 179
 180/* Cap functions */
 181static int update_cap(struct acpi_power_meter_resource *resource)
 182{
 183	unsigned long long data;
 184	acpi_status status;
 185
 186	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_GHL",
 187				       NULL, &data);
 188	if (ACPI_FAILURE(status)) {
 189		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _GHL"));
 
 190		return -ENODEV;
 191	}
 192
 193	resource->cap = data;
 194	return 0;
 195}
 196
 197static ssize_t show_cap(struct device *dev,
 198			struct device_attribute *devattr,
 199			char *buf)
 200{
 201	struct acpi_device *acpi_dev = to_acpi_device(dev);
 202	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 203
 204	mutex_lock(&resource->lock);
 205	update_cap(resource);
 206	mutex_unlock(&resource->lock);
 207
 208	return sprintf(buf, "%llu\n", resource->cap * 1000);
 209}
 210
 211static ssize_t set_cap(struct device *dev, struct device_attribute *devattr,
 212		       const char *buf, size_t count)
 213{
 214	struct acpi_device *acpi_dev = to_acpi_device(dev);
 215	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 216	union acpi_object arg0 = { ACPI_TYPE_INTEGER };
 217	struct acpi_object_list args = { 1, &arg0 };
 218	int res;
 219	unsigned long temp;
 220	unsigned long long data;
 221	acpi_status status;
 222
 223	res = kstrtoul(buf, 10, &temp);
 224	if (res)
 225		return res;
 226
 227	temp = DIV_ROUND_CLOSEST(temp, 1000);
 228	if (temp > resource->caps.max_cap || temp < resource->caps.min_cap)
 229		return -EINVAL;
 230	arg0.integer.value = temp;
 231
 232	mutex_lock(&resource->lock);
 233	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_SHL",
 234				       &args, &data);
 235	if (!ACPI_FAILURE(status))
 236		resource->cap = temp;
 237	mutex_unlock(&resource->lock);
 238
 239	if (ACPI_FAILURE(status)) {
 240		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SHL"));
 
 241		return -EINVAL;
 242	}
 243
 244	/* _SHL returns 0 on success, nonzero otherwise */
 245	if (data)
 246		return -EINVAL;
 247
 248	return count;
 249}
 250
 251/* Power meter trip points */
 252static int set_acpi_trip(struct acpi_power_meter_resource *resource)
 253{
 254	union acpi_object arg_objs[] = {
 255		{ACPI_TYPE_INTEGER},
 256		{ACPI_TYPE_INTEGER}
 257	};
 258	struct acpi_object_list args = { 2, arg_objs };
 259	unsigned long long data;
 260	acpi_status status;
 261
 262	/* Both trip levels must be set */
 263	if (resource->trip[0] < 0 || resource->trip[1] < 0)
 264		return 0;
 265
 266	/* This driver stores min, max; ACPI wants max, min. */
 267	arg_objs[0].integer.value = resource->trip[1];
 268	arg_objs[1].integer.value = resource->trip[0];
 269
 270	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PTP",
 271				       &args, &data);
 272	if (ACPI_FAILURE(status)) {
 273		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PTP"));
 
 274		return -EINVAL;
 275	}
 276
 277	/* _PTP returns 0 on success, nonzero otherwise */
 278	if (data)
 279		return -EINVAL;
 280
 281	return 0;
 282}
 283
 284static ssize_t set_trip(struct device *dev, struct device_attribute *devattr,
 285			const char *buf, size_t count)
 286{
 287	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
 288	struct acpi_device *acpi_dev = to_acpi_device(dev);
 289	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 290	int res;
 291	unsigned long temp;
 292
 293	res = kstrtoul(buf, 10, &temp);
 294	if (res)
 295		return res;
 296
 297	temp = DIV_ROUND_CLOSEST(temp, 1000);
 298
 299	mutex_lock(&resource->lock);
 300	resource->trip[attr->index - 7] = temp;
 301	res = set_acpi_trip(resource);
 302	mutex_unlock(&resource->lock);
 303
 304	if (res)
 305		return res;
 306
 307	return count;
 308}
 309
 310/* Power meter */
 311static int update_meter(struct acpi_power_meter_resource *resource)
 312{
 313	unsigned long long data;
 314	acpi_status status;
 315	unsigned long local_jiffies = jiffies;
 316
 317	if (time_before(local_jiffies, resource->sensors_last_updated +
 318			msecs_to_jiffies(resource->caps.sampling_time)) &&
 319			resource->sensors_valid)
 320		return 0;
 321
 322	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PMM",
 323				       NULL, &data);
 324	if (ACPI_FAILURE(status)) {
 325		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PMM"));
 
 326		return -ENODEV;
 327	}
 328
 329	resource->power = data;
 330	resource->sensors_valid = 1;
 331	resource->sensors_last_updated = jiffies;
 332	return 0;
 333}
 334
 335static ssize_t show_power(struct device *dev,
 336			  struct device_attribute *devattr,
 337			  char *buf)
 338{
 339	struct acpi_device *acpi_dev = to_acpi_device(dev);
 340	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 341
 342	mutex_lock(&resource->lock);
 343	update_meter(resource);
 344	mutex_unlock(&resource->lock);
 345
 346	return sprintf(buf, "%llu\n", resource->power * 1000);
 347}
 348
 349/* Miscellaneous */
 350static ssize_t show_str(struct device *dev,
 351			struct device_attribute *devattr,
 352			char *buf)
 353{
 354	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
 355	struct acpi_device *acpi_dev = to_acpi_device(dev);
 356	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 357	acpi_string val;
 358	int ret;
 359
 360	mutex_lock(&resource->lock);
 361	switch (attr->index) {
 362	case 0:
 363		val = resource->model_number;
 364		break;
 365	case 1:
 366		val = resource->serial_number;
 367		break;
 368	case 2:
 369		val = resource->oem_info;
 370		break;
 371	default:
 372		WARN(1, "Implementation error: unexpected attribute index %d\n",
 373		     attr->index);
 374		val = "";
 375		break;
 376	}
 377	ret = sprintf(buf, "%s\n", val);
 378	mutex_unlock(&resource->lock);
 379	return ret;
 380}
 381
 382static ssize_t show_val(struct device *dev,
 383			struct device_attribute *devattr,
 384			char *buf)
 385{
 386	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
 387	struct acpi_device *acpi_dev = to_acpi_device(dev);
 388	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 389	u64 val = 0;
 390
 391	switch (attr->index) {
 392	case 0:
 393		val = resource->caps.min_avg_interval;
 394		break;
 395	case 1:
 396		val = resource->caps.max_avg_interval;
 397		break;
 398	case 2:
 399		val = resource->caps.min_cap * 1000;
 400		break;
 401	case 3:
 402		val = resource->caps.max_cap * 1000;
 403		break;
 404	case 4:
 405		if (resource->caps.hysteresis == UNKNOWN_HYSTERESIS)
 406			return sprintf(buf, "unknown\n");
 407
 408		val = resource->caps.hysteresis * 1000;
 409		break;
 410	case 5:
 411		if (resource->caps.flags & POWER_METER_IS_BATTERY)
 412			val = 1;
 413		else
 414			val = 0;
 415		break;
 416	case 6:
 417		if (resource->power > resource->cap)
 418			val = 1;
 419		else
 420			val = 0;
 421		break;
 422	case 7:
 423	case 8:
 424		if (resource->trip[attr->index - 7] < 0)
 425			return sprintf(buf, "unknown\n");
 426
 427		val = resource->trip[attr->index - 7] * 1000;
 428		break;
 429	default:
 430		WARN(1, "Implementation error: unexpected attribute index %d\n",
 431		     attr->index);
 432		break;
 433	}
 434
 435	return sprintf(buf, "%llu\n", val);
 436}
 437
 438static ssize_t show_accuracy(struct device *dev,
 439			     struct device_attribute *devattr,
 440			     char *buf)
 441{
 442	struct acpi_device *acpi_dev = to_acpi_device(dev);
 443	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 444	unsigned int acc = resource->caps.accuracy;
 445
 446	return sprintf(buf, "%u.%u%%\n", acc / 1000, acc % 1000);
 447}
 448
 449static ssize_t show_name(struct device *dev,
 450			 struct device_attribute *devattr,
 451			 char *buf)
 452{
 453	return sprintf(buf, "%s\n", ACPI_POWER_METER_NAME);
 454}
 455
 456#define RO_SENSOR_TEMPLATE(_label, _show, _index)	\
 457	{						\
 458		.label = _label,			\
 459		.show  = _show,				\
 460		.index = _index,			\
 461	}
 462
 463#define RW_SENSOR_TEMPLATE(_label, _show, _set, _index)	\
 464	{						\
 465		.label = _label,			\
 466		.show  = _show,				\
 467		.set   = _set,				\
 468		.index = _index,			\
 469	}
 470
 471/* Sensor descriptions.  If you add a sensor, update NUM_SENSORS above! */
 472static struct sensor_template meter_attrs[] = {
 473	RO_SENSOR_TEMPLATE(POWER_AVERAGE_NAME, show_power, 0),
 474	RO_SENSOR_TEMPLATE("power1_accuracy", show_accuracy, 0),
 475	RO_SENSOR_TEMPLATE("power1_average_interval_min", show_val, 0),
 476	RO_SENSOR_TEMPLATE("power1_average_interval_max", show_val, 1),
 477	RO_SENSOR_TEMPLATE("power1_is_battery", show_val, 5),
 478	RW_SENSOR_TEMPLATE(POWER_AVG_INTERVAL_NAME, show_avg_interval,
 479		set_avg_interval, 0),
 480	{},
 481};
 482
 483static struct sensor_template misc_cap_attrs[] = {
 484	RO_SENSOR_TEMPLATE("power1_cap_min", show_val, 2),
 485	RO_SENSOR_TEMPLATE("power1_cap_max", show_val, 3),
 486	RO_SENSOR_TEMPLATE("power1_cap_hyst", show_val, 4),
 487	RO_SENSOR_TEMPLATE(POWER_ALARM_NAME, show_val, 6),
 488	{},
 489};
 490
 491static struct sensor_template ro_cap_attrs[] = {
 492	RO_SENSOR_TEMPLATE(POWER_CAP_NAME, show_cap, 0),
 493	{},
 494};
 495
 496static struct sensor_template rw_cap_attrs[] = {
 497	RW_SENSOR_TEMPLATE(POWER_CAP_NAME, show_cap, set_cap, 0),
 498	{},
 499};
 500
 501static struct sensor_template trip_attrs[] = {
 502	RW_SENSOR_TEMPLATE("power1_average_min", show_val, set_trip, 7),
 503	RW_SENSOR_TEMPLATE("power1_average_max", show_val, set_trip, 8),
 504	{},
 505};
 506
 507static struct sensor_template misc_attrs[] = {
 508	RO_SENSOR_TEMPLATE("name", show_name, 0),
 509	RO_SENSOR_TEMPLATE("power1_model_number", show_str, 0),
 510	RO_SENSOR_TEMPLATE("power1_oem_info", show_str, 2),
 511	RO_SENSOR_TEMPLATE("power1_serial_number", show_str, 1),
 512	{},
 513};
 514
 515#undef RO_SENSOR_TEMPLATE
 516#undef RW_SENSOR_TEMPLATE
 517
 518/* Read power domain data */
 519static void remove_domain_devices(struct acpi_power_meter_resource *resource)
 520{
 521	int i;
 522
 523	if (!resource->num_domain_devices)
 524		return;
 525
 526	for (i = 0; i < resource->num_domain_devices; i++) {
 527		struct acpi_device *obj = resource->domain_devices[i];
 
 528		if (!obj)
 529			continue;
 530
 531		sysfs_remove_link(resource->holders_dir,
 532				  kobject_name(&obj->dev.kobj));
 533		put_device(&obj->dev);
 534	}
 535
 536	kfree(resource->domain_devices);
 537	kobject_put(resource->holders_dir);
 538	resource->num_domain_devices = 0;
 539}
 540
 541static int read_domain_devices(struct acpi_power_meter_resource *resource)
 542{
 543	int res = 0;
 544	int i;
 545	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
 546	union acpi_object *pss;
 547	acpi_status status;
 548
 549	status = acpi_evaluate_object(resource->acpi_dev->handle, "_PMD", NULL,
 550				      &buffer);
 551	if (ACPI_FAILURE(status)) {
 552		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PMD"));
 
 553		return -ENODEV;
 554	}
 555
 556	pss = buffer.pointer;
 557	if (!pss ||
 558	    pss->type != ACPI_TYPE_PACKAGE) {
 559		dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
 560			"Invalid _PMD data\n");
 561		res = -EFAULT;
 562		goto end;
 563	}
 564
 565	if (!pss->package.count)
 566		goto end;
 567
 568	resource->domain_devices = kcalloc(pss->package.count,
 569					   sizeof(struct acpi_device *),
 570					   GFP_KERNEL);
 571	if (!resource->domain_devices) {
 572		res = -ENOMEM;
 573		goto end;
 574	}
 575
 576	resource->holders_dir = kobject_create_and_add("measures",
 577					&resource->acpi_dev->dev.kobj);
 578	if (!resource->holders_dir) {
 579		res = -ENOMEM;
 580		goto exit_free;
 581	}
 582
 583	resource->num_domain_devices = pss->package.count;
 584
 585	for (i = 0; i < pss->package.count; i++) {
 586		struct acpi_device *obj;
 587		union acpi_object *element = &(pss->package.elements[i]);
 588
 589		/* Refuse non-references */
 590		if (element->type != ACPI_TYPE_LOCAL_REFERENCE)
 591			continue;
 592
 593		/* Create a symlink to domain objects */
 594		resource->domain_devices[i] = NULL;
 595		if (acpi_bus_get_device(element->reference.handle,
 596					&resource->domain_devices[i]))
 597			continue;
 598
 599		obj = resource->domain_devices[i];
 600		get_device(&obj->dev);
 601
 602		res = sysfs_create_link(resource->holders_dir, &obj->dev.kobj,
 603				      kobject_name(&obj->dev.kobj));
 604		if (res) {
 605			put_device(&obj->dev);
 606			resource->domain_devices[i] = NULL;
 607		}
 608	}
 609
 610	res = 0;
 611	goto end;
 612
 613exit_free:
 614	kfree(resource->domain_devices);
 615end:
 616	kfree(buffer.pointer);
 617	return res;
 618}
 619
 620/* Registration and deregistration */
 621static int register_attrs(struct acpi_power_meter_resource *resource,
 622			  struct sensor_template *attrs)
 623{
 624	struct device *dev = &resource->acpi_dev->dev;
 625	struct sensor_device_attribute *sensors =
 626		&resource->sensors[resource->num_sensors];
 627	int res = 0;
 628
 629	while (attrs->label) {
 630		sensors->dev_attr.attr.name = attrs->label;
 631		sensors->dev_attr.attr.mode = 0444;
 632		sensors->dev_attr.show = attrs->show;
 633		sensors->index = attrs->index;
 634
 635		if (attrs->set) {
 636			sensors->dev_attr.attr.mode |= 0200;
 637			sensors->dev_attr.store = attrs->set;
 638		}
 639
 640		sysfs_attr_init(&sensors->dev_attr.attr);
 641		res = device_create_file(dev, &sensors->dev_attr);
 642		if (res) {
 643			sensors->dev_attr.attr.name = NULL;
 644			goto error;
 645		}
 646		sensors++;
 647		resource->num_sensors++;
 648		attrs++;
 649	}
 650
 651error:
 652	return res;
 653}
 654
 655static void remove_attrs(struct acpi_power_meter_resource *resource)
 656{
 657	int i;
 658
 659	for (i = 0; i < resource->num_sensors; i++) {
 660		if (!resource->sensors[i].dev_attr.attr.name)
 661			continue;
 662		device_remove_file(&resource->acpi_dev->dev,
 663				   &resource->sensors[i].dev_attr);
 664	}
 665
 666	remove_domain_devices(resource);
 667
 668	resource->num_sensors = 0;
 669}
 670
 671static int setup_attrs(struct acpi_power_meter_resource *resource)
 672{
 673	int res = 0;
 674
 675	res = read_domain_devices(resource);
 676	if (res)
 677		return res;
 678
 679	if (resource->caps.flags & POWER_METER_CAN_MEASURE) {
 680		res = register_attrs(resource, meter_attrs);
 681		if (res)
 682			goto error;
 683	}
 684
 685	if (resource->caps.flags & POWER_METER_CAN_CAP) {
 686		if (!can_cap_in_hardware()) {
 687			dev_warn(&resource->acpi_dev->dev,
 688				 "Ignoring unsafe software power cap!\n");
 689			goto skip_unsafe_cap;
 690		}
 691
 692		if (resource->caps.configurable_cap)
 693			res = register_attrs(resource, rw_cap_attrs);
 694		else
 695			res = register_attrs(resource, ro_cap_attrs);
 696
 697		if (res)
 698			goto error;
 699
 700		res = register_attrs(resource, misc_cap_attrs);
 701		if (res)
 702			goto error;
 703	}
 704
 705skip_unsafe_cap:
 706	if (resource->caps.flags & POWER_METER_CAN_TRIP) {
 707		res = register_attrs(resource, trip_attrs);
 708		if (res)
 709			goto error;
 710	}
 711
 712	res = register_attrs(resource, misc_attrs);
 713	if (res)
 714		goto error;
 715
 716	return res;
 717error:
 718	remove_attrs(resource);
 719	return res;
 720}
 721
 722static void free_capabilities(struct acpi_power_meter_resource *resource)
 723{
 724	acpi_string *str;
 725	int i;
 726
 727	str = &resource->model_number;
 728	for (i = 0; i < 3; i++, str++)
 729		kfree(*str);
 
 
 730}
 731
 732static int read_capabilities(struct acpi_power_meter_resource *resource)
 733{
 734	int res = 0;
 735	int i;
 736	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
 737	struct acpi_buffer state = { 0, NULL };
 738	struct acpi_buffer format = { sizeof("NNNNNNNNNNN"), "NNNNNNNNNNN" };
 739	union acpi_object *pss;
 740	acpi_string *str;
 741	acpi_status status;
 742
 743	status = acpi_evaluate_object(resource->acpi_dev->handle, "_PMC", NULL,
 744				      &buffer);
 745	if (ACPI_FAILURE(status)) {
 746		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PMC"));
 
 747		return -ENODEV;
 748	}
 749
 750	pss = buffer.pointer;
 751	if (!pss ||
 752	    pss->type != ACPI_TYPE_PACKAGE ||
 753	    pss->package.count != 14) {
 754		dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
 755			"Invalid _PMC data\n");
 756		res = -EFAULT;
 757		goto end;
 758	}
 759
 760	/* Grab all the integer data at once */
 761	state.length = sizeof(struct acpi_power_meter_capabilities);
 762	state.pointer = &resource->caps;
 763
 764	status = acpi_extract_package(pss, &format, &state);
 765	if (ACPI_FAILURE(status)) {
 766		ACPI_EXCEPTION((AE_INFO, status, "Invalid data"));
 
 
 767		res = -EFAULT;
 768		goto end;
 769	}
 770
 771	if (resource->caps.units) {
 772		dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
 773			"Unknown units %llu.\n",
 774			resource->caps.units);
 775		res = -EINVAL;
 776		goto end;
 777	}
 778
 779	/* Grab the string data */
 780	str = &resource->model_number;
 781
 782	for (i = 11; i < 14; i++) {
 783		union acpi_object *element = &(pss->package.elements[i]);
 784
 785		if (element->type != ACPI_TYPE_STRING) {
 786			res = -EINVAL;
 787			goto error;
 788		}
 789
 790		*str = kcalloc(element->string.length + 1, sizeof(u8),
 791			       GFP_KERNEL);
 792		if (!*str) {
 793			res = -ENOMEM;
 794			goto error;
 795		}
 796
 797		strncpy(*str, element->string.pointer, element->string.length);
 798		str++;
 799	}
 800
 801	dev_info(&resource->acpi_dev->dev, "Found ACPI power meter.\n");
 802	goto end;
 803error:
 804	str = &resource->model_number;
 805	for (i = 0; i < 3; i++, str++)
 806		kfree(*str);
 807end:
 808	kfree(buffer.pointer);
 809	return res;
 810}
 811
 812/* Handle ACPI event notifications */
 813static void acpi_power_meter_notify(struct acpi_device *device, u32 event)
 814{
 815	struct acpi_power_meter_resource *resource;
 816	int res;
 817
 818	if (!device || !acpi_driver_data(device))
 819		return;
 820
 821	resource = acpi_driver_data(device);
 822
 823	switch (event) {
 824	case METER_NOTIFY_CONFIG:
 825		mutex_lock(&resource->lock);
 826		free_capabilities(resource);
 827		res = read_capabilities(resource);
 828		mutex_unlock(&resource->lock);
 829		if (res)
 830			break;
 831
 832		remove_attrs(resource);
 833		setup_attrs(resource);
 834		break;
 835	case METER_NOTIFY_TRIP:
 836		sysfs_notify(&device->dev.kobj, NULL, POWER_AVERAGE_NAME);
 837		break;
 838	case METER_NOTIFY_CAP:
 839		sysfs_notify(&device->dev.kobj, NULL, POWER_CAP_NAME);
 840		break;
 841	case METER_NOTIFY_INTERVAL:
 842		sysfs_notify(&device->dev.kobj, NULL, POWER_AVG_INTERVAL_NAME);
 843		break;
 844	case METER_NOTIFY_CAPPING:
 845		sysfs_notify(&device->dev.kobj, NULL, POWER_ALARM_NAME);
 846		dev_info(&device->dev, "Capping in progress.\n");
 847		break;
 848	default:
 849		WARN(1, "Unexpected event %d\n", event);
 850		break;
 851	}
 852
 853	acpi_bus_generate_netlink_event(ACPI_POWER_METER_CLASS,
 854					dev_name(&device->dev), event, 0);
 855}
 856
 857static int acpi_power_meter_add(struct acpi_device *device)
 858{
 859	int res;
 860	struct acpi_power_meter_resource *resource;
 861
 862	if (!device)
 863		return -EINVAL;
 864
 865	resource = kzalloc(sizeof(struct acpi_power_meter_resource),
 866			   GFP_KERNEL);
 867	if (!resource)
 868		return -ENOMEM;
 869
 870	resource->sensors_valid = 0;
 871	resource->acpi_dev = device;
 872	mutex_init(&resource->lock);
 873	strcpy(acpi_device_name(device), ACPI_POWER_METER_DEVICE_NAME);
 874	strcpy(acpi_device_class(device), ACPI_POWER_METER_CLASS);
 875	device->driver_data = resource;
 876
 877	free_capabilities(resource);
 878	res = read_capabilities(resource);
 879	if (res)
 880		goto exit_free;
 881
 882	resource->trip[0] = resource->trip[1] = -1;
 
 883
 884	res = setup_attrs(resource);
 885	if (res)
 886		goto exit_free_capability;
 887
 888	resource->hwmon_dev = hwmon_device_register(&device->dev);
 889	if (IS_ERR(resource->hwmon_dev)) {
 890		res = PTR_ERR(resource->hwmon_dev);
 891		goto exit_remove;
 892	}
 893
 894	res = 0;
 895	goto exit;
 896
 897exit_remove:
 898	remove_attrs(resource);
 899exit_free_capability:
 900	free_capabilities(resource);
 901exit_free:
 902	kfree(resource);
 903exit:
 904	return res;
 905}
 906
 907static int acpi_power_meter_remove(struct acpi_device *device)
 908{
 909	struct acpi_power_meter_resource *resource;
 910
 911	if (!device || !acpi_driver_data(device))
 912		return -EINVAL;
 913
 914	resource = acpi_driver_data(device);
 915	hwmon_device_unregister(resource->hwmon_dev);
 916
 917	remove_attrs(resource);
 918	free_capabilities(resource);
 919
 920	kfree(resource);
 921	return 0;
 922}
 923
 924#ifdef CONFIG_PM_SLEEP
 925
 926static int acpi_power_meter_resume(struct device *dev)
 927{
 928	struct acpi_power_meter_resource *resource;
 929
 930	if (!dev)
 931		return -EINVAL;
 932
 933	resource = acpi_driver_data(to_acpi_device(dev));
 934	if (!resource)
 935		return -EINVAL;
 936
 937	free_capabilities(resource);
 938	read_capabilities(resource);
 939
 940	return 0;
 941}
 942
 943#endif /* CONFIG_PM_SLEEP */
 944
 945static SIMPLE_DEV_PM_OPS(acpi_power_meter_pm, NULL, acpi_power_meter_resume);
 946
 947static struct acpi_driver acpi_power_meter_driver = {
 948	.name = "power_meter",
 949	.class = ACPI_POWER_METER_CLASS,
 950	.ids = power_meter_ids,
 951	.ops = {
 952		.add = acpi_power_meter_add,
 953		.remove = acpi_power_meter_remove,
 954		.notify = acpi_power_meter_notify,
 955		},
 956	.drv.pm = &acpi_power_meter_pm,
 957};
 958
 959/* Module init/exit routines */
 960static int __init enable_cap_knobs(const struct dmi_system_id *d)
 961{
 962	cap_in_hardware = 1;
 963	return 0;
 964}
 965
 966static const struct dmi_system_id pm_dmi_table[] __initconst = {
 967	{
 968		enable_cap_knobs, "IBM Active Energy Manager",
 969		{
 970			DMI_MATCH(DMI_SYS_VENDOR, "IBM")
 971		},
 972	},
 973	{}
 974};
 975
 976static int __init acpi_power_meter_init(void)
 977{
 978	int result;
 979
 980	if (acpi_disabled)
 981		return -ENODEV;
 982
 983	dmi_check_system(pm_dmi_table);
 984
 985	result = acpi_bus_register_driver(&acpi_power_meter_driver);
 986	if (result < 0)
 987		return result;
 988
 989	return 0;
 990}
 991
 992static void __exit acpi_power_meter_exit(void)
 993{
 994	acpi_bus_unregister_driver(&acpi_power_meter_driver);
 995}
 996
 997MODULE_AUTHOR("Darrick J. Wong <darrick.wong@oracle.com>");
 998MODULE_DESCRIPTION("ACPI 4.0 power meter driver");
 999MODULE_LICENSE("GPL");
1000
1001module_param(force_cap_on, bool, 0644);
1002MODULE_PARM_DESC(force_cap_on, "Enable power cap even it is unsafe to do so.");
1003
1004module_init(acpi_power_meter_init);
1005module_exit(acpi_power_meter_exit);
v6.2
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * A hwmon driver for ACPI 4.0 power meters
   4 * Copyright (C) 2009 IBM
   5 *
   6 * Author: Darrick J. Wong <darrick.wong@oracle.com>
   7 */
   8
   9#include <linux/module.h>
  10#include <linux/hwmon.h>
  11#include <linux/hwmon-sysfs.h>
  12#include <linux/jiffies.h>
  13#include <linux/mutex.h>
  14#include <linux/dmi.h>
  15#include <linux/slab.h>
  16#include <linux/kdev_t.h>
  17#include <linux/sched.h>
  18#include <linux/time.h>
  19#include <linux/err.h>
  20#include <linux/acpi.h>
  21
  22#define ACPI_POWER_METER_NAME		"power_meter"
 
  23#define ACPI_POWER_METER_DEVICE_NAME	"Power Meter"
  24#define ACPI_POWER_METER_CLASS		"pwr_meter_resource"
  25
  26#define NUM_SENSORS			17
  27
  28#define POWER_METER_CAN_MEASURE	(1 << 0)
  29#define POWER_METER_CAN_TRIP	(1 << 1)
  30#define POWER_METER_CAN_CAP	(1 << 2)
  31#define POWER_METER_CAN_NOTIFY	(1 << 3)
  32#define POWER_METER_IS_BATTERY	(1 << 8)
  33#define UNKNOWN_HYSTERESIS	0xFFFFFFFF
  34
  35#define METER_NOTIFY_CONFIG	0x80
  36#define METER_NOTIFY_TRIP	0x81
  37#define METER_NOTIFY_CAP	0x82
  38#define METER_NOTIFY_CAPPING	0x83
  39#define METER_NOTIFY_INTERVAL	0x84
  40
  41#define POWER_AVERAGE_NAME	"power1_average"
  42#define POWER_CAP_NAME		"power1_cap"
  43#define POWER_AVG_INTERVAL_NAME	"power1_average_interval"
  44#define POWER_ALARM_NAME	"power1_alarm"
  45
  46static int cap_in_hardware;
  47static bool force_cap_on;
  48
  49static int can_cap_in_hardware(void)
  50{
  51	return force_cap_on || cap_in_hardware;
  52}
  53
  54static const struct acpi_device_id power_meter_ids[] = {
  55	{"ACPI000D", 0},
  56	{"", 0},
  57};
  58MODULE_DEVICE_TABLE(acpi, power_meter_ids);
  59
  60struct acpi_power_meter_capabilities {
  61	u64		flags;
  62	u64		units;
  63	u64		type;
  64	u64		accuracy;
  65	u64		sampling_time;
  66	u64		min_avg_interval;
  67	u64		max_avg_interval;
  68	u64		hysteresis;
  69	u64		configurable_cap;
  70	u64		min_cap;
  71	u64		max_cap;
  72};
  73
  74struct acpi_power_meter_resource {
  75	struct acpi_device	*acpi_dev;
  76	acpi_bus_id		name;
  77	struct mutex		lock;
  78	struct device		*hwmon_dev;
  79	struct acpi_power_meter_capabilities	caps;
  80	acpi_string		model_number;
  81	acpi_string		serial_number;
  82	acpi_string		oem_info;
  83	u64		power;
  84	u64		cap;
  85	u64		avg_interval;
  86	int			sensors_valid;
  87	unsigned long		sensors_last_updated;
  88	struct sensor_device_attribute	sensors[NUM_SENSORS];
  89	int			num_sensors;
  90	s64			trip[2];
  91	int			num_domain_devices;
  92	struct acpi_device	**domain_devices;
  93	struct kobject		*holders_dir;
  94};
  95
  96struct sensor_template {
  97	char *label;
  98	ssize_t (*show)(struct device *dev,
  99			struct device_attribute *devattr,
 100			char *buf);
 101	ssize_t (*set)(struct device *dev,
 102		       struct device_attribute *devattr,
 103		       const char *buf, size_t count);
 104	int index;
 105};
 106
 107/* Averaging interval */
 108static int update_avg_interval(struct acpi_power_meter_resource *resource)
 109{
 110	unsigned long long data;
 111	acpi_status status;
 112
 113	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_GAI",
 114				       NULL, &data);
 115	if (ACPI_FAILURE(status)) {
 116		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_GAI",
 117					     status);
 118		return -ENODEV;
 119	}
 120
 121	resource->avg_interval = data;
 122	return 0;
 123}
 124
 125static ssize_t show_avg_interval(struct device *dev,
 126				 struct device_attribute *devattr,
 127				 char *buf)
 128{
 129	struct acpi_device *acpi_dev = to_acpi_device(dev);
 130	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 131
 132	mutex_lock(&resource->lock);
 133	update_avg_interval(resource);
 134	mutex_unlock(&resource->lock);
 135
 136	return sprintf(buf, "%llu\n", resource->avg_interval);
 137}
 138
 139static ssize_t set_avg_interval(struct device *dev,
 140				struct device_attribute *devattr,
 141				const char *buf, size_t count)
 142{
 143	struct acpi_device *acpi_dev = to_acpi_device(dev);
 144	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 145	union acpi_object arg0 = { ACPI_TYPE_INTEGER };
 146	struct acpi_object_list args = { 1, &arg0 };
 147	int res;
 148	unsigned long temp;
 149	unsigned long long data;
 150	acpi_status status;
 151
 152	res = kstrtoul(buf, 10, &temp);
 153	if (res)
 154		return res;
 155
 156	if (temp > resource->caps.max_avg_interval ||
 157	    temp < resource->caps.min_avg_interval)
 158		return -EINVAL;
 159	arg0.integer.value = temp;
 160
 161	mutex_lock(&resource->lock);
 162	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PAI",
 163				       &args, &data);
 164	if (ACPI_SUCCESS(status))
 165		resource->avg_interval = temp;
 166	mutex_unlock(&resource->lock);
 167
 168	if (ACPI_FAILURE(status)) {
 169		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_PAI",
 170					     status);
 171		return -EINVAL;
 172	}
 173
 174	/* _PAI returns 0 on success, nonzero otherwise */
 175	if (data)
 176		return -EINVAL;
 177
 178	return count;
 179}
 180
 181/* Cap functions */
 182static int update_cap(struct acpi_power_meter_resource *resource)
 183{
 184	unsigned long long data;
 185	acpi_status status;
 186
 187	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_GHL",
 188				       NULL, &data);
 189	if (ACPI_FAILURE(status)) {
 190		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_GHL",
 191					     status);
 192		return -ENODEV;
 193	}
 194
 195	resource->cap = data;
 196	return 0;
 197}
 198
 199static ssize_t show_cap(struct device *dev,
 200			struct device_attribute *devattr,
 201			char *buf)
 202{
 203	struct acpi_device *acpi_dev = to_acpi_device(dev);
 204	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 205
 206	mutex_lock(&resource->lock);
 207	update_cap(resource);
 208	mutex_unlock(&resource->lock);
 209
 210	return sprintf(buf, "%llu\n", resource->cap * 1000);
 211}
 212
 213static ssize_t set_cap(struct device *dev, struct device_attribute *devattr,
 214		       const char *buf, size_t count)
 215{
 216	struct acpi_device *acpi_dev = to_acpi_device(dev);
 217	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 218	union acpi_object arg0 = { ACPI_TYPE_INTEGER };
 219	struct acpi_object_list args = { 1, &arg0 };
 220	int res;
 221	unsigned long temp;
 222	unsigned long long data;
 223	acpi_status status;
 224
 225	res = kstrtoul(buf, 10, &temp);
 226	if (res)
 227		return res;
 228
 229	temp = DIV_ROUND_CLOSEST(temp, 1000);
 230	if (temp > resource->caps.max_cap || temp < resource->caps.min_cap)
 231		return -EINVAL;
 232	arg0.integer.value = temp;
 233
 234	mutex_lock(&resource->lock);
 235	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_SHL",
 236				       &args, &data);
 237	if (ACPI_SUCCESS(status))
 238		resource->cap = temp;
 239	mutex_unlock(&resource->lock);
 240
 241	if (ACPI_FAILURE(status)) {
 242		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_SHL",
 243					     status);
 244		return -EINVAL;
 245	}
 246
 247	/* _SHL returns 0 on success, nonzero otherwise */
 248	if (data)
 249		return -EINVAL;
 250
 251	return count;
 252}
 253
 254/* Power meter trip points */
 255static int set_acpi_trip(struct acpi_power_meter_resource *resource)
 256{
 257	union acpi_object arg_objs[] = {
 258		{ACPI_TYPE_INTEGER},
 259		{ACPI_TYPE_INTEGER}
 260	};
 261	struct acpi_object_list args = { 2, arg_objs };
 262	unsigned long long data;
 263	acpi_status status;
 264
 265	/* Both trip levels must be set */
 266	if (resource->trip[0] < 0 || resource->trip[1] < 0)
 267		return 0;
 268
 269	/* This driver stores min, max; ACPI wants max, min. */
 270	arg_objs[0].integer.value = resource->trip[1];
 271	arg_objs[1].integer.value = resource->trip[0];
 272
 273	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PTP",
 274				       &args, &data);
 275	if (ACPI_FAILURE(status)) {
 276		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_PTP",
 277					     status);
 278		return -EINVAL;
 279	}
 280
 281	/* _PTP returns 0 on success, nonzero otherwise */
 282	if (data)
 283		return -EINVAL;
 284
 285	return 0;
 286}
 287
 288static ssize_t set_trip(struct device *dev, struct device_attribute *devattr,
 289			const char *buf, size_t count)
 290{
 291	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
 292	struct acpi_device *acpi_dev = to_acpi_device(dev);
 293	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 294	int res;
 295	unsigned long temp;
 296
 297	res = kstrtoul(buf, 10, &temp);
 298	if (res)
 299		return res;
 300
 301	temp = DIV_ROUND_CLOSEST(temp, 1000);
 302
 303	mutex_lock(&resource->lock);
 304	resource->trip[attr->index - 7] = temp;
 305	res = set_acpi_trip(resource);
 306	mutex_unlock(&resource->lock);
 307
 308	if (res)
 309		return res;
 310
 311	return count;
 312}
 313
 314/* Power meter */
 315static int update_meter(struct acpi_power_meter_resource *resource)
 316{
 317	unsigned long long data;
 318	acpi_status status;
 319	unsigned long local_jiffies = jiffies;
 320
 321	if (time_before(local_jiffies, resource->sensors_last_updated +
 322			msecs_to_jiffies(resource->caps.sampling_time)) &&
 323			resource->sensors_valid)
 324		return 0;
 325
 326	status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PMM",
 327				       NULL, &data);
 328	if (ACPI_FAILURE(status)) {
 329		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_PMM",
 330					     status);
 331		return -ENODEV;
 332	}
 333
 334	resource->power = data;
 335	resource->sensors_valid = 1;
 336	resource->sensors_last_updated = jiffies;
 337	return 0;
 338}
 339
 340static ssize_t show_power(struct device *dev,
 341			  struct device_attribute *devattr,
 342			  char *buf)
 343{
 344	struct acpi_device *acpi_dev = to_acpi_device(dev);
 345	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 346
 347	mutex_lock(&resource->lock);
 348	update_meter(resource);
 349	mutex_unlock(&resource->lock);
 350
 351	return sprintf(buf, "%llu\n", resource->power * 1000);
 352}
 353
 354/* Miscellaneous */
 355static ssize_t show_str(struct device *dev,
 356			struct device_attribute *devattr,
 357			char *buf)
 358{
 359	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
 360	struct acpi_device *acpi_dev = to_acpi_device(dev);
 361	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 362	acpi_string val;
 363	int ret;
 364
 365	mutex_lock(&resource->lock);
 366	switch (attr->index) {
 367	case 0:
 368		val = resource->model_number;
 369		break;
 370	case 1:
 371		val = resource->serial_number;
 372		break;
 373	case 2:
 374		val = resource->oem_info;
 375		break;
 376	default:
 377		WARN(1, "Implementation error: unexpected attribute index %d\n",
 378		     attr->index);
 379		val = "";
 380		break;
 381	}
 382	ret = sprintf(buf, "%s\n", val);
 383	mutex_unlock(&resource->lock);
 384	return ret;
 385}
 386
 387static ssize_t show_val(struct device *dev,
 388			struct device_attribute *devattr,
 389			char *buf)
 390{
 391	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
 392	struct acpi_device *acpi_dev = to_acpi_device(dev);
 393	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 394	u64 val = 0;
 395
 396	switch (attr->index) {
 397	case 0:
 398		val = resource->caps.min_avg_interval;
 399		break;
 400	case 1:
 401		val = resource->caps.max_avg_interval;
 402		break;
 403	case 2:
 404		val = resource->caps.min_cap * 1000;
 405		break;
 406	case 3:
 407		val = resource->caps.max_cap * 1000;
 408		break;
 409	case 4:
 410		if (resource->caps.hysteresis == UNKNOWN_HYSTERESIS)
 411			return sprintf(buf, "unknown\n");
 412
 413		val = resource->caps.hysteresis * 1000;
 414		break;
 415	case 5:
 416		if (resource->caps.flags & POWER_METER_IS_BATTERY)
 417			val = 1;
 418		else
 419			val = 0;
 420		break;
 421	case 6:
 422		if (resource->power > resource->cap)
 423			val = 1;
 424		else
 425			val = 0;
 426		break;
 427	case 7:
 428	case 8:
 429		if (resource->trip[attr->index - 7] < 0)
 430			return sprintf(buf, "unknown\n");
 431
 432		val = resource->trip[attr->index - 7] * 1000;
 433		break;
 434	default:
 435		WARN(1, "Implementation error: unexpected attribute index %d\n",
 436		     attr->index);
 437		break;
 438	}
 439
 440	return sprintf(buf, "%llu\n", val);
 441}
 442
 443static ssize_t show_accuracy(struct device *dev,
 444			     struct device_attribute *devattr,
 445			     char *buf)
 446{
 447	struct acpi_device *acpi_dev = to_acpi_device(dev);
 448	struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
 449	unsigned int acc = resource->caps.accuracy;
 450
 451	return sprintf(buf, "%u.%u%%\n", acc / 1000, acc % 1000);
 452}
 453
 454static ssize_t show_name(struct device *dev,
 455			 struct device_attribute *devattr,
 456			 char *buf)
 457{
 458	return sprintf(buf, "%s\n", ACPI_POWER_METER_NAME);
 459}
 460
 461#define RO_SENSOR_TEMPLATE(_label, _show, _index)	\
 462	{						\
 463		.label = _label,			\
 464		.show  = _show,				\
 465		.index = _index,			\
 466	}
 467
 468#define RW_SENSOR_TEMPLATE(_label, _show, _set, _index)	\
 469	{						\
 470		.label = _label,			\
 471		.show  = _show,				\
 472		.set   = _set,				\
 473		.index = _index,			\
 474	}
 475
 476/* Sensor descriptions.  If you add a sensor, update NUM_SENSORS above! */
 477static struct sensor_template meter_attrs[] = {
 478	RO_SENSOR_TEMPLATE(POWER_AVERAGE_NAME, show_power, 0),
 479	RO_SENSOR_TEMPLATE("power1_accuracy", show_accuracy, 0),
 480	RO_SENSOR_TEMPLATE("power1_average_interval_min", show_val, 0),
 481	RO_SENSOR_TEMPLATE("power1_average_interval_max", show_val, 1),
 482	RO_SENSOR_TEMPLATE("power1_is_battery", show_val, 5),
 483	RW_SENSOR_TEMPLATE(POWER_AVG_INTERVAL_NAME, show_avg_interval,
 484			   set_avg_interval, 0),
 485	{},
 486};
 487
 488static struct sensor_template misc_cap_attrs[] = {
 489	RO_SENSOR_TEMPLATE("power1_cap_min", show_val, 2),
 490	RO_SENSOR_TEMPLATE("power1_cap_max", show_val, 3),
 491	RO_SENSOR_TEMPLATE("power1_cap_hyst", show_val, 4),
 492	RO_SENSOR_TEMPLATE(POWER_ALARM_NAME, show_val, 6),
 493	{},
 494};
 495
 496static struct sensor_template ro_cap_attrs[] = {
 497	RO_SENSOR_TEMPLATE(POWER_CAP_NAME, show_cap, 0),
 498	{},
 499};
 500
 501static struct sensor_template rw_cap_attrs[] = {
 502	RW_SENSOR_TEMPLATE(POWER_CAP_NAME, show_cap, set_cap, 0),
 503	{},
 504};
 505
 506static struct sensor_template trip_attrs[] = {
 507	RW_SENSOR_TEMPLATE("power1_average_min", show_val, set_trip, 7),
 508	RW_SENSOR_TEMPLATE("power1_average_max", show_val, set_trip, 8),
 509	{},
 510};
 511
 512static struct sensor_template misc_attrs[] = {
 513	RO_SENSOR_TEMPLATE("name", show_name, 0),
 514	RO_SENSOR_TEMPLATE("power1_model_number", show_str, 0),
 515	RO_SENSOR_TEMPLATE("power1_oem_info", show_str, 2),
 516	RO_SENSOR_TEMPLATE("power1_serial_number", show_str, 1),
 517	{},
 518};
 519
 520#undef RO_SENSOR_TEMPLATE
 521#undef RW_SENSOR_TEMPLATE
 522
 523/* Read power domain data */
 524static void remove_domain_devices(struct acpi_power_meter_resource *resource)
 525{
 526	int i;
 527
 528	if (!resource->num_domain_devices)
 529		return;
 530
 531	for (i = 0; i < resource->num_domain_devices; i++) {
 532		struct acpi_device *obj = resource->domain_devices[i];
 533
 534		if (!obj)
 535			continue;
 536
 537		sysfs_remove_link(resource->holders_dir,
 538				  kobject_name(&obj->dev.kobj));
 539		acpi_dev_put(obj);
 540	}
 541
 542	kfree(resource->domain_devices);
 543	kobject_put(resource->holders_dir);
 544	resource->num_domain_devices = 0;
 545}
 546
 547static int read_domain_devices(struct acpi_power_meter_resource *resource)
 548{
 549	int res = 0;
 550	int i;
 551	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
 552	union acpi_object *pss;
 553	acpi_status status;
 554
 555	status = acpi_evaluate_object(resource->acpi_dev->handle, "_PMD", NULL,
 556				      &buffer);
 557	if (ACPI_FAILURE(status)) {
 558		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_PMD",
 559					     status);
 560		return -ENODEV;
 561	}
 562
 563	pss = buffer.pointer;
 564	if (!pss ||
 565	    pss->type != ACPI_TYPE_PACKAGE) {
 566		dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
 567			"Invalid _PMD data\n");
 568		res = -EFAULT;
 569		goto end;
 570	}
 571
 572	if (!pss->package.count)
 573		goto end;
 574
 575	resource->domain_devices = kcalloc(pss->package.count,
 576					   sizeof(struct acpi_device *),
 577					   GFP_KERNEL);
 578	if (!resource->domain_devices) {
 579		res = -ENOMEM;
 580		goto end;
 581	}
 582
 583	resource->holders_dir = kobject_create_and_add("measures",
 584						       &resource->acpi_dev->dev.kobj);
 585	if (!resource->holders_dir) {
 586		res = -ENOMEM;
 587		goto exit_free;
 588	}
 589
 590	resource->num_domain_devices = pss->package.count;
 591
 592	for (i = 0; i < pss->package.count; i++) {
 593		struct acpi_device *obj;
 594		union acpi_object *element = &pss->package.elements[i];
 595
 596		/* Refuse non-references */
 597		if (element->type != ACPI_TYPE_LOCAL_REFERENCE)
 598			continue;
 599
 600		/* Create a symlink to domain objects */
 601		obj = acpi_get_acpi_dev(element->reference.handle);
 602		resource->domain_devices[i] = obj;
 603		if (!obj)
 604			continue;
 605
 
 
 
 606		res = sysfs_create_link(resource->holders_dir, &obj->dev.kobj,
 607					kobject_name(&obj->dev.kobj));
 608		if (res) {
 609			acpi_dev_put(obj);
 610			resource->domain_devices[i] = NULL;
 611		}
 612	}
 613
 614	res = 0;
 615	goto end;
 616
 617exit_free:
 618	kfree(resource->domain_devices);
 619end:
 620	kfree(buffer.pointer);
 621	return res;
 622}
 623
 624/* Registration and deregistration */
 625static int register_attrs(struct acpi_power_meter_resource *resource,
 626			  struct sensor_template *attrs)
 627{
 628	struct device *dev = &resource->acpi_dev->dev;
 629	struct sensor_device_attribute *sensors =
 630		&resource->sensors[resource->num_sensors];
 631	int res = 0;
 632
 633	while (attrs->label) {
 634		sensors->dev_attr.attr.name = attrs->label;
 635		sensors->dev_attr.attr.mode = 0444;
 636		sensors->dev_attr.show = attrs->show;
 637		sensors->index = attrs->index;
 638
 639		if (attrs->set) {
 640			sensors->dev_attr.attr.mode |= 0200;
 641			sensors->dev_attr.store = attrs->set;
 642		}
 643
 644		sysfs_attr_init(&sensors->dev_attr.attr);
 645		res = device_create_file(dev, &sensors->dev_attr);
 646		if (res) {
 647			sensors->dev_attr.attr.name = NULL;
 648			goto error;
 649		}
 650		sensors++;
 651		resource->num_sensors++;
 652		attrs++;
 653	}
 654
 655error:
 656	return res;
 657}
 658
 659static void remove_attrs(struct acpi_power_meter_resource *resource)
 660{
 661	int i;
 662
 663	for (i = 0; i < resource->num_sensors; i++) {
 664		if (!resource->sensors[i].dev_attr.attr.name)
 665			continue;
 666		device_remove_file(&resource->acpi_dev->dev,
 667				   &resource->sensors[i].dev_attr);
 668	}
 669
 670	remove_domain_devices(resource);
 671
 672	resource->num_sensors = 0;
 673}
 674
 675static int setup_attrs(struct acpi_power_meter_resource *resource)
 676{
 677	int res = 0;
 678
 679	res = read_domain_devices(resource);
 680	if (res)
 681		return res;
 682
 683	if (resource->caps.flags & POWER_METER_CAN_MEASURE) {
 684		res = register_attrs(resource, meter_attrs);
 685		if (res)
 686			goto error;
 687	}
 688
 689	if (resource->caps.flags & POWER_METER_CAN_CAP) {
 690		if (!can_cap_in_hardware()) {
 691			dev_warn(&resource->acpi_dev->dev,
 692				 "Ignoring unsafe software power cap!\n");
 693			goto skip_unsafe_cap;
 694		}
 695
 696		if (resource->caps.configurable_cap)
 697			res = register_attrs(resource, rw_cap_attrs);
 698		else
 699			res = register_attrs(resource, ro_cap_attrs);
 700
 701		if (res)
 702			goto error;
 703
 704		res = register_attrs(resource, misc_cap_attrs);
 705		if (res)
 706			goto error;
 707	}
 708
 709skip_unsafe_cap:
 710	if (resource->caps.flags & POWER_METER_CAN_TRIP) {
 711		res = register_attrs(resource, trip_attrs);
 712		if (res)
 713			goto error;
 714	}
 715
 716	res = register_attrs(resource, misc_attrs);
 717	if (res)
 718		goto error;
 719
 720	return res;
 721error:
 722	remove_attrs(resource);
 723	return res;
 724}
 725
 726static void free_capabilities(struct acpi_power_meter_resource *resource)
 727{
 728	acpi_string *str;
 729	int i;
 730
 731	str = &resource->model_number;
 732	for (i = 0; i < 3; i++, str++) {
 733		kfree(*str);
 734		*str = NULL;
 735	}
 736}
 737
 738static int read_capabilities(struct acpi_power_meter_resource *resource)
 739{
 740	int res = 0;
 741	int i;
 742	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
 743	struct acpi_buffer state = { 0, NULL };
 744	struct acpi_buffer format = { sizeof("NNNNNNNNNNN"), "NNNNNNNNNNN" };
 745	union acpi_object *pss;
 746	acpi_string *str;
 747	acpi_status status;
 748
 749	status = acpi_evaluate_object(resource->acpi_dev->handle, "_PMC", NULL,
 750				      &buffer);
 751	if (ACPI_FAILURE(status)) {
 752		acpi_evaluation_failure_warn(resource->acpi_dev->handle, "_PMC",
 753					     status);
 754		return -ENODEV;
 755	}
 756
 757	pss = buffer.pointer;
 758	if (!pss ||
 759	    pss->type != ACPI_TYPE_PACKAGE ||
 760	    pss->package.count != 14) {
 761		dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
 762			"Invalid _PMC data\n");
 763		res = -EFAULT;
 764		goto end;
 765	}
 766
 767	/* Grab all the integer data at once */
 768	state.length = sizeof(struct acpi_power_meter_capabilities);
 769	state.pointer = &resource->caps;
 770
 771	status = acpi_extract_package(pss, &format, &state);
 772	if (ACPI_FAILURE(status)) {
 773		dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
 774			"_PMC package parsing failed: %s\n",
 775			acpi_format_exception(status));
 776		res = -EFAULT;
 777		goto end;
 778	}
 779
 780	if (resource->caps.units) {
 781		dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
 782			"Unknown units %llu.\n",
 783			resource->caps.units);
 784		res = -EINVAL;
 785		goto end;
 786	}
 787
 788	/* Grab the string data */
 789	str = &resource->model_number;
 790
 791	for (i = 11; i < 14; i++) {
 792		union acpi_object *element = &pss->package.elements[i];
 793
 794		if (element->type != ACPI_TYPE_STRING) {
 795			res = -EINVAL;
 796			goto error;
 797		}
 798
 799		*str = kcalloc(element->string.length + 1, sizeof(u8),
 800			       GFP_KERNEL);
 801		if (!*str) {
 802			res = -ENOMEM;
 803			goto error;
 804		}
 805
 806		strncpy(*str, element->string.pointer, element->string.length);
 807		str++;
 808	}
 809
 810	dev_info(&resource->acpi_dev->dev, "Found ACPI power meter.\n");
 811	goto end;
 812error:
 813	free_capabilities(resource);
 
 
 814end:
 815	kfree(buffer.pointer);
 816	return res;
 817}
 818
 819/* Handle ACPI event notifications */
 820static void acpi_power_meter_notify(struct acpi_device *device, u32 event)
 821{
 822	struct acpi_power_meter_resource *resource;
 823	int res;
 824
 825	if (!device || !acpi_driver_data(device))
 826		return;
 827
 828	resource = acpi_driver_data(device);
 829
 830	switch (event) {
 831	case METER_NOTIFY_CONFIG:
 832		mutex_lock(&resource->lock);
 833		free_capabilities(resource);
 834		res = read_capabilities(resource);
 835		mutex_unlock(&resource->lock);
 836		if (res)
 837			break;
 838
 839		remove_attrs(resource);
 840		setup_attrs(resource);
 841		break;
 842	case METER_NOTIFY_TRIP:
 843		sysfs_notify(&device->dev.kobj, NULL, POWER_AVERAGE_NAME);
 844		break;
 845	case METER_NOTIFY_CAP:
 846		sysfs_notify(&device->dev.kobj, NULL, POWER_CAP_NAME);
 847		break;
 848	case METER_NOTIFY_INTERVAL:
 849		sysfs_notify(&device->dev.kobj, NULL, POWER_AVG_INTERVAL_NAME);
 850		break;
 851	case METER_NOTIFY_CAPPING:
 852		sysfs_notify(&device->dev.kobj, NULL, POWER_ALARM_NAME);
 853		dev_info(&device->dev, "Capping in progress.\n");
 854		break;
 855	default:
 856		WARN(1, "Unexpected event %d\n", event);
 857		break;
 858	}
 859
 860	acpi_bus_generate_netlink_event(ACPI_POWER_METER_CLASS,
 861					dev_name(&device->dev), event, 0);
 862}
 863
 864static int acpi_power_meter_add(struct acpi_device *device)
 865{
 866	int res;
 867	struct acpi_power_meter_resource *resource;
 868
 869	if (!device)
 870		return -EINVAL;
 871
 872	resource = kzalloc(sizeof(*resource), GFP_KERNEL);
 
 873	if (!resource)
 874		return -ENOMEM;
 875
 876	resource->sensors_valid = 0;
 877	resource->acpi_dev = device;
 878	mutex_init(&resource->lock);
 879	strcpy(acpi_device_name(device), ACPI_POWER_METER_DEVICE_NAME);
 880	strcpy(acpi_device_class(device), ACPI_POWER_METER_CLASS);
 881	device->driver_data = resource;
 882
 
 883	res = read_capabilities(resource);
 884	if (res)
 885		goto exit_free;
 886
 887	resource->trip[0] = -1;
 888	resource->trip[1] = -1;
 889
 890	res = setup_attrs(resource);
 891	if (res)
 892		goto exit_free_capability;
 893
 894	resource->hwmon_dev = hwmon_device_register(&device->dev);
 895	if (IS_ERR(resource->hwmon_dev)) {
 896		res = PTR_ERR(resource->hwmon_dev);
 897		goto exit_remove;
 898	}
 899
 900	res = 0;
 901	goto exit;
 902
 903exit_remove:
 904	remove_attrs(resource);
 905exit_free_capability:
 906	free_capabilities(resource);
 907exit_free:
 908	kfree(resource);
 909exit:
 910	return res;
 911}
 912
 913static void acpi_power_meter_remove(struct acpi_device *device)
 914{
 915	struct acpi_power_meter_resource *resource;
 916
 917	if (!device || !acpi_driver_data(device))
 918		return;
 919
 920	resource = acpi_driver_data(device);
 921	hwmon_device_unregister(resource->hwmon_dev);
 922
 923	remove_attrs(resource);
 924	free_capabilities(resource);
 925
 926	kfree(resource);
 
 927}
 928
 
 
 929static int acpi_power_meter_resume(struct device *dev)
 930{
 931	struct acpi_power_meter_resource *resource;
 932
 933	if (!dev)
 934		return -EINVAL;
 935
 936	resource = acpi_driver_data(to_acpi_device(dev));
 937	if (!resource)
 938		return -EINVAL;
 939
 940	free_capabilities(resource);
 941	read_capabilities(resource);
 942
 943	return 0;
 944}
 945
 946static DEFINE_SIMPLE_DEV_PM_OPS(acpi_power_meter_pm, NULL,
 947				acpi_power_meter_resume);
 
 948
 949static struct acpi_driver acpi_power_meter_driver = {
 950	.name = "power_meter",
 951	.class = ACPI_POWER_METER_CLASS,
 952	.ids = power_meter_ids,
 953	.ops = {
 954		.add = acpi_power_meter_add,
 955		.remove = acpi_power_meter_remove,
 956		.notify = acpi_power_meter_notify,
 957		},
 958	.drv.pm = pm_sleep_ptr(&acpi_power_meter_pm),
 959};
 960
 961/* Module init/exit routines */
 962static int __init enable_cap_knobs(const struct dmi_system_id *d)
 963{
 964	cap_in_hardware = 1;
 965	return 0;
 966}
 967
 968static const struct dmi_system_id pm_dmi_table[] __initconst = {
 969	{
 970		enable_cap_knobs, "IBM Active Energy Manager",
 971		{
 972			DMI_MATCH(DMI_SYS_VENDOR, "IBM")
 973		},
 974	},
 975	{}
 976};
 977
 978static int __init acpi_power_meter_init(void)
 979{
 980	int result;
 981
 982	if (acpi_disabled)
 983		return -ENODEV;
 984
 985	dmi_check_system(pm_dmi_table);
 986
 987	result = acpi_bus_register_driver(&acpi_power_meter_driver);
 988	if (result < 0)
 989		return result;
 990
 991	return 0;
 992}
 993
 994static void __exit acpi_power_meter_exit(void)
 995{
 996	acpi_bus_unregister_driver(&acpi_power_meter_driver);
 997}
 998
 999MODULE_AUTHOR("Darrick J. Wong <darrick.wong@oracle.com>");
1000MODULE_DESCRIPTION("ACPI 4.0 power meter driver");
1001MODULE_LICENSE("GPL");
1002
1003module_param(force_cap_on, bool, 0644);
1004MODULE_PARM_DESC(force_cap_on, "Enable power cap even it is unsafe to do so.");
1005
1006module_init(acpi_power_meter_init);
1007module_exit(acpi_power_meter_exit);