battery.c 19.5 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
/*
 *  acpi_battery.c - ACPI Battery Driver ($Revision: 37 $)
 *
 *  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 <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <asm/uaccess.h>

#include <acpi/acpi_bus.h>
#include <acpi/acpi_drivers.h>

#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF

#define ACPI_BATTERY_FORMAT_BIF	"NNNNNNNNNSSSS"
#define ACPI_BATTERY_FORMAT_BST	"NNNN"

#define ACPI_BATTERY_COMPONENT		0x00040000
#define ACPI_BATTERY_CLASS		"battery"
#define ACPI_BATTERY_HID		"PNP0C0A"
#define ACPI_BATTERY_DRIVER_NAME	"ACPI Battery Driver"
#define ACPI_BATTERY_DEVICE_NAME	"Battery"
#define ACPI_BATTERY_FILE_INFO		"info"
#define ACPI_BATTERY_FILE_STATUS	"state"
#define ACPI_BATTERY_FILE_ALARM		"alarm"
#define ACPI_BATTERY_NOTIFY_STATUS	0x80
#define ACPI_BATTERY_NOTIFY_INFO	0x81
#define ACPI_BATTERY_UNITS_WATTS	"mW"
#define ACPI_BATTERY_UNITS_AMPS		"mA"

#define _COMPONENT		ACPI_BATTERY_COMPONENT
L
Len Brown 已提交
56
ACPI_MODULE_NAME("acpi_battery")
L
Linus Torvalds 已提交
57

L
Len Brown 已提交
58
    MODULE_AUTHOR("Paul Diefenbaugh");
L
Linus Torvalds 已提交
59 60 61
MODULE_DESCRIPTION(ACPI_BATTERY_DRIVER_NAME);
MODULE_LICENSE("GPL");

62 63 64
extern struct proc_dir_entry *acpi_lock_battery_dir(void);
extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);

L
Len Brown 已提交
65 66
static int acpi_battery_add(struct acpi_device *device);
static int acpi_battery_remove(struct acpi_device *device, int type);
67
static int acpi_battery_resume(struct acpi_device *device, int status);
L
Linus Torvalds 已提交
68 69

static struct acpi_driver acpi_battery_driver = {
L
Len Brown 已提交
70 71 72 73 74
	.name = ACPI_BATTERY_DRIVER_NAME,
	.class = ACPI_BATTERY_CLASS,
	.ids = ACPI_BATTERY_HID,
	.ops = {
		.add = acpi_battery_add,
75
		.resume = acpi_battery_resume,
L
Len Brown 已提交
76 77
		.remove = acpi_battery_remove,
		},
L
Linus Torvalds 已提交
78 79 80
};

struct acpi_battery_status {
L
Len Brown 已提交
81 82 83 84
	acpi_integer state;
	acpi_integer present_rate;
	acpi_integer remaining_capacity;
	acpi_integer present_voltage;
L
Linus Torvalds 已提交
85 86 87
};

struct acpi_battery_info {
L
Len Brown 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100
	acpi_integer power_unit;
	acpi_integer design_capacity;
	acpi_integer last_full_capacity;
	acpi_integer battery_technology;
	acpi_integer design_voltage;
	acpi_integer design_capacity_warning;
	acpi_integer design_capacity_low;
	acpi_integer battery_capacity_granularity_1;
	acpi_integer battery_capacity_granularity_2;
	acpi_string model_number;
	acpi_string serial_number;
	acpi_string battery_type;
	acpi_string oem_info;
L
Linus Torvalds 已提交
101 102 103
};

struct acpi_battery_flags {
L
Len Brown 已提交
104 105 106 107
	u8 present:1;		/* Bay occupied? */
	u8 power_unit:1;	/* 0=watts, 1=apms */
	u8 alarm:1;		/* _BTP present? */
	u8 reserved:5;
L
Linus Torvalds 已提交
108 109 110
};

