Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7d8caad authored by Rajendra Nayak's avatar Rajendra Nayak Committed by Mike Turquette
Browse files

clk: Add CLK_IS_BASIC flag to identify basic clocks



Most platforms end up using a mix of basic clock types and
some which use clk_hw_foo struct for filling in custom platform
information when the clocks don't fit into basic types supported.

In platform code, its useful to know if a clock is using a basic
type or clk_hw_foo, which helps platforms know if they can
safely use to_clk_hw_foo to derive the clk_hw_foo pointer from
clk_hw.

Mark all basic clocks with a CLK_IS_BASIC flag.

Signed-off-by: default avatarRajendra Nayak <rnayak@ti.com>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
parent 357c3f0a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ static struct clk *_register_divider(struct device *dev, const char *name,

	init.name = name;
	init.ops = &clk_divider_ops;
	init.flags = flags;
	init.flags = flags | CLK_IS_BASIC;
	init.parent_names = (parent_name ? &parent_name: NULL);
	init.num_parents = (parent_name ? 1 : 0);

+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ struct clk *clk_register_fixed_factor(struct device *dev, const char *name,

	init.name = name;
	init.ops = &clk_fixed_factor_ops;
	init.flags = flags;
	init.flags = flags | CLK_IS_BASIC;
	init.parent_names = &parent_name;
	init.num_parents = 1;

+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ struct clk *clk_register_fixed_rate(struct device *dev, const char *name,

	init.name = name;
	init.ops = &clk_fixed_rate_ops;
	init.flags = flags;
	init.flags = flags | CLK_IS_BASIC;
	init.parent_names = (parent_name ? &parent_name: NULL);
	init.num_parents = (parent_name ? 1 : 0);

+1 −1
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@ struct clk *clk_register_gate(struct device *dev, const char *name,

	init.name = name;
	init.ops = &clk_gate_ops;
	init.flags = flags;
	init.flags = flags | CLK_IS_BASIC;
	init.parent_names = (parent_name ? &parent_name: NULL);
	init.num_parents = (parent_name ? 1 : 0);

+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ struct clk *clk_register_mux(struct device *dev, const char *name,

	init.name = name;
	init.ops = &clk_mux_ops;
	init.flags = flags;
	init.flags = flags | CLK_IS_BASIC;
	init.parent_names = parent_names;
	init.num_parents = num_parents;

Loading