sbs.c 28.1 KB
Newer Older
1
/*
2
 *  sbs.c - ACPI Smart Battery System Driver ($Revision: 2.0 $)
3
 *
4 5
 *  Copyright (c) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
 *  Copyright (c) 2005-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
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
 *  Copyright (c) 2005 Rich Townsend <rhdt@bartol.udel.edu>
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  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/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
31

32
#ifdef CONFIG_ACPI_PROCFS_POWER
33 34 35
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <asm/uaccess.h>
36
#endif
37

38
#include <linux/acpi.h>
39
#include <linux/timer.h>
40
#include <linux/jiffies.h>
41 42
#include <linux/delay.h>

43
#ifdef CONFIG_ACPI_SYSFS_POWER
44
#include <linux/power_supply.h>
45
#endif
46

47 48
#include "sbshc.h"

49 50 51 52 53 54 55 56 57 58
#define ACPI_SBS_CLASS			"sbs"
#define ACPI_AC_CLASS			"ac_adapter"
#define ACPI_BATTERY_CLASS		"battery"
#define ACPI_SBS_DEVICE_NAME		"Smart Battery System"
#define ACPI_SBS_FILE_INFO		"info"
#define ACPI_SBS_FILE_STATE		"state"
#define ACPI_SBS_FILE_ALARM		"alarm"
#define ACPI_BATTERY_DIR_NAME		"BAT%i"
#define ACPI_AC_DIR_NAME		"AC0"

59 60
#define ACPI_SBS_NOTIFY_STATUS		0x80
#define ACPI_SBS_NOTIFY_INFO		0x81
61

62
MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
63 64 65
MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
MODULE_LICENSE("GPL");

66 67 68
static unsigned int cache_time = 1000;
module_param(cache_time, uint, 0644);
MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
69 70 71 72 73 74

extern struct proc_dir_entry *acpi_lock_ac_dir(void);
extern struct proc_dir_entry *acpi_lock_battery_dir(void);
extern void acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
extern void acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);

75
#define MAX_SBS_BAT			4
76 77
#define ACPI_SBS_BLOCK_MAX		32

78
static const struct acpi_device_id sbs_device_ids[] = {
79
	{"ACPI0002", 0},
80 81 82 83
	{"", 0},
};
MODULE_DEVICE_TABLE(acpi, sbs_device_ids);

84
struct acpi_battery {
85
#ifdef CONFIG_ACPI_SYSFS_POWER
86
	struct power_supply bat;
87
#endif
88
	struct acpi_sbs *sbs;
89
#ifdef CONFIG_ACPI_PROCFS_POWER
90
	struct proc_dir_entry *proc_entry;
91
#endif
92 93
	unsigned long update_time;
	char name[8];
94 95 96
	char manufacturer_name[ACPI_SBS_BLOCK_MAX];
	char device_name[ACPI_SBS_BLOCK_MAX];
	char device_chemistry[ACPI_SBS_BLOCK_MAX];
97
	u16 alarm_capacity;
98 99 100 101
	u16 full_charge_capacity;
	u16 design_capacity;
	u16 design_voltage;
	u16 serial_number;
102 103
	u16 cycle_count;
	u16 temp_now;
104 105
	u16 voltage_now;
	s16 current_now;
106
	s16 current_avg;
107
	u16 capacity_now;
108
	u16 state_of_charge;
109 110
	u16 state;
	u16 mode;
111
	u16 spec;
112 113
	u8 id;
	u8 present:1;
J
Jeff Garzik 已提交
114
	u8 have_sysfs_alarm:1;
115 116
};

117 118
#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);

119
struct acpi_sbs {
120
#ifdef CONFIG_ACPI_SYSFS_POWER
121
	struct power_supply charger;
122
#endif
123
	struct acpi_device *device;
124
	struct acpi_smb_hc *hc;
125
	struct mutex lock;
126
#ifdef CONFIG_ACPI_PROCFS_POWER
127
	struct proc_dir_entry *charger_entry;
128
#endif
129
	struct acpi_battery battery[MAX_SBS_BAT];
130
	u8 batteries_supported:4;
131 132
	u8 manager_present:1;
	u8 charger_present:1;
133 134
};

135 136
#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)

137
static inline int battery_scale(int log)
138
{
139 140 141 142
	int scale = 1;
	while (log--)
		scale *= 10;
	return scale;
143 144
}

145
static inline int acpi_battery_vscale(struct acpi_battery *battery)
146
{
147
	return battery_scale((battery->spec & 0x0f00) >> 8);
148 149
}

150
static inline int acpi_battery_ipscale(struct acpi_battery *battery)
151
{
152
	return battery_scale((battery->spec & 0xf000) >> 12);
153 154
}

155
static inline int acpi_battery_mode(struct acpi_battery *battery)
156
{
157
	return (battery->mode & 0x8000);
158
}
159

160
static inline int acpi_battery_scale(struct acpi_battery *battery)
161
{
162 163
	return (acpi_battery_mode(battery) ? 10 : 1) *
	    acpi_battery_ipscale(battery);
164 165
}

166
#ifdef CONFIG_ACPI_SYSFS_POWER
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 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
static int sbs_get_ac_property(struct power_supply *psy,
			       enum power_supply_property psp,
			       union power_supply_propval *val)
{
	struct acpi_sbs *sbs = to_acpi_sbs(psy);
	switch (psp) {
	case POWER_SUPPLY_PROP_ONLINE:
		val->intval = sbs->charger_present;
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

static int acpi_battery_technology(struct acpi_battery *battery)
{
	if (!strcasecmp("NiCd", battery->device_chemistry))
		return POWER_SUPPLY_TECHNOLOGY_NiCd;
	if (!strcasecmp("NiMH", battery->device_chemistry))
		return POWER_SUPPLY_TECHNOLOGY_NiMH;
	if (!strcasecmp("LION", battery->device_chemistry))
		return POWER_SUPPLY_TECHNOLOGY_LION;
	if (!strcasecmp("LiP", battery->device_chemistry))
		return POWER_SUPPLY_TECHNOLOGY_LIPO;
	return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
}

static int acpi_sbs_battery_get_property(struct power_supply *psy,
					 enum power_supply_property psp,
					 union power_supply_propval *val)
{
	struct acpi_battery *battery = to_acpi_battery(psy);

	if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
		return -ENODEV;
	switch (psp) {
	case POWER_SUPPLY_PROP_STATUS:
		if (battery->current_now < 0)
			val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
		else if (battery->current_now > 0)
			val->intval = POWER_SUPPLY_STATUS_CHARGING;
		else
			val->intval = POWER_SUPPLY_STATUS_FULL;
		break;
	case POWER_SUPPLY_PROP_PRESENT:
		val->intval = battery->present;
		break;
	case POWER_SUPPLY_PROP_TECHNOLOGY:
		val->intval = acpi_battery_technology(battery);
		break;
	case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
		val->intval = battery->design_voltage *
			acpi_battery_vscale(battery) * 1000;
		break;
	case POWER_SUPPLY_PROP_VOLTAGE_NOW:
		val->intval = battery->voltage_now *
				acpi_battery_vscale(battery) * 1000;
		break;
	case POWER_SUPPLY_PROP_CURRENT_NOW:
		val->intval = abs(battery->current_now) *
				acpi_battery_ipscale(battery) * 1000;
		break;
	case POWER_SUPPLY_PROP_CURRENT_AVG:
		val->intval = abs(battery->current_avg) *
				acpi_battery_ipscale(battery) * 1000;
		break;
	case POWER_SUPPLY_PROP_CAPACITY:
		val->intval = battery->state_of_charge;
		break;
	case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
	case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
		val->intval = battery->design_capacity *
			acpi_battery_scale(battery) * 1000;
		break;
	case POWER_SUPPLY_PROP_CHARGE_FULL:
	case POWER_SUPPLY_PROP_ENERGY_FULL:
		val->intval = battery->full_charge_capacity *
			acpi_battery_scale(battery) * 1000;
		break;
	case POWER_SUPPLY_PROP_CHARGE_NOW:
	case POWER_SUPPLY_PROP_ENERGY_NOW:
		val->intval = battery->capacity_now *
				acpi_battery_scale(battery) * 1000;
		break;
	case POWER_SUPPLY_PROP_TEMP:
		val->intval = battery->temp_now - 2730;	// dK -> dC
		break;
	case POWER_SUPPLY_PROP_MODEL_NAME:
		val->strval = battery->device_name;
		break;
	case POWER_SUPPLY_PROP_MANUFACTURER:
		val->strval = battery->manufacturer_name;
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

static enum power_supply_property sbs_ac_props[] = {
	POWER_SUPPLY_PROP_ONLINE,
};

static enum power_supply_property sbs_charge_battery_props[] = {
	POWER_SUPPLY_PROP_STATUS,
	POWER_SUPPLY_PROP_PRESENT,
	POWER_SUPPLY_PROP_TECHNOLOGY,
	POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
	POWER_SUPPLY_PROP_VOLTAGE_NOW,
	POWER_SUPPLY_PROP_CURRENT_NOW,
	POWER_SUPPLY_PROP_CURRENT_AVG,
	POWER_SUPPLY_PROP_CAPACITY,
	POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
	POWER_SUPPLY_PROP_CHARGE_FULL,
	POWER_SUPPLY_PROP_CHARGE_NOW,
	POWER_SUPPLY_PROP_TEMP,
	POWER_SUPPLY_PROP_MODEL_NAME,
	POWER_SUPPLY_PROP_MANUFACTURER,
};

static enum power_supply_property sbs_energy_battery_props[] = {
	POWER_SUPPLY_PROP_STATUS,
	POWER_SUPPLY_PROP_PRESENT,
	POWER_SUPPLY_PROP_TECHNOLOGY,
	POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
	POWER_SUPPLY_PROP_VOLTAGE_NOW,
	POWER_SUPPLY_PROP_CURRENT_NOW,
	POWER_SUPPLY_PROP_CURRENT_AVG,
	POWER_SUPPLY_PROP_CAPACITY,
	POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
	POWER_SUPPLY_PROP_ENERGY_FULL,
	POWER_SUPPLY_PROP_ENERGY_NOW,
	POWER_SUPPLY_PROP_TEMP,
	POWER_SUPPLY_PROP_MODEL_NAME,
	POWER_SUPPLY_PROP_MANUFACTURER,
};
304
#endif
305

306 307 308
/* --------------------------------------------------------------------------
                            Smart Battery System Management
   -------------------------------------------------------------------------- */
309

310 311 312 313 314
struct acpi_battery_reader {
	u8 command;		/* command for battery */
	u8 mode;		/* word or block? */
	size_t offset;		/* offset inside struct acpi_sbs_battery */
};
315

316 317 318 319 320 321 322 323 324 325 326 327 328
static struct acpi_battery_reader info_readers[] = {
	{0x01, SMBUS_READ_WORD, offsetof(struct acpi_battery, alarm_capacity)},
	{0x03, SMBUS_READ_WORD, offsetof(struct acpi_battery, mode)},
	{0x10, SMBUS_READ_WORD, offsetof(struct acpi_battery, full_charge_capacity)},
	{0x17, SMBUS_READ_WORD, offsetof(struct acpi_battery, cycle_count)},
	{0x18, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_capacity)},
	{0x19, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_voltage)},
	{0x1a, SMBUS_READ_WORD, offsetof(struct acpi_battery, spec)},
	{0x1c, SMBUS_READ_WORD, offsetof(struct acpi_battery, serial_number)},
	{0x20, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, manufacturer_name)},
	{0x21, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_name)},
	{0x22, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_chemistry)},
};
329

330 331 332 333 334 335 336 337 338
static struct acpi_battery_reader state_readers[] = {
	{0x08, SMBUS_READ_WORD, offsetof(struct acpi_battery, temp_now)},
	{0x09, SMBUS_READ_WORD, offsetof(struct acpi_battery, voltage_now)},
	{0x0a, SMBUS_READ_WORD, offsetof(struct acpi_battery, current_now)},
	{0x0b, SMBUS_READ_WORD, offsetof(struct acpi_battery, current_avg)},
	{0x0f, SMBUS_READ_WORD, offsetof(struct acpi_battery, capacity_now)},
	{0x0e, SMBUS_READ_WORD, offsetof(struct acpi_battery, state_of_charge)},
	{0x16, SMBUS_READ_WORD, offsetof(struct acpi_battery, state)},
};
339

