blob: fff9696bea254cb1dbe707568c5711840197d0f5 [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
Len Brownf52fd662007-02-12 22:42:12 -050038MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050039MODULE_DESCRIPTION("ACPI Fan Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070040MODULE_LICENSE("GPL");
41
Len Brown4be44fc2005-08-05 00:44:28 -040042static int acpi_fan_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010043static int acpi_fan_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Thomas Renninger1ba90e32007-07-23 14:44:41 +020045static const struct acpi_device_id fan_device_ids[] = {
46 {"PNP0C0B", 0},
47 {"", 0},
48};
49MODULE_DEVICE_TABLE(acpi, fan_device_ids);
50
Rafael J. Wysocki90692402012-08-09 23:00:02 +020051#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +020052static int acpi_fan_suspend(struct device *dev);
53static int acpi_fan_resume(struct device *dev);
Aaron Lub9b85152014-02-19 12:16:48 +080054static struct dev_pm_ops acpi_fan_pm = {
55 .resume = acpi_fan_resume,
56 .freeze = acpi_fan_suspend,
57 .thaw = acpi_fan_resume,
58 .restore = acpi_fan_resume,
59};
60#define FAN_PM_OPS_PTR (&acpi_fan_pm)
Shuah Khanb108e0e2014-02-12 20:19:08 -070061#else
Aaron Lub9b85152014-02-19 12:16:48 +080062#define FAN_PM_OPS_PTR NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +020063#endif
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +020064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static struct acpi_driver acpi_fan_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050066 .name = "fan",
Len Brown4be44fc2005-08-05 00:44:28 -040067 .class = ACPI_FAN_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020068 .ids = fan_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040069 .ops = {
70 .add = acpi_fan_add,
71 .remove = acpi_fan_remove,
72 },
Aaron Lub9b85152014-02-19 12:16:48 +080073 .drv.pm = FAN_PM_OPS_PTR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
Zhang Rui05a83d92008-01-17 15:51:24 +080076/* thermal cooling device callbacks */
Matthew Garrett6503e5d2008-11-27 17:48:13 +000077static int fan_get_max_state(struct thermal_cooling_device *cdev, unsigned long
78 *state)
Zhang Rui05a83d92008-01-17 15:51:24 +080079{
80 /* ACPI fan device only support two states: ON/OFF */
Matthew Garrett6503e5d2008-11-27 17:48:13 +000081 *state = 1;
82 return 0;
Zhang Rui05a83d92008-01-17 15:51:24 +080083}
84
Matthew Garrett6503e5d2008-11-27 17:48:13 +000085static int fan_get_cur_state(struct thermal_cooling_device *cdev, unsigned long
86 *state)
Zhang Rui05a83d92008-01-17 15:51:24 +080087{
88 struct acpi_device *device = cdev->devdata;
Zhang Rui05a83d92008-01-17 15:51:24 +080089 int result;
Naresh Bhat85eb9822013-07-01 19:51:00 +053090 int acpi_state = ACPI_STATE_D0;
Zhang Rui05a83d92008-01-17 15:51:24 +080091
92 if (!device)
93 return -EINVAL;
94
Aaron Lu2bb3a2b2013-11-19 15:43:52 +080095 result = acpi_device_update_power(device, &acpi_state);
Zhang Rui05a83d92008-01-17 15:51:24 +080096 if (result)
97 return result;
98
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +020099 *state = (acpi_state == ACPI_STATE_D3_COLD ? 0 :
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000100 (acpi_state == ACPI_STATE_D0 ? 1 : -1));
101 return 0;
Zhang Rui05a83d92008-01-17 15:51:24 +0800102}
103
104static int
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000105fan_set_cur_state(struct thermal_cooling_device *cdev, unsigned long state)
Zhang Rui05a83d92008-01-17 15:51:24 +0800106{
107 struct acpi_device *device = cdev->devdata;
108 int result;
109
110 if (!device || (state != 0 && state != 1))
111 return -EINVAL;
112
Aaron Lu2bb3a2b2013-11-19 15:43:52 +0800113 result = acpi_device_set_power(device,
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +0200114 state ? ACPI_STATE_D0 : ACPI_STATE_D3_COLD);
Zhang Rui05a83d92008-01-17 15:51:24 +0800115
116 return result;
117}
118
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400119static const struct thermal_cooling_device_ops fan_cooling_ops = {
Zhang Rui05a83d92008-01-17 15:51:24 +0800120 .get_max_state = fan_get_max_state,
121 .get_cur_state = fan_get_cur_state,
122 .set_cur_state = fan_set_cur_state,
123};
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 Driver Interface
127 -------------------------------------------------------------------------- */
128
Len Brown4be44fc2005-08-05 00:44:28 -0400129static int acpi_fan_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Len Brown4be44fc2005-08-05 00:44:28 -0400131 int result = 0;
Zhang Rui05a83d92008-01-17 15:51:24 +0800132 struct thermal_cooling_device *cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Pavel Machekc65ade42005-08-05 00:37:45 -0400134 strcpy(acpi_device_name(device), "Fan");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 strcpy(acpi_device_class(device), ACPI_FAN_CLASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Aaron Lu2bb3a2b2013-11-19 15:43:52 +0800137 result = acpi_device_update_power(device, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (result) {
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100139 printk(KERN_ERR PREFIX "Setting initial power state\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 goto end;
141 }
142
Zhang Rui05a83d92008-01-17 15:51:24 +0800143 cdev = thermal_cooling_device_register("Fan", device,
144 &fan_cooling_ops);
Thomas Sujith19b36782008-02-15 01:01:52 -0500145 if (IS_ERR(cdev)) {
146 result = PTR_ERR(cdev);
147 goto end;
148 }
Zhang Rui05a83d92008-01-17 15:51:24 +0800149
Mike Travis13c41152009-12-14 13:38:30 -0800150 dev_dbg(&device->dev, "registered as cooling_device%d\n", cdev->id);
Thomas Sujith19b36782008-02-15 01:01:52 -0500151
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700152 device->driver_data = cdev;
Julia Lawall90300622008-04-11 10:09:24 +0800153 result = sysfs_create_link(&device->dev.kobj,
154 &cdev->device.kobj,
155 "thermal_cooling");
156 if (result)
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200157 dev_err(&device->dev, "Failed to create sysfs link "
158 "'thermal_cooling'\n");
Julia Lawall90300622008-04-11 10:09:24 +0800159
160 result = sysfs_create_link(&cdev->device.kobj,
161 &device->dev.kobj,
162 "device");
163 if (result)
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200164 dev_err(&device->dev, "Failed to create sysfs link "
165 "'device'\n");
Zhang Rui05a83d92008-01-17 15:51:24 +0800166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400168 acpi_device_name(device), acpi_device_bid(device),
169 !device->power.state ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Felipe Contreras568b6ad2013-08-30 16:16:05 -0500171end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100175static int acpi_fan_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Aaron Lu8dd41f72013-11-19 15:21:24 +0800177 struct thermal_cooling_device *cdev = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Zhang Rui05a83d92008-01-17 15:51:24 +0800179 sysfs_remove_link(&device->dev.kobj, "thermal_cooling");
180 sysfs_remove_link(&cdev->device.kobj, "device");
181 thermal_cooling_device_unregister(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Patrick Mocheld550d982006-06-27 00:41:40 -0400183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200186#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200187static int acpi_fan_suspend(struct device *dev)
Len Brownec683732008-01-23 22:41:20 -0500188{
Aaron Lu2bb3a2b2013-11-19 15:43:52 +0800189 acpi_device_set_power(to_acpi_device(dev), ACPI_STATE_D0);
Len Brownec683732008-01-23 22:41:20 -0500190
191 return AE_OK;
192}
193
Rafael J. Wysocki62fcbdd2012-06-27 23:26:07 +0200194static int acpi_fan_resume(struct device *dev)
Len Brownec683732008-01-23 22:41:20 -0500195{
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100196 int result;
Len Brownec683732008-01-23 22:41:20 -0500197
Aaron Lu2bb3a2b2013-11-19 15:43:52 +0800198 result = acpi_device_update_power(to_acpi_device(dev), NULL);
Rafael J. Wysocki488a76c2010-11-25 00:11:24 +0100199 if (result)
200 printk(KERN_ERR PREFIX "Error updating fan power state\n");
Len Brownec683732008-01-23 22:41:20 -0500201
202 return result;
203}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200204#endif
Len Brownec683732008-01-23 22:41:20 -0500205
Mika Westerbergd8014c42012-09-07 10:31:40 +0300206module_acpi_driver(acpi_fan_driver);