lkml.org 
[lkml]   [2012]   [Aug]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Subject[PATCH v2 0/4] [RFC] reentrancy in the common clk framework
Date
The second version of the reentrancy/dvfs rfc differs from the
original[1] in that the former used per-clk mutexes and this version
uses a global lock to protect access to a per-clk enum. The enum can be
in one of two states, LOCKED or UNLOCKED.

The second patch in the series introduces a new common clk rate-change
notifier handler which implements typical dynamic voltage and frequency
scaling logic.

The third patch uses the aforementioned common dvfs rate-change notifier
handler. Instead of implementing the dvfs logic directly (as in [1[)
the driver simply registers a notifier handler using the common dvfs
infrastructure. Potentially all cpufreq and devfreq users could use
this to implement voltage scaling.

The fourth patch demonstrates how it is possible to call top-level clk
api's reentrantly. This example code switches parents of a mux clock
and does prepare/disable directly, without using internal functions. A
more interesting application of this might be to have clk_set_parent
call clk_prepare_enable clk_disable_unprepare directly when reparenting.

There are wide-ranging considerations to the common clk framework in
this series; I know some of you will be in San Diego later this month
and hopefully I'll get some good feedback there as well as on the list.

[1] http://article.gmane.org/gmane.linux.kernel/1327866

Mike Turquette (4):
clk: new locking scheme for reentrancy
clk: notifier handler for dynamic voltage scaling
cpufreq: omap: scale regulator from clk notifier
omap3+: clk: dpll: call clk_prepare directly

arch/arm/mach-omap2/dpll3xxx.c | 8 +-
drivers/clk/Makefile | 3 +-
drivers/clk/clk.c | 354 +++++++++++++++++++++++++++++++++++-----
drivers/clk/dvfs.c | 116 +++++++++++++
drivers/cpufreq/omap-cpufreq.c | 85 +++-------
include/linux/clk-private.h | 1 +
include/linux/clk-provider.h | 4 +-
include/linux/clk.h | 27 ++-
8 files changed, 488 insertions(+), 110 deletions(-)
create mode 100644 drivers/clk/dvfs.c

--
1.7.9.5



\
 
 \ /
  Last update: 2012-08-16 02:42    [W:0.074 / U:0.292 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site