diff options
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 27 | ||||
-rw-r--r-- | drivers/cpufreq/cpufreq_userspace.c | 40 | ||||
-rw-r--r-- | include/linux/cpufreq.h | 4 |
3 files changed, 38 insertions, 33 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 613314851ecc..64926aa990db 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -601,6 +601,31 @@ static ssize_t show_affected_cpus (struct cpufreq_policy * policy, char *buf) | |||
601 | return i; | 601 | return i; |
602 | } | 602 | } |
603 | 603 | ||
604 | static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy, | ||
605 | const char *buf, size_t count) | ||
606 | { | ||
607 | unsigned int freq = 0; | ||
608 | unsigned int ret; | ||
609 | |||
610 | if (!policy->governor->store_setspeed) | ||
611 | return -EINVAL; | ||
612 | |||
613 | ret = sscanf(buf, "%u", &freq); | ||
614 | if (ret != 1) | ||
615 | return -EINVAL; | ||
616 | |||
617 | policy->governor->store_setspeed(policy, freq); | ||
618 | |||
619 | return count; | ||
620 | } | ||
621 | |||
622 | static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf) | ||
623 | { | ||
624 | if (!policy->governor->show_setspeed) | ||
625 | return sprintf(buf, "<unsupported>\n"); | ||
626 | |||
627 | return policy->governor->show_setspeed(policy, buf); | ||
628 | } | ||
604 | 629 | ||
605 | #define define_one_ro(_name) \ | 630 | #define define_one_ro(_name) \ |
606 | static struct freq_attr _name = \ | 631 | static struct freq_attr _name = \ |
@@ -624,6 +649,7 @@ define_one_ro(affected_cpus); | |||
624 | define_one_rw(scaling_min_freq); | 649 | define_one_rw(scaling_min_freq); |
625 | define_one_rw(scaling_max_freq); | 650 | define_one_rw(scaling_max_freq); |
626 | define_one_rw(scaling_governor); | 651 | define_one_rw(scaling_governor); |
652 | define_one_rw(scaling_setspeed); | ||
627 | 653 | ||
628 | static struct attribute * default_attrs[] = { | 654 | static struct attribute * default_attrs[] = { |
629 | &cpuinfo_min_freq.attr, | 655 | &cpuinfo_min_freq.attr, |
@@ -634,6 +660,7 @@ static struct attribute * default_attrs[] = { | |||
634 | &scaling_governor.attr, | 660 | &scaling_governor.attr, |
635 | &scaling_driver.attr, | 661 | &scaling_driver.attr, |
636 | &scaling_available_governors.attr, | 662 | &scaling_available_governors.attr, |
663 | &scaling_setspeed.attr, | ||
637 | NULL | 664 | NULL |
638 | }; | 665 | }; |
639 | 666 | ||
diff --git a/drivers/cpufreq/cpufreq_userspace.c b/drivers/cpufreq/cpufreq_userspace.c index f8cdde4bf6cd..cb2ac01a41a1 100644 --- a/drivers/cpufreq/cpufreq_userspace.c +++ b/drivers/cpufreq/cpufreq_userspace.c | |||
@@ -65,12 +65,12 @@ static struct notifier_block userspace_cpufreq_notifier_block = { | |||
65 | 65 | ||
66 | /** | 66 | /** |
67 | * cpufreq_set - set the CPU frequency | 67 | * cpufreq_set - set the CPU frequency |
68 | * @policy: pointer to policy struct where freq is being set | ||
68 | * @freq: target frequency in kHz | 69 | * @freq: target frequency in kHz |
69 | * @cpu: CPU for which the frequency is to be set | ||
70 | * | 70 | * |
71 | * Sets the CPU frequency to freq. | 71 | * Sets the CPU frequency to freq. |
72 | */ | 72 | */ |
73 | static int cpufreq_set(unsigned int freq, struct cpufreq_policy *policy) | 73 | static int cpufreq_set(struct cpufreq_policy *policy, unsigned int freq) |
74 | { | 74 | { |
75 | int ret = -EINVAL; | 75 | int ret = -EINVAL; |
76 | 76 | ||
@@ -102,34 +102,11 @@ static int cpufreq_set(unsigned int freq, struct cpufreq_policy *policy) | |||
102 | } | 102 | } |
103 | 103 | ||
104 | 104 | ||
105 | /************************** sysfs interface ************************/ | 105 | static ssize_t show_speed(struct cpufreq_policy *policy, char *buf) |
106 | static ssize_t show_speed (struct cpufreq_policy *policy, char *buf) | ||
107 | { | 106 | { |
108 | return sprintf (buf, "%u\n", cpu_cur_freq[policy->cpu]); | 107 | return sprintf(buf, "%u\n", cpu_cur_freq[policy->cpu]); |
109 | } | 108 | } |
110 | 109 | ||
111 | static ssize_t | ||
112 | store_speed (struct cpufreq_policy *policy, const char *buf, size_t count) | ||
113 | { | ||
114 | unsigned int freq = 0; | ||
115 | unsigned int ret; | ||
116 | |||
117 | ret = sscanf (buf, "%u", &freq); | ||
118 | if (ret != 1) | ||
119 | return -EINVAL; | ||
120 | |||
121 | cpufreq_set(freq, policy); | ||
122 | |||
123 | return count; | ||
124 | } | ||
125 | |||
126 | static struct freq_attr freq_attr_scaling_setspeed = | ||
127 | { | ||
128 | .attr = { .name = "scaling_setspeed", .mode = 0644 }, | ||
129 | .show = show_speed, | ||
130 | .store = store_speed, | ||
131 | }; | ||
132 | |||
133 | static int cpufreq_governor_userspace(struct cpufreq_policy *policy, | 110 | static int cpufreq_governor_userspace(struct cpufreq_policy *policy, |
134 | unsigned int event) | 111 | unsigned int event) |
135 | { | 112 | { |
@@ -142,10 +119,6 @@ static int cpufreq_governor_userspace(struct cpufreq_policy *policy, | |||
142 | return -EINVAL; | 119 | return -EINVAL; |
143 | BUG_ON(!policy->cur); | 120 | BUG_ON(!policy->cur); |
144 | mutex_lock(&userspace_mutex); | 121 | mutex_lock(&userspace_mutex); |
145 | rc = sysfs_create_file (&policy->kobj, | ||
146 | &freq_attr_scaling_setspeed.attr); | ||
147 | if (rc) | ||
148 | goto start_out; | ||
149 | 122 | ||
150 | if (cpus_using_userspace_governor == 0) { | 123 | if (cpus_using_userspace_governor == 0) { |
151 | cpufreq_register_notifier( | 124 | cpufreq_register_notifier( |
@@ -160,7 +133,7 @@ static int cpufreq_governor_userspace(struct cpufreq_policy *policy, | |||
160 | cpu_cur_freq[cpu] = policy->cur; | 133 | cpu_cur_freq[cpu] = policy->cur; |
161 | cpu_set_freq[cpu] = policy->cur; | 134 | cpu_set_freq[cpu] = policy->cur; |
162 | dprintk("managing cpu %u started (%u - %u kHz, currently %u kHz)\n", cpu, cpu_min_freq[cpu], cpu_max_freq[cpu], cpu_cur_freq[cpu]); | 135 | dprintk("managing cpu %u started (%u - %u kHz, currently %u kHz)\n", cpu, cpu_min_freq[cpu], cpu_max_freq[cpu], cpu_cur_freq[cpu]); |
163 | start_out: | 136 | |
164 | mutex_unlock(&userspace_mutex); | 137 | mutex_unlock(&userspace_mutex); |
165 | break; | 138 | break; |
166 | case CPUFREQ_GOV_STOP: | 139 | case CPUFREQ_GOV_STOP: |
@@ -176,7 +149,6 @@ start_out: | |||
176 | cpu_min_freq[cpu] = 0; | 149 | cpu_min_freq[cpu] = 0; |
177 | cpu_max_freq[cpu] = 0; | 150 | cpu_max_freq[cpu] = 0; |
178 | cpu_set_freq[cpu] = 0; | 151 | cpu_set_freq[cpu] = 0; |
179 | sysfs_remove_file (&policy->kobj, &freq_attr_scaling_setspeed.attr); | ||
180 | dprintk("managing cpu %u stopped\n", cpu); | 152 | dprintk("managing cpu %u stopped\n", cpu); |
181 | mutex_unlock(&userspace_mutex); | 153 | mutex_unlock(&userspace_mutex); |
182 | break; | 154 | break; |
@@ -211,6 +183,8 @@ start_out: | |||
211 | struct cpufreq_governor cpufreq_gov_userspace = { | 183 | struct cpufreq_governor cpufreq_gov_userspace = { |
212 | .name = "userspace", | 184 | .name = "userspace", |
213 | .governor = cpufreq_governor_userspace, | 185 | .governor = cpufreq_governor_userspace, |
186 | .store_setspeed = cpufreq_set, | ||
187 | .show_setspeed = show_speed, | ||
214 | .owner = THIS_MODULE, | 188 | .owner = THIS_MODULE, |
215 | }; | 189 | }; |
216 | EXPORT_SYMBOL(cpufreq_gov_userspace); | 190 | EXPORT_SYMBOL(cpufreq_gov_userspace); |
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 23932d7741a9..ddd8652fc3f3 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
@@ -167,6 +167,10 @@ struct cpufreq_governor { | |||
167 | char name[CPUFREQ_NAME_LEN]; | 167 | char name[CPUFREQ_NAME_LEN]; |
168 | int (*governor) (struct cpufreq_policy *policy, | 168 | int (*governor) (struct cpufreq_policy *policy, |
169 | unsigned int event); | 169 | unsigned int event); |
170 | ssize_t (*show_setspeed) (struct cpufreq_policy *policy, | ||
171 | char *buf); | ||
172 | int (*store_setspeed) (struct cpufreq_policy *policy, | ||
173 | unsigned int freq); | ||
170 | unsigned int max_transition_latency; /* HW must be able to switch to | 174 | unsigned int max_transition_latency; /* HW must be able to switch to |
171 | next freq faster than this value in nano secs or we | 175 | next freq faster than this value in nano secs or we |
172 | will fallback to performance governor */ | 176 | will fallback to performance governor */ |