struct acpi_battery_trips {
L
Len Brown 已提交
111 112
	unsigned long warning;
	unsigned long low;
L
Linus Torvalds 已提交
113 114 115
};

struct acpi_battery {
116
	struct acpi_device * device;
L
Linus Torvalds 已提交
117 118
	struct acpi_battery_flags flags;
	struct acpi_battery_trips trips;
L
Len Brown 已提交
119
	unsigned long alarm;
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127
	struct acpi_battery_info *info;
};

/* --------------------------------------------------------------------------
                               Battery Management
   -------------------------------------------------------------------------- */

static int
L
Len Brown 已提交
128 129
acpi_battery_get_info(struct acpi_battery *battery,
		      struct acpi_battery_info **bif)
L
Linus Torvalds 已提交
130
{
L
Len Brown 已提交
131 132 133 134 135 136 137 138
	int result = 0;
	acpi_status status = 0;
	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
	struct acpi_buffer format = { sizeof(ACPI_BATTERY_FORMAT_BIF),
		ACPI_BATTERY_FORMAT_BIF
	};
	struct acpi_buffer data = { 0, NULL };
	union acpi_object *package = NULL;
L
Linus Torvalds 已提交
139 140 141


	if (!battery || !bif)
142
		return -EINVAL;
L
Linus Torvalds 已提交
143 144 145

	/* Evalute _BIF */

146
	status = acpi_evaluate_object(battery->device->handle, "_BIF", NULL, &buffer);
L
Linus Torvalds 已提交
147
	if (ACPI_FAILURE(status)) {
148
		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
149
		return -ENODEV;
L
Linus Torvalds 已提交
150 151
	}

152
	package = buffer.pointer;
L
Linus Torvalds 已提交
153 154 155 156 157

	/* Extract Package Data */

	status = acpi_extract_package(package, &format, &data);
	if (status != AE_BUFFER_OVERFLOW) {
158
		ACPI_EXCEPTION((AE_INFO, status, "Extracting _BIF"));
L
Linus Torvalds 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171
		result = -ENODEV;
		goto end;
	}

	data.pointer = kmalloc(data.length, GFP_KERNEL);
	if (!data.pointer) {
		result = -ENOMEM;
		goto end;
	}
	memset(data.pointer, 0, data.length);

	status = acpi_extract_package(package, &format, &data);
	if (ACPI_FAILURE(status)) {
172
		ACPI_EXCEPTION((AE_INFO, status, "Extracting _BIF"));
L
Linus Torvalds 已提交
173 174 175 176 177
		kfree(data.pointer);
		result = -ENODEV;
		goto end;
	}

L
Len Brown 已提交
178
      end:
179
	kfree(buffer.pointer);
L
Linus Torvalds 已提交
180 181

	if (!result)
182
		(*bif) = data.pointer;
L
Linus Torvalds 已提交
183

184
	return result;
L
Linus Torvalds 已提交
185 186 187
}

static int
L
Len Brown 已提交
188 189
acpi_battery_get_status(struct acpi_battery *battery,
			struct acpi_battery_status **bst)