340
static int acpi_manager_get_info(struct acpi_sbs *sbs)
341 342
{
	int result = 0;
343
	u16 battery_system_info;
344

345
	result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
346
				 0x04, (u8 *)&battery_system_info);
347 348
	if (!result)
		sbs->batteries_supported = battery_system_info & 0x000f;
349
	return result;
350 351 352 353
}

static int acpi_battery_get_info(struct acpi_battery *battery)
{
354
	int i, result = 0;
355

356
	for (i = 0; i < ARRAY_SIZE(info_readers); ++i) {
357 358 359 360 361 362
		result = acpi_smbus_read(battery->sbs->hc,
					 info_readers[i].mode,
					 ACPI_SBS_BATTERY,
					 info_readers[i].command,
					 (u8 *) battery +
						info_readers[i].offset);
363 364
		if (result)
			break;
365
	}
366
	return result;
367 368 369 370
}

static int acpi_battery_get_state(struct acpi_battery *battery)
{
371
	int i, result = 0;
372

373 374
	if (battery->update_time &&
	    time_before(jiffies, battery->update_time +
375 376 377 378 379 380 381 382 383 384
				msecs_to_jiffies(cache_time)))
		return 0;
	for (i = 0; i < ARRAY_SIZE(state_readers); ++i) {
		result = acpi_smbus_read(battery->sbs->hc,
					 state_readers[i].mode,
					 ACPI_SBS_BATTERY,
					 state_readers[i].command,
				         (u8 *)battery +
						state_readers[i].offset);
		if (result)
385 386 387
			goto end;
	}
      end:
388
	battery->update_time = jiffies;
389
	return result;
390 391
}

392
static int acpi_battery_get_alarm(struct acpi_battery *battery)
393
{
394 395
	return acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
				 ACPI_SBS_BATTERY, 0x01,
396
				 (u8 *)&battery->alarm_capacity);
397 398
}

399
static int acpi_battery_set_alarm(struct acpi_battery *battery)
400
{
401
	struct acpi_sbs *sbs = battery->sbs;
402 403 404 405
	u16 value, sel = 1 << (battery->id + 12);

	int ret;

406

407
	if (sbs->manager_present) {
408
		ret = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
409
				0x01, (u8 *)&value);
410 411 412 413 414 415 416 417 418 419 420
		if (ret)
			goto end;
		if ((value & 0xf000) != sel) {
			value &= 0x0fff;
			value |= sel;
		ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD,
					 ACPI_SBS_MANAGER,
					 0x01, (u8 *)&value, 2);
		if (ret)
			goto end;
		}
421
	}
422 423 424 425
	ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD, ACPI_SBS_BATTERY,
				0x01, (u8 *)&battery->alarm_capacity, 2);
      end:
	return ret;
426 427 428 429
}

static int acpi_ac_get_present(struct acpi_sbs *sbs)
{
430 431
	int result;
	u16 status;
432

433 434 435 436
	result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_CHARGER,
				 0x13, (u8 *) & status);
	if (!result)
		sbs->charger_present = (status >> 15) & 0x1;
437
	return result;
438 439
}

440
#ifdef CONFIG_ACPI_SYSFS_POWER
A
Alexey Starikovskiy 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
static ssize_t acpi_battery_alarm_show(struct device *dev,
					struct device_attribute *attr,
					char *buf)
{
	struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
	acpi_battery_get_alarm(battery);
	return sprintf(buf, "%d\n", battery->alarm_capacity *
				acpi_battery_scale(battery) * 1000);
}

static ssize_t acpi_battery_alarm_store(struct device *dev,
					struct device_attribute *attr,
					const char *buf, size_t count)
{
	unsigned long x;
	struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
	if (sscanf(buf, "%ld\n", &x) == 1)
		battery->alarm_capacity = x /
			(1000 * acpi_battery_scale(battery));
	if (battery->present)
		acpi_battery_set_alarm(battery);
	return count;
}

static struct device_attribute alarm_attr = {
	.attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
	.show = acpi_battery_alarm_show,
	.store = acpi_battery_alarm_store,
};
470
#endif
A
Alexey Starikovskiy 已提交
471

472 473 474 475
/* --------------------------------------------------------------------------
                              FS Interface (/proc/acpi)
   -------------------------------------------------------------------------- */

476
#ifdef CONFIG_ACPI_PROCFS_POWER
477 478
/* Generic Routines */
static int
479
acpi_sbs_add_fs(struct proc_dir_entry **dir,
480 481 482 483 484
		struct proc_dir_entry *parent_dir,
		char *dir_name,
		struct file_operations *info_fops,
		struct file_operations *state_fops,
		struct file_operations *alarm_fops, void *data)
485 486 487 488
{
	if (!*dir) {
		*dir = proc_mkdir(dir_name, parent_dir);
		if (!*dir) {
489
			return -ENODEV;
490 491 492 493 494
		}
		(*dir)->owner = THIS_MODULE;
	}

	/* 'info' [R] */
495 496 497
	if (info_fops)
		proc_create_data(ACPI_SBS_FILE_INFO, S_IRUGO, *dir,
				 info_fops, data);
498 499

	/* 'state' [R] */
500 501 502
	if (state_fops)
		proc_create_data(ACPI_SBS_FILE_STATE, S_IRUGO, *dir,
				 state_fops, data);
503 504

	/* 'alarm' [R/W] */
505 506 507
	if (alarm_fops)
		proc_create_data(ACPI_SBS_FILE_ALARM, S_IRUGO, *dir,
				 alarm_fops, data);
508
	return 0;
509 510 511
}

static void
512
acpi_sbs_remove_fs(struct proc_dir_entry **dir,
513 514 515 516 517 518 519 520 521 522 523 524 525 526
			   struct proc_dir_entry *parent_dir)
{
	if (*dir) {
		remove_proc_entry(ACPI_SBS_FILE_INFO, *dir);
		remove_proc_entry(ACPI_SBS_FILE_STATE, *dir);
		remove_proc_entry(ACPI_SBS_FILE_ALARM, *dir);
		remove_proc_entry((*dir)->name, parent_dir);
		*dir = NULL;
	}
}

/* Smart Battery Interface */
static struct proc_dir_entry *acpi_battery_dir = NULL;

527 528
static inline char *acpi_battery_units(struct acpi_battery *battery)
{
529
	return acpi_battery_mode(battery) ? " mW" : " mA";
530 531 532
}


533 534
static int acpi_battery_read_info(struct seq_file *seq, void *offset)
{
535
	struct acpi_battery *battery = seq->private;
536
	struct acpi_sbs *sbs = battery->sbs;
537 538
	int result = 0;

539
	mutex_lock(&sbs->lock);
540

541 542 543
	seq_printf(seq, "present:                 %s\n",
		   (battery->present) ? "yes" : "no");
	if (!battery->present)
544
		goto end;
545

546
	seq_printf(seq, "design capacity:         %i%sh\n",
547 548
		   battery->design_capacity * acpi_battery_scale(battery),
		   acpi_battery_units(battery));
549
	seq_printf(seq, "last full capacity:      %i%sh\n",
550 551
		   battery->full_charge_capacity * acpi_battery_scale(battery),
		   acpi_battery_units(battery));
552 553
	seq_printf(seq, "battery technology:      rechargeable\n");
	seq_printf(seq, "design voltage:          %i mV\n",
554
		   battery->design_voltage * acpi_battery_vscale(battery));
555 556 557 558
	seq_printf(seq, "design capacity warning: unknown\n");
	seq_printf(seq, "design capacity low:     unknown\n");
	seq_printf(seq, "capacity granularity 1:  unknown\n");
	seq_printf(seq, "capacity granularity 2:  unknown\n");
559
	seq_printf(seq, "model number:            %s\n", battery->device_name);
560
	seq_printf(seq, "serial number:           %i\n",
561
		   battery->serial_number);
562
	seq_printf(seq, "battery type:            %s\n",
563
		   battery->device_chemistry);
564
	seq_printf(seq, "OEM info:                %s\n",
565
		   battery->manufacturer_name);
566
      end:
567
	mutex_unlock(&sbs->lock);
568
	return result;
569 570 571 572 573 574 575 576 577
}

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

static int acpi_battery_read_state(struct seq_file *seq, void *offset)
{
578 579
	struct acpi_battery *battery = seq->private;
	struct acpi_sbs *sbs = battery->sbs;
580
	int rate;
581

582 583 584 585
	mutex_lock(&sbs->lock);
	seq_printf(seq, "present:                 %s\n",
		   (battery->present) ? "yes" : "no");
	if (!battery->present)
586 587
		goto end;

588 589 590 591 592 593
	acpi_battery_get_state(battery);
	seq_printf(seq, "capacity state:          %s\n",
		   (battery->state & 0x0010) ? "critical" : "ok");
	seq_printf(seq, "charging state:          %s\n",
		   (battery->current_now < 0) ? "discharging" :
		   ((battery->current_now > 0) ? "charging" : "charged"));
594 595 596 597 598 599
	rate = abs(battery->current_now) * acpi_battery_ipscale(battery);
	rate *= (acpi_battery_mode(battery))?(battery->voltage_now *
			acpi_battery_vscale(battery)/1000):1;
	seq_printf(seq, "present rate:            %d%s\n", rate,
		   acpi_battery_units(battery));
	seq_printf(seq, "remaining capacity:      %i%sh\n",
600 601
		   battery->capacity_now * acpi_battery_scale(battery),
		   acpi_battery_units(battery));
602
	seq_printf(seq, "present voltage:         %i mV\n",
603
		   battery->voltage_now * acpi_battery_vscale(battery));
604 605

      end:
606
	mutex_unlock(&sbs->lock);
607
	return 0;
608 609 610 611 612 613 614 615 616
}

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

static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
{
617
	struct acpi_battery *battery = seq->private;
618
	struct acpi_sbs *sbs = battery->sbs;
619 620
	int result = 0;

621
	mutex_lock(&sbs->lock);
622

623
	if (!battery->present) {
624 625 626 627
		seq_printf(seq, "present:                 no\n");
		goto end;
	}

628
	acpi_battery_get_alarm(battery);
629
	seq_printf(seq, "alarm:                   ");
630
	if (battery->alarm_capacity)
631
		seq_printf(seq, "%i%sh\n",
632 633 634 635
			   battery->alarm_capacity *
			   acpi_battery_scale(battery),
			   acpi_battery_units(battery));
	else
636 637
		seq_printf(seq, "disabled\n");
      end:
638
	mutex_unlock(&sbs->lock);
639
	return result;
640 641 642 643 644 645
}

