public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v13 0/4] Devfreq, DVFS Framework for Non-CPU Devices
@ 2011-09-29 12:18 MyungJoo Ham
  2011-09-29 12:18 ` [PATCH v13 1/4] PM / OPP: Add OPP availability change notifier MyungJoo Ham
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: MyungJoo Ham @ 2011-09-29 12:18 UTC (permalink / raw)
  To: LKML, linux-pm
  Cc: Pavel Machek, Rafael J. Wysocki, Greg Kroah-Hartman, Kevin Hilman,
	Nishanth Menon, Kyungmin Park, Colin Cross, Thomas Gleixner,
	Mike Turquette, myungjoo.ham

Summary of update from the patchset v12:

- Bugfix: _remove_devfreq and devfreq_dev_release may be called multiple times.

- Fixup kerneldoc comments.

Reposting to LKML as Kernel-PM list seems broken.

I didn't put Kevin's ACK at 2/4 patch as there has been changes in 2/4 patch
(the bugfix mentioned above).

MyungJoo Ham (4):
  PM / OPP: Add OPP availability change notifier.
  PM: Introduce devfreq: generic DVFS framework with device-specific
    OPPs
  PM / devfreq: add common sysfs interfaces
  PM / devfreq: add basic governors

 Documentation/ABI/testing/sysfs-class-devfreq |   52 +++
 drivers/Kconfig                               |    2 +
 drivers/Makefile                              |    2 +
 drivers/base/power/opp.c                      |   30 ++
 drivers/devfreq/Kconfig                       |   75 +++
 drivers/devfreq/Makefile                      |    5 +
 drivers/devfreq/devfreq.c                     |  601 +++++++++++++++++++++++++
 drivers/devfreq/governor.h                    |   24 +
 drivers/devfreq/governor_performance.c        |   29 ++
 drivers/devfreq/governor_powersave.c          |   29 ++
 drivers/devfreq/governor_simpleondemand.c     |   88 ++++
 drivers/devfreq/governor_userspace.c          |  116 +++++
 include/linux/devfreq.h                       |  238 ++++++++++
 include/linux/opp.h                           |   12 +
 14 files changed, 1303 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-class-devfreq
 create mode 100644 drivers/devfreq/Kconfig
 create mode 100644 drivers/devfreq/Makefile
 create mode 100644 drivers/devfreq/devfreq.c
 create mode 100644 drivers/devfreq/governor.h
 create mode 100644 drivers/devfreq/governor_performance.c
 create mode 100644 drivers/devfreq/governor_powersave.c
 create mode 100644 drivers/devfreq/governor_simpleondemand.c
 create mode 100644 drivers/devfreq/governor_userspace.c
 create mode 100644 include/linux/devfreq.h

-- 
1.7.4.1


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

end of thread, other threads:[~2011-10-01 22:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-29 12:18 [PATCH v13 0/4] Devfreq, DVFS Framework for Non-CPU Devices MyungJoo Ham
2011-09-29 12:18 ` [PATCH v13 1/4] PM / OPP: Add OPP availability change notifier MyungJoo Ham
2011-09-29 12:18 ` [PATCH v13 2/4] PM: Introduce devfreq: generic DVFS framework with device-specific OPPs MyungJoo Ham
     [not found]   ` <4E85ADB7.1030900@gmail.com>
2011-09-30 16:41     ` Rafael J. Wysocki
2011-09-29 12:18 ` [PATCH v13 3/4] PM / devfreq: add common sysfs interfaces MyungJoo Ham
2011-09-29 12:18 ` [PATCH v13 4/4] PM / devfreq: add basic governors MyungJoo Ham
2011-09-30 20:44 ` [PATCH v13 0/4] Devfreq, DVFS Framework for Non-CPU Devices Rafael J. Wysocki
2011-09-30 23:30   ` Kevin Hilman
2011-10-01 22:26     ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox