Home
last modified time | relevance | path

Searched refs:gov (Results 1 – 28 of 28) sorted by relevance

/linux-4.4.14/drivers/cpuidle/
Dgovernor.c28 struct cpuidle_governor *gov; in __cpuidle_find_governor() local
30 list_for_each_entry(gov, &cpuidle_governors, governor_list) in __cpuidle_find_governor()
31 if (!strncasecmp(str, gov->name, CPUIDLE_NAME_LEN)) in __cpuidle_find_governor()
32 return gov; in __cpuidle_find_governor()
44 int cpuidle_switch_governor(struct cpuidle_governor *gov) in cpuidle_switch_governor() argument
48 if (gov == cpuidle_curr_governor) in cpuidle_switch_governor()
59 cpuidle_curr_governor = gov; in cpuidle_switch_governor()
61 if (gov) { in cpuidle_switch_governor()
67 printk(KERN_INFO "cpuidle: using governor %s\n", gov->name); in cpuidle_switch_governor()
77 int cpuidle_register_governor(struct cpuidle_governor *gov) in cpuidle_register_governor() argument
[all …]
Dsysfs.c91 struct cpuidle_governor *gov; in store_current_governor() local
103 list_for_each_entry(gov, &cpuidle_governors, governor_list) { in store_current_governor()
104 if (strlen(gov->name) == len && !strcmp(gov->name, gov_name)) { in store_current_governor()
105 ret = cpuidle_switch_governor(gov); in store_current_governor()
Dcpuidle.h23 extern int cpuidle_switch_governor(struct cpuidle_governor *gov);
/linux-4.4.14/arch/arm/mach-shmobile/
Dpm-rmobile.c131 struct dev_power_governor *gov = rmobile_pd->gov; in rmobile_init_pm_domain() local
134 pm_genpd_init(genpd, gov ? : &simple_qos_governor, false); in rmobile_init_pm_domain()
263 pd->gov = &pm_domain_always_on_gov; in rmobile_setup_pm_domain()
269 pd->gov = &pm_domain_always_on_gov; in rmobile_setup_pm_domain()
280 pd->gov = &pm_domain_always_on_gov; in rmobile_setup_pm_domain()
290 pd->gov = &pm_domain_always_on_gov; in rmobile_setup_pm_domain()
Dpm-rmobile.h17 struct dev_power_governor *gov; member
/linux-4.4.14/include/linux/
Dpm_domain.h47 struct dev_power_governor *gov; member
125 struct dev_power_governor *gov, bool is_off);
161 struct dev_power_governor *gov, bool is_off) in pm_genpd_init() argument
Dcpuidle.h240 extern int cpuidle_register_governor(struct cpuidle_governor *gov);
242 static inline int cpuidle_register_governor(struct cpuidle_governor *gov) in cpuidle_register_governor() argument
/linux-4.4.14/tools/power/cpupower/utils/
Dcpufreq-set.c200 char gov[20]; in cmd_freq_set() local
261 if ((sscanf(optarg, "%19s", gov)) != 1) { in cmd_freq_set()
265 new_pol.governor = gov; in cmd_freq_set()
/linux-4.4.14/tools/power/cpupower/lib/
Dsysfs.c587 char gov[SYSFS_PATH_MAX]; in sysfs_set_freq_policy() local
598 if (verify_gov(gov, policy->governor)) in sysfs_set_freq_policy()
627 gov, strlen(gov)); in sysfs_set_freq_policy()
/linux-4.4.14/drivers/cpufreq/
Dcpufreq.c964 struct cpufreq_governor *gov = NULL; in cpufreq_init_policy() local
970 gov = find_governor(policy->last_governor); in cpufreq_init_policy()
971 if (gov) in cpufreq_init_policy()
975 gov = CPUFREQ_DEFAULT_GOVERNOR; in cpufreq_init_policy()
977 new_policy.governor = gov; in cpufreq_init_policy()
984 cpufreq_parse_governor(gov->name, &new_policy.policy, in cpufreq_init_policy()
1933 struct cpufreq_governor *gov = &cpufreq_gov_performance; in __cpufreq_governor() local
1935 struct cpufreq_governor *gov = NULL; in __cpufreq_governor() local
1951 if (!gov) in __cpufreq_governor()
1955 policy->governor->name, gov->name); in __cpufreq_governor()
[all …]
/linux-4.4.14/drivers/base/power/
Ddomain.c331 if (genpd->gov && genpd->gov->power_down_ok) { in genpd_poweroff()
332 if (!genpd->gov->power_down_ok(&genpd->domain)) in genpd_poweroff()
410 stop_ok = genpd->gov ? genpd->gov->stop_ok : NULL; in pm_genpd_runtime_suspend()
1471 struct dev_power_governor *gov, bool is_off) in pm_genpd_init() argument
1480 genpd->gov = gov; in pm_genpd_init()
/linux-4.4.14/Documentation/cpuidle/
Dgovernor.txt27 extern int cpuidle_register_governor(struct cpuidle_governor *gov);
/linux-4.4.14/drivers/net/ethernet/packetengines/
DKconfig37 <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
/linux-4.4.14/Documentation/filesystems/
D9p.txt9 This software was originally developed by Ron Minnich <rminnich@sandia.gov>
11 <gwatson@lanl.gov> and most recently Eric Van Hensbergen
/linux-4.4.14/drivers/atm/
Dnicstarmac.copyright16 * R. D. Rechenmacher <ron@fnal.gov>, Aug. 6, 1997
/linux-4.4.14/arch/arm/crypto/
DKconfig86 See <http://csrc.nist.gov/encryption/aes/> for more information.
/linux-4.4.14/crypto/
DKconfig369 http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf
386 http://csrc.nist.gov/encryption/modes/proposedmodes/
810 See <http://csrc.nist.gov/CryptoToolkit/aes/> for more information.
832 See <http://csrc.nist.gov/encryption/aes/> for more information.
854 See <http://csrc.nist.gov/encryption/aes/> for more information.
884 See <http://csrc.nist.gov/encryption/aes/> for more information.
913 See <http://csrc.nist.gov/encryption/aes/> for more information.
/linux-4.4.14/drivers/thermal/
Dthermal_core.c841 struct thermal_governor *gov; in policy_store() local
849 gov = __find_governor(strim(name)); in policy_store()
850 if (!gov) in policy_store()
853 ret = thermal_set_governor(tz, gov); in policy_store()
/linux-4.4.14/Documentation/sound/alsa/
DAudigy-mixer.txt322 US Patents (http://www.uspto.gov/)
DSB-Live-mixer.txt333 US Patents (http://www.uspto.gov/)
/linux-4.4.14/Documentation/thermal/
Dsysfs-api.txt191 |---k_i: PID's integral term in the power allocator gov
/linux-4.4.14/Documentation/cdrom/
Dide-cd2 Originally by scott snyder <snyder@fnald0.fnal.gov> (19 May 1996)
/linux-4.4.14/
DCREDITS292 E: becker@cesdis.gsfc.nasa.gov
694 E: jjo@mendoza.gov.ar
703 E: scole@lanl.gov
3385 E: sds@tycho.nsa.gov
3411 E: snyder@fnald0.fnal.gov
DMAINTAINERS191 M: Ron Minnich <rminnich@sandia.gov>
9549 M: Stephen Smalley <sds@tycho.nsa.gov>
9551 L: selinux@tycho.nsa.gov (moderated for non-subscribers)
/linux-4.4.14/Documentation/networking/
Dpacket_mmap.txt60 http://public.lanl.gov/cpw/ (by Phil Wood, based on lastest libpcap)
Darcnet-hardware.txt84 Stephen A. Wood <saw@hallc1.cebaf.gov>
445 - PC110 settings were verified by Stephen A. Wood <saw@cebaf.gov>
Dbonding.txt6 Initial release : Thomas Davis <tadavis at lbl.gov>
/linux-4.4.14/Documentation/
Ddevices.txt1730 See http://stm.lbl.gov/comedi.