All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 0/2] power: introduce Charger-Manager
@ 2011-11-17 10:13 Donggeun Kim
  2011-11-17 10:13 ` [RFC PATCH 1/2] power: Charger-Manager: add initial Charger-Manager driver Donggeun Kim
  2011-11-17 10:13 ` [RFC PATCH 2/2] power: Charger-Manager: add properties for power-supply-class Donggeun Kim
  0 siblings, 2 replies; 14+ messages in thread
From: Donggeun Kim @ 2011-11-17 10:13 UTC (permalink / raw)
  To: linux-pm
  Cc: len.brown, pavel, rjw, rdunlap, cbouatmailru, myungjoo.ham,
	kyungmin.park, dg77.kim, linux-kernel

Charger Manager provides in-kernel battery charger management that
requires temperature monitoring during both normal and suspend-to-RAM states
and where each battery may have multiple chargers attached and the userland
wants to look at the aggregated information of the multiple chargers.

Charger Manager is a platform_driver with power-supply-class entries.
An instance of Charger Manager (a platform-device created with
Charger-Manager) represents a battery with chargers. If there are multiple
batteries with their own chargers acting independently in a system,
the system may need multiple instances of Charger Manager.
Multiple chargers (e.g., USB, wireless, and solar panels) may be included
as pairs of a regulator and a power-supply-class
per charger.

Charger Manager glues multiple charger-related frameworks (regulators of
chargers, power-supply-class from chargers and fuel-gauge, RTC,
suspend-again, ...) together to provide aggregated information and
transparent battery monitoring to userspace.

For the discussions about the need for in-suspend monitoring, please
refer to the discussions of suspend-again in PM:
v1 https://lists.linux-foundation.org/pipermail/linux-pm/2011-April/031052.html
v2 https://lists.linux-foundation.org/pipermail/linux-pm/2011-April/031111.html
v3 https://lists.linux-foundation.org/pipermail/linux-pm/2011-May/031267.html
v4 https://lists.linux-foundation.org/pipermail/linux-pm/2011-May/031357.html
v5 (last, applied) https://lists.linux-foundation.org/pipermail/linux-pm/2011-June/031561.html

To see the usage example, please refer to:
http://git.infradead.org/users/kmpark/linux-2.6-samsung/shortlog/refs/heads/charger-manager
In this git branch, a test code for Exynos4-NURI is shown.

This patch set supports initial Charger Manager driver.

Donggeun Kim (2):
  power: Charger-Manager: add initial Charger-Manager driver
  power: Charger-Manager: add properties for power-supply-class

 Documentation/power/charger-manager.txt |  164 +++++
 drivers/power/Kconfig                   |    9 +
 drivers/power/Makefile                  |    1 +
 drivers/power/charger-manager.c         | 1064 +++++++++++++++++++++++++++++++
 include/linux/power/charger-manager.h   |  148 +++++
 5 files changed, 1386 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/power/charger-manager.txt
 create mode 100644 drivers/power/charger-manager.c
 create mode 100644 include/linux/power/charger-manager.h

-- 
1.7.4.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2011-11-30  7:59 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-17 10:13 [RFC PATCH 0/2] power: introduce Charger-Manager Donggeun Kim
2011-11-17 10:13 ` [RFC PATCH 1/2] power: Charger-Manager: add initial Charger-Manager driver Donggeun Kim
2011-11-26  1:06   ` Anton Vorontsov
2011-11-28  1:20     ` MyungJoo Ham
2011-11-28 18:52     ` Pavel Machek
2011-11-29  4:41   ` Haojian Zhuang
2011-11-29  4:41     ` Haojian Zhuang
2011-11-29  5:00     ` MyungJoo Ham
2011-11-29  5:00       ` MyungJoo Ham
2011-11-29  5:33       ` Haojian Zhuang
2011-11-29  5:33         ` Haojian Zhuang
2011-11-30  7:58         ` MyungJoo Ham
2011-11-30  7:58           ` MyungJoo Ham
2011-11-17 10:13 ` [RFC PATCH 2/2] power: Charger-Manager: add properties for power-supply-class Donggeun Kim

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.