2 * drivers/clk/at91/sckc.c
4 * Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
13 #include <linux/clk-provider.h>
14 #include <linux/clkdev.h>
16 #include <linux/of_address.h>
21 static const struct of_device_id sckc_clk_ids
[] __initconst
= {
24 .compatible
= "atmel,at91sam9x5-clk-slow-osc",
25 .data
= of_at91sam9x5_clk_slow_osc_setup
,
28 .compatible
= "atmel,at91sam9x5-clk-slow-rc-osc",
29 .data
= of_at91sam9x5_clk_slow_rc_osc_setup
,
32 .compatible
= "atmel,at91sam9x5-clk-slow",
33 .data
= of_at91sam9x5_clk_slow_setup
,
38 static void __init
of_at91sam9x5_sckc_setup(struct device_node
*np
)
40 struct device_node
*childnp
;
41 void (*clk_setup
)(struct device_node
*, void __iomem
*);
42 const struct of_device_id
*clk_id
;
43 void __iomem
*regbase
= of_iomap(np
, 0);
48 for_each_child_of_node(np
, childnp
) {
49 clk_id
= of_match_node(sckc_clk_ids
, childnp
);
52 clk_setup
= clk_id
->data
;
53 clk_setup(childnp
, regbase
);
56 CLK_OF_DECLARE(at91sam9x5_clk_sckc
, "atmel,at91sam9x5-sckc",
57 of_at91sam9x5_sckc_setup
);