ARM64: dts: rk3399: prevent out of bounds accesses to array
authorChen Liang <cl@rock-chips.com>
Mon, 11 Jul 2016 09:41:31 +0000 (17:41 +0800)
committerChen Liang <cl@rock-chips.com>
Mon, 11 Jul 2016 09:41:31 +0000 (17:41 +0800)
It will return state++ when get the idle state, so we need fill
anothor idle power(=WFI) in the parameter of EAS, code as below:

static int group_idle_state(struct sched_group *sg)
{
        int i, state = INT_MAX;

        /* Find the shallowest idle state in the sched group. */
        for_each_cpu(i, sched_group_cpus(sg))
                state = min(state, idle_get_state_idx(cpu_rq(i)));

        /* Take non-cpuidle idling into account (active idle/arch_cpu_idle()) */
        state++;

        return state;
}

Change-Id: I9293da1379746768823df4e75a7478aa50fc0e87
Signed-off-by: Chen Liang <cl@rock-chips.com>
arch/arm64/boot/dts/rockchip/rk3399-evb-rev2.dtsi
arch/arm64/boot/dts/rockchip/rk3399-sched-energy.dtsi

index d58b8406cc7f2d107e3d3f553caf9755251ff737..0d6bd161635e8499a31ed836badbd25a1bcc079d 100644 (file)
        //      1024  3416      /* 1800MHz */
        >;
        idle-cost-data = <
+             15
              15
               0
        >;
                449    263      /* 1512M */
        >;
        idle-cost-data = <
+             6
              6
              0
        >;
        idle-cost-data = <
                 65
                 65
+                65
        >;
 };
 
        idle-cost-data = <
                56
                56
+               56
        >;
 };
 
index 5b09347a32f54da9582dd0c42458a471fefd9652..5359294d7c08a82c88e8fdebe6901f0ce4c7a7d0 100644 (file)
@@ -1,9 +1,11 @@
 /* static struct idle_state idle_states_cluster_a53[] = { */
+/*        { .power = 56 }, /\* arch_cpu_idle() (active idle) = WFI *\/ */
 /*        { .power = 56 }, /\* WFI *\/ */
 /*        { .power = 56 }, /\* cpu-sleep-0 *\/ */
 /* }; */
 
 /* static struct idle_state idle_states_cluster_a72[] = { */
+/*        { .power = 65 }, /\* arch_cpu_idle() (active idle) = WFI *\/ */
 /*        { .power = 65 }, /\* WFI *\/ */
 /*        { .power = 65 }, /\* cpu-sleep-0 *\/ */
 /* }; */
 /* }; */
 
 /* static struct idle_state idle_states_core_a53[] = { */
+/*        { .power = 6 }, /\* arch_cpu_idle() (active idle) = WFI *\/ */
 /*        { .power = 6 }, /\* WFI *\/ */
 /*        { .power = 0 }, /\* cpu-sleep-0 *\/ */
 /* }; */
 
 /* static struct idle_state idle_states_core_a72[] = { */
+/*        { .power = 15 }, /\* arch_cpu_idle() (active idle) = WFI *\/ */
 /*        { .power = 15 }, /\* WFI *\/ */
 /*        { .power = 0  }, /\* cpu-sleep-0 *\/ */
 /* }; */
@@ -89,6 +93,7 @@ energy-costs {
                //      1024  3416      /* 1800MHz */
                >;
                idle-cost-data = <
+                     15
                      15
                       0
                >;
@@ -104,6 +109,7 @@ energy-costs {
                //      449    263      /* 1512M */
                >;
                idle-cost-data = <
+                     6
                      6
                      0
                >;
@@ -122,6 +128,7 @@ energy-costs {
                idle-cost-data = <
                         65
                         65
+                        65
                >;
        };
        CLUSTER_COST_A53: cluster-cost1 {
@@ -137,6 +144,7 @@ energy-costs {
                idle-cost-data = <
                        56
                        56
+                       56
                >;
        };
 };