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/compiler.h>
18 #include <linux/clk-provider.h>
20 #define CCU_FEATURE_FRACTIONAL BIT(0)
21 #define CCU_FEATURE_VARIABLE_PREDIV BIT(1)
22 #define CCU_FEATURE_FIXED_PREDIV BIT(2)
23 #define CCU_FEATURE_FIXED_POSTDIV BIT(3)
24 #define CCU_FEATURE_ALL_PREDIV BIT(4)
25 #define CCU_FEATURE_LOCK_REG BIT(5)
26 #define CCU_FEATURE_MMC_TIMING_SWITCH BIT(6)
27 #define CCU_FEATURE_SIGMA_DELTA_MOD BIT(7)
29 /* MMC timing mode switch bit */
30 #define CCU_MMC_NEW_TIMING_MODE BIT(30)
34 #define CLK_HW_INIT(_name, _parent, _ops, _flags) \
35 &(struct clk_init_data) { \
38 .parent_names = (const char *[]) { _parent }, \
43 #define CLK_HW_INIT_PARENTS(_name, _parents, _ops, _flags) \
44 &(struct clk_init_data) { \
47 .parent_names = _parents, \
48 .num_parents = ARRAY_SIZE(_parents), \
52 #define CLK_FIXED_FACTOR(_struct, _name, _parent, \
53 _div, _mult, _flags) \
54 struct clk_fixed_factor _struct = { \
57 .hw.init = CLK_HW_INIT(_name, \
59 &clk_fixed_factor_ops, \
69 unsigned long features
;
74 static inline struct ccu_common
*hw_to_ccu_common(struct clk_hw
*hw
)
76 return container_of(hw
, struct ccu_common
, hw
);
79 struct sunxi_ccu_desc
{
80 struct ccu_common
**ccu_clks
;
81 unsigned long num_ccu_clks
;
83 struct clk_hw_onecell_data
*hw_clks
;
85 struct ccu_reset_map
*resets
;
86 unsigned long num_resets
;
89 void ccu_helper_wait_for_lock(struct ccu_common
*common
, u32 lock
);
92 struct notifier_block clk_nb
;
93 struct ccu_common
*common
;
99 #define to_ccu_pll_nb(_nb) container_of(_nb, struct ccu_pll_nb, clk_nb)
101 int ccu_pll_notifier_register(struct ccu_pll_nb
*pll_nb
);
103 int sunxi_ccu_probe(struct device_node
*node
, void __iomem
*reg
,
104 const struct sunxi_ccu_desc
*desc
);
106 #endif /* _COMMON_H_ */