1
2
3
4
5
6
7
8
9
10
11
12
13
14#ifndef __ARCH_ARM_MACH_OMAP2_CLOCKDOMAIN_H
15#define __ARCH_ARM_MACH_OMAP2_CLOCKDOMAIN_H
16
17#include <linux/init.h>
18
19#include "powerdomain.h"
20#include "clock.h"
21#include "omap_hwmod.h"
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48#define CLKDM_CAN_FORCE_SLEEP (1 << 0)
49#define CLKDM_CAN_FORCE_WAKEUP (1 << 1)
50#define CLKDM_CAN_ENABLE_AUTO (1 << 2)
51#define CLKDM_CAN_DISABLE_AUTO (1 << 3)
52#define CLKDM_NO_AUTODEPS (1 << 4)
53#define CLKDM_ACTIVE_WITH_MPU (1 << 5)
54#define CLKDM_MISSING_IDLE_REPORTING (1 << 6)
55
56#define CLKDM_CAN_HWSUP (CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_DISABLE_AUTO)
57#define CLKDM_CAN_SWSUP (CLKDM_CAN_FORCE_SLEEP | CLKDM_CAN_FORCE_WAKEUP)
58#define CLKDM_CAN_HWSUP_SWSUP (CLKDM_CAN_SWSUP | CLKDM_CAN_HWSUP)
59
60
61
62
63
64
65
66
67
68
69
70
71
72struct clkdm_autodep {
73 union {
74 const char *name;
75 struct clockdomain *ptr;
76 } clkdm;
77};
78
79
80
81
82
83
84
85
86
87
88
89
90
91struct clkdm_dep {
92 const char *clkdm_name;
93 struct clockdomain *clkdm;
94 s16 wkdep_usecount;
95 s16 sleepdep_usecount;
96};
97
98
99#define _CLKDM_FLAG_HWSUP_ENABLED BIT(0)
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124struct clockdomain {
125 const char *name;
126 union {
127 const char *name;
128 struct powerdomain *ptr;
129 } pwrdm;
130 const u16 clktrctrl_mask;
131 const u8 flags;
132 u8 _flags;
133 const u8 dep_bit;
134 const u8 prcm_partition;
135 const u16 cm_inst;
136 const u16 clkdm_offs;
137 struct clkdm_dep *wkdep_srcs;
138 struct clkdm_dep *sleepdep_srcs;
139 int usecount;
140 struct list_head node;
141};
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160struct clkdm_ops {
161 int (*clkdm_add_wkdep)(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
162 int (*clkdm_del_wkdep)(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
163 int (*clkdm_read_wkdep)(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
164 int (*clkdm_clear_all_wkdeps)(struct clockdomain *clkdm);
165 int (*clkdm_add_sleepdep)(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
166 int (*clkdm_del_sleepdep)(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
167 int (*clkdm_read_sleepdep)(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
168 int (*clkdm_clear_all_sleepdeps)(struct clockdomain *clkdm);
169 int (*clkdm_sleep)(struct clockdomain *clkdm);
170 int (*clkdm_wakeup)(struct clockdomain *clkdm);
171 void (*clkdm_allow_idle)(struct clockdomain *clkdm);
172 void (*clkdm_deny_idle)(struct clockdomain *clkdm);
173 int (*clkdm_clk_enable)(struct clockdomain *clkdm);
174 int (*clkdm_clk_disable)(struct clockdomain *clkdm);
175};
176
177int clkdm_register_platform_funcs(struct clkdm_ops *co);
178int clkdm_register_autodeps(struct clkdm_autodep *ia);
179int clkdm_register_clkdms(struct clockdomain **c);
180int clkdm_complete_init(void);
181
182struct clockdomain *clkdm_lookup(const char *name);
183
184int clkdm_for_each(int (*fn)(struct clockdomain *clkdm, void *user),
185 void *user);
186struct powerdomain *clkdm_get_pwrdm(struct clockdomain *clkdm);
187
188int clkdm_add_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
189int clkdm_del_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
190int clkdm_read_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
191int clkdm_clear_all_wkdeps(struct clockdomain *clkdm);
192int clkdm_add_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
193int clkdm_del_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
194int clkdm_read_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2);
195int clkdm_clear_all_sleepdeps(struct clockdomain *clkdm);
196
197void clkdm_allow_idle_nolock(struct clockdomain *clkdm);
198void clkdm_allow_idle(struct clockdomain *clkdm);
199void clkdm_deny_idle_nolock(struct clockdomain *clkdm);
200void clkdm_deny_idle(struct clockdomain *clkdm);
201bool clkdm_in_hwsup(struct clockdomain *clkdm);
202bool clkdm_missing_idle_reporting(struct clockdomain *clkdm);
203
204int clkdm_wakeup_nolock(struct clockdomain *clkdm);
205int clkdm_wakeup(struct clockdomain *clkdm);
206int clkdm_sleep_nolock(struct clockdomain *clkdm);
207int clkdm_sleep(struct clockdomain *clkdm);
208
209int clkdm_clk_enable(struct clockdomain *clkdm, struct clk *clk);
210int clkdm_clk_disable(struct clockdomain *clkdm, struct clk *clk);
211int clkdm_hwmod_enable(struct clockdomain *clkdm, struct omap_hwmod *oh);
212int clkdm_hwmod_disable(struct clockdomain *clkdm, struct omap_hwmod *oh);
213
214extern void __init omap242x_clockdomains_init(void);
215extern void __init omap243x_clockdomains_init(void);
216extern void __init omap3xxx_clockdomains_init(void);
217extern void __init am33xx_clockdomains_init(void);
218extern void __init omap44xx_clockdomains_init(void);
219extern void __init omap54xx_clockdomains_init(void);
220extern void __init dra7xx_clockdomains_init(void);
221void am43xx_clockdomains_init(void);
222
223extern void clkdm_add_autodeps(struct clockdomain *clkdm);
224extern void clkdm_del_autodeps(struct clockdomain *clkdm);
225
226extern struct clkdm_ops omap2_clkdm_operations;
227extern struct clkdm_ops omap3_clkdm_operations;
228extern struct clkdm_ops omap4_clkdm_operations;
229extern struct clkdm_ops am33xx_clkdm_operations;
230extern struct clkdm_ops am43xx_clkdm_operations;
231
232extern struct clkdm_dep gfx_24xx_wkdeps[];
233extern struct clkdm_dep dsp_24xx_wkdeps[];
234extern struct clockdomain wkup_common_clkdm;
235
236#endif
237