static ssize_t
acpi_battery_write_alarm(struct file *file, const char __user * buffer,
			 size_t count, loff_t * ppos)
{
646 647
	struct seq_file *seq = file->private_data;
	struct acpi_battery *battery = seq->private;
648
	struct acpi_sbs *sbs = battery->sbs;
649
	char alarm_string[12] = { '\0' };
650 651
	int result = 0;
	mutex_lock(&sbs->lock);
652
	if (!battery->present) {
653 654 655 656 657 658 659 660 661 662 663 664
		result = -ENODEV;
		goto end;
	}
	if (count > sizeof(alarm_string) - 1) {
		result = -EINVAL;
		goto end;
	}
	if (copy_from_user(alarm_string, buffer, count)) {
		result = -EFAULT;
		goto end;
	}
	alarm_string[count] = 0;
665 666
	battery->alarm_capacity = simple_strtoul(alarm_string, NULL, 0) /
					acpi_battery_scale(battery);
667
	acpi_battery_set_alarm(battery);
668
      end:
669 670
	mutex_unlock(&sbs->lock);
	if (result)
671
		return result;
672
	return count;
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
}

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

static struct file_operations acpi_battery_info_fops = {
	.open = acpi_battery_info_open_fs,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.owner = THIS_MODULE,
};

static struct file_operations acpi_battery_state_fops = {
	.open = acpi_battery_state_open_fs,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.owner = THIS_MODULE,
};

static struct file_operations acpi_battery_alarm_fops = {
	.open = acpi_battery_alarm_open_fs,
	.read = seq_read,
	.write = acpi_battery_write_alarm,
	.llseek = seq_lseek,
	.release = single_release,
	.owner = THIS_MODULE,
};

/* Legacy AC Adapter Interface */

static struct proc_dir_entry *acpi_ac_dir = NULL;

static int acpi_ac_read_state(struct seq_file *seq, void *offset)
{

712
	struct acpi_sbs *sbs = seq->private;
713

714
	mutex_lock(&sbs->lock);
715 716

	seq_printf(seq, "state:                   %s\n",
717
		   sbs->charger_present ? "on-line" : "off-line");
718

719
	mutex_unlock(&sbs->lock);
720
	return 0;
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
}

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

static struct file_operations acpi_ac_state_fops = {
	.open = acpi_ac_state_open_fs,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.owner = THIS_MODULE,
};

736 737
#endif

738 739 740
/* --------------------------------------------------------------------------
                                 Driver Interface
   -------------------------------------------------------------------------- */
741
static int acpi_battery_read(struct acpi_battery *battery)
742
{
743 744
	int result = 0, saved_present = battery->present;
	u16 state;
745

746 747 748 749 750 751 752 753 754 755 756 757 758
	if (battery->sbs->manager_present) {
		result = acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
				ACPI_SBS_MANAGER, 0x01, (u8 *)&state);
		if (!result)
			battery->present = state & (1 << battery->id);
		state &= 0x0fff;
		state |= 1 << (battery->id + 12);
		acpi_smbus_write(battery->sbs->hc, SMBUS_WRITE_WORD,
				  ACPI_SBS_MANAGER, 0x01, (u8 *)&state, 2);
	} else if (battery->id == 0)
		battery->present = 1;
	if (result || !battery->present)
		return result;
759

760 761 762 763 764 765 766 767 768
	if (saved_present != battery->present) {
		battery->update_time = 0;
		result = acpi_battery_get_info(battery);
		if (result)
			return result;
	}
	result = acpi_battery_get_state(battery);
	return result;
}
769

770
/* Smart Battery */
771 772 773
static int acpi_battery_add(struct acpi_sbs *sbs, int id)
{
	struct acpi_battery *battery = &sbs->battery[id];
774 775
	int result;

776 777
	battery->id = id;
	battery->sbs = sbs;
778 779 780
	result = acpi_battery_read(battery);
	if (result)
		return result;
781

782
	sprintf(battery->name, ACPI_BATTERY_DIR_NAME, id);
783
#ifdef CONFIG_ACPI_PROCFS_POWER
784 785 786 787
	acpi_sbs_add_fs(&battery->proc_entry, acpi_battery_dir,
			battery->name, &acpi_battery_info_fops,
			&acpi_battery_state_fops, &acpi_battery_alarm_fops,
			battery);
788
#endif
789
#ifdef CONFIG_ACPI_SYSFS_POWER
790 791 792 793 794 795 796 797 798 799 800 801 802
	battery->bat.name = battery->name;
	battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
	if (!acpi_battery_mode(battery)) {
		battery->bat.properties = sbs_charge_battery_props;
		battery->bat.num_properties =
		    ARRAY_SIZE(sbs_charge_battery_props);
	} else {
		battery->bat.properties = sbs_energy_battery_props;
		battery->bat.num_properties =
		    ARRAY_SIZE(sbs_energy_battery_props);
	}
	battery->bat.get_property = acpi_sbs_battery_get_property;
	result = power_supply_register(&sbs->device->dev, &battery->bat);
J
Jeff Garzik 已提交
803 804 805 806 807 808 809
	if (result)
		goto end;
	result = device_create_file(battery->bat.dev, &alarm_attr);
	if (result)
		goto end;
	battery->have_sysfs_alarm = 1;
      end:
810
#endif
811
	printk(KERN_INFO PREFIX "%s [%s]: Battery Slot [%s] (battery %s)\n",
812
	       ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
813
	       battery->name, battery->present ? "present" : "absent");
814
	return result;
815 816 817 818
}

static void acpi_battery_remove(struct acpi_sbs *sbs, int id)
{
J
Jeff Garzik 已提交
819
	struct acpi_battery *battery = &sbs->battery[id];
820
#ifdef CONFIG_ACPI_SYSFS_POWER
J
Jeff Garzik 已提交
821 822 823 824
	if (battery->bat.dev) {
		if (battery->have_sysfs_alarm)
			device_remove_file(battery->bat.dev, &alarm_attr);
		power_supply_unregister(&battery->bat);
825
	}
826
#endif
827
#ifdef CONFIG_ACPI_PROCFS_POWER
J
Jeff Garzik 已提交
828 829
	if (battery->proc_entry)
		acpi_sbs_remove_fs(&battery->proc_entry, acpi_battery_dir);
830
#endif
831 832
}

833
static int acpi_charger_add(struct acpi_sbs *sbs)
834 835 836 837
{
	int result;

	result = acpi_ac_get_present(sbs);
838
	if (result)
839
		goto end;
840
#ifdef CONFIG_ACPI_PROCFS_POWER
841 842 843 844
	result = acpi_sbs_add_fs(&sbs->charger_entry, acpi_ac_dir,
				 ACPI_AC_DIR_NAME, NULL,
				 &acpi_ac_state_fops, NULL, sbs);
	if (result)
845
		goto end;
846
#endif
847
#ifdef CONFIG_ACPI_SYSFS_POWER
848 849 850 851 852 853
	sbs->charger.name = "sbs-charger";
	sbs->charger.type = POWER_SUPPLY_TYPE_MAINS;
	sbs->charger.properties = sbs_ac_props;
	sbs->charger.num_properties = ARRAY_SIZE(sbs_ac_props);
	sbs->charger.get_property = sbs_get_ac_property;
	power_supply_register(&sbs->device->dev, &sbs->charger);
854
#endif
855 856
	printk(KERN_INFO PREFIX "%s [%s]: AC Adapter [%s] (%s)\n",
	       ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
857
	       ACPI_AC_DIR_NAME, sbs->charger_present ? "on-line" : "off-line");
858
      end:
859
	return result;
860 861
}

862
static void acpi_charger_remove(struct acpi_sbs *sbs)
863
{
864
#ifdef CONFIG_ACPI_SYSFS_POWER
865 866
	if (sbs->charger.dev)
		power_supply_unregister(&sbs->charger);
867
#endif
868
#ifdef CONFIG_ACPI_PROCFS_POWER
869 870
	if (sbs->charger_entry)
		acpi_sbs_remove_fs(&sbs->charger_entry, acpi_ac_dir);
871
#endif
872 873
}

A
Adrian Bunk 已提交
874
static void acpi_sbs_callback(void *context)
875
{
876 877 878 879 880 881 882
	int id;
	struct acpi_sbs *sbs = context;
	struct acpi_battery *bat;
	u8 saved_charger_state = sbs->charger_present;
	u8 saved_battery_state;
	acpi_ac_get_present(sbs);
	if (sbs->charger_present != saved_charger_state) {
883
#ifdef CONFIG_ACPI_PROC_EVENT
884 885 886
		acpi_bus_generate_proc_event4(ACPI_AC_CLASS, ACPI_AC_DIR_NAME,
					      ACPI_SBS_NOTIFY_STATUS,
					      sbs->charger_present);
887
#endif
888
#ifdef CONFIG_ACPI_SYSFS_POWER
889
		kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
890
#endif
891
	}
892 893 894 895 896 897 898 899 900
	if (sbs->manager_present) {
		for (id = 0; id < MAX_SBS_BAT; ++id) {
			if (!(sbs->batteries_supported & (1 << id)))
				continue;
			bat = &sbs->battery[id];
			saved_battery_state = bat->present;
			acpi_battery_read(bat);
			if (saved_battery_state == bat->present)
				continue;
901
#ifdef CONFIG_ACPI_PROC_EVENT
902 903 904 905
			acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS,
						      bat->name,
						      ACPI_SBS_NOTIFY_STATUS,
						      bat->present);
906
#endif
907
#ifdef CONFIG_ACPI_SYSFS_POWER
908
			kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
909
#endif
910 911 912 913
		}
	}
}

