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 mutex lock
; /* CPU ->setpolicy or ->target may
88 only be called once a time */
90 struct work_struct update
; /* if update_policy() needs to be
91 * called, but you're in IRQ context */
93 struct cpufreq_real_policy user_policy
;
96 struct completion kobj_unregister
;
99 #define CPUFREQ_ADJUST (0)
100 #define CPUFREQ_INCOMPATIBLE (1)
101 #define CPUFREQ_NOTIFY (2)
103 #define CPUFREQ_SHARED_TYPE_NONE (0) /* None */
104 #define CPUFREQ_SHARED_TYPE_HW (1) /* HW does needed coordination */
105 #define CPUFREQ_SHARED_TYPE_ALL (2) /* All dependent CPUs should set freq */
106 #define CPUFREQ_SHARED_TYPE_ANY (3) /* Freq can be set from any dependent CPU*/
108 /******************** cpufreq transition notifiers *******************/
110 #define CPUFREQ_PRECHANGE (0)
111 #define CPUFREQ_POSTCHANGE (1)
112 #define CPUFREQ_RESUMECHANGE (8)
113 #define CPUFREQ_SUSPENDCHANGE (9)
115 struct cpufreq_freqs
{
116 unsigned int cpu
; /* cpu nr */
119 u8 flags
; /* flags of cpufreq_driver, see below. */
124 * cpufreq_scale - "old * mult / div" calculation for large values (32-bit-arch safe)
130 * new = old * mult / div
132 static inline unsigned long cpufreq_scale(unsigned long old
, u_int div
, u_int mult
)
134 #if BITS_PER_LONG == 32
136 u64 result
= ((u64
) old
) * ((u64
) mult
);
138 return (unsigned long) result
;
140 #elif BITS_PER_LONG == 64
142 unsigned long result
= old
* ((u64
) mult
);
149 /*********************************************************************
150 * CPUFREQ GOVERNORS *
151 *********************************************************************/
153 #define CPUFREQ_GOV_START 1
154 #define CPUFREQ_GOV_STOP 2
155 #define CPUFREQ_GOV_LIMITS 3
157 struct cpufreq_governor
{
158 char name
[CPUFREQ_NAME_LEN
];
159 int (*governor
) (struct cpufreq_policy
*policy
,
161 struct list_head governor_list
;
162 struct module
*owner
;
165 /* pass a target to the cpufreq driver
167 extern int cpufreq_driver_target(struct cpufreq_policy
*policy
,
168 unsigned int target_freq
,
169 unsigned int relation
);
170 extern int __cpufreq_driver_target(struct cpufreq_policy
*policy
,
171 unsigned int target_freq
,
172 unsigned int relation
);
175 int cpufreq_register_governor(struct cpufreq_governor
*governor
);
176 void cpufreq_unregister_governor(struct cpufreq_governor
*governor
);
179 /*********************************************************************
180 * CPUFREQ DRIVER INTERFACE *
181 *********************************************************************/
183 #define CPUFREQ_RELATION_L 0 /* lowest frequency at or above target */
184 #define CPUFREQ_RELATION_H 1 /* highest frequency below or at target */
188 struct cpufreq_driver
{
189 struct module
*owner
;
190 char name
[CPUFREQ_NAME_LEN
];
193 /* needed by all drivers */
194 int (*init
) (struct cpufreq_policy
*policy
);
195 int (*verify
) (struct cpufreq_policy
*policy
);
197 /* define one out of two */
198 int (*setpolicy
) (struct cpufreq_policy
*policy
);
199 int (*target
) (struct cpufreq_policy
*policy
,
200 unsigned int target_freq
,
201 unsigned int relation
);
203 /* should be defined, if possible */
204 unsigned int (*get
) (unsigned int cpu
);
207 int (*exit
) (struct cpufreq_policy
*policy
);
208 int (*suspend
) (struct cpufreq_policy
*policy
, pm_message_t pmsg
);
209 int (*resume
) (struct cpufreq_policy
*policy
);
210 struct freq_attr
**attr
;
215 #define CPUFREQ_STICKY 0x01 /* the driver isn't removed even if
216 * all ->init() calls failed */
217 #define CPUFREQ_CONST_LOOPS 0x02 /* loops_per_jiffy or other kernel
218 * "constants" aren't affected by
219 * frequency transitions */
220 #define CPUFREQ_PM_NO_WARN 0x04 /* don't warn on suspend/resume speed
223 int cpufreq_register_driver(struct cpufreq_driver
*driver_data
);
224 int cpufreq_unregister_driver(struct cpufreq_driver
*driver_data
);
227 void cpufreq_notify_transition(struct cpufreq_freqs
*freqs
, unsigned int state
);
230 static inline void cpufreq_verify_within_limits(struct cpufreq_policy
*policy
, unsigned int min
, unsigned int max
)
232 if (policy
->min
< min
)
234 if (policy
->max
< min
)
236 if (policy
->min
> max
)
238 if (policy
->max
> max
)
240 if (policy
->min
> policy
->max
)
241 policy
->min
= policy
->max
;
246 struct attribute attr
;
247 ssize_t (*show
)(struct cpufreq_policy
*, char *);
248 ssize_t (*store
)(struct cpufreq_policy
*, const char *, size_t count
);
252 /*********************************************************************
253 * CPUFREQ 2.6. INTERFACE *
254 *********************************************************************/
255 int cpufreq_set_policy(struct cpufreq_policy
*policy
);
256 int cpufreq_get_policy(struct cpufreq_policy
*policy
, unsigned int cpu
);
257 int cpufreq_update_policy(unsigned int cpu
);
259 /* query the current CPU frequency (in kHz). If zero, cpufreq couldn't detect it */
260 unsigned int cpufreq_get(unsigned int cpu
);
262 /* query the last known CPU freq (in kHz). If zero, cpufreq couldn't detect it */
263 #ifdef CONFIG_CPU_FREQ
264 unsigned int cpufreq_quick_get(unsigned int cpu
);
266 static inline unsigned int cpufreq_quick_get(unsigned int cpu
)
273 /*********************************************************************
274 * CPUFREQ DEFAULT GOVERNOR *
275 *********************************************************************/
278 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE
279 extern struct cpufreq_governor cpufreq_gov_performance
;
280 #define CPUFREQ_DEFAULT_GOVERNOR &cpufreq_gov_performance
281 #elif defined(CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE)
282 extern struct cpufreq_governor cpufreq_gov_userspace
;
283 #define CPUFREQ_DEFAULT_GOVERNOR &cpufreq_gov_userspace
287 /*********************************************************************
288 * FREQUENCY TABLE HELPERS *
289 *********************************************************************/
291 #define CPUFREQ_ENTRY_INVALID ~0
292 #define CPUFREQ_TABLE_END ~1
294 struct cpufreq_frequency_table
{
295 unsigned int index
; /* any */
296 unsigned int frequency
; /* kHz - doesn't need to be in ascending
300 int cpufreq_frequency_table_cpuinfo(struct cpufreq_policy
*policy
,
301 struct cpufreq_frequency_table
*table
);
303 int cpufreq_frequency_table_verify(struct cpufreq_policy
*policy
,
304 struct cpufreq_frequency_table
*table
);
306 int cpufreq_frequency_table_target(struct cpufreq_policy
*policy
,
307 struct cpufreq_frequency_table
*table
,
308 unsigned int target_freq
,
309 unsigned int relation
,
310 unsigned int *index
);
312 /* the following 3 funtions are for cpufreq core use only */
313 struct cpufreq_frequency_table
*cpufreq_frequency_get_table(unsigned int cpu
);
314 struct cpufreq_policy
*cpufreq_cpu_get(unsigned int cpu
);
315 void cpufreq_cpu_put (struct cpufreq_policy
*data
);
317 /* the following are really really optional */
318 extern struct freq_attr cpufreq_freq_attr_scaling_available_freqs
;
320 void cpufreq_frequency_table_get_attr(struct cpufreq_frequency_table
*table
,
323 void cpufreq_frequency_table_put_attr(unsigned int cpu
);
326 /*********************************************************************
327 * UNIFIED DEBUG HELPERS *
328 *********************************************************************/
330 #define CPUFREQ_DEBUG_CORE 1
331 #define CPUFREQ_DEBUG_DRIVER 2
332 #define CPUFREQ_DEBUG_GOVERNOR 4
334 #ifdef CONFIG_CPU_FREQ_DEBUG
336 extern void cpufreq_debug_printk(unsigned int type
, const char *prefix
,
337 const char *fmt
, ...);
341 #define cpufreq_debug_printk(msg...) do { } while(0)
343 #endif /* CONFIG_CPU_FREQ_DEBUG */
345 #endif /* _LINUX_CPUFREQ_H */