irqchip: Fix dependencies for archs w/o HAS_IOMEM
[linux/fpc-iii.git] / tools / power / cpupower / utils / cpupower-set.c
blob3e6f374f8dd73ddc1fd1b6d3b30f175fcc7f9e4b
1 /*
2 * (C) 2011 Thomas Renninger <trenn@suse.de>, Novell Inc.
4 * Licensed under the terms of the GNU GPL License version 2.
5 */
8 #include <unistd.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <errno.h>
12 #include <string.h>
13 #include <getopt.h>
15 #include <cpufreq.h>
16 #include "helpers/helpers.h"
17 #include "helpers/sysfs.h"
18 #include "helpers/bitmask.h"
20 static struct option set_opts[] = {
21 {"perf-bias", required_argument, NULL, 'b'},
22 { },
25 static void print_wrong_arg_exit(void)
27 printf(_("invalid or unknown argument\n"));
28 exit(EXIT_FAILURE);
31 int cmd_set(int argc, char **argv)
33 extern char *optarg;
34 extern int optind, opterr, optopt;
35 unsigned int cpu;
37 union {
38 struct {
39 int perf_bias:1;
41 int params;
42 } params;
43 int perf_bias = 0;
44 int ret = 0;
46 setlocale(LC_ALL, "");
47 textdomain(PACKAGE);
49 params.params = 0;
50 /* parameter parsing */
51 while ((ret = getopt_long(argc, argv, "b:",
52 set_opts, NULL)) != -1) {
53 switch (ret) {
54 case 'b':
55 if (params.perf_bias)
56 print_wrong_arg_exit();
57 perf_bias = atoi(optarg);
58 if (perf_bias < 0 || perf_bias > 15) {
59 printf(_("--perf-bias param out "
60 "of range [0-%d]\n"), 15);
61 print_wrong_arg_exit();
63 params.perf_bias = 1;
64 break;
65 default:
66 print_wrong_arg_exit();
70 if (!params.params)
71 print_wrong_arg_exit();
73 /* Default is: set all CPUs */
74 if (bitmask_isallclear(cpus_chosen))
75 bitmask_setall(cpus_chosen);
77 /* loop over CPUs */
78 for (cpu = bitmask_first(cpus_chosen);
79 cpu <= bitmask_last(cpus_chosen); cpu++) {
81 if (!bitmask_isbitset(cpus_chosen, cpu) ||
82 cpufreq_cpu_exists(cpu))
83 continue;
85 if (params.perf_bias) {
86 ret = msr_intel_set_perf_bias(cpu, perf_bias);
87 if (ret) {
88 fprintf(stderr, _("Error setting perf-bias "
89 "value on CPU %d\n"), cpu);
90 break;
94 return ret;