diff options
author | Sekhar Nori <nsekhar@ti.com> | 2009-08-31 06:18:01 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-11-25 13:21:19 -0500 |
commit | f02bf3b396846f3da60b4962aeaae8652e20f0dd (patch) | |
tree | f2d4bb08184f81200eb6535dc1cf707fdf356ab5 /arch/arm/mach-davinci/clock.c | |
parent | cd87444802ddceaa2259bc5ac48c1d2e42a99a3f (diff) |
davinci: enable easy top down traversal of clock tree
Achieve easy top down traversal of clock tree by keeping
track of each clock's list of children.
This is useful in supporting DVFS where clock rates of
all children need to be updated in an efficient manner.
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/clock.c')
-rw-r--r-- | arch/arm/mach-davinci/clock.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/arm/mach-davinci/clock.c b/arch/arm/mach-davinci/clock.c index 83d54d50b5ea..f8c4ef08fbc2 100644 --- a/arch/arm/mach-davinci/clock.c +++ b/arch/arm/mach-davinci/clock.c | |||
@@ -123,8 +123,12 @@ int clk_register(struct clk *clk) | |||
123 | clk->name, clk->parent->name)) | 123 | clk->name, clk->parent->name)) |
124 | return -EINVAL; | 124 | return -EINVAL; |
125 | 125 | ||
126 | INIT_LIST_HEAD(&clk->children); | ||
127 | |||
126 | mutex_lock(&clocks_mutex); | 128 | mutex_lock(&clocks_mutex); |
127 | list_add_tail(&clk->node, &clocks); | 129 | list_add_tail(&clk->node, &clocks); |
130 | if (clk->parent) | ||
131 | list_add_tail(&clk->childnode, &clk->parent->children); | ||
128 | mutex_unlock(&clocks_mutex); | 132 | mutex_unlock(&clocks_mutex); |
129 | 133 | ||
130 | /* If rate is already set, use it */ | 134 | /* If rate is already set, use it */ |
@@ -146,6 +150,7 @@ void clk_unregister(struct clk *clk) | |||
146 | 150 | ||
147 | mutex_lock(&clocks_mutex); | 151 | mutex_lock(&clocks_mutex); |
148 | list_del(&clk->node); | 152 | list_del(&clk->node); |
153 | list_del(&clk->childnode); | ||
149 | mutex_unlock(&clocks_mutex); | 154 | mutex_unlock(&clocks_mutex); |
150 | } | 155 | } |
151 | EXPORT_SYMBOL(clk_unregister); | 156 | EXPORT_SYMBOL(clk_unregister); |
@@ -352,9 +357,8 @@ dump_clock(struct seq_file *s, unsigned nest, struct clk *parent) | |||
352 | /* REVISIT show device associations too */ | 357 | /* REVISIT show device associations too */ |
353 | 358 | ||
354 | /* cost is now small, but not linear... */ | 359 | /* cost is now small, but not linear... */ |
355 | list_for_each_entry(clk, &clocks, node) { | 360 | list_for_each_entry(clk, &parent->children, childnode) { |
356 | if (clk->parent == parent) | 361 | dump_clock(s, nest + NEST_DELTA, clk); |
357 | dump_clock(s, nest + NEST_DELTA, clk); | ||
358 | } | 362 | } |
359 | } | 363 | } |
360 | 364 | ||