Skip to content
Snippets Groups Projects
Commit 72054e5f authored by Leo Yan's avatar Leo Yan Committed by Erik Schilling
Browse files

[MODEL ANSWER SESSION 1 LAB2] Capacity + Energy Model


Signed-off-by: default avatarLeo Yan <leo.yan@linaro.org>
parent b263d364
No related branches found
No related tags found
No related merge requests found
...@@ -10,22 +10,39 @@ cpus { ...@@ -10,22 +10,39 @@ cpus {
#size-cells = <0x0>; #size-cells = <0x0>;
#address-cells = <0x1>; #address-cells = <0x1>;
cpu@0 { cpu-map {
cluster0 {
core0 {
cpu = <&cpu0>;
};
};
cluster1 {
core0 {
cpu = <&cpu1>;
};
};
};
cpu0: cpu@0 {
reg = <0x0>; reg = <0x0>;
compatible = "arm,cortex-a57"; compatible = "arm,cortex-a57";
device_type = "cpu"; device_type = "cpu";
enable-method = "psci"; enable-method = "psci";
clocks = <&cpu_clock 0>; clocks = <&cpu_clock 0>;
operating-points-v2 = <&cpu_opp>; operating-points-v2 = <&cpu_opp>;
capacity-dmips-mhz = <512>;
dynamic-power-coefficient = <100>;
}; };
cpu@1 { cpu1: cpu@1 {
reg = <0x1>; reg = <0x1>;
compatible = "arm,cortex-a57"; compatible = "arm,cortex-a57";
device_type = "cpu"; device_type = "cpu";
enable-method = "psci"; enable-method = "psci";
clocks = <&cpu_clock 1>; clocks = <&cpu_clock 1>;
operating-points-v2 = <&cpu_opp>; operating-points-v2 = <&cpu_opp>;
capacity-dmips-mhz = <1024>;
dynamic-power-coefficient = <300>;
}; };
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment