linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Voltage & Current regulator framework
@ 2008-07-30  9:32 Liam Girdwood
  0 siblings, 0 replies; 2+ messages in thread
From: Liam Girdwood @ 2008-07-30  9:32 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton
  Cc: linux-kernel, David Brownell, Greg KH, pHilipp Zabel, Mark Brown,
	Stephen Rothwell, Mike Rapoport

Hi Linus,

Please pull the voltage and current regulator framework along with
the bq24022 regulator driver.

This framework is designed to provide a generic interface to voltage and
current regulators within the Linux 2.6 kernel. It's intended to provide
voltage and current control to client or consumer drivers and also
provide status information to user space applications through a sysfs
interface.

The intention is to allow systems to dynamically control regulator
output in order to save power and prolong battery life. This applies to
both voltage regulators (where voltage output is controllable) and
current sinks (where current output is controllable).

This framework has been in Andrews mm tree and Linux-next without
incident.

Thanks!

Liam

====

The following changes since commit 6e86841d05f371b5b9b86ce76c02aaee83352298:
  Linus Torvalds (1):
        Linux 2.6.27-rc1

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git reg-for-linus

Liam Girdwood (11):
      regulator: consumer device interface
      regulator: regulator driver interface
      regulator: machine driver interface
      regulator: regulator framework core
      regulator: core kbuild files
      regulator: documentation - overview
      regulator: documentation - consumer interface
      regulator: documentation - regulator driver
      regulator: documentation - machine
      regulator: documentation - ABI
      regulator: maintainers - add maintainers for regulator framework.

Mark Brown (3):
      regulator: fixed regulator interface
      regulator: add support for fixed regulators.
      regulator: regulator test harness

Philipp Zabel (1):
      regulator: TI bq24022 Li-Ion Charger driver

 Documentation/ABI/testing/sysfs-class-regulator |  315 ++++
 Documentation/power/regulator/consumer.txt      |  182 +++
 Documentation/power/regulator/machine.txt       |  101 ++
 Documentation/power/regulator/overview.txt      |  171 ++
 Documentation/power/regulator/regulator.txt     |   30 +
 MAINTAINERS                                     |    9 +
 arch/arm/Kconfig                                |    2 +
 drivers/Makefile                                |    1 +
 drivers/regulator/Kconfig                       |   59 +
 drivers/regulator/Makefile                      |   12 +
 drivers/regulator/bq24022.c                     |  167 ++
 drivers/regulator/core.c                        | 1903 +++++++++++++++++++++++
 drivers/regulator/fixed.c                       |  129 ++
 drivers/regulator/virtual.c                     |  345 ++++
 include/linux/regulator/bq24022.h               |   21 +
 include/linux/regulator/consumer.h              |  284 ++++
 include/linux/regulator/driver.h                |   99 ++
 include/linux/regulator/fixed.h                 |   22 +
 include/linux/regulator/machine.h               |  104 ++
 19 files changed, 3956 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-class-regulator
 create mode 100644 Documentation/power/regulator/consumer.txt
 create mode 100644 Documentation/power/regulator/machine.txt
 create mode 100644 Documentation/power/regulator/overview.txt
 create mode 100644 Documentation/power/regulator/regulator.txt
 create mode 100644 drivers/regulator/Kconfig
 create mode 100644 drivers/regulator/Makefile
 create mode 100644 drivers/regulator/bq24022.c
 create mode 100644 drivers/regulator/core.c
 create mode 100644 drivers/regulator/fixed.c
 create mode 100644 drivers/regulator/virtual.c
 create mode 100644 include/linux/regulator/bq24022.h
 create mode 100644 include/linux/regulator/consumer.h
 create mode 100644 include/linux/regulator/driver.h
 create mode 100644 include/linux/regulator/fixed.h
 create mode 100644 include/linux/regulator/machine.h


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

* [GIT PULL] Voltage & Current regulator framework
@ 2008-07-22 10:30 Liam Girdwood
  0 siblings, 0 replies; 2+ messages in thread
From: Liam Girdwood @ 2008-07-22 10:30 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton
  Cc: David Brownell, Mark Brown, pHilipp Zabel, Mike Rapoport,
	linux-kernel, Greg KH, Stephen Rothwell

Hi Linus,

Please pull the voltage and current regulator framework along with
the bq24022 regulator driver.

This framework is designed to provide a generic interface to voltage and
current regulators within the Linux 2.6 kernel. It's intended to provide
voltage and current control to client or consumer drivers and also
provide status information to user space applications through a sysfs
interface.

The intention is to allow systems to dynamically control regulator
output in order to save power and prolong battery life. This applies to
both voltage regulators (where voltage output is controllable) and
current sinks (where current output is controllable).

This framework has been in Andrews mm tree and Linux-next without
incident.

Thanks!

Liam

====

The following changes since commit 93ded9b8fd42abe2c3607097963d8de6ad9117eb:
  Linus Torvalds (1):
        Merge git://git.kernel.org/.../gregkh/usb-2.6

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git reg-for-linus

Liam Girdwood (11):
      regulator: consumer device interface
      regulator: regulator driver interface
      regulator: machine driver interface
      regulator: regulator framework core
      regulator: core kbuild files
      regulator: documentation - overview
      regulator: documentation - consumer interface
      regulator: documentation - regulator driver
      regulator: documentation - machine
      regulator: documentation - ABI
      regulator: maintainers - add maintainers for regulator framework.

Mark Brown (3):
      regulator: fixed regulator interface
      regulator: add support for fixed regulators.
      regulator: regulator test harness

Philipp Zabel (1):
      regulator: TI bq24022 Li-Ion Charger driver

 Documentation/ABI/testing/sysfs-class-regulator |  315 ++++
 Documentation/power/regulator/consumer.txt      |  182 +++
 Documentation/power/regulator/machine.txt       |  101 ++
 Documentation/power/regulator/overview.txt      |  171 ++
 Documentation/power/regulator/regulator.txt     |   30 +
 MAINTAINERS                                     |    9 +
 arch/arm/Kconfig                                |    2 +
 drivers/Makefile                                |    1 +
 drivers/regulator/Kconfig                       |   59 +
 drivers/regulator/Makefile                      |   12 +
 drivers/regulator/bq24022.c                     |  167 ++
 drivers/regulator/core.c                        | 1903 +++++++++++++++++++++++
 drivers/regulator/fixed.c                       |  129 ++
 drivers/regulator/virtual.c                     |  345 ++++
 include/linux/regulator/bq24022.h               |   21 +
 include/linux/regulator/consumer.h              |  284 ++++
 include/linux/regulator/driver.h                |   99 ++
 include/linux/regulator/fixed.h                 |   22 +
 include/linux/regulator/machine.h               |  104 ++
 19 files changed, 3956 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-class-regulator
 create mode 100644 Documentation/power/regulator/consumer.txt
 create mode 100644 Documentation/power/regulator/machine.txt
 create mode 100644 Documentation/power/regulator/overview.txt
 create mode 100644 Documentation/power/regulator/regulator.txt
 create mode 100644 drivers/regulator/Kconfig
 create mode 100644 drivers/regulator/Makefile
 create mode 100644 drivers/regulator/bq24022.c
 create mode 100644 drivers/regulator/core.c
 create mode 100644 drivers/regulator/fixed.c
 create mode 100644 drivers/regulator/virtual.c
 create mode 100644 include/linux/regulator/bq24022.h
 create mode 100644 include/linux/regulator/consumer.h
 create mode 100644 include/linux/regulator/driver.h
 create mode 100644 include/linux/regulator/fixed.h
 create mode 100644 include/linux/regulator/machine.h


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

end of thread, other threads:[~2008-07-30  9:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-30  9:32 [GIT PULL] Voltage & Current regulator framework Liam Girdwood
  -- strict thread matches above, loose matches on Subject: below --
2008-07-22 10:30 Liam Girdwood

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).