2 * Copyright 2013 Emilio López
4 * Emilio López <emilio@elopez.com.ar>
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.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/clk-provider.h>
20 #include <linux/of_address.h>
21 #include <linux/slab.h>
23 static DEFINE_SPINLOCK(mod1_lock
);
25 #define SUN4I_MOD1_ENABLE 31
26 #define SUN4I_MOD1_MUX 16
27 #define SUN4I_MOD1_MUX_WIDTH 2
28 #define SUN4I_MOD1_MAX_PARENTS 4
30 static void __init
sun4i_mod1_clk_setup(struct device_node
*node
)
34 struct clk_gate
*gate
;
35 const char *parents
[4];
36 const char *clk_name
= node
->name
;
40 reg
= of_io_request_and_map(node
, 0, of_node_full_name(node
));
44 mux
= kzalloc(sizeof(*mux
), GFP_KERNEL
);
48 gate
= kzalloc(sizeof(*gate
), GFP_KERNEL
);
52 of_property_read_string(node
, "clock-output-names", &clk_name
);
53 i
= of_clk_parent_fill(node
, parents
, SUN4I_MOD1_MAX_PARENTS
);
56 gate
->bit_idx
= SUN4I_MOD1_ENABLE
;
57 gate
->lock
= &mod1_lock
;
59 mux
->shift
= SUN4I_MOD1_MUX
;
60 mux
->mask
= BIT(SUN4I_MOD1_MUX_WIDTH
) - 1;
61 mux
->lock
= &mod1_lock
;
63 clk
= clk_register_composite(NULL
, clk_name
, parents
, i
,
64 &mux
->hw
, &clk_mux_ops
,
66 &gate
->hw
, &clk_gate_ops
, CLK_SET_RATE_PARENT
);
70 of_clk_add_provider(node
, of_clk_src_simple_get
, clk
);
81 CLK_OF_DECLARE(sun4i_mod1
, "allwinner,sun4i-a10-mod1-clk",
82 sun4i_mod1_clk_setup
);