bcl: Enable Instruction print in bugreport

MPMM/PPM readings, OFFSRC and PWRONSRC will be printed out.

Bug: 195455000
Test: Local Test and confirm its printed.
------ Instruction ... ------
enable_mitigation=1
mpmm_settings=0x1a
offsrc=0x0
ppm_settings=0x0
pwronsrc=0x4
Signed-off-by: George Lee <geolee@google.com>
Change-Id: I1f3e10edc416966f0eba18e0ba94fb56a487eaee
diff --git a/dumpstate/DumpstateDevice.cpp b/dumpstate/DumpstateDevice.cpp
index bac539b..418dcc5 100644
--- a/dumpstate/DumpstateDevice.cpp
+++ b/dumpstate/DumpstateDevice.cpp
@@ -458,6 +458,11 @@
                         "do lvl=`cat $f`; "
                         "a=${f/\\/sys\\/devices\\/virtual\\/pmic\\/mitigation\\/triggered_lvl\\//}; "
                         "echo \"${a/_lvl/} \\t$lvl\" ; done"});
+    RunCommandToFd(fd, "Instruction", {"/vendor/bin/sh", "-c",
+                        "for f in `ls /sys/devices/virtual/pmic/mitigation/instruction/*` ; "
+                        "do val=`cat $f` ; "
+                        "a=${f/\\/sys\\/devices\\/virtual\\/pmic\\/mitigation\\/instruction\\//}; "
+                        "echo \"$a=$val\" ; done"});
 
 }