summaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk-u300.c
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2013-05-23 13:18:28 -0400
committerLinus Walleij <linus.walleij@linaro.org>2013-06-17 07:54:37 -0400
commit85fb28bed813469ba56706a7e48fba596f47c253 (patch)
tree25a229324358e68059010b070a43b8da37b908d6 /drivers/clk/clk-u300.c
parentbba5f2cc2f0fe4191ad2699c7c03a6def31f54e2 (diff)
ARM: u300: convert MMC/SD clock to device tree
This converts the last of the U300 clocks to being probed from the device tree. Acked-by: Mike Turquette <mturquette@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/clk/clk-u300.c')
-rw-r--r--drivers/clk/clk-u300.c22
1 files changed, 17 insertions, 5 deletions
diff --git a/drivers/clk/clk-u300.c b/drivers/clk/clk-u300.c
index 5f234d37ccbe..8774e058cb6c 100644
--- a/drivers/clk/clk-u300.c
+++ b/drivers/clk/clk-u300.c
@@ -1139,6 +1139,18 @@ mclk_clk_register(struct device *dev, const char *name,
1139 return clk; 1139 return clk;
1140} 1140}
1141 1141
1142static void __init of_u300_syscon_mclk_init(struct device_node *np)
1143{
1144 struct clk *clk = ERR_PTR(-EINVAL);
1145 const char *clk_name = np->name;
1146 const char *parent_name;
1147
1148 parent_name = of_clk_get_parent_name(np, 0);
1149 clk = mclk_clk_register(NULL, clk_name, parent_name, false);
1150 if (!IS_ERR(clk))
1151 of_clk_add_provider(np, of_clk_src_simple_get, clk);
1152}
1153
1142static const __initconst struct of_device_id u300_clk_match[] = { 1154static const __initconst struct of_device_id u300_clk_match[] = {
1143 { 1155 {
1144 .compatible = "fixed-clock", 1156 .compatible = "fixed-clock",
@@ -1152,12 +1164,16 @@ static const __initconst struct of_device_id u300_clk_match[] = {
1152 .compatible = "stericsson,u300-syscon-clk", 1164 .compatible = "stericsson,u300-syscon-clk",
1153 .data = of_u300_syscon_clk_init, 1165 .data = of_u300_syscon_clk_init,
1154 }, 1166 },
1167 {
1168 .compatible = "stericsson,u300-syscon-mclk",
1169 .data = of_u300_syscon_mclk_init,
1170 },
1155}; 1171};
1156 1172
1173
1157void __init u300_clk_init(void __iomem *base) 1174void __init u300_clk_init(void __iomem *base)
1158{ 1175{
1159 u16 val; 1176 u16 val;
1160 struct clk *clk;
1161 1177
1162 syscon_vbase = base; 1178 syscon_vbase = base;
1163 1179
@@ -1175,8 +1191,4 @@ void __init u300_clk_init(void __iomem *base)
1175 writew(val, syscon_vbase + U300_SYSCON_PMCR); 1191 writew(val, syscon_vbase + U300_SYSCON_PMCR);
1176 1192
1177 of_clk_init(u300_clk_match); 1193 of_clk_init(u300_clk_match);
1178
1179 /* Then this special MMC/SD clock */
1180 clk = mclk_clk_register(NULL, "mmc_clk", "mmc_p_clk", false);
1181 clk_register_clkdev(clk, NULL, "mmci");
1182} 1194}