summaryrefslogtreecommitdiff
path: root/drivers/clk/clk-bcm2835.c
diff options
context:
space:
mode:
authorStephen Warren <swarren@wwwdotorg.org>2012-12-25 04:55:01 (GMT)
committerStephen Warren <swarren@wwwdotorg.org>2013-01-15 04:46:59 (GMT)
commit526d239c301e6cb7fe6657642c43d6c524590745 (patch)
treeace90967411bf1a61b1a0baf9acaace67ff71d4a /drivers/clk/clk-bcm2835.c
parent9931faca02c604c22335f5a935a501bb2ace6e20 (diff)
downloadlinux-526d239c301e6cb7fe6657642c43d6c524590745.tar.xz
clk: bcm2835: probe for fixed-clock in device tree
This will allow fixed-clocks to be registered in device tree, which in turn will allow clock clients to look up their clocks in device tree. The first driver to use this feature will be the bcm2835 SDHCI/MMC driver. In the long run, it is likely these fixed clocks will be replaced with an actual clock implementation which speaks to the VideoCore processor, but this change should be transparent to clock consumers. Cc: Mike Turquette <mturquette@linaro.org> Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'drivers/clk/clk-bcm2835.c')
-rw-r--r--drivers/clk/clk-bcm2835.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/clk/clk-bcm2835.c b/drivers/clk/clk-bcm2835.c
index e69991a..792bc57 100644
--- a/drivers/clk/clk-bcm2835.c
+++ b/drivers/clk/clk-bcm2835.c
@@ -20,6 +20,13 @@
#include <linux/clk-provider.h>
#include <linux/clkdev.h>
#include <linux/clk/bcm2835.h>
+#include <linux/clk-provider.h>
+#include <linux/of.h>
+
+static const __initconst struct of_device_id clk_match[] = {
+ { .compatible = "fixed-clock", .data = of_fixed_clk_setup, },
+ { }
+};
/*
* These are fixed clocks. They're probably not all root clocks and it may
@@ -56,4 +63,6 @@ void __init bcm2835_init_clocks(void)
ret = clk_register_clkdev(clk, NULL, "20215000.uart");
if (ret)
pr_err("uart1_pclk alias not registered\n");
+
+ of_clk_init(clk_match);
}