diff options
author | Chen-Yu Tsai <wens@csie.org> | 2014-07-09 15:54:35 +0800 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2014-07-15 08:53:24 +0200 |
commit | 6c1d66f0da59362cb33ce37d436cd28c77c2b2cb (patch) | |
tree | 2e10bc9d59d7217ae7a44808a38227c3f55fe8e9 /drivers/clk/sunxi | |
parent | b72efd0f651271ee05835ab848eee7c4e6851c99 (diff) | |
download | blackbird-op-linux-6c1d66f0da59362cb33ce37d436cd28c77c2b2cb.tar.gz blackbird-op-linux-6c1d66f0da59362cb33ce37d436cd28c77c2b2cb.zip |
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 = { .mask = {0x7F}, }; +static const struct gates_data sun8i_a23_apb0_gates __initconst = { + .mask = {0x5D}, +}; + const struct of_device_id sun6i_a31_apb0_gates_clk_dt_ids[] = { { .compatible = "allwinner,sun6i-a31-apb0-gates-clk", .data = &sun6i_a31_apb0_gates }, + { .compatible = "allwinner,sun8i-a23-apb0-gates-clk", .data = &sun8i_a23_apb0_gates }, { /* sentinel */ } }; |