914
static int acpi_sbs_remove(struct acpi_device *device, int type);
915 916 917

static int acpi_sbs_add(struct acpi_device *device)
{
918 919
	struct acpi_sbs *sbs;
	int result = 0;
920
	int id;
921

922
	sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
923
	if (!sbs) {
924 925
		result = -ENOMEM;
		goto end;
926 927
	}

928
	mutex_init(&sbs->lock);
929

930
	sbs->hc = acpi_driver_data(device->parent);
931
	sbs->device = device;
932 933 934 935
	strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
	strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
	acpi_driver_data(device) = sbs;

936
	result = acpi_charger_add(sbs);
937 938
	if (result)
		goto end;
939

940 941 942 943 944 945 946 947 948
	result = acpi_manager_get_info(sbs);
	if (!result) {
		sbs->manager_present = 1;
		for (id = 0; id < MAX_SBS_BAT; ++id)
			if ((sbs->batteries_supported & (1 << id)))
				acpi_battery_add(sbs, id);
	} else
		acpi_battery_add(sbs, 0);
	acpi_smbus_register_callback(sbs->hc, acpi_sbs_callback, sbs);
949
      end:
950 951
	if (result)
		acpi_sbs_remove(device, 0);
952
	return result;
953 954
}

955
static int acpi_sbs_remove(struct acpi_device *device, int type)
956
{
L
Len Brown 已提交
957
	struct acpi_sbs *sbs;
958 959
	int id;

960
	if (!device)
961
		return -EINVAL;
962
	sbs = acpi_driver_data(device);
963
	if (!sbs)
964
		return -EINVAL;
965 966 967
	mutex_lock(&sbs->lock);
	acpi_smbus_unregister_callback(sbs->hc);
	for (id = 0; id < MAX_SBS_BAT; ++id)
968
		acpi_battery_remove(sbs, id);
969 970 971
	acpi_charger_remove(sbs);
	mutex_unlock(&sbs->lock);
	mutex_destroy(&sbs->lock);
972
	kfree(sbs);
973
	return 0;
974 975
}

976 977
static void acpi_sbs_rmdirs(void)
{
978
#ifdef CONFIG_ACPI_PROCFS_POWER
979 980 981 982 983 984 985 986
	if (acpi_ac_dir) {
		acpi_unlock_ac_dir(acpi_ac_dir);
		acpi_ac_dir = NULL;
	}
	if (acpi_battery_dir) {
		acpi_unlock_battery_dir(acpi_battery_dir);
		acpi_battery_dir = NULL;
	}
987
#endif
988 989 990 991 992 993 994 995
}

static int acpi_sbs_resume(struct acpi_device *device)
{
	struct acpi_sbs *sbs;
	if (!device)
		return -EINVAL;
	sbs = device->driver_data;
996
	acpi_sbs_callback(sbs);
997 998 999
	return 0;
}

1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
static struct acpi_driver acpi_sbs_driver = {
	.name = "sbs",
	.class = ACPI_SBS_CLASS,
	.ids = sbs_device_ids,
	.ops = {
		.add = acpi_sbs_add,
		.remove = acpi_sbs_remove,
		.resume = acpi_sbs_resume,
		},
};

1011 1012 1013 1014
static int __init acpi_sbs_init(void)
{
	int result = 0;

1015 1016
	if (acpi_disabled)
		return -ENODEV;
1017
#ifdef CONFIG_ACPI_PROCFS_POWER
1018
	acpi_ac_dir = acpi_lock_ac_dir();
1019
	if (!acpi_ac_dir)
1020
		return -ENODEV;
1021 1022
	acpi_battery_dir = acpi_lock_battery_dir();
	if (!acpi_battery_dir) {
1023
		acpi_sbs_rmdirs();
1024
		return -ENODEV;
1025
	}
1026
#endif
1027 1028
	result = acpi_bus_register_driver(&acpi_sbs_driver);
	if (result < 0) {
1029
		acpi_sbs_rmdirs();
1030
		return -ENODEV;
1031
	}
1032
	return 0;
1033 1034 1035 1036 1037
}

static void __exit acpi_sbs_exit(void)
{
	acpi_bus_unregister_driver(&acpi_sbs_driver);
1038
	acpi_sbs_rmdirs();
1039
	return;
1040 1041 1042 1043
}

module_init(acpi_sbs_init);
module_exit(acpi_sbs_exit);