Searched defs:governor (Results 1 - 4 of 4) sorted by relevance

/drivers/cpufreq/
H A Dcpufreq_governor.h28 * governor will work on any processor with transition latency <= 10ms, using
32 * this governor will not work. All times here are in us (micro seconds).
45 * - gov_sys: One governor instance per whole system
46 * - gov_pol: One governor instance per policy
127 * od_*: On-demand governor
128 * cs_*: Conservative governor
147 * percpu mutex that serializes governor limit change with gov_dbs_timer
149 * the governor or limits.
197 int governor; member in struct:common_dbs_data
198 struct attribute_group *attr_group_gov_sys; /* one governor
[all...]
H A Dcpufreq.c45 /* This one keeps track of the previously set governor of a removed CPU */
447 * cpufreq_parse_governor - parse a governor string
450 struct cpufreq_governor **governor)
485 *governor = t;
579 else if (policy->governor)
581 policy->governor->name);
604 &new_policy.governor))
610 policy->user_policy.governor = policy->governor;
691 if (!policy->governor || !polic
449 cpufreq_parse_governor(char *str_governor, unsigned int *policy, struct cpufreq_governor **governor) argument
2083 cpufreq_register_governor(struct cpufreq_governor *governor) argument
2107 cpufreq_unregister_governor(struct cpufreq_governor *governor) argument
[all...]
/drivers/devfreq/
H A Ddevfreq.c28 #include "governor.h"
126 * find_devfreq_governor() - find devfreq governor from name
127 * @name: name of the governor
130 * governor's pointer. devfreq_list_lock should be held by the caller.
171 if (!devfreq->governor)
175 err = devfreq->governor->get_target_freq(devfreq, &freq);
237 * to be called from governor in response to DEVFREQ_GOV_START
254 * to be called from governor in response to DEVFREQ_GOV_STOP
268 * to be called from governor in response to DEVFREQ_GOV_SUSPEND
295 * to be called from governor i
446 struct devfreq_governor *governor; local
656 devfreq_add_governor(struct devfreq_governor *governor) argument
721 devfreq_remove_governor(struct devfreq_governor *governor) argument
787 struct devfreq_governor *governor; local
[all...]
/drivers/thermal/
H A Dthermal_core.c78 int thermal_register_governor(struct thermal_governor *governor) argument
84 if (!governor)
90 if (__find_governor(governor->name) == NULL) {
92 list_add(&governor->governor_list, &thermal_governor_list);
93 if (!def_governor && !strncmp(governor->name,
95 def_governor = governor;
105 if (pos->governor)
110 if (!strncasecmp(name, governor->name, THERMAL_NAME_LENGTH))
111 pos->governor = governor;
120 thermal_unregister_governor(struct thermal_governor *governor) argument
[all...]

Completed in 2982 milliseconds