sbs.c 19.5 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
 *  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>
28
#include <linux/slab.h>
29 30 31
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
32

33
#include <linux/acpi.h>
34
#include <linux/timer.h>
35
#include <linux/jiffies.h>
36
#include <linux/delay.h>
37 38
#include <linux/power_supply.h>

39
#include "sbshc.h"
40
#include "battery.h"
41

42 43
#define PREFIX "ACPI: "

44 45 46 47 48 49 50 51 52
#define ACPI_SBS_CLASS			"sbs"
#define ACPI_AC_CLASS			"ac_adapter"
#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"

53 54
#define ACPI_SBS_NOTIFY_STATUS		0x80
#define ACPI_SBS_NOTIFY_INFO		0x81
55

56
MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
57 58 59
MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
MODULE_LICENSE("GPL");

60 61 62
static unsigned int cache_time = 1000;
module_param(cache_time, uint, 0644);
MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
63

64
#define MAX_SBS_BAT			4
65 66
#define ACPI_SBS_BLOCK_MAX		32

67
static const struct acpi_device_id sbs_device_ids[] = {
68
	{"ACPI0002", 0},
69 70 71 72
	{"", 0},
};
MODULE_DEVICE_TABLE(acpi, sbs_device_ids);

73
struct acpi_battery {
74
	struct power_supply bat;
75
	struct acpi_sbs *sbs;
76 77
	unsigned long update_time;
	char name[8];
78 79 80
	char manufacturer_name[ACPI_SBS_BLOCK_MAX];
	char device_name[ACPI_SBS_BLOCK_MAX];
	char device_chemistry[ACPI_SBS_BLOCK_MAX];
81
	u16 alarm_capacity;
82 83 84 85
	u16 full_charge_capacity;
	u16 design_capacity;
	u16 design_voltage;
	u16 serial_number;
86 87
	u16 cycle_count;
	u16 temp_now;
88
	u16 voltage_now;
89 90
	s16 rate_now;
	s16 rate_avg;
91
	u16 capacity_now;
92
	u16 state_of_charge;
93 94
	u16 state;
	u16 mode;
95
	u16 spec;
96 97
	u8 id;
	u8 present:1;
J
Jeff Garzik 已提交
98
	u8 have_sysfs_alarm:1;
99 100
};

101
#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
102

103
struct acpi_sbs {
104
	struct power_supply charger;
105
	struct acpi_device *device;
106
	struct acpi_smb_hc *hc;
107
	struct mutex lock;
108
	struct acpi_battery battery[MAX_SBS_BAT];
109
	u8 batteries_supported:4;
110 111
	u8 manager_present:1;
	u8 charger_present:1;
112
	u8 charger_exists:1;
113 114
};

115 116
#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)

117
static int acpi_sbs_remove(struct acpi_device *device);
118 119
static int acpi_battery_get_state(struct acpi_battery *battery);

120
static inline int battery_scale(int log)
121
{
122 123 124 125
	int scale = 1;
	while (log--)
		scale *= 10;
	return scale;
126 127
}

128
static inline int acpi_battery_vscale(struct acpi_battery *battery)
129
{
130
	return battery_scale((battery->spec & 0x0f00) >> 8);
131 132
}

133
static inline int acpi_battery_ipscale(struct acpi_battery *battery)
134
{
135
	return battery_scale((battery->spec & 0xf000) >> 12);
136 137
}

138
static inline int acpi_battery_mode(struct acpi_battery *battery)
139
{
140
	return (battery->mode & 0x8000);
141
}
142

143
static inline int acpi_battery_scale(struct acpi_battery *battery)
144
{
145 146
	return (acpi_battery_mode(battery) ? 10 : 1) *
	    acpi_battery_ipscale(battery);
147 148
}

149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
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;
185 186

	acpi_battery_get_state(battery);
