Skip to content

Commit af774fa

Browse files
kwillis01StaticRocket
authored andcommitted
feat(linux): AM62L: Add LPM latency measurements
Add latency measurements for each LPM on AM62L for SDK 11.1. Signed-off-by: Kendall Willis <[email protected]>
1 parent 8e793c1 commit af774fa

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

source/devices/AM62LX/linux/Linux_Performance_Guide.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,3 +857,28 @@ Deep Sleep and RTC Only + DDR.
857857
"vdd_rtc", "0.75", "0.02"
858858
"vdd_rtc_1v8", "1.80", "0.02"
859859
"Total"," ","2.41"
860+
861+
Resume Latency Performance
862+
^^^^^^^^^^^^^^^^^^^^^^^^^^
863+
864+
.. csv-table:: LPM Resume Latency Performance
865+
:header: "Low Power Mode","Total Resume Latency (ms)"
866+
867+
"RTC Only + DDR", "459.40"
868+
"Deep Sleep", "98.70"
869+
870+
The performance numbers are measured without the Linux printk logs. To remove the
871+
Linux printk logs, run the following commands in the terminal:
872+
873+
.. code:: console
874+
875+
# Detach kernel serial console
876+
consoles=$(find /sys/bus/platform/devices/*.serial/ -name console)
877+
for console in ${consoles}; do
878+
echo -n N > ${console}
879+
done
880+
881+
882+
.. note::
883+
884+
The measurements shown are from using the default SDK with no extra optimizations.

0 commit comments

Comments
 (0)