fan.c 10.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 *  acpi_fan.c - ACPI Fan Driver ($Revision: 29 $)
 *
 *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
 *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or (at
 *  your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful, but
 *  WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/types.h>
#include <asm/uaccess.h>
31
#include <linux/thermal.h>
32
#include <linux/acpi.h>
A
Aaron Lu 已提交
33
#include <linux/platform_device.h>
34
#include <linux/sort.h>
L
Linus Torvalds 已提交
35

36
MODULE_AUTHOR("Paul Diefenbaugh");
37
MODULE_DESCRIPTION("ACPI Fan Driver");
L
Linus Torvalds 已提交
38 39
MODULE_LICENSE("GPL");

A
Aaron Lu 已提交
40 41
static int acpi_fan_probe(struct platform_device *pdev);
static int acpi_fan_remove(struct platform_device *pdev);
L
Linus Torvalds 已提交
42

43 44 45 46 47 48
static const struct acpi_device_id fan_device_ids[] = {
	{"PNP0C0B", 0},
	{"", 0},
};
MODULE_DEVICE_TABLE(acpi, fan_device_ids);

49
#ifdef CONFIG_PM_SLEEP
50 51
static int acpi_fan_suspend(struct device *dev);
static int acpi_fan_resume(struct device *dev);
52 53 54 55 56 57 58
static struct dev_pm_ops acpi_fan_pm = {
	.resume = acpi_fan_resume,
	.freeze = acpi_fan_suspend,
	.thaw = acpi_fan_resume,
	.restore = acpi_fan_resume,
};
#define FAN_PM_OPS_PTR (&acpi_fan_pm)
59
#else
60
#define FAN_PM_OPS_PTR NULL
61
#endif
62

63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
struct acpi_fan_fps {
	u64 control;
	u64 trip_point;
	u64 speed;
	u64 noise_level;
	u64 power;
};

struct acpi_fan_fif {
	u64 revision;
	u64 fine_grain_ctrl;
	u64 step_size;
	u64 low_speed_notification;
};

struct acpi_fan {
	bool acpi4;
	struct acpi_fan_fif fif;
	struct acpi_fan_fps *fps;
	int fps_count;
	struct thermal_cooling_device *cdev;
};

A
Aaron Lu 已提交
86 87 88 89 90 91 92 93
static struct platform_driver acpi_fan_driver = {
	.probe = acpi_fan_probe,
	.remove = acpi_fan_remove,
	.driver = {
		.name = "acpi-fan",
		.acpi_match_table = fan_device_ids,
		.pm = FAN_PM_OPS_PTR,
	},
L
Linus Torvalds 已提交
94 95
};

96
/* thermal cooling device callbacks */
97 98
static int fan_get_max_state(struct thermal_cooling_device *cdev, unsigned long
			     *state)
99
{
100 101 102 103 104 105 106
	struct acpi_device *device = cdev->devdata;
	struct acpi_fan *fan = acpi_driver_data(device);

	if (fan->acpi4)
		*state = fan->fps_count - 1;
	else
		*state = 1;
107
	return 0;
108 109
}

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static int fan_get_state_acpi4(struct acpi_device *device, unsigned long *state)
{
	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
	struct acpi_fan *fan = acpi_driver_data(device);
	union acpi_object *obj;
	acpi_status status;
	int control, i;

	status = acpi_evaluate_object(device->handle, "_FST", NULL, &buffer);
	if (ACPI_FAILURE(status)) {
		dev_err(&device->dev, "Get fan state failed\n");
		return status;
	}

	obj = buffer.pointer;
	if (!obj || obj->type != ACPI_TYPE_PACKAGE ||
	    obj->package.count != 3 ||
	    obj->package.elements[1].type != ACPI_TYPE_INTEGER) {
		dev_err(&device->dev, "Invalid _FST data\n");
		status = -EINVAL;
		goto err;
	}

	control = obj->package.elements[1].integer.value;
	for (i = 0; i < fan->fps_count; i++) {
		if (control == fan->fps[i].control)
			break;
	}
	if (i == fan->fps_count) {
		dev_dbg(&device->dev, "Invalid control value returned\n");
		status = -EINVAL;
		goto err;
	}

	*state = i;

err:
	kfree(obj);
	return status;
}

static int fan_get_state(struct acpi_device *device, unsigned long *state)
152 153
{
	int result;
154
	int acpi_state = ACPI_STATE_D0;
155

156
	result = acpi_device_update_power(device, &acpi_state);
157 158 159
	if (result)
		return result;

160
	*state = (acpi_state == ACPI_STATE_D3_COLD ? 0 :
161 162
		 (acpi_state == ACPI_STATE_D0 ? 1 : -1));
	return 0;
163 164
}

165 166
static int fan_get_cur_state(struct thermal_cooling_device *cdev, unsigned long
			     *state)
167 168
{
	struct acpi_device *device = cdev->devdata;
169 170 171 172 173 174 175
	struct acpi_fan *fan = acpi_driver_data(device);

	if (fan->acpi4)
		return fan_get_state_acpi4(device, state);
	else
		return fan_get_state(device, state);
}
176

177 178 179
static int fan_set_state(struct acpi_device *device, unsigned long state)
{
	if (state != 0 && state != 1)
180 181
		return -EINVAL;

182 183 184
	return acpi_device_set_power(device,
				     state ? ACPI_STATE_D0 : ACPI_STATE_D3_COLD);
}
185

186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
static int fan_set_state_acpi4(struct acpi_device *device, unsigned long state)
{
	struct acpi_fan *fan = acpi_driver_data(device);
	acpi_status status;

	if (state >= fan->fps_count)
		return -EINVAL;

	status = acpi_execute_simple_method(device->handle, "_FSL",
					    fan->fps[state].control);
	if (ACPI_FAILURE(status)) {
		dev_dbg(&device->dev, "Failed to set state by _FSL\n");
		return status;
	}

	return 0;
202 203
}

204 205 206 207 208 209 210 211 212 213 214 215
static int
fan_set_cur_state(struct thermal_cooling_device *cdev, unsigned long state)
{
	struct acpi_device *device = cdev->devdata;
	struct acpi_fan *fan = acpi_driver_data(device);

	if (fan->acpi4)
		return fan_set_state_acpi4(device, state);
	else
		return fan_set_state(device, state);
 }

V
Vasiliy Kulikov 已提交
216
static const struct thermal_cooling_device_ops fan_cooling_ops = {
217 218 219 220 221
	.get_max_state = fan_get_max_state,
	.get_cur_state = fan_get_cur_state,
	.set_cur_state = fan_set_cur_state,
};

L
Linus Torvalds 已提交
222 223 224 225
/* --------------------------------------------------------------------------
                                 Driver Interface
   -------------------------------------------------------------------------- */

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
static bool acpi_fan_is_acpi4(struct acpi_device *device)
{
	return acpi_has_method(device->handle, "_FIF") &&
	       acpi_has_method(device->handle, "_FPS") &&
	       acpi_has_method(device->handle, "_FSL") &&
	       acpi_has_method(device->handle, "_FST");
}

static int acpi_fan_get_fif(struct acpi_device *device)
{
	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
	struct acpi_fan *fan = acpi_driver_data(device);
	struct acpi_buffer format = { sizeof("NNNN"), "NNNN" };
	struct acpi_buffer fif = { sizeof(fan->fif), &fan->fif };
	union acpi_object *obj;
	acpi_status status;

	status = acpi_evaluate_object(device->handle, "_FIF", NULL, &buffer);
	if (ACPI_FAILURE(status))
		return status;

	obj = buffer.pointer;
	if (!obj || obj->type != ACPI_TYPE_PACKAGE) {
		dev_err(&device->dev, "Invalid _FIF data\n");
		status = -EINVAL;
		goto err;
	}

	status = acpi_extract_package(obj, &format, &fif);
	if (ACPI_FAILURE(status)) {
		dev_err(&device->dev, "Invalid _FIF element\n");
		status = -EINVAL;
	}

err:
	kfree(obj);
	return status;
}

static int acpi_fan_speed_cmp(const void *a, const void *b)
{
	const struct acpi_fan_fps *fps1 = a;
	const struct acpi_fan_fps *fps2 = b;
	return fps1->speed - fps2->speed;
}

static int acpi_fan_get_fps(struct acpi_device *device)
{
	struct acpi_fan *fan = acpi_driver_data(device);
	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
	union acpi_object *obj;
	acpi_status status;
	int i;

	status = acpi_evaluate_object(device->handle, "_FPS", NULL, &buffer);
	if (ACPI_FAILURE(status))
		return status;

	obj = buffer.pointer;
	if (!obj || obj->type != ACPI_TYPE_PACKAGE || obj->package.count < 2) {
		dev_err(&device->dev, "Invalid _FPS data\n");
		status = -EINVAL;
		goto err;
	}

	fan->fps_count = obj->package.count - 1; /* minus revision field */
	fan->fps = devm_kzalloc(&device->dev,
				fan->fps_count * sizeof(struct acpi_fan_fps),
				GFP_KERNEL);
	if (!fan->fps) {
		dev_err(&device->dev, "Not enough memory\n");
		status = -ENOMEM;
		goto err;
	}
	for (i = 0; i < fan->fps_count; i++) {
		struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" };
		struct acpi_buffer fps = { sizeof(fan->fps[i]), &fan->fps[i] };
		status = acpi_extract_package(&obj->package.elements[i + 1],
					      &format, &fps);
		if (ACPI_FAILURE(status)) {
			dev_err(&device->dev, "Invalid _FPS element\n");
			break;
		}
	}

	/* sort the state array according to fan speed in increase order */
	sort(fan->fps, fan->fps_count, sizeof(*fan->fps),
	     acpi_fan_speed_cmp, NULL);

err:
	kfree(obj);
	return status;
}

A
Aaron Lu 已提交
320
static int acpi_fan_probe(struct platform_device *pdev)
L
Linus Torvalds 已提交
321
{
L
Len Brown 已提交
322
	int result = 0;
323
	struct thermal_cooling_device *cdev;
324
	struct acpi_fan *fan;
A
Aaron Lu 已提交
325
	struct acpi_device *device = ACPI_COMPANION(&pdev->dev);
L
Linus Torvalds 已提交
326

327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
	fan = devm_kzalloc(&pdev->dev, sizeof(*fan), GFP_KERNEL);
	if (!fan) {
		dev_err(&device->dev, "No memory for fan\n");
		return -ENOMEM;
	}
	device->driver_data = fan;
	platform_set_drvdata(pdev, fan);

	if (acpi_fan_is_acpi4(device)) {
		if (acpi_fan_get_fif(device) || acpi_fan_get_fps(device))
			goto end;
		fan->acpi4 = true;
	} else {
		result = acpi_device_update_power(device, NULL);
		if (result) {
			dev_err(&device->dev, "Setting initial power state\n");
			goto end;
		}
L
Linus Torvalds 已提交
345 346
	}

347 348
	cdev = thermal_cooling_device_register("Fan", device,
						&fan_cooling_ops);
349 350 351 352
	if (IS_ERR(cdev)) {
		result = PTR_ERR(cdev);
		goto end;
	}
353

A
Aaron Lu 已提交
354
	dev_dbg(&pdev->dev, "registered as cooling_device%d\n", cdev->id);
355

356
	fan->cdev = cdev;
A
Aaron Lu 已提交
357
	result = sysfs_create_link(&pdev->dev.kobj,
358 359 360
				   &cdev->device.kobj,
				   "thermal_cooling");
	if (result)
A
Aaron Lu 已提交
361
		dev_err(&pdev->dev, "Failed to create sysfs link "
362
			"'thermal_cooling'\n");
363 364

	result = sysfs_create_link(&cdev->device.kobj,
A
Aaron Lu 已提交
365
				   &pdev->dev.kobj,
366 367
				   "device");
	if (result)
A
Aaron Lu 已提交
368
		dev_err(&pdev->dev, "Failed to create sysfs link "
369
			"'device'\n");
370

371
end:
372
	return result;
L
Linus Torvalds 已提交
373 374
}

A
Aaron Lu 已提交
375
static int acpi_fan_remove(struct platform_device *pdev)
L
Linus Torvalds 已提交
376
{
377
	struct acpi_fan *fan = platform_get_drvdata(pdev);
L
Linus Torvalds 已提交
378

A
Aaron Lu 已提交
379
	sysfs_remove_link(&pdev->dev.kobj, "thermal_cooling");
380 381
	sysfs_remove_link(&fan->cdev->device.kobj, "device");
	thermal_cooling_device_unregister(fan->cdev);
L
Linus Torvalds 已提交
382

383
	return 0;
L
Linus Torvalds 已提交
384 385
}

386
#ifdef CONFIG_PM_SLEEP
387
static int acpi_fan_suspend(struct device *dev)
388
{
389 390 391 392
	struct acpi_fan *fan = dev_get_drvdata(dev);
	if (fan->acpi4)
		return 0;

A
Aaron Lu 已提交
393
	acpi_device_set_power(ACPI_COMPANION(dev), ACPI_STATE_D0);
394 395 396 397

	return AE_OK;
}

398
static int acpi_fan_resume(struct device *dev)
399
{
400
	int result;
401 402 403 404
	struct acpi_fan *fan = dev_get_drvdata(dev);

	if (fan->acpi4)
		return 0;
405

A
Aaron Lu 已提交
406
	result = acpi_device_update_power(ACPI_COMPANION(dev), NULL);
407
	if (result)
A
Aaron Lu 已提交
408
		dev_err(dev, "Error updating fan power state\n");
409 410 411

	return result;
}
412
#endif
413

A
Aaron Lu 已提交
414
module_platform_driver(acpi_fan_driver);