187 188
	switch (psp) {
	case POWER_SUPPLY_PROP_STATUS:
189
		if (battery->rate_now < 0)
190
			val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
191
		else if (battery->rate_now > 0)
192 193 194 195 196 197 198 199 200 201
			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;
202 203 204
	case POWER_SUPPLY_PROP_CYCLE_COUNT:
		val->intval = battery->cycle_count;
		break;
205 206 207 208 209 210 211 212 213
	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:
214 215
	case POWER_SUPPLY_PROP_POWER_NOW:
		val->intval = abs(battery->rate_now) *
216
				acpi_battery_ipscale(battery) * 1000;
217 218 219
		val->intval *= (acpi_battery_mode(battery)) ?
				(battery->voltage_now *
				acpi_battery_vscale(battery) / 1000) : 1;
220 221
		break;
	case POWER_SUPPLY_PROP_CURRENT_AVG:
222 223
	case POWER_SUPPLY_PROP_POWER_AVG:
		val->intval = abs(battery->rate_avg) *
224
				acpi_battery_ipscale(battery) * 1000;
225 226 227
		val->intval *= (acpi_battery_mode(battery)) ?
				(battery->voltage_now *
				acpi_battery_vscale(battery) / 1000) : 1;
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
		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,
270
	POWER_SUPPLY_PROP_CYCLE_COUNT,
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
	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,
292 293
	POWER_SUPPLY_PROP_POWER_NOW,
	POWER_SUPPLY_PROP_POWER_AVG,
294 295 296 297 298 299 300 301
	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,
};
302

303

304 305 306
/* --------------------------------------------------------------------------
                            Smart Battery System Management
   -------------------------------------------------------------------------- */
307

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

314 315 316 317 318 319 320 321 322 323 324 325 326
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)},
};
327

328 329 330
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)},
331 332
	{0x0a, SMBUS_READ_WORD, offsetof(struct acpi_battery, rate_now)},
	{0x0b, SMBUS_READ_WORD, offsetof(struct acpi_battery, rate_avg)},
333 334 335 336
	{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)},
};
337

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

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

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

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

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

371 372
	if (battery->update_time &&
	    time_before(jiffies, battery->update_time +
373 374 375 376 377 378 379 380 381 382
				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)
383 384 385
			goto end;
	}
      end:
386
	battery->update_time = jiffies;
387
	return result;
388 389
}

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

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

	int ret;

404

405
	if (sbs->manager_present) {
406
		ret = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
407
				0x01, (u8 *)&value);
408 409 410 411 412 413 414 415 416 417 418
		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;
		}
419
	}
420 421 422 423
	ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD, ACPI_SBS_BATTERY,
				0x01, (u8 *)&battery->alarm_capacity, 2);
      end:
	return ret;
424 425 426 427
}

static int acpi_ac_get_present(struct acpi_sbs *sbs)
{
428 429
	int result;
	u16 status;
430

431 432
	result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_CHARGER,
				 0x13, (u8 *) & status);
433 434 435 436 437 438 439 440 441 442 443 444 445

	if (result)
		return result;

	/*
	 * The spec requires that bit 4 always be 1. If it's not set, assume
	 * that the implementation doesn't support an SBS charger
	 */
	if (!(status >> 4) & 0x1)
		return -ENODEV;

	sbs->charger_present = (status >> 15) & 0x1;
	return 0;
446 447
}

A
Alexey Starikovskiy 已提交
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
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));
464
	if (sscanf(buf, "%lu\n", &x) == 1)
A
Alexey Starikovskiy 已提交
465 466 467 468 469 470 471 472
		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 = {
473
	.attr = {.name = "alarm", .mode = 0644},
A
Alexey Starikovskiy 已提交
474 475 476 477
	.show = acpi_battery_alarm_show,
	.store = acpi_battery_alarm_store,
};

478 479 480
/* --------------------------------------------------------------------------
                                 Driver Interface
   -------------------------------------------------------------------------- */
481
static int acpi_battery_read(struct acpi_battery *battery)
482
{
483 484
	int result = 0, saved_present = battery->present;
	u16 state;
485

486 487 488 489 490 491 492 493 494 495 496 497 498
	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;
499

500 501 502 503 504 505 506 507 508
	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;
}
509

510
/* Smart Battery */
511 512 513
static int acpi_battery_add(struct acpi_sbs *sbs, int id)
{
	struct acpi_battery *battery = &sbs->battery[id];
514 515
	int result;

516 517
	battery->id = id;
	battery->sbs = sbs;
518 519 520
	result = acpi_battery_read(battery);
	if (result)
		return result;
521

522
	sprintf(battery->name, ACPI_BATTERY_DIR_NAME, id);
523 524 525 526 527 528 529 530 531 532 533 534 535
	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 已提交
536 537 538 539 540 541 542
	if (result)
		goto end;
	result = device_create_file(battery->bat.dev, &alarm_attr);
	if (result)
		goto end;
	battery->have_sysfs_alarm = 1;
      end:
543
	printk(KERN_INFO PREFIX "%s [%s]: Battery Slot [%s] (battery %s)\n",
544
	       ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
545
	       battery->name, battery->present ? "present" : "absent");
546
	return result;
547 548 549 550
}

