summaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk.c
diff options
context:
space:
mode:
authorMichael Turquette2015-01-25 01:58:40 +0100
committerMichael Turquette2015-01-25 01:58:40 +0100
commit57386798f7db7f09d69f3b44fc66570e6db91bba (patch)
treec5e5134535a4019005a3b8d089ea54049f4cdc1d /drivers/clk/clk.c
parentARM: clk: add clk-asm9260 driver (diff)
parentclk: Introduce clk_has_parent() (diff)
downloadkernel-qcow2-linux-57386798f7db7f09d69f3b44fc66570e6db91bba.tar.gz
kernel-qcow2-linux-57386798f7db7f09d69f3b44fc66570e6db91bba.tar.xz
kernel-qcow2-linux-57386798f7db7f09d69f3b44fc66570e6db91bba.zip
Merge branch 'clk-has-parent' into clk-next
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r--drivers/clk/clk.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 7f25aaf2a2b0..7ba02e52c554 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -1652,6 +1652,36 @@ void __clk_reparent(struct clk *clk, struct clk *new_parent)
}
/**
+ * clk_has_parent - check if a clock is a possible parent for another
+ * @clk: clock source
+ * @parent: parent clock source
+ *
+ * This function can be used in drivers that need to check that a clock can be
+ * the parent of another without actually changing the parent.
+ *
+ * Returns true if @parent is a possible parent for @clk, false otherwise.
+ */
+bool clk_has_parent(struct clk *clk, struct clk *parent)
+{
+ unsigned int i;
+
+ /* NULL clocks should be nops, so return success if either is NULL. */
+ if (!clk || !parent)
+ return true;
+
+ /* Optimize for the case where the parent is already the parent. */
+ if (clk->parent == parent)
+ return true;
+
+ for (i = 0; i < clk->num_parents; i++)
+ if (strcmp(clk->parent_names[i], parent->name) == 0)
+ return true;
+
+ return false;
+}
+EXPORT_SYMBOL_GPL(clk_has_parent);
+
+/**
* clk_set_parent - switch the parent of a mux clk
* @clk: the mux clk whose input we are switching
* @parent: the new input to clk