⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 governors.txt

📁 linux 内核源代码
💻 TXT
字号:
     CPU frequency and voltage scaling code in the Linux(TM) kernel		         L i n u x    C P U F r e q		      C P U F r e q   G o v e r n o r s		   - information for users and developers -		    Dominik Brodowski  <linux@brodo.de>            some additions and corrections by Nico Golde <nico@ngolde.de>   Clock scaling allows you to change the clock speed of the CPUs on the    fly. This is a nice method to save battery power, because the lower            the clock speed, the less power the CPU consumes.Contents:---------1.   What is a CPUFreq Governor?2.   Governors In the Linux Kernel2.1  Performance2.2  Powersave2.3  Userspace2.4  Ondemand2.5  Conservative3.   The Governor Interface in the CPUfreq Core1. What Is A CPUFreq Governor?==============================Most cpufreq drivers (in fact, all except one, longrun) or even mostcpu frequency scaling algorithms only offer the CPU to be set to onefrequency. In order to offer dynamic frequency scaling, the cpufreqcore must be able to tell these drivers of a "target frequency". Sothese specific drivers will be transformed to offer a "->target"call instead of the existing "->setpolicy" call. For "longrun", allstays the same, though.How to decide what frequency within the CPUfreq policy should be used?That's done using "cpufreq governors". Two are already in this patch-- they're the already existing "powersave" and "performance" whichset the frequency statically to the lowest or highest frequency,respectively. At least two more such governors will be ready foraddition in the near future, but likely many more as there are variousdifferent theories and models about dynamic frequency scalingaround. Using such a generic interface as cpufreq offers to scalinggovernors, these can be tested extensively, and the best one can beselected for each specific use.Basically, it's the following flow graph:CPU can be set to switch independently	 |	   CPU can only be set      within specific "limits"		 |       to specific frequencies                                 "CPUfreq policy"		consists of frequency limits (policy->{min,max})  		     and CPUfreq governor to be used			 /		      \			/		       \		       /		       the cpufreq governor decides		      /			       (dynamically or statically)		     /			       what target_freq to set within		    /			       the limits of policy->{min,max}		   /			            \		  /				     \	Using the ->setpolicy call,		 Using the ->target call,	    the limits and the			  the frequency closest	     "policy" is set.			  to target_freq is set.						  It is assured that it						  is within policy->{min,max}2. Governors In the Linux Kernel================================2.1 Performance---------------The CPUfreq governor "performance" sets the CPU statically to thehighest frequency within the borders of scaling_min_freq andscaling_max_freq.2.2 Powersave-------------The CPUfreq governor "powersave" sets the CPU statically to thelowest frequency within the borders of scaling_min_freq andscaling_max_freq.2.3 Userspace-------------The CPUfreq governor "userspace" allows the user, or any userspaceprogram running with UID "root", to set the CPU to a specific frequencyby making a sysfs file "scaling_setspeed" available in the CPU-devicedirectory.2.4 Ondemand------------The CPUfreq governor "ondemand" sets the CPU depending on thecurrent usage. To do this the CPU must have the capability toswitch the frequency very quickly.  There are a number of sysfs fileaccessible parameters:sampling_rate: measured in uS (10^-6 seconds), this is how often youwant the kernel to look at the CPU usage and to make decisions onwhat to do about the frequency.  Typically this is set to values ofaround '10000' or more.show_sampling_rate_(min|max): the minimum and maximum sampling ratesavailable that you may set 'sampling_rate' to.up_threshold: defines what the average CPU usaged between the samplingsof 'sampling_rate' needs to be for the kernel to make a decision onwhether it should increase the frequency.  For example when it is setto its default value of '80' it means that between the checkingintervals the CPU needs to be on average more than 80% in use to thendecide that the CPU frequency needs to be increased.  sampling_down_factor: this parameter controls the rate that the CPUmakes a decision on when to decrease the frequency.  When set to itsdefault value of '5' it means that at 1/5 the sampling_rate the kernelmakes a decision to lower the frequency.  Five "lower rate" decisionshave to be made in a row before the CPU frequency is actually lower.If set to '1' then the frequency decreases as quickly as it increases,if set to '2' it decreases at half the rate of the increase.ignore_nice_load: this parameter takes a value of '0' or '1'. Whenset to '0' (its default), all processes are counted towards the'cpu utilisation' value.  When set to '1', the processes that arerun with a 'nice' value will not count (and thus be ignored) in theoverall usage calculation.  This is useful if you are running a CPUintensive calculation on your laptop that you do not care how long ittakes to complete as you can 'nice' it and prevent it from taking partin the deciding process of whether to increase your CPU frequency.2.5 Conservative----------------The CPUfreq governor "conservative", much like the "ondemand"governor, sets the CPU depending on the current usage.  It differs inbehaviour in that it gracefully increases and decreases the CPU speedrather than jumping to max speed the moment there is any load on theCPU.  This behaviour more suitable in a battery powered environment.The governor is tweaked in the same manner as the "ondemand" governorthrough sysfs with the addition of:freq_step: this describes what percentage steps the cpu freq should beincreased and decreased smoothly by.  By default the cpu frequency willincrease in 5% chunks of your maximum cpu frequency.  You can change thisvalue to anywhere between 0 and 100 where '0' will effectively lock yourCPU at a speed regardless of its load whilst '100' will, in theory, makeit behave identically to the "ondemand" governor.down_threshold: same as the 'up_threshold' found for the "ondemand"governor but for the opposite direction.  For example when set to itsdefault value of '20' it means that if the CPU usage needs to be below20% between samples to have the frequency decreased.3. The Governor Interface in the CPUfreq Core=============================================A new governor must register itself with the CPUfreq core using"cpufreq_register_governor". The struct cpufreq_governor, which has tobe passed to that function, must contain the following values:governor->name -	    A unique name for this governorgovernor->governor -	    The governor callback functiongovernor->owner	-	    .THIS_MODULE for the governor module (if 			    appropriate)The governor->governor callback is called with the current (or to-be-set)cpufreq_policy struct for that CPU, and an unsigned int event. Thefollowing events are currently defined:CPUFREQ_GOV_START:   This governor shall start its duty for the CPU		     policy->cpuCPUFREQ_GOV_STOP:    This governor shall end its duty for the CPU		     policy->cpuCPUFREQ_GOV_LIMITS:  The limits for CPU policy->cpu have changed to		     policy->min and policy->max.If you need other "events" externally of your driver, _only_ use thecpufreq_governor_l(unsigned int cpu, unsigned int event) call to theCPUfreq core to ensure proper locking.The CPUfreq governor may call the CPU processor driver using one ofthese two functions:int cpufreq_driver_target(struct cpufreq_policy *policy,                                 unsigned int target_freq,                                 unsigned int relation);int __cpufreq_driver_target(struct cpufreq_policy *policy,                                   unsigned int target_freq,                                   unsigned int relation);target_freq must be within policy->min and policy->max, of course.What's the difference between these two functions? When your governorstill is in a direct code path of a call to governor->governor, theper-CPU cpufreq lock is still held in the cpufreq core, and there'sno need to lock it again (in fact, this would cause a deadlock). Souse __cpufreq_driver_target only in these cases. In all other cases (for example, when there's a "daemonized" function that wakes up every second), use cpufreq_driver_target to lock the cpufreq per-CPUlock before the command is passed to the cpufreq processor driver.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -