2 * A hwmon driver for ACPI 4.0 power meters
3 * Copyright (C) 2009 IBM
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/module.h>
23 #include <linux/hwmon.h>
24 #include <linux/hwmon-sysfs.h>
25 #include <linux/jiffies.h>
26 #include <linux/mutex.h>
27 #include <linux/dmi.h>
28 #include <linux/slab.h>
29 #include <linux/kdev_t.h>
30 #include <linux/sched.h>
31 #include <linux/time.h>
32 #include <linux/err.h>
33 #include <linux/acpi.h>
35 #define ACPI_POWER_METER_NAME "power_meter"
36 ACPI_MODULE_NAME(ACPI_POWER_METER_NAME);
37 #define ACPI_POWER_METER_DEVICE_NAME "Power Meter"
38 #define ACPI_POWER_METER_CLASS "pwr_meter_resource"
40 #define NUM_SENSORS 17
42 #define POWER_METER_CAN_MEASURE (1 << 0)
43 #define POWER_METER_CAN_TRIP (1 << 1)
44 #define POWER_METER_CAN_CAP (1 << 2)
45 #define POWER_METER_CAN_NOTIFY (1 << 3)
46 #define POWER_METER_IS_BATTERY (1 << 8)
47 #define UNKNOWN_HYSTERESIS 0xFFFFFFFF
49 #define METER_NOTIFY_CONFIG 0x80
50 #define METER_NOTIFY_TRIP 0x81
51 #define METER_NOTIFY_CAP 0x82
52 #define METER_NOTIFY_CAPPING 0x83
53 #define METER_NOTIFY_INTERVAL 0x84
55 #define POWER_AVERAGE_NAME "power1_average"
56 #define POWER_CAP_NAME "power1_cap"
57 #define POWER_AVG_INTERVAL_NAME "power1_average_interval"
58 #define POWER_ALARM_NAME "power1_alarm"
60 static int cap_in_hardware;
61 static bool force_cap_on;
63 static int can_cap_in_hardware(void)
65 return force_cap_on || cap_in_hardware;
68 static const struct acpi_device_id power_meter_ids[] = {
72 MODULE_DEVICE_TABLE(acpi, power_meter_ids);
74 struct acpi_power_meter_capabilities {
88 struct acpi_power_meter_resource {
89 struct acpi_device *acpi_dev;
92 struct device *hwmon_dev;
93 struct acpi_power_meter_capabilities caps;
94 acpi_string model_number;
95 acpi_string serial_number;
101 unsigned long sensors_last_updated;
102 struct sensor_device_attribute sensors[NUM_SENSORS];
105 int num_domain_devices;
106 struct acpi_device **domain_devices;
107 struct kobject *holders_dir;
110 struct sensor_template {
112 ssize_t (*show)(struct device *dev,
113 struct device_attribute *devattr,
115 ssize_t (*set)(struct device *dev,
116 struct device_attribute *devattr,
117 const char *buf, size_t count);
121 /* Averaging interval */
122 static int update_avg_interval(struct acpi_power_meter_resource *resource)
124 unsigned long long data;
127 status = acpi_evaluate_integer(resource->acpi_dev->handle, "_GAI",
129 if (ACPI_FAILURE(status)) {
130 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _GAI"));
134 resource->avg_interval = data;
138 static ssize_t show_avg_interval(struct device *dev,
139 struct device_attribute *devattr,
142 struct acpi_device *acpi_dev = to_acpi_device(dev);
143 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
145 mutex_lock(&resource->lock);
146 update_avg_interval(resource);
147 mutex_unlock(&resource->lock);
149 return sprintf(buf, "%llu\n", resource->avg_interval);
152 static ssize_t set_avg_interval(struct device *dev,
153 struct device_attribute *devattr,
154 const char *buf, size_t count)
156 struct acpi_device *acpi_dev = to_acpi_device(dev);
157 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
158 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
159 struct acpi_object_list args = { 1, &arg0 };
162 unsigned long long data;
165 res = kstrtoul(buf, 10, &temp);
169 if (temp > resource->caps.max_avg_interval ||
170 temp < resource->caps.min_avg_interval)
172 arg0.integer.value = temp;
174 mutex_lock(&resource->lock);
175 status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PAI",
177 if (!ACPI_FAILURE(status))
178 resource->avg_interval = temp;
179 mutex_unlock(&resource->lock);
181 if (ACPI_FAILURE(status)) {
182 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PAI"));
186 /* _PAI returns 0 on success, nonzero otherwise */
194 static int update_cap(struct acpi_power_meter_resource *resource)
196 unsigned long long data;
199 status = acpi_evaluate_integer(resource->acpi_dev->handle, "_GHL",
201 if (ACPI_FAILURE(status)) {
202 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _GHL"));
206 resource->cap = data;
210 static ssize_t show_cap(struct device *dev,
211 struct device_attribute *devattr,
214 struct acpi_device *acpi_dev = to_acpi_device(dev);
215 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
217 mutex_lock(&resource->lock);
218 update_cap(resource);
219 mutex_unlock(&resource->lock);
221 return sprintf(buf, "%llu\n", resource->cap * 1000);
224 static ssize_t set_cap(struct device *dev, struct device_attribute *devattr,
225 const char *buf, size_t count)
227 struct acpi_device *acpi_dev = to_acpi_device(dev);
228 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
229 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
230 struct acpi_object_list args = { 1, &arg0 };
233 unsigned long long data;
236 res = kstrtoul(buf, 10, &temp);
240 temp = DIV_ROUND_CLOSEST(temp, 1000);
241 if (temp > resource->caps.max_cap || temp < resource->caps.min_cap)
243 arg0.integer.value = temp;
245 mutex_lock(&resource->lock);
246 status = acpi_evaluate_integer(resource->acpi_dev->handle, "_SHL",
248 if (!ACPI_FAILURE(status))
249 resource->cap = temp;
250 mutex_unlock(&resource->lock);
252 if (ACPI_FAILURE(status)) {
253 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SHL"));
257 /* _SHL returns 0 on success, nonzero otherwise */
264 /* Power meter trip points */
265 static int set_acpi_trip(struct acpi_power_meter_resource *resource)
267 union acpi_object arg_objs[] = {
271 struct acpi_object_list args = { 2, arg_objs };
272 unsigned long long data;
275 /* Both trip levels must be set */
276 if (resource->trip[0] < 0 || resource->trip[1] < 0)
279 /* This driver stores min, max; ACPI wants max, min. */
280 arg_objs[0].integer.value = resource->trip[1];
281 arg_objs[1].integer.value = resource->trip[0];
283 status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PTP",
285 if (ACPI_FAILURE(status)) {
286 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PTP"));
290 /* _PTP returns 0 on success, nonzero otherwise */
297 static ssize_t set_trip(struct device *dev, struct device_attribute *devattr,
298 const char *buf, size_t count)
300 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
301 struct acpi_device *acpi_dev = to_acpi_device(dev);
302 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
306 res = kstrtoul(buf, 10, &temp);
310 temp = DIV_ROUND_CLOSEST(temp, 1000);
312 mutex_lock(&resource->lock);
313 resource->trip[attr->index - 7] = temp;
314 res = set_acpi_trip(resource);
315 mutex_unlock(&resource->lock);
324 static int update_meter(struct acpi_power_meter_resource *resource)
326 unsigned long long data;
328 unsigned long local_jiffies = jiffies;
330 if (time_before(local_jiffies, resource->sensors_last_updated +
331 msecs_to_jiffies(resource->caps.sampling_time)) &&
332 resource->sensors_valid)
335 status = acpi_evaluate_integer(resource->acpi_dev->handle, "_PMM",
337 if (ACPI_FAILURE(status)) {
338 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PMM"));
342 resource->power = data;
343 resource->sensors_valid = 1;
344 resource->sensors_last_updated = jiffies;
348 static ssize_t show_power(struct device *dev,
349 struct device_attribute *devattr,
352 struct acpi_device *acpi_dev = to_acpi_device(dev);
353 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
355 mutex_lock(&resource->lock);
356 update_meter(resource);
357 mutex_unlock(&resource->lock);
359 return sprintf(buf, "%llu\n", resource->power * 1000);
363 static ssize_t show_str(struct device *dev,
364 struct device_attribute *devattr,
367 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
368 struct acpi_device *acpi_dev = to_acpi_device(dev);
369 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
372 switch (attr->index) {
374 val = resource->model_number;
377 val = resource->serial_number;
380 val = resource->oem_info;
383 WARN(1, "Implementation error: unexpected attribute index %d\n",
389 return sprintf(buf, "%s\n", val);
392 static ssize_t show_val(struct device *dev,
393 struct device_attribute *devattr,
396 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
397 struct acpi_device *acpi_dev = to_acpi_device(dev);
398 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
401 switch (attr->index) {
403 val = resource->caps.min_avg_interval;
406 val = resource->caps.max_avg_interval;
409 val = resource->caps.min_cap * 1000;
412 val = resource->caps.max_cap * 1000;
415 if (resource->caps.hysteresis == UNKNOWN_HYSTERESIS)
416 return sprintf(buf, "unknown\n");
418 val = resource->caps.hysteresis * 1000;
421 if (resource->caps.flags & POWER_METER_IS_BATTERY)
427 if (resource->power > resource->cap)
434 if (resource->trip[attr->index - 7] < 0)
435 return sprintf(buf, "unknown\n");
437 val = resource->trip[attr->index - 7] * 1000;
440 WARN(1, "Implementation error: unexpected attribute index %d\n",
445 return sprintf(buf, "%llu\n", val);
448 static ssize_t show_accuracy(struct device *dev,
449 struct device_attribute *devattr,
452 struct acpi_device *acpi_dev = to_acpi_device(dev);
453 struct acpi_power_meter_resource *resource = acpi_dev->driver_data;
454 unsigned int acc = resource->caps.accuracy;
456 return sprintf(buf, "%u.%u%%\n", acc / 1000, acc % 1000);
459 static ssize_t show_name(struct device *dev,
460 struct device_attribute *devattr,
463 return sprintf(buf, "%s\n", ACPI_POWER_METER_NAME);
466 #define RO_SENSOR_TEMPLATE(_label, _show, _index) \
473 #define RW_SENSOR_TEMPLATE(_label, _show, _set, _index) \
481 /* Sensor descriptions. If you add a sensor, update NUM_SENSORS above! */
482 static struct sensor_template meter_attrs[] = {
483 RO_SENSOR_TEMPLATE(POWER_AVERAGE_NAME, show_power, 0),
484 RO_SENSOR_TEMPLATE("power1_accuracy", show_accuracy, 0),
485 RO_SENSOR_TEMPLATE("power1_average_interval_min", show_val, 0),
486 RO_SENSOR_TEMPLATE("power1_average_interval_max", show_val, 1),
487 RO_SENSOR_TEMPLATE("power1_is_battery", show_val, 5),
488 RW_SENSOR_TEMPLATE(POWER_AVG_INTERVAL_NAME, show_avg_interval,
489 set_avg_interval, 0),
493 static struct sensor_template misc_cap_attrs[] = {
494 RO_SENSOR_TEMPLATE("power1_cap_min", show_val, 2),
495 RO_SENSOR_TEMPLATE("power1_cap_max", show_val, 3),
496 RO_SENSOR_TEMPLATE("power1_cap_hyst", show_val, 4),
497 RO_SENSOR_TEMPLATE(POWER_ALARM_NAME, show_val, 6),
501 static struct sensor_template ro_cap_attrs[] = {
502 RO_SENSOR_TEMPLATE(POWER_CAP_NAME, show_cap, 0),
506 static struct sensor_template rw_cap_attrs[] = {
507 RW_SENSOR_TEMPLATE(POWER_CAP_NAME, show_cap, set_cap, 0),
511 static struct sensor_template trip_attrs[] = {
512 RW_SENSOR_TEMPLATE("power1_average_min", show_val, set_trip, 7),
513 RW_SENSOR_TEMPLATE("power1_average_max", show_val, set_trip, 8),
517 static struct sensor_template misc_attrs[] = {
518 RO_SENSOR_TEMPLATE("name", show_name, 0),
519 RO_SENSOR_TEMPLATE("power1_model_number", show_str, 0),
520 RO_SENSOR_TEMPLATE("power1_oem_info", show_str, 2),
521 RO_SENSOR_TEMPLATE("power1_serial_number", show_str, 1),
525 #undef RO_SENSOR_TEMPLATE
526 #undef RW_SENSOR_TEMPLATE
528 /* Read power domain data */
529 static void remove_domain_devices(struct acpi_power_meter_resource *resource)
533 if (!resource->num_domain_devices)
536 for (i = 0; i < resource->num_domain_devices; i++) {
537 struct acpi_device *obj = resource->domain_devices[i];
541 sysfs_remove_link(resource->holders_dir,
542 kobject_name(&obj->dev.kobj));
543 put_device(&obj->dev);
546 kfree(resource->domain_devices);
547 kobject_put(resource->holders_dir);
548 resource->num_domain_devices = 0;
551 static int read_domain_devices(struct acpi_power_meter_resource *resource)
555 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
556 union acpi_object *pss;
559 status = acpi_evaluate_object(resource->acpi_dev->handle, "_PMD", NULL,
561 if (ACPI_FAILURE(status)) {
562 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PMD"));
566 pss = buffer.pointer;
568 pss->type != ACPI_TYPE_PACKAGE) {
569 dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
570 "Invalid _PMD data\n");
575 if (!pss->package.count)
578 resource->domain_devices = kzalloc(sizeof(struct acpi_device *) *
579 pss->package.count, GFP_KERNEL);
580 if (!resource->domain_devices) {
585 resource->holders_dir = kobject_create_and_add("measures",
586 &resource->acpi_dev->dev.kobj);
587 if (!resource->holders_dir) {
592 resource->num_domain_devices = pss->package.count;
594 for (i = 0; i < pss->package.count; i++) {
595 struct acpi_device *obj;
596 union acpi_object *element = &(pss->package.elements[i]);
598 /* Refuse non-references */
599 if (element->type != ACPI_TYPE_LOCAL_REFERENCE)
602 /* Create a symlink to domain objects */
603 resource->domain_devices[i] = NULL;
604 if (acpi_bus_get_device(element->reference.handle,
605 &resource->domain_devices[i]))
608 obj = resource->domain_devices[i];
609 get_device(&obj->dev);
611 res = sysfs_create_link(resource->holders_dir, &obj->dev.kobj,
612 kobject_name(&obj->dev.kobj));
614 put_device(&obj->dev);
615 resource->domain_devices[i] = NULL;
623 kfree(resource->domain_devices);
625 kfree(buffer.pointer);
629 /* Registration and deregistration */
630 static int register_attrs(struct acpi_power_meter_resource *resource,
631 struct sensor_template *attrs)
633 struct device *dev = &resource->acpi_dev->dev;
634 struct sensor_device_attribute *sensors =
635 &resource->sensors[resource->num_sensors];
638 while (attrs->label) {
639 sensors->dev_attr.attr.name = attrs->label;
640 sensors->dev_attr.attr.mode = S_IRUGO;
641 sensors->dev_attr.show = attrs->show;
642 sensors->index = attrs->index;
645 sensors->dev_attr.attr.mode |= S_IWUSR;
646 sensors->dev_attr.store = attrs->set;
649 sysfs_attr_init(&sensors->dev_attr.attr);
650 res = device_create_file(dev, &sensors->dev_attr);
652 sensors->dev_attr.attr.name = NULL;
656 resource->num_sensors++;
664 static void remove_attrs(struct acpi_power_meter_resource *resource)
668 for (i = 0; i < resource->num_sensors; i++) {
669 if (!resource->sensors[i].dev_attr.attr.name)
671 device_remove_file(&resource->acpi_dev->dev,
672 &resource->sensors[i].dev_attr);
675 remove_domain_devices(resource);
677 resource->num_sensors = 0;
680 static int setup_attrs(struct acpi_power_meter_resource *resource)
684 res = read_domain_devices(resource);
688 if (resource->caps.flags & POWER_METER_CAN_MEASURE) {
689 res = register_attrs(resource, meter_attrs);
694 if (resource->caps.flags & POWER_METER_CAN_CAP) {
695 if (!can_cap_in_hardware()) {
696 dev_err(&resource->acpi_dev->dev,
697 "Ignoring unsafe software power cap!\n");
698 goto skip_unsafe_cap;
701 if (resource->caps.configurable_cap)
702 res = register_attrs(resource, rw_cap_attrs);
704 res = register_attrs(resource, ro_cap_attrs);
709 res = register_attrs(resource, misc_cap_attrs);
715 if (resource->caps.flags & POWER_METER_CAN_TRIP) {
716 res = register_attrs(resource, trip_attrs);
721 res = register_attrs(resource, misc_attrs);
727 remove_attrs(resource);
731 static void free_capabilities(struct acpi_power_meter_resource *resource)
736 str = &resource->model_number;
737 for (i = 0; i < 3; i++, str++)
741 static int read_capabilities(struct acpi_power_meter_resource *resource)
745 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
746 struct acpi_buffer state = { 0, NULL };
747 struct acpi_buffer format = { sizeof("NNNNNNNNNNN"), "NNNNNNNNNNN" };
748 union acpi_object *pss;
752 status = acpi_evaluate_object(resource->acpi_dev->handle, "_PMC", NULL,
754 if (ACPI_FAILURE(status)) {
755 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PMC"));
759 pss = buffer.pointer;
761 pss->type != ACPI_TYPE_PACKAGE ||
762 pss->package.count != 14) {
763 dev_err(&resource->acpi_dev->dev, ACPI_POWER_METER_NAME
764 "Invalid _PMC data\n");
769 /* Grab all the integer data at once */
770 state.length = sizeof(struct acpi_power_meter_capabilities);
771 state.pointer = &resource->caps;
773 status = acpi_extract_package(pss, &format, &state);
774 if (ACPI_FAILURE(status)) {
775 ACPI_EXCEPTION((AE_INFO, status, "Invalid data"));
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);
788 /* Grab the string data */
789 str = &resource->model_number;
791 for (i = 11; i < 14; i++) {
792 union acpi_object *element = &(pss->package.elements[i]);
794 if (element->type != ACPI_TYPE_STRING) {
799 *str = kzalloc(sizeof(u8) * (element->string.length + 1),
806 strncpy(*str, element->string.pointer, element->string.length);
810 dev_info(&resource->acpi_dev->dev, "Found ACPI power meter.\n");
813 str = &resource->model_number;
814 for (i = 0; i < 3; i++, str++)
817 kfree(buffer.pointer);
821 /* Handle ACPI event notifications */
822 static void acpi_power_meter_notify(struct acpi_device *device, u32 event)
824 struct acpi_power_meter_resource *resource;
827 if (!device || !acpi_driver_data(device))
830 resource = acpi_driver_data(device);
832 mutex_lock(&resource->lock);
834 case METER_NOTIFY_CONFIG:
835 free_capabilities(resource);
836 res = read_capabilities(resource);
840 remove_attrs(resource);
841 setup_attrs(resource);
843 case METER_NOTIFY_TRIP:
844 sysfs_notify(&device->dev.kobj, NULL, POWER_AVERAGE_NAME);
845 update_meter(resource);
847 case METER_NOTIFY_CAP:
848 sysfs_notify(&device->dev.kobj, NULL, POWER_CAP_NAME);
849 update_cap(resource);
851 case METER_NOTIFY_INTERVAL:
852 sysfs_notify(&device->dev.kobj, NULL, POWER_AVG_INTERVAL_NAME);
853 update_avg_interval(resource);
855 case METER_NOTIFY_CAPPING:
856 sysfs_notify(&device->dev.kobj, NULL, POWER_ALARM_NAME);
857 dev_info(&device->dev, "Capping in progress.\n");
860 WARN(1, "Unexpected event %d\n", event);
863 mutex_unlock(&resource->lock);
865 acpi_bus_generate_netlink_event(ACPI_POWER_METER_CLASS,
866 dev_name(&device->dev), event, 0);
869 static int acpi_power_meter_add(struct acpi_device *device)
872 struct acpi_power_meter_resource *resource;
877 resource = kzalloc(sizeof(struct acpi_power_meter_resource),
882 resource->sensors_valid = 0;
883 resource->acpi_dev = device;
884 mutex_init(&resource->lock);
885 strcpy(acpi_device_name(device), ACPI_POWER_METER_DEVICE_NAME);
886 strcpy(acpi_device_class(device), ACPI_POWER_METER_CLASS);
887 device->driver_data = resource;
889 free_capabilities(resource);
890 res = read_capabilities(resource);
894 resource->trip[0] = resource->trip[1] = -1;
896 res = setup_attrs(resource);
900 resource->hwmon_dev = hwmon_device_register(&device->dev);
901 if (IS_ERR(resource->hwmon_dev)) {
902 res = PTR_ERR(resource->hwmon_dev);
910 remove_attrs(resource);
917 static int acpi_power_meter_remove(struct acpi_device *device)
919 struct acpi_power_meter_resource *resource;
921 if (!device || !acpi_driver_data(device))
924 resource = acpi_driver_data(device);
925 hwmon_device_unregister(resource->hwmon_dev);
927 free_capabilities(resource);
928 remove_attrs(resource);
934 #ifdef CONFIG_PM_SLEEP
936 static int acpi_power_meter_resume(struct device *dev)
938 struct acpi_power_meter_resource *resource;
943 resource = acpi_driver_data(to_acpi_device(dev));
947 free_capabilities(resource);
948 read_capabilities(resource);
953 #endif /* CONFIG_PM_SLEEP */
955 static SIMPLE_DEV_PM_OPS(acpi_power_meter_pm, NULL, acpi_power_meter_resume);
957 static struct acpi_driver acpi_power_meter_driver = {
958 .name = "power_meter",
959 .class = ACPI_POWER_METER_CLASS,
960 .ids = power_meter_ids,
962 .add = acpi_power_meter_add,
963 .remove = acpi_power_meter_remove,
964 .notify = acpi_power_meter_notify,
966 .drv.pm = &acpi_power_meter_pm,
969 /* Module init/exit routines */
970 static int __init enable_cap_knobs(const struct dmi_system_id *d)
976 static struct dmi_system_id __initdata pm_dmi_table[] = {
978 enable_cap_knobs, "IBM Active Energy Manager",
980 DMI_MATCH(DMI_SYS_VENDOR, "IBM")
986 static int __init acpi_power_meter_init(void)
993 dmi_check_system(pm_dmi_table);
995 result = acpi_bus_register_driver(&acpi_power_meter_driver);
1002 static void __exit acpi_power_meter_exit(void)
1004 acpi_bus_unregister_driver(&acpi_power_meter_driver);
1008 MODULE_DESCRIPTION("ACPI 4.0 power meter driver");
1009 MODULE_LICENSE("GPL");
1011 module_param(force_cap_on, bool, 0644);
1012 MODULE_PARM_DESC(force_cap_on, "Enable power cap even it is unsafe to do so.");
1014 module_init(acpi_power_meter_init);
1015 module_exit(acpi_power_meter_exit);