diff options
author | Chen-Yu Tsai <wens@csie.org> | 2014-07-09 03:54:35 -0400 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2014-07-15 02:53:24 -0400 |
commit | 6c1d66f0da59362cb33ce37d436cd28c77c2b2cb (patch) | |
tree | 2e10bc9d59d7217ae7a44808a38227c3f55fe8e9 /drivers/clk/sunxi | |
parent | b72efd0f651271ee05835ab848eee7c4e6851c99 (diff) |
clk: sunxi: sun6i-a31-apb0-gates: Add A23 APB0 support
This patch adds "allwinner,sun8i-a23-apb0-gates-clk", a A23 specific
compatible to the sun6i-a31-apb0-gates clock driver, along with the
gate bitmap.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'drivers/clk/sunxi')
-rw-r--r-- | drivers/clk/sunxi/clk-sun6i-apb0-gates.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/clk/sunxi/clk-sun6i-apb0-gates.c b/drivers/clk/sunxi/clk-sun6i-apb0-gates.c index 3bd8357f912e..551f220ade91 100644 --- a/drivers/clk/sunxi/clk-sun6i-apb0-gates.c +++ b/drivers/clk/sunxi/clk-sun6i-apb0-gates.c | |||
@@ -25,8 +25,13 @@ static const struct gates_data sun6i_a31_apb0_gates __initconst = { | |||
25 | .mask = {0x7F}, | 25 | .mask = {0x7F}, |
26 | }; | 26 | }; |
27 | 27 | ||
28 | static const struct gates_data sun8i_a23_apb0_gates __initconst = { | ||
29 | .mask = {0x5D}, | ||
30 | }; | ||
31 | |||
28 | const struct of_device_id sun6i_a31_apb0_gates_clk_dt_ids[] = { | 32 | const struct of_device_id sun6i_a31_apb0_gates_clk_dt_ids[] = { |
29 | { .compatible = "allwinner,sun6i-a31-apb0-gates-clk", .data = &sun6i_a31_apb0_gates }, | 33 | { .compatible = "allwinner,sun6i-a31-apb0-gates-clk", .data = &sun6i_a31_apb0_gates }, |
34 | { .compatible = "allwinner,sun8i-a23-apb0-gates-clk", .data = &sun8i_a23_apb0_gates }, | ||
30 | { /* sentinel */ } | 35 | { /* sentinel */ } |
31 | }; | 36 | }; |
32 | 37 | ||