static void acpi_battery_remove(struct acpi_sbs *sbs, int id)
{
J
Jeff Garzik 已提交
551
	struct acpi_battery *battery = &sbs->battery[id];
552

J
Jeff Garzik 已提交
553 554 555 556
	if (battery->bat.dev) {
		if (battery->have_sysfs_alarm)
			device_remove_file(battery->bat.dev, &alarm_attr);
		power_supply_unregister(&battery->bat);
557 558 559
	}
}

560
static int acpi_charger_add(struct acpi_sbs *sbs)
561 562 563 564
{
	int result;

	result = acpi_ac_get_present(sbs);
565
	if (result)
566
		goto end;
567

568
	sbs->charger_exists = 1;
569 570 571 572 573 574
	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);
575 576
	printk(KERN_INFO PREFIX "%s [%s]: AC Adapter [%s] (%s)\n",
	       ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
577
	       ACPI_AC_DIR_NAME, sbs->charger_present ? "on-line" : "off-line");
578
      end:
579
	return result;
580 581
}

582
static void acpi_charger_remove(struct acpi_sbs *sbs)
583
{
584 585
	if (sbs->charger.dev)
		power_supply_unregister(&sbs->charger);
586 587
}

A
Adrian Bunk 已提交
588
static void acpi_sbs_callback(void *context)
589
{
590 591 592 593 594
	int id;
	struct acpi_sbs *sbs = context;
	struct acpi_battery *bat;
	u8 saved_charger_state = sbs->charger_present;
	u8 saved_battery_state;
595 596 597 598 599 600

	if (sbs->charger_exists) {
		acpi_ac_get_present(sbs);
		if (sbs->charger_present != saved_charger_state)
			kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
	}
601

602 603 604 605 606 607 608 609 610
	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;
611
			kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
612 613 614 615 616 617
		}
	}
}

static int acpi_sbs_add(struct acpi_device *device)
{
618 619
	struct acpi_sbs *sbs;
	int result = 0;
620
	int id;
621

622
	sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
623
	if (!sbs) {
624 625
		result = -ENOMEM;
		goto end;
626 627
	}

628
	mutex_init(&sbs->lock);
629

630
	sbs->hc = acpi_driver_data(device->parent);
631
	sbs->device = device;
632 633
	strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
	strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
634
	device->driver_data = sbs;
635

636
	result = acpi_charger_add(sbs);
637
	if (result && result != -ENODEV)
638
		goto end;
639

640 641 642 643 644 645 646 647 648
	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);
649
      end:
650
	if (result)
651
		acpi_sbs_remove(device);
652
	return result;
653 654
}

655
static int acpi_sbs_remove(struct acpi_device *device)
656
{
L
Len Brown 已提交
657
	struct acpi_sbs *sbs;
658 659
	int id;

660
	if (!device)
661
		return -EINVAL;
662
	sbs = acpi_driver_data(device);
663
	if (!sbs)
664
		return -EINVAL;
665 666 667
	mutex_lock(&sbs->lock);
	acpi_smbus_unregister_callback(sbs->hc);
	for (id = 0; id < MAX_SBS_BAT; ++id)
668
		acpi_battery_remove(sbs, id);
669 670 671
	acpi_charger_remove(sbs);
	mutex_unlock(&sbs->lock);
	mutex_destroy(&sbs->lock);
672
	kfree(sbs);
673
	return 0;
674 675
}

676
#ifdef CONFIG_PM_SLEEP
677
static int acpi_sbs_resume(struct device *dev)
678 679
{
	struct acpi_sbs *sbs;
680
	if (!dev)
681
		return -EINVAL;
682
	sbs = to_acpi_device(dev)->driver_data;
683
	acpi_sbs_callback(sbs);
684 685
	return 0;
}
686 687
#else
#define acpi_sbs_resume NULL
688
#endif
689

690 691
static SIMPLE_DEV_PM_OPS(acpi_sbs_pm, NULL, acpi_sbs_resume);

692 693 694 695 696 697 698 699
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,
		},
700
	.drv.pm = &acpi_sbs_pm,
701 702
};

703 704 705 706
static int __init acpi_sbs_init(void)
{
	int result = 0;

707 708
	if (acpi_disabled)
		return -ENODEV;
709

710
	result = acpi_bus_register_driver(&acpi_sbs_driver);
711
	if (result < 0)
712
		return -ENODEV;
713

714
	return 0;
715 716 717 718 719
}

static void __exit acpi_sbs_exit(void)
{
	acpi_bus_unregister_driver(&acpi_sbs_driver);
720
	return;
721 722 723 724
}

module_init(acpi_sbs_init);
module_exit(acpi_sbs_exit);