blob: 8acf53e6296605a013a6359299c3e9cf29bcbf67 [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);
Aaron Lub9b85152014-02-19 12:16:48 +080058static struct dev_pm_ops acpi_fan_pm = {
59 .resume = acpi_fan_resume,
60 .freeze = acpi_fan_suspend,
61 .thaw = acpi_fan_resume,
62 .restore = acpi_fan_resume,
63};
64#define FAN_PM_OPS_PTR (&acpi_fan_pm)
Shuah Khanb108e0e2014-02-12 20:19:08 -070065#else
Aaron Lub9b85152014-02-19 12:16:48 +080066#define FAN_PM_OPS_PTR NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +020067#endif
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +020068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static struct acpi_driver acpi_fan_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050070 .name = "fan",
Len Brown4be44fc2005-08-05 00:44:28 -040071 .class = ACPI_FAN_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020072 .ids = fan_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040073 .ops = {
74 .add = acpi_fan_add,
75 .remove = acpi_fan_remove,
76 },
Aaron Lub9b85152014-02-19 12:16:48 +080077 .drv.pm = FAN_PM_OPS_PTR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
Zhang Rui05a83d92008-01-17 15:51:24 +080080/* thermal cooling device callbacks */
Matthew Garrett6503e5d2008-11-27 17:48:13 +000081static int fan_get_max_state(struct thermal_cooling_device *cdev, unsigned long
82 *state)
Zhang Rui05a83d92008-01-17 15:51:24 +080083{
84 /* ACPI fan device only support two states: ON/OFF */
Matthew Garrett6503e5d2008-11-27 17:48:13 +000085 *state = 1;
86 return 0;
Zhang Rui05a83d92008-01-17 15:51:24 +080087}
88
Matthew Garrett6503e5d2008-11-27 17:48:13 +000089static int fan_get_cur_state(struct thermal_cooling_device *cdev, unsigned long
90 *state)
Zhang Rui05a83d92008-01-17 15:51:24 +080091{
92 struct acpi_device *device = cdev->devdata;
Zhang Rui05a83d92008-01-17 15:51:24 +080093 int result;
Naresh Bhat85eb9822013-07-01 19:51:00 +053094 int acpi_state = ACPI_STATE_D0;
Zhang Rui05a83d92008-01-17 15:51:24 +080095
96 if (!device)
97 return -EINVAL;
98
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +010099 result = acpi_bus_update_power(device->handle, &acpi_state);
Zhang Rui05a83d92008-01-17 15:51:24 +0800100 if (result)
101 return result;
102
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +0200103 *state = (acpi_state == ACPI_STATE_D3_COLD ? 0 :
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000104 (acpi_state == ACPI_STATE_D0 ? 1 : -1));
105 return 0;
Zhang Rui05a83d92008-01-17 15:51:24 +0800106}
107
108static int
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000109fan_set_cur_state(struct thermal_cooling_device *cdev, unsigned long state)
Zhang Rui05a83d92008-01-17 15:51:24 +0800110{
111 struct acpi_device *device = cdev->devdata;
112 int result;
113
114 if (!device || (state != 0 && state != 1))
115 return -EINVAL;
116
117 result = acpi_bus_set_power(device->handle,
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +0200118 state ? ACPI_STATE_D0 : ACPI_STATE_D3_COLD);
Zhang Rui05a83d92008-01-17 15:51:24 +0800119
120 return result;
121}
122
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400123static const struct thermal_cooling_device_ops fan_cooling_ops = {
Zhang Rui05a83d92008-01-17 15:51:24 +0800124 .get_max_state = fan_get_max_state,
125 .get_cur_state = fan_get_cur_state,
126 .set_cur_state = fan_set_cur_state,
127};
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 Driver Interface
131 -------------------------------------------------------------------------- */
132
Len Brown4be44fc2005-08-05 00:44:28 -0400133static int acpi_fan_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Len Brown4be44fc2005-08-05 00:44:28 -0400135 int result = 0;
Zhang Rui05a83d92008-01-17 15:51:24 +0800136 struct thermal_cooling_device *cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400139 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Pavel Machekc65ade42005-08-05 00:37:45 -0400141 strcpy(acpi_device_name(device), "Fan");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 strcpy(acpi_device_class(device), ACPI_FAN_CLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100144 result = acpi_bus_update_power(device->handle, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (result) {
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100146 printk(KERN_ERR PREFIX "Setting initial power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 goto end;
148 }
149
Zhang Rui05a83d92008-01-17 15:51:24 +0800150 cdev = thermal_cooling_device_register("Fan", device,
151 &fan_cooling_ops);
Thomas Sujith19b36782008-02-15 01:01:52 -0500152 if (IS_ERR(cdev)) {
153 result = PTR_ERR(cdev);
154 goto end;
155 }
Zhang Rui05a83d92008-01-17 15:51:24 +0800156
Mike Travis13c41152009-12-14 13:38:30 -0800157 dev_dbg(&device->dev, "registered as cooling_device%d\n", cdev->id);
Thomas Sujith19b36782008-02-15 01:01:52 -0500158
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700159 device->driver_data = cdev;
Julia Lawall90300622008-04-11 10:09:24 +0800160 result = sysfs_create_link(&device->dev.kobj,
161 &cdev->device.kobj,
162 "thermal_cooling");
163 if (result)
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200164 dev_err(&device->dev, "Failed to create sysfs link "
165 "'thermal_cooling'\n");
Julia Lawall90300622008-04-11 10:09:24 +0800166
167 result = sysfs_create_link(&cdev->device.kobj,
168 &device->dev.kobj,
169 "device");
170 if (result)
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200171 dev_err(&device->dev, "Failed to create sysfs link "
172 "'device'\n");
Zhang Rui05a83d92008-01-17 15:51:24 +0800173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400175 acpi_device_name(device), acpi_device_bid(device),
176 !device->power.state ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Felipe Contreras568b6ad2013-08-30 16:16:05 -0500178end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400179 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100182static int acpi_fan_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Colin Ian Kingf0c29582013-03-25 10:50:05 +0000184 struct thermal_cooling_device *cdev;
Zhang Rui05a83d92008-01-17 15:51:24 +0800185
Colin Ian Kingf0c29582013-03-25 10:50:05 +0000186 if (!device)
187 return -EINVAL;
188
189 cdev = acpi_driver_data(device);
190 if (!cdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400191 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Zhang Rui05a83d92008-01-17 15:51:24 +0800193 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
194 sysfs_remove_link(&cdev->device.kobj, "device");
195 thermal_cooling_device_unregister(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Patrick Mocheld550d982006-06-27 00:41:40 -0400197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200200#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200201static int acpi_fan_suspend(struct device *dev)
Len Brownec683732008-01-23 22:41:20 -0500202{
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200203 if (!dev)
Len Brownec683732008-01-23 22:41:20 -0500204 return -EINVAL;
205
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200206 acpi_bus_set_power(to_acpi_device(dev)->handle, ACPI_STATE_D0);
Len Brownec683732008-01-23 22:41:20 -0500207
208 return AE_OK;
209}
210
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200211static int acpi_fan_resume(struct device *dev)
Len Brownec683732008-01-23 22:41:20 -0500212{
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100213 int result;
Len Brownec683732008-01-23 22:41:20 -0500214
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200215 if (!dev)
Len Brownec683732008-01-23 22:41:20 -0500216 return -EINVAL;
217
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200218 result = acpi_bus_update_power(to_acpi_device(dev)->handle, NULL);
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100219 if (result)
220 printk(KERN_ERR PREFIX "Error updating fan power state\n");
Len Brownec683732008-01-23 22:41:20 -0500221
222 return result;
223}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200224#endif
Len Brownec683732008-01-23 22:41:20 -0500225
Mika Westerbergd8014c42012-09-07 10:31:40 +0300226module_acpi_driver(acpi_fan_driver);