1 /* SPDX-License-Identifier: GPL-2.0 */
3 // Spreadtrum multiplexer clock driver
5 // Copyright (C) 2017 Spreadtrum, Inc.
6 // Author: Chunyan Zhang <chunyan.zhang@spreadtrum.com>
14 * struct sprd_mux_ssel - Mux clock's source select bits in its register
15 * @shift: Bit offset of the divider in its register
16 * @width: Width of the divider field in its register
17 * @table: For some mux clocks, not all sources are used on some special
18 * chips, this matches the value of mux clock's register and the
19 * sources which are used for this mux clock
21 struct sprd_mux_ssel
{
28 struct sprd_mux_ssel mux
;
29 struct sprd_clk_common common
;
32 #define _SPRD_MUX_CLK(_shift, _width, _table) \
39 #define SPRD_MUX_CLK_HW_INIT_FN(_struct, _name, _parents, _table, \
40 _reg, _shift, _width, _flags, _fn) \
41 struct sprd_mux _struct = { \
42 .mux = _SPRD_MUX_CLK(_shift, _width, _table), \
46 .hw.init = _fn(_name, _parents, \
47 &sprd_mux_ops, _flags), \
51 #define SPRD_MUX_CLK_TABLE(_struct, _name, _parents, _table, \
52 _reg, _shift, _width, _flags) \
53 SPRD_MUX_CLK_HW_INIT_FN(_struct, _name, _parents, _table, \
54 _reg, _shift, _width, _flags, \
57 #define SPRD_MUX_CLK(_struct, _name, _parents, _reg, \
58 _shift, _width, _flags) \
59 SPRD_MUX_CLK_TABLE(_struct, _name, _parents, NULL, \
60 _reg, _shift, _width, _flags)
62 #define SPRD_MUX_CLK_DATA_TABLE(_struct, _name, _parents, _table, \
63 _reg, _shift, _width, _flags) \
64 SPRD_MUX_CLK_HW_INIT_FN(_struct, _name, _parents, _table, \
65 _reg, _shift, _width, _flags, \
66 CLK_HW_INIT_PARENTS_DATA)
68 #define SPRD_MUX_CLK_DATA(_struct, _name, _parents, _reg, \
69 _shift, _width, _flags) \
70 SPRD_MUX_CLK_DATA_TABLE(_struct, _name, _parents, NULL, \
71 _reg, _shift, _width, _flags)
73 static inline struct sprd_mux
*hw_to_sprd_mux(const struct clk_hw
*hw
)
75 struct sprd_clk_common
*common
= hw_to_sprd_clk_common(hw
);
77 return container_of(common
, struct sprd_mux
, common
);
80 extern const struct clk_ops sprd_mux_ops
;
82 u8
sprd_mux_helper_get_parent(const struct sprd_clk_common
*common
,
83 const struct sprd_mux_ssel
*mux
);
84 int sprd_mux_helper_set_parent(const struct sprd_clk_common
*common
,
85 const struct sprd_mux_ssel
*mux
,
88 #endif /* _SPRD_MUX_H_ */