2 * linux/include/linux/cpufreq.h
4 * Copyright (C) 2001 Russell King
5 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
8 * $Id: cpufreq.h,v 1.36 2003/01/20 17:31:48 db Exp $
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 #ifndef _LINUX_CPUFREQ_H
15 #define _LINUX_CPUFREQ_H
17 #include <linux/mutex.h>
18 #include <linux/notifier.h>
19 #include <linux/threads.h>
20 #include <linux/device.h>
21 #include <linux/kobject.h>
22 #include <linux/sysfs.h>
23 #include <linux/completion.h>
24 #include <linux/workqueue.h>
25 #include <linux/cpumask.h>
26 #include <asm/div64.h>
28 #define CPUFREQ_NAME_LEN 16
31 /*********************************************************************
32 * CPUFREQ NOTIFIER INTERFACE *
33 *********************************************************************/
35 int cpufreq_register_notifier(struct notifier_block
*nb
, unsigned int list
);
36 int cpufreq_unregister_notifier(struct notifier_block
*nb
, unsigned int list
);
38 #define CPUFREQ_TRANSITION_NOTIFIER (0)
39 #define CPUFREQ_POLICY_NOTIFIER (1)
42 /* if (cpufreq_driver->target) exists, the ->governor decides what frequency
43 * within the limits is used. If (cpufreq_driver->setpolicy> exists, these
44 * two generic policies are available:
47 #define CPUFREQ_POLICY_POWERSAVE (1)
48 #define CPUFREQ_POLICY_PERFORMANCE (2)
50 /* Frequency values here are CPU kHz so that hardware which doesn't run
51 * with some frequencies can complain without having to guess what per
52 * cent / per mille means.
53 * Maximum transition latency is in nanoseconds - if it's unknown,
54 * CPUFREQ_ETERNAL shall be used.
57 struct cpufreq_governor
;
59 #define CPUFREQ_ETERNAL (-1)
60 struct cpufreq_cpuinfo
{
61 unsigned int max_freq
;
62 unsigned int min_freq
;
63 unsigned int transition_latency
; /* in 10^(-9) s = nanoseconds */
66 struct cpufreq_real_policy
{
67 unsigned int min
; /* in kHz */
68 unsigned int max
; /* in kHz */
69 unsigned int policy
; /* see above */
70 struct cpufreq_governor
*governor
; /* see below */
73 struct cpufreq_policy
{
74 cpumask_t cpus
; /* affected CPUs */
75 unsigned int shared_type
; /* ANY or ALL affected CPUs
77 unsigned int cpu
; /* cpu nr of registered CPU */
78 struct cpufreq_cpuinfo cpuinfo
;/* see above */
80 unsigned int min
; /* in kHz */
81 unsigned int max
; /* in kHz */
82 unsigned int cur
; /* in kHz, only needed if cpufreq
83 * governors are used */
84 unsigned int policy
; /* see above */
85 struct cpufreq_governor
*governor
; /* see below */
87 struct work_struct update
; /* if update_policy() needs to be
88 * called, but you're in IRQ context */
90 struct cpufreq_real_policy user_policy
;
93 struct completion kobj_unregister
;
96 #define CPUFREQ_ADJUST (0)
97 #define CPUFREQ_INCOMPATIBLE (1)
98 #define CPUFREQ_NOTIFY (2)
100 #define CPUFREQ_SHARED_TYPE_NONE (0) /* None */
101 #define CPUFREQ_SHARED_TYPE_HW (1) /* HW does needed coordination */
102 #define CPUFREQ_SHARED_TYPE_ALL (2) /* All dependent CPUs should set freq */
103 #define CPUFREQ_SHARED_TYPE_ANY (3) /* Freq can be set from any dependent CPU*/
105 /******************** cpufreq transition notifiers *******************/
107 #define CPUFREQ_PRECHANGE (0)
108 #define CPUFREQ_POSTCHANGE (1)
109 #define CPUFREQ_RESUMECHANGE (8)
110 #define CPUFREQ_SUSPENDCHANGE (9)
112 struct cpufreq_freqs
{
113 unsigned int cpu
; /* cpu nr */
116 u8 flags
; /* flags of cpufreq_driver, see below. */
121 * cpufreq_scale - "old * mult / div" calculation for large values (32-bit-arch safe)
127 * new = old * mult / div
129 static inline unsigned long cpufreq_scale(unsigned long old
, u_int div
, u_int mult
)
131 #if BITS_PER_LONG == 32
133 u64 result
= ((u64
) old
) * ((u64
) mult
);
135 return (unsigned long) result
;
137 #elif BITS_PER_LONG == 64
139 unsigned long result
= old
* ((u64
) mult
);
146 /*********************************************************************
147 * CPUFREQ GOVERNORS *
148 *********************************************************************/
150 #define CPUFREQ_GOV_START 1
151 #define CPUFREQ_GOV_STOP 2
152 #define CPUFREQ_GOV_LIMITS 3
154 struct cpufreq_governor
{
155 char name
[CPUFREQ_NAME_LEN
];
156 int (*governor
) (struct cpufreq_policy
*policy
,
158 struct list_head governor_list
;
159 struct module
*owner
;
162 /* pass a target to the cpufreq driver
164 extern int cpufreq_driver_target(struct cpufreq_policy
*policy
,
165 unsigned int target_freq
,
166 unsigned int relation
);
167 extern int __cpufreq_driver_target(struct cpufreq_policy
*policy
,
168 unsigned int target_freq
,
169 unsigned int relation
);
172 extern int __cpufreq_driver_getavg(struct cpufreq_policy
*policy
);
174 int cpufreq_register_governor(struct cpufreq_governor
*governor
);
175 void cpufreq_unregister_governor(struct cpufreq_governor
*governor
);
177 int lock_policy_rwsem_read(int cpu
);
178 int lock_policy_rwsem_write(int cpu
);
179 void unlock_policy_rwsem_read(int cpu
);
180 void unlock_policy_rwsem_write(int cpu
);
183 /*********************************************************************
184 * CPUFREQ DRIVER INTERFACE *
185 *********************************************************************/
187 #define CPUFREQ_RELATION_L 0 /* lowest frequency at or above target */
188 #define CPUFREQ_RELATION_H 1 /* highest frequency below or at target */
192 struct cpufreq_driver
{
193 struct module
*owner
;
194 char name
[CPUFREQ_NAME_LEN
];
197 /* needed by all drivers */
198 int (*init
) (struct cpufreq_policy
*policy
);
199 int (*verify
) (struct cpufreq_policy
*policy
);
201 /* define one out of two */
202 int (*setpolicy
) (struct cpufreq_policy
*policy
);
203 int (*target
) (struct cpufreq_policy
*policy
,
204 unsigned int target_freq
,
205 unsigned int relation
);
207 /* should be defined, if possible */
208 unsigned int (*get
) (unsigned int cpu
);
211 unsigned int (*getavg
) (unsigned int cpu
);
212 int (*exit
) (struct cpufreq_policy
*policy
);
213 int (*suspend
) (struct cpufreq_policy
*policy
, pm_message_t pmsg
);
214 int (*resume
) (struct cpufreq_policy
*policy
);
215 struct freq_attr
**attr
;
220 #define CPUFREQ_STICKY 0x01 /* the driver isn't removed even if
221 * all ->init() calls failed */
222 #define CPUFREQ_CONST_LOOPS 0x02 /* loops_per_jiffy or other kernel
223 * "constants" aren't affected by
224 * frequency transitions */
225 #define CPUFREQ_PM_NO_WARN 0x04 /* don't warn on suspend/resume speed
228 int cpufreq_register_driver(struct cpufreq_driver
*driver_data
);
229 int cpufreq_unregister_driver(struct cpufreq_driver
*driver_data
);
232 void cpufreq_notify_transition(struct cpufreq_freqs
*freqs
, unsigned int state
);
235 static inline void cpufreq_verify_within_limits(struct cpufreq_policy
*policy
, unsigned int min
, unsigned int max
)
237 if (policy
->min
< min
)
239 if (policy
->max
< min
)
241 if (policy
->min
> max
)
243 if (policy
->max
> max
)
245 if (policy
->min
> policy
->max
)
246 policy
->min
= policy
->max
;
251 struct attribute attr
;
252 ssize_t (*show
)(struct cpufreq_policy
*, char *);
253 ssize_t (*store
)(struct cpufreq_policy
*, const char *, size_t count
);
257 /*********************************************************************
258 * CPUFREQ 2.6. INTERFACE *
259 *********************************************************************/
260 int cpufreq_set_policy(struct cpufreq_policy
*policy
);
261 int cpufreq_get_policy(struct cpufreq_policy
*policy
, unsigned int cpu
);
262 int cpufreq_update_policy(unsigned int cpu
);
264 /* query the current CPU frequency (in kHz). If zero, cpufreq couldn't detect it */
265 unsigned int cpufreq_get(unsigned int cpu
);
267 /* query the last known CPU freq (in kHz). If zero, cpufreq couldn't detect it */
268 #ifdef CONFIG_CPU_FREQ
269 unsigned int cpufreq_quick_get(unsigned int cpu
);
271 static inline unsigned int cpufreq_quick_get(unsigned int cpu
)
278 /*********************************************************************
279 * CPUFREQ DEFAULT GOVERNOR *
280 *********************************************************************/
283 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE
284 extern struct cpufreq_governor cpufreq_gov_performance
;
285 #define CPUFREQ_DEFAULT_GOVERNOR &cpufreq_gov_performance
286 #elif defined(CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE)
287 extern struct cpufreq_governor cpufreq_gov_userspace
;
288 #define CPUFREQ_DEFAULT_GOVERNOR &cpufreq_gov_userspace
292 /*********************************************************************
293 * FREQUENCY TABLE HELPERS *
294 *********************************************************************/
296 #define CPUFREQ_ENTRY_INVALID ~0
297 #define CPUFREQ_TABLE_END ~1
299 struct cpufreq_frequency_table
{
300 unsigned int index
; /* any */
301 unsigned int frequency
; /* kHz - doesn't need to be in ascending
305 int cpufreq_frequency_table_cpuinfo(struct cpufreq_policy
*policy
,
306 struct cpufreq_frequency_table
*table
);
308 int cpufreq_frequency_table_verify(struct cpufreq_policy
*policy
,
309 struct cpufreq_frequency_table
*table
);
311 int cpufreq_frequency_table_target(struct cpufreq_policy
*policy
,
312 struct cpufreq_frequency_table
*table
,
313 unsigned int target_freq
,
314 unsigned int relation
,
315 unsigned int *index
);
317 /* the following 3 funtions are for cpufreq core use only */
318 struct cpufreq_frequency_table
*cpufreq_frequency_get_table(unsigned int cpu
);
319 struct cpufreq_policy
*cpufreq_cpu_get(unsigned int cpu
);
320 void cpufreq_cpu_put (struct cpufreq_policy
*data
);
322 /* the following are really really optional */
323 extern struct freq_attr cpufreq_freq_attr_scaling_available_freqs
;
325 void cpufreq_frequency_table_get_attr(struct cpufreq_frequency_table
*table
,
328 void cpufreq_frequency_table_put_attr(unsigned int cpu
);
331 /*********************************************************************
332 * UNIFIED DEBUG HELPERS *
333 *********************************************************************/
335 #define CPUFREQ_DEBUG_CORE 1
336 #define CPUFREQ_DEBUG_DRIVER 2
337 #define CPUFREQ_DEBUG_GOVERNOR 4
339 #ifdef CONFIG_CPU_FREQ_DEBUG
341 extern void cpufreq_debug_printk(unsigned int type
, const char *prefix
,
342 const char *fmt
, ...);
346 #define cpufreq_debug_printk(msg...) do { } while(0)
348 #endif /* CONFIG_CPU_FREQ_DEBUG */
350 #endif /* _LINUX_CPUFREQ_H */