1 /* SPDX-License-Identifier: GPL-2.0 */
3 // Spreadtrum divider clock driver
5 // Copyright (C) 2017 Spreadtrum, Inc.
6 // Author: Chunyan Zhang <chunyan.zhang@spreadtrum.com>
14 * struct sprd_div_internal - Internal divider description
15 * @shift: Bit offset of the divider in its register
16 * @width: Width of the divider field in its register
18 * That structure represents a single divider, and is meant to be
19 * embedded in other structures representing the various clock
22 struct sprd_div_internal
{
27 #define _SPRD_DIV_CLK(_shift, _width) \
34 struct sprd_div_internal div
;
35 struct sprd_clk_common common
;
38 #define SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, \
39 _shift, _width, _flags, _fn) \
40 struct sprd_div _struct = { \
41 .div = _SPRD_DIV_CLK(_shift, _width), \
45 .hw.init = _fn(_name, _parent, \
46 &sprd_div_ops, _flags), \
50 #define SPRD_DIV_CLK(_struct, _name, _parent, _reg, \
51 _shift, _width, _flags) \
52 SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, \
53 _shift, _width, _flags, CLK_HW_INIT)
55 #define SPRD_DIV_CLK_HW(_struct, _name, _parent, _reg, \
56 _shift, _width, _flags) \
57 SPRD_DIV_CLK_HW_INIT_FN(_struct, _name, _parent, _reg, \
58 _shift, _width, _flags, CLK_HW_INIT_HW)
60 static inline struct sprd_div
*hw_to_sprd_div(const struct clk_hw
*hw
)
62 struct sprd_clk_common
*common
= hw_to_sprd_clk_common(hw
);
64 return container_of(common
, struct sprd_div
, common
);
67 long sprd_div_helper_round_rate(struct sprd_clk_common
*common
,
68 const struct sprd_div_internal
*div
,
70 unsigned long *parent_rate
);
72 unsigned long sprd_div_helper_recalc_rate(struct sprd_clk_common
*common
,
73 const struct sprd_div_internal
*div
,
74 unsigned long parent_rate
);
76 int sprd_div_helper_set_rate(const struct sprd_clk_common
*common
,
77 const struct sprd_div_internal
*div
,
79 unsigned long parent_rate
);
81 extern const struct clk_ops sprd_div_ops
;
83 #endif /* _SPRD_DIV_H_ */