soc: add packet information and dvfs_version to bugreport
We could find SoC packet information and dvfs_version from the
bugreport after applying this patch.
Bug: 274570190
Test: build pass, dump_soc and check bugreport
Change-Id: Iad466fa3a5c68ae4b3500bce97e52c8163228520
diff --git a/soc/dump_soc.cpp b/soc/dump_soc.cpp
index 4c34349..ab3ac2d 100644
--- a/soc/dump_soc.cpp
+++ b/soc/dump_soc.cpp
@@ -31,8 +31,10 @@
// Dump chip ID.
int main() {
dumpFileContent("AP HW TUNE", "/sys/devices/system/chip-id/ap_hw_tune_str");
+ dumpFileContent("DVFS VERSION", "/sys/devices/system/chip-id/dvfs_version");
dumpFileContent("EVT VERSION", "/sys/devices/system/chip-id/evt_ver");
dumpFileContent("LOT ID", "/sys/devices/system/chip-id/lot_id");
+ dumpFileContent("PACKAGE", "/sys/devices/system/chip-id/pkg_revision");
dumpFileContent("PRODUCT ID", "/sys/devices/system/chip-id/product_id");
dumpFileContent("REVISION", "/sys/devices/system/chip-id/revision");
dumpFileContent("RAW STR", "/sys/devices/system/chip-id/raw_str");