Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b64fa542 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ANDROID: sched/fair: add arch scaling function for max frequency capping"

parents 75a5a5a9 a7e53181
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,9 +23,9 @@
#include <linux/of.h>
#include <linux/sched.h>
#include <linux/sched/topology.h>
#include <linux/sched/energy.h>
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/sched_energy.h>

#include <asm/cpu.h>
#include <asm/cputype.h>
+3 −3
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ energy-costs {
			302    46
			368    61
			406    76
			447    93
			446    93
		>;
		idle-cost-data = <
		      6
@@ -55,10 +55,10 @@ energy-costs {
	CLUSTER_COST_A53: cluster-cost1 {
		busy-cost-data = <
			235    26
			303    30
			302    30
			368    39
			406    47
			447    57
			446    57
		>;
		idle-cost-data = <
			56
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
#include <linux/of.h>
#include <linux/sched.h>
#include <linux/sched/topology.h>
#include <linux/sched_energy.h>
#include <linux/sched/energy.h>
#include <linux/slab.h>
#include <linux/string.h>

+1 −1
Original line number Diff line number Diff line
@@ -21,8 +21,8 @@
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/sched/topology.h>
#include <linux/sched/energy.h>
#include <linux/cpuset.h>
#include <linux/sched_energy.h>

DEFINE_PER_CPU(unsigned long, freq_scale) = SCHED_CAPACITY_SCALE;
DEFINE_PER_CPU(unsigned long, efficiency) = SCHED_CAPACITY_SCALE;
Loading