diff options
author | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2013-08-27 08:42:06 -0400 |
---|---|---|
committer | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2013-09-29 15:09:29 -0400 |
commit | 26cae166cff9148cd2cab40f64ed548ba1189a8e (patch) | |
tree | 0123ea6e21a91d1c10ef6924c8197e3a246b0b72 /drivers/clk/clk-highbank.c | |
parent | e8ecbc7c51a4c27030427db055597fb53e29d0db (diff) |
ARM: highbank: remove custom .init_time hook
With arch/arm calling of_clk_init(NULL) from time_init(), we can now
remove custom .init_time hooks. Highbank clock provider need a reference
to system registers, as a workaround current clk driver maps those
independent of arch code now.
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Acked-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk-highbank.c')
-rw-r--r-- | drivers/clk/clk-highbank.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/clk/clk-highbank.c b/drivers/clk/clk-highbank.c index 2e08cb001936..2e7e9d9798cb 100644 --- a/drivers/clk/clk-highbank.c +++ b/drivers/clk/clk-highbank.c | |||
@@ -20,8 +20,7 @@ | |||
20 | #include <linux/clk-provider.h> | 20 | #include <linux/clk-provider.h> |
21 | #include <linux/io.h> | 21 | #include <linux/io.h> |
22 | #include <linux/of.h> | 22 | #include <linux/of.h> |
23 | 23 | #include <linux/of_address.h> | |
24 | extern void __iomem *sregs_base; | ||
25 | 24 | ||
26 | #define HB_PLL_LOCK_500 0x20000000 | 25 | #define HB_PLL_LOCK_500 0x20000000 |
27 | #define HB_PLL_LOCK 0x10000000 | 26 | #define HB_PLL_LOCK 0x10000000 |
@@ -280,6 +279,7 @@ static __init struct clk *hb_clk_init(struct device_node *node, const struct clk | |||
280 | const char *clk_name = node->name; | 279 | const char *clk_name = node->name; |
281 | const char *parent_name; | 280 | const char *parent_name; |
282 | struct clk_init_data init; | 281 | struct clk_init_data init; |
282 | struct device_node *srnp; | ||
283 | int rc; | 283 | int rc; |
284 | 284 | ||
285 | rc = of_property_read_u32(node, "reg", ®); | 285 | rc = of_property_read_u32(node, "reg", ®); |
@@ -290,7 +290,11 @@ static __init struct clk *hb_clk_init(struct device_node *node, const struct clk | |||
290 | if (WARN_ON(!hb_clk)) | 290 | if (WARN_ON(!hb_clk)) |
291 | return NULL; | 291 | return NULL; |
292 | 292 | ||
293 | hb_clk->reg = sregs_base + reg; | 293 | /* Map system registers */ |
294 | srnp = of_find_compatible_node(NULL, NULL, "calxeda,hb-sregs"); | ||
295 | hb_clk->reg = of_iomap(srnp, 0); | ||
296 | BUG_ON(!hb_clk->reg); | ||
297 | hb_clk->reg += reg; | ||
294 | 298 | ||
295 | of_property_read_string(node, "clock-output-names", &clk_name); | 299 | of_property_read_string(node, "clock-output-names", &clk_name); |
296 | 300 | ||