* [PATCH v2] ARM: tegra: clock: Disable clocks left on by bootloader
@ 2011-02-22 20:08 Colin Cross
0 siblings, 0 replies; only message in thread
From: Colin Cross @ 2011-02-22 20:08 UTC (permalink / raw)
To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
Cc: konkers-z5hGa2qSFaRBDgjK7y7TUQ, mike-UTxiZqZC01RS1MOuV/RT9w,
olof-nZhT3qVonbNeoWH0uzbU5w, Colin Cross
Iterates through all clocks, disabling any for which the
refcount is 0 but the clock init detected the bootloader
left the clock on. Can be disabled with command line
tegra_keep_boot_clocks
Signed-off-by: Colin Cross <ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org>
---
arch/arm/mach-tegra/clock.c | 45 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-tegra/clock.c b/arch/arm/mach-tegra/clock.c
index e028320..6a50726 100644
--- a/arch/arm/mach-tegra/clock.c
+++ b/arch/arm/mach-tegra/clock.c
@@ -416,6 +416,51 @@ void tegra_sdmmc_tap_delay(struct clk *c, int delay)
spin_unlock_irqrestore(&c->spinlock, flags);
}
+static bool tegra_keep_boot_clocks = false;
+static int __init tegra_keep_boot_clocks_setup(char *__unused)
+{
+ tegra_keep_boot_clocks = true;
+ return 1;
+}
+__setup("tegra_keep_boot_clocks", tegra_keep_boot_clocks_setup);
+
+/*
+ * Iterate through all clocks, disabling any for which the refcount is 0
+ * but the clock init detected the bootloader left the clock on.
+ */
+static int __init tegra_init_disable_boot_clocks(void)
+{
+ struct clk *c;
+
+ mutex_lock(&clock_list_lock);
+
+ list_for_each_entry(c, &clocks, node) {
+ spin_lock_irq(&c->spinlock);
+
+ if (c->refcnt == 0 && c->state == ON &&
+ c->ops && c->ops->disable) {
+ pr_warn_once("%s clocks left on by bootloader:\n",
+ tegra_keep_boot_clocks ?
+ "Prevented disabling" :
+ "Disabling");
+
+ pr_warn(" %s\n", c->name);
+
+ if (!tegra_keep_boot_clocks) {
+ c->ops->disable(c);
+ c->state = OFF;
+ }
+ }
+
+ spin_unlock_irq(&c->spinlock);
+ }
+
+ mutex_unlock(&clock_list_lock);
+
+ return 0;
+}
+late_initcall(tegra_init_disable_boot_clocks);
+
#ifdef CONFIG_DEBUG_FS
static int __clk_lock_all_spinlocks(void)
--
1.7.3.1
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-02-22 20:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-22 20:08 [PATCH v2] ARM: tegra: clock: Disable clocks left on by bootloader Colin Cross
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox