Blame view

kernel/linux-imx6_3.14.28/Documentation/cpuidle/governor.txt 951 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  
  
  
  		Supporting multiple CPU idle levels in kernel
  
  				cpuidle governors
  
  
  
  
  cpuidle governor is policy routine that decides what idle state to enter at
  any given time. cpuidle core uses different callbacks to the governor.
  
  * enable() to enable governor for a particular device
  * disable() to disable governor for a particular device
  * select() to select an idle state to enter
  * reflect() called after returning from the idle state, which can be used
    by the governor for some record keeping.
  
  More than one governor can be registered at the same time and
  users can switch between drivers using /sysfs interface (when enabled).
  More than one governor part is supported for developers to easily experiment
  with different governors. By default, most optimal governor based on your
  kernel configuration and platform will be selected by cpuidle.
  
  Interfaces:
  extern int cpuidle_register_governor(struct cpuidle_governor *gov);
  struct cpuidle_governor