Home
last modified time | relevance | path

Searched +full:sun4i +full:- +full:a10 +full:- +full:mod1 +full:- +full:clk (Results 1 – 5 of 5) sorted by relevance

/kernel/linux/linux-5.10/Documentation/devicetree/bindings/clock/
Dallwinner,sun4i-a10-mod1-clk.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
4 $id: http://devicetree.org/schemas/clock/allwinner,sun4i-a10-mod1-clk.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Allwinner A10 Module 1 Clock Device Tree Bindings
10 - Chen-Yu Tsai <wens@csie.org>
11 - Maxime Ripard <mripard@kernel.org>
16 "#clock-cells":
20 const: allwinner,sun4i-a10-mod1-clk
30 clock-output-names:
[all …]
/kernel/linux/linux-4.19/drivers/clk/sunxi/
DMakefile1 # SPDX-License-Identifier: GPL-2.0
3 # Makefile for sunxi specific clk
6 obj-y += clk-sunxi.o clk-factors.o
7 obj-y += clk-a10-codec.o
8 obj-y += clk-a10-hosc.o
9 obj-y += clk-a10-mod1.o
10 obj-y += clk-a10-pll2.o
11 obj-y += clk-a10-ve.o
12 obj-y += clk-a20-gmac.o
13 obj-y += clk-mod0.o
[all …]
Dclk-a10-mod1.c17 #include <linux/clk-provider.h>
31 struct clk *clk; in sun4i_mod1_clk_setup() local
35 const char *clk_name = node->name; in sun4i_mod1_clk_setup()
51 of_property_read_string(node, "clock-output-names", &clk_name); in sun4i_mod1_clk_setup()
54 gate->reg = reg; in sun4i_mod1_clk_setup()
55 gate->bit_idx = SUN4I_MOD1_ENABLE; in sun4i_mod1_clk_setup()
56 gate->lock = &mod1_lock; in sun4i_mod1_clk_setup()
57 mux->reg = reg; in sun4i_mod1_clk_setup()
58 mux->shift = SUN4I_MOD1_MUX; in sun4i_mod1_clk_setup()
59 mux->mask = BIT(SUN4I_MOD1_MUX_WIDTH) - 1; in sun4i_mod1_clk_setup()
[all …]
/kernel/linux/linux-5.10/drivers/clk/sunxi/
DMakefile1 # SPDX-License-Identifier: GPL-2.0
3 # Makefile for sunxi specific clk
6 obj-$(CONFIG_CLK_SUNXI) += clk-factors.o
8 obj-$(CONFIG_CLK_SUNXI_CLOCKS) += clk-sunxi.o
9 obj-$(CONFIG_CLK_SUNXI_CLOCKS) += clk-a10-codec.o
10 obj-$(CONFIG_CLK_SUNXI_CLOCKS) += clk-a10-hosc.o
11 obj-$(CONFIG_CLK_SUNXI_CLOCKS) += clk-a10-mod1.o
12 obj-$(CONFIG_CLK_SUNXI_CLOCKS) += clk-a10-pll2.o
13 obj-$(CONFIG_CLK_SUNXI_CLOCKS) += clk-a10-ve.o
14 obj-$(CONFIG_CLK_SUNXI_CLOCKS) += clk-a20-gmac.o
[all …]
Dclk-a10-mod1.c1 // SPDX-License-Identifier: GPL-2.0-or-later
8 #include <linux/clk-provider.h>
23 struct clk *clk; in sun4i_mod1_clk_setup() local
27 const char *clk_name = node->name; in sun4i_mod1_clk_setup()
43 of_property_read_string(node, "clock-output-names", &clk_name); in sun4i_mod1_clk_setup()
46 gate->reg = reg; in sun4i_mod1_clk_setup()
47 gate->bit_idx = SUN4I_MOD1_ENABLE; in sun4i_mod1_clk_setup()
48 gate->lock = &mod1_lock; in sun4i_mod1_clk_setup()
49 mux->reg = reg; in sun4i_mod1_clk_setup()
50 mux->shift = SUN4I_MOD1_MUX; in sun4i_mod1_clk_setup()
[all …]