|
@@ -180,13 +180,6 @@ __ATTR(_name, 0644, show_##_name, store_##_name)
|
|
|
struct cpufreq_driver {
|
|
|
char name[CPUFREQ_NAME_LEN];
|
|
|
u8 flags;
|
|
|
- /*
|
|
|
- * This should be set by platforms having multiple clock-domains, i.e.
|
|
|
- * supporting multiple policies. With this sysfs directories of governor
|
|
|
- * would be created in cpu/cpu<num>/cpufreq/ directory and so they can
|
|
|
- * use the same governor with different tunables for different clusters.
|
|
|
- */
|
|
|
- bool have_governor_per_policy;
|
|
|
|
|
|
/* needed by all drivers */
|
|
|
int (*init) (struct cpufreq_policy *policy);
|
|
@@ -220,6 +213,14 @@ struct cpufreq_driver {
|
|
|
#define CPUFREQ_PM_NO_WARN (1 << 2) /* don't warn on suspend/resume
|
|
|
speed mismatches */
|
|
|
|
|
|
+/*
|
|
|
+ * This should be set by platforms having multiple clock-domains, i.e.
|
|
|
+ * supporting multiple policies. With this sysfs directories of governor would
|
|
|
+ * be created in cpu/cpu<num>/cpufreq/ directory and so they can use the same
|
|
|
+ * governor with different tunables for different clusters.
|
|
|
+ */
|
|
|
+#define CPUFREQ_HAVE_GOVERNOR_PER_POLICY (1 << 3)
|
|
|
+
|
|
|
int cpufreq_register_driver(struct cpufreq_driver *driver_data);
|
|
|
int cpufreq_unregister_driver(struct cpufreq_driver *driver_data);
|
|
|
|