blob: 1fb62900f32a9c57d329fd3e5480bc0dc7c305b8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_fan.c - ACPI Fan Driver ($Revision: 29 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
Zhang Rui05a83d92008-01-17 15:51:24 +080031#include <linux/thermal.h>
Lv Zheng8b484632013-12-03 08:49:16 +080032#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Len Browna192a952009-07-28 16:45:54 -040034#define PREFIX "ACPI: "
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define ACPI_FAN_CLASS "fan"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define ACPI_FAN_FILE_STATE "state"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#define _COMPONENT ACPI_FAN_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050040ACPI_MODULE_NAME("fan");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Len Brownf52fd662007-02-12 22:42:12 -050042MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050043MODULE_DESCRIPTION("ACPI Fan Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070044MODULE_LICENSE("GPL");
45
Len Brown4be44fc2005-08-05 00:44:28 -040046static int acpi_fan_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010047static int acpi_fan_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Thomas Renninger1ba90e32007-07-23 14:44:41 +020049static const struct acpi_device_id fan_device_ids[] = {
50 {"PNP0C0B", 0},
51 {"", 0},
52};
53MODULE_DEVICE_TABLE(acpi, fan_device_ids);
54
Rafael J. Wysocki90692402012-08-09 23:00:02 +020055#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +020056static int acpi_fan_suspend(struct device *dev);
57static int acpi_fan_resume(struct device *dev);
Rafael J. Wysocki90692402012-08-09 23:00:02 +020058#endif
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +020059static SIMPLE_DEV_PM_OPS(acpi_fan_pm, acpi_fan_suspend, acpi_fan_resume);
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static struct acpi_driver acpi_fan_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050062 .name = "fan",
Len Brown4be44fc2005-08-05 00:44:28 -040063 .class = ACPI_FAN_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020064 .ids = fan_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040065 .ops = {
66 .add = acpi_fan_add,
67 .remove = acpi_fan_remove,
68 },
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +020069 .drv.pm = &acpi_fan_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
Zhang Rui05a83d92008-01-17 15:51:24 +080072/* thermal cooling device callbacks */
Matthew Garrett6503e5d2008-11-27 17:48:13 +000073static int fan_get_max_state(struct thermal_cooling_device *cdev, unsigned long
74 *state)
Zhang Rui05a83d92008-01-17 15:51:24 +080075{
76 /* ACPI fan device only support two states: ON/OFF */
Matthew Garrett6503e5d2008-11-27 17:48:13 +000077 *state = 1;
78 return 0;
Zhang Rui05a83d92008-01-17 15:51:24 +080079}
80
Matthew Garrett6503e5d2008-11-27 17:48:13 +000081static int fan_get_cur_state(struct thermal_cooling_device *cdev, unsigned long
82 *state)
Zhang Rui05a83d92008-01-17 15:51:24 +080083{
84 struct acpi_device *device = cdev->devdata;
Zhang Rui05a83d92008-01-17 15:51:24 +080085 int result;
Naresh Bhat85eb9822013-07-01 19:51:00 +053086 int acpi_state = ACPI_STATE_D0;
Zhang Rui05a83d92008-01-17 15:51:24 +080087
88 if (!device)
89 return -EINVAL;
90
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +010091 result = acpi_bus_update_power(device->handle, &acpi_state);
Zhang Rui05a83d92008-01-17 15:51:24 +080092 if (result)
93 return result;
94
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +020095 *state = (acpi_state == ACPI_STATE_D3_COLD ? 0 :
Matthew Garrett6503e5d2008-11-27 17:48:13 +000096 (acpi_state == ACPI_STATE_D0 ? 1 : -1));
97 return 0;
Zhang Rui05a83d92008-01-17 15:51:24 +080098}
99
100static int
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000101fan_set_cur_state(struct thermal_cooling_device *cdev, unsigned long state)
Zhang Rui05a83d92008-01-17 15:51:24 +0800102{
103 struct acpi_device *device = cdev->devdata;
104 int result;
105
106 if (!device || (state != 0 && state != 1))
107 return -EINVAL;
108
109 result = acpi_bus_set_power(device->handle,
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +0200110 state ? ACPI_STATE_D0 : ACPI_STATE_D3_COLD);
Zhang Rui05a83d92008-01-17 15:51:24 +0800111
112 return result;
113}
114
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400115static const struct thermal_cooling_device_ops fan_cooling_ops = {
Zhang Rui05a83d92008-01-17 15:51:24 +0800116 .get_max_state = fan_get_max_state,
117 .get_cur_state = fan_get_cur_state,
118 .set_cur_state = fan_set_cur_state,
119};
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 Driver Interface
123 -------------------------------------------------------------------------- */
124
Len Brown4be44fc2005-08-05 00:44:28 -0400125static int acpi_fan_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Len Brown4be44fc2005-08-05 00:44:28 -0400127 int result = 0;
Zhang Rui05a83d92008-01-17 15:51:24 +0800128 struct thermal_cooling_device *cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400131 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Pavel Machekc65ade42005-08-05 00:37:45 -0400133 strcpy(acpi_device_name(device), "Fan");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 strcpy(acpi_device_class(device), ACPI_FAN_CLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100136 result = acpi_bus_update_power(device->handle, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (result) {
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100138 printk(KERN_ERR PREFIX "Setting initial power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto end;
140 }
141
Zhang Rui05a83d92008-01-17 15:51:24 +0800142 cdev = thermal_cooling_device_register("Fan", device,
143 &fan_cooling_ops);
Thomas Sujith19b36782008-02-15 01:01:52 -0500144 if (IS_ERR(cdev)) {
145 result = PTR_ERR(cdev);
146 goto end;
147 }
Zhang Rui05a83d92008-01-17 15:51:24 +0800148
Mike Travis13c41152009-12-14 13:38:30 -0800149 dev_dbg(&device->dev, "registered as cooling_device%d\n", cdev->id);
Thomas Sujith19b36782008-02-15 01:01:52 -0500150
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700151 device->driver_data = cdev;
Julia Lawall90300622008-04-11 10:09:24 +0800152 result = sysfs_create_link(&device->dev.kobj,
153 &cdev->device.kobj,
154 "thermal_cooling");
155 if (result)
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200156 dev_err(&device->dev, "Failed to create sysfs link "
157 "'thermal_cooling'\n");
Julia Lawall90300622008-04-11 10:09:24 +0800158
159 result = sysfs_create_link(&cdev->device.kobj,
160 &device->dev.kobj,
161 "device");
162 if (result)
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200163 dev_err(&device->dev, "Failed to create sysfs link "
164 "'device'\n");
Zhang Rui05a83d92008-01-17 15:51:24 +0800165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400167 acpi_device_name(device), acpi_device_bid(device),
168 !device->power.state ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Felipe Contreras568b6ad2013-08-30 16:16:05 -0500170end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400171 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100174static int acpi_fan_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Colin Ian Kingf0c29582013-03-25 10:50:05 +0000176 struct thermal_cooling_device *cdev;
Zhang Rui05a83d92008-01-17 15:51:24 +0800177
Colin Ian Kingf0c29582013-03-25 10:50:05 +0000178 if (!device)
179 return -EINVAL;
180
181 cdev = acpi_driver_data(device);
182 if (!cdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400183 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Zhang Rui05a83d92008-01-17 15:51:24 +0800185 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
186 sysfs_remove_link(&cdev->device.kobj, "device");
187 thermal_cooling_device_unregister(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Patrick Mocheld550d982006-06-27 00:41:40 -0400189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200192#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200193static int acpi_fan_suspend(struct device *dev)
Len Brownec683732008-01-23 22:41:20 -0500194{
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200195 if (!dev)
Len Brownec683732008-01-23 22:41:20 -0500196 return -EINVAL;
197
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200198 acpi_bus_set_power(to_acpi_device(dev)->handle, ACPI_STATE_D0);
Len Brownec683732008-01-23 22:41:20 -0500199
200 return AE_OK;
201}
202
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200203static int acpi_fan_resume(struct device *dev)
Len Brownec683732008-01-23 22:41:20 -0500204{
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100205 int result;
Len Brownec683732008-01-23 22:41:20 -0500206
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200207 if (!dev)
Len Brownec683732008-01-23 22:41:20 -0500208 return -EINVAL;
209
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200210 result = acpi_bus_update_power(to_acpi_device(dev)->handle, NULL);
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100211 if (result)
212 printk(KERN_ERR PREFIX "Error updating fan power state\n");
Len Brownec683732008-01-23 22:41:20 -0500213
214 return result;
215}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200216#endif
Len Brownec683732008-01-23 22:41:20 -0500217
Mika Westerbergd8014c42012-09-07 10:31:40 +0300218module_acpi_driver(acpi_fan_driver);