2 * acpi_fan.c - ACPI Fan Driver ($Revision: 29 $)
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/types.h>
26 #include <linux/uaccess.h>
27 #include <linux/thermal.h>
28 #include <linux/acpi.h>
29 #include <linux/platform_device.h>
30 #include <linux/sort.h>
32 MODULE_AUTHOR("Paul Diefenbaugh");
33 MODULE_DESCRIPTION("ACPI Fan Driver");
34 MODULE_LICENSE("GPL");
36 static int acpi_fan_probe(struct platform_device
*pdev
);
37 static int acpi_fan_remove(struct platform_device
*pdev
);
39 static const struct acpi_device_id fan_device_ids
[] = {
44 MODULE_DEVICE_TABLE(acpi
, fan_device_ids
);
46 #ifdef CONFIG_PM_SLEEP
47 static int acpi_fan_suspend(struct device
*dev
);
48 static int acpi_fan_resume(struct device
*dev
);
49 static const struct dev_pm_ops acpi_fan_pm
= {
50 .resume
= acpi_fan_resume
,
51 .freeze
= acpi_fan_suspend
,
52 .thaw
= acpi_fan_resume
,
53 .restore
= acpi_fan_resume
,
55 #define FAN_PM_OPS_PTR (&acpi_fan_pm)
57 #define FAN_PM_OPS_PTR NULL
72 u64 low_speed_notification
;
77 struct acpi_fan_fif fif
;
78 struct acpi_fan_fps
*fps
;
80 struct thermal_cooling_device
*cdev
;
83 static struct platform_driver acpi_fan_driver
= {
84 .probe
= acpi_fan_probe
,
85 .remove
= acpi_fan_remove
,
88 .acpi_match_table
= fan_device_ids
,
93 /* thermal cooling device callbacks */
94 static int fan_get_max_state(struct thermal_cooling_device
*cdev
, unsigned long
97 struct acpi_device
*device
= cdev
->devdata
;
98 struct acpi_fan
*fan
= acpi_driver_data(device
);
101 *state
= fan
->fps_count
- 1;
107 static int fan_get_state_acpi4(struct acpi_device
*device
, unsigned long *state
)
109 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
110 struct acpi_fan
*fan
= acpi_driver_data(device
);
111 union acpi_object
*obj
;
115 status
= acpi_evaluate_object(device
->handle
, "_FST", NULL
, &buffer
);
116 if (ACPI_FAILURE(status
)) {
117 dev_err(&device
->dev
, "Get fan state failed\n");
121 obj
= buffer
.pointer
;
122 if (!obj
|| obj
->type
!= ACPI_TYPE_PACKAGE
||
123 obj
->package
.count
!= 3 ||
124 obj
->package
.elements
[1].type
!= ACPI_TYPE_INTEGER
) {
125 dev_err(&device
->dev
, "Invalid _FST data\n");
130 control
= obj
->package
.elements
[1].integer
.value
;
131 for (i
= 0; i
< fan
->fps_count
; i
++) {
132 if (control
== fan
->fps
[i
].control
)
135 if (i
== fan
->fps_count
) {
136 dev_dbg(&device
->dev
, "Invalid control value returned\n");
148 static int fan_get_state(struct acpi_device
*device
, unsigned long *state
)
151 int acpi_state
= ACPI_STATE_D0
;
153 result
= acpi_device_update_power(device
, &acpi_state
);
157 *state
= acpi_state
== ACPI_STATE_D3_COLD
158 || acpi_state
== ACPI_STATE_D3_HOT
?
159 0 : (acpi_state
== ACPI_STATE_D0
? 1 : -1);
163 static int fan_get_cur_state(struct thermal_cooling_device
*cdev
, unsigned long
166 struct acpi_device
*device
= cdev
->devdata
;
167 struct acpi_fan
*fan
= acpi_driver_data(device
);
170 return fan_get_state_acpi4(device
, state
);
172 return fan_get_state(device
, state
);
175 static int fan_set_state(struct acpi_device
*device
, unsigned long state
)
177 if (state
!= 0 && state
!= 1)
180 return acpi_device_set_power(device
,
181 state
? ACPI_STATE_D0
: ACPI_STATE_D3_COLD
);
184 static int fan_set_state_acpi4(struct acpi_device
*device
, unsigned long state
)
186 struct acpi_fan
*fan
= acpi_driver_data(device
);
189 if (state
>= fan
->fps_count
)
192 status
= acpi_execute_simple_method(device
->handle
, "_FSL",
193 fan
->fps
[state
].control
);
194 if (ACPI_FAILURE(status
)) {
195 dev_dbg(&device
->dev
, "Failed to set state by _FSL\n");
203 fan_set_cur_state(struct thermal_cooling_device
*cdev
, unsigned long state
)
205 struct acpi_device
*device
= cdev
->devdata
;
206 struct acpi_fan
*fan
= acpi_driver_data(device
);
209 return fan_set_state_acpi4(device
, state
);
211 return fan_set_state(device
, state
);
214 static const struct thermal_cooling_device_ops fan_cooling_ops
= {
215 .get_max_state
= fan_get_max_state
,
216 .get_cur_state
= fan_get_cur_state
,
217 .set_cur_state
= fan_set_cur_state
,
220 /* --------------------------------------------------------------------------
222 * --------------------------------------------------------------------------
225 static bool acpi_fan_is_acpi4(struct acpi_device
*device
)
227 return acpi_has_method(device
->handle
, "_FIF") &&
228 acpi_has_method(device
->handle
, "_FPS") &&
229 acpi_has_method(device
->handle
, "_FSL") &&
230 acpi_has_method(device
->handle
, "_FST");
233 static int acpi_fan_get_fif(struct acpi_device
*device
)
235 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
236 struct acpi_fan
*fan
= acpi_driver_data(device
);
237 struct acpi_buffer format
= { sizeof("NNNN"), "NNNN" };
238 struct acpi_buffer fif
= { sizeof(fan
->fif
), &fan
->fif
};
239 union acpi_object
*obj
;
242 status
= acpi_evaluate_object(device
->handle
, "_FIF", NULL
, &buffer
);
243 if (ACPI_FAILURE(status
))
246 obj
= buffer
.pointer
;
247 if (!obj
|| obj
->type
!= ACPI_TYPE_PACKAGE
) {
248 dev_err(&device
->dev
, "Invalid _FIF data\n");
253 status
= acpi_extract_package(obj
, &format
, &fif
);
254 if (ACPI_FAILURE(status
)) {
255 dev_err(&device
->dev
, "Invalid _FIF element\n");
264 static int acpi_fan_speed_cmp(const void *a
, const void *b
)
266 const struct acpi_fan_fps
*fps1
= a
;
267 const struct acpi_fan_fps
*fps2
= b
;
268 return fps1
->speed
- fps2
->speed
;
271 static int acpi_fan_get_fps(struct acpi_device
*device
)
273 struct acpi_fan
*fan
= acpi_driver_data(device
);
274 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
275 union acpi_object
*obj
;
279 status
= acpi_evaluate_object(device
->handle
, "_FPS", NULL
, &buffer
);
280 if (ACPI_FAILURE(status
))
283 obj
= buffer
.pointer
;
284 if (!obj
|| obj
->type
!= ACPI_TYPE_PACKAGE
|| obj
->package
.count
< 2) {
285 dev_err(&device
->dev
, "Invalid _FPS data\n");
290 fan
->fps_count
= obj
->package
.count
- 1; /* minus revision field */
291 fan
->fps
= devm_kzalloc(&device
->dev
,
292 fan
->fps_count
* sizeof(struct acpi_fan_fps
),
295 dev_err(&device
->dev
, "Not enough memory\n");
299 for (i
= 0; i
< fan
->fps_count
; i
++) {
300 struct acpi_buffer format
= { sizeof("NNNNN"), "NNNNN" };
301 struct acpi_buffer fps
= { sizeof(fan
->fps
[i
]), &fan
->fps
[i
] };
302 status
= acpi_extract_package(&obj
->package
.elements
[i
+ 1],
304 if (ACPI_FAILURE(status
)) {
305 dev_err(&device
->dev
, "Invalid _FPS element\n");
310 /* sort the state array according to fan speed in increase order */
311 sort(fan
->fps
, fan
->fps_count
, sizeof(*fan
->fps
),
312 acpi_fan_speed_cmp
, NULL
);
319 static int acpi_fan_probe(struct platform_device
*pdev
)
322 struct thermal_cooling_device
*cdev
;
323 struct acpi_fan
*fan
;
324 struct acpi_device
*device
= ACPI_COMPANION(&pdev
->dev
);
327 fan
= devm_kzalloc(&pdev
->dev
, sizeof(*fan
), GFP_KERNEL
);
329 dev_err(&device
->dev
, "No memory for fan\n");
332 device
->driver_data
= fan
;
333 platform_set_drvdata(pdev
, fan
);
335 if (acpi_fan_is_acpi4(device
)) {
336 if (acpi_fan_get_fif(device
) || acpi_fan_get_fps(device
))
340 result
= acpi_device_update_power(device
, NULL
);
342 dev_err(&device
->dev
, "Failed to set initial power state\n");
347 if (!strncmp(pdev
->name
, "PNP0C0B", strlen("PNP0C0B")))
350 name
= acpi_device_bid(device
);
352 cdev
= thermal_cooling_device_register(name
, device
,
355 result
= PTR_ERR(cdev
);
359 dev_dbg(&pdev
->dev
, "registered as cooling_device%d\n", cdev
->id
);
362 result
= sysfs_create_link(&pdev
->dev
.kobj
,
366 dev_err(&pdev
->dev
, "Failed to create sysfs link 'thermal_cooling'\n");
368 result
= sysfs_create_link(&cdev
->device
.kobj
,
372 dev_err(&pdev
->dev
, "Failed to create sysfs link 'device'\n");
378 static int acpi_fan_remove(struct platform_device
*pdev
)
380 struct acpi_fan
*fan
= platform_get_drvdata(pdev
);
382 sysfs_remove_link(&pdev
->dev
.kobj
, "thermal_cooling");
383 sysfs_remove_link(&fan
->cdev
->device
.kobj
, "device");
384 thermal_cooling_device_unregister(fan
->cdev
);
389 #ifdef CONFIG_PM_SLEEP
390 static int acpi_fan_suspend(struct device
*dev
)
392 struct acpi_fan
*fan
= dev_get_drvdata(dev
);
396 acpi_device_set_power(ACPI_COMPANION(dev
), ACPI_STATE_D0
);
401 static int acpi_fan_resume(struct device
*dev
)
404 struct acpi_fan
*fan
= dev_get_drvdata(dev
);
409 result
= acpi_device_update_power(ACPI_COMPANION(dev
), NULL
);
411 dev_err(dev
, "Error updating fan power state\n");
417 module_platform_driver(acpi_fan_driver
);