Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1 | /* |
| 2 | * cpuidle.h - The internal header file |
| 3 | */ |
| 4 | |
| 5 | #ifndef __DRIVER_CPUIDLE_H |
| 6 | #define __DRIVER_CPUIDLE_H |
| 7 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 8 | /* For internal use only */ |
| 9 | extern struct cpuidle_governor *cpuidle_curr_governor; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 10 | extern struct list_head cpuidle_governors; |
| 11 | extern struct list_head cpuidle_detected_devices; |
| 12 | extern struct mutex cpuidle_lock; |
| 13 | extern spinlock_t cpuidle_driver_lock; |
Len Brown | 62027ae | 2011-04-01 18:13:10 -0400 | [diff] [blame] | 14 | extern int cpuidle_disabled(void); |
Colin Cross | 56cfbf7 | 2012-05-07 17:57:39 -0700 | [diff] [blame] | 15 | extern int cpuidle_enter_state(struct cpuidle_device *dev, |
| 16 | struct cpuidle_driver *drv, int next_state); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 17 | |
| 18 | /* idle loop */ |
| 19 | extern void cpuidle_install_idle_handler(void); |
| 20 | extern void cpuidle_uninstall_idle_handler(void); |
| 21 | |
| 22 | /* governors */ |
| 23 | extern int cpuidle_switch_governor(struct cpuidle_governor *gov); |
| 24 | |
| 25 | /* sysfs */ |
Daniel Lezcano | 8f3e995 | 2012-10-31 01:09:02 +0100 | [diff] [blame] | 26 | |
| 27 | struct device; |
| 28 | |
Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 29 | extern int cpuidle_add_interface(struct device *dev); |
| 30 | extern void cpuidle_remove_interface(struct device *dev); |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 31 | extern int cpuidle_add_device_sysfs(struct cpuidle_device *device); |
| 32 | extern void cpuidle_remove_device_sysfs(struct cpuidle_device *device); |
Daniel Lezcano | 1aef40e | 2012-10-26 12:26:24 +0200 | [diff] [blame] | 33 | extern int cpuidle_add_sysfs(struct cpuidle_device *dev); |
| 34 | extern void cpuidle_remove_sysfs(struct cpuidle_device *dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 35 | |
Colin Cross | 4126c01 | 2012-05-07 17:57:41 -0700 | [diff] [blame] | 36 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED |
| 37 | bool cpuidle_state_is_coupled(struct cpuidle_device *dev, |
| 38 | struct cpuidle_driver *drv, int state); |
| 39 | int cpuidle_enter_state_coupled(struct cpuidle_device *dev, |
| 40 | struct cpuidle_driver *drv, int next_state); |
| 41 | int cpuidle_coupled_register_device(struct cpuidle_device *dev); |
| 42 | void cpuidle_coupled_unregister_device(struct cpuidle_device *dev); |
| 43 | #else |
| 44 | static inline bool cpuidle_state_is_coupled(struct cpuidle_device *dev, |
| 45 | struct cpuidle_driver *drv, int state) |
| 46 | { |
| 47 | return false; |
| 48 | } |
| 49 | |
| 50 | static inline int cpuidle_enter_state_coupled(struct cpuidle_device *dev, |
| 51 | struct cpuidle_driver *drv, int next_state) |
| 52 | { |
| 53 | return -1; |
| 54 | } |
| 55 | |
| 56 | static inline int cpuidle_coupled_register_device(struct cpuidle_device *dev) |
| 57 | { |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | static inline void cpuidle_coupled_unregister_device(struct cpuidle_device *dev) |
| 62 | { |
| 63 | } |
| 64 | #endif |
| 65 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 66 | #endif /* __DRIVER_CPUIDLE_H */ |