2 * Copyright (c) 2016 Maxime Ripard. All rights reserved.
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
17 #include <linux/clk-provider.h>
19 #include "ccu_common.h"
24 * struct ccu_nk - Definition of an N-K clock
26 * Clocks based on the formula parent * N * K
33 struct ccu_mult_internal n;
34 struct ccu_mult_internal k;
36 unsigned int fixed_post_div;
38 struct ccu_common common;
41 #define SUNXI_CCU_NK_WITH_GATE_LOCK_POSTDIV(_struct, _name, _parent, _reg, \
44 _gate, _lock, _postdiv, \
46 struct ccu_nk _struct = { \
49 .k = _SUNXI_CCU_MULT(_kshift, _kwidth), \
50 .n = _SUNXI_CCU_MULT(_nshift, _nwidth), \
51 .fixed_post_div = _postdiv, \
54 .features = CCU_FEATURE_FIXED_POSTDIV, \
55 .hw.init = CLK_HW_INIT(_name, \
62 static inline struct ccu_nk *hw_to_ccu_nk(struct clk_hw *hw)
64 struct ccu_common *common = hw_to_ccu_common(hw);
66 return container_of(common, struct ccu_nk, common);
69 extern const struct clk_ops ccu_nk_ops;
71 #endif /* _CCU_NK_H_ */