L
Linus Torvalds 已提交
190
{
L
Len Brown 已提交
191 192 193 194 195 196 197 198
	int result = 0;
	acpi_status status = 0;
	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
	struct acpi_buffer format = { sizeof(ACPI_BATTERY_FORMAT_BST),
		ACPI_BATTERY_FORMAT_BST
	};
	struct acpi_buffer data = { 0, NULL };
	union acpi_object *package = NULL;
L
Linus Torvalds 已提交
199 200 201


	if (!battery || !bst)
202
		return -EINVAL;
L
Linus Torvalds 已提交
203 204 205

	/* Evalute _BST */

206
	status = acpi_evaluate_object(battery->device->handle, "_BST", NULL, &buffer);
L
Linus Torvalds 已提交
207
	if (ACPI_FAILURE(status)) {
208
		ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
209
		return -ENODEV;
L
Linus Torvalds 已提交
210 211
	}

212
	package = buffer.pointer;
L
Linus Torvalds 已提交
213 214 215 216 217

	/* Extract Package Data */

	status = acpi_extract_package(package, &format, &data);
	if (status != AE_BUFFER_OVERFLOW) {
218
		ACPI_EXCEPTION((AE_INFO, status, "Extracting _BST"));
L
Linus Torvalds 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231
		result = -ENODEV;
		goto end;
	}

	data.pointer = kmalloc(data.length, GFP_KERNEL);
	if (!data.pointer) {
		result = -ENOMEM;
		goto end;
	}
	memset(data.pointer, 0, data.length);

	status = acpi_extract_package(package, &format, &data);
	if (ACPI_FAILURE(status)) {
232
		ACPI_EXCEPTION((AE_INFO, status, "Extracting _BST"));
L
Linus Torvalds 已提交
233 234 235 236 237
		kfree(data.pointer);
		result = -ENODEV;
		goto end;
	}

L
Len Brown 已提交
238
      end:
239
	kfree(buffer.pointer);
L
Linus Torvalds 已提交
240 241

	if (!result)
242
		(*bst) = data.pointer;
L
Linus Torvalds 已提交
243

244
	return result;
L
Linus Torvalds 已提交
245 246 247
}

static int
L
Len Brown 已提交
248
acpi_battery_set_alarm(struct acpi_battery *battery, unsigned long alarm)
L
Linus Torvalds 已提交
249
{
L
Len Brown 已提交
250 251 252
	acpi_status status = 0;
	union acpi_object arg0 = { ACPI_TYPE_INTEGER };
	struct acpi_object_list arg_list = { 1, &arg0 };
L
Linus Torvalds 已提交
253 254 255


	if (!battery)
256
		return -EINVAL;
L
Linus Torvalds 已提交
257 258

	if (!battery->flags.alarm)
259
		return -ENODEV;
L
Linus Torvalds 已提交
260 261 262

	arg0.integer.value = alarm;

263
	status = acpi_evaluate_object(battery->device->handle, "_BTP", &arg_list, NULL);
L
Linus Torvalds 已提交
264
	if (ACPI_FAILURE(status))
265
		return -ENODEV;
L
Linus Torvalds 已提交
266 267 268 269 270

	ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", (u32) alarm));

	battery->alarm = alarm;

271
	return 0;
L
Linus Torvalds 已提交
272 273
}

L
Len Brown 已提交
274
static int acpi_battery_check(struct acpi_battery *battery)
L
Linus Torvalds 已提交
275
{
L
Len Brown 已提交
276 277 278 279
	int result = 0;
	acpi_status status = AE_OK;
	acpi_handle handle = NULL;
	struct acpi_device *device = NULL;
L
Linus Torvalds 已提交
280 281
	struct acpi_battery_info *bif = NULL;

L
Len Brown 已提交
282

L
Linus Torvalds 已提交
283
	if (!battery)
284
		return -EINVAL;
L
Linus Torvalds 已提交
285

286
	device = battery->device;
L
Linus Torvalds 已提交
287 288 289

	result = acpi_bus_get_status(device);
	if (result)
290
		return result;
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301

	/* Insertion? */

	if (!battery->flags.present && device->status.battery_present) {

		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Battery inserted\n"));

		/* Evalute _BIF to get certain static information */

		result = acpi_battery_get_info(battery, &bif);
		if (result)
302
			return result;
L
Linus Torvalds 已提交
303 304 305 306 307 308 309 310

		battery->flags.power_unit = bif->power_unit;
		battery->trips.warning = bif->design_capacity_warning;
		battery->trips.low = bif->design_capacity_low;
		kfree(bif);

		/* See if alarms are supported, and if so, set default */

311
		status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
L
Linus Torvalds 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325
		if (ACPI_SUCCESS(status)) {
			battery->flags.alarm = 1;
			acpi_battery_set_alarm(battery, battery->trips.warning);
		}
	}

	/* Removal? */

	else if (battery->flags.present && !device->status.battery_present) {
		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Battery removed\n"));
	}

	battery->flags.present = device->status.battery_present;

326
	return result;
L
Linus Torvalds 已提交
327 328 329 330 331 332
}

/* --------------------------------------------------------------------------
                              FS Interface (/proc)
   -------------------------------------------------------------------------- */

L
Len Brown 已提交
333
static struct proc_dir_entry *acpi_battery_dir;
L
Linus Torvalds 已提交
334 335
static int acpi_battery_read_info(struct seq_file *seq, void *offset)
{
L
Len Brown 已提交
336
	int result = 0;
337
	struct acpi_battery *battery = seq->private;
L
Linus Torvalds 已提交
338
	struct acpi_battery_info *bif = NULL;
L
Len Brown 已提交
339
	char *units = "?";
L
Linus Torvalds 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359


	if (!battery)
		goto end;

	if (battery->flags.present)
		seq_printf(seq, "present:                 yes\n");
	else {
		seq_printf(seq, "present:                 no\n");
		goto end;
	}

	/* Battery Info (_BIF) */

	result = acpi_battery_get_info(battery, &bif);
	if (result || !bif) {
		seq_printf(seq, "ERROR: Unable to read battery information\n");
		goto end;
	}

L
Len Brown 已提交
360 361 362 363
	units =
	    bif->
	    power_unit ? ACPI_BATTERY_UNITS_AMPS : ACPI_BATTERY_UNITS_WATTS;

L
Linus Torvalds 已提交
364 365 366 367
	if (bif->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
		seq_printf(seq, "design capacity:         unknown\n");
	else
		seq_printf(seq, "design capacity:         %d %sh\n",
L
Len Brown 已提交
368
			   (u32) bif->design_capacity, units);
L
Linus Torvalds 已提交
369 370 371 372 373

	if (bif->last_full_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
		seq_printf(seq, "last full capacity:      unknown\n");
	else
		seq_printf(seq, "last full capacity:      %d %sh\n",
L
Len Brown 已提交
374
			   (u32) bif->last_full_capacity, units);
L
Linus Torvalds 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391

	switch ((u32) bif->battery_technology) {
	case 0:
		seq_printf(seq, "battery technology:      non-rechargeable\n");
		break;
	case 1:
		seq_printf(seq, "battery technology:      rechargeable\n");
		break;
	default:
		seq_printf(seq, "battery technology:      unknown\n");
		break;
	}

	if (bif->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
		seq_printf(seq, "design voltage:          unknown\n");
	else
		seq_printf(seq, "design voltage:          %d mV\n",
L
Len Brown 已提交
392 393
			   (u32) bif->design_voltage);

L
Linus Torvalds 已提交
394
	seq_printf(seq, "design capacity warning: %d %sh\n",
L
Len Brown 已提交
395
		   (u32) bif->design_capacity_warning, units);
L
Linus Torvalds 已提交
396
	seq_printf(seq, "design capacity low:     %d %sh\n",
L
Len Brown 已提交
397
		   (u32) bif->design_capacity_low, units);
L
Linus Torvalds 已提交
398
	seq_printf(seq, "capacity granularity 1:  %d %sh\n",
L
Len Brown 已提交
399
		   (u32) bif->battery_capacity_granularity_1, units);
L
Linus Torvalds 已提交
400
	seq_printf(seq, "capacity granularity 2:  %d %sh\n",
L
Len Brown 已提交
401 402 403 404 405 406 407
		   (u32) bif->battery_capacity_granularity_2, units);
	seq_printf(seq, "model number:            %s\n", bif->model_number);
	seq_printf(seq, "serial number:           %s\n", bif->serial_number);
	seq_printf(seq, "battery type:            %s\n", bif->battery_type);
	seq_printf(seq, "OEM info:                %s\n", bif->oem_info);

      end:
L
Linus Torvalds 已提交
408 409
	kfree(bif);

410
	return 0;
L
Linus Torvalds 已提交
411 412 413 414 415 416 417
}

static int acpi_battery_info_open_fs(struct inode *inode, struct file *file)
{
	return single_open(file, acpi_battery_read_info, PDE(inode)->data);
}

L
Len Brown 已提交
418
static int acpi_battery_read_state(struct seq_file *seq, void *offset)
L
Linus Torvalds 已提交
419
{
L
Len Brown 已提交
420
	int result = 0;
421
	struct acpi_battery *battery = seq->private;
L
Linus Torvalds 已提交
422
	struct acpi_battery_status *bst = NULL;
L
Len Brown 已提交
423
	char *units = "?";
L
Linus Torvalds 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437


	if (!battery)
		goto end;

	if (battery->flags.present)
		seq_printf(seq, "present:                 yes\n");
	else {
		seq_printf(seq, "present:                 no\n");
		goto end;
	}

	/* Battery Units */

L
Len Brown 已提交
438 439 440
	units =
	    battery->flags.
	    power_unit ? ACPI_BATTERY_UNITS_AMPS : ACPI_BATTERY_UNITS_WATTS;
L
Linus Torvalds 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454

	/* Battery Status (_BST) */

	result = acpi_battery_get_status(battery, &bst);
	if (result || !bst) {
		seq_printf(seq, "ERROR: Unable to read battery status\n");
		goto end;
	}

	if (!(bst->state & 0x04))
		seq_printf(seq, "capacity state:          ok\n");
	else
		seq_printf(seq, "capacity state:          critical\n");

L
Len Brown 已提交
455 456 457 458
	if ((bst->state & 0x01) && (bst->state & 0x02)) {
		seq_printf(seq,
			   "charging state:          charging/discharging\n");
	} else if (bst->state & 0x01)
L
Linus Torvalds 已提交
459 460 461 462 463 464 465 466 467 468 469
		seq_printf(seq, "charging state:          discharging\n");
	else if (bst->state & 0x02)
		seq_printf(seq, "charging state:          charging\n");
	else {
		seq_printf(seq, "charging state:          charged\n");
	}

	if (bst->present_rate == ACPI_BATTERY_VALUE_UNKNOWN)
		seq_printf(seq, "present rate:            unknown\n");
	else
		seq_printf(seq, "present rate:            %d %s\n",
L
Len Brown 已提交
470
			   (u32) bst->present_rate, units);
L
Linus Torvalds 已提交
471 472 473 474 475

	if (bst->remaining_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
		seq_printf(seq, "remaining capacity:      unknown\n");
	else
		seq_printf(seq, "remaining capacity:      %d %sh\n",
L
Len Brown 已提交
476
			   (u32) bst->remaining_capacity, units);
L
Linus Torvalds 已提交
477 478 479 480 481

	if (bst->present_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
		seq_printf(seq, "present voltage:         unknown\n");
	else
		seq_printf(seq, "present voltage:         %d mV\n",
L
Len Brown 已提交
482
			   (u32) bst->present_voltage);
L
Linus Torvalds 已提交
483

L
Len Brown 已提交
484
      end:
L
Linus Torvalds 已提交
485 486
	kfree(bst);

487
	return 0;
L
Linus Torvalds 已提交
488 489 490 491 492 493 494
}

static int acpi_battery_state_open_fs(struct inode *inode, struct file *file)
{
	return single_open(file, acpi_battery_read_state, PDE(inode)->data);
}

L
Len Brown 已提交
495
static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
L
Linus Torvalds 已提交
496
{
497
	struct acpi_battery *battery = seq->private;
L
Len Brown 已提交
498
	char *units = "?";
L
Linus Torvalds 已提交
499 500 501 502 503 504 505 506 507 508 509


	if (!battery)
		goto end;

	if (!battery->flags.present) {
		seq_printf(seq, "present:                 no\n");
		goto end;
	}

	/* Battery Units */
L
Len Brown 已提交
510 511 512 513

	units =
	    battery->flags.
	    power_unit ? ACPI_BATTERY_UNITS_AMPS : ACPI_BATTERY_UNITS_WATTS;
L
Linus Torvalds 已提交
514 515 516 517 518 519 520 521 522

	/* Battery Alarm */

	seq_printf(seq, "alarm:                   ");
	if (!battery->alarm)
		seq_printf(seq, "unsupported\n");
	else
		seq_printf(seq, "%d %sh\n", (u32) battery->alarm, units);

L
Len Brown 已提交
523
      end:
524
	return 0;
L
Linus Torvalds 已提交
525 526 527
}

static ssize_t
L
Len Brown 已提交
528 529 530
acpi_battery_write_alarm(struct file *file,
			 const char __user * buffer,
			 size_t count, loff_t * ppos)
L
Linus Torvalds 已提交
531
{
L
Len Brown 已提交
532 533
	int result = 0;
	char alarm_string[12] = { '\0' };
534 535
	struct seq_file *m = file->private_data;
	struct acpi_battery *battery = m->private;
L
Linus Torvalds 已提交
536 537 538


	if (!battery || (count > sizeof(alarm_string) - 1))
539
		return -EINVAL;
L
Linus Torvalds 已提交
540 541

	if (!battery->flags.present)
542
		return -ENODEV;
L
Linus Torvalds 已提交
543 544

	if (copy_from_user(alarm_string, buffer, count))
545
		return -EFAULT;
L
Len Brown 已提交
546

L
Linus Torvalds 已提交
547 548
	alarm_string[count] = '\0';

L
Len Brown 已提交
549 550
	result = acpi_battery_set_alarm(battery,
					simple_strtoul(alarm_string, NULL, 0));
L
Linus Torvalds 已提交
551
	if (result)
552
		return result;
L
Linus Torvalds 已提交
553

554
	return count;
L
Linus Torvalds 已提交
555 556 557 558 559 560 561
}

static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
{
	return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
}

562
static const struct file_operations acpi_battery_info_ops = {
L
Len Brown 已提交
563 564 565 566
	.open = acpi_battery_info_open_fs,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
L
Linus Torvalds 已提交
567 568 569
	.owner = THIS_MODULE,
};

570
static const struct file_operations acpi_battery_state_ops = {
L
Len Brown 已提交
571 572 573 574
	.open = acpi_battery_state_open_fs,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
L
Linus Torvalds 已提交
575 576 577
	.owner = THIS_MODULE,
};

578
static const struct file_operations acpi_battery_alarm_ops = {
L
Len Brown 已提交
579 580 581 582 583
	.open = acpi_battery_alarm_open_fs,
	.read = seq_read,
	.write = acpi_battery_write_alarm,
	.llseek = seq_lseek,
	.release = single_release,
L
Linus Torvalds 已提交
584 585 586
	.owner = THIS_MODULE,
};

L
Len Brown 已提交
587
static int acpi_battery_add_fs(struct acpi_device *device)
L
Linus Torvalds 已提交
588
{
L
Len Brown 已提交
589
	struct proc_dir_entry *entry = NULL;
L
Linus Torvalds 已提交
590 591 592 593


	if (!acpi_device_dir(device)) {
		acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
L
Len Brown 已提交
594
						     acpi_battery_dir);
L
Linus Torvalds 已提交
595
		if (!acpi_device_dir(device))
596
			return -ENODEV;
L
Linus Torvalds 已提交
597 598 599 600 601
		acpi_device_dir(device)->owner = THIS_MODULE;
	}

	/* 'info' [R] */
	entry = create_proc_entry(ACPI_BATTERY_FILE_INFO,
L
Len Brown 已提交
602
				  S_IRUGO, acpi_device_dir(device));
L
Linus Torvalds 已提交
603
	if (!entry)
604
		return -ENODEV;
L
Linus Torvalds 已提交
605
	else {
L
Len Brown 已提交
606
		entry->proc_fops = &acpi_battery_info_ops;
L
Linus Torvalds 已提交
607 608 609 610 611 612
		entry->data = acpi_driver_data(device);
		entry->owner = THIS_MODULE;
	}

	/* 'status' [R] */
	entry = create_proc_entry(ACPI_BATTERY_FILE_STATUS,
L
Len Brown 已提交
613
				  S_IRUGO, acpi_device_dir(device));
L
Linus Torvalds 已提交
614
	if (!entry)
615
		return -ENODEV;
L
Linus Torvalds 已提交
616 617 618 619 620 621 622 623
	else {
		entry->proc_fops = &acpi_battery_state_ops;
		entry->data = acpi_driver_data(device);
		entry->owner = THIS_MODULE;
	}

	/* 'alarm' [R/W] */
	entry = create_proc_entry(ACPI_BATTERY_FILE_ALARM,
L
Len Brown 已提交
624 625
				  S_IFREG | S_IRUGO | S_IWUSR,
				  acpi_device_dir(device));
L
Linus Torvalds 已提交
626
	if (!entry)
627
		return -ENODEV;
L
Linus Torvalds 已提交
628 629 630 631 632 633
	else {
		entry->proc_fops = &acpi_battery_alarm_ops;
		entry->data = acpi_driver_data(device);
		entry->owner = THIS_MODULE;
	}

634
	return 0;
L
Linus Torvalds 已提交
635 636
}

L
Len Brown 已提交
637
static int acpi_battery_remove_fs(struct acpi_device *device)
L
Linus Torvalds 已提交
638 639 640 641 642 643 644 645 646 647 648 649 650 651
{

	if (acpi_device_dir(device)) {
		remove_proc_entry(ACPI_BATTERY_FILE_ALARM,
				  acpi_device_dir(device));
		remove_proc_entry(ACPI_BATTERY_FILE_STATUS,
				  acpi_device_dir(device));
		remove_proc_entry(ACPI_BATTERY_FILE_INFO,
				  acpi_device_dir(device));

		remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
		acpi_device_dir(device) = NULL;
	}

652
	return 0;
L
Linus Torvalds 已提交
653 654 655 656 657 658
}

/* --------------------------------------------------------------------------
                                 Driver Interface
   -------------------------------------------------------------------------- */

L
Len Brown 已提交
659
static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
L
Linus Torvalds 已提交
660
{
661
	struct acpi_battery *battery = data;
L
Len Brown 已提交
662
	struct acpi_device *device = NULL;
L
Linus Torvalds 已提交
663 664 665


	if (!battery)
666
		return;
L
Linus Torvalds 已提交
667

668
	device = battery->device;
L
Linus Torvalds 已提交
669 670 671 672

	switch (event) {
	case ACPI_BATTERY_NOTIFY_STATUS:
	case ACPI_BATTERY_NOTIFY_INFO:
673 674
	case ACPI_NOTIFY_BUS_CHECK:
	case ACPI_NOTIFY_DEVICE_CHECK:
L
Linus Torvalds 已提交
675 676 677 678 679
		acpi_battery_check(battery);
		acpi_bus_generate_event(device, event, battery->flags.present);
		break;
	default:
		ACPI_DEBUG_PRINT((ACPI_DB_INFO,
L
Len Brown 已提交
680
				  "Unsupported event [0x%x]\n", event));
L
Linus Torvalds 已提交
681 682 683
		break;
	}

684
	return;
L
Linus Torvalds 已提交
685 686
}

L
Len Brown 已提交
687
static int acpi_battery_add(struct acpi_device *device)
L
Linus Torvalds 已提交
688
{
L
Len Brown 已提交
689 690 691
	int result = 0;
	acpi_status status = 0;
	struct acpi_battery *battery = NULL;
L
Linus Torvalds 已提交
692

L
Len Brown 已提交
693

L
Linus Torvalds 已提交
694
	if (!device)
695
		return -EINVAL;
L
Linus Torvalds 已提交
696 697 698

	battery = kmalloc(sizeof(struct acpi_battery), GFP_KERNEL);
	if (!battery)
699
		return -ENOMEM;
L
Linus Torvalds 已提交
700 701
	memset(battery, 0, sizeof(struct acpi_battery));

702
	battery->device = device;
L
Linus Torvalds 已提交
703 704 705 706 707 708 709 710 711 712 713 714
	strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
	strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
	acpi_driver_data(device) = battery;

	result = acpi_battery_check(battery);
	if (result)
		goto end;

	result = acpi_battery_add_fs(device);
	if (result)
		goto end;

715
	status = acpi_install_notify_handler(device->handle,
716
					     ACPI_ALL_NOTIFY,
L
Len Brown 已提交
717
					     acpi_battery_notify, battery);
L
Linus Torvalds 已提交
718 719 720 721 722 723
	if (ACPI_FAILURE(status)) {
		result = -ENODEV;
		goto end;
	}

	printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
L
Len Brown 已提交
724 725 726 727
	       ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
	       device->status.battery_present ? "present" : "absent");

      end:
L
Linus Torvalds 已提交
728 729 730 731 732
	if (result) {
		acpi_battery_remove_fs(device);
		kfree(battery);
	}

733
	return result;
L
Linus Torvalds 已提交
734 735
}

L
Len Brown 已提交
736
static int acpi_battery_remove(struct acpi_device *device, int type)
L
Linus Torvalds 已提交
737
{
L
Len Brown 已提交
738 739
	acpi_status status = 0;
	struct acpi_battery *battery = NULL;
L
Linus Torvalds 已提交
740 741 742


	if (!device || !acpi_driver_data(device))
743
		return -EINVAL;
L
Linus Torvalds 已提交
744

745
	battery = acpi_driver_data(device);
L
Linus Torvalds 已提交
746

747
	status = acpi_remove_notify_handler(device->handle,
748
					    ACPI_ALL_NOTIFY,
L
Len Brown 已提交
749
					    acpi_battery_notify);
L
Linus Torvalds 已提交
750 751 752 753 754

	acpi_battery_remove_fs(device);

	kfree(battery);

755
	return 0;
L
Linus Torvalds 已提交
756 757
}

758 759 760 761 762 763 764 765 766 767 768 769
/* this is needed to learn about changes made in suspended state */
static int acpi_battery_resume(struct acpi_device *device, int state)
{
	struct acpi_battery *battery;

	if (!device)
		return -EINVAL;

	battery = device->driver_data;
	return acpi_battery_check(battery);
}

L
Len Brown 已提交
770
static int __init acpi_battery_init(void)
L
Linus Torvalds 已提交
771
{
772
	int result;
L
Linus Torvalds 已提交
773

P
Pavel Machek 已提交
774 775 776
	if (acpi_disabled)
		return -ENODEV;

777
	acpi_battery_dir = acpi_lock_battery_dir();
L
Linus Torvalds 已提交
778
	if (!acpi_battery_dir)
779
		return -ENODEV;
L
Linus Torvalds 已提交
780 781 782

	result = acpi_bus_register_driver(&acpi_battery_driver);
	if (result < 0) {
783
		acpi_unlock_battery_dir(acpi_battery_dir);
784
		return -ENODEV;
L
Linus Torvalds 已提交
785 786
	}

787
	return 0;
L
Linus Torvalds 已提交
788 789
}

L
Len Brown 已提交
790
static void __exit acpi_battery_exit(void)
L
Linus Torvalds 已提交
791 792 793 794
{

	acpi_bus_unregister_driver(&acpi_battery_driver);

795
	acpi_unlock_battery_dir(acpi_battery_dir);
L
Linus Torvalds 已提交
796

797
	return;
L
Linus Torvalds 已提交
798 799 800 801
}

module_init(acpi_battery_init);
module_exit(acpi_battery_exit);