From: Tero Kristo <t-kristo@ti.com>
To: linux-omap@vger.kernel.org, paul@pwsan.com, tony@atomide.com,
nm@ti.com, rnayak@ti.com, mturquette@linaro.org
Cc: linux-arm-kernel@lists.infradead.org,
devicetree-discuss@lists.ozlabs.org,
Russell King <linux@arm.linux.org.uk>
Subject: [PATCHv3 1/9] CLK: clkdev: add support for looking up clocks from DT
Date: Tue, 25 Jun 2013 15:38:25 +0300 [thread overview]
Message-ID: <1372163913-16566-2-git-send-email-t-kristo@ti.com> (raw)
In-Reply-To: <1372163913-16566-1-git-send-email-t-kristo@ti.com>
clk_get_sys / clk_get can now find clocks from device-tree. If a DT clock
is found, an entry is added to the clk_lookup list also for subsequent
searches.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Cc: Russell King <linux@arm.linux.org.uk>
---
drivers/clk/clkdev.c | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/drivers/clk/clkdev.c b/drivers/clk/clkdev.c
index 442a313..e39f082 100644
--- a/drivers/clk/clkdev.c
+++ b/drivers/clk/clkdev.c
@@ -93,6 +93,18 @@ struct clk *of_clk_get_by_name(struct device_node *np, const char *name)
EXPORT_SYMBOL(of_clk_get_by_name);
#endif
+/**
+ * clkdev_add_nolock - add lookup entry for a clock
+ * @cl: pointer to new clock lookup entry
+ *
+ * Non-locking version, used internally by clk_find() to add DT based
+ * clock lookup entries.
+ */
+static void clkdev_add_nolock(struct clk_lookup *cl)
+{
+ list_add_tail(&cl->node, &clocks);
+}
+
/*
* Find the correct struct clk for the device and connection ID.
* We do slightly fuzzy matching here:
@@ -106,6 +118,9 @@ static struct clk_lookup *clk_find(const char *dev_id, const char *con_id)
{
struct clk_lookup *p, *cl = NULL;
int match, best_found = 0, best_possible = 0;
+ struct device_node *node;
+ struct clk *clk;
+ struct of_phandle_args clkspec;
if (dev_id)
best_possible += 2;
@@ -133,6 +148,23 @@ static struct clk_lookup *clk_find(const char *dev_id, const char *con_id)
break;
}
}
+
+ if (cl)
+ return cl;
+
+ /* If clock was not found, attempt to look-up from DT */
+ node = of_find_node_by_name(NULL, con_id);
+
+ clkspec.np = node;
+
+ clk = of_clk_get_from_provider(&clkspec);
+
+ if (!IS_ERR(clk)) {
+ /* We found a clock, add node to clkdev */
+ cl = clkdev_alloc(clk, con_id, dev_id);
+ clkdev_add_nolock(cl);
+ }
+
return cl;
}
--
1.7.9.5
next prev parent reply other threads:[~2013-06-25 12:38 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-25 12:38 [PATCHv3 0/9] ARM: OMAP4 clock data conversion to DT Tero Kristo
2013-06-25 12:38 ` Tero Kristo [this message]
2013-06-25 12:38 ` [PATCHv3 2/9] clk: omap: introduce clock driver Tero Kristo
2013-06-25 12:38 ` [PATCHv3 3/9] CLK: OMAP4: Add DPLL clock support Tero Kristo
2013-06-25 12:38 ` [PATCHv3 4/9] CLK: omap: move part of the machine specific clock header contents to driver Tero Kristo
2013-06-25 12:38 ` [PATCHv3 5/9] ARM: OMAP: clock: add DT duplicate clock registration mechanism Tero Kristo
2013-06-25 12:38 ` [PATCHv3 6/9] CLK: omap: add autoidle support Tero Kristo
2013-06-25 12:38 ` [PATCHv3 7/9] CLK: omap: add support for OMAP gate clock Tero Kristo
2013-06-25 12:38 ` [PATCHv3 8/9] ARM: dts: omap4 clock data Tero Kristo
2013-06-25 12:38 ` [PATCHv3 9/9] ARM: OMAP4: register DT clocks and remove old data Tero Kristo
2013-06-25 15:03 ` [PATCHv3 0/9] ARM: OMAP4 clock data conversion to DT Peter Ujfalusi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1372163913-16566-2-git-send-email-t-kristo@ti.com \
--to=t-kristo@ti.com \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=mturquette@linaro.org \
--cc=nm@ti.com \
--cc=paul@pwsan.com \
--cc=rnayak@ti.com \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).